Repository: FasterXML/jackson-dataformats-text Branch: 3.x Commit: 0c273247564c Files: 1808 Total size: 38.9 MB Directory structure: gitextract_uyirh5rw/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ ├── coverage-comment.yml │ ├── dep_build_v2.yml │ ├── dep_build_v3.yml │ └── main.yml ├── .gitignore ├── .mvn/ │ └── wrapper/ │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── csv/ │ ├── .gitattributes │ ├── README.md │ ├── pom.xml │ ├── samples/ │ │ └── f_5500_2010_first9999.csv │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ ├── module-info.java │ │ │ └── tools/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── csv/ │ │ │ ├── CsvCharacterEscapes.java │ │ │ ├── CsvFactory.java │ │ │ ├── CsvFactoryBuilder.java │ │ │ ├── CsvGenerator.java │ │ │ ├── CsvMapper.java │ │ │ ├── CsvParser.java │ │ │ ├── CsvReadException.java │ │ │ ├── CsvReadFeature.java │ │ │ ├── CsvSchema.java │ │ │ ├── CsvValueDecorator.java │ │ │ ├── CsvValueDecorators.java │ │ │ ├── CsvWriteException.java │ │ │ ├── CsvWriteFeature.java │ │ │ ├── PackageVersion.java.in │ │ │ └── impl/ │ │ │ ├── BufferedValue.java │ │ │ ├── CsvDecoder.java │ │ │ ├── CsvEncoder.java │ │ │ ├── CsvParserBootstrapper.java │ │ │ ├── UTF8Reader.java │ │ │ └── UTF8Writer.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── services/ │ │ ├── tools.jackson.core.TokenStreamFactory │ │ └── tools.jackson.databind.ObjectMapper │ └── test/ │ ├── java/ │ │ ├── module-info.java │ │ ├── perf/ │ │ │ ├── BogusOutputStream.java │ │ │ ├── F5500Entry.java │ │ │ ├── F5500Reader.java │ │ │ ├── ManualPerfComparison.java │ │ │ └── RequestEntry.java │ │ └── tools/ │ │ └── jackson/ │ │ └── dataformat/ │ │ └── csv/ │ │ ├── CSVFactoryFeaturesTest.java │ │ ├── ModuleTestBase.java │ │ ├── NullReader122Test.java │ │ ├── SchemaCaching288Test.java │ │ ├── TestVersions.java │ │ ├── deser/ │ │ │ ├── AnySetterTest.java │ │ │ ├── ArrayReadTest.java │ │ │ ├── BasicCSVParserTest.java │ │ │ ├── BlogPost2021AprilTest.java │ │ │ ├── BrokenEncodingTest.java │ │ │ ├── CaseInsensitiveHeader657Test.java │ │ │ ├── CommentsTest.java │ │ │ ├── EmptyStringAsMissingTest.java │ │ │ ├── EmptyStringAsNullTest.java │ │ │ ├── EmptyUnquotedStringAsNullTest.java │ │ │ ├── FastParserStreamingCSVReadTest.java │ │ │ ├── IgnoreUnmappableTest.java │ │ │ ├── IntOverflow485Test.java │ │ │ ├── ListField199Test.java │ │ │ ├── MappingIteratorEnd9Test.java │ │ │ ├── MissingColumns285Test.java │ │ │ ├── MissingColumns579Test.java │ │ │ ├── MissingColumnsTest.java │ │ │ ├── NullReadTest.java │ │ │ ├── NullValueUnquotedAsNullTest.java │ │ │ ├── NumberDeserWithCSVTest.java │ │ │ ├── ParserAutoCloseTest.java │ │ │ ├── ParserLocation483Test.java │ │ │ ├── ParserQuotes643Test.java │ │ │ ├── ParserTrimSpacesTest.java │ │ │ ├── ParserWithHeaderTest.java │ │ │ ├── ReadBracketedArray442Test.java │ │ │ ├── ReadSequencesTest.java │ │ │ ├── SequenceRecoveryTest.java │ │ │ ├── SkipEmptyLines15Test.java │ │ │ ├── SkipEmptyLines191Test.java │ │ │ ├── SkipEmptyRows368Test.java │ │ │ ├── StreamingCSVReadTest.java │ │ │ ├── TestParserEscapes.java │ │ │ ├── TestParserNoSchema.java │ │ │ ├── TestParserQuotes.java │ │ │ ├── TestParserStrictQuoting.java │ │ │ ├── TestParserWorkarounds.java │ │ │ ├── TrailingCommaCSVTest.java │ │ │ ├── UTF8ReaderTest.java │ │ │ ├── UnicodeCSVRead497Test.java │ │ │ └── UnwrappingWithCSVTest.java │ │ ├── filter/ │ │ │ ├── JsonViewFilteringTest.java │ │ │ └── StreamingDecoratorsTest.java │ │ ├── fuzz/ │ │ │ ├── CSVFuzz499695465Test.java │ │ │ ├── CSVFuzz50036Test.java │ │ │ └── CSVFuzz50402Test.java │ │ ├── limits/ │ │ │ ├── CSVBigNumberReadLimitsTest.java │ │ │ ├── CSVBigStringLimitsTest.java │ │ │ ├── CSVLargeDocReadLimitsTest.java │ │ │ └── CSVNameLengthLimitsTest.java │ │ ├── schema/ │ │ │ ├── CsvSchemaTest.java │ │ │ ├── PropertyOrder74Test.java │ │ │ ├── SchemaDefaultView308Test.java │ │ │ └── SchemaFromBuilder207Test.java │ │ ├── ser/ │ │ │ ├── ArrayWriteTest.java │ │ │ ├── CSVGeneratorQuotingTest.java │ │ │ ├── CSVGeneratorTest.java │ │ │ ├── CSVJDKSerializationTest.java │ │ │ ├── FilteringTest.java │ │ │ ├── GeneratorFileCloseOnErrorTest.java │ │ │ ├── GeneratorIgnoreUnknown51Test.java │ │ │ ├── GeneratorIgnoreUnknownTest.java │ │ │ ├── HeaderWriteTest.java │ │ │ ├── MaxQuoteCheckCharsTest.java │ │ │ ├── MultipleWritesTest.java │ │ │ ├── NullWritingTest.java │ │ │ ├── ObjectArrayNullWrite10Test.java │ │ │ ├── ObjectArrayNullWrite116Test.java │ │ │ ├── QuoteLeadingTrailingWhitespace210Test.java │ │ │ ├── SchemaReorderTest.java │ │ │ ├── StrictQuotingNewline479Test.java │ │ │ ├── TestGeneratorNoSchema.java │ │ │ ├── TestGeneratorWithCustomSeparators.java │ │ │ ├── TestGeneratorWithSequences.java │ │ │ ├── TestWriterWithMissingValues.java │ │ │ ├── TestWriterWithSomeMoreMissingValues.java │ │ │ ├── UnicodeWritingTest.java │ │ │ ├── UnwrappedWriteTest.java │ │ │ ├── WriteBracketedArray495Test.java │ │ │ └── dos/ │ │ │ └── CyclicCSVDataSerTest.java │ │ ├── testutil/ │ │ │ ├── PrefixInputDecorator.java │ │ │ ├── PrefixOutputDecorator.java │ │ │ └── failure/ │ │ │ ├── JacksonTestFailureExpected.java │ │ │ ├── JacksonTestFailureExpectedInterceptor.java │ │ │ └── JacksonTestShouldFailException.java │ │ └── tofix/ │ │ └── package-info.java │ └── resources/ │ └── data/ │ ├── clusterfuzz-testcase-minimized-CSVFuzzer-499695465.csv │ ├── fuzz-50402.csv │ └── story-100.csv ├── docs/ │ └── javadoc/ │ ├── csv/ │ │ ├── 2.10/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── csv/ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ ├── CsvFactory.html │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ ├── CsvGenerator.html │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ ├── CsvMapper.html │ │ │ │ ├── CsvMappingException.html │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ ├── CsvParser.html │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ ├── CsvSchema.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ │ ├── CsvFactory.html │ │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ │ ├── CsvGenerator.html │ │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ │ ├── CsvMapper.html │ │ │ │ │ ├── CsvMappingException.html │ │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ │ ├── CsvParser.html │ │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ │ ├── CsvSchema.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ ├── UTF8Writer.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ │ └── UTF8Writer.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── 2.11/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── csv/ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ ├── CsvFactory.html │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ ├── CsvGenerator.html │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ ├── CsvMapper.html │ │ │ │ ├── CsvMappingException.html │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ ├── CsvParser.html │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ ├── CsvSchema.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ │ ├── CsvFactory.html │ │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ │ ├── CsvGenerator.html │ │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ │ ├── CsvMapper.html │ │ │ │ │ ├── CsvMappingException.html │ │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ │ ├── CsvParser.html │ │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ │ ├── CsvSchema.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ ├── SimpleTokenWriteContext.html │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ ├── UTF8Writer.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ │ ├── SimpleTokenWriteContext.html │ │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ │ └── UTF8Writer.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── 2.12/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── csv/ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ ├── CsvFactory.html │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ ├── CsvGenerator.html │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ ├── CsvMapper.html │ │ │ │ ├── CsvMappingException.html │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ ├── CsvParser.html │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ ├── CsvSchema.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ │ ├── CsvFactory.html │ │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ │ ├── CsvGenerator.html │ │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ │ ├── CsvMapper.html │ │ │ │ │ ├── CsvMappingException.html │ │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ │ ├── CsvParser.html │ │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ │ ├── CsvSchema.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ ├── SimpleTokenWriteContext.html │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ ├── UTF8Writer.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ │ ├── SimpleTokenWriteContext.html │ │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ │ └── UTF8Writer.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── 2.13/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── csv/ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ ├── CsvFactory.html │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ ├── CsvGenerator.html │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ ├── CsvMapper.html │ │ │ │ ├── CsvMappingException.html │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ ├── CsvParser.html │ │ │ │ ├── CsvReadException.html │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ ├── CsvSchema.html │ │ │ │ ├── CsvWriteException.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ │ ├── CsvFactory.html │ │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ │ ├── CsvGenerator.html │ │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ │ ├── CsvMapper.html │ │ │ │ │ ├── CsvMappingException.html │ │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ │ ├── CsvParser.html │ │ │ │ │ ├── CsvReadException.html │ │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ │ ├── CsvSchema.html │ │ │ │ │ ├── CsvWriteException.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ ├── SimpleTokenWriteContext.html │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ ├── UTF8Writer.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ │ ├── SimpleTokenWriteContext.html │ │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ │ └── UTF8Writer.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── 2.14/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── csv/ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ ├── CsvFactory.html │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ ├── CsvGenerator.html │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ ├── CsvMapper.ViewKey.html │ │ │ │ ├── CsvMapper.html │ │ │ │ ├── CsvMappingException.html │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ ├── CsvParser.html │ │ │ │ ├── CsvReadException.html │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ ├── CsvSchema.html │ │ │ │ ├── CsvWriteException.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── CsvCharacterEscapes.html │ │ │ │ │ ├── CsvFactory.html │ │ │ │ │ ├── CsvFactoryBuilder.html │ │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ │ ├── CsvGenerator.html │ │ │ │ │ ├── CsvMapper.Builder.html │ │ │ │ │ ├── CsvMapper.ViewKey.html │ │ │ │ │ ├── CsvMapper.html │ │ │ │ │ ├── CsvMappingException.html │ │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ │ ├── CsvParser.html │ │ │ │ │ ├── CsvReadException.html │ │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ │ ├── CsvSchema.html │ │ │ │ │ ├── CsvWriteException.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ ├── SimpleTokenWriteContext.html │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ ├── UTF8Writer.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ │ ├── SimpleTokenWriteContext.html │ │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ │ └── UTF8Writer.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── javadoc.sh │ │ │ ├── options │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── packages │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ └── 2.9/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com/ │ │ │ └── fasterxml/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── csv/ │ │ │ ├── CsvFactory.html │ │ │ ├── CsvGenerator.Feature.html │ │ │ ├── CsvGenerator.html │ │ │ ├── CsvMapper.html │ │ │ ├── CsvMappingException.html │ │ │ ├── CsvParser.Feature.html │ │ │ ├── CsvParser.html │ │ │ ├── CsvSchema.Builder.html │ │ │ ├── CsvSchema.Column.html │ │ │ ├── CsvSchema.ColumnType.html │ │ │ ├── CsvSchema.html │ │ │ ├── PackageVersion.html │ │ │ ├── class-use/ │ │ │ │ ├── CsvFactory.html │ │ │ │ ├── CsvGenerator.Feature.html │ │ │ │ ├── CsvGenerator.html │ │ │ │ ├── CsvMapper.html │ │ │ │ ├── CsvMappingException.html │ │ │ │ ├── CsvParser.Feature.html │ │ │ │ ├── CsvParser.html │ │ │ │ ├── CsvSchema.Builder.html │ │ │ │ ├── CsvSchema.Column.html │ │ │ │ ├── CsvSchema.ColumnType.html │ │ │ │ ├── CsvSchema.html │ │ │ │ └── PackageVersion.html │ │ │ ├── impl/ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ ├── BufferedValue.html │ │ │ │ ├── CsvDecoder.html │ │ │ │ ├── CsvEncoder.html │ │ │ │ ├── CsvIOContext.html │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ ├── LRUMap.html │ │ │ │ ├── NumberInput.html │ │ │ │ ├── NumberOutput.html │ │ │ │ ├── TextBuffer.html │ │ │ │ ├── UTF8Reader.html │ │ │ │ ├── UTF8Writer.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── BufferedValue.BooleanValue.html │ │ │ │ │ ├── BufferedValue.DoubleValue.html │ │ │ │ │ ├── BufferedValue.IntValue.html │ │ │ │ │ ├── BufferedValue.LongValue.html │ │ │ │ │ ├── BufferedValue.NullValue.html │ │ │ │ │ ├── BufferedValue.RawValue.html │ │ │ │ │ ├── BufferedValue.TextValue.html │ │ │ │ │ ├── BufferedValue.html │ │ │ │ │ ├── CsvDecoder.html │ │ │ │ │ ├── CsvEncoder.html │ │ │ │ │ ├── CsvIOContext.html │ │ │ │ │ ├── CsvParserBootstrapper.html │ │ │ │ │ ├── LRUMap.html │ │ │ │ │ ├── NumberInput.html │ │ │ │ │ ├── NumberOutput.html │ │ │ │ │ ├── TextBuffer.html │ │ │ │ │ ├── UTF8Reader.html │ │ │ │ │ └── UTF8Writer.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── serialized-form.html │ │ └── stylesheet.css │ ├── properties/ │ │ ├── 2.10/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── javaprop/ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ ├── JavaPropsParser.html │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ │ ├── JavaPropsParser.html │ │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ ├── WriterBackedGenerator.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ │ └── WriterBackedGenerator.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── io/ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ ├── Latin1Reader.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ │ └── Latin1Reader.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── util/ │ │ │ │ ├── JPropNode.html │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ ├── Markers.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JPropNode.html │ │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ │ └── Markers.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── javadoc.sh │ │ │ ├── options │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── packages │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── 2.11/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── javaprop/ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ ├── JavaPropsParser.html │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ │ ├── JavaPropsParser.html │ │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ ├── WriterBackedGenerator.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ │ └── WriterBackedGenerator.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── io/ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ ├── Latin1Reader.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ │ └── Latin1Reader.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── util/ │ │ │ │ ├── JPropNode.html │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ ├── Markers.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JPropNode.html │ │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ │ └── Markers.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── 2.12/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── javaprop/ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ ├── JavaPropsParser.html │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ │ ├── JavaPropsParser.html │ │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ ├── WriterBackedGenerator.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ │ └── WriterBackedGenerator.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── io/ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ ├── Latin1Reader.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ │ └── Latin1Reader.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── util/ │ │ │ │ ├── JPropNode.html │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ ├── Markers.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JPropNode.html │ │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ │ └── Markers.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── 2.13/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── javaprop/ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ ├── JavaPropsParser.html │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ │ ├── JavaPropsParser.html │ │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ ├── WriterBackedGenerator.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ │ └── WriterBackedGenerator.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── io/ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ ├── Latin1Reader.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ │ └── Latin1Reader.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── util/ │ │ │ │ ├── JPropNode.html │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ ├── Markers.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JPropNode.html │ │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ │ └── Markers.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ ├── 2.14/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── javaprop/ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ ├── JavaPropsParser.html │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ │ ├── JavaPropsFactoryBuilder.html │ │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ │ ├── JavaPropsMapper.Builder.html │ │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ │ ├── JavaPropsParser.html │ │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ │ └── PackageVersion.html │ │ │ │ ├── impl/ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ ├── WriterBackedGenerator.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ │ └── WriterBackedGenerator.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── io/ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ ├── Latin1Reader.html │ │ │ │ │ ├── class-use/ │ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ │ └── Latin1Reader.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── util/ │ │ │ │ ├── JPropNode.html │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ ├── Markers.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JPropNode.html │ │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ │ └── Markers.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ └── 2.9/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com/ │ │ │ └── fasterxml/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── javaprop/ │ │ │ ├── JavaPropsFactory.html │ │ │ ├── JavaPropsGenerator.html │ │ │ ├── JavaPropsMapper.html │ │ │ ├── JavaPropsParser.html │ │ │ ├── JavaPropsSchema.html │ │ │ ├── PackageVersion.html │ │ │ ├── class-use/ │ │ │ │ ├── JavaPropsFactory.html │ │ │ │ ├── JavaPropsGenerator.html │ │ │ │ ├── JavaPropsMapper.html │ │ │ │ ├── JavaPropsParser.html │ │ │ │ ├── JavaPropsSchema.html │ │ │ │ └── PackageVersion.html │ │ │ ├── impl/ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ ├── WriterBackedGenerator.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── PropertiesBackedGenerator.html │ │ │ │ │ └── WriterBackedGenerator.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── io/ │ │ │ │ ├── JPropEscapes.html │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ ├── JPropReadContext.html │ │ │ │ ├── JPropWriteContext.html │ │ │ │ ├── Latin1Reader.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── JPropEscapes.html │ │ │ │ │ ├── JPropReadContext.ArrayContext.html │ │ │ │ │ ├── JPropReadContext.ObjectContext.html │ │ │ │ │ ├── JPropReadContext.html │ │ │ │ │ ├── JPropWriteContext.html │ │ │ │ │ └── Latin1Reader.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── package-use.html │ │ │ └── util/ │ │ │ ├── JPropNode.html │ │ │ ├── JPropNodeBuilder.html │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ ├── JPropPathSplitter.html │ │ │ ├── Markers.html │ │ │ ├── class-use/ │ │ │ │ ├── JPropNode.html │ │ │ │ ├── JPropNodeBuilder.html │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.FullSplitter.html │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.NonSplitting.html │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html │ │ │ │ ├── JPropPathSplitter.html │ │ │ │ └── Markers.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── serialized-form.html │ │ └── stylesheet.css │ ├── toml/ │ │ ├── 2.13/ │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com/ │ │ │ │ └── fasterxml/ │ │ │ │ └── jackson/ │ │ │ │ └── dataformat/ │ │ │ │ └── toml/ │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── TomlFactory.html │ │ │ │ ├── TomlFactoryBuilder.html │ │ │ │ ├── TomlMapper.Builder.html │ │ │ │ ├── TomlMapper.html │ │ │ │ ├── TomlReadFeature.html │ │ │ │ ├── TomlStreamReadException.html │ │ │ │ ├── TomlStreamWriteException.html │ │ │ │ ├── TomlWriteFeature.html │ │ │ │ ├── UTF8Reader.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── PackageVersion.html │ │ │ │ │ ├── TomlFactory.html │ │ │ │ │ ├── TomlFactoryBuilder.html │ │ │ │ │ ├── TomlMapper.Builder.html │ │ │ │ │ ├── TomlMapper.html │ │ │ │ │ ├── TomlReadFeature.html │ │ │ │ │ ├── TomlStreamReadException.html │ │ │ │ │ ├── TomlStreamWriteException.html │ │ │ │ │ ├── TomlWriteFeature.html │ │ │ │ │ └── UTF8Reader.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── script.js │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ └── 2.14/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com/ │ │ │ └── fasterxml/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── toml/ │ │ │ ├── PackageVersion.html │ │ │ ├── TomlFactory.html │ │ │ ├── TomlFactoryBuilder.html │ │ │ ├── TomlMapper.Builder.html │ │ │ ├── TomlMapper.html │ │ │ ├── TomlReadFeature.html │ │ │ ├── TomlStreamReadException.html │ │ │ ├── TomlStreamWriteException.html │ │ │ ├── TomlWriteFeature.html │ │ │ ├── UTF8Reader.html │ │ │ ├── class-use/ │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── TomlFactory.html │ │ │ │ ├── TomlFactoryBuilder.html │ │ │ │ ├── TomlMapper.Builder.html │ │ │ │ ├── TomlMapper.html │ │ │ │ ├── TomlReadFeature.html │ │ │ │ ├── TomlStreamReadException.html │ │ │ │ ├── TomlStreamWriteException.html │ │ │ │ ├── TomlWriteFeature.html │ │ │ │ └── UTF8Reader.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── script.js │ │ ├── serialized-form.html │ │ └── stylesheet.css │ └── yaml/ │ ├── 2.10/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com/ │ │ │ └── fasterxml/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── yaml/ │ │ │ ├── JacksonYAMLParseException.html │ │ │ ├── PackageVersion.html │ │ │ ├── UTF8Reader.html │ │ │ ├── UTF8Writer.html │ │ │ ├── YAMLFactory.html │ │ │ ├── YAMLFactoryBuilder.html │ │ │ ├── YAMLGenerator.Feature.html │ │ │ ├── YAMLGenerator.html │ │ │ ├── YAMLMapper.Builder.html │ │ │ ├── YAMLMapper.html │ │ │ ├── YAMLParser.Feature.html │ │ │ ├── YAMLParser.html │ │ │ ├── class-use/ │ │ │ │ ├── JacksonYAMLParseException.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── UTF8Reader.html │ │ │ │ ├── UTF8Writer.html │ │ │ │ ├── YAMLFactory.html │ │ │ │ ├── YAMLFactoryBuilder.html │ │ │ │ ├── YAMLGenerator.Feature.html │ │ │ │ ├── YAMLGenerator.html │ │ │ │ ├── YAMLMapper.Builder.html │ │ │ │ ├── YAMLMapper.html │ │ │ │ ├── YAMLParser.Feature.html │ │ │ │ └── YAMLParser.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── package-use.html │ │ │ └── snakeyaml/ │ │ │ └── error/ │ │ │ ├── Mark.html │ │ │ ├── MarkedYAMLException.html │ │ │ ├── YAMLException.html │ │ │ ├── class-use/ │ │ │ │ ├── Mark.html │ │ │ │ ├── MarkedYAMLException.html │ │ │ │ └── YAMLException.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── javadoc.sh │ │ ├── options │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── packages │ │ ├── script.js │ │ ├── serialized-form.html │ │ └── stylesheet.css │ ├── 2.11/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com/ │ │ │ └── fasterxml/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── yaml/ │ │ │ ├── JacksonYAMLParseException.html │ │ │ ├── PackageVersion.html │ │ │ ├── UTF8Reader.html │ │ │ ├── UTF8Writer.html │ │ │ ├── YAMLFactory.html │ │ │ ├── YAMLFactoryBuilder.html │ │ │ ├── YAMLGenerator.Feature.html │ │ │ ├── YAMLGenerator.html │ │ │ ├── YAMLMapper.Builder.html │ │ │ ├── YAMLMapper.html │ │ │ ├── YAMLParser.Feature.html │ │ │ ├── YAMLParser.html │ │ │ ├── class-use/ │ │ │ │ ├── JacksonYAMLParseException.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── UTF8Reader.html │ │ │ │ ├── UTF8Writer.html │ │ │ │ ├── YAMLFactory.html │ │ │ │ ├── YAMLFactoryBuilder.html │ │ │ │ ├── YAMLGenerator.Feature.html │ │ │ │ ├── YAMLGenerator.html │ │ │ │ ├── YAMLMapper.Builder.html │ │ │ │ ├── YAMLMapper.html │ │ │ │ ├── YAMLParser.Feature.html │ │ │ │ └── YAMLParser.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── package-use.html │ │ │ └── snakeyaml/ │ │ │ └── error/ │ │ │ ├── Mark.html │ │ │ ├── MarkedYAMLException.html │ │ │ ├── YAMLException.html │ │ │ ├── class-use/ │ │ │ │ ├── Mark.html │ │ │ │ ├── MarkedYAMLException.html │ │ │ │ └── YAMLException.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── script.js │ │ ├── serialized-form.html │ │ └── stylesheet.css │ ├── 2.12/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com/ │ │ │ └── fasterxml/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── yaml/ │ │ │ ├── JacksonYAMLParseException.html │ │ │ ├── PackageVersion.html │ │ │ ├── UTF8Reader.html │ │ │ ├── UTF8Writer.html │ │ │ ├── YAMLFactory.html │ │ │ ├── YAMLFactoryBuilder.html │ │ │ ├── YAMLGenerator.Feature.html │ │ │ ├── YAMLGenerator.html │ │ │ ├── YAMLMapper.Builder.html │ │ │ ├── YAMLMapper.html │ │ │ ├── YAMLParser.Feature.html │ │ │ ├── YAMLParser.html │ │ │ ├── class-use/ │ │ │ │ ├── JacksonYAMLParseException.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── UTF8Reader.html │ │ │ │ ├── UTF8Writer.html │ │ │ │ ├── YAMLFactory.html │ │ │ │ ├── YAMLFactoryBuilder.html │ │ │ │ ├── YAMLGenerator.Feature.html │ │ │ │ ├── YAMLGenerator.html │ │ │ │ ├── YAMLMapper.Builder.html │ │ │ │ ├── YAMLMapper.html │ │ │ │ ├── YAMLParser.Feature.html │ │ │ │ └── YAMLParser.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── package-use.html │ │ │ ├── snakeyaml/ │ │ │ │ └── error/ │ │ │ │ ├── Mark.html │ │ │ │ ├── MarkedYAMLException.html │ │ │ │ ├── YAMLException.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── Mark.html │ │ │ │ │ ├── MarkedYAMLException.html │ │ │ │ │ └── YAMLException.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ └── util/ │ │ │ ├── StringQuotingChecker.Default.html │ │ │ ├── StringQuotingChecker.html │ │ │ ├── class-use/ │ │ │ │ ├── StringQuotingChecker.Default.html │ │ │ │ └── StringQuotingChecker.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── javadoc.sh │ │ ├── options │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── packages │ │ ├── script.js │ │ ├── serialized-form.html │ │ └── stylesheet.css │ ├── 2.13/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com/ │ │ │ └── fasterxml/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── yaml/ │ │ │ ├── JacksonYAMLParseException.html │ │ │ ├── PackageVersion.html │ │ │ ├── UTF8Reader.html │ │ │ ├── UTF8Writer.html │ │ │ ├── YAMLFactory.html │ │ │ ├── YAMLFactoryBuilder.html │ │ │ ├── YAMLGenerator.Feature.html │ │ │ ├── YAMLGenerator.html │ │ │ ├── YAMLMapper.Builder.html │ │ │ ├── YAMLMapper.html │ │ │ ├── YAMLParser.Feature.html │ │ │ ├── YAMLParser.html │ │ │ ├── class-use/ │ │ │ │ ├── JacksonYAMLParseException.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── UTF8Reader.html │ │ │ │ ├── UTF8Writer.html │ │ │ │ ├── YAMLFactory.html │ │ │ │ ├── YAMLFactoryBuilder.html │ │ │ │ ├── YAMLGenerator.Feature.html │ │ │ │ ├── YAMLGenerator.html │ │ │ │ ├── YAMLMapper.Builder.html │ │ │ │ ├── YAMLMapper.html │ │ │ │ ├── YAMLParser.Feature.html │ │ │ │ └── YAMLParser.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── package-use.html │ │ │ ├── snakeyaml/ │ │ │ │ └── error/ │ │ │ │ ├── Mark.html │ │ │ │ ├── MarkedYAMLException.html │ │ │ │ ├── YAMLException.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── Mark.html │ │ │ │ │ ├── MarkedYAMLException.html │ │ │ │ │ └── YAMLException.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ └── util/ │ │ │ ├── StringQuotingChecker.Default.html │ │ │ ├── StringQuotingChecker.html │ │ │ ├── class-use/ │ │ │ │ ├── StringQuotingChecker.Default.html │ │ │ │ └── StringQuotingChecker.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── javadoc.sh │ │ ├── options │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── packages │ │ ├── script.js │ │ ├── serialized-form.html │ │ └── stylesheet.css │ ├── 2.14/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com/ │ │ │ └── fasterxml/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── yaml/ │ │ │ ├── JacksonYAMLParseException.html │ │ │ ├── PackageVersion.html │ │ │ ├── UTF8Reader.html │ │ │ ├── UTF8Writer.html │ │ │ ├── YAMLFactory.html │ │ │ ├── YAMLFactoryBuilder.html │ │ │ ├── YAMLGenerator.Feature.html │ │ │ ├── YAMLGenerator.html │ │ │ ├── YAMLMapper.Builder.html │ │ │ ├── YAMLMapper.html │ │ │ ├── YAMLParser.Feature.html │ │ │ ├── YAMLParser.html │ │ │ ├── class-use/ │ │ │ │ ├── JacksonYAMLParseException.html │ │ │ │ ├── PackageVersion.html │ │ │ │ ├── UTF8Reader.html │ │ │ │ ├── UTF8Writer.html │ │ │ │ ├── YAMLFactory.html │ │ │ │ ├── YAMLFactoryBuilder.html │ │ │ │ ├── YAMLGenerator.Feature.html │ │ │ │ ├── YAMLGenerator.html │ │ │ │ ├── YAMLMapper.Builder.html │ │ │ │ ├── YAMLMapper.html │ │ │ │ ├── YAMLParser.Feature.html │ │ │ │ └── YAMLParser.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── package-use.html │ │ │ ├── snakeyaml/ │ │ │ │ └── error/ │ │ │ │ ├── Mark.html │ │ │ │ ├── MarkedYAMLException.html │ │ │ │ ├── YAMLException.html │ │ │ │ ├── class-use/ │ │ │ │ │ ├── Mark.html │ │ │ │ │ ├── MarkedYAMLException.html │ │ │ │ │ └── YAMLException.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ └── util/ │ │ │ ├── StringQuotingChecker.Default.html │ │ │ ├── StringQuotingChecker.html │ │ │ ├── class-use/ │ │ │ │ ├── StringQuotingChecker.Default.html │ │ │ │ └── StringQuotingChecker.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── javadoc.sh │ │ ├── options │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── packages │ │ ├── script.js │ │ ├── serialized-form.html │ │ └── stylesheet.css │ └── 2.9/ │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com/ │ │ └── fasterxml/ │ │ └── jackson/ │ │ └── dataformat/ │ │ └── yaml/ │ │ ├── JacksonYAMLParseException.html │ │ ├── PackageVersion.html │ │ ├── UTF8Reader.html │ │ ├── UTF8Writer.html │ │ ├── YAMLFactory.html │ │ ├── YAMLGenerator.Feature.html │ │ ├── YAMLGenerator.html │ │ ├── YAMLMapper.html │ │ ├── YAMLParser.Feature.html │ │ ├── YAMLParser.html │ │ ├── class-use/ │ │ │ ├── JacksonYAMLParseException.html │ │ │ ├── PackageVersion.html │ │ │ ├── UTF8Reader.html │ │ │ ├── UTF8Writer.html │ │ │ ├── YAMLFactory.html │ │ │ ├── YAMLGenerator.Feature.html │ │ │ ├── YAMLGenerator.html │ │ │ ├── YAMLMapper.html │ │ │ ├── YAMLParser.Feature.html │ │ │ └── YAMLParser.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ ├── package-use.html │ │ └── snakeyaml/ │ │ └── error/ │ │ ├── Mark.html │ │ ├── MarkedYAMLException.html │ │ ├── YAMLException.html │ │ ├── class-use/ │ │ │ ├── Mark.html │ │ │ ├── MarkedYAMLException.html │ │ │ └── YAMLException.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── serialized-form.html │ └── stylesheet.css ├── mvnw ├── mvnw.cmd ├── pom.xml ├── properties/ │ ├── .gitattributes │ ├── README.md │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ ├── module-info.java │ │ │ └── tools/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── javaprop/ │ │ │ ├── JavaPropsFactory.java │ │ │ ├── JavaPropsFactoryBuilder.java │ │ │ ├── JavaPropsGenerator.java │ │ │ ├── JavaPropsMapper.java │ │ │ ├── JavaPropsParser.java │ │ │ ├── JavaPropsSchema.java │ │ │ ├── PackageVersion.java.in │ │ │ ├── impl/ │ │ │ │ ├── PropertiesBackedGenerator.java │ │ │ │ └── WriterBackedGenerator.java │ │ │ ├── io/ │ │ │ │ ├── JPropEscapes.java │ │ │ │ ├── JPropReadContext.java │ │ │ │ ├── JPropWriteContext.java │ │ │ │ ├── Latin1Reader.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── util/ │ │ │ ├── JPropNode.java │ │ │ ├── JPropNodeBuilder.java │ │ │ ├── JPropPathSplitter.java │ │ │ ├── Markers.java │ │ │ └── package-info.java │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── services/ │ │ ├── tools.jackson.core.TokenStreamFactory │ │ └── tools.jackson.databind.ObjectMapper │ └── test/ │ └── java/ │ ├── module-info.java │ └── tools/ │ └── jackson/ │ └── dataformat/ │ └── javaprop/ │ ├── ArrayGenerationTest.java │ ├── ArrayParsingTest.java │ ├── BinaryParsingTest.java │ ├── CustomSeparatorsTest.java │ ├── DefaultConfigsTest.java │ ├── GenerationEscapingTest.java │ ├── GeneratorFileCloseOnErrorTest.java │ ├── JDKSerializabilityTest.java │ ├── MapParsingTest.java │ ├── ModuleTestBase.java │ ├── NumberDeserWithPropsTest.java │ ├── PrefixTest.java │ ├── PropertiesSupportTest.java │ ├── SchemaConstructionTest.java │ ├── SimpleGenerationTest.java │ ├── SimpleParsingTest.java │ ├── SimpleStreamingTest.java │ ├── StreamClosingTest.java │ ├── TestVersions.java │ ├── WriteContextResetTest.java │ ├── constraints/ │ │ ├── DeeplyNestedPropsReadWriteTest.java │ │ └── PropsReadConstraintsTest.java │ ├── deser/ │ │ ├── FuzzPropsReadTest.java │ │ └── convert/ │ │ ├── CoerceToBooleanTest.java │ │ └── DefaultFromEmptyCoercionsTest.java │ ├── filter/ │ │ └── StreamingDecoratorsTest.java │ ├── ser/ │ │ └── dos/ │ │ └── CyclicPropsDataSerTest.java │ ├── testutil/ │ │ ├── CloseStateInputStream.java │ │ ├── CloseStateReader.java │ │ ├── PrefixInputDecorator.java │ │ ├── PrefixOutputDecorator.java │ │ └── failure/ │ │ ├── JacksonTestFailureExpected.java │ │ ├── JacksonTestFailureExpectedInterceptor.java │ │ └── JacksonTestShouldFailException.java │ └── util/ │ └── JPropPathSplitterTest.java ├── release-notes/ │ ├── CREDITS │ ├── CREDITS-2.x │ ├── CREDITS-old-csv.txt │ ├── CREDITS-old-properties.txt │ ├── CREDITS-old-yaml.txt │ ├── VERSION │ └── VERSION-2.x ├── toml/ │ ├── .gitattributes │ ├── LICENSE │ ├── README.md │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ ├── module-info.java │ │ │ └── tools/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── toml/ │ │ │ ├── PackageVersion.java.in │ │ │ ├── StringOutputUtil.java │ │ │ ├── TomlFactory.java │ │ │ ├── TomlFactoryBuilder.java │ │ │ ├── TomlGenerator.java │ │ │ ├── TomlMapper.java │ │ │ ├── TomlParser.java │ │ │ ├── TomlReadFeature.java │ │ │ ├── TomlStreamReadException.java │ │ │ ├── TomlStreamWriteException.java │ │ │ ├── TomlToken.java │ │ │ ├── TomlWriteContext.java │ │ │ ├── TomlWriteFeature.java │ │ │ └── UTF8Reader.java │ │ ├── jflex/ │ │ │ ├── skeleton-toml │ │ │ └── tools/ │ │ │ └── jackson/ │ │ │ └── dataformat/ │ │ │ └── toml/ │ │ │ └── toml.jflex │ │ └── resources/ │ │ └── META-INF/ │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── services/ │ │ ├── tools.jackson.core.TokenStreamFactory │ │ └── tools.jackson.databind.ObjectMapper │ └── test/ │ ├── java/ │ │ ├── module-info.java │ │ └── tools/ │ │ └── jackson/ │ │ └── dataformat/ │ │ └── toml/ │ │ ├── ComplexPojoReadWriteTest.java │ │ ├── ComplianceInvalidTest.java │ │ ├── ComplianceValidTest.java │ │ ├── FuzzTomlRead57237Test.java │ │ ├── FuzzTomlReadTest.java │ │ ├── LongTokenTest.java │ │ ├── POJOReadWriteTest.java │ │ ├── StringOutputUtilTest.java │ │ ├── TomlBigStringsTest.java │ │ ├── TomlGeneratorFileCloseOnErrorTest.java │ │ ├── TomlGeneratorTest.java │ │ ├── TomlMapperTest.java │ │ ├── TomlMapperTestBase.java │ │ ├── TomlParserTest.java │ │ ├── UTF8ReaderTest.java │ │ ├── dos/ │ │ │ └── CyclicTOMLDataSerTest.java │ │ └── testutil/ │ │ └── failure/ │ │ ├── JacksonTestFailureExpected.java │ │ ├── JacksonTestFailureExpectedInterceptor.java │ │ └── JacksonTestShouldFailException.java │ └── resources/ │ ├── clusterfuzz-testcase-minimized-TOMLFuzzer-5068015447703552 │ ├── clusterfuzz-testcase-minimized-TOMLFuzzer-6370486359031808 │ └── clusterfuzz-testcase-minimized-TOMLFuzzer-6542204348006400 └── yaml/ ├── .gitattributes ├── README.md ├── pom.xml └── src/ ├── main/ │ ├── java/ │ │ ├── module-info.java │ │ └── tools/ │ │ └── jackson/ │ │ └── dataformat/ │ │ └── yaml/ │ │ ├── JacksonYAMLParseException.java │ │ ├── JacksonYAMLWriteException.java │ │ ├── PackageVersion.java.in │ │ ├── UTF8Reader.java │ │ ├── UTF8Writer.java │ │ ├── WriterWrapper.java │ │ ├── YAMLAnchorReplayingFactory.java │ │ ├── YAMLAnchorReplayingFactoryBuilder.java │ │ ├── YAMLAnchorReplayingParser.java │ │ ├── YAMLFactory.java │ │ ├── YAMLFactoryBuilder.java │ │ ├── YAMLGenerator.java │ │ ├── YAMLMapper.java │ │ ├── YAMLParser.java │ │ ├── YAMLReadFeature.java │ │ ├── YAMLSchema.java │ │ ├── YAMLWriteFeature.java │ │ ├── package-info.java │ │ └── util/ │ │ ├── StringQuotingChecker.java │ │ └── package-info.java │ └── resources/ │ └── META-INF/ │ ├── LICENSE │ ├── NOTICE │ └── services/ │ ├── tools.jackson.core.TokenStreamFactory │ └── tools.jackson.databind.ObjectMapper └── test/ ├── java/ │ ├── module-info.java │ ├── perf/ │ │ ├── MediaItem.java │ │ ├── YAMLDeserPerf.java │ │ └── YAMLSerPerf.java │ └── tools/ │ └── jackson/ │ └── dataformat/ │ └── yaml/ │ ├── ExceptionConversionTest.java │ ├── JDKSerializabilityTest.java │ ├── ModuleTestBase.java │ ├── MultipleDocumentsReadTest.java │ ├── MultipleDocumentsWriteTest.java │ ├── TestVersions.java │ ├── YAMLMapperTest.java │ ├── constraints/ │ │ ├── DeeplyNestedYAMLReadWriteTest.java │ │ └── YAMLReadConstraintsTest.java │ ├── deser/ │ │ ├── BinaryYAMLReadTest.java │ │ ├── DatabindAdvancedTest.java │ │ ├── DatabindReadTest.java │ │ ├── EmptyDocumentDeser154Test.java │ │ ├── NameQuoting306Test.java │ │ ├── NullFromEmptyString130Test.java │ │ ├── NumberDeserWithYAMLTest.java │ │ ├── ParseBooleanLikeWordsAsStringsTest.java │ │ ├── ParseOctalNumbers276Test.java │ │ ├── ParserAutoCloseTest.java │ │ ├── ParserDupHandlingTest.java │ │ ├── StreamingParse337Test.java │ │ ├── StreamingYAMLAnchorReplayingParseTest.java │ │ ├── StreamingYAMLParseTest.java │ │ ├── UTF8ReaderTest.java │ │ ├── UnicodeYAMLRead497Test.java │ │ ├── YAML12CoreSchema623Test.java │ │ └── YAML12CoreSchemaParseTest.java │ ├── filter/ │ │ └── StreamingDecoratorsTest.java │ ├── fuzz/ │ │ ├── FuzzYAMLRead63274Test.java │ │ ├── FuzzYAMLRead65855Test.java │ │ ├── FuzzYAMLReadTest.java │ │ └── FuzzYAML_65918_Test.java │ ├── misc/ │ │ ├── ObjectAndTypeId231Test.java │ │ ├── ObjectAndTypeId232Test.java │ │ ├── ObjectAndTypeId292Test.java │ │ ├── ObjectId123Test.java │ │ ├── ObjectId63Test.java │ │ ├── ObjectIdTest.java │ │ ├── ObjectIdWithCreator22Test.java │ │ ├── ObjectIdWithUUID550Test.java │ │ ├── PolymorphicDeductionTest.java │ │ ├── PolymorphicWithObjectId25Test.java │ │ ├── ReservedNamesTest.java │ │ └── ReservedValuesTest.java │ ├── ser/ │ │ ├── BinaryWriteTest.java │ │ ├── CustomNodeStyleTest.java │ │ ├── CustomStringQuoting229Test.java │ │ ├── DatabindWriteTest.java │ │ ├── GeneratorAutoCloseTest.java │ │ ├── GeneratorExceptionHandlingTest.java │ │ ├── GeneratorFeature175Test.java │ │ ├── GeneratorFeature34Test.java │ │ ├── GeneratorFeatureTest.java │ │ ├── GeneratorFileCloseOnErrorTest.java │ │ ├── GeneratorWithMinimize568Test.java │ │ ├── GeneratorWithMinimizeTest.java │ │ ├── GeneratorWithSplitLinesTest.java │ │ ├── GeneratorWriteCommentTest.java │ │ ├── SimpleGeneration215Test.java │ │ ├── SimpleGenerationTest.java │ │ ├── UTF8WriterTest.java │ │ ├── YAML12CoreSchema623Test.java │ │ └── dos/ │ │ └── CyclicYAMLDataSerTest.java │ ├── testutil/ │ │ ├── PrefixInputDecorator.java │ │ ├── PrefixOutputDecorator.java │ │ └── failure/ │ │ ├── JacksonTestFailureExpected.java │ │ ├── JacksonTestFailureExpectedInterceptor.java │ │ └── JacksonTestShouldFailException.java │ ├── tofix/ │ │ ├── IntegerWithUnderscoresRead146Test.java │ │ ├── LongWithUnderscoresRead146Test.java │ │ ├── NumberAltIntRead71Test.java │ │ ├── ObjectIdWithTree2Test.java │ │ └── SimpleGeneration366NotaBugTest.java │ └── type/ │ ├── PolymorphicIdTest.java │ ├── RawTagTest.java │ └── TypeIdTest.java └── resources/ ├── data/ │ └── fuzz-65918.yaml └── log4j.properties ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ # Do not merge `pom.xml` from older version, as it will typically conflict pom.xml merge=ours csv/pom.xml merge=ours properties/pom.xml merge=ours yaml/pom.xml merge=ours ================================================ FILE: .github/FUNDING.yml ================================================ tidelift: "maven/com.fasterxml.jackson.dataformat:jackson-dataformats-text" github: cowtowncoder ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" ================================================ FILE: .github/workflows/coverage-comment.yml ================================================ name: Post Coverage Comment on: workflow_run: workflows: ["Build and Deploy Snapshot"] types: [completed] permissions: pull-requests: write jobs: comment: runs-on: ubuntu-24.04 if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' steps: - name: Download comment artifact uses: dawidd6/action-download-artifact@8305c0f1062bb0d184d09ef4493ecb9288447732 # v20 with: name: pr-comment path: pr-comment/ run_id: ${{ github.event.workflow_run.id }} github_token: ${{ secrets.GITHUB_TOKEN }} - name: Post coverage comment run: | PR_NUMBER=$(cat pr-comment/pr-number.txt) COMMENT_BODY=$(cat pr-comment/comment-body.txt) # Find and delete existing comment COMMENT_ID=$(gh pr view $PR_NUMBER --repo ${{ github.repository }} --json comments \ --jq '.comments[] | select(.body | contains("")) | .id' | head -1) if [ -n "$COMMENT_ID" ]; then gh api -X DELETE "repos/${{ github.repository }}/issues/comments/$COMMENT_ID" || true fi # Post new comment gh pr comment $PR_NUMBER --repo ${{ github.repository }} --body "$COMMENT_BODY" env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .github/workflows/dep_build_v2.yml ================================================ name: Re-build on jackson-databind v2 push on: repository_dispatch: types: [jackson-databind-pushed] # just for testing workflow_dispatch: permissions: contents: read jobs: build: # Do we want wide matrix build? For now, limited runs-on: ubuntu-latest strategy: fail-fast: false matrix: java_version: ['8', '17', '21'] env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: 2.x - name: Set up JDK uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 with: distribution: 'temurin' java-version: ${{ matrix.java_version }} cache: 'maven' - name: Build and test run: ./mvnw -B -ff -ntp clean verify # No recursive rebuild (yet?) ================================================ FILE: .github/workflows/dep_build_v3.yml ================================================ name: Re-build on jackson-databind v3 push on: repository_dispatch: types: [jackson-databind-pushed-v3] # just for testing workflow_dispatch: permissions: contents: read jobs: build: # Do we want wide matrix build? For now, limited runs-on: 'ubuntu-22.04' strategy: fail-fast: false matrix: java_version: ['17', '21'] env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: 3.x - name: Set up JDK uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 with: distribution: 'temurin' java-version: ${{ matrix.java_version }} cache: 'maven' - name: Build and test run: ./mvnw -B -ff -ntp clean verify # No recursive rebuild (yet?) ================================================ FILE: .github/workflows/main.yml ================================================ name: Build and Deploy Snapshot on: push: branches: ['3.*'] paths-ignore: - "README.md" - "release-notes/*" pull_request: branches: paths-ignore: - "README.md" - "release-notes/*" permissions: contents: read pull-requests: write jobs: build: runs-on: 'ubuntu-24.04' strategy: fail-fast: false matrix: java_version: ['17', '21', '25'] include: - java_version: '17' release_build: 'R' env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Set up JDK uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 with: distribution: 'temurin' java-version: ${{ matrix.java_version }} cache: 'maven' server-id: central-snapshots server-username: CI_DEPLOY_USERNAME server-password: CI_DEPLOY_PASSWORD # See https://github.com/actions/setup-java/blob/v2/docs/advanced-usage.md#Publishing-using-Apache-Maven # gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import # gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase - name: Build run: ./mvnw -B -q -ff -ntp verify - name: Extract project Maven version id: projectVersion run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.5.1:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT - name: Deploy snapshot if: ${{ matrix.release_build && github.event_name != 'pull_request' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }} env: CI_DEPLOY_USERNAME: ${{ secrets.CENTRAL_DEPLOY_USERNAME }} CI_DEPLOY_PASSWORD: ${{ secrets.CENTRAL_DEPLOY_PASSWORD }} # MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} run: ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy - name: Generate code coverage if: ${{ matrix.release_build }} run: ./mvnw -B -q -ff -ntp test jacoco:report - name: Publish code coverage if: ${{ matrix.release_build && github.event_name != 'pull_request' }} uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./csv/target/site/jacoco/jacoco.xml,./properties/target/site/jacoco/jacoco.xml,./yaml/target/site/jacoco/jacoco.xml,./toml/target/site/jacoco/jacoco.xml flags: unittests - name: Merge JaCoCo CSV reports if: ${{ matrix.release_build }} run: | # Merge all module JaCoCo CSV reports into one file mkdir -p target head -1 csv/target/site/jacoco/jacoco.csv > target/jacoco-merged.csv for module in csv properties yaml toml; do tail -n +2 "${module}/target/site/jacoco/jacoco.csv" >> target/jacoco-merged.csv done - name: Upload coverage report as artifact if: ${{ matrix.release_build && github.event_name != 'pull_request' }} uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: jacoco-report path: target/jacoco-merged.csv retention-days: 30 - name: Download base branch coverage if: ${{ matrix.release_build && github.event_name == 'pull_request' }} uses: dawidd6/action-download-artifact@8305c0f1062bb0d184d09ef4493ecb9288447732 # v20 continue-on-error: true with: workflow: main.yml branch: ${{ github.event.pull_request.base.ref }} name: jacoco-report path: base-coverage/ - name: Generate coverage comment if: ${{ matrix.release_build && github.event_name == 'pull_request' }} run: | # Parse JaCoCo CSV to compute coverage percentage # Columns: GROUP,PACKAGE,CLASS,INSTRUCTION_MISSED(4),INSTRUCTION_COVERED(5),BRANCH_MISSED(6),BRANCH_COVERED(7),... parse_coverage() { local csv_file=$1 col_missed=$2 col_covered=$3 awk -F',' -v m="$col_missed" -v c="$col_covered" \ 'NR>1 { total_missed += $m; total_covered += $c; } END { if (total_missed + total_covered > 0) printf "%.2f", (total_covered * 100.0) / (total_missed + total_covered) }' "$csv_file" } format_delta() { local delta=$1 if awk -v d="$delta" 'BEGIN { exit (d >= 0) ? 0 : 1 }'; then echo "+${delta}%|📈" else echo "${delta}%|📉" fi } get_color() { awk -v v="$1" 'BEGIN { if (v >= 80) print "brightgreen" else if (v >= 60) print "green" else if (v >= 40) print "yellow" else print "red" }' } # Compute current coverage from JaCoCo CSV COVERAGE=$(parse_coverage "target/jacoco-merged.csv" 4 5) BRANCHES=$(parse_coverage "target/jacoco-merged.csv" 6 7) # Check if base coverage artifact was downloaded and calculate deltas HAS_DELTA=false if [ -f "base-coverage/jacoco-merged.csv" ]; then echo "Found base branch coverage from artifact" BASE_COVERAGE=$(parse_coverage "base-coverage/jacoco-merged.csv" 4 5) BASE_BRANCHES=$(parse_coverage "base-coverage/jacoco-merged.csv" 6 7) if [ -n "$BASE_COVERAGE" ] && [ -n "$BASE_BRANCHES" ]; then COV_DELTA=$(awk -v curr="$COVERAGE" -v base="$BASE_COVERAGE" 'BEGIN { printf "%.3f", curr - base }') BR_DELTA=$(awk -v curr="$BRANCHES" -v base="$BASE_BRANCHES" 'BEGIN { printf "%.3f", curr - base }') IFS='|' read -r COV_DELTA_STR COV_DELTA_EMOJI <<< "$(format_delta "$COV_DELTA")" IFS='|' read -r BR_DELTA_STR BR_DELTA_EMOJI <<< "$(format_delta "$BR_DELTA")" HAS_DELTA=true fi fi # Determine badge colors COV_COLOR=$(get_color "$COVERAGE") BR_COLOR=$(get_color "$BRANCHES") # Build coverage table with or without deltas if [ "$HAS_DELTA" = "true" ]; then COVERAGE_TABLE="| Metric | Coverage | Change | |--------|----------|--------| | **Instructions** | ![coverage](https://img.shields.io/badge/coverage-${COVERAGE}%25-${COV_COLOR}) **${COVERAGE}%** | ${COV_DELTA_EMOJI} **${COV_DELTA_STR}** | | **Branches** | ![branches](https://img.shields.io/badge/branches-${BRANCHES}%25-${BR_COLOR}) **${BRANCHES}%** | ${BR_DELTA_EMOJI} **${BR_DELTA_STR}** |" else COVERAGE_TABLE="| Metric | Coverage | |--------|----------| | **Instructions** | ![coverage](https://img.shields.io/badge/coverage-${COVERAGE}%25-${COV_COLOR}) **${COVERAGE}%** | | **Branches** | ![branches](https://img.shields.io/badge/branches-${BRANCHES}%25-${BR_COLOR}) **${BRANCHES}%** |" fi COMMENT_BODY="## :test_tube: Code Coverage Report $COVERAGE_TABLE > Coverage data generated from JaCoCo test results " # Save comment for the workflow_run mkdir -p pr-comment echo "${{ github.event.pull_request.number }}" > pr-comment/pr-number.txt echo "$COMMENT_BODY" > pr-comment/comment-body.txt - name: Upload PR comment if: ${{ matrix.release_build && github.event_name == 'pull_request' }} uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: pr-comment path: pr-comment/ retention-days: 1 ================================================ FILE: .gitignore ================================================ # use glob syntax. syntax: glob *.class *~ *.bak *.off *.old .DS_Store # building target # Eclipse .classpath .project .settings # IDEA *.iml *.ipr *.iws .idea/ ================================================ FILE: .mvn/wrapper/MavenWrapperDownloader.java ================================================ /* * Copyright 2007-present the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.net.*; import java.io.*; import java.nio.channels.*; import java.util.Properties; public class MavenWrapperDownloader { private static final String WRAPPER_VERSION = "0.5.6"; /** * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. */ private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; /** * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to * use instead of the default one. */ private static final String MAVEN_WRAPPER_PROPERTIES_PATH = ".mvn/wrapper/maven-wrapper.properties"; /** * Path where the maven-wrapper.jar will be saved to. */ private static final String MAVEN_WRAPPER_JAR_PATH = ".mvn/wrapper/maven-wrapper.jar"; /** * Name of the property which should be used to override the default download url for the wrapper. */ private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; public static void main(String args[]) { System.out.println("- Downloader started"); File baseDirectory = new File(args[0]); System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); // If the maven-wrapper.properties exists, read it and check if it contains a custom // wrapperUrl parameter. File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); String url = DEFAULT_DOWNLOAD_URL; if(mavenWrapperPropertyFile.exists()) { FileInputStream mavenWrapperPropertyFileInputStream = null; try { mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); Properties mavenWrapperProperties = new Properties(); mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); } catch (IOException e) { System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); } finally { try { if(mavenWrapperPropertyFileInputStream != null) { mavenWrapperPropertyFileInputStream.close(); } } catch (IOException e) { // Ignore ... } } } System.out.println("- Downloading from: " + url); File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); if(!outputFile.getParentFile().exists()) { if(!outputFile.getParentFile().mkdirs()) { System.out.println( "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); } } System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); try { downloadFileFromURL(url, outputFile); System.out.println("Done"); System.exit(0); } catch (Throwable e) { System.out.println("- Error downloading"); e.printStackTrace(); System.exit(1); } } private static void downloadFileFromURL(String urlString, File destination) throws Exception { if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { String username = System.getenv("MVNW_USERNAME"); char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); Authenticator.setDefault(new Authenticator() { @Override protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication(username, password); } }); } URL website = new URL(urlString); ReadableByteChannel rbc; rbc = Channels.newChannel(website.openStream()); FileOutputStream fos = new FileOutputStream(destination); fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); fos.close(); rbc.close(); } } ================================================ FILE: .mvn/wrapper/maven-wrapper.properties ================================================ # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.1/maven-wrapper-3.3.1.jar ================================================ FILE: .travis.yml ================================================ language: java git: quiet: true submodules: false jdk: - openjdk8 - openjdk11 # 2021-06-25, tatu: Stop snapshot builds via Travis, only check for fails script: mvn -B clean verify ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ ## Overview This is a multi-module umbrella project for [Jackson](../../../jackson) standard text-format dataformat backends. Dataformat backends are used to support format alternatives to JSON, using general-purpose Jackson API. Formats included allow access using all 3 API styles (streaming, databinding, tree model). For Jackson 2.x this is done by sub-classing Jackson core abstractions of: * All backends sub-class `JsonFactory`, which is factory for: * `JsonParser` for reading data (decoding data encoding in supported format) * `JsonGenerator` for writing data (encoding data using supported format) * Some backends sub-class `ObjectMapper` for additional support for databinding there will be some changes (such as introduction of format-specific `ObjectMapper` sub-classes) in Jackson 3.0. ## Branches `master` branch is for developing the next major Jackson version -- 3.0 -- but there are active maintenance branches in which much of development happens: * `2.19` is for developing the next minor 2.x version * `2.18`/`2.17` are for backported fixes for 2.18/2.17 patch versions (respectively) Older branches are usually not changed but are available for historic reasons. All released versions have matching git tags (`jackson-dataformats-text-2.9.4`). Note that since individual format modules used to live in their own repositories, older branches and tags do not exist in this repository. ## Textual formats included Currently included backends are: * [CSV](csv/) * [Properties](properties/) * [TOML](toml/) (since 2.13) * [YAML](yaml/) Standard supported formats that are not yet included here (but are likely added in future) are: * [XML](../../../jackson-dataformat-xml) ## License All modules are licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt). ## Status [![Build Status](https://travis-ci.org/FasterXML/jackson-dataformats-text.svg?branch=master)](https://travis-ci.org/FasterXML/jackson-dataformats-text) ## Maven dependencies To use these format backends Maven-based projects, use following dependency: ```xml com.fasterxml.jackson.dataformat jackson-dataformat-[FORMAT] 2.18.1 ``` where `[FORMAT]` is one of supported modules (`csv`, `properties`, `toml`, `yaml`) ## More See [Wiki](../../wiki) for more information (javadocs). ================================================ FILE: SECURITY.md ================================================ # Security Policy Last Updated: 2022-09-20 ## Supported Versions Current status of open branches, with new releases, can be found from [Jackson Releases](https://github.com/FasterXML/jackson/wiki/Jackson-Releases) wiki page ## Reporting a Vulnerability The recommended mechanism for reporting possible security vulnerabilities follows so-called "Coordinated Disclosure Plan" (see [definition of DCP](https://vuls.cert.org/confluence/display/Wiki/Coordinated+Vulnerability+Disclosure+Guidance) for general idea). The first step is to file a [Tidelift security contact](https://tidelift.com/security): Tidelift will route all reports via their system to maintainers of relevant package(s), and start the process that will evaluate concern and issue possible fixes, send update notices and so on. Note that you do not need to be a Tidelift subscriber to file a security contact. Alternatively you may also report possible vulnerabilities to `info` at fasterxml dot com mailing address. Note that filing an issue to go with report is fine, but if you do that please DO NOT include details of security problem in the issue but only in email contact. This is important to give us time to provide a patch, if necessary, for the problem. ## Verifying Artifact signatures (for more in-depth explanation, see [Apache Release Signing](https://infra.apache.org/release-signing#keys-policy) document) To verify that any given Jackson artifact has been signed with a valid key, have a look at `KEYS` file of the main Jackson repo: https://github.com/FasterXML/jackson/blob/master/KEYS which lists all known valid keys in use. ================================================ FILE: csv/.gitattributes ================================================ # Do not merge `pom.xml` from older version, as it will typically conflict pom.xml merge=ours ================================================ FILE: csv/README.md ================================================ # Overview [Jackson](https://github.com/FasterXML/jackson) data format module for reading and writing [CSV](http://en.wikipedia.org/wiki/Comma-separated_values) encoded data, either as "raw" data (sequence of String arrays), or via data binding to/from Java Objects (POJOs). Project is licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt). # Status Since version 2.3 this module is considered complete and production ready. All Jackson layers (streaming, databind, tree model) are supported. [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.fasterxml.jackson.dataformat/jackson-dataformat-csv/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.fasterxml.jackson.dataformat/jackson-dataformat-csv/) [![Javadoc](https://javadoc.io/badge/com.fasterxml.jackson.dataformat/jackson-dataformat-csv.svg)](http://www.javadoc.io/doc/com.fasterxml.jackson.dataformat/jackson-dataformat-csv) ## Maven dependency To use this extension on Maven-based projects, use following dependency: ```xml com.fasterxml.jackson.dataformat jackson-dataformat-csv 2.20.0 ``` (with whatever is the latest version) # Usage ## How-To Documents * [Reading CSV with Jackson](https://cowtowncoder.medium.com/reading-csv-with-jackson-c4e74a15ddc1) (April 2021) * [Writing CSV with Jackson](https://cowtowncoder.medium.com/writing-csv-with-jackson-204fdb3c9dac) (October 2021) ## CSV Schema: what is that? CSV documents are essentially rows of data, instead of JSON Objects (sequences of key/value pairs). So one potential way to expose this data is to expose a sequence of JSON arrays; and similarly allow writing of arrays. Jackson supports this use-case (which works if you do not pass "CSV schema"), but it is not a very convenient way. The alternative (and most commonly used) approach is to use a "CSV schema", object that defines set of names (and optionally types) for columns. This allows `CsvParser` to expose CSV data as if it was a sequence of JSON objects, name/value pairs. ## 3 ways to define Schema So how do you get a CSV Schema instance to use? There are 3 ways: * Create schema based on a Java class * Build schema manually * Use the first line of CSV document to get the names (no types) for Schema Here is code for above cases: ```java // Schema from POJO (usually has @JsonPropertyOrder annotation) CsvSchema schema = mapper.schemaFor(Pojo.class); // Manually-built schema: one with type, others default to "STRING" CsvSchema schema = CsvSchema.builder() .addColumn("firstName") .addColumn("lastName") .addColumn("age", CsvSchema.ColumnType.NUMBER) .build(); // Read schema from the first line; start with bootstrap instance // to enable reading of schema from the first line // NOTE: reads schema and uses it for binding CsvSchema bootstrapSchema = CsvSchema.emptySchema().withHeader(); ObjectMapper mapper = new CsvMapper(); mapper.readerFor(Pojo.class).with(bootstrapSchema).readValue(csv); ``` It is important to note that the schema object is needed to ensure correct ordering of columns; schema instances are immutable and fully reusable (as are `ObjectWriter` instances). Note also that while explicit type can help efficiency it is usually not required, as Jackson data binding can do common conversions/coercions such as parsing numbers from Strings. ## Data-binding with schema CSV content can be read either using `CsvFactory` (and parser, generators it creates) directly, or through `CsvMapper` (extension of standard `ObjectMapper`). When using `CsvMapper`, you will be creating `ObjectReader` or `ObjectWriter` instances that pass `CsvSchema` along to `CsvParser` / `CsvGenerator`. When creating parser/generator directly, you will need to explicitly call `setSchema(schema)` before starting to read/write content. The most common method for reading CSV data, then, is: ```java CsvMapper mapper = new CsvMapper(); Pojo value = ...; CsvSchema schema = mapper.schemaFor(Pojo.class); // schema from 'Pojo' definition String csv = mapper.writer(schema).writeValueAsString(value); MappingIterator it = mapper.readerFor(Pojo.class).with(schema) .readValues(csv); // Either read them all one by one (streaming) while (it.hasNextValue()) { Pojo value = it.nextValue(); // ... do something with the value } // or, alternatively all in one go List all = it.readAll(); ``` ## Data-binding without schema But even if you do not know (or care) about column names you can read/write CSV documents. The main difference is that in this case data is exposed as a sequence of ("JSON") Arrays, not Objects, as "raw" tabular data. So let's consider the following CSV input: ``` a,b c,d e,f ``` By default, Jackson `CsvParser` would see it as equivalent to the following JSON: ```json ["a","b"] ["c","d"] ["e","f"] ``` This is easy to use; in fact, if you ignore everything to do with Schema from the above examples, you get working code. For example: ```java CsvMapper mapper = new CsvMapper(); // important: we need "array wrapping" (see next section) here: mapper.enable(CsvParser.Feature.WRAP_AS_ARRAY); File csvFile = new File("input.csv"); // or from String, URL etc MappingIterator it = mapper.readerFor(String[].class).readValues(csvFile); while (it.hasNext()) { String[] row = it.next(); // and voila, column values in an array. Works with Lists as well } ``` ## With column names from first row But if you want a "data as Map" approach, with data that has expected column names as the first row, followed by data rows, you can iterate over entries quite conveniently as well. Assuming we had CSV content like: ```csv name,age Billy,28 Barbara,36 ``` we could use the following code: ```java File csvFile = new File(fileName); CsvMapper mapper = new CsvMapper(); CsvSchema schema = CsvSchema.emptySchema().withHeader(); // use first row as header; otherwise defaults are fine MappingIterator> it = mapper.readerFor(Map.class) .with(schema) .readValues(csvFile); while (it.hasNext()) { Map rowAsMap = it.next(); // access by column name, as defined in the header row... } ``` and get two rows as `java.util.Map`s, similar to what JSON like this ```json {"name":"Billy","age":"28"} {"name":"Barbara","age":"36"} ``` would produce. Additionally, to generate a schema for the `Map`, we could do the following : ```java CsvSchema.Builder schema = new CsvSchema.Builder(); for (String value : map.keySet()) { schema.addColumn(value, CsvSchema.ColumnType.STRING); } new CsvMapper().writerFor(Map.class).with(schema.build()); ``` ## Adding virtual Array wrapping In addition to reading things as root-level Objects or arrays, you can also force use of virtual "array wrapping". This means that using earlier CSV data example, parser would instead expose it similar to following JSON: ```json [ ["a","b"] ["c","d"] ["e","f"] ] ``` This is useful if functionality expects a single ("JSON") Array; this was the case for example when using `ObjectReader.readValues()` functionality. ## Configuring `CsvSchema` Besides defining how CSV columns are mapped to and from Java Object properties, `CsvSchema` also defines low-level encoding details. These are details that can be changed by using various `withXxx()` and `withoutXxx` methods (or through associated `CsvSchema.Builder` object); for example: ```java CsvSchema schema = mapper.schemaFor(Pojo.class); // let's do pipe-delimited, not comma-delimited schema = schema.withColumnSeparator('|') // and write Java nulls as "NULL" (instead of empty string) .withNullValue("NULL") // and let's NOT allow escaping with backslash ('\') .withoutEscapeChar() ; ObjectReader r = mapper.readerFor(Pojo.class).with(schema); Pojo value = r.readValue(csvInput); ``` For a full description of all configurability, please see [CsvSchema](../../../wiki/CsvSchema). # Documentation * [Wiki](../../../wiki) (includes javadocs) * How-to * [How to read a CSV file with Header in Java using Jackson library](https://www.java67.com/2019/05/how-to-read-csv-file-in-java-using-jackson-library.html) (2019) * [Converting JSON to CSV in Java](https://www.baeldung.com/java-converting-json-to-csv) (2019) * [Writing CSV w/ CSVMapper & Mixin annotations](http://demeranville.com/writing-csv-using-jackson-csvmapper-mixin-annotations/) (2014) * [CSV with Jackson 2.0](http://www.cowtowncoder.com/blog/archives/2012/03/entry_468.html) (2012) * Framework-specific * [Read and Write CSV Data with jackson-dataformat-csv](Read and Write CSV Data with jackson-dataformat-csv) (JBeret) * Performance * [Java CSV parser comparison](https://github.com/uniVocity/csv-parsers-comparison) # CSV Compatibility Since CSV is a very loose "standard", there are many extensions to basic functionality. Jackson supports the following extension or variations: * Customizable delimiters (through `CsvSchema`) * Default separator is comma (`,`), but any other character can be specified as well * Default text quoting is done using double-quote (`"`), and may be changed * It is possible to enable use of an "escape character" (by default, not enabled): some variations use `\` for escaping. If enabled, character immediately followed will be used as-is, except for a small set of "well-known" escapes (`\n`, `\r`, `\t`, `\0`) * Linefeed character: when generating content, the default linefeed String used is "`\n`" but this may be changed * Null value: by default, null values are serialized as empty Strings (""), but any other String value be configured to be used instead (for example, "null", "N/A" etc) * Use of first row as a set of column names: as explained earlier, it is possible to configure `CsvSchema` to indicate that the contents of the first (non-comment) document row is taken to mean the set of column names to use * Comments: when enabled (via `CsvSchema`, or enabling `CsvParser.Feature.ALLOW_COMMENTS`), if a row starts with a `#` character, it will be considered a comment and skipped * Blank lines: when enabled (using `CsvParser.Feature.SKIP_BLANK_LINES`) rows that are empty or composed only of whitespaces are skipped # Limitations * Due to the tabular nature of `CSV` format, deeply nested data structures are not well supported. * You can use `@JsonUnwrapped` to get around this * Use of Tree Model (`JsonNode`) is supported, but only within limitations of `CSV` format. # Future improvements Areas that are planned to be improved include things like: * Optimizations to make number handling as efficient as from JSON (but note: even with existing code, performance is typically limited by I/O and NOT parsing or generation) * Although, as per [Java CSV parser comparison](https://github.com/uniVocity/csv-parsers-comparison), this module is actually performing quite well already * Mapping of nested POJOs using dotted notation (similar to `@JsonUnwrapped`, but without requiring its use -- note that `@JsonUnwrapped` is already supported) ================================================ FILE: csv/pom.xml ================================================ 4.0.0 tools.jackson.dataformat jackson-dataformats-text 3.2.0-SNAPSHOT jackson-dataformat-csv Jackson-dataformat-CSV jar Support for reading and writing CSV-encoded data via Jackson abstractions. https://github.com/FasterXML/jackson-dataformats-text The Apache Software License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0.txt repo tools/jackson/dataformat/csv ${project.groupId}.csv tools.jackson.dataformat.csv.impl tools.jackson.core jackson-databind com.fasterxml.jackson.core jackson-annotations com.google.code.maven-replacer-plugin replacer org.cyclonedx cyclonedx-maven-plugin org.gradlex gradle-module-metadata-maven-plugin ================================================ FILE: csv/samples/f_5500_2010_first9999.csv ================================================ ACK_ID,FORM_PLAN_YEAR_BEGIN_DATE,FORM_TAX_PRD,TYPE_PLAN_ENTITY_CD,TYPE_DFE_PLAN_ENTITY_CD,INITIAL_FILING_IND,AMENDED_IND,FINAL_FILING_IND,SHORT_PLAN_YR_IND,COLLECTIVE_BARGAIN_IND,F5558_APPLICATION_FILED_IND,EXT_AUTOMATIC_IND,DFVC_PROGRAM_IND,EXT_SPECIAL_IND,EXT_SPECIAL_TEXT,PLAN_NAME,SPONS_DFE_PN,PLAN_EFF_DATE,SPONSOR_DFE_NAME,SPONS_DFE_DBA_NAME,SPONS_DFE_CARE_OF_NAME,SPONS_DFE_MAIL_US_ADDRESS1,SPONS_DFE_MAIL_US_ADDRESS2,SPONS_DFE_MAIL_US_CITY,SPONS_DFE_MAIL_US_STATE,SPONS_DFE_MAIL_US_ZIP,SPONS_DFE_MAIL_FOREIGN_ADDR1,SPONS_DFE_MAIL_FOREIGN_ADDR2,SPONS_DFE_MAIL_FOREIGN_CITY,SPONS_DFE_MAIL_FORGN_PROV_ST,SPONS_DFE_MAIL_FOREIGN_CNTRY,SPONS_DFE_MAIL_FORGN_POSTAL_CD,SPONS_DFE_LOC_US_ADDRESS1,SPONS_DFE_LOC_US_ADDRESS2,SPONS_DFE_LOC_US_CITY,SPONS_DFE_LOC_US_STATE,SPONS_DFE_LOC_US_ZIP,SPONS_DFE_LOC_FOREIGN_ADDRESS1,SPONS_DFE_LOC_FOREIGN_ADDRESS2,SPONS_DFE_LOC_FOREIGN_CITY,SPONS_DFE_LOC_FORGN_PROV_ST,SPONS_DFE_LOC_FOREIGN_CNTRY,SPONS_DFE_LOC_FORGN_POSTAL_CD,SPONS_DFE_EIN,SPONS_DFE_PHONE_NUM,BUSINESS_CODE,ADMIN_NAME,ADMIN_CARE_OF_NAME,ADMIN_US_ADDRESS1,ADMIN_US_ADDRESS2,ADMIN_US_CITY,ADMIN_US_STATE,ADMIN_US_ZIP,ADMIN_FOREIGN_ADDRESS1,ADMIN_FOREIGN_ADDRESS2,ADMIN_FOREIGN_CITY,ADMIN_FOREIGN_PROV_STATE,ADMIN_FOREIGN_CNTRY,ADMIN_FOREIGN_POSTAL_CD,ADMIN_EIN,ADMIN_PHONE_NUM,LAST_RPT_SPONS_NAME,LAST_RPT_SPONS_EIN,LAST_RPT_PLAN_NUM,ADMIN_SIGNED_DATE,ADMIN_SIGNED_NAME,SPONS_SIGNED_DATE,SPONS_SIGNED_NAME,DFE_SIGNED_DATE,DFE_SIGNED_NAME,TOT_PARTCP_BOY_CNT,TOT_ACTIVE_PARTCP_CNT,RTD_SEP_PARTCP_RCVG_CNT,RTD_SEP_PARTCP_FUT_CNT,SUBTL_ACT_RTD_SEP_CNT,BENEF_RCVG_BNFT_CNT,TOT_ACT_RTD_SEP_BENEF_CNT,PARTCP_ACCOUNT_BAL_CNT,SEP_PARTCP_PARTL_VSTD_CNT,CONTRIB_EMPLRS_CNT,TYPE_PENSION_BNFT_CODE,TYPE_WELFARE_BNFT_CODE,FUNDING_INSURANCE_IND,FUNDING_SEC412_IND,FUNDING_TRUST_IND,FUNDING_GEN_ASSET_IND,BENEFIT_INSURANCE_IND,BENEFIT_SEC412_IND,BENEFIT_TRUST_IND,BENEFIT_GEN_ASSET_IND,SCH_R_ATTACHED_IND,SCH_MB_ATTACHED_IND,SCH_SB_ATTACHED_IND,SCH_H_ATTACHED_IND,SCH_I_ATTACHED_IND,SCH_A_ATTACHED_IND,NUM_SCH_A_ATTACHED_CNT,SCH_C_ATTACHED_IND,SCH_D_ATTACHED_IND,SCH_G_ATTACHED_IND,FILING_STATUS,DATE_RECEIVED,VALID_ADMIN_SIGNATURE,VALID_DFE_SIGNATURE,VALID_SPONSOR_SIGNATURE "20100202162239P040068022209001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","1","0",,"AUTHORIZE.NET HOLDINGS, INC. 401 (K) RETIREMENT PLAN","001","1990-01-01","CYBERSOURCE CORPORATION",,,"1295 CHARLESTON ROAD",,"MOUNTAIN VIEW","CA","94043",,,,,,,,,,,,,,,,,,"043065410","6509656052","541519","CYBERSOURCE CORPORATION",,"1295 CHARLESTON ROAD",,"MOUNTAIN VIEW","CA","94043",,,,,,,"043065410","6509656052","LIGHTBRIDGE, INC.",,"001","2010-02-02T10:10:01Z","DANIELA DINI","2010-02-02T10:21:24Z","STEVEN PELLIZZER",,,650,196,0,317,513,0,513,418,51,,"2E2J2F2G2K3E",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2010-02-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20100203134006P030015135480001","2008-01-01","2008-12-31","2",,"0","0","0","1","0","0","0","0","0",,"KEVIN O. DAVIS MONEY PURCHASE PLAN","001","1998-01-01","KEVIN O. DAVIS","KEVIN O. DAVIS AGENCY",,"4801 FRANKFORD RD SUITE 100",,"DALLAS","TX","75287",,,,,,,"4801 FRANKFORD RD SUITE 100",,"DALLAS","TX","75287",,,,,,,"223457524","9728184223","524210","KEVIN O. DAVIS",,"4801 FRANKFORD RD SUITE 100",,"DALLAS","TX","75287",,,,,,,"223457524","9728184223",,,,"2010-02-03T07:39:51Z","KEVIN DAVIS",,,,,2,2,0,0,2,0,2,2,0,0,"2C3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-02-03","Filed with authorized/valid electronic signature",, "20110527102330P030065732353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED BULK CARRIERS USA, L.L.C. 401K PLAN","002","1995-01-01","UNITED BULK CARRIERS USA, L.L.C.",,,"900 W VALLEY RD STE 100",,"WAYNE","PA","190871850",,,,,,,,,,,,,,,,,,"233002252","6109952600","488300","UNITED BULK CARRIERS USA, L.L.C.",,"900 W VALLEY RD STE 100",,"WAYNE","PA","190871850",,,,,,,"233002252","6109952600",,,,"2011-05-27T10:07:32-0500","MORTEN KIELLAND",,,,,12,12,0,0,12,0,12,12,0,,"2E2F2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20100205114331P040006885459001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COYNE INTERNATIONAL ENTERPRISES CORP. EMPLOYEE BENEFIT PLAN","501","1992-01-21","COYNE INTERNATIONAL ENTERPRISES CORP.",,,"PO BOX 4854","140 CORTLAND AVE.","SYRACUSE","NY","13220",,,,,,,"PO BOX 4854","140 CORTLAND AVE.","SYRACUSE","NY","13220",,,,,,,"166040758","3154751626","812330","COYNE INTERNATIONAL ENTERPRISES CORP.",,"PO BOX 4854","140 CORTLAND AVE.","SYRACUSE","NY","13220",,,,,,,"166040758","3154751626",,,,"2010-02-05T17:36:59Z","RAY RYAN",,,,,2270,2007,,,2007,,2007,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2010-02-05","Filed with authorized/valid electronic signature",, "20100219064139P040098816577001","2005-05-01","2005-06-30","2",,"0","0","0","1","0","0","0","1","0",,"FAMILY HEALTH CENTER OF WORCESTER, INC. WELFARE PLAN","501","1991-01-01","FAMILY HEALTH CENTER OF WORCESTER INC",,,"26 QUEEN STREET",,"WORCESTER","MA","01610",,,,,,,"26 QUEEN STREET",,"WORCESTER","MA","01610",,,,,,,"042485308","5088607975","621112","FAMILY HEALTH CENTER OF WORCESTER INC",,"26 QUEEN STREET",,"WORCESTER","MA","01610",,,,,,,"042485308","5088607975",,,,"2010-02-18T08:17:55-0600","JEAN LEFEBVRE",,,,,220,224,0,0,224,,224,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-02-19","Filed with authorized/valid electronic signature",, "20100312153538P040032397000001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","1","0",,"DESTINY SOFTWARE, INC. 401(K) PROFIT SHARING & TRUST PLAN","001","2002-01-01","DESTINY SOFTWARE, INC.",,,"PO BOX 827",,"WOODINVILLE","WA","98072",,,,,,,"19724 166TH AVE NE",,"WOODINVILLE","WA","98072",,,,,,,"911606761","4254151777","541990","DESTINY SOFTWARE, INC.",,"PO BOX 827",,"WOODINVILLE","WA","98072",,,,,,,"911606761","4254151777",,,,"2010-03-12T03:25:41-0600","DEAN DICKINSON",,,,,6,2,0,0,2,0,2,2,0,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-03-12","Filed with authorized/valid electronic signature",, "20100402221240P040006153157001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SBS TECHNOLOGIES, INC. 401 (K) PROFIT SHARING PLAN","001","1987-09-01","SBS TECHNOLOGIES, INC",,,"7401 SNAPROLL NE",,"ALBUQUERQUE","NM","87109",,,,,,,"7401 SNAPROLL NE",,"ALBUQUERQUE","NM","87109",,,,,,,"850359415","5058750600","541990","SBS TECHNOLOGIES, INC",,"7401 SNAPROLL NE",,"ALBUQUERQUE","NM","87109",,,,,,,"850359415","5058750600",,,,"2010-04-02T04:37:28-0500","KEITH BAUER",,,,,361,0,0,444,444,1,445,445,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,"1","0",,,,,,"FILING_RECEIVED","2010-04-02","Filed with authorized/valid electronic signature",, "20100405123419P040017504979001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLER & WILLIAMSON LLC 401K PLAN","001","2001-01-01","MILLER & WILLIAMSON, LLC",,,"1100 POYDRAS STREET","3150 ENERGY CENTRE","NEW ORLEANS","LA","70163",,,,,,,"1100 POYDRAS STREET","3150 ENERGY CENTRE","NEW ORLEANS","LA","70163",,,,,,,"721425132","5045259800","541110","MILLER & WILLIAMSON, LLC",,"1100 POYDRAS STREET","3150 ENERGY CENTRE","NEW ORLEANS","LA","70163",,,,,,,"721425132","5045259800",,,,"2010-04-05T12:32:58-0500","ILIAURA HANDS",,,,,5,5,0,1,6,0,6,5,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2010-04-05","Filed with authorized/valid electronic signature",, "20100422105229P030018829623001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ZACHERL, O'MALLEY & ENDEJAN, S.C. 401 (K) PROFIT SHARING PLAN","002","1998-01-01","ZACHERL, OMALLEY & ENDEJAN, SC",,,"115 S. MAIN STREET","P.O. BOX 1424","FOND DU LAC","WI","54935",,,,,,,"115 S. MAIN STREET","P.O. BOX 1424","FOND DU LAC","WI","54935",,,,,,,"391378121","9209227220","541110","ZACHERL, OMALLEY & ENDEJAN, SC",,"115 S. MAIN STREET","P.O. BOX 1424","FOND DU LAC","WI","54935",,,,,,,"391378121","9209227220",,,,,,"2010-04-22T10:52:11-0500","JOHN ZACHERL",,,11,11,0,0,11,0,11,8,0,,"2E2F2G2J2K3E",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2010-04-22",,,"Filed with authorized/valid electronic signature" "20100416155158P030067430978001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"RENAISSANCE TECHNOLOGIES LLC WELFARE BENEFIT PLAN","501","1997-09-01","RENAISSANCE TECHNOLOGIES LLC",,,"800 THIRD AVENUE","34TH FLR","NEW YORK","NY","10022",,,,,,,"800 THIRD AVENUE","34TH FLR","NEW YORK","NY","10022",,,,,,,"260385758","2128211535","523900","RENAISSANCE TECHNOLOGIES LLC",,"800 THIRD AVENUE","34TH FLR","NEW YORK","NY","10022",,,,,,,"260385758","2128211535","RENAISSANCE TECHNOLOGIES","133127734","501","2010-04-14T04:55:38-0500","LAVONNE WESNER",,,,,265,308,5,0,313,0,313,,,,,"4A4B4D4E4H","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2010-04-16","Filed with authorized/valid electronic signature",, "20100430150851P040231039473001","2008-10-01","2009-09-30","2",,"0","1","0","0","0","0","0","0","0",,"ACE CONTROLS INC EMPLOYEE BENEFIT PLAN","501","1982-05-01","ACE CONTROLS INC",,"ANDREA SMITH","23435 INDUSTRIAL PARK DRIVE",,"FARMINGTON HILLS","MI","48335",,,,,,,"23435 INDUSTRIAL PARK DRIVE",,"FARMINGTON HILLS","MI","48335",,,,,,,"381734380","2484760213","333900","ACE CONTROLS INC","ANDREA SMITH","23435 INDUSTRIAL PARK DRIVE",,"FARMINGTON HILLS","MI","48335",,,,,,,"381734380","2484760213",,,,"2010-04-30T03:05:51-0500","ANDREA SMITH",,,,,142,112,4,,116,,116,,,,,"4A4B4D4L","1",,,,"1",,,,,,,"0","1","1","4",,,,"FILING_RECEIVED","2010-04-30","Filed with authorized/valid electronic signature",, "20100518114555P040264768913001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FMA INC. 401K PROFIT SHARING PLAN & TRUST","001","2001-01-01","FMA INC.",,,"5713 INDUSTRY LANE","SUITE 50","FREDERICK","MD","21704",,,,,,,"5713 INDUSTRY LANE","SUITE 50","FREDERICK","MD","21704",,,,,,,"521400351","3016687614","333900","FMA INC.",,"5713 INDUSTRY LANE","SUITE 50","FREDERICK","MD","21704",,,,,,,"521400351","3016687614",,,,"2010-05-18T11:45:35-0500","CINDY MARKS",,,,,8,5,0,3,8,0,8,7,0,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-05-18","Filed with authorized/valid electronic signature",, "20100603142355P040028676803001","2004-07-01","2005-06-30","2",,"1","0","0","0","0","0","0","1","0",,"CE DENTAL PLAN","509","1987-09-01","CARROLL ENTERPRISES INC DENTAL PLAN",,,"554 MAIN STREET",,"WORCESTER","MA","01608",,,,,,,"554 MAIN STREET",,"WORCESTER","MA","01608",,,,,,,"042497441","5087700215","541990","CARROLL ENTERPRISES INC DENTAL PLAN",,"554 MAIN STREET",,"WORCESTER","MA","01608",,,,,,,"042497441","5087700215",,,,"2010-06-03T13:56:56-0500","NANCY AMORELLO",,,,,140,129,5,,134,,134,,,,,"4D","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2010-06-03","Filed with authorized/valid electronic signature",, "20100617202347P040322630577001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","1","0","0","0",,"JOHNSTON TECHNICAL SERVICE PROFIT SHARING PLAN","001","1999-10-15","JOHNSTON TECHNICAL SERVICES",,"LORETTA JOHNSTON","18700 NORTH 107TH AVENUE #8",,"SUN CITY","AZ","85373",,,,,,,"18700 NORTH 107TH AVENUE #8",,"SUN CITY","AZ","85373",,,,,,,"860940612","6238753386","541400","LORETTA JOHNSTON",,"18700 N 107TH AVE. STE 8",,"SUN CITY","AZ","85373",,,,,,,"526818580","6238753386",,,,"2010-06-17T20:21:48-0500","LORETTA JOHNSTON",,,,,0,0,0,,0,,0,0,0,0,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-06-17","Filed with authorized/valid electronic signature",, "20100625175318P040338095825001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STUDIO 1204 INC PROFIT SHARING PLAN","001","1997-01-01","STUDIO 1204 INC",,,"34485 7TH STREET",,"UNION CITY","CA","945870000",,,,,,,"34485 7TH STREET",,"UNION CITY","CA","945870000",,,,,,,"943257133","5103247100","323100","STUDIO 1204 INC",,"34485 7TH STREET",,"UNION CITY","CA","945870000",,,,,,,"943257133","5103247100",,,,"2010-06-25T17:53:10-0500","ASSOCIATED PENSION CONSULTANTS",,,,,24,15,0,7,22,0,22,21,0,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-06-25","Filed with authorized/valid electronic signature",, "20100712150842P070004662195001","2010-01-01","2010-04-29","2",,"0","0","1","1","0","0","0","0","0",,"LUX HELPERS INC PROFIT SHARING PLAN","001","2009-02-05","LUX HELPERS, INC.",,,"113 WILLIAM STREET",,"NORWALK","CT","06851",,,,,,,"113 WILLIAM STREET",,"NORWALK","CT","06851",,,,,,,"264231295","2035245605","621610","LUX HELPERS, INC.",,"113 WILLIAM STREET",,"NORWALK","CT","06851",,,,,,,"264231295","2035245605",,,,"2010-07-12T15:00:11-0500","LUIS PETRILLO",,,,,1,0,0,0,0,0,0,0,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-07-12","Filed with authorized/valid electronic signature",, "20100712151923P070010966248001","2010-01-01","2010-07-07","2",,"0","0","1","1","0","0","0","0","0",,"NORCO MOTORS 401(K) PLAN","001","1994-10-01","NORCO MOTORS",,,"2148 EAST HIGH STREET",,"POTTSTOWN","PA","19464",,,,,,,,,,,,,,,,,,"232436928","6103267055","441110","NORCO MOTORS",,"2148 EAST HIGH STREET",,"POTTSTOWN","PA","19464",,,,,,,"232436928","6103267055",,,,"2010-07-12T15:19:02-0500","JAMES PHILLIPS",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-12","Filed with authorized/valid electronic signature",, "20100714182201P070016164418001","2010-01-01","2010-05-21","2",,"0","0","1","1","0","0","0","0","0",,"VANGUARD PROTOTYPE DEFINED CONTRIBUTION MONEY PURCHASE PLAN","002","1993-01-01","JOHN T. ZUCOSKY",,,"195 EUCLID AVE",,"RIDGEFIELD PARK","NJ","07660",,,,,,,"195 EUCLID AVE",,"RIDGEFIELD PARK","NJ","07660",,,,,,,"222332658","2016411111","621210","JOHN T. ZUCOSKY",,"195 EUCLID AVE",,"RIDGEFIELD PARK","NJ","07660",,,,,,,"222332658","2016411111",,,,"2010-07-14T18:20:01-0500","JOHN ZUCOSKY",,,,,3,0,0,0,0,0,0,0,0,,"2C3D",,,,,"1",,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-14","Filed with authorized/valid electronic signature",, "20100721104547P040038460851001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPRINGBOK TRAINING INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","SRPINGBOK TRAINING INC",,,"212 EAST SR 73","SUITE 473","SARATOGA SPRINGS","UT","84043",,,,,,,"212 EAST SR 73","SUITE 473","SARATOGA SPRINGS","UT","84043",,,,,,,"204075393","8006533168","541600","SRPINGBOK TRAINING INC",,"212 EAST SR 73","SUITE 473","SARATOGA SPRINGS","UT","84043",,,,,,,"204075393","8006533168",,,,"2010-07-21T10:44:56-0500","JOSEPH ROGERS",,,,,3,1,0,0,1,0,1,,0,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-07-21","Filed with authorized/valid electronic signature",, "20100728135125P040031539175001","2010-01-01","2010-03-16","2",,"0","0","1","1",,,,,,,"WORLD ENERGY ALTERNATIVES, LLC 401(K) PLAN","001","2007-07-27","WORLD ENERGY ALTERNATIVES, LLC",,,"2 CONSTITUTION PLZ","# 2","CHARLESTOWN","MA","02129",,,,,,,"2 CONSTITUTION PLZ","# 2","CHARLESTOWN","MA","02129",,,,,,,"043418215","6178897300","424990","WORLD ENERGY ALTERNATIVES, LLC",,"2 CONSTITUTION PLZ","# 2","CHARLESTOWN","MA","02129",,,,,,,"043418215","6178897300",,,,"2010-07-28T13:50:59-0500","MICHELLE JERECZEK",,,,,19,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-28","Filed with authorized/valid electronic signature",, "20100729143312P030017626581001","2010-01-01","2010-04-01","2",,"0","0","1","1","1","0","0","0","0",,"CONESTOGA TELEPHONE & TELEGRAPH CO LOCAL 1671 401K PLAN","004","1990-09-01","D & E COMMUNICATIONS, INC.",,,"4001 RODNEY PARHAM ROAD","MS1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"4001 RODNEY PARHAM ROAD","MS1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"232837108","5017486689","517000","WINDSTREAM BENEFITS COMMITTEE",,"4001 RODNEY PARHAM ROAD",,"LITTLE ROCK","AR","72212",,,,,,,"200792300","5017486689",,,,"2010-07-29T14:29:21-0500","ROBERT BOYD",,,,,77,0,0,0,0,0,0,0,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-29","Filed with authorized/valid electronic signature",, "20100804101533P040136512258001","2005-01-01","2005-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HECOX & COMPANY CPAS 401(K) PROFIT SHARING PLAN","001","1997-01-01","HECOX & COMPANY CPAS",,,"1792 TRIBUTE ROAD SUITE 260",,"SACRAMENTO","CA","958150000",,,,,,,"1792 TRIBUTE ROAD SUITE 260",,"SACRAMENTO","CA","958150000",,,,,,,"680294852","9166461475","541211","HECOX & COMPANY CPAS",,"1792 TRIBUTE ROAD SUITE 260",,"SACRAMENTO","CA","958150000",,,,,,,"680294852","9166461475",,,,"2010-08-04T10:15:19-0500","ASSOCIATED PENSION CONSULTANTS",,,,,2,2,0,0,2,0,2,2,1,,"2E2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-08-04","Filed with authorized/valid electronic signature",, "20100808181617P040020108886001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","1","1","0",,"OGDEN SCHOOL DISTRICT CREDIT UNION 401(K) PLAN & TRUST","001","1998-07-01","EDUCATION FIRST CREDIT UNION",,,"1250 COUNTRY HILLS DRIVE",,"OGDEN","UT","84403",,,,,,,"1250 COUNTRY HILLS DRIVE",,"OGDEN","UT","84403",,,,,,,"876121774","8013924877","522130","EDUCATION FIRST CREDIT UNION",,"1250 COUNTRY HILLS DRIVE",,"OGDEN","UT","84403",,,,,,,"876121774","8013924877",,,,"2010-08-08T18:15:04-0500","KENT GREENFIELD",,,,,12,7,0,4,11,0,11,10,0,,"2E2J2F2G2K3E",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-08-08","Filed with authorized/valid electronic signature",, "20100809113755P030023203252001","2010-01-01","2010-04-23","2",,"1","0","1","1","0","0","0","0","0",,"WEIR DOLLS & CRAFTS MPP","002","2010-01-01","WEIR DOLLS & CRAFTS MPP",,,"4125 JACKSON ROAD",,"ANN ARBOR","MI","48103",,,,,,,"4125 JACKSON ROAD",,"ANN ARBOR","MI","48103",,,,,,,"382391675","7346686992","454110","WEIR DOLLS & CRAFTS MPP",,"4125 JACKSON ROAD",,"ANN ARBOR","MI","48103",,,,,,,"382391675","7346686992",,,,"2010-08-09T11:32:09-0500","SUSAN WEIR",,,,,1,0,0,0,0,,0,,,,"2G3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-08-09","Filed with authorized/valid electronic signature",, "20100809104152P070000452056001","2010-01-01","2010-05-11","2",,"0","0","1","1","0","0","0","0","0",,"MANION M. COFFMAN, DMD, PC 401(K) PROFIT SHARING PLAN","004","2005-01-01","MANION M. COFFMAN, DMD, PC",,,"105 SOUTH HINE STREET",,"ATHENS","AL","356112323",,,,,,,,,,,,,,,,,,"631132419","2562328214","621210","MANION M. COFFMAN, DMD, PC",,"105 SOUTH HINE STREET",,"ATHENS","AL","356112323",,,,,,,"631132419","2562328214",,,,"2010-08-09T09:34:07-0500","MANION COFFMAN",,,,,6,0,0,0,0,0,0,0,0,,"2E2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-08-09","Filed with authorized/valid electronic signature",, "20100819165550P040035474423001","2005-06-01","2006-05-31","2",,"0","0","0","0","0","0","0","1","0",,"MACON BANK EMPLOYEE BENEFIT PLAN","502","2000-10-01","MACON BANK, INC.",,,"1 CENTER CT.",,"FRANKLIN","NC","287343445",,,,,,,"1 CENTER CT.",,"FRANKLIN","NC","287343445",,,,,,,"562004870","8004382265","522120","MACON BANK, INC.",,"1 CENTER CT.",,"FRANKLIN","NC","287343445",,,,,,,"562004870","8004382265",,,,"2010-08-19T15:07:44-0500","HOLLY ROGERS",,,,,179,177,0,0,177,0,177,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2010-08-19","Filed with authorized/valid electronic signature",, "20100826144938P040018207445001","2010-01-01","2010-04-13","2",,"0","0","1","1","0","0","0","0","0",,"UNITED HOCKEY LEAGUE INC","001","1999-01-01","UNITED HOCKEY LEAUGE INC.",,,"1831 LAKE ST. LOUIS BLVD.",,"LAKE SAINT LOUIS","MO","63367",,,,,,,"1831 LAKE ST. LOUIS BLVD.",,"LAKE SAINT LOUIS","MO","63367",,,,,,,"431877414","6366256011","451110","UNITED HOCKEY LEAUGE INC.",,"1831 LAKE ST. LOUIS BLVD.",,"LAKE SAINT LOUIS","MO","63367",,,,,,,"431877414","6366256011",,,,"2010-08-26T14:48:40-0500","JENNIFER COSTIE",,,,,1,0,0,0,0,0,0,0,0,,"2E2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-08-26","Filed with authorized/valid electronic signature",, "20100902160013P040474957345001","2007-01-01","2007-03-31","2",,"0","0","1","0","0","0","0","1","0",,"BERNARD HEROLD & CO., INC. 401 (K) PLAN","001","1991-12-31","BERNARD HEROLD & CO., INC.","BERNARD HEROLD & CO., INC.",,"805 THIRD AVENUE-18TH FLOOR",,"NEW YORK","NY","10022",,,,,,,"805 THIRD AVENUE-18TH FLOOR",,"NEW YORK","NY","10022",,,,,,,"132707317","2123713950","523120","BERNARD HEROLD & CO., INC.",,"805 THIRD AVENUE-18TH FLOOR",,"NEW YORK","NY","10022",,,,,,,"132707317","2123713950",,,,"2010-09-02T15:59:11-0500","LAWRENCE HEROLD",,,,,37,0,0,0,0,0,0,0,0,0,"2E2F2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2010-09-02","Filed with authorized/valid electronic signature",, "20100913164419P040496157553001","2010-01-01","2010-08-31","2",,"0","0","1","1","0","0","0","0","0",,"TRI STATE HAND & OCCUPATIONAL THERAPY, INC. PROFIT SHARING PLAN","001","2004-01-01","TRI STATE HAND & OCCUPATIONAL THERAPY, INC",,,"200 GLEN STREET","SUITE 200","CUMBERLAND","MD","21502",,,,,,,,,,,,,,,,,,"521927203","3042574263","621340","TRI STATE HAND & OCCUPATIONAL THERAPY, INC",,"200 GLEN STREET","SUITE 200","CUMBERLAND","MD","21502",,,,,,,"521927203","3042574263",,,,"2010-09-11T09:29:13-0500","BRYAN WODASKI",,,,,13,0,0,0,0,0,0,0,0,,"2A2E2F2G2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-09-13","Filed with authorized/valid electronic signature",, "20100913110333P030496159617001","2010-01-01","2010-05-24","2",,"0","0","1","1","0","0","0","0","0",,"DTX OIL, L.L.C. 401(K) PLAN","001","2008-01-01","DTX OIL, L.L.C.",,,"2704 OLD ROSEBUD DR. STE. 120",,"LEXINGTON","KY","40509",,,,,,,,,,,,,,,,,,"204029068","8595430611","211110","DTX OIL, L.L.C.",,"2704 OLD ROSEBUD DR. STE. 120",,"LEXINGTON","KY","40509",,,,,,,"204029068","8595430611",,,,"2010-09-13T11:03:23-0500","WILLIAM RENNER",,,,,20,10,0,0,10,0,10,0,0,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-13","Filed with authorized/valid electronic signature",, "20100913133426P070015705928001","2005-01-01","2005-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SENAGO DIRECT LLC","001","2003-01-01","SEGABO DIRECT LLC",,"MATT TASKER","217 COMMERCIAL ST","402","PORTLAND","ME","04105",,,,,,,"217 COMMERCIAL ST","402","PORTLAND","ME","04105",,,,,,,"200703735","2073295458","454390","SEGABO DIRECT LLC","MATT TASKER","217 COMMERCIAL ST","402","PORTLAND","ME","04105",,,,,,,"200703735","2073295458",,,,,,"2010-09-13T13:34:02-0500","TODD FLAHERTY",,,0,0,,,0,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-09-13",,,"Filed with authorized/valid electronic signature" "20100920122457P030002784257001","2010-01-01","2010-08-16","2",,"0","0","1","1","0","0","0","0","0",,"PINEMEADOW, INC., DEFINED BENEFIT PENSION PLAN","001","2002-01-01","PINEMEADOW, INC.",,,"P.O. BOX 180547",,"FORT SMITH","AR","729180547",,,,,,,,,,,,,,,,,,"710624466","4796467444","237210","PINEMEADOW, INC.",,"P.O. BOX 180547",,"FORT SMITH","AR","729180547",,,,,,,"710624466","4796467444",,,,"2010-09-20T12:24:42-0500","PAUL WALKER","2010-09-20T12:24:42-0500","PAUL WALKER",,,2,0,0,0,0,0,0,,0,,"1A1G1H1I3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20100920114619P030000301140001","2010-01-01","2010-08-11","2",,"0","0","1","1","0","0","0","0","0",,"KAVON FILTER PRODUCTS CO.,INC., PROFIT SHARING PLAN","002","1974-06-20","KAVON FILTER PRODUCTS COMPANY, INC.",,,"PO BOX 1166",,"WALL","NJ","077191166",,,,,,,,,,,,,,,,,,"221693764","7329383135","423990","KAVON FILTER PRODUCTS COMPANY, INC.",,"PO BOX 1166",,"WALL","NJ","077191166",,,,,,,"221693764","7329383135",,,,"2010-09-20T11:40:20-0500","DOUGLAS VON BULOW",,,,,0,0,0,0,0,0,0,0,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-09-20","Filed with authorized/valid electronic signature",, "20100917144722P040123533720001","2003-01-01","2003-12-31","2",,"0","0","0","0","1","0","0","1","0",,"BNSF RAILWAY COMPANY / BLET VOLUNTARY SEPARATION PROGRAM","503","1990-01-01","BNSF RAILWAY COMPANY",,"MR. MILTON H. SIEGELE JR.","2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"416034000","8173521667","482110","BLET VOLUNTARY SEVERANCE PROGRAM COMMITTEE","MR. MILTON H. SIEGELE JR.","2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"800496358","8173521667",,,,"2010-09-17T14:24:43-0500","MILTON SIEGELE",,,,,1240,1177,,,1177,,1177,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2010-09-17","Filed with authorized/valid electronic signature",, "20100921112807P030004732001001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"FLEX CONSTRUCTION CORPORATION PROFIT SHARING PLAN","001","1983-12-01","FLEX CONSTRUCTION CORPORATION",,,"244 TELSER ROAD",,"LAKE ZURICH","IL","60047",,,,,,,,,,,,,,,,,,"363213282","8475400200","238900","FLEX CONSTRUCTION CORPORATION",,"244 TELSER ROAD",,"LAKE ZURICH","IL","60047",,,,,,,"363213282","8475400200",,,,"2010-09-21T11:11:05-0500","ROBERT WARDANIAN","2010-09-21T11:11:05-0500","ROBERT WARDANIAN",,,6,0,0,0,0,0,0,0,0,,"2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20100927161014P070001911747001","2010-01-01","2010-03-16","2",,"0","0","1","1","0","0","0","0","0",,"SMARTFOREST VENTURES 401(K)","001","2001-02-01","SMARTFOREST VENTURES, LLC",,,"319 SW WASHINGTON ST.","STE. 1175","PORTLAND","OR","97204",,,,,,,"319 SW WASHINGTON ST.","STE. 1175","PORTLAND","OR","97204",,,,,,,"931281787","5032222552","523900","SMARTFOREST VENTURES, LLC",,"319 SW WASHINGTON ST.","STE. 1175","PORTLAND","OR","97204",,,,,,,"931281787","5032222552",,,,"2010-09-27T16:05:50-0500","DEBORAH COLEMAN",,,,,6,0,0,0,0,0,0,0,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-09-27","Filed with authorized/valid electronic signature",, "20100927161137P030001967364001","2010-01-01","2010-02-04","2",,"0","0","1","1","0","0","0","0","0",,"UNLIMITED SUPPLY INC. 401 (K) PLAN","001","2001-01-01","UNLIMITED SUPPLY INC.",,,"3341 HIGHWAY 90 EAST",,"BROUSSARD","LA","70518",,,,,,,,,,,,,,,,,,"721363133","3378372800","423400","UNLIMITED SUPPLY INC.",,"3341 HIGHWAY 90 EAST",,"BROUSSARD","LA","70518",,,,,,,"721363133","3378372800",,,,"2010-09-27T16:11:34-0500","JAMIE MCGEE",,,,,21,21,0,0,21,0,21,0,0,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-27","Filed with authorized/valid electronic signature",, "20100927195435P030007066770001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","1","0",,"D.A. HOERR & SONS, INC. 401(K) SAVINGS PLAN","002","1984-05-01","D.A. HOERR & SONS, INC.",,,"8020 N. SHADETREE DR.",,"PEORIA","IL","61615",,,,,,,"8020 N. SHADETREE DR.",,"PEORIA","IL","61615",,,,,,,"370761574","3096892503","444200","D.A. HOERR & SONS, INC.",,"8020 N. SHADETREE DR.",,"PEORIA","IL","61615",,,,,,,"370761574","3096892503",,,,"2010-09-27T19:54:08-0500","NATHAN HOERR",,,,,170,118,0,14,132,0,132,54,0,0,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2010-09-27","Filed with authorized/valid electronic signature",, "20100930172841P030000449442001","2010-01-01","2010-06-11","2",,"0","0","0","1","0","0","0","0","0",,"INTEGRATED REAL ESTATE PROFIT SHARING PLAN","001","1999-01-01","INTEGRATED REAL ESTATE & FINANCIAL SERVICES, INC",,,"100 STONY POINT ROAD, SUITE 225",,"SANTA ROSA","CA","954014147",,,,,,,,,,,,,,,,,,"680380030","7075777865","531210","INTEGRATED REAL ESTATE & FINANCIAL SERVICES, INC",,"100 STONY POINT ROAD, SUITE 225",,"SANTA ROSA","CA","954014147",,,,,,,"680380030","7075777865",,,,"2010-09-30T17:23:19-0500","MIKE STORNETTA",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-09-30","Filed with authorized/valid electronic signature",, "20101001103034P030000309543001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"PARAMOUNT SENIOR LIVING AT DAYTON 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","PARAMOUNT SENIOR LIVING AT DAYTON, LLC",,"PARAMOUNT HEALTH RESOURCES, INC.","3025 WASHINGTON ROAD","SUITE 201","MCMURRAY","PA","15317",,,,,,,"3025 WASHINGTON ROAD","SUITE 201","MCMURRAY","PA","15317",,,,,,,"203207737","7249691020","621610","PARAMOUNT HEALTH RESOURCES, INC.",,"3025 WASHINGTON ROAD","SUITE 201","MCMURRAY","PA","15317",,,,,,,"201608540","7249691020",,,,"2010-10-01T10:29:20-0500","RICHARD GOLDBACH",,,,,3,0,0,0,0,0,0,0,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-01","Filed with authorized/valid electronic signature",, "20100930171950P070001362977001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","0","0","0","0",,"HAPAG-LLOYD AMERICA INC. GROUP INSURANCE PLAN","503","1980-08-01","HAPAG-LLOYD AMERICA INC.",,,"399 HOES LANE",,"PISCATAWAY","NJ","088544115",,,,,,,"399 HOES LANE",,"PISCATAWAY","NJ","088544115",,,,,,,"132520327","7325621800","488300","HAPAG-LLOYD AMERICA INC.",,"399 HOES LANE",,"PISCATAWAY","NJ","088544115",,,,,,,"132520327","7325621800",,,,"2010-09-30T13:12:26-0500","MICHAEL STILLITANO",,,,,845,0,0,0,0,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2010-09-30","Filed with authorized/valid electronic signature",, "20101004131005P070004214610001","2010-01-01","2010-04-06","2",,"0","0","1","1","0","1","0","0","0",,"INLAND NORTHWEST BLOOD CENTER PENSION PLAN","001","1961-01-01","INLAND NORTHWEST BLOOD CENTER",,,"210 W. CATALDO",,"SPOKANE","WA","992012217",,,,,,,,,,,,,,,,,,"910499130","5096240151","621900","INLAND NORTHWEST BLOOD CENTER",,"210 W. CATALDO",,"SPOKANE","WA","992012217",,,,,,,"910499130","5096240151",,,,"2010-10-04T13:09:27-0500","LORI FIELD",,,,,118,0,0,0,0,0,0,0,0,,"1A1G1H1I3D",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","1","FILING_RECEIVED","2010-10-04","Filed with authorized/valid electronic signature",, "20101006203752P070006298898001","2010-01-01","2010-05-28","2",,"0","0","1","1","0","0","0","0","0",,"SILREC CORP. PROFIT SHARING AND 401(K) PLAN","001","1989-10-01","SILREC CORPORATION",,,"2064 MERCER ROAD",,"LEXINGTON","KY","40511",,,,,,,,,,,,,,,,,,"770181164","8592256001","423930","SILREC CORPORATION",,"2064 MERCER ROAD",,"LEXINGTON","KY","40511",,,,,,,"770181164","8592256001",,,,"2010-10-06T09:24:33-0500","KIM A. BLANTON",,,,,13,0,0,0,0,0,0,0,0,,"2A2J2G2E2K2F3H2T2S3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-06","Filed with authorized/valid electronic signature",, "20101007120755P070002072278001","2010-01-01","2010-07-15","2",,"0","0","1","1","0","0","0","0","0",,"EMPLOYEES' GMS CONCRETE 401 (K) PLAN","002","2004-01-01","GMS CONCRETE, INC.",,,"1220 S COMMERCE STREET","SUITE 120","LAS VEGAS","NV","89102",,,,,,,,,,,,,,,,,,"880303049","7022205621","238100","GMS CONCRETE, INC.",,"1220 S COMMERCE STREET","SUITE 120","LAS VEGAS","NV","89102",,,,,,,"880303049","7022205621",,,,"2010-10-07T11:39:24-0500","ANDREA GOULD",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-07","Filed with authorized/valid electronic signature",, "20101006144633P040001689651001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALTUS CONSULTING CORPORATION","001","2006-01-01","ALTUS CONSULTING CORPORATION",,,"38699 OLD WHEATLAND RD",,"WATERFORD","VA","20197",,,,,,,"38699 OLD WHEATLAND RD",,"WATERFORD","VA","20197",,,,,,,"223871087","7039294000","541990","ALTUS CONSULTING CORPORATION",,"38699 OLD WHEATLAND RD",,"WATERFORD","VA","20197",,,,,,,"223871087","7039294000",,,,"2010-10-06T14:46:18-0500","JACOB PORTER",,,,,12,11,0,2,13,0,13,12,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-06","Filed with authorized/valid electronic signature",, "20101012075708P030008207314001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"COLLEGE ASSOCIATION, INC.SUNY COLLEGE OF TECH AT CANTON","001","1966-01-01","COLLEGE ASSOCIATION, INC. SUNY COLLEGE OF TECH AT CANTON",,,"34 CORNELL DRIVE",,"CANTON","NY","13617",,,,,,,,,,,,,,,,,,"150554874","3153867623","611000","COLLEGE ASSOCIATION, INC. SUNY COLLEGE OF TECH AT CANTON",,"34 CORNELL DRIVE",,"CANTON","NY","13617",,,,,,,"150554874","3153867623",,,,"2010-10-12T07:53:31-0500","KAREN MCAULIFFE",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-10-12","Filed with authorized/valid electronic signature",, "20101012134512P030022749825001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","1","0","0",,"MOORE AND ROMANO VETERINARY HOSPITALS PROFIT SHARING PLAN","001","1994-01-01","DENNIS J. MOORE AND JOSEPH M. ROMANO",,,"619 GASTON AVE",,"FAIRMONT","WV","26554",,,,,,,"619 GASTON AVE",,"FAIRMONT","WV","26554",,,,,,,"550664335","3043630930","622000","DENNIS J. MOORE AND JOSEPH M. ROMANO",,"619 GASTON AVE",,"FAIRMONT","WV","26554",,,,,,,"550664335","3043630930",,,,"2010-10-12T13:44:42-0500","DENNIS MOORE",,,,,27,28,0,2,30,0,30,1,0,,"3B2E3H2A",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-12","Filed with authorized/valid electronic signature",, "20101013114732P070024915793001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SERVICE ROOFING COMPANY INC","001","1973-09-10","SERVICE ROOFING COMPANY INC",,,"440 EAST WALNUT AVENUE",,"FULLERTON","CA","92632",,,,,,,"440 EAST WALNUT AVENUE",,"FULLERTON","CA","92632",,,,,,,"951208810","7145254232","238100","SERVICE ROOFING COMPANY INC",,"440 EAST WALNUT AVENUE",,"FULLERTON","CA","92632",,,,,,,"951208810","7145254232",,,,"2010-10-13T11:47:23-0500","ASSOCIATED PENSION CONSULTANTS",,,,,4,4,0,0,4,0,4,4,0,,"2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-13","Filed with authorized/valid electronic signature",, "20101014025110P070026144817001","2010-01-01","2010-02-16","2",,"0","0","1","1","0","1","0","0","0",,"ALLWEATHER WOOD TREATERS 401(K) PROFIT SHARING PLAN AND TRUST","003","1992-04-01","ALLWEATHER WOOD LLC",,,"P.O. BOX 227",,"WASHOUGAL","WA","986710227",,,,,,,,,,,,,,,,,,"260851021","8007778134","321110","ALLWEATHER WOOD LLC",,"P.O. BOX 227",,"WASHOUGAL","WA","986710227",,,,,,,"260851021","8007778134",,,,"2010-10-13T16:49:08-0500","ELLE HAGEDORN",,,,,154,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2010-10-14","Filed with authorized/valid electronic signature",, "20101014193636P070003508469001","2010-01-01","2010-01-31","2",,"0","0","0","1","0","1","0","0","0",,"AMERICAN SPORTING GOODS CORP. MEDICAL BENEFIT INSURANCE PLAN","501","2000-02-01","AMERICAN SPORTING GOODS CORPORATION",,,"101 ENTERPRISE, SUITE 100",,"ALISO VIEJO","CA","92656",,,,,,,,,,,,,,,,,,"133191696","9492672920","423990","AMERICAN SPORTING GOODS CORPORATION",,"101 ENTERPRISE, SUITE 100",,"ALISO VIEJO","CA","92656",,,,,,,"133191696","9492672920",,,,"2010-10-14T19:11:35-0500","JENNIFER LIN",,,,,198,193,7,0,200,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2010-10-14","Filed with authorized/valid electronic signature",, "20101014182643P070012921266001","2010-01-01","2010-03-31","2",,"0","0","0","1","0","0","0","0","0",,"HANGER ORTHOPEDIC GROUP INC. HEALTHCARE PLAN","501","1991-01-01","HANGER ORTHOPEDIC GROUP, INC.",,,"10910 DOMAIN DRIVE, SUITE 300",,"AUSTIN","TX","78758",,,,,,,,,,,,,,,,,,"840904275","5127773800","531390","HANGER ORTHOPEDIC GROUP, INC.",,"10910 DOMAIN DRIVE, SUITE 300",,"AUSTIN","TX","78758",,,,,,,"840904275","5127773800",,,,"2010-10-14T13:40:11-0500","JEFF SCHOENEBERG","2010-10-14T13:40:11-0500","JEFF SCHOENEBERG",,,3738,3831,0,0,3831,,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2010-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101015092016P040003560839001","2008-01-01","2008-01-01","2",,"0","1","0","0","0","1","0","0","0",,"M&T BANK CORPORATION RETIREE WELFARE BENEFITS PLAN","506","1980-02-01","MANUFACTURERS AND TRADERS TRUST CO",,,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"160538020","7168425596","522110","MANUFACTURERS AND TRADERS TRUST CO",,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"160538020","7168425596",,,,"2010-10-15T09:18:20-0500","ANN MARIE ODROBINA",,,,,1656,,1543,,1543,,1543,,,,,"4A4D",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2010-10-15","Filed with authorized/valid electronic signature",, "20101015091959P040028875009001","2005-01-01","2005-01-01","2",,"0","1","0","0","0","1","0","0","0",,"M&T BANK CORPORATION RETIREE WELFARE BENEFITS PLAN","506","1980-02-01","MANUFACTURERS AND TRADERS TRUST CO",,,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"160538020","7168425596","522110","MANUFACTURERS AND TRADERS TRUST CO",,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"160538020","7168425596",,,,"2010-10-15T09:19:32-0500","ANN MARIE ODROBINA",,,,,1876,,1807,,1807,,1807,,,,,"4A4D",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2010-10-15","Filed with authorized/valid electronic signature",, "20101015165432P040011497522001","2010-01-01","2010-05-17","2",,"0","0","1","1","0","0","0","0","0",,"B.J. ESTES, D.D.S. 401(K) PLAN & TRUST","002","2006-04-01","BJ ESTES DDS",,,"132 N. MAIN AVE",,"SIOUX CENTER","IA","51250",,,,,,,,,,,,,,,,,,"204869572","7127222525","621210","BJ ESTES DDS",,"132 N. MAIN AVE",,"SIOUX CENTER","IA","51250",,,,,,,"204869572","7127222525",,,,"2010-10-15T14:19:07-0500","RUBY BOLLIN",,,,,9,0,0,0,0,0,0,0,0,,"2E2F2G2H2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-15","Filed with authorized/valid electronic signature",, "20101015180247P040011603714001","2010-01-01","2010-01-20","2",,"0","0","1","1","0","0","0","1","0",,"M.A.D. MONEY INVESTMENT, INC. 401K PLAN","001","2008-03-20","M.A.D. MONEY INVESTMENT, INC.",,,"P.O. BOX 372425",,"SATELLITE BEACH","FL","32937",,,,,,,,,,,,,,,,,,"262210558","3212230178","541211","M.A.D. MONEY INVESTMENT, INC.",,"P.O. BOX 372425",,"SATELLITE BEACH","FL","32937",,,,,,,"262210558","3212230178",,,,"2010-10-15T17:25:08-0500","RHONDA REED DE CUBA","2010-10-15T17:25:08-0500","RHONDA REED DE CUBA",,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101027171958P070000605558001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","0","0","0","0",,"LIFEMASTERS SUPPORTED SELFCARE, INC. CONSOLIDATED WELFARE BENEFIT PLAN","502","2000-07-01","LIFEMASTERS SUPPORTED SELFCARE, INC.",,"C/O ALVAREZ AND MARSAL - HIG","100 PINE STREET, SUITE 900",,"SAN FRANCISCO","CA","94111",,,,,,,,,,,,,,,,,,"943206428","4156906377","624100","LIFEMASTERS SUPPORTED SELFCARE, INC.","C/O ALVAREZ AND MARSAL - HIG","100 PINE STREET, SUITE 900",,"SAN FRANCISCO","CA","94111",,,,,,,"943206428","4156906377",,,,"2010-10-27T17:16:57-0500","BRIAN BUCHANAN",,,,,284,0,0,0,0,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2010-10-27","Filed with authorized/valid electronic signature",, "20101026154217P030004354737001","2007-01-01","2007-03-27","2",,"0","0","1","1","0","0","0","0","0",,"LSDA LLC 401K PROFIT SHARING PLAN & TRUST","001","2003-09-01","LSDA LLC",,,"3851 SOUTH SHERWOOD FOREST BLVD","SUITE 203","BATON ROUGE","LA","70816",,,,,,,"3851 SOUTH SHERWOOD FOREST BLVD","SUITE 203","BATON ROUGE","LA","70816",,,,,,,"030443285","2252915949","611000","LSDA LLC",,"3851 SOUTH SHERWOOD FOREST BLVD","SUITE 203","BATON ROUGE","LA","70816",,,,,,,"030443285","2252915949",,,,"2010-10-26T15:06:04-0500","ALAN NICHOLS",,,,,7,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-26","Filed with authorized/valid electronic signature",, "20101027111829P040002115138001","2010-07-01","2010-08-31","2",,"0","0","1","1","0","0","0","0","0",,"PET DRX CORPORATION WELFARE BENEFIT PLAN","510","2007-07-01","PET DRX CORPORATION",,,"215 CENTERVIEW DRIVE, SUITE 360",,"BRENTWOOD","TN","37027",,,,,,,,,,,,,,,,,,"571201592","6153691914","541940","PET DRX CORPORATION",,"215 CENTERVIEW DRIVE, SUITE 360",,"BRENTWOOD","TN","37027",,,,,,,"571201592","6153691914",,,,"2010-10-27T11:17:47-0500","KRISTI SIMARD",,,,,481,0,0,0,0,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2010-10-27","Filed with authorized/valid electronic signature",, "20101021144630P040003226918001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","0","0","0","0",,"PENCE FUNERAL HOME, INC. MONEY PURCHASE PENSION PLAN","001","1985-01-01","PENCE FUNERAL HOME, INC.",,,"310 N 2ND AVENUE EAST","PO BOX 576","NEWTON","IA","50208",,,,,,,"310 N 2ND AVENUE EAST","PO BOX 576","NEWTON","IA","50208",,,,,,,"421215997","6417925125","812210","PENCE FUNERAL HOME, INC.",,"310 N 2ND AVENUE EAST","PO BOX 576","NEWTON","IA","50208",,,,,,,"421215997","6417925125",,,,"2010-10-21T14:45:36-0500","ERIK MONSON",,,,,9,0,0,0,0,0,0,0,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-21","Filed with authorized/valid electronic signature",, "20101026095105P040000514179001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EUROPA CONSTRUCTION CORP 401K PROFIT SHARING PLAN & TRUST","001","2004-01-01","EUROPA CONSTRUCTION CORP.",,,"97-22 LIVERPOOL STREET",,"JAMAICA","NY","11435",,,,,,,"97-22 LIVERPOOL STREET",,"JAMAICA","NY","11435",,,,,,,"113376619","9177095074","236200","EUROPA CONSTRUCTION CORP.",,"97-22 LIVERPOOL STREET",,"JAMAICA","NY","11435",,,,,,,"113376619","9177095074",,,,"2010-10-26T09:49:09-0500","ALCIDES RODRIGUES",,,,,7,12,0,0,12,0,12,1,0,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-10-26","Filed with authorized/valid electronic signature",, "20101021102432P040040090721001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GMC SOFTWARE TECHNOLOGY, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","1999-01-01","GMC SOFTWARE TECHNOLOGY, INC.",,,"529 MAIN STREET","SUITE 223","CHARLESTOWN","MA","02129",,,,,,,"529 MAIN STREET","SUITE 223","CHARLESTOWN","MA","02129",,,,,,,"043355767","6177121200","334110","GMC SOFTWARE TECHNOLOGY, INC.",,"529 MAIN STREET","SUITE 223","CHARLESTOWN","MA","02129",,,,,,,"043355767","6177121200",,,,"2010-10-21T10:22:13-0500","MICHAEL WATTS","2010-10-21T10:23:44-0500","YURI VOURSAL",,,27,23,0,9,32,0,32,27,6,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101018151427P030034674849001","2010-06-01","2010-08-31","2",,"0","0","0","1","0","0","0","0","0",,"LUIS GARRATON INC - HEALTH SHORT PERIOD 2010","503","2007-06-01","LUIS GARRATON INC",,,"PO BOX 362984",,"SAN JUAN","PR","00936",,,,,,,"URB INDUSTRIAL LUCHETTI",,"BAYAMON","PR","00961",,,,,,,"660192858","7877886161","424210","LUIS GARRATON INC",,"PO BOX 362984",,"SAN JUAN","PR","00936",,,,,,,"660192858","7877886161",,,,"2010-10-18T14:46:23-0500","MARIO FORNES",,,,,131,130,0,0,130,0,130,0,0,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-10-18","Filed with authorized/valid electronic signature",, "20101108141121P040001436215001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"V.R. TAX SOLUTIONS PROFIT SHARING PLAN","001","2005-01-01","VR TAX SOLUTIONS",,,"10830 N 71ST PLACE",,"SCOTTSDALE","AZ","85254",,,,,,,,,,,,,,,,,,"204459544","4804836817","812990","VR TAX SOLUTIONS",,"10830 N 71ST PLACE",,"SCOTTSDALE","AZ","85254",,,,,,,"204459544","4804836817",,,,"2010-11-08T14:11:16-0600","RONALD KNOTT",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-11-08","Filed with authorized/valid electronic signature",, "20101111125634P040014309665001","2010-02-01","2010-03-31","2",,"0","0","0","1","0","1","0","0","0",,"CRESCENT HEALTHCARE, INC.","501","2002-02-01","CRESCENT HEALTHCARE, INC.",,,"888 S. DISNEYLAND DRIVE, 2ND FLOOR",,"ANAHEIM","CA","92802",,,,,,,,,,,,,,,,,,"330726408","7145206324","621610","CRESCENT HEALTHCARE, INC.",,"888 S. DISNEYLAND DRIVE, 2ND FLOOR",,"ANAHEIM","CA","92802",,,,,,,"330726408","7145206324",,,,"2010-11-11T11:47:05-0600","SHERRIE PAULL",,,,,410,388,16,0,404,,,,,,,"4A4B4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2010-11-11","Filed with authorized/valid electronic signature",, "20101029121932P070001020516001","1999-07-01","2000-06-30","2",,"1","0","0","0","0","0","0","1","0",,"THE SAGE SCHOOL DEFINED CONTRIBUTION RETIREMENT PLAN","001","1999-07-01","THE SAGE CENTER FOR LEARNING, INC.","THE SAGE SCHOOL","NANCY FARRELL","171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"223058494","5085439619","611000","THE SAGE CENTER FOR LEARNING, INC.","NANCY FARRELL","171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"223058494","5085439619",,,,"2010-10-29T12:01:08-0500","NANCY FARRELL",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-10-29","Filed with authorized/valid electronic signature",, "20101029131714P070003473330001","2003-07-01","2004-06-30","2",,"0","0","0","0","0","0","0","1","0",,"THE SAGE SCHOOL DEFINED CONTRIBUTION RETIREMENT PLAN","001","1999-07-01","THE SAGE CENTER FOR LEARNING, INC.","THE SAGE SCHOOL","NANCY FARRELL","171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"223058494","5085439619","611000","THE SAGE CENTER FOR LEARNING, INC.","NANCY FARRELL","171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"223058494","5085439619",,,,"2010-10-29T12:10:53-0500","NANCY FARRELL",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-10-29","Filed with authorized/valid electronic signature",, "20101029135831P070007990641001","2010-01-01","2010-03-31","2",,"0","0","0","1","0","0","0","0","0",,"JAMS, INC. MENTAL HEALTH PLAN","507","2000-01-01","JAMS, INC.",,,"1920 MAIN STREET, SUITE 300",,"IRVINE","CA","926147279",,,,,,,,,,,,,,,,,,"680542699","9492241810","541190","JAMS, INC.",,"1920 MAIN STREET, SUITE 300",,"IRVINE","CA","926147279",,,,,,,"680542699","9492241810",,,,"2010-10-29T13:57:21-0500","JULIE SAGER",,,,,184,184,0,0,184,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2010-10-29","Filed with authorized/valid electronic signature",, "20101105114904P030001531960001","2010-01-01","2010-08-31","2",,"0","0","1","1","0","1","0","0","0",,"EQUITABLE FEDERAL CR UN CAPITAL ACCUMULATION PLAN","033","2007-01-01","EQUITABLE FEDERAL CR UN",,,"PO BOX 4706",,"AKRON","OH","44310",,,,,,,,,,,,,,,,,,"341438491","3306337307","522130","EQUITABLE FEDERAL CR UN",,"PO BOX 4706",,"AKRON","OH","44310",,,,,,,"341438491","3306337307",,,,"2010-11-05T11:48:58-0500","JULIE GARDNER",,,,,2,0,0,0,0,0,0,0,0,,"2E2G2J2T3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-11-05","Filed with authorized/valid electronic signature",, "20101115163047P040000364499001","2010-01-01","2010-01-06","2",,"0","0","1","1","0","1","0","0","0",,"PALMETTO MANAGEMENT & ENGINEERING, LLC 401(K) PLAN","001","2003-07-01","PALMETTO MANAGEMENT & ENGINEERING, LLC",,,"4550 NEW LINDEN HILL RD., SUITE 400",,"WILMINGTON","DE","198082952",,,,,,,,,,,,,,,,,,"010731572","8642883009","541330","PALMETTO MANAGEMENT & ENGINEERING, LLC",,"4550 NEW LINDEN HILL RD., SUITE 400",,"WILMINGTON","DE","198082952",,,,,,,"010731572","8642883009",,,,"2010-11-15T16:30:40-0600","JAMES D. VOGT","2010-11-15T16:30:40-0600","JAMES D. VOGT",,,373,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101102133125P040000093782001","2010-01-01","2010-09-28","2",,"0","0","1","1","0","0","0","0","0",,"BOULEVARD DENTAL PC INC PROFIT SHARING PLAN AND TRUST","001","1999-01-01","BOULEVARD DENTAL PC INC",,,"411 W MARKET ST",,"LONG BEACH","NY","115611813",,,,,,,"411 W MARKET ST",,"LONG BEACH","NY","115611813",,,,,,,"113035567","5163145887","621210","BOULEVARD DENTAL PC INC",,"411 W MARKET ST",,"LONG BEACH","NY","115611813",,,,,,,"113035567","5163145887",,,,"2010-11-02T13:22:00-0500","JONATHAN MARCUS",,,,,4,0,0,0,0,0,0,0,0,,"2A2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-11-02","Filed with authorized/valid electronic signature",, "20101102092644P040000065046001","2010-01-01","2010-03-31","2",,"0","1","1","1","0","0","0","0","0",,"MCBRIDE ELECTRIC, INC. EMPLOYEE GROUP BENEFIT PLAN","501","1985-02-01","MCBRIDE ELECTRIC, INC.",,,"6480 WEATHERS PLACE, SUITE #340",,"SAN DIEGO","CA","921213913",,,,,,,,,,,,,,,,,,"480630549","8584501414","238210","MCBRIDE ELECTRIC, INC.",,"6480 WEATHERS PLACE, SUITE #340",,"SAN DIEGO","CA","921213913",,,,,,,"480630549","8584501414",,,,"2010-11-01T18:56:40-0500","JULIE GASPER",,,,,382,0,0,0,0,,,,,,,"4A4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2010-11-02","Filed with authorized/valid electronic signature",, "20101101090633P070000461187001","2010-01-01","2010-09-30","2",,,,"1","1",,,,,,,"NATHANSON, CIPRIANO AND GAMBARDELLA, P.C. PROFIT SHARING PLAN","001","1986-01-01","NATHANSON, CIPRIANO & GAMBARDELLA, P.C.",,,"60 WASHINGTON AVE., SUITE 104","P.O. BOX 5516","HAMDEN","CT","06518",,,,,,,,,,,,,,,,,,"061112200","2032881333","541110","NATHANSON, CIPRIANO & GAMBARDELLA, P.C.",,"60 WASHINGTON AVE., SUITE 104","P.O. BOX 5516","HAMDEN","CT","06518",,,,,,,"061112200","2032881333",,,,"2010-11-01T10:06:10-0500","JOHN CIPRIANO",,,,,16,0,0,0,0,0,0,0,0,,"2E2D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-11-01","Filed with authorized/valid electronic signature",, "20101115143422P030002613825001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","1","0","0","0",,"UNITED SHORELINE FCU RETIREMENT SAVINGS FUND","011","1983-04-01","UNITED SHORELINE FCU",,,"107 WHITNEY AVE",,"NEW HAVEN","CT","065101232",,,,,,,,,,,,,,,,,,"060678593","2037866410","522130","UNITED SHORELINE FCU",,"107 WHITNEY AVE",,"NEW HAVEN","CT","065101232",,,,,,,"060678593","2037866410",,,,"2010-11-15T14:34:16-0600","LUCILLE CLANCY",,,,,1,0,0,0,0,0,0,0,0,0,"2C2G2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",, "20101115150426P040000184324001","2010-01-01","2010-01-04","2",,"0","0","1","1","0","1","0","0","0",,"EIMO AMERICAS 401K PROFIT SHARING PLAN","001","1992-01-01","EIMO TECHNOLOGIES",,,"14320 PORTAGE ROAD, PO BOX E",,"VICKSBURG","MI","49097",,,,,,,,,,,,,,,,,,"261523987","2696490545","326100","EIMO TECHNOLOGIES",,"14320 PORTAGE ROAD, PO BOX E",,"VICKSBURG","MI","49097",,,,,,,"261523987","2696490545",,,,"2010-11-15T15:04:19-0600","MIKE KEITH",,,,,232,0,0,0,0,0,0,0,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",, "20101102081544P030000222354001","2010-01-01","2010-03-31","4","C","0","0","1","1","0","0","0","0","0",,"PNC BANK, N.A. INVESTMENT FUNDS FOR RETIREMENT TRUSTS - CAPITAL PRESERVATION FUND","007",,"PNC BANK, N.A.",,,"620 LIBERTY AVENUE 8TH FLOOR",,"PITTSBURGH","PA","15222",,,,,,,,,,,,,,,,,,"346519512","8007620061",,"PNC BANK, N.A.",,"620 LIBERTY AVENUE 8TH FLOOR",,"PITTSBURGH","PA","15222",,,,,,,"346519512","8007620061",,,,,,,,"2010-11-02T08:03:43-0500","ROBIN RICE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2010-11-02",,"Filed with authorized/valid electronic signature", "20101102142708P040000422994001","2010-01-01","2010-04-01","2",,"0","0","1","1",,,,,,,"PYRAMID MOULDINGS RETIREMENT PLAN","002","2001-05-01","THE PYRAMID MOULDINGS",,,"4630 COUNTY ROAD 209 SOUTH",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"4630 COUNTY ROAD 209 SOUTH",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"522283836","9042845611","332300","THE PYRAMID MOULDINGS",,"4630 COUNTY ROAD 209 SOUTH",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"522283836","9042845611",,,,"2010-11-02T14:23:36-0500","S GORDON DAVIS JR","2010-11-02T14:24:08-0500","S GORDON DAVIS JR",,,130,0,0,0,0,0,0,0,0,,"2F2G2J2K2T3D3F",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2010-11-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101115091605P030000549208001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","0","0","0","0",,"DARRELL GREEN YOUTH LIFE FOUNDATION 403(B) RETIREMENT SAVINGS PLAN","001","2001-10-01","YOUTH LIFE FOUNDATION",,,"1920 IRVING STREET, NE",,"WASHINGTON","DC","20018",,,,,,,,,,,,,,,,,,"521576472","2022691207","624100","YOUTH LIFE FOUNDATION",,"1920 IRVING STREET, NE",,"WASHINGTON","DC","20018",,,,,,,"521576472","2022691207",,,,"2010-11-15T09:16:01-0600","TALIA BOONE","2010-11-15T09:16:01-0600","TALIA BOONE",,,0,0,0,0,0,0,0,0,0,,"2M2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101112091940P030004552888001","2007-08-01","2008-07-31","2",,"0","0","0","0","0","0","0","0","0",,"MOUNT BAKER PRESCHOOL DEFINED CONTRIBUTION ON RETIREMENT PLAN","001","1999-04-29","MOUNT BAKER PRESCHOOL",,,"2800 S. MASSACHUSETTS STREET",,"SEATTLE","WA","98144",,,,,,,"2800 S. MASSACHUSETTS STREET",,"SEATTLE","WA","98144",,,,,,,"910903531","2063256711","611000","VIOLETTA G. WILSON",,"2800 S. MASSACHUSETTS STREET",,"SEATTLE","WA","98144",,,,,,,"910903531","2063256711","JULIE SULLENSZINO","910903531","001","2010-11-12T09:18:59-0600","JULIE SULLENSZINO",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-11-12","Filed with authorized/valid electronic signature",, "20101123164323P030016618673001","2010-01-01","2010-07-31","2",,"0","1","1","1","0","0","0","0","0",,"PDT DESIGN 401K PROFIT SHARING PLAN","001","1969-01-01","PDT DESIGN",,,"300 WEST FOURTH STREET",,"CINCINNATI","OH","45202",,,,,,,,,,,,,,,,,,"310530805","5137456703","541310","PDT DESIGN",,"300 WEST FOURTH STREET",,"CINCINNATI","OH","45202",,,,,,,"310530805","5137456703",,,,"2010-11-23T16:39:31-0600","MARK BROWNING",,,,,4,0,0,0,0,0,0,0,0,,"2E2H2J2K3D2A2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",, "20101201121504P040010861010001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REAMETRIX INC 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","REAMETRIX INC",,,"1585 INDUSTRIAL RD",,"SAN CARLOS","CA","94070",,,,,,,"1585 INDUSTRIAL RD",,"SAN CARLOS","CA","94070",,,,,,,"651185549","6509628845","325410","REAMETRIX INC",,"1585 INDUSTRIAL RD",,"SAN CARLOS","CA","94070",,,,,,,"651185549","6509628845",,,,"2010-11-30T17:02:46-0600","JUDY PAU",,,,,6,5,0,0,5,0,5,3,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-12-01","Filed with authorized/valid electronic signature",, "20101119095428P040001228179001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","0","0","0","0",,"SHANAHAN & SONS BUILDERS, INC. PROFIT SHARING PLAN","002","1992-01-01","SHANAHAN & SONS BUILDERS, INC.",,,"1635 SHANAHAN DRIVE",,"SOUTH ELGIN","IL","601772276",,,,,,,,,,,,,,,,,,"363042852","8476954320","236110","SHANAHAN & SONS BUILDERS, INC.",,"1635 SHANAHAN DRIVE",,"SOUTH ELGIN","IL","601772276",,,,,,,"363042852","8476954320",,,,"2010-11-19T09:54:22-0600","JEFFREY SHANAHAN",,,,,17,0,0,0,0,0,0,0,0,,"2E2F2G2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-11-19","Filed with authorized/valid electronic signature",, "20101123170248P040001191892001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","0","0","0","0",,"UROLOGY ASSOCIATES, S.C. 401(K) PROFIT SHARING PLAN","002","1984-06-01","UROLOGY ASSOCIATES, S.C.",,,"500 HEALTH CENTER DRIVE, SUITE 305",,"MATTOON","IL","61938",,,,,,,,,,,,,,,,,,"371156677","2172584186","621111","UROLOGY ASSOCIATES, S.C.",,"500 HEALTH CENTER DRIVE, SUITE 305",,"MATTOON","IL","61938",,,,,,,"371156677","2172584186",,,,"2010-11-23T16:58:26-0600","ROGER RIVES",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",, "20101123094425P040002127555001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"NORTH OF BOSTON LIBRARY EXCHANGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1994-10-01","NORTH OF BOSTON LIBRARY EXCHANGE",,,"26 CHERRY HILL DRIVE",,"DANVERS","MA","01923",,,,,,,"26 CHERRY HILL DRIVE",,"DANVERS","MA","01923",,,,,,,"222712714","9787778844","519100","NORTH OF BOSTON LIBRARY EXCHANGE",,"26 CHERRY HILL DRIVE",,"DANVERS","MA","01923",,,,,,,"222712714","9787778844",,,,"2010-11-23T09:43:19-0600","PAULA ACQUAVIVA",,,,,,,0,0,0,0,0,,0,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",, "20101123113326P040001157764001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"JPIE INC SAFE HARBOR 401K PLAN","002","2006-01-01","JPIE INC","DIXON PHARMACY & MAIN ST PHARMACY",,"742 NORTH GALENA AVENUE",,"DIXON","IL","61021",,,,,,,,,,,,,,,,,,"362825587","8152883384","446110","JPIE INC",,"742 NORTH GALENA AVENUE",,"DIXON","IL","61021",,,,,,,"362825587","8152883384",,,,"2010-11-23T11:33:18-0600","JAMES PIETRYGA",,,,,27,26,0,0,26,0,26,11,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",, "20101119060250P030002192520001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"BRIGHT COMPANIES EMPLOYEE HEALTH BENEFIT PLAN","501","1990-09-01","BRIGHT AND COMPANY",,,"2911 TURTLE CREEK BOULEVARD,","SUITE 700","DALLAS","TX","752197115",,,,,,,,,,,,,,,,,,"751583918","2145590889","488990","BRIGHT AND COMPANY",,"2911 TURTLE CREEK BOULEVARD,","SUITE 700","DALLAS","TX","752197115",,,,,,,"751583918","2145590889",,,,"2010-11-19T06:02:39-0600","GEOFF GIBSON","2010-11-19T06:02:39-0600","GEOFF GIBSON",,,153,0,0,0,0,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2010-11-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101202090835P040007995864001","2010-01-01","2010-04-26","2",,"0","0","1","1","0","0","0","0","0",,"SPRING VALLEY NURSING CENTER 401(K) PLAN","001","2001-01-01","SPRING VALLEY NURSING CENTER",,,"1300 NORTH GREENWOOD STREET",,"SPRING VALLEY","IL","61362",,,,,,,"1300 NORTH GREENWOOD STREET",,"SPRING VALLEY","IL","61362",,,,,,,"363047842","8156644708","623000","SPRING VALLEY NURSING CENTER",,"1300 NORTH GREENWOOD STREET",,"SPRING VALLEY","IL","61362",,,,,,,"363047842","8156644708",,,,"2010-12-01T10:09:53-0600","MORRIS STEINBURG",,,,,38,0,0,0,0,0,0,0,0,,"2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-12-02","Filed with authorized/valid electronic signature",, "20101117090520P030000738051001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"PEACOCK, HISLOP, STALEY & GIVEN, INC. PROFIT SHARING PLAN AND TRUST","001","1990-01-01","PEACOCK, HISLOP, STALEY & GIVEN, INC.",,,"9892 EAST CHARTER OAK ROAD",,"SCOTTSDALE","AZ","85260",,,,,,,,,,,,,,,,,,"860591513","6029526800","523110","PEACOCK, HISLOP, STALEY & GIVEN, INC.",,"9892 EAST CHARTER OAK ROAD",,"SCOTTSDALE","AZ","85260",,,,,,,"860591513","6029526800",,,,"2010-11-16T17:06:50-0600","DAVID MILLER",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2R2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-11-17","Filed with authorized/valid electronic signature",, "20101202161942P040011607922001","2006-01-01","2006-12-31","2",,"1","0","0","0","0","0","0","1","0",,"MEDICAL, DENTAL AND LIFE INSURANCE PLAN","501","2005-01-01","ROCHE OPERATIONS, LTD.",,,"2875 PONCE BY PASS","PO BOX 7085","PONCE","PR","007327085",,,,,,,"2875 PONCE BY PASS","PO BOX 7085","PONCE","PR","007327085",,,,,,,"660446098","7878436195","339900","ROCHE OPERATIONS, LTD.",,"2875 PONCE BY PASS","PO BOX 7085","PONCE","PR","007327085",,,,,,,"660446098","7878436195",,,,"2010-12-02T15:37:55-0600","MAYRA LOPEZ",,,,,161,156,0,0,156,0,156,,,,,"4A4B4D","1",,,"0","1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2010-12-02","Filed with authorized/valid electronic signature",, "20101124085542P030001296484001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"JOHN H SEIFERT DMD AND JAY M WYLAM DMD PROFIT SHARING PLAN","002","1988-01-01","JOHN H SEIFERT DMD",,,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"930952133","5035854281","621210","JOHN H SEIFERT DMD",,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"930952133","5035854281",,,,"2010-11-22T20:33:49-0600","JOHN SEIFERT",,,,,14,16,,,16,,16,15,,,"2E2F2J3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-11-24","Filed with authorized/valid electronic signature",, "20101202195313P040004271043001","2010-01-01","2010-03-31","4","C","0","0","1","1","0","0","0","0","0",,"INVESCO MODERATE ASSET ALLOCATION TRUST","001",,"INVESCO NATIONAL TRUST COMPANY",,,"1555 PEACHTREE STREET NE, STE 1100","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,,,,,,,,,,,,"841227972","4048920896",,"INVESCO NATIONAL TRUST COMPANY",,"1555 PEACHTREE STREET NE, STE 1100","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,"840591534","4048920896",,,,,,,,"2010-12-02T15:34:42-0600","PAUL SPRIGGS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2010-12-02",,"Filed with authorized/valid electronic signature", "20101202153508P040004228835001","2005-01-01","2005-12-31","2",,"1","0","0","0","0","0","0","1","0",,"GLASS SPORTS MEDICINE, P.C. 401K PROFIT SHARING PLAN AND TRUST","001","2005-01-01","GLASSON SPORTS MEDICINE, P.C.",,,"968 FIRST COLONIAL ROAD, SUITE 101",,"VIRGINIA BEACH","VA","23454",,,,,,,,,,,,,,,,,,"753054815","7574121005","621111","GLASSON SPORTS MEDICINE, P.C.",,"968 FIRST COLONIAL ROAD, SUITE 101",,"VIRGINIA BEACH","VA","23454",,,,,,,"753054815","7574121005",,,,"2010-12-02T15:35:00-0600","SANDRA GLASSON",,,,,0,6,0,0,6,0,6,6,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-02","Filed with authorized/valid electronic signature",, "20101122070215P030014170321001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SCFK RETIREMENT PLAN","001","1996-01-01","SHULMAN COHEN FURST & CO",,"MICHAEL FURST","36 BRIANBETH PL",,"TAPPAN","NY","10983",,,,,,,,,,,,,,,,,,"133595778","8453596458","541211","SHULMAN COHEN FURST & CO","MICHAEL FURST","36 BRIANBETH PL",,"TAPPAN","NY","10983",,,,,,,"133595778","8453596458",,,,"2010-11-22T06:55:42-0600","MICHAEL FURST",,,,,0,,,,,0,0,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-11-22","Filed with authorized/valid electronic signature",, "20101122143327P030000969318001","2010-01-01","2010-11-05","2",,"0","0","1","1","0","0","0","0","0",,"J - NEX, INC. 401(K) PLAN","001","1999-01-01","J - NEX, INC.",,,"10201 RIVERSIDE DRIVE",,"TOLUCA LAKE","CA","91602",,,,,,,"#203",,"TOLUCA LAKE","CA","91602",,,,,,,"953940007","8185089990","512100","J - NEX, INC.",,"10201 RIVERSIDE DRIVE",,"TOLUCA LAKE","CA","91602",,,,,,,"953940007","8185089990",,,,"2010-11-22T14:33:08-0600","ROSA PEER ALBERT",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2010-11-22","Filed with authorized/valid electronic signature",, "20101129104611P040001865732001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","1","0","0","0",,"NORTH STAR MARINE, L.L.C. 401(K) RETIREMENT PLAN","001","2007-01-01","NORTH STAR MARINE, L.L.C.",,,"107 ANGELLE COURT",,"HOUMA","LA","70360",,,,,,,,,,,,,,,,,,"721562636","9858684512","483000","NORTH STAR MARINE, L.L.C.",,"107 ANGELLE COURT",,"HOUMA","LA","70360",,,,,,,"721562636","9858684512",,,,"2010-11-29T10:43:35-0600","NEAL CHERAMIE",,,,,3,0,0,0,0,0,0,0,0,,"2A2E2J2K2F2G3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-29","Filed with authorized/valid electronic signature",, "20101122103108P040003641848001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"GRAMERCY SURGERY CENTER 401K PLAN","001","2009-01-01","GRAMERCY SURGERY CENTER",,,"380 2ND AVENUE 10TH FLOOR","SUITE 1000","NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"204336660","2122543570","621493","GRAMERCY SURGERY CENTER",,"380 2ND AVENUE 10TH FLOOR","SUITE 1000","NEW YORK","NY","10010",,,,,,,"204336660","2122543570",,,,"2010-11-22T10:31:01-0600","MAY CHAN",,,,,29,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-11-22","Filed with authorized/valid electronic signature",, "20101204094320P040001948661001","2010-01-01","2010-07-15","2",,"0","1","1","1","0","0","0","0","0",,"CLEVELAND GROWERS MARKETING CO. PROFIT SHARING PLAN AND TRUST FOR SALARIED EMPLOYEES","001","1964-01-15","CLEVELAND GROWERS MARKETING CO.",,,"12200 CORPORATE DR.",,"PARMA","OH","441309316",,,,,,,,,,,,,,,,,,"340150580","2168983900","424400","CLEVELAND GROWERS MARKETING CO.",,"12200 CORPORATE DR.",,"PARMA","OH","441309316",,,,,,,"340150580","2168983900",,,,"2010-12-04T09:41:28-0600","ROBERT A RANLLO","2010-12-04T09:43:13-0600","ROBERT A RANALLO",,,9,0,0,0,0,0,0,0,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101215133407P040001078404001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"INFORMATION TECHNOLOGY","001","2002-02-14","INFORMATION TECHNOLOGY MANAGEMENT",,,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"541829240","7039894974","541512","INFORMATION TECHNOLOGY MANAGEMENT",,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"541829240","7039894974",,,,"2010-12-15T13:33:42-0600","THU PHAM",,,,,0,0,0,,0,,0,,,,"2E2F2G2J2K3E",,,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2010-12-15","Filed with authorized/valid electronic signature",, "20101212172104P040001201635001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","0","0","0","0",,"G. MICHAEL LOPEZ, M.D. SELF EMPLOYED PROFIT SHARING PLAN","001","1985-01-01","G. MICHAEL LOPEZ, M.D.",,,"105 MILLS AVE., SUITE 300",,"LAS VEGAS","NM","87701",,,,,,,,,,,,,,,,,,"850305634","5054259311","621111","G. MICHAEL LOPEZ, M.D.",,"105 MILLS AVE., SUITE 300",,"LAS VEGAS","NM","87701",,,,,,,"850305634","5054259311","G. MICHAEL LOPEZ, M.D.","840305634","001","2010-12-12T17:20:42-0600","G. MICHAEL LOPEZ MD",,,,,7,8,0,0,8,0,8,7,0,,"2E2F2R3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-12","Filed with authorized/valid electronic signature",, "20101210084530P030004811873001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","1","0","0","0",,"ACCRETECH USA INC 401K SALARY REDUCTION PLAN","001","1991-11-01","ACCRETECH USA INC",,,"2600 TELEGRAPH ROAD, SUITE 180",,"BLOOMFIELD HILLS","MI","48302",,,,,,,,,,,,,,,,,,"383229282","2483320100","334410","ACCRETECH USA INC",,"2600 TELEGRAPH ROAD, SUITE 180",,"BLOOMFIELD HILLS","MI","48302",,,,,,,"383229282","2483320100",,,,"2010-12-10T08:17:01-0600","KOJI GOTO",,,,,7,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-10","Filed with authorized/valid electronic signature",, "20101210100911P040005803793001","2010-01-01","2010-04-30","2",,"0","0","1","1","1","1","0","0","0",,"STELLA D'ORO BISCUIT CO., INC SAL RED PLAN FOR EMPL OF LOC 550","002","2001-04-01","STELLA D ORO BISCUIT CO INC",,,"115 STEVENS AVE","SUITE 202","VALHALLA","NY","10595",,,,,,,,,,,,,,,,,,"131704866","9149842290","311800","STELLA D ORO BISCUIT CO INC",,"115 STEVENS AVE","SUITE 202","VALHALLA","NY","10595",,,,,,,"131704866","9149842290",,,,"2010-12-10T10:09:07-0600","DENNIS TORTORA",,,,,13,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-10","Filed with authorized/valid electronic signature",, "20101213121300P030004075778001","2010-01-01","2010-05-03","2",,"0","0","1","1","0","0","0","0","0",,"CAROLINA'S RECYCLING GROUP, LLC RETIREMENT SAVINGS PLAN","002","1999-01-01","OMNISOURCE CORPORATION",,,"P.O. BOX 578",,"SPARTANBURG","SC","29365",,,,,,,,,,,,,,,,,,"562256626","8644397039","423930","OMNISOURCE CORPORATION",,"P.O. BOX 578",,"SPARTANBURG","SC","29365",,,,,,,"562256626","8644397039","RECYCLE SOUTH, LLC","571075008","002","2010-12-13T12:09:55-0600","MICHAEL MUNAFO",,,,,279,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2010-12-13","Filed with authorized/valid electronic signature",, "20101221141757P030000184978001","2010-05-01","2010-07-31","2",,"0","0","1","1","0","0","0","0","0",,"A. G. STROBEL, INC. PROFIT SHARING PLAN","001","1970-04-23","A. G. STROBEL, INC.",,,"PO BOX 241464",,"APPLE VALLEY","MN","55124",,,,,,,,,,,,,,,,,,"410904567","6128197984","236200","A. G. STROBEL, INC.",,"PO BOX 241464",,"APPLE VALLEY","MN","55124",,,,,,,"410904567","6128197984",,,,"2010-12-21T14:17:40-0600","DANIEL KUTZKE",,,,,4,0,0,0,0,0,0,0,0,,"2E3D2F2G2J",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-12-21","Filed with authorized/valid electronic signature",, "20101221161927P030003708416001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","1","0",,"PRANALYTICA EMPLOYEE SAVINGS PLAN","001","2000-09-01","PRANALYTICA, INC.",,,"1101 COLORADO AVENUE",,"SANTA MONICA","CA","90401",,,,,,,,,,,,,,,,,,"954750629","3104584493","339900","PRANALYTICA, INC.",,"1101 COLORADO AVENUE",,"SANTA MONICA","CA","90401",,,,,,,"954750629","3104584493",,,,"2010-12-21T16:16:20-0600","FRANCIS MCGUIRE",,,,,19,12,0,2,14,0,14,16,0,,"2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-21","Filed with authorized/valid electronic signature",, "20101219163229P030003890451001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"NINE DOT STRATEGIES, INC. 401(K) PLAN","001","2008-03-01","NINE DOT STRATEGIES, INC.",,,"529 14TH STREET NW","SUITE 750","WASHINGTON","DC","20045",,,,,,,,,,,,,,,,,,"261753066","2026628861","541990","NINE DOT STRATEGIES, INC.",,"529 14TH STREET NW","SUITE 750","WASHINGTON","DC","20045",,,,,,,"261753066","2026628861",,,,"2010-12-19T16:32:20-0600","LISA CARR",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-19","Filed with authorized/valid electronic signature",, "20101206133316P040038808641001","2001-07-01","2002-06-30","2",,"0","1","0","0","0","0","0","0","0",,"COMMUNITY MENTAL HEALTH CENTER, INC. BENEFIT PLAN","501","1990-03-01","COMMUNITY MENTAL HEALTH CENTER, INC.",,,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"351129339","8125371302","621330","COMMUNITY MENTAL HEALTH CENTER, INC.",,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"351129339","8125371302",,,,"2010-12-06T13:28:39-0600","GEORGII ZHIRKIN",,,,,88,83,,,83,,83,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,"1","1","2","1",,,"FILING_RECEIVED","2010-12-06","Filed with authorized/valid electronic signature",, "20101203143924P030001943253001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","1","0","0","0",,"SUNNYSIDE EDUCATION SYSTEM INC 401K","001","2008-01-01","SUNNYSIDE EDUCATION SYSTEM INC",,,"14210 SE SUNNYSIDE ROAD",,"CLACKAMAS","OR","97015",,,,,,,,,,,,,,,,,,"204535344","5036588715","611000","SUNNYSIDE EDUCATION SYSTEM INC",,"14210 SE SUNNYSIDE ROAD",,"CLACKAMAS","OR","97015",,,,,,,"204535344","5036588715",,,,"2010-12-03T14:39:19-0600","JENNIE BRAWN",,,,,14,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-03","Filed with authorized/valid electronic signature",, "20101206133409P040009830680001","2003-07-01","2004-06-30","2",,"0","1","0","0","0","0","0","0","0",,"COMMUNITY MENTAL HEALTH CENTER, INC. BENEFIT PLAN","501","1990-03-01","COMMUNITY MENTAL HEALTH CENTER, INC.",,,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"351129339","8125371302","621330","COMMUNITY MENTAL HEALTH CENTER, INC.",,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"351129339","8125371302",,,,"2010-12-06T13:27:57-0600","GEORGII ZHIRKIN",,,,,89,99,,,99,,99,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,"1","1","3","1",,,"FILING_RECEIVED","2010-12-06","Filed with authorized/valid electronic signature",, "20101216102334P030013784881001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRIMARY CARE ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","001","2003-01-01","PRIMARY CARE ASSOCIATES OF S.W. FLORIDA, P.A.",,,"2091 TAMIAMI TRAIL",,"PORT CHARLOTTE","FL","339482112",,,,,,,"2091 TAMIAMI TRAIL",,"PORT CHARLOTTE","FL","339482112",,,,,,,"651052826","9416259494","621111","PRIMARY CARE ASSOCIATES OF S.W. FLORIDA, P.A.",,"2091 TAMIAMI TRAIL",,"PORT CHARLOTTE","FL","339482112",,,,,,,"651052826","9416259494",,,,"2010-12-16T10:13:36-0600","DEBRA HOOPER",,,,,7,5,0,1,6,0,6,6,1,,"2E2F2G2J3E",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-12-16","Filed with authorized/valid electronic signature",, "20101222131819P030001340753001","2010-01-01","2010-06-17","2",,"0","0","1","1","0","0","0","0","0",,"UTIX GROUP, INC. 401K PLAN","001","2006-03-10","UTIX GROUP, INC.",,"VERDOLINO AND LOWEY, P.C.","124 WASHINGTON STREET","SUITE 101","FOXBOROUGH","MA","02035",,,,,,,"124 WASHINGTON STREET","SUITE 101","FOXBOROUGH","MA","02035",,,,,,,"752340624","5085431720","541800","UTIX GROUP, INC.","VERDOLINO AND LOWEY, P.C.","124 WASHINGTON STREET","SUITE 101","FOXBOROUGH","MA","02035",,,,,,,"752340624","5085431720",,,,"2010-12-22T13:13:35-0600","LYNNE RILEY",,,,,4,0,0,0,0,0,0,0,,,"2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,"0",,,"FILING_RECEIVED","2010-12-22","Filed with authorized/valid electronic signature",, "20101217110542P040018112977001","2010-01-01","2010-11-10","2",,"0","0","1","1","0","0","0","0","0",,"DR. DAVID P. HOLTROP CHIROPRACTOR, LTD. PROFIT SHARING PLAN AND TRUST","002","2002-01-01","DR. DAVID P. HOLTROP CHIROPRACTOR, LTD.",,,"4171 SOUTH 15TH STREET",,"SHEBOYGAN","WI","53081",,,,,,,,,,,,,,,,,,"391746106","9204599690","621111","DR. DAVID P. HOLTROP CHIROPRACTOR, LTD.",,"4171 SOUTH 15TH STREET",,"SHEBOYGAN","WI","53081",,,,,,,"391746106","9204599690",,,,"2010-12-17T10:58:01-0600","MICHELLE HOLTROP",,,,,7,0,0,0,0,0,0,0,0,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-12-17","Filed with authorized/valid electronic signature",, "20110107171254P040010281441001","2008-05-01","2009-04-30","2",,"0","0","0","0","0","0","0","1","0",,"TIMOTHY J. WALTERS, PC DEFINED BENEFIT PENSION PLAN","001","2003-05-01","TIMOTHY J. WALTERS, PC",,,"237 NE BROADWAY, SUITE 100",,"PORTLAND","OR","972321109",,,,,,,,,,,,,,,,,,"931295596","5034955780","531210","TIMOTHY J. WALTERS, PC",,"237 NE BROADWAY, SUITE 100",,"PORTLAND","OR","972321109",,,,,,,"931295596","5034955780",,,,"2011-01-07T17:12:10-0600","TIM WALTERS",,,,,2,2,0,0,2,0,2,,0,,"1A3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-07","Filed with authorized/valid electronic signature",, "20110104122909P030008393137001","2009-09-01","2010-08-31","4","C","0","0","0","0","0","0","0","0","0",,"SMALL COMPANY DIVERSIFIED VALUE PORTFOLIO OF THE WTFSC CIT FOR EMPLOYEE BENEFIT PLANS","944",,"WILMINGTON TRUST FIDUCIARY SERVICES COMPANY CIT FOR EMPLOYEE BENEFIT P",,,"P.O. BOX 52129",,"PHOENIX","AZ","850722129",,,,,,,,,,,,,,,,,,"263783916","6029558373",,"WILMINGTON TRUST FIDUCIARY SERVICES COMPANY CIT FOR EMPLOYEE BENEFIT P",,"P.O. BOX 52129",,"PHOENIX","AZ","850722129",,,,,,,"263783916","6029558373",,,,,,,,"2011-01-04T12:28:44-0600","DOUG GROCHOWSKI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-01-04",,"Filed with authorized/valid electronic signature", "20101229161211P030005194209001","2010-01-01","2010-02-08","2",,"0","0","1","1","0","1","0","1","0",,"PROPAK LOGISTICS INC. 401K PLAN","001","2000-10-01","PROPAK LOGISTICS INC.",,,"815 FORT STREET",,"BARLING","AR","72923",,,,,,,,,,,,,,,,,,"753107303","4794787839","541600","PROPAK LOGISTICS INC.",,"815 FORT STREET",,"BARLING","AR","72923",,,,,,,"753107303","4794787839",,,,"2010-12-29T16:11:47-0600","CLAUDIA ABRAJAN","2010-12-29T16:11:47-0600","CLAUDIA ABRAJAN",,,2185,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2010-12-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101229223902P030005329633001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"MAYTA & JENSEN SALARY DEFERRAL PLAN","004","2003-01-01","MAYTA & JENSEN",,,"101 WILLIAMS AVE.",,"SAN FRANCISCO","CA","94124",,,,,,,,,,,,,,,,,,"941052871","4158222200","236200","MAYTA & JENSEN",,"101 WILLIAMS AVE.",,"SAN FRANCISCO","CA","94124",,,,,,,"941052871","4158222200",,,,"2010-12-29T22:38:53-0600","MARK EVERETT","2010-12-29T22:38:53-0600","MARK EVERETT",,,18,0,0,0,0,0,0,0,0,,"2E2F2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110105130204P040041776032001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ANDRUS FAMILY INVESTMENTS, LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-10-01","ANDRUS FAMILY INVESTMENTS, LLC",,"DANIELLE ANDRUS MONTALIEU","PO BOX 1213",,"MC MINNVILLE","OR","97148",,,,,,,"PO BOX 1213",,"MC MINNVILLE","OR","97148",,,,,,,"680416795","5032607674","722410","ANDRUS FAMILY INVESTMENTS, LLC","DANIELLE ANDRUS MONTALIEU","PO BOX 1213",,"MC MINNVILLE","OR","97148",,,,,,,"680416795","5032607674",,,,"2011-01-05T11:57:21-0600","DANIELLE ANDRUS MONTALIEU",,,,,1,1,0,0,1,0,1,0,1,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-05","Filed with authorized/valid electronic signature",, "20101230172015P040001676311001","2010-01-01","2010-09-14","2",,"0","0","1","1",,,,,,,"WEITZ MEDICAL MANAGEMENT 401(K) PROFIT SHARING PLAN","002","2004-01-01","WEITZ MEDICAL MANAGEMENT",,,"2300 SUTTER STREET","SUITE 304","SAN FRANCISCO","CA","94115",,,,,,,"2300 SUTTER STREET","SUITE 304","SAN FRANCISCO","CA","94115",,,,,,,"043588847","4152793061","621111","WEITZ MEDICAL MANAGEMENT",,"2300 SUTTER STREET","SUITE 304","SAN FRANCISCO","CA","94115",,,,,,,"043588847","4152793061",,,,"2010-12-30T16:58:52-0600","CAROL WEITZ",,,,,5,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-12-30","Filed with authorized/valid electronic signature",, "20110105151511P030009025537001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"DESOTO INSURANCE AGENCY SIMPLE 401 (K) PLAN","001","2001-01-01","DESOTO INSURANCE AGENCY, INC.",,,"243 N. BREVARD AVE.",,"ARCADIA","FL","34266",,,,,,,"243 N. BREVARD AVE.",,"ARCADIA","FL","34266",,,,,,,"590218850","8634942242","524210","DESOTO INSURANCE AGENCY, INC.",,"243 N. BREVARD AVE.",,"ARCADIA","FL","34266",,,,,,,"590218850","8634942242",,,,"2011-01-05T15:14:50-0600","DESOTO INSURANCE AGENCY INC",,,,,10,9,0,0,9,0,9,8,0,,"2J2K2G3E2F",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-01-05","Filed with authorized/valid electronic signature",, "20110107084134P040046402000001","2009-04-01","2010-03-31","2",,"0","0","0","0","0","1","0","0","0",,"TEXAS INSURANCE BROKERS, INC. SAFE HARBOR 401(K) PLAN","003","1983-10-01","TEXAS INSURANCE BROKERS, INC.",,,"4112 ASCOT LN",,"HOUSTON","TX","770928312",,,,,,,,,,,,,,,,,,"760000406","7136861719","524210","TEXAS INSURANCE BROKERS, INC.",,"4112 ASCOT LN",,"HOUSTON","TX","770928312",,,,,,,"760000406","7136861719",,,,"2011-01-07T08:41:28-0600","JOE ASSAD",,,,,3,2,0,0,2,0,2,2,0,,"2E2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-07","Filed with authorized/valid electronic signature",, "20110103075629P040007849121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLIFFORD VANBLARCOM DDS PC","001","1976-07-01","CLIFFORD VANBLARCOM DDS PC",,"CLIFFORD VANBLARCOM","6834 LINDEN",,"PRAIRIE VILLAGE","KS","662081426",,,,,,,"6834 LINDEN",,"PRAIRIE VILLAGE","KS","662081426",,,,,,,"431079825","9134325025","621210","CLIFFORD VANBLARCOM DDS PC","CLIFFORD VANBLARCOM","6834 LINDEN",,"PRAIRIE VILLAGE","KS","662081426",,,,,,,"431079825","9134325025",,,,"2011-01-03T07:55:44-0600","CLIFFORD VANBLARCOM",,,,,2,1,,,1,,1,1,,,"2G2E3E2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-03","Filed with authorized/valid electronic signature",, "20110110105010P040001775922001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"RALYN ENTERPRISES, INC. PROFIT-SHARING PLAN","001","1999-06-09","RALYN ENTERPRISES, INC.",,,"40 KEENAN CREEK WAY",,"SIMPSONVILLE","SC","296806336",,,,,,,,,,,,,,,,,,"710826088","8642283965","236110","RALYN ENTERPRISES, INC.",,"40 KEENAN CREEK WAY",,"SIMPSONVILLE","SC","296806336",,,,,,,"710826088","8642283965",,,,"2011-01-10T10:49:26-0600","RAYMOND DRAUSE",,,,,1,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-10","Filed with authorized/valid electronic signature",, "20110103091828P030001274434001","2010-04-01","2010-07-13","2",,"0","0","1","1","0","0","0","0","0",,"CIRUJANOS UNIDOS DEL NOROESTE RETIREMENT PLAN","001","2000-04-01","CIRUJANOS UNIDOS DEL NOROESTE",,,"25 AVE. SEVERIANO CUEVAS",,"AGUADILLA","PR","00603",,,,,,,,,,,,,,,,,,"660391479","7878918090","621111","CIRUJANOS UNIDOS DEL NOROESTE",,"25 AVE. SEVERIANO CUEVAS",,"AGUADILLA","PR","00603",,,,,,,"660391479","7878918090",,,,"2011-01-03T09:18:12-0600","REINA RODRIGUEZ",,,,,5,0,0,0,0,0,0,0,0,,"2E3C3B",,"1","0","1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-01-03","Filed with authorized/valid electronic signature",, "20110110064105P030011562449001","2009-10-16","2010-03-31","4","C","1","0","0","1","0","0","0","0","0",,"EB DV NON-SL SMALL CAP STOCK INDEX FUND","235",,"THE BANK OF NEW YORK MELLON",,,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,,,,,,,,,,,,"256078093","4122366165",,"THE BANK OF NEW YORK MELLON",,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,"256078093","4122366165",,,,,,,,"2011-01-10T06:38:30-0600","JEFFREY VAUGHN",0,0,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-01-10",,"Filed with authorized/valid electronic signature", "20110111103043P040012328097001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","1","0",,"CASHE, LEWIS, COUDRAIN, & SANDAGE","001","1989-01-01","CASHE, LEWIS, COUDRAIN, & SANDAGE",,,"106 S MAGNOLIA ST",,"HAMMOND","LA","70403",,,,,,,"106 S MAGNOLIA ST",,"HAMMOND","LA","70403",,,,,,,"460513245","9855426848","541110","CASHE, LEWIS, COUDRAIN, & SANDAGE",,"106 S MAGNOLIA ST",,"HAMMOND","LA","70403",,,,,,,"460513245","9855426848",,,,"2011-01-11T10:30:34-0600","FRANK HARRISON",,,,,13,15,0,0,15,0,15,11,0,0,"2E2J3E2K2G2F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-11","Filed with authorized/valid electronic signature",, "20110111185103P030012377585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAYNES, STUDNICKA, KAHAN, ONEILL & POULAKIDAS, LLC 401(K) PROFIT SHARING PLAN & TRUST","002","2007-01-01","HAYNES, STUDNICKA, KAHAN, ONEILL & POULAKIDAS",,,"200 WEST ADAMS ST., STE. 500",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"364459180","3123326644","541110","HAYNES, STUDNICKA, KAHAN, ONEILL & POULAKIDAS",,"200 WEST ADAMS ST., STE. 500",,"CHICAGO","IL","60606",,,,,,,"364459180","3123326644",,,,"2011-01-11T10:15:26-0600","JAMES STUDNICKA","2011-01-11T10:15:26-0600","JAMES STUDNICKA",,,25,13,1,9,23,1,24,22,,,"2A2E2G2J2K",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-01-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110111185206P030003569335001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"JOHN BATES ASSOCIATES 401K PLAN","001","1998-01-01","JOHN BATES ASSOCIATES",,,"22952 MILL CREEK ROAD",,"LAGUNA HILLS","CA","92653",,,,,,,,,,,,,,,,,,"953872876","9494559301","541310","JOHN BATES ASSOCIATES",,"22952 MILL CREEK ROAD",,"LAGUNA HILLS","CA","92653",,,,,,,"953872876","9494559301",,,,"2011-01-11T18:51:58-0600","JANET SCHMIDT",,,,,8,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-11","Filed with authorized/valid electronic signature",, "20110117105200P040072052000001","2010-01-01","2010-07-21","2",,"0","0","1","1","0","0","0","0","0",,"SHIPPS WHEELSPORT, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1999-01-01","SHIPPS WHEELSPORT, INC.",,,"7220 DIXIE HIGHWAY",,"FAIRFIELD","OH","45014",,,,,,,,,,,,,,,,,,"310984070","5138603232","441221","SHIPPS WHEELSPORT, INC.",,"7220 DIXIE HIGHWAY",,"FAIRFIELD","OH","45014",,,,,,,"310984070","5138603232",,,,"2011-01-17T10:51:54-0600","JEFF ZANG","2011-01-17T10:51:54-0600","JEFF ZANG",,,9,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110120143942P040002665410001","2008-09-01","2009-08-31","2",,"0","1","0","0","0","0","0","0","0",,"NEW YORK HEALTH CARE WELFARE BENEFIT PLAN","501","2002-09-01","NEW YORK HEALTH CARE, INC.",,,"20 EAST SUNRISE HIGHWAY",,"VALLEY STREAM","NY","11581",,,,,,,,,,,,,,,,,,"112636089","7183756700","541990","NEW YORK HEALTH CARE, INC.",,"20 EAST SUNRISE HIGHWAY",,"VALLEY STREAM","NY","11581",,,,,,,"112636089","7183756700",,,,"2011-01-20T14:35:20-0600","GERALD GARTNER",,,,,1266,1256,0,0,1256,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",, "20110120085202P040017177281001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"GROSFILLEX GROUP LIFE, STD, LTD","502","1989-07-01","GROSFILLEX INC","GROSFILLEX INC","SHIRLEY M STALLER","230 OLD WEST PENN AVENUE",,"ROBESONIA","PA","19551",,,,,,,"230 OLD WEST PENN AVENUE",,"ROBESONIA","PA","19551",,,,,,,"231714549","6106933504","337000","GROSFILLEX INC","SHIRLEY M STALLER","230 OLD WEST PENN AVENUE",,"ROBESONIA","PA","19551",,,,,,,"231714549","6106933504",,,,"2011-01-20T08:51:45-0600","SHIRLEY STALLER",,,,,145,155,0,0,155,0,155,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",, "20110120131004P030017339905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KOBRA INTERNATIONAL, LTD. 401K PROFIT SHARING PLAN","002","1995-01-01","KOBRA INTERNATIONAL, LTD.",,,"525 7TH AVE",,"NEW YORK","NY","100184901",,,,,,,,,,,,,,,,,,"133108059","2126557709","315990","KOBRA INTERNATIONAL, LTD.",,"525 7TH AVE",,"NEW YORK","NY","100184901",,,,,,,"133108059","2126557709",,,,"2011-01-20T13:05:38-0600","ANTHONY LODOLCE",,,,,93,65,0,21,86,0,86,51,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",, "20110118141145P030002609330001","2010-01-01","2010-06-07","2",,"0","0","1","1","0","1","0","0","0",,"RONALD S. WRIGHT, D.D.S., P.C. DEFINED BENEFIT PENSION PLAN & TRUST","002","2004-01-01","RONALD S. WRIGHT, D.D.S., P.C.",,,"3011 JACKSON ROAD",,"SPRING HILL","TN","37174",,,,,,,,,,,,,,,,,,"621120244","8654827876","621210","RONALD S. WRIGHT, D.D.S., P.C.",,"3011 JACKSON ROAD",,"SPRING HILL","TN","37174",,,,,,,"621120244","8654827876",,,,"2011-01-18T14:11:37-0600","RONALD S. WRIGHT, D.D.S.",,,,,6,0,0,0,0,0,0,,0,,"1B1I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-18","Filed with authorized/valid electronic signature",, "20110120065022P030078812080001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"BAY STATE COOLING, INC. PROFIT SHARING PLAN","001","1997-12-03","BAY STATE COOLING, INC.",,,"992 BEDFORD STREET",,"BRIDGEWATER","MA","02324",,,,,,,,,,,,,,,,,,"043214565","5086979798","238220","BAY STATE COOLING, INC.",,"992 BEDFORD STREET",,"BRIDGEWATER","MA","02324",,,,,,,"043214565","5086979798",,,,"2011-01-19T15:03:47-0600","JAMES KJELGAARD","2011-01-19T15:03:47-0600","JAMES KJELGAARD",,,8,0,0,0,0,0,0,0,0,,"2A2E2H2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110121102404P030081753024001","2010-01-01","2010-06-30","2",,"0","0","0","1","0","0","0","0","0",,"HUBBARDTON FORGE, LLC FLEXIBLE BENEFITS PLAN","501","1991-06-01","HUBBARDTON FORGE, LLC",,,"P.O. BOX 827",,"CASTLETON","VT","05735",,,,,,,"154 ROUTE 30 SOUTH",,"CASTLETON","VT","05735",,,,,,,"203535651","8024682711","335100","HUBBARDTON FORGE, LLC",,"P.O. BOX 827",,"CASTLETON","VT","05735",,,,,,,"203535651","8024682711",,,,"2011-01-21T09:48:56-0600","MARGARET DUGAN",,,,,198,180,2,0,182,,,,,,,"4A4B4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",, "20110118092328P040000502675001","2010-01-01","2010-06-14","2",,"0","0","1","1","0","0","0","0","0",,"PBG HOURLY PENSION PLAN","021","1988-08-31","PEPSICO, INC.",,"ERIK A. SOSSA, 2/2","700 ANDERSON HILL ROAD",,"PURCHASE","NY","10577",,,,,,,,,,,,,,,,,,"131584302","9142532000","312110","PEPSICO, INC.","ERIK A. SOSSA, 2/2","700 ANDERSON HILL ROAD",,"PURCHASE","NY","10577",,,,,,,"131584302","9142532000",,,,"2011-01-18T07:57:46-0600","ERIK SOSSA",,,,,65707,0,0,,0,0,0,0,361,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-01-18","Filed with authorized/valid electronic signature",, "20110120094657P030017251153001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","1","1","0","0",,"STRUCSURE HOME WARRENTY LLC PROFIT SHARING PLAN & TRUST","001","2000-01-01","STRUCSURE HOME WARRANTY LLC.",,,"6825 EAST TENNESSE AVENUE","SUITE 410","DENVER","CO","80224",,,,,,,,,,,,,,,,,,"841390859","3038068688","524290","STRUCSURE HOME WARRANTY LLC.",,"6825 EAST TENNESSE AVENUE","SUITE 410","DENVER","CO","80224",,,,,,,"841390859","3038068688",,,,"2011-01-20T09:46:45-0600","CRAIG STEPHENSON",,,,,20,0,0,0,0,0,0,0,0,,"2E2F2G2J2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",, "20110117131501P030015648865001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MIDWESTHR, LLC 401K RETIREMENT PLAN","001","2005-09-01","BUTTERFIELD MEMORIAL FOUNDATION",,"MIDWESTHR LLC","4355 WEAVER PARKWAY SUITE 140",,"WARRENVILLE","IL","60555",,,,,,,,,,,,,,,,,,"900607049","4056080517","541990","MIDWESTHR, LLC","4355 WEAVER PARKWAY","SUITE 140",,"WARRENVILLE","IL","60555",,,,,,,"880457743","6308363000","BUTTERFIELD MEMORIAL FOUNDATION","731283806","001","2011-01-17T10:15:27-0600","JEFFREY BARTELT",,,,,13,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-01-17","Filed with authorized/valid electronic signature",, "20110121145117P040017848705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARTWICK COLLEGE HEALTHCARE PLAN","523","2007-07-01","HARTWICK COLLEGE",,"SUZANNE JANITZ","ONE HARTWICK DRIVE",,"ONEONTA","NY","13820",,,,,,,,,,,,,,,,,,"150533561","6074314319","611000","HARTWICK COLLEGE","SUZANNE JANITZ","ONE HARTWICK DRIVE",,"ONEONTA","NY","13820",,,,,,,"150533561","6074314319",,,,"2011-01-21T14:49:55-0600","SUZANNE JANITZ",,,,,225,219,6,0,225,,225,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",, "20110121121507P030017886705001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MOANA COMMUNITY ASSOCIATION MONEY PURCHASE PLAN","001","2005-01-01","MOANA COMMUNITY ASSOCIATION",,,"PO BOX 7669",,"NEWPORT BEACH","CA","926587669",,,,,,,,,,,,,,,,,,"330540818","9494768100","531390","MOANA COMMUNITY ASSOCIATION",,"PO BOX 7669",,"NEWPORT BEACH","CA","926587669",,,,,,,"330540818","9494768100",,,,"2011-01-21T12:07:18-0600","DAVID BROUNSTEIN",,,,,1,1,0,0,1,0,1,1,,,"2R2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",, "20110121150403P040002755330001","2008-05-01","2009-04-30","2",,"0","1","0","0","0","0","0","1","0",,"KINDERBERRY HILL CHILD DEVELOPMENT CENTER","502","2000-02-01","NEW HORIZON ENTERPRISES LTD",,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227","624410","NEW HORIZON ENTERPRISES LTD",,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227",,,,"2011-01-21T15:03:55-0600","KELLY BLACK",,,,,128,139,1,0,140,0,140,0,0,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",, "20110126143745P040000639379001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"FIRST NATIONAL BANK AT ST. JAMES EMPLOYEE STOCK OWNERSHIP PLAN","002","1982-01-01","FIRST NATIONAL BANK AT ST. JAMES",,,"PO BOX 270",,"ST. JAMES","MN","560810270",,,,,,,,,,,,,,,,,,"410256860","5073753376","522110","FIRST NATIONAL BANK AT ST. JAMES",,"PO BOX 270",,"ST. JAMES","MN","560810270",,,,,,,"410256860","5073753376",,,,"2011-01-26T14:37:11-0600","MYRON J. JOHNSON",,,,,14,0,0,0,0,0,0,0,0,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",, "20110126175306P030020677777001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JOHANSON DIELECTRICS, INC. EMPLOYEES PROFIT SHARING PLAN","001","1978-01-01","JOHANSON DIELECTRICS, INC.",,,"15191 BLEDSOE STREET",,"SYLMAR","CA","91342",,,,,,,,,,,,,,,,,,"952416273","8053891166","335900","JOHANSON DIELECTRICS, INC.",,"15191 BLEDSOE STREET",,"SYLMAR","CA","91342",,,,,,,"952416273","8053891166",,,,"2011-01-26T17:52:55-0600","SUSAN FARINACCI",,,,,929,531,0,258,789,1,790,608,51,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",, "20110121143434P040082850064001","2008-08-01","2009-07-31","2",,"1","0","0","0","0","0","0","1","0",,"QUANTUM REAL ESTATE MANAGEMENT LLC LIFE PLAN","501","2008-08-01","QUANTUM REAL ESTATE MANAGEMENT LLC",,,"5101 RIVER ROAD SUITE 101",,"BETHESDA","MD","208161560",,,,,,,,,,,,,,,,,,"134206996","3019418040","531310","QUANTUM REAL ESTATE MANAGEMENT LLC",,"5101 RIVER ROAD SUITE 101",,"BETHESDA","MD","208161560",,,,,,,"134206996","3019418040",,,,"2011-01-21T14:30:28-0600","SANDRA BUDOCK","2011-01-21T14:24:10-0600","MARGARET BESSETTE",,,108,117,0,0,117,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110124143021P030089868976001","2010-01-01","2010-09-20","2",,"0","0","1","1","0","0","0","0","0",,"SOUTH Y FIREPLACE INC. 401(K) PLAN","001","2008-03-18","SOUTH Y FIREPLACE INC.",,,"568 SOUTH MOHLER ROAD",,"RIPON","CA","95366",,,,,,,,,,,,,,,,,,"262263918","2095995774","238990","SOUTH Y FIREPLACE INC.",,"568 SOUTH MOHLER ROAD",,"RIPON","CA","95366",,,,,,,"262263918","2095995774",,,,"2011-01-24T14:30:12-0600","CURT DOWHOWER",,,,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-24","Filed with authorized/valid electronic signature",, "20110126073745P030020437009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAT CONSTRUCTION INC 401(K) PLAN AND TRUST","001","2004-01-01","JAT CONSTRUCTION INC",,,"17105 QUARTER HORSE WAY",,"OLNEY","MD","208322515",,,,,,,"17105 QUARTER HORSE WAY",,"OLNEY","MD","208322515",,,,,,,"311206450","3019241128","236200","JAT CONSTRUCTION INC",,"17105 QUARTER HORSE WAY",,"OLNEY","MD","208322515",,,,,,,"311206450","3019241128",,,,"2011-01-26T07:25:56-0600","MANFRED HAMER",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",, "20110123085056P040018802609001","2010-01-01","2010-12-31","2",,"0",,"1","0","0","0","0","0","0",,"KAYTEE PRODUCTS INC. GROUP HEALTH PLAN","502","1981-08-01","KAYTEE PRODUCTS, INC.","KAYTEE PRODUCTS, INC.",,"521 CLAY STREET","P O BOX 230","CHILTON","WI","53014",,,,,,,"521 CLAY STREET","P O BOX 230","CHILTON","WI","53014",,,,,,,"390399490","9208492321","311110","KAYTEE PRODUCTS, INC.",,"521 CLAY STREET","P O BOX 230","CHILTON","WI","53014",,,,,,,"390399490","9208492321",,,,"2011-01-23T08:49:48-0600","JUDY WOELFEL","2011-01-23T08:49:08-0600","JUDY WOELFEL",,,0,0,0,0,0,0,0,0,0,0,,"4A4D4F",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-01-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110119085332P030002677314001","2010-01-01","2010-04-01","2",,"0","0","1","1","0","1","0","0","0",,"EATON VANCE MANAGEMENT SAVINGS PLAN","002","1969-06-01","EATON VANCE MANAGEMENT",,,"TWO INTERNATIONAL PLACE, 8TH FLOOR",,"BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"043101341","6176728581","523120","EATON VANCE MANAGEMENT",,"TWO INTERNATIONAL PLACE, 8TH FLOOR",,"BOSTON","MA","02110",,,,,,,"043101341","6176728581",,,,"2011-01-19T08:53:11-0600","DAN ETHIER","2011-01-19T08:53:11-0600","DAN ETHIER",,,1039,0,0,0,0,0,0,0,0,,"2E2F2H2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110126142712P040095525392001","2007-05-01","2008-04-30","2",,"0","0","0","0","0","1","0","1","0",,"APEX RACK AND COATING CO., INC 401(K) RETIREMENT PLAN","001","1983-04-01","APEX RACK AND COATING CO., INC",,,"3434 BUSCH DR SW",,"GRANDVILLE","MI","494181098",,,,,,,,,,,,,,,,,,"381657326","3135306811","332900","APEX RACK AND COATING CO., INC",,"3434 BUSCH DR SW",,"GRANDVILLE","MI","494181098",,,,,,,"381657326","3135306811",,,,"2011-01-26T14:25:32-0600","DENNIS CARLON","2011-01-26T14:25:32-0600","DENNIS CARLON",,,23,19,0,3,22,0,22,20,0,,"2E2F2G2J3H",,"0","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110121143759P040017844417001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","1","0",,"NEW HORIZON ENTERPRISES INC","501","1988-05-01","NEW HORIZON ENTERPRISES LTD",,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227","624410","NEW HORIZON ENTERPRISES LTD",,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227",,,,"2011-01-21T14:37:50-0600","KELLY BLACK",,,,,147,145,4,0,149,0,149,0,0,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",, "20110124181849P040090846272001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"RETIREMENT PLAN FOR FLIGHT ATTENDANTS OF ALOHA AIRLINES, INC.","006","1973-03-02","ALOHA AIRLINES, INC.",,,"PO BOX 30028",,"HONOLULU","HI","968200028",,,,,,,,,,,,,,,,,,"990064888","8088364239","481000","ALOHA AIRLINES, INC. PENSION COMMITTEE",,"PO BOX 30028",,"HONOLULU","HI","96820",,,,,,,"990172599","8088364239",,,,"2011-01-24T18:14:12-0600","DANE FIELD",,,,,407,0,0,0,0,0,0,0,0,,"2C",,"0","0","1","0","1","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-01-24","Filed with authorized/valid electronic signature",, "20110125153125P040020024881001","2010-01-01","2010-06-22","2",,"0","1","1","1","0","0","0","0","0",,"THEERAWAT PATTAROPONG MD PROFIT SHARING PLAN","005","1985-01-01","THEERAWAT PATTAROPONG MD",,,"465 SAINT PETER DR",,"NEW MADRID","MO","63869",,,,,,,"465 SAINT PETER DR",,"NEW MADRID","MO","63869",,,,,,,"431017511","5737482546","621111","THEERAWAT PATTAROPONG MD",,"465 SAINT PETER DR",,"NEW MADRID","MO","63869",,,,,,,"431017511","5737482546",,,,"2011-01-25T15:30:57-0600","DOUG MCDOWELL",,,,,3,0,0,0,0,,0,0,0,0,"2C2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-25","Filed with authorized/valid electronic signature",, "20110125164112P040020056593001","2010-01-01","2010-12-10","2",,"0","0","1","1","0","0","0","0","0",,"FLORENCE NEUROLOGICAL CLINIC, PA 401(K) PROFIT- SHARING PLAN","001","1972-04-01","FLORENCE NEUROLOGICAL CLINIC, PA",,,"1929 MOUNTAIN LAUREL COURT STE B",,"FLORENCE","SC","29505",,,,,,,,,,,,,,,,,,"570541060","8436644104","621112","FLORENCE NEUROLOGICAL CLINIC, PA",,"1929 MOUNTAIN LAUREL COURT STE B",,"FLORENCE","SC","29505",,,,,,,"570541060","8436644104",,,,"2011-01-25T16:40:02-0600","ASHLEY D. KENT",,,,,19,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-25","Filed with authorized/valid electronic signature",, "20110119131845P040016732993001","2010-07-01","2010-07-07","2",,"0","0","1","1","0","0","0","0","0",,"J.C. HENRY BORGMAN, A PROFESSIONAL LAW CORPORATION PROFIT SHARING PLAN","003","1995-07-01","J.C. HENRY BORGMAN, A PROFESSIONAL LAW CORPORATION",,,"P.O. BOX 5197",,"WALNUT CREEK","CA","94596",,,,,,,"500 YGNACIO VALLEY ROAD, STE 490",,"WALNUT CREEK","CA","94596",,,,,,,"680065011","9259470580","541110","J.C. HENRY BORGMAN, A PROFESSIONAL LAW CORPORATION",,"P.O. BOX 5197",,"WALNUT CREEK","CA","94596",,,,,,,"680065011","9259470580",,,,"2011-01-19T13:18:40-0600","WARREN HUTSON",,,,,2,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",, "20110126142953P040003165506001","2005-01-01","2005-12-31","2",,"0","0","1","0","0","0","0","1","0",,"CARDINAL BANK LIFE AND AD&D PLAN","502","2001-01-01","CARDINAL FINANCIAL CORPORATION",,,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"541874630","7035843400","551111","CARDINAL FINANCIAL CORPORATION",,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,"541874630","7035843400",,,,"2011-01-26T14:25:45-0600","CHERYL STEINBACHER",,,,,366,0,0,0,0,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",, "20110119102849P030016690657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE FIREMARK GROUP, INC. 401(K) SAVINGS PLAN","001","1990-03-01","THE FIREMARK GROUP, INC.",,,"200 W. DE VARGAS ST. - SUITE 9",,"SANTA FE","NM","87501",,,,,,,,,,,,,,,,,,"223044048","8669898384","524210","THE FIREMARK GROUP, INC.",,"200 W. DE VARGAS ST. - SUITE 9",,"SANTA FE","NM","87501",,,,,,,"223044048","8669898384",,,,"2011-01-19T10:28:42-0600","JOANNE MORRISSEY",,,,,7,0,0,7,7,0,7,7,0,,"2E2G2J2K2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",, "20110121144458P030017943409001","2003-05-01","2004-04-30","2",,"1","1","0","0","0","0","0","1","0",,"KINDERBERRY HILL CHILD DEVELOPMENT CENTER","502","2000-02-01","NEW HORIZON ENTERPRISES LTD",,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227","624410","NEW HORIZON ENTERPRISES LTD",,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227",,,,"2011-01-21T14:44:49-0600","KELLY BLACK",,,,,110,116,0,0,116,0,116,0,0,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",, "20110126140624P040005947079001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CARDINAL FINANCIAL CORPORATION LONG TERM DISABILITY PLAN","503","2001-01-01","CARDINAL FINANCIAL CORPORATION","8270 GREENSBORO DRIVE SUITE 500",,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"541874630","7035843400","551111","CARDINAL FINANCIAL CORPORATION",,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,"541874630","7035843400",,,,"2011-01-26T14:02:21-0600","CHERYL STEINBACHER",,,,,115,104,0,0,104,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",, "20110112130556P040012901121001","1989-07-01","1989-12-31","2",,"1","0","0","1","0","0","0","1","0",,"ASMO MANUFACTURING, INC. ASSOCIATE BENEFIT PLAN","501","1989-07-01","ASMO MANUFACTURING, INC.",,,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,,,,,,,,,,,,"383442601","2699628257","336300","ASMO MANUFACTURING, INC.",,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,"383442601","2699628257",,,,"2011-01-12T13:05:50-0600","CARRIE A. NICHOLSON",,,,,0,0,0,0,0,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",, "20110112131408P040012904801001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ASMO MANUFACTURING, INC. ASSOCIATE BENEFIT PLAN","501","1989-07-01","ASMO MANUFACTURING, INC.",,,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,,,,,,,,,,,,"383442601","2699628257","336300","ASMO MANUFACTURING, INC.",,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,"383442601","2699628257",,,,"2011-01-12T13:14:02-0600","CARRIE A. NICHOLSON",,,,,297,292,2,0,294,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",, "20110113125317P030013372337001","2010-01-01","2010-08-31","2",,"0","0","1","1","0","0","0","0","0",,"OASYS DESIGN SYSTEMS INC. 401K PLAN","001","2005-07-01","OASYS DESIGN SYSTEMS INC.",,,"3250 OLCOTT STREET","SUITE 120","SANTA CLARA","CA","95054",,,,,,,,,,,,,,,,,,"562470572","5105798963","511210","OASYS DESIGN SYSTEMS INC.",,"3250 OLCOTT STREET","SUITE 120","SANTA CLARA","CA","95054",,,,,,,"562470572","5105798963",,,,"2011-01-13T12:53:13-0600","JOHNSON LIMQUECO",,,,,14,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",, "20110113115744P030061519680001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"PARSONS CONSTRUCTION INC CAFETERIA PLAN","501","2002-01-01","PARSONS CONSTRUCTION INC","PARSONS CONSTRUCTION INC",,"7703 E. TRENT AVE",,"SPOKANE","WA","99212",,,,,,,"7703 E. TRENT AVE",,"SPOKANE","WA","99212",,,,,,,"911646270","5099289008","236110","PARSONS CONSTRUCTION INC",,"7703 E. TRENT AVE",,"SPOKANE","WA","99212",,,,,,,"911646270","5099289008",,,,"2011-01-13T11:55:39-0600","DAVID PARSONS",,,,,3,3,0,0,3,0,3,0,0,,,"4A","0",,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",, "20110113155145P040013492593001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NATIONAL UNIVERSITY OF HEALTH SCIENCES DEFINED CONTRIBUTION RETIREMENT AND TAX DEFERRED ANNUITY PLAN","003","1991-01-01","NATIONAL UNIVERSITY OF HEALTH SCIENCES",,,"200 E ROOSEVELT RD",,"LOMBARD","IL","601484539",,,,,,,,,,,,,,,,,,"361521940","6308896556","611000","NATIONAL UNIVERSITY OF HEALTH SCIENCES",,"200 E ROOSEVELT RD",,"LOMBARD","IL","601484539",,,,,,,"361521940","6308896556",,,,"2011-01-13T15:51:18-0600","RON MENSCHING",,,,,,,,,0,,0,,,,"2L2G2F2M",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",, "20110112141015P030012816129001","2010-01-01","2010-08-31","1",,"0","0","0","1","1","0","0","0","0",,"IPM HEALTH & WELFARE TRUST OF CALIFORNIA","501","1970-07-01","IPM HEALTH & WELFARE TRUST OF CALIFORNIA",,,"1168 E LA CADENA DRIVE",,"RIVERSIDE","CA","92507",,,,,,,"1168 E LA CADENA DRIVE",,"RIVERSIDE","CA","92507",,,,,,,"956289239","9516841791","525100","IPM HEALTH & WELFARE TRUST OF CALIFORNIA",,"1168 E LA CADENA DRIVE",,"RIVERSIDE","CA","92507",,,,,,,"956289239","9516841791",,,,"2011-01-11T11:56:10-0600","CYNTHIA SMITH","2011-01-12T13:31:45-0600","JAMES REED",,,705,688,,,688,,688,,,,,"4A4D4E4F4H4L",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110113121617P030013357873001","2010-01-01","2010-03-31","2",,,,"1","1",,"1",,,,,"YONKERS CONTRACTING CO., INC.INCENTIVE SAVINGS TRUST","002","1987-01-01","YONKERS CONTRACTING CO., INC.",,,"969 MIDLAND AVENUE",,"YONKERS","NY","10704",,,,,,,,,,,,,,,,,,"132981331","9149651500","238100","YONKERS CONTRACTING CO., INC.",,"969 MIDLAND AVENUE",,"YONKERS","NY","10704",,,,,,,"132981331","9149651500",,,,"2011-01-13T12:16:09-0600","MICHAEL KELLER",,,,,129,0,0,0,0,0,0,0,0,,"2G2J3H",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",, "20110112204123P040060336768001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORBERT CRONIN & COMPANY PROFIT SHARING PLAN","002","1994-01-01","NORBERT CRONIN & COMPANY",,,"582 MARKET STREET, SUITE 1104",,"SAN FRANCISCO","CA","941045312",,,,,,,,,,,,,,,,,,"941377397","4159812222","524210","NORBERT CRONIN & COMPANY",,"582 MARKET STREET, SUITE 1104",,"SAN FRANCISCO","CA","941045312",,,,,,,"941377397","4159812222",,,,"2011-01-12T20:41:17-0600","JAMES CRONIN","2011-01-12T20:41:17-0600","JAMES CRONIN",,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110112141454P040012933761001","2010-01-01","2010-12-23","2",,"0","0","1","1","0","0","0","0","0",,"WD COMMUNICATIONS, INC. DEFINED BENEFIT PLAN AND TRUST","002","2000-01-01","WD COMMUNICATIONS, INC.",,,"6800 W. COMMERCIAL BLVD., SUITE 5",,"LAUDERHILL","FL","333192149",,,,,,,,,,,,,,,,,,"591953252","9547484353","541400","WD COMMUNICATIONS, INC.",,"6800 W. COMMERCIAL BLVD., SUITE 5",,"LAUDERHILL","FL","333192149",,,,,,,"591953252","9547484353",,,,"2011-01-12T14:14:52-0600","BEVERLY DURLING",,,,,38,0,0,0,0,0,0,,0,,"1A1G1I3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",, "20110209153751P040007518737001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PEGASUS EMERGENCY GROUP NEW JERSEY 401(K) PLAN AND TRUST","002","1997-01-01","PEGASUS EMERGENCY GROUP PA",,,"22 BADGER DR",,"SKILLMAN","NJ","085581667",,,,,,,"22 BADGER DR",,"SKILLMAN","NJ","085581667",,,,,,,"223436121","9082375420","812990","PEGASUS EMERGENCY GROUP PA",,"22 BADGER DR",,"SKILLMAN","NJ","085581667",,,,,,,"223436121","9082375420",,,,"2011-02-09T15:25:38-0600","EDWARD SPECTOR",,,,,16,14,0,2,16,0,16,16,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",, "20110209153908P040002363511001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PEOPLES BANK OF DEER LODGE","501","1990-07-15","PEOPLES BANK OF DEER",,,"430 MAIN ST",,"DEER LODGE","MT","59722",,,,,,,"430 MAIN ST",,"DEER LODGE","MT","59722",,,,,,,"810445110","4068462400","522110","PEOPLES BANK OF DEER",,"430 MAIN ST",,"DEER LODGE","MT","59722",,,,,,,"810445110","4068462400",,,,"2011-02-09T15:37:25-0600","LAURA MCGHEE",,,,,6,5,0,0,5,0,5,0,,,,"4A4B4D4E",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",, "20110209192101P030007258097001","2007-03-01","2008-02-29","2",,,,,,,,,"1",,,"SPACE CRAFTERS, INC.401(K) PLAN","001","1995-03-01","SPACE CRAFTERS, INC.",,,"31 APPLES CHURCH ROAD",,"THURMONT","MD","21788",,,,,,,"31 APPLES CHURCH ROAD",,"THURMONT","MD","21788",,,,,,,"521916261","3016631134","236110","SPACE CRAFTERS, INC.",,"31 APPLES CHURCH ROAD",,"THURMONT","MD","21788",,,,,,,"521916261","3016631134",,,,"2011-02-07T11:09:07-0600","WILLIAM EYLER","2011-02-07T11:09:07-0600","WILLIAM EYLER",,,10,7,0,5,12,0,12,12,0,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110212101055P030008659313002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CONTROL LINE EQUIPMENT, INC. PROFIT SHARING PLAN","003","1984-01-01","CONTROL LINE EQUIPMENT, INC.",,,"14750 INDUSTRIAL PARKWAY",,"CLEVELAND","OH","44135",,,,,,,,,,,,,,,,,,"251368949","2164337766","423990","CONTROL LINE EQUIPMENT, INC.",,"14750 INDUSTRIAL PARKWAY",,"CLEVELAND","OH","44135",,,,,,,"251368949","2164337766",,,,"2011-02-09T05:48:58-0600","MICHAEL ROTELLA",,,,,10,10,,,10,,10,10,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-12","Filed with authorized/valid electronic signature",, "20110209115703P040001110178001","2010-01-01","2010-08-25","2",,"0","0","1","1","0","0","0","0","0",,"BETSY ROSS REHABILITATION CENTER, INC. 401(K) PROFIT SHARING PLAN","001","1998-06-01","BETSY ROSS REHABILITATION CTR., INC",,,"1 ELSIE STREET",,"ROME","NY","13440",,,,,,,"1 ELSIE STREET",,"ROME","NY","13440",,,,,,,"161549991","3153392200","621498","BETSY ROSS REHABILITATION CTR., INC",,"1 ELSIE STREET",,"ROME","NY","13440",,,,,,,"161549991","3153392200",,,,"2011-02-09T11:39:25-0600","DONALD ALTMAN",,,,,147,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",, "20110127103434P030000205505001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"TIB FINANCIAL CORP. EMPLOYEE BENEFITS PLAN","501","1974-07-01","TIB FINANCIAL CORP.",,,"9465 TAMIAMI TRAIL N",,"NAPLES","FL","34108",,,,,,,,,,,,,,,,,,"650655973","2394495856","522110","TIB FINANCIAL CORP.",,"9465 TAMIAMI TRAIL N",,"NAPLES","FL","34108",,,,,,,"650655973","2394495856",,,,"2011-01-27T10:33:33-0600","BARBARA CUEVAS",,,,,323,324,0,0,324,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",, "20110201211744P030003046209001","2010-01-01","2010-07-31","2",,"0","0","1","1","0","0","0","0","0",,"CONNECTION STRATEGIES ENTERPRISES, INC. 401(K) PSP","001","1988-01-01","CONNECTION STRATEGIES",,,"N28 W23050 ROUNDY DRIVE",,"PEWAUKEE","WI","53072",,,,,,,,,,,,,,,,,,"391342589","2626506500","541511","CONNECTION STRATEGIES",,"N28 W23050 ROUNDY DRIVE",,"PEWAUKEE","WI","53072",,,,,,,"391342589","2626506500",,,,"2011-02-01T21:14:37-0600","TODD LUTZ",,,,,39,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",, "20110211094937P040008527649001","2008-10-01","2009-09-30","2",,"0","1","0","0","0","0","0","0","0",,"R. E. DYE MANUFACTURING CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","001","1965-07-20","R. E. DYE MANUFACTURING CORPORATION",,,"207 WEST WILLIAMS ST.",,"BRECKENRIDGE","TX","764244441",,,,,,,,,,,,,,,,,,"750970865","2545592268","336410","R. E. DYE MANUFACTURING CORPORATION",,"207 WEST WILLIAMS ST.",,"BRECKENRIDGE","TX","764244441",,,,,,,"750970865","2545592268",,,,"2011-02-11T09:49:29-0600","JIMMY D. DYE",,,,,72,56,0,14,70,0,70,55,3,,"2E2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",, "20110214110816P030001436882001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","1","0",,"PLATTNER ORTHOPEDIC CO INC PROFIT SHARING PLAN","001","1973-12-01","PLATTNER ORTHOPEDIC CO INC",,,"311 W ROMEO B GARRETT AVE",,"PEORIA","IL","616052504",,,,,,,,,,,,,,,,,,"370727577","3096821382","339110","PLATTNER ORTHOPEDIC CO INC",,"311 W ROMEO B GARRETT AVE",,"PEORIA","IL","616052504",,,,,,,"370727577","3096821382",,,,"2011-02-14T11:08:07-0600","CRAIG PLATTNER",,,,,24,22,0,0,22,0,22,22,1,,"2A2E2G2J",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",, "20110209221433P040034949712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICHAEL G. DAB, D.D.S. PROFIT SHARING PLAN","001","1987-01-01","MICHAEL G. DAB, D.D.S.",,,"750 LAS GALLINAS AVENUE, SUITE 111",,"SAN RAFAEL","CA","949033431",,,,,,,,,,,,,,,,,,"680000120","4154725211","621210","ADMINISTRATIVE COMMITTEE",,"750 LAS GALLINAS AVENUE, SUITE 111",,"SAN RAFAEL","CA","949033431",,,,,,,"680214629","4154725211",,,,"2011-02-09T22:07:17-0600","MICHAEL DAB",,,,,4,5,0,0,5,0,5,5,0,,"2A2E2J3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",, "20110127155058P040000054946001","2009-08-01","2010-07-31","2",,,,,,,,,,,,"LTD INSURANCE PLAN FOR THE EMPLOYEES OF BOSCOV'S, INC.","503","1965-01-01","BOSCOVS, INC.",,,"4500 PERKIOMEN AVENUE",,"READING","PA","19606",,,,,,,,,,,,,,,,,,"231571589","6107792000","452110","BOSCOVS, INC.",,"4500 PERKIOMEN AVENUE",,"READING","PA","19606",,,,,,,"231571589","6107792000",,"263753691",,"2011-01-27T03:50:31-0600","TONI MILLER",,,,,177,173,,,173,,173,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",, "20110204143008P030004514081002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HOLMES MEDICAL SERVICES PLC EMPLOYEES 401(K) PLAN","001","2009-01-01","DEREK HOLMES, D.O.","HOLMES MEDICAL SERVICES, PLC",,"1908 N. 14TH ST",,"PONCA CITY","OK","74601",,,,,,,,,,,,,,,,,,"271560425","5807671777","621111","DEREK HOLMES, D.O.",,"1908 N. 14TH ST",,"PONCA CITY","OK","74601",,,,,,,"271560425","5807671777",,,,"2011-02-04T14:20:12-0600","DEREK HOLMES","2011-02-04T14:20:24-0600","DEREK HOLMES",,,4,3,1,0,4,0,4,4,,,"2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110212140233P040009173377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THORNTON & SONS JEWELERS 401(K) SAVINGS PLAN","001","2005-01-01","THORNTON & SONS JEWELERS, INC.",,,"1100 PITT SCHOOL ROAD",,"DIXON","CA","95620",,,,,,,,,,,,,,,,,,"942861909","7076782996","448310","THORNTON & SONS JEWELERS, INC.",,"1100 PITT SCHOOL ROAD",,"DIXON","CA","95620",,,,,,,"942861909","7076782996",,,,"2011-02-12T14:01:20-0600","GERALD W. THORNTON",,,,,18,10,0,5,15,0,15,15,0,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-12","Filed with authorized/valid electronic signature",, "20110127104058P030000887920001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"LOWELL WHITEMAN PRIMARY SCHOOL DEFINED CONTRIBUTION PLAN","002","2005-07-01","LOWELL WHITEMAN PRIMARY SCHOOL INC.",,,"PO BOX 770723",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"818 OAK STREET",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"841240640","9708798081","611000","LOWELL WHITEMAN PRIMARY SCHOOL INC.",,"PO BOX 770723",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"841240640","9708798081",,,,"2011-01-26T17:08:42-0600","NANCY SPILLANE",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",, "20110127125340P040001141232001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"NANCY BALLES A PROFESSIONAL CORP 401(K) PROFIT SHARING PLAN & TRT","002","2007-01-01","NANCY BALLES A PROFESSIONAL CORP",,,"710 S. BROADWAY","SUITE 204","WALNUT CREEK","CA","94596",,,,,,,,,,,,,,,,,,"680261705","9253242806","541110","NANCY BALLES A PROFESSIONAL CORP",,"710 S. BROADWAY","SUITE 204","WALNUT CREEK","CA","94596",,,,,,,"680261705","9253242806",,,,"2011-01-27T12:53:31-0600","MK HARTLEY",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",, "20110201122530P040000459042001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","0","0","0","0",,"ROBERT M. COPLEN P.A. 401K PLAN","001","2004-01-01","ROBERT M. COPLEN P.A.",,"ROBERT M. COPLEN","10225 ULMERTON RD","SUITE 5A","LARGO","FL","337713538",,,,,,,,,,,,,,,,,,"260005733","7275884550","541110","ROBERT M. COPLEN P.A.","ROBERT M. COPLEN","10225 ULMERTON RD","SUITE 5A","LARGO","FL","337713538",,,,,,,"260005733","7275884550",,,,"2011-02-01T12:24:40-0600","ROBERT M. COPLEN",,,,,4,7,0,0,7,0,7,3,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",, "20110127104341P040000202417001","2005-07-01","2006-06-30","2",,"0","1","0","0","0","0","0","0","0",,"TAX DEFERRED ANNUITY PLAN FOR EMPLOYEES OF LOWELL WHITEMAN PRIMARY SCHOOL","001","1994-07-15","LOWELL WHITEMAN PRIMARY SCHOOL INC.",,,"PO BOX 770723",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"818 OAK STREET",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"841240640","9708798081","611000","LOWELL WHITEMAN PRIMARY SCHOOL INC.",,"PO BOX 770723",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"841240640","9708798081",,,,"2011-01-26T17:04:01-0600","NANCY SPILLANE",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",, "20110201103418P030013747728001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"NORSON SERVICES, LLC 401K PLAN","002","2009-09-01","NORSON SERVICES, LLC",,,"8030 LEGHORN STREET","SUITE C1","HOUSTON","TX","77040",,,,,,,,,,,,,,,,,,"020557312","7136903152","541330","NORSON SERVICES, LLC",,"8030 LEGHORN STREET","SUITE C1","HOUSTON","TX","77040",,,,,,,"020557312","7136903152",,,,"2011-02-01T10:33:44-0600","STEWART EMMERSON",,,,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",, "20110213140451P030002986359001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"E.A. MANGIERI, M.D., P.C. PROFIT SHARING PLAN","001","1987-01-01","E.A. MANGIERI, M.D., P.C. ANESTHESIOLOGY & PAIN MANAGEMENT","E.A. MANGIERI, M.D., P.C. ANESTHESIOLOGY & PAIN MANAGEMENT","EUGENE A. MANGIERI, MD","2510 HOSPITAL DRIVE",,"NORTHPORT","AL","35476",,,,,,,"2510 HOSPITAL DRIVE",,"NORTHPORT","AL","35476",,,,,,,"630926409","2053399000","621111","E.A. MANGIERI, M.D., P.C. ANESTHESIOLOGY & PAIN MANAGEMENT","EUGENE A. MANGIERI, MD","2510 HOSPITAL DRIVE",,"NORTHPORT","AL","35476",,,,,,,"630926409","2053399000",,,,"2011-02-13T13:49:46-0600","EUGENE MANGIERI",,,,,5,5,,,5,,5,5,0,,"2E2J",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-02-13","Filed with authorized/valid electronic signature",, "20110214125845P030001444450001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOX 1, INC. 401(K) PLAN","001","2008-01-01","BOX 1, INC.",,,"3352 BLAKE DRIVE","P.O. BOX 882","DALTON","GA","30722",,,,,,,,,,,,,,,,,,"582581422","7062172691","322100","BOX 1, INC.",,"3352 BLAKE DRIVE","P.O. BOX 882","DALTON","GA","30722",,,,,,,"582581422","7062172691",,,,"2011-02-14T10:17:06-0600","P. ANTONY ELROD","2011-02-14T10:17:06-0600","P. ANTONY ELROD",,,29,26,,2,28,,28,10,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110209102349P030007042049001","2006-07-01","2007-06-30","2",,"0","0","0","0","0","0","0","1","0",,"REHAB PRO HEALTH PLAN","501","2001-01-01","REHAB PRO THERAPY",,,"17521 US HIGHWAY 69S",,"TYLER","TX","75703",,,,,,,,,,,,,,,,,,"752962410","9038393600","621340","SAME",,"17521 US HIGHWAY 69S",,"TYLER","TX","75703",,,,,,,"752962410","9038393600",,,,"2011-02-09T10:19:27-0600","TRACY GUNTER",,,,,111,128,0,0,128,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",, "20110203093100P040018467488001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"LAW OFFICES OF EDWARD J. BILINKAS, INC. 401(K) SAVINGS PLAN","001","2001-05-01","LAW OFFICE OF EDWARD J. BILINKAS",,,"415 RT 10 EAST",,"RANDOLPH","NJ","07869",,,,,,,,,,,,,,,,,,"223750099","9733611212","541110","LAW OFFICE OF EDWARD J. BILINKAS",,"415 RT 10 EAST",,"RANDOLPH","NJ","07869",,,,,,,"223750099","9733611212",,,,"2011-02-03T09:30:40-0600","DOLORES BILINKAS",,,,,4,3,0,1,4,0,4,4,0,,"2E2F2G2J2K3E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",, "20110201104608P030013769744001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ALLTEMATED, INC. EMPLOYEES' PROFIT SHARING PLAN","001","1995-01-01","ALLTEMATED, INC.",,,"3196 N KENNICOTT AVENUE",,"ARLINGTON HEIGHTS","IL","60004",,,,,,,,,,,,,,,,,,"363933245","8473945800","339900","ALLTEMATED, INC.",,"3196 N KENNICOTT AVENUE",,"ARLINGTON HEIGHTS","IL","60004",,,,,,,"363933245","8473945800",,,,"2011-02-01T10:45:47-0600","RANDALL TEMPLE",,,,,33,11,0,20,31,0,31,31,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",, "20110201073006P030000886583001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"S. REED WARREN, PA PROFIT SHARING PLAN","001","1993-01-01","S. REED WARREN, PA",,,"P.O. BOX 10507",,"GOLDSBORO","NC","275320507",,,,,,,,,,,,,,,,,,"561801560","9197783877","541110","S. REED WARREN, PA",,"P.O. BOX 10507",,"GOLDSBORO","NC","275320507",,,,,,,"561801560","9197783877",,"561801560","001","2011-01-31T20:26:18-0600","S. REED WARREN","2011-01-31T20:26:22-0600","S. REED WARREN",,,2,2,0,0,2,0,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110209144506P040007495169001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KPS GROUP, INC. PROFIT SHARING RETIREMENT PLAN","001","1982-10-01","KPS GROUP, INC.",,,"2101 FIRST AVENUE NORTH",,"BIRMINGHAM","AL","35203",,,,,,,,,,,,,,,,,,"630756617","2052510125","541310","KPS GROUP, INC.",,"2101 FIRST AVENUE NORTH",,"BIRMINGHAM","AL","35203",,,,,,,"630756617","2052510125",,,,"2011-02-09T14:32:50-0600","MIKE LACKEY",,,,,40,43,0,5,48,0,48,48,1,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",, "20110203130553P030019165440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHILLIPS ACCOUNTANCY CORPORATION 401(K) PROFIT SHARING PLAN","001","1997-01-01","PHILLIPS ACCOUNTANCY CORPORATION",,,"1851 EAST FIRST STREET","SUITE 835","SANTA ANA","CA","92705",,,,,,,,,,,,,,,,,,"330616134","7146672311","541211","PHILLIPS ACCOUNTANCY CORPORATION",,"1851 EAST FIRST STREET","SUITE 835","SANTA ANA","CA","92705",,,,,,,"330616134","7146672311",,,,"2011-02-03T13:05:46-0600","ROBERT PHILLIPS","2011-02-03T13:05:46-0600","ROBERT PHILLIPS",,,8,7,0,1,8,0,8,7,0,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110203173004P040004247905001","2008-01-01","2008-12-31","3",,"0","1","0","0","0","1","0","0","0",,"AQUATECH SOCIETY RETIREMENT PLAN","001","2004-01-01","AQUATECH CORPORATION",,,"2900 BRISTOL STREET","BUILDING B, THIRD FLOOR","COSTA MESA","CA","92626",,,,,,,"2900 BRISTOL STREET","BUILDING B, THIRD FLOOR","COSTA MESA","CA","92626",,,,,,,"860196677","7149292660","541990","AQUATECH CORPORATION",,"2900 BRISTOL STREET","BUILDING B, THIRD FLOOR","COSTA MESA","CA","92626",,,,,,,"860196677","7149292660",,,,"2011-02-03T17:17:52-0600","JEFFREY FAUSETT",,,,,471,380,0,77,457,0,457,310,2,,"2E2F2G2J2K",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","3",,"1",,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",, "20110214144112P030009887041001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"WESKEM, LLC 401(K) PLAN","001","2000-01-01","WESKEM, LLC C/O WESTON SOLUTIONS",,,"1400 WESTON WAY",,"WEST CHESTER","PA","19380",,,,,,,,,,,,,,,,,,"582495329","6107013918","562000","WESKEM, LLC C/O WESTON SOLUTIONS",,"1400 WESTON WAY",,"WEST CHESTER","PA","19380",,,,,,,"582495329","6107013918",,,,"2011-02-14T14:41:00-0600","ANDREW LEISTER",,,,,5,0,0,0,0,0,0,0,0,,"3D2J2G2E2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",, "20110201085627P040002902273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANKS MANUFACTURING CO. 401K RETIREMENT PLAN","001","1999-01-01","BANKS MANUFACTURING CO.",,,"40259 BANKS RD",,"GRAFTON","OH","440449791",,,,,,,,,,,,,,,,,,"340805079","4404588661","339900","BANKS MANUFACTURING CO.",,"40259 BANKS RD",,"GRAFTON","OH","440449791",,,,,,,"340805079","4404588661",,,,"2011-02-01T08:50:58-0600","TIMOTHY BOYD",,,,,7,4,0,2,6,0,6,6,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",, "20110209084835P040007340833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AT-HOME SENIOR SERVICES, INC. 401(K) PLAN","001","2008-09-01","AT-HOME SENIOR SERVICES, INC.",,,"1648 DOVES VIEW CIRCLE",,"AUBURNDALE","FL","33823",,,,,,,,,,,,,,,,,,"371568483","8632681220","621610","AT-HOME SENIOR SERVICES, INC",,"1648 DOVES VIEW CIRCLE",,"AUBURNDALE","FL","33823",,,,,,,"371568483","8632681220",,,,"2011-02-09T08:42:54-0600","JAMES CLOUSE",,,,,2,4,0,0,4,0,4,2,0,,"2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",, "20110207162734P030006131249001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SNN INVESTMENTS, INC PROFIT SHARING PLAN","001","2006-02-07","SNN INVESTMENTS, INC",,,"5709 BRUSHY CREEK TRAIL",,"DALLAS","TX","75252",,,,,,,"5709 BRUSHY CREEK TRAIL",,"DALLAS","TX","75252",,,,,,,"204294118","9722483400","551112","SNN INVESTMENTS, INC",,"5709 BRUSHY CREEK TRAIL",,"DALLAS","TX","75252",,,,,,,"204294118","9722483400",,,,"2011-02-07T16:26:11-0600","STEVE NEPOMNICK",,,,,1,1,,,1,,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",, "20110211134122P040001285874001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHAEL FROST FINE ART LLC PENSION PLAN","001","2005-01-01","MICHAEL FROST FINE ART LLC",,,"1175 YORK AVENUE, APT. 17J",,"NEW YORK","NY","10065",,,,,,,,,,,,,,,,,,"202181724","2124213160","453920","MICHAEL FROST FINE ART LLC",,"1175 YORK AVENUE, APT. 17J",,"NEW YORK","NY","10065",,,,,,,"202181724","2124213160",,,,"2011-02-11T13:40:27-0600","MICHAEL FROST",,,,,1,1,0,0,1,0,1,,0,,"1A3E",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",, "20110205084722P030000720146001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","1","0",,"CROW PEAK ANESTHESIA, PC PROFIT SHARING PLAN","002","1999-08-01","CROW PEAK ANESTHESIA, PC",,,"P.O. BOX 216",,"SPEARFISH","SD","577830216",,,,,,,,,,,,,,,,,,"460452434","6056441485","621399","CROW PEAK ANESTHESIA, PC",,"P.O. BOX 216",,"SPEARFISH","SD","577830216",,,,,,,"460452434","6056441485",,,,"2011-02-05T06:55:34-0600","REX VIGOREN",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2R3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-05","Filed with authorized/valid electronic signature",, "20110128135951P030000122546001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLLINS INK 401(K) PROFIT SHARING PLAN","001","2003-03-01","COLLINS INK CORPORATION",,,"1201 EDISON DRIVE",,"CINCINNATI","OH","45216",,,,,,,"1201 EDISON DRIVE",,"CINCINNATI","OH","45216",,,,,,,"311437766","5139489000","323100","COLLINS INK CORPORATION",,"1201 EDISON DRIVE",,"CINCINNATI","OH","45216",,,,,,,"311437766","5139489000",,,,"2011-01-28T13:59:03-0600","BOB HENDRICKS",,,,,52,52,0,11,63,0,63,48,7,,"2E2F2G2J3E3H",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",, "20110208160106P030000976674001","2006-01-01","2006-04-20","2",,"0","0","1","1","0","0","0","1","0",,"PROCACCI COMMERCIAL REALTY INC 401K","001","2001-01-01","PROCACCI COMMERCIAL REALTY, INC.",,,"925 S FEDERAL HWY STE 400",,"BOCA RATON","FL","334326145",,,,,,,,,,,,,,,,,,"650122542","5614161400","236200","PROCACCI COMMERCIAL REALTY, INC.",,"925 S FEDERAL HWY STE 400",,"BOCA RATON","FL","334326145",,,,,,,"650122542","5614161400",,,,"2011-02-08T15:53:16-0600","PHILIP J. PROCACCI",,,,,9,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",, "20110211165111P040001299346001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","1","0",,"BEST CARE INC 401(K) PROFIT SHARING PLAN & TRUST","002","2006-01-01","BEST CARE INC",,,"888 WEST ITHACA AVENUE",,"ENGLEWOOD","CO","80110",,,,,,,"888 WEST ITHACA AVENUE",,"ENGLEWOOD","CO","80110",,,,,,,"841321302","3037652515","621610","BEST CARE INC",,"888 WEST ITHACA AVENUE",,"ENGLEWOOD","CO","80110",,,,,,,"841321302","3037652515",,,,"2011-02-11T16:50:50-0600","ANNA ZARLENGO",,,,,134,91,,10,101,,101,43,,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",, "20110129094051P040001249473001","2010-01-01","2010-10-01","2",,"0","0","1","1","0","0","0","0","0",,"MAYVIEW CONVALESCENT HOME 401(K) PROFIT SHARING PLAN","001","1990-04-26","MAYVIEW CONVALESCENT HOME, INC.",,,"513 E WHITAKER MILL RD.",,"RALEIGH","NC","27608",,,,,,,,,,,,,,,,,,"560705968","9198282348","623000","MAYVIEW CONVALESCENT HOME, INC.",,"513 E WHITAKER MILL RD.",,"RALEIGH","NC","27608",,,,,,,"560705968","9198282348",,,,"2011-01-29T09:40:40-0600","TRAVIS H.TOMLINSON, JR.","2011-01-29T09:40:40-0600","TRAVIS H.TOMLINSON, JR.",,,190,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-01-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110129105414P030006090080001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"CARLOTTA R. EVANS, MD PROFIT SHARING/401(K) PLAN","001","1992-09-01","CARLOTTA EVANS, MD","CARLOTTA R. EVANS, MD",,"1020 BROAD STREET",,"SUMMERSVILLE","WV","26651",,,,,,,"1020 BROAD STREET",,"SUMMERSVILLE","WV","26651",,,,,,,"550717035","3048722450","621111","CARLOTTA EVANS, MD",,"1020 BROAD STREET",,"SUMMERSVILLE","WV","26651",,,,,,,"550717035","3048722450",,,,"2011-01-29T10:53:24-0600","CARLOTTA EVANS",,,,,3,0,0,0,0,0,0,0,0,,"2E3B2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-29","Filed with authorized/valid electronic signature",, "20110210092817P040036117056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEMMEL EXCAVATING, INC. MONEY PURCHASE PENSION TRUST FOR PREVAILING","003","1999-03-01","SEMMEL EXCAVATING, INC.",,,"5000 SPRINGSIDE COURT",,"ALLENTOWN","PA","18104",,,,,,,,,,,,,,,,,,"231684574","6104819300","238900","SEMMEL EXCAVATING, INC.",,"5000 SPRINGSIDE COURT",,"ALLENTOWN","PA","18104",,,,,,,"231684574","6104819300",,,,"2011-02-10T08:55:35-0600","KEITH MALCOLM",,,,,23,17,0,3,20,0,20,20,0,,"2C2F2G3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-10","Filed with authorized/valid electronic signature",, "20110207124530P040000945122001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST STATE BANK OF SIOUX RAPIDS PROFIT SHARING PLAN AND TRUST","001","1966-01-01","FIRST STATE BANK",,,"123 MAIN STREET",,"SIOUX RAPIDS","IA","50585",,,,,,,,,,,,,,,,,,"420253630","7122832593","522110","FIRST STATE BANK",,"123 MAIN STREET",,"SIOUX RAPIDS","IA","50585",,,,,,,"420253630","7122832593",,,,"2011-02-07T12:45:24-0600","ANN LEE",,,,,9,8,0,1,9,0,9,9,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",, "20110208101816P040006781857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN INSTITUTE OF FOOD DISTRIBUTION 401K PLAN","002","1998-01-01","AMERICAN INSTITUTE OF FOOD DISTRIBUTION",,,"10 MOUNTAINVIEW ROAD","SUITE S125","UPPER SADDLE RIVER","NJ","07458",,,,,,,,,,,,,,,,,,"222310010","2017915570","519100","AMERICAN INSTITUTE OF FOOD DISTRIBUTION",,"10 MOUNTAINVIEW ROAD","SUITE S125","UPPER SADDLE RIVER","NJ","07458",,,,,,,"222310010","2017915570",,,,"2011-02-08T10:13:20-0600","BRIAN TODD",,,,,18,13,0,6,19,0,19,14,1,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",, "20110128083303P040000117954001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"MORAVIAN COLLEGE LIFE INSURANCE PLAN","501","1969-09-01","MORAVIAN COLLEGE",,,"1200 MAIN STREET",,"BETHLEHEM","PA","18018",,,,,,,,,,,,,,,,,,"240795460","6108611527","611000","MORAVIAN COLLEGE",,"1200 MAIN STREET",,"BETHLEHEM","PA","18018",,,,,,,"240795460","6108611527",,,,"2011-01-28T08:31:54-0600","JON B. CONRAD",,,,,339,348,0,0,348,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",, "20110128101949P030000235431001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VIDALIA FEDERAL SAVINGS BANK MONEY PURCHASE PENSION PLAN AND TRUST","002","1989-01-01","VIDALIA FEDERAL SAVINGS BANK",,,"300 JACKSON STREET",,"VIDALIA","GA","304750666",,,,,,,,,,,,,,,,,,"580473062","9125374622","522120","VIDALIA FEDERAL SAVINGS BANK",,"PO BOX 666",,"VIDALIA","GA","304750666",,,,,,,"580473062","9125374622",,,,"2011-01-28T10:16:06-0600","HAL CHESSER",,,,,35,33,0,1,34,0,34,34,0,,"2C3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",, "20110129155729P030006608336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONUMENT CAPITAL MANAGEMENT, INC. PROFIT SHARING PLAN & TRUST","001","1999-01-01","MONUMENT CAPITAL MANAGEMENT, INC.",,,"3400 E. SPEEDWAY BLVD.","SUITE 118-188","TUCSON","AZ","85716",,,,,,,"3400 E. SPEEDWAY BLVD.","SUITE 118-188","TUCSON","AZ","85716",,,,,,,"841429764","5203703709","523900","MONUMENT CAPITAL MANAGEMENT, INC.",,"3400 E. SPEEDWAY BLVD.","SUITE 118-188","TUCSON","AZ","85716",,,,,,,"841429764","5203703709",,,,"2011-01-29T15:55:59-0600","PAUL SORENSEN",,,,,2,2,,,2,,2,2,,,"2A2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-29","Filed with authorized/valid electronic signature",, "20110207183614P030006173345001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"DAVID HESKIAOFF, M.D., INC. & ASSOC. ERS. PROFIT SHARING PLAN","002","2000-01-01","DAVID HESKIAOFF, M.D., INC.",,,"5170 SEPULVEDA BLVD., SUITE 100",,"SHERMAN OAKS","CA","91403",,,,,,,,,,,,,,,,,,"953920544","8187843878","621111","TRUSTEE,DAVID HESKIAOFF, MD, INC. & ASSOC. ERS. RETIREMENT TRUST",,"5170 SEPULVEDA BLVD., SUITE 100",,"SHERMAN OAKS","CA","91403",,,,,,,"957111606","3105529608",,,,"2011-02-07T06:34:57-0600","DAVID HESKIAOFF, TRUSTEE","2011-02-07T06:36:13-0600","DAVID HESKIAOFF, PRESIDENT",,,18,0,0,0,0,0,0,0,0,,"2E3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110208075845P040030932400001","2003-03-01","2004-02-29","2",,"0","0","0","0","0","0","0","1","0",,"WAINWRIGHT BANK & TRUST COMPANY EMPLOYEE BENEFITS PLAN","501","2003-03-01","WAINWRIGHT BANK & TRUST COMPANY",,,"63 FRANKLIN STREET",,"BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"042962636","6174784000","522110","WAINWRIGHT BANK & TRUST COMPANY",,"63 FRANKLIN STREET",,"BOSTON","MA","02110",,,,,,,"042962636","6174784000",,,,"2011-02-08T07:58:31-0600","NANCY HUNTINGTON STAGER","2011-02-08T07:58:31-0600","NANCY HUNTINGTON STAGER",,,147,151,,,151,,0,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110129171537P040001442385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHARD D. ALSTON, DDS, MSD, PS 401K PLAN","003","2007-01-01","RICHARD D. ALSTON, DDS, MSD, PA",,,"120 CLINTON COURT",,"ROCKY MOUNT","NC","278042403",,,,,,,,,,,,,,,,,,"200577978","2524511010","621210","RICHARD D. ALSTON, DDS, MSD, PA",,"120 CLINTON COURT",,"ROCKY MOUNT","NC","278042403",,,,,,,"200577978","2524511010",,,,"2011-01-29T17:10:49-0600","RICHARD D. ALSTON",,,,,3,5,0,0,5,0,5,5,0,,"2A2E2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-29","Filed with authorized/valid electronic signature",, "20110207092739P030028949136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLENNIUM HOME HEALTH CARE INC. 401K PLAN","002","2002-01-01","MILLENNIUM HOME HEALTH CARE INC.",,,"18600 W. 10 MILE ROAD, SUITE 104",,"SOUTHFIELD","MI","48075",,,,,,,,,,,,,,,,,,"383507210","2485699303","621610","MILLENNIUM HOME HEALTH CARE",,"18600 W. 10 MILE, SUITE 104",,"SOUTHFIELD","MI","48075",,,,,,,"383507210","2485699303",,,,"2011-02-07T09:26:59-0600","FARID KAZI",,,,,20,18,0,0,18,0,18,18,,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",, "20110208131305P040031484240001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RKA, LLC 401(K) RETIREMENT PLAN","001","2003-01-01","RKA, LLC",,,"225 BROADWAY",,"HAMMONTON","NJ","08037",,,,,,,,,,,,,,,,,,"010642338","6095610188","238220","RKA, LLC",,"225 BROADWAY",,"HAMMONTON","NJ","08037",,,,,,,"010642338","6095610188",,,,"2011-02-08T13:12:58-0600","RICHARD ADAMUCCI, JR.","2011-02-08T13:12:58-0600","RICHARD ADAMUCCI, JR.",,,24,20,1,4,25,0,25,25,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110210124744P040008018913001","2006-01-01","2006-12-31","4","M","0","0","0","0","0","0","0","0","0",,"THE EASTERN COMPANY PENSION PLAN TRUST","010",,"THE EASTERN COMPANY PENSION PLAN TRUST",,,"P.O. BOX 460","112 BRIDGE STREET","NAUGATUCK","CT","06770",,,,,,,,,,,,,,,,,,"060330020","2037292255",,"THE EASTERN COMPANY PENSION PLAN TRUST",,"P.O. BOX 460","112 BRIDGE STREET","NAUGATUCK","CT","06770",,,,,,,"060330020","2037292255",,,,,,,,"2011-02-10T12:41:36-0600","GENE FINELLI",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-02-10",,"Filed with authorized/valid electronic signature", "20110211152854P040002730823001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLACKBURN MOTOR COMPANY, INC. 401(K)PLAN","001","1966-11-01","BLACKBURN MOTOR COMPANY, INC.",,,"2195 N. FRONTAGE RD",,"VICKSBURG","MS","39180",,,,,,,,,,,,,,,,,,"640287962","6016362766","441110","BLACKBURN MOTOR COMPANY, INC.",,"2195 N. FRONTAGE RD",,"VICKSBURG","MS","39180",,,,,,,"640287962","6016362766",,,,"2011-02-11T15:28:01-0600","JAMES E. BLACKBURN, JR.",,,,,34,27,0,4,31,0,31,31,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",, "20110208080914P030002060999001","2007-03-01","2008-02-28","2",,"0","0","0","0","0","0","0","1","0",,"WAINWRIGHT BANK & TRUST COMPANY","501","2003-03-01","WAINWRIGHT BANK & TRUST COMPANY",,,"63 FRANKLIN STREET",,"BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"042962636","6174784000","522110","WAINWRIGHT BANK & TRUST COMPANY",,"63 FRANKLIN STREET",,"BOSTON","MA","02110",,,,,,,"042962636","6174784000",,,,"2011-02-08T08:09:04-0600","NANCY HUNTINGTON STAGER","2011-02-08T08:09:04-0600","NANCY HUNTINGTON STAGER",,,162,140,,,140,,0,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110207130559P030006041537001","2008-01-01","2008-12-31","2",,"0","0","1","1","0","0","0","1","0",,"MIRANDA Y MAS PROFIT SHARING PLAN","007","1999-01-01","MIRANDA Y MAS",,,"895 BROADWAY FL 5",,"NEW YORK","NY","10003",,,,,,,"895 BROADWAY FL 5",,"NEW YORK","NY","10003",,,,,,,"134008596","2125056633","541600","MIRANDA Y MAS",,"895 BROADWAY FL 5",,"NEW YORK","NY","10003",,,,,,,"134008596","2125056633",,,,"2011-02-07T13:05:25-0600","LUZ MIRANDA",,,,,2,0,0,0,0,0,0,0,0,,"2A2E3E3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",, "20110202123152P040003532513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COPENHAGEN-SACRAMENTO, INC. PROFIT SHARING PLAN","003","1989-06-01","COPENHAGEN-SACRAMENTO, INC.",,,"323 RICHARDSON DR.",,"MILL VALLEY","CA","94941",,,,,,,,,,,,,,,,,,"942425897","4157754000","442110","COPENHAGEN-SACRAMENTO, INC.",,"323 RICHARDSON DR.",,"MILL VALLEY","CA","94941",,,,,,,"942425897","4157754000",,,,"2011-02-02T12:31:39-0600","WEI GUO YU",,,,,5,4,0,0,4,0,4,4,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-02","Filed with authorized/valid electronic signature",, "20110203110043P030001236999001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE DONAGHUE MEDICAL RESEARCH FOUNDATION RETIREMENT PLAN","001","1998-01-01","THE PATRICK AND CATHERINE WELDON DONAGHUE MEDICAL RESEARCH FOUNDATION",,,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"066348275","8605219011","813000","THE PATRICK AND CATHERINE WELDON DONAGHUE MEDICAL RESEARCH FOUNDATION",,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"066348275","8605219011",,,,"2010-12-14T12:12:04-0600","LYNNE GARNER",,,,,,,,,,,,,,,"2F2G2K2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",, "20110131114436P030000355410001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"FULCRUM BUSINESS SOLUTIONS, INC. PROFIT SHARING PLAN AND TRUST","001","2000-01-01","FULCRUM BUSINESS SOLUTIONS, INC.",,,"16200 DEERHAVEN COURT",,"MORRISON","CO","80465",,,,,,,"16200 DEERHAVEN COURT",,"MORRISON","CO","80465",,,,,,,"841303339","3039727663","812990","FULCRUM BUSINESS SOLUTIONS, INC.",,"16200 DEERHAVEN COURT",,"MORRISON","CO","80465",,,,,,,"841303339","3039727663",,,,"2011-02-01T12:04:35-0600","EDWARD WEKESSER","2011-02-01T12:04:35-0600","EDWARD WEKESSER",,,1,0,0,0,0,0,0,0,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110202143048P040003591249001","1992-01-01","1992-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WILSON COLLEGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1937-10-09","WILSON COLLEGE",,,"1015 PHILADELPHIA AVENUE",,"CHAMBERSBURG","PA","17201",,,,,,,,,,,,,,,,,,"231352692","7172622017","611000","WILSON COLLEGE",,"1015 PHILADELPHIA AVENUE",,"CHAMBERSBURG","PA","17201",,,,,,,"231352692","7172622017",,,,"2011-02-02T14:30:40-0600","DONALD KIME",,,,,0,,,,0,,0,,,,"2G2L2M",,"1","0","1","0","1","0","1","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-02-02","Filed with authorized/valid electronic signature",, "20110131152849P030011680752001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","1","0","0","0",,"DEBRHA CARNAHAN LAW OFFICE PROFIT SHARING PLAN","001","1993-01-01","DEBRHA CARNAHAN LAW OFFICE",,,"2373 PARKSIDE DR.",,"BOISE","ID","83712",,,,,,,,,,,,,,,,,,"820484968","2083381420","541110","DEBRHA CARNAHAN LAW OFFICE",,"2373 PARKSIDE DR.",,"BOISE","ID","83712",,,,,,,"820484968","2083381420",,,,"2011-01-31T14:20:48-0600","DEBRHA CARNAHAN","2011-01-31T14:20:48-0600","DEBRHA CARNAHAN",,,4,0,0,0,0,0,0,0,0,,"2A2E3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110203072728P030003793217001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"DALTON HEART CENTER, P.C. PROFIT SHARING PLAN AND TRUST","001","1987-08-01","DALTON HEART CENTER, P.C.",,,"1436 BROADRICK DRIVE",,"DALTON","GA","30720",,,,,,,,,,,,,,,,,,"581407040","7062786884","621111","DALTON HEART CENTER, P.C.",,"1436 BROADRICK DRIVE",,"DALTON","GA","30720",,,,,,,"581407040","7062786884",,,,"2011-02-02T21:22:29-0600","PHILIP BAILEY","2011-02-02T21:22:29-0600","PHILIP BAILEY",,,7,0,,,0,,0,0,0,,"2E3D2J2K2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110131101546P030011059616001","2010-01-01","2010-12-29","2",,"0","0","1","1","0","0","0","0","0",,"THE FISHMAN GROUP, P.C. 401(K) SAVINGS PLAN","003","1990-01-01","THE FISHMAN GROUP, P.C.",,,"201 WEST BIG BEAVER RD",,"TROY","MI","48084",,,,,,,,,,,,,,,,,,"382283230","2487436070","541110","THE FISHMAN GROUP, P.C.",,"201 WEST BIG BEAVER RD",,"TROY","MI","48084",,,,,,,"382283230","2487436070",,,,"2011-01-31T10:15:39-0600","STEVEN J. FISHMAN","2011-01-31T10:15:39-0600","STEVEN J. FISHMAN",,,6,0,0,0,0,0,0,0,0,,"2A2E2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110131130730P040002434257001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"KOMATSU FORKLIFT SAVINGS AND INVESTMENT PLAN","001","1990-01-01","KOMATSU FORKLIFT U.S.A., LLC",,,"1701 WEST GOLF ROAD","ONE CONTINENTAL TOWERS","ROLLING MEADOWS","IL","600084227",,,,,,,"1701 WEST GOLF ROAD","ONE CONTINENTAL TOWERS","ROLLING MEADOWS","IL","600084227",,,,,,,"264351311","8474375800","336990","KOMATSU FORKLIFT U.S.A., LLC",,"1701 WEST GOLF ROAD","ONE CONTINENTAL TOWERS","ROLLING MEADOWS","IL","600084227",,,,,,,"264351311","8474375800",,,,"2011-01-31T13:06:44-0600","IRA FINN","2011-01-31T11:37:47-0600","IRA FINN",,,222,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110203074338P040001255703001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEES SICK LEAVE PLAN","504","1991-07-01","ENERSYS",,,"2366 BERNVILLE RD",,"READING","PA","19605",,,,,,,"2366 BERNVILLE RD",,"READING","PA","19605",,,,,,,"952388165","6102081861","335900","ENERSYS",,"2366 BERNVILLE RD",,"READING","PA","19605",,,,,,,"952388165","6102081861",,,,"2011-02-02T15:14:52-0600","THEODORE FRIES",,,,,2187,2672,0,0,2672,0,2672,,,,,"4F",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",, "20110301174210P040085211792001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","1","0","0",,"DEASY & ASSOCIATES INC MONEY PURCHASE PLAN","002","1990-12-31","DEASY & ASSOCIATES INC","SAME","TOM DEASY","257 HERRMANN DRIVE",,"AVON LAKE","OH","44012",,,,,,,"257 HERRMANN DRIVE",,"AVON LAKE","OH","44012",,,,,,,"341642520","4409345700","541600","DEASY & ASSOCIATES INC","TOM DEASY","257 HERRMANN DRIVE",,"AVON LAKE","OH","44012",,,,,,,"341642520","4409345700",,,,"2011-03-01T17:41:58-0600","SEAN LACKEY",,,,,3,3,,,3,,3,3,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110301110214P030002617794001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CHEVRON PUERTO RICO LLC PENSION PLAN","003","1967-01-01","CHEVRON PUERTO RICO LLC",,,"METRO OFFICE PARK #2","TEXACO PLAZA SUITE 400","GUAYNABO","PR","00968",,,,,,,,,,,,,,,,,,"660178814","7877836110","324110","CHEVRON PUERTO RICO LLC",,"METRO OFFICE PARK #2","TEXACO PLAZA SUITE 400","GUAYNABO","PR","00968",,,,,,,"660178814","7877836110","TEXACO PUERTO RICO LLC","660178814","003","2011-03-01T07:13:07-0600","JOSE LUIS FAURE",,,,,231,69,89,71,229,0,229,,0,,"1A1G3C",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110303114342P030019188625001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"STEVENS TRAVEL MANAGEMENT INC 401(K) PROFIT SHARING PLAN","001","1988-06-01","STEVENS TRAVEL MANAGEMENT",,,"30 GLENERIE LANE",,"SAUGERTIES","NY","12477",,,,,,,,,,,,,,,,,,"132726587","8452467108","561500","STEVENS TRAVEL MANAGEMENT",,"30 GLENERIE LANE",,"SAUGERTIES","NY","12477",,,,,,,"132726587","8452467108",,,,"2011-03-03T11:43:05-0600","HAROLD STEVENS",,,,,6,0,0,5,5,0,5,5,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",, "20110227102658P040005517719001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAT MD PC PROFIT SHARING PLAN","001","1996-04-15","JOHN TAFURI MD INC",,,"3083 N. WINDSOR COURT",,"WESTLAKE","OH","441456717",,,,,,,"3083 N. WINDSOR COURT",,"WESTLAKE","OH","441456717",,,,,,,"341823265","4403481861","621111","JOHN TAFURI MD INC",,"3083 N. WINDSOR COURT",,"WESTLAKE","OH","441456717",,,,,,,"341823265","4403481861",,,,"2011-02-27T10:26:36-0600","JOHN TAFURI",,,,,4,3,0,1,4,0,4,4,0,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-27","Filed with authorized/valid electronic signature",, "20110223131056P040015158689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M A SCHWARTZ OPTOMETRIST INC PROFIT SHARING PLAN AND TRUST","001","1997-01-01","M A SCHWARTZ OPTOMETRIST INC",,,"13400 E 15 MILE RD",,"STERLING HEIGHTS","MI","483124213",,,,,,,"13400 E 15 MILE RD",,"STERLING HEIGHTS","MI","483124213",,,,,,,"381989718","5869391122","621320","M A SCHWARTZ OPTOMETRIST INC",,"13400 E 15 MILE RD",,"STERLING HEIGHTS","MI","483124213",,,,,,,"381989718","5869391122",,,,"2011-02-23T12:58:22-0600","MARK A SCHWARTZ",,,,,12,9,0,1,10,0,10,10,0,,"2A2E2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-23","Filed with authorized/valid electronic signature",, "20110301101352P040084366944001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"CARLETON TECHNOLOGIES INC. SHORT TERM DISABILITY PLAN","502","1987-08-10","CARLETON TECHNOLOGIES INC.","COBHAM MISSION SYSTEMS",,"10 COBHAM DRIVE",,"ORCHARD PARK","NY","14127",,,,,,,"10 COBHAM DRIVE",,"ORCHARD PARK","NY","14127",,,,,,,"161303637","7166620006","339900","CARLETON TECHNOLOGIES INC.",,"10 COBHAM DRIVE",,"ORCHARD PARK","NY","14127",,,,,,,"161303637","7166620006",,,,"2011-03-01T10:13:18-0600","KENNETH KOTA","2011-03-01T09:53:28-0600","TAMA GRESCO-SAUERS",,,338,342,0,,342,,342,,,,,"4F",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110302172023P030088388304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FAR GO DISTRIBUTING CO., INC., 401K PLAN AND TRUST","001","2002-01-01","FAR GO DISTRIBUTING CO., INC.",,"R. BERGER AND ASSOCIATES, INC.","701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"941749108","2095374726","441300","FAR GO DISTRIBUTING CO., INC.","R. BERGER AND ASSOCIATES, INC.","701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"941749108","2095374726",,,,"2011-03-02T17:11:50-0600","GER ON BEHALF OF PLAN ADMINISTRATOR",,,,,15,10,,4,14,,14,9,0,,"2E2F2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-02","Filed with authorized/valid electronic signature",, "20110303125155P030019208817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTH GEORGIA ANESTHESIA ASSOCIATES, P.C. RETIREMENT SAVINGS PLAN","002","1980-06-02","SOUTH GEORGIA ANESTHESIA ASSOCIATES PC",,,"103 HABERSHAM RD",,"THOMASVILLE","GA","317928733",,,,,,,,,,,,,,,,,,"581400731","2292283772","621111","SOUTH GEORGIA ANESTHESIA ASSOCIATES PC",,"103 HABERSHAM RD",,"THOMASVILLE","GA","317928733",,,,,,,"581400731","2292283772",,,,"2011-03-03T12:50:32-0600","JOHN A. QUINA, M.D.",,,,,16,13,0,2,15,0,15,15,1,,"2E2H2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",, "20110304102337P030002867666001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHEAST PT ASSOCIATES 401(K) PROFIT SHARING PLAN","001","2007-01-01","NORTHEAST PT ASSOCIATES",,,"1751 E. BROAD ST.",,"HAZELTON","PA","18201",,,,,,,,,,,,,,,,,,"233043927","5704594559","621340","NORTHEAST PT ASSOCIATES",,"1751 E. BROAD ST.",,"HAZELTON","PA","18201",,,,,,,"233043927","5704594559",,,,"2011-03-04T10:22:28-0600","FRANK SERATCH III",,,,,15,13,0,4,17,0,17,13,2,,"2A2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110301075902P030017942881001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE JOSEPH KELLY COMPANY, INC. 401(K) PROFIT SHARING PLAN","002","1987-07-01","THE JOSEPH F. KELLY COMPANY, INC.",,,"184 FRONT AVENUE",,"WEST HAVEN","CT","06516",,,,,,,,,,,,,,,,,,"060673662","2039348301","236200","THE JOSEPH F. KELLY COMPANY, INC.",,"184 FRONT AVENUE",,"WEST HAVEN","CT","06516",,,,,,,"060673662","2039348301",,,,"2011-03-01T07:58:31-0600","ARTHUR J. KELLY",,,,,8,5,0,1,6,0,6,6,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110301102355P030085105056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JON CARLSON GROWERS, INC.. 401(K) & PROFIT SHARING PLAN","001","2005-02-01","JON CARLSON GROWERS, INC.",,,"8938 NEWBURG ROAD",,"ROCKFORD","IL","611086947",,,,,,,,,,,,,,,,,,"363929629","8153325610","111400","JON CARLSON GROWERS, INC.",,"8938 NEWBURG ROAD",,"ROCKFORD","IL","611086947",,,,,,,"363929629","8153325610",,,,"2011-03-01T10:21:36-0600","JON CARLSON",,,,,17,14,0,1,15,0,15,7,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110221140955P040064374224001","2010-01-01","2010-07-31","2",,"0","0","1","1","0","0","0","0","0",,"NORWALK FURNITURE CORP OF TN DEF CTRB & SAV PLN FOR FACTORY EES","001","1990-01-01","NORWALK FURNITURE CORP OF TN DEF CTRB & SAV PLN FOR FACTORY EES",,,"PO BOX 3067",,"COOKEVILLE","TN","38502",,,,,,,,,,,,,,,,,,"620758400","4196684461","337000","NORWALK FURNITURE CORP OF TN DEF CTRB & SAV PLN FOR FACTORY EES",,"PO BOX 3067",,"COOKEVILLE","TN","38502",,,,,,,"620758400","4196684461",,,,"2011-02-21T14:08:39-0600","ALLAN STINGLEY",,,,,14,0,0,0,0,0,0,0,0,,"2C2G2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-21","Filed with authorized/valid electronic signature",, "20110304091647P040002989266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JONES, CHILDERS, MCLURKIN & DONALDSON, PLLC 401(K) PROFIT SHARING PLAN","001","2008-01-01","JONES, CHILDERS, MCLURKIN & DONALDSON, PLLC",,,"236 RACEWAY DRIVE, SUITE 7",,"MOORESVILLE","NC","28117",,,,,,,,,,,,,,,,,,"261558310","7046641127","541110","JONES, CHILDERS, MCLURKIN & DONALDSON, PLLC",,"236 RACEWAY DRIVE, SUITE 7",,"MOORESVILLE","NC","28117",,,,,,,"261558310","7046641127",,,,"2011-03-04T09:16:58-0600","KEVIN C. DONALDSON","2011-03-04T09:16:58-0600","KEVIN C. DONALDSON",,,19,14,,5,19,,19,19,,,"2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110223121554P030014796401001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LAKE NORMAN TEAM, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","2003-01-01","LAKE NORMAN TEAM, INC.",,,"16405 A NORTHCROSS DRIVE",,"HUNTERSVILLE","NC","28078",,,,,,,,,,,,,,,,,,"542113897","7045783632","531210","LAKE NORMAN TEAM, INC.",,"16405 A NORTHCROSS DRIVE",,"HUNTERSVILLE","NC","28078",,,,,,,"542113897","7045783632",,,,"2011-02-23T12:15:47-0600","CAROLYN BROWN",,,,,4,2,0,1,3,0,3,3,0,,"2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-23","Filed with authorized/valid electronic signature",, "20110220125735P040061696608001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BREVARD LUMBER COMPANY PROFIT SHARING PLAN","001","1988-01-01","BREVARD LUMBER COMPANY",,,"1480 NORTH US 1",,"TITUSVILLE","FL","32796",,,,,,,"1480 NORTH US 1",,"TITUSVILLE","FL","32796",,,,,,,"592151997","3212673831","444190","BREVARD LUMBER COMPANY",,"1480 NORTH US 1",,"TITUSVILLE","FL","32796",,,,,,,"592151997","3212673831",,,,"2011-02-20T12:57:16-0600","TODD BOATMAN",,,,,13,11,,,11,,11,,,,"2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-20","Filed with authorized/valid electronic signature",, "20110303125712P030019210449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EDAC POWER AMERICA INC. PROFIT SHARING PLAN","001","2004-01-01","EDAC POWER AMERICA INC.",,,"511 S. HARBOR BLVD., UNIT U",,"LA HABRA","CA","90631",,,,,,,"EDAC POWER AMERICA INC.","511 S. HARBOR BLVD., UNIT U","LA HABRA","CA","90631",,,,,,,"954836306","5626911628","423990","EDAC POWER AMERICA INC.",,"511 S. HARBOR BLVD., UNIT U",,"LA HABRA","CA","90631",,,,,,,"954836306","5626911628",,,,"2011-03-03T12:57:07-0600","JEN-HAO PU","2011-03-03T12:57:07-0600","JEN-HAO PU",,,7,4,0,0,4,0,4,4,0,,"2A2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110304092622P030019686289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DERMATOLOGY ASSOCIATES, LLP PROFIT SHARING PLAN AND TRUST","001","1998-01-01","DERMATOLOGY ASSOCIATES, LLP",,,"2011 MOORES LANE",,"TEXARKANA","TX","75503",,,,,,,"2011 MOORES LANE",,"TEXARKANA","TX","75503",,,,,,,"752769021","9037922777","621111","DERMATOLOGY ASSOCIATES, LLP",,"2011 MOORES LANE",,"TEXARKANA","TX","75503",,,,,,,"752769021","9037922777",,,,"2011-03-04T09:09:41-0600","GENIE JONES",,,,,12,11,0,1,12,,12,,1,,"2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110302133303P030002714482001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARROLL L. VERHAGE PROFIT SHARING PLAN","001","1988-01-01","CARROLL L. VERHAGE","CARROLL L. VERHAGE, M.D.",,"1322 H STREET",,"GENEVA","NE","68361",,,,,,,"1322 H STREET",,"GENEVA","NE","68361",,,,,,,"470577397","4027594431","621111","CARROLL L. VERHAGE",,"1322 H STREET",,"GENEVA","NE","68361",,,,,,,"470577397","4027594431",,,,"2011-03-02T13:31:27-0600","CARROLL VERHAGE",,,,,2,2,0,0,2,,2,2,0,,"2E3B",,,,"1",,,,"1",,,,"0",,"1",,,"0",,,"FILING_RECEIVED","2011-03-02","Filed with authorized/valid electronic signature",, "20110304115434P040092206160001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RENFRO FOODS INC EMPLOYEES PROFIT SHARING PLAN AND TRUST","001","1984-12-28","RENFRO FOODS INC",,,"PO BOX 321",,"FORT WORTH","TX","761010321",,,,,,,,,,,,,,,,,,"751376603","8173363849","311400","WAKE FINANCIAL GROUP INC",,"PO BOX 536029",,"GRAND PRAIRIE","TX","75053",,,,,,,"751961778","9726416636",,,,"2011-01-31T14:22:56-0600","SHARON WAKE","2011-01-31T10:58:24-0600","DOUG RENFRO",,,38,34,1,1,36,0,36,36,0,,"2E2F2G2J2K3D2A",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110301103754P030018007713001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PHOENIX TRANSPORT & SERVICES, INC. RETIREMENT PLAN","002","2001-09-01","PHOENIX TRANSPORT & SERVICES, INC.",,,"P.O. BOX 622015",,"ORLANDO","FL","32862",,,,,,,,,,,,,,,,,,"592960412","4078164741","484200","PHOENIX TRANSPORT & SERVICES, INC.",,"P.O. BOX 622015",,"ORLANDO","FL","32862",,,,,,,"592960412","4078164741",,,,"2011-03-01T10:37:12-0600","ANDREA H. WHITE","2011-03-01T10:37:12-0600","ANDREA H. WHITE",,,59,0,0,0,0,0,0,0,0,,"2C2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110220200216P040062450896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CMG ENGINEERING, INC. 401(K) PLAN","001","2008-01-01","CMG ENGINEERING, INC.",,,"P.O. BOX 5159",,"KALISPELL","MT","599035159",,,,,,,"1075 TRUMBLE CREEK ROAD",,"KALISPELL","MT","59901",,,,,,,"202317698","4062578156","541330","CMG ENGINEERING, INC.",,"P.O. BOX 5159",,"KALISPELL","MT","599035159",,,,,,,"202317698","4062578156",,,,"2011-02-20T17:44:52-0600","DEBRA SMITH",,,,,11,10,0,1,11,0,11,11,0,,"2E2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-20","Filed with authorized/valid electronic signature",, "20110221144944P030065165136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARKET GROCERY PROFIT SHARING PLAN","001","1995-01-01","MARKET GROCERY COMPANY",,,"BUILDING K STATE FARMERS MARKET",,"FOREST PARK","GA","30051",,,,,,,,,,,,,,,,,,"580362575","4043618620","445110","MARKET GROCERY COMPANY",,"BUILDING K STATE FARMERS MARKET",,"FOREST PARK","GA","30051",,,,,,,"580362575","4043618620",,,,"2011-02-21T14:45:24-0600","MR. DON A. BARNETT",,,,,63,46,1,21,68,0,68,64,0,,"2E2F3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-21","Filed with authorized/valid electronic signature",, "20110303092356P030019123761001","2010-01-01","2010-11-19","2",,"0","0","1","1",,,,,,,"IRWIN FINANCIAL CORPORATION EMPLOYEES' SAVINGS PLAN","002","2004-12-29","IRWIN FINANCIAL CORPORATION",,,"C/O ELLIOTT LEVIN, CHAPTER 7 TTE","342 MASSACHUSETTS AVE","INDIANAPOLIS","IN","46204",,,,,,,"500 MAROTT CENTER","342 MASSACHUSETTS AVE","INDIANAPOLIS","IN","46204",,,,,,,"351286807","3176340300","551111","IRWIN FINANCIAL CORPORATION",,"C/O ELLIOTT LEVIN, CHAPTER 7 TTE","342 MASSACHUSETTS AVE","INDIANAPOLIS","IN","46204",,,,,,,"351286807","3176340300",,,,"2011-03-03T08:47:57-0600","ELLIOTT LEVIN-TRUSTEE",,,,,531,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2S2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",, "20110301084508P030017960641001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALLEN SEARCY BUILDER-CONTRACTOR, INC. 401K RETIREMENT PLAN","001","1998-01-01","ALLEN SEARCY CONTRACTOR 401K",,,"2115 WEST MAIN STREET",,"UNION CITY","TN","38261",,,,,,,,,,,,,,,,,,"620814725","7318857633","236200","ALLEN SEARCY CONTRACTOR 401K",,"2115 WEST MAIN STREET",,"UNION CITY","TN","38261",,,,,,,"620814725","7318857633",,,,"2011-03-01T08:34:39-0600","ALLEN SEARCY",,,,,23,22,0,0,22,0,22,13,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110303161544P040090129504001","2010-01-01","2010-10-01","2",,"0","1","1","1","0","0","0","0","0",,"CKS COMPANIES, INC. 401(K) PLAN","001","2007-05-02","CKS COMPANIES, INC.",,,"10272 LASSO DRIVE",,"FRISCO","TX","75034",,,,,,,,,,,,,,,,,,"208987581","4692613420","484120","CKS COMPANIES, INC.",,"10272 LASSO DRIVE",,"FRISCO","TX","75034",,,,,,,"208987581","4692613420",,,,"2011-03-03T16:15:36-0600","COLIN ST. CLAIR","2011-03-03T16:15:36-0600","COLIN ST. CLAIR",,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110303095603P040006187591001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEALTH PLAN","510","2001-01-01","COVANTAGE CREDIT UNION",,,"723 SIXTH AVENUE PO BOX 107",,"ANTIGO","WI","54409",,,,,,,,,,,,,,,,,,"390945701","7156231352","522130","SHERRY AULIK","COVANTAGE CREDIT UNION","723 SIXTH AVENUE","PO BOX 107","ANTIGO","WI","54409",,,,,,,"390945701","7156231352",,,,"2011-03-03T09:55:31-0600","SHERRY AULIK",,,,,146,160,0,0,160,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",, "20110303095735P040002912786001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JANSSON SHUPE & MUNGER LTD. 401(K) PROFIT SHARING PLAN","001","1986-06-30","JANSSON SHUPE & MUNGER LTD.",,,"245 MAIN STREET",,"RACINE","WI","53403",,,,,,,,,,,,,,,,,,"391528470","2626326900","541110","JANSSON SHUPE & MUNGER LTD.",,"245 MAIN STREET",,"RACINE","WI","53403",,,,,,,"391528470","2626326900",,,,"2011-03-03T09:52:25-0600","PETER JANSSON",,,,,16,14,0,1,15,0,15,15,0,,"2E2J2K2F2G2R3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",, "20110304182704P040003025746001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTEKRIN THERAPEUTICS, INC. 401(K) RETIREMENT PLAN","001","2009-01-01","INTEKRIN THERAPEUTICS, INC.",,,"4300 EL CAMINO REAL, SUITE 205",,"LOS ALTOS","CA","94022",,,,,,,,,,,,,,,,,,"203631087","6509415501","541700","INTEKRIN THERAPEUTICS, INC.",,"4300 EL CAMINO REAL, SUITE 205",,"LOS ALTOS","CA","94022",,,,,,,"203631087","6509415501",,,,"2011-03-04T18:26:58-0600","MIKE NAZAK",,,,,14,2,0,3,5,0,5,4,0,,"2E2F2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110221190740P030065624112001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"FOUNTAIN PRODUCTS 401K","002","2006-01-01","FOUNTAIN PRODUCTS 401K",,,"3021 INDUSTRIAL BLVD",,"BETHEL PARK","PA","151022537",,,,,,,,,,,,,,,,,,"251210505","4128333226","423990","FOUNTAIN PRODUCTS, INC.",,"3021 INDUSTRIAL BLVD.",,"BETHEL PARK","PA","15102",,,,,,,"251210505","4128333226",,,,"2011-02-21T19:06:45-0600","DONNA PIACQUIDIO",,,,,8,0,0,0,0,0,0,0,0,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-02-21","Filed with authorized/valid electronic signature",, "20110303144843P040019555713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LANCASTER LAW OFFICES, P.C. PROFIT SHARING PLAN","001","2000-07-01","LANCASTER LAW OFFICES, P.C.",,,"P.O. BOX 1589",,"AFTON","WY","831101589",,,,,,,,,,,,,,,,,,"830329715","3078854529","541110","LANCASTER LAW OFFICES, P.C.",,"P.O. BOX 1589",,"AFTON","WY","831101589",,,,,,,"830329715","3078854529",,,,"2011-03-03T14:48:37-0600","DENNIS W.LANCASTER","2011-03-03T14:48:37-0600","DENNIS W.LANCASTER",,,3,3,0,0,3,0,3,3,0,,"2E2J2K3B3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110304101224P030002866482001","2010-01-01","2010-08-02","2",,"0","0","1","1","1","1","0","0","0",,"FERGUSON/NEVADA/HEARNE 401(K) PLAN","008","1998-01-01","AS AMERICA, INC.",,,"ONE CENTENNIAL AVENUE",,"PISCATAWAY","NJ","08855",,,,,,,,,,,,,,,,,,"260887443","7329803165","332900","AS AMERICA, INC.",,"ONE CENTENNIAL AVENUE",,"PISCATAWAY","NJ","08855",,,,,,,"260887443","7329803165","CRANE PLUMBING,L.L.C.","363721652","008","2011-03-04T10:12:17-0600","THERESA ARENA",,,,,91,0,0,0,0,0,0,0,0,,"2E2J2F2G2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110223095706P040069078016001","1998-10-01","1999-09-30","2",,"0","0","0","0","0","0","0","1","0",,"EDUCATION DEVELOPMENT CENTER SUPPLEMENTAL RETIREMENT PLAN","001","1974-01-01","EDUCATION DEVELOPMENT CENTER",,,"55 CHAPEL STREET",,"NEWTON","MA","02458",,,,,,,,,,,,,,,,,,"042241718","6176182224","611000","EDUCATION DEVELOPMENT CENTER",,"55 CHAPEL STREET",,"NEWTON","MA","02458",,,,,,,"042241718","6176182224",,,,"2011-01-31T09:46:16-0600","JOANNA JONES","2011-02-23T09:57:00-0600","ROBERT ROTNER",,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-02-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110221215332P030013900209001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","1",,"PAUL E. YOUNG, MD, P.A. AMENDED AND RESTATED PS PENSION TRUST","001","1983-01-01","PAUL E. YOUNG, MD, INC.",,"KEVIN L. YOUNG, TRUSTEE","3500 SW FAIRLAWN RD","SUITE 210","TOPEKA","KS","66614",,,,,,,"3500 SW FAIRLAWN RD","SUITE 210","TOPEKA","KS","66614",,,,,,,"742839282","7857838323","621320","PAUL E. YOUNG, MD, INC.","KEVIN L. YOUNG, TRUSTEE","3500 SW FAIRLAWN RD","SUITE 210","TOPEKA","KS","66614",,,,,,,"742839282","7857838323",,,,"2011-02-21T21:52:56-0600","SCOTT HOLLOMAN",,,,,3,0,2,,2,1,3,3,0,,"2E",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-02-21","Filed with authorized/valid electronic signature",, "20110304125802P030092972128001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SIERRA TRADING POST EMPLOYEE VISION PLAN","504","1998-09-01","SIERRA TRADING POST",,,"5025 CAMPSTOOL ROAD",,"CHEYENNE","WY","82007",,,,,,,,,,,,,,,,,,"880218471","3077758050","454110","SIERRA TRADING POST",,"5025 CAMPSTOOL ROAD",,"CHEYENNE","WY","82007",,,,,,,"880218471","3077758050",,,,"2011-03-03T16:53:59-0600","GARY IMIG",,,,,485,482,,,482,,0,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110304151508P030019830849001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SURVEYING SERVICES, INC. 401K PROFIT SHARING PLAN","001","1995-01-01","SURVEYING SERVICES, INC.",,,"41 HERITAGE SQUARE",,"JACKSON","TN","38305",,,,,,,,,,,,,,,,,,"621629674","7316640807","541370","SURVEYING SERVICES, INC.",,"41 HERITAGE SQUARE",,"JACKSON","TN","38305",,,,,,,"621629674","7316640807",,,,"2011-03-04T15:00:26-0600","BRUCE RICHARDSON",,,,,11,10,0,0,10,0,10,8,,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110223085248P030004641927001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL CABLE COMMUNICATIONS FLEXIBLE BENEFIT PLAN","506","1999-01-01","NATIONAL CABLE COMMUNICATIONS, LLC",,,"405 LEXINGTON AVENUE",,"NEW YORK","NY","101740002",,,,,,,,,,,,,,,,,,"043259154","9737801700","515100","NATIONAL CABLE COMMUNICATIONS, LLC",,"405 LEXINGTON AVENUE",,"NEW YORK","NY","101740002",,,,,,,"043259154","9737801700",,,,"2011-02-23T08:52:41-0600","JOHN CALVO","2011-02-23T08:52:41-0600","JOHN CALVO",,,114,111,6,,117,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-02-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110302152749P040087528928001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LAW OFFICES OF EUGENE G. IREDALE, A PROFESSIONAL LAW CORPORATION PROFIT SHARING PLAN","002","1984-01-01","LAW OFFICES OF EUGENE G. IREDALE, A PROFESSIONAL LAW CORPORATION",,,"105 WEST F STREET, 4TH FLOOR",,"SAN DIEGO","CA","92101",,,,,,,,,,,,,,,,,,"204074687","6192331525","541110","LAW OFFICES OF EUGENE G. IREDALE, A PROFESSIONAL LAW CORPORATION",,"105 WEST F STREET, 4TH FLOOR",,"SAN DIEGO","CA","92101",,,,,,,"204074687","6192331525",,,,"2011-03-02T03:27:46-0600","EUGENE G. IREDALE",,,,,4,2,0,2,4,0,4,4,0,,"2A2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-02","Filed with authorized/valid electronic signature",, "20110228131739P030017505105002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LESLIE R. PEDERSEN, M.D., CHARTERED 401(K) PROFIT SHARING PLAN","001","1996-01-01","LESLIE PEDERSEN LUNDT, M.D., CHARTERED",,,"PO BOX 6112",,"SUN VALLEY","ID","83354",,,,,,,,,,,,,,,,,,"820450645","8056996247","621112","LESLIE PEDERSEN LUNDT, M.D., CHARTERED",,"PO BOX 6112",,"SUN VALLEY","ID","83354",,,,,,,"820450645","8056996247",,,,"2011-02-15T04:21:33-0600","LESLIE LUNDT",,,,,1,1,,,1,,1,1,,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110303104358P040002915474001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"LEVWALL, INC. 401(K) PROFIT SHARING PLAN","002","2004-01-01","LEVWALL, INC.",,,"816 A PICKENS INDUSTRIAL DRIVE",,"MARIETTA","GA","30062",,,,,,,,,,,,,,,,,,"581738026","6788184444","339900","LEVWALL, INC.",,"816 A PICKENS INDUSTRIAL DRIVE",,"MARIETTA","GA","30062",,,,,,,"581738026","6788184444",,,,"2011-03-03T10:43:55-0600","DAVID LEVY","2011-03-03T10:43:55-0600","DAVID LEVY",,,3,0,0,0,0,0,0,0,0,,"2A2E2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110222134407P030067591808001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHMAN GREER, P.A. 401(K) PROFIT SHARING PLAN","004","1982-12-01","RICHMAN GREER PROFESSIONAL ASSOCIATION",,,"201 S. BISCAYNE BLVD","TENTH FLOOR","MIAMI","FL","33131",,,,,,,,,,,,,,,,,,"591172536","3053734000","541110","RICHMAN GREER PROFESSIONAL ASSOCIATION",,"201 S. BISCAYNE BLVD","TENTH FLOOR","MIAMI","FL","33131",,,,,,,"591172536","3053734000",,,,"2011-02-22T13:34:21-0600","JOHN M. BRUMBAUGH",,,,,62,46,1,10,57,2,59,59,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110218153249P030001775506001","2002-01-01","2002-12-31","2",,"1","0","0","0","0","0","0","1","0",,"VGM GROUP LIFE/DISABILITY PLAN","502","1987-01-01","VAN G MILLER & ASSOCIATES INC",,,"PO BOX 2817","1111 W SAN MARNAN DR","WATERLOO","IA","50704",,,,,,,,,,,,,,,,,,"421280573","3192357100","621610","VAN G MILLER & ASSOCIATES INC",,"PO BOX 2817","1111 W SAN MARNAN DR","WATERLOO","IA","50704",,,,,,,"421280573","3192357100",,,,"2011-02-18T14:40:01-0600","MIKE MALLARO",,,,,290,310,,,310,,310,,,,,"4H4B",,,,"1","0",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-02-18","Filed with authorized/valid electronic signature",, "20110217081506P040011801793001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"ORTHODONTIC SPECIALTY GROUP, P.A. SAFE HARBOR 401K PLAN","002","1989-01-01","ORTHODONTIC SPECIALTY GROUP, PC",,,"1408 N. HIGHLAND AVENUE 200",,"JACKSON","TN","38301",,,,,,,,,,,,,,,,,,"620843559","7314271696","621210","ORTHODONTIC SPECIALTY GROUP, PC",,"1408 N. HIGHLAND AVENUE 200",,"JACKSON","TN","38301",,,,,,,"620843559","7314271696",,,,"2011-02-17T08:05:50-0600","JAMES RAY HIGHT JR",,,,,16,12,0,2,14,0,14,13,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110216164513P040011475921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONCRETE SERVICE CO., INC.","001","2008-01-01","CONCRETE SERVICE CO., INC.",,,"221 BAKER",,"GREAT BEND","KS","67503",,,,,,,,,,,,,,,,,,"480677851","6207922550","238900","CONCRETE SERVICE CO., INC.",,"221 BAKER",,"GREAT BEND","KS","67503",,,,,,,"480677851","6207922550",,,,"2011-02-16T16:44:52-0600","MARCIA WESTHOFF",,,,,10,10,,,10,,10,10,,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110216175214P040011500129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PIONEER DOOR, INC. 401(K) CASH DEFERRED PROFIT SHARING PLAN & TRUST","001","1997-01-01","PIONEER DOOR, INC.",,,"6514 GREENWOOD",,"ANCHORAGE","AK","99518",,,,,,,,,,,,,,,,,,"920099939","9073442212","238100","PIONEER DOOR, INC.",,"6514 GREENWOOD",,"ANCHORAGE","AK","99518",,,,,,,"920099939","9073442212",,,,"2011-02-16T17:52:11-0600","JOSEPH CLARK","2011-02-16T17:52:11-0600","JOSEPH CLARK",,,37,33,0,7,40,0,40,40,2,,"2E2G2J",,"1",,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110217101757P030001674130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BINNEMA PLANEVIEW SAVINGS & RETIREMENT PLAN","001","2007-01-01","BINNEMA PLANEVIEW",,,"P.O. BOX 3867",,"OSHKOSH","WI","549033867",,,,,,,,,,,,,,,,,,"204126953","9204262641","447100","BINNEMA PLAINVIEW",,"PO BOX 3867",,"OSHKOSH","WI","549033867",,,,,,,"204126953","9204262641",,,,"2011-02-17T10:06:50-0600","DIRK G. BINNEMA",,,,,24,24,0,0,24,0,24,10,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110216184839P030011071569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KIDS CHOICE DENTAL 401K PLAN","001","2006-01-01","KIDS CHOICE DENTAL, P.C.",,,"6211 4TH ST NW STE 13",,"ALBUQUERQUE","NM","871075762",,,,,,,,,,,,,,,,,,"202804808","5058215437","621210","KIDS CHOICE DENTAL, P.C.",,"6211 4TH ST NW STE 13",,"ALBUQUERQUE","NM","871075762",,,,,,,"202804808","5058215437",,,,"2011-02-16T18:44:13-0600","JOHN NOYES",,,,,14,14,0,0,14,0,14,12,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110222122512P030014242753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WOOD & FULLERTON STORES, LLC 401K PLAN","001","1986-01-01","WOOD & FULLERTON STORES, LLC",,,"555 SUN VALLEY DR STE J2",,"ROSWELL","GA","300765608",,,,,,,,,,,,,,,,,,"208105373","7705948611","811190","WOOD & FULLERTON STORES, LLC",,"555 SUN VALLEY DR STE J2",,"ROSWELL","GA","300765608",,,,,,,"208105373","7705948611",,,,"2011-02-22T12:25:10-0600","MS. DOLORES WOOD RODDEN",,,,,72,70,2,7,79,0,79,63,3,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110217150652P030001686786002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"DANEZ PROPERTIES, INC. 401K PROFIT SHARING PLAN","001","2006-01-01","DANEZ PROPERTIES, INC.",,,"251 WEST CHICAGO AVENUE",,"LAS VEGAS","NV","89102",,,,,,,,,,,,,,,,,,"203224933","7023765279","531390","DANEZ PROPERTIES, INC.",,"251 WEST CHICAGO AVENUE",,"LAS VEGAS","NV","89102",,,,,,,"203224933","7023765279",,,,"2011-02-17T03:06:00-0600","MARK LARKIN",,,,,4,0,0,0,0,0,0,0,0,,"2A2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110215110617P040048830064001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FRONT RANGE CENTER FOR BRAIN AND SPINE SURGERY, P.C. 401K PROFIT SHARING PLAN","003","2001-05-01","FRONT RANGE CENTER FOR BRAIN AND SPINE SURGERY, P.C.",,,"1313 RIVERSIDE AVE.",,"FORT COLLINS","CO","805244352",,,,,,,,,,,,,,,,,,"841267829","9704931991","621111","FRONT RANGE CENTER FOR BRAIN AND SPINE SURGERY, P.C.",,"1313 RIVERSIDE AVE.",,"FORT COLLINS","CO","805244352",,,,,,,"841267829","9704931991",,,,"2011-02-15T11:03:06-0600","NANCY K. TIMMONS",,,,,33,25,0,3,28,0,28,0,0,,"2E2H2J2K2R2F3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",, "20110217091203P040011823249001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"INPRO CORPORATION WELFARE BENEFIT PLAN","501","2002-01-01","INPRO CORPORATION",,,"S80 W18766 APOLLO DRIVE",,"MUSKEGO","WI","53150",,,,,,,,,,,,,,,,,,"391455053","2626799010","326100","INPRO CORPORATION",,"S80 W18766 APOLLO DRIVE",,"MUSKEGO","WI","53150",,,,,,,"391455053","2626799010",,,,"2011-02-17T09:11:48-0600","STEPHEN J. ZIEGLER",,,,,448,561,0,0,561,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110222100819P030014186961001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"WASHINGTON RADIOLOGY ASSOCIATES PC HEALTH CARE PLAN","503","1997-07-01","WASHINGTON RADIOLOGY ASSOCIATES PC",,,"3015 WILLIAMS DRIVE SUITE 200",,"FAIRFAX","VA","22031",,,,,,,,,,,,,,,,,,"520940005","7036419133","621111","WASHINGTON RADIOLOGY ASSOCIATES PC",,"3015 WILLIAMS DRIVE SUITE 200",,"FAIRFAX","VA","22031",,,,,,,"520940005","7036419133",,,,"2011-02-22T10:07:43-0600","EDWARD LIPSIT",,,,,222,201,0,0,201,,,,,,,"4A4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110218123900P040012475873005","2007-07-01","2008-06-30","2",,,,,,,,,"1",,,"DEFINED BENEFIT PENSION PLAN OF TRILLIUM FAMILY SERVICES, INC. DBA PARRY CENTER FOR CHILDREN","001","1973-04-01","TRILLIUM FAMILY SERVICES, INC.","PARRY CENTER FOR CHILDREN",,,,,,,,,,,,,"3415 S.E. POWELL BLVD.",,"PORTLAND","OR","97202",,,,,,,"930386966","5032349591","624100","TRILLIUM FAMILY SERVICES, INC.",,,,,,,,,,,,,"930386966","5032349591",,,,"2011-02-16T04:35:19-0600","LISA KANE",,,,,138,62,0,87,149,2,151,,14,,"1A1G",,"1",,"1",,"1",,"1",,,,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-02-18","Filed with authorized/valid electronic signature",, "20110218203251P040012658865001","2010-01-01","2010-10-23","2",,"0","0","1","1","0","0","0","0","0",,"PAULA FINANCIAL & SUBSIDIARIES 401(K) RETIREMENT SAVINGS PLAN","002","1987-01-01","PAULA FINANCIAL & SUBSIDIARIES",,,"87 EAST GREEN ST., SUITE 203",,"PASADENA","CA","91105",,,,,,,,,,,,,,,,,,"954640638","6268447100","524210","PAULA FINANCIAL & SUBSIDIARIES",,"87 EAST GREEN ST., SUITE 203",,"PASADENA","CA","91105",,,,,,,"954640638","6268447100",,,,"2011-02-18T20:32:37-0600","DEBORAH MADDOCKS",,,,,5,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-02-18","Filed with authorized/valid electronic signature",, "20110217130619P030011522321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEALTH PLAN FOR EMPLOYEES OF PACIFIC MEDICAL ADMINISTRATIVE GROUP, INC.","501","1990-01-01","PACIFIC MEDICAL ADMINISTRATIVE GROUP, INC.",,,"1600 KAPIOLANI BOULEVARD, SUITE 220",,"HONOLULU","HI","96814",,,,,,,,,,,,,,,,,,"990262366","8089736220","621399","PACIFIC MEDICAL ADMINISTRATIVE GROUP, INC.",,"1600 KAPIOLANI BOULEVARD, SUITE 220",,"HONOLULU","HI","96814",,,,,,,"990262366","8089736220",,,,"2011-02-17T12:51:06-0600","ALVIN PANG",,,,,257,205,0,0,205,,,,,,,"4A4D4E4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110215155133P040010913441001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"OZLA PICTURES INC PROFIT SHARING PLAN","001","2004-01-01","OZLA PICTURES INC",,,"1800 CAMINO PALMERO ST",,"LOS ANGELES","CA","900462202",,,,,,,,,,,,,,,,,,"954362816","3238760180","711510","OZLA PICTURES INC",,"1800 CAMINO PALMERO ST",,"LOS ANGELES","CA","900462202",,,,,,,"954362816","3238760180",,,,"2011-02-15T15:51:33-0600","TAKASHIGE ICHISE",,,,,8,0,0,0,0,0,0,0,0,,"2E2A3D","4H","0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",, "20110222123346P030067461744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IRRA-TECH, INC. 401K PLAN","001","2000-01-01","IRRA-TECH, INC.",,,"18 MERRITT STREET",,"PORT CHESTER","NY","105733503",,,,,,,,,,,,,,,,,,"133500219","9149377273","812990","IRRA-TECH, INC.",,"18 MERRITT STREET",,"PORT CHESTER","NY","105733503",,,,,,,"133500219","9149377273",,,,"2011-02-22T12:32:31-0600","JOSEPH KENNEDY",,,,,18,13,6,0,19,0,19,19,0,,"2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110222123525P030014248593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAN-USA, INC. 401(K) RETIREMENT PLAN","001","1989-01-01","CAN-USA, INC.",,,"1800 JUTLAND DRIVE",,"HARVEY","LA","70058",,,,,,,,,,,,,,,,,,"721381707","5043281567","541990","CAN-USA, INC.",,"1800 JUTLAND DRIVE",,"HARVEY","LA","70058",,,,,,,"721381707","5043281567",,,,"2011-02-22T12:33:42-0600","CLAYTON HINYUP",,,,,87,95,0,4,99,0,99,18,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110218092943P040003969735001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAIRY DIRECTIONS, INC. 401K PLAN","001","2002-01-01","DAIRY DIRECTIONS, INC.",,,"PO BOX 560",,"MONROE","WI","535660560",,,,,,,,,,,,,,,,,,"752978760","6083254100","112120","DAIRY DIRECTIONS, INC.",,"PO BOX 560",,"MONROE","WI","535660560",,,,,,,"752978760","6083254100",,,,"2011-02-18T09:28:37-0600","PAUL BARRETT",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K2R2F3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-18","Filed with authorized/valid electronic signature",, "20110217093334P030001671314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DON YAGGIE & SONS FARMS 401(K) PLAN","001","1990-01-01","DON YAGGIE FARMS",,,"2642 STATE HIGHWAY 210",,"BRECKENRIDGE","MN","565209661",,,,,,,,,,,,,,,,,,"410922806","2186434572","111900","DON YAGGIE FARMS",,"2642 STATE HIGHWAY 210",,"BRECKENRIDGE","MN","565209661",,,,,,,"410922806","2186434572",,,,"2011-02-17T09:28:59-0600","MICHAEL YAGGIE",,,,,5,12,0,3,15,0,15,11,0,,"2E2J2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110215115728P030049619360001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","1","0","0","0",,"COMFORT KEEPERS 401K PLAN","001","2006-01-01","CLARK ENTERPRISES 407 LLC",,,"1398 N. OAKLAND AVE.",,"DECATUR","IL","62526",,,,,,,,,,,,,,,,,,"352188484","2174296666","621610","CLARK ENTERPRISES 407 LLC",,"1398 N. OAKLAND AVE.",,"DECATUR","IL","62526",,,,,,,"352188484","2174296666",,,,"2011-02-15T11:57:19-0600","CHRISTINA CLARK",,,,,47,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",, "20110215120111P030003303511001","2008-05-01","2009-04-30","2",,"0","1","0","0","0","0","0","0","0",,"LYCAM, INC. PROFIT SHARING PLAN","001","2002-05-01","LYCAM, INC.",,"LEXINGTON FINANCIAL MANAGEMENT, INC.","9350 WILSHIRE BLVD., SUITE 250",,"BEVERLY HILLS","CA","90212",,,,,,,,,,,,,,,,,,"954589220","3102889970","711510","LYCAM, INC.",,"C/O LEXINGTON FINANCIAL MANAGEMENT,",,"BEVERLY HILLS","CA","90212",,,,,,,"954589220","3102889970",,,,"2011-02-15T12:00:20-0600","R. MARTIN CAMPBELL",,,,,1,2,0,0,2,0,2,2,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",, "20110215120236P030001519490001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","1","0","0","0",,"BLACK HILLS ENDODONTIC ASSOCIATES DEFINED BENEFIT PLAN & TRUST","001","2001-01-01","BLACK HILLS ENDODONTIC ASSOCIATES",,,"2525 W. MAIN STREET, SUITE 206",,"RAPID CITY","SD","57702",,,,,,,,,,,,,,,,,,"460450436","6053484868","621210","BLACK HILLS ENDODONTIC ASSOCIATES",,"2525 W. MAIN STREET, SUITE 206",,"RAPID CITY","SD","57702",,,,,,,"460450436","6053484868",,,,"2011-02-15T12:02:24-0600","MARK E HOGG, DDS","2011-02-15T12:02:24-0600","MARK E HOGG, DDS",,,4,0,0,0,0,0,0,,0,,"1A3E",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110216083420P040001687698001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BRENT SCOTT, D.O. SAVINGS INCENTIVE PLAN","001","2005-01-01","BRENT SCOTT, D.O. EAR, NOSE & THROAT, P.C.",,,"3317 SHADOW VALLEY DR.",,"EDMOND","OK","73034",,,,,,,,,,,,,,,,,,"201024781","4053301131","621111","BRENT SCOTT, D.O. EAR, NOSE & THROAT, P.C.",,"3317 SHADOW VALLEY DR.",,"EDMOND","OK","73034",,,,,,,"201024781","4053301131",,,,"2011-02-16T08:34:08-0600","BRENT SCOTT",,,,,5,3,1,0,4,0,4,3,0,,"2E2F2J2K2A3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110216083428P030003455335001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"AMERICAN CENTER FOR INTERNATIONAL LABOR SOLIDARITY","502","2005-01-01","AMERICAN CENTER FOR INTERNATIONAL LABOR SOLIDARITY","SOLIDARITY CENTER",,"888 16TH STREET, NW, SUITE 400",,"WASHINGTON","DC","20006",,,,,,,"888 16TH STREET, NW, SUITE 400",,"WASHINGTON","DC","20006",,,,,,,"521984713","2029748383","813930","AMERICAN CENTER FOR INTERNATIONAL LABOR SOLIDARITY",,"888 16TH STREET, NW, SUITE 400",,"WASHINGTON","DC","20006",,,,,,,"521984713","2029748383",,,,"2011-02-16T08:33:55-0600","LISA HUMPHRIES",,,,,143,92,45,0,137,0,137,,0,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110216083729P040001687874001","2008-09-01","2009-08-31","2",,"0","0","0","0","0","0","0","1","0",,"BEAL FUNERAL HOMES PROFIT SHARING PLAN","001","2000-09-01","BEAL FUNERAL HOMES, INC",,,"P.O. BOX 266",,"NEW GLARUS","WI","53574",,,,,,,"29 6TH AVENUE",,"NEW GLARUS","WI","53574",,,,,,,"391336132","6084243771","812210","BEAL FUNERAL HOMES, INC",,"P.O. BOX 266",,"NEW GLARUS","WI","53574",,,,,,,"391336132","6084243771",,,,"2011-02-16T08:36:27-0600","BRADLEY BEAL",,,,,2,2,,,2,,2,,,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110216093008P040011302977001","2010-01-01","2010-12-31","2",,,,,,"1",,,,,,"DERMATOLOGY & SKIN SURGERY PROFIT SHARING PLAN","001","1998-01-01","DERMATOLOGY & SKIN SURGERY",,,"325 BROAD STREET SUITE 200",,"SUMTER","SC","29151",,,,,,,,,,,,,,,,,,"571053286","8037754469","621111","DERMATOLOGY & SKIN SURGERY",,"325 BROAD STREET SUITE 200",,"SUMTER","SC","29151",,,,,,,"571053286","8037754469",,,,"2011-02-16T09:18:05-0600","PHILLIP LATHAM","2011-02-16T09:18:20-0600","PHILLIP LATHAM",,,13,14,0,0,14,0,14,14,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110215175716P040010965361001","2002-09-01","2003-08-31","2",,"0","0","0","0","0","0","0","1","0",,"THE DALLAS INSTITUTE OF HUMANITIES AND CULTURE 403(B) PLAN","001","1999-09-01","THE PEGASUS FOUNDATION","THE DALLAS INSTITUTE OF HUMANITIES AND CULTURE",,"2719 ROUTH STREET",,"DALLAS","TX","75201",,,,,,,,,,,,,,,,,,"751721049","2149818820","813000","THE PEGASUS FOUNDATION",,"2719 ROUTH STREET",,"DALLAS","TX","75201",,,,,,,"751721049","2149818820",,,,"2011-02-15T17:53:06-0600","PATRICIA MARTIN",,,,,0,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",, "20110222170205P040067301216001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"YESTECH, INC. 401K PROFIT SHARING PLAN","001","2004-01-01","YESTECH, INC.",,,"1317 CALLE AVANZADO",,"SAN CLEMENTE","CA","926736351",,,,,,,,,,,,,,,,,,"810587488","9493612714","541990","YESTECH, INC.",,"1317 CALLE AVANZADO",,"SAN CLEMENTE","CA","92673",,,,,,,"810587488","9493612714",,,,"2011-02-22T16:57:43-0600","DONALD MILLER",,,,,18,0,0,18,18,0,18,18,,,"2E2F2G2J2R",,"0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110216162557P030011021953001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MCNAMARA LAW FIRM EMPLOYEE BENEFITS PLAN","501","1991-03-01","MCNAMARA, NEY, BEATTY, ET AL., LLP",,,"1211 NEWELL AVENUE",,"WALNUT CREEK","CA","945965331",,,,,,,,,,,,,,,,,,"941555712","9259395330","541110","MCNAMARA, NEY, BEATTY, ET AL., LLP",,"1211 NEWELL AVENUE",,"WALNUT CREEK","CA","945965331",,,,,,,"941555712","9259395330",,,,"2011-02-16T15:58:11-0600","THOMAS BEATTY",,,,,126,117,0,0,117,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110225130323P040016269473001","2007-08-01","2008-07-31","2",,"0","0","0","0","0","0","0","0","0",,"ECONOMICAL WHOLESALE, INC. PROFIT SHARING PLAN","001","1975-08-01","ECONOMICAL WHOLESALE, INC",,,"POST OFFICE BOX 460",,"BELLE ROSE","LA","70431",,,,,,,,,,,,,,,,,,"720755875","2254738585","424400","ECONOMICAL WHOLESALE, INC",,"POST OFFICE BOX 460",,"BELLE ROSE","LA","70431",,,,,,,"720755875","2254738585",,,,"2011-02-25T12:55:28-0600","DAVID WINKLER",,,,,16,13,1,2,16,0,16,0,0,,"2E3E","4B","1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-02-25","Filed with authorized/valid electronic signature",, "20110228090901P030002530450001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"C.A.T.S. 401(K) PLAN","001","2006-11-01","CENTER OF ARTS TECHNOLOGY AND SCIENCE",,,"961 1ST ST",,"LAFAYETTE","CA","945494415",,,,,,,"961 1ST ST",,"LAFAYETTE","CA","945494415",,,,,,,"680486357","9252834500","713900","CENTER OF ARTS TECHNOLOGY AND SCIENCE",,"961 1ST ST",,"LAFAYETTE","CA","945494415",,,,,,,"680486357","9252834500",,,,"2011-02-27T19:32:33-0600","CHRISTOPHER CHENG",,,,,8,9,0,0,9,0,9,6,0,,"2E2F2G2J3E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110214162413P040010328305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN FEDERAL EMPLOYEE STOCK OWNERSHIP PLAN","003","2000-01-01","AMERICAN FEDERAL SAVINGS BANK",,,"P.O. BOX 4999",,"HELENA","MT","59601",,,,,,,"1400 PROSPECT",,"HELENA","MT","59601",,,,,,,"810105500","4064423080","522120","AMERICAN FEDERAL SAVINGS BANK",,"P.O. BOX 4999",,"HELENA","MT","59601",,,,,,,"810105500","4064423080",,,,"2011-02-14T16:24:05-0600","CLINT MORRISON",,,,,98,80,0,24,104,0,104,104,3,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",, "20110224094509P030002226482001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FIVE STAR METALS, INC PROFIT SHARING PLAN","001","1988-01-01","FIVE STAR METALS, INC.",,,"P.O. BOX 800460",,"HOUSTON","TX","772800460",,,,,,,,,,,,,,,,,,"760003777","7134661491","423500","FIVE STAR METALS, INC.",,"P.O. BOX 800460",,"HOUSTON","TX","772800460",,,,,,,"760003777","7134661491",,,,"2011-02-24T09:30:55-0600","LINDA L. CHAPMAN",,,,,27,23,2,2,27,0,27,27,2,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",, "20110225131438P030015952161003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LOWRY DENTAL LLP 401K PROFIT SHARING PLAN","001","1985-07-01","LOWRY DENTAL, LLP",,,"9460 FRANKLIN ROAD",,"BOISE","ID","83709",,,,,,,,,,,,,,,,,,"412034159","2083770410","621210","LOWRY DENTAL, LLP",,"9460 FRANKLIN ROAD",,"BOISE","ID","83709",,,,,,,"412034159","2083770410",,,,"2011-02-28T03:38:06-0600","F. BRION LOWRY",,,,,30,26,,5,31,,31,31,,,"2A2E2F2G2J2K",,,,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-02-25","Filed with authorized/valid electronic signature",, "20110224110456P040015697329001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"CALIFORNIA OLIVE COMMITTEE MONEY PURCHASE PENSION PLAN","001","1981-09-01","CALIFORNIA OLIVE COMMITTEE","C/O THE PRICE COMPANY",,"5151 N PALM AVENUE, SUITE 920",,"FRESNO","CA","93704",,,,,,,,,,,,,,,,,,"941611027","5592247656","115110","CALIFORNIA OLIVE COMMITTEE",,"5151 N PALM AVENUE, SUITE 920",,"FRESNO","CA","93704",,,,,,,"941611027","5592247656",,,,"2011-02-24T11:04:35-0600","MICHAEL SILVEIRA","2011-02-24T11:04:35-0600","MICHAEL SILVEIRA",,,2,0,0,0,0,0,0,0,0,,"2C3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110224153009P040015788193001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"FINANCIAL TAPESTRY LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2002-01-01","FINANCIAL TAPESTRY LLC",,,"7131 TURWESTON LANE",,"CASTLE ROCK","CO","80108",,,,,,,,,,,,,,,,,,"233068181","3036886381","541990","FINANCIAL TAPESTRY LLC",,"7131 TURWESTON LANE",,"CASTLE ROCK","CO","80108",,,,,,,"233068181","3036886381",,,,"2011-02-24T14:15:44-0600","ALAN LORDI","2011-02-24T14:15:53-0600","ALAN LORDI",,,2,0,0,0,0,0,0,,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110225123642P030015936369001","2010-01-01","2010-09-29","2",,"0","0","1","1","0","0","0","0","0",,"SUNBURST CARE CENTER, INC. DEFINED BENEFIT PENSION PLAN","001","2002-01-01","SUNBURST CARE CENTER, INC.",,,"19684 LOS ALIMOS STREET",,"CHATSWORTH","CA","913111934",,,,,,,,,,,,,,,,,,"460471942","8188310625","623000","SUNBURST CARE CENTER, INC.",,"19684 LOS ALIMOS STREET",,"CHATSWORTH","CA","913111934",,,,,,,"460471942","8188310625",,,,"2011-02-25T12:35:10-0600","PERRY RASO",,,,,5,0,0,0,0,0,0,,0,,"1A1G1I1H",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-25","Filed with authorized/valid electronic signature",, "20110223232824P040070501920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEPHEN DEMAINE C.P.A. PROFIT SHARING PLAN","001","1992-01-01","STEPHEN DEMAINE C.P.A.",,,"P.O. BOX 301268",,"ESCONDIDO","CA","920301268",,,,,,,,,,,,,,,,,,"330509446","7604892707","541211","STEPHEN DEMAINE C.P.A.",,"P.O. BOX 301268",,"ESCONDIDO","CA","920301268",,,,,,,"330509446","7604892707",,,,"2011-02-23T23:28:12-0600","STEPHEN DEMAINE CPA",,,,,2,1,0,1,2,0,2,2,0,,"2E2F2J2K2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",, "20110224150418P040072189648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEEKLY DISABILITY INCOME INSURANCE FOR EMPLOYEES OF MCH HEALTH SYSTEMS","505","2003-01-01","MEMORIAL COMMUNITY HOSPITAL",,,"810 NORTH 22ND STREET",,"BLAIR","NE","68008",,,,,,,,,,,,,,,,,,"470426285","4024262182","622000","MEMORIAL COMMUNITY HOSPITAL",,"810 NORTH 22ND STREET",,"BLAIR","NE","68008",,,,,,,"470426285","4024262182",,,,"2011-02-24T13:49:05-0600","NICOLE KREITEL","2011-02-22T11:45:00-0600","SALLY HARVEY",,,244,256,0,0,256,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110225074911P040073952336001","2010-01-01","2010-12-31","2",,,"0",,,,"0","0","0","0",,"QUAKERTOWN VETERINARY CLINIC PC PROFIT SHARING PLAN","001","1998-01-01","QUAKERTOWN VETERINARY CLINIC PC",,,"2250 N OLD BETHLEHEM PIKE",,"QUAKERTOWN","PA","189513948",,,,,,,,,,,,,,,,,,"232705703","2155362726","541940","SAME",,"2250 N OLD BETHLEHEM PIKE",,"QUAKERTOWN","PA","189513948",,,,,,,"232705703","2155362726",,,,"2011-02-25T07:49:03-0600","KENNETH KUZMA","2011-02-25T07:49:03-0600","KENNETH KUZMA",,,54,87,0,0,87,0,87,5,0,,"3D2E2F2G2J2T",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110224134512P030015401953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MURPHY AND HARTELIUS 401(K) PLAN","002","2005-01-01","MURPHY AND HARTELIUS",,,"48 SECOND AVE.",,"SAN MATEO","CA","94401",,,,,,,,,,,,,,,,,,"941712886","6503442997","315220","MURPHY AND HARTELIUS",,"48 SECOND AVE.",,"SAN MATEO","CA","94401",,,,,,,"941712886","6503442997",,,,"2011-02-24T13:44:48-0600","WEI GUO YU",,,,,32,34,0,0,34,0,34,34,0,,"2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",, "20110311153733P040003580674001","2010-10-12","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"WEST BUSINESS CONCEPTS, INC. PROFIT SHARING PLAN","001","2010-10-12","WEST BUSINESS CONCEPTS, INC.",,,"3502 50TH AVE NE",,"TACOMA","WA","98422",,,,,,,,,,,,,,,,,,"273659404","2535177758","541600","WEST BUSINESS CONCEPTS, INC.",,"3502 50TH AVE NE",,"TACOMA","WA","98422",,,,,,,"273659404","2535177758",,,,"2011-03-11T14:59:48-0600","MELVIN WEST",,,,,2,2,0,0,2,0,2,1,0,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110311144018P030023624145001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CORE MAIONE SERVICES 401(K) PLAN AND TRUST","001","2003-09-01","CORE MANAGEMENT SERVICES LLC",,,"111 GRANT AVE",,"ENDICOTT","NY","137605477",,,,,,,"111 GRANT AVE",,"ENDICOTT","NY","137605477",,,,,,,"161488462","6077867738","541990","CORE MANAGEMENT SERVICES LLC",,"111 GRANT AVE",,"ENDICOTT","NY","137605477",,,,,,,"161488462","6077867738",,,,"2011-03-11T14:27:17-0600","DAVID MAIONE",,,,,95,61,0,23,84,0,84,84,0,,"2E2G2J2T3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110314113848P040025347505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVIES, TUCKER, & ASSOCIATES, LLC PROFIT SHARING PLAN","001","1985-01-01","DAVIES, TUCKER, & ASSOCIATES, LLC",,,"434 CARR AVENUE",,"HOMEWOOD","AL","35209",,,,,,,,,,,,,,,,,,"630503515","2059425144","541940","DAVIES, TUCKER, & ASSOCIATES, LLC",,"434 CARR AVENUE",,"HOMEWOOD","AL","35209",,,,,,,"630503515","2059425144",,,,"2011-03-14T11:37:49-0500","BRIAN DAVIES",,,,,17,16,0,1,17,0,17,17,0,,"2E3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110316115643P040026571185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KELLEY EROSION CONTROL, INC. PROFIT SHARING PLAN","001","1994-07-01","KELLEY EROSION CONTROL, INC",,,"2395-B TAMPA STREET",,"RENO","NV","89512",,,,,,,,,,,,,,,,,,"880315390","7753227755","238900","CLAUDIA J. CHAMBERS",,"2395-B TAMPA STREET",,"RENO","NV","89512",,,,,,,"880315390","7753227755",,,,"2011-03-16T11:48:26-0500","CLAUDIA CHAMBERS",,,,,2,2,,,2,,2,2,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110316170030P030026449473001","2005-01-01","2005-12-31","2",,"0","1","0","0","0","0","0","0","0",,"KD CONSTRUCTION, INC. EMPLOYEE STOCK OWNERSHIP PLAN","005","2002-01-01","KD CONSTRUCTION, INC.",,,"1015 PAAPU STREET",,"HONOLULU","HI","96819",,,,,,,,,,,,,,,,,,"990265298","8088470229","236110","KD CONSTRUCTION, INC.",,"1015 PAAPU STREET",,"HONOLULU","HI","96819",,,,,,,"990265298","8088470229",,,,"2011-03-16T17:00:23-0500","LESLIE KEARNS AS PREPARER",,,,,17,10,0,7,17,0,17,17,2,,"2I2P2Q",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110317110434P030026869073001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"MATERNAL INFANT SERVICE NETWORK OF ORANGE, SULLIVAN & ULSTER INC DEFINED CONTRIBUTION PLAN","001","1991-12-01","MATERNAL INFANT SERVICE NETWORK OF ORANGE, SULLIVAN & ULSTER, INC.",,,"200 ROUTE 32","PO BOX 548","CENTRAL VALLEY","NY","10917",,,,,,,"200 ROUTE 32","PO BOX 548","CENTRAL VALLEY","NY","10917",,,,,,,"061286045","8459287448","624100","MATERNAL INFANT SERVICE NETWORK OF ORANGE, SULLIVAN & ULSTER, INC.",,"200 ROUTE 32","PO BOX 548","CENTRAL VALLEY","NY","10917",,,,,,,"061286045","8459287448",,,,"2011-03-17T11:04:20-0500","YVONNE VAN TASSEL",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",, "20110318130654P030027426977001","2001-10-01","2002-09-30","2",,"0","0","0","0","0","0","0","1","0",,"MAGID GLOVE & SAFETY MANUFACTURING CO LLC LIFE AND AD&D PLAN","507","1997-10-01","MAGID GLOVE & SAFETY MANUFACTURING CO LLC",,,"2060 N KOLMAR AVENUE",,"CHICAGO","IL","606393418",,,,,,,,,,,,,,,,,,"364057654","7733842070","339900","MAGID GLOVE & SAFETY MANUFACTURING CO LLC",,"2060 N KOLMAR AVENUE",,"CHICAGO","IL","606393418",,,,,,,"364057654","7733842070",,,,"2011-03-18T13:05:06-0500","CHUCK PALID",,,,,392,368,0,0,368,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110321184523P030029171681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"A TURNING POINTE PHYSICAL THERAPY EMPLOYEE SAVINGS PLAN","001","2009-01-01","A TURNING POINTE PHYSICAL THERAPY",,,"315 W. 9TH AVENUE, SUITE 100",,"SPOKANE","WA","99204",,,,,,,,,,,,,,,,,,"260735559","5093268878","621340","A TURNING POINTE PHYSICAL THERAPY",,"315 W. 9TH AVENUE, SUITE 100",,"SPOKANE","WA","99204",,,,,,,"260735559","5093268878",,,,"2011-03-21T18:45:21-0500","DALE STEVENS",,,,,12,12,0,1,13,0,13,11,1,,"2E2J2K2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",, "20110313114009P040007860231001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARVEY & COMPANY LLC 401(K) PLAN","001","2000-04-01","HARVEY & COMPANY LLC",,"TIMOTHY P BLOCK","5000 BIRCH STREET","SUITE 9200","NEWPORT BEACH","CA","92660",,,,,,,"5000 BIRCH STREET","SUITE 9200","NEWPORT BEACH","CA","92660",,,,,,,"330795092","9497570400","522190","HARVEY & COMPANY LLC","TIMOTHY P BLOCK","5000 BIRCH STREET","SUITE 9200","NEWPORT BEACH","CA","92660",,,,,,,"330795092","9497570400",,,,"2011-03-13T11:39:59-0500","TIMOTHY BLOCK",,,,,20,17,0,10,27,0,27,27,,,"2E2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-13","Filed with authorized/valid electronic signature",, "20110316144108P030026396577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CRAFT CHIROPRACTIC CENTER, P.C. PROFIT SHARING PLAN","004","1996-01-01","CRAFT CHIROPRACTIC CENTER, P.C.",,,"223 LANSING RD.",,"CHARLOTTE","MI","48813",,,,,,,"P.O. BOX 236",,"CHARLOTTE","MI","48813",,,,,,,"383292079","5175431115","621310","CRAFT CHIROPRACTIC CENTER, P.C.",,"223 LANSING RD.",,"CHARLOTTE","MI","48813",,,,,,,"383292079","5175431115",,,,"2011-03-16T14:41:00-0500","LINDA D. PULVER",,,,,15,14,0,2,16,0,16,16,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110311154954P030023650001001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"GOODE MOTOR, INC 401(K) RETIREMENT SAVINGS PLAN AND TRUST","001","1995-12-16","GOODE MOTOR, INC.",,,"P.O. BOX 130","1096 EAST MAIN STREET","BURLEY","ID","83318",,,,,,,,,,,,,,,,,,"820277802","2088780491","441110","GOODE MOTOR, INC.",,"P.O. BOX 130","1096 EAST MAIN STREET","BURLEY","ID","83318",,,,,,,"820277802","2088780491",,,,"2011-03-11T03:49:11-0600","RUSSELL BAIR",,,,,32,30,0,9,39,0,39,9,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110313154751P040115382304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVID S. SILVERSTEIN, M.D., A PROFESSIONAL CORPORATION PROFIT SHARING PLAN","002","1982-08-01","DAVID S. SILVERSTEIN, M.D., A PROFESSIONAL CORPORATION",,,"2512 SAMARITAN COURT, SUITE C",,"SAN JOSE","CA","951244002",,,,,,,,,,,,,,,,,,"942825149","4083583646","621111","DAVID S. SILVERSTEIN, M.D., A PROFESSIONAL CORPORATION",,"2512 SAMARITAN COURT, SUITE C",,"SAN JOSE","CA","951244002",,,,,,,"942825149","4083583646",,,,"2011-03-13T15:44:15-0500","DAVID SILVERSTEIN",,,,,1,3,0,0,3,0,3,3,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-13","Filed with authorized/valid electronic signature",, "20110314133009P040003812866003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RCL DEVELOPERS, INC. PROFIT SHARING PLAN","002","1987-01-01","RCL DEVELOPERS, INC.",,,"28 OLD FARM DRIVE",,"NEWINGTON","CT","061111815",,,,,,,,,,,,,,,,,,"061197417","8606670013","236110","RCL DEVELOPERS, INC.",,"28 OLD FARM DRIVE",,"NEWINGTON","CT","061111815",,,,,,,"061197417","8606670013",,,,"2011-03-14T10:34:30-0500","RICHARD DIGNAZIO",,,,,2,2,0,0,2,0,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110316202035P030124236112001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WASHINGTON FORESTRY 401 (K) PROFIT SHARING PLAN & TRUST","001","2000-06-01","WASHINGTON FORESTRY CONSULTANTS",,,"1919 YELM HWY SE",,"OLYMPIA","WA","98501",,,,,,,"1919 YELM HWY SE",,"OLYMPIA","WA","98501",,,,,,,"911691228","3609431723","541990","WASHINGTON FORESTRY CONSULTANTS",,"1919 YELM HWY SE",,"OLYMPIA","WA","98501",,,,,,,"911691228","3609431723",,,,"2011-03-16T20:18:44-0500","RONDI WRIGHT",,,,,12,12,0,0,12,,12,10,,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110316220806P030026569473001","2007-01-01","2007-12-31","2",,"0","1","1","0","0","0","0","0","0",,"EMPLOYEE BENEFIT PLAN OF GREAT TRAIL GIRL SCOUT COUNCIL","002","2000-01-01","GREAT TRAIL GIRL SCOUT COUNCIL",,,"ONE GIRL SCOUT WAY",,"MACEDONIA","OH","440562156",,,,,,,,,,,,,,,,,,"340714414","3308649933","813000","GREAT TRAIL GIRL SCOUT COUNCIL",,"ONE GIRL SCOUT WAY",,"MACEDONIA","OH","440562156",,,,,,,"340714414","3308649933",,,,"2011-03-16T16:18:39-0500","JOHN GRAVES",,,,,17,0,0,0,0,,0,0,,,"2E2J2K",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110317073945P030003921906001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FARMERS' EDUCATIONAL & CO-OPERATIVE UNION OF AMERICA 401(K) SAVINGS AND INVESTMENT PLAN & TRUST","007","1998-02-01","FARMERS EDUCATIONAL & CO-OPERATIVE UNION OF AMERICA",,,"20 F STREET, N.W.","SUITE 300","WASHINGTON","DC","20001",,,,,,,,,,,,,,,,,,"840200555","3033382515","813000","FARMERS EDUCATIONAL & CO-OPERATIVE UNION OF AMERICA",,"20 F STREET, N.W.","SUITE 300","WASHINGTON","DC","20001",,,,,,,"840200555","3033382515",,,,"2011-03-17T07:28:37-0500","JEFF KNUDSON",,,,,34,17,0,17,34,0,34,34,0,,"2E2J2K2G",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",, "20110321131540P040004379234001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PHILADELPHIA RESERVE SUPPLY COMPANY 401 (K) PROFIT SHARING PLAN","003","1990-12-01","PHILADELPHIA RESERVE SUPPLY COMPANY",,,"200 MACK DRIVE",,"CROYDON","PA","19021",,,,,,,"200 MACK DRIVE",,"CROYDON","PA","19021",,,,,,,"230973030","2157853141","423300","CHARLES E. GORMLEY",,"200 MACK DRIVE",,"CROYDON","PA","19021",,,,,,,"230973030","2157853141",,,,"2011-03-21T13:02:24-0500","CHARLES E. GORMLEY",,,,,17,18,0,0,18,0,18,0,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1",,,,"FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",, "20110321103417P030028989409001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GREG L OFFENBURGER DDS INC PROFIT SHARING PLAN","001","1974-01-04","GREG L OFFENBURGER DDS INC",,,"1495 MORSE RD",,"COLUMBUS","OH","43229",,,,,,,,,,,,,,,,,,"310797401","6142684730","621210","GREG L OFFENBURGER DDS INC",,"1495 MORSE RD",,"COLUMBUS","OH","43229",,,,,,,"310797401","6142684730",,,,"2011-03-21T10:33:54-0500","MARY JO HARTMAN",,,,,5,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",, "20110311180503P030111415296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEWIS CORPORATION 401K PROFIT SHARING PLAN","001","2000-01-01","LEWIS CORPORATION",,,"15136 HUNZIKER RD.",,"POCATELLO","ID","832025349",,,,,,,,,,,,,,,,,,"820525173","2082381202","238900","LEWIS CORPORATION",,"15136 HUNZIKER RD.",,"POCATELLO","ID","832025349",,,,,,,"820525173","2082381202",,,,"2011-03-11T17:59:32-0600","WAYLIN LEWIS",,,,,65,38,0,18,56,0,56,45,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110314105741P030118053184001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TED L C HUPPERT DDS 401K PROFIT SHARING PLAN","001","1993-01-01","TED L C HUPPERT DDS",,"DR. TED HUPPERT","2424 STRINGTOWN RD",,"EVANSVILLE","IN","47711",,,,,,,,,,,,,,,,,,"611431506","8124242400","621210","TED L C HUPPERT DDS","DR. TED HUPPERT","2424 STRINGTOWN RD",,"EVANSVILLE","IN","47711",,,,,,,"611431506","8124242400",,,,"2011-03-14T10:57:40-0500","DR. TED HUPPERT",,,,,14,5,0,8,13,0,13,13,0,,"2E2F2G2J2K2R3D2A",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110316150103P040026653281001","2003-01-01","2003-12-31","2",,"1","0","0","0","0","0","0","1","0",,"ROGERS PARK ONE DAY SURGERY CENTER 401(K) PROFIT SHARING PLAN & TRUST","001","2003-09-01","ROGERS PARK ONE DAY SURGI-CENTER",,,"7616 N. PAULINA",,"CHICAGO","IL","60626",,,,,,,,,,,,,,,,,,"364208714","7737610500","621493","ROGERS PARK ONE DAY SURGI-CENTER",,"7616 N. PAULINA",,"CHICAGO","IL","60626",,,,,,,"364208714","7737610500",,,,"2011-03-16T14:59:01-0500","ANITA NAYAK",,,,,0,51,0,0,51,0,51,8,0,,"2E2G2J3E",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110316141054P030026387505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AEB PROPERTIES, INC. 401(K) PLAN","001","2002-01-01","AEB PROPERTIES, INC.",,,"3010 HIGHWAY 48",,"SUMMERVILLE","GA","30747",,,,,,,,,,,,,,,,,,"582627901","7068574930","531310","AEB PROPERTIES, INC.",,"3010 HIGHWAY 48",,"SUMMERVILLE","GA","30747",,,,,,,"582627901","7068574930",,,,"2011-03-16T13:42:53-0500","ANTHONY BRYANT","2011-03-16T13:42:53-0500","ANTHONY BRYANT",,,2,2,,,2,,2,2,0,,"2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110318112238P040127710560001","1993-07-01","1994-06-30","2",,"0","0","0","0","0","0","0","1","0",,"MAGID GLOVE & SAFETY MANUFACTURING CO LLC BENEFITS PLAN","506","1992-07-01","MAGID GLOVE & SAFETY MANUFACTURING CO LLC",,,"2060 N KOLMAR AVENUE",,"CHICAGO","IL","606393418",,,,,,,,,,,,,,,,,,"364057654","7733842070","339900","MAGID GLOVE & SAFETY MANUFACTURING CO LLC",,"2060 N KOLMAR AVENUE",,"CHICAGO","IL","606393418",,,,,,,"364057654","7733842070",,,,"2011-03-18T11:20:29-0500","CHUCK PALID",,,,,200,189,3,0,192,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110314165904P030025312497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSOLIDATED PUBLISHING HEALTH INSURANCE PLAN","503","1936-01-01","CONSOLIDATED PUBLISHING CO., INC.",,,"P.O. BOX 189",,"ANNISTON","AL","36206",,,,,,,"4305 MCCLELLAN BLVD.",,"ANNISTON","AL","36206",,,,,,,"630048050","2562361551","511110","CONSOLIDATED PUBLISHING CO., INC.",,"P.O. BOX 189",,"ANNISTON","AL","36206",,,,,,,"630048050","2562361551",,,,"2011-03-14T16:58:58-0500","SCOTT CALHOUN",,,,,118,103,0,0,103,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110317140406P040027170561001","2010-01-01","2010-06-03","2",,"0","0","1","1","1","1","0","0","0",,"SAVINGS PLAN OF ENTERGY CORPORATION AND SUBSIDIARIES II","009","2001-09-06","ENTERGY CORPORATION",,,"639 LOYOLA AVE.","L-ENT-12B EB AND C","NEW ORLEANS","LA","70113",,,,,,,,,,,,,,,,,,"721229752","5045764000","221100","EMPLOYEE BENEFITS COMMITTEE OF ENTERGY CORPORATION",,"639 LOYOLA AVE.","L-ENT-12B EB AND C","NEW ORLEANS","LA","70113",,,,,,,"721269450","5045764000",,,,"2011-03-02T10:12:54-0600","THEODORE BUNTING","2011-03-17T13:58:59-0500","JOSEPH HENDERSON",,,466,0,0,0,0,0,0,0,0,,"2E2F2G2I2J2K2O3F3H",,,,"1",,,,"1",,"1",,,"1",,,,,"1",,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110311141959P040023900097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TAHITI TOURISME NORTH AMERICA, INC. 401K PLAN","001","2000-01-01","TAHITI TOURISME NORTH AMERICA, INC.",,,"300 CONTINENTAL BLVD STE 160",,"EL SEGUNDO","CA","902455046",,,,,,,,,,,,,,,,,,"954511381","3104148484","541800","TAHITI TOURISME NORTH AMERICA, INC.",,"300 CONTINENTAL BLVD STE 160",,"EL SEGUNDO","CA","902455046",,,,,,,"954511381","3104148484",,,,"2011-03-11T14:13:44-0600","AL KEAHI",,,,,10,8,0,0,8,0,8,8,0,,"2E2J3H2A3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110314141810P040025417137001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","1","0",,"CHINO MEDICAL GROUP, INC. 401(K) PLAN","001","1993-06-01","CHINO MEDICAL GROUP, INC.",,,"5475 WALNUT AVENUE",,"CHINO","CA","91710",,,,,,,,,,,,,,,,,,"330204654","9095916446","621111","CHINO MEDICAL GROUP, INC.",,"5475 WALNUT AVENUE",,"CHINO","CA","91710",,,,,,,"330204654","9095916446",,,,"2011-03-14T14:07:31-0500","LISA WISE",,,,,127,72,0,36,108,0,108,72,21,,"2F2G2J2K3E3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110314125546P040025380529001","2007-12-01","2008-11-30","2",,"0","1","0","0","0","1","0","0","0",,"LRH OPERATING GROUP, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","2000-11-29","LRH OPERATING GROUP, INC.",,,"23232 TASMANIA CIRCLE",,"DANA POINT","CA","92629",,,,,,,,,,,,,,,,,,"330936738","9493881763","523900","ERNEST S. RYDER & ASSOCIATES, INC. APLC",,"11440 WEST BERNARDO COURT SUITE 170",,"SAN DIEGO","CA","92127",,,,,,,"330691034","8586748000",,,,"2011-03-14T12:54:30-0500","ERNEST S. RYDER",,,,,2,2,0,0,2,0,2,2,0,,"2J2P",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110316151440P040026658609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIBERTY AMBULANCE SERVICE, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1997-12-15","LIBERTY AMBULANCE SERVICE, INC.",,,"1626 ATLANTIC UNIVERSITY CIRCLE",,"JACKSONVILLE","FL","32207",,,,,,,,,,,,,,,,,,"592407555","9047210008","485990","LIBERTY AMBULANCE SERVICE, INC.",,"1626 ATLANTIC UNIVERSITY CIRCLE",,"JACKSONVILLE","FL","32207",,,,,,,"592407555","9047210008",,,,"2011-03-16T15:14:39-0500","MICHAEL ASSAF","2011-03-16T15:14:39-0500","MICHAEL ASSAF",,,91,82,1,7,90,0,90,34,0,,"2E2G2J2K3D3H2F",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110316151857P030026415009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICHAEL K. LEARY, P.T., INC. 401(K) PLAN","001","2002-01-01","MICHAEL K. LEARY, P.T., INC.",,,"51 CHIPMAN PLACE",,"SAN ANSELMO","CA","94960",,,,,,,,,,,,,,,,,,"680130774","4153108834","621340","MICHAEL K. LEARY, P.T., INC.",,"51 CHIPMAN PLACE",,"SAN ANSELMO","CA","94960",,,,,,,"680130774","4153108834",,,,"2011-03-14T23:28:05-0500","MICHAEL K. LEARY",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2H2J2K3D2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110316090210P040026497681001","2006-01-01","2006-12-31","3",,"0","0","1","0","0","0","0","1","0",,"AQUION PARTNERS 401K PLAN","002","1999-06-01","AQUION PARTNERS LIMITED PARTNERSHIP",,,"2080 LUNT AVENUE",,"ELK GROVE VILLAGE","IL","600075606",,,,,,,,,,,,,,,,,,"363737349","8474379400","312110","AQUION PARTNERS LIMITED PARTNERSHIP",,"2080 LUNT AVENUE",,"ELK GROVE VILLAGE","IL","600075606",,,,,,,"363737349","8474379400",,,,"2011-03-16T09:02:01-0500","ROBERT RUHSTORFER",,,,,190,0,0,0,0,0,0,0,0,,"2E2G2J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110317155650P040027210865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICHAEL W. BELL, D.D.S., INC. RETIREMENT PLAN & TRUST","001","1980-09-30","MICHAEL W. BELL, D.D.S., P.A.",,,"308 HARWOOD ROAD",,"BEDFORD","TX","76021",,,,,,,,,,,,,,,,,,"751677965","8172821241","621210","MICHAEL W. BELL, D.D.S., P.A.",,"308 HARWOOD ROAD",,"BEDFORD","TX","76021",,,,,,,"751677965","8172821241",,,,"2011-03-17T15:56:43-0500","MICHAEL W. BELL, D.D.S.",,,,,7,5,0,0,5,0,5,4,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",, "20110318134151P030027444113001","2008-04-01","2008-12-31","3",,"1","0","0","1","0","0","0","1","0",,"ALPS HEALTH SOLUTIONS IDAHO LAWYERS TRUST GROUP BENEFITS PLAN","501","2008-04-01","ALPS HEALTH SOLUTIONS IDAHO LAWYERS TRUST",,,"111 NORTH HIGGINS AVENUE, SUITE 200",,"MISSOULA","MT","59802",,,,,,,,,,,,,,,,,,"262382976","4067283113","525100","ALPS HEALTH SOLUTIONS IDAHO LAWYERS TRUST",,"111 NORTH HIGGINS AVENUE, SUITE 200",,"MISSOULA","MT","59802",,,,,,,"262382976","4067283113",,,,"2011-03-18T13:41:35-0500","DANIEL SEMAN",,,,,0,45,0,0,45,,,,,,,"4A4D4E","1","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110318114352P040027665505001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALVIN S. WENNEKER, M.D., INC PROFIT SHARING PLAN","001","1975-05-01","ALVIN S. WENNEKER, M.D., INC. PROFIT SHARING PLAN",,,"4 GLEN ABBEY DRIVE",,"ST. LOUIS","MO","631312727",,,,,,,"4 GLEN ABBEY DRIVE",,"ST. LOUIS","MO","631312727",,,,,,,"431048304","3148728740","621111","ALVIN S. WENNEKER, M.D., INC. PROFIT SHARING PLAN",,"4 GLEN ABBEY DRIVE",,"ST. LOUIS","MO","631312727",,,,,,,"431048304","3148728740",,,,"2011-03-15T06:10:52-0500","ALVIN S. WENNEKER",,,,,1,1,,,1,,1,1,,,"2E3D",,"1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110318175230P030002383781001","2008-01-01","2008-12-31","1",,"0","0","0","0","0","0","0","0","0",,"ENCAP TECHNOLOGIES 401 (K) PROFIT SHARING","001","2006-01-01","ENCAP TECHNOLOGIES 401 K PROFIT SHARING PLAN & TRUST",,,"1334 BAY ST",,"ALAMEDA","CA","94501",,,,,,,,,,,,,,,,,,"943330970","5103372700","541990","ENCAP TECHNOLOGIES 401 K PROFIT SHARING PLAN & TRUST",,"1334 BAY ST",,"ALAMEDA","CA","94501",,,,,,,"943330970","5103372700",,,,"2011-03-18T17:50:07-0500","GRIFF NEAL",,,,,4,4,0,0,4,0,4,2,0,1,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110321143847P040135531248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN TRUST & SAVINGS BANK SHORT TERM DISABILITY PLAN","506","1997-01-01","AMERICAN TRUST & SAVINGS BANK",,,"P.O. BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"895 MAIN ST.",,"DUBUQUE","IA","520040938",,,,,,,"420114010","3195821841","522110","AMERICAN TRUST & SAVINGS BANK",,"P.O. BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"420114010","3195821841",,,,"2011-03-21T14:38:40-0500","RONALD J. MUELLER",,,,,227,222,0,0,222,,,,,,,"4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",, "20110314163009P040025467889001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"P.K. DESAI, M.D., INC - PROFIT SHARING PLAN","003","1981-01-01","PK DESAI, MD INC P/S/P TRUST",,,"3884 FEATHER HEIGHT CT",,"DAYTON","OH","45440",,,,,,,,,,,,,,,,,,"310920620","9374775863","621111","PK DESAI, MD INC P/S/P TRUST",,"3884 FEATHER HEIGHT CT",,"DAYTON","OH","45440",,,,,,,"310920620","9374775863",,,,"2011-03-14T17:12:55-0500","P K DESAI","2011-03-14T17:13:11-0500","PRIYAKANT K. DESAI",,,2,,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110314170228P030002199349002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LEGACY ADVISORS, INC 401(K) PROFIT SHARING PLAN","001","2007-01-01","LEGACY ADVISORS, INC.",,,"310 EASTDALE CIRCLE",,"MONTGOMERY","AL","36117",,,,,,,,,,,,,,,,,,"631195860","3342774370","523900","LEGACY ADVISORS, INC.",,"310 EASTDALE CIRCLE",,"MONTGOMERY","AL","36117",,,,,,,"631195860","3342774370",,,,"2011-03-14T11:15:40-0500","ROBERT ADAMS",,,,,5,4,0,1,5,0,5,5,0,,"2A2E2G2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110316103109P030026306977001","1999-01-01","1999-12-31","3",,"0","1","0","0","0","0","0","0","0",,"TANGENT CORPORATION 401(K) PROFIT SHARING PLAN AND TRUST","001","1985-01-01","TANGENT CORPORATION",,,"1901 L STREET, NW, SUITE 705",,"WASHINGTON","DC","20036",,,,,,,,,,,,,,,,,,"521764587","2023319484","561300","TANGENT CORPORATION",,"1901 L STREET, NW, SUITE 705",,"WASHINGTON","DC","20036",,,,,,,"521764587","2023319484",,,,"2011-03-16T10:30:48-0500","THOMAS F BARRETT INC",,,,,11,12,0,0,12,0,12,12,0,0,"2E2G2J2K",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110318114907P030027401025001","2001-07-01","2002-06-30","2",,"0","0","0","0","0","0","0","1","0",,"MAGID GLOVE & SAFETY MANUFACTURING CO LLC BENEFITS PLAN","506","1992-07-01","MAGID GLOVE & SAFETY MANUFACTURING CO LLC",,,"2060 N KOLMAR AVENUE",,"CHICAGO","IL","606393418",,,,,,,,,,,,,,,,,,"364057654","7733842070","339900","MAGID GLOVE & SAFETY MANUFACTURING CO LLC",,"2060 N KOLMAR AVENUE",,"CHICAGO","IL","606393418",,,,,,,"364057654","7733842070",,,,"2011-03-18T11:48:10-0500","CHUCK PALID",,,,,178,165,1,0,166,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110321112915P040135159120001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SALT LAKE PATTERN, INC. 401K PLAN","003","2003-01-01","SALT LAKE PATTERN, INC.",,,"664 N 400 W",,"SALT LAKE CITY","UT","84101",,,,,,,,,,,,,,,,,,"870318437","8013647427","339900","SALT LAKE PATTERN, INC.",,"664 N 400 W",,"SALT LAKE CITY","UT","84101",,,,,,,"870318437","8013647427",,,,"2011-03-21T12:28:17-0500","DAVID WEIXLER",,,,,5,5,0,0,5,0,5,5,0,,"2E2F2G2J2K3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",, "20110314205404P030025395457001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MICHAEL D PAYNE DMD PC 401K PLAN","001","2006-03-23","MICHAEL D PAYNE DMD PC",,,"3289 N TOWERBRIDGE WAY",,"MERIDIAN","ID","83646",,,,,,,,,,,,,,,,,,"830389399","2088844466","621210","MICHAEL D PAYNE DMD PC",,"3289 N TOWERBRIDGE WAY",,"MERIDIAN","ID","83646",,,,,,,"830389399","2088844466",,,,"2011-02-17T02:50:29-0600","MICHAEL D. PAYNE",,,,,10,9,,,9,,9,9,,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110317142608P040027177649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRIANGLE B RANCH, INC. PROFIT SHARING PLAN","001","2009-08-19","TRIANGLE B RANCH, INC.",,,"2109 TRIANGLE RD",,"VALLEY VIEW","TX","76272",,,,,,,,,,,,,,,,,,"264624919","9405779400","112111","TRIANGLE B RANCH, INC.",,"2109 TRIANGLE RD",,"VALLEY VIEW","TX","76272",,,,,,,"264624919","9405779400",,,,"2011-03-17T13:41:49-0500","HAROLD BROWN",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",, "20110318135450P030004028226001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSULTING RADIOLOGISTS LTD LONG-TERM DISABILITY PLAN","505","1990-05-01","CONSULTING RADIOLOGISTS LTD",,,"1221 NICOLLET AVE STE 600",,"MINNEAPOLIS","MN","55403",,,,,,,,,,,,,,,,,,"410974675","6125732200","621111","CONSULTING RADIOLOGISTS LTD",,"1221 NICOLLET AVE STE 600",,"MINNEAPOLIS","MN","55403",,,,,,,"410974675","6125732200",,,,"2011-03-18T13:54:43-0500","CHARLES D. ENGMARK II",,,,,202,196,,,196,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110316160257P040003995602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSOLIDATED ELECTRONIC WIRE & CABLE CORP. EMPLOYEE STOCK OWNERSHIP PLAN","003","1998-07-01","CONSOLIDATED ELECTRONIC WIRE & CABLE CORPORATION",,,"11044 KING STREET",,"FRANKLIN PARK","IL","601311412",,,,,,,,,,,,,,,,,,"362131248","8474558830","423600","CONSOLIDATED ELECTRONIC WIRE & CABLE CORPORATION",,"11044 KING STREET",,"FRANKLIN PARK","IL","601311412",,,,,,,"362131248","8474558830",,,,"2011-03-16T15:51:34-0500","DAVID DUNCAN",,,,,44,31,4,9,44,0,44,44,1,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110317081130P030026798385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FORE IMPROVEMENT CORP. RETIREMENT PLAN","002","1997-01-01","FORE IMPROVEMENT CORP.",,,"9A COMMERCIAL STREET",,"HICKSVILLE","NY","11801",,,,,,,,,,,,,,,,,,"111980604","5169358383","531390","FORE IMPROVEMENT CORP.",,"9A COMMERCIAL STREET",,"HICKSVILLE","NY","11801",,,,,,,"111980604","5169358383",,,,"2011-03-17T08:10:29-0500","ARLENE TOSCANO","2011-03-17T08:10:29-0500","ARLENE TOSCANO",,,4,4,0,0,4,0,4,4,0,,"2E2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110317162042P040027218881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DFW SHREDDING, INC. 401(K) PLAN","001","2005-01-01","DFW SHREDDING, INC.",,,"P.O. BOX 794392",,"DALLAS","TX","75379",,,,,,,,,,,,,,,,,,"870723899","9723808877","541990","DFW SHREDDING, INC.",,"P.O. BOX 794392",,"DALLAS","TX","75379",,,,,,,"870723899","9723808877",,,,"2011-03-17T16:19:16-0500","SHAFIQ NASSER","2011-03-17T16:19:16-0500","SHAFIQ NASSER",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110317202624P040027319649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"P.S. PROMOTIONS, INC. MONEY PURCHASE PENSION PLAN","001","1998-01-01","P.S. PROMOTIONS, INC.",,,"10798 E. LAS POSAS ROAD",,"CAMARILLO","CA","93012",,,,,,,"P.S. PROMOTIONS, INC.","10798 E. LAS POSAS ROAD","CAMARILLO","CA","93012",,,,,,,"952888974","8054919811","541800","P.S. PROMOTIONS, INC.",,"10798 E. LAS POSAS ROAD",,"CAMARILLO","CA","93012",,,,,,,"952888974","8054919811",,,,"2011-03-17T20:26:19-0500","LINDA PIERSON","2011-03-17T20:26:19-0500","LINDA PIERSON",,,2,2,0,0,2,0,2,2,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110309182531P040003422546001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARRY COOPER SELF-EMPLOYED PROFIT SHARING PLAN","002","2001-01-01","BARRY COOPER, A SOLE OWNER",,,"17034 VENTURA BLVD.",,"ENCINO","CA","91316",,,,,,,"17034 VENTURA BLVD.",,"ENCINO","CA","91316",,,,,,,"952138867","8187833555","531390","BARRY COOPER, A SOLE OWNER",,"17034 VENTURA BLVD.",,"ENCINO","CA","91316",,,,,,,"952138867","8187833555",,,,"2011-03-09T18:25:05-0600","ROBERT LANDIN",,,,,5,5,1,0,6,0,6,6,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110310133242P030003383554001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AARON ELKOWITZ, DMD, P.C. 401K PLAN","001","2006-06-01","AARON ELKOWITZ, DMD, P.C.",,,"1201 NORTHERN BLVD, SUITE 301",,"MANHASSET","NY","11030",,,,,,,,,,,,,,,,,,"020699134","5163655595","621111","AARON ELKOWITZ, DMD, P.C.",,"1201 NORTHERN BLVD, SUITE 301",,"MANHASSET","NY","11030",,,,,,,"020699134","5163655595",,,,"2011-03-01T12:58:01-0600","AARON ELKOWITZ",,,,,4,3,0,0,3,0,3,3,0,,"2E2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110315105627P030007978231001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"ACCORD MEDICAL MANAGEMENT, LP EMPLOYEE INJURY PLAN","501","2003-06-01","ACCORD MEDICAL MANAGEMENT, LP","NIX HEALTH CARE SYSTEM","SR VICE PRESIDENT AND CFO","414 NAVARRO","SUITE 600","SAN ANTONIO","TX","78205",,,,,,,"414 NAVARRO","SUITE 600","SAN ANTONIO","TX","78205",,,,,,,"200869609","2102712190","622000","ACCORD MEDICAL MANAGEMENT, LP","SENIOR VICE PRESIDENT & CFO","414 NAVARRO","SUITE 600","SAN ANTONIO","TX","78205",,,,,,,"200869609","2102712190",,,,"2011-03-15T10:53:55-0500","LESTER SURROCK","2011-03-15T10:56:14-0500","LESTER SURROCK",,,1080,1096,,,1096,,1096,,,,,"4F",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110324111112P030030644033001","2010-02-01","2010-12-31","3",,"0","1","1","1","0","0","0","0","0",,"TUCKAHOE ORTHOPAEDIC ASSOCIATES, LTD. LONG TERM DISABILITY PLAN","502","1973-12-03","TUCKAHOE ORTHOPAEDIC ASSOCIATES",,,"PO BOX 71690",,"RICHMOND","VA","23255",,,,,,,"PO BOX 71690",,"RICHMOND","VA","23255",,,,,,,"540949806","8042882830","621111","TUCKAHOE ORTHOPAEDIC ASSOCIATES",,"PO BOX 71690",,"RICHMOND","VA","23255",,,,,,,"540949806","8042882830",,,,"2011-03-24T11:06:25-0500","DENISE NICHOLS",,,,,109,0,0,0,0,,0,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110309082725P030022364801001","2004-10-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SENIOR RETIREMENT SERVICES OF OHIO, INC 401K PLAN","001","2004-09-30","SENIOR RETIREMENT SERVICES OF OHIO, INC",,,"100 S MAIN AVE SUITE 101-B",,"SIDNEY","OH","45365",,,,,,,,,,,,,,,,,,"050598825","9374926016","523900","SENIOR RETIREMENT SERVICES OF OHIO, INC",,"100 S MAIN AVE SUITE 101-B",,"SIDNEY","OH","45365",,,,,,,"050598825","9374926016",,,,"2011-03-09T08:26:14-0600","DAVID L GAYLOR",,,,,,3,0,0,3,0,3,3,,,"2E2G2K2F2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110309102421P040022701985001","2010-08-10","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"BUOY'S LIQUORS, INC. 401K PROFIT SHARING PLAN","001","2010-08-10","BUOYS LIQUORS, INC.",,,"860 PARRIS ISLAND GATEWAY, SUITE A6",,"BEAUFORT","SC","29906",,,,,,,,,,,,,,,,,,"272632357","8434730485","445310","BUOYS LIQUORS, INC.",,"860 PARRIS ISLAND GATEWAY, SUITE A6",,"BEAUFORT","SC","29906",,,,,,,"272632357","7048255596",,,,"2011-03-09T10:23:00-0600","RICHARD STEWART",,,,,2,2,0,0,2,0,2,2,0,,"2E2H2J2K2S3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110307152818P030100815632001","2010-01-01","2010-09-23","2",,"0","0","1","1","0","0","0","0","0",,"WORLDCO LLC 401(K) PROFIT SHARING PLAN","001","1999-01-01","WORLDCO, LLC",,,"799 CRANDON BLVD","APT 308","KEY BISCAYNE","FL","331492554",,,,,,,,,,,,,,,,,,"133814016","3059875571","523120","WORLDCO, LLC",,"799 CRANDON BLVD","APT 308","KEY BISCAYNE","FL","331492554",,,,,,,"133814016","3059875571",,,,"2011-03-07T15:28:10-0600","SLOAN BRUAN",,,,,4,,,,0,,0,,,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",, "20110309091823P030022385585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VISTA DIGITAL SOLUTIONS, INC 401K PLAN","001","2000-01-01","VISTA DIGITAL SOLUTIONS, INC.",,,"47 NEPPERHAN AVENUE",,"ELMSFORD","NY","105231836",,,,,,,,,,,,,,,,,,"134111577","9143477888","423400","VISTA DIGITAL SOLUTIONS, INC.",,"47 NEPPERHAN AVENUE",,"ELMSFORD","NY","105231836",,,,,,,"134111577","9143477888",,,,"2011-03-09T09:13:15-0600","KRISTINE FORSTBAUER-PARKER",,,,,9,0,5,0,5,0,5,5,0,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110310082053P030022913233001","2007-06-01","2008-05-31","2",,"0","1","0","0","0","0","0","0","0",,"THE KINGSLEY ASSOCIATION 401K PROFIT SHARING PLAN","001","1999-06-01","THE KINGSLEY ASSOCIATION",,,"6435 FRANKSTOWN AVE.",,"PITTSBURGH","PA","152064055",,,,,,,,,,,,,,,,,,"250965412","4126618751","813000","SAME",,"6435 FRANKSTOWN AVE.",,"PITTSBURGH","PA","152064055",,,,,,,"250965412","4126618751",,,,"2011-03-10T08:15:30-0600","SARAH ARNOLD",,,,,13,8,0,7,15,0,15,15,0,,"2E2G2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110315093454P040119848912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WARDWAY FUELS, INC. PROFIT SHARING PLAN","001","1982-07-01","WARDWAY FUELS, INC.",,,"4555 BRIDGETOWN ROAD",,"CINCINNATI","OH","452114413",,,,,,,,,,,,,,,,,,"311011731","5135740061","454311","WARDWAY FUELS, INC.",,"4555 BRIDGETOWN ROAD",,"CINCINNATI","OH","452114413",,,,,,,"311011731","5135740061",,,,"2011-03-15T09:24:04-0500","GARY WARD",,,,,17,14,0,4,18,0,18,18,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",, "20110310124522P030023011985001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"HEDB CORPORATION MONEY PURCHASE PENSION PLAN","002","1994-01-01","HEDB CORPORATION",,,"3534 AMBRA WAY",,"SAN JOSE","CA","95132",,,,,,,"3534 AMBRA WAY",,"SAN JOSE","CA","95132",,,,,,,"943125135","4082592823","335900","HEDB CORPORATION",,"3534 AMBRA WAY",,"SAN JOSE","CA","95132",,,,,,,"943125135","4082592823",,,,"2011-03-10T12:44:40-0600","ADRIAN ZOLLA",,,,,9,0,0,0,0,0,0,,0,,"2C2G3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110307094937P030003128386001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DANIEL W SCHIAVONE DDS 401K PLAN","001","2001-06-15","DANIEL W SCHIAVONE DDS",,,"69 PUBLIC SQUARE",,"HOLLEY","NY","14470",,,,,,,,,,,,,,,,,,"161582199","5856387645","621210","DANIEL W SCHIAVONE DDS",,"69 PUBLIC SQUARE",,"HOLLEY","NY","14470",,,,,,,"161582199","5856387645",,,,"2011-03-07T09:49:22-0600","MARY JO HARTMAN",,,,,9,7,0,2,9,0,9,4,0,,"2E2G2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",, "20110307132320P040099920720001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TAPESOUTH, INC. PROFIT SHARING PLAN","002","2003-01-01","TAPESOUTH, INC.",,,"10302 DEERWOOD PARK BLVD STE 125",,"JACKSONVILLE","FL","322562815",,,,,,,,,,,,,,,,,,"593188252","9046421800","424990","TAPESOUTH, INC.",,"10302 DEERWOOD PARK BLVD STE 125",,"JACKSONVILLE","FL","322562815",,,,,,,"593188252","9046421800",,,,"2011-03-07T13:23:19-0600","WOODY NORMAN",,,,,10,7,0,0,7,0,7,7,,,"2A2E2J2G",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",, "20110309092719P030022391105001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"RAY H. TANGUNAN, MD PROFIT SHARING PLAN AND TRUST","001","2001-01-01","RAY H. TANGUNAN, MD",,,"6801 US HIGHWAY 27 N STE B4",,"SEBRING","FL","338701000",,,,,,,,,,,,,,,,,,"592950727","8633148440","621111","RAY H. TANGUNAN, MD",,"6801 US HIGHWAY 27 N STE B4",,"SEBRING","FL","33870",,,,,,,"592950727","8633148440",,,,"2011-03-09T09:02:47-0600","DULCE TANGUNAN",,,,,4,0,0,0,0,0,0,0,0,,"2E3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110307171845P040021766513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KEITH W. KOCH, D.D.S., P.C. RETIREMENT PLAN & TRUST","001","1998-01-01","KEITH W. KOCH, D.D.S., P.C.",,,"4376 LAKEVILLE ROAD","P.O. BOX 186","GENESEO","NY","14454",,,,,,,,,,,,,,,,,,"161458927","5852433174","621210","KEITH W. KOCH, D.D.S., P.C.",,"4376 LAKEVILLE ROAD","P.O. BOX 186","GENESEO","NY","14454",,,,,,,"161458927","5852433174",,,,"2011-03-07T17:18:37-0600","KEITH W. KOCH",,,,,9,8,0,1,9,0,9,9,1,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",, "20110323124840P030004419042001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","1","0",,"SCULLY COMPANY 401(K) PROFIT SHARING PLAN","001","1983-01-01","SCULLY COMPANY",,,"801 OLD YORK ROAD",,"JENKINTOWN","PA","19046",,,,,,,,,,,,,,,,,,"231604780","2158878400","531310","SCULLY COMPANY",,"801 OLD YORK ROAD",,"JENKINTOWN","PA","19046",,,,,,,"231604780","2158878400",,,,"2011-03-23T12:48:31-0500","JAMES D. SCULLY, JR.","2011-03-23T12:48:31-0500","JAMES D. SCULLY, JR.",,,186,173,0,14,187,0,187,123,7,2,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110323125128P030141390048001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"QUALIS INTERNATIONAL, INC. PROFIT SHARING PLAN","002","2000-01-01","QUALIS INTERNATIONAL, INC.",,,"23252 ARROYO VISTA",,"R. SANTA MARGARITA","CA","92688",,,,,,,,,,,,,,,,,,"330307145","9493767320","423700","QUALIS INTERNATIONAL, INC.",,"23252 ARROYO VISTA",,"R. SANTA MARGARITA","CA","92688",,,,,,,"330307145","9493767320",,,,"2011-03-23T12:45:35-0500","KATHLEEN GARDARIAN",,,,,6,7,0,0,7,0,7,2,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",, "20110309131108P030003302850001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JONATHAN PETKE, INC. PROFIT SHARING PLAN AND TRUST","001","1984-08-22","JONATHAN PETKE, INC.",,,"3151 AIRWAY AVE., SUITE R-1",,"COSTA MESA","CA","92626",,,,,,,"3151 AIRWAY AVE., SUITE R-1",,"COSTA MESA","CA","92626",,,,,,,"330057257","7145565200","541110","JONATHAN PETKE, INC.",,"3151 AIRWAY AVE., SUITE R-1",,"COSTA MESA","CA","92626",,,,,,,"330057257","7145565200",,,,"2011-03-08T04:51:12-0600","JONATHAN PETKE",,,,,7,4,0,0,4,0,4,4,2,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110315070257P030025625841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOLOVE & SOLOVE, P.A. PROFIT SHARING PLAN","001","1985-09-01","SOLOVE & SOLOVE, P.A.",,,"12002 SW 128TH COURT, SUITE 201",,"MIAMI","FL","331864643",,,,,,,,,,,,,,,,,,"592578851","3056120800","541110","SOLOVE & SOLOVE, P.A.",,"12002 SW 128TH COURT, SUITE 201",,"MIAMI","FL","331864643",,,,,,,"592578851","3056120800",,,,"2011-03-15T07:02:56-0500","ROBERT SOLOVE",,,,,8,6,0,1,7,0,7,7,1,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",, "20110315073454P030025642113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JACOBS ENTERPRISES LTD PROFIT SHARING PLAN","001","1995-01-01","JACOBS ENTERPRISES, LTD","D/B/A JACOBS EXECUTIVE ADVISORS",,"363 HEMPSTEAD AVE STE 200",,"MALVERNE","NY","115651233",,,,,,,,,,,,,,,,,,"112944497","5165995824","812990","JACOBS ENTERPRISES, LTD","D/B/A JACOBS EXECUTIVE ADVISORS","363 HEMPSTEAD AVE., SUITE 200",,"MALVERENE","NY","115651233",,,,,,,"112944497","5165995824",,,,"2011-03-15T07:32:47-0500","JIM JACOBS",,,,,3,3,0,0,3,0,3,3,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",, "20110309085657P030022377329001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GENWAY INTERNATIONAL 401(K) PLAN","001","2007-10-15","GENWAY INTERNATIONAL",,,"7640 WALINCA TERRACE",,"ST. LOUIS","MO","63105",,,,,,,,,,,,,,,,,,"010693104","3146805886","425120","GENWAY INTERNATIONAL",,"7640 WALINCA TERRACE",,"ST. LOUIS","MO","63105",,,,,,,"010693104","3146805886",,,,"2011-03-09T08:51:57-0600","ANDREW YUEN",,,,,2,2,0,0,2,0,2,2,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110310141024P040007381255001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCNAMARA & SMALLMAN CONSTRUCTION, INC. PROFIT SHARING PLAN","001","1992-01-01","MCNAMARA & SMALLMAN CONSTRUCTION, INC.",,,"1756 HOLMES ST.",,"LIVERMORE","CA","94550",,,,,,,,,,,,,,,,,,"943137418","9256067190","221300","MCNAMARA & SMALLMAN CONSTRUCTION, INC.",,"1756 HOLMES ST.",,"LIVERMORE","CA","94550",,,,,,,"943137418","9256067190",,,,"2011-03-10T12:23:23-0600","BOB SMALLMAN","2011-03-10T12:23:23-0600","BOB SMALLMAN",,,3,3,0,0,3,0,3,3,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110324075513P030143455264001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SCOTT B. FRANKLIN RETIREMENT PLAN","001","1997-01-01","SCOTT B. FRANKLIN & ASSOCIATES",,,"68 SOUTH MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,,,,,,,,,,,,"061213038","8605614832","541110","SCOTT B. FRANKLIN & ASSOCIATES",,"68 SOUTH MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"061213038","8605614832",,,,"2011-03-24T08:54:24-0500","SCOTT B. FRANKLIN",,,,,5,5,0,1,6,0,6,5,0,,"2A2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110309134102P030105784528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRANT S. MASON, DDS, INC. 401K PLAN","001","2006-01-01","GRANT S. MASON, DDS, INC.",,,"220 PROFESSIONAL PARK",,"BECKLEY","WV","258013624",,,,,,,,,,,,,,,,,,"010852655","3042527311","621210","GRANT S. MASON, DDS, INC.",,"220 PROFESSIONAL PARK",,"BECKLEY","WV","258013624",,,,,,,"010852655","3042527311",,,,"2011-03-09T13:38:16-0600","GRANT S. MASON",,,,,5,5,0,0,5,0,5,5,,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110309090411P030022379521001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ANDREW KAHN PROFIT SHARING PLAN","001","2004-01-01","ANDREW KAHN",,,"5 LAKEWOOD LANE",,"LARCHMONT","NY","10538",,,,,,,,,,,,,,,,,,"200809320","9148343454","541600","ANDREW KAHN",,"5 LAKEWOOD LANE",,"LARCHMONT","NY","10538",,,,,,,"200809320","9148343454",,,,"2011-03-09T09:03:59-0600","ANDREW L. KAHN",,,,,1,1,0,0,1,0,1,1,0,,"2E3B3D",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110310130451P030003381634001","2004-04-01","2005-03-31","2",,"0","1","1","0","0","0","0","1","0",,"ARIZONA CENTER FOR IMPLANT, FACIAL AND ORAL SURGERY, P.C. MONEY PURCHASE PENSION PLAN","001","1974-04-01","ARIZONA CENTER FOR IMPLANT, FACIAL AND ORAL SURGERY, PC",,,"18301 N 79TH AVE BLDG G",,"GLENDALE","AZ","853088463",,,,,,,,,,,,,,,,,,"860285968","6239319197","621210","ARIZONA CENTER FOR IMPLANT, FACIAL AND ORAL SURGERY, PC",,"18301 N 79TH AVE BLDG G",,"GLENDALE","AZ","853088463",,,,,,,"860285968","6239319197",,,,"2011-03-10T13:04:50-0600","DONALD HOAGLIN, D.D.S.",,,,,7,0,0,0,0,0,0,0,0,,"2C2H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110309061152P030006941607001","2009-07-01","2010-06-30","4","C","0","0","0","0","0","0","0","0","0",,"EB DV SECURITIZED INDEX FUND","064",,"THE BANK OF NEW YORK MELLON",,,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,,,,,,,,,,,,"256078093","4122366165",,"THE BANK OF NEW YORK MELLON",,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,"256078093","4122366165",,,,,,,,"2011-03-09T06:11:22-0600","JEFFREY VAUGHN",0,0,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-03-09",,"Filed with authorized/valid electronic signature", "20110315115122P030025752417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WOMENS HEALTHCARE AFFILIATES, P.A. 401K PROFIT SHARING PLAN","001","2003-07-01","WOMENS HEALTHCARE AFFILIATES, P.A.",,,"8850 SIX PINES DRIVE, SUITE 100",,"THE WOODLANDS","TX","77380",,,,,,,,,,,,,,,,,,"743090479","2813676836","621111","WOMENS HEALTHCARE AFFILIATES, P.A.",,"8850 SIX PINES DRIVE, SUITE 100",,"THE WOODLANDS","TX","77380",,,,,,,"743090479","9365391434",,,,"2011-03-15T11:42:14-0500","ROBERT REEVES",,,,,40,33,0,13,46,0,46,40,5,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",, "20110324104539P030030635009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAYER SEARCH, INC. PROFIT SHARING PLAN","001","2001-05-01","MAYER SEARCH, INC.",,,"80 BROADWAY, 2ND FLOOR",,"CRESSKILL","NJ","07626",,,,,,,,,,,,,,,,,,"223797268","2015681010","541990","MAYER SEARCH, INC.",,"80 BROADWAY, 2ND FLOOR",,"CRESSKILL","NJ","07626",,,,,,,"223797268","2015681010",,,,"2011-03-24T10:45:24-0500","LAWRENCE MAYER",,,,,4,4,0,0,4,0,4,4,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110310113226P040023268545001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","1","0",,"KWIK BOND POLYMERS, LLC WELFARE BENEFIT PLAN NATIONAL BENEFIT TRUST I","501","2006-01-01","KWIK BOND POLYMERS, LLC",,,"923 TEAL DR",,"BENICIA","CA","94510",,,,,,,,,,,,,,,,,,"680478649","8664341772","325500","KWIK BOND POLYMERS, LLC",,"923 TEAL DR",,"BENICIA","CA","94510",,,,,,,"680478649","8664341772","KWIK BOND POLYMERS, LLC","400001340","501","2011-03-10T11:27:24-0600","ALBERT KLAIL",,,,,11,8,0,0,8,,,,,,,"4A4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110309150523P040022813473001","2010-01-01","2010-12-07","2",,"0","0","1","1","0","0","0","0","0",,"RESEARCH STRATEGIES INC 401(K) PROFIT SHARING PLAN AND TRUST","001","2007-01-01","RESEARCH STRATEGIES INC",,,"P O BOX 191",,"ALTADENA","CA","91003",,,,,,,"915 E PALM ST",,"ALTADENA","CA","91001",,,,,,,"954598916","6265295998","541600","RESEARCH STRATEGIES INC",,"P O BOX 191",,"ALTADENA","CA","91003",,,,,,,"954598916","6265295998",,,,"2011-03-09T14:52:26-0600","EMILIA REORIZO",,,,,2,0,0,0,0,0,0,0,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110324203129P040143836384001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHWESTERN NEUROLOGICAL ASSOCIATES, PC PROFIT SHARING & EMPLOYEE SAVINGS PLAN","004","1990-06-01","NORTHWESTERN NEUROLOGICAL ASSOCIATES, PC",,,"501 NORTH GRAHAM STREET, SUITE 545",,"PORTLAND","OR","97227",,,,,,,,,,,,,,,,,,"930583420","5032885151","621111","NORTHWESTERN NEUROLOGICAL ASSOCIATES, PC",,"501 NORTH GRAHAM STREET, SUITE 545",,"PORTLAND","OR","97227",,,,,,,"930583420","5032885151",,,,"2011-03-24T19:53:40-0500","KENT GREWE","2011-03-24T19:54:21-0500","KENT GREWE",,,6,5,,1,6,0,6,6,0,,"2E2F2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110324083549P030030581281001","2010-01-01","2010-10-26","2",,"0","0","1","1",,"1",,,,,"ALAMO IRON WORKS, INC. LONG TERM SAVINGS 401(K) PLAN AND TRUST","004","1985-01-01","ALAMO IRON WORKS, INC.",,,"943 ATANDT CENTER PARKWAY",,"SAN ANTONIO","TX","78219",,,,,,,"943 ATANDT CENTER PARKWAY",,"SAN ANTONIO","TX","78219",,,,,,,"740477610","2107048395","331200","ALAMO IRON WORKS, INC.",,"943 ATANDT CENTER PARKWAY",,"SAN ANTONIO","TX","78219",,,,,,,"740477610","2107048395",,,,"2011-03-24T08:35:24-0500","LOUISE MYLER",,,,,347,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110310150030P040023371921004","2008-01-01","2008-12-31","2",,,,,,,,,"1",,,"V-SOFT CONSULTING GROUP RETIREMENT PLAN","001","2004-12-15","V-SOFT CONSULTING GROUP",,,"2115 STANLEY GAULT PARKWAY","SUITE 200","LOUISVILLE","KY","40223",,,,,,,"2115 STANLEY GAULT PARKWAY","SUITE 200","LOUISVILLE","KY","40223",,,,,,,"760532643","5024258425","541511","V-SOFT CONSULTING GROUP",,"2115 STANLEY GAULT PARKWAY","SUITE 200","LOUISVILLE","KY","40223",,,,,,,"760532643","5024258425",,,,"2011-03-10T06:31:57-0600","BIJAL SHAH","2011-03-10T06:31:57-0600","PURNA VEERAMACHANENI",,,142,138,,10,148,,148,70,2,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110322155421P040138243008003","2010-01-01","2010-08-31","2",,,,"1","1",,,,,,,"NORTH PACIFIC CORPORATION PROFIT SHARING PLAN","001","1995-09-01","NORTH PACIFIC CORPORATION",,,"5612 LAKE WASHINGTON BLVD NE","STE 102","KIRKLAND","WA","980330000",,,,,,,,,,,,,,,,,,"911595062","4258221001","114110","NORTH PACIFIC CORPORATION",,"5612 LAKE WASHINGTON BLVD NE","STE 102","KIRKLAND","WA","980330000",,,,,,,"911595062","4258221001",,,,"2011-03-18T11:40:20-0500","VLADIMIR MALIAROV","2011-03-18T11:40:20-0500","VLADIMIR MALIAROV",,,1,0,,,0,,0,,,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110323110008P030030111505001","2010-06-01","2010-08-31","2",,,,"1","1",,,,,,,"EAST LAKELAND OBGYN ASSOCIATES EMPLOYEE BENEFIT PLAN TRUST","501","2003-06-01","EAST LAKELAND OB-GYN ASSOCIATES,PA",,,"1020 RIVER OAKS DRIVE 320",,"JACKSON","MS","39232",,,,,,,,,,,,,,,,,,"640821400","6019361400","621111","EAST LAKELAND OB-GYN ASSOCIATES,PA",,"1020 RIVER OAKS DRIVE 320",,"JACKSON","MS","39232",,,,,,,"640821400","6019361400",,,,"2011-03-23T10:54:01-0500","GINNY LLOYD",,,,,0,0,,,0,,,,,,,"4A4D",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",, "20110322085059P040004444930001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"O T TAN PENSION PLAN","003","2005-01-01","O T TAN MD PC",,,"29 COMMONWEALTH AVENUE",,"BOSTON","MA","02116",,,,,,,"29 COMMONWEALTH AVENUE",,"BOSTON","MA","02116",,,,,,,"043098312","6174248365","621111","O T TAN MD PC",,"29 COMMONWEALTH AVENUE",,"BOSTON","MA","02116",,,,,,,"043098312","6174248365",,,,"2011-03-22T08:32:31-0500","OON TAN",,,,,3,0,0,0,0,0,0,,0,,"1A3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",, "20110312130627P030024092577001","2010-01-01","2010-12-31","2",,,"1","1",,,,,,,,"LUMPKIN, OXNER AND STACY, PA 401(K) PLAN AND TRUST","001","1992-01-01","LUMPKIN, OXNER AND STACY, PA",,,"511 PRINCE STREET",,"GEORGETOWN","SC","29440",,,,,,,"511 PRINCE STREET",,"GEORGETOWN","SC","29440",,,,,,,"570948731","8435278020","541110","LUMPKIN, OXNER AND STACY, PA",,"511 PRINCE STREET",,"GEORGETOWN","SC","29440",,,,,,,"570948731","8435278020",,,,"2011-02-22T11:34:56-0600","DANIEL W. STACY, JR.",,,,,12,0,,,0,,0,0,,,"2E2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-12","Filed with authorized/valid electronic signature",, "20110323145755P040140697040001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"AAA NORTH JERSEY LONG TERM DISABILITY","502","1987-05-01","AAA NORTH JERSEY",,"KATHLEEN DAMICO","418 HAMBURG TURNPIKE",,"WAYNE","NJ","07470",,,,,,,"418 HAMBURG TURNPIKE",,"WAYNE","NJ","07470",,,,,,,"221163605","9739562200","812990","AAA NORTH JERSEY","KATHLEEN DAMICO","418 HAMBURG TURNPIKE",,"WAYNE","NJ","07470",,,,,,,"221163605","9739562200",,,,"2011-03-23T14:52:52-0500","KATHLEEN DAMICO",,,,,141,142,,,142,,142,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",, "20110323112436P030030120449001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"THE R.&V. ANDERSON GROUP, INC, 401(K) PLAN","001","1997-01-01","THE R.& V. ANDERSON GROUP, INC.",,,"2710 WALSH TARLTON #200",,"AUSTIN","TX","78746",,,,,,,,,,,,,,,,,,"742687768","5123478801","531310","THE R.& V. ANDERSON GROUP, INC.",,"2710 WALSH TARLTON #200",,"AUSTIN","TX","78746",,,,,,,"742687768","5123478801",,,,"2011-03-23T11:20:22-0500","FRED LASSETTER","2011-03-23T11:22:23-0500","RICK ANDERSON",,,41,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110308115928P030003223826001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AQUA KINETICS, INC. DEFINED BENEFIT PENSION PLAN","003","1981-01-01","AQUA KINETICS, INC.",,,"14420 JONATHAN ROAD",,"NORTH HUNTINGTON","PA","156421690",,,,,,,,,,,,,,,,,,"251291787","4127514268","423990","AQUA KINETICS, INC.",,"14420 JONATHAN ROAD",,"NORTH HUNTINGTON","PA","156421690",,,,,,,"251291787","4127514268",,,,"2011-03-08T11:50:04-0600","JOSEPH RUZICKA",,,,,4,2,0,2,4,0,4,,0,,"1A1H3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",, "20110308124811P030021932609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARK F. MAXWELL DDS MS INC 401(K) PROFIT SHARING PLAN","001","2004-01-01","MARK F. MAXWELL DDS MS INC",,,"1441 AVOCADO AVE, SUITE 703",,"NEWPORT BEACH","CA","92660",,,,,,,,,,,,,,,,,,"204069904","9496400203","621210","MARK F. MAXWELL DDS MS INC",,"1441 AVOCADO AVE, SUITE 703",,"NEWPORT BEACH","CA","92660",,,,,,,"204069904","9496400203",,,,"2011-03-08T12:47:51-0600","MARK F. MAXWELL DDS MS INC","2011-03-08T12:47:51-0600","MARK F. MAXWELL DDS MS INC",,,7,7,0,0,7,0,7,5,0,,"2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110308181327P040022361057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DELTA VENTURES FINANCIAL COUNSEL, INC. PROFIT SHARING PLAN","002","1999-05-01","DELTA VENTURES FINANCIAL COUNSEL, INC.",,,"2855 E. BROWN ROAD, STE. 5",,"MESA","AZ","852134214",,,,,,,,,,,,,,,,,,"860780326","4809245613","523900","DELTA VENTURES FINANCIAL COUNSEL, INC.",,"2855 E. BROWN ROAD, STE. 5",,"MESA","AZ","852134214",,,,,,,"860780326","4809245613",,,,"2011-03-08T18:06:14-0600","NEAL VAN ZUTPHEN",,,,,4,4,0,0,4,0,4,3,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",, "20110322144238P040029981121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANDREEFF EQUITY ADVISORS, LLC 401(K) PROFIT SHARING PLAN","001","2008-01-01","ANDREEFF EQUITY ADVISORS, LLC",,,"101 PARK AVENUE","33RD FLOOR","NEW YORK","NY","10178",,,,,,,,,,,,,,,,,,"133989252","2129842393","523900","ANDREEFF EQUITY ADVISORS, LLC",,"101 PARK AVENUE","33RD FLOOR","NEW YORK","NY","10178",,,,,,,"133989252","2129842393",,,,"2011-03-22T14:42:32-0500","DANE C. ANDREEFF",,,,,11,8,2,0,10,0,10,10,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",, "20110323140305P040004548210001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HARKINS ADMINISTRATIVE SERVICES, INC. 401(K) PLAN","001","1992-01-01","HARKINS ADMINISTRATIVE SERVICES, INC.",,,"7511 E MCDONALD DRIVE",,"SCOTTSDALE","AZ","85250",,,,,,,,,,,,,,,,,,"331078669","4806277777","713900","HARKINS ADMINISTRATIVE SERVICES, INC.",,"7511 E MCDONALD DRIVE",,"SCOTTSDALE","AZ","85250",,,,,,,"331078669","4806277777",,,,"2011-03-23T13:25:59-0500","DANIEL HARKINS",,,,,498,453,0,157,610,0,610,443,37,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",, "20110322135031P040029956673001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"FMC NEW ORLEANS 401(K) SAVINGS PLAN","001","2010-01-01","FERNANDES MARITIME CONSULTANTS, LLC",,,"1634 NEW YORK ST.",,"NEW ORLEANS","LA","70122",,,,,,,,,,,,,,,,,,"270457999","5043041932","541990","FERNANDES MARITIME CONSULTANTS, LLC",,"1634 NEW YORK ST.",,"NEW ORLEANS","LA","70122",,,,,,,"270457999","5043041932",,,,"2011-03-22T13:48:58-0500","KAREN FERNANDES",,,,,0,2,0,0,2,0,2,2,0,,"2E2J2F2G2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",, "20110322221958P040004491122001","2010-05-19","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"PRINTWISE TECHNOLOGIES, INC. 401(K) PLAN","001","2010-05-19","PRINTWISE TECHNOLOGIES, INC.",,,"8067 OCEANSIDE DRIVE",,"HOUSTON","TX","77095",,,,,,,"600 SOUTH COURT STREET",,"MONTGOMERY","AL","36104",,,,,,,"272705171","2813456101","323100","PRINTWISE TECHNOLOGIES, INC.",,"8067 OCEANSIDE DRIVE",,"HOUSTON","TX","77095",,,,,,,"272705171","2813456101",,,,"2011-03-22T22:19:50-0500","TAMMY ROANE","2011-03-22T22:19:50-0500","TAMMY ROANE",,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110308193008P030000638468001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DOMINIC J. MASTRUSERIO CO. LPA PROFIT SHARING PLAN","002","1980-10-01","DOMINIC J. MASTRUSERIO CO., LPA",,,"306 EAST 14TH STREET",,"CINCINNATI","OH","45210",,,,,,,,,,,,,,,,,,"310992646","5134216464","541110","DOMINIC J. MASTRUSERIO CO., LPA",,"306 EAST 14TH STREET",,"CINCINNATI","OH","45210",,,,,,,"310992646","5134216464",,,,"2011-03-08T19:02:39-0600","DOMINIC J. MASTRUSERIO","2011-03-08T19:03:17-0600","DOMINIC J. MASTRUSERIO",,,4,2,,2,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110308090008P030003214674001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TELEPHONE SWITCHING INTERNATIONAL, INC. SAFE HARBOR 401K PLAN","001","2007-01-01","TELEPHONE SWITCHING INTERNATIONAL",,,"1156 E WILLIAMSON STREET",,"MILAN","TN","38358",,,,,,,,,,,,,,,,,,"621559063","7316860888","443112","TELEPHONE SWITCHING INTERNATIONAL",,"1156 E WILLIAMSON STREET",,"MILAN","TN","38358",,,,,,,"621559063","7316860888",,,,"2011-03-08T08:47:13-0600","JOHN H. HUEY",,,,,22,21,0,2,23,0,23,17,,,"2E2G2J2K3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",, "20110308071959P030003210562001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HURON RIVER RADIATION ONCOLOGY SPECIALISTS, P.C. 401(K) PROFIT SHARING PLAN","002","2005-01-01","HURON RIVER RADIATION ONCOLOGY SPECIALISTS. P.C.",,,"3190 CARDINAL",,"ANN ARBOR","MI","48108",,,,,,,,,,,,,,,,,,"800121604","7347124227","621111","HURON RIVER RADIATION ONCOLOGY SPECIALISTS. P.C.",,"3190 CARDINAL",,"ANN ARBOR","MI","48108",,,,,,,"800121604","7347124227",,,,"2011-03-01T13:20:36-0600","SWATI DUTTA",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",, "20110322114402P030029564561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHOTO MEDIC EQUIPMENT, INC. PROFIT SHARING PLAN","001","1979-01-01","PHOTO MEDIC EQUIPMENT, INC.",,,"239 S FEHR WAY",,"BAY SHORE","NY","117061207",,,,,,,,,,,,,,,,,,"112320573","6312426600","333900","PHOTO MEDIC EQUIPMENT, INC.",,"239 S FEHR WAY",,"BAY SHORE","NY","117061207",,,,,,,"112320573","6312426600",,,,"2011-03-22T11:35:20-0500","GLENN CORSO",,,,,12,6,0,4,10,0,10,10,0,,"2E3D","4B","1","0","1","0","0","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",, "20110308135729P040022257777001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WITCHCRAFT TAPE PRODUCTS, INC. 401(K) PLAN","001","1998-01-01","WTP, INC.",,,"PO BOX 937",,"COLOMA","MI","49038",,,,,,,,,,,,,,,,,,"383078121","2694683399","339900","WTP, INC.",,"PO BOX 937",,"COLOMA","MI","49038",,,,,,,"383078121","2694683399",,,,"2011-03-08T13:57:20-0600","BILL KLITCHMAN",,,,,21,8,0,6,14,0,14,6,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",, "20110308104117P040022176401001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"FF REALTY INC TRUST","001","2004-06-08","FF REALTY, INC.",,,"101 MERRITT BOULEVARD","SUITE 101","TRUMBULL","CT","06611",,,,,,,"101 MERRITT BOULEVARD","SUITE 101","TRUMBULL","CT","06611",,,,,,,"201251841","2033810300","531390","FF REALTY, INC.",,"101 MERRITT BOULEVARD","SUITE 101","TRUMBULL","CT","06611",,,,,,,"201251841","2033810300",,,,"2011-03-08T10:40:44-0600","JOEL FENSTER",,,,,5,5,0,0,5,0,5,5,0,,"2E2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",, "20110411103208P030040425921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRAVES ENGINEERING, INC. 401(K) PROFIT SHARING PLAN","001","1987-01-01","GRAVES ENGINEERING, INC.",,,"100 GROVE STREET",,"WORCESTER","MA","01605",,,,,,,,,,,,,,,,,,"042951558","5088560321","541330","GRAVES ENGINEERING, INC.",,"100 GROVE STREET",,"WORCESTER","MA","01605",,,,,,,"042951558","5088560321",,,,"2011-04-11T10:32:00-0500","DONALD J. GRAVES","2011-04-11T10:32:00-0500","DONALD J. GRAVES",,,11,9,0,2,11,0,11,11,0,,"2J2K3D2E2S",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110407133438P030011801767001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DOYLE & DOYLE SAVINGS AND RETIREMENT PLAN","002","2000-01-01","DOYLE & DOYLE, S.C.",,,"570 FOND DU LAC AVENUE",,"FOND DU LAC","WI","549355442",,,,,,,,,,,,,,,,,,"391971241","9209071400","621210","DOYLE & DOYLE, S.C.",,"570 FOND DU LAC AVENUE",,"FOND DU LAC","WI","549355442",,,,,,,"391971241","9209071400",,,,"2011-04-07T13:13:23-0500","KATHLEEN DOYLE KELLY",,,,,9,9,0,0,9,0,9,9,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110411122219P030040460817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVID C RIOUX DO PROFIT SHARING PLAN AND TRUST","001","1992-04-01","DAVID C RIOUX DO",,,"PO BOX 398","US ROUTE 1","MACHIAS","ME","046540398",,,,,,,"PO BOX 398","US ROUTE 1","MACHIAS","ME","046540398",,,,,,,"010442000","2072554567","621111","DAVID C RIOUX DO",,"PO BOX 398","US ROUTE 1","MACHIAS","ME","046540398",,,,,,,"010442000","2072554567",,,,"2011-04-11T12:08:23-0500","DAVID C RIOUX",,,,,13,2,0,1,3,0,3,3,0,,"2E2H3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110411122257P040041242257001","2010-07-01","2010-12-17","4","C","0","0","1","1","0","0","0","0","0",,"U.S. BANK STABLE ASSET FUND","002",,"U.S. BANK, NATIONAL ASSOCIATION",,,"U.S. BANK, N.A.",,"MILWAUKEE","WI","53202",,,,,,,"777 E. WISCONSIN AVE.",,"MILWAUKEE","WI","53202",,,,,,,"310841368","4147656550",,"U.S. BANK, NATIONAL ASSOCIATION",,"U.S. BANK, N.A.",,"MILWAUKEE","WI","53202",,,,,,,"310841368","4147656550",,,,,,,,"2011-04-11T11:54:43-0500","WILLIAM BLOSKY",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-04-11",,"Filed with authorized/valid electronic signature", "20110407190406P040039132225001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MOUNTAIN WEST BENEFIT SOLUTIONS PC 401K PLAN","001","2004-01-01","MOUNTAIN WEST BENEFIT SOLUTIONS PC",,,"1 NORTH LAST CHANCE GULCH, SUITE 3",,"HELENA","MT","59601",,,,,,,,,,,,,,,,,,"571195029","4064434121","524210","MOUNTAIN WEST BENEFIT SOLUTIONS PC",,"1 NORTH LAST CHANCE GULCH, SUITE 3",,"HELENA","MT","59601",,,,,,,"571195029","4064434121",,,,"2011-04-07T10:32:39-0500","SUSAN GARRISON","2011-04-07T10:32:39-0500","SUSAN GARRISON",,,10,10,,2,12,,12,11,,,"2A2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110408083048P040005827730001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OK MOVING & STORAGE COMPANY PROFIT SHARING PLAN","001","1980-01-01","OK MOVING & STORAGE COMPANY, INC.",,,"1129 HARMONY ROAD",,"NORFOLK","VA","23502",,,,,,,,,,,,,,,,,,"540921521","7574610007","484200","OK MOVING & STORAGE COMPANY, INC.",,"1129 HARMONY ROAD",,"NORFOLK","VA","23502",,,,,,,"540921521","7574610007",,,,"2011-04-08T08:30:39-0500","EDWARD SANER",,,,,25,25,0,1,26,0,26,26,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110411155558P030040557793001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"KPD APPRAISALS, INC. 401(K) PROFIT SHARING PLAN","001","1996-01-01","KPD APPRAISALS, INC.",,,"7290 E. BROADWAY BLVD., SUITE 178",,"TUCSON","AZ","85710",,,,,,,,,,,,,,,,,,"860737343","5203312619","531320","KPD APPRAISALS, INC.",,"7290 E. BROADWAY BLVD., SUITE 178",,"TUCSON","AZ","85710",,,,,,,"860737343","5203312619",,,,"2011-04-11T14:26:03-0500","KEVIN DOWLING",,,,,17,8,0,9,17,0,17,17,1,,"2E2J2K2G",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110329105144P040005018050001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LANGE-STEGMANN COMPANY 401K PROFIT SHARING PLAN","001","1981-01-01","LANGE-STEGMANN COMPANY",,,"1 ANGELICA ST",,"SAINT LOUIS","MO","631473401",,,,,,,,,,,,,,,,,,"430835622","3142419531","424500","LANGE-STEGMANN COMPANY",,"1 ANGELICA ST",,"SAINT LOUIS","MO","631473401",,,,,,,"430835622","3142419531",,,,"2011-03-29T10:51:44-0500","RICHARD STEGMANN",,,,,109,79,3,25,107,0,107,106,1,,"2E2H2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110407200609P030180928576001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STEPHEN J. DOSE D.M.D. MONEY PURCHASE PENSION PLAN AND TRUST","001","1984-01-01","STEPHEN J. DOSE D.M.D.",,,"1865 WEST 29TH AVENUE",,"EUGENE","OR","97405",,,,,,,,,,,,,,,,,,"930790029","5414856645","621210","STEPHEN J. DOSE D.M.D.",,"1865 WEST 29TH AVENUE",,"EUGENE","OR","97405",,,,,,,"930790029","5414856645",,,,"2011-04-06T04:13:30-0500","STEPHEN J. DOSE D.M.D.","2011-04-06T04:13:30-0500","STEPHEN J. DOSE D.M.D.",,,4,4,,,4,,4,4,,,"2C3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110408114014P030038888993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEGACY CAPITAL MANAGEMENT, INC. 401(K) PROFIT SHARING PLAN","001","2008-01-01","LEGACY CAPITAL MANAGEMENT, INC.",,,"3741 DOUGLAS BLVD., SUITE 320",,"ROSEVILLE","CA","95661",,,,,,,,,,,,,,,,,,"943183422","9167836200","523900","LEGACY CAPITAL MANAGEMENT, INC.",,"3741 DOUGLAS BLVD., SUITE 320",,"ROSEVILLE","CA","95661",,,,,,,"943183422","9167836200",,,,"2011-04-08T11:40:05-0500","WARREN HUTSON",,,,,5,5,0,0,5,0,5,5,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110329113521P030156647296001","2007-10-01","2008-09-30","2",,"0","0","0","0","0","0","0","1","0",,"GOURMET MUSHROOMS, INC. 401(K) PROFIT SHARING PLAN","001","1995-10-01","GOURMET MUSHROOMS, INC.",,,"P.O. BOX 180",,"SEBASTOPOL","CA","95473",,,,,,,"P.O. BOX 180",,"SEBASTOPOL","CA","95473",,,,,,,"942486729","7078231743","111210","GOURMET MUSHROOMS, INC.",,"P.O. BOX 180",,"SEBASTOPOL","CA","95473",,,,,,,"942486729","7078231743",,,,"2011-03-29T11:27:12-0500","DAVID LAW",,,,,39,34,1,3,38,0,38,14,0,,"2E2G2J2K2R3E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110329140314P040033892177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IVAN M. TURPIN, M.D., INC. PROFIT SHARING PLAN","002","1989-01-01","IVAN M. TURPIN, M.D., INC.",,,"6905 E. OVERLOOK TERRACE",,"ANAHEIM","CA","928075126",,,,,,,,,,,,,,,,,,"953651729","7149974300","621111","IVAN M. TURPIN, M.D., INC.",,"6905 E. OVERLOOK TERRACE",,"ANAHEIM","CA","928075126",,,,,,,"953651729","7149974300",,,,"2011-03-29T13:50:00-0500","IVAN M. TURPIN, M.D.",,,,,14,9,0,3,12,0,12,12,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110329143250P030033440577001","2001-01-01","2001-12-31","2",,"0","0","0","0","0","0","0","1","0",,"JUNGLE JIM'S MARKET, INC. WELFARE BENEFIT PLAN","502","1980-01-01","JUNGLE JIMS MARKET, INC.",,,"5440 DIXIE HIGHWAY",,"FAIRFIELD","OH","45014",,,,,,,,,,,,,,,,,,"310955124","5136746000","445110","JUNGLE JIMS MARKET, INC.",,"5440 DIXIE HIGHWAY",,"FAIRFIELD","OH","45014",,,,,,,"310955124","5136746000",,,,"2011-03-29T14:32:36-0500","JAMES O. BONAMINIO",,,,,271,244,0,0,244,,,,,,,"4A4B4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110407133847P030038379041001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"J.B. COXWELL CONTRACTING, INC. 401(K) PLAN AND TRUST","001","2001-02-01","J.B. COXWELL CONTRACTING, INC.",,,"6741 LLOYD ROAD WEST",,"JACKSONVILLE","FL","32254",,,,,,,,,,,,,,,,,,"593666875","9047861120","237990","J.B. COXWELL CONTRACTING, INC.",,"6741 LLOYD ROAD WEST",,"JACKSONVILLE","FL","32254",,,,,,,"593666875","9047861120",,,,"2011-04-07T13:26:44-0500","WAYNE WILLIFORD","2011-04-07T13:26:44-0500","WAYNE WILLIFORD",,,233,292,0,51,343,0,343,228,9,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","2","0","1","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110408114501P040181031824001","2010-01-01","2010-09-30","3",,"0","0","0","1","0","0","0","0","0",,"DAYBREAK FOODS, INC. MEDICAL BENEFITS PLAN","520","2002-10-01","DAYBREAK FOODS, INC.",,,"PO BOX 800",,"LAKE MILLS","WI","53551",,,,,,,"533 E. TYRANENA PARK ROAD",,"LAKE MILLS","WI","53551",,,,,,,"391052651","9206488341","311500","DAYBREAK FOODS, INC.",,"PO BOX 800",,"LAKE MILLS","WI","53551",,,,,,,"391052651","9206488341",,,,"2011-04-08T11:44:01-0500","RICHARD HERMANN",,,,,201,190,,,190,,190,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110411123153P030190395600001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TAX DEFERRED ANNUITY PLAN FOR THE EMPLOYEES OF THE UNITED STATES PONY CLUBS","001","1995-03-01","UNITED STATES PONY CLUBS",,,"4041 IRON WORKS PARKWAY",,"LEXINGTON","KY","40511",,,,,,,"4041 IRON WORKS PARKWAY",,"LEXINGTON","KY","40511",,,,,,,"611352306","8592547669","611000","UNITED STATES PONY CLUBS",,"4041 IRON WORKS PARKWAY",,"LEXINGTON","KY","40511",,,,,,,"611352306","8592547669",,,,"2011-04-11T12:30:40-0500","KAREN WINN",,,,,22,20,,3,23,,23,18,,,"2L2M",,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110407151529P030011819159001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"BILLS CHEVROLET INC NADART PENSION PLAN","001","1979-04-01","BILLS CHEVROLET INC",,,"1289 W MAIN ST.",,"WEST LIBERTY","KY","41472",,,,,,,,,,,,,,,,,,"611118054","6067433116","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-04-07T15:12:27-0500","ALAN B. SVEDLOW",,,,,10,0,0,0,0,0,0,0,0,,"2C2F2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110408094714P030038842033001","2010-11-02","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"BEANE COUNTERS INC. PROFIT SHARING PLAN","001","2010-11-02","BEANE COUNTERS INC.",,,"12319-201 OCEAN GATEWAY",,"OCEAN CITY","MD","21842",,,,,,,,,,,,,,,,,,"273832689","4102131633","531390","BEANE COUNTERS INC.",,"12319-201 OCEAN GATEWAY",,"OCEAN CITY","MD","21842",,,,,,,"273832689","4102131633",,,,"2011-04-05T13:58:32-0500","MARK CLARK",,,,,2,2,0,0,2,0,2,2,0,,"2E2G3F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110408150950P030038977329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE GAME OF WORK, INC. RETIREMENT PLAN","002","1984-10-01","THE GAME OF WORK ENTERPRISES, INC.",,,"18 RED HAWK RIDGE",,"PARK CITY","UT","84098",,,,,,,,,,,,,,,,,,"870463875","8014848866","812990","THE GAME OF WORK ENTERPRISES, INC.",,"18 RED HAWK RIDGE",,"PARK CITY","UT","84098",,,,,,,"870463875","8014848866",,,,"2011-04-08T15:09:46-0500","CARLA J. COONRADT","2011-04-08T15:09:46-0500","CARLA J. COONRADT",,,9,2,0,0,2,0,2,2,0,,"2A2E3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110407080014P030038227937004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"US LEAGUE OF SAVINGS ASSOCIATIONS RET. PLAN FOR SELF EMPLOYED","001","1983-01-01","PHILLIP H. WINSLOW, M.D.",,,"123 PATTON DRIVE",,"PONCA CITY","OK","74601",,,,,,,,,,,,,,,,,,"731008368","5807654620","621111","PHILLIP H. WINSLOW, M.D.",,"123 PATTON DRIVE",,"PONCA CITY","OK","74601",,,,,,,"731008368","5807654620",,,,"2011-04-06T17:12:35-0500","PHILLIP H. WINSLOW, M.D.","2011-04-06T17:12:49-0500","PHILLIP WINSLOW, M.D.",,,2,2,0,0,2,0,2,2,,,"2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110407083623P030005589122001","2006-05-15","2007-05-14","2",,"0","0","0","0","0","0","0","1","0",,"METAL MANAGEMENT MS GROUP EMPLOYEE BENEFIT PLAN","501","1994-05-14","METAL MANAGEMENT MS",,,"304 WEST BANKHEAD",,"NEW ALBANY","MS","38652",,,,,,,,,,,,,,,,,,"760570379","6625343004","332900","METAL MANAGEMENT MS",,"304 WEST BANKHEAD",,"NEW ALBANY","MS","38652",,,,,,,"760570379","6625343004","MORRIS RECYCLING, INC.","721342277","501","2011-04-07T08:35:01-0500","SAMMY SIMMONS",,,,,144,150,2,0,152,0,152,0,0,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110408084707P030038821745001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"A AND R ELECTRIC","001","1995-04-25","A AND R ELECTRIC",,,"15150 MIDDLLEBROOKE DR.",,"HOUSTON","TX","77058",,,,,,,"15150 MIDDLLEBROOKE DR.",,"HOUSTON","TX","77058",,,,,,,"760287487","7138946253","423600","A AND R ELECTRIC",,"15150 MIDDLLEBROOKE DR.",,"HOUSTON","TX","77058",,,,,,,"760287487","7138946253",,,,"2011-04-08T07:44:21-0500","LISA LINKER",,,,,1,0,0,0,0,0,0,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110401182139P040163994976001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALLEY CENTER FAMILY PRACTICE MEDICAL GROUP, INC. PROFIT SHARING PLAN","001","1991-01-01","VALLEY CENTER FAMILY PRACTICE MEDICAL GRP., INC.",,,"P.O. BOX 348",,"VALLEY CENTER","CA","92082",,,,,,,,,,,,,,,,,,"953537022","7607490824","621111","VALLEY CENTER FAMILY PRACTICE MEDICAL GRP., INC.",,"P.O. BOX 348",,"VALLEY CENTER","CA","92082",,,,,,,"953537022","7607490824",,,,"2011-04-01T18:21:36-0500","DAVID GREB, M. D.","2011-04-01T18:21:36-0500","DAVID GREB, M. D.",,,8,6,,2,8,,8,8,1,,"2E2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110408135923P040039583201001","2010-07-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"POWLES FH, INC., 401K PSP","001","2000-06-01","POWLES FUNERAL HOME, INC.",,,"PO BOX 248",,"ROCKWELL","NC","28138",,,,,,,"913 WEST MAIN STREET",,"ROCKWELL","NC","28138",,,,,,,"560689285","7042797241","812210","POWLES FUNERAL HOME, INC.",,"PO BOX 248",,"ROCKWELL","NC","28138",,,,,,,"560689285","7042797241",,,,"2011-04-08T13:59:16-0500","STEPHEN STATON",,,,,9,9,0,0,9,0,9,9,0,,"3D2E2J2K2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110408143335P040005852706002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BRINSON, ASKEW & BERRY, LLP 401(K) PLAN","003","2006-01-01","BRINSON, ASKEW, BERRY, SEIGLER, RICHARDSON & DAVIS LLP",,,"P.O. BOX 5513",,"ROME","GA","301625513",,,,,,,"P.O. BOX 5513","615 WEST FIRST STREET","ROME","GA","301625513",,,,,,,"581233734","7062918853","541110","BRINSON, ASKEW, BERRY, SEIGLER, RICHARDSON & DAVIS",,"P.O. BOX 5513",,"ROME","GA","301625513",,,,,,,"581233734","7062918853",,,,"2011-03-28T08:33:45-0500","C. KING ASKEW",,,,,39,34,,5,39,,39,39,,,"2E2J2K2R3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110401110532P040035491297001","2011-01-01","2011-03-31","2",,"0","0","1","1","0","0","0","0","0",,"CELLULAR ONE OF SLO 401K PLAN","001","1999-01-01","SLO CELLULAR, INC.","CELLULAR ONE",,"POST OFFICE BOX 4331",,"SAN LUIS OBISPO","CA","93403",,,,,,,,,,,,,,,,,,"770291203","8055430100","517000","SLO CELLULAR, INC.",,"POST OFFICE BOX 4331",,"SAN LUIS OBISPO","CA","93403",,,,,,,"770291203","8055430100",,,,"2011-04-01T11:04:53-0500","DOUGLAS S. HENDRY",,,,,23,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",, "20110329131108P040033870209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IWPA - 401(K) PLAN","002","1997-01-01","INTERNATIONAL WOOD PRODUCTS ASSOC",,,"4214 KING STREET, WEST",,"ALEXANDRIA","VA","22302",,,,,,,,,,,,,,,,,,"941371133","7038206696","321900","INTERNATIONAL WOOD PRODUCTS ASSOC",,"4214 KING STREET, WEST",,"ALEXANDRIA","VA","22302",,,,,,,"941371133","7038206696",,,,"2011-03-29T13:10:53-0500","BRENT J. MCCLENDON",,,,,4,3,0,0,3,0,3,3,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110407103816P040038931505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTH VALLEY HOSPITAL LIFE & DISABILITY INSURANCE PLAN","503","1985-01-01","NORTH VALLEY HOSPITAL",,,"1600 HOSPITAL WAY",,"WHITEFISH","MT","59937",,,,,,,"1600 HOSPITAL WAY",,"WHITEFISH","MT","59937",,,,,,,"810247969","4068633551","622000","NORTH VALLEY HOSPITAL",,"1600 HOSPITAL WAY",,"WHITEFISH","MT","59937",,,,,,,"810247969","4068633551",,,,"2011-04-07T10:37:39-0500","SUSAN CATT","2011-04-07T10:36:46-0500","SUSAN CATT",,,187,192,,,192,,192,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110408101508P040039495633002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MILLINGTON DENTAL P.C. SAFE HARBOR 401(K) PLAN","001","2008-01-01","MILLINGTON DENTAL, P.C.",,,"3272 CREEKVIEW DR",,"DAVISON","MI","48423",,,,,,,,,,,,,,,,,,"261376940","9898713291","621210","MILLINGTON DENTAL, P.C.",,"3272 CREEKVIEW DR",,"DAVISON","MI","48423",,,,,,,"261376940","9898713291",,,,"2011-04-08T11:01:30-0500","JOSEPH A VELLA","2011-04-08T11:01:43-0500","JOSEPH A VELLA",,,9,7,,,7,,7,7,,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110401190245P040035714897001","2010-01-01","2010-06-30","2",,"0","0","0","1","0","0","0","0","0",,"DENTAL PLAN - BUO","502","2006-07-01","CARE1ST HEALTH PLAN",,,"POTRERO GRANDE DRIVE",,"MONTEREY PARK","CA","91755",,,,,,,"POTRERO GRANDE DRIVE",,"MONTEREY PARK","CA","91755",,,,,,,"954468482","3238896638","524290","CARE1ST HEALTH PLAN",,"POTRERO GRANDE DRIVE",,"MONTEREY PARK","CA","91755",,,,,,,"954468482","3238896638",,,,"2011-04-01T18:26:15-0500","JANET JAN",,,,,208,197,0,0,197,0,197,0,0,0,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",, "20110329111758P030004886290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEHMERT STORE SERVICES, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","MEHMERT STORE SERVICES, INC.",,,"W222 N5734 MILLER WAY, STE 109",,"SUSSEX","WI","53089",,,,,,,,,,,,,,,,,,"391720008","4142464645","541990","MEHMERT STORE SERVICES, INC.",,"W222 N5734 MILLER WAY, STE 109",,"SUSSEX","WI","53089",,,,,,,"391720008","4142464645",,,,"2011-03-29T10:55:27-0500","MICHELE MEHMERT",,,,,10,10,0,1,11,0,11,10,0,,"2E2J2K2F2G2T3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110411121529P040041239793001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GLOBAL INFOTEK 401(K) PROFIT SHARING PLAN","001","1998-01-01","GLOBAL INFOTEK, INC.",,,"1920 ASSOCIATION DR., SUITE 200",,"RESTON","VA","20191",,,,,,,"1920 ASSOCIATION DR., SUITE 200",,"RESTON","VA","20191",,,,,,,"541791856","7036521600","541512","GLOBAL INFOTEK, INC.",,"1920 ASSOCIATION DR., SUITE 200",,"RESTON","VA","20191",,,,,,,"541791856","7036521600",,,,"2011-04-11T12:13:06-0500","KAREN EMAMI",,,,,88,47,0,32,79,0,79,72,7,,"2A2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110411142244P040041299473001","2008-10-01","2009-09-30","2",,"0","1","0","0","0","0","0","0","0",,"A-1 ROOFING, INC. 401(K) PROFIT SHARING PLAN","001","2007-10-01","A-1 ROOFING, INC.",,,"PO BOX 2257","8120 OLD HWY 99","OLYMPIA","WA","98507",,,,,,,,,,,,,,,,,,"911445744","3603521294","238100","A-1 ROOFING, INC.",,"PO BOX 2257","8120 OLD HWY 99","OLYMPIA","WA","98507",,,,,,,"911445744","3603521294",,,,"2011-04-11T14:17:18-0500","BARBARA HAFEY","2011-04-11T14:17:18-0500","BARBARA HAFEY",,,11,11,0,0,11,3,14,0,0,,"2F2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110329135526P030033426785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JABARA GROUP, INC. PROFIT SHARING PLAN","001","2005-01-01","GERRY JABARA",,,"230 FIFTH AVENUE",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"223266379","2127251717","424300","GERRY JABARA",,"230 FIFTH AVENUE",,"NEW YORK","NY","10001",,,,,,,"223266379","2127251717",,,,"2011-03-29T13:55:18-0500","GERRY JABARA",,,,,6,3,0,2,5,0,5,4,0,,"2E2A3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110407172356P040179097040001","2010-01-01","2010-12-15","2",,,,"1","1",,,,,,,"SHOPSIN PAPER CORP 401 (K) PROFIT SHARING PLAN","001","2000-11-23","SHOPSIN PAPER CORPORATION",,,"C/O PAUL POMBO CPA PC","968 THOMPSON DRIVE","BAY SHORE","NY","11706",,,,,,,"50-05 METROPOLITAN AVE",,"RIDGEWOOD","NY","11385",,,,,,,"112714665","7184173333","323100","STEVEN A SCHWIMMER","PAUL POMBO CPA PC","968 THOMPSON DRIVE",,"BAY SHORE","NY","11706",,,,,,,"112714665","7184173333",,,,"2011-03-31T11:57:56-0500","STEVEN A SCHWIMMER","2011-03-31T11:57:56-0500","STEVEN A SCHWIMMER",,,2,0,0,0,0,,0,0,0,,"2E2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110408154437P040005856738001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EASTERN BAG AND PAPER CO., INC. GROUP INSURANCE PLAN","501","1981-10-01","EASTERN BAG AND PAPER CO., INC.",,,"200 RESEARCH DRIVE",,"MILFORD","CT","06460",,,,,,,,,,,,,,,,,,"060703019","2038781814","424100","EASTERN BAG AND PAPER CO., INC.",,"200 RESEARCH DRIVE",,"MILFORD","CT","06460",,,,,,,"060703019","2038781814",,,,"2011-04-08T15:44:28-0500","JOSEPH LOPRESTI",,,,,285,276,0,0,276,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110408101706P040005834882001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BLUE HIVE, INC. 401(K) PLAN","001","2005-03-01","BLUE HIVE, INC.",,,"7 COPPAGE DRIVE",,"WORCESTER","MA","01603",,,,,,,,,,,,,,,,,,"202007282","5085819560","339900","BLUE HIVE, INC.",,"7 COPPAGE DRIVE",,"WORCESTER","MA","01603",,,,,,,"202007282","5085819560",,,,"2011-04-08T10:16:59-0500","PAUL E HANLON","2011-04-08T10:16:59-0500","PAUL E HANLON",,,61,60,0,5,65,0,65,26,0,,"2E2G2J3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110408090058P030038826401001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"WALL UNITS INC.","001","1996-05-08","WALL UNITS INC.",,,"6732 W COAL MINE AVE. #507",,"LITTLETON","CO","80123",,,,,,,"6732 W COAL MINE AVE. #507",,"LITTLETON","CO","80123",,,,,,,"840794230","3039791700",,"STEPHEN W HOUY",,"6732 W COAL MINE AVE. #507",,"LITTLETON","CO","80123",,,,,,,"840794230","3039791700",,,,"2011-04-08T07:36:10-0500","LISA LINKER",,,,,1,0,0,0,0,0,0,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110401082806P030034932801001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ECHL, INC.","001","2007-03-23","ECHL",,,"116 VILLAGE BLVD","SUITE 230","PRINCETON","NJ","08540",,,,,,,"116 VILLAGE BLVD","SUITE 230","PRINCETON","NJ","08540",,,,,,,"541472984","6094520770","711210","ECHL",,"116 VILLAGE BLVD","SUITE 230","PRINCETON","NJ","08540",,,,,,,"541472984","6094520770",,,,"2011-04-01T08:27:48-0500","RYAN CRELIN",,,,,11,8,0,4,12,0,12,8,0,,"2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",, "20110408102744P040039500289001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"J.P. MARTIN & SONS CONSTRUCTION CORPORATION DAVIS-BACON PENSION PLAN AND TRUST","001","2002-05-18","J.P. MARTIN & SONS CONSTRUCTION CORPORATION",,,"P.O. BOX 58",,"CARIBOU","ME","04736",,,,,,,"647 MAIN STREET, SUITE 26",,"CARIBOU","ME","04736",,,,,,,"010493331","2074986063","236200","J.P. MARTIN & SONS CONSTRUCTION CORPORATION",,"P.O. BOX 58",,"CARIBOU","ME","04736",,,,,,,"010493331","2074986063",,,,"2011-04-08T10:26:27-0500","JAMES MARTIN",,,,,9,10,0,0,10,0,10,10,0,,"2C2G",,"1",,"1",,"1",,"1",,"1",,,"0","1","1","1",,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110408133008P030038935329001","2005-07-01","2006-06-30","2",,"0","1","0","0","0","0","0","0","0",,"HOUSING TRUST OF SANTA CLARA COUNTY, INC. 403(B) DEFINED CONTRIBUTION RETIREMENT PLAN","001","2003-03-01","HOUSING TRUST OF SANTA CLARA COUNTY, INC",,,"95 S. MARKET STREET, SUITE 550",,"SAN JOSE","CA","95113",,,,,,,"95 S. MARKET STREET, SUITE 610",,"SAN JOSE","CA","95113",,,,,,,"770545135","4084363450","813000","HOUSING TRUST OF SANTA CLARA COUNTY, INC",,"95 S. MARKET STREET, SUITE 550",,"SAN JOSE","CA","95113",,,,,,,"770545135","4084363450",,,,"2011-04-08T13:29:54-0500","ALEXIS WONG",,,,,,,,,,,,,,,"2F2L2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110407104738P040038936689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENLIGHTEN RETIREMENT PLAN/401(K)","001","1998-03-01","THE PUP GROUP, INC. DBA ENLIGHTEN",,,"3027 MILLER ROAD",,"ANN ARBOR","MI","48103",,,,,,,"3027 MILLER ROAD",,"ANN ARBOR","MI","48103",,,,,,,"382523470","7346686678","541512","THE PUP GROUP, INC. DBA ENLIGHTEN",,"3027 MILLER ROAD",,"ANN ARBOR","MI","48103",,,,,,,"382523470","7346686678",,,,"2011-04-07T10:44:04-0500","MARK FRIEDMAN","2011-04-07T10:26:32-0500","STEVE GLAUBERMAN",,,103,87,0,22,109,0,109,81,1,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110407085959P030038255585001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"J.B. COXWELL CONTRACTING, INC. WELFARE BENEFIT PLAN","502","2000-11-01","J.B. COXWELL CONTRACTING, INC.",,,"6741 LLOYD ROAD WEST",,"JACKSONVILLE","FL","32254",,,,,,,,,,,,,,,,,,"593666875","9047861120","237990","J.B. COXWELL CONTRACTING, INC.",,"6741 LLOYD ROAD WEST",,"JACKSONVILLE","FL","32254",,,,,,,"593666875","9047861120",,,,"2011-04-07T08:39:50-0500","WAYNE WILLIFORD","2011-04-07T08:39:50-0500","WAYNE WILLIFORD",,,441,412,0,0,412,0,,,,,,"4A4B4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110406143748P040038455697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONROE MANAGEMENT CORP. DEFINED BENEFIT PLAN","001","2005-01-01","MONROE MANAGEMENT CORP.",,,"P.O. BOX 230",,"MIDLAND","TX","79702",,,,,,,,,,,,,,,,,,"752436325","4326820963","541600","MONROE MANAGEMENT CORP.",,"P.O. BOX 230",,"MIDLAND","TX","79702",,,,,,,"752436325","4326820963",,,,"2011-04-06T14:37:34-0500","D MARK TYLER",,,,,2,2,0,0,2,0,2,,0,,"1A1G3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110404144404P040037311713001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GSSI SEALANTS, INC. 401 (K) PLAN","001","1971-09-01","GSSI SEALANTS, INC.","GSSI SEALANTS, INC.","GSSI SEALANTS, INC.","3605 WILLOWBEND","SUITE 575","HOUSTON","TX","77054",,,,,,,"3605 WILLOWBEND","SUITE 575","HOUSTON","TX","77054",,,,,,,"205534069","8327786400","324120","GSSI SEALANTS, INC.","GSSI SEALANTS, INC.","3605 WILLOWBEND","SUITE 575","HOUSTON","TX","77054",,,,,,,"205534069","8327786400",,,,"2011-04-04T14:43:49-0500","MIGUEL PENA",,,,,97,4,0,93,97,1,98,97,0,,"2E2F2G2J2K3E",,"1",,,,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110404160000P030011307959001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ARBONIES KING VLOCK, P.C. RETIREMENT PLAN","001","2000-01-01","ARBONIES KING VLOCK P.C.",,,"199 SOUTH MONTOWESE STREET",,"BRANFORD","CT","06405",,,,,,,,,,,,,,,,,,"061294928","2034839900","541310","ARBONIES KING VLOCK P.C.",,"199 SOUTH MONTOWESE STREET",,"BRANFORD","CT","06405",,,,,,,"061294928","2034839900",,,,"2011-04-04T04:59:56-0500","GLENN W. ARBONIES",,,,,8,6,0,1,7,0,7,4,0,,"2E2F2G2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110405100944P030037167505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COBURN VENTURES, LLC 401(K) PLAN","001","2008-01-01","COBURN VENTURES, LLC",,,"2490 BLACK ROCK TURNPIKE","SUITE #311","FAIRFIELD","CT","06825",,,,,,,,,,,,,,,,,,"203168497","2039188323","523900","COBURN VENTURES, LLC",,"2490 BLACK ROCK TURNPIKE","SUITE #311","FAIRFIELD","CT","06825",,,,,,,"203168497","2039188323",,,,"2011-04-05T10:09:40-0500","DAVID HARVEY","2011-04-05T10:09:40-0500","DAVID HARVEY",,,6,6,0,0,6,0,6,5,0,,"2J2G2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110404133654P040037282225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMSOL, LLC WELFARE BENEFIT PLAN","501","2005-06-01","AMSOL, LLC",,,"4194 MENDENHALL OAKS PARKWAY","SUITE 160","HIGH POINT","NC","27262",,,,,,,,,,,,,,,,,,"562248940","3368841830","541600","AMSOL, LLC",,"4194 MENDENHALL OAKS PARKWAY","SUITE 160","HIGH POINT","NC","27262",,,,,,,"562248940","3368841830",,,,"2011-04-04T13:36:49-0500","DALE HILLIARD",,,,,135,213,0,0,213,,,,,,,"4A4B4D4E4F4H","0","0","0","1","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110405192337P040174180048001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"ELECTRIC POWER SERVICES INC. - PROFIT SHARING PLAN","002","1997-01-01","ELECTRIC POWER SERVICES INC.",,,"10356 OSPREY TRACE",,"WEST PALM BEACH","FL","33412",,,,,,,,,,,,,,,,,,"222935150","5616910812","541330","LADISLAU HAJOS",,"10356 OSPREY TRACE",,"WEST PALM BEACH","FL","33412",,,,,,,"222935150","8563053601",,,,"2011-04-05T18:39:16-0500","LADISLAU HAJOS",,,,,2,0,0,0,0,0,0,0,2,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110406105236P030011601319001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"MUUS ASSET MANAGEMENT 401(K) PLAN","001","1998-04-01","MUUS ASSET MANAGEMENT CO. LLC",,,"PO BOX 574",,"SOUTHPORT","CT","06890",,,,,,,"1227 PEQUOT AVE",,"SOUTHPORT","CT","06890",,,,,,,"134001865","2032213462","523900","MUUS ASSET MANAGEMENT CO. LLC",,"PO BOX 574",,"SOUTHPORT","CT","06890",,,,,,,"134001865","2032213462",,,,"2011-04-06T10:51:20-0500","KATHLEEN DUNLEAVY",,,,,21,8,0,8,16,0,16,13,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110406110154P040038371905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEEN MACEK PAPER CO., INC. EMPLOYEES' PROFIT SHARING PLAN AND TRUST","001","1970-11-20","STEEN MACEK PAPER CO., INC.",,,"3224 MARKET ST.",,"GREEN BAY","WI","54304",,,,,,,"3224 MARKET ST.",,"GREEN BAY","WI","54304",,,,,,,"390635836","9203360070","424100","STEEN MACEK PAPER CO., INC.",,"3224 MARKET ST.",,"GREEN BAY","WI","54304",,,,,,,"390635836","9203360070",,,,"2011-04-06T11:00:41-0500","RYAN MARIN",,,,,33,31,0,2,33,0,33,30,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110405110433P030037193297001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MANITO VETERINARY CLINIC 401(K) PROFIT SHARING PLAN","001","1995-01-01","MANITO VETERINARY CLINIC",,,"2304 E. 57TH AVENUE",,"SPOKANE","WA","99223",,,,,,,"2304 E. 57TH AVENUE",,"SPOKANE","WA","99223",,,,,,,"911559056","5094481444","541940","MANITO VETERINARY CLINIC",,"2304 E. 57TH AVENUE",,"SPOKANE","WA","99223",,,,,,,"911559056","5094481444",,,,"2011-03-30T13:02:54-0500","M. VERN BROCK",,,,,12,0,0,0,0,0,0,0,0,,"2A3D2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110325110122P040031595025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARRETT G. MOORE, DDS, PA 401K PLAN","001","2005-01-01","BARRETT G. MOORE, DDS, PA",,,"128 SOUTH TRYON STREET, SUITE 860",,"CHARLOTTE","NC","282025011",,,,,,,,,,,,,,,,,,"201198311","7043423213","621210","BARRETT G. MOORE, DDS, PA",,"128 SOUTH TRYON STREET, SUITE 860",,"CHARLOTTE","NC","282025011",,,,,,,"201198311","7043423213",,,,"2011-03-25T10:51:30-0500","BARRETT MOORE",,,,,7,6,0,0,6,0,6,6,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110328105237P030032815137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARDIOLOGY ASSOCIATES OF MORRISTOWN, LLC DEFINED BENEFIT PENSION PLAN & TRUST","002","2004-01-01","CARDIOLOGY ASSOCIATES OF MORRISTOWN LLC",,,"95 MADISON AVENUE - SUITE A10",,"MORRISTOWN","NJ","07960",,,,,,,,,,,,,,,,,,"550832526","9738899001","621111","CARDIOLOGY ASSOCIATES OF MORRISTOWN LLC",,"95 MADISON AVENUE - SUITE A10",,"MORRISTOWN","NJ","07960",,,,,,,"550832526","9738899001",,,,"2011-03-28T10:52:17-0500","MARK BLUM",,,,,15,11,0,4,15,0,15,,0,,"1C3B",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-28","Filed with authorized/valid electronic signature",, "20110406173544P030037902817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BROWN-BUNTIN ASSOCIATES, INC. PROFIT SHARING PLAN","001","1986-01-01","BROWN-BUNTIN ASSOCIATES, INC.",,,"1148 NORTH CHINOWTH ST., SUITE B",,"VISALIA","CA","93291",,,,,,,,,,,,,,,,,,"680114283","5596274923","238900","BROWN-BUNTIN ASSOCIATES, INC.",,"1148 NORTH CHINOWTH ST., SUITE B",,"VISALIA","CA","93291",,,,,,,"680114283","5596274923",,,,"2011-04-06T17:35:33-0500","WARREN J. HUTSON",,,,,5,3,0,1,4,0,4,4,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110404114927P030036637745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BADGER POULTRY PLUS 401(K) PLAN & TRUST","001","1996-10-01","BADGER POULTRY PLUS, INC.",,,"P.O. BOX 8458",,"MADISON","WI","53708",,,,,,,,,,,,,,,,,,"391041212","6082213800","112300","BADGER POULTRY PLUS, INC.",,"P.O. BOX 8458",,"MADISON","WI","53708",,,,,,,"391041212","6082213800",,,,"2011-04-04T11:40:35-0500","M. MATTHEW JOHNSON",,,,,15,13,0,2,15,0,15,15,0,,"2E2J2K2F2G2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110405163245P030037315009001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"PIONEER ELECTRIC SUPPLY CO., INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","2010-01-01","PIONEER ELECTRIC SUPPLY CO., INC.",,,"PO BOX 348",,"FRANKLIN","PA","16323",,,,,,,,,,,,,,,,,,"251252829","8144371342","423600","PIONEER ELECTRIC SUPPLY CO., INC.",,"PO BOX 348",,"FRANKLIN","PA","16323",,,,,,,"251252829","8144371342",,,,"2011-04-05T16:40:38-0500","JEFFREY W. POTTER","2011-04-05T16:40:38-0500","JEFFREY W. POTTER",,,13,17,,0,17,0,17,17,0,,"2E2P2Q",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110406123551P030037772801001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MIDWEST SPECIAL SERVICES, INC. 401(K) PLAN","002","2005-01-01","MIDWEST SPECIAL SERVICES, INC.",,,"900 OCEAN ST",,"ST PAUL","MN","551063448",,,,,,,,,,,,,,,,,,"410746072","6517781000","624310","MIDWEST SPECIAL SERVICES, INC.",,"900 OCEAN ST",,"ST PAUL","MN","551063448",,,,,,,"410746072","6517781000",,,,"2011-04-06T08:58:21-0500","LYTH HARTZ",,,,,86,82,,2,84,,84,75,8,,"2E2F2G2J2K3E3H",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110404105128P040037207825001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"IP FABRICS INC 401K PLAN","001","2009-01-01","IP FABRICS, INC.",,"GLENFORD MYERS","14976 NW GREENBRIER PARKWAY",,"BEAVERTON","OR","97006",,,,,,,,,,,,,,,,,,"800321018","5034442400","541519","IP FABRICS, INC.","GLENFORD MYERS","14976 NW GREENBRIER PARKWAY",,"BEAVERTON","OR","97006",,,,,,,"800321018","5034442400",,,,"2011-04-04T10:50:54-0500","KEVIN GRAVES",,,,,10,11,0,0,11,0,11,9,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110328151123P040033362129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NAVIGATOR CONSULTING, INC. PROFIT SHARING PLAN","002","2004-01-01","NAVIGATOR CONSULTING, INC.",,,"8871 LINELL COVE",,"CORDOVA","TN","38016",,,,,,,,,,,,,,,,,,"621841743","9013095388","541990","NAVIGATOR CONSULTING, INC.",,"8871 LINELL COVE",,"CORDOVA","TN","38016",,,,,,,"621841743","9013095388",,,,"2011-03-28T15:06:22-0500","JASON PHILLIPS",,,,,2,2,0,0,2,0,2,2,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-28","Filed with authorized/valid electronic signature",, "20110405103432P030001094643001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PAM FALKNER, CMA, CPA 401(K) PLAN","001","1999-01-01","PAM FALKNER",,,"1310 SO AVALON",,"WEST MEMPHIS","AR","72301",,,,,,,,,,,,,,,,,,"710500556","8707326180","541211","PAM FALKNER",,"1310 SO AVALON",,"WEST MEMPHIS","AR","72301",,,,,,,"710500556","8707326180",,,,"2011-04-05T10:34:31-0500","PAM FALKNER",,,,,6,5,0,1,6,0,6,6,0,,"2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110405132019P030005460194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IMRAN SHARIEF M.D. RETIREMENT PLAN","003","2008-01-01","IMRAN SHARIEF MD INC.",,,"8880 E. GARDEN VIEW DR.",,"ANAHEIM","CA","928081677",,,,,,,,,,,,,,,,,,"261703267","7142812991","621111","IMRAN SHARIEF MD INC.",,"8880 E. GARDEN VIEW DR.",,"ANAHEIM","CA","928081677",,,,,,,"261703267","7142812991",,,,"2011-04-05T13:16:59-0500","IMRAN SHARIEF","2011-04-05T13:16:59-0500","IMRAN SHARIEF",,,2,2,,,2,,2,2,0,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110406124550P030177468320001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PETER S. GUIDRY, D.D.S. PROFIT SHARING PLAN","001","1985-01-01","PETER S. GUIDRY, D.D.S.",,,"PO BOX 2118",,"MORGAN CITY","LA","703812118",,,,,,,,,,,,,,,,,,"720894624","5043855423","621210","PETER S. GUIDRY, D.D.S.",,"PO BOX 2118",,"MORGAN CITY","LA","703812118",,,,,,,"720894624","5043855423",,,,"2011-04-06T12:41:28-0500","PETER GUIDRY",,,,,5,5,0,0,5,0,5,5,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110406125236P030005533554001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","1","0","0","0",,"EMS CONSTRUCTION, INC. RETIREMENT SAVINGS PLAN","002","1995-04-01","EMS CONSTRUCTION, INC.",,,"1040 S. ANDREASEN DRIVE SUITE 110",,"ESCONDIDO","CA","92029",,,,,,,,,,,,,,,,,,"330549242","7607418292","332300","EMS CONSTRUCTION, INC.",,"1040 S. ANDREASEN DRIVE SUITE 110",,"ESCONDIDO","CA","92029",,,,,,,"330549242","7607418292",,,,"2011-04-06T12:50:42-0500","BETTY UEKE",,,,,123,84,0,68,152,0,152,141,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110325164925P040031748961001","2010-01-01","2010-06-30","2",,,,,"1",,"1",,,,,"MENTAL HEALTH CENTER OF CHAMPAIGN COUNTY,INC. 401(K)","003","1997-01-01","MENTAL HEALTH CENTER OF CHAMPAIGN COUNTY",,,"1801 FOX DRIVE",,"CHAMPAIGN","IL","618207257",,,,,,,,,,,,,,,,,,"370913985","2173988080","621420","MENTAL HEALTH CENTER OF CHAMPAIGN COUNTY",,"1801 FOX DRIVE",,"CHAMPAIGN","IL","618207257",,,,,,,"370913985","2173988080",,,,"2011-02-23T10:19:13-0600","WANDA BURNETT",,,,,214,129,,60,189,1,190,190,15,,"2E2F2G2J3D",,"1",,,,"1",,,,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110325102848P040002454085001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GEORGE A. KOURY, INC. PROFIT SHARING PLAN AND TRUST","001","2007-01-01","GEORGE A. KOURY, INC.",,,"7999 PHILLIPS HIGHWAY, SUITE 309",,"JACKSONVILLE","FL","32256",,,,,,,,,,,,,,,,,,"593280714","9042628400","524140","GEORGE A. KOURY, INC.",,"7999 PHILLIPS HIGHWAY, SUITE 309",,"JACKSONVILLE","FL","32256",,,,,,,"593280714","9042628400",,,,"2011-03-25T10:26:53-0500","GEORGE A. KOURY","2011-03-25T10:26:53-0500","GEORGE A. KOURY",,,10,7,0,3,10,0,10,9,2,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110404074929P030036543889001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ADVANCED ABRASIVES CORPORATION, 401K PLAN","001","2005-01-01","ADVANCED ABRASIVES CORPORATION",,,"7980 NATIONAL HWY",,"PENNSAUKEN","NJ","081101412",,,,,,,,,,,,,,,,,,"233080877","8566659300","339900","ADVANCED ABRASIVES CORPORATION",,"7980 NATIONAL HWY",,"PENNSAUKEN","NJ","081101412",,,,,,,"233080877","8566659300",,,,"2011-04-04T07:40:15-0500","MATTHEW BEES",,,,,8,9,0,0,9,0,9,9,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110406133541P040012149287001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TJS CUSTARD INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","TJS CUSTARD INC",,,"1345 S. WEST AVE",,"WAUKESHA","WI","53186",,,,,,,"1345 S. WEST AVE",,"WAUKESHA","WI","53186",,,,,,,"202088731","2625477944","722110","SAME",,,,,,,,,,,,,,,,,,"2011-04-06T13:34:38-0500","CRAIG HOGAN",,,,,7,4,0,1,5,0,5,2,0,0,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110406125737P030177491344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DR. BILL M. PARK OPTOMETRIST 401(K) PROFIT SHARING PLAN & TRUST","001","1990-01-01","DR. BILL M. PARK OPTOMETRIST","PARK FAMILY EYE CARE",,"9 SO LINCOLNWAY",,"NORTH AURORA","IL","605421608",,,,,,,"9 SO LINCOLNWAY",,"NORTH AURORA","IL","605421608",,,,,,,"363187524","6308442500","621320","DR. BILL M. PARK OPTOMETRIST",,"9 SO LINCOLNWAY",,"NORTH AURORA","IL","605421608",,,,,,,"363187524","6308442500",,,,"2011-04-06T10:47:00-0500","BILL PARK",,,,,4,5,0,0,5,0,5,5,0,,"2E2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110404152044P040037332625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADVANCE CAPITAL GROUP, INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","2005-10-01","ADVANCE CAPITAL GROUP, INC.",,,"ONE TOWNE SQUARE, SUITE 444",,"SOUTHFIELD","MI","48076",,,,,,,,,,,,,,,,,,"382685009","2483508543","523900","ADVANCE CAPITAL GROUP",,"ONE TOWNE SQUARE, SUITE 444",,"SOUTHFIELD","MI","48076",,,,,,,"382685009","2483508543",,,,"2011-04-04T15:19:12-0500","JULIE KATYNSKI",,,,,57,53,0,2,55,0,55,55,1,,"2O2Q2I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110325112001P030031183425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMESON MANAGEMENT, INC. 401(K) PLAN","001","1997-03-01","JAMESON MANAGEMENT, INC.",,,"P.O. BOX 488",,"DAVIS","OK","73030",,,,,,,,,,,,,,,,,,"731548806","5803695556","621210","JAMESON MANAGEMENT, INC.",,"P.O. BOX 488",,"DAVIS","OK","73030",,,,,,,"731548806","5803695556",,,,"2011-03-25T11:19:54-0500","JOHN H. JAMESON",,,,,32,29,0,1,30,0,30,30,0,,"2E2A2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110406101937P040175752256001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DEBRA C. ARNOLD, DDS 401K PLAN","001","2002-01-01","DEBRA C. ARNOLD, DDS",,,"2732 ATHANIA PARKWAY",,"METAIRIE","LA","700025904",,,,,,,,,,,,,,,,,,"720849135","5048374992","621210","DEBRA C. ARNOLD, DDS",,"2732 ATHANIA PARKWAY",,"METAIRIE","LA","700025904",,,,,,,"720849135","5048374992",,,,"2011-04-06T10:10:07-0500","DEBRA ARNOLD",,,,,4,3,0,1,4,0,4,4,0,,"2A2E2J3B",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110407141232P030001130627001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"M AND M GENERAL CONTRACTORS INC 401 K PLAN","001","2007-01-01","M AND M GENERAL CONTRACTORS INC",,,"170 BRADFORD STREET",,"BRISTOL","RI","02809",,,,,,,,,,,,,,,,,,"208119278","4012532476","541990","M AND M GENERAL CONTRACTORS INC",,"170 BRADFORD STREET",,"BRISTOL","RI","02809",,,,,,,"208119278","4012532476",,,,"2011-04-07T14:12:23-0500","SANDRA HORRIDGE",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110404121926P030006105270001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"WHITE TIGER PRINTING 401(K) PLAN","001","2005-03-28","WHITE TIGER GRAPHICS, INC.",,,"1505 THE BOARD WALK",,"HUNTSVILLE","AL","35816",,,,,,,"1505 THE BOARD WALK",,"HUNTSVILLE","AL","35816",,,,,,,"631258065","2567045333","323100","WHITE TIGER GRAPHICS, INC.",,"1505 THE BOARD WALK",,"HUNTSVILLE","AL","35816",,,,,,,"631258065","2567045333",,,,"2011-04-04T12:16:16-0500","JUDI WILLIAMS","2011-04-04T12:18:55-0500","BRAD JOHNSON",,,82,71,0,8,79,0,79,35,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110405103805P040173184848001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"YMCA OF THE FOX CITIES LIFE AND DISABLITY PLAN","504","2010-01-01","YMCA OF THE FOX CITIES",,,"218 E LAWRENCE STREET",,"APPLETON","WI","54911",,,,,,,,,,,,,,,,,,"390806191","9207396135","624100","YMCA OF THE FOX CITIES",,"218 E LAWRENCE STREET",,"APPLETON","WI","54911",,,,,,,"390806191","9207396135",,,,"2011-04-05T10:37:55-0500","TERLEEN CHESLOCK",,,,,139,140,0,0,140,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110405122500P040037841633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHN K. HOLZINGER, DMD PROFIT SHARING PLAN","002","1986-01-01","JOHN K. HOLZINGER, DMD",,,"410 SAYBROOK RD., STE 110",,"MIDDLETOWN","CT","06457",,,,,,,,,,,,,,,,,,"061113056","8603478457","621210","JOHN K. HOLZINGER, DMD",,"410 SAYBROOK RD., STE 110",,"MIDDLETOWN","CT","06457",,,,,,,"061113056","8603478457",,,,"2011-04-05T12:24:59-0500","JOHN K. HOLZINGER","2011-04-05T12:24:59-0500","JOHN K. HOLZINGER",,,7,7,,,7,,7,7,,,"2E2A2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110406133934P030037799377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSERVATION STRATEGY GROUP 401(K) PLAN","002","2003-04-01","CONSERVATION STRATEGY GROUP, LLC",,,"1100 11TH ST STE 200",,"SACRAMENTO","CA","958143813",,,,,,,,,,,,,,,,,,"710917599","9165581516","541990","CONSERVATION STRATEGY GROUP, LLC",,"1100 11TH ST STE 200",,"SACRAMENTO","CA","958143813",,,,,,,"710917599","9165581516",,,,"2011-04-06T13:31:27-0500","JOSEPH L CAVES",,,,,15,14,0,1,15,0,15,15,1,,"2A2E2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110406163107P040038500433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXPERTS EXCHANGE LLC 401(K) PROFIT SHARING PLAN","001","2009-01-01","EXPERTS EXCHANGE LLC",,,"POST OFFICE BOX 1229",,"SAN LUIS OBISPO","CA","934061229",,,,,,,"2702 MCMILLAN AVE., SUITE 160",,"SAN LUIS OBISPO","CA","93401",,,,,,,"260024004","8057870603","518210","EXPERTS EXCHANGE LLC",,"POST OFFICE BOX 1229",,"SAN LUIS OBISPO","CA","934061229",,,,,,,"260024004","8057870603",,,,"2011-04-06T16:30:50-0500","DOUGLAS S. HENDRY",,,,,43,42,0,9,51,0,51,42,0,,"2A2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110407114158P040038955441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEVEN D MATHEWS MD PA PROFIT SHARING PLAN AND TRUST","001","1992-01-01","STEVEN D MATHEWS MD PA",,,"6863 BELFORT OAKS PL",,"JACKSONVILLE","FL","322166242",,,,,,,"6863 BELFORT OAKS PL",,"JACKSONVILLE","FL","322166242",,,,,,,"592932693","9042968516","621111","STEVEN D MATHEWS MD PA",,"6863 BELFORT OAKS PL",,"JACKSONVILLE","FL","322166242",,,,,,,"592932693","9042968516",,,,"2011-04-07T11:28:09-0500","STEVEN D. MATHEWS, MD",,,,,4,2,0,2,4,0,4,4,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110328172708P040153595776001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BEN THARP INTERESTS, INC. PROFIT SHARING PLAN","001","1999-01-01","BEN THARP INTERESTS, INC.",,,"2215 S VOSS RD",,"HOUSTON","TX","770573805",,,,,,,,,,,,,,,,,,"760521707","7137821500","541940","BEN THARP INTERESTS, INC.",,"2215 S VOSS RD",,"HOUSTON","TX","770573805",,,,,,,"760521707","7137821500",,,,"2011-03-28T17:22:21-0500","SHARON BENNETT",,,,,21,12,0,5,17,1,18,18,0,,"2A2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-28","Filed with authorized/valid electronic signature",, "20110405093611P030174472688001","2008-01-01","2008-12-31","2",,,,"1",,,,,"1",,,"JAMES R. GIBSON, DDS PROFIT SHARING PLAN","002","1989-01-01","JAMES R. GIBSON, DDS",,,,,,,,,,,,,,"1300 WEST FRANKLIN STREET",,"MONROE","NC","28110",,,,,,,"560906082","7042838893","621210","JAMES R. GIBSON, DDS",,,,,,,,,,,,,"560906082","7042838893",,,,"2011-04-05T04:52:53-0500","JAMES R. GIBSON, DDS",,,,,4,0,0,0,0,0,0,0,0,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110327094951P030151334608001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP HEALTH COOPERATIVE OF SOUTH CENTRAL WISCONSIN FLEXIBLE BENEFIT PLAN","509","1991-01-01","GROUP HEALTH COOPERATIVE OF SOUTH CENTRAL WISCONSIN",,,"1265 JOHN Q HAMMONS DRIVE","P O BOX 44971","MADISON","WI","537444971",,,,,,,,,,,,,,,,,,"391199466","6082514156","621491","GROUP HEALTH COOPERATIVE OF SOUTH CENTRAL WISCONSIN",,"1265 JOHN Q HAMMONS DRIVE","P O BOX 44971","MADISON","WI","537444971",,,,,,,"391199466","6082514156",,,,"2011-03-27T09:49:40-0500","MARK DALEBROUX","2011-03-27T09:49:40-0500","MARK DALEBROUX",,,165,172,,,172,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-03-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110327144214P030032327697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTH SUBURBAN INTERNAL MEDICINE AND GASTROENTEROLOGICAL ASSOCIATES KEOGH PLAN","001","1994-12-30","NORTH SUBURBAN INTERNAL MEDICINE AND GASTROENTEROLOGICAL ASSOCIATES",,,"214 MAIN STREET",,"MALDEN","MA","02148",,,,,,,"214 MAIN STREET",,"MALDEN","MA","02148",,,,,,,"043242523","7813889228","621111","CHINTAMANI B GOKHALE",,"214 MAIN STREET",,"MALDEN","MA","02148",,,,,,,"211560777","7813889228",,,,"2011-03-27T14:40:31-0500","CHINTAMANI GOKHALE",,,,,3,2,,,2,,2,2,0,,"2A2C2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-03-27","Filed with authorized/valid electronic signature",, "20110404213547P030036847185001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"FRANCHISE ADVISORS, INC. 401K PROFIT SHARING PLAN","001","2009-09-23","FRANCHISE ADVISORS, INC.",,,"84 EATON LANE",,"WEST ISLIP","NY","11795",,,,,,,,,,,,,,,,,,"270981745","6315397192","541990","FRANCHISE ADVISORS, INC.",,"84 EATON LANE",,"WEST ISLIP","NY","11795",,,,,,,"270981745","6315397192",,,,"2011-04-04T21:35:46-0500","DEBRA DOLAN",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110404090012P030005363330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ESJ ENTERPRISES INC 401K PLAN AND TRUST","001","2005-01-01","ESJ ENTERPRISES, INC.",,"EVA AMBROSE","PO BOX 181060",,"FAIRFIELD","OH","45018",,,,,,,,,,,,,,,,,,"311314269","5139313900","484120","ESJ ENTERPRISES, INC.","EVA AMBROSE","PO BOX 181060",,"FAIRFIELD","OH","45018",,,,,,,"311314269","5139313900",,,,"2011-04-04T08:56:06-0500","EVA AMBROSE",,,,,15,0,0,11,11,0,11,11,0,,"2E2G2J2K3D2F2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110404122856P030036653617001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ROTH CONSTRUCTION, INC. PROFIT SHARING & 401(K) PLAN","001","1998-05-01","ROTH CONSTRUCTION, INC.",,,"P.O. BOX 1974",,"VICTORIA","TX","77902",,,,,,,,,,,,,,,,,,"760032962","3615780263","236200","ROTH CONSTRUCTION, INC.",,"P.O. BOX 1974",,"VICTORIA","TX","77902",,,,,,,"760032962","3615780263",,,,"2011-04-04T12:28:01-0500","STEVE ROTH","2011-04-04T12:28:35-0500","STEVE ROTH",,,28,25,0,3,28,0,28,28,0,1,"2J2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110405130431P040037856177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARTHUR CARROLL INC PLAN AND TRUST","001","1997-01-01","ARTHUR CARROLL INC",,,"42 ELM ST",,"LIMERICK","ME","04048",,,,,,,"42 ELM ST",,"LIMERICK","ME","04048",,,,,,,"010491531","2077938988","111100","ARTHUR CARROLL INC",,"42 ELM ST",,"LIMERICK","ME","04048",,,,,,,"010491531","2077938988",,,,"2011-04-05T12:50:45-0500","ARTHUR CARROLL",,,,,4,4,0,0,4,0,4,0,0,,"1A1G3D","4B","1","0","1","0","1","0","1","0","1","0","1","0","1","1","1",,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110328144838P030154387536001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"UNION LEADER GROUP HEALTH PLAN","501","1975-05-01","UNION LEADER CORPORATION",,,"PO BOX 9555",,"MANCHESTER","NH","031089555",,,,,,,"100 WILLIAM LOEB DRIVE",,"MANCHESTER","NH","03109",,,,,,,"020212933","6036684321","511110","UNION LEADER CORPORATION",,"PO BOX 9555",,"MANCHESTER","NH","031089555",,,,,,,"020212933","6036684321",,,,"2011-03-28T14:47:31-0500","JOYCE LEVESQUE",,,,,224,184,24,0,208,0,208,,,,,"4A4E",,,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-03-28","Filed with authorized/valid electronic signature",, "20110327162704P040150929600001","2010-06-25","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"RESTORATIVE TOUCH INC. 401K PLAN","001","2010-06-25","RESTORATIVE TOUCH INC.",,,"549 WEST KATELYN LANE",,"SPOKANE","WA","99224",,,,,,,,,,,,,,,,,,"272955960","5099985932","812190","RESTORATIVE TOUCH INC.",,"549 WEST KATELYN LANE",,"SPOKANE","WA","99224",,,,,,,"272955960","5099985932",,,,"2011-03-27T16:26:56-0500","MICHAEL DAVIS","2011-03-27T16:26:56-0500","MICHAEL DAVIS",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110328201147P040033474305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANYPLACE, INC. 401K PROFIT SHARING PLAN","001","2005-01-01","ANYPLACE, INC.",,,"P.O. BOX 89320",,"HONOLULU","HI","96830",,,,,,,,,,,,,,,,,,"990287433","8083848977","722410","ANYPLACE, INC.",,"P.O. BOX 89320",,"HONOLULU","HI","96830",,,,,,,"990287433","8083848977",,,,"2011-03-28T20:11:46-0500","JUDY FOSTER LONG",,,,,5,4,0,0,4,0,4,4,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-28","Filed with authorized/valid electronic signature",, "20110405115145P040173324800001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MED JAMES INC EMPLOYEE BENEFITS PROGRAM","501","1980-04-01","MED JAMES INC",,,"8595 COLLEGE BLVD",,"SHAWNEE MISSION","KS","66201",,,,,,,"8595 COLLEGE BLVD",,"SHAWNEE MISSION","KS","66201",,,,,,,"431067127","9136635500","524210","MED JAMES INC",,"8595 COLLEGE BLVD",,"SHAWNEE MISSION","KS","66201",,,,,,,"431067127","9136695500",,,,"2011-04-05T11:49:51-0500","CHRISTINE HOCKING",,,,,122,125,0,0,125,0,125,,,,,"4A4B4D4F4H4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110330122633P030033915201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE LIVINGSTON GROUP FOR MARKETING, INC. 401(K) PROFIT SHARING PLAN","001","2007-01-01","THE LIVINGSTON GROUP FOR MARKETING, INC.",,,"22 GRANDVIEW ROAD",,"WINDHAM","NH","03087",,,,,,,,,,,,,,,,,,"331066128","6035370775","541910","THE LIVINGSTON GROUP FOR MARKETING, INC.",,"22 GRANDVIEW ROAD",,"WINDHAM","NH","03087",,,,,,,"331066128","6035370775",,,,"2011-03-30T12:20:39-0500","GLENN LIVINGSTON",,,,,5,5,0,0,5,0,5,5,0,,"2E2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110331151226P030034544417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOIS SOLUTIONS 401K RETIREMENT PLAN AND TRUST","001","2006-04-05","BOIS SOLUTIONS, INC.",,,"44 SOUTH KINGMAN STREET",,"LAKEVILLE","MA","02347",,,,,,,,,,,,,,,,,,"204634501","5089475772","442291","STEVE BOIS",,"44 SOUTH KINGMAN STREET",,"LAKEVILLE","MA","02347",,,,,,,"204634501","5089475772",,,,"2011-03-31T15:12:20-0500","STEVEN P. BOIS","2011-03-31T15:12:20-0500","STEVEN P. BOIS",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110330112526P030033895921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMMUNITY BANK OF THE BAY 401(K) PLAN","001","1997-01-01","COMMUNITY BANK OF THE BAY",,,"1750 BROADWAY",,"OAKLAND","CA","94612",,,,,,,,,,,,,,,,,,"943192723","5104335409","522110","COMMUNITY BANK OF THE BAY",,"1750 BROADWAY",,"OAKLAND","CA","94612",,,,,,,"943192723","5104335409",,,,"2011-03-29T18:58:58-0500","CHAULA PANDYA","2011-03-29T18:58:58-0500","CHAULA PANDYA",,,26,26,0,0,26,0,26,14,0,,"2E2G2J2K2A2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110330091505P030004964194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ERC 401K RETIREMENT PLAN","333","2000-01-01","EMPLOYER RESOURCE CENTER, INC.",,,"10985 N HARRELLS FERRY RD STE A",,"BATON ROUGE","LA","708168362",,,,,,,,,,,,,,,,,,"721416467","2259252662","541214","EMPLOYER RESOURCE CENTER, INC.",,"10985 N HARRELLS FERRY RD STE A",,"BATON ROUGE","LA","708168362",,,,,,,"721416467","2259252662",,,,"2011-03-30T09:13:56-0500","STEPHANIE HARRISON",,,,,34,20,0,16,36,0,36,31,1,,"2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110330091915P040034348049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"R. W. STRYKER, DDS, PC DEFINED BENEFIT PENSION PLAN","003","2008-07-01","R. W. STRYKER, DDS, PC",,,"590 LYNN STREET",,"LEBANON","MO","65536",,,,,,,,,,,,,,,,,,"431728431","4715329532","621210","R. W. STRYKER, DDS, PC",,"590 LYNN STREET",,"LEBANON","MO","65536",,,,,,,"431728431","4715329532",,,,"2011-03-30T09:16:37-0500","ROSS STRYKER",,,,,14,11,0,2,13,0,13,0,2,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110331143020P040035015825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"C A I INSURANCE AGENCY, INC. PROFIT SHARING & 401K PLAN","001","1961-12-31","C A I INSURANCE AGENCY, INC.",,,"3481 CENTRAL PARKWAY SUITE 300",,"CINCINNATI","OH","452233300",,,,,,,,,,,,,,,,,,"310572951","5132211140","524210","C A I INSURANCE AGENCY, INC.",,"3481 CENTRAL PARKWAY SUITE 300",,"CINCINNATI","OH","452233300",,,,,,,"310572951","5132211140",,,,"2011-03-31T14:29:33-0500","JAMES T. SCHLOTMAN",,,,,38,34,1,12,47,0,47,47,3,,"2E2F2H2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","3","0","0","0","FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110331081541P030034367345001","2008-01-01","2008-04-22","2",,"0","0","1","0","0","0","0","0","0",,"LEVESQUE BUILDING AND REMODELING ,INC. 401K PROFIT SHARING PLAN & TRUST","001","2005-01-01","LEVESQUE BUILDING & REMODELING INC.",,,"1976 FRENCHTOWN RD.",,"EAST GREENWICH","RI","02818",,,,,,,"1976 FRENCHTOWN RD.",,"EAST GREENWICH","RI","02818",,,,,,,"611448692","4018852500","541990","LEVESQUE BUILDING & REMODELING INC.",,"1976 FRENCHTOWN RD.",,"EAST GREENWICH","RI","02818",,,,,,,"611448692","4018852500",,,,"2011-03-31T08:14:34-0500","DEBRA LEVESQUE",,,,,5,0,0,0,0,0,0,0,0,0,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110324124804P040143025472001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALLEGRO MICROSYSTEMS, INC. SUPPLEMENTAL HEALTHCARE EXPENSE PLAN","507","1991-01-01","ALLEGRO MICROSYSTEMS, INC.",,"DON MACARTHUR","115 NORTHEST CUTOFF",,"WORCESTER","MA","01606",,,,,,,"115 NORTHEST CUTOFF",,"WORCESTER","MA","01606",,,,,,,"223056180","2158225993","334410","ALLEGRO MICROSYSTEMS, INC.","DON MACARTHUR","115 NORTHEST CUTOFF",,"WORCESTER","MA","01606",,,,,,,"223056180","2158225993",,,,"2011-03-24T12:47:45-0500","DONALD MACARTHUR","2011-03-24T12:47:07-0500","DONALD MACARTHUR",,,182,213,0,0,213,0,213,0,0,0,,"4A4D4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110331124642P040011028983001","2006-10-01","2007-09-30","2",,"0","1","0","0","0","0","0","1","0",,"MICHIGAN TRUCK PARTS, INC. 401K PROFIT SHARING PLAN (MERRILL LYNCH PROTOTYPE)","001","1997-01-01","MICHIGAN TRUCK PARTS, INC",,"JACK REA","38658 FORD ROAD",,"WESTLAND","MI","48185",,,,,,,"38658 FORD ROAD",,"WESTLAND","MI","48185",,,,,,,"382532091","7347223800","441300","MICHIGAN TRUCK PARTS, INC","JACK REA","38658 FORD ROAD",,"WESTLAND","MI","48185",,,,,,,"382532091","7347223800",,,,"2011-03-31T12:30:02-0500","JACK REA",,,,,7,7,0,0,7,0,7,7,0,,"2E2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110330140101P030159566048001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOIS SARUWATARI, M.D., LLC 401(K) PLAN","001","2007-01-01","LOIS SARUWATARI, M.D., LLC",,,"1003 BISHOP STREET SUITE 395",,"HONOLULU","HI","96813",,,,,,,,,,,,,,,,,,"043708766","8085351555","621111","LOIS SARUWATARI, M.D., LLC",,"1003 BISHOP STREET SUITE 395",,"HONOLULU","HI","96813",,,,,,,"043708766","8085351555",,,,"2011-03-30T13:57:29-0500","LOIS SARUWATARI",,,,,4,3,0,2,5,0,5,5,2,,"2A2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110330164619P030034019953001","2008-08-01","2009-07-31","2",,"0","0","0","0","0","0","0","1","0",,"CERAMIC HARMONY INTERNATIONAL INC 401(K) P/S PLAN","001","2006-05-01","CERAMIC HARMONY INTERNATIONAL, INC.",,,"11317 S. MEMORIAL PARKWAY",,"HUNTSVILLE","AL","35803",,,,,,,,,,,,,,,,,,"630932723","2568831204","541990","CERAMIC HARMONY INTERNATIONAL, INC.",,"11317 S. MEMORIAL PARKWAY",,"HUNTSVILLE","AL","35803",,,,,,,"630932723","2568831204",,,,"2011-03-30T16:43:49-0500","SYLVIA STARK",,,,,18,19,2,0,21,0,21,21,1,,"2E2J2K2F2G3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110324131343P040004629458001","2005-03-01","2006-02-28","2",,"1","0","0","0","0","0","0","1","0",,"COMMUNITY MENTAL HEALTH AFFILIATES, INC. WELFARE PLAN","501","2005-03-01","COMMUNITY MENTAL HEALTH AFFILIATES, INC.",,,"270 JOHN DOWNEY DRIVE",,"NEW BRITAIN","CT","06051",,,,,,,,,,,,,,,,,,"060934544","8608261358","621330","COMMUNITY MENTAL HEALTH AFFILIATES, INC.",,"270 JOHN DOWNEY DRIVE",,"NEW BRITAIN","CT","06051",,,,,,,"060934544","8608261358",,,,"2011-03-24T13:13:36-0500","MARY R. CASEY","2011-03-24T13:13:36-0500","RAYMOND J. GORMAN",,,100,193,0,0,193,,0,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110330132125P040034442273001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RETIREMENT INCOME PLAN OF THE NATIONAL BOARD OF MEDICAL EXAMINERS","001","1946-12-01","NATIONAL BOARD OF MEDICAL EXAMINERS",,,"3750 MARKET STREET",,"PHILADELPHIA","PA","191043190",,,,,,,,,,,,,,,,,,"231352238","2155909500","611000","ANNE BEESON - JOHN T. WOSNITZER",,"3750 MARKET STREET",,"PHILADELPHIA","PA","191043190",,,,,,,"232042998","2155909500",,,,"2011-03-30T13:20:59-0500","JOHN T. WOSNITZER","2011-03-30T13:20:59-0500","DONALD E. MELNICK MD",,,502,345,64,117,526,5,531,,15,,"1A1G",,,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110331093819P030034399505001","2007-09-01","2008-08-31","2",,"0","1","0","0","0","1","0","0","0",,"ALIVIANE, INC. SAVINGS/RETIREMENT PLAN","001","1984-10-01","ALIVIANE, INC.",,,"7722 NORTH LOOP ROAD",,"EL PASO","TX","79915",,,,,,,,,,,,,,,,,,"741681485","9157710107","621420","ALIVIANE, INC.",,"7722 NORTH LOOP ROAD",,"EL PASO","TX","79915",,,,,,,"741681485","9157710107",,,,"2011-03-31T09:32:30-0500","JOHNNY MELENDEZ","2011-03-31T09:32:30-0500","JOHNNY MELENDEZ",,,181,99,,76,175,,175,,34,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110331110659P030161844080001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CAKEBREAD CELLARS, INC. 401(K) PLAN","004","1993-01-01","CAKEBREAD CELLARS, INC.",,,"P.O. BOX 216",,"RUTHERFORD","CA","945730216",,,,,,,"8300 SAINT HELENA HWY",,"RUTHERFORD","CA","945730216",,,,,,,"942666697","7079635221","312130","CAKEBREAD CELLARS, INC.",,"P.O. BOX 216",,"RUTHERFORD","CA","945730216",,,,,,,"942666697","7079635221",,,,"2011-03-31T11:06:38-0500","JOE MARTINEZ",,,,,84,65,0,13,78,0,78,62,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110331130648P040034979457001","2005-01-01","2005-12-31","3",,"0","0","0","0","0","0","0","1","0",,"CSI 401(K) PLAN","002","1993-01-01","CERTIFIED SYSTEMS, INC.",,,"3218 HIGHWAY 67, SUITE 201",,"MESQUITE","TX","75150",,,,,,,,,,,,,,,,,,"752298775","9015971400","561300","REDWOOD ADMINISTRATORS, INC.",,"101A FOSTER ROAD",,"MOORESTOWN","NJ","08057",,,,,,,"223420600","8563960653",,,,"2011-03-31T12:59:47-0500","GREGORY HOFF",,,,,475,0,0,424,424,0,424,424,,,"2E2G2J2K3E",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","204","0","1","0","FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110331090630P030034386273001","2008-09-01","2009-08-31","2",,"0","1","0","0","0","0","0","0","0",,"ENGINEERED GLASS PRODUCTS GROUP BENEFITS PLAN","501","2001-09-01","ENGINEERED GLASS PRODUCTS, LLC",,,"2857 S. HALSTED STREET",,"CHICAGO","IL","606085945",,,,,,,,,,,,,,,,,,"364451313","3123264710","327210","ENGINEERED GLASS PRODUCTS, LLC",,"2857 S. HALSTED STREET",,"CHICAGO","IL","606085945",,,,,,,"364451313","3123264710",,,,"2011-03-31T09:06:17-0500","ELIZABETH DICKSON",,,,,118,115,1,0,116,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110330184153P040034579313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUND UP DESIGN & CONSTRUCTION MANAGEMENT, INC. 401(K) PROFIT SHARING PLAN","001","2007-01-01","GROUND UP DESIGN & CONSTRUCTION MANAGEMENT, INC.",,,"410 1/2 PACIFIC AVENUE",,"PASO ROBLES","CA","93446",,,,,,,,,,,,,,,,,,"208158685","8052274159","238900","GROUND UP DESIGN & CONSTRUCTION MANAGEMENT, INC.",,"410 1/2 PACIFIC AVENUE",,"PASO ROBLES","CA","93446",,,,,,,"208158685","8052274159",,,,"2011-03-30T18:41:41-0500","DOUGLAS S. HENDRY",,,,,2,2,0,0,2,0,2,2,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110331114322P040005179426001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PACIFIC RIM AUTOMATION, INC., RETIREMENT PLAN AND TRUST","001","1996-01-01","PACIFIC RIM AUTOMATION, INC.",,"R. BERGER AND ASSOCIATES, INC.","701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"330361173","7148997690","561490","PACIFIC RIM AUTOMATION, INC.","R. BERGER AND ASSOCIATES, INC.","701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"330361173","7148997690",,,,"2011-03-31T11:42:38-0500","GER ON BEHALF OF PLAN ADMINISTRATOR",,,,,5,3,,2,5,,5,5,1,,"2E",,"0",,"1",,"0",,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110330075414P040034316161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP MEDICAL, DENTAL & SHORT TERM DISABILITY","502","1998-12-01","COMMSCOPE, INC. OF NORTH CAROLINA",,"BENEFITS DEPARTMENT","1100 COMMSCOPE PL SE",,"HICKORY","NC","28602",,,,,,,"1100 COMMSCOPE PL SE",,"HICKORY","NC","28602",,,,,,,"561192364","8283242200","335900","COMMSCOPE, INC. OF NORTH CAROLINA","BENEFITS DEPARTMENT","1100 COMMSCOPE PL SE",,"HICKORY","NC","28602",,,,,,,"561192364","8283242200",,,,"2011-03-30T07:47:16-0500","ROGER SCHROEDER",,,,,3923,3453,271,,3724,,3724,,,,,"4A4D4F",,,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110330112035P040034398865001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"NATIVE RUN GROUP INC. 401K PLAN","001","2009-03-21","NATIVE RUN GROUP INC.",,,"800 CROWFOOT ROAD",,"EAGLE POINT","OR","97524",,,,,,,,,,,,,,,,,,"264552579","5418300007","541600","NATIVE RUN GROUP INC.",,"800 CROWFOOT ROAD",,"EAGLE POINT","OR","97524",,,,,,,"264552579","5418300007",,,,"2011-03-30T11:20:28-0500","ALBERT LESKO","2011-03-30T11:20:28-0500","ALBERT LESKO",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110418165234P040045406977001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SCI-ROEV REALTY GROUP, L.P. 401(K) PLAN","002","1998-07-01","SCI-ROEV REALTY GROUP, L.P.",,,"1412 MAIN STREET","SUITE 608","DALLAS","TX","75202",,,,,,,"1412 MAIN STREET","SUITE 608","DALLAS","TX","75202",,,,,,,"133746868","9169413922","531310","SCI-ROEV REALTY GROUP, L.P.",,"1412 MAIN STREET","SUITE 608","DALLAS","TX","75202",,,,,,,"133746868","9169413922",,,,"2011-04-18T16:50:28-0500","BERTO BERTI",,,,,6,1,0,1,2,0,2,1,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413143105P030041657521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IRWIN FINANCIAL CORP. EMPLOYEE BENEFITS PLAN","501","1992-03-01","IRWIN FINANCIAL CORPORATION","ELLIOTT D. LEVIN, CHAPTER 7 TRUSTEE",,"500 MAROTT CENTER","342 MASSACHUSETTS AVENUE","INDIANAPOLIS","IN","46204",,,,,,,,,,,,,,,,,,"351286807","3176340300","522190","IRWIN FINANCIAL CORPORATION","ELLIOTT D. LEVIN, CHAPTER 7 TTE","500 MAROTT CENTER","342 MASSACHUSETTS AVENUE","INDIANAPOLIS","IN","46204",,,,,,,"351286807","3176340300",,,,"2011-04-13T14:29:01-0500","ELLIOTT D. LEVIN, TRUSTEE",,,,,22,0,0,0,0,,,,,,,"4A4B4D4E4F4H4L4Q","0","0","1","0","0","0","1","0","0","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419154932P040007881110001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MULTI-DUTI MANUFACTURING, INC. PROFIT SHARING PLAN","001","1980-06-01","MULTI-DUTI MANUFACTURING, INC.",,,"325 KAREN LN.",,"COLORADO SPRINGS","CO","80907",,,,,,,,,,,,,,,,,,"953260887","7196348202","333900","MULTI-DUTI MANUFACTURING, INC.",,"325 KAREN LN.",,"COLORADO SPRINGS","CO","80907",,,,,,,"953260887","7196348202",,,,"2011-04-19T04:49:18-0500","LARRY TINKER",,,,,13,13,0,0,13,0,13,5,0,,"2E2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110413112521P040042372625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANCRAFT PRESS CORP. PENSION PLAN","001","1972-10-03","ANCRAFT PRESS CORP.",,,"234 16TH STREET, 8TH FLOOR",,"JERSEY CITY","NJ","07310",,,,,,,,,,,,,,,,,,"112235046","2017929200","511190","ANCRAFT PRESS CORP.",,"234 16TH STREET, 8TH FLOOR",,"JERSEY CITY","NJ","07310",,,,,,,"112235046","2017929200",,,,"2011-04-13T10:58:15-0500","LEON ANDORS","2011-04-13T10:58:15-0500","LEON ANDORS",,,15,4,5,6,15,,15,15,0,,"2E3D","4B","1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413131025P030041621441001","2003-07-01","2004-06-30","2",,"0","0","0","0","0","0","0","1","0",,"TARBUT V TORAH 403(B) DC PLAN","001","1999-09-01","TARBUT Y TORAH",,,"5 FEDERATION WAY",,"IRVINE","CA","926030100",,,,,,,,,,,,,,,,,,"953374189","9495099500","611000","TARBUT Y TORAH",,"5 FEDERATION WAY",,"IRVINE","CA","926030100",,,,,,,"953374189","9495099500",,,,"2011-04-13T13:10:09-0500","GARY BERMAN",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413143445P030041658673001","2010-12-07","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"JULIE REAL ESTATE MANAGEMENT CORP. 401K PROFIT SHARING PLAN","001","2010-12-07","JULIE REAL ESTATE MANAGEMENT CORP.",,,"11 FOXBORO ROAD",,"WAYNE","NJ","07470",,,,,,,,,,,,,,,,,,"274172968","9736177724","531210","JULIE REAL ESTATE MANAGEMENT CORP.",,"11 FOXBORO ROAD",,"WAYNE","NJ","07470",,,,,,,"274172968","9736177724",,,,"2011-04-13T14:27:53-0500","JULIE EZRA",,,,,2,2,0,0,2,0,2,2,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419122836P040007867158001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"BIBLIO INC 401K PLAN AND TRUST","001","2010-01-01","BIBLIO INC",,"ALLEN SINGLETON","5 RAVENSCROFT DR SUITE 207",,"ASHEVILLE","NC","28801",,,,,,,,,,,,,,,,,,"753060922","8283500744","451211","BIBLIO INC","ALLEN SINGLETON","5 RAVENSCROFT DR SUITE 207",,"ASHEVILLE","NC","28801",,,,,,,"753060922","8283500744",,,,"2011-04-19T12:28:02-0500","ALLEN SINGLETON",,,,,0,8,0,0,8,0,8,8,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110419123533P040014527463001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"FOX SCIENTIFIC, INC. 401(K) PLAN","001","1999-06-01","FOX SCIENTIFIC, INC.",,,"8221 EAST FM 917",,"ALVARADO","TX","76009",,,,,,,"8221 EAST FM 917",,"ALVARADO","TX","76009",,,,,,,"752244658","8177837500","424990","FOX SCIENTIFIC, INC.",,"8221 EAST FM 917",,"ALVARADO","TX","76009",,,,,,,"752244658","8177837500",,,,"2011-04-19T12:34:41-0500","LUCRETIA YOUNG",,,,,32,23,0,2,25,0,25,9,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110417214514P030044160049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOWARD E. REARDEN, DMD, PC DEFINED BENEFIT PENSION PLAN","002","2005-01-01","HOWARD E. REARDEN, DMD, PC",,,"401 HILLFLO AVE","111 NORTH 16TH STREET","OPELIKA","AL","368012209",,,,,,,,,,,,,,,,,,"630809550","3347453563","621210","HOWARD E. REARDEN, DMD, PC",,"401 HILLFLO AVE",,"OPELIKA","AL","368012209",,,,,,,"630809550","3347453563",,,,"2011-04-17T21:18:04-0500","HOWARD E. REARDEN",,,,,4,3,0,1,4,0,4,0,,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-17","Filed with authorized/valid electronic signature",, "20110413080253P030195159184001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ALLIANCE ELECTRIC, INC. 401(K) PLAN","001","1991-07-01","ALLIANCE ELECTRIC, INC.",,,"1003 S CHAPLE ST","SUITE D","NEWARK","DE","197021357",,,,,,,"1003 S CHAPLE ST","SUITE D","NEWARK","DE","197021357",,,,,,,"522303992","3023660295","238210","ALLIANCE ELECTRIC, INC.",,"1003 S CHAPLE ST","SUITE D","NEWARK","DE","197021357",,,,,,,"522303992","3023660295",,,,"2011-04-13T07:48:04-0500","KEVIN MORGAN",,,,,16,7,0,10,17,0,17,16,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413143703P040042458033001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GEMM ENTERPRISES, INC. 401(K) PROFIT SHARING PLAN","002","2004-01-01","GEMM ENTERPRISES, INC.",,,"2006 KINVARA DRIVE MCKNIGHT EAST PL",,"PITTSBURGH","PA","15237",,,,,,,,,,,,,,,,,,"251437722","4123676114","488990","GEMM ENTERPRISES, INC.",,"2006 KINVARA DRIVE MCKNIGHT EAST PL",,"PITTSBURGH","PA","15237",,,,,,,"251437722","4123676114",,,,"2011-04-13T14:36:57-0500","GEORGE GROSS, JR.","2011-04-13T14:36:57-0500","GEORGE GROSS, JR.",,,8,5,1,1,7,0,7,6,0,,"2E2J2K2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110415165946P030013279191001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAYATEK INC. SAFE HARBOR MATCH","002","2003-06-01","MAYATEK INC.",,,"133 WEST 4TH STREET",,"LOVELAND","CO","80537",,,,,,,,,,,,,,,,,,"841507310","9704619893","321900","MAYATEK INC.",,"133 WEST 4TH STREET",,"LOVELAND","CO","80537",,,,,,,"841507310","9704619893",,,,"2011-04-15T16:59:41-0500","STEVEN BROWN","2011-04-15T16:59:41-0500","STEVEN BROWN",,,4,3,0,1,4,0,4,4,0,,"2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110419134945P040045925857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PETER J. JENSEN, MD, PC PENSION PLAN","001","2006-01-01","PETER J. JENSEN, MD, PC",,,"100 BROOKHOLLOW COURT",,"DOTHAN","AL","36303",,,,,,,"PETER J. JENSEN","100 BROOKHOLLOW COURT","DOTHAN","AL","36303",,,,,,,"450508811","3346781430","621111","PETER J. JENSEN, MD, PC",,"100 BROOKHOLLOW COURT",,"DOTHAN","AL","36303",,,,,,,"450508811","3346781430",,,,"2011-04-19T13:49:27-0500","PETER JENSEN","2011-04-19T13:49:27-0500","PETER JENSEN",,,3,2,0,1,3,0,3,,1,,"1A3D",,,"1",,,,"1",,,"1",,,,,"1","1",,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110418134822P040007777894001","2009-10-01","2010-09-30","2",,"0","1","0","0","0","0","0","0","0",,"ADVANTEC WELFARE BENEFITS PLAN","502","1999-06-01","AGENCY SOLUTIONS INTERNATIONAL, INC","ADVANTEC",,"4890 W. KENNEDY BLVD","SUITE 500","TAMPA","FL","336091844",,,,,,,,,,,,,,,,,,"593439650","8882206106","541214","AGENCY SOLUTIONS INTERNATIONAL, INC",,"4890 W KENNEDY BLVD","SUITE 500","TAMPA","FL","336091844",,,,,,,"593439650","8882206106",,,,"2011-04-18T13:46:32-0500","KAREN KANGARI","2011-04-18T13:48:07-0500","DIANNA SHEPPARD",,,5558,2254,0,0,2254,,,,,,,"4A4F4G4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110418135335P030208839488001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"MATTSON & CO. 401(K) SAVINGS PLAN","003","2002-07-01","PETER H. MATTSON & CO., INC.",,,"383 VINTAGE PARK DR",,"FOSTER CITY","CA","94404",,,,,,,"383 VINTAGE PARK DR",,"FOSTER CITY","CA","94404",,,,,,,"942456738","6505748824","541990","PETER H. MATTSON & CO., INC.",,"383 VINTAGE PARK DR",,"FOSTER CITY","CA","94404",,,,,,,"942456738","6505748824",,,,"2011-04-18T13:36:17-0500","VALARIE KITAURA",,,,,84,55,0,9,64,1,65,65,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110419110326P030211165760001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WATTRANS TRANSPORT, INC. 401(K) PLAN","001","2005-01-01","WATTRANS TRANSPORT, INC.",,,"14022 VALLEY BLVD.",,"FONTANA","CA","92335",,,,,,,,,,,,,,,,,,"330952528","9093567740","541990","WATTRANS TRANSPORT, INC.",,"14022 VALLEY BLVD.",,"FONTANA","CA","92335",,,,,,,"330952528","9093567740",,,,"2011-04-19T11:03:20-0500","LYNDON WATT","2011-04-19T11:03:20-0500","LYNDON WATT",,,9,8,0,2,10,0,10,10,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413140318P040006244914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLESBANK GARDEN APARTMENTS, INC. PENSION PLAN","001","1980-10-01","CHARLESBANK GARDEN APARTMENTS, INC.",,,"56 CHARLES RIVER ROAD",,"WALTHAM","MA","024532402",,,,,,,,,,,,,,,,,,"042911103","7818935038","531110","CHARLESBANK GARDEN APARTMENTS, INC.",,"56 CHARLES RIVER ROAD",,"WALTHAM","MA","024532402",,,,,,,"042911103","7818935038",,,,"2011-04-13T07:30:27-0500","KATHLEEN BRADLEY",,,,,11,10,0,1,11,0,11,,1,,"1A1G3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413191721P030012877991001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","1","0",,"HOWARD H GALARNEAU JR DO PA PROFIT SHARING PLAN","001","1989-01-01","HOWARD H GALARNEAU JR DO PA",,,"1603 HAWKS RIDGE",,"SAN ANTONIO","TX","782481705",,,,,,,,,,,,,,,,,,"742336851","2104922189","621111","HOWARD H GALARNEAU JR DO PA",,"1603 HAWKS RIDGE",,"SAN ANTONIO","TX","782481705",,,,,,,"742336851","2104922189",,,,"2011-04-13T18:48:27-0500","HOWARD GALARNEAU JR.",,,,,6,0,0,0,0,0,0,0,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110418155409P040207392912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AIRCRAFT PROPELLER SERVICE, INC. EMPLOYEES PROFIT SHARING PLAN","001","1982-11-01","AIRCRAFT PROPELLER SERVICE, INC.",,,"290 LARKIN DR",,"WHEELING","IL","600906456",,,,,,,,,,,,,,,,,,"363112378","8475411133","811110","AIRCRAFT PROPELLER SERVICE, INC.",,"290 LARKIN DR",,"WHEELING","IL","600906456",,,,,,,"363112378","8475411133",,,,"2011-04-18T15:48:05-0500","WILLIAM COLLAZO",,,,,90,50,0,23,73,0,73,73,0,,"2A2E2G2J2K3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413144727P030041664369001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"TEXTILE RENTAL SERVICES ASSOCIATION RETIREMENT SHARING TRUST","001","1968-01-01","TEXTILE RENTAL SERVICES ASSOCIATION",,,"11693 SAN VICENTE BLVD., #334",,"LOS ANGELES","CA","90049",,,,,,,"300 S. MEDIO DRIVE",,"LOS ANGELES","CA","90049",,,,,,,"953949950","3104768736","813000","TEXTILE RENTAL SERVICES ASSOCIATION",,"11693 SAN VICENTE BLVD., #334",,"LOS ANGELES","CA","90049",,,,,,,"953949950","3104768736",,,,"2011-04-13T14:46:23-0500","DAVID MACKENZIE",,,,,1,1,,,1,,1,,0,,"3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419142618P040209794928001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RHINO31 INC. 401K PLAN","001","2008-05-06","RHINO31 INC.",,,"13 S. 3RD ST.",,"WATERVILLE","OH","43566",,,,,,,,,,,,,,,,,,"262553179","4197941090","621610","RHINO31 INC.",,"13 S. 3RD ST.",,"WATERVILLE","OH","43566",,,,,,,"262553179","4197941090",,,,"2011-04-19T14:26:11-0500","ROBERT HOORMAN","2011-04-19T14:26:11-0500","ROBERT HOORMAN",,,3,8,0,0,8,0,8,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110419162054P030211775504001","2001-01-01","2001-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WESTERN COLORADO BUSINESS DEVELOPMENT 403B PLAN","001","1989-01-01","WESTERN COLORADO BUSINESS DEVELPMNT",,,"2591 B 3/4 ROAD",,"GRAND JUNCTION","CO","81504",,,,,,,,,,,,,,,,,,"841054192","9702435242","561110","WESTERN COLORADO BUSINESS DEVELPMNT",,"2591 B 3/4 ROAD",,"GRAND JUNCTION","CO","81504",,,,,,,"841054192","9702435242",,,,"2011-04-19T16:20:42-0500","ANN LEE",,,,,0,0,0,0,0,0,0,0,0,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110419131749P040209669280001","2006-10-01","2007-09-30","2",,"0","0","0","0","0","0","0","1","0",,"RADIOLOGIC ASSOCIATES OF NORTHERN NEW JERSEY, P.A. PENSION PLAN","001","1973-09-15","RADIOLOGIC ASSOCIATES OF NORTHERN NEW JERSEY, P.A.",,,"222 HIGH STREET SUITE 101",,"NEWTON","NJ","07860",,,,,,,,,,,,,,,,,,"221973645","9733831280","621111","RADIOLOGIC ASSOCIATES OF NORTHERN NEW JERSEY, P.A.",,"222 HIGH STREET SUITE 101",,"NEWTON","NJ","07860",,,,,,,"221973645","9733831280",,,,"2011-04-19T13:17:11-0500","ROBERT RANLEY",,,,,49,57,2,15,74,0,74,74,0,,"2A2E2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110419142822P040014542087001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"J.A. ECHOLS AND ASSOCIATES 401(K) PLAN","001","2003-01-01","J.A. ECHOLS AND ASSOCIATES",,,"3395 FOX ST STE 103C",,"DULUTH","GA","30096",,,,,,,"3395 FOX ST STE 103C",,"DULUTH","GA","30096",,,,,,,"581918946","7702325304","561900","J.A. ECHOLS AND ASSOCIATES",,"3395 FOX ST STE 103C",,"DULUTH","GA","30096",,,,,,,"581918946","7702325304",,,,"2011-04-19T14:27:20-0500","EVA POWELL",,,,,16,9,0,6,15,0,15,13,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110418141540P040207204272001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BROOKSTONE TELECOM INC. 401(K) PLAN","001","1999-01-01","BROOKSTONE TELECOM INC.",,,"43320 BUSINESS PARK DRIVE, STE B101",,"TEMECULA","CA","92590",,,,,,,"43320 BUSINESS PARK DRIVE, STE B101",,"TEMECULA","CA","92590",,,,,,,"953317482","9516943373","238900","BROOKSTONE TELECOM INC.",,"43320 BUSINESS PARK DRIVE, STE B101",,"TEMECULA","CA","92590",,,,,,,"953317482","9516943373",,,,"2011-04-18T14:14:57-0500","PAT WEST",,,,,63,23,0,30,53,0,53,36,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110418141549P040014368311001","2007-01-01","2007-12-31",,,"0","1","1","0","0","0","0","0","0",,"AFFORDABLE MOVERS LLC 401 K PROFIT SHARING PLAN & TRUST","001","2006-01-01","AFFORDABLE MOVERS",,,"PO BOX 353",,"EDMOND","OK","73083",,,,,,,"PO BOX 353",,"EDMOND","OK","73083",,,,,,,"412157502","4054099723","541990","AFFORDABLE MOVERS",,"PO BOX 353",,"EDMOND","OK","73083",,,,,,,"412157502","4054099723",,,,"2011-04-18T14:14:19-0500","CATHRYNE SCHMITZ",,,,,9,0,0,0,0,0,0,0,0,0,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413131841P030041625169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DEC- ART DESIGNS INC.401(K) P.S. PLAN","001","2006-10-01","DEC- ART DESIGNS INC.",,,"401 N FRANKLIN ST. SUITE 45",,"CHICAGO","IL","60610",,,,,,,"401 N FRANKLIN ST. SUITE 405",,"CHICAGO","IL","60610",,,,,,,"362792428","3123290553","442291","DEC- ART DESIGNS INC.",,"401 N FRANKLIN ST. SUITE 45",,"CHICAGO","IL","60610",,,,,,,"362792428","3123290553",,,,"2011-04-11T14:56:03-0500","GERALD LEVY","2011-04-11T14:56:03-0500","GERALD LEVY",,,8,9,0,,9,0,9,9,,,"2F2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413192650P040042598385001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"KING ARTIST MANAGEMENT PROFIT SHARING PLAN","002","1997-01-01","KING ARTIST MANAGEMENT",,,"CARE OF GORDON AND ASSOCIATES","15821 VENTURA BLVD SUITE 525","ENCINO","CA","91436",,,,,,,,,,,,,,,,,,"954416567","8183776300","711410","KING ARTIST MANAGEMENT",,"CARE OF GORDON AND ASSOCIATES","15821 VENTURA BLVD SUITE 525","ENCINO","CA","91436",,,,,,,"954416567","8183776300",,,,"2011-04-13T19:00:16-0500","PAULA MEYER",,,,,4,3,0,1,4,0,4,3,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110418121909P040206983376001","2010-01-01","2010-05-15","2",,"0","0","1","1","0","0","0","0","0",,"COOPERSMITH SIMON & VOGEL WELFARE BENEFIT PLAN & TRUST","501","2007-02-01","COOPERSMITH SIMON & VOGEL",,,"276 CEDAR AVENUE",,"MANASQUAN","NJ","08736",,,,,,,"276 CEDAR AVENUE",,"MANASQUAN","NJ","08736",,,,,,,"270120069","5164835800","541211","COOPERSMITH SIMON & VOGEL",,"276 CEDAR AVENUE",,"MANASQUAN","NJ","08736",,,,,,,"270120069","5164835800",,,,"2011-04-18T11:40:21-0500","MICHAEL E SIMON",,,,,11,0,0,0,0,0,0,,,,,"4A4B4D4E","1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413163206P040013474631001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GREAT LAKES COLLEGES ASSOCIATION, INC. 403(B) TDA PLAN","002","1975-02-24","GREAT LAKES COLLEGES ASSOCIATION",,,"535 W. WILLIAM STREET","SUITE 301","ANN ARBOR","MI","481034978",,,,,,,,,,,,,,,,,,"381678376","7346612350","813000","GREAT LAKES COLLEGES ASSOCIATION",,"535 W. WILLIAM STREET","SUITE 301","ANN ARBOR","MI","481034978",,,,,,,"381678376","7346612350",,,,"2011-04-13T15:33:56-0500","DEREK VAUGHAN",,,,,,,,,0,,0,,,,"2L2M2F",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419101103P040209294688001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CHICAGO PUBLIC EDUCATION FUND 401(K) PLAN","001","2000-05-01","CHICAGO PUBLIC EDUCATION FUND",,,"200 W. ADAMS, SUITE 2150",,"CHICAGO","IL","60606",,,,,,,"200 W. ADAMS, SUITE 2150",,"CHICAGO","IL","60606",,,,,,,"364279013","3125584500","813000","CHICAGO PUBLIC EDUCATION FUND",,"200 W. ADAMS, SUITE 2150",,"CHICAGO","IL","60606",,,,,,,"364279013","3125584500",,,,"2011-04-19T10:00:21-0500","JASON CASCARINO",,,,,24,13,0,7,20,0,20,19,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110413162339P040194340144001","1993-01-01","1993-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GREAT LAKES COLLEGES ASSOCIATION, INC. 403(B) TDA PLAN","002","1975-02-24","GREAT LAKES COLLEGES ASSOCIATION",,,"535 W. WILLIAM STREET","SUITE 301","ANN ARBOR","MI","481034978",,,,,,,,,,,,,,,,,,"381678376","7346612350","813000","GREAT LAKES COLLEGES ASSOCIATION",,"535 W. WILLIAM STREET","SUITE 301","ANN ARBOR","MI","481034978",,,,,,,"381678376","7346612350",,,,"2011-04-13T15:34:33-0500","DEREK VAUGHAN",,,,,,,,,0,,0,,,,"2L2M2F",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419163007P040045999713001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE COMPLIANCE GROUP, INC. 401 K PLAN","001","2007-05-01","THE COMPLIANCE GROUP, INC.",,,"14884 HWY 105 WEST","STE. 100","MONTGOMERY","TX","77356",,,,,,,"14884 HWY 105 WEST","STE. 100","MONTGOMERY","TX","77356",,,,,,,"043628294","9364476100","541990","THE COMPLIANCE GROUP, INC.",,"14884 HWY 105 WEST","STE. 100","MONTGOMERY","TX","77356",,,,,,,"043628294","9364476100",,,,"2011-04-19T16:29:38-0500","KENT PRITCHETT",,,,,10,14,0,3,17,0,17,14,0,,"2E2F2G2J2K3E",,"1",,,,"1",,,,,,"1",,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110413130556P040006241570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PALMETTO OPHTHALMOLOGY ASSOCIATES PROFIT SHARING PLAN","002","1986-07-01","PALMETTO OPHTHALMOLOGY ASSOCIATES",,,"340 WEST BUTLER STREET",,"LEXINGTON","SC","29072",,,,,,,,,,,,,,,,,,"570833301","8033598777","621111","PALMETTO OPHTHALMOLOGY ASSOCIATES",,"340 WEST BUTLER STREET",,"LEXINGTON","SC","29072",,,,,,,"570833301","8033598777",,,,"2011-04-13T12:59:19-0500","MARK KEISLER","2011-04-13T12:59:19-0500","MARK KEISLER",,,25,16,,14,30,,30,30,2,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110419151032P030211648032001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ZIMMERMAN, AXELRAD, MEYER, STERN & WISE, P.C. 401(K) AND PROFIT SHARING PLAN","001","1986-02-01","ZIMMERMAN, AXELRAD, MEYER, STERN & WISE P.C.",,,"3040 POST OAK BLVD.","SUITE 1300","HOUSTON","TX","77056",,,,,,,"3040 POST OAK BLVD.","SUITE 1300","HOUSTON","TX","77056",,,,,,,"760108418","7135521234","541110","ZIMMERMAN, AXELRAD, MEYER, STERN & WISE P.C.",,"3040 POST OAK BLVD.","SUITE 1300","HOUSTON","TX","77056",,,,,,,"760108418","7135521234",,,,"2011-04-19T15:09:59-0500","ALICIA AMMONS",,,,,64,50,0,14,64,1,65,60,1,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110415095420P030200691200001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CMC FOOD, INC. TARGET BENEFIT PLAN","001","1994-01-01","CMC ENTERPRISES, L.L.C.",,,"45 BRANT AVENUE",,"CLARK","NJ","07066",,,,,,,"45 BRANT AVENUE",,"CLARK","NJ","07066",,,,,,,"030508918","7323825900","424400","CMC ENTERPRISES, L.L.C.",,"45 BRANT AVENUE",,"CLARK","NJ","07066",,,,,,,"030508918","7323825900","CMC ENTERPRISES, L.L.C.","152228772","001","2011-04-15T09:54:17-0500","CHARLES A. CULLEY, JR.","2011-04-15T09:54:17-0500","CHARLES A. CULLEY, JR.",,,4,4,0,0,4,0,4,4,0,,"2A2E2J3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110415100831P040198960816001","2009-07-01","2010-06-30","4","C","0","0","0","0","0","0","0","0","0",,"UBS EMERGING MARKETS EQUITY COLLECTIVE FUND","024",,"UBS US GROUP TRUST",,,"UBS TOWER, 36TH FLOOR","ONE NORTH WACKER DRIVE","CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"363762086","3125257500",,"UBS GLOBAL ASSET MANAGEMENT TRUST COMPANY","UBS TOWER","ONE NORTH WACKER DRIVE",,"CHICAGO","IL","60606",,,,,,,"363718331","3125257100",,,,,,,,"2011-04-15T08:30:41-0500","MICHAEL FLOOK",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-04-15",,"Filed with authorized/valid electronic signature", "20110414113927P030042237329001","2010-01-01","2010-06-18","2",,"0","0","1","1","0","1","0","0","0",,"COLE INDUSTRIES, INC. 401K PLAN AND TRUST","001","1998-01-01","COLE INDUSTRIES, INC.",,,"4170 DISTRIBUTION CIR",,"NORTH LAS VEGAS","NV","890303356",,,,,,,,,,,,,,,,,,"880296014","7026334270","332900","COLE INDUSTRIES, INC.",,"4170 DISTRIBUTION CIR",,"NORTH LAS VEGAS","NV","890303356",,,,,,,"880296014","7026334270",,,,"2011-04-14T11:25:36-0500","BONNIE MODELO",,,,,130,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414182839P030042408305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RADIA MEDICAL IMAGING FLEXIBLE BENEFITS PLAN","502","1999-01-01","RADIA INC., P.C.",,,"728 134TH STREET SW, SUITE 120",,"EVERETT","WA","98204",,,,,,,,,,,,,,,,,,"911853574","4252976200","621111","RADIA INC., P.C.",,"728 134TH STREET SW, SUITE 120",,"EVERETT","WA","98204",,,,,,,"911853574","4252976200",,,,"2011-04-14T18:28:32-0500","ROBERT MENDONSA",,,,,135,115,0,0,115,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414122014P030006163906001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CODEBENCH, INC. 401(K) RETIREMENT SAVINGS PLAN","002","2006-10-16","CODEBENCH, INC.",,,"6820 LYONS TECHNOLOGY CIRCLE","SUITE 140","COCONUT CREEK","FL","33073",,,,,,,"6820 LYONS TECHNOLOGY CIRCLE","SUITE 140","COCONUT CREEK","FL","33073",,,,,,,"651159595","5618833218","541511","CODEBENCH, INC.",,"6820 LYONS TECHNOLOGY CIRCLE","SUITE 140","COCONUT CREEK","FL","33073",,,,,,,"651159595","5618833218",,,,"2011-04-14T12:19:54-0500","GERI CASTALDO",,,,,9,6,0,2,8,0,8,8,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414131704P040043047809001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BIRMINGHAM-SOUTHERN COLLEGE GROUP LIFE INSURANCE PLAN","502","1966-06-01","BIRMINGHAM-SOUTHERN COLLEGE",,,"900 ARKADELPHIA ROAD",,"BIRMINGHAM","AL","352540001",,,,,,,,,,,,,,,,,,"630288811","2052264646","611000","BIRMINGHAM-SOUTHERN COLLEGE",,"900 ARKADELPHIA ROAD",,"BIRMINGHAM","AL","352540001",,,,,,,"630288811","2052264646",,,,"2011-04-14T13:13:22-0500","SUSAN E KINNEY",,,,,414,317,,,317,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110415092334P030013202903001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SWAIN DENTAL, P.A. PROFIT SHARING PLAN","002","1971-09-25","SWAIN DENTAL, P.A.",,,"134 PASADENA ROAD",,"WHITING","NJ","08759",,,,,,,"134 PASADENA ROAD",,"WHITING","NJ","08759",,,,,,,"221940207","7327161350","621210","SWAIN DENTAL, P.A.",,"134 PASADENA ROAD",,"WHITING","NJ","08759",,,,,,,"221940207","7327161350",,,,"2011-04-15T09:23:31-0500","JILL H. SWAIN","2011-04-15T09:23:31-0500","JILL H. SWAIN",,,9,8,0,1,9,0,9,9,0,,"2E3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110415090926P040198837824001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAUREL FINANCIAL GROUP 401K PLAN","001","1994-01-01","LAUREL FINANCIAL GROUP",,"C/O WESLEY R NICHOLSON","9 DORCHESTER DR",,"PITTSBURGH","PA","152411003",,,,,,,,,,,,,,,,,,"251607341","4128317800","523900","LAUREL FINANCIAL GROUP","C/O WESLEY R NICHOLSON","9 DORCHESTER DR",,"PITTSBURGH","PA","152411003",,,,,,,"251607341","4128317800",,,,"2011-04-15T08:48:08-0500","WESLEY R. NICHOLSON",,,,,5,5,0,0,5,0,5,5,0,,"2E2H2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110414125410P040006331378001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RYE FORD, INC 401(K) PROFIT SHARING PLAN","001","2004-01-01","RYE FORD, INC.",,,"1151 BOSTON POST ROAD",,"RYE","NY","10580",,,,,,,,,,,,,,,,,,"131836291","9149676300","441110","RYE FORD, INC.",,"1151 BOSTON POST ROAD",,"RYE","NY","10580",,,,,,,"131836291","9149676300",,,,"2011-04-14T12:54:07-0500","MARGARET HANSEN",,,,,58,64,1,0,65,0,65,45,0,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110415085125P040198802560001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PARADIGM MANAGEMENT P.C. 401(K) PLAN","001","2004-01-01","PARADIGM MANAGEMENT P.C.",,,"736 S. MAIN STREET",,"KALISPELL","MT","59901",,,,,,,"736 S. MAIN STREET",,"KALISPELL","MT","59901",,,,,,,"200069339","4067516800","621610","PARADIGM MANAGEMENT P.C.",,"736 S. MAIN STREET",,"KALISPELL","MT","59901",,,,,,,"200069339","4067516800",,,,"2011-03-31T16:24:48-0500","KAROL CONRAD",,,,,14,10,0,0,10,0,10,12,1,,"2A2E2G2J2K2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110414183814P030042413649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SANTANDER CONSUMER USA INC. WELFARE BENEFIT PLAN","501","2001-01-01","SANTANDER CONSUMER USA INC.",,,"8585 NORTH STEMMONS FREEWAY","SUITE 1100-N","DALLAS","TX","75247",,,,,,,,,,,,,,,,,,"363149993","2142921918","522220","SANTANDER CONSUMER USA INC.",,"8585 NORTH STEMMONS FREEWAY","SUITE 1100-N","DALLAS","TX","75247",,,,,,,"363149993","2142921918",,,,"2011-04-14T18:38:06-0500","STEPHEN STUBBS",,,,,961,3243,32,0,3275,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414114155P030042238369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPENCER P. ANNABEL, M.D., P.C. PROFIT SHARING PLAN","001","1988-01-01","SPENCER P. ANNABEL, M.D., P.C.",,,"9 CROSBY ST",,"HORNELL","NY","14843",,,,,,,,,,,,,,,,,,"222892369","6073243579","621111","SPENCER P. ANNABEL, M.D., P.C.",,"9 CROSBY ST",,"HORNELL","NY","14843",,,,,,,"222892369","6073243579",,,,"2011-04-14T08:26:45-0500","SPENCER ANNABEL",,,,,6,4,0,2,6,0,6,6,0,,"2E3D","4B","1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414125805P040043039585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERSTATE FINANCIAL, INC. 401(K) PROFIT SHARING PLAN","002","2009-01-01","INTERSTATE FINANCIAL, INC.",,,"7225 129TH AVE SE",,"NEWCASTLE","WA","98056",,,,,,,,,,,,,,,,,,"910840858","4252030035","522298","INTERSTATE FINANCIAL, INC.",,"7225 129TH AVE SE",,"NEWCASTLE","WA","98056",,,,,,,"910840858","4252030035",,,,"2011-04-14T12:52:04-0500","JERRY CALVO",,,,,2,2,0,0,2,0,2,2,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110415100054P030007097062001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAGYAR BANK EMPLOYEE STOCK OWNERSHIP PLAN","004","2006-01-01","MAGYAR BANK",,,"400 SOMERSET STREET",,"NEW BRUNSWICK","NJ","08901",,,,,,,,,,,,,,,,,,"221085787","7323427600","522120","MAGYAR BANK",,"400 SOMERSET STREET",,"NEW BRUNSWICK","NJ","08901",,,,,,,"221085787","7323427600",,,,"2011-04-15T10:00:41-0500","VICTORIA FACKOVEC","2011-04-15T10:00:41-0500","VICTORIA FACKOVEC",,,104,76,0,8,84,0,84,82,2,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110412114116P030192919632001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"TRUE3, LLC PROFIT SHARING PLAN","002","2008-01-01","TRUE3, LLC",,,"5 SOUTH MAIN ST.",,"BRANFORD","CT","06405",,,,,,,,,,,,,,,,,,"261344637","2034881663","524150","TRUE3, LLC",,"5 SOUTH MAIN ST.",,"BRANFORD","CT","06405",,,,,,,"261344637","2034881663",,,,"2011-04-12T12:41:07-0500","JOHN HODSON",,,,,14,18,0,0,18,0,18,18,1,,"2A2E2F2G2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412150122P030006005666001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"DTW MARKETING RESEARCH GROUP, INC. CASH BALANCE PLAN","003","2010-01-01","DTW MARKETING RESEARCH GROUP, INC.",,,"227 ROUTE 206",,"FLANDERS","NJ","07836",,,,,,,,,,,,,,,,,,"222459417","9735842500","541910","DTW MARKETING RESEARCH GROUP, INC.",,"227 ROUTE 206",,"FLANDERS","NJ","07836",,,,,,,"222459417","9735842500",,,,"2011-04-12T15:01:09-0500","RICHARD WETZEL",,,,,30,30,0,0,30,0,30,,0,,"1A1C1G",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412091603P040190812832001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SUBURBAN OFFICE FURNITURE PROFIT SHARING PLAN","001","2005-01-01","ASF ENTERPRISES, LLC",,,"24 STACK STREET",,"MIDDLETOWN","CT","06457",,,,,,,,,,,,,,,,,,"201620470","8608546741","453210","ASF ENTERPRISES, LLC",,"24 STACK STREET",,"MIDDLETOWN","CT","06457",,,,,,,"201620470","8608546741",,,,"2011-04-12T10:15:58-0500","ANDREA S. FASSLER",,,,,7,4,0,3,7,0,7,7,1,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412065640P040041712065001","2010-01-01","2010-02-12","3",,"0","1","1","1","0",,,"1",,,"GLOBAL STRATEGIES GROUP (NORTH AMERICA) INC. 401K PLAN","004","1997-01-01","GLOBAL STRATEGIES GROUP NORTH AMERICA INC.",,,"2200 DEFENSE HWY STE 405",,"CROFTON","MD","211142929",,,,,,,,,,,,,,,,,,"520889834","3018581256","541990","GLOBAL STRATEGIES GROUP NORTH AMERICA INC.",,"2200 DEFENSE HWY STE 405",,"CROFTON","MD","211142929",,,,,,,"520889834","3018581256",,,,"2011-04-12T06:56:05-0500","LISA BROOME","2011-04-12T06:56:05-0500","LISA BROOME",,,577,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2R2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110412180509P040006183890001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARIETTA CORPORATION EMPLOYEE HEALTH AND WELFARE PLAN","501","1988-10-01","MARIETTA CORPORATION",,,"PO BOX 5250","37 HUNTINGTON STREET","CORTLAND","NY","130455250",,,,,,,,,,,,,,,,,,"161074992","6077536746","325600","MARIETTA CORPORATION",,"PO BOX 5250","37 HUNTINGTON STREET","CORTLAND","NY","130455250",,,,,,,"161074992","6077536746",,,,"2011-04-12T18:05:02-0500","KATHLEEN ALEXANDER",,,,,842,881,0,0,881,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412180923P040042004097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AVIATION TECHNOLOGIES, INC. EMPLOYEES HEALTH AND WELFARE BENEFIT PLAN","501","2003-06-01","AVIATION TECHNOLOGIES, INC.",,,"3400 WALLINGFORD AVENUE NORTH",,"SEATTLE","WA","98103",,,,,,,,,,,,,,,,,,"043750236","2066958000","336410","AVIATION TECHNOLOGIES, INC.",,"3400 WALLINGFORD AVENUE NORTH",,"SEATTLE","WA","98103",,,,,,,"043750236","2066958000",,,,"2011-04-12T18:09:18-0500","STAN HIRAOKA",,,,,179,167,0,0,167,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110411152215P030005926770001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE CRESTWOOD 401(K) PLAN","001","1996-01-01","CRESTWOOD CONDOMINIUM ASSOCIATION INC",,,"400 WOOD ROAD",,"SNOWMASS VILLAGE","CO","81615",,,,,,,"400 WOOD ROAD",,"SNOWMASS VILLAGE","CO","81615",,,,,,,"840600946","9709232450","531310","CRESTWOOD CONDOMINIUM ASSOCIATION INC",,"400 WOOD ROAD",,"SNOWMASS VILLAGE","CO","81615",,,,,,,"840600946","9709232450",,,,"2011-04-11T15:19:46-0500","DOUGLAS DAUTRECHY",,,,,54,48,0,6,54,0,54,26,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110411182152P040041429729001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"GUYS AND DOLLS FURNITURE 401K PLAN","001","2008-01-01","LEN MAC DISTRIBUTING CO",,,"13280 E MISSISSIPPI AVE",,"AURORA","CO","80012",,,,,,,,,,,,,,,,,,"840536501","7207484300","442110","LEN MAC DISTRIBUTING CO",,"13280 E MISSISSIPPI AVE",,"AURORA","CO","80012",,,,,,,"840536501","7207484300",,,,"2011-04-11T18:21:43-0500","JASON RIVKIN","2011-04-11T18:21:43-0500","JASON RIVKIN",,,15,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110412140622P040041886961001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TELEVISION ENGINEERING 401K PLAN","001","2006-01-01","TELEVISION ENGINEERING CORPORATION",,,"2647 ROCK HILL INDUSTRIAL CT",,"SAINT LOUIS","MO","631442139",,,,,,,,,,,,,,,,,,"430923486","3149612800","515100","TELEVISION ENGINEERING CORPORATION",,"2647 ROCK HILL INDUSTRIAL CT",,"SAINT LOUIS","MO","631442139",,,,,,,"430923486","3149612800",,,,"2011-04-12T14:05:16-0500","JACK VINES",,,,,27,14,0,9,23,0,23,19,0,,"2E2F2G2J2K3E",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110411145351P040041316705001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NCTAF 401(K) P/S PLAN","001","2004-01-01","NATIONAL COMMISSION ON TEACHING & AMERICA'S FUTURE",,,"1420 K STREET NW","SUITE 1000","WASHINGTON","DC","20005",,,,,,,"1420 K STREET NW","SUITE 1000","WASHINGTON","DC","20005",,,,,,,"043641630","2024292570","611000","NATIONAL COMMISSION ON TEACHING & AMERICA'S FUTURE",,"1420 K STREET NW","SUITE 1000","WASHINGTON","DC","20005",,,,,,,"043641630","2024292570",,,,"2011-04-11T14:33:41-0500","THOMAS CARROLL",,,,,13,6,0,6,12,0,12,11,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110412140303P030193194256001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LEWIS-CHESTER ASSOCIATES, INC. PROFIT SHARING PLAN","001","1985-01-01","LEWIS-CHESTER ASSOCIATES, INC.",,,"119 SUMMIT AVENUE",,"SUMMIT","NJ","07901",,,,,,,,,,,,,,,,,,"221969061","9082736100","524210","LEWIS-CHESTER ASSOCIATES, INC.",,"119 SUMMIT AVENUE",,"SUMMIT","NJ","07901",,,,,,,"221969061","9082736100",,,,"2011-04-12T14:01:35-0500","SONDRA MORRISON",,,,,24,15,0,6,21,0,21,18,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412071301P030192425344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CROSSROADS COMMUNITY FEDERAL CREDIT UNION EMPLOYEES RETIREMENT PLAN AND TRUST","001","1997-01-01","CROSSROADS COMMUNITY FEDERAL CREDIT UNION",,,"3031 WILLIAM ST",,"CHEEKTOWAGA","NY","142271919",,,,,,,"3031 WILLIAM ST",,"CHEEKTOWAGA","NY","142271919",,,,,,,"160816778","7168968084","522130","CROSSROADS COMMUNITY FEDERAL CREDIT UNION",,"3031 WILLIAM ST",,"CHEEKTOWAGA","NY","142271919",,,,,,,"160816778","7168968084",,,,"2011-04-12T06:59:03-0500","DANIEL R MAYNARD",,,,,11,10,0,0,10,0,10,10,1,,"2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412095623P040041777569001","2008-10-01","2009-09-30","2",,"0","1","0","0","1","1","0","0","0",,"LIECHTY FARM EQUIPMENT INC. EMPLOYEES RETIREMENT SAVINGS PLAN","001","1967-10-04","LIECHTY FARM EQUIPMENT INC.",,,"P.O. BOX 67",,"ARCHBOLD","OH","43502",,,,,,,"1701 S. DEFIANCE ST.",,"ARCHBOLD","OH","43502",,,,,,,"340922619","4194451565","441229","LIECHTY FARM EQUIPMENT INC.",,"P.O. BOX 67",,"ARCHBOLD","OH","43502",,,,,,,"340922619","4194451565",,,,"2011-04-12T09:56:12-0500","ORVAL JAY BECK","2011-04-12T09:56:12-0500","ORVAL JAY BECK",,,78,72,0,8,80,0,80,79,3,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110411150221P030005925682001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"VARDAMAN SURGICAL, LLC","001","2009-01-01","AMY VARDAMAN","VARDAMAN SURGICAL",,"3788 IDLEWILD PLACE",,"SUWANEE","GA","30024",,,,,,,"3788 IDLEWILD PLACE",,"SUWANEE","GA","30024",,,,,,,"263509219","4042735225","621399","AMY VARDAMAN",,"3788 IDLEWILD PLACE",,"SUWANEE","GA","30024",,,,,,,"263509219","4042735225",,,,"2011-04-11T15:02:10-0500","AMY VARDAMAN",,,,,2,2,0,0,2,0,2,2,0,,"3D2E2J",,,,"1",,,,"1",,"0",,"0","0","1",,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110412141636P040041890801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALTMAN & BARRETT ARCHITECTS, P.C. RETIREMENT SAVINGS PLAN","001","2006-01-01","ALTMAN & BARRETT ARCHITECTS, P.C.",,,"4365 PLANTATION CREST ROAD",,"VALDOSTA","GA","31602",,,,,,,,,,,,,,,,,,"204361714","2292442364","541310","ALTMAN & BARRETT ARCHITECTS, P.C.",,"4365 PLANTATION CREST ROAD",,"VALDOSTA","GA","31602",,,,,,,"204361714","2292442364",,,,"2011-04-12T14:12:17-0500","WALTER ALTMAN",,,,,5,5,0,0,5,0,5,5,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412105746P040041804673004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN W. BLACKMAN, III DDS EMPLOYEES PROFIT SHARING PLAN AND TRUST","001","2005-01-01","JOHN W. BLACKMAN, III DDS",,,"2443 LYNDHURST AVENUE",,"WINSTON-SALEM","NC","27103",,,,,,,"2443 LYNDHURST AVENUE",,"WINSTON-SALEM","NC","27103",,,,,,,"561922962","3367609258","621210","JOHN W. BLACKMAN, III DDS",,"2443 LYNDHURST AVENUE",,"WINSTON-SALEM","NC","27103",,,,,,,"561922962","3367609258",,,,"2011-04-12T06:19:42-0500","J W BLACKMAN III",,,,,7,6,1,,7,,7,7,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110411132014P040041268929001","2004-07-01","2005-06-30","2",,"0","1","0","0","0","0","0","1","0",,"GRANGER GROUP HOMES RETIREMENT PLAN","001","2001-07-01","GRANGER GROUP HOMES",,,"2404 FRANKLIN AVENUE",,"TOLEDO","OH","43620",,,,,,,,,,,,,,,,,,"341476690","4192448172","623000","GRANGER GROUP HOMES",,"2404 FRANKLIN AVENUE",,"TOLEDO","OH","43620",,,,,,,"341476690","4192448172",,,,"2011-04-11T13:18:46-0500","GARY GRANGER",,,,,30,31,0,3,34,0,34,12,,,"2E2F2G2J2K3E",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110412084031P030040904641001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"LESLIE W. MILLIGAN, MD SELF-EMPLOYED RETIREMENT PLAN","001","1996-07-01","LESLIE W. MILLIGAN, MD",,,"1810 BISHOP AVENUE, STE. C",,"JEFFERSON CITY","TN","37760",,,,,,,,,,,,,,,,,,"621664989","8654752061","621111","LESLIE W. MILLIGAN, MD",,"1810 BISHOP AVENUE, STE. C",,"JEFFERSON CITY","TN","37760",,,,,,,"621664989","8654752061",,,,"2011-04-12T08:40:30-0500","LESLIE W. MILLIGAN",,,,,4,3,0,1,4,0,4,4,0,,"2C3E3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412085856P040190776544001","2010-01-01","2010-12-31","1",,"0",,"0","0","0","0","0","0","0",,"BSC HOLDING INC. EMPLOYEE BENEFITS AND CAFETERIA PLAN","501","1984-01-01","BSC HOLDING INC.",,,"4919 LAMAR AVENUE",,"MISSION","KS","66202",,,,,,,"4919 LAMAR AVENUE",,"MISSION","KS","66202",,,,,,,"480945328","9132627263","212320","BSC HOLDING INC.",,"4919 LAMAR AVENUE",,"MISSION","KS","66202",,,,,,,"480945328","9132627263",,,,"2011-04-12T08:07:57-0500","JUDITH SAMAYOA",,,,,115,116,0,0,116,0,116,,,,,"4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110413121856P040001296835001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARILYN SIMON & ASSOCIATES RETIREMENT PLAN","001","1986-01-01","MARILYN SIMON & ASSOCIATES",,,"110 EAST 59TH STREET - 23RD FLOOR",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"133325056","2127597909","541110","MARILYN SIMON & ASSOCIATES",,"110 EAST 59TH STREET - 23RD FLOOR",,"NEW YORK","NY","10022",,,,,,,"133325056","2127597909",,,,"2011-04-13T12:08:18-0500","MARILYN SIMON",,,,,2,2,0,0,2,0,2,,0,,"1A3B",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110412104408P030040961841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPEWAY ROOFING SYSTEMS, INC. RETIREMENT PLAN","001","1992-07-01","CAPEWAY ROOFING SYSTEMS, INC.",,,"664 SANFORD ROAD",,"WESTPORT","MA","027904032",,,,,,,"JOSE CALHETA","664 SANFORD ROAD","WESTPORT","MA","027904032",,,,,,,"042899319","5086740800","238100","CAPEWAY ROOFING SYSTEMS, INC.",,"664 SANFORD ROAD",,"WESTPORT","MA","027904032",,,,,,,"042899319","5086740800",,,,"2011-04-12T10:41:16-0500","JOE CALHETA","2011-04-12T10:41:16-0500","JOE CALHETA",,,111,105,,16,121,,121,119,,,"2E2G2F3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110412153739P030041100177001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE CAVANCE CORPORATION RETIREMENT SAVINGS PLAN","001","2002-02-01","THE CAVANCE CORPORATION",,,"15114 JONES MALTSBERGER",,"SAN ANTONIO","TX","78247",,,,,,,,,,,,,,,,,,"300003120","2104963112","442210","THE CAVANCE CORPORATION",,"15114 JONES MALTSBERGER",,"SAN ANTONIO","TX","78247",,,,,,,"300003120","2104963112",,,,"2011-04-12T15:35:46-0500","TRACEY M. BELLAVANCE CAVALERI","2011-04-12T15:35:46-0500","TRACEY M. BELLAVANCE CAVALERI",,,12,9,0,1,10,0,10,10,0,,"2A2E2F2G2J2K",,"1",,,,"1",,,,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110412105839P040041804961001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GETTEL CHIROPRACTIC, P.A. RETIREMENT PLAN","001","1992-01-01","GETTEL CHIROPRACTIC, P.A.",,,"1515 WEST LINCOLN AVENUE",,"FERGUS FALLS","MN","56537",,,,,,,,,,,,,,,,,,"411580840","2187393216","621310","GETTEL CHIROPRACTIC, P.A.",,"1515 WEST LINCOLN AVENUE",,"FERGUS FALLS","MN","56537",,,,,,,"411580840","2187393216",,,,"2011-04-12T10:58:37-0500","ANTHONY K. GETTEL, D.C.","2011-04-12T10:58:37-0500","ANTHONY K. GETTEL, D.C.",,,8,0,0,0,0,0,0,0,0,,"2E3D2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110412121508P030005993522002","2010-01-01","2010-12-31","2",,"1","1",,,,,,,,,"TAMRA WINK 401(K)PROFIT SHARING PLAN AND TRUST","001","1996-01-01","TAMRA WINK",,,"2503 BLUESTEM ROAD",,"PONCA CITY","OK","74604",,,,,,,,,,,,,,,,,,"731517072","5807169873","621340","TAMRA WINK",,"2503 BLUESTEM ROAD",,"PONCA CITY","OK","74604",,,,,,,"731517072","5807169873","TAMRA WINK","731517072","001","2011-04-12T13:11:55-0500","TAMRA WINK","2011-04-12T13:12:02-0500","TAMRA WINK",,,1,1,0,0,1,0,1,1,,,"2J3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110502151621P030016155127001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARK C. POPE EMPLOYEE STOCK OWNERSHIP PLAN","001","1987-10-01","MARK C. POPE ASSOCIATES, INC.",,,"4910 MARTIN COURT SE",,"SMYRNA","GA","30082",,,,,,,,,,,,,,,,,,"581020746","7704352471","423600","MARK C. POPE ASSOCIATES, INC.",,"4910 MARTIN COURT SE",,"SMYRNA","GA","30082",,,,,,,"581020746","7704352471",,,,"2011-05-02T14:43:58-0500","BARBARA STRAFER",,,,,28,25,1,1,27,0,27,27,0,,"2I2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110502152238P030016155655001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"POLYPORE INC. FLEXIBLE BENEFITS PLAN","510","2004-01-01","POLYPORE INC.",,,"11430 N. COMMUNITY HOUSE RD.",,"CHARLOTTE","NC","28277",,,,,,,,,,,,,,,,,,"571006871","7045878574","327400","POLYPORE INC.",,"11430 N. COMMUNITY HOUSE RD.",,"CHARLOTTE","NC","28277",,,,,,,"571006871","7045878574",,,,"2011-05-02T15:22:33-0500","JOHN HULLA","2011-05-02T15:22:33-0500","JOHN HULLA",,,162,186,0,0,186,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110502152458P040243169264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCCULLOUGH DEVELOPMENT, INC. PROFIT SHARING 401K PLAN & TRUST","001","1994-01-01","MCCULLOUGH DEVELOPMENT, INC.",,,"210 N 4TH ST STE C",,"MANHATTAN","KS","665026056",,,,,,,,,,,,,,,,,,"480973399","7857763010","541310","MCCULLOUGH DEVELOPMENT, INC.",,"210 N 4TH ST STE C",,"MANHATTAN","KS","665026056",,,,,,,"480973399","7857763010",,,,"2011-05-02T15:11:12-0500","STEVE BOECKMAN",,,,,66,62,0,8,70,0,70,51,6,,"2F2G2J2K2E3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110425150339P040225305904001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MADSEN GOLDMAN & HOLCOMB, LLP PROFIT SHARING PLAN","001","1997-01-01","MADSEN GOLDMAN & HOLCOMB, LLP",,,"1705 METROPOLITAN BLVD., SUITE 101",,"TALLAHASSEE","FL","323083796",,,,,,,,,,,,,,,,,,"593409190","8505230400","541110","MADSEN GOLDMAN & HOLCOMB, LLP",,"1705 METROPOLITAN BLVD., SUITE 101",,"TALLAHASSEE","FL","323083796",,,,,,,"593409190","8505230400",,,,"2011-04-25T15:02:18-0500","H. MICHAEL MADSEN",,,,,7,6,0,0,6,0,6,6,,,"2E2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110502164925P030016168631001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARINE CLERKS ASSOCIATION, LOCAL 63 ILWU PROFIT SHARING PLAN","005","2009-01-01","MARINE CLERKS ASSOCIATION, LOCAL 63 ILWU",,,"350 W. 5TH STREET","SUITE 200","SAN PEDRO","CA","90731",,,,,,,,,,,,,,,,,,"950972984","3105216363","813930","MARINE CLERKS ASSOCIATION, LOCAL 63, ILWU",,"350 W. 5TH STREET","SUITE 200","SAN PEDRO","CA","90731",,,,,,,"950972984","3105216363",,,,"2011-05-02T16:48:25-0500","PETER PEYTON",,,,,5,6,0,0,6,0,6,6,0,,"2A2E2G2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110501083721P040239873360001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SWATI THACKER MD MONEY PURCHASE PLAN","003","1989-12-31","SWATI THACKER MD",,,"396 CLIFF DRIVE",,"LAGUNA BEACH","CA","92651",,,,,,,"396 CLIFF DRIVE",,"LAGUNA BEACH","CA","92651",,,,,,,"330144472",,"621112","RAHUL THACKER MD",,"396 CLIFF DRIVE",,"LAGUNA BEACH","CA","92651",,,,,,,"330144472","9494946317",,,,"2011-05-01T08:36:55-0500","RAHUL THACKER",,,,,1,1,,,1,,1,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-01","Filed with authorized/valid electronic signature",, "20110425135436P040225177296001","2010-01-01","2010-12-10","2",,"0",,"1","1","0",,,,,,"VENUWORKS 401(K) PLAN","001","1997-02-01","VENUWORKS, INC.",,,"4611 MORTENSEN RD STE 111",,"AMES","IA","500146228",,,,,,,,,,,,,,,,,,"421463763","5152325151","541600","VENUWORKS, INC.",,"4611 MORTENSEN RD STE 111",,"AMES","IA","500146228",,,,,,,"421463763","5152325151",,,,"2011-04-25T13:54:26-0500","STEVEN PETERS","2011-04-25T13:54:26-0500","STEVEN PETERS",,,183,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2S2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110420125748P030014112807001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SPATIAL PHOTONICS, INC. 401(K) PLAN","001","2005-07-29","SPATIAL PHOTONICS, INC.",,,"930 HAMLIN COURT",,"SUNNYVALE","CA","94089",,,,,,,"930 HAMLIN COURT",,"SUNNYVALE","CA","94089",,,,,,,"680596050","4089408800","541990","SPATIAL PHOTONICS, INC.",,"930 HAMLIN COURT",,"SUNNYVALE","CA","94089",,,,,,,"680596050","4089408800",,,,"2011-04-20T12:56:51-0500","BARBARA TAPPER",,,,,41,20,0,11,31,0,31,27,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110421100852P030216428848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALLEY EQUIPMENT COMPANY, INC. 401K PLAN","001","2006-01-01","VALLEY EQUIPMENT COMPANY, INC.",,"NANCY ANN GUZZO","3565 BLOSSOM DRIVE NE",,"SALEM","OR","97305",,,,,,,,,,,,,,,,,,"931016466","5033644491","423800","VALLEY EQUIPMENT COMPANY, INC.","NANCY ANN GUZZO","3565 BLOSSOM DRIVE NE",,"SALEM","OR","97305",,,,,,,"931016466","5033644491",,,,"2011-04-21T10:08:01-0500","NANCY ANN GUZZO",,,,,35,42,0,2,44,0,44,26,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110503102619P030016292647008","2010-01-01","2010-12-31","3",,,,,,,,,,,,"BENEFIT PARTNERS, LLC 401K PLAN","001","1999-01-01","MAINTENANCE PLUS",,,"2827 CHEROKEE ROAD",,"BIRMINGHAM","AL","35223",,,,,,,,,,,,,,,,,,"631116818","2059954460","488990","MAINTENANCE PLUS",,"2827 CHEROKEE ROAD",,"BIRMINGHAM","AL","35223",,,,,,,"631116818","2059954460",,,,"2011-05-03T04:58:11-0500","JAKE GUERCIO",,,,,14,13,0,0,13,0,13,9,,,"2G2J2K3D",,"1",,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110502130131P030245031072001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIABETES & ENDOCRINOLOGY 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","DIABETES & ENDOCRINOLOGY",,,"611 N 35TH ST",,"MOREHEAD CITY","NC","28557",,,,,,,,,,,,,,,,,,"200505383","2522225700","621111","DIABETES & ENDOCRINOLOGY",,"611 N 35TH ST",,"MOREHEAD CITY","NC","28557",,,,,,,"200505383","2522225700",,,,"2011-05-02T01:01:29-0500","DIABETES ENDOCRINOLOGY","2011-05-02T01:01:29-0500","DIABETES ENDOCRINOLOGY",,,14,12,0,3,15,0,15,12,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110425163108P030227313440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"B & E, INC. 401(K) PLAN","001","2000-04-01","B & E, INC.",,,"1239 N BOULDER HWY S-900",,"HENDERSON","NV","89015",,,,,,,,,,,,,,,,,,"880260052","7025641180","811190","B & E, INC.",,"1239 N BOULDER HWY S-900",,"HENDERSON","NV","89015",,,,,,,"880260052","7025641180",,,,"2011-04-25T16:31:12-0500","DONALD ELLIS","2011-04-25T16:31:12-0500","DONALD ELLIS",,,25,13,0,10,23,0,23,14,0,,"2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110420115922P030213985984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CUTLER & DONAHOE, LLP RETIREMENT PLAN","001","1997-01-01","CUTLER & DONAHOE LLP",,,"100 NORTH PHILLIPS AVENUE, STE 901",,"SIOUX FALLS","SD","571046725",,,,,,,,,,,,,,,,,,"460445231","6053554950","541110","CUTLER & DONAHOE LLP",,"100 NORTH PHILLIPS AVENUE, STE 901",,"SIOUX FALLS","SD","571046725",,,,,,,"460445231","6053554950",,,,"2011-04-20T11:59:15-0500","RUBY BOLLIN",,,,,26,26,0,3,29,0,29,29,0,,"2E3B3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110503122351P030247574640001","2005-07-01","2006-06-30","2",,"0","0","0","0","0","0","0","1","0",,"NATIONAL RECREATION AND PARK ASSOCIATION 403(B) PLAN","002","2003-07-01","NATIONAL RECREATION AND PARK ASSOCIATION",,,"22377 BELMONT RIDGE ROAD",,"ASHBURN","VA","20148",,,,,,,"22377 BELMONT RIDGE ROAD",,"ASHBURN","VA","20148",,,,,,,"135563001","7038580784","813000","NATIONAL RECREATION AND PARK ASSOCIATION",,"22377 BELMONT RIDGE ROAD",,"ASHBURN","VA","20148",,,,,,,"135563001","7038580784",,,,"2011-05-03T12:23:32-0500","SANDRA BISHOP",,,,,,,,,,,,,,,"2F2G2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110502145427P030245255536001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HUNTSINGER FARMS, INC. EMPLOYEE BENEFIT PLAN","503","2003-01-01","HUNTSINGER FARMS, INC.",,,"P.O. BOX 360",,"EAU CLAIRE","WI","547020360",,,,,,,,,,,,,,,,,,"390788284","7158329739","111210","HUNTSINGER FARMS, INC.",,"P.O. BOX 360",,"EAU CLAIRE","WI","547020360",,,,,,,"390788284","7158329739",,,,"2011-05-02T14:53:37-0500","DENISE ESCHER",,,,,101,94,2,0,96,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110425094211P040015515735001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OXFORD FINANCIAL GROUP, LTD LIFE AND LONG-TERM DISABILITY PLAN","503","2001-02-01","OXFORD FINANCIAL GROUP, LTD",,,"11711 N. MERIDIAN STREET",,"CARMEL","IN","46032",,,,,,,,,,,,,,,,,,"351588335","3178435678","523900","OXFORD FINANCIAL GROUP, LTD",,"11711 N. MERIDIAN STREET",,"CARMEL","IN","46032",,,,,,,"351588335","3178435678",,,,"2011-04-25T09:18:00-0500","SUE MCMILLEN",,,,,102,103,0,0,103,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110425140008P030008049302005","2010-01-01","2010-09-30","2",,,,,"1",,,,,,,"VENUWORKS GROUP LIFE BENEFIT","504","2002-07-01","VENUWORKS, INC",,,"4611 MORTENSEN ROAD SUITE 111",,"AMES","IA","50014",,,,,,,,,,,,,,,,,,"421463763","5152325151","561210","VENUWORKS, INC",,"4611 MORTENSEN ROAD SUITE 111",,"AMES","IA","50014",,,,,,,"421463763","5152325151",,,,"2011-04-25T11:06:36-0500","STEVEN PETERS",,,,,145,153,,,153,,,,,,,"4H4L4B4F",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110421102918P030216473184001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLES RIVER LABORATORIES, INC. FCRDC RETIREMENT PLAN","005","1982-10-01","CHARLES RIVER LABORATORIES, INC.",,,"251 BALLARDVALE ST",,"WILMINGTON","MA","01887",,,,,,,,,,,,,,,,,,"760509980","7812226000","541380","CHARLES RIVER LABORATORIES, INC.",,"251 BALLARDVALE ST",,"WILMINGTON","MA","01887",,,,,,,"760509980","7812226000",,,,"2011-04-21T10:29:10-0500","SUSAN K. BLANE","2011-04-21T10:29:10-0500","SUSAN K. BLANE",,,83,76,0,18,94,0,94,86,0,,"3D2J2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110421103535P030216487712001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PLATT BYARD DOVELL WHITE LLP 401(K) PROFIT SHARING PLAN","002","1993-01-01","PLATT BYARD DOVELL WHITE LLP",,,"20 WEST 22ND STREET","FLOOR 17","NEW YORK","NY","10010",,,,,,,"20 WEST 22ND STREET","FLOOR 17","NEW YORK","NY","10010",,,,,,,"133527949","2126912441","541310","PLATT BYARD DOVELL WHITE LLP",,"20 WEST 22ND STREET","FLOOR 17","NEW YORK","NY","10010",,,,,,,"133527949","2126912441",,,,"2011-04-21T10:35:09-0500","SAMUEL G WHITE",,,,,47,32,0,15,47,0,47,46,1,,"2A2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110421091458P040014870551002","2008-01-01","2008-12-31","2",,,,,,,,"1",,,,"MICHAEL L PRATER DMD PROFIT SHARING PLAN","002","1997-01-01","MICHAEL L PRATER DMD",,,"P.O. BOX 37959",,"CINCINATI","OH","45222",,,,,,,"8040 HOSBROOK RD",,"CINCINNATI","OH","45236",,,,,,,"311172070","5137612860","621210","MICHAEL L PRATER DMD",,"P.O. BOX 37959",,"CINCINATI","OH","45222",,,,,,,"311172070","5137612860",,,,"2009-09-29T09:50:53-0500","MICHAEL PRATER","2009-09-29T09:50:53-0500","MICHAEL PRATER",,,5,3,,,3,1,4,4,,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110502172445P030245542192001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GINO TUTERA, M.D., A.P.C. 401(K) PROFIT SHARING PLAN","001","1996-12-26","GINO TUTERA, M.D., A.P.C.",,,"8412 EAST SHEA BOULEVARD, SUITE 101",,"SCOTTSDALE","AZ","85260",,,,,,,,,,,,,,,,,,"330955170","4808741515","621111","GINO TUTERA, M.D., A.P.C.",,"8412 EAST SHEA BOULEVARD, SUITE 101",,"SCOTTSDALE","AZ","85260",,,,,,,"330955170","4808741515",,,,"2011-05-02T15:20:05-0500","CHRISTOPHER PYLE","2011-05-02T15:20:05-0500","CHRISTOPHER PYLE",,,35,28,0,7,35,0,35,35,4,,"2A2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110425164342P030227337680001","2008-10-01","2009-09-30","2",,"0","0","0","0","0","0","0","1","0",,"Z-ALLOY, INC. PROFIT SHARING PLAN","003","2002-10-01","Z-ALLOY, INC.",,,"11059 BROADWAY","SUITE A","CROWN POINT","IN","46307",,,,,,,,,,,,,,,,,,"351680086","2196616822","332900","SAME",,,,,,,,,,,,,,,,,,"2011-04-25T16:43:19-0500","KAREN DIGNAN",,,,,3,3,0,0,3,0,3,3,0,,"2E3E",,"1",,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110420085106P030045516897001","2010-04-06","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"FIT FUN YOUTH SPORTS, INC. PROFIT SHARING PLAN","001","2010-04-06","FIT FUN YOUTH SPORTS, INC.",,,"11944 W. 95TH STREET, #236",,"LENEXA","KS","66215",,,,,,,,,,,,,,,,,,"272292190","9139040810","713900","FIT FUN YOUTH SPORTS, INC.",,"11944 W. 95TH STREET, #236",,"LENEXA","KS","66215",,,,,,,"272292190","9139040810",,,,"2011-04-19T18:52:04-0500","TERRENCE REUTER","2011-04-19T18:52:04-0500","TERRENCE REUTER",,,0,2,0,0,2,0,2,1,0,,"2A2E2F2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110420131445P030214134624001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"CROWN OPTICAL INC LIFE INSURANCE","502","2004-02-01","NUCROWN INC",,,"211 E BROADWAY",,"ALTON","IL","62002",,,,,,,,,,,,,,,,,,"371265227","3147418183","621111","NUCROWN INC",,"211 E BROADWAY",,"ALTON","IL","62002",,,,,,,"371265227","3147418183",,,,"2011-04-20T13:14:39-0500","CHARLES MATTHEWS","2011-04-20T13:14:39-0500","CHARLES MATTHEWS",,,116,115,0,0,115,,,,,,,"4B4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110503152254P030016333431001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"B.J. COMMUNICATIONS 401(K) PLAN","001","1993-01-01","B.J. COMMUNICATIONS, INC.",,,"650 N. 6TH AVENUE",,"PHOENIX","AZ","85003",,,,,,,,,,,,,,,,,,"860474312","6022779530","541800","B.J. COMMUNICATIONS, INC.",,"650 N. 6TH AVENUE",,"PHOENIX","AZ","85003",,,,,,,"860474312","6022779530",,,,"2011-05-03T15:20:45-0500","SARA FLEURY",,,,,8,4,0,4,8,0,8,8,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110425153344P030227204176001","2008-10-01","2009-09-30","2",,,"1",,,,,,,,,"ARBEE INCORPORATED ET AL PROFIT SHARING PLAN","001","1980-10-01","ARBEE INCORPORATED",,,"444 VALLEY VISTA ROAD",,"CAMARILLO","CA","93010",,,,,,,,,,,,,,,,,,"953177692","8053899551","444190","ARBEE INCORPORATED",,"444 VALLEY VISTA ROAD",,"CAMARILLO","CA","93010",,,,,,,"953177692","8053899551",,,,"2011-04-25T04:33:36-0500","LAURIE BENNETT",,,,,138,93,0,53,146,1,147,147,10,,"2E3D3H",,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110425153430P030227205504001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOHICA DEFINED BENEFIT PLAN","002","2007-01-01","BOHICA SERVICES, INC.",,,"3200 21ST STREET, SUITE 301",,"BAKERSFIELD","CA","933013108",,,,,,,,,,,,,,,,,,"770093784","6613240300","561490","BOHICA SERVICES, INC.",,"3200 21ST STREET, SUITE 301",,"BAKERSFIELD","CA","933013108",,,,,,,"770093784","6613240300",,,,"2011-04-25T15:33:32-0500","LINDA HICKS",,,,,9,9,0,2,11,0,11,,0,,"1A1G3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110425153547P030227207728001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"AAA PROPERTIES 401K PROFIT SHARING PLAN","001","2006-01-01","AAA PROPERTIES",,,"330 W 5TH STREET",,"CHICO","CA","959280000",,,,,,,,,,,,,,,,,,"680241106","5308953500","721110","AAA PROPERTIES",,"330 W 5TH STREET",,"CHICO","CA","959280000",,,,,,,"680241106","5308953500",,,,"2011-04-25T15:35:35-0500","PENSION FILERS",,,,,5,5,0,0,5,0,5,5,0,,"2E2A2G2J2K3H3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110502113936P040009085494001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORNERSTONE WOMENS CARE, P.C. PROFIT SHARING PLAN","002","1994-12-31","CORNERSTONE WOMENS CARE, P.C.",,,"15255 N. 40TH STREET, SUITE 105",,"PHOENIX","AZ","850324636",,,,,,,,,,,,,,,,,,"860486864","6028672690","621111","CORNERSTONE WOMENS CARE, P.C.",,"15255 N. 40TH STREET, SUITE 105",,"PHOENIX","AZ","850324636",,,,,,,"860486864","6028672690",,,,"2011-05-02T11:38:58-0500","ROSLYN HOLEMON",,,,,14,13,0,1,14,0,14,13,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110421075936P040014855655001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"OFF WALL STREET CONSULTING GROUP, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","OFF WALL STREET CONSULTING GROUP, INC.",,,"22 HILLARD STREET","3RD FLOOR","CAMBRIDGE","MA","02138",,,,,,,,,,,,,,,,,,"043084612","6178687880","541990","OFF WALL STREET CONSULTING GROUP, INC.",,"22 HILLARD STREET","3RD FLOOR","CAMBRIDGE","MA","02138",,,,,,,"043084612","6178687880",,,,"2011-04-21T08:59:21-0500","ELAINE LARSEN",,,,,11,5,0,2,7,0,7,7,2,,"2A2E2F2J2K2G2T2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110502163150P030016165111001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAW OFFICES OF FRANK HOOVER, P.S. 401(K) PROFIT SHARING PLAN","001","2007-01-01","LAW OFFICES OF FRANK HOOVER, P.S.",,,"1402 W BROADWAY",,"SPOKANE","WA","99201",,,,,,,,,,,,,,,,,,"911880212","5093239595","541110","LAW OFFICES OF FRANK HOOVER, P.S.",,"1402 W BROADWAY",,"SPOKANE","WA","99201",,,,,,,"911880212","5093239595",,,,"2011-05-02T16:31:31-0500","FRANK HOOVER",,,,,2,1,0,1,2,0,2,2,0,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110503124234P030247615728001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AIR COOLED EXCHANGERS, LLC, GROUP HEALTH AND LIFE INSURANCE PLAN","502","1992-06-01","AIR COOLED EXCHANGERS, LLC",,,"1201 S. 9TH STREET",,"BROKEN ARROW","OK","74102",,,,,,,,,,,,,,,,,,"260215957","9182517477","332400","AIR COOLED EXCHANGERS, LLC",,"1201 S. 9TH STREET",,"BROKEN ARROW","OK","74102",,,,,,,"260215957","9182517477",,,,"2011-05-03T12:42:30-0500","ASHLEY BRAY",,,,,156,122,5,0,127,,,,,,,"4A4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503153119P030052827313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GOTHAM PICTURES INC 401(K) PROFIT SHARING PLAN & TRUST","001","1997-01-01","GOTHAM PICTURES INC",,,"285 METROPOLITAN AVE 2ND FLR",,"BROOKLYN","NY","11211",,,,,,,,,,,,,,,,,,"133665635","7183845153","512100","GOTHAM PICTURES INC",,"285 METROPOLITAN AVE 2ND FLR",,"BROOKLYN","NY","11211",,,,,,,"133665635","7183845153",,,,"2011-05-03T03:31:17-0500","GOTHAM PICTURES INC",,,,,3,1,0,1,2,0,2,2,0,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110425142744P030008051174001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M/H LIGHTING ASSOCIATES, INC. 401(K) PLAN","001","1978-06-01","M/H LIGHTING ASSOCIATES, INC.",,,"1044 SPEER BLVD.",,"DENVER","CO","80204",,,,,,,"1044 SPEER BLVD.",,"DENVER","CO","80204",,,,,,,"840638004","3035730222","335900","M/H LIGHTING ASSOCIATES, INC.",,"1044 SPEER BLVD.",,"DENVER","CO","80204",,,,,,,"840638004","3035730222",,,,"2011-04-25T14:25:16-0500","STEVE WOODWARD",,,,,54,44,0,6,50,2,52,49,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110420162634P040014744919001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TWIN FALLS ORTHOPEDICS 401(K) & CROSS TESTED PSP","003","1998-01-01","TWIN FALLS ORTHOPEDICS",,,"PO BOX 1808",,"TWIN FALLS","ID","833031808",,,,,,,,,,,,,,,,,,"300091615","2087343455","621111","TWIN FALLS ORTHOPEDICS",,"PO BOX 1808",,"TWIN FALLS","ID","833031808",,,,,,,"300091615","2087343455",,,,"2011-04-20T16:26:37-0500","JOHN HOWAR MD","2011-04-20T16:26:37-0500","JOHN HOWAR MD",,,26,9,0,4,13,0,13,7,0,,"2A2E2F2G2J2R3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110420162934P040212695904001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TWIN FALLS CHAMBER OF COMMERCE MATCH","001","2000-04-01","TWIN FALLS CHAMBER OF COMMERCE",,,"858 BLUE LAKE BLVD N",,"TWIN FALLS","ID","83301",,,,,,,,,,,,,,,,,,"820172213","2087333974","813000","TWIN FALLS CHAMBER OF COMMERCE",,"858 BLUE LAKE BLVD N",,"TWIN FALLS","ID","83301",,,,,,,"820172213","2087333974",,,,"2011-04-20T16:29:31-0500","SHAWN BARIGAR","2011-04-20T16:29:31-0500","SHAWN BARIGAR",,,3,3,0,0,3,0,3,3,0,,"2G2F2J2K",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110421132652P030046143073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RIVER SPEECH & EDUCATIONAL SERVICES INC 401(K) PLAN AND TRUST","001","2005-01-01","RIVER SPEECH & EDUCATIONAL SERVICES INC",,,"3394 SAXONBURG BLVD SUITE 620",,"GLENSHAW","PA","151163169",,,,,,,"3394 SAXONBURG BLVD SUITE 620",,"GLENSHAW","PA","151163169",,,,,,,"203991680","4127675967","621340","RIVER SPEECH & EDUCATIONAL SERVICES INC",,"3394 SAXONBURG BLVD SUITE 620",,"GLENSHAW","PA","151163169",,,,,,,"203991680","4127675967",,,,"2011-04-21T13:12:38-0500","CHERIE RIVER",,,,,12,11,0,1,12,0,12,12,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110502093706P040242504624001","2011-01-01","2011-04-30","2",,"0","0","1","1","0","0","0","0","0",,"FAIR OAKS PHARMACY, INC. 401(K) PROFIT SHARING PLAN","002","1989-03-01","FAIR OAKS PHARMACY, INC.",,"C/O JDX PHARMACY","1504 SOUTH BROADWAY",,"SANTA MARIA","CA","93454",,,,,,,,,,,,,,,,,,"952155674","8054894243","446110","FAIR OAKS PHARMACY, INC.","C/O JDX PHARMACY","1504 SOUTH BROADWAY",,"SANTA MARIA","CA","93454",,,,,,,"952155674","8054894243",,,,"2011-05-02T09:36:50-0500","DOUGLAS S. HENDRY",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2R3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110420151442P030003905205001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARMICHAEL, HILL & ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1991-01-01","CARMICHAEL, HILL & ASSOCIATES, INC.",,,"18 EAST DIAMOND AVENUE",,"GAITHERSBURG","MD","20877",,,,,,,,,,,,,,,,,,"521614317","3012179300","523900","CARMICHAEL, HILL & ASSOCIATES, INC.",,"18 EAST DIAMOND AVENUE",,"GAITHERSBURG","MD","20877",,,,,,,"521614317","3012179300",,,,"2011-04-20T14:58:34-0500","JAMES STEWART",,,,,5,6,0,0,6,0,6,6,0,,"2A2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110420103326P040046454017001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"XSEED 401(K) PLAN","001","2005-01-01","XSEED JKS, INC.",,,"23001 HAWTHORNE BOULEVARD, 205",,"TORRANCE","CA","90505",,,,,,,"23001 HAWTHORNE BOULEVARD, 205",,"TORRANCE","CA","90505",,,,,,,"201593094","3107920020","519100","XSEED JKS, INC.",,"23001 HAWTHORNE BOULEVARD, 205",,"TORRANCE","CA","90505",,,,,,,"201593094","3107920020",,,,"2011-04-19T18:50:23-0500","RICHARD YEE",,,,,6,6,0,1,7,7,14,7,0,,"2E2F2G2J2K3E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110502120203P040016764023001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE BOOKLEGGER 401(K) PROFIT SHARING PLAN","001","1995-07-01","THE BOOKLEGGER",,,"P.O. BOX 2626",,"GRASS VALLEY","CA","95945",,,,,,,"13100 GRASS VALLEY AVE",,"GRASS VALLEY","CA","95945",,,,,,,"680033447","5302721556","451211","THE BOOKLEGGER",,"P.O. BOX 2626",,"GRASS VALLEY","CA","95945",,,,,,,"680033447","5302721556",,,,"2011-05-02T12:01:53-0500","WARREN HUTSON",,,,,9,7,0,1,8,0,8,6,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110420200247P040046700113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WALLACE THEATER HOLDINGS WELFARE BENEFIT PLAN","501","2005-01-01","WALLACE THEATER HOLDINGS, INC.",,,"919 SW TAYLOR STREET","SUITE 800","PORTLAND","OR","97205",,,,,,,,,,,,,,,,,,"752605571","5032217090","713900","WALLACE THEATER HOLDINGS, INC.",,"919 SW TAYLOR STREET","SUITE 800","PORTLAND","OR","97205",,,,,,,"752605571","5032217090",,,,"2011-04-20T18:59:47-0500","CHARLES KIRK",,,,,116,117,2,0,119,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110503105814P040016927863001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PEDIATRIC & ADOLESCENT MEDICINE, P.C. 401(K) PROFIT SHARING PLAN","001","1978-06-01","PEDIATRICS AND ADOLESCENT MEDICINE PC",,,"240 INDIAN RIVER ROAD","SUITE B-1","ORANGE","CT","06477",,,,,,,,,,,,,,,,,,"060855216","2037956025","621111","PEDIATRICS AND ADOLESCENT MEDICINE PC",,"240 INDIAN RIVER ROAD","SUITE B-1","ORANGE","CT","06477",,,,,,,"060855216","2037956025",,,,"2011-05-03T11:58:05-0500","ANDREW CARLSON",,,,,28,26,0,2,28,1,29,29,0,,"2A2E2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503110319P040016928727001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GLENWOOD L L C 401(K) PROFIT SHARING PLAN & TRUST","001","1996-01-01","GLENWOOD L L C",,,"PO BOX 5419",,"ENGLEWOOD","NJ","07631",,,,,,,,,,,,,,,,,,"223507595","2015690050","334500","GLENWOOD L L C",,"PO BOX 5419",,"ENGLEWOOD","NJ","07631",,,,,,,"223507595","2015690050",,,,"2011-05-03T11:03:16-0500","GLENWOOD L L C",,,,,20,16,0,2,18,0,18,16,0,,"2E2G2J2K2R2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503145538P030052811601001","2008-08-01","2009-07-31","2",,"0","0","0","0","0","0","0","1","0",,"ROBERT P. SCHUMANN, INC. 401K PLAN","001","2005-01-01","ROBERT P. SCHUMANN, INC.",,,"454 LONGLEAF DRIVE",,"PERKASIE","PA","18944",,,,,,,,,,,,,,,,,,"232071541","2152581032","561490","ROBERT P. SCHUMANN, INC.",,"454 LONGLEAF DRIVE",,"PERKASIE","PA","18944",,,,,,,"232071541","2152581032",,,,"2011-05-03T14:54:13-0500","DOUG LASHLEY",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G2J2K3E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503154955P040016973399001","2010-01-01","2010-12-31","3",,"0","1","0","0",,,,,,,"ALTERNATE CONCEPTS, INC. 401(K) PLAN","002","2008-01-01","ALTERNATE CONCEPTS, INC.",,,"148 STATE STREET STE 1100",,"BOSTON","MA","02109",,,,,,,"148 STATE STREET STE 1100",,"BOSTON","MA","02109",,,,,,,"043043576","6175233131","485110","ALTERNATE CONCEPTS, INC.",,"148 STATE STREET STE 1100",,"BOSTON","MA","02109",,,,,,,"043043576","6175233131",,,,"2011-05-03T15:48:46-0500","RICHARD BROWN",,,,,45,43,0,2,45,1,46,43,0,,"2A2E2F2G2J2T3B3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503101851P030247332848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAURICE REISMAN P.C. PROFIT SHARING PLAN","002","1985-05-01","MAURICE REISMAN P.C.",,,"32255 NORTHWESTERN HWY STE 254",,"FARMINGTON HILLS","MI","483341574000",,,,,,,,,,,,,,,,,,"382588956","2488554020","541110","MAURICE REISMAN, PC",,"32255 NORTHWESTERN HIGHWAY","SUITE 254","FARMINGTON HILLS","MI","48334",,,,,,,"382588956","2488554020",,,,"2011-05-03T10:18:34-0500","MAURICE S. REISMAN",,,,,2,2,0,0,2,0,2,2,0,,"2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110502104827P030244783296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PACIFIC CARGO, INC. 401(K) PLAN","001","1987-01-01","PACIFIC CARGO, INC. DBA CAL CARGO",,,"2376 DAVIS AVE.",,"HAYWARD","CA","94546",,,,,,,,,,,,,,,,,,"942934477","5107850951","481000","PACIFIC CARGO, INC. DBA CAL CARGO",,"2376 DAVIS AVE.",,"HAYWARD","CA","94546",,,,,,,"942934477","5107850951",,,,"2011-05-02T10:48:23-0500","MAUREEN FOX",,,,,23,15,0,3,18,0,18,9,0,,"2E2F2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110425091243P040224629984001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"TRANSFORMER ENGINEERING LLC 401(K) PLAN","001","2009-05-04","TRANSFORMER ENGINEERING LLC",,,"2550 BROOKPARK RD",,"CLEVELAND","OH","44134",,,,,,,"2550 BROOKPARK RD",,"CLEVELAND","OH","44134",,,,,,,"263813704","2167415282","335900","TRANSFORMER ENGINEERING LLC",,"2550 BROOKPARK RD",,"CLEVELAND","OH","44134",,,,,,,"263813704","2167415282",,,,"2011-04-25T09:03:21-0500","JUSTIN PATRICK",,,,,80,77,0,4,81,0,81,39,1,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110425133735P040225143504001","2010-01-01","2010-11-23","2",,"0","0","1","1",,,,,,,"TERIDIAN SEMICONDUCTOR CORPORATION 401(K) PLAN","001","2005-09-20","TERIDIAN SEMICONDUCTOR CORPORATION",,,"6440 OAK CANYON","SUITE 100","IRVINE","CA","92618",,,,,,,"6440 OAK CANYON","SUITE 100","IRVINE","CA","92618",,,,,,,"330712261","7145088800","334410","TERIDIAN SEMICONDUCTOR CORPORATION",,"6440 OAK CANYON","SUITE 100","IRVINE","CA","92618",,,,,,,"330712261","7145088800",,,,"2011-04-18T09:53:58-0500","NICOLE BAKER","2011-04-18T12:05:35-0500","CINDY STALEY",,,108,0,0,0,0,0,0,0,0,,"2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110425174203P030014996183001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEE BENEFIT PLAN FOR PLATTE VALLEY MEDICAL CENTER","502","1999-07-01","BRIGHTON COMMUNITY HOSPITAL ASSOCIATION","DBA PLATTE VALLEY MEDICAL CENTER",,"1600 PRAIRIE CENTER PARKWAY",,"BRIGHTON","CO","80601",,,,,,,,,,,,,,,,,,"840482695","3034981600","622000","BRIGHTON COMMUNITY HOSPITAL ASSOCIATION",,"1600 PRAIRIE CENTER PARKWAY",,"BRIGHTON","CO","80601",,,,,,,"840482695","3034981600",,,,"2011-04-25T17:42:00-0500","JACKIE DUNKIN FOR PVMC",,,,,606,723,3,0,726,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110420123850P040014714167001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","0","0",,"COREPOWER YOGA, LLC EMPLOYEE","001","2007-01-01","COREPOWER YOGA LLC EMPLOYEE",,,"3901 W. 32ND AVE",,"DENVER","CO","80212",,,,,,,"3901 W. 32ND AVE",,"DENVER","CO","80212",,,,,,,"810653514","3038639642","713900","COREPOWER YOGA LLC EMPLOYEE",,"3901 W. 32ND AVE",,"DENVER","CO","80212",,,,,,,"810653514","3038639642",,,,"2011-04-20T12:38:30-0500","KERRY PALIN",,,,,30,88,0,1,89,0,89,17,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110421084046P030007663270001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANDOR CAPITAL MANAGEMENT, LLC PROFIT SHARING AND 401(K) SAVINGS PLAN","001","2001-10-01","ANDOR CAPITAL MANAGEMENT, LLC",,,"1 AMERICAN LANE, 3RD FLOOR",,"GREENWICH","CT","06831",,,,,,,,,,,,,,,,,,"061618458","2037427200","523900","ANDOR CAPITAL MANAGEMENT, LLC",,"1 AMERICAN LANE, 3RD FLOOR",,"GREENWICH","CT","06831",,,,,,,"061618458","2037427200",,,,"2011-04-21T08:40:43-0500","STELLA BUONO","2011-04-21T08:40:43-0500","STELLA BUONO",,,7,5,0,0,5,0,5,5,0,,"2A2E2G2J2R3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110502160432P040243244816001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M J METAL EMPLOYEES SAVINGS AND RETIREMENT PLAN","001","1989-10-01","M J METAL, INC.",,,"225 HOWARD AVENUE",,"BRIDGEPORT","CT","06605",,,,,,,,,,,,,,,,,,"061092698","2033343484","332110","M J METAL, INC.",,"225 HOWARD AVENUE",,"BRIDGEPORT","CT","06605",,,,,,,"061092698","2033343484",,,,"2011-05-02T15:50:10-0500","GEORGE DREYER","2011-05-02T15:50:10-0500","GEORGE DREYER",,,11,11,0,0,11,0,11,2,0,,"2A2E2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110421214151P040215900672001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW WEST BROADCASTING CORP. 401(K) PLAN","001","2008-04-30","NEW WEST BROADCASTING CORP.",,,"1145 KILAUEA AVE",,"HILO","HI","96720",,,,,,,"1145 KILAUEA AVE",,"HILO","HI","96720",,,,,,,"990296514","8089355461","515100","NEW WEST BROADCASTING CORP.",,"1145 KILAUEA AVE",,"HILO","HI","96720",,,,,,,"990296514","8089355461",,,,"2011-04-21T21:35:28-0500","CHRISTOPHER LEONARD",,,,,14,14,0,0,14,0,14,7,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110502121001P040242789360001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OFFICIAL PEST PREVENTION, INC. 401(K) PROFIT SHARING PLAN","001","2002-01-01","OFFICIAL PEST PREVENTION, INC.",,,"10139 IRON ROCK WAY #200",,"ELK GROVE","CA","95624",,,,,,,,,,,,,,,,,,"680448832","9166867960","561710","OFFICIAL PEST PREVENTION, INC.",,"10139 IRON ROCK WAY #200",,"ELK GROVE","CA","95624",,,,,,,"680448832","9166867960",,,,"2011-05-02T12:09:50-0500","WARREN HUTSON",,,,,21,18,3,2,23,0,23,23,4,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110502121008P040016765815001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUNSERI ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","001","1999-01-01","SUNSERI ASSOCIATES, INC.",,,"1930 G STREET",,"SACRAMENTO","CA","95811",,,,,,,,,,,,,,,,,,"680294704","9164558200","238900","SUNSERI ASSOCIATES, INC.",,"1930 G STREET",,"SACRAMENTO","CA","95811",,,,,,,"680294704","9164558200",,,,"2011-05-02T12:09:51-0500","WARREN HUTSON",,,,,23,16,1,6,23,0,23,23,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110503145734P040016966215001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GLANDER INTERNATIONAL, INC. PROFIT-SHARING AND SAVINGS AND INVESTMENT PLAN","002","1962-03-01","GLANDER INTERNATIONAL INC.",,,"2401 PGA BOULEVARD","SUITE 236","PALM BEACH GARDENS","FL","33410",,,,,,,"2401 PGA BOULEVARD","SUITE 236","PALM BEACH GARDENS","FL","33410",,,,,,,"131934902","5616255512","541990","GLANDER INTERNATIONAL INC.",,"2401 PGA BOULEVARD","SUITE 236","PALM BEACH GARDENS","FL","33410",,,,,,,"131934902","5616255512",,,,"2011-05-03T14:57:08-0500","ANTHONY CAMMARATA",,,,,8,9,0,0,9,0,9,8,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503145919P030247904752001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CASSLING BUSINESS TRAVEL ACCIDENT PLAN","508","2008-01-01","CASSLING DIAGNOSTIC IMAGING, INC. DBA CASSLING",,,"13808 F STREET",,"OMAHA","NE","68137",,,,,,,,,,,,,,,,,,"470673457","4023345000","423990","CASSLING DIAGNOSTIC IMAGING, INC. DBA CASSLING",,"13808 F STREET",,"OMAHA","NE","68137",,,,,,,"470673457","4023345000",,,,"2011-05-03T14:39:47-0500","STEVEN CHAMBERS",,,,,154,161,0,0,161,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110425113946P030226734512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ABRAMS AND COMPANY PUBLISHERS, INC. 401(K) PLAN","001","1992-10-01","ABRAMS AND COMPANY PUBLISHERS, INC.",,,"16310 BRATTON LA.","SUITE 250","AUSTIN","TX","78728",,,,,,,"16310 BRATTON LA.","SUITE 250","AUSTIN","TX","78728",,,,,,,"133518406","5127352865","511130","ABRAMS AND COMPANY PUBLISHERS, INC.",,"16310 BRATTON LA.","SUITE 250","AUSTIN","TX","78728",,,,,,,"133518406","5127352865",,,,"2011-04-25T11:37:58-0500","MELINDA THOMAS",,,,,23,19,0,3,22,0,22,19,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110421125931P030216769424001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"PESNER KAWAMOTO CONWAY 401(K) PLAN","001","1996-01-01","PESNER KAWAMOTO CONWAY A PROFESSIONAL LAW CORPORAT",,,"TYSONS PARK PLACE I","7926 JONES BRANCH DR., STE 930","MCLEAN","VA","22102",,,,,,,"TYSONS PARK PLACE I","7926 JONES BRANCH DR., STE 930","MCLEAN","VA","22102",,,,,,,"541966076","7035069440","541110","PESNER KAWAMOTO CONWAY A PROFESSIONAL LAW CORPORAT",,"TYSONS PARK PLACE I","7926 JONES BRANCH DR., STE 930","MCLEAN","VA","22102",,,,,,,"541966076","7035069440",,,,"2011-04-21T12:58:31-0500","MARTIN CONWAY",,,,,21,24,0,2,26,0,26,12,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110421095831P040214553840001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EPIZYME, INC. 401(K) PLAN","001","2008-10-01","EPIZYME, INC.",,,"840 MEMORIAL DRIVE",,"CAMBRIDGE","MA","02139",,,,,,,"840 MEMORIAL DRIVE",,"CAMBRIDGE","MA","02139",,,,,,,"261349956","6172295872","541700","EPIZYME, INC.",,"840 MEMORIAL DRIVE",,"CAMBRIDGE","MA","02139",,,,,,,"261349956","6172295872",,,,"2011-04-21T09:58:08-0500","HARRY SHUMAN",,,,,11,32,0,1,33,0,33,19,0,,"2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110504151856P030053336913001","2007-08-01","2008-07-31","2",,"0","0","1","0","0","0","0","0","0",,"REDDING CHRISTIAN SUPPLY CENTER INC 401K PROFIT SHARING PLAN","002","1990-08-01","REDDING CHRISTIAN SUPPLY CENTER INC",,,"2236 SATURN SKYWAY",,"REDDING","CA","96002",,,,,,,"2236 SATURN SKYWAY",,"REDDING","CA","96002",,,,,,,"946210427","5305241004","451211","REDDING CHRISTIAN SUPPLY CENTER INC",,"2236 SATURN SKYWAY",,"REDDING","CA","96002",,,,,,,"946210427","5305241004",,,,"2011-05-04T15:18:40-0500","PENSION FILERS",,,,,0,0,0,0,0,0,0,0,0,,"2E3D2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110505175321P040251284336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARADAT & PABOOJIAN LLP 401(K) PROFIT SHARING PLAN","001","1998-02-16","BARADAT & PABOOJIAN LLP",,,"720 W. ALLUVIAL AVENUE",,"FRESNO","CA","93711",,,,,,,"720 W. ALLUVIAL AVENUE",,"FRESNO","CA","93711",,,,,,,"770176809","5594315366","541110","BARADAT & PABOOJIAN LLP",,"720 W. ALLUVIAL AVENUE",,"FRESNO","CA","93711",,,,,,,"770176809","5594315366",,,,"2011-05-05T17:52:13-0500","JASON BELL",,,,,13,9,0,5,14,0,14,13,1,,"2E2J2G2K",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428104635P040232530848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE COACHING K 401(K) & PROFIT SHARING PLAN","001","2009-01-01","CC COACHING & CONSULTING, INC.",,,"5595 S. SYCAMORE STREET",,"LITTLETON","CO","80120",,,,,,,,,,,,,,,,,,"841600176","3039849000","523900","CC COACHING & CONSULTING, INC.",,"5595 S. SYCAMORE STREET",,"LITTLETON","CO","80120",,,,,,,"841600176","3039849000",,,,"2011-04-28T10:46:39-0500","CRAIG S CIARLELLI","2011-04-28T10:46:39-0500","CRAIG S CIARLELLI",,,4,3,0,0,3,0,3,3,0,,"2F2G2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505071156P040250050288001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","0","0","0","0",,"OHIO BRICKLAYERS HEALTH SUPPLEMENTAL PLAN","501","2004-01-01","OHIO BRICKLAYERS HEALTH SUPPLEMENTAL PLAN",,,"205 WEST FOURTH STREET",,"CINCINNATI","OH","45202",,,,,,,"205 WEST FOURTH STREET",,"CINCINNATI","OH","45202",,,,,,,"542142185","5133816886","238100","OHIO BRICKLAYERS HEALTH SUPPLEMENTAL PLAN",,"205 WEST FOURTH STREET",,"CINCINNATI","OH","45202",,,,,,,"542142185","5133816886",,,,"2011-05-04T14:48:05-0500","WILLIAM HECKER",,,,,24,24,0,0,24,,24,,,,,"4A4D4E",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110504093000P030053203153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALLEY YOUTH HOUSE EMPLOYEE BENEFITS PLAN","501","1994-04-01","VALLEY YOUTH HOUSE",,,"827- 829 LINDEN STREET",,"ALLENTOWN","PA","18101",,,,,,,,,,,,,,,,,,"237178820","6108200166","624100","VALLEY YOUTH HOUSE",,"827- 829 LINDEN STREET",,"ALLENTOWN","PA","18101",,,,,,,"237178820","6108200166",,,,"2011-05-04T09:25:58-0500","PETER COLLIER",,,,,177,179,0,0,179,,,,,,,"4A4B4D4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110505124507P040017322535001","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"PREMIER PRIZM SOLUTIONS, LLC","504","2010-01-01","PREMIER PRIZM SOLUTIONS, LLC",,,"10 EAST STOW ROAD, SUITE 100",,"MARLTON","NJ","080533133",,,,,,,,,,,,,,,,,,"260306458","8565965600","561490","PREMIER PRIZM SOLUTIONS, LLC",,"10 EAST STOW ROAD, SUITE 100",,"MARLTON","NJ","080533133",,,,,,,"260306458","8565965600",,,"504","2011-05-05T12:42:04-0500","MR. MICHAEL KENNEDY",,,,,120,164,0,0,164,,,,,,,"4B",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110505125106P040017323351001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ERIC SCHOEPPNER, M.D., P.C. PROFIT SHARING PLAN","004","1998-01-01","ERIC SCHOEPPNER, M.D., P.C.",,,"1723 NORTHAMPTON STREET",,"EASTON","PA","18042",,,,,,,,,,,,,,,,,,"232193771","6102537211","621111","ERIC SCHOEPPNER, M.D., P.C.",,"1723 NORTHAMPTON STREET",,"EASTON","PA","18042",,,,,,,"232193771","6102537211",,,,"2011-05-05T12:51:02-0500","ERIC SCHOEPPNER, M.D.",,,,,8,6,0,2,8,0,8,8,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428093438P030234386112001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"WAUKESHA WHOLESALE FOODS INC HEALTH INSURANCE PLAN","505","1990-09-01","WAUKESHA WHOLESALE FOODS, INC.",,"KEVIN MUSSER","900 GALE STREET",,"WAUKESHA","WI","53186",,,,,,,"900 GALE STREET",,"WAUKESHA","WI","53186",,,,,,,"390898599","2625428841","424400","WAUKESHA WHOLESALE FOODS, INC.","KEVIN MUSSER","900 GALE STREET",,"WAUKESHA","WI","53186",,,,,,,"390898599","2625428841",,,,"2011-04-28T09:31:30-0500","KEVIN MUSSER",,,,,148,126,3,,129,,129,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110427113318P030231988608001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BRENT WORTHAM, DMD, PC DEFINED BENEFIT PLAN","001","2004-01-01","BRENT WORTHAM, DMD, PC",,,"408 SOUTH 28TH STREET, SUITE A",,"PADUCAH","KY","42003",,,,,,,,,,,,,,,,,,"610991525","2704447645","621210","BRENT WORTHAM, DMD, PC",,"408 SOUTH 28TH STREET, SUITE A",,"PADUCAH","KY","42003",,,,,,,"610991525","2704447645",,,,"2011-04-27T11:33:02-0500","BRENT WORTHAM, DMD","2011-04-27T11:33:02-0500","BRENT WORTHAM, DMD",,,4,4,0,0,4,0,4,,0,,"1A",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110427130122P030004243205001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"SILICON MOTION, INC. 401(K) PLAN","001","1996-01-01","SILICON MOTION, INC.",,,"1591 MCCARTHY BLVD.",,"MILPITAS","CA","95035",,,,,,,"1591 MCCARTHY BLVD.",,"MILPITAS","CA","95035",,,,,,,"770414057","4085197209","541519","SILICON MOTION, INC.",,"1591 MCCARTHY BLVD.",,"MILPITAS","CA","95035",,,,,,,"770414057","4085197209",,,,"2011-04-27T12:53:11-0500","JULIA FISCHER",,,,,69,31,0,33,64,0,64,61,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110429103857P030015636391001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"TRIMARAN CAPITAL PARTNERS 401(K) PLAN","001","2005-11-01","TRIMARAN ADVISORS, LLC",,,"1325 AVENUE OF THE AMERICAS","34TH FLOOR","NEW YORK","NY","10019",,,,,,,"1325 AVENUE OF THE AMERICAS","34TH FLOOR","NEW YORK","NY","10019",,,,,,,"522107624","2126163790","523900","TRIMARAN ADVISORS, LLC",,"1325 AVENUE OF THE AMERICAS","34TH FLOOR","NEW YORK","NY","10019",,,,,,,"522107624","2126163790",,,,"2011-04-29T10:28:21-0500","ANDREA KELLETT","2011-04-29T10:34:44-0500","JAY BLOOM",,,42,27,0,12,39,0,39,35,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428125723P030234783008001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHELL AND KAMPETER, INC. DBA DIAMOND FEEDS HEALTH AND WELFARE PLAN","501","2001-01-01","SCHELL AND KAMPETER, INC.","DBA DIAMOND FEEDS",,"P.O. BOX 156",,"META","MO","65058",,,,,,,"4TH AND OLIVE STREET",,"META","MO","65058",,,,,,,"430951994","5732294203","311110","SCHELL AND KAMPETER, INC.",,"P.O. BOX 156",,"META","MO","65058",,,,,,,"430951994","5732294203",,,,"2011-04-28T12:57:12-0500","MARK SCHELL",,,,,380,398,1,0,399,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110419091213P030210957120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADMIRAL REPORTING & VIDEO SERVICES PROFIT SHARING PLAN","001","1997-01-01","VALERIE BERG DBA ADMIRAL REPORTING & VIDEO SERVICES",,,"TWO BAY CLUB DRIVE","SUITE 10 J","BAYSIDE","NY","11360",,,,,,,,,,,,,,,,,,"113240332","7186310707","561490","VALERIE BERG DBA ADMIRAL REPORTING & VIDEO SERVICES",,"TWO BAY CLUB DRIVE","SUITE 10 J","BAYSIDE","NY","11360",,,,,,,"113240332","7186310707",,,,"2011-04-19T09:12:11-0500","VALERIE BERG","2011-04-19T09:12:11-0500","VALERIE BERG",,,2,2,0,0,2,0,2,2,0,,"2A2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505091001P030016633175001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BURBIDGE CONCRETE PUMPING, LLC 401(K) PROFIT SHARING PLAN","001","1993-01-01","BURBIDGE CONCRETE PUMPING, LLC",,,"911 S. RIO GRANDE",,"SALT LAKE CITY","UT","84101",,,,,,,"911 S. RIO GRANDE",,"SALT LAKE CITY","UT","84101",,,,,,,"204816392","8013636800","238290","BURBIDGE CONCRETE PUMPING, LLC",,"911 S. RIO GRANDE",,"SALT LAKE CITY","UT","84101",,,,,,,"204816392","8013636800",,,,"2011-05-05T09:09:29-0500","RICK ADAMS",,,,,54,47,0,3,50,0,50,40,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110505150742P030253234336001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","0","0",,"AMERICAN NURSERYMAN PUBLISHING COMPANYS 401K PROFIT SHARING","002","1986-05-01","AMERICAN NURSERYMAN PUBLISHING",,,"223 WEST JACKSON BLVD","SUITE 500","CHICAGO","IL","60645",,,,,,,,,,,,,,,,,,"360728813","3124277339","511120","AMERICAN NURSERYMAN PUBLISHING",,"223 WEST JACKSON BLVD","SUITE 500","CHICAGO","IL","60645",,,,,,,"360728813","3124277339",,,,"2011-05-05T15:04:26-0500","ALLEN SEIDEL",,,,,13,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428134816P040232869088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE GLASS CENTER, INC. 401K PROFIT SHARING TRUST","001","1996-01-01","THE GLASS CENTER",,,"12226 PANAMA CITY PARKWAY",,"PANAMA CITY BEACH","FL","32407",,,,,,,,,,,,,,,,,,"592877267","8502353340","327210","THE GLASS CENTER",,"12226 PANAMA CITY PARKWAY",,"PANAMA CITY BEACH","FL","32407",,,,,,,"592877267","8502353340",,,,"2011-04-28T13:48:10-0500","DAVID SPENCER","2011-04-28T13:48:10-0500","DAVID SPENCER",,,40,33,0,1,34,0,34,13,0,,"2E2J2G3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110429191934P030238108624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES M TALAMO MD MONEY PURCHASE PLAN","002","1991-01-01","JAMES M TALAMO MD","JAMES M TALAMO MD","JAMES M TALAMO MD","262 LANCEWOOD PLACE",,"GREENSBURG","PA","15601",,,,,,,"262 LANCEWOOD PLACE",,"GREENSBURG","PA","15601",,,,,,,"251435095","7248374843","621111","JAMES M TALAMO MD","JAMES M TALAMO MD","262 LANCEWOOD PLACE",,"GREENSBURG","PA","15601",,,,,,,"251435095","7248374843",,,,"2011-04-29T19:19:09-0500","JAMES TALAMO",,,,,2,2,0,0,2,0,2,2,0,,"2G3B3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110505115042P030252854400001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUNCOAST LUNG CENTER, P.A. PROFIT SHARING PLAN","001","1990-01-01","SUNCOAST LUNG CENTER, P.A.",,,"3920 BEE RIDGE ROAD BLD C SUITE C",,"SARASOTA","FL","342331207",,,,,,,,,,,,,,,,,,"650135672","9419238353","621111","SUNCOAST LUNG CENTER, P.A.",,"3920 BEE RIDGE ROAD BLD C SUITE C",,"SARASOTA","FL","342331207",,,,,,,"650135672","9419238353",,,,"2011-05-05T11:50:38-0500","HOWARD DIENER, MD",,,,,7,3,0,4,7,0,7,7,0,,"2A2E2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428105644P040016076231001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADLER & ADLER PUBLISHERS, INC. RETIREMENT PLAN","001","1990-01-01","ADLER & ADLER PUBLISHERS, INC.",,,"5530 WISCONSIN AVE STE 1460",,"CHEVY CHASE","MD","208154404",,,,,,,,,,,,,,,,,,"521327025","3016544271","511120","ADLER & ADLER PUBLISHERS, INC.",,"5530 WISCONSIN AVE STE 1460",,"CHEVY CHASE","MD","208154404",,,,,,,"521327025","3016544271",,,,"2011-04-28T10:52:37-0500","JAMES ADLER",,,,,2,2,0,0,2,0,2,2,0,,"2E2J2K2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110429100303P030237048624001","2010-01-01","2010-12-20","2",,"0","0","1","1","0","0","0","0","0",,"SMW TRADING COMPANY EMPLOYEES RETIREMENT AND SAVINGS PLAN","001","1993-09-01","SMW TRADING COMPANY INC",,,"141 W JACKSON BLVD","SUITE 380","CHICAGO","IL","60604",,,,,,,"141 W JACKSON BLVD","SUITE 380","CHICAGO","IL","60604",,,,,,,"363175042","3129136100","523140","SMW TRADING COMPANY INC",,"141 W JACKSON BLVD","SUITE 380","CHICAGO","IL","60604",,,,,,,"363175042","3129136100",,,,"2011-04-29T10:02:36-0500","DAVID OULVEY",,,,,99,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110505130335P030016665143001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"RUTLAND COUNTY COMMUNITY SERVICES, GROUP LIFE, ACC IDENTAL DEATH AND DISABILITY PLAN","508","2005-07-01","RUTLAND COUNTY COMMUNITY SERVICES, INC.",,,"78 S MAIN STREET",,"RUTLAND","VT","05701",,,,,,,"78 S MAIN STREET",,"RUTLAND","VT","05701",,,,,,,"030307810","8027754340","621330","RUTLAND COUNTY COMMUNITY SERVICES, INC.",,"78 S MAIN STREET",,"RUTLAND","VT","05701",,,,,,,"030307810","8027754340",,,,"2011-05-05T13:03:30-0500","LAWRENCE BALLOU",,,,,304,302,,,302,,,,,,,"4B4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428091518P030015449175001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BODE DRUG, INC. 401K PROFIT SHARING PLAN AND TRUST","001","1985-01-01","BODE DRUG, INC.",,,"P.O. BOX 110",,"MOUND CITY","IL","629630110",,,,,,,,,,,,,,,,,,"371337191","6187489253","446110","BODE DRUG, INC.",,"P.O. BOX 110",,"MOUND CITY","IL","629630110",,,,,,,"371337191","6187489253",,,,"2011-04-28T09:15:18-0500","CARL BODE",,,,,14,12,1,1,14,0,14,14,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110427113804P030015298263001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"MELBURN KNOX PROFIT SHARING PLAN","002","1990-05-10","MEL KNOX BARREL BROKER",,,"505 29TH AVE.",,"SAN FRANCISCO","CA","941212818",,,,,,,,,,,,,,,,,,"942954649","4157516306","339900","MEL KNOX BARREL BROKER",,"505 29TH AVE.",,"SAN FRANCISCO","CA","941212818",,,,,,,"942954649","4157516306",,,,"2011-04-27T11:38:03-0500","MELBURN KNOX",,,,,4,3,0,1,4,0,4,4,0,,"2E2F2G2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110429172939P030237911392001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GREAT LAKES RADIOLOGISTS, S.C. PROFIT SHARING PLAN","002","1999-01-01","GREAT LAKES RADIOLOGISTS, S.C.",,,"C/O 5525 GREEN BAY RD, STE 200",,"KENOSHA","WI","53144",,,,,,,,,,,,,,,,,,"391936263","2627800512","621111","GREAT LAKES RADIOLOGISTS, S.C.",,"C/O 5525 GREEN BAY RD, STE 200",,"KENOSHA","WI","53144",,,,,,,"391936263","2627800512",,,,"2011-04-29T17:28:50-0500","SARA KAHL",,,,,17,0,0,0,0,0,0,0,0,,"2E2G2F2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110505112323P040017310407001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"TRIMLINE CORPORATION EMPLOYEES' 401(K) PROFIT SHARING PLAN AND TRUST","002","1997-04-01","TRIMLINE CORPORATION",,,"500 INDUSTRIAL DR",,"ELKHART LAKE","WI","53020",,,,,,,"500 INDUSTRIAL DR",,"ELKHART LAKE","WI","53020",,,,,,,"390871191","9208763611","332900","TRIMLINE CORPORATION",,"500 INDUSTRIAL DR",,"ELKHART LAKE","WI","53020",,,,,,,"390871191","9208763611",,,,"2011-05-05T11:23:10-0500","THOMAS BLEND",,,,,22,19,0,1,20,0,20,15,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110505190929P040251417264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRAIG Y. SHIKUMA, M.D., INC. PROFIT SHARING PLAN","002","1991-05-01","CRAIG Y. SHIKUMA, M.D., INC.",,,"82 PUUHONU PLACE, SUITE 207",,"HILO","HI","967202010",,,,,,,,,,,,,,,,,,"990236970","8089355522","621111","CRAIG Y. SHIKUMA, M.D., INC.",,"82 PUUHONU PLACE, SUITE 207",,"HILO","HI","967202010",,,,,,,"990236970","8089355522",,,,"2011-05-05T19:01:12-0500","LINDA T. SHIKUMA","2011-05-05T19:01:12-0500","LINDA T. SHIKUMA",,,6,4,0,1,5,0,5,5,1,,"2A2E3D","4B","1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505191827P030253700720001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","0","0","0","0",,"UNIQUE STAFFING WELFARE BENEFIT PLAN","501","2004-04-01","UNIQUE STAFF LEASING I, LTD","DBA UNIQUEHR",,"4646 CORONA DRIVE, SUITE 100",,"CORPUS CHRISTI","TX","784114320",,,,,,,,,,,,,,,,,,"742954372","3618526392","541990","UNIQUE STAFF LEASING I, LTD",,"4646 CORONA DRIVE, SUITE 100",,"CORPUS CHRISTI","TX","784114320",,,,,,,"742954372","3618526392",,,,"2011-05-05T19:18:19-0500","GARY BRADFORD",,,,,471,486,0,0,486,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110429113929P030237230320001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"POETICA, LTD. 401(K) PROFIT SHARING PLAN","001","2000-01-01","POETICA, LTD.",,,"4492 CAMINO DE LA PLAZA, STE. 366",,"SAN YSIDRO","CA","92173",,,,,,,,,,,,,,,,,,"943383500","5108981659","531210","POETICA, LTD.",,"4492 CAMINO DE LA PLAZA, STE. 366",,"SAN YSIDRO","CA","92173",,,,,,,"943383500","5108981659",,,,"2011-04-29T11:39:08-0500","GRETA GORNNERT","2011-04-29T11:39:08-0500","GRETA GORNNERT",,,2,2,0,0,2,0,2,2,0,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505091836P040017290231001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT M. SACKS, D.D.S., P.A. PROFIT SHARING PLAN & TRUST","001","1977-01-01","ROBERT M. SACKS, D.D.S., P.A.",,,"257 MONMOUTH RD",,"OAKHURST","NJ","077551500",,,,,,,,,,,,,,,,,,"222175460","7325310777","621111","ROBERT M. SACKS, D.D.S., P.A.",,"257 MONMOUTH RD",,"OAKHURST","NJ","077551500",,,,,,,"222175460","7325310777",,,,"2011-05-05T09:16:22-0500","ROBERT M. SACKS",,,,,8,6,0,2,8,0,8,4,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428075809P040050908641001","2010-09-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"AERIAL LTD,DENTAL AND VISION PLAN","505","1999-09-01","AERIAL COMPANY, INC.",,,"P.O. BOX 197",,"MARINETTE","WI","541430197",,,,,,,,,,,,,,,,,,"390122920","7157359323","424990","AERIAL COMPANY, INC.",,"P.O. BOX 197",,"MARINETTE","WI","541430197",,,,,,,"390122920","7157359323",,,,"2011-04-28T07:36:14-0500","ANNETTE IGL",,,,,269,0,0,0,0,0,,,,,,"4D4E4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110429074608P040016222375001","2008-06-01","2009-05-31","2",,"0","1","0","0","0","0","0","0","0",,"GARBER SCALE COMPANY 401K PLAN","001","1995-06-01","GARBER SCALE COMPANY",,,"P.O. BOX 10665",,"LANCASTER","PA","176050665",,,,,,,,,,,,,,,,,,"232251571","7173931708","339900","GARBER SCALE COMPANY",,"P.O. BOX 10665",,"LANCASTER","PA","176050665",,,,,,,"232251571","7173931708",,,,"2011-04-29T07:40:33-0500","DOUGLAS PEIFER",,,,,29,25,,2,27,,27,22,1,,"2E2F2G2J2K",,"0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110428170329P040233262432001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ZL TECHNOLOGIES, INC 401K PLAN","001","2007-01-01","ZL TECHNOLOGIES, INC",,,"2000 CONCOURSE DRIVE",,"SAN JOSE","CA","95131",,,,,,,"2000 CONCOURSE DRIVE",,"SAN JOSE","CA","95131",,,,,,,"770512503","4082408989","541511","ZL TECHNOLOGIES, INC",,"2000 CONCOURSE DRIVE",,"SAN JOSE","CA","95131",,,,,,,"770512503","4082408989",,,,"2011-04-28T17:02:12-0500","CHIMMY SHIOYA",,,,,30,34,0,2,36,0,36,21,0,,"2E2F2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110504141949P040054421089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARLSON FAMILY DENTAL PRACTICE PROFIT SHARING PLAN","001","1984-01-01","CARLSON FAMILY DENTAL PRACTICE",,,"726 EAST GRAND AVENUE",,"ESCONDIDO","CA","92025",,,,,,,,,,,,,,,,,,"330901814","7607472616","621210","CARLSON FAMILY DENTAL PRACTICE",,"726 EAST GRAND AVENUE",,"ESCONDIDO","CA","92025",,,,,,,"330901814","7607472616",,,,"2011-05-04T14:19:43-0500","JEFFREY M. CARLSON, D.D.S.",,,,,9,9,0,0,9,0,9,8,0,,"2E3B",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110504115805P040248004272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CITIZENS STATE BANK OF MARYSVILLE 401K PROFIT SHARING PLAN","001","1994-07-01","CITIZENS STATE BANK OF MARYSVILLE",,,"PO BOX 388","800 BROADWAY","MARYSVILLE","KS","665080388",,,,,,,,,,,,,,,,,,"480169180","7855622186","522190","CITIZENS STATE BANK OF MARYSVILLE",,"PO BOX 388","800 BROADWAY","MARYSVILLE","KS","665080388",,,,,,,"480169180","7855622186",,,,"2011-05-04T11:44:24-0500","LYNN MAYER",,,,,42,39,0,5,44,0,44,44,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110505165950P030016700183001","2010-01-12","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"7K DEVELOPMENT INC. PROFIT SHARING PLAN","001","2010-01-12","7K DEVELOPMENT INC.",,,"4920 MILAM ST",,"DALLAS","TX","75206",,,,,,,,,,,,,,,,,,"271657410","2148248686","722110","7K DEVELOPMENT INC.",,"4920 MILAM ST",,"DALLAS","TX","75206",,,,,,,"271657410","2148248686",,,,"2011-05-05T09:00:05-0500","LARRY KOEHLER",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110505102716P040009373574001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDICAL STAFFING ASSOCIATES, INC. 401K PLAN","001","2005-01-15","MEDICAL STAFFING ASSOCIATES, INC.",,,"505 HADDINGTON LANE",,"PEACHTREE CITY","GA","30269",,,,,,,,,,,,,,,,,,"342031543","7704876098","561300","MEDICAL STAFFING ASSOCIATES, INC.",,"505 HADDINGTON LANE",,"PEACHTREE CITY","GA","30269",,,,,,,"342031543","7704876098",,,,"2011-05-05T10:27:10-0500","LOUIS PIERCE","2011-05-05T10:27:10-0500","LOUIS PIERCE",,,2,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428102106P030015459495001","2010-08-13","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"PINK SKY INC. PROFIT SHARING PLAN","001","2010-08-13","PINK SKY INC.",,,"125 SANDPIPER ST",,"NEWPORT NEWS","VA","23602",,,,,,,,,,,,,,,,,,"800634879","7578741403","541600","PINK SKY INC.",,"125 SANDPIPER ST",,"NEWPORT NEWS","VA","23602",,,,,,,"800634879","7578741403",,,,"2011-04-28T09:32:22-0500","SHELLEY SMITH",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110427115231P040050421249001","2010-01-01","2010-11-22","2",,"0","0","1","1",,,,,,,"GARY GREENWALD, M.D., APC 401(K) PROFIT SHARING PLAN","004","1990-01-01","GARY GREENWALD, M.D., APC",,,"42362 BOB HOPE DR",,"RANCHO MIRAGE","CA","92270",,,,,,,"42362 BOB HOPE DR",,"RANCHO MIRAGE","CA","92270",,,,,,,"330687446","7603419777","621111","GARY GREENWALD, M.D., APC",,"42362 BOB HOPE DR",,"RANCHO MIRAGE","CA","92270",,,,,,,"330687446","7603419777",,,,"2011-04-27T11:51:29-0500","GARY GREENWALD",,,,,29,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110427144331P040015927879001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"VERSACOM, INC. PROFIT SHARING PLAN AND TRUST","001","1986-06-01","VERSACOM, INC.",,,"15300 MERCANTILE DR.",,"DEARBORN","MI","48120",,,,,,,"15300 MERCANTILE DR.",,"DEARBORN","MI","48120",,,,,,,"381967282","3139821400","541800","VERSACOM, INC.",,"15300 MERCANTILE DR.",,"DEARBORN","MI","48120",,,,,,,"381967282","3139821400",,,,"2011-04-27T14:43:00-0500","SUSAN ANDERSON",,,,,9,0,0,0,0,0,0,0,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110427145341P030232376288001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"REFERENCE METALS COMPANY, INC. PENSION PLAN","001","1978-01-01","REFERENCE METALS COMPANY, INC",,,"1000 OLD POND ROAD",,"BRIDGEVILLE","PA","150170217",,,,,,,"1000 OLD POND ROAD",,"BRIDGEVILLE","PA","150170217",,,,,,,"251512409","4122217008","331110","REFERENCE METALS COMPANY, INC",,"1000 OLD POND ROAD",,"BRIDGEVILLE","PA","150170217",,,,,,,"251512409","4122217008",,,,"2011-04-27T14:52:57-0500","LISA JONES",,,,,9,7,0,1,8,0,8,8,0,,"2C2F2G2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110505131727P040017327223004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GROUP STD, LTD & SUPP LIFE PLAN FOR EMPLOYEES OF BANK OF CHOICE","502","2004-01-01","BANK OF CHOICE",,,"3780 W. 10TH STREET",,"GREELEY","CO","80634",,,,,,,,,,,,,,,,,,"841419728","9703925856","522120","BANK OF CHOICE",,"3780 W. 10TH STREET",,"GREELEY","CO","80634",,,,,,,"841419728","9703925856",,,,"2011-05-05T07:37:17-0500","JAMES WAKEMAN",,,,,258,220,0,0,220,,,,,,,"4B4F4H","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110505131853P030016667943001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M. EMAMI, M.A., D.D.S., INC. PROFIT SHARING PLAN","001","2002-01-01","M. EMAMI, M.A., D.D.S., INC.",,,"5632 E 115TH ST",,"TULSA","OK","741378107",,,,,,,,,,,,,,,,,,"731414756","9182982434","621111","M. EMAMI, M.A., D.D.S., INC.",,"5632 E 115TH ST",,"TULSA","OK","741378107",,,,,,,"731414756","9182982434",,,,"2011-05-05T13:16:24-0500","CHERYL EMAMI",,,,,19,11,0,7,18,0,18,18,1,,"2A2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110427074744P040050311857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES W ORPHAN PROFIT SHARING PLAN AND TRUST","001","2001-01-01","WALPOLE CHIROPRACTIC AND DIAGNOSTIC CENTER",,,"296 MAIN ST",,"WALPOLE","MA","020813834",,,,,,,"296 MAIN ST",,"WALPOLE","MA","020813834",,,,,,,"042882143","5086685566","621310","WALPOLE CHIROPRACTIC AND DIAGNOSTIC CENTER",,"296 MAIN ST",,"WALPOLE","MA","020813834",,,,,,,"042882143","5086685566",,,,"2011-04-27T07:33:19-0500","JAMES W ORPHAN",,,,,2,2,0,0,2,0,2,2,0,,"2E3B3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110429102019P040016243111001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BOSTON BIOSTATISTICS RESEARCH FOUNDATION 403(B) PLAN","001","1988-01-01","BOSTON BIOSTATISTICS RESEARCH FOUNDATION",,,"3 CAHILL PARK DR",,"FRAMINGHAM","MA","01702",,,,,,,"3 CAHILL PARK DR",,"FRAMINGHAM","MA","01702",,,,,,,"042999619","5088755404","813000","BOSTON BIOSTATISTICS RESEARCH FOUNDATION",,"3 CAHILL PARK DR",,"FRAMINGHAM","MA","01702",,,,,,,"042999619","5088755404",,,,"2011-04-28T12:08:02-0500","PHILIP LAVIN",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110428181548P030050190865001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"POWERWAVE, LTD 401(K) PLAN","001","1996-01-01","POWERWAVE TECHNOLOGIES, INC.",,,"1801 E. ST. ANDREW PLACE",,"SANTA ANA","CA","92705",,,,,,,"1801 E. ST. ANDREW PLACE",,"SANTA ANA","CA","92705",,,,,,,"752793178","7144661000","335900","POWERWAVE TECHNOLOGIES, INC.",,"1801 E. ST. ANDREW PLACE",,"SANTA ANA","CA","92705",,,,,,,"752793178","7144661000",,,,"2011-04-28T17:23:29-0500","AMY LEE",,,,,23,1,0,15,16,0,16,15,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110429102512P030237090288001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BOSTON BIOSTATISTICS RESEARCH FOUNDATION 403(B) PLAN","001","1988-01-01","BOSTON BIOSTATISTICS RESEARCH FOUNDATION",,,"3 CAHILL PARK DR",,"FRAMINGHAM","MA","01702",,,,,,,"3 CAHILL PARK DR",,"FRAMINGHAM","MA","01702",,,,,,,"042999619","5088755404","813000","BOSTON BIOSTATISTICS RESEARCH FOUNDATION",,"3 CAHILL PARK DR",,"FRAMINGHAM","MA","01702",,,,,,,"042999619","5088755404",,,,"2011-04-28T12:07:23-0500","PHILIP LAVIN",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110504182319P040248724640001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTH VALLEY HOSPITAL GROUP HEALTH AND DISCOUNT PLAN","502","1994-01-01","NORTH VALLEY HOSPITAL",,,"1600 HOSPITAL WAY",,"WHITEFISH","MT","59937",,,,,,,,,,,,,,,,,,"810247969","4068633511","622000","NORTH VALLEY HOSPITAL",,"1600 HOSPITAL WAY",,"WHITEFISH","MT","59937",,,,,,,"810247969","4068633511",,,,"2011-05-04T18:23:15-0500","SUSAN CATT",,,,,167,195,1,0,196,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110505141236P030053875233001","2003-12-01","2004-11-30","2",,"0","0","0","0","0","0","0","1","0",,"BENEFITS PLAN","501","1999-12-01","DULANEY STATION, INC.",,,"1925 GREENSPRING DRIVE SUITE D",,"TIMONIUM","MD","21093",,,,,,,,,,,,,,,,,,"521338141","4104539553","621420","DULANEY STATION, INC.",,"1925 GREENSPRING DRIVE SUITE D",,"TIMONIUM","MD","21093",,,,,,,"521338141","4104539553",,,,"2011-05-05T14:09:20-0500","DIANE MAISTROS","2011-05-05T14:09:20-0500","DIANE MAISTROS",,,119,206,0,0,206,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428150057P030235010656001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"BLYTHEDALE CHILDRENS HOSPITAL SECTION 125 CAFETERIA PLAN","502","2010-01-01","BLYTHEDALE CHILDRENS HOSPITAL",,,"BRADHURST AVENUE",,"VALHALLA","NY","10595",,,,,,,,,,,,,,,,,,"131739922","9145927555","622000","BLYTHEDALE CHILDRENS HOSPITAL",,"BRADHURST AVENUE",,"VALHALLA","NY","10595",,,,,,,"131739922","9145927555",,,,"2011-04-28T15:00:05-0500","JOHN CANNING",,,,,106,102,,,102,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110427172715P040015947095001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HEALTHLINE SYSTEMS, INC. 401(K) SAVINGS PLAN","001","1993-02-01","HEALTHLINE SYSTEMS INC",,,"17085 CAMINO SAN BERNARDO",,"SAN DIEGO","CA","921275709",,,,,,,"17085 CAMINO SAN BERNARDO",,"SAN DIEGO","CA","921275709",,,,,,,"330142140","8586731700","541511","HEALTHLINE SYSTEMS INC",,"17085 CAMINO SAN BERNARDO",,"SAN DIEGO","CA","921275709",,,,,,,"330142140","8586731700",,,,"2011-04-27T17:27:01-0500","TIM LITTRELL",,,,,101,85,0,20,105,0,105,95,6,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110427181717P040230827840001","2010-04-01","2011-02-28","2",,"0","0","1","1","0","0","0","0","0",,"PAUL JABLON INSURANCE SERVICES, INC DEFINED BENEFIT PENSION PLAN","002","2000-04-01","PAUL JABLON INSURANCE SERVICES, INC",,,"10866 WILSHIRE BLVD., 11TH FLOOR",,"LOS ANGELES","CA","900244300",,,,,,,,,,,,,,,,,,"953736195","3104462700","524210","PAUL JABLON INSURANCE SERVICES, INC",,"10866 WILSHIRE BLVD., 11TH FLOOR",,"LOS ANGELES","CA","900244300",,,,,,,"953736195","3104462700",,,,"2011-04-27T18:16:18-0500","PAUL JABLON",,,,,3,0,0,0,0,0,0,0,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110429130810P040016268407001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RIO SUPPLY, INC. DBA SLC METER EAST 401(K) PLAN","001","2003-01-01","RIO SUPPLY, INC. DBA SLC METER EAST",,,"100 ALLIED PARKWAY",,"SICKLERVILLE","NJ","08081",,,,,,,,,,,,,,,,,,"223821200","8567190081","423400","RIO SUPPLY, INC. DBA SLC METER EAST",,"100 ALLIED PARKWAY",,"SICKLERVILLE","NJ","08081",,,,,,,"223821200","8567190081",,,,"2011-04-29T13:06:46-0500","JOSEPH OVERBECK",,,,,12,12,0,0,12,0,12,7,0,,"2A2E2F2H2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110429152833P040003992613001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ILLES FOOD INGREDIENTS 401(K) PLAN","001","1977-07-01","ILLES FOOD INGREDIENTS, LTD.",,,"2200 LUNA RD","SUITE 120","CARROLLTON","TX","75006",,,,,,,"2200 LUNA RD","SUITE 120","CARROLLTON","TX","75006",,,,,,,"751518491","2146891355","311900","ILLES FOOD INGREDIENTS, LTD.",,"2200 LUNA RD","SUITE 120","CARROLLTON","TX","75006",,,,,,,"751518491","2146891355",,,,"2011-04-29T15:05:39-0500","LINDA MULLIN",,,,,81,70,0,14,84,0,84,80,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110426140009P030229660208002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"MONSON, THIRUMULA & ASSOC, M.D.'S, P.A. EMPLOYEES PROFIT-SHARING PLAN","001","1975-06-01","MONSON, THIRUMALA & ASSOC, M.D.'S,",,,"3999 BAYVIEW DRIVE",,"FT.LAUDERDALE","FL","333085837",,,,,,,,,,,,,,,,,,"591594550","9545669821","621111","MONSON, THIRUMALA & ASSOC, M.D.'S,",,"3999 BAYVIEW DRIVE",,"FT.LAUDERDALE","FL","333085837",,,,,,,"591594550","9545669821",,,,"2011-04-26T14:24:54-0500","KENNETH MONSON",,,,,4,0,0,0,0,0,0,,,,"2H2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426172934P040228177472001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GENERAL MONITORS EMPLOYEE BENEFIT PLAN","501","1975-01-01","GENERAL MONITORS, INC.",,,"26776 SIMPATICA CIRCLE",,"LAKE FOREST","CA","926308128",,,,,,,,,,,,,,,,,,"273457471","9495814464","335900","GENERAL MONITORS, INC.",,"26776 SIMPATICA CIRCLE",,"LAKE FOREST","CA","926308128",,,,,,,"273457471","9495814464","GENERAL MONITORS, INC.","952157487","501","2011-04-26T17:28:51-0500","RICHARD LAMISHAW",,,,,127,116,2,0,118,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504100707P030016459799001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"MCFARLAND STATE BANK 401(K) RETIREMENT PLAN","001","1985-01-01","MCFARLAND STATE BANK",,,"5990 HWY 51",,"MCFARLAND","WI","53558",,,,,,,"5990 HWY 51",,"MCFARLAND","WI","53558",,,,,,,"390460450","6088385030","551111","MCFARLAND STATE BANK",,"5990 HWY 51",,"MCFARLAND","WI","53558",,,,,,,"390460450","6088385030",,,,"2011-05-04T10:05:54-0500","STEVE SWANSON",,,,,54,52,0,6,58,0,58,45,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110504103444P030016464535001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MINNESOTA ORAL & MAXILLOFACIAL SURGEONS, PA 401K PROFIT SHARING PLAN","001","1971-01-01","METROPOLITAN ORAL & MAXILLOFACIAL SURGEONS, PA",,,"645 FRANCE AVE SOUTH, #690",,"EDINA","MN","55435",,,,,,,,,,,,,,,,,,"410967051","9529252525","621210","METROPOLITAN ORAL & MAXILLOFACIAL SURGEONS, PA",,"645 FRANCE AVE SOUTH, #690",,"EDINA","MN","55435",,,,,,,"410967051","9529252525",,,,"2011-05-04T10:18:21-0500","WILLIAM HOFFMAN",,,,,24,13,0,0,13,0,13,13,0,,"2E2J2A2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110426190126P030230240112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE AND HEALTH PLAN FOR EMPLOYEES OF ONR, INC.","503","1993-10-15","ORTHOPAEDIC AND NEUROLOGICAL REHABILITATION, INC.",,,"1101 SOUTH CAPITAL OF TEXAS HIGHWAY","BUILDING G","AUSTIN","TX","787466445",,,,,,,,,,,,,,,,,,"770183906","5122759417","621399","ORTHOPAEDIC AND NEUROLOGICAL REHABILITATION, INC.",,"1101 SOUTH CAPITAL OF TEXAS HIGHWAY","BUILDING G","AUSTIN","TX","787466445",,,,,,,"770183906","5122759417",,,,"2011-04-26T19:01:21-0500","JANIS B. JONES",,,,,613,483,11,14,508,,,,,,,"4A4B4D4E4F4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110422141445P030014466791001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXCAVATING ASSOCIATES, INC. 401(K) PLAN","001","2007-01-01","EXCAVATING ASSOCIATES, INC.",,,"P.O.BOX 434",,"ELLERSLIE","MD","21529",,,,,,,,,,,,,,,,,,"521789236","3017770444","238900","EXCAVATING ASSOCIATES, INC.",,"P.O.BOX 434",,"ELLERSLIE","MD","21529",,,,,,,"521789236","3017770444",,,,"2011-04-22T14:14:37-0500","DAVID THOMPSON","2011-04-22T14:14:37-0500","DAVID THOMPSON",,,28,28,0,1,29,0,29,25,0,,"2E2F2G2T2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110426110008P030048813745001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HARRIS CHIROPRACTIC WELLNESS CENTER SAFE HARBOR 401K PLAN","001","2005-08-01","HARRIS CHIROPRACTIC WELLNESS CENTER",,,"709 S FIRST STREET, STE C",,"UNION CITY","TN","38261",,,,,,,,,,,,,,,,,,"043701448","7318853399","621310","HARRIS CHIROPRACTIC WELLNESS CENTER",,"709 S FIRST STREET, STE C",,"UNION CITY","TN","38261",,,,,,,"043701448","7318853399",,,,"2011-04-26T10:59:18-0500","MATTHEW HARRIS",,,,,5,4,0,1,5,0,5,4,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426133756P040227721616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHRISTOPHER E BONACCI DDS MD P 401(K) PROFIT SHARING PLAN & TRUST","002","2002-01-01","CHRISTOPHER E. BONACCI DDS",,,"361 MAPLE AVE WEST STE 200",,"VIENNA","VA","22180",,,,,,,,,,,,,,,,,,"541997574","7032559400","621210","CHRISTOPHER E. BONACCI DDS",,"361 MAPLE AVE WEST STE 200",,"VIENNA","VA","22180",,,,,,,"541997574","7032559400",,,,"2011-04-26T01:37:54-0500","CHRISTOPHER E. BONACCI DDS",,,,,8,5,0,1,6,0,6,4,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426133852P040227724080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAUL D. SULLIVAN, D.M.D. RETIREMENT PLAN","002","1986-01-01","PAUL D. SULLIVAN, D.M.D.",,,"200 WEST CARVER STREET, SUITE 7",,"HUNTINGTON","NY","11743",,,,,,,,,,,,,,,,,,"112497956","6314211953","621210","PAUL D. SULLIVAN, D.M.D.",,"200 WEST CARVER STREET, SUITE 7",,"HUNTINGTON","NY","11743",,,,,,,"112497956","6314211953",,,,"2011-04-26T13:38:51-0500","PAUL SULLIVAN, D.M.D.","2011-04-26T13:38:51-0500","PAUL SULLIVAN, D.M.D.",,,4,4,0,0,4,0,4,4,0,,"2E3D2G3B2A2R2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110426133940P040003850997001","2010-04-01","2010-06-30","2",,"0","1","0","1","0","0","0","0","0",,"GROUP LIFE INSURANCE","506","1976-04-01","MOUNT VERNON NAZARENE UNIVERSITY",,,"800 MARTINSBURG ROAD",,"MOUNT VERNON","OH","43050",,,,,,,"800 MARTINSBURG ROAD",,"MOUNT VERNON","OH","43050",,,,,,,"310725957","7403926868","611000","MOUNT VERNON NAZARENE UNIVERSITY",,"800 MARTINSBURG ROAD",,"MOUNT VERNON","OH","43050",,,,,,,"310725957","7403926868",,,,"2011-04-26T12:14:13-0500","JEFF SPEAR",,,,,368,304,50,,354,,354,,,,,"4B","1",,,,"1",,,,,,,,"0","1","1",,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426213528P030230518784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOLLOWAY CREDIT SOLUTIONS, LLC 401K PLAN","001","2003-01-01","HOLLOWAY CREDIT SOLUTIONS, LLC",,,"1286 CARMICHAEL WAY",,"MONTGOMERY","AL","36106",,,,,,,,,,,,,,,,,,"630332185","3343961200","561450","HOLLOWAY CREDIT SOLUTIONS, LLC",,"1286 CARMICHAEL WAY",,"MONTGOMERY","AL","36106",,,,,,,"630332185","3343961200",,,,"2011-04-26T16:53:18-0500","JEFFREY HOLLOWAY",,,,,75,71,0,3,74,0,74,44,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426122730P030015125367001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CUSTOM SEATS INC 401K PLAN","001","2000-06-27","CUSTOM SEATS INC",,,"350 KENNEDY BLVD",,"PITTSTON","PA","186401733",,,,,,,,,,,,,,,,,,"233033394","5706027408","321210","CUSTOM SEATS INC",,"350 KENNEDY BLVD",,"PITTSTON","PA","186401733",,,,,,,"233033394","5706027408",,,,"2011-04-26T12:11:00-0500","DANA TROTTA",,,,,62,57,0,1,58,0,58,27,0,,"2E2G3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504103823P030250064576001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"DOGWOOD HOLDINGS GROUP INC 401K PLAN","001","2009-04-18","DOGWOOD HOLDINGS GROUP INC",,,"2067 WOODSIDE PARK DRIVE",,"WOODSTOCK","GA","30188",,,,,,,,,,,,,,,,,,"264721176","4042325443","531390","DOGWOOD HOLDINGS GROUP INC",,"2067 WOODSIDE PARK DRIVE",,"WOODSTOCK","GA","30188",,,,,,,"264721176","4042325443",,,,"2011-05-04T10:38:19-0500","PHILLIP KLEISS","2011-05-04T10:38:19-0500","PHILLIP KLEISS",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110430065325P040008893910001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JEFFREY S. WEINER, P.A. ATTORNEYS AT LAW 401(K) PROFIT SHARING PLAN AND TRUST","001","1992-12-21","JEFFREY S. WEINER, P.A. ATTORNEYS AT LAW",,,"9130 SOUTH DADELAND BLVD.","SUITE 1910","MIAMI","FL","331567858",,,,,,,"9130 SOUTH DADELAND BOULEVARD","SUITE 1910","MIAMI","FL","331567858",,,,,,,"650356526","3056709919","541110","JEFFREY S. WEINER, P.A. ATTORNEYS AT LAW",,"9130 SOUTH DADELAND BLVD.","SUITE 1910","MIAMI","FL","331567858",,,,,,,"650356526","3056709919",,,,"2011-04-30T06:53:18-0500","CAMERON KELLY",,,,,8,5,0,2,7,0,7,7,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-30","Filed with authorized/valid electronic signature",, "20110422124726P030007774822001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PILKINGTON COMMERCIAL CO., INC. PROFIT SHARING PLAN","001","1993-10-01","PILKINGTON COMMERCIAL CO., INC.",,,"2975 S. AVENUE B.",,"YUMA","AZ","85364",,,,,,,,,,,,,,,,,,"262061589","9283170345","236200","PILKINGTON COMMERCIAL CO., INC.",,"2975 S. AVENUE B.",,"YUMA","AZ","85364",,,,,,,"262061589","9283170345",,,,"2011-04-22T12:46:30-0500","LEO PILKINGTON",,,,,39,15,0,16,31,0,31,30,2,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",, "20110422145428P040217757472001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FARMERS MUTUAL HAIL INSURANCE COMPANY OF IOWA GROUP LIFE INSURANCE","504","1966-07-18","FARMERS MUTUAL HAIL INSURANCE COMPANY OF IOWA",,,"6785 WESTOWN PARKWAY",,"WEST DES MOINES","IA","50266",,,,,,,"6785 WESTOWN PARKWAY",,"WEST DES MOINES","IA","50266",,,,,,,"420245840","5152829104","524290","FARMERS MUTUAL HAIL INSURANCE COMPANY OF IOWA",,"6785 WESTOWN PARKWAY",,"WEST DES MOINES","IA","50266",,,,,,,"420245840","5152829104",,,,"2011-04-22T14:47:45-0500","STEVE FISCHER",,,,,243,256,,,256,,256,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",, "20110426090358P040015692631002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"KAN INTERNATIONAL CORPORATION EMPLOYEES PROFIT SHARING PLAN","001","1994-01-01","KAN INTERNATIONAL CORPORATION",,,"987 CHAPEL COURT S",,"GLEN ELLYN","IL","60138",,,,,,,,,,,,,,,,,,"363403735","6309161888","423990","KAN INTERNATIONAL CORPORATION",,"987 CHAPEL COURT S",,"GLEN ELLYN","IL","60138",,,,,,,"363403735","6309161888",,,,"2011-04-25T19:46:50-0500","MICHELE KAN",,,,,3,,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426100705P030008123878001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL SET SCREW LIFE AND MEDICAL HEALTH INSURANCE PLAN","501","1970-11-01","NSS INDUSTRIES, INC.",,,"9075 GENERAL DRIVE",,"PLYMOUTH","MI","48170",,,,,,,,,,,,,,,,,,"381941474","7344599500","332900","NSS INDUSTRIES, INC.",,"9075 GENERAL DRIVE",,"PLYMOUTH","MI","48170",,,,,,,"381941474","7344599500",,,,"2011-04-26T10:07:01-0500","JAN KELLY",,,,,101,115,6,0,121,,,,,,,"4A4B4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426101145P040227316032001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ELDRIDGE ELECTRIC COMPANY, INC. 401K PLAN","001","1995-01-01","ELDRIDGE ELECTRIC COMPANY, INC.",,,"1929 HWY FM 1301",,"WHATRON","TX","77488",,,,,,,,,,,,,,,,,,"741961107","9795328150","811110","ELDRIDGE ELECTRIC COMPANY, INC.",,"1929 HWY FM 1301",,"WHARTON","TX","77488",,,,,,,"741961107","9795328150",,,,"2011-04-26T10:08:47-0500","YVETTE DUNN",,,,,10,10,0,0,10,0,10,10,0,,"2E3E2K2J",,"1","0","1","0","1","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426130850P030004187877001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STUART R BERG PC PROFIT SHARING PLAN","001","1992-10-01","STUART R BERG PC",,,"1205 FRANKLIN AVENUE",,"GARDEN CITY","NY","115301629",,,,,,,,,,,,,,,,,,"112932319","5167479491","541110","STUART R BERG PC",,"1205 FRANKLIN AVENUE",,"GARDEN CITY","NY","115301629",,,,,,,"112932319","5167479491",,,,"2011-04-19T07:26:12-0500","STUART BERG",,,,,2,2,,,2,,2,,,,"2E2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504094815P040017103367001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","1","0",,"FONKOZE USA DEFINED CONTRIBUTION RETIREMENT PLAN","001","2008-01-01","FONKOZE USA",,,"1700 KALORAMA ROAD, NW, SUITE 102",,"WASHINGTON","DC","20009",,,,,,,"1700 KALORAMA ROAD, NW, SUITE 102",,"WASHINGTON","DC","20009",,,,,,,"522022113","2026289033","813000","FONKOZE USA",,"1700 KALORAMA ROAD, NW, SUITE 102",,"WASHINGTON","DC","20009",,,,,,,"522022113","2026289033",,,,"2011-05-04T09:09:46-0500","CHARLES GRAVITZ",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110426101933P040008510598001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"ONE SOURCE MANUFACTURERS REPRESENTATIVES, INC. 401K PLAN","001","2002-10-01","ONE SOURCE MANUFACTURERS REPRESENTATIVES, INC.",,,"650 WEST GRAND AVENUE",,"ELMHURST","IL","601261043",,,,,,,,,,,,,,,,,,"760702028","6305163900","541990","ONE SOURCE MANUFACTURERS REPRESENTATIVES, INC.",,"650 WEST GRAND AVENUE",,"ELMHURST","IL","601261043",,,,,,,"760702028","6305163900",,,,"2011-04-26T10:18:05-0500","JACK BLOCK",,,,,4,0,0,0,0,0,0,0,0,,"2E2G2J2K3D2F",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426082817P030229015920001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"CAPITAL PAPER RECYCLING, INC. PROFIT SHARING 401(K) PLAN","001","1999-01-01","CAPITAL PAPER RECYCLING, INC.",,,"200 LIBBEY INDUSTRIAL PARKWAY",,"E. WEYMOUTH","MA","02189",,,,,,,"200 LIBBEY INDUSTRIAL PARKWAY",,"E. WEYMOUTH","MA","02189",,,,,,,"043050813","3394996766","424100","CAPITAL PAPER RECYCLING, INC.",,"200 LIBBEY INDUSTRIAL PARKWAY",,"E. WEYMOUTH","MA","02189",,,,,,,"043050813","3394996766",,,,"2011-04-26T08:21:31-0500","DANIEL BUONAGURIO",,,,,45,40,0,4,44,0,44,25,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504101947P030016461767001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXXUM INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","EXXUM INC",,,"18 W MAIN ST",,"WEST BROOKFIELD","MA","01585",,,,,,,,,,,,,,,,,,"753156254","5088677300","541990","EXXUM INC",,"18 W MAIN ST",,"WEST BROOKFIELD","MA","01585",,,,,,,"753156254","5088677300",,,,"2011-05-04T10:19:45-0500","EXXUM INC",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110426135254P040227753520001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUILDERS FIRSTSOURCE INJURY BENEFIT PLAN","502","2003-06-01","BUILDERS FIRSTSOURCE - DALLAS, LLC",,,"2001 BRYAN STREET","SUITE 1600","DALLAS","TX","75201",,,,,,,,,,,,,,,,,,"752794867","2148803507","444190","BUILDERS FIRSTSOURCE - DALLAS, LLC",,"2001 BRYAN STREET","SUITE 1600","DALLAS","TX","75201",,,,,,,"752794867","2148803507",,,,"2011-04-26T11:21:23-0500","BUTCH MULLANEY","2011-04-26T11:21:23-0500","BUTCH MULLANEY",,,557,534,0,0,534,0,,,,,,"4A4D4E4F4L4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110426135822P040008527446001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ENDODONTIC ASSOCIATES OF GREATER WATERBURY, P.C. PROFIT SHARING PLAN","002","1978-06-01","ENDODONTIC ASSOCIATES OF GREATER WATERBURY, P.C.",,,"276 HIGHLAND AVENUE",,"WATERBURY","CT","06708",,,,,,,,,,,,,,,,,,"060944056","2037571287","621210","ENDODONTIC ASSOCIATES OF GREATER WATERBURY, P.C.",,"276 HIGHLAND AVENUE",,"WATERBURY","CT","06708",,,,,,,"060944056","2037571287",,,,"2011-04-26T02:58:15-0500","MICHAEL H. RUTBERG",,,,,13,9,0,4,13,0,13,13,3,,"2A2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110422113755P030219200464001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"OUTSELL, INC. 401(K) PLAN","001","1994-04-22","OUTSELL, INC.",,,"330 PRIMROSE RD, STE 510",,"BURLINGAME","CA","94010",,,,,,,"330 PRIMROSE RD, STE 510",,"BURLINGAME","CA","94010",,,,,,,"943202528","6503427181","541910","OUTSELL, INC.",,"330 PRIMROSE RD, STE 510",,"BURLINGAME","CA","94010",,,,,,,"943202528","6503427181",,,,"2011-04-22T11:37:28-0500","RUDY LOPEZ",,,,,51,41,0,18,59,0,59,51,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",, "20110426102312P030229233792001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"RATH, YOUNG AND PIGNATELLI, P.C. INCENTIVE SAVINGS PLAN","002","1987-09-18","RATH, YOUNG AND PIGNATELLI, P.C.",,,"ONE CAPITAL PLAZA","2ND FLOOR","CONCORD","NH","03301",,,,,,,"ONE CAPITAL PLAZA","2ND FLOOR","CONCORD","NH","03301",,,,,,,"020410400","6032262600","541110","RATH, YOUNG AND PIGNATELLI, P.C.",,"ONE CAPITAL PLAZA","2ND FLOOR","CONCORD","NH","03301",,,,,,,"020410400","6032262600",,,,"2011-04-26T10:22:48-0500","LAWRENCE WHITE",,,,,54,48,0,7,55,1,56,56,0,,"2E2F2G2J2K2T2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426132058P040015727815001","2008-01-01","2008-12-31","2",,"1","1","0","0","0","0","0","1","0",,"EMERITI RETIREE HEALTH PLAN FOR CLAREMONT MCKENNA COLLEGE","530","2008-01-01","CLAREMONT MCKENNA COLLEGE",,,"500 E. NINTH STREET",,"CLAREMONT","CA","91711",,,,,,,"500 E. NINTH STREET",,"CLAREMONT","CA","91711",,,,,,,"951664101","9096077085","611000","CLAREMONT MCKENNA COLLEGE",,"500 E. NINTH STREET",,"CLAREMONT","CA","91711",,,,,,,"951664101","9096077085",,,,"2011-04-26T13:19:42-0500","ERIN WATKINS",,,,,307,307,2,0,309,0,309,0,0,,,"4A4D","1",,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504073705P030249705504007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PIONEER QUICK LUBE, INC. 401(K) PLAN","001","2006-03-15","PIONEER QUICK LUBE, INC.",,,"1983 E. AIRPORT ROAD",,"MIDLAND","MI","48642",,,,,,,"1983 E. AIRPORT ROAD",,"MIDLAND","MI","48642",,,,,,,"383221682","9898326320","811120","PIONEER QUICK LUBE, INC.",,"1983 E. AIRPORT ROAD",,"MIDLAND","MI","48642",,,,,,,"383221682","9898326320",,,,"2011-02-25T09:11:36-0600","TIMOTHY BELL","2011-02-25T09:11:36-0600","TIMOTHY BELL",,,5,5,,,5,,5,5,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110426132148P030015136407001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GUESS CPA PC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","GUESS CPA PC",,,"4000 EAGLE POINT CORPORATE DR",,"BIRMINGHAM","AL","35242",,,,,,,,,,,,,,,,,,"841691521","2052591905","541211","GUESS CPA PC",,"4000 EAGLE POINT CORPORATE DR",,"BIRMINGHAM","AL","35242",,,,,,,"841691521","2052591905",,,,"2011-04-26T01:21:45-0500","GUESS CPA PC",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2R2T3D3H",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110513114814P040018749879001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"DELPHI ASSET MANAGEMENT 401(K) PLAN","001","2000-04-01","DELPHI ASSET MANAGEMENT",,,"5525 KIETZKE LANE","STE. 200","RENO","NV","89511",,,,,,,"5525 KIETZKE LANE","STE. 200","RENO","NV","89511",,,,,,,"880442771","7756574901","541990","DELPHI ASSET MANAGEMENT",,"5525 KIETZKE LANE","STE. 200","RENO","NV","89511",,,,,,,"880442771","7756574901",,,,"2011-05-13T11:47:40-0500","TAMARA MOYER",,,,,20,18,0,2,20,0,20,20,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110511102659P030009499046001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCGINNIS, LOCHRIDGE & KILGORE GUARDIAN LIFE INSURANCE","501","1987-12-31","MCGINNIS, LOCHRIDGE & KILGORE, LLP",,,"600 CONGRESS AVE, STE 2100",,"AUSTIN","TX","78701",,,,,,,,,,,,,,,,,,"741196349","5124956099","541110","MCGINNIS, LOCHRIDGE & KILGORE, LLP",,"600 CONGRESS AVE, STE 2100",,"AUSTIN","TX","78701",,,,,,,"741196349","5124956099",,,,"2011-05-11T10:26:55-0500","KEITH GARD",,,,,145,118,0,0,118,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513124034P030009704118001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RDM FINANCIAL GROUP, INC. PLAN","002","1998-01-01","RDM FINANCIAL GROUP, INC.",,,"1555 POST ROAD EAST",,"WESTPORT","CT","06880",,,,,,,,,,,,,,,,,,"061314100","2032550222","523900","RDM FINANCIAL GROUP, INC.",,"1555 POST ROAD EAST",,"WESTPORT","CT","06880",,,,,,,"061314100","2032550222",,,,"2011-05-05T09:36:07-0500","RONALD D. WEINER","2011-05-05T09:36:07-0500","RONALD D. WEINER",,,18,17,0,2,19,0,19,19,2,,"2E2H2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513080050P030017980615002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GEORGE I WEINBERGER MDPA PROFIT SHARING PLAN","002","1981-10-01","GEORGE I WEINBERGER MDPA",,,"190 GREENBROOK ROAD",,"NORTH PLAINFIELD","NJ","07060",,,,,,,,,,,,,,,,,,"222371930","9085618070","621111","GEORGE I WEINBERGER MDPA",,"190 GREENBROOK ROAD",,"NORTH PLAINFIELD","NJ","07060",,,,,,,"222371930","9085618070",,,,"2011-05-12T22:58:15-0500","GEORGE I WEINBERGER",,,,,4,4,,,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110509105818P040017995639001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM F. MILLER & ASSOCIATES 401(K) PLAN","001","2000-01-01","WILLIAM F. MILLER & ASSOCIATES",,,"15 MUSIC SQUARE WEST",,"NASHVILLE","TN","37203",,,,,,,,,,,,,,,,,,"621663606","6152984444","336610","WILLIAM F. MILLER & ASSOCIATES",,"15 MUSIC SQUARE WEST",,"NASHVILLE","TN","37203",,,,,,,"621663606","6152984444",,,,"2011-05-09T10:33:18-0500","BARBARA CALDWELL",,,,,20,15,0,5,20,0,20,20,0,,"2E2F2G2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110511120320P030009507126001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DANCOR DEVELOPMENT CO. DEFINED BENEFIT PLAN","001","2006-01-01","DANCOR DEVELOPMENT CO.",,,"16688 N. 109TH WAY",,"SCOTTSDALE","AZ","85255",,,,,,,,,,,,,,,,,,"860591768","6026776025","531390","DANCOR DEVELOPMENT CO.",,"16688 N. 109TH WAY",,"SCOTTSDALE","AZ","85255",,,,,,,"860591768","6026776025",,,,"2011-05-11T13:03:06-0500","SCOTT DANKWORTH",,,,,2,2,0,0,2,0,2,,0,,"1A1I3D",,,"1",,,,"1",,,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511102920P030009499318001","2010-01-01","2010-07-21","2",,"0","0","1","1","0","1","0","0","0",,"THE WORLD ACCESS AND SUBSIDIARIES RETIREMENT SAVINGS PLAN","001","1994-01-01","WORLD ACCESS, INC.",,,"2805 N. PARHAM ROAD",,"RICHMOND","VA","23294",,,,,,,,,,,,,,,,,,"521260309","8046731169","524210","WORLD ACCESS, INC.",,"2805 N. PARHAM ROAD",,"RICHMOND","VA","23294",,,,,,,"521260309","8046731169",,,,"2011-05-11T10:29:16-0500","MICHAEL KUNC",,,,,844,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511102925P030268430224001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MERCY HEALTH SYSTEM GROUP LIFE INSURANCE PLAN","601","1977-01-01","MERCY HEALTH SYSTEM CORP.",,,"P.O. BOX 5003",,"JANESVILLE","WI","535475003",,,,,,,"1000 MINERAL POINT AVENUE",,"JANESVILLE","WI","535475003",,,,,,,"390816848","6087566000","622000","MERCY HEALTH SYSTEM CORP.",,"P.O. BOX 5003",,"JANESVILLE","WI","535475003",,,,,,,"390816848","6087566000",,,,"2011-05-11T10:01:11-0500","KATHY HARRIS",,,,,3066,3019,0,0,3019,0,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110509181843P030263987248001","2010-12-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"TL NEXLEVEL COMPANIES, LLC GROUP INSURANCE PLAN","502","2004-12-01","TL NEXLEVEL COMPANIES, LLC",,,"500 COUNTY ROAD 37 EAST",,"MAPLE LAKE","MN","553582864",,,,,,,,,,,,,,,,,,"201079961","3209632400","221100","TL NEXLEVEL COMPANIES, LLC",,"500 COUNTY ROAD 37 EAST",,"MAPLE LAKE","MN","553582864",,,,,,,"201079961","3209632400",,,,"2011-05-09T18:18:39-0500","MIKE AYDT",,,,,335,368,3,0,371,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110509182055P030056050513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE HAWTHORNE GROUP, INC. 401(K) PLAN","001","2006-05-09","THE HAWTHORNE GROUP, INC.",,,"6764 W WILLOW WAY",,"FLORENCE","AZ","85132",,,,,,,,,,,,,,,,,,"204871020","5208405910","531110","THE HAWTHORNE GROUP, INC.",,"6764 W WILLOW WAY",,"FLORENCE","AZ","85132",,,,,,,"204871020","5208405910",,,,"2011-05-09T18:20:49-0500","KEN HOCHSTETLER","2011-05-09T18:20:49-0500","KEN HOCHSTETLER",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509162550P030056006737001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"THOMAS E. KINSTREY, MD 401(K) PLAN","002","1992-12-20","THOMAS E. KINSTREY, MD",,,"2120 BERT KOUNS INDUSTRIAL LOOP,","SUITE M","SHREVEPORT","LA","71118",,,,,,,"2120 BERT KOUNS INDUSTRIAL LOOP,","SUITE M","SHREVEPORT","LA","71118",,,,,,,"721234733","3186880319","621111","THOMAS E. KINSTREY, MD",,"2120 BERT KOUNS INDUSTRIAL LOOP,","SUITE M","SHREVEPORT","LA","71118",,,,,,,"721234733","3186880319",,,,"2011-05-09T16:25:04-0500","LOUISE KINSTREY",,,,,10,7,0,1,8,0,8,8,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510114119P040008447906001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRIMARK CORPORATION LONG-TERM DISABILITY, HEALTH & LIFE INSURANCE PLAN","501","1990-03-01","TRIMARK CORPORATION",,,"500 BAILEY AVENUE",,"NEW HAMPTON","IA","50659",,,,,,,,,,,,,,,,,,"421327045","6413943188","332900","TRIMARK CORPORATION",,"500 BAILEY AVENUE",,"NEW HAMPTON","IA","50659",,,,,,,"421327045","6413943188",,,,"2011-05-10T11:31:06-0500","PATRICIA KNOWLTON",,,,,178,172,1,0,173,,,,,,,"4A4B4D4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511151254P030269006352001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"TALON THERAPEUTICS, INC. 401K PLAN","001","2004-04-26","TALON THERAPEUTICS, INC.",,,"2207 BRIDGEPOINTE PARKWAY",,"SAN MATEO","CA","94404",,,,,,,"2207 BRIDGEPOINTE PARKWAY",,"SAN MATEO","CA","94404",,,,,,,"320064979","6505886464","541700","TALON THERAPEUTICS, INC.",,"2207 BRIDGEPOINTE PARKWAY",,"SAN MATEO","CA","94404",,,,,,,"320064979","6505886464","HANA BIOSCIENCES, INC.","320064979","001","2011-05-11T15:12:01-0500","JAY CHHAY",,,,,50,26,0,23,49,0,49,49,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513112747P040018746647003","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"FRANK A SHARP DDS MS PC 401K PROFIT SHARING PLAN","001","2010-01-01","FRANK A SHARP DDS MS PC",,,"1524 BRADFORD PARKWAY",,"SPRINGFIELD","MO","65804",,,,,,,,,,,,,,,,,,"431909991","4178883030","621210","FRANK A SHARP DDS MS PC",,"1524 BRADFORD PARKWAY",,"SPRINGFIELD","MO","65804",,,,,,,"431909991","4178883030",,,,"2011-05-09T05:41:19-0500","FRANK A SHARP",,,,,10,12,0,0,12,0,12,12,0,,"2A2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110509084715P030008081570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HILLSBOROUGH CLASSROOM TEACHERS ASSOCIATION INC RETIREMENT PLAN","001","1997-01-01","HILLSBOROUGH CLASSROOM TEACHERS ASSOCIATION, INC.",,,"4505 NORTH ROME AVENUE",,"TAMPA","FL","33603",,,,,,,"4505 NORTH ROME AVENUE",,"TAMPA","FL","33603",,,,,,,"591108715","8132387902","611100","HILLSBOROUGH CLASSROOM TEACHERS ASSOCIATION, INC.",,"4505 NORTH ROME AVENUE",,"TAMPA","FL","33603",,,,,,,"591108715","8132387902",,,,"2011-05-09T08:45:28-0500","LISA DESIANO",,,"2011-05-09T08:46:57-0500","FRANK PEREZ JR",11,11,,,11,,11,,,,"2E2F2G2I2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110509125700P030017312935001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE JACOBSON COMPANIES, INC. PROFIT SHARING PLAN","001","1976-04-01","THE JACOBSON COMPANIES, INC.",,,"1334 S. FIFTH AVENUE",,"YUMA","AZ","85364",,,,,,,,,,,,,,,,,,"860254134","9287821801","236200","THE JACOBSON COMPANIES, INC.",,"1334 S. FIFTH AVENUE",,"YUMA","AZ","85364",,,,,,,"860254134","9287821801",,,,"2011-05-09T12:49:43-0500","MICHAEL J. JARVIS",,,,,78,50,6,12,68,0,68,67,2,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510134739P040009868934001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WONDER ICE CREAM COMPANY PROFIT SHARING PLAN","002","1994-01-01","WONDER ICE CREAM,LLC",,,"6969 CLARK AVE.",,"NEWARK","CA","945605921",,,,,,,,,,,,,,,,,,"942573217","5108189102","311900","WONDER ICE CREAM,LLC",,"6969 CLARK AVE.",,"NEWARK","CA","945605921",,,,,,,"942573217","5108189102",,,,"2011-05-10T13:45:41-0500","WEI GUO YU",,,,,106,84,0,32,116,0,116,116,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511094832P040058301713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FROMHOLD JAFFE & ADAMS, PC SAVINGS PLAN AND TRUST","001","1999-01-01","FROMHOLD JAFFE & ADAMS, PC","FROMHOLD JAFFE & ADAMS, PC","FRED B. FROMHOLD, ESQ.","789 E. LANCASTER AVE. SUITE 220","789 E. LANCASTER AVE. SUITE 220","VILLANOVA","PA","19085",,,,,,,"789 E. LANCASTER AVE. SUITE 220","789 E. LANCASTER AVE. SUITE 220","VILLANOVA","PA","19085",,,,,,,"232421965","6105279100","541110","FROMHOLD JAFFE & ADAMS, PC","FRED B. FROMHOLD, ESQ.","789 E. LANCASTER AVE. SUITE 220","789 E. LANCASTER AVE. SUITE 220","VILLANOVA","PA","19085",,,,,,,"232421965","6105279100",,,,"2011-05-10T13:07:02-0500","FRED FROMHOLD",,,,,8,7,,1,8,,8,8,0,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511072207P040265475888001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"H.M. CRAGG CO. EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","002","1998-01-01","H.M. CRAGG CO.",,,"7674 WASHINGTON AVENUE SOUTH",,"EDEN PRAIRIE","MN","55344",,,,,,,,,,,,,,,,,,"410948899","9528847775","423990","H.M. CRAGG CO.",,"7674 WASHINGTON AVENUE SOUTH",,"EDEN PRAIRIE","MN","55344",,,,,,,"410948899","9528847775",,,,"2011-05-11T07:21:58-0500","STEPHANIE AAMODT",,,,,51,37,8,8,53,0,53,53,2,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513081341P040018720167001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERTO J. CANTO, MD MONEY PURCHASE PLAN -","001","1990-01-01","ROBERTO J. CANTO, MD",,,"29 CALLE WASHINGTON","SUITE 109","SAN JUAN","PR","00907",,,,,,,"29 CALLE WASHINGTON","SUITE 109","SAN JUAN","PR","00907",,,,,,,"660388535","7872503613","621111","ROBERTO J. CANTO, MD",,"29 CALLE WASHINGTON","SUITE 109","SAN JUAN","PR","00907",,,,,,,"660388535","7872503613","ROBERTO J. CANTO, MD","223124122","001","2011-05-13T07:58:46-0500","ROBERTO CANTO",,,,,3,2,0,0,2,0,2,2,1,,"2C3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110509095148P040004431797001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KLEEBERG SHEET METAL, INC. PROFIT SHARING PLAN","001","1980-01-01","KLEEBERG SHEET METAL, INC.",,,"65 WESTOVER ROAD",,"LUDLOW","MA","01056",,,,,,,,,,,,,,,,,,"042321301","4135891854","331200","KLEEBERG SHEET METAL, INC.",,"65 WESTOVER ROAD",,"LUDLOW","MA","01056",,,,,,,"042321301","4135891854",,,,"2011-05-09T08:58:42-0500","DANIEL KLEEBERG",,,,,19,11,2,1,14,0,14,14,0,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110509140514P040009773574001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OARIONA LOWE & EVANGELOS ROSSOPOULOS DDS, INC. PROFIT SHARING PLAN","001","1991-01-01","OARIONA LOWE & EVANGELOS ROSSOPOULOS DDS, INC.",,,"8135 SOUTH PAINTER AVENUE #202",,"WHITTIER","CA","906023154",,,,,,,,,,,,,,,,,,"954221571","5629074522","621210","OARIONA LOWE & EVANGELOS ROSSOPOULOS DDS, INC.",,"8135 SOUTH PAINTER AVENUE #202",,"WHITTIER","CA","906023154",,,,,,,"954221571","5629074522",,,,"2011-05-09T14:05:12-0500","EVANGELOS ROSSOPOULOS","2011-05-09T14:05:12-0500","EVANGELOS ROSSOPOULOS",,,18,17,0,2,19,0,19,13,0,,"2E2H3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509151427P030055979665001","2007-12-31","2008-12-30","2",,"0","0","0","0","0","0","0","1","0",,"GARY M. GLICKMAN MD PC DEFINED BENEFIT PLAN AND TRUST","003","2002-12-31","GARY M. GLICKMAN",,,"30 PARK AVE",,"NEW YORK","NY","100163801",,,,,,,,,,,,,,,,,,"133542847","2125322500","621111","SAME",,,,,,,,,,,,,,,,,,"2011-05-09T15:13:33-0500","GARY M GLICKMAN MD PC",,,,,5,5,0,0,5,0,5,,0,,"3E1A","4B",,"1",,,,"1",,,"1",,,,,"1","1",,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510161508P030004884693001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CORNEAL ASSOCIATES OF N.J.P.A. EMPLOYEES PROFIT SHARING PLAN","001","1985-01-01","CORNEAL ASSOCIATES OF N.J.P.A.",,,"100 PASSAIC AVE SUITE 200",,"FAIRFIELD","NJ","07004",,,,,,,,,,,,,,,,,,"222651458","9737361313","621111","CORNEAL ASSOCIATES OF N.J.P.A.",,"100 PASSAIC AVE SUITE 200",,"FAIRFIELD","NJ","07004",,,,,,,"222651458","9737361313",,,,"2011-05-10T16:12:22-0500","THEODORE PERL MD",,,,,16,6,0,0,6,0,6,15,3,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510141423P040263674656001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"BUTLER DESIGN GROUP, INC. 401K PROFIT SHARING PLAN","001","1997-01-01","BUTLER DESIGN GROUP, INC.",,,"5555 E VAN BUREN STREET","SUITE 100","PHOENIX","AZ","85008",,,,,,,,,,,,,,,,,,"860811475","6029571800","541310","BUTLER DESIGN GROUP, INC.",,"5555 E VAN BUREN STREET","SUITE 100","PHOENIX","AZ","85008",,,,,,,"860811475","6029571800",,,,"2011-05-10T03:14:16-0500","RICHARD B. BUTLER",,,,,34,12,,15,27,,27,27,2,,"2A2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510124843P040009865654001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LEGAL AID SOCIETY OF NASSAU COUNTY, N.Y., INC. 403(B) PLAN","003","2009-01-01","LEGAL AID SOCIETY OF NASSAU COUNTY, N.Y., INC.",,,"ONE HELEN KELLER WAY","3RD FLOOR","HEMPSTEAD","NY","11550",,,,,,,,,,,,,,,,,,"111666836","5165606400","541190","LEGAL AID SOCIETY OF NASSAU COUNTY, N.Y., INC.",,"ONE HELEN KELLER WAY","3RD FLOOR","HEMPSTEAD","NY","11550",,,,,,,"111666836","5165606400",,,,"2011-05-10T13:48:31-0500","KENTON MOSTON",,,,,46,48,0,0,48,0,48,10,,,"2G2L2M3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510132504P030266074400007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NORTH RANGE BEHAVIORAL HEALTH WELFARE BENEFIT PLAN","501","1988-01-01","NORTH RANGE BEHAVIORAL HEALTH",,,"1300 N 17TH AVE",,"GREELEY","CO","80631",,,,,,,,,,,,,,,,,,"840622660","9703472371","621330","NORTH RANGE BEHAVIORAL HEALTH",,"1300 N 17TH AVE",,"GREELEY","CO","80631",,,,,,,"840622660","9703472371",,,,"2011-05-15T08:53:51-0500","BEVERLY THORNGATE",,,,,157,159,4,,163,,,,,,,"4A4B4D4E4H","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511100009P040265779264001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NATIVE AMERICAN INDUSTRIAL DISTRIBUTORS, INC. 401(K) PLAN","002","2003-01-01","NATIVE AMERICAN INDUSTRIAL DISTRIBUTORS, INC.",,,"9706 PENNSYLVANIA AVENUE",,"UPPER MARLBORO","MD","20772",,,,,,,"9706 PENNSYLVANIA AVENUE",,"UPPER MARLBORO","MD","20772",,,,,,,"522025426","3015997085","541990","NATIVE AMERICAN INDUSTRIAL DISTRIBUTORS, INC.",,"9706 PENNSYLVANIA AVENUE",,"UPPER MARLBORO","MD","20772",,,,,,,"522025426","3015997085",,,,"2011-05-11T09:59:33-0500","FELICITE KASSAR",,,,,77,19,0,47,66,2,68,66,0,,"2A2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110509132505P030009324838001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRUCE C. VAN ARSDALE FUNERAL SERVICES, INC. 401(K) PLAN","001","2007-01-01","BRUCE C. VAN ARSDALE FUNERAL SERVICES, INC.",,,"111 N. GASTON AVENUE",,"SOMERVILLE","NJ","08876",,,,,,,,,,,,,,,,,,"223607374","9087253111","812210","BRUCE C. VAN ARSDALE FUNERAL SERVICES, INC.",,"111 N. GASTON AVENUE",,"SOMERVILLE","NJ","08876",,,,,,,"223607374","9087253111",,,,"2011-05-09T13:25:01-0500","BRUCE C. VAN ARSDALE",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110509163803P040008381090002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ESI INC. OF TENNESSEE 401K PROFIT SHARING PLAN","001","1985-02-01","ESI INC. OF TENNESSEE",,,"1250 ROBERTS BOULEVARD",,"KENNESAW","GA","30144",,,,,,,,,,,,,,,,,,"621026418","7704276200","541330","ESI INC. OF TENNESSEE",,"1250 ROBERTS BOULEVARD",,"KENNESAW","GA","30144",,,,,,,"621026418","7704276200",,,,"2011-05-09T11:03:19-0500","WILLIAM L REEVES",,,,,55,47,0,9,56,0,56,43,0,,"2E2F2G2J2K2T3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510162359P030017519527001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","002","1998-09-01","THORNWELL WAREHOUSE ASSOCIATION",,,"11113 WAREHOUSE ROAD",,"LAKE ARTHUR","LA","70549",,,,,,,,,,,,,,,,,,"720335365","3375872439","115110","THORNWELL WAREHOUSE ASSOCIATION",,"11113 WAREHOUSE ROAD",,"LAKE ARTHUR","LA","70549",,,,,,,"720335365","3375872439",,,,"2011-05-10T16:23:55-0500","RONALD GUIDRY",,,,,16,24,0,3,27,0,27,22,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510083456P040018156999001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MOEN, INC. CAFETERIA PLAN","564","1992-01-01","MOEN, INC.",,,"25300 AL MOEN DRIVE",,"NORTH OLMSTEAD","OH","44070",,,,,,,,,,,,,,,,,,"360548230","4409622345","332510","MOEN, INC.",,"25300 AL MOEN DRIVE",,"NORTH OLMSTEAD","OH","44070",,,,,,,"360548230","4409622345",,,,"2011-05-10T08:34:30-0500","ROBYN HILL",,,,,576,588,0,0,588,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511143512P040018400167001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOBBY TAYLOR OIL CO., INC. PROFIT SHARING PLAN","001","2005-01-01","BOBBY TAYLOR OIL CO., INC.",,,"4501 RAMSEY STREET",,"FAYETTEVILLE","NC","28311",,,,,,,,,,,,,,,,,,"560931766","9104883760","424700","BOBBY TAYLOR OIL CO., INC.",,"4501 RAMSEY STREET",,"FAYETTEVILLE","NC","28311",,,,,,,"560931766","9104883760",,,,"2011-05-11T14:35:09-0500","NELDA M. OGILVIE","2011-05-11T14:35:09-0500","NELDA M. OGILVIE",,,51,41,0,7,48,0,48,48,3,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513164933P040004623269001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AHIP'S LIFE & AD&D PLAN","503","1997-01-01","AMERICA'S HEALTH INSURANCE PLANS",,,"601 PENNSYLVANIA AVENUE, SOUTH BLDG","SUITE 500","WASHINGTON","DC","20004",,,,,,,,,,,,,,,,,,"362087641","2027783208","524290","AMERICA'S HEALTH INSURANCE PLANS",,"601 PENNSYLVANIA AVENUE, SOUTH BLDG","SUITE 500","WASHINGTON","DC","20004",,,,,,,"362087641","2027783208",,,,"2011-05-13T16:49:27-0500","DEBORAH MANNING",,,,,208,160,29,0,189,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110510093434P030265621616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ST JOHNS CARDIOVASCULAR ASSOC 401K PROFIT SHARING PLAN","001","2003-01-01","ST JOHNS CARDIOVASCULAR ASSOC",,,"5 SIR RYAN DR",,"CHESTERFIELD","MO","63017",,,,,,,,,,,,,,,,,,"460496925","6362072233","621111","ST JOHNS CARDIOVASCULAR ASSOC",,"5 SIR RYAN DR",,"CHESTERFIELD","MO","63017",,,,,,,"460496925","6362072233",,,,"2011-05-10T08:48:49-0500","BRENDA WATERHOUSE",,,,,8,10,0,0,10,0,10,8,0,,"2E2K2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511154757P030017688535001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEE GAGLIONE, D.D.S., P.C. EMPLOYEE SAVINGS PLAN & TRUST","001","2001-03-01","LEE GAGLIONE, D.D.S., P.C.",,,"510 PATTERSON ROAD",,"GRAND JUNCTION","CO","81501",,,,,,,,,,,,,,,,,,"841512870","9702426753","621210","LEE GAGLIONE, D.D.S., P.C.",,"510 PATTERSON ROAD",,"GRAND JUNCTION","CO","81501",,,,,,,"841512870","9702426753",,,,"2011-05-11T15:40:48-0500","LEE GAGLIONE",,,,,8,5,0,0,5,0,5,3,0,,"2E2J2K2G2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513154022P040018784231001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEIBENGUTH, BOOS & ASSOCIATES, PC","001","1986-04-01","LEIBENGUTH,BOOS&ASSOCIATES,PC",,,"3220 RACQUET CLUB DRIVE",,"TRAVERSE CITY","MI","496844708",,,,,,,,,,,,,,,,,,"382503819","2319470777","541110","LEIBENGUTH, BOOS & ASSOCIATES, PC",,"3220 RACQUET CLUB DRIVE",,"TRAVERSE CITY","MI","496844708",,,,,,,"382503819","2319470777",,,,"2011-05-13T15:24:14-0500","JAMES M. LEIBENGUTH",,,,,3,3,0,0,3,0,3,3,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110510122149P030265946848001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"STEWART PERRY COMPANY INC 401K RETIREMENT PLAN","001","1992-01-01","STEWART PERRY COMPANY INC",,,"4855 OVERTON RD",,"BIRMINGHAM","AL","35210",,,,,,,,,,,,,,,,,,"630882840","2054146000","236200","STEWART PERRY COMPANY INC",,"4855 OVERTON RD",,"BIRMINGHAM","AL","35210",,,,,,,"630882840","2054146000",,,,"2011-05-10T12:20:55-0500","DEL ALLEN",,,,,44,35,0,4,39,0,39,26,0,,"2E2F2G2J2K2T3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110509133119P030017318103004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DAVID S ESTRADA PROFIT SHARING PLAN","001","1986-11-21","DAVID S ESTRADA",,,"4 KENDALL LANE",,"SCOTTS VALLEY","CA","95066",,,,,,,,,,,,,,,,,,"770205102","4083955111","621210","DAVID S ESTRADA",,"4 KENDALL LANE",,"SCOTTS VALLEY","CA","95066",,,,,,,"770205102","4083955111",,,,"2011-05-09T13:26:12-0500","DAVID ESTRADA",,,,,2,2,,,2,,2,,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110509113557P030263165792002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FORT SMITH REGIONAL DIALYSIS 401(K) PROFIT SHARING PLAN","001","2004-01-01","FORT SMITH REGIONAL DIALYSIS CENTER, LLC",,,"P.O. BOX 2107",,"FORT SMITH","AR","72902",,,,,,,"1500 DODSON",,"FORT SMITH","AR","72901",,,,,,,"710804127",,"621492","FORT SMITH REGIONAL DIALYSIS CENTER, LLC",,"P.O. BOX 2107",,"FORT SMITH","AR","72902",,,,,,,"710804127",,,,,"2011-05-09T05:45:24-0500","LAURA PALMER",,,,,61,61,,2,63,,63,45,2,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510143018P040004484757002","2010-02-01","2011-01-31","2",,,,,,,,,,,,"CASEY COMMUNICATIONS INC PROFIT SHARING PLAN","001","1985-02-01","CASEY COMMUNICATIONS, INC",,,"8301 MARYLAND SUITE 350",,"CLAYTON","MO","63105",,,,,,,,,,,,,,,,,,"431286819","3147212828","541800","CASEY COMMUNICATIONS INC",,"8301 MARYLAND SUITE 350",,"CLAYTON","MO","63105",,,,,,,"431286819","3147212828",,,,"2011-05-09T14:22:26-0500","KENNETH ENTRINGER",,,,,7,7,,,7,,7,7,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511083036P030009490214001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SENTRY EQUIPMENT ERECTORS, INC. MEDICAL & DENTAL PLAN","501","1999-01-01","SENTRY EQUIPMENT ERECTORS, INC.",,,"13150 E LYNCHBURG SALEM TURNPIKE",,"FOREST","VA","24551",,,,,,,,,,,,,,,,,,"541150258","4345250769","332300","SENTRY EQUIPMENT ERECTORS, INC.",,"13150 E LYNCHBURG SALEM TURNPIKE",,"FOREST","VA","24551",,,,,,,"541150258","4345250769",,,,"2011-05-11T08:30:32-0500","CAROLE VINOSKEY",,,,,204,195,2,0,197,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"1","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513170227P030274514944001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ANTHONY J. BADAME MD 401(K) PLAN","001","2008-10-01","ANTHONY J. BADAME, MD",,,"2025 FOREST AVENUE","SUITE 9","SAN JOSE","CA","95128",,,,,,,"2025 FOREST AVENUE","SUITE 9","SAN JOSE","CA","95128",,,,,,,"770280491","4082974200","621111","ANTHONY J. BADAME, MD",,"2025 FOREST AVENUE","SUITE 9","SAN JOSE","CA","95128",,,,,,,"770280491","4082974200",,,,"2011-05-13T16:49:52-0500","MELISSA BADAME","2011-05-13T16:57:51-0500","ANTHONY BADAME",,,9,7,0,1,8,0,8,8,0,,"2A2E2F2G2J2K2T3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509165115P030263817952001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHWEST INSTITUTE OF PLASTIC & RECONSTRUCTIVE SUPERCOMP","001","2004-01-01","SOUTHWEST INSTITUTE OF PLASTIC & RECONSTRUCTIVE",,,"2800 N TENAYA WAY S-201",,"LAS VEGAS","NV","89128",,,,,,,,,,,,,,,,,,"880342111","7022424616","621111","SOUTHWEST INSTITUTE OF PLASTIC & RECONSTRUCTIVE",,"2800 N TENAYA WAY S-201",,"LAS VEGAS","NV","89128",,,,,,,"880342111","7022424616",,,,"2011-05-09T16:51:12-0500","WILLIAM RIFLEY MD","2011-05-09T16:51:12-0500","WILLIAM RIFLEY MD",,,5,4,0,1,5,0,5,5,0,,"2A2E2F2G2J2R3F",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110510154431P040263843024001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DYNATRON ELECTRIC CO., INC. 401(K) PLAN","001","1996-06-10","DYNATRON ELECTRIC CO., INC.",,,"1492 OREGON AVE",,"LONG BEACH","CA","908131439",,,,,,,"1492 OREGON AVE",,"LONG BEACH","CA","908131439",,,,,,,"952828395","5624320925","423100","DYNATRON ELECTRIC CO., INC.",,"1492 OREGON AVE",,"LONG BEACH","CA","908131439",,,,,,,"952828395","5624320925",,,,"2011-05-10T15:43:37-0500","CAROLYN OHALLORAN",,,,,8,5,0,3,8,0,8,8,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110513095236P030017997271001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GIFFORD FONG ASSOCIATES 401(K) PLAN","002","1993-01-01","GIFFORD FONG ASSOCIATES",,,"3658 MT DIABLO BLVD STE 200",,"LAFAYETTE","CA","945493751",,,,,,,"3658 MT DIABLO BLVD STE 200",,"LAFAYETTE","CA","945493751",,,,,,,"953305625","9252997800","523900","GIFFORD FONG ASSOCIATES",,"3658 MT DIABLO BLVD STE 200",,"LAFAYETTE","CA","945493751",,,,,,,"953305625","9252997800",,,,"2011-05-13T09:45:17-0500","CLIFFORD FONG",,,,,18,17,0,7,24,0,24,22,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110510103504P040263233184002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HILCO INC PROFIT SHARING PLAN","001","2000-01-01","HILCO, INC",,,"PO BOX 1149",,"HERNDON","VA","20172",,,,,,,,,,,,,,,,,,"540886835","7034376500","237990","HILCO INC",,"PO BOX 1149",,"HERNDON","VA","20172",,,,,,,"540886835","7034376500",,,,"2011-05-06T09:46:26-0500","ROGER R HILL",,,,,15,12,,2,14,1,15,15,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511183303P030269398688001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KASKEY STUDIO INC 401K PROFIT SHARING PLAN","002","2003-01-01","KASKEY STUDIO, INC",,,"3804 38TH STREET",,"BRENTWOOD","MD","20722",,,,,,,,,,,,,,,,,,"521907756","3017795379","711510","KASKEY STUDIO INC",,"3804 38TH STREET",,"BRENTWOOD","MD","20722",,,,,,,"521907756","3017795379",,,,"2011-05-11T11:18:54-0500","RAYMOND J KASKEY",,,,,1,1,,,1,,1,1,,,"2R2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513130257P040010165990001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DAILY RACING FORM, INC.","501","2002-01-01","DAILY RACING FORM, INC.",,,"708 THIRD AVENUE, 12TH FLOOR",,"NEW YORK","NY","10017",,,,,,,"708 THIRD AVENUE, 12TH FLOOR",,"NEW YORK","NY","10017",,,,,,,"133616342","2123667762","511120","DAILY RACING FORM, INC.",,"708 THIRD AVENUE, 12TH FLOOR",,"NEW YORK","NY","10017",,,,,,,"133616342","2123667762",,,,"2011-05-13T12:53:07-0500","DIANE DILELLA",,,,,181,144,,,144,,144,,,,,"4A4B4C4D4E4F4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110516102810P030281410400001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM B. MILLER, DMD, PC 401(K) PROFIT SHARING PLAN","001","2009-01-01","WILLIAM B. MILLER, DMD, PC",,,"104 OLD MILL ROAD",,"LAGRANGE","GA","30241",,,,,,,"104 OLD MILL ROAD",,"LAGRANGE","GA","30241",,,,,,,"203590361","7068840049","621210","WILLIAM B. MILLER, DMD, PC",,"104 OLD MILL ROAD",,"LAGRANGE","GA","30241",,,,,,,"203590361","7068840049",,,,"2011-05-16T10:28:05-0500","WILLIAM B. MILLER","2011-05-16T10:28:05-0500","WILLIAM B. MILLER",,,11,10,0,4,14,0,14,14,2,,"2A2E2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516115350P040278869216001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"WILMINGTON TRUST RETIREMENT AND INSTITUTIONAL SERVICES COMPANY CIT CALLAN GLIDEPATH 2055 FUND","160",,"WILMINGTON TRUST RETIREMENT AND INSTITUTIONAL SERVICES COMPANY",,,"P.O. BOX 52129",,"PHOENIX","AZ","850722129",,,,,,,,,,,,,,,,,,"264835327","6029558373",,"WILMINGTON TRUST RETIREMENT AND INSTITUTIONAL SERVICES COMPANY",,"P.O. BOX 52129",,"PHOENIX","AZ","850722129",,,,,,,"264835327","6029558373",,,,,,,,"2011-05-16T11:07:33-0500","DOUGLAS GROCHOWSKI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-05-16",,"Filed with authorized/valid electronic signature", "20110509123119P040018008231001","2010-02-01","2011-01-31","2",,,,,,,,,,,,"EXPERT METHODS INC PROFIT SHARING PLAN","001","2000-05-12","EXPERT METHODS, INC",,,"9040 SPICEWOOD RUN",,"BEL ALTON","MD","20611",,,,,,,,,,,,,,,,,,"522234586","3018066116","541511","EXPERT METHODS INC",,"9040 SPICEWOOD RUN",,"BEL ALTON","MD","20611",,,,,,,"522234586","3018066116",,,,"2011-05-07T07:46:11-0500","DARNELL J KING",,,,,4,4,,,4,,4,4,,,"3D2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510112229P040009859558001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"VIP MP PLAN","001","1994-01-01","ROGER MAHER",,,"23 83RD STREET",,"BROOKLYN","NY","11209",,,,,,,"23 83RD STREET",,"BROOKLYN","NY","11209",,,,,,,"112878641","7188336266","541990","ROGER MAHER",,"23 83RD STREET",,"BROOKLYN","NY","11209",,,,,,,"112878641","7188336266",,,,"2011-05-10T11:22:07-0500","ROGER MAHER",,,,,1,1,,,1,,1,,,,"2E",,"1",,,"0","1",,,"0","0",,,"0","1",,,"0",,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510123404P040263465344002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROBERT P WEATHERTON SELF EMPLOYED RETIREMENT ACCOU","001","1995-10-30","ROBERT P WEATHERTON",,,"458 POTOMAC WAY",,"CLAREMONT","CA","91711",,,,,,,"458 POTOMAC WAY",,"CLAREMONT","CA","91711",,,,,,,"954056842","9096250804","444190","ROBERT P WEATHERTON",,"458 POTOMAC WAY",,"CLAREMONT","CA","91711",,,,,,,"954056842","9096250804",,,,"2011-05-10T04:31:44-0500","ROBERT P WEATHERTON","2011-05-10T04:31:44-0500","ROBERT P WEATHERTON",,,2,2,,,2,,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110510130106P040263522688001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BENCHMADE KNIFE'S HEALTH & WELFARE BENEFIT PLAN","501","2004-10-01","BENCHMADE KNIFE COMPANY, INC.",,,"300 S. BEAVERCREEK ROAD",,"OREGON CITY","OR","97045",,,,,,,"300 S. BEAVERCREEK ROAD",,"OREGON CITY","OR","97045",,,,,,,"954136880","5034450538","332210","RON BRITT",,"300 S. BEAVERCREEK ROAD",,"OREGON CITY","OR","97045",,,,,,,"954136880","5036556004",,,,"2011-05-10T13:00:52-0500","ADAM FULLER",,,,,121,171,4,,175,,175,,,,,"4A4D4H4B4Q","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510130606P040263533760001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"TECNARA TOOLING SYSTEMS, INC. 401(K) PROFIT SHARING PLAN","001","1982-10-01","TECNARA TOOLING SYSTEMS, INC.",,,"12535 MCCANN DRIVE",,"SANTA FE SPRINGS","CA","90670",,,,,,,"12535 MCCANN DRIVE",,"SANTA FE SPRINGS","CA","90670",,,,,,,"953530033","5629412000","423800","TECNARA TOOLING SYSTEMS, INC.",,"12535 MCCANN DRIVE",,"SANTA FE SPRINGS","CA","90670",,,,,,,"953530033","5629412000",,,,"2011-05-10T13:05:27-0500","JEAN ANAZAWA",,,,,17,11,0,7,18,0,18,17,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510191845P030056643601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QUEEN CITY BARREL COMPANY 401(K) PLAN","003","1992-05-01","QUEEN CITY BARREL COMPANY",,"EDWARD PAUL","820 STATE STREET",,"CINCINNATI","OH","45204",,,,,,,"820 STATE STREET",,"CINCINNATI","OH","45204",,,,,,,"310519644","5139218811","811310","QUEEN CITY BARREL COMPANY","EDWARD PAUL","820 STATE STREET",,"CINCINNATI","OH","45204",,,,,,,"310519644","5139218811",,,,"2011-05-10T18:31:53-0500","EDWARD PAUL",,,,,8,0,3,,3,0,3,5,0,,"2E2F2G2J2K3E3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510151348P030266307248001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"RITE TRACK EQUIPMENT SERVICES, INC. PROFIT SHARING PLAN","001","1995-01-01","RITE TRACK EQUIPMENT SERVICES, INC.",,,"8655 RITE TRACK WAY",,"WEST CHESTER","OH","45069",,,,,,,"8655 RITE TRACK WAY",,"WEST CHESTER","OH","45069",,,,,,,"311389610","5138817820","334110","RITE TRACK EQUIPMENT SERVICES, INC.",,"8655 RITE TRACK WAY",,"WEST CHESTER","OH","45069",,,,,,,"311389610","5138817820",,,,"2011-05-10T15:13:27-0500","TIMOTHY HAYDEN",,,,,98,58,0,43,101,0,101,88,2,,"2A2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511084825P030009491494001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FREEDMAN & SPOONT, P.A. 401K PROFIT SHARING PLAN","002","1990-01-01","FREEDMAN & SPOONT, P.A.",,,"21301 POWERLINE RD SUITE 208",,"BOCA RATON","FL","33433",,,,,,,"21301 POWERLINE RD SUITE 208",,"BOCA RATON","FL","33433",,,,,,,"592459372","5614828000","621210","FREEDMAN & SPOONT, P.A.",,"21301 POWERLINE RD SUITE 208",,"BOCA RATON","FL","33433",,,,,,,"592459372","5614828000",,,,"2011-05-10T21:53:00-0500","ROBERT SPOONT",,,,,27,21,0,3,24,0,24,21,0,,"2A2E2H2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511085237P040265648544005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"H P STANLEY DMD MONEY PURCHASE PENSION PLAN","001","1990-01-01","H P STANLEY DMD",,"COOPER HILL & LECROIX CPAS","P O BOX 849",,"DECATUR","AL","35602",,,,,,,"708 SECOND AVENUE SE",,"DECATUR","AL","356020849",,,,,,,"630860650","2563551204","621210","H P STANLEY DMD","COOPER HILL & LECROIX CPAS","P O BOX 849",,"DECATUR","AL","35602",,,,,,,"630860650","2563551204",,,,"2011-04-29T03:48:25-0500","H P STANLEY DMD",,,,,6,6,,,6,,6,6,,,"2C3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511110733P030017649351001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HYUNG GI KIM, MD, PROFIT SHARING PLAN","001","1982-01-01","HYUNG GI KIM","HYUNG GI KIM, MD",,"34 LAKE DRIVE",,"NORTH BRUNSWICK","NJ","08902",,,,,,,"34 LAKE DRIVE",,"NORTH BRUNSWICK","NJ","08902",,,,,,,"222354454","7322578777","621111","HYUNG GI KIM",,"34 LAKE DRIVE",,"NORTH BRUNSWICK","NJ","08902",,,,,,,"222354454","7322578777",,,,"2011-05-11T11:06:56-0500","HYUNG KIM",,,,,1,1,0,0,1,0,1,1,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511093700P040018353367001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"SMITH & DELANEY DENTISTRY, P.C. PROFIT SHARING PLAN","002","1978-11-01","SMITH & DELANEY DENTISTRY, P.C.",,,"14 BRACE ROAD",,"WEST HARTFORD","CT","06107",,,,,,,,,,,,,,,,,,"060991855","8605217129","621210","SMITH & DELANEY DENTISTRY, P.C.",,"14 BRACE ROAD",,"WEST HARTFORD","CT","06107",,,,,,,"060991855","8605217129",,,,"2011-05-11T10:36:51-0500","PETER DELANEY",,,,,9,9,0,0,9,0,9,9,0,,"2A2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513074300P030273397392002","2010-01-01","2010-12-31","3",,,,,,,,,,,,"GRAHAM INVESTMENT COMPANY PENSION PLAN","001","1970-05-01","GRAHAM INVESTMENT COMPANY",,,"P.O. BOX 31873",,"CHARLOTTE","NC","28231",,,,,,,,,,,,,,,,,,"566026232","7043768438","523900","GRAHAM INVESTMENT COMPANY",,"P.O. BOX 31873",,"CHARLOTTE","NC","28231",,,,,,,"566026232","7043768438",,,,"2011-05-13T03:05:27-0500","FRANK ROSEN","2011-05-13T03:05:27-0500","FRANK ROSEN",,,11,7,1,,8,1,9,9,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513181450P040059653281001","2002-01-01","2002-12-31","3",,"0","0","0","0","0","0","0","1","0",,"LAS ISLAS FAMILY MEDICAL GROUP INC 401(K) PROFIT SHARING PLAN","001","1996-04-01","LAS ISLAS FAMILY MEDICAL GROUP, INC.",,,"325 W. CHANNEL ISLANDS BLVD.",,"OXNARD","CA","93033",,,,,,,,,,,,,,,,,,"770285222","8053858662","621111","LAS ISLAS FAMILY MEDICAL GROUP, INC.",,"325 W. CHANEL ISLANDS BLVD.",,"OXNARD","CA","93033",,,,,,,"770285222","8053858662",,,,"2011-05-13T18:13:27-0500","MIGUEL CERVANTES MD",,,,,299,256,0,60,316,0,316,151,0,,"2E2G2J3E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110509142659P030055961313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AERO-METRIC, INC. LTD PLAN","502","2008-01-01","AERO-METRIC, INC.",,,"402 TECHNOLOGY PARKWAY",,"SHEBOYGAN","WI","53083",,,,,,,"402 TECHNOLOGY PARKWAY",,"SHEBOYGAN","WI","53083",,,,,,,"391133181","9204573631","541370","AERO-METRIC, INC.",,"402 TECHNOLOGY PARKWAY",,"SHEBOYGAN","WI","53083",,,,,,,"391133181","9204573631",,,,"2011-05-09T14:26:38-0500","LINDA OPITZ",,,,,207,218,0,0,218,0,218,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510090332P040263053664001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALLIED GEOPHYSICS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","ALLIED GEOPHYSICS INC",,,"27861 MAN-O-WAR TRAIL",,"EVERGREEN","CO","80439",,,,,,,,,,,,,,,,,,"841497647","3036798074","541600","ALLIED GEOPHYSICS INC",,"27861 MAN-O-WAR TRAIL",,"EVERGREEN","CO","80439",,,,,,,"841497647","3036798074",,,,"2011-05-10T09:03:30-0500","ALLIED GEOPHYSICS INC",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510171105P040263991776001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST CABLE LINE, INC. 401K PROFIT SHARING PLAN","001","1995-01-01","FIRST CABLE LINE, INC.",,,"11892 GOLDRING ROAD",,"ARCADIA","CA","910065879",,,,,,,,,,,,,,,,,,"954639049","6267753000","423800","FIRST CABLE LINE, INC.",,"11892 GOLDRING ROAD",,"ARCADIA","CA","910065879",,,,,,,"954639049","6267753000",,,,"2011-05-10T16:59:29-0500","KOU CHUEH LIN",,,,,18,12,0,5,17,0,17,17,0,,"2A2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110513151409P030274301984003","2010-01-01","2010-05-31","2",,,,,"1","1",,,"1",,,"VISTEON SYSTEMS, L.L.C. HEALTH AND WELFARE BENEFIT PLAN FOR HOURLY EMPLOYEES - CONNERSVILLE AND BEDFORD LOCATIONS","525","1947-05-05","VISTEON SYSTEMS, L.L.C.",,,"ONE VILLAGE CENTER DRIVE",,"VAN BUREN TOWNSHIP","MI","481115711",,,,,,,,,,,,,,,,,,"383451903","7347105784","336300","VISTEON SYSTEMS, L.L.C.",,"ONE VILLAGE CENTER DRIVE",,"VAN BUREN TOWNSHIP","MI","481115711",,,,,,,"383451903","7347105784",,,,"2011-05-13T10:34:36-0500","BARBARA A. QUILTY","2011-05-13T10:34:36-0500","ROBERT E. APRILLIANO",,,2138,,16,,16,,,,,,,"4A4D4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509134848P040260941776001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RTA BASIC FBO ROBERT STAAB MONEY PURCHASE PLAN","002","1994-12-31","REGULATORY & TECHNICAL ASSOCIATES",,,"30 NECK ROAD",,"OLD LYME","CT","06371",,,,,,,"30 NECK ROAD",,"OLD LYME","CT","06371",,,,,,,"223075625","8604345872","541700","REGULATORY & TECHNICAL ASSOCIATES",,"30 NECK ROAD",,"OLD LYME","CT","06371",,,,,,,"223075625","8604345872",,,,"2011-05-05T09:46:05-0500","ROBERT J. STAAB",,,,,2,2,,,2,,2,2,,,"2C2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110517082840P040281082704001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MID-CONTINENT INSTRUMENTS FLEXIBLE SPENDING ACCOUNTING PLAN","505","2003-01-01","MID-CONTINENT INSTRUMENTS",,,"9400 EAST 34TH STREET NORTH",,"WICHITA","KS","67226",,,,,,,,,,,,,,,,,,"751659238","3166300101","339900","MID-CONTINENT INSTRUMENTS",,"9400 EAST 34TH STREET NORTH",,"WICHITA","KS","67226",,,,,,,"751659238","3166300101",,,,"2011-05-17T08:28:30-0500","CYNTHIA C. HIGHBARGER",,,,,364,385,0,0,385,,,,,,,"4A4B4D4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517112927P040019451367001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE SEDONA GROUP LONG TERM DISABILITY","501","1999-01-01","JOHN ENTERPRISES, LTD",,,"600 35TH AVE",,"MOLINE","IL","612656145",,,,,,,,,,,,,,,,,,"421262006","3097978367","541990","JOHN ENTERPRISES, LTD",,"600 35TH AVE",,"MOLINE","IL","612656145",,,,,,,"421262006","3097978367",,,,"2011-05-17T11:21:20-0500","ANGIE SWANSON",,,,,120,123,0,0,123,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518100845P040283928160001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"HOLMES & LADKY ASSOCIATES INC PROFIT SHARING PLAN","001","1969-06-15","HOLMES ASSOCIATES INC",,,"2121 CLIFF DRIVE SUITE 229",,"EAGAN","MN","55122",,,,,,,"2121 CLIFF DRIVE SUITE 229",,"EAGAN","MN","55122",,,,,,,"390972494","5126865354","541990","HOLMES ASSOCIATES INC",,"2121 CLIFF DRIVE SUITE 229",,"EAGAN","MN","55122",,,,,,,"390972494","5126865354",,,,"2011-05-18T10:08:15-0500","MIKE POLIDORI",,,,,4,2,,,2,1,3,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110519145915P030290117728001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAMBRIDGE OPEN MRI LLC 401K PLAN","001","2006-01-01","CAMBRIDGE OPEN MRI LLC",,,"216 HIGHLAND AVE",,"CAMBRIDGE","OH","437252528",,,,,,,,,,,,,,,,,,"371419490","7404358980","621498","CAMBRIDGE OPEN MRI LLC",,"216 HIGHLAND AVE",,"CAMBRIDGE","OH","437252528",,,,,,,"371419490","7404358980",,,,"2011-05-19T14:48:10-0500","EDWARD COLBY",,,,,11,10,0,2,12,0,12,12,,,"2E2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110517122503P040010551382001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NEWBERRY COLLEGE 403B DEFINED CONTRIBUTION PLAN","001","1956-09-01","NEWBERRY COLLEGE",,,"2100 COLLEGE STREET",,"NEWBERRY","SC","29108",,,,,,,,,,,,,,,,,,"570314404","8032765010","611000","NEWBERRY COLLEGE",,"2100 COLLEGE STREET",,"NEWBERRY","SC","29108",,,,,,,"570314404","8032765010",,,,"2011-05-17T12:24:59-0500","STEVEN FELD",,,,,,,,,0,,0,,,,"2L2M",,"0","0","1","0","0","0","1","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517125444P040281630496001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RIMTEC CORPORATION RETIREMENT PLAN FOR HOURLY EMPLOYEES","001","1988-01-01","RIMTEC CORPORATION",,,"1702 BEVERLY ROAD",,"BURLINGTON","NJ","08016",,,,,,,,,,,,,,,,,,"521665125","6093870011","325200","RIMTEC CORPORATION",,"1702 BEVERLY ROAD",,"BURLINGTON","NJ","08016",,,,,,,"521665125","6093870011",,,,"2011-05-17T10:07:56-0500","RAYMOND JOHNSTON",,,,,51,26,10,15,51,0,51,,0,,"1B3D1G1I",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518111030P030286957888001","2010-01-01","2010-12-16","2",,"0","0","1","1","0","0","0","0","0",,"GENTLE DOCTOR ANIMAL HOSPITAL 401(K) PLAN","001","2007-10-15","GENTLE DOCTOR ANIMAL HOSPITAL",,,"6002 SOUTH HIGHWAY 94",,"WELDON SPRING","MO","63368",,,,,,,"6002 SOUTH HIGHWAY 94",,"WELDON SPRING","MO","63368",,,,,,,"431851187","6362725950","541940","GENTLE DOCTOR ANIMAL HOSPITAL",,"6002 SOUTH HIGHWAY 94",,"WELDON SPRING","MO","63368",,,,,,,"431851187","6362725950",,,,"2011-05-18T11:10:14-0500","CARRIE AGLER",,,,,3,0,0,0,0,0,0,0,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516130038P030281735440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TIM MILLER ASSOCIATES, INC. PROFIT SHARING PLAN","001","1987-01-01","TIM MILLER ASSOCIATES, INC.",,,"10 NORTH STREET",,"COLD SPRING","NY","10516",,,,,,,,,,,,,,,,,,"112879916","8452654400","541370","TIM MILLER ASSOCIATES, INC.",,"10 NORTH STREET",,"COLD SPRING","NY","10516",,,,,,,"112879916","8452654400",,,,"2011-05-16T13:00:34-0500","TIM MILLER",,,,,25,13,2,1,16,0,16,16,2,,"2A2E2H2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110519082859P030289337648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRIPLE S SALUD-HEALTH PLAN","502","1981-03-01","PLAZA PROVISION COMPANY",,,"PO BOX 363328",,"SAN JUAN","PR","009363328",,,,,,,"ROAD 165","ESQ. 28","GUAYNABO","PR","00965",,,,,,,"660177768","7877812070","424400","PLAZA PROVISION COMPANY",,"PO BOX 363328",,"SAN JUAN","PR","009363328",,,,,,,"660177768","7877812070",,,,"2011-05-19T08:28:29-0500","NANCY RIOS",,,,,430,446,0,0,446,0,446,,,,,"4A","1",,,,"1",,,,,,"0",,,"1","1",,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110517134435P040281737440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ATLANTIC VEAL CORP MONEY PURCHASE PENSION PLAN","001","1974-01-01","ATLANTIC VEAL CORP",,"MARTIN WEINER","275 MORGAN AVENUE",,"BROOKLYN","NY","11211",,,,,,,"275 MORGAN AVENUE",,"BROOKLYN","NY","11211",,,,,,,"111780425","7185996400","424990","ATLANTIC VEAL CORP","MARTIN WEINER","275 MORGAN AVENUE",,"BROOKLYN","NY","11211",,,,,,,"111780425","7185996400",,,,"2011-05-17T13:43:28-0500","MARTIN WEINER",,,,,1,1,0,0,1,0,1,1,0,,"2C3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517141708P040061835601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KOCH & CO., INC. LONG TERM DISABILITY","504","2009-01-01","KOCH & CO., INC.",,,"1809 NORTH STREET",,"SENECA","KS","66538",,,,,,,"1809 NORTH STREET",,"SENECA","KS","66538",,,,,,,"481090100","7853366022","321900","KOCH & CO., INC.",,"1809 NORTH STREET",,"SENECA","KS","66538",,,,,,,"481090100","7853366022",,,"504","2011-05-17T14:17:02-0500","JEFF CONNER",,,,,195,,,,0,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518111345P040019643399001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CLARK/KJOS ARCHITECTS, LLC 401(K) PLAN","001","2005-01-01","CLARK/KJOS ARCHITECTS, LLC",,,"333 NW 5TH AVE.",,"PORTLAND","OR","97209",,,,,,,"333 NW 5TH AVE.",,"PORTLAND","OR","97209",,,,,,,"931092300","5032244848","541310","CLARK/KJOS ARCHITECTS, LLC",,"333 NW 5TH AVE.",,"PORTLAND","OR","97209",,,,,,,"931092300","5032244848",,,,"2011-05-18T11:12:53-0500","CONNIE ABLES",,,,,41,29,0,8,37,0,37,32,1,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516075736P030059659713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WALSH ELECTRIC SUPPLY LLC 401(K) PROFIT SHARING PLAN AND TRUST","001","1987-01-01","WALSH ELECTRIC SUPPLY LLC",,,"30 CHAMPLAIN DR",,"COLCHESTER","VT","054465848",,,,,,,"30 CHAMPLAIN DR",,"COLCHESTER","VT","054465848",,,,,,,"263257714","8026557090","423600","WALSH ELECTRIC SUPPLY LLC",,"30 CHAMPLAIN DR",,"COLCHESTER","VT","054465848",,,,,,,"263257714","8026557090",,,,"2011-05-16T07:42:35-0500","LEE SPAULDING",,,,,11,8,0,3,11,0,11,11,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516080308P030281124336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAY A. SHAFFER, INC. PROFIT SHARING PLAN","001","1960-03-30","RAY A. SHAFFER, INC.",,,"852 N LIMERICK RD",,"SCHWENKSVILLE","PA","194732829",,,,,,,,,,,,,,,,,,"231544498","6102877831","238220","RAY A. SHAFFER, INC.",,"852 N LIMERICK RD",,"SCHWENKSVILLE","PA","194732829",,,,,,,"231544498","6102877831",,,,"2011-05-16T07:57:02-0500","KENT ZIEGLER",,,,,10,5,0,2,7,0,7,,,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110517132749P030018711895001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AHEAD HUMAN RESOURCES/BLUE SKIES RESOURCES LLC RETIREMENT PLAN","001","2004-01-01","AHEAD HUMAN RESOURCES/BLUE SKIES RESOURCES LLC",,,"633 BAXTER AVE",,"LOUISVILLE","KY","40204",,,,,,,,,,,,,,,,,,"200520318","5022419666","481000","AHEAD HUMAN RESOURCES/BLUE SKIES RESOURCES LLC",,"633 BAXTER AVE",,"LOUISVILLE","KY","40204",,,,,,,"200520318","5022419666",,,,"2011-05-17T13:27:25-0500","KRISTI HAGAN",,,,,2,2,0,0,2,0,2,1,0,,"2E2J2K3D",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517145709P040019487927001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAKER STREET GROUP, INC. MONEY PURCHASE PENSION PLAN","004","2000-06-30","BAKER STREET GROUP, INC.",,,"16476 BERNARDO CENTER DR., STE. 221",,"SAN DIEGO","CA","92128",,,,,,,,,,,,,,,,,,"330917409","8586735400","541990","BAKER STREET GROUP, INC.",,"16476 BERNARDO CENTER DR., STE. 221",,"SAN DIEGO","CA","92128",,,,,,,"330917409","8586735400",,,,"2011-05-17T14:57:02-0500","DARWIN D. WISDOM",,,,,7,5,0,1,6,0,6,6,0,,"2C2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110516172241P030282271200001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RMJ PROPERTY, INC. PENSION PLAN","001","2004-01-01","RMJ PROPERTY, INC.",,,"221 E. WALNUT ST.., #268",,"PASADENA","CA","91101",,,,,,,,,,,,,,,,,,"954545511","6265831588","531210","RMJ PROPERTY, INC.",,"221 E. WALNUT ST.., #268",,"PASADENA","CA","91101",,,,,,,"954545511","6265831588",,,,"2011-05-16T17:22:50-0500","WILSON GEE","2011-05-16T17:22:50-0500","WILSON GEE",,,2,2,0,0,2,0,2,,0,,"3D",,,"1","1",,,"1","1",,"1",,,,"1","1","2",,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110517084317P030283927744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCAVOY BRICK CO. EMPLOYEES SAVINGS PLAN AND TRUST","001","1997-01-01","MCAVOY BRICK CO.","MCAVOY BRICK CO.","CREIGHTON H. MCAVOY","MCAVOY LANE",,"PHOENIXVILLE","PA","19460",,,,,,,"MCAVOY LANE",,"PHOENIXVILLE","PA","19460",,,,,,,"232825550","6109332932","238100","MCAVOY BRICK CO.","CREIGHTON H. MCAVOY","MCAVOY LANE",,"PHOENIXVILLE","PA","19460",,,,,,,"232825550","6109332932",,,,"2011-05-16T17:49:15-0500","CREIGHTON MCAVOY",,,,,5,5,,,5,,5,5,0,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110516151300P030018553015001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KINGERY CONSTRUCTION CO 401K PLAN","001","1956-01-01","KINGERY CONSTRUCTION CO.",,,"201 N 46TH STREET",,"LINCOLN","NE","68503",,,,,,,,,,,,,,,,,,"470563811","4024654400","236200","KINGERY CONSTRUCTION CO.",,"201 N 46TH STREET",,"LINCOLN","NE","68503",,,,,,,"470563811","4024654400",,,,"2011-05-16T15:12:55-0500","CHRIS KINGERY",,,,,30,31,2,4,37,0,37,36,1,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110519133009P030019062279001","2000-10-01","2001-09-30","2",,"0","0","0","0","0","0","0","1","0",,"COLUMBUS EQUIPMENT COMPANY WELFARE BENEFIT PLAN","501","1973-10-01","COLUMBUS EQUIPMENT COMPANY",,,"65 E. KINGSTON AVENUE",,"COLUMBUS","OH","43207",,,,,,,,,,,,,,,,,,"314390542","6144370364","423800","COLUMBUS EQUIPMENT COMPANY",,"65 E. KINGSTON AVENUE",,"COLUMBUS","OH","43207",,,,,,,"314390542","6144370364",,,,"2011-05-19T13:30:02-0500","MICHAEL P. SARREY",,,,,188,188,,,188,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110517120118P030060329585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONTEREY FINANCIAL SERVICES, INC. PROFIT SHARING PLAN AND TRUST","001","1991-01-01","MONTEREY FINANCIAL SERVICES, INC.",,,"4095 AVENIDA DE LA PLATA",,"OCEANSIDE","CA","920565802",,,,,,,,,,,,,,,,,,"330369207","7606393500","525990","MONTEREY FINANCIAL SERVICES, INC.",,"4095 AVENIDA DE LA PLATA",,"OCEANSIDE","CA","920565802",,,,,,,"330369207","7606393500",,,,"2011-05-17T12:00:32-0500","CHRIS HUGHES",,,,,101,77,0,18,95,0,95,95,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517111459P030284255632001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ZIELKE LAW FIRM PLLC 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","ZIELKE LAW FIRM",,,"452 S. 4TH ST. SUITE 1250",,"LOUISVILLE","KY","40202",,,,,,,,,,,,,,,,,,"261357070","5025894600","541110","ZIELKE LAW FIRM",,"452 S. 4TH ST. SUITE 1250",,"LOUISVILLE","KY","40202",,,,,,,"261357070","5025894600",,,,"2011-05-17T11:14:57-0500","ZIELKE LAW FIRM",,,,,16,14,0,1,15,0,15,13,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517162252P030018738919001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RENNOVIA INC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","RENNOVIA INC",,,"1080 HAMILTON AVENUE",,"MENLO PARK","CA","94025",,,,,,,,,,,,,,,,,,"264057805","4084648001","325200","RENNOVIA INC",,"1080 HAMILTON AVENUE",,"MENLO PARK","CA","94025",,,,,,,"264057805","4084648001",,,,"2011-05-17T04:22:50-0500","RENNOVIA INC",,,,,10,20,0,0,20,0,20,15,0,,"2A2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518111705P030286971760001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PENNINGTON, MOORE, WILKINSON, BELL AND DUNBAR, P.A. PROFIT SHARING PLAN","001","1993-07-01","PENNINGTON, MOORE, WILKINSON, BELL & DUNBAR, P.A.",,,"215 S. MONROE","2ND FLOOR","TALLAHASSEE","FL","32301",,,,,,,"215 S. MONROE","2ND FLOOR","TALLAHASSEE","FL","32301",,,,,,,"593184236","8502223533","541110","PENNINGTON, MOORE, WILKINSON, BELL & DUNBAR, P.A.",,"215 S. MONROE","2ND FLOOR","TALLAHASSEE","FL","32301",,,,,,,"593184236","8502223533",,,,"2011-05-18T11:15:58-0500","PATRICIA CHIN",,,,,82,71,0,8,79,0,79,74,4,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518120200P030005261877003","2010-10-01","2011-03-31","2",,,,"1","1",,,,,,,"TIMOTHY L MCKINNEY DDS PC EMPLOYEE PROFIT SHARING PLAN & TRUST","001","1996-04-01","TIMOTHY L MCKINNEY, DDS, PC",,,"340 JOPPA HILL ROAD",,"BEDFORD","NH","03110",,,,,,,,,,,,,,,,,,"020487733","6034722198","621210","TIMOTHY L MCKINNEY DDS PC",,"340 JOPPA HILL ROAD",,"BEDFORD","NH","03110",,,,,,,"020487733","6034722198",,,,"2011-05-18T10:47:10-0500","JOHN S DOLAN",,,,,2,,2,,2,,2,,,,"2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516121936P040019266647001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"HOME BANCSHARES, INC. WELFARE BENEFITS PLAN","502","2002-01-01","HOME BANCSHARES, INC.",,,"620 CHESTNUT",,"CONWAY","AR","72032",,,,,,,,,,,,,,,,,,"710682831","5013284618","523110","HOME BANCSHARES, INC.",,"620 CHESTNUT",,"CONWAY","AR","72032",,,,,,,"710682831","5013284618",,,,"2011-05-16T08:23:06-0500","RANDY MAYOR",,,,,568,662,13,,675,,675,,,,,"4A4B4D4H","1",,,"1","1",,,"1",,,,,,"1","8",,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110519074139P040062846577001","2010-07-01","2010-10-31","2",,"0","0","0","1","0","0","0","0","0",,"GROUP DISABILITY INCOME PLAN OF GATEWAY-LONGVIEW","504","1974-07-01","GATEWAY-LONGVIEW, INC",,,"605 NIAGARA STREET",,"BUFFALO","NY","14201",,,,,,,"605 NIAGARA STREET",,"BUFFALO","NY","14201",,,,,,,"160743081","7168834531","624200","GATEWAY-LONGVIEW, INC",,"605 NIAGARA STREET",,"BUFFALO","NY","14201",,,,,,,"160743081","7168834531",,,,"2011-05-18T09:06:20-0500","TRACY MEYER",,,,,273,255,,,255,,255,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110518125841P030018883975001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PREMIER COMMUNITY CREDIT UNION 401(K) PLAN","002","1997-01-01","PREMIER COMMUNITY CREDIT UNION",,,"3315 W BENJAMIN HOLT DRIVE",,"STOCKTON","CA","95219",,,,,,,"3315 W BENJAMIN HOLT DRIVE",,"STOCKTON","CA","95219",,,,,,,"941215832","2092351100","522130","PREMIER COMMUNITY CREDIT UNION",,"3315 W BENJAMIN HOLT DRIVE",,"STOCKTON","CA","95219",,,,,,,"941215832","2092351100",,,,"2011-05-18T12:57:48-0500","RHONDA CHRISTENSEN",,,,,60,51,0,12,63,0,63,35,2,,"2A2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110515163008P030018373879001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SECKEL, INC. PROFIT SHARING PLAN","001","2005-07-01","SECKEL, INC.",,,"467 WILDROSE LOOP",,"TWIN FALLS","ID","833018255",,,,,,,,,,,,,,,,,,"203052298","2087330431","525990","SECKEL, INC.",,"467 WILDROSE LOOP",,"TWIN FALLS","ID","833018255",,,,,,,"203052298","2087330431",,,,"2011-05-15T16:23:01-0500","DENNIS K. SECKEL",,,,,2,2,0,0,2,0,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-15","Filed with authorized/valid electronic signature",, "20110517135619P030018716007001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"USA COLLISION CENTERS 401K PLAN","001","2000-01-01","GLENWAY AUTOMOTIVE, INC.",,,"4033 GLENWAY AVE",,"CINCINNATI","OH","452051444",,,,,,,,,,,,,,,,,,"311217071","5139212117","811110","GLENWAY AUTOMOTIVE, INC.",,"4033 GLENWAY AVE",,"CINCINNATI","OH","452051444",,,,,,,"311217071","5139212117",,,,"2011-05-17T13:55:01-0500","MARTY J. SANFILLIPO",,,,,22,22,0,2,24,0,24,13,0,,"2E2F2J2K3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517142633P040019482119001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BEHAVIORAL MEDICINE INSTITUTE 401(K) PROFIT SHARING PLAN","003","1999-01-01","BEHAVIORAL MEDICINE INSTITUTE OF ATLANTA",,,"1401 PEACHTREE STREET, SUITE 140",,"ATLANTA","GA","30309",,,,,,,"1401 PEACHTREE STREET, SUITE 140",,"ATLANTA","GA","30309",,,,,,,"582191259","4048727929","621112","BEHAVIORAL MEDICINE INSTITUTE OF ATLANTA",,"1401 PEACHTREE STREET, SUITE 140",,"ATLANTA","GA","30309",,,,,,,"582191259","4048727929","BEHAVIORAL MEDICINE INSTITUTE OF ATLANTA","582191259","002","2011-05-17T14:04:33-0500","GENE ABEL",,,,,12,18,0,10,28,0,28,21,0,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110519084556P040286401520001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MOSS & KALISH PROFIT SHARING PLAN","001","1997-01-01","MOSS & KALISH",,"GARY MOSS","122 EAST 42ND STREET",,"NEW YORK","NY","101680098",,,,,,,,,,,,,,,,,,"133030475","2128674488","541110","MOSS & KALISH","GARY MOSS","122 EAST 42ND STREET",,"NEW YORK","NY","101680098",,,,,,,"133030475","2128674488",,,,"2011-05-19T08:45:50-0500","GARY MOSS",,,,,8,8,0,0,8,0,8,8,0,,"2E2A",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110518150859P040001786916001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREEN HILL, INC. AGE-WEIGHTED PENSION PLAN","002","2007-04-01","GREEN HILL, INC.",,,"103 PLEASANT VALLEY WAY",,"WEST ORANGE","NJ","07052",,,,,,,,,,,,,,,,,,"221500537","9737312300","623000","GREEN HILL RETIREMENT COMMITTEE",,"103 PLEASANT VALLEY WAY",,"WEST ORANGE","NJ","07052",,,,,,,"222152369","9737312300",,,,"2011-05-18T15:08:44-0500","GARY CEPPOS",,,,,54,50,0,0,50,0,50,50,7,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"1","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110517150148P030284718272002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AFFILIATED NEUROLOGISTS LTD RESTATED PROFIT SHARING PLAN","002","1979-08-01","AFFILIATED NEUROLOGISTS, LTD",,,"525 N 18TH STREET SUITE 602",,"PHOENIX","AZ","85006",,,,,,,,,,,,,,,,,,"860257987","6022710950","621111","AFFILIATED NEUROLOGISTS LTD",,"525 N 18TH STREET SUITE 602",,"PHOENIX","AZ","85006",,,,,,,"860257987","6022710950",,,,"2011-05-16T22:35:34-0500","J MICHAEL POWERS MD",,,,,2,2,,,2,,2,2,,,"2T2R2G2E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517085119P030283945872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVACO, INC. HEALTH CARE PLAN","501","2002-01-01","DAVACO, INC.",,,"6688 N. CENTRAL EXPWY, #1400",,"DALLAS","TX","75206",,,,,,,,,,,,,,,,,,"752682681","2143734700","238900","DAVACO, INC.",,"6688 N. CENTRAL EXPWY, #1400",,"DALLAS","TX","75206",,,,,,,"752682681","2143734700",,,,"2011-05-17T08:29:08-0500","JIMMIE MILLER",,,,,299,313,0,0,313,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518134553P040284368032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THORNDIKE CONSTRUCTION CORP 401(K) PLAN & TRUST","001","2001-01-01","THORNDIKE CONSTRUCTION CORPORATION",,,"7 BARKER LANE",,"NORTON","MA","02766",,,,,,,,,,,,,,,,,,"042851603","5082859814","236110","THORNDIKE CONSTRUCTION CORPORATION",,"7 BARKER LANE",,"NORTON","MA","02766",,,,,,,"042851603","5082859814",,,,"2011-05-18T13:43:54-0500","WILLIAM MULLIN",,,,,17,12,0,6,18,0,18,10,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518165425P040019694679001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"EYE INSTITUTE OF WEST FLORIDA EMPLOYEES HEALTH PLAN","503","2008-03-01","EYE INSTITUTE OF WEST FLORIDA",,,"148 13TH STREET SOUTH WEST",,"LARGO","FL","33765",,,,,,,"148 13TH STREET SOUTH WEST",,"LARGO","FL","33765",,,,,,,"593400241","7275818706","621111","EYE INSTITUTE OF WEST FLORIDA",,"148 13TH STREET SOUTH WEST",,"LARGO","FL","33765",,,,,,,"593400241","7275818706",,,,"2011-05-18T15:54:49-0500","LILLIS MARZULLO",,,,,141,136,0,0,136,,136,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518104717P040019639223001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"VIAQUEST, INC. EMPLOYEE BENEFIT PLAN","501","2006-01-01","VIAQUEST, INC.",,,"525 METRO PLACE NORTH, SUITE 300",,"DUBLIN","OH","43017",,,,,,,,,,,,,,,,,,"311682039","6148895837","623000","VIAQUEST, INC.",,"525 METRO PLACE NORTH, SUITE 300",,"DUBLIN","OH","43017",,,,,,,"311682039","6148895837",,,,"2011-05-18T10:47:06-0500","RICHARD JOHNSON",,,,,762,687,0,4,691,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110517152954P030284771760001","2008-05-01","2009-04-30","2",,"0","1","0","0","0","0","0","0","0",,"TRIANGLE REFRIGERATION COMPANY 401(K) PLAN","001","1983-09-01","TRIANGLE REFRIGERATION COMPANY",,,"3200 OREGON PIKE P.O. BOX 487",,"LEOLA","PA","175409777",,,,,,,,,,,,,,,,,,"231886103","7176562711","238220","TRIANGLE REFRIGERATION COMPANY",,"3200 OREGON PIKE P.O. BOX 487",,"LEOLA","PA","175409777",,,,,,,"231886103","7176562711",,,,"2011-05-17T15:03:54-0500","CLEO W. WEAVER",,,,,120,122,1,11,134,0,134,129,7,,"2E2F2G2J2K3E",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517111937P040281432048001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BILL BEALL COMPANY 401K PROFIT SHARING PLAN","002","1984-09-28","BILL BEALL CO, INC",,,"2921 SOUTH NATIONAL",,"SPRINGFIELD","MO","65804",,,,,,,,,,,,,,,,,,"431117351","4178875535","531210","BILL BEALL CO, INC",,"2921 SOUTH NATIONAL",,"SPRINGFIELD","MO","65804",,,,,,,"431117351","4178875535",,,,"2011-04-23T06:14:30-0500","JONELL BEALL",,,,,4,0,0,0,0,1,1,1,0,,"2E2F2H2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110516181622P030282364400001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","0","0",,"DANIEL T. MCQUINN, D.M.D., P.C. RETIREMENT PLAN AND TRUST","003","1998-01-01","DANIEL T. MCQUINN, D.M.D., P.C.",,,"443 PLYMOUTH ST",,"MISSOULA","MT","59801",,,,,,,,,,,,,,,,,,"810486339","4063702690","621210","DANIEL T. MCQUINN, D.M.D., P.C.",,"443 PLYMOUTH ST",,"MISSOULA","MT","59801",,,,,,,"810486339","4063702690",,,,"2011-05-16T18:15:39-0500","DANIEL T. MCQUINN",,,,,4,0,0,0,0,0,0,,0,,"1A1I3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110517140115P040004796309001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CIMMARON VALLEY 401(K) PLAN","001","2003-01-01","CIMMARON VALLEY IRRIGATION LLC",,,"715 E 11TH",,"HUGOTON","KS","67951",,,,,,,,,,,,,,,,,,"030486191","6205447323","238900","CIMMARON VALLEY IRRIGATION LLC",,"715 E 11TH",,"HUGOTON","KS","67951",,,,,,,"030486191","6205447323",,,,"2011-05-17T03:01:10-0500","JEQUETA KEMP",,,,,7,10,0,0,10,0,10,2,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110516100156P030059715937001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHWEST SURGICAL ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","1971-05-01","NORTHWEST SURGICAL ASSOCIATES, INC.",,,"2222 NW LOVEJOY STREET, SUITE 315",,"PORTLAND","OR","97210",,,,,,,,,,,,,,,,,,"930589413","5032266321","621111","NORTHWEST SURGICAL ASSOCIATES, INC.",,"2222 NW LOVEJOY STREET, SUITE 315",,"PORTLAND","OR","97210",,,,,,,"930589413","5032266321",,,,"2011-05-16T09:58:41-0500","ALBERT H. KRAUSE",,,,,14,0,14,0,14,0,14,14,0,,"2E2F2G2J2K2R2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516153133P040279315104002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TIME STRIPING INC 401K PROFIT SHARING PLAN","001","1998-03-01","TIME STRIPING, INC",,,"5439 ARKHOLA ROAD",,"VAN BUREN","AR","72957",,,,,,,,,,,,,,,,,,"710669392","4794740452","235900","TIME STRIPING INC",,"5439 ARKHOLA ROAD",,"VAN BUREN","AR","72957",,,,,,,"710669392","4794740452",,,,"2011-05-16T08:05:22-0500","HAROLD D TOWNSEND",,,,,32,19,1,1,21,,21,24,1,,"2K2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110517172447P030018747191001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"AMERICAN MARITIME HOLDINGS, INC . WELFARE BENEFITS PLAN","501","2010-01-01","AMERICAN MARITIME HOLDINGS, INC.",,,"555 EAST MAIN STREET","SUITE 1212","NORFOLK","VA","23510",,,,,,,,,,,,,,,,,,"262883354","7579619311","336610","AMERICAN MARITIME HOLDINGS, INC.",,"555 EAST MAIN STREET","SUITE 1212","NORFOLK","VA","23510",,,,,,,"262883354","7579619311",,,,"2011-05-16T06:56:37-0500","LINDA HYATT","2011-05-16T06:56:37-0500","LINDA HYATT",,,694,705,7,15,727,,,,,,,"4B4D4A","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518153925P030018907207001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CROSIER FATHERS & BROTHERS 401(K) PROFIT SHARING PLAN & TRUST","003","2009-01-01","CROSIER FATHERS & BROTHERS",,,"4332 N 24TH ST",,"PHOENIX","AZ","85016",,,,,,,,,,,,,,,,,,"351300292","6024437100","713200","CROSIER FATHERS & BROTHERS",,"4332 N 24TH ST",,"PHOENIX","AZ","85016",,,,,,,"351300292","6024437100",,,,"2011-05-18T03:39:23-0500","CROSIER FATHERS BROTHERS",,,,,0,37,0,1,38,0,38,12,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518154354P030287534112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CULLMAN SAVINGS BANK PROFIT SHARING PLAN","001","1984-01-01","CULLMAN SAVINGS BANK",,,"316 2ND AVENUE SW",,"CULLMAN","AL","350554117",,,,,,,,,,,,,,,,,,"630052835","2567341740","522120","CULLMAN SAVINGS BANK",,"316 2ND AVENUE SW",,"CULLMAN","AL","350554117",,,,,,,"630052835","2567341740",,,,"2011-05-18T15:43:50-0500","TRACY L. SMITH","2011-05-18T15:43:50-0500","TRACY L. SMITH",,,45,34,0,5,39,0,39,24,0,,"2E2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518143335P030018897335001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","1","0",,"BAYPORT YACHTS RETIREMENT PLAN AND TRUST","001","1999-04-11","BAYPORT YACHTS, INC.",,,"2530 WEST COAST HIGHWAY",,"NEWPORT BEACH","CA","92663",,,,,,,,,,,,,,,,,,"330224554","9496310228","441222","BAYPORT YACHTS, INC.",,"2530 WEST COAST HIGHWAY",,"NEWPORT BEACH","CA","92663",,,,,,,"330224554","9496310228",,,,"2011-05-18T14:33:27-0500","JR MEANS III",,,,,8,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518081542P030010129798001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"P.E.A.C.E., INC. L T D PLAN/LIFE PLAN","502","2000-06-01","PEOPLES EQUAL ACTION AND COMMUNITY EFFORT, INC.",,,"217 S. SALINA ST 2ND FLOOR",,"SYRACUSE","NY","13202",,,,,,,,,,,,,,,,,,"166095039","3154703300","624100","PEOPLES EQUAL ACTION AND COMMUNITY EFFORT, INC.",,"217 S. SALINA ST 2ND FLOOR",,"SYRACUSE","NY","13202",,,,,,,"166095039","3154703300",,,,"2011-05-17T15:41:18-0500","CATHERINE GREEN","2011-05-17T15:41:18-0500","JOSEPH O'HARA",,,323,334,0,0,334,,,,,,,"4H4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518082224P040283727744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AIR CLEANING SPECIALISTS OF NEW ENGLAND, LLC 401K PLAN","001","2002-01-01","AIR CLEANING SPECIALISTS OF NEW ENGLAND, LLC",,,"1525 HANOVER STREET",,"HANOVER","MA","023391635",,,,,,,,,,,,,,,,,,"043565685","7818269755","811310","AIR CLEANING SPECIALISTS OF NEW ENGLAND, LLC",,"1525 HANOVER STREET",,"HANOVER","MA","023391635",,,,,,,"043565685","7818269755",,,,"2011-05-18T08:14:18-0500","CHRIS ROCHE",,,,,14,10,0,1,11,0,11,11,,,"2A2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518082231P040283728160001","2008-01-01","2008-07-01","2",,"0","0","1","1","0","0","0","1","0",,"INFORMED MEDICAL NETWORKS, INC. 401(K) PLAN","001","2007-01-01","INFORMED MEDICAL NETWORKS, INC.",,,"9155 CRESTWYN HILLS DRIVE",,"MEMPHIS","TN","38125",,,,,,,,,,,,,,,,,,"900130454","9012602600","541519","INFORMED MEDICAL NETWORKS, INC.",,"9155 CRESTWYN HILLS DRIVE",,"MEMPHIS","TN","38125",,,,,,,"900130454","9012602600",,,,"2011-05-17T17:33:04-0500","DAVID LATHAM","2011-05-17T17:33:04-0500","DAVID LATHAM",,,21,0,0,0,0,0,0,0,,,"2E2J2H2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110517133513P030010064566001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NAUTICAL RESTAURANTS INC. 401(K) RETIREMENT SAVINGS PLAN","003","2006-01-01","NAUTICAL RESTAURANTS, INC.",,,"130 ST. MATTHEWS AVENUE",,"LOUISVILLE","KY","40207",,,,,,,"130 ST. MATTHEWS AVENUE",,"LOUISVILLE","KY","40207",,,,,,,"610898530","5028962777","722210","NAUTICAL RESTAURANTS, INC.",,"130 ST. MATTHEWS AVENUE",,"LOUISVILLE","KY","40207",,,,,,,"610898530","5028962777",,,,"2011-05-17T13:34:38-0500","CRAWFORD WELLS",,,,,60,62,0,7,69,0,69,24,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110516122928P030281664832001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUFORD GOFF & ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","001","1979-12-28","BUFORD GOFF & ASSOCIATES, INC.",,,"1331 ELMWOOD AVENUE","SUITE 200","COLUMBIA","SC","29201",,,,,,,,,,,,,,,,,,"570695149","8032546302","541330","BUFORD GOFF & ASSOCIATES, INC.",,"1331 ELMWOOD AVENUE","SUITE 200","COLUMBIA","SC","29201",,,,,,,"570695149","8032546302",,,,"2011-05-16T12:29:21-0500","BRIAN C. MELSON",,,,,56,43,1,11,55,0,55,54,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110518124412P030010150534001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVIS INSTRUMENTS CORPORATION NON-UNION 401(K) PLAN","002","1993-01-01","DAVIS INSTRUMENTS CORPORATION",,,"3465 DIABLO AVENUE",,"HAYWARD","CA","94545",,,,,,,,,,,,,,,,,,"941631206","5107329229","339900","DAVIS INSTRUMENTS CORPORATION",,"3465 DIABLO AVENUE",,"HAYWARD","CA","94545",,,,,,,"941631206","5107329229",,,,"2011-05-18T12:32:56-0500","SUSAN TATUM","2011-05-18T12:32:56-0500","SUSAN TATUM",,,67,59,0,5,64,0,64,54,1,,"2E2G2J2K2F2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518124609P040019656135001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"D & S ENGINEERING, INC. 401K PLAN","001","2003-07-01","D & S ENGINEERING, INC.",,,"P.O. BOX 149",,"MILLINOCKET","ME","04462",,,,,,,"70 SPRING STREET",,"MILLINOCKET","ME","04462",,,,,,,"010768984","2077236871","541330","D & S ENGINEERING, INC.",,"P.O. BOX 149",,"MILLINOCKET","ME","04462",,,,,,,"010768984","2077236871",,,,"2011-05-18T12:44:37-0500","ELDON DOODY",,,,,13,12,0,4,16,1,17,15,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110519145053P040019856919001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"W.M. BEATY & ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","002","1989-09-01","W.M. BEATY & ASSOCIATES, INC.",,,"845 BUTTE STREET",,"REDDING","CA","96001",,,,,,,,,,,,,,,,,,"941720947","5302432783","115310","W.M. BEATY & ASSOCIATES, INC.",,"845 BUTTE STREET",,"REDDING","CA","96001",,,,,,,"941720947","5302432783",,,,"2011-05-19T14:50:46-0500","DONALD BEATY","2011-05-19T14:50:46-0500","DONALD BEATY",,,26,22,0,2,24,0,24,23,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110517105619P040281385600001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRIAN SAYLIN DEFINED BENEFIT PENSION PLAN","002","2007-01-01","LAW OFFICES OF BRIAN SAYLIN",,,"ONE CITY BLVD. WEST, SUITE 1400",,"ORANGE","CA","928683646",,,,,,,,,,,,,,,,,,"953184264","7148463410","541110","LAW OFFICES OF BRIAN SAYLIN",,"ONE CITY BLVD. WEST, SUITE 1400",,"ORANGE","CA","928683646",,,,,,,"953184264","7148463410",,,,"2011-05-17T10:56:17-0500","BRIAN G. SAYLIN",,,,,2,2,0,0,2,0,2,,0,,"1A3B1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518114005P030018871319001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TOK AMERICA 401(K) SAVINGS PLAN","001","1995-01-01","TOKYO OHKA KOGYO AMERICA, INC.",,,"4600 NW BROOKWOOD PARKWAY",,"HILLSBORO","OR","97124",,,,,,,,,,,,,,,,,,"931002264","5036937711","325900","TOKYO OHKA KOGYO AMERICA, INC.",,"4600 NW BROOKWOOD PARKWAY",,"HILLSBORO","OR","97124",,,,,,,"931002264","5036937711",,,,"2011-05-18T11:39:53-0500","CHRIS A. CARLSON",,,,,104,88,0,3,91,0,91,57,3,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516084507P030281197552002","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"TEAMSTERS LOCAL 215 SCHOLARSHIP & EDUCATION TRUST FUND","501","1997-01-01","TEAMSTERS LOCAL UNION 215",,,"P. O. BOX 1040, 825 WALNUT STREET",,"EVANSVILLE","IN","477061040",,,,,,,,,,,,,,,,,,"352006809","8124246471","525920","JOINT BOARD OF TRUSTEES",,"P.O. BOX 1040, 825 WALNUT ST.",,"EVANSVILLE","IN","477061040",,,,,,,"352006809","8124246471",,,,"2011-05-04T15:38:18-0500","CHARLES A. WHOBREY","2011-05-04T15:38:36-0500","CHARLES A. WHOBREY",,,2071,2057,,,2057,,,,,52,,"4K4J4U",,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516125855P030059787889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEALTH AND WELFARE BENEFIT PLAN","502","1969-06-01","HOFFMAN CORPORATION",,,"805 SW BROADWAY","SUITE 2100","PORTLAND","OR","97205",,,,,,,,,,,,,,,,,,"930863884","5032218811","236200","HOFFMAN CORPORATION",,"805 SW BROADWAY","SUITE 2100","PORTLAND","OR","97205",,,,,,,"930863884","5032218811",,,,"2011-05-16T12:58:48-0500","CHERRIE YOHE",,,,,364,367,22,0,389,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516165445P040061310433001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"THE MOREY ORGANIZATION LIFE AND DISABILITY PLAN","505","2007-03-01","THE MOREY ORGANIZATION",,,"3501 BOARDWALK",,"WILDWOOD","NJ","08260",,,,,,,"3501 BOARDWALK",,"WILDWOOD","NJ","08260",,,,,,,"222130568","6307542300","713100","THE MOREY ORGANIZATION",,"3501 BOARDWALK",,"WILDWOOD","NJ","08260",,,,,,,"222130568","6307542300",,,,"2011-05-16T16:43:50-0500","JIM BLAKE",,,,,145,140,0,0,140,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516190927P040279714816001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SI MANUFACTURING, INC. 401(K) PLAN","002","2008-01-01","SI MANUFACTURING, INC.",,,"1440 S. ALLEC STREET",,"ANAHEIM","CA","92805",,,,,,,,,,,,,,,,,,"330892501","7149567110","335900","SI MANUFACTURING, INC.",,"1440 S. ALLEC STREET",,"ANAHEIM","CA","92805",,,,,,,"330892501","7149567110",,,,"2011-05-16T08:09:20-0500","JAMES REED",,,,,47,47,0,0,47,0,47,25,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110517125340P030284445456001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHERN COLORADO VETERINARY SURGERY 401K PROFIT SHARING PLAN","001","2003-01-01","SOUTHERN COLORADO VETERINARY SURGERY",,,"5520 NORTH NEVADA AVENUE","SUITE 100","COLORADO SPRINGS","CO","809183666",,,,,,,,,,,,,,,,,,"841333270","7192646666","541940","SOUTHERN COLORADO VETERINARY SURGERY",,"5746 N ACADEMY BLVD",,"COLORADO SPRINGS","CO","809183666",,,,,,,"841333270","7192646666",,,,"2011-05-17T12:49:16-0500","BECKY SMEDRA-MCGRAW",,,,,22,16,0,4,20,0,20,20,3,,"2A2E2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518132540P030287236720001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLUE RIDGE EAR NOSE AND THROAT INC PA CASH BALANCE PLAN","002","2004-01-01","BLUE RIDGE EAR NOSE AND THROAT INC PA",,,"870 STATE FARM ROAD",,"BOONE","NC","28607",,,,,,,"SUITE 101",,"BOONE","NC","28607",,,,,,,"561946315","8282644545","621111","BLUE RIDGE EAR NOSE AND THROAT INC PA",,"870 STATE FARM ROAD","SUITE 101","BOONE","NC","28607",,,,,,,"561946315","8282644545",,,,"2011-05-18T13:21:26-0500","BARRY HUBERT",,,,,26,15,0,9,24,0,24,,0,,"1C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518143932P030287402176001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CREATIVE PINTING SERVICE, INC. GROUP INSURANCE PLAN","501","1985-07-01","CREATIVE PRINTING SERVICES, INC.",,,"1701 BIRCHWOOD AVENUE",,"DES PLAINES","IL","600183005",,,,,,,,,,,,,,,,,,"363366604","8478032800","323100","CREATIVE PRINTING SERVICES, INC.",,"1701 BIRCHWOOD AVENUE",,"DES PLAINES","IL","600183005",,,,,,,"363366604","8478032800",,,,"2011-05-18T14:30:31-0500","JUDY STERN","2011-05-18T14:30:31-0500","HAVES MCNEAL",,,207,174,,,174,,,,,,,"4A4D4R","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516193635P030018586919001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THERAPEUTIC HEALTH SERVICES HEALTH AND WELFARE PLAN","501","1972-01-01","THERAPEUTIC HEALTH SERVICES",,,"1116 SUMMIT AVENUE",,"SEATTLE","WA","98101",,,,,,,,,,,,,,,,,,"910882971","2063230930","621420","THERAPEUTIC HEALTH SERVICES",,"1116 SUMMIT AVENUE",,"SEATTLE","WA","98101",,,,,,,"910882971","2063230930",,,,"2011-05-16T19:36:26-0500","TONY PAZ",,,,,162,188,0,0,188,,,,,,,"4A4B4D4E4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110519090748P030289411024001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARINE TRANSPORT, INC. 401(K) PLAN","002","2000-01-01","MARINE TRANSPORT, INC.",,,"200 CENTRAL AVENUE, SUITE 202","P.O. BOX 1040","MOUNTAINSIDE","NJ","07092",,,,,,,,,,,,,,,,,,"223249038","9082321400","483000","MARINE TRANSPORT, INC.",,"200 CENTRAL AVENUE, SUITE 202","P.O. BOX 1040","MOUNTAINSIDE","NJ","07092",,,,,,,"223249038","9082321400",,,,"2011-05-19T09:07:46-0500","ROBERT CASTELO","2011-05-19T09:07:46-0500","ROBERT CASTELO",,,44,29,0,11,40,0,40,28,0,,"2E3D2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110517062510P040280864192001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SOLAKIAN, CAIAFA & COMPANY, L.L.C. SECTION 401(K) PROFIT SHARING PLAN","001","1993-12-15","SOLAKIAN, CAIAFA & COMPANY, L.L.C.",,,"375 MATHER ST",,"HAMDEN","CT","065143101",,,,,,,,,,,,,,,,,,"061343015","2032488600","541211","SOLAKIAN, CAIAFA & COMPANY, L.L.C.",,"375 MATHER ST",,"HAMDEN","CT","065143101",,,,,,,"061343015","2032488600",,,,"2011-05-17T07:23:45-0500","PAUL CAIAFA",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2G2J2K3B2R",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518182619P040284894560001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SCOTT T. NAKAHARA, D.D.S. PROFIT SHARING PLAN","001","1993-01-01","SCOTT T. NAKAHARA, D.D.S.",,,"P.O. BOX 235",,"HONOKAA","HI","967270235",,,,,,,,,,,,,,,,,,"990260832","8087757294","621210","SCOTT T. NAKAHARA, D.D.S.",,"P.O. BOX 235",,"HONOKAA","HI","967270235",,,,,,,"990260832","8087757294",,,,"2011-05-18T18:18:49-0500","SCOTT NAKAHARA",,,,,5,4,0,1,5,0,5,5,0,,"2E3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518140439P040019667095001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TRIANGLE REFRIGERATION CO. HEALTH PLAN","501","1993-06-01","TRIANGLE REFRIGERATION CO.",,,"P.O. BOX 487","3200 OREGON PIKE","LEOLA","PA","175400487",,,,,,,,,,,,,,,,,,"231886103","7176562711","238220","TRIANGLE REFRIGERATION CO.",,"P.O. BOX 487","3200 OREGON PIKE","LEOLA","PA","175400487",,,,,,,"231886103","7176562711",,,,"2011-05-18T05:32:26-0500","SHARON L. CHOVANEC","2011-05-18T05:32:26-0500","SHARON L. CHOVANEC",,,124,137,4,,141,,,,,,,"4A4B4D4F4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518143957P030018898199001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CREATIVE PRINTING SERVICE, INC. LONG-TERM DISABILITY PLAN","503","1985-07-01","CREATIVE PRINTING SERVICES, INC.",,,"1701 BIRCHWOOD AVENUE",,"DES PLAINES","IL","600183005",,,,,,,,,,,,,,,,,,"363366604","8478032800","323100","CREATIVE PRINTING SERVICES, INC.",,"1701 BIRCHWOOD AVENUE",,"DES PLAINES","IL","600183005",,,,,,,"363366604","8478032800",,,,"2011-05-18T14:31:18-0500","JUDY STERN","2011-05-18T14:31:18-0500","HAVES MCNEAL",,,107,91,,,91,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516114633P030281577232001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PETER OAS P.H.D. P.A. PROFIT SHARING PLAN AND TRUST","001","1993-01-01","PETER OAS","PETER OAS P.H.D.",,"PO BOX 1002",,"NICEVILLE","FL","32588",,,,,,,"707 BAYSHORE DRIVE",,"NICEVILLE","FL","32578",,,,,,,"593235551","8507293117","621330","PETER OAS",,"PO BOX 1002",,"NICEVILLE","FL","32588",,,,,,,"593235551","8507293117",,,,"2011-05-16T11:46:12-0500","PETER OAS",,,,,2,2,1,,3,,3,,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110519134320P030289956544001","2002-07-01","2003-06-30","2",,,,,,,,,"1",,,"ST. MARTIN CENTER TAX SHELTERED ANNUITY PLAN","001","1985-07-01","ST. MARTIN CENTER",,,,,,,,,,,,,,"1701 PARADE STREET",,"ERIE","PA","16503",,,,,,,"251211464","8144526113","624100","ST. MARTIN CENTER",,"1701 PARADE STREET",,"ERIE","PA","16503",,,,,,,"251211464","8144526113",,,,"2011-05-19T07:16:10-0500","BARBARA SCHRECKENGOST","2011-05-19T07:16:10-0500","BARBARA SCHRECKENGOST",,,,,,,,,,,,,"2L",,"1",,"1",,"1",,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518083254P040283746144001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES H BRESS M.D. P.A 401(K) PLAN","003","2003-01-01","JAMES H BRESS MD PROFESSIONAL ASSOCIATION.",,,"60 ROCHESTER HILL RD",,"ROCHESTER","NH","03867",,,,,,,"60 ROCHESTER HILL RD",,"ROCHESTER","NH","03867",,,,,,,"020330830","6033329090","621111","JAMES H BRESS MD PROFESSIONAL ASSOCIATION.",,"60 ROCHESTER HILL RD",,"ROCHESTER","NH","03867",,,,,,,"020330830","6033329090",,,,"2011-05-18T08:32:19-0500","JAMES BRESS",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110517154032P030284794192001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NYNAS USA, INC. 401K PLAN","001","2003-11-03","NYNAS USA, INC.",,,"1800 W LOOP SOUTH","SUITE 1200","HOUSTON","TX","770273291",,,,,,,"1800 W LOOP SOUTH","SUITE 1200","HOUSTON","TX","770273291",,,,,,,"432004654","8327488774","324190","NYNAS USA, INC.",,"1800 W LOOP SOUTH","SUITE 1200","HOUSTON","TX","770273291",,,,,,,"432004654","8327488774",,,,"2011-05-17T15:39:57-0500","ANNAPOORANI VISWANATHAN",,,,,24,17,0,6,23,0,23,22,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110512083430P030270833344004","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"HIDDEN ACRES FLEXIBLE BENEFITS PLAN","501","2010-01-01","MT. PLEASANT CARE CENTERS, INC.",,,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"261951693","7706190866","623000","MT. PLEASANT CARE CENTERS, INC.",,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"261951693","7706190866",,,,"2011-05-11T09:14:46-0500","JACKIE SORRELLS","2011-05-11T09:14:46-0500","DOUGLAS K MITTLEIDER",,,0,35,,,35,,,,,,,"4A4B4D4E",,,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110512083430P030270833344008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FIRESIDE OF CENTRALIA FLEXIBLE BENEFITS PLAN","501","2003-01-01","LTC OF ILLINOIS-FIRESIDE, INC.","DBA FIRESIDE OF CENTRALIA",,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"582666713","7706190866","623000","LTC OF ILLINOIS-FIRESIDE, INC.",,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"582666713","7706190866",,,,"2011-05-11T08:55:29-0500","JACKIE SORRELLS","2011-05-11T08:55:29-0500","DOUGLAS K MITTLEIDER",,,20,21,,,21,,,,,,,"4A4B4D4E",,,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110512091944P040058877985001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","1","0","1","0",,"WHITE COFFEE CORPORATION RETIREMENT AND 401(K) PLAN","001","1957-10-25","WHITE COFFEE CORPORATION",,,"18-35 STEINWAY PLACE",,"LONG ISLAND CITY","NY","11105",,,,,,,"18-35 STEINWAY PLACE",,"LONG ISLAND CITY","NY","11105",,,,,,,"111470678","7182047900","424400","WHITE COFFEE CORPORATION",,"18-35 STEINWAY PLACE",,"LONG ISLAND CITY","NY","11105",,,,,,,"111470678","7182047900",,,,"2011-05-12T09:17:39-0500","JONATHAN WHITE",,,,,124,112,0,12,124,,124,66,0,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512161250P030057677265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"YXI 401(K) PLAN","001","1998-01-01","Y EXPLORATIONS, INC",,,"2635 NORTH FIRST ST","SUITE 213","SAN JOSE","CA","95134",,,,,,,"2635 NORTH FIRST ST","SUITE 213","SAN JOSE","CA","95134",,,,,,,"330699068","4084341923","511210","Y EXPLORATIONS, INC",,"2635 NORTH FIRST ST","SUITE 213","SAN JOSE","CA","95134",,,,,,,"330699068","4084341923",,,,"2011-05-12T16:12:37-0500","TEDD HADLEY",,,,,6,2,0,3,5,0,5,5,0,,"2E2F2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512162120P040269138576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JONATHAN W. EVANS, INC. PROFIT SHARING PLAN","002","1981-02-01","JONATHAN W. EVANS, INC",,,"12711 VENTURA BOULEVARD, SUITE 440",,"STUDIO CITY","CA","916042456",,,,,,,,,,,,,,,,,,"953533680","2136261881","541110","JONATHAN W. EVANS, INC",,"12711 VENTURA BOULEVARD, SUITE 440",,"STUDIO CITY","CA","916042456",,,,,,,"953533680","2136261881",,,,"2011-05-12T16:17:00-0500","JONATHAN EVANS",,,,,3,3,0,0,3,0,3,3,0,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110513141829P030274190512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRITIGEN LLC COMPREHENSIVE HEALTH AND WELFARE PLAN","501","2009-09-12","CRITIGEN LLC",,,"6161 S. SYRACUSE WAY","SUITE 100","GREENWOOD VILLAGE","CO","80111",,,,,,,,,,,,,,,,,,"270232645","7208724078","541990","CRITIGEN LLC",,"6161 S. SYRACUSE WAY","SUITE 100","GREENWOOD VILLAGE","CO","80111",,,,,,,"270232645","7208724078",,,,"2011-05-13T14:18:24-0500","JENNIFER VANN",,,,,532,771,18,0,789,,,,,,,"4A4B4D4E4F4G4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110506105049P040017485991001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DAMPNEY COMPANY, INC. 401(K) PROFIT SHARING PLAN","003","2007-01-01","DAMPNEY COMPANY, INC.",,,"85 PARIS STREET",,"EVERETT","MA","02149",,,,,,,,,,,,,,,,,,"041230220","6173892805","325500","DAMPNEY COMPANY, INC.",,"85 PARIS STREET",,"EVERETT","MA","02149",,,,,,,"041230220","6173892805","DAMPNEY COMPANY, INC.","041230220","002","2011-05-06T10:35:44-0500","RAYMOND K. PAVLIK","2011-05-06T10:35:44-0500","RAYMOND K. PAVLIK",,,15,14,0,1,15,0,15,15,1,,"2A2E2F2G2J",,"1","0","1","0","1","0","1","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110506105839P030255380352006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALATRADE LIFE INSURANCE PLAN","502","2007-01-01","ALATRADE, LLC",,,"725 BLOUNT AVENUE",,"GUNTERSVILLE","AL","35976",,,,,,,,,,,,,,,,,,"631257850","2565719696","112300","ALATRADE, LLC",,"725 BLOUNT AVENUE",,"GUNTERSVILLE","AL","35976",,,,,,,"631257850","2565719696",,,,"2011-05-06T05:54:24-0500","PATTI YANCEY",,,,,100,510,,,510,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506095558P030255252032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRUEX ABSTRACT, INC. PROFIT SHARING PLAN","001","1981-01-01","TRUEX ABSTRACT, INC.",,,"28 TAYLOR AVENUE",,"MANASQUAN","NJ","08736",,,,,,,"28 TAYLOR AVENUE",,"MANASQUAN","NJ","08736",,,,,,,"222248772","7325286166","531390","TRUEX ABSTRACT, INC.",,"28 TAYLOR AVENUE",,"MANASQUAN","NJ","08736",,,,,,,"222248772","7325286166",,,,"2011-05-06T09:55:54-0500","FREDERICK A. TRUEX","2011-05-06T09:55:54-0500","FREDERICK A. TRUEX",,,6,6,0,0,6,0,6,6,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513143253P040271574624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ULTIMUS, INC. 401(K) PLAN & TRUST","001","2000-01-01","ULTIMUS, INC.",,,"15000 WESTON PARKWAY",,"CARY","NC","27513",,,,,,,"15000 WESTON PARKWAY",,"CARY","NC","27513",,,,,,,"561892015","9196780900","541519","ULTIMUS, INC.",,"15000 WESTON PARKWAY",,"CARY","NC","27513",,,,,,,"561892015","9196780900",,,,"2011-05-13T14:30:37-0500","JOHN VELOSKI",,,,,52,27,0,13,40,0,40,25,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110512170708P040269221648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHIL SMART, INC. EMPLOYEE HEALTH AND WELFARE PLAN","502","1991-01-01","PHIL SMART, INC.",,,"600 EAST PIKE STREET",,"SEATTLE","WA","98122",,,,,,,,,,,,,,,,,,"910698387","2063245959","441110","PHIL SMART, INC.",,"600 EAST PIKE STREET",,"SEATTLE","WA","98122",,,,,,,"910698387","2063245959",,,,"2011-05-12T17:07:04-0500","TERI BLIKRE",,,,,135,124,0,0,124,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110506132539P040253358080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVID R. HANNULA","004","1990-12-19","DAVID R. HANNULA","DAVID R. HANNULA",,"4146 6TH AVE",,"TACOMA","WA","98406",,,,,,,"4146 6TH AVE",,"TACOMA","WA","98406",,,,,,,"911124208","2537595622","621210","DAVID R. HANNULA",,"4146 6TH AVE",,"TACOMA","WA","98406",,,,,,,"911124208","2537595622",,,,"2011-05-06T13:25:12-0500","DAVID HANNULA",,,,,9,8,0,2,10,0,10,,,,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506185437P030004703557001","2005-07-01","2006-06-30","2",,"0","0","0","0","0","0","0","1","0",,"ARCHSTONE FOUNDATION RETIREMENT PLAN","001","1996-07-01","ARCHSTONE FOUNDATION",,,"401 EAST OCEAN BLVD. SUITE 1000",,"LONG BEACH","CA","90802",,,,,,,,,,,,,,,,,,"330133359","5625908655","813000","ARCHSTONE FOUNDATION",,"401 EAST OCEAN BLVD. SUITE 1000",,"LONG BEACH","CA","90802",,,,,,,"330133359","5625908655",,,,"2011-05-06T18:54:05-0500","JOSEPH PREVRATIL",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506072225P030016792551001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TEMPLETON FAMILY, INC.DBA FT MYERS TOYOTA","501","2001-01-01","TEMPLETON FAMILY, INC. DBA FORT MYERS TOYOTA",,,"2555 COLONIAL BOULEVARD",,"FORT MYERS","FL","33907",,,,,,,,,,,,,,,,,,"650061441","2399382800","441110","TEMPLETON FAMILY, INC. DBA FORT MYERS TOYOTA",,"2555 COLONIAL BOULEVARD",,"FORT MYERS","FL","33907",,,,,,,"650061441","2399382800",,,,"2011-05-06T07:22:18-0500","TERRY TEMPLETON",,,,,246,214,,,214,,,,,,,"4A4B4D4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506111608P030255414784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRI STATE LAND & TIMBER, INC. 401K PLAN","001","2005-01-01","TRI STATE LAND & TIMBER, INC.",,,"17603 SR 20 WEST",,"BLOUNTSTOWN","FL","32424",,,,,,,,,,,,,,,,,,"593740134","8506747640","113310","TRI STATE LAND & TIMBER, INC.",,"17603 SR 20 WEST",,"BLOUNTSTOWN","FL","32424",,,,,,,"593740134","8506747640",,,,"2011-05-06T11:16:06-0500","KENNETH BETTS","2011-05-06T11:16:06-0500","KENNETH BETTS",,,21,18,0,1,19,0,19,10,0,,"2J2G3D",,"1",,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110512124205P040018569623001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHARLES M PAP DDS INC PROFIT SHARING PLAN & TRUST","001","1992-01-01","CHARLES M. PAP, D.D.S., INC.",,,"8300 TYLER BLVD STE 202",,"MENTOR","OH","440604251",,,,,,,,,,,,,,,,,,"341458456","4402551114","621210","CHARLES M. PAP, D.D.S., INC.",,"8300 TYLER BLVD STE 202",,"MENTOR","OH","440604251",,,,,,,"341458456","4402551114",,,,"2011-05-12T12:41:18-0500","CHARLES PAP",,,,,3,3,0,0,3,0,3,3,,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512160007P030057667313002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"M. BROUGHTON STOKES, INC. MONEY PURCHASE PLAN","001","1976-01-01","M. BROUGHTON STOKES, INC.",,,"2438 SUMMERFIELD ROAD",,"WINTER PARK","FL","32792",,,,,,,,,,,,,,,,,,"592891561","4074154795","531120","M. BROUGHTON STOKES, INC.",,"2438 SUMMERFIELD ROAD",,"WINTER PARK","FL","32792",,,,,,,"592891561","8504074715",,,,"2011-05-02T15:05:59-0500","M. BROUGHTON STOKES","2011-05-02T15:06:06-0500","M. BROUGHTON STOKES","2011-05-02T15:08:18-0500","M. BROUGHTON STOKES",1,1,,,1,,1,1,,,"2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110506090323P030004682037001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GREENSTAR NORTH AMERICA HOLDINGS EMPLOYEE BENEFIT PLAN","501","2009-01-01","GREENSTAR NORTH AMERICA HOLDINGS, INC",,,"3411 RICHMOND, STE 700",,"HOUSTON","TX","77046",,,,,,,,,,,,,,,,,,"208233143","7139650005","562000","GREENSTAR NORTH AMERICA HOLDINGS, INC",,"3411 RICHMOND, STE 700",,"HOUSTON","TX","77046",,,,,,,"208233143","7139650005",,,,"2011-05-06T09:00:55-0500","DANIEL CROCIATA",,,,,450,518,,,518,,518,,,,,"4A4B4E4F4H4L","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506113906P030016827463001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PEDIATRIC SURGICAL ASSOCIATES, INC. 401(K) PLAN","001","2007-08-01","PEDIATRIC SURGICAL ASSOCIATES, INC.",,,"1120 W. LA VETA AVENUE, SUITE 100",,"ORANGE","CA","92868",,,,,,,,,,,,,,,,,,"260425837","7143614480","621111","PEDIATRIC SURGICAL ASSOCIATES, INC.",,"1120 W. LA VETA AVENUE, SUITE 100",,"ORANGE","CA","92868",,,,,,,"260425837","7143614480",,,,"2011-05-06T11:39:05-0500","DR. DAVID GIBBS",,,,,12,11,0,0,11,0,11,11,0,,"2A2E2F2H2J2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110512105949P040018554759001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"THE KOREX CORPORATION SAVINGS & RETIREMENT PLAN","001","1987-09-01","THE KOREX CORPORATION",,,"PO BOX 930339",,"WIXOM","MI","48393",,,,,,,"50000 WEST PONTIAC TRAIL",,"WIXOM","MI","48393",,,,,,,"381652736","2486240000","325600","THE KOREX CORPORATION",,"PO BOX 930339",,"WIXOM","MI","48393",,,,,,,"381652736","2486240000",,,,"2011-05-12T10:59:34-0500","MOLLY ORTON",,,,,73,59,0,12,71,0,71,62,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110506121014P040004299413001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DES INFRASTRUCTURE & ENVIRONMENT, LLC 401K PLAN","001","2007-10-01","DES INFRASTRUCTURE & ENVIRONMENT, LLC",,,"8936 WESTERN WAY STE 10",,"JACKSONVILLE","FL","322560338",,,,,,,,,,,,,,,,,,"260534742","9043630911","238900","DES INFRASTRUCTURE & ENVIRONMENT, LLC",,"8936 WESTERN WAY STE 10",,"JACKSONVILLE","FL","322560338",,,,,,,"260534742","9043630911",,,,"2011-05-06T12:08:36-0500","DES I AND E",,,,,3,0,0,2,2,0,2,,,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110512132221P030017847399001","2010-01-01","2010-07-27","2",,"0","0","1","1",,"1",,,,,"WILDBLUE COMMUNICATIONS, INC 401(K) PLAN","001","1999-10-01","WILDBLUE COMMUNICATIONS, INC",,,"5970 GREENWOOD PLAZA BLVD., STE 300",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"5970 GREENWOOD PLAZA BLVD., STE 300",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"541781002","7205547400","517000","WILDBLUE COMMUNICATIONS, INC",,"5970 GREENWOOD PLAZA BLVD., STE 300",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"541781002","7205547400",,,,"2011-05-12T13:21:17-0500","LISA SCALPONE","2011-05-12T13:18:25-0500","LARRY BICE",,,305,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3F",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110506102733P030016817719001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WINDSHIELD WORLD YWP 401(K) PROFIT SHARING PLAN","001","1993-01-01","WINDSHIELD WORLD YWP",,,"1246 US ROUTE 302-BERLIN UNIT 2",,"BARRE","VT","05641",,,,,,,,,,,,,,,,,,"030312618","8024790666","441300","WINDSHIELD WORLD YWP",,"1246 US ROUTE 302-BERLIN UNIT 2",,"BARRE","VT","05641",,,,,,,"030312618","8024790666",,,,"2011-05-06T10:27:20-0500","MICHAEL MICELI","2011-05-06T10:27:20-0500","MICHAEL MICELI",,,45,39,0,3,42,0,42,18,0,,"2E2G2J2K3D2F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110506145737P030016852215001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DUNN & BUETTNER RETIREMENT PLAN & TRUST","001","1994-01-01","DUNN & SCHREIBER ORTHODONTICS, P.C.",,,"7051 HALCYON SUMMIT DRIVE",,"MONTGOMERY","AL","36117",,,,,,,,,,,,,,,,,,"631113468","3342701044","621210","DUNN & SCHREIBER ORTHODONTICS, P.C.",,"7051 HALCYON SUMMIT DRIVE",,"MONTGOMERY","AL","36117",,,,,,,"631113468","3342701044","S. KENDALL DUNN, D.M.D., M.S., P.C.","631113468","001","2011-05-06T14:57:31-0500","S. KENDALL DUNN, D.M.D., M.S.",,,,,27,29,0,3,32,0,32,32,1,,"2E2J2K2A3H3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506145743P040009499334001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CALDWELL COMPANIES 401(K) PROFIT SHARING PLAN","002","1998-01-01","CALDWELL WATSON REAL ESTATE GROUP, INC.",,,"7904 N SAM HOUSTON PKWY. W","4TH FLOOR","HOUSTON","TX","77064",,,,,,,"7904 N SAM HOUSTON PKWY. W","4TH FLOOR","HOUSTON","TX","77064",,,,,,,"760312675","7136900000","531190","CALDWELL WATSON REAL ESTATE GROUP, INC.",,"7904 N SAM HOUSTON PKWY. W","4TH FLOOR","HOUSTON","TX","77064",,,,,,,"760312675","7136900000",,,,"2011-05-06T14:56:17-0500","SANDY KELLY",,,,,80,49,0,31,80,0,80,69,7,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110512110121P030009600966001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BURT MILLWORK CORPORATION RET PLAN","002","1997-07-01","BURT MILLWORK CORPORATION","SAME",,"1010 STANLEY AVE",,"BROOKLYN","NY","11208",,,,,,,"1010 STANLEY AVE",,"BROOKLYN","NY","11208",,,,,,,"111673865","7182574601","444190","ELI GORDON",,"1010 STANLEY AVE",,"BROOKLYN","NY","11208",,,,,,,"113430860","7182574601",,,,"2011-05-12T11:00:36-0500","ELI GORDON",,,,,7,7,0,0,7,0,7,0,0,,"3D","4Q",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512110159P040018555111001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"APT METAL FABRICATORS, INC. PROFIT SHARING PLAN","001","1989-01-01","APT METAL FABRICATORS, INC.",,,"11164 BRADLEY AVE.",,"PACOIMA","CA","913312405",,,,,,,,,,,,,,,,,,"953298843","8188967478","332110","APT METAL FABRICATORS, INC.",,"11164 BRADLEY AVE.",,"PACOIMA","CA","913312405",,,,,,,"953298843","8188967478",,,,"2011-05-12T10:47:58-0500","DENNIS M. VIGO",,,,,28,26,0,1,27,0,27,27,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512110805P040004566629001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"T R TOPPERS, INC. PROFIT SHARING PLAN","001","1996-01-01","T R TOPPERS, INC.",,,"P.O. BOX 6308",,"BOISE","ID","837076308",,,,,,,"1101 W. RIVER ST., SUITE 360",,"BOISE","ID","83707",,,,,,,"820467222","2083367162","311300","T R TOPPERS, INC.",,"P.O. BOX 6308",,"BOISE","ID","837076308",,,,,,,"820467222","2083367162",,,,"2011-05-12T11:02:59-0500","ROBERT L. RODE",,,,,37,34,0,1,35,0,35,35,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110513121629P040271291744001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"EMPLOYEES RETIREMENT INCOME PLAN OF HENRY ADAMS, LLC","002","1968-12-31","HENRY ADAMS, LLC",,,"600 BALTIMORE AVENUE","SUITE 400","BALTIMORE","MD","21204",,,,,,,,,,,,,,,,,,"200060224","4102966500","541330","HENRY ADAMS, LLC",,"600 BALTIMORE AVENUE","SUITE 400","BALTIMORE","MD","21204",,,,,,,"200060224","4102966500",,,,"2011-05-13T12:16:04-0500","BARBARA DIVIRGILIO",,,,,35,0,0,0,0,0,0,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110512142735P040018587319001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"WEST MICHIGAN BANK & TRUST 401(K) PLAN","001","1994-01-01","WEST MICHIGAN BANK & TRUST",,,"501 MAIN STREET",,"FRANKFORT","MI","49635",,,,,,,"501 MAIN STREET",,"FRANKFORT","MI","49635",,,,,,,"810574059","2317238867","522110","WEST MICHIGAN BANK & TRUST",,"501 MAIN STREET",,"FRANKFORT","MI","49635",,,,,,,"810574059","2317238867",,,,"2011-05-12T14:16:01-0500","DOUGLAS COOK",,,,,14,14,0,2,16,0,16,15,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512142930P040010067670001","2010-07-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"3PAR INC. HEALTH & WELFARE PLAN","501","2002-07-01","3PAR INC.",,,"4209 TECHNOLOGY DRIVE",,"FREMONT","CA","94538",,,,,,,,,,,,,,,,,,"770510671","5104135999","334110","3PAR INC.",,"4209 TECHNOLOGY DRIVE",,"FREMONT","CA","94538",,,,,,,"770510671","5104135999",,,,"2011-05-12T14:28:24-0500","JEANNETTE ROBINSON",,,,,573,0,0,0,0,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110525142314P040009732018001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GEORGE TALBOT HECKMAN III 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","GEORGE TALBOT HECKMAN III",,,"18250 S CLARK",,"OREGON CITY","OR","97045",,,,,,,,,,,,,,,,,,"261546434","9713228746","541600","GEORGE TALBOT HECKMAN III",,"18250 S CLARK",,"OREGON CITY","OR","97045",,,,,,,"261546434","9713228746",,,,"2011-05-25T02:23:12-0500","GEORGE TALBOT HECKMAN III",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110524085927P040020688407001","1994-09-01","1995-08-31","2",,"0","1","0","0","0","0","0","1","0",,"BELLEVUE UNIVERSITY GROUP MEDICAL","501","1984-01-01","BELLEVUE UNIVERSITY",,,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"470491571","4022932000","611000","BELLEVUE UNIVERSITY",,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"470491571","4022932000",,,,"2011-05-23T08:34:39-0500","MIKE WARNER",,,,,237,237,0,0,237,0,237,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525151059P030305900896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DPC DEVELOPMENT COMPANY 401(K) PLAN","001","1993-06-01","DPC DEVELOPMENT COMPANY",,,"7000 EAST BELLEVIEW AVENUE",,"GREENWOOD VILLAGE","CO","80111",,,,,,,,,,,,,,,,,,"841044228","3037968288","531390","DPC DEVELOPMENT COMPANY",,"7000 EAST BELLEVIEW AVENUE",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"841044228","3037968288",,,,"2011-05-25T15:04:12-0500","GARY WILSON",,,,,28,24,0,1,25,0,25,24,0,,"2E2J2K2G2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525101335P040302020576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BSI SCALES, INC. RETIREMENT SAVINGS PLAN","001","1993-06-01","BSI SCALES, INC.",,,"16155 W. LINCOLN AVE",,"NEW BERLIN","WI","53151",,,,,,,,,,,,,,,,,,"391899367","2627895650","339900","BSI SCALES, INC.",,"16155 W. LINCOLN AVE",,"NEW BERLIN","WI","53151",,,,,,,"391899367","2627895650",,,,"2011-05-25T09:58:46-0500","ROBERT LAUS",,,,,24,15,0,6,21,0,21,15,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110519180852P030290481216001","2007-01-01","2007-12-31","4","M","0","1","0","0","0","0","0","0","0",,"KOHLER CO. PLANS MASTER TRUST","012","1984-08-01","KOHLER CO. & SUBSIDIARIES","KOHLER CO.",,"444 HIGHLAND DRIVE","MAIL STOP 007","KOHLER","WI","530441515",,,,,,,"444 HIGHLAND DRIVE","MAIL STOP 007","KOHLER","WI","530441515",,,,,,,"390402810","9204574441","339900","KOHLER CO. & SUBSIDIARIES",,"444 HIGHLAND DRIVE","MAIL STOP 007","KOHLER","WI","530441515",,,,,,,"390402810","9204574441",,,,,,"2011-05-19T18:08:29-0500","PHIL BORDEN",,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-05-19",,,"Filed with authorized/valid electronic signature" "20110525112731P040020915079001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRANSTON PRINT WORKS COMPANY GROUP INSURANCE AND FLEX PLAN","509","1969-12-01","CRANSTON PRINT WORKS COMPANY",,,"1381 CRANSTON STREET",,"CRANSTON","RI","02920",,,,,,,,,,,,,,,,,,"050125740","4019434800","313000","CRANSTON PRINT WORKS COMPANY",,"1381 CRANSTON STREET",,"CRANSTON","RI","02920",,,,,,,"050125740","4019434800",,,,"2011-05-25T11:27:26-0500","HERBERT J. GRAY, VP HUMAN RESOURCES",,,,,137,90,12,0,102,,,,,,,"4A4B4D4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110526094040P040066935265001","2010-02-09","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"GYS ENTERPRISES, INC. PROFIT SHARING PLAN","001","2010-02-09","GYS ENTERPRISES, INC.",,,"4500 LA PLAISANCE RD",,"LA SALLE","MI","48145",,,,,,,,,,,,,,,,,,"271866483","5172656200","561740","GYS ENTERPRISES, INC.",,"4500 LA PLAISANCE RD",,"LA SALLE","MI","48145",,,,,,,"271866483","5172656200",,,,"2011-05-26T09:40:00-0500","GEORGE POMERVILLE",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110526094112P040009796738001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHERRY PETERSEN LANDRY ALBERT, LLP 401(K) PLAN","001","2003-01-01","CHERRY PETERSEN LANDRY ALBERT, LLP",,,"8350 NORTH CENTRAL EXPRESSWAY","SUITE 800","DALLAS","TX","75206",,,,,,,,,,,,,,,,,,"752936799","2142657007","541110","CHERRY PETERSEN LANDRY ALBERT, LLP",,"8350 NORTH CENTRAL EXPRESSWAY","SUITE 800","DALLAS","TX","75206",,,,,,,"752936799","2142657007",,,,"2011-05-26T09:41:01-0500","WM. KEVIN CHERRY","2011-05-26T09:41:01-0500","WM. KEVIN CHERRY",,,17,13,0,4,17,,17,17,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524082248P040065732113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUPERIOR ESSEX GROUP BENEFIT PLAN","501","1986-09-01","SUPERIOR ESSEX, INC.",,,"6120 POWERS FERRY ROAD, SUITE 150",,"ATLANTA","GA","30339",,,,,,,,,,,,,,,,,,"200282396","7706576000","332900","SUPERIOR ESSEX, INC.",,"6120 POWERS FERRY ROAD, SUITE 150",,"ATLANTA","GA","30339",,,,,,,"200282396","7706576000",,,,"2011-05-24T08:22:44-0500","VONDA HILDERBRAND",,,,,2310,2193,72,0,2265,,,,,,,"4A4B4D4E4F4H4I4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525085034P030010781222001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BELMONT INSTRUMENT CORP RETIREMENT PLAN","001","1983-12-01","BELMONT INSTRUMENT CORP.",,,"780 BOSTON RD",,"BILLERICA","MA","018210212",,,,,,,"780 BOSTON RD",,"BILLERICA","MA","018210212",,,,,,,"042705177","9786630212","339110","BELMONT INSTRUMENT CORP.",,"780 BOSTON RD",,"BILLERICA","MA","018210212",,,,,,,"042705177","9786630212",,,,"2011-05-25T08:49:15-0500","HELMUT FLOESSER",,,,,54,51,0,6,57,1,58,43,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525133007P030305680288001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MOORE & NEIDENTHAL, INC. SAFE HARBOR 401(K) PLAN","001","2004-01-01","MOORE & NEIDENTHAL INC.",,,"3034 NORTH WOOSTER AVENUE",,"DOVER","OH","44622",,,,,,,,,,,,,,,,,,"341115383","3303647774","541211","MOORE & NEIDENTHAL INC.",,"3034 NORTH WOOSTER AVENUE",,"DOVER","OH","44622",,,,,,,"341115383","3303647774",,,,"2011-05-25T14:16:58-0500","MATTHEW D. NEIDENTHAL","2011-05-25T14:17:07-0500","MATTHEW D. NEIDENTHAL",,,9,9,0,0,9,0,9,9,,,"2J2G2R2F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110525115442P040020924343001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOCAL 1158 I.B.E.W. PENSION PLAN","003","1999-01-01","LOCAL 1158 I.B.E.W.",,,"1149 BLOOMFIELD AVE.",,"CLIFTON","NJ","070120000",,,,,,,,,,,,,,,,,,"222021330","9737733336","812990","LOCAL 1158 I.B.E.W.",,"1149 BLOOMFIELD AVE.",,"CLIFTON","NJ","070120000",,,,,,,"222021330","9737733336",,,,"2011-05-25T11:54:37-0500","GENE J SETTE","2011-05-25T11:54:37-0500","GENE J SETTE",,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110526094124P030308162000001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"INFUTOR CONSUMER DATA SOLUTIONS, INC. 401K PROFIT SHARING PLAN","001","2008-01-01","INFUTOR CONSUMER DATA SOLUTIONS, INC.",,,"111 ZAPATA LANE",,"MINOOKA","IL","604479355",,,,,,,,,,,,,,,,,,"830435501","8154670601","541990","INFUTOR CONSUMER DATA SOLUTIONS, INC.",,"111 ZAPATA LANE",,"MINOOKA","IL","604479355",,,,,,,"264067779","8154670601",,,,"2011-05-26T09:41:02-0500","GARY WALTER",,,,,2,3,0,0,3,0,3,3,0,,"2E2J2K3D2F2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110521112247P030294930880001","2006-09-01","2007-08-31","2",,"0","0","0","0","0","0","0","1","0",,"UNIVERSITY PLAZA NURSERY TDA 331213","001","2002-11-01","UNIVERSITY PLAZA NURSERY SCHOOL","UNIVERSITY PLAZA NURSERY SCHOOL","LOYAN BEAUSOLEIL","UNIVERSITY PLAZA NURSERY SCHOOL","110 BLEECKER STREET, L2","NEW YORK","NY","10009",,,,,,,"UNIVERSITY PLAZA NURSERY SCHOOL","110 BLEECKER STREET, L2","NEW YORK","NY","10009",,,,,,,"132591538","2126773916","611000","UNIVERSITY PLAZA NURSERY SCHOOL","LOYAN BEAUSOLEIL","UNIVERSITY PLAZA NURSERY SCHOOL","110 BLEECKER STREET, L2","NEW YORK","NY","10012",,,,,,,"132591538","2126773916","UNIVERSITY PLAZA NURSERY SCHOOL","132591538","001","2011-05-21T10:55:04-0500","LOYAN BEAUSOLEIL",,,,,2,,,,,,,,,,"2L",,,,,,,,,,,,"0",,,,,,,,"FILING_RECEIVED","2011-05-21","Filed with authorized/valid electronic signature",, "20110524063909P040298982416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FERCO TECH CORPORATION EMPLOYEE BENEFIT PLAN","501","1986-01-01","FERCO TECH CORPORATION",,"LISA WUNN","291 CONOVER DRIVE",,"FRANKLIN","OH","450051944",,,,,,,,,,,,,,,,,,"311110644","9377466696","336410","FERCO TECH CORPORATION","LISA WUNN","291 CONOVER DRIVE",,"FRANKLIN","OH","450051944",,,,,,,"311110644","9377466696",,,,"2011-05-24T06:38:40-0500","TONY NICHOLS",,,,,114,127,1,0,128,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524101133P040020700919001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPRAY CONTROL SYSTEMS, INC. PROFIT SHARING PLAN","001","2006-01-01","SPRAY CONTROL SYSTEMS, INC.",,,"500 MINIMIZER WAY SE",,"BLOOMING PRAIRIE","MN","55917",,,,,,,,,,,,,,,,,,"411577975","5075832112","336300","SPRAY CONTROL SYSTEMS, INC.",,"500 MINIMIZER WAY SE",,"BLOOMING PRAIRIE","MN","55917",,,,,,,"411577975","5075832112",,,,"2011-05-24T10:11:29-0500","MELISSA RESSLER",,,,,28,20,2,1,23,0,23,23,1,,"2A2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110519134543P040286975632001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DESIGN TEAM SIGN COMPANY 401(K) P/S PLAN","001","2003-06-01","DESIGN TEAM SIGN COMPANY",,,"350 PINHOOK DRIVE",,"SAVANNAH","TN","38372",,,,,,,,,,,,,,,,,,"621608291","7319267979","339900","DESIGN TEAM SIGN COMPANY",,"350 PINHOOK DRIVE",,"SAVANNAH","TN","38372",,,,,,,"621608291","7319267979",,,,"2011-05-19T13:44:33-0500","TERESA CREASY",,,,,111,81,0,33,114,1,115,86,7,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110519200711P030005328405001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMCHECK 401(K) PLAN","002","2009-01-01","COMPASS POINT RETIREMENT PLANNING INC",,"AMCHECK DBA SIMPLIFIED BUSINESS SOLUTIONS","5030 E SUNRISE DR",,"PHOENIX","AZ","85044",,,,,,,,,,,,,,,,,,"043344673","7812461433","523900","AMCHECK DBA SIMPLIFIED BUSINESS SOLUTIONS",,"5030 E SUNRISE DR",,"PHOENIX","AZ","85044",,,,,,,"860841768","4807635900",,,,"2011-05-18T13:19:01-0500","DEAN LUCENTE",,,,,16,14,0,0,14,0,14,14,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110519201105P030019113591001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMCHECK 401(K) PLAN","001","2006-11-01","INTELLIQUICK DELIVERY, INC.",,"AMCHECK DBA SIMPLIFIED BUISNESS SOLUTIONS","5030 E SUNRISE DR",,"PHOENIX","AZ","85044",,,,,,,,,,,,,,,,,,"860928196","6022240033","492110","AMCHECK DBA SIMPLIFIED BUSINESS SOLUTIONS",,"5030 E SUNRISE DR",,"PHOENIX","AZ","85044",,,,,,,"860841768","4807635900",,,,"2011-05-18T13:13:37-0500","DEAN LUCENTE",,,,,45,43,0,2,45,0,45,4,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110524101200P040020701047001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRINS INSURANCE 401(K) PLAN AND TRUST","002","2009-01-01","PRINS INSURANCE, INC.",,,"301 MAIN STREET",,"SANBORN","IA","51248",,,,,,,,,,,,,,,,,,"420958583","7127293252","524210","PRINS INSURANCE, INC.",,"301 MAIN STREET",,"SANBORN","IA","51248",,,,,,,"420958583","7127293252",,,,"2011-05-24T10:11:52-0500","JEN PRESTON",,,,,18,16,0,2,18,0,18,18,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110521174333P040292504864001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"SAVINGS PLAN FOR EMPLOYEES OF FELISSIMO UNIVERSAL","001","1994-05-01","FELISSIMO UNIVERSAL",,,"10 W. 56TH ST.",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"133561583","2129564438","453220","FELISSIMO UNIVERSAL",,"10 W. 56TH ST.",,"NEW YORK","NY","10019",,,,,,,"133561583","2129564438",,,,"2011-05-21T17:37:45-0500","HARUKO SMITH",,,,,14,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-21","Filed with authorized/valid electronic signature",, "20110519201547P030290723536001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMCHECK 401K PLAN","001","2008-04-01","SPORTS EXPERIENCE LLC",,"AMCHECK DBA SIMPLIFIED BUSINESS SOLUTIONS","5030 E SUNRISE DR",,"PHOENIX","AZ","85044",,,,,,,,,,,,,,,,,,"861026924","4808279707","454390","AMCHECK DBA SIMPLIFIED BUSINESS SOLUTIONS, INC",,"5030 E SUNRISE DR",,"PHOENIX","AZ","85044",,,,,,,"860841768","4807635900",,,,"2011-05-18T13:05:14-0500","DEAN LUCENTE",,,,,16,5,0,6,11,0,11,9,2,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110525113330P030020042279003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"YOST & WEBB MORTUARY INC PROFIT SHARING PLAN","001","1975-01-31","YOST & WEBB MORTUARY, INC",,,"1002 T STREET",,"FRESNO","CA","937211411",,,,,,,,,,,,,,,,,,"941464899","5592374147","812210","YOST & WEBB MORTUARY INC",,"1002 T STREET",,"FRESNO","CA","937211411",,,,,,,"941464899","5592374147",,,,"2011-05-16T14:25:01-0500","WILLARD PHIPPS II",,,,,10,7,1,,8,,8,8,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525095510P040020899095001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"WORLDWIDE J R WOOD LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2000-01-01","WORLDWIDE J R WOOD LLC",,,"14101 W HWY 290","BLDG 900A","AUSTIN","TX","78737",,,,,,,,,,,,,,,,,,"742905561","5128582556","423940","WORLDWIDE J R WOOD LLC",,"14101 W HWY 290","BLDG 900A","AUSTIN","TX","78737",,,,,,,"742905561","5128582556",,,,"2011-05-25T09:55:08-0500","WORLDWIDE J R WOOD LLC",,,,,22,11,0,0,11,0,11,10,1,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110526100344P040066944961004","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"NEPHROLOGY ASSOCIATES OF MACON PC PROFIT SHARING PROFIT SHARING PLAN","001","1979-07-01","NEPHROLOGY ASSOCIATES OF MACON, P C",,,"707 PINE STREET",,"MACON","GA","31201",,,,,,,,,,,,,,,,,,"581365769","4787427374","621111","NEPHROLOGY ASSOCIATES OF MACON P C",,"707 PINE STREET",,"MACON","GA","31201",,,,,,,"581365769","4787427374",,,,"2011-05-26T09:58:45-0500","MARVIN ROBERTS",,,,,2,,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110526115950P030065238209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MELLOR ENGINEERING, INC. 401(K) PLAN","001","1996-01-01","MELLOR ENGINEERING, INC.",,,"887 NORTH 100 EAST, SUITE 1",,"LEHI","UT","84043",,,,,,,"887 NORTH 100 EAST",,"LEHI","UT","84043",,,,,,,"870512618","8017680658","541330","MELLOR ENGINEERING, INC.",,"887 NORTH 100 EAST, SUITE 1",,"LEHI","UT","84043",,,,,,,"870512618","8017680658",,,,"2011-05-26T11:36:37-0500","REED MELLOR","2011-05-26T11:36:37-0500","REED MELLOR",,,80,58,0,10,68,0,68,35,0,,"2E2F2G2J2K3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524145053P040005119461001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OLD FARM OBSTETRICS & GYNECOLOGY, L.L.C. PROFIT SHARING PLAN","003","1990-01-01","OLD FARM OBSTETRICS & GYNECOLOGY, L.L.C.",,,"3970 SOUTH 700 EAST, SUITE 14",,"SALT LAKE CITY","UT","84107",,,,,,,,,,,,,,,,,,"870378962","8012613975","621111","OLD FARM OBSTETRICS & GYNECOLOGY, L.L.C.",,"3970 SOUTH 700 EAST, SUITE 14",,"SALT LAKE CITY","UT","84107",,,,,,,"870378962","8012613975",,,,"2011-05-24T14:50:46-0500","ALAN T. RAPPLEYE, M.D.",,,,,29,24,3,2,29,0,29,29,0,,"2A2E2F2G2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525110733P040020911767001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","002","1998-09-01","GARLAND COUNTY FARMERS ASSOCIATION, INC.",,,"127 GOLF LINK ROAD",,"HOT SPRINGS","AR","71901",,,,,,,,,,,,,,,,,,"710239408","5016236696","115110","GARLAND COUNTY FARMERS ASSOCIATION, INC.",,"127 GOLF LINK ROAD",,"HOT SPRINGS","AR","71901",,,,,,,"710239408","5016236696",,,,"2011-05-25T11:01:02-0500","RANDY BARRETT",,,,,8,10,0,1,11,0,11,8,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525140843P040302532432001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PROGENY SYSTEMS CORPORATION EMPLOYEE BENEFITS PLAN","501","2007-01-01","PROGENY SYSTEMS CORPORATION",,,"9500 INNOVATION LOOP",,"MANASSAS","VA","20110",,,,,,,,,,,,,,,,,,"541766108","7033686107","541512","PROGENY SYSTEMS CORPORATION",,"9500 INNOVATION LOOP",,"MANASSAS","VA","20110",,,,,,,"541766108","7033686107",,,,"2011-05-25T14:07:37-0500","SHARON CONDIA",,,,,354,368,0,0,368,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525173715P040302937536001","1995-08-01","1996-07-31","2",,"0","0","0","0","0","0","0","0","0",,"WENNER BREAD PRODUCTS, INC. EMPLOYEE HEALTH BENEFITS","501","1975-08-19","WENNER BREAD PRODUCTS, INC.",,,"33 RAJON RD",,"BAYPORT","NY","117051101",,,,,,,"33 RAJON RD",,"BAYPORT","NY","117051101",,,,,,,"112366431","6318696262","311800","WENNER BREAD PRODUCTS, INC.",,"33 RAJON RD",,"BAYPORT","NY","117051101",,,,,,,"112366431","6318696262",,,,"2011-05-25T17:31:42-0500","WILLIAM WENNER",,,,,152,171,,,171,,171,,,,,"4A","1",,,,"1",,,,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525064749P040301628736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILMINGTON EAR, NOSE & THROAT ASSOCIATES, P.A. PROFIT-SHARING PLAN","001","1976-11-01","WILMINGTON EAR, NOSE & THROAT ASSOC",,,"2311 DELANEY AVENUE",,"WILMINGTON","NC","28403",,,,,,,,,,,,,,,,,,"561152782","9107628754","621111","WILMINGTON EAR, NOSE & THROAT ASSOC",,"2311 DELANEY AVENUE",,"WILMINGTON","NC","28403",,,,,,,"561152782","9107628754",,,,"2011-05-25T06:47:41-0500","BOB CHAMNESS",,,,,38,21,4,11,36,0,36,36,1,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525065625P040301644288001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM A. COFER, DMD, FAGD, PA 401(K) RETIREMENT PLAN","002","1985-11-01","WILLIAM A. COFER, DMD, FAGD, PA",,,"215 WEST POINSETT STREET",,"GREER","SC","29650",,,,,,,"215 WEST POINSETT STREET",,"GREER","SC","29650",,,,,,,"570690977","8648771891","621210","WILLIAM A. COFER, DMD, FAGD, PA",,"215 WEST POINSETT STREET",,"GREER","SC","29650",,,,,,,"570690977","8648771891",,,,"2011-05-24T14:10:23-0500","WILLIAM COFER",,,,,10,9,0,0,9,0,9,9,0,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110519152311P030010260982001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALDON MANAGEMENT CORPORATION EMPLOYEES 401K PLAN","001","2004-04-01","ALDON MANAGEMENT CORPORATION",,,"7900 WISCONSIN AVE","STE 403","BETHESDA","MD","208143633",,,,,,,,,,,,,,,,,,"520747598","3016565998","531110","ALDON MANAGEMENT CORPORATION",,"7900 WISCONSIN AVE","STE 403","BETHESDA","MD","208143633",,,,,,,"520747598","3016565998",,,,"2011-05-19T15:22:31-0500","CHARLES HARAB",,,,,86,74,1,14,89,0,89,83,0,,"2F2G2J3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110525151235P030020071239001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"LOUBERT S. SUDDABY, MD, PC 401(K) PLAN","003","2010-01-01","LOUBERT S. SUDDABY, MD, PC",,,"3775 SOUTHWESTERN BOULEVARD","SUITE A","ORCHARD PARK","NY","14127",,,,,,,,,,,,,,,,,,"161481828","7166671980","621111","LOUBERT S. SUDDABY, MD, PC",,"3775 SOUTHWESTERN BOULEVARD","SUITE A","ORCHARD PARK","NY","14127",,,,,,,"161481828","7166671980",,,,"2011-05-25T07:56:57-0500","LOUBERT SUDDABY","2011-05-25T07:56:57-0500","LOUBERT SUDDABY",,,10,9,0,4,13,0,13,13,4,,"2A2E2F2G2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110525174921P040302956624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE ARC OF UNION COUNTY, INC. BENEFIT PLAN","501","1991-03-01","THE ARC OF UNION COUNTY, INC.",,,"52 FADEM ROAD",,"SPRINGFIELD","NJ","07081",,,,,,,,,,,,,,,,,,"221686764","9733150006","624100","THE ARC OF UNION COUNTY, INC.",,"52 FADEM ROAD",,"SPRINGFIELD","NJ","07081",,,,,,,"221686764","9733150006",,,,"2011-05-25T17:49:14-0500","ROBBIN JORDAN",,,,,269,257,3,0,260,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525180650P040011362598001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ASSOCIATED SIGN COMPANY 401(K) PROFIT SHARING PLAN & TRUST","001","1999-01-01","ASSOCIATED SIGN COMPANY",,,"3335 W VERNON AVE",,"PHOENIX","AZ","85009",,,,,,,,,,,,,,,,,,"860600613","6022788464","541800","ASSOCIATED SIGN COMPANY",,"3335 W VERNON AVE",,"PHOENIX","AZ","85009",,,,,,,"860600613","6022788464",,,,"2011-05-25T06:06:48-0500","ASSOCIATED SIGN COMPANY",,,,,17,12,0,2,14,0,14,12,1,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110519064958P040062830993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DISTINCTIVE DENTAL CARE ASSOCIATES, P.C. 401K PROFIT SHARING PLAN","001","1995-01-01","DISTINCTIVE DENTAL CARE ASSOCIATES, P.C.",,,"3201 PIONEERS BLVD STE 308",,"LINCOLN","NE","685025963",,,,,,,,,,,,,,,,,,"470693386","4024414400","621210","DISTINCTIVE DENTAL CARE ASSOCIATES, P.C.",,"3201 PIONEERS BLVD STE 308",,"LINCOLN","NE","685025963",,,,,,,"470693386","4024414400",,,,"2011-05-19T06:36:37-0500","DEAN R DUTTER",,,,,6,6,0,1,7,0,7,6,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110525151356P030305908016001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"BRUNET GARCIA ADVERTISING 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","BRUNET GARCIA ADVERTISING",,,"BRUNET GARCIA MULTICULTURAL","1510 HENDRICKS AVE","JACKSONVILLE","FL","32207",,,,,,,,,,,,,,,,,,"331064120","9043461977","541800","BRUNET GARCIA ADVERTISING",,"BRUNET GARCIA MULTICULTURAL","1510 HENDRICKS AVE","JACKSONVILLE","FL","32207",,,,,,,"331064120","9043461977","NO",,,"2011-05-25T03:13:54-0500","BRUNET GARCIA ADVERTISING",,,,,14,16,0,1,17,0,17,9,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525181151P040020984823001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RFOCUS CORPORATION 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","RFOCUS CORPORATION",,,"280 N KAYS DR. STE 200",,"KAYSVILLE","UT","84037",,,,,,,,,,,,,,,,,,"870677328","8015462000","541511","RFOCUS CORPORATION",,"280 N KAYS DR. STE 200",,"KAYSVILLE","UT","84037",,,,,,,"870677328","8015462000",,,,"2011-05-25T06:11:50-0500","RFOCUS CORPORATION",,,,,9,7,0,0,7,0,7,7,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110524125015P040001882244001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OHIO VALLEY GAS CORPORATION FLEXIBLE COMPENSATION PLAN TRUST","501","1988-08-01","OHIO VALLEY GAS CORPORATION",,,"PO BOX 469","111 ENERGY PARK DRIVE","WINCHESTER","IN","47394",,,,,,,"PO BOX 469","111 ENERGY PARK DRIVE","WINCHESTER","IN","47394",,,,,,,"350778453","7655846842","221210","OHIO VALLEY GAS CORPORATION",,"PO BOX 469","111 ENERGY PARK DRIVE","WINCHESTER","IN","47394",,,,,,,"350778453","7655846842",,,,"2011-05-24T12:46:23-0500","STEVEN KERNEY",,,,,94,94,,,94,,94,,,,,"4A4D",,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525141610P030305778416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORPTAX INC EMPLOYEE WELFARE BENEFIT PLAN","501","2006-08-01","CORPTAX INC",,,"1751 LAKE COOK ROAD, SUITE 100",,"DEERFIELD","IL","60015",,,,,,,,,,,,,,,,,,"010868383","8472368000","511210","CORPTAX INC",,"1751 LAKE COOK ROAD, SUITE 100",,"DEERFIELD","IL","60015",,,,,,,"010868383","8472368000",,,,"2011-05-25T14:16:06-0500","BELINDA KIOUPAKIS",,,,,351,363,3,0,366,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110519120212P030019048935002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"M A WHEAT & SON INC PROFIT SHARING PLAN","001","1978-01-01","M A WHEAT & SON, INC",,,"P O BOX 1289",,"EDINBURG","TX","78540",,,,,,,,,,,,,,,,,,"741856225","9566878291","424990","M A WHEAT & SON INC",,"P O BOX 1289",,"EDINBURG","TX","78540",,,,,,,"741856225","9566878291",,,,"2011-05-19T11:30:28-0500","MARK A WHEAT",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110519140044P030005314725001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CASSO SOLAR CORP 401(K) PROFIT SHARING PLAN & TRUST","003","1993-01-01","CASSO SOLAR CORP",,,"230 ROUTE 202",,"POMONA","NY","10970",,,,,,,,,,,,,,,,,,"112304444","8453542500","541990","CASSO SOLAR CORP",,"230 ROUTE 202",,"POMONA","NY","10970",,,,,,,"112304444","8453542500",,,,"2011-05-19T02:00:42-0500","CASSO SOLAR CORP",,,,,78,5,0,11,16,0,16,15,4,,"2E2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110519123159P040019831671001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"V I ENGINEERING, INC. 401(K) PROFIT SHARING PLAN","001","1995-01-01","V I ENGINEERING INC",,,"27300 HAGGERTY RD","STE F-10","FARMINGTON HILLS","MI","48331",,,,,,,"27300 HAGGERTY RD","STE F-10","FARMINGTON HILLS","MI","48331",,,,,,,"383078763","2484891200","541512","V I ENGINEERING INC",,"27300 HAGGERTY RD","STE F-10","FARMINGTON HILLS","MI","48331",,,,,,,"383078763","2484891200",,,,"2011-05-19T12:31:34-0500","DIANE TIBBS",,,,,55,24,0,20,44,1,45,42,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110524093046P030019850839001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLUWARE, INC. 401(K) PROFIT SHARING PLAN","001","1993-01-01","BLUWARE, INC.",,,"9801 WESTHEIMER","SUITE 950","HOUSTON","TX","77042",,,,,,,,,,,,,,,,,,"760387892","7133351500","541519","BLUWARE, INC.",,"9801 WESTHEIMER","SUITE 950","HOUSTON","TX","77042",,,,,,,"760387892","7133351500",,,,"2011-05-24T09:30:28-0500","DEBORAH SIMMONS","2011-05-24T09:30:28-0500","DEBORAH SIMMONS",,,62,56,0,10,66,0,66,55,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524095359P030010690214001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RENCO TOOL CO., INC. 401(K) PROFIT SHARING PLAN","001","2001-01-01","RENCO TOOL CO., INC.",,,"21 S. INDUSTRIAL",,"PERRYTON","TX","79070",,,,,,,,,,,,,,,,,,"752561330","8064353614","811310","RENCO TOOL CO., INC.",,"21 S. INDUSTRIAL",,"PERRYTON","TX","79070",,,,,,,"752561330","8064353614",,,,"2011-05-24T09:52:04-0500","REN HENSLEY",,,,,18,13,0,3,16,0,16,14,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525075039P040301745904001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","0","0","0","0",,"FCX PERFORMANCE, INC. EMPLOYEE BENEFIT PLAN","501","1999-10-01","FCX PERFORMANCE, INC.",,,"3000 E. 14TH AVENUE",,"COLUMBUS","OH","43219",,,,,,,"3000 E. 14TH AVENUE",,"COLUMBUS","OH","43219",,,,,,,"311644350","6142531996","541990","FCX PERFORMANCE, INC.",,"3000 E. 14TH AVENUE",,"COLUMBUS","OH","43219",,,,,,,"311644350","6142531996",,,,"2011-05-25T06:26:02-0500","CHARLES HALE",,,,,174,175,,,175,,175,,,,,"4A4B4D4H4G","1",,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110524110323P030005546437001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CORR DISTRIBUTORS, INC. 401K PLAN","001","1996-01-01","CORR DISTRIBUTORS, INC.",,,"89 PEARCE AVE",,"BUFFALO","NY","14150",,,,,,,,,,,,,,,,,,"161117762","7168738323","423990","CORR DISTRIBUTORS, INC.",,"89 PEARCE AVE",,"BUFFALO","NY","14150",,,,,,,"161117762","7168738323",,,,"2011-05-24T10:54:10-0500","CAROL G CORR",,,,,27,29,0,2,31,0,31,22,0,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524161358P040009639730001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HONOLULU REPORTING SERVICES PROFIT SHARING PLAN","002","1998-01-01","FRANCES KRAMER","HONOLULU REPORTING SERVICES",,"1000 BISHOP STREET, SUITE 401",,"HONOLULU","HI","968134204",,,,,,,,,,,,,,,,,,"990216539","8085246288","561490","FRANCES KRAMER",,"1000 BISHOP STREET, SUITE 401",,"HONOLULU","HI","968134204",,,,,,,"990216539","8085246288",,,,"2011-05-24T00:28:08-0500","FRANCES KRAMER","2011-05-24T00:28:08-0500","FRANCES KRAMER",,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G2R2T3B3D","4B","1","0","1","0","0","0","1","0","0","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110519094019P040286509008001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SILVER FOX, INC. 401(K) PLAN","001","1999-01-01","SILVER FOX, INC.",,,"3785 AIRPORT ROAD NORTH","SUITE B-1","NAPLES","FL","34105",,,,,,,"3785 AIRPORT ROAD NORTH","SUITE B-1","NAPLES","FL","34105",,,,,,,"561129676","2392627598","448120","SILVER FOX, INC.",,"3785 AIRPORT ROAD NORTH","SUITE B-1","NAPLES","FL","34105",,,,,,,"561129676","2392627598",,,,"2011-05-19T09:37:51-0500","RAY STUCKEY",,,,,64,42,0,12,54,0,54,33,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110524154752P040020759879007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ASHEVILLE WOMEN'S MEDICAL CENTER, P.A. 401(K) PROFIT SHARING PLAN","001","2000-01-01","ASHEVILLE WOMEN'S MEDICAL CENTER, P.A.",,,"143 ASHELAND AVE",,"ASHEVILLE","NC","28801",,,,,,,"143 ASHELAND AVE",,"ASHEVILLE","NC","28801",,,,,,,"561186739","8282589191","621111","ASHEVILLE WOMEN'S MEDICAL CENTER, P.A.",,"143 ASHELAND AVE",,"ASHEVILLE","NC","28801",,,,,,,"561186739","8282589191",,,,"2011-05-24T11:13:11-0500","STEPHEN T HILL MD","2011-05-24T11:13:11-0500","STEPHEN T HILL MD",,,72,47,1,21,69,,69,69,3,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524184205P040020779063001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JELIGHT COMPANY, INC. 401(K) PLAN","001","2000-01-01","JELIGHT COMPANY, INC.",,,"2 MASON",,"IRVINE","CA","92618",,,,,,,,,,,,,,,,,,"330378585","9493808774","334500","JELIGHT COMPANY, INC.",,"2 MASON",,"IRVINE","CA","92618",,,,,,,"330378585","9493808774",,,,"2011-05-24T18:42:01-0500","JOSEPH CHILDERS","2011-05-24T18:42:01-0500","RENATA JELIC",,,31,31,0,0,31,0,31,0,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524151906P040020754759001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAD INSURANCE AGENCY, INC. PROFIT SHARING PLANJAD INSURANCE AGENCY, INC. PROFIT SHARING PLAN","002","1996-01-01","JACK HUANG",,,"135 E. LIVE OAK AVE., STE. 210",,"ARCADIA","CA","91006",,,,,,,"135 E. LIVE OAK AVE., STE. 210",,"ARCADIA","CA","91006",,,,,,,"954065204","6264468300","524140","JACK HUANG",,"135 E. LIVE OAK AVE., STE. 210",,"ARCADIA","CA","91006",,,,,,,"954065204","6264468300",,,,"2011-05-24T15:18:50-0500","JOSHUA LEE",,,,,2,2,0,0,2,0,2,2,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525121719P040302301920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAVID R. HALL, INC. 401(K) PLAN","001","1998-01-01","DAVID R. HALL, INC.",,,"719 BLUE CRAB ROAD",,"NEWPORT NEWS","VA","23606",,,,,,,,,,,,,,,,,,"541063382","7578730187","238210","DAVID R. HALL, INC.",,"719 BLUE CRAB ROAD",,"NEWPORT NEWS","VA","23606",,,,,,,"541063382","7578730187",,,,"2011-05-25T12:17:12-0500","TANYA Y. HERRMANN",,,,,34,28,0,5,33,0,33,24,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110526093556P040066934033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VISIONARY ENTERPRISES INCORPORATED 401K PLAN","001","2008-04-05","VISIONARY ENTERPRISES INCORPORATED",,,"1449 NW 122ND STREET",,"CLIVE","IA","50325",,,,,,,,,,,,,,,,,,"262347069","5152244048","621610","VISIONARY ENTERPRISES INCORPORATED",,"1449 NW 122ND STREET",,"CLIVE","IA","50325",,,,,,,"262347069","5152244048",,,,"2011-05-26T09:35:43-0500","BRIAN HILGENBERG","2011-05-26T09:35:43-0500","BRIAN HILGENBERG",,,8,9,0,0,9,0,9,3,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524142240P040009632514001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","0","0",,"WHITE ELECTRONIC DESIGNS CORPORATION MEDICAL DENTAL LIFE AND AD&D PLAN","510","1989-09-01","WHITE ELECTRONIC DESIGNS CORPORATION",,,"3601 E. UNIVERSITY DRIVE",,"PHOENIX","AZ","850347217",,,,,,,,,,,,,,,,,,"350905052","6024371520","334410","WHITE ELECTRONIC DESIGNS CORPORATION",,"3601 E. UNIVERSITY DRIVE",,"PHOENIX","AZ","850347217",,,,,,,"350905052","6024371520",,,,"2011-05-24T14:22:08-0500","KAREN KOCK",,,,,270,0,0,0,0,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525105339P040020909239001","2008-01-01","2008-12-31","2",,"0","1","1","0","0","0","0","0","0",,"INDEPENDENT FOOD PROCESSORS 401K PLAN","001","1990-01-01","INDEPENDENT FOOD PROCESSORS CO.",,,"P O BOX 1588",,"YAKIMA","WA","989071588",,,,,,,,,,,,,,,,,,"911274276","5094576487","111300","INDEPENDENT FOOD PROCESSORS CO.",,"P O BOX 1588",,"YAKIMA","WA","989071588",,,,,,,"911274276","5094576487",,,,"2011-05-25T10:53:16-0500","DON GIBSON",,,,,216,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3E3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110601174049P030068664961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLOW STREET WOOD FIRED PIZZA 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","WILLOW STREET WOOD FIRED PIZZA",,,"20 S. SANTA CRUZ AVE, STE 105",,"LOS GATOS","CA","95030",,,,,,,,,,,,,,,,,,"770322076","4083995501","722110","WILLOW STREET WOOD FIRED PIZZA",,"20 S. SANTA CRUZ AVE, STE 105",,"LOS GATOS","CA","95030",,,,,,,"770322076","4083995501",,,,"2011-06-01T05:40:47-0500","WILLOW STREET WOOD FIRED PIZZA",,,,,14,88,0,0,88,0,88,14,0,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531081649P030067842417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHARD'S RESTAURANT SUPPLY,INC. PROFIT SHARING PLAN","001","1995-01-01","RICHARDS RESTAURANT SUPPLY,INC.",,,"P.O. DRAWER 4035",,"HOUMA","LA","70361",,,,,,,,,,,,,,,,,,"720886948","9858689240","453990","RICHARDS RESTAURANT SUPPLY, INC.",,"P.O. DRAWER 4035",,"HOUMA","LA","70361",,,,,,,"720886948","9858689240",,,,"2011-05-31T08:08:14-0500","HENRY J. RICHARD",,,,,13,9,0,4,13,0,13,13,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110526170008P030020314551001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"NORTHWEST FASTENER SALES PROFIT SHARING PLAN","002","1975-03-31","NORTHWEST FASTENER SALES INC",,"LEONARD ODEGAARD","10764 SW MANHASSET DRIVE",,"TUALATIN","OR","97062",,,,,,,,,,,,,,,,,,"930619171","5036916040","423990","NORTHWEST FASTENER SALES INC","LEONARD ODEGAARD","10764 SW MANHASSET DRIVE",,"TUALATIN","OR","97062",,,,,,,"930619171","5036916040",,,,"2011-05-26T17:49:54-0500","LEONARD G. ODEGAARD",,,,,10,10,0,0,10,0,10,10,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110601140750P040002126323001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GUYLIAN USA, INC. RETIREMENT PLAN","001","1995-01-01","GUYLIAN USA, INC.",,,"560 SYLVAN AVENUE",,"ENGLEWOOD CLIFFS","NJ","07632",,,,,,,,,,,,,,,,,,"223290532","2018714144","424990","GUYLIAN USA, INC.",,"560 SYLVAN AVENUE",,"ENGLEWOOD CLIFFS","NJ","07632",,,,,,,"223290532","2018714144",,,,"2011-06-01T14:07:40-0500","MICHAEL COBB","2011-06-01T14:07:40-0500","MICHAEL COBB",,,4,3,0,0,3,0,3,3,0,,"2A2E2G2J2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601155218P030068615153002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WOODCRAFT, LLC WELFARE PLAN","501","2006-09-01","WOODCRAFT, LLC",,,"1177 ROSEMAR ROAD, P.O. BOX 1686",,"PARKERSBURG","WV","261021686",,,,,,,,,,,,,,,,,,"204442513","3044225412","444130","WOODCRAFT, LLC",,"1177 ROSEMAR ROAD, P.O. BOX 1686",,"PARKERSBURG","WV","261021686",,,,,,,"204442513","3044225412",,,,"2011-06-01T11:13:53-0500","JEFF FORBES","2011-06-01T11:13:53-0500","JEFF FORBES",,,169,160,2,0,162,,,,,,,"4A4B4D4E4H4Q","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601155218P030068615153003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SIRCHIE ACQUISITION COMPANY, LLC HEALTH & WELFARE BENEFIT PLAN","501","2009-10-15","SIRCHIE ACQUISITION COMPANY, LLC",,,"100 HUNTER PLACE",,"YOUNGSVILLE","NC","27596",,,,,,,"100 HUNTER PLACE",,"YOUNGSVILLE","NC","27596",,,,,,,"261186682","9195542244","339900","SIRCHIE ACQUISITION COMPANY, LLC",,"100 HUNTER PLACE",,"YOUNGSVILLE","NC","27596",,,,,,,"261186682","9195542244",,,,"2011-05-26T04:35:52-0500","JENNIFER WALTON",,,,,218,132,,,132,,,,,,,"4A4B4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531082431P040069618481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MASTER LOCK COMPANY SEVERANCE PAY PLAN","511","1992-01-01","MASTER LOCK COMPANY",,,"137 WEST FOREST HILL AVENUE",,"OAK CREEK","WI","531542901",,,,,,,,,,,,,,,,,,"391142433","4145715625","332510","MASTER LOCK COMPANY",,"137 WEST FOREST HILL AVENUE",,"OAK CREEK","WI","531542901",,,,,,,"391142433","4145715625",,,,"2011-05-27T14:39:37-0500","LAUREN TASHMA","2011-05-27T14:39:37-0500","LAUREN TASHMA",,,255,239,3,0,242,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601091750P040320353920001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FOSTER COLONIAL SHOP PROFT SHARING PLAN","001","1983-01-01","PATRICIA A. FOSTER FOSTER COLONIAL SHOP",,,"70 RUSSELL ROAD",,"WEST NEWTON","MA","02465",,,,,,,"70 RUSSELL ROAD",,"WEST NEWTON","MA","02465",,,,,,,"046352478","6179653262","453220","PATRICIA A. FOSTER FOSTER COLONIAL SHOP",,"70 RUSSELL ROAD",,"WEST NEWTON","MA","02465",,,,,,,"046352478","6179653262",,,,"2011-05-24T06:41:29-0500","PATRICIA FOSTER",,,,,2,2,,,2,,2,2,,,"2E2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110526173346P040305658176002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MICHAEL S HAWES & ASSOCIATES PROFIT SHARING PLAN","003","1995-01-01","MICHAEL S HAWES & ASSOCIATES",,,"4168 DOUGLAS BLVD STE 300",,"GRANITE BAY","CA","95746",,,,,,,,,,,,,,,,,,"680154875","9167919095","541211","MICHAEL S HAWES & ASSOCIATES",,"4168 DOUGLAS BLVD STE 300",,"GRANITE BAY","CA","95746",,,,,,,"680154875","9167919095",,,,"2011-05-26T17:11:51-0500","RITA MASON",,,,,3,3,,,3,,3,3,,,"2G2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110531105843P040069695697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRENT J. BOWEN, MD PC 401(K) & PROFIT SHARING PLAN","001","2008-06-01","BRENT J. BOWEN, MD PC",,,"PO BOX 57547",,"SALT LAKE CITY","UT","84157",,,,,,,,,,,,,,,,,,"870573977","8017165300","621111","BRENT J. BOWEN, MD PC",,"PO BOX 57547",,"SALT LAKE CITY","UT","84157",,,,,,,"870573977","8017165300",,,,"2011-05-31T10:58:38-0500","BRENT J BOWEN MD","2011-05-31T10:58:38-0500","BRENT J BOWEN MD",,,5,4,0,0,4,0,4,4,0,,"2A2E2F2G2J3F",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531112336P030009857922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHILADELPHIA EAR, NOSE & THROAT SURGICAL ASSOCIATES, P.C. PROFIT SHARING 401(K) PLAN","004","1977-12-01","PHILADELPHIA EAR, NOSE & THROAT SURGICAL ASSOCIATES, P.C.",,,"2340 E. ALLEGHENY AVENUE",,"PHILADELPHIA","PA","19134",,,,,,,,,,,,,,,,,,"232013785","2154236670","621111","PHILADELPHIA EAR, NOSE & THROAT SURGICAL ASSOCIATES, P.C.",,"2340 E. ALLEGHENY AVENUE",,"PHILADELPHIA","PA","19134",,,,,,,"232013785","2154236670",,,,"2011-05-31T11:23:35-0500","LEE ROWE","2011-05-31T11:23:35-0500","LEE ROWE",,,17,12,0,5,17,0,17,17,0,,"2A2E2F2H2J2R2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110526122305P030065245665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MATOCHA ASSOCIATES 401(K) PROFIT SHARING PLAN AND TRUST","001","1984-01-01","MATOCHA ASSOCIATES",,,"17 WEST 220 22ND STREET, SUITE 500",,"OAKBROOK TERRACE","IL","60181",,,,,,,"17 WEST 220 22ND STREET, SUITE 500",,"OAKBROOK TERRACE","IL","60181",,,,,,,"363003635","6305302300","541310","MATOCHA ASSOCIATES",,"17 WEST 220 22ND STREET, SUITE 500",,"OAKBROOK TERRACE","IL","60181",,,,,,,"363003635","6305302300",,,,"2011-05-26T11:33:00-0500","GEORGE MATOCHA",,,,,26,12,2,8,22,0,22,22,2,,"2A2E2F2H2J2T3B3D3H",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110601120025P030068499089001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"FIRST CLOVER LEAF BANK PROFIT SHARING PLAN","004","2010-01-01","FIRST CLOVER LEAF BANK",,,"P.O. BOX 540",,"EDWARDSVILLE","IL","620250540",,,,,,,"6814 GOSHEN RD",,"EDWARDSVILLE","IL","62025",,,,,,,"370259310","6186566122","522110","FIRST CLOVER LEAF BANK",,"P.O. BOX 540",,"EDWARDSVILLE","IL","620250540",,,,,,,"370259310","6186566122",,,,"2011-06-01T11:51:03-0500","DENNIS M. TERRY",,,,,0,76,0,1,77,0,77,75,0,,"2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531133027P030009865378001","2010-10-01","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"EASTERN SHORE GASTROENTEROLOGY, TC RETIREMENT PLAN","001","2010-10-01","EASTERN SHORE GASTROENTEROLOGY, TC",,,"188 HOSPITAL DRIVE","SUITE 405","FAIRHOPE","AL","36532",,,,,,,,,,,,,,,,,,"270973761","2512794600","621111","EASTERN SHORE GASTROENTEROLOGY, TC",,"188 HOSPITAL DRIVE","SUITE 405","FAIRHOPE","AL","36532",,,,,,,"270973761","2512794600",,,,"2011-05-31T13:30:12-0500","STEPHEN COLEMAN","2011-05-31T13:30:12-0500","STEPHEN COLEMAN",,,4,3,0,1,4,0,4,4,0,,"2E2F2G2J2K2T3D2A",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531150331P040002108963001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADVANCED PROTOTYPE TECHNOLOGIES INC","001","2004-01-01","ADVANCED PROTOTYPE TECHNOLOGIES INC 401K",,,"4208 RUSSELL ROAD UNITS K.L.M",,"MUKILTEO","WA","98275",,,,,,,"4208 RUSSELL ROAD UNITS K.L.M",,"MUKILTEO","WA","98275",,,,,,,"912071891","4253158605","332900","ADVANCED PROTOTYPE TECHNOLOGIES INC 401K","MARY J FABENS","4208 RUSSELL ROAD UNITS K.L.M",,"MUKILTEO","WA","98275",,,,,,,"912071891","4253158605",,,,"2011-05-31T14:56:49-0500","MARY FABENS",,,,,3,3,,,3,,3,3,,,"2G2J3D",,,,"1",,,,"1",,"0",,"0",,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531150343P030068016081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANDERSON & LEVINE L.L.P. 401(K) PROFIT SHARING PLAN","001","1997-01-01","ANDERSON & LEVINE L.L.P.",,,"14785 PRESTON ROAD, SUITE 650",,"DALLAS","TX","75254",,,,,,,,,,,,,,,,,,"752610489","9726649552","541110","ANDERSON & LEVINE L.L.P.",,"14785 PRESTON ROAD, SUITE 650",,"DALLAS","TX","75254",,,,,,,"752610489","9726649552",,,,"2011-05-31T14:45:53-0500","RODNEY M ANDERSON","2011-05-31T14:45:53-0500","RODNEY M ANDERSON",,,3,2,0,0,2,0,2,2,0,,"2A2E2J2K2G3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601141152P030009946786001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHUWARGER & COMPANY LLP 401(K) PLAN","001","1999-01-01","SHUWARGER & COMPANY LLP",,,"11075 SANTA MONICA BLVD.","# 150","LOS ANGELES","CA","900250000",,,,,,,,,,,,,,,,,,"954507699","3104737575","541211","SHUWARGER & COMPANY LLP",,"11075 SANTA MONICA BLVD.","# 150","LOS ANGELES","CA","900250000",,,,,,,"954507699","3104737575",,,,"2011-06-01T14:11:45-0500","ROBERT SHUWARGER",,,,,10,10,0,0,10,0,10,9,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601154607P040321110912001","2008-10-01","2008-12-31","2",,"1","1","0","1","0","0","0","0","0",,"FAKO & ASSOCIATES, INC. 401(K) PLAN","001","2008-10-01","FAKO & ASSOCIATES, INC.",,,"1440 MAPLE, STE 10A",,"LISLE","IL","60532",,,,,,,,,,,,,,,,,,"364341488","6302427111","519100","FAKO & ASSOCIATES, INC.",,"1440 MAPLE, STE 10A",,"LISLE","IL","60532",,,,,,,"364341488","6302427111",,,,"2011-06-01T15:43:57-0500","DAVE FAKO","2011-06-01T15:43:57-0500","DAVE FAKO","2011-06-01T15:43:57-0500","DAVE FAKO",3,2,0,0,2,0,2,2,0,0,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","1","1","0",,"0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110601065917P040070176545001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPRING FARM, INC. PROFIT SHARING PLAN","002","1992-01-01","SPRING FARM, INC.",,,"P.O. BOX 301",,"SAG HARBOR","NY","11963",,,,,,,,,,,,,,,,,,"112154372","6317250038","114210","SPRING FARM, INC.",,"P.O. BOX 301",,"SAG HARBOR","NY","11963",,,,,,,"112154372","6317250038",,,,"2011-06-01T06:37:52-0500","DAVID SCHELLINGER","2011-06-01T06:37:52-0500","DAVID SCHELLINGER",,,16,8,0,6,14,2,16,14,0,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531083129P040010207266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CUMBERLAND MEMORIAL HOSPITAL, INC. HEALTH AND DENTAL PLAN","502","1983-01-01","CUMBERLAND MEMORIAL HOSPITAL, INC.",,,"P.O. BOX 37",,"CUMBERLAND","WI","548290037",,,,,,,"1110 7TH AVENUE",,"CUMBERLAND","WI","548290037",,,,,,,"390831153","7158222741","622000","CUMBERLAND MEMORIAL HOSPITAL, INC.",,"P.O. BOX 37",,"CUMBERLAND","WI","548290037",,,,,,,"390831153","7158222741",,,,"2011-05-27T11:31:06-0500","DEBORA KUNFERMAN",,,,,109,114,0,0,114,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110526084341P030065159473001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"ROUND TABLE SERVICES, L.L.C. CASH BALANCE PLAN","002","2010-01-01","ROUND TABLE SERVICES, L.L.C.",,,"319 LENOX AVENUE",,"WESTFIELD","NJ","07090",,,,,,,,,,,,,,,,,,"223671237","9087897310","541219","ROUND TABLE SERVICES, L.L.C.",,"319 LENOX AVENUE",,"WESTFIELD","NJ","07090",,,,,,,"223671237","9087897310",,,,"2011-05-26T08:43:33-0500","STEVEN GIACONA",,,,,15,14,0,0,14,0,14,,1,,"1A1C1G3B",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110526084508P030065160225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE LARSON LAW FIRM PC 401(K) PLAN AND TRUST","001","2007-01-01","THE LARSON LAW FIRM PC",,,"1800 BLANKENSHIP RD STE 400",,"WEST LINN","OR","970684197",,,,,,,"1800 BLANKENSHIP RD STE 400",,"WEST LINN","OR","970684197",,,,,,,"753083464","5037421821","541110","THE LARSON LAW FIRM PC",,"1800 BLANKENSHIP RD STE 400",,"WEST LINN","OR","970684197",,,,,,,"753083464","5037421821",,,,"2011-05-26T08:29:49-0500","JOHN LARSON",,,,,6,6,0,0,6,0,6,6,0,,"2A2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110601084717P040070228593010","2009-04-01","2010-03-31","2",,,,,,,,,"1",,,"TITAN AMERICA LLC CAFETERIA PLAN","502","1998-01-01","TITAN AMERICA LLC",,,,,,,,,,,,,,"1151 AZALEA GARDEN ROAD",,"NORFOLK","VA","23502",,,,,,,"980124782","7878586500","339900","TITAN AMERICA LLC",,,,,,,,,,,,,"980124782","7878586500",,,,"2011-06-01T04:17:29-0500","YVONNE SMITH",,,,,1562,1382,,,1382,,,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601155209P040022179719001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NEC FOUNDATION OF AMERICA EMPLOYEES' RETIREMENT PLAN","001","1992-03-01","NEC FOUNDATION OF AMERICA",,"MARK ZANOTTO","6555 N. STATE HWY. 161",,"IRVING","TX","75039",,,,,,,"6555 N. STATE HWY. 161",,"IRVING","TX","75039",,,,,,,"113059554","2142622238",,"NEC FOUNDATION OF AMERICA","MARK ZANOTTO","6555 N. STATE HWY. 161",,"IRVING","TX","75039",,,,,,,"113059554","2142622238",,,,"2011-06-01T15:28:31-0500","MARK ZANOTTO",,,,,2,,,,,0,0,2,0,,"2L",,"1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531092726P040069643537001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GROUP LIFE/AD & D & LTD PLAN","503","2001-01-01","RAND WORLDWIDE",,,"161 WORCESTER ROAD SUITE 401",,"FRAMINGHAM","MA","01701",,,,,,,,,,,,,,,,,,"382850507","5086631499","541519","RAND WORLDWIDE",,"161 WORCESTER ROAD SUITE 401",,"FRAMINGHAM","MA","01701",,,,,,,"382850507","5086631499",,,,"2011-05-31T09:27:21-0500","CAROLE TRASK",,,,,148,130,0,0,130,,,,,,,"4B4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110527130323P040009903026001","2010-01-01","2010-12-31","3",,"0","0","0","0",,,,,,,"PATRIOT RAIL 401(K) PLAN","001","1986-01-01","PATRIOT RAIL CORP.",,,"2255 GLADES ROAD","SUITE 342W","BOCA RATON","FL","33431",,,,,,,"2255 GLADES ROAD","SUITE 342W","BOCA RATON","FL","33431",,,,,,,"205657782","5614435300","482110","PATRIOT RAIL CORP.",,"2255 GLADES ROAD","SUITE 342W","BOCA RATON","FL","33431",,,,,,,"205657782","5614435300",,,,"2011-05-27T13:02:55-0500","MARTIN SMITH",,,,,50,88,0,0,88,0,88,40,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110530124901P030067413137001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"OASYS CONSULTING, INC. 401(K) PROFIT SHARING PLAN 002","002","2009-01-01","OASYS CONSULTING, INC.",,,"809 WATERFORD ESTATES MNR",,"CANTON","GA","30114",,,,,,,"809 WATERFORD ESTATES MNR",,"CANTON","GA","30114",,,,,,,"411808249","7703598064","541519","OASYS CONSULTING, INC.",,"809 WATERFORD ESTATES MNR",,"CANTON","GA","30114",,,,,,,"411808249","7703598064",,,,"2011-05-30T12:48:29-0500","MICHAEL ROBINSON",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-30","Filed with authorized/valid electronic signature",, "20110531110932P040069700161001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"3D CONSTRUCTION 401K SAVINGS PLAN","001","2000-01-01","3D CONSTRUCTION , INC.",,,"496 S. PINE ST.",,"BURLINGTON","WI","53105",,,,,,,,,,,,,,,,,,"391687452","2627634600","236110","3D CONSTRUCTION , INC.",,"496 S. PINE ST.",,"BURLINGTON","WI","53105",,,,,,,"391687452","2627634600",,,,"2011-05-31T11:00:58-0500","JERROD M BOUCHER",,,,,18,13,0,2,15,0,15,15,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531113104P030067926289001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"GROUP LEGAL PLAN FOR DISNEY","530","2004-01-01","THE WALT DISNEY COMPANY",,,"500 S. BUENA VISTA STREET",,"BURBANK","CA","915217490",,,,,,,,,,,,,,,,,,"954545390","8185602611","512100","INVESTMENT AND ADMINISTRATIVE COMMITTEE",,"500 S. BUENA VISTA STREET",,"BURBANK","CA","915217490",,,,,,,"273578379","8185602611",,,,"2011-05-25T16:44:41-0500","JEFFREY SHAPIRO","2011-05-31T11:09:45-0500","BARBARA KELLAMS",,,10387,10718,0,0,10718,,10718,,,,,"4G","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531120550P030321372416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BETTY AUTON-BECK, A PROFESSIONAL LAW CORPORATION 401(K) PROFIT SHARING PLAN.","001","1994-01-01","BETTY AUTON-BECK, A PROFESSIONAL LAW CORPORATION",,,"300 E. STATE ST. SUITE 200",,"REDLANDS","CA","92373",,,,,,,,,,,,,,,,,,"202439193","9097925882","541110","BETTY AUTON-BECK, A PROFESSIONAL LAW CORPORATION",,"300 E. STATE ST. SUITE 200",,"REDLANDS","CA","92373",,,,,,,"202439193","9097925882",,,,"2011-05-31T12:03:48-0500","BETTY AUTON-BECK","2011-05-31T12:03:48-0500","BETTY AUTON-BECK",,,7,6,0,0,6,0,6,6,0,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110526152112P030065324753001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"CENTEK SOLUTIONS INC PENSION PLAN","001","1999-05-14","CENTEK SOLUTIONS INC",,,"1135 IRIS DRIVE",,"MOUNTAINSIDE","NJ","07092",,,,,,,"1135 IRIS DRIVE",,"MOUNTAINSIDE","NJ","07092",,,,,,,"223654427",,"541519","CENTEK SOLUTIONS INC",,"1135 IRIS DRIVE",,"MOUNTAINSIDE","NJ","07092",,,,,,,"223654427",,,,,"2011-05-26T15:20:57-0500","JONATHAN SHUM",,,,,1,0,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110527143558P030065843281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACTUARIES & ASSOCIATES CAFETERIA PLAN","501","1993-01-01","SIXTY-FORTY, INC.",,,"701 S. TYLER",,"AMARILLO","TX","79101",,,,,,,,,,,,,,,,,,"760018527","8063733624","541990","SIXTY-FORTY, INC.",,"701 S. TYLER",,"AMARILLO","TX","79101",,,,,,,"760018527","8063733624",,,,"2011-05-27T14:34:07-0500","STEVE HOUCHIN","2011-05-27T14:34:07-0500","STEVE HOUCHIN",,,13,12,,,12,,,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110527150355P030065858593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM L. BONNELL COMPANY, INC. SUPPLEMENTAL BENEFITS PLAN","502","1996-01-01","WILLIAM L. BONNELL COMPANY, INC.",,"TREDEGAR CORPORATION","1100 BOULDERS PARKWAY",,"RICHMOND","VA","232254000",,,,,,,,,,,,,,,,,,"580657190","8043301288","332300","WILLIAM L. BONNELL COMPANY, INC.","TREDEGAR CORPORATION","1100 BOULDERS PARKWAY",,"RICHMOND","VA","232254000",,,,,,,"580657190","8043301288",,,,"2011-05-27T15:03:50-0500","JANET M. WHITLEY",,,,,880,874,0,0,874,,,,,,,"4A4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110531175519P030009880450001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SILKEN, INC. 401(K) PLAN","001","2000-01-01","SILKEN, INC.",,,"P.O. BOX 480",,"MIDLOTHIAN","TX","76065",,,,,,,,,,,,,,,,,,"751467241","9727233528","237210","SILKEN, INC.",,"P.O. BOX 480",,"MIDLOTHIAN","TX","76065",,,,,,,"751467241","9727233528",,,,"2011-05-31T17:55:13-0500","JANICE STREET",,,,,8,4,0,0,4,0,4,4,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110601120927P030009938642001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NAVEEN DHAR, M.D., INC. 401(K) PROFIT SHARING PLAN","003","2006-01-01","NAVEEN DHAR, M.D., INC.",,,"12665 GARDEN GROVE BLVD","STE 614","GARDEN GROVE","CA","92843",,,,,,,"12665 GARDEN GROVE BLVD","STE 614","GARDEN GROVE","CA","92843",,,,,,,"330122534","7146367133","621111","NAVEEN DHAR, M.D., INC.",,"12665 GARDEN GROVE BLVD","STE 614","GARDEN GROVE","CA","92843",,,,,,,"330122534","7146367133",,,,"2011-06-01T12:08:50-0500","USHA DHAR",,,,,4,4,0,0,4,0,4,4,0,,"2A2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110530130013P030009788802001","2010-02-01","2011-01-31","2",,,,,,,,,,,,"W. GERALD HARRIS DDS PA EMPLOYEE","001","1978-02-01","W GERALD HARRIS",,,"328 OFFICE PLAZA",,"TALLAHASSEE","FL","323012730",,,,,,,"328 OFFICE PLAZA",,"TALLAHASSEE","FL","323012730",,,,,,,"591571047","8508771106","621210","W GERALD HARRIS",,"328 OFFICE PLAZA",,"TALLAHASSEE","FL","323012730",,,,,,,"591571047","8508771106",,,,"2011-05-30T04:36:24-0500","W GERALD HARRIS",,,,,3,3,0,0,3,,3,,,,"2E",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-30","Filed with authorized/valid electronic signature",, "20110531131655P040069758705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BROTHERHOOD MUTUAL INSURANCE COMPANY CONSOLIDATED WELFARE BENEFIT PLAN","511","1996-11-01","BROTHERHOOD MUTUAL INSURANCE COMPANY",,,"6400 BROTHERHOOD WAY",,"FORT WAYNE","IN","46801",,,,,,,"6400 BROTHERHOOD WAY",,"FORT WAYNE","IN","46801",,,,,,,"350198580","2604828668","524210","BROTHERHOOD MUTUAL INSURANCE COMPANY",,"6400 BROTHERHOOD WAY",,"FORT WAYNE","IN","46801",,,,,,,"350198580","2604828668",,,,"2011-05-31T13:06:59-0500","KATHLEEN TURPIN",,,,,236,250,0,0,250,,250,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531133602P030067974529001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BEL-RAY COMPANY, INC. PROFIT SHARING AND 401(K) PLAN","001","1964-01-01","BEL-RAY COMPANY, INC.",,,"1201 BOWMAN AVENUE",,"WALL","NJ","07719",,,,,,,"1201 BOWMAN AVENUE",,"WALL","NJ","07719",,,,,,,"210729210","7329382421","324190","BEL-RAY COMPANY, INC.",,"1201 BOWMAN AVENUE",,"WALL","NJ","07719",,,,,,,"210729210","7329382421",,,,"2011-05-31T13:35:03-0500","DARYL BROSNAN",,,,,99,84,0,16,100,0,100,67,6,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110527090719P030065697153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SITEMASTER, INC. 401(K) PROFIT SHARING PLAN","001","2000-07-01","SITEMASTER, INC.",,,"6914 SOUTH YORKTOWN AVENUE","SUITE 210","TULSA","OK","74136",,,,,,,,,,,,,,,,,,"731517319","9186632232","811110","SITEMASTER, INC.",,"6914 SOUTH YORKTOWN AVENUE","SUITE 210","TULSA","OK","74137",,,,,,,"731517319","9186632232",,,,"2011-05-27T08:59:29-0500","GAYLE ATKINS",,,,,84,24,0,43,67,0,67,51,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110601073728P040320151904001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"NIPRO DIABETES SYSTEMS, INC. 401(K) PLAN","001","2004-01-01","NIPRO DIABETES SYSTEMS, INC.",,,"3361 ENTERPRISE WAY",,"MIRAMAR","FL","33025",,,,,,,"3361 ENTERPRISE WAY",,"MIRAMAR","FL","33025",,,,,,,"650961093","9544355665","812990","NIPRO DIABETES SYSTEMS, INC.",,"3361 ENTERPRISE WAY",,"MIRAMAR","FL","33025",,,,,,,"650961093","9544355665",,,,"2011-05-31T17:19:20-0500","KIMBERLY ZELTWANGER",,,,,46,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1",,,,"1",,,,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531140236P040069780641001","2010-01-01","2010-10-31","2",,,,"1","1",,,,,,,"CONSOLIDATED TIRES, INC. 401(K) RETIREMENT PLAN","001","1994-01-01","CONSOLIDATED TIRES, INC.",,,"5806 AUGUSTA ROAD",,"GREENVILLE","SC","29605",,,,,,,,,,,,,,,,,,"570404926","8642775366","441300","CONSOLIDATED TIRES, INC.",,"5806 AUGUSTA ROAD",,"GREENVILLE","SC","29605",,,,,,,"570404926","8642775366",,,,"2011-05-31T03:02:24-0500","JAMES W DENNIS",,,,,145,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110526153537P040067084545001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANK IOWA MEDICAL EXPENSE REIMBURSEMENT PLAN","515","1994-01-01","BANK IOWA",,,"1150 JORDAN CREEK PARKWAY",,"WEST DES MOINES","IA","50266",,,,,,,,,,,,,,,,,,"470469229","5152262488","522110","BANK IOWA",,"1150 JORDAN CREEK PARKWAY",,"WEST DES MOINES","IA","50266",,,,,,,"470469229","5152262488",,,,"2011-05-26T14:42:02-0500","AMY GRIMES",,,,,108,109,0,0,109,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110526153642P030065330689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIDMFG INC. MONEY PURCHASE PENSION PLAN AND TRUST AGREEMENT","003","1973-09-01","AMHERST MOBILE HOME PARK, INC.",,"ROBERT H. DRUCKER","714 FOREST AVENUE",,"WILMETTE","IL","60091",,,,,,,"714 FOREST AVENUE",,"WILMETTE","IL","60091",,,,,,,"360896806","8472511112","531390","AMHERST MOBILE HOME PARK, INC.","ROBERT H. DRUCKER","714 FOREST AVENUE",,"WILMETTE","IL","60091",,,,,,,"360896806","8472511112",,,,"2011-05-26T15:34:06-0500","JEFFREY LARSON",,,,,45,32,5,9,46,0,46,44,1,,"2C2F2G2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110527160337P040067633585001","2010-01-01","2010-12-31","3",,,,,,,,,,,,"MID-VALLEY IPA HEALTH PLAN","501","2005-05-01","MID-VALLEY IPA EMPLOYEE BEN. TRUST",,,"245 COMMERCIAL STREET SE #200",,"SALEM","OR","97301",,,,,,,,,,,,,,,,,,"207142144","5033717701","541990","MID-VALLEY IPA EMPLOYEE BEN. TRUST",,"245 COMMERCIAL STREET SE #200",,"SALEM","OR","97301",,,,,,,"207142144","5033717701",,,,"2011-05-27T08:25:57-0500","JAN BUFFA","2011-05-27T08:25:57-0500","JAN BUFFA",,,1167,1199,28,,1227,,,,,,,"4A4D4E","1",,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531160753P040069855841001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SCHILLER LAW GROUP 401(K) PLAN & PROFIT SHARING","001","2004-08-01","SCHILLER LAW GROUP A PROFESSIONAL CORPORATION",,,"4 ORINDA WAY # 280B",,"ORINDA","CA","94563",,,,,,,"4 ORINDA WAY # 280B",,"ORINDA","CA","94563",,,,,,,"300179651","9252580123","541110","SCHILLER LAW GROUP A PROFESSIONAL CORPORATION",,"4 ORINDA WAY # 280B",,"ORINDA","CA","94563",,,,,,,"300179651","9252580123",,,,"2011-05-31T15:52:26-0500","KEITH SCHILLER",,,,,3,3,0,0,3,0,3,2,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110601082603P030021250215001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BODDIE-NOELL ENTERPRISES, INC. MEDICAL ASSISTANCE PLAN","502","1991-07-01","BODDIE-NOELL ENTERPRISES, INC.",,,"P. O. BOX 1908","1021 NOELL LANE","ROCKY MOUNT","NC","27802",,,,,,,"P. O. BOX 1908","1021 NOELL LANE","ROCKY MOUNT","NC","27802",,,,,,,"560751071","2529372000","722210","BODDIE-NOELL ENTERPRISES, INC.",,"P. O. BOX 1908","1021 NOELL LANE","ROCKY MOUNT","NC","27802",,,,,,,"560751071","2529372000",,,,"2011-06-01T08:25:22-0500","ROBERT CRUMLEY","2011-06-01T08:07:27-0500","CRAIG WORTHY",,,706,714,,,714,,714,,,,,"4A4B4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601100009P030068440241004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PAINT CREEK PEDIATRIC & ADOLESCENT CARE, P.C. PROFIT SHARING PLAN","001","1998-01-01","PAINT CREEK PEDIATRIC & ADOLESCENT CARE, P.C.",,,"200 DIVERSION STREET, SUITE 20",,"ROCHESTER HILLS","MI","48307",,,,,,,,,,,,,,,,,,"383333475","2486563440","621111","PAINT CREEK PEDIATRIC & ADOLESCENT CARE, P.C.",,"200 DIVERSION STREET, SUITE 20",,"ROCHESTER HILLS","MI","48307",,,,,,,"383333475","2486563440",,,,"2011-06-01T10:55:27-0500","HERMINIA BIEREMA",,,,,5,5,0,0,5,0,5,5,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531094036P040069648049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KGM CONSULTING 401(K) PLAN","001","2000-01-01","KGM CONSULTING, INC.",,,"30 WALL STREET","SUITE 1100","NEW YORK","NY","10005",,,,,,,,,,,,,,,,,,"223419625","2127913420","541400","KGM CONSULTING, INC.",,"30 WALL STREET","SUITE 1100","NEW YORK","NY","10005",,,,,,,"223419625","2127913420",,,,"2011-05-31T09:40:07-0500","MAGGIE MCGOVERN","2011-05-31T09:40:07-0500","MAGGIE MCGOVERN",,,34,23,0,11,34,0,34,30,0,,"2E2F2G2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110527093731P040067469761001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"DOUGLAS A. KING BUILDERS, INC. EMPLOYEES SAVINGS PLAN","001","1984-11-01","DOUGLAS A. KING BUILDERS, INC.",,,"115 MAIN STREET","STE 1D","NORTH EASTON","MA","02356",,,,,,,"115 MAIN STREET","STE 1D","NORTH EASTON","MA","02356",,,,,,,"042462911","5082382038","531390","DOUGLAS A. KING BUILDERS, INC.",,"115 MAIN STREET","STE 1D","NORTH EASTON","MA","02356",,,,,,,"042462911","5082382038",,,,"2011-05-27T09:36:18-0500","DOUGLAS KING",,,,,23,16,0,9,25,0,25,22,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110531161742P040069860401001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"LARRY GEORGE ELECTRIC INC 401K PROFIT SHARING PLAN & TRUST","001","2003-01-01","LARRY GEORGE ELECTRIC",,,"1201 ENDEAVOR DR",,"UPLAND","CA","917861507",,,,,,,,,,,,,,,,,,"954152663","9099854630","811110","LARRY GEORGE ELECTRIC",,"1201 ENDEAVOR DR",,"UPLAND","CA","917861507",,,,,,,"954152663","9099854630",,,,"2011-05-31T16:08:12-0500","LARRY GEORGE",,,,,5,3,0,1,4,0,4,3,0,,"2E2G2J2K3E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531162001P040069861057001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"LARRY GEORGE ELECTRIC INC 401K PROFIT SHARING PLAN & TRUST","001","2003-01-01","LARRY GEORGE ELECTRIC",,,"1201 ENDEAVOR DR",,"UPLAND","CA","917861507",,,,,,,,,,,,,,,,,,"954152663","9099854630","811110","LARRY GEORGE ELECTRIC",,"1201 ENDEAVOR DR",,"UPLAND","CA","917861507",,,,,,,"954152663","9099854630",,,,"2011-05-31T16:11:47-0500","LARRY GEORGE",,,,,5,4,0,1,5,0,5,2,0,,"2E2G2J2K3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531182301P030068106561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW FRONTIER GROUP INSURANCE PROGRAM","501","1991-01-01","NEW FRONTIER MANAGEMENT CORPORATION",,,"20 S. CLARK STREET, SUITE 3000",,"CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"362946167","3128559444","531110","NEW FRONTIER MANAGEMENT CORPORATION",,"20 S. CLARK STREET, SUITE 3000",,"CHICAGO","IL","60603",,,,,,,"362946167","3128559444",,,,"2011-05-31T17:01:39-0500","THOMAS STORNIOLO",,,,,136,124,3,0,127,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110526155541P040009826242001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DOUGLAS H. NESBIT, MD PC 401(K) PLAN","001","2003-09-16","DOUGLAS H. NESBIT, MD PC",,,"1230 AUGUSTA WEST PARKWAY",,"AUGUSTA","GA","30909",,,,,,,,,,,,,,,,,,"800005282","7068680380","621111","DOUGLAS H. NESBIT, MD PC",,"1230 AUGUSTA WEST PARKWAY",,"AUGUSTA","GA","30909",,,,,,,"800005282","7068680380",,,,"2011-05-26T15:54:09-0500","DOUGLAS NESBIT","2011-05-26T15:54:09-0500","DOUGLAS NESBIT",,,7,5,0,1,6,0,6,6,0,,"2E3D2J2G2K2F2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110527120846P030311187760001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STREAMGUYS 401(K) PLAN","001","2007-01-01","STREAMGUYS, INC.",,,"2212 JACOBY CREEK RD",,"BAYSIDE","CA","95524",,,,,,,,,,,,,,,,,,"202180669","7076679479","517000","STREAMGUYS, INC.",,"2212 JACOBY CREEK RD",,"BAYSIDE","CA","95524",,,,,,,"202180669","7076679479",,,,"2011-05-27T12:08:39-0500","DAVID HAYNIE",,,,,10,11,0,0,11,0,11,11,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110601125640P040022152791001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"K&N MANAGEMENT","503","2010-01-01","K&N MANAGEMENT",,,"11570 RESEARCH BLVD.",,"AUSTIN","TX","78759",,,,,,,"11570 RESEARCH BLVD.",,"AUSTIN","TX","78759",,,,,,,"742671771","5124180444","722110","K&N MANAGEMENT",,"11570 RESEARCH BLVD.",,"AUSTIN","TX","78759",,,,,,,"742671771","5124180444",,,,"2011-06-01T12:54:02-0500","ALLYSON YOUNG",,,,,329,329,,,329,,329,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531143905P030321694528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLENNIUM MEDICAL SUPPLY RETIREMENT PLAN & TRUST","001","2003-02-01","ELJ, INC. D/B/A MILLENNIUM MEDICAL SUPPLY","DBA MILLENNIUM MEDICAL SUPPLY",,"1500 CLARKSVILLE STREET",,"PARIS","TX","75460",,,,,,,,,,,,,,,,,,"752959478","9037398539","621610","ELJ, INC. D/B/A MILLENNIUM MEDICAL SUPPLY",,"1500 CLARKSVILLE STREET",,"PARIS","TX","75460",,,,,,,"752959478","9037398539",,,,"2011-05-31T14:37:39-0500","JAYME JETTON","2011-05-31T14:37:39-0500","JAYME JETTON",,,15,14,0,1,15,0,15,7,0,,"2E2F2G2J2K3D3H2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601143445P030324364416001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"ASGK PUBLIC STRATEGIES, LLC RETIREMENT PLAN","001","2010-01-01","ASGK PUBLIC STRATEGIES, LLC",,,"730 NORTH FRANKLIN","SUITE 404","CHICAGO","IL","60654",,,,,,,,,,,,,,,,,,"611417875","3126640153","541990","ASGK PUBLIC STRATEGIES, LLC",,"730 NORTH FRANKLIN","SUITE 404","CHICAGO","IL","60654",,,,,,,"611417875","3126640153",,,,"2011-06-01T14:34:30-0500","YURI SAMOVALOV","2011-06-01T14:34:30-0500","YURI SAMOVALOV",,,6,10,0,0,10,0,10,10,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531143610P040318301936001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CREEKSTONE PARTNERS, LLC 401(K) PLAN","001","2005-11-01","CREEKSTONE PARTNERS, LLC",,,"4545 POST OAK PLACE","# 200","HOUSTON","TX","77027",,,,,,,,,,,,,,,,,,"800092231","7136215300","812990","CREEKSTONE PARTNERS, LLC",,"4545 POST OAK PLACE","# 200","HOUSTON","TX","77027",,,,,,,"800092231","7136215300",,,,"2011-05-31T14:36:00-0500","ROBERT SMITH",,,,,7,2,0,4,6,0,6,6,0,,"2E2F2G2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531081036P030067839393001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CHICAGO FINANCIAL SERVICES, INC. 401(K) PLAN","001","2005-02-01","CHICAGO FINANCIAL SERVICES, INC.",,,"215 W SUPERIOR STREET","7TH FLOOR","CHICAGO","IL","60654",,,,,,,"215 W SUPERIOR STREET","7TH FLOOR","CHICAGO","IL","60654",,,,,,,"363679626","3126427979","522292","CHICAGO FINANCIAL SERVICES, INC.",,"215 W SUPERIOR STREET","7TH FLOOR","CHICAGO","IL","60654",,,,,,,"363679626","3126427979",,,,"2011-05-31T08:10:18-0500","DAVID GILBERT",,,,,37,34,0,3,37,0,37,20,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531153445P040069832465001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SWANT-GRABER RETIREMENT PLAN","001","2002-01-01","OUR FAMILY I, LLC",,,"P.O. BOX 255",,"BARRON","WI","54812",,,,,,,"317 EAST LASALLE AVE",,"BARRON","WI","54812",,,,,,,"392005796","7155379500","441229","OUR FAMILY I, LLC",,"P.O. BOX 255",,"BARRON","WI","54812",,,,,,,"392005796","7155379500",,,,"2011-05-31T15:34:23-0500","TIM HAFELE",,,,,38,35,0,4,39,0,39,32,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110601091508P040070238417002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"C&S HOMES INC PROFIT SHARING PLAN & TRUST","001","1985-01-01","C&S HOMES INC",,,"710 W NEW YORK AVE",,"DELAND","FL","32720",,,,,,,,,,,,,,,,,,"591552590","3867380153","236110","C&S HOMES INC",,"710 W NEW YORK AVE",,"DELAND","FL","32720",,,,,,,"591552590","3867380153",,,,"2011-06-01T09:08:37-0500","ROBERT INDA",,,,,3,3,0,0,3,0,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110527131525P040067564129002","2008-01-01","2008-12-31","2",,,,,,,,,"1",,,"ORTHOPEDIC & FRACTURE CLINIC HEALTH & WELFARE PLAN","501","2004-01-01","ORTHOPEDIC & FRACTURE CLINIC, PC",,,"11782 SW BARNES ROAD, SUITE 300",,"PORTLAND","OR","97225",,,,,,,,,,,,,,,,,,"930645870","5032145296","621111","ORTHOPEDIC & FRACTURE CLINIC, PC",,"11782 SW BARNES ROAD, SUITE 300",,"PORTLAND","OR","97225",,,,,,,"930645870","5032145296",,,,"2011-05-26T09:20:46-0500","JAKE THIELEN",,,,,100,107,,,107,,,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527102016P040307501440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAYER, TANZILLO, STASSIN & BABCOCK, P.C. 401(K) PROFIT SHARING PLAN AND TRUST","001","2005-01-01","LAYER, TANZILLO, STASSIN & BABCOCK, P.C.",,,"1160 JOLIET ST",,"DYER","IN","46311",,,,,,,,,,,,,,,,,,"203368947","2198656262","541110","LAYER, TANZILLO, STASSIN & BABCOCK, P.C.",,"1160 JOLIET ST",,"DYER","IN","46311",,,,,,,"203368947","2198656262",,,,"2011-05-27T10:19:59-0500","LARRY D. STASSIN",,,,,11,11,0,0,11,0,11,11,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110531153657P040002109331001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CMS NORTH AMERICA, INC. 401(K) PLAN","001","1988-03-01","CMS NORTH AMERICA, INC.",,,"4095 KARONA COURT",,"CALEDONIA","MI","49316",,,,,,,,,,,,,,,,,,"382705205","6166989970","423990","CMS NORTH AMERICA, INC.",,"4095 KARONA COURT",,"CALEDONIA","MI","49316",,,,,,,"382705205","6166989970",,,,"2011-05-31T15:36:48-0500","KRIS KUSNESKE",,,,,51,35,0,11,46,0,46,35,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110601170257P030324658000001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MCGARY & CO., INC. PROFIT SHARING PLAN","001","1980-01-01","H.G. MCGARY & CO., INC","MCGARY & CO.",,"2900 EAST 11TH ST.",,"LOS ANGELES","CA","90023",,,,,,,"2900 EAST 11TH ST.",,"LOS ANGELES","CA","90023",,,,,,,"951960608","3232664131","424300","H.G. MCGARY & CO., INC",,"2900 EAST 11TH ST.",,"LOS ANGELES","CA","90023",,,,,,,"951960608","3232664131",,,,"2011-06-01T17:01:38-0500","WILLIAM LINN",,,,,4,0,0,0,0,0,0,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601170506P030324661408001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PHOCIS INC 401K PROFIT SHARING PLAN","001","2004-01-01","PHOCIS, INC",,,"20950 SW ROCK CREEK ROAD",,"SHERIDAN","OR","97378",,,,,,,,,,,,,,,,,,"930908525","5038431356","813000","PHOCIS INC",,"20950 SW ROCK CREEK ROAD",,"SHERIDAN","OR","97378",,,,,,,"930908525","5038431356",,,,"2011-06-01T12:46:42-0500","RAY PHELPS",,,,,2,2,,,2,,2,2,,,"2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531115210P040021945751001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"POMPS TIRE SECTION 125 CAFETERIA PLAN","505","1990-01-01","POMPS TIRE SERVICE INC",,,"P.O. BOX 1630",,"GREEN BAY","WI","543051630",,,,,,,,,,,,,,,,,,"390838986","9204357604","441300","POMPS TIRE SERVICE INC",,"P.O. BOX 1630",,"GREEN BAY","WI","543051630",,,,,,,"390838986","9204357604",,,,"2011-05-31T11:52:07-0500","RICHARD MARTIN","2011-05-31T11:52:07-0500","RICHARD MARTIN",,,297,298,0,0,298,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110526142911P040067057185001","2010-01-01","2010-12-31","2",,"0","0",,"0",,,,,,,"CROSSROADS AUTOMOTIVE LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","CROSSROADS AUTOMOTIVE LLC INC",,,"3210 HIGHWAY 34 EAST",,"NEWNAN","GA","30265",,,,,,,,,,,,,,,,,,"261431787","7706831512","811110","CROSSROADS AUTOMOTIVE LLC INC",,"3210 HIGHWAY 34 EAST",,"NEWNAN","GA","30265",,,,,,,"261431787","7706831512",,,,"2011-05-26T02:29:07-0500","CROSSROADS AUTOMOTIVE LLC INC",,,,,11,7,0,0,7,0,7,5,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110526163559P040067110929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREEN BAY CONVERTING, INC. HEALTH PLAN","501","2005-01-01","GREEN BAY CONVERTING, INC.",,,"2200 LARSEN ROAD",,"GREEN BAY","WI","54303",,,,,,,,,,,,,,,,,,"391962292","9204985100","322200","GREEN BAY CONVERTING, INC.",,"2200 LARSEN ROAD",,"GREEN BAY","WI","54303",,,,,,,"391962292","9204985100",,,,"2011-05-26T16:33:16-0500","FAYE DRANKOFF",,,,,455,474,0,0,474,,,,,,,"4A4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110527144731P030065852289001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THEODORE BARTON, MD 401K PLAN","001","2004-06-11","THEODORE BARTON, MD",,,"35670 KENAI SPUR HWY, SUITE 101A",,"SOLDOTNA","AK","99669",,,,,,,,,,,,,,,,,,"943049294","9072622602","621111","THEODORE BARTON, MD",,"35670 KENAI SPUR HWY, SUITE 101A",,"SOLDOTNA","AK","99669",,,,,,,"943049294","9072622602",,,,"2011-05-27T14:47:25-0500","THEODORE BARTON",,,,,5,5,0,0,5,0,5,5,0,,"2E2F2G2J2K2A3B3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527153008P030009562098001","2010-01-01","2010-12-31","3",,,,,,,,,,,,"TUTERA HEALTH CARE SERVICES, LLC","501","2003-10-01","TUTERA HEALTH CARE SERVICES, LLC",,,"7611 STATE LINE ROAD, SUITE 301",,"KANSAS CITY","MO","64114",,,,,,,,,,,,,,,,,,"431830916","8164440900","621610","TUTERA HEALTH CARE SERVICES, LLC",,"7611 STATE LINE ROAD, SUITE 301",,"KANSAS CITY","MO","64114",,,,,,,"431830916","8164440900",,,,"2011-05-27T15:19:20-0500","RON CORK",,,,,218,271,,,271,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527092054P040009888162001","2010-01-01","2010-10-31","2",,"0","0","0","1","0","0","0","0","0",,"THE RAYTEC GROUP, INC. FLEXIBLE SPENDING ACCOUNT","501","1987-06-01","THE RAYTEC GROUP, INC.",,,"PO BOX 596",,"FISHERS","NY","144530596",,,,,,,"600 FISHERS RUN",,"FISHERS","NY","144530596",,,,,,,"160845122","5859246200","333200","THE RAYTEC GROUP, INC.",,"PO BOX 596",,"FISHERS","NY","144530596",,,,,,,"160845122","5859246200",,,,"2011-05-27T09:20:40-0500","DANIEL L. COCCIA",,,,,108,104,0,0,104,,,,,,,"4A4R","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527114237P030065761137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHILDRENS DEFENSE FUND HEALTH INSURANCE PLAN","502","2000-01-01","CHILDRENS DEFENSE FUND",,,"25 E STREET NW",,"WASHINGTON","DC","20001",,,,,,,,,,,,,,,,,,"520895622","2026623697","813000","CHILDRENS DEFENSE FUND",,"25 E STREET NW",,"WASHINGTON","DC","20001",,,,,,,"520895622","2026623697",,,,"2011-05-27T11:42:23-0500","MAMIE BERRY","2011-05-27T11:42:23-0500","MAMIE BERRY",,,149,117,8,0,125,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601122836P040320728080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROTOBOX LLC 401K PLAN","001","2001-11-01","PROTOBOX LLC",,,"5717 HUBERVILLE AVENUE",,"RIVERSIDE","OH","454311224",,,,,,,"5717 HUBERVILLE AVENUE",,"RIVERSIDE","OH","454311224",,,,,,,"311677152","9372580905","541330","PROTOBOX LLC",,"5717 HUBERVILLE AVENUE",,"RIVERSIDE","OH","454311224",,,,,,,"311677152","9372580905",,,,"2011-06-01T12:27:41-0500","ROBERT KALINYAK",,,,,12,11,0,0,11,0,11,10,0,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601173333P040070476001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOT LINE CONSTRUCTION, INC. 401(K) PLAN","002","2005-01-01","HOT LINE CONSTRUCTION, INC.",,,"9020 BRENTWOOD BOULEVARD","SUITE H","BRENTWOOD","CA","94513",,,,,,,,,,,,,,,,,,"680359380","9256349333","237100","HOT LINE CONSTRUCTION, INC.",,"9020 BRENTWOOD BOULEVARD","SUITE H","BRENTWOOD","CA","94513",,,,,,,"680359380","9256349333",,,,"2011-06-01T17:33:35-0500","CAROLE BADE","2011-06-01T17:33:35-0500","CAROLE BADE",,,44,44,0,0,44,0,44,13,0,,"2E2G2J2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523103638P030019679751001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HGS ENGINEERING, INC. 401(K) PROFIT SHARING PLAN","002","2000-01-01","HGS ENGINEERING, INC.",,,"1121 NOBLE ST",,"ANNISTON","AL","362014638",,,,,,,"1121 NOBLE ST",,"ANNISTON","AL","362014638",,,,,,,"631208773","2562361848","541330","HGS ENGINEERING, INC.",,"1121 NOBLE ST",,"ANNISTON","AL","362014638",,,,,,,"631208773","2562361848",,,,"2011-05-23T10:31:58-0500","ANN SUMMERS","2011-05-23T10:35:42-0500","ANN SUMMERS",,,40,52,0,11,63,0,63,37,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523103747P040065222929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IRVINGTON LINOLEUM & CARPET 401(K) PROFIT SHARING PLAN & TRUST","001","2000-04-01","IRVINGTON LINOLEUM & CARPET",,,"P.O. BOX 620",,"EDISON","NJ","08818",,,,,,,,,,,,,,,,,,"221657357","7322874239","442210","IRVINGTON LINOLEUM & CARPET",,"P.O. BOX 620",,"EDISON","NJ","08818",,,,,,,"221657357","7322874239",,,,"2011-05-23T10:37:45-0500","IRVINGTON LINOLEUM CARPET",,,,,18,8,0,2,10,0,10,10,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523160357P030300678992001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NETSPEND CORPORATION EMPLOYEE BENEFIT PLAN","501","2002-01-01","NETSPEND CORPORATION",,,"701 BRAZOS STREET, STE 1200",,"AUSTIN","TX","78701",,,,,,,,,,,,,,,,,,"742907514","5125328200","522210","NETSPEND CORPORATION",,"701 BRAZOS STREET, STE 1200",,"AUSTIN","TX","78701",,,,,,,"742907514","5125328200",,,,"2011-05-23T16:03:50-0500","CHANTAL DUGUAY",,,,,477,479,25,0,504,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523130030P040011124614001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTELLIGENT AUTOMATION, INC. LIFE & DISABILITY PLAN","502","1987-01-01","INTELLIGENT AUTOMATION, INC.",,,"15400 CALHOUN DRIVE","SUITE 400","ROCKVILLE","MD","20855",,,,,,,,,,,,,,,,,,"521497192","3012945200","541700","INTELLIGENT AUTOMATION, INC.",,"15400 CALHOUN DRIVE","SUITE 400","ROCKVILLE","MD","20855",,,,,,,"521497192","3012945200",,,,"2011-05-23T12:59:46-0500","THOMAS SCHULIEN","2011-05-23T12:59:46-0500","THOMAS SCHULIEN",,,107,108,,,108,,,,,,,"4F4H4B4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523112901P030300092512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HENDERSON STATE BANK 401(K) PROFIT SHARING PLAN","001","1980-01-01","HENDERSON STATE BANK",,,"PO BOX 605",,"HENDERSON","NE","683710605",,,,,,,,,,,,,,,,,,"470343086","4027234441","522110","HENDERSON STATE BANK",,"PO BOX 605",,"HENDERSON","NE","683710605",,,,,,,"470343086","4027234441",,,,"2011-05-23T11:28:57-0500","STEVEN L MICHEL",,,,,33,28,1,2,31,0,31,27,0,,"2E2F2H2T2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523132635P030019705559001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MASTER MEDICAL PLAN","501","1962-01-25","GORDON COLLEGE",,,"255 GRAPEVINE ROAD",,"WENHAM","MA","01984",,,,,,,,,,,,,,,,,,"042104258","9789272300","611000","GORDON COLLEGE",,"255 GRAPEVINE ROAD",,"WENHAM","MA","01984",,,,,,,"042104258","9789272300",,,,"2011-05-23T13:25:35-0500","JAMES GRAHAM",,,,,296,297,,,297,,297,,,,,"4A","1",,,,"1",,,,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523153549P030019726775001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ASSOCIATED CONSULTING ENGINEERING, INC. 401K PLAN & TRUST","001","2003-01-01","ASSOCIATED CONSULTING ENGINEERING, INC.",,,"340 S PHILLIPS AVENUE",,"SIOUX FALLS","SD","57104",,,,,,,,,,,,,,,,,,"460400783","6053353720","541330","ASSOCIATED CONSULTING ENGINEERING, INC.",,"340 S PHILLIPS AVENUE",,"SIOUX FALLS","SD","57104",,,,,,,"460400783","6053353720",,,,"2011-05-23T15:35:18-0500","ERIN KIMBELL",,,,,17,14,0,1,15,0,15,14,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523082150P030299705968001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"APRIMO, INC. SECTION 125 FLEXIBLE BENEFITS PLAN","501","2000-01-01","APRIMO INC.",,,"900 E 96TH ST STE 400",,"INDIANAPOLIS","IN","462403876",,,,,,,,,,,,,,,,,,"352052509","3178034300","541519","APRIMO INC.",,"900 E 96TH ST STE 400",,"INDIANAPOLIS","IN","462403876",,,,,,,"352052509","3178034300",,,,"2011-05-23T08:18:15-0500","APRIMO",,,,,198,200,22,0,222,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523123714P040297030512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMMUNITY PRINTERS, INC. 401(K) RETIREMENT PLAN","001","1999-03-01","COMMUNITY PRINTERS, INC.",,,"1827 SOQUEL AVENUE",,"SANTA CRUZ","CA","95062",,,,,,,,,,,,,,,,,,"770321442","8314264682","323100","COMMUNITY PRINTERS, INC.",,"1827 SOQUEL AVENUE",,"SANTA CRUZ","CA","95062",,,,,,,"770321442","8314264682",,,,"2011-05-19T18:28:02-0500","SHELLY DAMOUR","2011-05-19T18:28:02-0500","SHELLY DAMOUR",,,34,30,0,0,30,0,30,30,0,,"2E2G2J2F2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523123751P040065275185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J RICHARD SCHLEDER DDS BASIC PROFIT SHARING PLAN","002","1985-12-01","J RICHARD SCHLEDER DDS",,,"8300 TYLER BLVD",,"MENTOR","OH","440604217",,,,,,,,,,,,,,,,,,"341444076","4402051999","621210","J RICHARD SCHLEDER DDS",,"8300 TYLER BLVD",,"MENTOR","OH","440604217",,,,,,,"341444076","4402051999",,,,"2011-05-23T12:30:43-0500","J. RICHARD SCHLEDER, DDS",,,,,4,4,0,0,4,0,4,0,0,,"2E2G3B3D2A2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523124043P040297037648001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","1","0","0",,"ROSENFELD, MEYER & SUSMAN, LLP","001","1974-01-01","ROSENFELD, MEYER & SUSMAN, LLP",,"LAWRENCE S. KARTIGANER","9601 WILSHIRE BOULEVARD","SUITE 710","BEVERLY HILLS","CA","902105225",,,,,,,"9601 WILSHIRE BOULEVARD","SUITE 710","BEVERLY HILLS","CA","902105225",,,,,,,"951957101","3108587700","541110","ADMINISTATIVE COMMITTEE","LAWRENCE S. KARTIGANER","9601 WILSHIRE BOULEVARD","SUITE 710","BEVERLY HILLS","CA","902105225",,,,,,,"954353179","3108587700",,,,"2011-05-21T13:44:23-0500","LAWRENCE KARTIGANER",,,,,16,17,0,16,33,0,33,33,0,,"2E3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523085602P040296594800001","2008-10-01","2009-09-30","2",,"0","0","0","0","0","0","0","1","0",,"CAFUA MANAGEMENT COMPANY LLC HEALTH AND WELFARE BENEFITS PLAN","503","2006-10-01","CAFUA MANAGEMENT COMPANY LLC",,,"1000 OSGOOD ROAD",,"NORTH ANDOVER","MA","01845",,,,,,,"1000 OSGOOD ROAD",,"NORTH ANDOVER","MA","01845",,,,,,,"043554864","9786822382","445299","CAFUA MANAGEMENT COMPANY LLC",,"1000 OSGOOD ROAD",,"NORTH ANDOVER","MA","01845",,,,,,,"043554864","9786822382",,,,"2011-05-21T11:14:02-0500","KIMBERLEY CASALE",,,,,151,154,,,154,,154,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523104353P030019680679001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"NORTHSIDE CONSTRUCTION INC PROFIT SHARING PLAN","001","1995-01-01","NORTHSIDE CONSTRUCTION INC PROFIT SHARING PLAN",,"GLORIA OPHUS","15627 FOREST BOULEVARD",,"HUGO","MN","55038",,,,,,,"15627 FOREST BOULEVARD",,"HUGO","MN","55038",,,,,,,"411495788","6514262632","236200","NORTHSIDE CONSTRUCTION INC PROFIT SHARING PLAN","GLORIA OPHUS","15627 FOREST BOULEVARD",,"HUGO","MN","55038",,,,,,,"411495788","6514262632",,,,"2011-05-23T10:43:20-0500","TERESSA BEZENAR",,,,,4,4,,,4,,4,4,0,,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523143321P040020557511001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HELPERN ARCHITECTS, P.C. 401K PROFIT SHARING PLAN AND TRUST","001","1984-07-01","HELPERN ARCHITECTS, P.C.",,,"21 E 4TH ST",,"NEW YORK","NY","100037023",,,,,,,,,,,,,,,,,,"132736144","2125052025","541310","HELPERN ARCHITECTS, P.C.",,"21 E 4TH ST",,"NEW YORK","NY","100037023",,,,,,,"132736144","2125052025",,,,"2011-05-23T14:31:57-0500","DAVID P. HELPERN",,,,,50,19,0,22,41,0,41,33,0,,"2E2H2F2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520110513P040020011335001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FEDERAL RENT A FENCE INC 401(K) PROFIT SHARING PLAN & TRUST","001","1997-01-01","FEDERAL RENT A FENCE INC",,,"P.O. BOX 266",,"WEST BERLIN","NJ","08091",,,,,,,,,,,,,,,,,,"223264302","8567198004","532400","FEDERAL RENT A FENCE INC",,"P.O. BOX 266",,"WEST BERLIN","NJ","08091",,,,,,,"223264302","8567198004",,,,"2011-05-20T11:05:11-0500","FEDERAL RENT A FENCE INC",,,,,40,45,0,2,47,0,47,19,0,,"2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520113240P030019213527001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LUIS E. KORTRIGHT M.D., P.A. PROFIT SHARING PLAN","001","1999-01-01","LUIS E. KORTRIGHT M.D.",,,"4600 N. HABANA AV., SUITE # 6",,"TAMPA","FL","33614",,,,,,,"4600 N. HABANA AV., SUITE # 6",,"TAMPA","FL","33614",,,,,,,"593239197","8138715200","621111","LUIS E. KORTRIGHT M.D.",,"4600 N. HABANA AV., SUITE # 6",,"TAMPA","FL","33614",,,,,,,"593239197","8138715200",,,,"2011-05-20T11:32:13-0500","LUIS KORTRIGHT",,,,,2,2,,,2,,2,2,,,"2E2G2J3E",,,,"0","1",,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520135413P030019237095001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHWARTZ & ASSOCIATES LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","SCHWARTZ & ASSOCIATES LLC",,,"6 LYNAM COURT",,"STAMFORD","CT","06903",,,,,,,,,,,,,,,,,,"223673847","2035612725","524210","SCHWARTZ & ASSOCIATES LLC",,"6 LYNAM COURT",,"STAMFORD","CT","06903",,,,,,,"223673847","2035612725",,,,"2011-05-20T01:54:11-0500","SCHWARTZ ASSOCIATES LLC",,,,,3,2,0,0,2,0,2,2,0,,"2A2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520131109P030292587744001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HUSKY REFINING COMPANY REPRESENTED 401 K PLAN","002","2007-07-03","HUSKY REFINING COMPANY",,,"1150 SOUTH METCALF STREET",,"LIMA","OH","45804",,,,,,,,,,,,,,,,,,"980537727","4192262300","324110","HUSKY REFINING COMPANY",,"1150 SOUTH METCALF STREET",,"LIMA","OH","45804",,,,,,,"980537727","4192262300",,,,"2011-05-20T13:10:56-0500","DAVID STEIN",,,,,221,191,0,1,192,0,192,187,0,,"2E2F2G2J2K3E3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520090905P040010837558001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CATAWBA INDUSTRIAL RUBBER 401K PLAN","001","2009-01-01","CATAWBA INDUSTRIAL RUBBER CO., INC.",,,"4629 DWIGHT EVANS RD.",,"CHARLOTTE","NC","282170907",,,,,,,,,,,,,,,,,,"560790465","7045238163","423990","CATAWBA INDUSTRIAL RUBBER CO., INC.",,"4629 DWIGHT EVANS RD.",,"CHARLOTTE","NC","282170907",,,,,,,"560790465","7045238163",,,,"2011-05-20T10:08:53-0500","MARVIN M. BRUCE JR.",,,,,21,17,0,4,21,0,21,21,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520074509P030019183191001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"TIAX LLC 401(K) PLAN","001","2002-10-01","TIAX LLC",,,"35 HARTWELL AVENUE",,"LEXINGTON","MA","024213102",,,,,,,"35 HARTWELL AVENUE",,"LEXINGTON","MA","024213102",,,,,,,"460478749","7818791200","541700","TIAX LLC",,"35 HARTWELL AVENUE",,"LEXINGTON","MA","024213102",,,,,,,"460478749","7818791200",,,,"2011-05-20T07:42:54-0500","JOSEPHINE BERMAN",,,,,172,101,0,54,155,1,156,149,0,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520092543P030019195831001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ADAIR PLASTICS CORPORATION 401(K) RETIREMENT PLAN","001","1990-05-01","ADAIR PLASTICS CORPORATION",,,"10907 NESBITT AVENUE S",,"BLOOMINGTON","MN","55437",,,,,,,"10907 NESBITT AVENUE S",,"BLOOMINGTON","MN","55437",,,,,,,"411352845","9528311673","326100","ADAIR PLASTICS CORPORATION",,"10907 NESBITT AVENUE S",,"BLOOMINGTON","MN","55437",,,,,,,"411352845","9528311673",,,,"2011-05-09T15:36:22-0500","RICHARD ADAIR",,,,,9,7,0,0,7,0,7,7,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520141518P040020039687001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IMPACT DIRECTORIES, INC. 401(K)","001","1994-04-15","IMPACT DIRECTORIES, INC.",,,"12977 NORTH OUTER 40 DRIVE S-211",,"ST. LOUIS","MO","63141",,,,,,,,,,,,,,,,,,"431631057","3143363090","323100","IMPACT DIRECTORIES, INC.",,"12977 NORTH OUTER 40 DRIVE S-211",,"ST. LOUIS","MO","63141",,,,,,,"431631057","3143363090",,,,"2011-05-20T14:15:17-0500","MARIE BAKER","2011-05-20T14:15:17-0500","MARIE BAKER",,,31,29,0,2,31,0,31,14,0,,"2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523145817P040011135158001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DREDGE OPERATORS INC 401(K) PROFIT SHARING PLAN & TRUST","002","2007-06-12","DREGDE OPERATORS INC.",,,"3525 N. CAUSEWAY BVLD","SUITE 608","METAIRIE","LA","70002",,,,,,,,,,,,,,,,,,"721166211","5048344637","212320","DREGDE OPERATORS INC.",,"3525 N. CAUSEWAY BVLD","SUITE 608","METAIRIE","LA","70002",,,,,,,"721166211","5048344637",,,,"2011-05-23T02:58:15-0500","DREGDE OPERATORS INC.",,,,,50,32,0,7,39,0,39,33,5,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523173252P030063618801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP DENTAL PLAN","504","1982-05-01","KEENAN & ASSOCIATES",,"KEITH PIPPARD","2355 CRENSHAW BLVD., SUITE 200",,"TORRANCE","CA","90501",,,,,,,"2355 CRENSHAW BLVD., SUITE 200",,"TORRANCE","CA","90501",,,,,,,"952798626","3102123344","524210","KEENAN & ASSOCIATES","KEITH PIPPARD","2355 CRENSHAW BLVD., SUITE 200",,"TORRANCE","CA","90501",,,,,,,"952798626","3102123344",,,,"2011-05-23T16:56:59-0500","KEITH PIPPARD",,,,,670,624,13,,637,,637,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520095603P030292195664001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PERELMUTTER POTASH & GINZBERG 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","PERELMUTTER POTASH & GINZBERG",,,"11 BANK STREET",,"SEYMOUR","CT","06483",,,,,,,,,,,,,,,,,,"060935482","2038882501","541110","PERELMUTTER POTASH & GINZBERG",,"11 BANK STREET",,"SEYMOUR","CT","06483",,,,,,,"060935482","2038882501",,,,"2011-05-20T09:56:01-0500","PERELMUTTER POTASH GINZBERG",,,,,7,7,0,0,7,0,7,4,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520095903P040289135968001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MDI MANUFACTURING INC. 401(K) PLAN","001","1997-10-01","MDI MANUFACTURING INC.",,,"1115 INDUSTRIAL PARKWAY",,"BRICK","NJ","08724",,,,,,,"1115 INDUSTRIAL PARKWAY",,"BRICK","NJ","08724",,,,,,,"222922393","7324586323","331400","MDI MANUFACTURING INC.",,"1115 INDUSTRIAL PARKWAY",,"BRICK","NJ","08724",,,,,,,"222922393","7324586323",,,,"2011-05-20T09:59:00-0500","MARK DAUGHERTY","2011-05-20T09:59:00-0500","MARK DAUGHERTY",,,19,16,0,4,20,0,20,20,0,,"2E2H2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110520114715P030292421600001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHEAST CARDIOLOGY CLINIC, INC. PROFIT SHARING PLAN","001","1993-04-08","SOUTHEAST CARDIOLOGY CLINIC, INC.",,,"1150 ROSS CLARK CIRCLE",,"DOTHAN","AL","363013022",,,,,,,,,,,,,,,,,,"631087996","3347121929","621111","SOUTHEAST CARDIOLOGY CLINIC, INC.",,"1150 ROSS CLARK CIRCLE",,"DOTHAN","AL","363013022",,,,,,,"631087996","3347121929",,,,"2011-05-20T11:46:18-0500","NELSON S. GWINN, III, MD",,,,,48,39,3,8,50,0,50,50,3,,"2A2E2F2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520114956P030019216327001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTERPOINTE, INC. RETIREMENT PLAN","002","2000-01-01","CENTERPOINTE, INC.",,,"2633 P STREET",,"LINCOLN","NE","68503",,,,,,,,,,,,,,,,,,"470550702","4024758717","624100","CENTERPOINTE, INC.",,"2633 P STREET",,"LINCOLN","NE","68503",,,,,,,"470550702","4024758717",,,,"2011-05-20T11:49:49-0500","MICHAEL BOWLING","2011-05-20T11:49:49-0500","MICHAEL BOWLING",,,93,93,2,11,106,0,106,62,6,,"2G2M",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110520112329P040010845526001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ADVANTAGE FUTURES LLC 401(K) RETIREMENT PLAN","001","2004-01-01","ADVANTAGE FUTURES LLC",,,"141 W. JACKSON BLVD SUITE 2045",,"CHICAGO","IL","60604",,,,,,,,,,,,,,,,,,"753094454","3123474802","523140","ADVANTAGE FUTURES LLC",,"141 W. JACKSON BLVD SUITE 2045",,"CHICAGO","IL","60604",,,,,,,"753094454","3123474802",,,,"2011-05-20T12:23:20-0500","JANET STARK",,,,,100,94,0,14,108,0,108,91,0,,"2A2E2F2G2J2K2T2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520161541P030062024177003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"COOPER HILL & LECROIX VIP PLUS 401(K) PLAN","001","1995-12-29","COOPER HILL & LECROIX, CPAS PO BOX 849","708 SECOND AVENUE SE",,"PO BOX 849",,"DECATUR","AL","356020849",,,,,,,"708 SECOND AVENUE SE",,"DECATUR","AL","356020849",,,,,,,"630991217","2563551204","541990","COOPER HILL & LECROIX, CPAS PO BOX 849",,"PO BOX 849",,"DECATUR","AL","356020849",,,,,,,"630991217","2563551204",,,,"2011-05-20T07:24:13-0500","GEORGE A COOPER",,,,,7,7,,,7,,7,7,,,"2C2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520125214P030292552416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHERN R.I. ANIMAL HOSPITALS, INC. 401K PROFIT SHARING PLAN","001","1999-01-01","NORTHERN R.I. ANIMAL HOSPITALS, INC.",,,"152 SCHOOL STREET",,"FORESTDALE","RI","028240000",,,,,,,,,,,,,,,,,,"050426073","4017622400","541940","NORTHERN R.I. ANIMAL HOSPITALS, INC.",,"152 SCHOOL STREET",,"FORESTDALE","RI","028240000",,,,,,,"050426073","4017622400",,,,"2011-05-20T12:39:59-0500","GIOIA BERGMANN",,,,,34,20,0,13,33,0,33,24,0,,"2A2E2G2J",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520130031P030061945601001","2007-10-01","2008-09-30","2",,"0","0","0","0","0","0","0","0","0",,"WAITZ CORPORATION 401(K) PLAN","001","1988-10-01","GLENNICK INC.","WAITZ CORPORATION",,"1118 UNION BOULEVARD",,"ALLENTOWN","PA","181092559",,,,,,,,,,,,,,,,,,"232437424","6104375409","323100","GLENNICK INC.",,"1118 UNION BOULEVARD",,"ALLENTOWN","PA","181092559",,,,,,,"232437424","6104375409",,,,"2011-05-20T13:00:24-0500","GLENN H. WAMPOLE, II",,,,,15,11,0,4,15,0,15,13,0,,"2E2F2G2J3E",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110523131327P040020543447004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THOMAS C AHLERS, DDS PC PROFIT SHARING PLAN &TRUST","001","1976-08-01","THOMAS C. AHLERS, D.D.S., P.C.",,"C/O MARY RETHLAKE","RR 1, BOX 43",,"GOLDEN EAGLE","IL","62036",,,,,,,"RR 1, BOX 43",,"GOLDEN EAGLE","IL","62036",,,,,,,"431038652","6188832011","621210","THOMAS C. AHLERS, D.D.S., P.C.","C/O MARY RETHLAKE","RR 1, BOX 43",,"GOLDEN EAGLE","IL","62036",,,,,,,"431038652","6188832011",,,,"2011-04-30T07:37:30-0500","MARY RETHLAKE",,,,,1,0,0,0,0,1,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523141917P040020554663001","2007-11-01","2008-10-31","2",,"0","1","0","0","0","1","0","0","0",,"THE CEDAR MEMORIAL FUNERAL HOME COMPANY RETIREMENT SAVINGS PLAN","001","1978-11-01","THE CEDAR MEMORIAL FUNERAL HOME COMPANY",,,"4200 1ST AVE NE",,"CEDAR RAPIDS","IA","524023145",,,,,,,,,,,,,,,,,,"420895217","3193938000","812210","THE CEDAR MEMORIAL FUNERAL HOME COMPANY",,"4200 1ST AVE NE",,"CEDAR RAPIDS","IA","524023145",,,,,,,"420895217","3193938000",,,,"2011-05-23T14:16:55-0500","RONALD KREASSIG",,,,,23,22,,,22,,22,22,,,"2E2F2G2J2K3E3H",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523183509P030063642065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PACIFIC TRANSDUCER CORPORATION PROFIT SHARING PLAN","001","1990-01-01","PACIFIC TRANSDUCER CORP.",,,"2301 FEDERAL AVE.",,"LOS ANGELES","CA","900641405",,,,,,,,,,,,,,,,,,"954138904","3104781134","334110","PACIFIC TRANSDUCER CORP.",,"2301 FEDERAL AVE.",,"LOS ANGELES","CA","900641405",,,,,,,"954138904","3104781134",,,,"2011-05-23T18:21:48-0500","JOHN S. MARCUS",,,,,17,15,1,1,17,0,17,16,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523073844P030299626336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRIMARY CARE PHYSICIANS OF ATLANTA, P.C. 401(K) PROFIT SHARING PLAN","001","1990-01-01","PRIMARY CARE PHYSICIANS OF ATLANTA, P.C.",,,"5670 PEACHTREE DUNWOODY ROAD","SUITE 1200","ATLANTA","GA","30342",,,,,,,"5670 PEACHTREE DUNWOODY ROAD","SUITE 1200","ATLANTA","GA","30342",,,,,,,"581683962","4042559100","621111","PRIMARY CARE PHYSICIANS OF ATLANTA, P.C.",,"5670 PEACHTREE DUNWOODY ROAD","SUITE 1200","ATLANTA","GA","30342",,,,,,,"581683962","4042559100",,,,"2011-05-23T07:36:08-0500","LONNIE HERZOG","2011-05-23T07:36:08-0500","LONNIE HERZOG",,,39,27,0,10,37,0,37,37,2,,"2A2E2T2G2J2K2R3D2F",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523155804P030019730103001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"DEL REY YACHT CLUB 401K PLAN & TRUST","001","2010-01-01","DEL REY YACHT CLUB",,"GARY DEITSCH","13900 PALAWAN WAY",,"MARINA DEL REY","CA","90292",,,,,,,,,,,,,,,,,,"952293959","3108234664","713900","DEL REY YACHT CLUB","GARY DEITSCH","13900 PALAWAN WAY",,"MARINA DEL REY","CA","90292",,,,,,,"952293959","3108234664",,,,"2011-05-23T15:57:23-0500","GARY DEITSCH",,,,,32,34,0,0,34,0,34,6,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110602092340P040070865777001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SERVPRO OF NORWOOD/W ROXBURY PROFIT SHARING PLAN","001","2005-01-01","SERVPRO OF NORWOOD/W ROXBURY",,,"6 YORK ROAD",,"BELMONT","MA","02478",,,,,,,,,,,,,,,,,,"043529078","6173233677","561740","SERVPRO OF NORWOOD/W ROXBURY",,"6 YORK ROAD",,"BELMONT","MA","02478",,,,,,,"043529078","6173233677",,,,"2011-06-02T08:33:07-0500","MICHAEL PRIDHAM",,,,,10,8,0,6,14,0,14,14,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602100000P040070880273002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LANGDON & COMPANY 401K PLAN","002","2009-01-01","LANGDON & COMPANY,P.C.",,,"250 EAST 96TH STREET","SUITE 275","INDIANAPOLIS","IN","46240",,,,,,,,,,,,,,,,,,"351641058","3178442250","541211","LANGDON & COMPANY,P.C.",,"250 EAST 96TH STREET","SUITE 275","INDIANAPOLIS","IN","46240",,,,,,,"351641058","3178442250",,,,"2011-05-27T07:14:22-0500","ALLEN E LANGDON",,,,,6,6,,,6,,6,6,,,"2E2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602100233P040070881009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BORLIND OF GERMANY 401(K) PLAN","001","1999-09-01","BORLIND OF GERMANY, INC.",,,"88 OTTERVILLE RD., PO BOX 130",,"NEW LONDON","NH","03257",,,,,,,,,,,,,,,,,,"020398609","6037636400","424990","BORLIND OF GERMANY, INC.",,"88 OTTERVILLE RD., PO BOX 130",,"NEW LONDON","NH","03257",,,,,,,"020398609","6037636400",,,,"2011-05-31T15:41:35-0500","LINDA UPTON",,,,,19,16,0,4,20,0,20,11,0,,"2E2F2G2J2K3H",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110607120334P030071953841001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CONSTRUCTION & MINING EQUIPMENT SERVICES, INC. 401K PROFIT SHARING PLAN","001","1994-01-01","CONSTRUCTION & MINING EQUIPMENT SERVICES, INC.",,,"303 MOUND ROAD",,"ROCKDALE","IL","60436",,,,,,,,,,,,,,,,,,"680316666","8157441562","811310","CONSTRUCTION & MINING EQUIPMENT SERVICES, INC.",,"303 MOUND ROAD",,"ROCKDALE","IL","60436",,,,,,,"680316666","8157441562",,,,"2011-06-07T12:03:29-0500","ALFRED SOZA",,,,,12,8,0,4,12,0,12,7,2,,"2E2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607170756P040074003617001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SOUTH GEORGIA CARDIOLOGY, P.C. PROFIT SHARING PLAN","001","1994-01-01","SOUTH GEORGIA CARDIOLOGY, P.C.",,,"1062 RIDGE ROAD",,"VALDOSTA","GA","31605",,,,,,,,,,,,,,,,,,"582069013","2292451000","621111","SOUTH GEORGIA CARDIOLOGY, P.C.",,"1062 RIDGE ROAD",,"VALDOSTA","GA","31605",,,,,,,"582069013","2292451000",,,,"2011-06-07T14:02:42-0500","MAUREEN COLLINS",,,,,11,0,0,0,0,0,0,0,0,,"2A2E3D",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607191319P030340593248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ONTIC ENGINEERING AND MANUFACTURING, INC. WELFARE BENEFITS PLAN","501","2004-01-01","ONTIC ENGINEERING AND MFG., INC.",,,"20400 PLUMMER STREET",,"CHATSWORTH","CA","913115371",,,,,,,,,,,,,,,,,,"954085481","8187252111","336410","ONTIC ENGINEERING AND MFG., INC.",,"20400 PLUMMER STREET",,"CHATSWORTH","CA","913115371",,,,,,,"954085481","8187252111",,,,"2011-06-07T19:11:40-0500","BARBARA MURRAY",,,,,110,117,8,0,125,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602113712P030069080609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEP SUPERSHOOTERS, LP DENTAL PLAN","502","2003-01-01","NEP SUPERSHOOTERS, LP",,,"2 BETA DRIVE",,"PITTSBURGH","PA","152382916",,,,,,,,,,,,,,,,,,"251869518","4128261414","515100","NEP SUPERSHOOTERS, LP",,"2 BETA DRIVE",,"PITTSBURGH","PA","152382916",,,,,,,"251869518","4128261414",,,,"2011-06-02T11:36:57-0500","TERENCE BRADY",,,,,448,465,6,0,471,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602121547P040070938145001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAN SYSTEM SERVICES, INC. 401(K) PLAN","001","2007-07-01","LAN SYSTEM SERVICES, INC.",,,"4295 STEVE REYNOLDS BOULEVARD","SUITE A","NORCROSS","GA","30093",,,,,,,"4295 STEVE REYNOLDS BOULEVARD","SUITE A","NORCROSS","GA","30093",,,,,,,"582191641","7709250955","541519","LAN SYSTEM SERVICES, INC.",,"4295 STEVE REYNOLDS BOULEVARD","SUITE A","NORCROSS","GA","30093",,,,,,,"582191641","7709250955",,,,"2011-06-02T12:12:37-0500","KELLY PADEN",,,,,5,5,0,0,5,0,5,4,0,,"2E2G2J2K3E",,"1",,"1",,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602143205P030069156097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HANCOCK PHYSICIAN NETWORK, LLC EMPLOYEE BENEFIT PLAN","501","1999-01-01","HANCOCK PHYSICIAN NETWORK, LLC",,,"156 WEST MUSKEGON DRIVE",,"GREENFIELD","IN","461403069",,,,,,,,,,,,,,,,,,"352051598","3174686236","621111","HANCOCK PHYSICIAN NETWORK, LLC",,"156 WEST MUSKEGON DRIVE",,"GREENFIELD","IN","461403069",,,,,,,"352051598","3174686236",,,,"2011-06-02T14:24:24-0500","BRIAN MUCKERHEIDE",,,,,117,127,1,0,128,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110607083438P030339343200001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRAFTON EQUIPMENT CO. 401(K) PROFIT SHARING PLAN","001","1978-02-01","GRAFTON EQUIPMENT CO.",,,"5101 GATEWAY DRIVE",,"GRAND FORKS","ND","58203",,,,,,,,,,,,,,,,,,"450330917","7017464436","453990","GRAFTON EQUIPMENT CO.",,"5101 GATEWAY DRIVE",,"GRAND FORKS","ND","58203",,,,,,,"450330917","7017464436",,,,"2011-06-07T08:34:32-0500","JOHN ONCKEN",,,,,118,94,0,18,112,0,112,110,2,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110606130954P040333662128001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WINTHROP ROCKEFELLER CENTER 403B RETIREMENT PLAN","001","2005-01-01","WINTHROP ROCKEFELLER CENTER",,,"1 ROCKEFELLER DRIVE PETIT JEAN MT",,"MORRILTON","AR","72210",,,,,,,"1 ROCKEFELLER DRIVE PETIT JEAN MT",,"MORRILTON","AR","72210",,,,,,,"202156951","5017275435","611000","WINTHROP ROCKEFELLER CENTER",,"1 ROCKEFELLER DRIVE PETIT JEAN MT",,"MORRILTON","AR","72210",,,,,,,"202156951","5017275435",,,,"2011-06-02T10:32:05-0500","GARY GREENE",,,,,,,,,,,,,,,"2L",,"1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606105519P030336913840001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JUSTINO BETANCOURT COLLAZO RETIREMENT PLAN","001","2008-01-01","JUSTINO BETANCOURT COLLAZO",,,"PO BOX 1665",,"BAYAMON","PR","00960",,,,,,,,,,,,,,,,,,"660410586","7877989240","812990","JUSTINO BETANCOURT COLLAZO",,"PO BOX 1665",,"BAYAMON","PR","00960",,,,,,,"660410586","7877989240",,,,"2011-06-06T10:55:10-0500","JUSTINO BETANCOURT COLLAZO","2011-06-06T10:55:10-0500","JUSTINO BETANCOURT COLLAZO",,,3,3,0,0,3,0,3,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606105531P040073230657001","2010-01-15","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"FUTURE TIRE CO,, LTD. 401(K) PLAN","001","1994-01-01","FUTURE TIRE CO., LTD.",,,"202 BETHPAGE SWEET HOLLOW RD",,"OLD BETHPAGE","NY","11804",,,,,,,"202 BETHPAGE SWEET HOLLOW RD",,"OLD BETHPAGE","NY","11804",,,,,,,"112892465","5167529200","423100","FUTURE TIRE CO., LTD.",,"202 BETHPAGE SWEET HOLLOW RD",,"OLD BETHPAGE","NY","11804",,,,,,,"112892465","5167529200","FUTURE TIRE, LTD.","112892465","001","2011-06-06T10:53:55-0500","RICHARD SANTOSUS",,,,,41,41,0,2,43,1,44,26,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606160232P030071474225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KELLEY, JIGGINS & ASSOCIATES 401(K) PLAN","001","2003-05-01","EL CAPITAN FINANCIAL CORPORATION","KELLEY, JIGGINS & ASSOCIATES",,"455 NO EL MOLINO AVE",,"PASADENA","CA","91101",,,,,,,,,,,,,,,,,,"952685429","6263961035","812990","EL CAPITAN FINANCIAL CORPORATION",,"455 NO EL MOLINO AVE",,"PASADENA","CA","91101",,,,,,,"952685429","6263961035",,,,"2011-06-06T16:02:25-0500","MATTHEW JIGGINS",,,,,13,10,0,4,14,0,14,14,0,,"2E2F2G2J3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607084348P030071850705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM L. DANKS FH, INC., I-401K PSP","003","1992-01-01","WILLIAM L. DANKS FUNERAL HOME, INC.",,,"222 NORTH LAFAYETTE STREET","PO BOX 407","BEAVER DAM","KY","423200407",,,,,,,,,,,,,,,,,,"610956522","2702747124","812210","WILLIAM L. DANKS FUNERAL HOME, INC.",,"222 NORTH LAFAYETTE STREET","PO BOX 407","BEAVER DAM","KY","423200407",,,,,,,"610956522","2702747124",,,,"2011-06-07T08:43:40-0500","WILLIAM DANKS",,,,,4,4,0,0,4,0,4,4,0,,"3D2E2H2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607172622P040074009921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FORI AUTOMATION, INC. GROUP HEALTH PLAN","503","1993-01-01","FORI AUTOMATION, INC.",,,"50955 WING DRIVE",,"SHELBY TOWNSHIP","MI","483153271",,,,,,,,,,,,,,,,,,"382546819","5862472336","333510","FORI AUTOMATION, INC.",,"50955 WING DRIVE",,"SHELBY TOWNSHIP","MI","483153271",,,,,,,"382546819","5862472336",,,,"2011-06-07T17:26:13-0500","REIN ROTH",,,,,130,139,2,0,141,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602001533P040010348626001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"OWEN G PELLER MD","003","2002-01-01","OWEN G PELLER MD",,,"10625 NW 3RD ST",,"PLANTATION","FL","33324",,,,,,,"10625 NW 3RD ST",,"PLANTATION","FL","33324",,,,,,,"133341369","9544766587","621111","OWEN G PELLER MD",,"10625 NW 3RD ST",,"PLANTATION","FL","33324",,,,,,,"133341369","9544766587",,,,"2011-06-02T00:15:22-0500","OWEN PELLER",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2R3B",,,,"1","0",,,"1","0","1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606164518P040002218307001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"THOMASON, HENDRIX, HARVEY, JOHNSON & MITCHELL PROFIT SHARING PLAN","002","1993-01-01","THOMASON, HENDRIX, HARVEY, JOHNSON & MITCHELL",,,"40 SOUTH MAIN","ONE COMMERCE SQUARE 29TH FLOOR","MEMPHIS","TN","38103",,,,,,,"40 SOUTH MAIN","ONE COMMERCE SQUARE 29TH FLOOR","MEMPHIS","TN","38103",,,,,,,"621099777","9015258721","541110","THOMASON, HENDRIX, HARVEY, JOHNSON & MITCHELL",,"40 SOUTH MAIN","ONE COMMERCE SQUARE 29TH FLOOR","MEMPHIS","TN","38103",,,,,,,"621099777","9015258721",,,,"2011-06-06T16:44:57-0500","LINDA HADDOCK",,,,,72,58,0,12,70,0,70,65,0,,"2E2F2G2J2K2R2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606165917P040010746562001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NET PRO INC. 401K PLAN","001","2001-05-01","NET PRO INC",,,"16903 ALLEN RD.",,"LAKE OSWEGO","OR","97035",,,,,,,"16903 ALLEN RD.",,"LAKE OSWEGO","OR","97035",,,,,,,"330792194","5035686380",,"NET PRO INC",,"16903 ALLEN RD.",,"LAKE OSWEGO","OR","97035",,,,,,,"330792194","5035686380",,,,"2011-06-06T16:57:51-0500","MARK HOFMANN",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607113009P030071942001002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JERRI M. BLANEY PA 401K PROFIT SHARING PLAN AND TRUST","002","2008-01-01","JERRI M. BLANEY, PA",,,"11380 PROSPERITY FARMS RD,SUITE 203",,"PALM BEACH GARDENS","FL","33410",,,,,,,,,,,,,,,,,,"592358072","5616240291","541110","JERRI M. BLANEY PA",,"11380 PROSPERITY FARMS RD, STE 203",,"PALM BEACH GARDENS","FL","33410",,,,,,,"592358072","5616240291",,,,"2011-06-07T10:34:03-0500","JERRI M BLANEY",,,,,2,1,0,0,1,0,1,2,,,"2G2J2E",,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607120539P030071954897001","2006-09-01","2007-08-31","2",,"0","0","0","0","0","0","0","1","0",,"BROTOLOC HEALTH CARE SYSTEM, INC. HEALTH PLAN","501","2003-09-01","BROTOLOC HEALTH CARE SYSTEM, INC.",,,"2625 MORNINGSIDE DRIVE",,"EAU CLAIRE","WI","54703",,,,,,,,,,,,,,,,,,"391572628","7158325085","621610","BROTOLOC HEALTH CARE SYSTEM, INC.",,"2625 MORNINGSIDE DRIVE",,"EAU CLAIRE","WI","54703",,,,,,,"391572628","7158325085",,,,"2011-06-07T12:05:32-0500","JOEL BREED","2011-06-07T12:05:32-0500","JOEL BREED",,,270,250,,,250,,,,,,,"4A4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607145144P040023211271001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KILLEEN INDEPENDENT SCHOOL DISTRICT FLEXIBLE BENEFIT PLAN","501","1989-10-01","KILLEEN INDEPENDENT SCHOOL DISTRICT",,,"PO BOX 967",,"KILLEEN","TX","765400967",,,,,,,"2301 ATKINSON",,"KILLEEN","TX","76543",,,,,,,"746001505","2543360067","611000","KILLEEN INDEPENDENT SCHOOL DISTRICT",,"PO BOX 967",,"KILLEEN","TX","765400967",,,,,,,"746001505","2545010067",,,,"2011-06-07T14:50:59-0500","GLENDA GUTIERREZ","2011-06-07T13:51:22-0500","STEVE COOK",,,2519,2702,0,0,2702,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","1","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602100516P030326483328007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ECKERT FIRE PROTECTION SYSTEMS INC 401K PROFIT SHARING PLAN","001","1997-01-01","ECKERT FIRE PROTECTION SYSTEMS, INC",,,"510 WEST BENSON STREET",,"CINCINNATI","OH","45215",,,,,,,,,,,,,,,,,,"311463360","5135631010","812990","ECKERT FIRE PROTECTION SYSTEMS INC",,"510 WEST BENSON STREET",,"CINCINNATI","OH","45215",,,,,,,"311463360","5135631010",,,,"2011-06-01T08:54:14-0500","DONALD J ECKERT",,,,,45,24,,20,44,,44,44,1,,"3D2K2J2G2F2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602101015P030069048657001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"BLUEWATER 401K PLAN","001","2007-01-01","BLUEWATER BUILDERS, INC.",,,"3900 N.W.126TH AVENUE",,"CORAL SPRINGS","FL","33065",,,,,,,,,,,,,,,,,,"650846636","9547537233","236200","BLUEWATER BUILDERS, INC.",,"3900 N.W.126TH AVENUE",,"CORAL SPRINGS","FL","33065",,,,,,,"650846636","9547537233",,,,"2011-06-02T10:03:34-0500","TODD NEZWEK",,,,,13,0,0,0,0,0,0,0,0,,"2G2F2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606102907P030022124919001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FOREMOST FARMS USA HEALTH REIMBURSEMENT ARRANGEMENT","505","2007-01-01","FOREMOST FARMS USA",,,"PO BOX 111",,"BARABOO","WI","539130111",,,,,,,"E10889A PENNY LANE",,"BARABOO","WI","539130111",,,,,,,"391805431","6083558791","311500","FOREMOST FARMS USA",,"PO BOX 111",,"BARABOO","WI","539130111",,,,,,,"391805431","6083558791",,,,"2011-06-06T10:28:59-0500","LISA REIMER","2011-06-06T10:28:59-0500","LISA REIMER",,,208,216,,,216,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601221837P030068751969001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"L J TENNEY ENTERSPRISES, LLC PROFIT SHARING PLAN","001","2007-01-01","L J TENNEY ENTERPRISES, LLC",,,"PMB 61",,"SNOWFLAKE","AZ","85937",,,,,,,,,,,,,,,,,,"860826493","9285365190","484200","L J TENNEY ENTERPRISES, LLC",,"PMB 61",,"SNOWFLAKE","AZ","85937",,,,,,,"860826493","9285365190",,,,"2011-06-01T11:18:28-0500","JUDIE TENNEY",,,,,3,4,0,0,4,0,4,2,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110610091253P030073611345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STAMFORD YACHT CLUB 401(K) PLAN","001","1997-01-01","STAMFORD YACHT CLUB",,,"97 OCEAN DRIVE WEST",,"STAMFORD","CT","069028099",,,,,,,,,,,,,,,,,,"060547390","2033233161","336610","STAMFORD YACHT CLUB",,"97 OCEAN DRIVE WEST",,"STAMFORD","CT","069028099",,,,,,,"060547390","2033233161",,,,"2011-06-10T09:12:27-0500","VINCENT DI BIASE","2011-06-10T09:12:27-0500","VINCENT DI BIASE",,,43,40,0,8,48,0,48,28,0,,"2E3D2G2J2K",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606172019P040010748354001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CULBRETH SCHROEDER LLP 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","CULBRETH SCHROEDER LLP",,,"2945 RAMCO ST","STE 180","WEST SACRAMENTO","CA","95691",,,,,,,,,,,,,,,,,,"201634151","9164388300","541110","CULBRETH SCHROEDER LLP",,"2945 RAMCO ST","STE 180","WEST SACRAMENTO","CA","95691",,,,,,,"201634151","9164388300",,,,"2011-06-06T05:20:17-0500","CULBRETH SCHROEDER LLP",,,,,10,9,0,2,11,0,11,9,1,,"2A2E2G2J2K2R2T3D",,"1","0","1","0","1","0","1","0","1",,,"0","1","1","1","0","1",,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607143059P030340059232001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALCOA PITTSBURGH FEDERAL 401(K) PROFIT SHARING PLAN & TRUST","002","1996-01-01","ALCOA PITTSBURGH FEDERAL",,,"30 ISABELLA ST",,"PITTSBURGH","PA","15212",,,,,,,,,,,,,,,,,,"250970601","4125532842","522130","ALCOA PITTSBURGH FEDERAL",,"30 ISABELLA ST",,"PITTSBURGH","PA","15212",,,,,,,"250970601","4125532842",,,,"2011-06-07T02:30:56-0500","ALCOA PITTSBURGH FEDERAL",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607075021P030071822897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DENCO, LLC 401(K) PLAN","001","2009-01-01","DENCO, LLC",,,"227 COUNTY ROAD 22 SOUTH",,"MORRIS","MN","56267",,,,,,,,,,,,,,,,,,"203968454","3205857906","339900","DENCO, LLC",,"227 COUNTY ROAD 22 SOUTH",,"MORRIS","MN","56267",,,,,,,"203968454","3205857906",,,,"2011-06-07T07:49:01-0500","KATHI BIESTERFELD",,,,,22,16,0,0,16,0,16,11,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607145740P040010833954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE BUG MASTER GROUP 401(K) PLAN","001","1999-01-01","THE BUG MASTER",,,"8411 N. IH 35",,"AUSTIN","TX","787530000",,,,,,,,,,,,,,,,,,"742191303","5128361574","561710","THE BUG MASTER",,"8411 N. IH 35",,"AUSTIN","TX","787530000",,,,,,,"742191303","5128361574",,,,"2011-06-07T14:57:30-0500","NELLIE CANTU",,,,,68,57,0,12,69,1,70,17,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602140517P040070989345003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALBERT P GALDI MD SELF-EMPLOYMENT PROFIT SHARING RETIREMENT KEOGH PLAN","002","1986-01-01","ALBERT P GALDI",,,"15225 SHADY GROVE ROAD",,"ROCKVILLE","MD","208503254",,,,,,,,,,,,,,,,,,"521401465","2406312942","621111","ALBERT P GALDI",,"15225 SHADY GROVE ROAD",,"ROCKVILLE","MD","208503254",,,,,,,"521401465","2406312942",,,,"2011-06-02T13:47:36-0500","ALBERT P GALDI",,,,,3,1,,2,3,,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606140742P040073305953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TIGER DISTRIBUTORS 401K PROFIT SHARING PLAN","001","2002-01-29","M&J HOLDINGS, INC. T/A TIGER DISTRIBUTORS",,,"910 COSMO LANE",,"JACKSON","NJ","08527",,,,,,,,,,,,,,,,,,"233098283","7329651000","424400","M&J HOLDINGS, INC. T/A TIGER DISTRIBUTORS",,"910 COSMO LANE",,"JACKSON","NJ","08527",,,,,,,"233098283","7329651000",,,,"2011-06-06T08:09:47-0500","DAWN RICCO-PINTERICH","2011-06-06T08:13:57-0500","MICHAEL ROSS",,,31,13,0,16,29,0,29,27,2,,"2E2F2G2J2K2R2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602083713P030069013649001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"INFORMATION & COMPUTING SERVICES, INC. SAVINGS PLAN","001","1984-01-01","INFORMATION & COMPUTING SERVICES, INC.",,,"1650 PRUDENTIAL DRIVE","SUITE 300","JACKSONVILLE","FL","32207",,,,,,,"1650 PRUDENTIAL DRIVE","SUITE 300","JACKSONVILLE","FL","32207",,,,,,,"592093093","9044931670","541519","INFORMATION & COMPUTING SERVICES, INC.",,"1650 PRUDENTIAL DRIVE","SUITE 300","JACKSONVILLE","FL","32207",,,,,,,"592093093","9044931670",,,,"2011-06-01T10:35:41-0500","REGINA SUPARTO","2011-06-01T15:49:39-0500","JORGE MORALES",,,113,84,0,24,108,0,108,107,4,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606083342P040022981095001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES 403(B) TDA PLAN","002","2000-01-01","PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES",,,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"150533545","5183276291","611000","PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES",,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"150533545","5183276291",,,,"2011-06-06T05:54:39-0500","LAURA ROZELL",,,,,152,,,,,,,,,,"2G2L2T",,"1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110610091757P040075606177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ORAL SURGERY ASSOCIATES, L.L.P. PROFIT SHARING PLAN","001","1995-06-01","ORAL SURGERY ASSOCIATES, L.L.P.",,,"2003 FORSYTHE AVENUE",,"MONROE","LA","71201",,,,,,,,,,,,,,,,,,"721296849","3183882621","621210","ORAL SURGERY ASSOCIATES, L.L.P.",,"2003 FORSYTHE AVENUE",,"MONROE","LA","71201",,,,,,,"721296849","3183882621",,,,"2011-06-10T09:17:10-0500","JO ANN PICKERING",,,,,17,15,0,2,17,0,17,17,0,,"2E2J2G2R3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110602090829P040002141043001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TAIKO ENTERPRISES AND AFFILIATES 401K PLAN","001","2002-07-15","TAIKO ENTERPRISES",,,"1467 WEST 178TH STREET","SUITE 100","GARDENA","CA","90248",,,,,,,"1467 WEST 178TH STREET","SUITE 100","GARDENA","CA","90248",,,,,,,"954295725","3107151888","423800","TAIKO ENTERPRISES",,"1467 WEST 178TH STREET","SUITE 100","GARDENA","CA","90248",,,,,,,"954295725","3107151888",,,,"2011-06-01T19:17:24-0500","SATORU SODEYAMA",,,,,19,13,0,4,17,0,17,12,0,,"2E2F2G2J3E",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602101303P030069049505001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"GRAYCE B KERR FUND 401K PROFIT SHARING PLAN & TRUST","001","2004-08-10","GRAYCE B KERR FUND INC",,,"117 BAY ST",,"EASTON","MD","216012769",,,,,,,,,,,,,,,,,,"731256124","4108226652","541990","GRAYCE B KERR FUND INC",,"117 BAY ST",,"EASTON","MD","216012769",,,,,,,"731256124","4108226652",,,,"2011-06-02T10:11:24-0500","JAMES MAFFITT",,,,,5,3,0,1,4,0,4,4,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602102417P040070889569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STANDARD GRINDING & MANUFACTURING CO. PROFIT SHARING PLAN","001","1959-08-30","STANDARD GRINDING & MANUFACTURING COMPANY",,,"3721 WEST CHASE",,"SKOKIE","IL","600764008",,,,,,,,,,,,,,,,,,"200669620","8476741234","339900","STANDARD GRINDING & MANUFACTURING COMPANY",,"3721 WEST CHASE",,"SKOKIE","IL","600764008",,,,,,,"200669620","8476741234",,,,"2011-06-02T10:24:03-0500","ROBERT DEGEORGE",,,,,73,62,0,8,70,1,71,62,11,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602105113P040010383890001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"A. GRAZIANO 401(K) PLAN & TRUST","001","1994-03-01","A. GRAZIANO, INC.",,,"71 ADAMS STREET",,"BRAINTREE","MA","02184",,,,,,,,,,,,,,,,,,"042148083","7818437300","423300","A. GRAZIANO, INC.",,"71 ADAMS STREET",,"BRAINTREE","MA","02184",,,,,,,"042148083","7818437300",,,,"2011-06-02T10:49:56-0500","MARIE MACKENZIE",,,,,48,37,0,4,41,0,41,26,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602110007P040323201472001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PETER DINNERMAN DMD PROFIT SHARING PLAN","001","1978-01-01","PETER DINNERMAN",,,"134 MIDDLE STREET",,"PORTSMOUTH","NH","03801",,,,,,,,,,,,,,,,,,"026035991","6034360535","621210","PETER DINNERMAN",,"134 MIDDLE STREET",,"PORTSMOUTH","NH","03801",,,,,,,"026035991","6034360535",,,,"2011-06-02T11:39:34-0500","PETER DINNERMAN","2011-06-02T11:40:20-0500","PETER DINNERMAN",,,2,2,0,0,2,0,2,2,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607140719P040010830274001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEHR ABRAMSON KALLER 401(K) PROFIT SHARING PLAN","001","2001-01-01","BEHR ABRAMSON KALLER",,,"9701 WILSHIRE BLVD.","SUITE 800","BEVERLY HILLS","CA","90212",,,,,,,,,,,,,,,,,,"954567621","3105569200","812990","BEHR ABRAMSON KALLER",,"9701 WILSHIRE BLVD.","SUITE 800","BEVERLY HILLS","CA","90212",,,,,,,"954567621","3105569200",,,,"2011-06-07T14:05:59-0500","JIM TAI",,,,,18,7,0,10,17,0,17,17,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607140826P040336428336001","2010-01-01","2010-11-12","2",,"0","0","1","1","0","0","0","0","0",,"OLSON FINANCIAL SERVICES 401(K) PROFIT SHARING PLAN","001","1994-01-01","EVAN OLSON","OLSON FINANCIAL SERVICES",,"2425 SOUTH 144 STREET STE 201",,"OMAHA","NE","681443282",,,,,,,,,,,,,,,,,,"470614046","4023346282","523900","EVAN OLSON",,"2425 SOUTH 144 STREET STE 201",,"OMAHA","NE","681443282",,,,,,,"470614046","4023346282",,,,"2011-06-07T14:07:27-0500","EVAN E OLSON",,,,,2,0,0,0,0,0,0,0,0,,"2A2E2J2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607114509P040073853985003","2010-01-01","2010-12-31","3",,,,,,,,,,,,"TRUENORTH COMPANIES, L.C. HEALTH, DENTAL, VISION AND LONG-TERM CARE PLAN","503","2003-01-01","TRUENORTH COMPANIES, L.C.",,,"421 4TH AVENUE SE",,"CEDAR RAPIDS","IA","52401",,,,,,,,,,,,,,,,,,"421513015","3193645193","524210","TRUENORTH COMPANIES, L.C.",,"421 4TH AVENUE SE",,"CEDAR RAPIDS","IA","52401",,,,,,,"421513015","3193645193",,,,"2011-06-07T11:34:51-0500","JENNIFER CARROLL","2011-06-07T11:34:58-0500","JENNIFER CARROLL",,,123,117,6,,123,,,,,,,"4A4D4E4Q","1",,,,"1",,,,,,,,,"1","8","1",,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607154215P040073969153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMPU-TECH LUMBER PRODUCTS 401(K) PLAN","001","2000-01-01","COMPU-TECH LUMBER PRODUCTS",,,"1980 HUNTINGTON CT",,"FAIRFIELD","CA","94533",,,,,,,,,,,,,,,,,,"680358050","7074376683","321110","COMPU-TECH LUMBER PRODUCTS",,"1980 HUNTINGTON CT",,"FAIRFIELD","CA","94533",,,,,,,"680358050","7074376683",,,,"2011-06-07T15:42:08-0500","MICHAEL B BLAZER",,,,,19,12,0,4,16,0,16,14,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110610105340P030010659346001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAKER COMPANIES 401(K) PLAN","001","1992-01-01","BAKER COMPANIES",,,"ONE WEST RED OAK LANE",,"WHITE PLAINS","NY","10604",,,,,,,,,,,,,,,,,,"132551454","9144619000","237210","BAKER COMPANIES",,"ONE WEST RED OAK LANE",,"WHITE PLAINS","NY","10604",,,,,,,"132551454","9144619000",,,,"2011-06-10T10:53:31-0500","RHONDA M. JAMES",,,,,163,78,2,70,150,2,152,146,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110602111706P030326632496001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","0","0",,"ELGA CREDIT UNION DENTAL, SHORT TERM DISABILITY, LONG TERM DISABILITY AND LIFE INSURANCE","501","2008-03-01","ELGA CREDIT UNION",,"DANA JONES","2305 S CENTER ROAD",,"BURTON","MI","48519",,,,,,,"2305 S CENTER ROAD",,"BURTON","MI","48519",,,,,,,"381441242","8106002524","522130","ELGA CREDIT UNION","DANA JONES","2305 S CENTER ROAD",,"BURTON","MI","48519",,,,,,,"381441242","8106002524",,,,"2011-06-02T11:16:46-0500","DANA JONES",,,,,111,130,1,,131,,131,,,,,"4B4F4H4D","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602120435P040070930145001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"TRIPOWER RESOURCES, LLC 401K PLAN","001","1994-02-01","TRI POWER RESOURCES, LLC",,,"16 E STREET S.W.",,"ARDMORE","OK","73402",,,,,,,"16 E STREET S.W.",,"ARDMORE","OK","73402",,,,,,,"204993266","5802266700","211110","TRI POWER RESOURCES, LLC",,"16 E STREET S.W.",,"ARDMORE","OK","73402",,,,,,,"204993266","5802266700",,,,"2011-06-02T11:49:30-0500","JOHN GIBBS",,,,,14,16,0,0,16,0,16,13,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606085742P040010716354001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOBBS & HAIN PROFIT SHARING PLAN","001","2002-01-01","HOBBS & HAIN, PC",,,"P.O. DRAWER 1190",,"SELMA","AL","367021190",,,,,,,"P.O. DRAWER 1190",,"SELMA","AL","367021190",,,,,,,"631083984","3348746683","541110","HOBBS & HAIN, PC",,"P.O. DRAWER 1190",,"SELMA","AL","367021190",,,,,,,"631083984","3348746683",,,,"2011-06-06T08:56:18-0500","JAMES B. MCNEILL",,,,,3,3,0,0,3,0,3,3,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606151511P030337452032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENGLISH CONSTRUCTION COMPANY EMPLOYEE HEALTH AND WELFARE BENEFIT PLAN","501","1963-10-01","ENGLISH CONSTRUCTION COMPANY, INCORPORATED",,,"P O BOX P7000",,"LYNCHBURG","VA","245057000",,,,,,,"615 CHURCH STREET",,"LYNCHBURG","VA","24504",,,,,,,"540472783","4348450301","237310","ENGLISH CONSTRUCTION COMPANY, INCORPORATED",,"P O BOX P7000",,"LYNCHBURG","VA","245057000",,,,,,,"540472783","4348450301",,,,"2011-06-06T14:50:35-0500","GARRY COLLIE",,,,,287,282,3,,285,,285,,,,,"4A4B4E","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607151308P040073959009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JTRP, INC. 401K PLAN","001","2008-01-29","JTRP, INC.",,,"4672 OAKLEY ROAD",,"STOKES","NC","27884",,,,,,,,,,,,,,,,,,"261863127","2527568738","561900","JTRP, INC.",,"4672 OAKLEY ROAD",,"STOKES","NC","27884",,,,,,,"261863127","2527568738",,,,"2011-06-07T15:13:01-0500","JAMES PARRISH","2011-06-07T15:13:01-0500","JAMES PARRISH",,,3,3,0,0,3,0,3,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602134459P030069131841004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PITTSBURGH PARKS CONSERVANCY 403(B) DEFINED CONTRIBUTION PLAN","002","2000-06-29","PITTSBURGH PARKS CONSERVANCY",,,"2000 TECHNOLOGY DRIVE, SUITE 300",,"PITTSBURGH","PA","15219",,,,,,,,,,,,,,,,,,"232882145","4126827275","999999","PITTSBURGH PARKS CONSERVANCY",,"2000 TECHNOLOGY DRIVE, SUITE 300",,"PITTSBURGH","PA","15219",,,,,,,"232882145","4126827275",,,,"2011-06-17T09:17:34-0500","RICHARD REED",,,,,28,20,,10,30,,30,30,,,"2L3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602134626P040070977937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SELF-EMPLOYED 401(K) PLAN","401","2008-03-06","ENTROPY LIMITED CONSULTANTS",,,"345 SOUTH GREAT ROAD",,"LINCOLN","MA","01773",,,,,,,"345 SOUTH GREAT ROAD",,"LINCOLN","MA","01773",,,,,,,"043182642","7812598901","541600","CARLA DENGLER","ENTROPY LIMITED CONSULTANTS","345 SOUTH GREAT ROAD",,"LINCOLN","MA","01773",,,,,,,"024405166","7812598901",,,,"2011-06-02T13:45:20-0500","CARLA DENGLER",,,,,3,3,0,0,3,0,3,3,3,,"2J",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606104704P030071309441001","1991-01-01","1991-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CAMPFIRE USA MIDLANDS COUNCIL 403(B) PLAN","001","1969-07-28","CAMP FIRE USA MIDLANDS COUNCIL, INC.",,,"2566 ST. MARY'S AVENUE",,"OMAHA","NE","68105",,,,,,,"2566 ST. MARY'S AVENUE",,"OMAHA","NE","68105",,,,,,,"470401232","4023975809","624100","CAMP FIRE USA MIDLANDS COUNCIL, INC.",,"2566 ST. MARY'S AVENUE",,"OMAHA","NE","68105",,,,,,,"470401232","4023975809",,,,"2011-06-06T10:29:07-0500","TRACY SHUTT",,,,,8,8,0,0,8,0,8,8,,,"2L",,"1",,"0",,"1",,"0",,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607080832P030071830065001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MOORE, O'BRIEN, JACQUES & YELENAK SECTION 401(K) PROFIT SHARING PLAN","001","2001-01-01","MOORE, OBRIEN, JACQUES & YELENAK",,,"389 WHITE DEER ROCK RD",,"MIDDLEBURY","CT","067621327",,,,,,,,,,,,,,,,,,"061380537","2032725881","541110","MOORE, OBRIEN, JACQUES & YELENAK",,"389 WHITE DEER ROCK RD",,"MIDDLEBURY","CT","067621327",,,,,,,"061380537","2032725881",,,,"2011-06-07T09:08:20-0500","GARRETT M. MOORE",,,,,22,16,0,3,19,,19,19,0,,"2A2E2G2J2K3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607101645P030010411330006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PHYLLIS BIRKEL M.D. EMPLOYEES PROFIT SHARING PLAN","001","1994-01-01","PHYLLIS BIRKEL M.D.",,,"333 FORT STREET",,"PORT HURON","MI","48060",,,,,,,"333 FORT STREET",,"PORT HURON","MI","48060",,,,,,,"382733159",,"621111","PHYLLIS BIRKEL M.D.",,"333 FORT STREET",,"PORT HURON","MI","48060",,,,,,,"382733159",,,,,"2011-05-23T08:52:28-0500","PHYLIS BIRKEL M.D.","2011-05-23T08:52:28-0500","PHYLIS BIRKEL M.D.",,,1,1,,,1,,1,,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607101831P040010808546001","2010-02-01","2011-01-31","1",,"0","0","0","0","0","0","0","0","0",,"HAYNES FURNITURE COMPANY, INC. FLEXIBLE BENEFIT PLAN","506","2005-01-01","HAYNES FURNITURE COMPANY, INC.",,,"5324 VIRGINIA BEACH BOULEVARD",,"VIRGINIA BEACH","VA","23462",,,,,,,"5324 VIRGINIA BEACH BOULEVARD",,"VIRGINIA BEACH","VA","23462",,,,,,,"540491974","7574975833","442110","HAYNES FURNITURE COMPANY, INC.",,"5324 VIRGINIA BEACH BOULEVARD",,"VIRGINIA BEACH","VA","23462",,,,,,,"540491974","7574975833",,,,"2011-06-07T10:06:07-0500","BRUCE BREEDLOVE",,,,,455,455,0,0,455,0,455,,,,,"4A4D4F4B4H","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602102529P040070889953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAROLINA MOUNTAIN MEDICAL, P.A. 401(K) PROFIT SHARING PLAN","001","2001-01-01","CAROLINA MOUNTAIN MEDICAL, P.A.",,,"80 PEACHTREE ROAD, SUITE 200",,"ASHEVILLE","NC","28803",,,,,,,,,,,,,,,,,,"562216983","8282777772","621111","CAROLINA MOUNTAIN MEDICAL, P.A.",,"80 PEACHTREE ROAD, SUITE 200",,"ASHEVILLE","NC","28803",,,,,,,"562216983","8282777772",,,,"2011-06-02T10:25:21-0500","MARK ENGEL MD",,,,,11,9,0,1,10,0,10,10,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110610092929P040075610113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CROW WING COOPERATIVE POWER AND LIGHT GROUP DENTAL BENEFIT PLAN","504","1986-01-01","CROW WING COOPERATIVE POWER AND LIGHT COMPANY","CROW WING POWER","DONALD K. NELSON","PO BOX 507 HWY 371 NO",,"BRAINERD","MN","56401",,,,,,,"17330 STATE HWY 371 NO",,"BRAINERD","MN","56401",,,,,,,"410208552","2188292827","221100","CROW WING COOPERATIVE POWER AND LIGHT COMPANY","DONALD K. NELSON","PO BOX 507 HWY 371 NO",,"BRAINERD","MN","56401",,,,,,,"410208552","2188292827",,,,"2011-06-10T09:19:00-0500","DONALD NELSON","2011-06-10T09:20:24-0500","BRUCE KRAEMER",,,127,122,2,0,124,0,124,0,0,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602092214P040070865537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ZENITH LOGISTICS, INC. HEALTH PLAN","511","1999-01-01","ZENITH LOGISTICS, INC.",,"JAMES W. STADTMILLER","300 SHORLAND DRIVE",,"WALTON","KY","410949328",,,,,,,,,,,,,,,,,,"311611261","8594851212","493100","ZENITH LOGISTICS, INC.","JAMES W. STADTMILLER","300 SHORLAND DRIVE",,"WALTON","KY","410949328",,,,,,,"311611261","8594851212",,,,"2011-06-02T09:14:49-0500","JAMES W. STADTMILLER",,,,,271,331,2,0,333,,,,,,,"4A4B4D4E4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602103302P040010382930001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PFEIL & HOLING, INC. RETIREMENT TRUST (P.S.)","002","1979-01-01","PFEIL & HOLING, INC.",,,"58-15 NORTHERN BLVD",,"WOODSIDE","NY","11377",,,,,,,,,,,,,,,,,,"135315115","7185454600","424100","PFEIL & HOLING, INC.",,"58-15 NORTHERN BLVD",,"WOODSIDE","NY","11377",,,,,,,"135315115","7185454600",,,,"2011-06-02T10:32:57-0500","SEYMOUR STRICKER",,,,,22,20,0,0,20,0,20,12,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606095339P030071286385001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GLYNN ELECTRIC 401K PLAN","001","1968-07-16","GLYNN ELECTRIC",,,"PO BOX 231609",,"HOUSTON","TX","77023",,,,,,,"5301 POLK STREET BLDG 12",,"HOUSTON","TX","77023",,,,,,,"741386280","7139215213","488300","GLYNN ELECTRIC",,"PO BOX 231609",,"HOUSTON","TX","77023",,,,,,,"741386280","7139215213",,,,"2011-06-06T09:44:01-0500","JENNY LAO",,,,,87,79,0,7,86,2,88,22,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606095745P030071289361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QUESTEX MEDIA GROUP LLC HEALTH AND WELFARE PLAN","501","2009-12-01","QUESTEX MEDIA GROUP, LLC",,,"275 GROVE STREET","SUITE 2130","NEWTON","MA","02466",,,,,,,,,,,,,,,,,,"271392763","6172198300","511120","QUESTEX MEDIA GROUP, LLC",,"275 GROVE STREET","SUITE 2130","NEWTON","MA","02466",,,,,,,"271392763","6172198300",,,,"2011-06-06T09:57:40-0500","CONNIE OLIVARES",,,,,304,273,13,0,286,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606101553P030336832944001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"EARL D ARNOLD PRINTING CO. 401(K) PLAN","001","1976-05-01","EARL D ARNOLD PRINTING CO",,,"630 LUNKEN PARK DRIVE",,"CINCINNATI","OH","45226",,,,,,,"630 LUNKEN PARK DRIVE",,"CINCINNATI","OH","45226",,,,,,,"310523152","5135336900","323100","EARL D ARNOLD PRINTING CO",,"630 LUNKEN PARK DRIVE",,"CINCINNATI","OH","45226",,,,,,,"310523152","5135336900",,,,"2011-06-06T10:15:00-0500","TIMOTHY ARNOLD",,,,,59,39,0,13,52,0,52,45,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606104131P040073222865001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOSEPH B. NEIMAN, MD, PC PROFIT SHARING PLAN","003","1988-10-01","JOSEPH B. NEIMAN, MD, PC",,,"1140 YOUNGS ROAD",,"WILLIAMSVILLE","NY","14221",,,,,,,"1140 YOUNGS ROAD",,"WILLIAMSVILLE","NY","14221",,,,,,,"161169035","7166880020","621111","JOSEPH B. NEIMAN, MD, PC",,"1140 YOUNGS ROAD",,"WILLIAMSVILLE","NY","14221",,,,,,,"161169035","7166880020",,,,"2011-06-06T06:07:01-0500","THOMAS D HYZY","2011-06-06T06:07:01-0500","JOSEPH NEIMAN",,,18,15,0,3,18,0,18,18,0,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607111635P040073843345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRITON SYSTEMS OF DELAWARE, LLC FLEXIBLE BENEFITS PLAN","501","1991-07-01","TRITON SYSTEMS OF DELAWARE, LLC",,,"21405 B STREET",,"LONG BEACH","MS","39560",,,,,,,,,,,,,,,,,,"271596228","2285753100","339900","TRITON SYSTEMS OF DELAWARE, LLC",,"21405 B STREET",,"LONG BEACH","MS","39560",,,,,,,"271596228","2285753100","TRITON SYSTEMS OF DELAWARE, INC.","640947096","501","2011-06-07T11:15:34-0500","BRIAN GOFF","2011-06-07T11:15:34-0500","BRIAN GOFF",,,170,148,1,2,151,,,,,,,"4A4B4D4E4F4Q","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607135039P030072007057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MOTOR CITY SALES AND SERVICE, INC. WELFARE BENEFIT PLAN","503","2002-06-01","MOTOR CITY SALES AND SERVICE, INC.",,,"3101 PACHECO ROAD",,"BAKERSFIELD","CA","93313",,,,,,,,,,,,,,,,,,"952367150","6619781883","441110","MOTOR CITY SALES AND SERVICE, INC.",,"3101 PACHECO ROAD",,"BAKERSFIELD","CA","93313",,,,,,,"952367150","6619781883",,,,"2011-06-07T12:30:55-0500","KAREN GERACI",,,,,210,196,,,196,,,,,,,"4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607183810P030072130257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"S AND ME, INC. GROUP BENEFIT PLAN","502","1992-03-12","S AND ME, INC.",,,"3201 SPRING FOREST ROAD",,"RALEIGH","NC","27616",,,,,,,,,,,,,,,,,,"560791580","9198722660","541330","S AND ME, INC.",,"3201 SPRING FOREST ROAD",,"RALEIGH","NC","27616",,,,,,,"560791580","9198722660",,,,"2011-06-07T18:38:02-0500","BRUCE L ALTSTAETTER",,,,,819,891,37,0,928,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602144802P030327064848001","2010-06-12","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"TRIPLE J AND M, LTD. 401(K) PROFIT SHARING PLAN","001","2010-06-17","TRIPLE J AND M, LTD.",,,"PO BOX 399 5N101 MUNGER RD",,"WAYNE","IL","60104",,,,,,,,,,,,,,,,,,"272866822","6308302259","443112","TRIPLE J AND M, LTD.",,"PO BOX 399 5N101 MUNGER RD",,"WAYNE","IL","60104",,,,,,,"272866822","6308302259",,,,"2011-06-02T14:39:56-0500","MARIE WIERMANSKI",,,,,3,3,0,0,3,0,3,3,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110607105758P040073832193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IMAGE SPECIALISTS INC. 401K PROFIT SHARING PLAN & TRUST","001","1981-08-01","IMAGE SPECIALISTS INC.",,,"P.O. BOX 2382",,"HOLTSVILLE","NY","117421708",,,,,,,"35 CORPORATE DRIVE",,"HOLTSVILLE","NY","117421708",,,,,,,"112335074","6314759600","325900","IMAGE SPECIALISTS INC.",,"P.O. BOX 2382",,"HOLTSVILLE","NY","117421708",,,,,,,"112335074","6314759600",,,,"2011-06-07T10:57:27-0500","JOSEPH COSTELLO",,,,,16,16,0,0,16,0,16,16,0,,"2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110606152958P030337478368001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EDWARD ROWSE ARCHITECTS, INC. 401K PROFIT SHARING PLAN","001","1998-01-01","EDWARD ROWSE ARCHITECTS, INC.",,,"115 CEDAR ST",,"PROVIDENCE","RI","029031082",,,,,,,,,,,,,,,,,,"050443909","4013319200","541310","EDWARD ROWSE ARCHITECTS, INC.",,"115 CEDAR ST",,"PROVIDENCE","RI","029031082",,,,,,,"050443909","4013319200",,,,"2011-06-06T15:29:48-0500","EDWARD A. ROWSE",,,,,15,13,0,1,14,0,14,14,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607132424P040336334064001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"KLEARSKY SOLUTIONS LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","KLEARSKY SOLUTIONS LLC",,,"1608 ORTH DRIVE",,"WHEATON","IL","60189",,,,,,,"1608 ORTH DRIVE",,"WHEATON","IL","60189",,,,,,,"201834220","7733308095","541990","KLEARSKY SOLUTIONS LLC",,"1608 ORTH DRIVE",,"WHEATON","IL","60189",,,,,,,"201834220","7733308095",,,,"2011-06-07T13:20:39-0500","IVAN MEDANIC",,,,,3,3,0,0,3,0,3,2,0,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110610123011P040011089890001","2010-01-01","2010-12-31","2",,"1",,"0","0","0","1","0","0","0",,"THE GELMAN'S OPTICAL, INC. 401(K) PROFIT SHARING PLAN","001","2010-01-01","THE GELMAN'S OPTICAL, INC.",,,"1353 3RD AVENUE",,"NEW YORK","NY","10075",,,,,,,"1353 3RD AVENUE",,"NEW YORK","NY","10075",,,,,,,"203924140","2122496365","621320","THE GELMAN'S OPTICAL, INC.",,"1353 3RD AVENUE",,"NEW YORK","NY","10075",,,,,,,"203924140","2122496365",,,,"2011-06-09T15:09:56-0500","LEE GELMAN",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2F2H2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110606135843P040333759296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHICAGO METALLIC CORPORATION RETIREE BENEFITS PLAN","514","2004-01-01","CHICAGO METALLIC CORPORATION",,,"4849 SOUTH AUSTIN AVENUE",,"CHICAGO","IL","60638",,,,,,,"4849 SOUTH AUSTIN AVENUE",,"CHICAGO","IL","60638",,,,,,,"360902480","7085634600","332900","CHICAGO METALLIC CORPORATION",,"4849 SOUTH AUSTIN AVENUE",,"CHICAGO","IL","60638",,,,,,,"360902480","7085634600",,,,"2011-06-06T13:51:23-0500","MARTHA JAHN MARTIN","2011-06-06T11:59:58-0500","JOHN MEDIO",,,7,24,5,,29,,29,,,,,"4A4D","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606142119P040002216131001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENT ASSOCIATES OF NH, P.A. PROFIT SHARING PLAN","002","1997-01-01","ENT ASSOCIATES OF NH, P.A.",,,"85 SPRING STREET",,"LACONIA","NH","03246",,,,,,,,,,,,,,,,,,"020483498","6035247402","621111","ENT ASSOCIATES OF NH, P.A.",,"85 SPRING STREET",,"LACONIA","NH","03246",,,,,,,"020483498","6035247402",,,,"2011-06-06T13:08:33-0500","MADELINE GRANT",,,,,28,24,0,3,27,0,27,27,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606213009P040010763074001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DANIEL D. GORAN MONEY PURCHASE PLAN","002","1983-12-09","DANIEL D. GORAN M.D.",,,"1121 UNIVERSITY DR SUITE D",,"EDWARDSVILLE","IL","620255543",,,,,,,,,,,,,,,,,,"431262636","6186926718","621111","DANIEL D. GORAN M.D.",,"1121 UNIVERSITY DR SUITE D",,"EDWARDSVILLE","IL","620255543",,,,,,,"431262636","6186926718",,,,"2011-06-04T11:03:43-0500","DANIEL D. GORAN","2011-06-06T21:18:32-0500","DANIEL D. GORAN",,,7,6,0,1,7,0,7,7,,,"2C3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607070447P030071805457001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"VENT-RITE VALVE CORPORATION RETIREMENT PLAN","001","2003-01-01","VENT-RITE VALVE CORPORATION",,,"1875 DEWEY AVENUE",,"BENTON HARBOR","MI","49022",,,,,,,,,,,,,,,,,,"042820039","2699258812","423700","VENT-RITE VALVE CORPORATION",,"1875 DEWEY AVENUE",,"BENTON HARBOR","MI","49022",,,,,,,"042820039","2699258812",,,,"2011-06-07T06:21:11-0500","KIM RHOADS",,,,,39,38,0,1,39,0,39,39,0,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607083314P040073762465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VENICE RESTAURANT ASSOCIATES 401K PS PLAN","001","2007-01-01","VENICE RESTAURANT ASSOCIATES",,,"1968 TARPON CENTER DR",,"VENICE","FL","342851035",,,,,,,,,,,,,,,,,,"592101854","9414849551","722110","VENICE RESTAURANT ASSOCIATES",,"1968 TARPON CENTER DR",,"VENICE","FL","342851035",,,,,,,"592101854","9414849551",,,,"2011-06-07T08:25:12-0500","STEPHEN HARNER",,,,,54,65,0,1,66,0,66,31,0,,"2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110610141637P030010670930001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FITZGERALD & HULING PHARMACY, INC. 401(K) PROFIT SHARING PLAN","001","1999-01-01","FITZGERALD & HULING PHARMACY, INC.",,,"100 EAST PLANE",,"BETHEL","OH","45106",,,,,,,,,,,,,,,,,,"310739128","5137347335","446110","FITZGERALD & HULING PHARMACY, INC.",,"100 EAST PLANE",,"BETHEL","OH","45106",,,,,,,"310739128","5137347335",,,,"2011-06-10T14:16:31-0500","MARK FITZGERALD","2011-06-10T14:16:31-0500","MARK FITZGERALD",,,61,43,0,15,58,0,58,56,0,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606130525P040073279857001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"SHELBY COUNTY COOKERS LLC","501","2008-01-01","SHELBY COUNTY COOKERS LLC",,"VALERIE ROBINSON","1231 870TH STREET",,"HARLAN","IA","51537",,,,,,,"1231 870TH STREET",,"HARLAN","IA","51537",,,,,,,"200894800","4028298444","311110","SHELBY COUNTY COOKERS LLC","VALERIE ROBINSON","1231 870TH STREET",,"HARLAN","IA","51537",,,,,,,"200894800","4028298444",,,,"2011-06-06T12:13:42-0500","VALERIE ROBINSON",,,,,221,221,0,0,221,,221,,,,,"4A4B4D4Q","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607103625P030010412994006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"INGLE CARL & RAGSDALE LLC PROFIT SHARING PLAN","001","1991-01-01","INGLE CARL & RAGSDALE LLC",,,"2015 NW GRANT AVE",,"CORVALLIS","OR","97330",,,,,,,,,,,,,,,,,,"931185616","5417540112","541211","INGLE CARL & RAGSDALE LLC",,"2015 NW GRANT AVE",,"CORVALLIS","OR","97330",,,,,,,"931185616","5417540112",,,,"2011-06-07T10:21:42-0500","MARILYN J CARL",,,,,9,7,,2,9,,9,9,1,,"3B2J2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110609183210P040011026706001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TIVO INC. SECTION 125 PLAN","501","1999-01-01","TIVO INC.",,,"2160 GOLD STREET",,"ALVISO","CA","95002",,,,,,,,,,,,,,,,,,"770463167","4085199105","541700","TIVO INC.",,"2160 GOLD STREET",,"ALVISO","CA","95002",,,,,,,"770463167","4085199105",,,,"2011-06-09T18:32:05-0500","LORETTA BERG",,,,,179,182,0,0,182,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603135135P040071620337004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROSENBAUER AMERICA GROUP HEALTH PLAN","501","1998-04-01","ROSENBAUER AMERICA, LLC",,,"BOX 57",,"LYONS","SD","57041",,,,,,,,,,,,,,,,,,"411906559","6055435591","333900","ROSENBAUER AMERICA, LLC",,"BOX 57",,"LYONS","SD","57041",,,,,,,"411906559","6055435591",,,,"2011-06-03T08:20:49-0500","BRIAN KUETER","2011-06-03T08:20:49-0500","BRIAN KUETER",,,309,315,,,315,,,,,,,"4A4B4E","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110603142903P040071636545001","2010-01-01","2010-12-27","2",,"0",,"1","1","0",,,,,,"DIASPARK RETIREMENT PLAN","001","2007-05-01","DIASPARK, INC.",,,"200 METROPLEX DR STE 401",,"EDISON","NJ","088172600",,,,,,,,,,,,,,,,,,"133707185","7322488333","541519","DIASPARK, INC.",,"200 METROPLEX DR STE 401",,"EDISON","NJ","088172600",,,,,,,"133707185","7322488333",,,,"2011-06-03T14:29:01-0500","SARVESH JAIN","2011-06-03T14:29:01-0500","SARVESH JAIN",,,183,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110603145611P030069737697001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"MONTGOMERY VILLAGE FOUNDATION, INC. RETIREMENT AND SAVINGS PLAN AND TRUST","001","1985-11-11","MONTGOMERY VILLAGE FOUNDATION, INC.",,,"10120 APPLE RIDGE RD",,"MONTGOMERY VILLAGE","MD","20886",,,,,,,"10120 APPLE RIDGE RD",,"MONTGOMERY VILLAGE","MD","20886",,,,,,,"520857236","3019480110","813000","MONTGOMERY VILLAGE FOUNDATION, INC.",,"10120 APPLE RIDGE RD",,"MONTGOMERY VILLAGE","MD","20886",,,,,,,"520857236","3019480110",,,,"2011-05-23T09:00:12-0500","W. GREGORY SNELLINGS","2011-05-23T07:38:03-0500","DAVID HUMPTON",,,82,71,0,10,81,0,81,69,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608094700P030010494722001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WEINSTEIN SNYDER LINDEMANN 401(K) PLAN","001","1999-01-01","WEINSTEIN SNYDER LINDEMANN",,,"101 EISENHOWER PARKWAY",,"ROSELAND","NJ","07068",,,,,,,,,,,,,,,,,,"223234790","9734036000","541110","WEINSTEIN SNYDER LINDEMANN",,"101 EISENHOWER PARKWAY",,"ROSELAND","NJ","07068",,,,,,,"223234790","9734036000",,,,"2011-06-08T09:46:52-0500","DONNA M. SANDERS",,,,,22,11,0,8,19,0,19,18,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608153838P040339296672001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"IRENE NEUWIRTH, INC. 401(K) PLAN","001","2008-01-01","IRENE NEUWIRTH , INC",,,"1324 ABBOT KINNEY BOULEVARD",,"VENICE","CA","90291",,,,,,,,,,,,,,,,,,"201441987","3104506063","812990","IRENE NEUWIRTH , INC",,"1324 ABBOT KINNEY BOULEVARD",,"VENICE","CA","90291",,,,,,,"201441987","3104506063",,,,"2011-06-08T15:38:29-0500","TRACY STOLL",,,,,5,5,0,0,5,0,5,4,0,,"2E2F2G2J2K3D3H2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608154318P030342974464001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"A. J ROWE & ASSOCIATES, INC. PROFIT SHARING PLAN","001","1982-12-01","A. J. ROWE & ASSOCIATES, INC",,,"9675 POINDEXTER COURT",,"BURKE","VA","22015",,,,,,,,,,,,,,,,,,"541190477","7032398229","541600","DONALD E SAUNDERS",,"9675 POINDEXTER COURT",,"BURKE","VA","22015",,,,,,,"217606356","7032398229",,,,"2011-06-08T11:42:33-0500","DONALD E SAUNDERS",,,,,2,2,,,2,,2,2,0,,"2E2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608154427P040074572113001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"COOL-RITE INC","001","2007-01-01","COOL-RITE, INC",,,"102 DRENNEN ROAD","SUITE A4","ORLANDO","FL","32806",,,,,,,"102 DRENNEN ROAD","SUITE A4","ORLANDO","FL","32806",,,,,,,"593684193","4078513338","541990","COOL-RITE, INC",,"102 DRENNEN ROAD","SUITE A4","ORLANDO","FL","32806",,,,,,,"593684193","4078513338",,,,"2011-06-08T15:44:08-0500","JOSEPH RUDD",,,,,,5,0,1,6,,6,3,,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609162655P040011018914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROSE PRINTING COMPANY 401(K) PROFIT SHARING PLAN","001","1989-10-01","ROSE PRINTING COMPANY, INC.",,,"PO BOX 5078",,"TALLAHASSEE","FL","323145078",,,,,,,,,,,,,,,,,,"590601308","8505764151","541990","ROSE PRINTING COMPANY, INC.",,"PO BOX 5078",,"TALLAHASSEE","FL","323145078",,,,,,,"590601308","8505764151",,,,"2011-06-09T16:19:43-0500","CHARLES ROSENBERG",,,,,94,64,0,40,104,0,104,66,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609162831P030022757399001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIAMOND ELECTRIC PROFIT SHARING PLAN","001","1995-09-19","DIAMOND ELECTRIC INC.",,"SAME","1465 SOUTH 300 WEST",,"SALT LAKE CITY","UT","84115",,,,,,,,,,,,,,,,,,"870303214","8014844325","811310","DIAMOND ELECTRIC INC.","SAME","1465 SOUTH 300 WEST",,"SALT LAKE CITY","UT","84115",,,,,,,"870303214","8014844325",,,,"2011-06-09T13:25:03-0500","JILL ASTIN","2011-06-09T13:25:03-0500","JILL ASTIN",,,20,20,,0,20,0,20,10,0,,"2E2F2G2J2K3D",,"1",,,,"1",,,,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608103649P030072475233001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ALLIED LUMBER AND MERCHANDISE 401(K) PLAN","001","1998-01-01","ALLIED LUMBER AND MERCHANDISE, INC.",,,"300 N. MEYER",,"SEALY","TX","77474",,,,,,,"300 N. MEYER",,"SEALY","TX","77474",,,,,,,"741687425","9798852948","444110","ALLIED LUMBER AND MERCHANDISE, INC.",,"300 N. MEYER",,"SEALY","TX","77474",,,,,,,"741687425","9798852948",,,,"2011-06-08T10:36:00-0500","MITJA PETERMAN",,,,,21,20,0,3,23,1,24,20,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608120058P030072530081001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"M&I FUNDAMENTAL INDEX FUND","001",,"MARSHALL & ILSLEY TRUST COMPANY NA",,,"11270 WEST PARK PLACE, SUITE 400",,"MILWAUKEE","WI","53224",,,,,,,,,,,,,,,,,,"392049174","4142878700",,"MARSHALL & ILSLEY TRUST COMPANY NA",,"11270 WEST PARK PLACE, SUITE 400",,"MILWAUKEE","WI","53224",,,,,,,"392049174","4142878700",,,,,,,,"2011-06-08T12:00:47-0500","JOSEPH HORSTMEIER, VICE PRESIDENT",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-06-08",,"Filed with authorized/valid electronic signature", "20110608105626P030072492577001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BADILLO NAZCA SAATCHI & SAATCHI OMNIBUS WELFARE BENEFIT PROGRAM","501","2005-01-01","BADILLO NAZCA SAATCHI & SAATCHI, INC.",,"CRISTINA ECHEVARRIA","PO BOX 11905","CAPARRA HEIGHTS STATION","SAN JUAN","PR","00922",,,,,,,"1504 FD ROOSEVELT AVE.",,"SAN JUAN","PR","00920",,,,,,,"660503707","7876221000","541800","BADILLO NAZCA SAATCHI & SAATCHI, INC.","CRISTINA ECHEVARRIA","PO BOX 11905","CAPARRA HEIGHTS STATION","SAN JUAN","PR","00922",,,,,,,"660503707","7876221000",,,,"2011-06-08T10:50:34-0500","CRISTINA ECHEVARRIA",,,,,116,103,0,0,103,0,103,,0,,,"4A4B4D4E4H","1",,,"0","1",,,"0",,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608112603P040338766912002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RAIL CAR SERVICE CO., INC. EMPLOYEE PROFIT SHARING PLAN","003","1988-01-01","RAIL CAR SERVICE CO., INC.","D/B/A PENNSYLVANIA RAIL CAR CO.",,"584 FAIRGROUND ROAD",,"MERCER","PA","16137",,,,,,,,,,,,,,,,,,"251447208","7246623660","336990","RAIL CAR SERVICE CO., INC.",,"584 FAIRGROUND ROAD",,"MERCER","PA","16137",,,,,,,"251447208","7246623660",,,,"2011-06-08T07:06:10-0500","ROBERT GILKEY","2011-06-08T07:06:10-0500","ROBERT GILKEY",,,69,42,0,19,61,0,61,61,0,,"2A2E2F2G2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110604080642P040328073840001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THAI-AN DOAN, DDS 401(K) PLAN","001","2003-10-01","THAI-AN DOAN, DDS",,,"11318 NORTH MAY AVE., SUITE B",,"OKLAHOMA CITY","OK","73120",,,,,,,,,,,,,,,,,,"208083303","4057525437","621210","THAI-AN DOAN, DDS",,"11318 NORTH MAY AVE., SUITE B",,"OKLAHOMA CITY","OK","73120",,,,,,,"208083303","4057525437",,,,"2011-06-04T08:04:45-0500","THAI-AN DOAN, DDS","2011-06-04T08:04:45-0500","THAI-AN DOAN, DDS",,,6,5,0,0,5,0,5,4,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609145005P030073165425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANN ASTOLFI, D.M.D. 401(K) PROFIT SHARING PLA","001","2002-01-01","ANN ASTOLFI, D.M.D., PC",,,"2299 BRODHEAD RD","SUITE F","BETHLEHEM","PA","18020",,,,,,,,,,,,,,,,,,"233102340","6108821501","621210","ANN ASTOLFI, D.M.D., PC",,"2299 BRODHEAD RD","SUITE F","BETHLEHEM","PA","18020",,,,,,,"233102340","6108821501",,,,"2011-06-09T14:49:56-0500","ANN ASTOLFI",,,,,6,5,0,2,7,0,7,7,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609145106P040341870768001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OVERLY DOOR COMPANY","501","1998-12-07","OVERLY DOOR COMPANY",,,"574 WEST OTTERMAN STREET",,"GREENSBURG","PA","15601",,,,,,,,,,,,,,,,,,"232938952","7248347300","332300","OVERLY DOOR COMPANY",,"574 WEST OTTERMAN STREET",,"GREENSBURG","PA","15601",,,,,,,"232938952","7248347300",,,,"2011-06-09T14:50:49-0500","SHERRY BERTELLE",,,,,118,111,1,,112,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609100443P040010993842001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RADIA HOLDINGS AMERICA RETIREMENT SAVINGS PLAN FOR STAFF EMPLOYEES","001","2007-01-01","RADIA HOLDINGS AMERICA, INC.",,,"888 WASHINGTON STREET",,"DEDHAM","MA","02026",,,,,,,,,,,,,,,,,,"364402966","7812518279","541990","RADIA HOLDINGS AMERICA, INC.",,"888 WASHINGTON STREET",,"DEDHAM","MA","02026",,,,,,,"364402966","7812518279",,,,"2011-06-09T09:39:21-0500","GLENN CORKERN",,,,,1960,1390,0,337,1727,0,1727,1020,73,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609163027P030022757799001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ERIC G. CASTRODAD ORTIZ RETIREMENT PLAN SERIES 96-1208","001","1996-01-01","ERIC G. CASTRODAD ORTIZ",,,"CALLE ANTONIO BARCELO #35",,"CIDRA","PR","00739",,,,,,,,,,,,,,,,,,"223550072","7877392525","812990","ERIC G. CASTRODAD ORTIZ",,"CALLE ANTONIO BARCELO #35",,"CIDRA","PR","00736",,,,,,,"223550072","7877392525",,,,"2011-06-09T16:30:15-0500","ERIC G. CASTRODAD ORTIZ","2011-06-09T16:30:15-0500","ERIC G. CASTRODAD ORTIZ",,,3,2,1,0,3,0,3,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110603094738P040010465650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACKLIN STEEL SUPPLY CO. 401(K) PLAN","006","2000-01-01","JACKLIN STEEL SUPPLY CO.",,,"2410 AERO PARK DRIVE",,"TRAVERSE CITY","MI","496860000",,,,,,,,,,,,,,,,,,"381279322","2319468434","423500","JACKLIN STEEL SUPPLY CO.",,"2410 AERO PARK DRIVE",,"TRAVERSE CITY","MI","496860000",,,,,,,"381279322","2319468434",,,,"2011-06-03T09:47:32-0500","STEVE COLE",,,,,39,36,0,1,37,0,37,19,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603105355P040325801056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRANICK INDUSTRIES, INC. 401(K) PLAN","002","1993-08-01","BRANICK INDUSTRIES, INC.",,,"4245 MAIN AVENUE",,"FARGO","ND","58103",,,,,,,,,,,,,,,,,,"450375791","7012818888","333310","BRANICK INDUSTRIES, INC.",,"4245 MAIN AVENUE",,"FARGO","ND","58103",,,,,,,"450375791","7012818888",,,,"2011-06-03T10:44:23-0500","TODD SANDVIK",,,,,35,15,0,15,30,0,30,29,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110604171714P030002064227001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLES B. BARNIV, M.D., P.A. PROFIT SHARING PLAN & TRUST","002","1999-04-01","CHARLES B. BARNIV, M.D., P.A.",,,"623 HARBOR BOULEVARD, SUITE 3",,"DESTIN","FL","32541",,,,,,,,,,,,,,,,,,"593539763","8508375181","621111","CHARLES B. BARNIV, M.D., P.A.",,"623 HARBOR BOULEVARD, SUITE 3",,"DESTIN","FL","32541",,,,,,,"593539763","8508375181",,,,"2011-06-04T17:16:58-0500","CHARLES B. BARNIV, M.D.","2011-06-04T17:16:58-0500","CHARLES B. BARNIV, M.D.",,,9,7,0,1,8,0,8,7,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609145621P040075156513007","2010-01-01","2010-12-31","4","E",,"1",,,,,,,,,"BRANDYWINE INVESTMENT TRUST","016",,"BRANDYWINE GLOBAL INVESTMENT MGMT, LLC",,,"2929 ARCH STREET, 8TH FLOOR",,"PHILADELPHIA","PA","19104",,,,,,,,,,,,,,,,,,"510412248","2156093500",,"BRANDYWINE GLOBAL INVESTMENT MGMT, LLC",,"2929 ARCH STREET, 8TH FLOOR",,"PHILADELPHIA","PA","19104",,,,,,,"510412248","2156093500",,,,"2011-05-06T10:25:03-0500","MARK GLASSMAN",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603112812P030069623857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHN E BUZZELLI PROFIT SHARING PLAN","001","1968-03-31","JOHNN E BUZZELLI","DR. JOHNE BUZZELLI",,"11406 CLIFTON BLVD",,"CLEVELAND","OH","44102",,,,,,,"11406 CLIFTON BLVD",,"CLEVELAND","OH","44102",,,,,,,"341753150","2169615522","621210","JOHNN E BUZZELLI",,"11406 CLIFTON BLVD",,"CLEVELAND","OH","44102",,,,,,,"341753150","2169615522",,,,"2011-06-03T11:22:08-0500","JOHN BUZZELLI",,,,,3,3,0,0,3,0,3,3,0,,"2E3B3E3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603121216P040325942768001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","1","0",,"CONNER RETIREMENT SAVINGS PLAN","001","1997-01-01","J.W. CONNER & SONS, INC.",,,"PO BOX 2522",,"TAMPA","FL","336010000",,,,,,,,,,,,,,,,,,"590554002","8132474441","234100","J.W. CONNER & SONS, INC.",,"PO BOX 2522",,"TAMPA","FL","336010000",,,,,,,"590554002","8132474441",,,,"2011-06-03T12:12:08-0500","DOUGLAS CONNER",,,,,13,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603184944P040071747809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE COTSWOLD GROUP, INC. PENSION PLAN","001","1996-01-01","THE COTSWOLD GROUP, INC.",,,"550 MAMARONECK AVENUE",,"HARRISON","NY","105281634",,,,,,,,,,,,,,,,,,"133468813","9143818040","531210","THE COTSWOLD GROUP, INC.",,"550 MAMARONECK AVENUE",,"HARRISON","NY","105281634",,,,,,,"133468813","9143818040",,,,"2011-06-03T18:49:29-0500","ROBERT SHASHA","2011-06-03T18:49:29-0500","ROBERT SHASHA",,,3,3,0,0,3,0,3,3,0,,"2C3D2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608141654P040074533425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCOTT STONE INC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-05-01","SCOTT STONE INC",,,"3285 JONES DRIVE",,"MEBANE","NC","27302",,,,,,,,,,,,,,,,,,"561646472","9195633469","238900","SCOTT STONE INC",,"3285 JONES DRIVE",,"MEBANE","NC","27302",,,,,,,"561646472","9195633469",,,,"2011-06-08T02:16:52-0500","SCOTT STONE INC",,,,,0,1,0,13,14,0,14,14,0,,"2A2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608064247P030002122531001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED EXTRACORPOREAL SUPPORT INC 401(K) PROFIT SHARING PLAN","001","1996-01-01","UNITED EXTRACORPOREAL SUPPORT INC",,,"332 W BROADWAY SUITE 613",,"LOUISVILLE","KY","40202",,,,,,,,,,,,,,,,,,"611068296","5025811718","621399","UNITED EXTRACORPOREAL SUPPORT INC",,"332 W BROADWAY SUITE 613",,"LOUISVILLE","KY","40202",,,,,,,"611068296","5025811718",,,,"2011-06-07T11:50:12-0500","JOHN KELLER",,,,,18,21,0,0,21,0,21,21,0,,"2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609105533P030012123350001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"TARHE CORPORATION ACCIDENT PROTECTION PLAN","501","1991-04-15","TARHE CORPORATION",,,"8008 CEDAR SPRINGS RD. BOX #4",,"DALLAS","TX","75235",,,,,,,,,,,,,,,,,,"752373149","2146540106","722210","TARHE CORPORATION",,"8008 CEDAR SPRINGS RD. BOX #4",,"DALLAS","TX","75235",,,,,,,"752373149","2146540106",,,,"2011-06-09T10:53:03-0500","DARON PACE","2011-06-09T10:55:23-0500","DARON PACE",,,126,152,0,0,152,,,,,,,"4A4D4E4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609130834P030073115201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"R & L BRAKE & CLUTCH, INC. PROFIT SHARING TRUST","001","1983-03-31","GLEN TRUDEAU","R & L BRAKE & CLUTCH, INC.",,"8442 S. BELOIT",,"BRIDGEVIEW","IL","60455",,,,,,,"8442 S. BELOIT",,"BRIDGEVIEW","IL","60455",,,,,,,"362760828","7085989500","423100","GLEN TRUDEAU",,"8442 S. BELOIT",,"BRIDGEVIEW","IL","60455",,,,,,,"362760828","7085989500",,,,"2011-06-09T13:08:15-0500","EDWIN BLITZ",,,,,5,5,,,5,,5,5,0,,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609133113P030073128929001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WALSH QUALITY IMPORTS, INC. &","001","2000-01-01","WALSH QUALITY IMPORTS, INC. &",,,"2056 EISENHOWER PARKWAY",,"MACON","GA","312060000",,,,,,,,,,,,,,,,,,"581398106","4787818440","441110","WALSH QUALITY IMPORTS, INC. &",,"2056 EISENHOWER PARKWAY",,"MACON","GA","312060000",,,,,,,"581398106","4787818440",,,,"2011-06-09T13:31:06-0500","VICKIE BREWER",,,,,93,75,0,14,89,0,89,28,0,,"2E2F2G2J3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603213524P030069904609001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GYROSCOPE, INC. 401(K) PROFIT SHARING PLAN","001","2000-01-01","GYROSCOPE, INC.",,,"283 FOURTH ST.",,"OAKLAND","CA","94607",,,,,,,"283 FOURTH ST.",,"OAKLAND","CA","94607",,,,,,,"943289878","5109860111","541400","GYROSCOPE, INC.",,"283 FOURTH ST.",,"OAKLAND","CA","94607",,,,,,,"943289878","5109860111",,,,"2011-06-03T21:34:41-0500","CHARLES HOWARTH",,,,,13,12,0,2,14,0,14,9,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608161740P040339376592001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EVOLUTION PROPERTIES, INC. 401(K) PROFIT SHARING PLAN","001","2008-07-11","EVOLUTION PROPERTIES, INC.",,,"2511 VALLEY VIEW LANE",,"FARMERS BRANCH","TX","75234",,,,,,,,,,,,,,,,,,"262962633","2145042346","531190","EVOLUTION PROPERTIES, INC.",,"2511 VALLEY VIEW LANE",,"DALLAS","TX","75234",,,,,,,"262962633","2142401498",,,,"2011-06-08T16:04:17-0500","LINDSAY HAMBRIGHT",,,,,2,2,0,0,2,0,2,2,0,,"2E2J2K2H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609142459P040075145313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PETER LENCHUR M.D. LLC 401(K) PROFIT SHARING PLAN","001","2005-01-01","PETER LENCHUR M.D. LLC",,,"776 EAST THIRD AVENUE",,"ROSELLE","NJ","072031698",,,,,,,,,,,,,,,,,,"562376713","9082415545","621111","PETER LENCHUR M.D. LLC",,"776 EAST THIRD AVENUE",,"ROSELLE","NJ","072031698",,,,,,,"562376713","9082415545",,,,"2011-06-09T14:24:00-0500","PETER LENCHUR",,,,,7,6,0,1,7,0,7,7,0,,"2E2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609171307P040075208641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAUSMAN & COMPANY PREMIUM ONLY PLAN","501","1996-03-01","BAUSMAN & COMPANY, INC.",,,"1425 S CAMPUS AVE",,"ONTARIO","CA","91761",,,,,,,"1425 S CAMPUS AVE",,"ONTARIO","CA","91761",,,,,,,"952697941","9099470139","337000","BAUSMAN & COMPANY, INC.",,"1425 S CAMPUS AVE",,"ONTARIO","CA","91761",,,,,,,"952697941","9099470139",,,,"2011-06-09T17:12:41-0500","DONALD AUTREY",,,,,157,99,0,0,99,0,99,,,,,"4A4D",,,,"1","1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603091507P030069574065001","2010-03-01","2011-02-28","2",,,,,,,,,,,,"SHORT-TERM DISABILITY PLAN FOR EMPLOYEES OF HOLT HOSIERY MILLS, INC.","502","1992-03-01","HOLT HOSIERY MILLS, INC.",,,"P.O. BOX 1757","733 KOURY DR","BURLINGTON","NC","27216",,,,,,,,,,,,,,,,,,"560496530","3362271434","315100","HOLT HOSIERY MILLS, INC.",,"P.O. BOX 1757",,"BURLINGTON","NC","27216",,,,,,,"560496530","3362271434",,,,"2011-05-31T12:48:45-0500","RALPH M. HOLT, III",,,,,114,115,,,115,,,,,,,"4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110609150542P040075162481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIQUIDFRAMEWORKS CONSULTING, INC. 401K PLAN","001","2007-03-31","LIQUIDFRAMEWORKS CONSULTING, INC.",,,"24 EAST GREENWAY PLZ, STE 405",,"HOUSTON","TX","77046",,,,,,,"24 EAST GREENWAY PLZ, STE 405",,"HOUSTON","TX","77046",,,,,,,"760689036","7135746681","541511","LIQUIDFRAMEWORKS CONSULTING, INC.","ALICIA VALERO","24 EAST GREENWAY PLZ, STE 405",,"HOUSTON","TX","77046",,,,,,,"760689036","7135746681",,,,"2011-06-09T15:03:56-0500","TRAVIS PARIGI",,,,,13,13,0,0,13,0,13,13,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110610094028P030073622017004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DUGAN FUNERAL SERVICES INC PROFIT SHARING PLAN & T","001","1991-07-01","DUGAN FUNERAL SERVICES INC",,,"751 N LINCOLN",,"FREMONT","NE","680254491",,,,,,,,,,,,,,,,,,"470532495","4027212880","812210","DUGAN FUNERAL SERVICES INC",,"751 N LINCOLN",,"FREMONT","NE","680254491",,,,,,,"470532495","4027212880",,,,"2011-06-10T04:16:35-0500","WILLIAM DUGAN",,,,,52,37,0,3,40,0,40,27,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110603121523P040010479458001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN TRUST & SAVINGS BANK LIFE INSURANCE ACCIDENTAL DEATH & DISMEMBERMENT","502","1958-07-04","AMERICAN TRUST & SAVINGS BANK",,,"P.O. BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"895 MAIN STREET",,"DUBUQUE","IA","520040938",,,,,,,"420114010","5635821841","522110","AMERICAN TRUST & SAVINGS BANK",,"895 MAIN ST.",,"DUBUQUE","IA","520040938",,,,,,,"420114010","3195821841",,,,"2011-06-03T12:15:13-0500","RONALD J. MUELLER",,,,,256,254,,,254,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608132500P030010511410001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALAMONT DENTAL ASSOCIATES, PC PROFIT SHARING PLAN","001","1985-07-01","ALAMONT DENTAL ASSOCIATES, PC",,,"401 MARTIN LUTHER KING JR., BLVD.",,"BRISTOL","TN","37620",,,,,,,,,,,,,,,,,,"620867379","4239684422","621210","ALAMONT DENTAL ASSOCIATES, PC",,"401 MARTIN LUTHER KING JR., BLVD.",,"BRISTOL","TN","37620",,,,,,,"620867379","4239684422",,,,"2011-06-08T13:23:00-0500","NATHAN D. WILLIS",,,,,34,26,0,1,27,0,27,27,0,,"2E2H3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608071726P040074334209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICHAEL J. PIETRUSIK, DPM PROFIT SHARING PLAN","002","1988-01-01","MICHAEL J. PIETRUSIK, DPM",,,"3277 S PARK AVE",,"LACKAWANNA","NY","142183527",,,,,,,,,,,,,,,,,,"161233766","7168223411","621210","MICHAEL J. PIETRUSIK, DPM",,"3277 S PARK AVE.",,"LACKAWANNA","NY","142183527",,,,,,,"161233766","7168223411",,,,"2011-06-08T07:09:08-0500","MICHAEL J. PIETRUSIK",,,,,2,2,0,0,2,0,2,2,0,,"2E3B3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","3","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608073009P030010484930001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HARGRAY COMMUNICATIONS GROUP EMPLOYEE HEALTH BENEFITS PLAN","501","1998-10-01","HARGRAY COMMUNICATIONS GROUP",,,"856 WILLIAM HILTON PKWY BLDG B","SAME","HILTON HEAD","SC","29938",,,,,,,,,,,,,,,,,,"570812587","8436861275","517000","HARGRAY COMMUNICATIONS GROUP",,"856 WILLIAM HILTON PKWY BLDG B",,"HILTON HEAD","SC","29938",,,,,,,"570812587","8436861275",,,,"2011-06-08T07:29:35-0500","SARAH VANDERVORT",,,,,407,383,84,,467,,,,,,,"4A4B4D4E4H4Q","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609122513P030073092673001","2009-06-01","2009-08-31","2",,"0","0","0","1","0","0","0","1","0",,"AVANTE GROUP BENEFIT PLANS","501","1998-06-01","AVANTE GROUP, INC.",,,"4000 HOLLYWOOD BLVD., SUITE 540 N",,"HOLLYWOOD","FL","33021",,,,,,,,,,,,,,,,,,"651033707","9549877180","623000","AVANTE GROUP, INC.",,"4000 HOLLYWOOD BLVD., SUITE 540 N",,"HOLLYWOOD","FL","33021",,,,,,,"651033707","9549877180",,,,"2011-06-09T12:25:06-0500","MICHAEL CUNNINGHAM",,,,,1912,1810,33,0,1843,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603151412P040002165283001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MICROWAVE TRANSMISSION SYSTEMS, INC. PROFIT SHARING PLAN & TRUST","001","1995-01-01","MICROWAVE TRANSMISSION SYSTEMS, INC.",,,"541 STERLING DRIVE",,"RICHARDSON","TX","75081",,,,,,,,,,,,,,,,,,"752197372","9726690591","541990","MICROWAVE TRANSMISSION SYSTEMS, INC.",,"541 STERLING DRIVE",,"RICHARDSON","TX","75081",,,,,,,"752197372","9726690591",,,,"2011-06-03T04:14:06-0500","SUSAN KING",,,,,188,161,0,27,188,0,188,183,13,,"2E3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608083008P040010896626002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EDWARD G SOUTHWICK, MD, P.C. PROFIT SHARING PLAN","001","1978-03-09","EDWARD G SOUTHWICK, MD, PC",,,"3465 SOUTH 4155 WEST, SUITE 1",,"WEST VALLEY CITY","UT","84120",,,,,,,,,,,,,,,,,,"870336917","8019661403","621111","EDWARD G SOUTHWICK, MD, PC",,"3465 SOUTH 4155 WEST, SUITE 1",,"WEST VALLEY CITY","UT","84120",,,,,,,"870336917","8019661403",,,,"2011-06-08T09:23:35-0500","EDWARD G SOUTHWICK, MD, TRUSTEE","2011-06-08T09:23:44-0500","EDWARD G SOUTHWICK, MD, PRESIDENT",,,4,6,0,0,6,0,6,6,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608100614P030342251152001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLEAN QUARTERS, INC. PROFIT SHARING PLAN","001","2009-01-29","CLEAN QUARTERS, INC.",,,"1503 MALLARD LANDING BLVD",,"ST. JOHNS","FL","32259",,,,,,,,,,,,,,,,,,"300530381","9043752457","812310","CLEAN QUARTERS, INC.",,"1503 MALLARD LANDING BLVD",,"ST. JOHNS","FL","32259",,,,,,,"300530381","9043752457",,,,"2011-06-07T15:08:15-0500","SUSAN FRICK",,,,,2,2,,,2,,2,1,,,"2E2G2R3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609125036P040011005794001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"FLOW VISION 401(K) PROFIT SHARING PLAN & TRUST","003","2001-09-01","FLOW VISION",,,"P.O. BOX 1585","113 LANDON LANE","DILLON","CO","80435",,,,,,,,,,,,,,,,,,"841481856","4083821944","541600","FLOW VISION",,"P.O. BOX 1585","113 LANDON LANE","DILLON","CO","80435",,,,,,,"841481856","4083821944",,,,"2011-06-09T00:50:34-0500","FLOW VISION",,,,,13,11,0,1,12,0,12,11,0,,"2A2E2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609143055P030073157617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DUCHARME, MCMILLEN & ASSOCIATES, INC. GROUP MEDICAL / DENTAL PLAN","501","1989-01-01","DUCHARME, MCMILLEN & ASSOCIATES, INC.",,"RONALD RUMSCHLAG","6610 MUTUAL DR",,"FORT WAYNE","IN","46825",,,,,,,,,,,,,,,,,,"351293472","2604848631","541990","DUCHARME, MCMILLEN & ASSOCIATES, INC.","SHERIDA HALLETT","6610 MUTUAL DR",,"FORT WAYNE","IN","46825",,,,,,,"351293472","2604848631",,,,"2011-06-09T14:30:50-0500","SHERIDA HALLETT","2011-06-09T14:30:50-0500","RONALD RUMSCHLAG",,,199,203,11,0,214,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609131533P030073120577001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MARY O'BOYLE II & AFFILIATES 401K PLAN AND TRUST","001","1995-01-01","MARY OBOYLE II & AFFILIATES",,,"44 W 77TH ST APT 14E",,"NEW YORK","NY","100245150",,,,,,,,,,,,,,,,,,"742171406","2124967111","112111","MARY OBOYLE II & AFFILIATES",,"44 W 77TH ST APT 14E",,"NEW YORK","NY","100245150",,,,,,,"742171406","2124967111",,,,"2011-06-09T13:07:23-0500","DONNA STEPHENSON",,,,,8,7,0,1,8,0,8,8,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609080516P030010567170002","2010-01-01","2010-12-31","3",,,,,,,,,,,,"AKRON AUTOMOBILE DEALERS ASSOCIATION EXECUTIVE INSURANCE FUND","502","1955-12-01","NORTHEAST OHIO AUTO DEALERS ASSOCIATION",,,"PO BOX 2244",,"AKRON","OH","443092244",,,,,,,,,,,,,,,,,,"340057570","3305641555","441110","TERRY METCALF",,"PO BOX 2244",,"AKRON","OH","443092244",,,,,,,"237014355","3305641555",,,,"2011-06-09T03:23:59-0500","TERRY METCALF",,,,,22,22,,,22,,,,,,,"4B","1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110610110757P030022882023001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AIRLITE PLASTICS CO. EMPLOYEE ASSISTANCE PLAN","507","1994-11-01","AIRLITE PLASTICS CO.",,,"6110 ABBOTT DRIVE",,"OMAHA","NE","681102834",,,,,,,,,,,,,,,,,,"470353233","4023417300","326100","AIRLITE PLASTICS CO.",,"6110 ABBOTT DRIVE",,"OMAHA","NE","681102834",,,,,,,"470353233","4023417300",,,,"2011-06-10T10:28:59-0500","PATRICK KENEALY",,,,,556,639,0,0,639,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110603160133P040326402464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOE BALLOR TOWING, INC. 401(K) PLAN","001","2007-01-01","JOE BALLOR TOWING, INC.",,,"57760 MAIN ST",,"NEW HAVEN","MI","480482672",,,,,,,"57760 MAIN ST",,"NEW HAVEN","MI","480482672",,,,,,,"382386983","5867495117","488410","JOE BALLOR TOWING, INC.",,"57760 MAIN ST",,"NEW HAVEN","MI","480482672",,,,,,,"382386983","5867495117",,,,"2011-06-03T16:00:48-0500","JOEL BALLOR",,,,,37,28,0,5,33,0,33,24,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608104511P040074436529003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHRISTIAN DRY CLEANERS INC. 401(K) PLAN","001","2005-01-01","CHRISTIAN DRY CLEANERS, INC.",,,"126 S. EIGHTH STREET",,"COLUMBIA","MO","65201",,,,,,,,,,,,,,,,,,"431687195","5734426107","812320","CHRISTIAN DRY CLEANERS, INC.",,"126 S. EIGHTH STREET",,"COLUMBIA","MO","65201",,,,,,,"431687195","5734426107",,,,"2011-06-01T13:39:46-0500","STEPHEN POHL","2011-06-01T13:39:55-0500","STEPHEN POHL",,,3,3,0,0,3,0,3,3,,,"2J2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608184435P030072678273001","1999-01-01","1999-12-31","3",,"0","1","0","0","0","0","0","1","0",,"LAS ISLAS FAMILY MEDICAL GROUP, INC., DISCRETIONARY DEFINED CONTRIBUTION/401(K) PLAN","001","1996-04-01","LAS ISLAS FAMILY MEDICAL GROUP",,,"325 W. CHANNEL ISLANDS BLVD.",,"OXNARD","CA","93033",,,,,,,,,,,,,,,,,,"770285222","8053858662","621111","LAS ISLAS FAMILY MEDICAL GROUP, INC.",,"325 W. CHANNEL ISLANDS BLVD.",,"OXNARD","CA","93033",,,,,,,"770285222","8053858662",,,,"2011-06-08T18:43:42-0500","ELIZABETH GOULD",,,,,200,221,0,6,227,0,227,44,0,,"2E2G2J3E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608164549P040010931874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLLINS PRODUCTS LLC GROUP VISION PLAN","505","1999-04-01","COLLINS PINE COMPANY",,,"1618 S.W. 1ST AVE, SUITE 500",,"PORTLAND","OR","972015708",,,,,,,,,,,,,,,,,,"930177750","5032271219","321110","COLLINS PINE COMPANY",,"1618 S.W. 1ST AVE, SUITE 500",,"PORTLAND","OR","972015708",,,,,,,"930177750","5032271219",,,,"2011-06-08T16:45:38-0500","NANCY L. HELSETH","2011-06-08T16:45:38-0500","NANCY L. HELSETH",,,395,436,0,0,436,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609151409P030073175633001","2010-09-01","2011-04-30","2",,"0","0","1","1","0","0","0","0","0",,"LOVEMAN STEEL CORPORATION PROFIT SHARING PLAN","002","1976-01-01","LOVEMAN STEEL CORPORATION",,,"P.O. BOX 46430",,"BEDFORD HTS","OH","44146",,,,,,,,,,,,,,,,,,"340719290","4402326200","423990","LOVEMAN STEEL CORPORATION",,"P.O. BOX 46430",,"BEDFORD HTS","OH","44146",,,,,,,"340719290","4402326200",,,,"2011-06-09T15:14:02-0500","KIM FLETT",,,,,2,0,0,0,0,0,0,0,0,,"2A2E3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603132449P030069681809001","2010-08-06","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"2024R INCORPORATED 401(K) PROFIT SHARING PLAN","001","2010-08-06","2024R INCORPORATED",,,"6211 WASHINGTON CIR",,"WAUWATOSA","WI","53213",,,,,,,,,,,,,,,,,,"273194272","4148995042","531130","2024R INCORPORATED",,"6211 WASHINGTON CIR",,"WAUWATOSA","WI","53213",,,,,,,"273194272","4148995042",,,,"2011-06-03T13:21:31-0500","JANELLE LARSON",,,,,2,2,0,0,2,0,2,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608121320P030072536721001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","1","0",,"DEALER DOT COM, INC. VISION PLAN","508","2006-01-01","DEALER DOT COM, INC.",,,"1 HOWARD STREET",,"BURLINGTON","VT","05401",,,,,,,,,,,,,,,,,,"030360483","8026580965","517000","DEALER DOT COM, INC.",,"1 HOWARD STREET",,"BURLINGTON","VT","05401",,,,,,,"030360483","8026580965",,,,"2011-06-08T11:07:58-0500","RICHARD F. GIBBS, JR.",,,,,100,173,0,0,173,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609095621P030010573666001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DRS NEVINS FAMILY DENTISTRY 401(K) PLAN","001","2002-07-01","DRS NEVINS FAMILY DENTISTRY",,,"1419 NORTH STATE STREET",,"BIG RAPIDS","MI","49307",,,,,,,,,,,,,,,,,,"383627729","2317964409","621210","DRS NEVINS FAMILY DENTISTRY",,"1419 NORTH STATE STREET",,"BIG RAPIDS","MI","49307",,,,,,,"383627729","2317964409",,,,"2011-06-09T09:57:04-0500","JEANNIENE SHAREN NEVINS","2011-06-09T09:57:04-0500","JEANNIENE SHAREN NEVINS",,,11,9,0,1,10,0,10,6,,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609113616P030345212704001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BIG GAIN EMPLOYEES LIFE INSURANCE PLAN","502","2006-06-01","BIG GAIN, INC.",,,"BOX 308",,"MANKATO","MN","56002",,,,,,,,,,,,,,,,,,"410992705","5073877971","115210","BIG GAIN, INC.",,"BOX 308",,"MANKATO","MN","56002",,,,,,,"410992705","5073877971",,,,"2011-06-09T11:36:10-0500","DOUG JACKSON",,,,,183,179,0,0,179,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609174818P040075221409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MOUNTAIN RESEARCH, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2005-01-01","MOUNTAIN RESEARCH, INC.",,,"825 25TH STREET",,"ALTOONA","PA","16601",,,,,,,,,,,,,,,,,,"201990509","8149492034","541600","MOUNTAIN RESEARCH, INC.",,"825 25TH STREET",,"ALTOONA","PA","16601",,,,,,,"201990509","8149492034",,,,"2011-06-09T15:08:08-0500","JENNIFER MARGROUM","2011-06-09T15:07:38-0500","JENNIFER MARGROUM",,,38,30,0,4,34,0,34,34,4,,"2I2P2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110603122501P030329464000001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WAYCROSS CABLE COMPANY 401K SALARY REDUCTION PLAN","001","1998-01-01","WAYCROSS CABLE COMPANY",,,"126 HAVANNA AVE.",,"WAYCROSS","GA","31501",,,,,,,,,,,,,,,,,,"580904723","9122832332","221300","WAYCROSS CABLE COMPANY",,"126 HAVANNA AVE.",,"WAYCROSS","GA","31501",,,,,,,"580904723","9122832332",,,,"2011-06-03T12:23:31-0500","ADRIAN FARNON",,,,,20,20,0,0,20,0,20,20,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603125438P030010107954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLOCK IRON & SUPPLY COMPANY, INC RETIREMENT PLAN","001","2007-04-01","BLOCK IRON & SUPPLY CO., INC.",,,"P.O. BOX 557",,"OSHKOSH","WI","54903",,,,,,,,,,,,,,,,,,"208098038","9202318645","423300","BLOCK IRON & SUPPLY CO., INC.",,"P.O. BOX 557",,"OSHKOSH","WI","54903",,,,,,,"208098038","9202318645",,,,"2011-06-03T12:45:23-0500","THOMAS REIGH",,,,,55,53,0,2,55,0,55,37,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608141053P040074529681001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"M & I DIVERSIFIED INCOME FUND","001",,"MARSHALL & ILSLEY TRUST COMPANY NA",,,"11270 WEST PARK PLACE, SUITE 400",,"MILWAUKEE","WI","53224",,,,,,,,,,,,,,,,,,"391795672","4142878700",,"MARSHALL & ILSLEY TRUST COMPANY NA",,"11270 WEST PARK PLACE, SUITE 400",,"MILWAUKEE","WI","53224",,,,,,,"391795672","4142878700",,,,,,,,"2011-06-08T14:10:47-0500","JOSEPH HORSTMEIER, VICE PRESIDENT",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-06-08",,"Filed with authorized/valid electronic signature", "20110608075127P040023333335001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"PEAYS ELECTRIC II, INC. 401(K) PLAN","001","2009-03-13","PEAYS ELECTRIC II, INC.",,,"1978 MAEVE CIRCLE",,"WEST MELBOURNE","FL","32904",,,,,,,,,,,,,,,,,,"264466140","3212883404","238210","PEAYS ELECTRIC II, INC.",,"1978 MAEVE CIRCLE",,"WEST MELBOURNE","FL","32904",,,,,,,"264466140","3212883404",,,,"2011-06-08T07:51:12-0500","CHRISTINA SLATE","2011-06-08T07:51:12-0500","CHRISTINA SLATE",,,2,7,1,0,8,0,8,8,0,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608185102P030072680049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HALL, RENDER, KILLIAN, HEATH AND LYMAN, P.C. HEALTH PLAN","502","1997-01-01","HALL, RENDER, KILLIAN, HEATH AND LYMAN, P.C.",,,"ONE AMERICAN SQUARE, SUITE 2000",,"INDIANAPOLIS","IN","46282",,,,,,,,,,,,,,,,,,"351427161","3176334884","541110","HALL, RENDER, KILLIAN, HEATH AND LYMAN, P.C.",,"ONE AMERICAN SQUARE, SUITE 2000",,"INDIANAPOLIS","IN","46282",,,,,,,"351427161","3176334884",,,,"2011-06-08T18:50:58-0500","SHERRI L. UMBAUGH",,,,,300,304,3,3,310,,,,,,,"4A4B4D4F4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609113825P030002144595001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONCRETE SPECIALTY, INC. PROFIT SHARING PLAN AND TRUST","001","1993-01-01","CONCRETE SPECIALTY, INC.",,,"1602 WEST 29TH STREET",,"S. SIOUX CITY","NE","68776",,,,,,,,,,,,,,,,,,"470626775","4024944280","238900","CONCRETE SPECIALTY, INC.",,"1602 WEST 29TH STREET",,"S. SIOUX CITY","NE","68776",,,,,,,"470626775","4024944280",,,,"2011-06-09T11:38:19-0500","JEN PRESTON",,,,,40,28,0,13,41,0,41,3,2,,"2E3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609120014P030345257024001","2010-01-01","2010-12-31","2",,,,,,,,,"1",,,"HEMSTAD FARMS PROFIT SHARING PLAN","001","1989-01-01","HEMSTAD FARMS",,,"22 HIGHWAY 379",,"DUTTON","MT","59433",,,,,,,,,,,,,,,,,,"810344515","4064763493","111100","HEMSTAD FARMS",,"22 HIGHWAY 379",,"DUTTON","MT","59433",,,,,,,"810344515","4064763493",,,,"2011-06-09T11:57:19-0500","VICKIE HEMSTAD",,,,,3,3,,,3,,3,,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609141500P030073147809002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GENGRAS MOTOR CARS, INC WELFARE PLAN","501","2006-01-01","GENGRAS MOTOR CARS, INC",,,"300 CONNECTICUT BLVD",,"EAST HARTFORD","CT","061083065",,,,,,,,,,,,,,,,,,"200807108","8607276212","441110","GENGRAS MOTOR CARS, INC",,"300 CONNECTICUT BLVD",,"EAST HARTFORD","CT","061083065",,,,,,,"200807108","8607276212",,,,"2011-06-08T09:38:34-0500","JONATHAN GENGRAS",,,,,134,129,,,129,,,,,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110610111044P040075649361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEN ECKMAN, INC. PROFIT SHARING-401(K) TRUST","001","1972-12-31","LEN ECKMAN, INC.",,,"P.O. BOX 246",,"PITMAN","NJ","08071",,,,,,,"302 MONTGOMERY AVE",,"PITMAN","NJ","08071",,,,,,,"210726383","8565894128","524210","LEN ECKMAN, INC.",,"P.O. BOX 246",,"PITMAN","NJ","08071",,,,,,,"210726383","8565894128",,,,"2011-06-10T11:10:38-0500","LEONARD B. ECKMAN",,,,,6,6,0,0,6,0,6,6,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110603141705P040010485346001","2010-01-01","2010-12-31","3",,,,,,,,,,,,"MINCO TOOL & MOLD, INC 5690 WEBSTER STREET DAYTON OH 45414","502","1999-08-01","MINCO TOOL & MOLD, INC",,,"5690 WEBSTER STREET",,"DAYTON","OH","45414",,,,,,,,,,,,,,,,,,"310720199","9378907905","332900","MINCO TOOL & MOLD, INC",,"5690 WEBSTER STREET",,"DAYTON","OH","45414",,,,,,,"310720199","9378907905",,,,"2011-06-03T09:32:33-0500","CHARLES F. BIRTLE",,,,,146,148,,,148,,,,,,,"4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110609125710P030345389392001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTRAL VIRGINIA HEALTH SERVICES, INC PLAN","501","2007-01-01","CENTRAL VIRGINIA HEALTH SERVICES",,,"25892 N. JAMES MADISON HWY",,"NEW CANTON","VA","23123",,,,,,,,,,,,,,,,,,"540887287","4345813271","621111","CENTRAL VIRGINIA HEALTH SERVICES",,"25892 N. JAMES MADISON HWY",,"NEW CANTON","VA","23123",,,,,,,"540887287","4345813271",,,,"2011-06-09T12:56:57-0500","CHARLES ALLBAUGH","2011-06-09T12:56:57-0500","CHARLES ALLBAUGH",,,100,87,,,87,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609082245P030344800576001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HERLIN PRESS PENSION PLAN","002","1968-06-01","GHP",,,"475 HEFFERNAN DR",,"WEST HAVEN","CT","065160427",,,,,,,,,,,,,,,,,,"061314891","2034797500","323100","GHP",,"475 HEFFERNAN DR",,"WEST HAVEN","CT","065160427",,,,,,,"061314891","2034797500",,,,"2011-06-09T09:22:40-0500","JOHN ROBINSON",,,,,76,24,20,30,74,1,75,,0,,"1A1G1I",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110608102915P040338657312001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"CLARKE UNIVERSITY EMPLOYEE HEALTH CARE PLAN","501","1983-06-01","CLARKE UNIVERSITY","CLARKE UNIVERSITY",,"1550 CLARKE DRIVE",,"DUBUQUE","IA","52001",,,,,,,"1550 CLARKE DRIVE",,"DUBUQUE","IA","52001",,,,,,,"420680408","5635886315","611000","CLARKE UNIVERSITY",,"1550 CLARKE DRIVE",,"DUBUQUE","IA","52001",,,,,,,"420680408","5635886315",,,,"2011-06-08T10:27:04-0500","DEANNA MCCORMICK",,,,,144,158,,,158,,158,,,,,"4A4D","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608145324P040074549185003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KAUFMAN MANAGEMENT CORPORATION 401(K) P/S PLAN","001","1982-01-01","KAUFMAN MANAGEMENT CORPORATION",,,"ONE LOMBARD ST",,"SAN FRANCISCO","CA","94111",,,,,,,"ONE LOMBARD ST",,"SAN FRANCISCO","CA","94111",,,,,,,"942767507","4159825702","531310","THE ADMINISTRATIVE COMMITTEE OF THE KAUFMAN MGMT CORP. 401K P/S PLAN",,"ONE LOMBARD",,"SAN FRANCISCO","CA","94111",,,,,,,"942856691","4159825702",,,,"2011-06-08T07:15:40-0500","RONALD KAUFMAN","2011-06-08T07:15:40-0500","RONALD KAUFMAN",,,5,4,,,4,,4,4,,,"2E2F2H2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608145324P040074549185002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TAX CREDIT CAPITAL, LLC 401(K) PROFIT SHARING PLAN AND TRUST","001","2009-01-01","TAX CREDIT CAPITAL, LLC",,"GEORGE E BROWER II","1527 THIRD STREET",,"NEW ORLEANS","LA","70130",,,,,,,"1527 THIRD STREET",,"NEW ORLEANS","LA","70130",,,,,,,"460487988","5045822883","523900","TAX CREDIT CAPITAL, LLC","GEORGE E BROWER II","1527 THIRD STREET",,"NEW ORLEANS","LA","70130",,,,,,,"460487988","5045822883",,,,"2011-06-08T09:44:38-0500","GEORGE E BROWER II","2011-06-08T09:44:38-0500","GEORGE E BROWER II",,,4,4,,,4,,4,4,,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609144246P030073163169001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DRAZIN & WARSHAW, P.C. 401(K) PLAN","002","1994-07-01","DRAZIN & WARSHAW, P.C.",,,"25 RECKLESS PLACE",,"RED BANK","NJ","07701",,,,,,,,,,,,,,,,,,"222338752","7327473730","541110","DRAZIN & WARSHAW, P.C.",,"25 RECKLESS PLACE",,"RED BANK","NJ","07701",,,,,,,"222338752","7327473730",,,,"2011-06-09T14:31:52-0500","VINCENT STRIPTO",,,,,49,42,0,5,47,0,47,31,0,,"2E2F2G2J3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609073336P030072965233001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"DUFERCO FARRELL CORPORATION HEALTH AND WELFARE PLAN","501","1999-01-01","DUFERCO FARRELL CORPORATION",,,"15 ROEMER BOULEVARD",,"FARRELL","PA","161212201",,,,,,,,,,,,,,,,,,"251822919","7249836464","331200","DUFERCO FARRELL CORPORATION",,"15 ROEMER BOULEVARD",,"FARRELL","PA","161212201",,,,,,,"251822919","7249836464",,,,"2011-06-09T07:33:35-0500","ROBERT D. MILLER",,,,,838,854,0,0,854,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609095833P030010573858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"QUADRANT HEALTHCOM INC. RETIREMENT SAVINGS PLAN","001","1991-01-01","QUADRANT HEALTHCOM INC.",,,"7 CENTURY DRIVE","SUITE 302","PARSIPPANY","NJ","07054",,,,,,,,,,,,,,,,,,"223448361","9732068085","812990","QUADRANT HEALTHCOM INC.",,"7 CENTURY DRIVE","SUITE 302","PARSIPPANY","NJ","07054",,,,,,,"223448361","9732068085",,,,"2011-06-09T09:58:29-0500","CAROLYN CACCAVELLI","2011-06-09T09:58:29-0500","CAROLYN CACCAVELLI",,,85,90,1,15,106,0,106,87,4,,"2E2J2F2G2K3D3H2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110603101148P030069595953004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SOUTH BEND NEUROLOGY, INC. EMPLOYEES PROFIT SHARING PLAN AND TRUST","002","1981-08-01","SOUTH BEND NEUROLOGY, INC.",,,"100 NAVARRE PLACE, SUITE 6640",,"SOUTH BEND","IN","46601",,,,,,,"100 NAVARRE PLACE, SUITE 6640",,"SOUTH BEND","IN","46601",,,,,,,"351467452","5742822305","621111","SOUTH BEND NEUROLOGY, INC.",,"100 NAVARRE PLACE, SUITE 6640",,"SOUTH BEND","IN","46601",,,,,,,"351467452","5742822305",,,,"2011-05-31T05:00:36-0500","MICHAEL ENGLERT",,,,,15,13,,1,14,,14,14,,,"2E2G2J2R",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603104022P040071514129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARTHUR N DONALDSON MD INC 401(K) PROFIT SHARING PLAN","003","1989-07-01","ARTHUR N DONALDSON MD INC",,,"940 SYLVA LANE SUITE G",,"SONORA","CA","953700000",,,,,,,,,,,,,,,,,,"942593611","2095322020","621111","ARTHUR N DONALDSON MD INC",,"940 SYLVA LANE SUITE G",,"SONORA","CA","953700000",,,,,,,"942593611","2095322020",,,,"2011-06-03T10:40:13-0500","PENSION FILERS",,,,,38,29,0,6,35,0,35,26,0,,"2E2J2K2A2G3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608115812P030072528577001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"M & I TARGET RETIREMENT - 2050 PORTFOLIO","001",,"MARSHALL & ILSLEY TRUST COMPANY NA",,,"11270 WEST PARK PLACE, SUITE 400",,"MILWAUKEE","WI","53224",,,,,,,,,,,,,,,,,,"392048521","4142878700",,"MARSHALL & ILSLEY TRUST COMPANY NA",,"11270 WEST PARK PLACE, SUITE 400",,"MILWAUKEE","WI","53224",,,,,,,"392048521","4142878700",,,,,,,,"2011-06-08T11:58:05-0500","JOSEPH HORSTMEIER, VICE PRESIDENT",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-06-08",,"Filed with authorized/valid electronic signature", "20110608152910P030072615809006","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"JJSB FAMILY LLLP EMPLOYEE PROFIT SHARING PLAN","001","2003-01-01","JJSB FAMILY LLLP",,"C/O STEVE BACKER","5235 SKY TRAIL",,"LITTLETON","CO","80123",,,,,,,"5235 SKY TRAIL",,"LITTLETON","CO","80123",,,,,,,"841566938","3038881785","531110","STEVEN N. BACKER",,"5235 SKY TRAIL",,"LITTLETON","CO","80123",,,,,,,"841566938","3038881785",,,,"2011-06-08T08:51:09-0500","STEVEN N. BACKER",,,,,1,1,,,1,,1,,,,"3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608173004P040339510032004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KIER & WRIGHT CIVIL ENGINEERS AND SURVEYORS INC PROFIT SHARING PLAN AND TRUST","002","1979-04-01","KIER & WRIGHT CIVIL ENGINEERS AND SURVEYORS, INC",,,"2850 COLLIER CANYON ROAD",,"LIVERMORE","CA","945519201",,,,,,,,,,,,,,,,,,"942160466","9252458788","541330","KIER & WRIGHT CIVIL ENGINEERS AND SURVEYORS INC",,"2850 COLLIER CANYON ROAD",,"LIVERMORE","CA","945519201",,,,,,,"942160466","9252458788",,,,"2011-06-07T18:55:37-0500","LEO H STREAM CPA",,,,,53,49,,,49,,49,49,8,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609114145P030010579842001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COSI EMPLOYEES GROUP HEALTH BENEFITS PLAN","501","2000-04-01","COSI, INC.",,,"1751 LAKE COOK RD","6TH FL","DEERFIELD","IL","60015",,,,,,,,,,,,,,,,,,"061393745","8475978892","722110","COSI, INC.",,"1751 LAKE COOK RD","6TH FL","DEERFIELD","IL","60015",,,,,,,"061393745","8475978892",,,,"2011-06-09T11:41:38-0500","SUSAN STERLING",,,,,329,304,11,0,315,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609160440P040342025344001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"MILE SQUARE GOLF COURSE, A LIMITED PARTNERSHIP PROFIT SHARING 401K PLAN","001","1978-01-01","MILE SQUARE GOLF COURSE",,,"10401 WARNER AVE",,"FOUNTAIN VALLEY","CA","92708",,,,,,,"10401 WARNER AVE",,"FOUNTAIN VALLEY","CA","92708",,,,,,,"952574063","7149625541","713900","MILE SQUARE GOLF COURSE",,"10401 WARNER AVE",,"FOUNTAIN VALLEY","CA","92708",,,,,,,"952574063","7149625541",,,,"2011-06-09T16:03:57-0500","SCOTT CHAFFIN",,,,,81,70,0,8,78,0,78,27,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110610095126P040075617729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DESSUREAU MACHINES, INC. 401(K) PROFIT SHARING PLAN","001","1975-06-01","DESSUREAU MACHINES, INC.",,,"53 GRANITE STREET","PO BOX 402","BARRE","VT","05641",,,,,,,,,,,,,,,,,,"030212422","8024767041","332900","DESSUREAU MACHINES, INC.",,"53 GRANITE STREET","PO BOX 402","BARRE","VT","05641",,,,,,,"030212422","8024767041",,,,"2011-06-10T09:51:16-0500","MARK DESSUREAU","2011-06-10T09:51:16-0500","MARK DESSUREAU",,,16,14,0,2,16,0,16,16,0,,"2E2G2J3D2F",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110603123506P030329482192001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLVIN ELECTRIC, INC. 401K PROFIT SHARING PLAN","001","1989-01-01","COLVIN ELECTRIC, INC.",,,"3901 KELLY LANE",,"PFLUGERVILLE","TX","786605029",,,,,,,"3901 KELLY LANE",,"PFLUGERVILLE","TX","786605029",,,,,,,"742588135","5123882271","238210","COLVIN ELECTRIC, INC.",,"3901 KELLY LANE",,"PFLUGERVILLE","TX","786605029",,,,,,,"742588135","5123882271",,,,"2011-06-03T12:34:28-0500","TRACEE COLVIN",,,,,53,16,0,7,23,0,23,18,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608153422P040023398439001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HADA REAL ESTATE COMPANY, INC. PROFIT SHARING RETIREMENT PLAN","002","1978-04-01","HADA REAL ESTATE COMPANY, INC.",,"652 PETALUMA AVENUE","P.O. BOX 280",,"SEBASTOPOL","CA","954730280",,,,,,,,,,,,,,,,,,"942339486","7078234848","531210","HADA REAL ESTATE COMPANY, INC.","652 PETALUMA AVENUE","P.O. BOX 280",,"SEBASTOPOL","CA","954730280",,,,,,,"942339486","7078234848",,,,"2011-06-08T15:25:31-0500","DAVID MADSEN",,,,,2,2,0,0,2,0,2,2,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608145739P040074551745001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"JOHN MANAGEMENT GROUP, LLC HEALTH PLAN","501","2010-01-01","JOHN MANAGEMENT GROUP, LLC",,,"600 35TH AVE",,"MOLINE","IL","612656145",,,,,,,,,,,,,,,,,,"364304525","3097978367","541990","JOHN MANAGEMENT GROUP, LLC",,"600 35TH AVE",,"MOLINE","IL","612656145",,,,,,,"364304525","3097978367",,,,"2011-06-08T14:53:43-0500","ANGIE SWANSON",,,,,151,217,0,0,217,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609135527P030073139825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROSOURCE FINANCIAL, L.L.C. RETIREMENT SAVINGS PLAN","001","1988-12-01","PROSOURCE FINANCIAL, L.L.C.",,,"2315 ENTERPRISE DRIVE, SUITE 105",,"WESTCHESTER","IL","601545811",,,,,,,,,,,,,,,,,,"364115867","7082233300","524210","PROSOURCE FINANCIAL, L.L.C.",,"2315 ENTERPRISE DRIVE, SUITE 105",,"WESTCHESTER","IL","601545811",,,,,,,"364115867","7082233300",,,,"2011-06-09T13:53:38-0500","LEO J. SHAPIRO",,,,,32,26,1,4,31,0,31,31,0,,"2A2E2G2J2K3B",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110612215541P030023279639001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VAN CLEEF ENGINEERING ASSOCIATES, LLC HEALTH PLAN","502","2006-01-01","VAN CLEEF ENGINEERING ASSOCIATES",,,"PO BOX 5877",,"HILLSBOROUGH","NJ","08844",,,,,,,,,,,,,,,,,,"222939230","9083598291","541330","VAN CLEEF ENGINEERING ASSOCIATES",,"PO BOX 5877",,"HILLSBOROUGH","NJ","08844",,,,,,,"222939230","9083598291",,,,"2011-06-12T22:19:59-0500","ROBERT HEIBELL",,,,,150,142,,,142,,142,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-12","Filed with authorized/valid electronic signature",, "20110613165245P040077447057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAW OFFICES OF ROSEMARIE GALLEGOS PLC 401(K) AND PROFIT SHARING PLAN","001","2007-07-27","LAW OFFICES OF ROSEMARIE GALLEGOS PLC",,,"6741 FRIENDS AVE.",,"WHITTIER","CA","90601",,,,,,,"6741 FRIENDS AVE.",,"WHITTIER","CA","90601",,,,,,,"208168582","5626968377","541110","LAW OFFICES OF ROSEMARIE GALLEGOS PLC",,"6741 FRIENDS AVE.",,"WHITTIER","CA","90601",,,,,,,"208168582","5626968377",,,,"2011-06-13T16:51:32-0500","XAVIER AVILA",,,,,6,2,0,0,2,0,2,2,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610090050P030073607393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOYLE & GENTILE, P.A. 401(K) PROFIT SHARING PLAN & TRUST","001","1996-01-01","BOYLE & GENTILE, P.A.",,,"2050 MCGREGOR BOULEVARD",,"FORT MYERS","FL","33901",,,,,,,,,,,,,,,,,,"650540594","2393371303","541110","BOYLE & GENTILE, P.A.",,"2050 MCGREGOR BOULEVARD",,"FORT MYERS","FL","33901",,,,,,,"650540594","2393371303",,,,"2011-06-10T08:59:13-0500","MARK A. BOYLE","2011-06-10T08:59:13-0500","MARK A. BOYLE",,,10,7,2,0,9,0,9,8,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110610184459P030073849297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GOODMAN MANUFACTURING CO., L. P. SHORT TERM AND LONG TERM DISABILITY PLAN","506","1996-05-01","GOODMAN GLOBAL HOLDINGS, INC.",,,"5151 SAN FELIPE, SUITE 500",,"HOUSTON","TX","77056",,,,,,,,,,,,,,,,,,"760423371","7132635504","333410","GOODMAN GLOBAL HOLDINGS, INC.",,"5151 SAN FELIPE, SUITE 500",,"HOUSTON","TX","77056",,,,,,,"760423371","7132635504",,,,"2011-06-10T18:44:51-0500","MARK DOLAN",,,,,3146,3090,0,0,3090,,,,,,,"4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613151639P040024228023001","2006-09-01","2007-08-31","2",,"0","0","0","0","0","0","0","1","0",,"PEERLESS MANUFACTURING COMPANY LIFE AND DISABILITY PLAN","505","1994-02-01","PEERLESS MANUFACTURING COMPANY",,,"14651 NORTH DALLAS PARKWAY, STE 500",,"DALLAS","TX","75254",,,,,,,,,,,,,,,,,,"750724417","2143576181","332900","PEERLESS MANUFACTURING COMPANY",,"14651 NORTH DALLAS PARKWAY, STE 500",,"DALLAS","TX","75254",,,,,,,"750724417","2143576181",,,,"2011-06-13T15:07:19-0500","MIKE MCGEE",,,,,181,403,0,0,403,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613094023P040077244129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLES M. MORAN PLUMBING & HEATING, INC. RETIREMENT PLAN","002","1993-04-01","CHARLES M. MORAN PLUMBING & HEATING, INC.",,,"54 ALLEN ST",,"CLINTON","MA","015101102",,,,,,,,,,,,,,,,,,"042723821","9783680355","238220","CHARLES M. MORAN PLUMBING & HEATING, INC.",,"54 ALLEN ST",,"CLINTON","MA","015101102",,,,,,,"042723821","9783680355",,,,"2011-06-13T09:39:15-0500","MICHAEL MORAN",,,,,24,26,0,1,27,0,27,24,0,,"2E2F2G",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613170943P030010929138008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DAVID N. MILLER & COMPANY, LLP 401(K) PLAN","001","1987-02-01","DAVID N. MILLER & COMPANY, LLP",,,"7660 WOODWAY DRIVE, SUITE 320",,"HOUSTON","TX","77063",,,,,,,"7660 W00DWAY DRIVE, SUITE 320",,"HOUSTON","TX","770631518",,,,,,,"760631730","7139776888","541211","DAVID N. MILLER & COMPANY, LLP",,"7660 WOODWAY DRIVE, SUITE 320",,"HOUSTON","TX","77063",,,,,,,"760631730","7139776888",,,,"2011-06-13T11:22:49-0500","DAVID N MILLER","2011-06-13T11:22:49-0500","DAVID N MILLER","2011-06-13T11:22:49-0500","DAVID N MILLER",8,8,,,8,,8,,,,"2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110610132614P030010666850001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MICHAEL C SNYDERMAN MD PROFIT SHARING PLAN AND TRUST","001","1984-01-01","MICHAEL C SNYDERMAN MD",,,"515 ABBOTT RD STE 102",,"BUFFALO","NY","142201700",,,,,,,"515 ABBOTT RD STE 102",,"BUFFALO","NY","142201700",,,,,,,"161149203","7168245588","621111","MICHAEL C SNYDERMAN MD",,"515 ABBOTT RD STE 102",,"BUFFALO","NY","142201700",,,,,,,"161149203","7168245588",,,,"2011-06-10T13:10:29-0500","MICHAEL SNYDERMAN MD",,,,,3,3,0,0,3,0,3,3,0,,"2E2G3B3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613120132P030075297809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FASTWAY DELIVERY SERVICE, INC. PROFIT SHARING PLAN","001","1993-01-01","FASTWAY DELIVERY SERVICE, INC.",,,"144-37 156TH STREET",,"JAMAICA","NY","11434",,,,,,,,,,,,,,,,,,"113150671","7187124707","484110","FASTWAY DELIVERY SERVICE, INC.",,"144-37 156TH STREET",,"JAMAICA","NY","11434",,,,,,,"113150671","7187124707",,,,"2011-06-13T12:01:01-0500","WARREN LEFKOWITZ","2011-06-13T12:01:01-0500","WARREN LEFKOWITZ",,,16,13,0,1,14,0,14,6,0,,"2E2F2G3D2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110610073547P030073572257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GEORGETOWN SMALL ANIMAL CLINIC 401(K) PLAN","002","1991-01-01","GEORGETOWN ANIMAL CLINIC, PC",,,"5155 SHERIDAN DRIVE",,"WILLIAMSVILLE","NY","14221",,,,,,,,,,,,,,,,,,"161597963","7166337123","541940","GEORGETOWN ANIMAL CLINIC, PC",,"5155 SHERIDAN DRIVE",,"WILLIAMSVILLE","NY","14221",,,,,,,"161597963","7166337123",,,,"2011-06-10T05:38:25-0500","HARRY NEWMAN","2011-06-10T05:38:25-0500","HARRY NEWMAN",,,26,24,0,2,26,0,26,26,0,,"2A2E2F2G2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110610073550P040011069826001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHOLARSHIP","507","1990-07-01","CLEARFIELD HOSPITAL",,,"PO BOX 992","809 TURNPIKE AVE","CLEARFIELD","PA","168300992",,,,,,,,,,,,,,,,,,"250979346","8147655341","622000","CLEARFIELD HOSPITAL",,"PO BOX 992","809 TURNPIKE AVE","CLEARFIELD","PA","168300992",,,,,,,"250979346","8147655341",,,,"2011-06-10T07:27:01-0500","JON STEEN",,,,,0,0,0,0,0,,,,,,,"4K","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613104159P040005945829001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"THE AMERICAN NATIONAL BANK OF BEAVER DAM EMPLOYEE STOCK OWNERSHIP PLAN","003","1991-12-31","AMERICAN NATIONAL BANK OF BEAVER DAM",,,"115 FRONT ST",,"BEAVER DAM","WI","539162101",,,,,,,,,,,,,,,,,,"391501073","9208852700","522110","AMERICAN NATIONAL BANK OF BEAVER DAM",,"115 FRONT ST",,"BEAVER DAM","WI","539162101",,,,,,,"391501073","9208852700",,,,"2011-06-13T10:41:56-0500","PATRICIA FRANKENSTEIN","2011-06-13T10:41:56-0500","PATRICIA FRANKENSTEIN",,,54,35,3,10,48,0,48,48,7,,"2I2P3H",,,,"1",,,,"1",,"1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613110740P040077275441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RS CRUM & COMPANY EMPLOYEES PROFIT SHARING PLAN","002","1967-11-30","RS CRUM & COMPANY",,,"1181 GLOBE AVE",,"MOUNTAINSIDE","NJ","07092",,,,,,,,,,,,,,,,,,"221615207","9082324444","423700","RS CRUM & COMPANY",,"1181 GLOBE AVE",,"MOUNTAINSIDE","NJ","07092",,,,,,,"221615207","9082324444",,,,"2011-06-13T11:01:02-0500","COLLEEN MARKOVITCH",,,,,23,24,0,1,25,0,25,23,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610162535P040344783504001","2010-01-19","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"HERLEHY INC. PROFIT SHARING PLAN","001","2010-01-19","HERLEHY INC.",,,"2355 ROMNEY RD",,"SAN DIEGO","CA","92109",,,,,,,,,,,,,,,,,,"271700324","6198710566","812190","HERLEHY INC.",,"2355 ROMNEY RD",,"SAN DIEGO","CA","92109",,,,,,,"271700324","6198710566",,,,"2011-06-10T16:16:22-0500","TIMOTHY HERLEHY",,,,,1,1,0,0,1,0,1,1,0,,"2E3D2G3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613085141P030075215585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FARMER & IRWIN CORP. 401(K) PLAN","001","1995-01-01","FARMER & IRWIN CORP.",,,"3300 AVENUE K",,"RIVIERA BEACH","FL","33404",,,,,,,,,,,,,,,,,,"590864802","5618425316","238220","FARMER & IRWIN CORP.",,"3300 AVENUE K",,"RIVIERA BEACH","FL","33404",,,,,,,"590864802","5618425316",,,,"2011-06-13T08:51:35-0500","ALAN D. LONG","2011-06-13T08:51:35-0500","ALAN D. LONG",,,67,42,0,23,65,0,65,60,0,,"2E2F2G2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613100512P030075250641001","1996-11-01","1997-10-31","2",,"0","0","0","0","0","0","0","1","0",,"ROBBINS, INC. EMPLOYEE BENEFIT PLAN","501","1990-11-01","ROBBINS, INC.",,,"4777 EASTERN AVE",,"CINCINNATI","OH","45208",,,,,,,,,,,,,,,,,,"310794597","5138718988","321210","ROBBINS, INC.",,"4777 EASTERN AVE",,"CINCINNATI","OH","45208",,,,,,,"310794597","5138718988",,,,"2011-06-13T10:05:04-0500","KIMBERLY F. JACKSON","2011-06-13T10:05:04-0500","THOMAS J. DEPENBROCK",,,723,334,0,0,334,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613100537P030355550448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRADEEP SIMLOTE M.D, P.C PROFIT SHARING PLAN","001","2007-01-01","PRADEEP SIMLOTE M.D P.C",,,"21701 PEBBLE BEACH COURT",,"LEONARDTOWN","MD","20650",,,,,,,,,,,,,,,,,,"202301898","3017374995","621111","PRADEEP SIMLOTE M.D P.C",,"21701 PEBBLE BEACH COURT",,"LEONARDTOWN","MD","20650",,,,,,,"202301898","3017374995",,,,"2011-06-13T10:05:31-0500","PRADEEP SIMLOTE, M.D.",,,,,6,2,0,3,5,0,5,5,1,,"2A2E2F2G2J2K2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610130414P040075696561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DR. DANIEL R. WALTERS PROFIT SHARING PLAN","001","1987-01-01","DR. DANIEL R. WALTERS",,,"4312 PARK ROAD",,"CHARLOTTE","NC","28209",,,,,,,"4312 PARK ROAD",,"CHARLOTTE","NC","28209",,,,,,,"561326162","7045232367","621310","DR. DANIEL R. WALTERS",,"4312 PARK ROAD",,"CHARLOTTE","NC","28209",,,,,,,"561326162","7045232367",,,,"2011-06-10T13:03:33-0500","DAVID BAGLEY",,,,,5,3,,2,5,,5,,,,"2E3D3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110610154654P040011103954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE FREDERICK MOTOR COMPANY 401(K) PROFIT SHARING PLAN","002","1965-08-01","THE FREDERICK MOTOR COMPANY",,,"1 WAVERLEY DRIVE",,"FREDERICK","MD","217020000",,,,,,,,,,,,,,,,,,"520319150","3016636111","441110","THE FREDERICK MOTOR COMPANY",,"1 WAVERLEY DRIVE",,"FREDERICK","MD","217020000",,,,,,,"520319150","3016636111",,,,"2011-06-10T12:15:47-0500","ROBERT SUMMERS",,,,,91,92,0,10,102,0,102,66,1,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613120448P040351967136001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GRAVESTAR, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","1995-01-01","GRAVESTAR, INC.",,,"160 SECOND STREET",,"CAMBRIDGE","MA","02142",,,,,,,"160 SECOND STREET",,"CAMBRIDGE","MA","02142",,,,,,,"043232468","6174924118","531310","GRAVESTAR, INC.",,"160 SECOND STREET",,"CAMBRIDGE","MA","02142",,,,,,,"043232468","6174924118",,,,"2011-06-13T11:45:06-0500","CHRISTINE RICHARDSON",,,,,16,14,0,2,16,0,16,16,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610164903P030073810561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHONEGUYS VOICE & DATA SYSTEMS, INC. PROFIT SHARING PLAN","001","2008-02-07","PHONEGUYS VOICE & DATA SYSTEMS, INC.",,,"19066 CHANDON LANE",,"HUNTINGTON BEACH","CA","92648",,,,,,,,,,,,,,,,,,"261944341","7148439999","454390","PHONEGUYS VOICE & DATA SYSTEMS, INC.",,"19066 CHANDON LANE",,"HUNTINGTON BEACH","CA","92648",,,,,,,"261944341","7148439999",,,,"2011-06-10T16:35:48-0500","JOHN ROZINT","2011-06-10T16:35:48-0500","JOHN ROZINT",,,7,5,0,0,5,0,5,1,0,,"2A2E2F2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110610165949P040344850576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INDUSTRIAL AUDIO/VIDEO, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1999-07-01","INDUSTRIAL AUDIO/VIDEO, INC.",,,"2617 BISSONNET STREET",,"HOUSTON","TX","770051399",,,,,,,,,,,,,,,,,,"741698749","7135241956","443112","INDUSTRIAL AUDIO/VIDEO, INC.",,"2617 BISSONNET STREET",,"HOUSTON","TX","770051399",,,,,,,"741698749","7135241956",,,,"2011-06-10T16:54:13-0500","LYLE R. WATROUS",,,,,24,21,0,3,24,0,24,23,1,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613123106P030010909762012","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AMERICAN CONTRACTORS TRUST FOR THE STATES OF NE KS & OK","501","1998-07-23","R A KNAPP CONSTRUCTION, INC",,,"6501 MIAMI AVENUE",,"KANSAS CITY","KS","661112211",,,,,,,,,,,,,,,,,,"431150614","9132878700","237310","R A KNAPP CONSTRUCTION INC",,"6501 MIAMI AVENUE",,"KANSAS CITY","KS","661112211",,,,,,,"431150614","9132878700",,,,"2011-06-09T12:24:54-0500","TED COGSWELL III",,,,,11,5,,,5,,5,,,,,"4C",,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613133950P040077356993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRYAN BANTRY INC. 401(K) PLAN","001","2007-01-01","BRYAN BANTRY, INC.",,,"900 BROADWAY","SUITE 400","NEW YORK","NY","10003",,,,,,,,,,,,,,,,,,"201523913","2129351942","711410","BRYAN BANTRY, INC.",,"900 BROADWAY","SUITE 400","NEW YORK","NY","10003",,,,,,,"201523913","2129351942",,,,"2011-06-13T13:39:45-0500","KATIA GOLDIN",,,,,10,6,0,1,7,0,7,7,0,,"2F2G2J3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613134143P030075342481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LASER CARE SPECIALISTS 401(K) PROFIT SHARING PLAN","001","2004-01-01","LASER CARE SPECIALISTS, A PROFESSIONAL MEDICAL CORPORATION",,,"3918 LONG BEACH BLVD.","SUITE 200","LONG BEACH","CA","908072685",,,,,,,,,,,,,,,,,,"954617601","5629890802","621111","LASER CARE SPECIALISTS, A PROFESSIONAL MEDICAL CORPORATION",,"3918 LONG BEACH BLVD.","SUITE 200","LONG BEACH","CA","908072685",,,,,,,"954617601","5629890802",,,,"2011-06-13T13:41:42-0500","BRYNA KANE, MD",,,,,28,20,0,8,28,0,28,27,1,,"2A2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610144519P040075729217001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"DURHAM AND RIZZI, P.C. 401K PLAN","001","2008-03-31","DURHAM AND RIZZI PC",,,"777 GLOUCESTER ST.","SUITE 300","BRUNSWICK","GA","31522",,,,,,,"777 GLOUCESTER ST.","SUITE 300","BRUNSWICK","GA","31522",,,,,,,"582621260","9122641800","541110","DURHAM AND RIZZI PC",,"777 GLOUCESTER ST.","SUITE 300","BRUNSWICK","GA","31522",,,,,,,"582621260","9122641800",,,,"2011-06-10T14:44:33-0500","JAMES DURHAM",,,,,6,5,0,1,6,0,6,6,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613123106P030010909762015","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AMERICAN CONTRACTORS TRUST FOR THE STATES OF MT ID & OR","501","1998-10-02","SUNCREST CORPORATION","B & B STEEL ERECTORS",,"2190 S CENTURION PLACE SUITE 100",,"BOISE","ID","83709",,,,,,,,,,,,,,,,,,"820339794","2083420695","238900","SUNCREST CORPORATION",,"2190 S CENTURION PLACE SUITE 100",,"BOISE","ID","83709",,,,,,,"820339794","2083420695",,,,"2011-06-10T09:54:59-0500","TED COGSWELL III",,,,,2,5,,,5,,5,,,,,"4C",,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110611092730P040011169602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COPPERTEC INC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-10-01","COPPERTEC INC",,,"2424 BEECH DALY RD",,"INKSTER","MI","48141",,,,,,,,,,,,,,,,,,"382499325","3135631560","334610","COPPERTEC INC",,"2424 BEECH DALY RD",,"INKSTER","MI","48141",,,,,,,"382499325","3135631560","NU-CORE, INC.","382499325","001","2011-06-11T09:27:28-0500","COPPERTEC INC",,,,,20,28,0,1,29,0,29,25,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-11","Filed with authorized/valid electronic signature",, "20110613092756P040077239841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AL JAZEERA INTERNATIONAL USA INC DENTAL PLAN","503","2008-01-01","AL JAZEERA INTERNATIONAL USA INC",,,"1627 K STREET NW 11TH FLOOR",,"WASHINGTON","DC","20006",,,,,,,,,,,,,,,,,,"203567003","2024964537","519100","AL JAZEERA INTERNATIONAL USA INC",,"1627 K STREET NW 11TH FLOOR",,"WASHINGTON","DC","20006",,,,,,,"203567003","2024964537",,,,"2011-06-13T09:19:45-0500","HEATHER KANE",,,,,134,125,3,0,128,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613105321P030075269281001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BREWER'S PRICE CHOPPER 401(K) RETIREMENT PLAN","001","1997-08-31","BREWER'S FOD MART, INC",,,"PO BOX 381",,"BONNER SPRINGS","KS","66012",,,,,,,"501 SOUTH COMMERCIAL DRIVE",,"BONNER SPRINGS","KS","66012",,,,,,,"480699152","9134225803","445110","BREWER'S FOD MART, INC",,"PO BOX 381",,"BONNER SPRINGS","KS","66012",,,,,,,"480699152","9134225803",,,,"2011-06-13T10:52:02-0500","HERMAN NOLTING",,,,,80,69,,13,82,,82,46,,,"2E2F2G2J2K3E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613123106P030010909762018","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AMERICAN CONTRACTS TRUST FOR THE STATES OF PA NJ & DE","501","2005-01-01","WESSNER S EXCAVATING, LLC",,,"2929 BETZ COURT",,"OREFIELD","PA","180692812",,,,,,,,,,,,,,,,,,"571204741","6103951990","238900","WESSNER S EXCAVATING LLC",,"2929 BETZ COURT",,"OREFIELD","PA","180692812",,,,,,,"571204741","6103951990",,,,"2011-06-09T12:34:36-0500","TED COGSWELL III",,,,,2,10,,,10,,10,,,,,"4C",,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613131905P040002338003001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADIS, INC. PROFIT SHARING PLAN","001","1980-07-01","ADIS, INC.",,,"1317 BEACH AVENUE",,"CAPE MAY","NJ","08204",,,,,,,,,,,,,,,,,,"221899849","6098848338","721110","ADIS, INC.",,"1317 BEACH AVENUE",,"CAPE MAY","NJ","08204",,,,,,,"221899849","6098848338",,,,"2011-06-13T13:18:57-0500","GUS ANDY",,,,,39,29,0,7,36,0,36,36,2,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610101357P030073634561001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"NELCO PRODUCTS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","2004-08-01","NELCO PRODUCTS INC.",,,"22 RIVERSIDE DR",,"PEMBROKE","MA","023591937",,,,,,,,,,,,,,,,,,"042837729","8003463526","423600","NELCO PRODUCTS INC.",,"22 RIVERSIDE DR",,"PEMBROKE","MA","023591937",,,,,,,"042837729","8003463526",,,,"2011-06-10T10:13:55-0500","MAUREEN MEECH","2011-06-10T10:13:55-0500","MAUREEN MEECH",,,39,31,1,7,39,0,39,39,0,,"2E2I2P",,,,"1",,,,"1",,"1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110612175457P030010841986001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACOB D. HAGER, DDS, MS, PC 401(K) PLAN","001","2007-01-01","JACOB D. HAGER, DDS, MS, PC",,,"8203 S. WALKER",,"OKLAHOMA CITY","OK","73139",,,,,,,,,,,,,,,,,,"208592355","4056361411","621210","JACOB D. HAGER, DDS, MS, PC",,"8203 S. WALKER",,"OKLAHOMA CITY","OK","73139",,,,,,,"208592355","4056361411",,,,"2011-06-12T17:54:49-0500","JACOB D. HAGER, DDS, MS","2011-06-12T17:54:49-0500","JACOB D. HAGER, DDS, MS",,,8,8,0,0,8,0,8,8,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613134841P030075345153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERACTIVE RESPONSE TECHNOLOGIES WELFARE PLAN","501","1999-01-01","INTERACTIVE RESPONSE TECHNOLOGIES",,"SANDRA GOBBO","4500 NORTH STATE ROAD 7","SUITE 101","FT. LAUDERDALE","FL","33139",,,,,,,"4500 NORTH STATE ROAD 7","SUITE 101","FT. LAUDERDALE","FL","33139",,,,,,,"271885954","9547170240","561420","INTERACTIVE RESPONSE TECHNOLOGIES","SANDRA GOBBO","4500 N. STATE ROAD 7","SUITE 101","FT. LAUDERDALE","FL","33139",,,,,,,"271885954","9547170240","INTERACTIVE RESPONSE TECHNOLOGIES","650420554","501","2011-06-13T13:12:10-0500","SANDRA GOBBO",,,,,618,645,4,0,649,0,649,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","13",,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613095544P040351707168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW ENGLAND GRAPHIC SERVICES, INC. 401(K) SAVINGS AND RETIREMENT PLAN","001","1981-10-01","NEW ENGLAND GRAPHIC SERVICES, INC.",,,"206 W NEWBERRY RD.",,"BLOOMFIELD","CT","06002",,,,,,,"206 W NEWBERRY RD.",,"BLOOMFIELD","CT","06002",,,,,,,"061225625","8602422251","561490","NEW ENGLAND GRAPHIC SERVICES, INC.",,"206 W NEWBERRY RD.",,"BLOOMFIELD","CT","06002",,,,,,,"061225625","8602422251",,,,"2011-06-13T09:53:41-0500","MICHAEL KERN",,,,,56,36,0,17,53,0,53,50,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613101458P030075255457001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ROBBINS, INC. EMPLOYEE BENEFIT PLAN","501","1990-11-01","ROBBINS, INC.",,,"4777 EASTERN AVE",,"CINCINNATI","OH","45208",,,,,,,,,,,,,,,,,,"310794597","5138718988","321210","ROBBINS, INC.",,"4777 EASTERN AVE",,"CINCINNATI","OH","45208",,,,,,,"310794597","5138718988",,,,"2011-06-13T10:14:51-0500","KIMBERLY F. JACKSON","2011-06-13T10:14:51-0500","THOMAS J. DEPENBROCK",,,222,225,0,0,225,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613164853P040024239911001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PIONEER TECHNICAL SERVICES, INC. EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","002","2009-01-01","PIONEER TECHNICAL SERVICES, INC.",,,"P.O. BOX 3445",,"BUTTE","MT","597023445",,,,,,,"63 1/2 WEST BROADWAY",,"BUTTE","MT","59701",,,,,,,"810474175","4067825177","541990","PIONEER TECHNICAL SERVICES, INC.",,"P.O. BOX 3445",,"BUTTE","MT","597023445",,,,,,,"810474175","4067825177",,,,"2011-06-13T16:37:49-0500","DAVE TUESDAY",,,,,71,73,0,1,74,0,74,72,1,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110621155528P040082392145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP BENEFITS PLAN FOR EMPLOYEES OF PARSONS CORPORATION & DESIGNATED SUBSIDIARIES","502","1966-01-01","PARSONS CORPORATION",,,"100 W. WALNUT STREET",,"PASADENA","CA","911240001",,,,,,,,,,,,,,,,,,"953232481","6264402000","541330","PARSONS CORPORATION",,"100 W. WALNUT STREET",,"PASADENA","CA","911240001",,,,,,,"953232481","6264402000",,,,"2011-06-21T15:49:38-0500","JAMES GRANATA","2011-06-21T15:49:38-0500","JAMES GRANATA",,,8185,7581,261,0,7842,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","17","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616090455P040079088609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TIMOTHY F GABRYEL M.D.,P.C. PROFIT SHARING 401(K) PLAN","001","1987-01-01","TIMOTHY F GABRYEL M.D., P.C.",,,"290 CENTER ROAD",,"WEST SENECA","NY","14224",,,,,,,,,,,,,,,,,,"161247728","7166750709","621111","TIMOTHY F GABRYEL M.D., P.C.",,"290 CENTER ROAD",,"WEST SENECA","NY","14224",,,,,,,"161247728","7166750709",,,,"2011-06-16T09:04:47-0500","TIMOTHY F GABRYEL",,,,,35,20,5,0,25,1,26,23,0,,"2E2F2H2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616162536P040079338961001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","002","2009-02-25","CO-OP ENERGY, LLC",,,"125 A TIBBETTS LANE",,"PONDERAY","ID","83852",,,,,,,,,,,,,,,,,,"820524783","2082633338","115110","CO-OP ENERGY, LLC",,"125 A TIBBETTS LANE",,"PONDERAY","ID","83852",,,,,,,"820524783","2082633338",,,,"2011-06-16T16:25:31-0500","RICHARD FIELLEN","2011-06-16T16:25:31-0500","RICHARD FIELLEN",,,2,1,0,1,2,0,2,2,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617122344P040079850177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NAYLOR GARDENS COOPERATIVE HOUSING ASSOCIATION EMP","002","1996-05-01","NAYLOR GARDENS COOPERATIVE HOUSING",,,"3020 HAMAKER COURT #301",,"FAIRFAX","VA","22031",,,,,,,,,,,,,,,,,,"530182255","7038769590","531310","NAYLOR GARDENS COOPERATIVE HOUSING",,"3020 HAMAKER COURT #301",,"FAIRFAX","VA","22031",,,,,,,"530182255","7038769590",,,,"2011-06-17T12:23:39-0500","KIM DONAVANT","2011-06-17T12:23:39-0500","KIM DONAVANT",,,13,12,0,0,12,0,12,11,0,,"2E2J2F2G2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621112229P030377143424001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONVENTION SUPPORT SERVICES, INC. PROFIT SHARING PLAN","001","1995-01-01","CONVENTION SUPPORT SERVICES, INC.",,,"P.O. BOX 5789",,"LA QUINTA","CA","92248",,,,,,,,,,,,,,,,,,"330493025","7607757355","561900","CONVENTION SUPPORT SERVICES, INC.",,"P.O. BOX 5789",,"LA QUINTA","CA","92248",,,,,,,"330493025","7607757355",,,,"2011-06-21T11:20:50-0500","MARILYN BALCHAN",,,,,16,14,0,3,17,0,17,13,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621101757P040012060418001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEALTHCARE REALTY TRUST INC. HEALTH AND WELFARE PLAN","555","2009-01-01","HEALTHCARE REALTY TRUST INC.",,,"3310 WEST END AVENUE, SUITE 700",,"NASHVILLE","TN","37203",,,,,,,"3310 WEST END AVENUE, SUITE 700",,"NASHVILLE","TN","37203",,,,,,,"621507028","6152698175","531120","HEALTHCARE REALTY TRUST INC.",,"3310 WEST END AVENUE, SUITE 700",,"NASHVILLE","TN","37203",,,,,,,"621507028","6152698175",,,,"2011-06-21T10:11:56-0500","FREDRICK LANGRECK",,,,,239,229,7,0,236,0,236,,,,,"4A4B4D4E4H","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621114225P040082262977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FARMERS CO-OP OIL COMPANY OF RENVILLE 401(K) PLAN AND TRUST","001","1959-01-01","FARMERS CO-OP OIL CO. OF RENVILLE",,,"P.O. BOX 250",,"RENVILLE","MN","56284",,,,,,,,,,,,,,,,,,"410248260","3203298351","447100","FARMERS CO-OP OIL CO. OF RENVILLE",,"P.O. BOX 250",,"RENVILLE","MN","56284",,,,,,,"410248260","3203298351",,,,"2011-06-21T11:42:18-0500","CYNTHIA ZASKE",,,,,26,22,0,3,25,0,25,24,2,,"3D2E2F2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621190809P030080048593001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"VIRGINIA CARDIOVASCULAR SPECIALISTS COMPREHENSIVE HEALTH AND WELFARE BENEFIT PLAN","507","2010-01-01","VIRGINIA CARDIOVASCULAR SPECIALISTS PC",,,"5875 BREMO ROAD, SUITE 512",,"RICHMOND","VA","23226",,,,,,,,,,,,,,,,,,"541090122","8045215802","621111","VIRGINIA CARDIOVASCULAR SPECIALISTS PC",,"5875 BREMO ROAD, SUITE 512",,"RICHMOND","VA","23226",,,,,,,"541090122","8045215802",,,,"2011-06-21T19:08:01-0500","CATHERINE LEONARD",,,,,159,157,2,0,159,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616143003P040360404160001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEST EQUIPMENT & WELDING CO., INC. 401(K) PLAN","001","1995-01-01","BEST EQUIPMENT & WELDING CO., INC.",,,"1960 MIDWEST BLVD.",,"INDIANAPOLIS","IN","462142334",,,,,,,,,,,,,,,,,,"351694838","3172718652","332900","BEST EQUIPMENT & WELDING CO., INC.",,"1960 MIDWEST BLVD.",,"INDIANAPOLIS","IN","462142334",,,,,,,"351694838","3172718652",,,,"2011-06-16T12:35:30-0500","GLENN FOY",,,,,23,19,0,2,21,0,21,15,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616105723P040002388979001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALBERT M DRUKTEINIS MD JD PROFIT SHARING PLAN AND TRUST","001","1992-01-01","ALBERT M DRUKTEINIS MD JD",,,"1750 ELM ST STE 601",,"MANCHESTER","NH","031042907",,,,,,,"1750 ELM ST STE 601",,"MANCHESTER","NH","031042907",,,,,,,"020332134","6036686436","621112","ALBERT M DRUKTEINIS MD JD",,"1750 ELM ST STE 601",,"MANCHESTER","NH","031042907",,,,,,,"020332134","6036686436",,,,"2011-06-16T10:41:28-0500","ALBERT M DRUKTEINIS",,,,,3,3,0,0,3,0,3,3,0,,"2A2E3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617144434P040079929953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE SARATOGA COUNTY CHAMBER OF COMMERCE 401(K) PROFIT SHARING PLAN","001","1989-10-01","THE SARATOGA COUNTY CHAMBER OF COMMERCE",,,"28 CLINTON ST",,"SARATOGA SPRINGS","NY","128662143",,,,,,,,,,,,,,,,,,"140558213","5185843255","813000","THE SARATOGA COUNTY CHAMBER OF COMMERCE",,"28 CLINTON ST",,"SARATOGA SPRINGS","NY","128662143",,,,,,,"140558213","5185843255",,,,"2011-06-17T14:43:14-0500","TODD SHIMKUS",,,,,16,13,0,3,16,0,16,15,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617080712P040079724065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARGARET MARY COMMUNITY HOSPITAL LONG TERM DISABILITY INCOME PLAN","502","2008-01-01","MARGARET MARY COMMUNITY HOSPITAL",,,"321 MITCHELL AVENUE",,"BATESVILLE","IN","47006",,,,,,,,,,,,,,,,,,"356067049","8129346624","622000","MARGARET MARY COMMUNITY HOSPITAL",,"321 MITCHELL AVENUE",,"BATESVILLE","IN","47006",,,,,,,"356067049","8129346624",,,,"2011-06-17T08:05:43-0500","KIMBERLY INSCHO",,,,,362,373,0,0,373,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617190955P040080060513001","2010-04-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"CK LEASING LLC/TOMS FOOD MARKETS EMPLOYEE BENEFIT PLAN","501","1976-01-01","CK LEASING, LLC",,,"1311 SOUTH DIVISION STREET",,"TRAVERSE CITY","MI","49684",,,,,,,,,,,,,,,,,,"412119604","2319464115","561300","CK LEASING, LLC",,"1311 SOUTH DIVISION STREET",,"TRAVERSE CITY","MI","49684",,,,,,,"412119604","2319464115",,,,"2011-06-17T19:09:46-0500","CHRISTINE KIBLINGER",,,,,167,139,1,0,140,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110620182352P030375266272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","001","1955-01-01","FLASHER FARMERS UNION GRAIN & OIL COMPANY",,,"P. O. BOX 357",,"FLASHER","ND","58535",,,,,,,,,,,,,,,,,,"450457400","7015973338","115110","FLASHER FARMERS UNION GRAIN & OIL COMPANY",,"P. O. BOX 357",,"FLASHER","ND","58535",,,,,,,"450457400","7015973338",,,,"2011-06-20T18:23:19-0500","NOLA W. SCHAFER",,,,,2,4,0,0,4,0,4,2,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110621093809P030079796593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE VALLEY FORGE FLAG COMPANY INC.TAX SAVINGS ACCOUNT PLAN","502","1990-02-01","THE VALLEY FORGE FLAG COMPANY, INC.",,,"PO BOX 5979",,"WYOMISSING","PA","196105979",,,,,,,"875 BERKSHIRE BLVD.","SUITE 101","WYOMISSING","PA","19610",,,,,,,"131564896","6103762400","314999","THE VALLEY FORGE FLAG COMPANY, INC.",,"PO BOX 5979",,"WYOMISSING","PA","196105979",,,,,,,"131564896","6103762400",,,,"2011-06-21T09:36:34-0500","TODD REID",,,,,306,317,1,0,318,0,318,,,,,"4A4B4D4F","1",,,,"1",,,,,,,,,"1","11",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621130230P040082301921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE HARTZ GROUP INC LIFE INSURANCE","507","1981-10-01","THE HARTZ GROUP INC",,"FRANK E ROSCITT","400 PLAZA DRIVE",,"SECAUCUS","NJ","07096",,,,,,,"400 PLAZA DRIVE",,"SECAUCUS","NJ","07096",,,,,,,"222576954","2013481200","531120","THE HARTZ GROUP INC","FRANK E ROSCITT","400 PLAZA DRIVE",,"SECAUCUS","NJ","07096",,,,,,,"222576954","2013481200",,,,"2011-06-21T13:00:49-0500","FRANK ROSCITT",,,,,664,713,,,713,,713,,,,,"4B","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621115117P030079855489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILKES TELEPHONE AND ELECTRIC CO., INC. SALARY DEFERRAL PLAN AND TRUST","001","1960-01-01","WILKES TELEPHONE AND ELECTRIC COMPANY, INC.",,,"107 EAST LIBERTY STREET",,"WASHINGTON","GA","30673",,,,,,,,,,,,,,,,,,"580488850","7066789510","517000","WILKES TELEPHONE AND ELECTRIC COMPANY, INC.",,"107 EAST LIBERTY STREET",,"WASHINGTON","GA","30673",,,,,,,"580488850","7066789510",,,,"2011-06-21T11:49:10-0500","RONNIE FUTCH","2011-06-21T11:49:10-0500","RONNIE FUTCH",,,53,44,0,6,50,0,50,49,0,,"2E2H2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621172210P040082431217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BMWSS INC. 401K PLAN","001","2009-04-01","BMWSS INC.",,,"19505 NE 181ST STREET",,"WOODINVILLE","WA","98077",,,,,,,,,,,,,,,,,,"264042258","2063962057","811110","BMWSS INC.",,"19505 NE 181ST STREET",,"WOODINVILLE","WA","98077",,,,,,,"264042258","2063962057",,,,"2011-06-21T17:22:04-0500","RICHARD SCHOTT","2011-06-21T17:22:04-0500","RICHARD SCHOTT",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617083319P030077568113001","2010-01-01","2010-12-31","2",,,,,,"1",,,,,,"VALCOM INC EMPLOYEE BENEFIT PLAN","501","1989-01-01","VALCOM, INC",,,"5614 HOLLINS ROAD",,"ROANOKE","VA","24019",,,,,,,,,,,,,,,,,,"541048179","5405632000","335900","VALCOM INC",,"5614 HOLLINS ROAD",,"ROANOKE","VA","24019",,,,,,,"541048179","5405632000",,,,"2011-06-16T10:35:20-0500","JOHN W MASON",,,,,169,159,,,159,,159,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621094038P030079797489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANDERSEN HOLST TROST SVOBODA ARCHITECTS 401(K) PROFIT SHARING PLAN","002","1987-01-01","ANDERSEN HOLST TROST SVOBODA ARCHITECTS",,,"327 EAST FOURTH STREET, SUITE 204",,"WATERLOO","IA","50703",,,,,,,,,,,,,,,,,,"421423046","3192331163","541310","ANDERSEN HOLST TROST SVOBODA ARCHITECTS",,"327 EAST FOURTH STREET, SUITE 204",,"WATERLOO","IA","50703",,,,,,,"421423046","3192331163",,,,"2011-06-21T09:36:43-0500","DUANE SVOBODA","2011-06-21T09:36:43-0500","DUANE SVOBODA",,,9,8,0,1,9,0,9,9,0,,"2E2F2G2J2K2R3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616140312P040079233169005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARION CONSTRUCTION COMPANY 401K PROFIT SHARING PLAN","001","1965-01-01","MARION CONSTRUCTION COMPANY",,,"PO BOX 12218",,"SALEM","OR","97309",,,,,,,,,,,,,,,,,,"930498087","5035811920","236200","MARION CONSTRUCTION COMPANY",,"PO BOX 12218",,"SALEM","OR","97309",,,,,,,"930498087","5035811920",,,,"2011-06-16T13:16:23-0500","MICHAEL PARKIN",,,,,39,21,1,9,31,,31,31,,,"3H2R2J2H2E2D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616180214P040079393617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"W R BURNETT INC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-08-20","WR BURNETT INC",,,"195 NEW ROAD",,"MONMOUTH JUNCTION","NJ","08852",,,,,,,,,,,,,,,,,,"232641253","6097435601","484110","WR BURNETT INC",,"195 NEW ROAD",,"MONMOUTH JUNCTION","NJ","08852",,,,,,,"232641253","6097435601",,,,"2011-06-16T06:02:11-0500","WR BURNETT INC",,,,,14,10,0,0,10,0,10,10,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617111018P040079804081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OMNEON, INC. HEALTH & WELFARE PLAN","501","2006-01-01","OMNEON, INC.",,"HARMONIC INC.","4300 NORTH FIRST STREET",,"SAN JOSE","CA","95134",,,,,,,,,,,,,,,,,,"770483655","4085422500","334310","OMNEON, INC.","HARMONIC INC.","4300 NORTH FIRST STREET",,"SAN JOSE","CA","95134",,,,,,,"770483655","4085422500",,,,"2011-06-17T10:32:16-0500","STANLEY JUNG",,,,,232,216,10,0,226,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617121154P030366717888003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FIROOZ RAVANGARD, M.D., P.C. PROFIT-SHARING PLAN","001","1998-03-17","FIROOZ RAVANGARD, M.D., P.C.",,,"1656 CHAMPLIN AVENUE",,"UTICA","NY","13502",,,,,,,"1656 CHAMPLIN AVENUE",,"UTICA","NY","13502",,,,,,,"161548766","3157247734","621111","FIROOZ RAVANGARD, M.D., P.C.",,"1656 CHAMPLIN AVENUE",,"UTICA","NY","13502",,,,,,,"161548766","3157247734",,,,"2011-06-17T07:29:16-0500","FIROOZ RAVANGARD",,,,,8,8,,,8,,8,8,1,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617201506P030367671648001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WILLIAM D. PRESTON, M.D., 401(K) SAFE HARBOR PROFIT SHARING PLAN","002","1993-01-01","WILLIAM PRESTON, MD, INC.",,,"155 NORTH 400 WEST SUITE B6",,"OREM","UT","840571909",,,,,,,,,,,,,,,,,,"870414075","8012241300","621111","WILLIAM PRESTON, MD, INC.",,"155 NORTH 400 WEST SUITE B6",,"OREM","UT","840571909",,,,,,,"870414075","8012241300",,,,"2011-06-17T20:05:08-0500","WILLIAM PRESTON",,,,,14,17,0,0,17,0,17,11,,,"2A2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621100706P030079808961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RHEA & KAISER ADVERTISING, INC. PROFIT SHARING & 401(K) PLAN & TRUST","001","1980-05-30","RHEA & KAISER ADVERTISING, INC.",,,"400 E. DIEHL ROAD",,"NAPERVILLE","IL","60563",,,,,,,"400 E. DIEHL ROAD",,"NAPERVILLE","IL","60563",,,,,,,"362965293","6305051100","541800","RHEA & KAISER ADVERTISING, INC.",,"400 E. DIEHL ROAD",,"NAPERVILLE","IL","60563",,,,,,,"362965293","6305051100",,,,"2011-06-21T10:06:50-0500","STEPHEN RHEA",,,,,94,46,0,29,75,0,75,71,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110617123109P040362877712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTH IDAHO MENTAL HEALTH ASSOCIATES, P.A. 401(K) PROFIT SHARING PLAN","001","1996-01-22","NORTH IDAHO MENTAL HEALTH ASSOCIATES, P.A.",,,"2199 IRONWOOD CENTER DRIVE",,"COEUR D ALENE","ID","83814",,,,,,,,,,,,,,,,,,"820486636","2086660448","621112","NORTH IDAHO MENTAL HEALTH ASSOCIATES, P.A.",,"2199 IRONWOOD CENTER DRIVE",,"COEUR D ALENE","ID","83814",,,,,,,"820486636","2086660448",,,,"2011-06-16T20:24:32-0500","BRUCE MIEWALD",,,,,4,4,0,0,4,0,4,4,0,,"2A2E2G2J3D2F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617130518P040079868577001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PRACTICE SERVICES, LLC. 401(K) PLAN","001","2004-01-01","PRACTICE SERVICES, LLC.",,,"1 WEST 34TH STREET SUITE 501",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"134149254","2126846605","561110","PRACTICE SERVICES, LLC.",,"1 WEST 34TH STREET SUITE 501",,"NEW YORK","NY","10001",,,,,,,"134149254","2126846605",,,,"2011-06-17T13:05:11-0500","JOEL LANE","2011-06-17T13:05:11-0500","JOEL LANE",,,28,30,0,6,36,0,36,36,3,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617135900P040079897665001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"NEW ERA EXPENSE CONSULTING GROUP, INC. 401(K) PROFIT SHARING PLAN","001","2009-02-03","NEW ERA EXPENSE CONSULTING GROUP, INC.",,,"504 WESCOTT RIDGE DRIVE",,"HOLLY SPRINGS","NC","27540",,,,,,,,,,,,,,,,,,"264174121","9198893222","541600","NEW ERA EXPENSE CONSULTING GROUP, INC.",,"504 WESCOTT RIDGE DRIVE",,"HOLLY SPRINGS","NC","27540",,,,,,,"264174121","9198893222",,,,"2011-06-17T13:52:35-0500","KURT RUNDLE",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617135942P040011729042002","2010-04-01","2011-03-31","2",,,,,,,,,,,,"RX OPTIONS INC. VOLUNTARY DENTAL PLAN","502","2008-04-01","RX OPTIONS, INC.",,,"2181 E. AURORA ROAD","SUITE 201","TWINSBURG","OH","44087",,,,,,,,,,,,,,,,,,"341939227","3304058089","446110","RX OPTIONS, INC.",,"2181 E. AURORA ROAD","SUITE 201","TWINSBURG","OH","44087",,,,,,,"341939227","3304058089",,,,"2011-06-15T07:24:23-0500","THOMAS WELSH",,,,,825,825,0,0,825,,,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617152857P030367120272001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"DMX, INC. 401(K) SAVINGS PLAN","001","1987-01-01","DMX, INC.",,,"1703 WEST 5TH STREET","SUITE 600","AUSTIN","TX","78703",,,,,,,"1703 WEST 5TH STREET","SUITE 600","AUSTIN","TX","78703",,,,,,,"202796414","5123808500","515210","DMX, INC.",,"1703 WEST 5TH STREET","SUITE 600","AUSTIN","TX","78703",,,,,,,"202796414","5123808500",,,,"2011-06-17T15:28:04-0500","SHERI MICHALEC",,,,,465,296,0,128,424,0,424,350,43,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621112834P030079844769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAUL G. MOSS CPA","001","1983-01-01","PAUL G. MOSS CPA PROFIT SHARING PLAN",,,"455 E. STATE PARKWAY, SUITE 202",,"SCHAUMBURG","IL","601734579",,,,,,,"455 E. STATE PARKWAY, SUITE 202",,"SCHAUMBURG","IL","601734579",,,,,,,"362856444","8478827100","541211","PAUL G. MOSS CPA PROFIT SHARING PLAN",,"455 E. STATE PARKWAY, SUITE 202",,"SCHAUMBURG","IL","601734579",,,,,,,"362856444","8478827100",,,,"2011-06-21T11:22:59-0500","PAUL MOSS",,,,,2,2,,,2,,2,2,0,,"2E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616095514P040359857472001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHIFF, KREIDLER-SHELL INC LIFE INSURANCE PLAN","503","1984-10-01","SCHIFF, KREIDLER-SHELL",,,"1 WEST FOURTH STREET","SUITE 1300","CINCINNATI","OH","45202",,,,,,,"1 WEST FOURTH STREET","SUITE 1300","CINCINNATI","OH","45202",,,,,,,"310493450","5139773100","524210","SCHIFF, KREIDLER-SHELL",,"1 WEST FOURTH STREET","SUITE 1300","CINCINNATI","OH","45202",,,,,,,"310493450","5139773100",,,,"2011-06-16T09:53:09-0500","RUSSELL FERNEDING",,,,,107,106,,,106,,106,,,,,"4B","1",,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617141422P040079903553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DR. BRIAN G. LEBON PROFIT SHARING PLAN","006","1993-01-01","DR. BRIAN G. LEBON",,,"4401-A TRANSCONTINENTAL DR.",,"METAIRIE","LA","70006",,,,,,,,,,,,,,,,,,"720935335","5044555316","621210","DR. BRIAN G. LEBON",,"4401-A TRANSCONTINENTAL DR.",,"METAIRIE","LA","70006",,,,,,,"720935335","5044555316",,,,"2011-06-17T14:04:25-0500","BRIAN LEBON",,,,,4,3,0,1,4,0,4,4,0,,"2E2A3B2G2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621132431P040082312465001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ENVISION EMPLOYEE BENEFIT PLAN","501","2005-07-01","ENVISION, INC.",,,"610 NORTH MAIN STREET",,"WICHITA","KS","67203",,,,,,,,,,,,,,,,,,"480543705","3162672244","339900","ENVISION, INC.",,"610 NORTH MAIN STREET",,"WICHITA","KS","67203",,,,,,,"480543705","3162672244",,,,"2011-06-21T11:48:59-0500","KATHY COX","2011-06-21T11:48:59-0500","KATHY COX",,,287,331,0,0,331,,,,,,,"4A4B4D4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621132729P030079888385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEPHENSON WHOLESALE COMPANY, INC. WELFARE BENEFIT PLAN","501","2007-01-01","STEPHENSON WHOLESALE COMPANY, INC.","INDIAN NATION WHOLESALE CO.",,"PO BOX 70",,"DURANT","OK","74702",,,,,,,"230 SO. 22ND STREET",,"DURANT","OK","74702",,,,,,,"730968950","5809200110","424990","STEPHENSON WHOLESALE COMPANY, INC.",,"PO BOX 70",,"DURANT","OK","74702",,,,,,,"730968950","5809200110",,,,"2011-06-17T09:54:50-0500","JERRY WHEATLEY - CFO","2011-06-17T09:54:50-0500","JERRY WHEATLEY - CFO",,,239,231,0,0,231,0,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621130702P040025773479001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"MECHANICAL DYNAMICS AND ANALYSIS, LTD WELFARE BENEFIT PLAN","503","2008-01-01","MECHANICAL DYNAMICS AND ANALYSIS, LTD",,,"19 BRITISH AMERICAN BLVD",,"LATHAM","NY","12110",,,,,,,"19 BRITISH AMERICAN BLVD",,"LATHAM","NY","12110",,,,,,,"203400458","5183393616","811310","MECHANICAL DYNAMICS AND ANALYSIS, LTD",,"19 BRITISH AMERICAN BLVD",,"LATHAM","NY","12110",,,,,,,"203400458","5183393616",,,,"2011-06-21T10:45:09-0500","JILL FELDMAN","2011-06-09T14:34:52-0500","FREDERICK LUCK",,,347,365,,,365,,365,,,,,"4H","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621130711P040082304033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDICAL CARE MAJOR MEDICAL & CAFETERIA PLAN","503","1986-07-01","HARTZ MOUNTAIN INDUSTRIES INC",,"FRANK E ROSCITT","400 PLAZA DRIVE P.O. BOX 1515",,"SECAUCUS","NJ","07096",,,,,,,"400 PLAZA DRIVE P.O. BOX 1515",,"SECAUCUS","NJ","07096",,,,,,,"132670903","2013481200","531120","HARTZ MOUNTAIN INDUSTRIES INC","FRANK E ROSCITT","400 PLAZA DRIVE P.O. BOX 1515",,"SECAUCUS","NJ","07096",,,,,,,"132670903","2013481200",,,,"2011-06-21T12:55:55-0500","FRANK ROSCITT",,,,,702,713,44,,757,,757,,,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616074346P030363540336001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RACEPOINT GROUP, INC. 401(K) PLAN","001","2003-04-07","RACEPOINT GROUP, INC",,,"404 WYMAN ST.","#375","WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"550825814","7814874605","541600","RACEPOINT GROUP, INC",,"404 WYMAN ST.","#375","WALTHAM","MA","02451",,,,,,,"550825814","7814874605",,,,"2011-06-15T07:20:00-0500","KAREN BOUCHARD","2011-06-15T07:20:00-0500","KAREN BOUCHARD",,,113,92,0,41,133,0,133,92,21,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616082525P040079064417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRION S. WEINBERG, D.D.S., P.A. RETIREMENT PLAN & TRUST","001","2006-01-01","BRION S. WEINBERG, D.D.S., P.A.",,,"14050 U.S. HWY 1","SUITE D","JUNO BEACH","FL","33408",,,,,,,,,,,,,,,,,,"650943851","5616227220","621210","BRION S. WEINBERG, D.D.S., P.A.",,"14050 U.S. HWY 1","SUITE D","JUNO BEACH","FL","33408",,,,,,,"650943851","5616227220",,,,"2011-06-16T08:25:20-0500","BRION S. WEINBERG, D.D.S.","2011-06-16T08:25:20-0500","BRION S. WEINBERG, D.D.S.",,,3,2,0,2,4,0,4,4,2,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617084425P040362402304001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","0","0","0","0",,"ALPINE RESOURCES LLC","501","1997-01-01","ALPINE RESOURCES LLC",,,"PO BOX 5028",,"NEW YORK","NY","10150",,,,,,,"PO BOX 5028",,"NEW YORK","NY","10150",,,,,,,"133979669","2126415002","541219","ALPINE RESOURCES LLC",,"PO BOX 5028",,"NEW YORK","NY","10150",,,,,,,"133979669","2126415002",,,,"2011-06-17T08:40:18-0500","STAN MAUSS",,,,,220,223,,,223,,223,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617100058P040011713570001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BERNARDING 401K RETIREMENT PLAN AND TRUST","001","2006-07-03","BERNARDING, INC.",,,"1595 W HINSDALE DR",,"LITTLETON","CO","80120",,,,,,,,,,,,,,,,,,"205142695","3035206580","722300","BERNARDING, INC.",,"1595 W HINSDALE DR",,"LITTLETON","CO","80120",,,,,,,"205142695","3035206580",,,,"2011-06-17T10:00:48-0500","ELAINE BERNARDING","2011-06-17T10:00:48-0500","ELAINE BERNARDING",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617160213P030077766497001","2008-04-01","2009-03-31","2",,"0","0","0","0","0","0","0","1","0",,"SANTA ROSA FIRE EQUIPMENT 401(K) SAVINGS PLAN","001","1978-04-01","SANTA ROSA FIRE EQUIPMENT SERVICE, INC.",,,"P.O. BOX 7070",,"SANTA ROSA","CA","95407",,,,,,,,,,,,,,,,,,"942475589","7075460797","541990","SANTA ROSA FIRE EQUIPMENT SERVICE, INC.",,"P.O. BOX 7070",,"SANTA ROSA","CA","95407",,,,,,,"942475589","7075460797",,,,"2011-06-17T16:02:05-0500","MICHAEL J. REESER",,,,,29,16,0,8,24,0,24,18,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110616091610P040011613010001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BROADWAY DENTAL ASSOCIATES PA 401(K) PLAN","001","1983-01-01","BROADWAY DENTAL ASSOCIATES PA",,,"700 BROADWAY","STE 64","WESTWOOD","NJ","07675",,,,,,,"700 BROADWAY","STE 64","WESTWOOD","NJ","07675",,,,,,,"222420631","2016661300","621210","BROADWAY DENTAL ASSOCIATES PA",,"700 BROADWAY","STE 64","WESTWOOD","NJ","07675",,,,,,,"222420631","2016661300",,,,"2011-06-16T09:15:34-0500","ALAN ZARAFSHAR",,,,,7,6,0,0,6,0,6,6,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616091819P040079094305001","2010-01-01","2010-12-31","3",,"0","0","0","0",,,,,,,"ADVANCED RADIOLOGY CONSULTANTS RETIREMENT PLAN","001","2003-01-01","ADVANCED RADIOLOGY CONSULTANTS, S.C.",,,"1420 RENAISSANCE DRIVE","STE 307","PARK RIDGE","IL","60068",,,,,,,"1420 RENAISSANCE DRIVE","STE 307","PARK RIDGE","IL","60068",,,,,,,"300115987","8478031000","621399","ADVANCED RADIOLOGY CONSULTANTS, S.C.",,"1420 RENAISSANCE DRIVE","STE 307","PARK RIDGE","IL","60068",,,,,,,"300115987","8478031000",,,,"2011-06-16T09:17:34-0500","JOHN ANASTOS",,,,,29,30,0,17,47,0,47,46,0,,"2A2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616094259P040011615666001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OHIO VALLEY HEART 401(K) PLAN","001","2002-04-01","OHIO VALLEY HEART P.S.C.",,,"901 KENTON STATION DRIVE",,"MAYSVILLE","KY","41056",,,,,,,,,,,,,,,,,,"611358427","6067599353","621111","OHIO VALLEY HEART P.S.C.",,"901 KENTON STATION DRIVE",,"MAYSVILLE","KY","41056",,,,,,,"611358427","6067599353",,,,"2011-06-16T09:42:53-0500","VANESSA MILLS",,,,,38,0,0,12,12,0,12,12,0,,"2E2F2G2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617133008P040079883041003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TEPPER & TEPPER PSYCHOLOGY PC PROFIT SHARING PLAN","001","1980-01-01","TEPPER & TEPPER PSYCHOLOGY PC",,,"300 CENTRAL PARK WEST",,"NEW YORK","NY","100241513",,,,,,,,,,,,,,,,,,"133473309","2125950559","621330","TEPPER & TEPPER PSYCHOLOGY PC",,"300 CENTRAL PARK WEST",,"NEW YORK","NY","100241513",,,,,,,"133473309","2125950559",,,,"2011-06-17T14:27:23-0500","BRENDA TEPPER","2011-06-17T14:27:35-0500","BRENDA TEPPER",,,3,3,0,0,3,0,3,3,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621154434P040373726208001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN IMAGE SALON & SPA 401(K) PLAN","001","1997-11-17","AMERICAN IMAGE HAIR, NAIL & SKIN SALON, INC.",,,"13385 OLIVE BLVD.",,"CHESTERFIELD","MO","630170000",,,,,,,,,,,,,,,,,,"431695615","3148785210","812111","AMERICAN IMAGE HAIR, NAIL & SKIN SALON, INC.",,"13385 OLIVE BLVD.",,"CHESTERFIELD","MO","630170000",,,,,,,"431695615","3148785210",,,,"2011-06-21T15:44:15-0500","DENISE MITCHELL",,,,,56,47,0,3,50,0,50,13,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616092240P040079096273001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","0","0","0","0",,"SUPPLEMENTAL UNEMPLOYMENT BENEFIT FUND OF THE ELECTRICAL INDUSTRY","502","1963-09-04","BOARD OF TRUSTEES, SUPPLEMENTAL UNEMPLOYMENT BENEFIT FUND OF THE","ELECTRICAL INDUSTRY, DETROIT, MI",,"P O BOX 71337",,"MADISON HEIGHTS","MI","480710337",,,,,,,"P O BOX 71337",,"MADISON HEIGHTS","MI","480711337",,,,,,,"386080379","5865759200","238210","BOARD OF TRUSTEES, SUPPLEMENTAL UNEMPLOYMENT BENEFIT FUND OF THE",,"P O BOX 71337",,"MADISON HEIGHTS","MI","480710337",,,,,,,"386080379","5865759200",,,,"2011-06-16T09:21:55-0500","THOMAS MITTELBRUN","2011-06-16T09:21:55-0500","THOMAS MITTELBRUN",,,4527,4300,,,4300,,,,,250,,"4C4F4Q",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616103913P030023972119001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INX INTERNATIONAL GROUP LONG-TERM DISABILITY PLAN","507","1973-01-01","INX INTERNATIONAL INK CO.",,,"150 N MARTINGALE RD, SUITE 700",,"SCHAUMBURG","IL","60173",,,,,,,"150 N MARTINGALE RD, SUITE 700",,"SCHAUMBURG","IL","60173",,,,,,,"360702910","6303821800","325900","INX INTERNATIONAL INK CO.",,"150 N MARTINGALE RD, SUITE 700",,"SCHAUMBURG","IL","60173",,,,,,,"360702910","6303821800",,,,"2011-06-16T10:24:00-0500","SUSAN SUPERGAN",,,,,905,910,11,,921,,921,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616114553P040360074768001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REGIONAL HEATING & AIR CONDITIONING, INC. 401(K) PLAN AND TRUST","001","2001-01-01","REGIONAL HEATING & AIR CONDITIONING, INC.",,"ONDRE BARKER","2525 WESTON ROAD",,"COLORADO SPRINGS","CO","80910",,,,,,,"2525 WESTON ROAD",,"COLORADO SPRINGS","CO","80910",,,,,,,"841249576","7193926171","238220","REGIONAL HEATING & AIR CONDITIONING, INC.","ONDRE BARKER","2525 WESTON ROAD",,"COLORADO SPRINGS","CO","80910",,,,,,,"841249576","7193926171",,,,"2011-06-16T11:44:41-0500","FAITH BARKER",,,,,6,4,,1,5,,5,,,,"2E2F2G2J2K3E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616190206P040079411361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROVAIL GROUP HEALTH AND WELFARE PLAN","501","2000-07-01","PROVAIL",,,"12550 AURORA AVENUE NORTH",,"SEATTLE","WA","98133",,,,,,,,,,,,,,,,,,"910593488","2063637303","624100","PROVAIL",,"12550 AURORA AVENUE NORTH",,"SEATTLE","WA","98133",,,,,,,"910593488","2063637303",,,,"2011-06-16T19:01:57-0500","MAC MACKELLER-HERTAN",,,,,131,122,0,0,122,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617143306P040011732146001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PLANTROL SYSTEMS LTD 401K PLAN","001","1982-11-01","PLANTROL SYSTEMS LTD",,,"100 BOURNE ST",,"WESTFIELD","NY","147879706",,,,,,,,,,,,,,,,,,"161118146","7163264900","541511","PLANTROL SYSTEMS LTD",,"100 BOURNE ST",,"WESTFIELD","NY","147879706",,,,,,,"161118146","7163264900",,,,"2011-06-17T14:15:12-0500","DANIEL SMITH",,,,,17,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617150133P030077731537001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","0","0",,"LINEAR LOGICS INC","001","2007-01-01","LINEAR LOGICS INC",,,"42 VENUTI DR",,"ASTON","PA","19014",,,,,,,"42 VENUTI DR",,"ASTON","PA","19014",,,,,,,"202719381","6109097679","541600","LINEAR LOGICS INC",,"42 VENUTI DR",,"ASTON","PA","19014",,,,,,,"202719381","6109097679",,,,"2011-06-17T15:01:18-0500","RAJESH SUNDARAMOORTHI",,,,,3,3,0,0,3,0,3,2,0,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617150626P040363237456001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOWIE & JENSEN, LLC PROFIT SHARING PLAN","001","1998-01-01","BOWIE & JENSEN, LLC",,,"29 WEST SUSQUEHANNA AVE.","SUITE 600","TOWSON","MD","21204",,,,,,,,,,,,,,,,,,"521769391","4105832400","541110","BOWIE & JENSEN, LLC",,"29 WEST SUSQUEHANNA AVE.","SUITE 600","TOWSON","MD","21204",,,,,,,"521769391","4105832400",,,,"2011-06-17T13:11:47-0500","JEANNETTE YOCUM",,,,,27,25,0,2,27,0,27,27,1,,"2A2E2F2G2J3B2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617071157P040079690049001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"DIRECT DIGITAL CONTROLS INC PROFIT SHARING PLAN AND TRUST","001","2000-02-01","PRAIRIE TECHNOLOGIES INC OF MINNESOTA",,,"5600 QUEENS AVE NE STE 400",,"ELK RIVER","MN","553306402",,,,,,,"5600 QUEENS AVE NE STE 400",,"ELK RIVER","MN","553306402",,,,,,,"411686338","7634286336","238210","PRAIRIE TECHNOLOGIES INC OF MINNESOTA",,"5600 QUEENS AVE NE STE 400",,"ELK RIVER","MN","553306402",,,,,,,"411686338","7634286336",,,,"2011-06-17T06:55:59-0500","MICHAEL DAY",,,,,10,10,0,0,10,0,10,10,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617163321P040011741234001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"W M AUTOMOTIVE WAREHOUSE, INC. WELFARE BENEFIT PLAN","502","1991-02-01","W M AUTOMOTIVE WAREHOUSE, INC.",,,"208 PENLAND ST.",,"FORT WORTH","TX","76111",,,,,,,"208 PENLAND ST.",,"FORT WORTH","TX","76111",,,,,,,"751520960","8178345559","423100","W M AUTOMOTIVE WAREHOUSE, INC.",,"208 PENLAND ST.",,"FORT WORTH","TX","76111",,,,,,,"751520960","8178345559",,,,"2011-06-17T16:19:09-0500","LARRY LOFTUS","2011-06-17T16:20:04-0500","LARRY LOFTUS",,,170,142,1,0,143,0,143,0,0,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616075748P040011608626001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVID C. PFOHL, D.M.D. PROFIT SHARING PLAN","001","1997-01-01","DAVID C. PFOHL, D.M.D.",,,"14 PIDGEON HILL DRIVE, SUITE 360",,"STERLING","VA","201656133",,,,,,,,,,,,,,,,,,"541561899","7034300938","621210","DAVID C. PFOHL, D.M.D.",,"14 PIDGEON HILL DRIVE, SUITE 360",,"STERLING","VA","201656133",,,,,,,"541561899","7034300938",,,,"2011-06-15T19:57:56-0500","DAVID C. PFOHL",,,,,7,6,0,1,7,0,7,7,0,,"2A2E2J2K3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617093929P040079763697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BONDENT STUDIOS, INC. EMPLOYEE SAVINGS PLAN","001","1976-11-01","BONDENT STUDIOS, INC.",,,"601 STATE STREET",,"UTICA","NY","13502",,,,,,,,,,,,,,,,,,"161038362","3157323151","621510","BONDENT STUDIOS, INC.",,"601 STATE STREET",,"UTICA","NY","13502",,,,,,,"161038362","3157323151",,,,"2011-06-17T09:39:16-0500","JOSEPH THIERRY",,,,,25,17,0,3,20,0,20,19,7,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617165300P030077782177001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CIBC WORLD MARKETS INCENTIVE SAVINGS PLAN FOR U.S. EMPLOYEES","006","1987-10-01","CANADIAN IMPERIAL BANK OF COMMERCE",,,"425 LEXINGTON AVENUE","THIRD FLOOR","NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"131942440","2126675129","522110","CANADIAN IMPERIAL BANK OF COMMERCE",,"425 LEXINGTON AVENUE","THIRD FLOOR","NEW YORK","NY","10017",,,,,,,"131942440","2126675129",,,,"2011-06-17T16:51:10-0500","RITA WELZ","2011-06-17T16:51:10-0500","RITA WELZ",,,2688,429,12,1756,2197,2,2199,2197,40,,"2E2F2G2J2K2T3F3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621092802P030376891296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WRIGHT LINE LLC 401(K) PLAN","001","2004-04-01","WRIGHT LINE LLC",,,"160 GOLD STAR BLVD.",,"WORCESTER","MA","016062791",,,,,,,"160 GOLD STAR BLVD.",,"WORCESTER","MA","016062791",,,,,,,"030471268","5088524300","332900","WRIGHT LINE LLC",,"160 GOLD STAR BLVD.",,"WORCESTER","MA","016062791",,,,,,,"030471268","5088524300",,,,"2011-06-21T09:22:08-0500","ED BEDNARCIK",,,,,453,367,1,60,428,0,428,416,16,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621095459P030376945648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CII COMPANIES 401(K) PLAN","001","1999-04-01","CONTROL INVESTMENTS INCORPORATED",,,"6001 NE 14TH AVENUE",,"FORT LAUDERDALE","FL","33334",,,,,,,"6001 NE 14TH AVENUE",,"FORT LAUDERDALE","FL","33334",,,,,,,"650198843","9544916660","238900","CONTROL INVESTMENTS INCORPORATED",,"6001 NE 14TH AVENUE",,"FORT LAUDERDALE","FL","33334",,,,,,,"650198843","9544916660",,,,"2011-06-21T09:54:17-0500","MATTHEW JONES",,,,,58,43,0,14,57,0,57,40,3,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616064111P030363430624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE ZITELMAN GROUP, INC. PROFIT SHARING RETIREMENT PLAN","001","1990-01-01","THE ZITELMAN GROUP, INC.",,,"12250 ROCKVILLE PIKE, SUITE 200",,"ROCKVILLE","MD","208521669",,,,,,,,,,,,,,,,,,"521400915","3017702077","541211","THE ZITELMAN GROUP, INC.",,"12250 ROCKVILLE PIKE, SUITE 200",,"ROCKVILLE","MD","208521669",,,,,,,"521400915","3017702077",,,,"2011-06-16T06:41:05-0500","RICK ZITELMAN",,,,,19,15,0,4,19,0,19,19,1,,"2A2E2F2H2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616064214P040002386771001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"HOLY FAMILY MEMORIAL PAID DENTAL AND VISION INSURANCE PLAN","504","1989-05-08","HOLY FAMILY MEMORIAL, INC.",,,"PO BOX 1450",,"MANITOWOC","WI","542211450",,,,,,,"PO BOX 1450",,"MANITOWOC","WI","542211450",,,,,,,"390806395","9203202011","622000","HOLY FAMILY MEMORIAL, INC.",,"PO BOX 1450",,"MANITOWOC","WI","542211450",,,,,,,"390806395","9203202011",,,,"2011-06-15T14:32:47-0500","LAURA FIELDING","2011-06-15T17:37:27-0500","PATRICIA HUETTL",,,947,883,23,,906,,906,,,,,"4D4E","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616161350P040360660448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PULMONARY PHYSICIANS OF SARATOGA PROFIT SHARING PLAN","001","1984-01-01","PULMONARY PHYSICIANS OF SARATOGA",,,"59 MYRTLE STREET SUITE 300",,"SARATOGA SPRINGS","NY","12866",,,,,,,,,,,,,,,,,,"141750186","5185876201","621111","PULMONARY PHYSICIANS OF SARATOGA",,"59 MYRTLE STREET SUITE 300",,"SARATOGA SPRINGS","NY","12866",,,,,,,"141750186","5185876201",,,,"2011-06-16T13:47:47-0500","DESMOND DELGIACCO","2011-06-16T13:47:47-0500","DESMOND DELGIACCO",,,22,20,0,1,21,0,21,21,0,,"2E2G2J3B2A2F3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","2",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617113147P040362759840001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LECHNER & SIMON, INC EMPLOYEE PREOFIT SHARING PLAN","001","1985-01-01","LECHNER & SIMON REALTORS, INC EMPLOYEE PROFIT SHARING PLAN",,,"13421 MANCHESTER ROAD","SUITE 101","ST LOUIS","MO","63131",,,,,,,"13421 MANCHESTER ROAD","SUITE 101","ST LOUIS","MO","63131",,,,,,,"431138872","3149098100","531210","LECHNER & SIMON REALTORS, INC",,"13421 MANCHESTER ROAD","SUITE 101","ST LOUIS","MO","63131",,,,,,,"431138872","3149098100",,,,"2011-06-17T11:30:48-0500","STEVEN LECHNER",,,,,3,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621184724P030080041217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WAWANESA MUTUAL INSURANCE COMPANY WELFARE BENEFITS PLAN","501","1993-01-01","WAWANESA MUTUAL INSURANCE COMPANY",,,"9050 FRIARS ROAD, SUITE 101",,"SAN DIEGO","CA","921085865",,,,,,,,,,,,,,,,,,"952907897","8588745300","524150","WAWANESA MUTUAL INSURANCE COMPANY",,"9050 FRIARS ROAD, SUITE 101",,"SAN DIEGO","CA","921085865",,,,,,,"952907897","8588745300",,,,"2011-06-21T18:43:59-0500","WILLIAM SAUNG",,,,,529,520,6,0,526,,,,,,,"4A4B4D4E4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616131921P030077073681001","2008-01-01","2008-12-31","2",,"0","1","1","0","0","0","0","0","0",,"FINANCIAL FREEDOM MORTGAGE","001",,"FINANCIAL FREEDOM MORTGAGE",,,"6415 ASH DR",,"PITTSBURGH","PA","15209",,,,,,,"6415 ASH DR",,"PITTSBURGH","PA","15209",,,,,,,"113730576","4124927190","522292","FINANCIAL FREEDOM MORTGAGE",,"6415 ASH DR",,"PITTSBURGH","PA","15209",,,,,,,"113730576","4124927190",,,,"2011-06-16T13:18:37-0500","DANIEL OCONNOR",,,,,1,0,0,0,0,0,0,0,0,,"1A",,,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616102015P040024775351001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COOP 401(K) PLAN","001","1988-03-01","PERHAM CO-OP CREAMERY",,,"P. O. BOX 247",,"PERHAM","MN","56573",,,,,,,,,,,,,,,,,,"410474270","2183466240","115110","PERHAM CO-OP CREAMERY",,"P. O. BOX 247",,"PERHAM","MN","56573",,,,,,,"410474270","2183466240",,,,"2011-06-16T10:20:08-0500","DALE TELLINGHUISEN","2011-06-16T10:20:08-0500","DALE TELLINGHUISEN",,,52,47,1,19,67,0,67,67,3,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617173039P030077793953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FAIRCHILD IMAGING, INC. DENTAL PLAN","502","2001-04-01","FAIRCHILD IMAGING, INC.",,,"1801 MCCARTHY BLVD.",,"MILPITAS","CA","950357407",,,,,,,,,,,,,,,,,,"522301200","4084332557","334410","FAIRCHILD IMAGING, INC.",,"1801 MCCARTHY BLVD.",,"MILPITAS","CA","950357407",,,,,,,"522301200","4084332557",,,,"2011-06-17T17:30:39-0500","VIVIAN GARDUAVE",,,,,138,148,0,0,148,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621121340P030079863601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRANSERVICE LOGISTICS INC HEALTH PLAN","503","1992-01-01","TRANSERVICE LOGISTICS INC.",,,"5 DAKOTA DRIVE",,"LAKE SUCCESS","NY","11042",,,,,,,"5 DAKOTA DRIVE",,"LAKE SUCCESS","NY","11042",,,,,,,"113283281","5164883400","484110","TRANSERVICE LOGISTICS INC.",,"5 DAKOTA DRIVE",,"LAKE SUCCESS","NY","11042",,,,,,,"113283281","5164883400",,,,"2011-06-21T12:12:20-0500","GINA LYDAKIS",,,,,184,109,0,0,109,0,109,,,,,"4A4D4E","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621130007P030079879105001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RUFFIN & ASSOCIATES INC MONEY PURCHASE PLAN & TRUST","002","1983-07-01","RUFFIN & ASSOCIATES, INC.",,,"3364 POPLAR, SUITE 107",,"MEMPHIS","TN","38111",,,,,,,,,,,,,,,,,,"620977708","9014524313","541990","RUFFIN & ASSOCIATES, INC.",,"3364 POPLAR, SUITE 107",,"MEMPHIS","TN","38111",,,,,,,"620977708","9014524313",,,,"2011-06-21T12:45:39-0500","STANLEY RUFFIN",,,,,9,9,0,0,9,0,9,9,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621130055P040373347488002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MICROPLANT NURSERIES INC PROFIT SHARING PLAN","001","1989-01-01","MICROPLANT NURSERIES INC",,,"PO BOX 237",,"GERVAIS","OR","97026",,,,,,,,,,,,,,,,,,"930753093","5037923696","111400","MICROPLANT NURSERIES INC",,"PO BOX 237",,"GERVAIS","OR","97026",,,,,,,"930753093","5037923696",,,,"2011-06-21T12:43:36-0500","GAYLE SUTTLE",,,,,34,30,,5,35,,35,35,1,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621113653P030024851143001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIGESTIVE HEALTH PHYSICIANS, PA 401(K) PLAN","001","1991-01-01","DIGESTIVE HEALTH PHYSICIANS, PA",,,"485 WILLIAMSTOWN ROAD",,"SICKLERVILLE","NJ","08081",,,,,,,,,,,,,,,,,,"263908006","8562378045","621111","DIGESTIVE HEALTH PHYSICIANS, PA",,"485 WILLIAMSTOWN ROAD",,"SICKLERVILLE","NJ","08081",,,,,,,"263908006","8562378045",,,,"2011-06-21T11:35:19-0500","DANIEL DAURIA",,,,,4,5,0,1,6,0,6,6,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110617145439P030077728129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOGUE PRINTING, INCORPORATED 401(K) PROFIT SHARING PLAN AND TRUST","001","1994-11-01","HP SOLUTIONS, LLC",,,"159 WEST 1ST AVENUE",,"MESA","AZ","85210",,,,,,,,,,,,,,,,,,"261697208","4809642951","323100","HP SOLUTIONS, LLC",,"159 WEST 1ST AVENUE",,"MESA","AZ","85210",,,,,,,"261697208","4809642951",,,,"2011-06-17T14:54:33-0500","KAREN WOLFE",,,,,89,48,0,35,83,0,83,83,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617145838P030077729985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN MANAGEMENT SERVICES, LLC WELFARE BENEFIT PLAN","502","1990-07-01","AMERICAN MANAGEMENT SERVICES, LLC",,,"2801 ALASKAN WAY, SUITE 200",,"SEATTLE","WA","98121",,,,,,,,,,,,,,,,,,"912184132","2148917842","531310","AMERICAN MANAGEMENT SERVICES, LLC",,"2801 ALASKAN WAY, SUITE 200",,"SEATTLE","WA","98121",,,,,,,"912184132","2148917842",,,,"2011-06-17T14:58:32-0500","EDWARD J. WOLFF",,,,,3844,3888,39,0,3927,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617074747P030077545697001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"COMPUTER CREDIT HOLDINGS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","004","2005-07-22","COMPUTER CREDIT HOLDINGS, INC.",,,"640 WEST FOURTH ST.",,"WINSTON-SALEM","NC","271012730",,,,,,,,,,,,,,,,,,"202888953","3367611524","561440","COMPUTER CREDIT HOLDINGS, INC.",,"640 WEST FOURTH ST.",,"WINSTON-SALEM","NC","271012730",,,,,,,"202888953","3367611524",,,,"2011-06-17T07:40:35-0500","CHARLES JORDAN",,,,,53,43,4,8,55,0,55,55,1,,"2I2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110620152501P040370909264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MILLIKIN & FITTON LAW FIRM 401K PLAN & TRUST","002","1985-01-01","MILLIKIN & FITTON LAW FIRM LPA",,,"6 SOUTH SECOND STREET",,"HAMILTON","OH","45011",,,,,,,,,,,,,,,,,,"310528059","5136452570","541110","MILLIKIN & FITTON LAW FIRM LPA",,"6 SOUTH SECOND STREET",,"HAMILTON","OH","45011",,,,,,,"310528059","5136452570",,,,"2011-06-20T15:24:51-0500","CATHERINE L. EVANS",,,,,43,35,0,9,44,0,44,44,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620152603P040370911568001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"REAL TIME ENTERPRISES, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1993-10-01","REAL TIME ENTERPRISES, INC.",,,"160 OFFICE PARK WAY",,"PITTSFORD","NY","14534",,,,,,,,,,,,,,,,,,"161170707","5853831290","541512","REAL TIME ENTERPRISES, INC.",,"160 OFFICE PARK WAY",,"PITTSFORD","NY","14534",,,,,,,"161170707","5853831290",,,,"2011-06-20T15:25:51-0500","KAREN SCHAEFFER",,,,,55,31,0,21,52,1,53,52,5,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110621133313P040373420432001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DICK BARKER, INC. EMPLOYEE SAVINGS & RETIREMENT PLAN","001","1975-07-01","DICK BARKER, INC.",,,"1100 WEST TUNNEL BLVD",,"HOUMA","LA","70360",,,,,,,,,,,,,,,,,,"720683260","9858765333","441110","DICK BARKER, INC.",,"1100 WEST TUNNEL BLVD",,"HOUMA","LA","70360",,,,,,,"720683260","9858765333",,,,"2011-06-21T13:32:54-0500","RONALD L. LEGENDRE","2011-06-21T13:32:54-0500","RONALD L. LEGENDRE",,,34,32,0,3,35,0,35,25,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621070857P030079732593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GERET A. DUBOIS, M.D., INC. PROFIT SHARING PLAN","001","1997-06-01","GERET A. DUBOIS, M.D. INC.",,,"P.O. BOX L","330 COTTAGE STREET","PAWTUCKET","RI","028610704",,,,,,,,,,,,,,,,,,"061480818","4017238300","621111","GERET A. DUBOIS, M.D. INC.",,"P.O. BOX L","330 COTTAGE STREET","PAWTUCKET","RI","028610704",,,,,,,"061480818","4017238300",,,,"2011-06-21T06:59:51-0500","GERET DUBOIS",,,,,6,6,0,0,6,,6,2,0,,"2A2E3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616145450P030002266979001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MEHLER & BUSCEMI PROFIT SHARING PLAN","003","2010-01-01","MARTIN P. MEHLER & FRANCIS R. BUSCEMI, ESQ.",,,"305 BROADWAY SUITE 1102",,"NEW YORK","NY","100071109",,,,,,,,,,,,,,,,,,"133029141","2129624688","541110","MARTIN P. MEHLER & FRANCIS R. BUSCEMI, ESQ.",,"305 BROADWAY SUITE 1102",,"NEW YORK","NY","100071109",,,,,,,"133029141","2129624688",,,,"2011-06-16T14:53:43-0500","MARTIN P MEHLER",,,,,0,3,0,0,3,0,3,3,0,,"2E2J2K3D3B",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617082458P040079732177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TWIN CITY ELECTRIC & ALARM CORP. 401K PLAN","001","2001-01-01","TWIN CITY ELECTRIC & ALARM CORP.",,,"303 ROBESON STREET",,"FALL RIVER","MA","027205127",,,,,,,,,,,,,,,,,,"042715385","5086794141","335310","TWIN CITY ELECTRIC & ALARM CORP.",,"303 ROBESON ST",,"FALL RIVER","MA","027205127",,,,,,,"042715385","5086794141",,,,"2011-06-17T08:15:47-0500","NORMAND BERUBE",,,,,21,6,0,0,6,0,6,6,0,,"2E2J",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617082617P040079732785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN FAN COMPANY GROUP HEALTH PLAN","509","2007-01-01","AMERICAN FAN COMPANY",,,"2933 SYMMES ROAD",,"FAIRFIELD","OH","45014",,,,,,,,,,,,,,,,,,"310780524","5138742400","333410","AMERICAN FAN COMPANY",,"2933 SYMMES ROAD",,"FAIRFIELD","OH","45014",,,,,,,"310780524","5138742400",,,,"2011-06-17T08:26:11-0500","KELLY PATTI",,,,,116,116,0,0,116,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617090319P040079751281003","2010-01-01","2010-12-31","3",,,,,,,,,,,,"AKBAR KERAMATI PROFIT SHARING PLAN","002","1970-01-01","AKBAR KE4RAMATI PROFIT SHARING PLAN",,,"27849 NO WOODLAND RD",,"PEPPER PIKE","OH","44124",,,,,,,,,,,,,,,,,,"341497715","2167527070","621111","AKBAR KE4RAMATI PROFIT SHARING PLAN",,"27849 NO WOODLAND RD",,"PEPPER PIKE","OH","44124",,,,,,,"341497715","2167527070",,,,"2011-06-17T08:44:27-0500","AKBAR KERAMATI",,,,,5,4,2,,6,,6,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617183333P040363617920001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"MINOR AND JAMES MEDICAL, PLLC LIFE PLAN","504","1997-07-01","MINOR AND JAMES MEDICAL, PLLC",,,"515 MINOR AVENUE, SUITE 200",,"SEATTLE","WA","98104",,,,,,,,,,,,,,,,,,"911340223","2063869500","621111","MINOR AND JAMES MEDICAL, PLLC",,"515 MINOR AVENUE, SUITE 200",,"SEATTLE","WA","98104",,,,,,,"911340223","2063869500",,,,"2011-06-17T18:33:28-0500","ERIC RADCLIFFE",,,,,361,343,0,0,343,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621093350P030376902736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHNNY BAKER INSURANCE PROFIT SHARING PLAN","001","2005-01-01","BAKER INSURANCE SERVICES, LLC",,,"221 7TH STREET NORTH, SUITE 103",,"COLUBMUS","MS","39703",,,,,,,,,,,,,,,,,,"200409336","6623278812","524140","BAKER INSURANCE SERVICES, LLC",,"221 7TH STREET NORTH, SUITE 103",,"COLUBMUS","MS","39703",,,,,,,"200409336","6623278812",,,,"2011-06-21T09:33:49-0500","JOHN H. BAKER","2011-06-21T09:33:49-0500","JOHN H. BAKER",,,4,4,,,4,,4,4,,,"2E2J2A2K2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621144821P030377581600001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WESTSIDE HEMATOLOGY/ONCOLOGY, INC. 401K PROFIT SHARING PLAN","001","2002-01-01","WESTSIDE HEMATOLOGY/ONCOLOGY, INC.",,,"29101 HEALTH CAMPUS DR STE 260",,"WESTLAKE","OH","441455266",,,,,,,,,,,,,,,,,,"341969760","4408086500","621111","WESTSIDE HEMATOLOGY/ONCOLOGY, INC.",,"29101 HEALTH CAMPUS DR STE 260",,"WESTLAKE","OH","441455266",,,,,,,"341969760","4408086500",,,,"2011-06-21T12:15:48-0500","MARWAN MASSOUH, M.D.","2011-06-21T12:15:48-0500","MARWAN MASSOUH, M.D.",,,3,3,0,0,3,0,3,3,0,,"2E3D2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617184823P040080050033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEE BENEFIT PLAN FOR SEITZ CORPORATION","501","1983-06-01","SEITZ CORPORATION",,,"212 INDUSTRIAL LANE",,"TORRINGTON","CT","06790",,,,,,,,,,,,,,,,,,"061127121","8604890476","335900","SEITZ CORPORATION",,"212 INDUSTRIAL LANE",,"TORRINGTON","CT","06790",,,,,,,"061127121","8604890476",,,,"2011-06-17T18:47:43-0500","JAMES P WILLIAMS",,,,,155,140,11,0,151,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110620070104P040011955106001","2010-01-01","2010-12-15","2",,"0","0","1","1","0","0","0","1","0",,"BKN ENTERPRISES, INC. 401K PLAN","001","2007-09-28","BKN ENTERPRISES, INC.",,,"160 SW 167TH AVE",,"BEAVERTON","OR","970067989",,,,,,,,,,,,,,,,,,"261160720","5036177539","337000","BKN ENTERPRISES, INC.",,"160 SW 167TH AVE",,"BEAVERTON","OR","970067989",,,,,,,"261160720","5036177539",,,,"2011-06-20T07:00:55-0500","MICHAEL BEENKEN","2011-06-20T07:00:55-0500","MICHAEL BEENKEN",,,3,0,0,0,0,,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620070314P030079174433004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THOMAS ELECTRONICS LIFE AND LONG TERM DISABILITY PLAN","505","1999-06-01","THOMAS ELECTRONICS OF NY INC",,,"208 DAVIS PARKWAY",,"CLYDE","NY","14433",,,,,,,,,,,,,,,,,,"161071442","3159232051","334410","THOMAS ELECTRONICS OF NY INC",,"208 DAVIS PARKWAY",,"CLYDE","NY","14433",,,,,,,"161071442","3159232051","THOMAS ELECTRONICS INC","221462403","505","2011-06-14T05:44:41-0500","DOUGLAS KETCHUM",,,,,184,164,,,164,,,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620192936P030011528274001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SNAGAJOB.COM DENTAL PLAN","503","2008-04-01","SNAGAJOB.COM",,,"4880 COX ROAD, SUITE 200",,"GLEN ALLEN","VA","23060",,,,,,,,,,,,,,,,,,"541985279","8044334333","519100","SNAGAJOB.COM",,"4880 COX ROAD, SUITE 200",,"GLEN ALLEN","VA","23060",,,,,,,"541985279","8044334333",,,,"2011-06-20T19:29:29-0500","ELIZABETH N. KERREY",,,,,114,126,3,0,129,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620112934P030079270129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GOODBABY CHILDREN'S PRODUCTS, INC. 401(K) PROFIT SHARING PLAN","001","2003-01-01","GOODBABY CHILDRENS PRODUCTS INC.",,,"25 FORBES BLVD., SUITE 5",,"FOXBORO","MA","020352873",,,,,,,,,,,,,,,,,,"352199985","5082161982","423920","GOODBABY CHILDRENS PRODUCTS INC.",,"25 FORBES BLVD., SUITE 5",,"FOXBORO","MA","020352873",,,,,,,"352199985","5082161982","GEOBY CHILDRENS PRODUCTS, INC.","352199985","001","2011-06-20T11:29:18-0500","QIAN ZHANG",,,,,15,14,0,0,14,0,14,8,1,,"2G2J3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620115557P030011496434001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES TAGLIARINI DMD LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2000-01-01","JAMES S. TAGLIARINI, DMD",,,"53 NORTH STREET",,"DANBURY","CT","06810",,,,,,,,,,,,,,,,,,"611403361","2037432232","621210","JAMES S. TAGLIARINI, DMD",,"53 NORTH STREET",,"DANBURY","CT","06810",,,,,,,"611403361","2037432232",,,,"2011-06-20T11:55:55-0500","JAMES S. TAGLIARINI, DMD",,,,,6,7,0,0,7,0,7,5,0,,"2A2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110614152349P030075977521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL PAPER COMPANY NATIONAL PAPER COMPANY 401(K) PROFIT SHARING PLAN","001","2010-01-01","NATIONAL PAPER COMPANY",,,"2511 S 156TH CIRCLE",,"OMAHA","NE","68130",,,,,,,,,,,,,,,,,,"470616237","4023305507","424100","NATIONAL PAPER COMPANY",,"2511 S 156TH CIRCLE",,"OMAHA","NE","68130",,,,,,,"470616237","4023305507",,,,"2011-06-14T15:23:42-0500","ROSE FLORES",,,,,30,27,0,4,31,0,31,31,0,,"2E2F2G2J2K2R2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614124929P030075905169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DALAN, KATZ & SIEGEL, P.L. PROFIT SHARING PLAN","001","2001-01-01","DALAN, KATZ & SIEGEL, P.L.",,,"2633 MCCORMICK DRIVE #101",,"CLEARWATER","FL","33759",,,,,,,,,,,,,,,,,,"593533660","7277961000","541110","DALAN, KATZ & SIEGEL, P.L.",,"2633 MCCORMICK DRIVE #101",,"CLEARWATER","FL","33759",,,,,,,"593533660","7277961000","DALAN & KATZ, P.L.",,,"2011-06-14T12:49:18-0500","PEGGY BAIER",,,,,15,12,0,1,13,0,13,13,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614125129P030075906065001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"STATE BANK OF LIZTON 401K PLAN","002","1985-01-01","STATE BANK OF LIZTON",,,"PO BOX 170",,"LIZTON","IN","461490170",,,,,,,,,,,,,,,,,,"350683790","3178586134","522110","STATE BANK OF LIZTON",,"PO BOX 170",,"LIZTON","IN","461490170",,,,,,,"350683790","3178586134",,,,"2011-06-14T12:17:25-0500","NICOLE NOONCHESTER",,,,,102,88,2,12,102,0,102,100,4,,"2E2F2G2J2K2T2S3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614131221P040077987329010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PAIN MANAGEMENT SERVICES PC 401(K) PROFIT SHARING PLAN","001","2002-01-01","PAIN MANAGEMENT SERVICES PC",,,"513 BROOKWOOD BLVD, STE 101",,"BIRMINGHAM","AL","35209",,,,,,,,,,,,,,,,,,"721378440","2058026565","621111","PAIN MANAGEMENT SERVICES PC",,"513 BROOKWOOD BLVD, STE 101",,"BIRMINGHAM","AL","35209",,,,,,,"721378440","2058026565",,,,"2011-06-14T07:49:12-0500","MARION SOVIC",,,,,21,18,1,4,23,0,23,23,0,,"2E2G2J2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620104648P040081607569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DETROIT ROLLING DOOR AND GATE, INC. 401(K) PLAN","001","1997-01-01","DETROIT ROLLING DOOR AND GATE, INC.",,,"14830 FENKELL","PO BOX 27470","DETROIT","MI","482277294",,,,,,,,,,,,,,,,,,"382170730","3138380230","441229","DETROIT ROLLING DOOR AND GATE, INC.",,"14830 FENKELL","PO BOX 27470","DETROIT","MI","482277294",,,,,,,"382170730","3138380230",,,,"2011-06-20T10:46:30-0500","TANYA M. ROSSO",,,,,18,14,0,4,18,0,18,4,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620160544P030079390753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SANTARUS, INC. WELFARE BENEFITS PLAN","501","2004-01-01","SANTARUS, INC.",,,"3721 VALLEY CENTRE DRIVE, SUITE 400",,"SAN DIEGO","CA","92130",,,,,,,,,,,,,,,,,,"330734433","8583145700","541700","SANTARUS, INC.",,"3721 VALLEY CENTRE DRIVE, SUITE 400",,"SAN DIEGO","CA","92130",,,,,,,"330734433","8583145700",,,,"2011-06-20T11:31:49-0500","JULIE DEMEULES",,,,,302,222,27,0,249,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620080248P030079191841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EASTERN STATES TILE INC PROFIT SHARING PLAN","001","1991-01-01","EASTERN STATES TILE INC",,,"32 DUNNERDALE ROAD",,"MORRIS PLAINS","NJ","079501252",,,,,,,"32 DUNNERDALE ROAD",,"MORRIS PLAINS","NJ","079501252",,,,,,,"222223224","9735396697","442210","EASTERN STATES TILE INC",,"32 DUNNERDALE ROAD",,"MORRIS PLAINS","NJ","079501252",,,,,,,"222223224","9735396697",,,,"2011-06-20T07:59:01-0500","ZOFAR SVIRSKY",,,,,2,2,,,2,,2,2,0,,"2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613160118P030010922562001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INDUSTRIAL DYNAMICS COMPANY, LTD GROUP INSURANCE PLAN","503","1988-02-01","INDUSTRIAL DYNAMICS COMPANY, LTD",,,"3100 FUJITA STREET",,"TORRANCE","CA","90505",,,,,,,,,,,,,,,,,,"952099682","3102572368","335900","INDUSTRIAL DYNAMICS COMPANY, LTD",,"3100 FUJITA STREET",,"TORRANCE","CA","90505",,,,,,,"952099682","3102572368",,,,"2011-06-13T15:54:41-0500","JAN LEO",,,,,141,116,5,0,121,,,,,,,"4A4B4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613152705P030356229216002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STONE BUILDING COMPANY, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1995-11-01","STONE BUILDING COMPANY, INC.",,,"3120 EIGHTH AVENUE SOUTH",,"BIRMINGHAM","AL","35233",,,,,,,,,,,,,,,,,,"630842065","2053288300","238900","STONE BUILDING COMPANY, INC.",,"3120 EIGHTH AVENUE SOUTH",,"BIRMINGHAM","AL","35233",,,,,,,"630842065","2053288300",,,,"2011-06-13T09:59:56-0500","WILLIAM STONE",,,,,29,28,,0,28,,28,15,0,,"2E2H2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614105841P030075849681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRYSON & CO. 401(K) PLAN","001","2005-05-01","BRYSON AND COMPANY",,,"301 NEW POINTE",,"RIDGELAND","MS","39157",,,,,,,,,,,,,,,,,,"640369323","6017072050","524210","BRYSON AND COMPANY",,"301 NEW POINTE",,"RIDGELAND","MS","39157",,,,,,,"640369323","6017072050",,,,"2011-06-14T10:48:48-0500","SAMUEL BRYSON","2011-06-14T10:57:03-0500","SONYA MULLINS",,,63,53,0,0,53,0,53,40,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614142621P030075953329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRODUCTION PATTERN & FOUNDRY CO., INC., PROFIT SHARING/401(K) PLAN","002","1986-11-01","PRODUCTION PATTERN & FOUNDRY CO., INC.",,,"P.O. BOX 22360",,"CARSON CITY","NV","897212360",,,,,,,,,,,,,,,,,,"200078693","7752834050","332110","PRODUCTION PATTERN & FOUNDRY CO., INC.",,"P.O. BOX 22360",,"CARSON CITY","NV","897212360",,,,,,,"200078693","7752834050",,,,"2011-06-14T14:26:14-0500","ARLENE COCHRAN",,,,,26,13,0,12,25,0,25,24,0,,"2E2F2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614145356P040078041057001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"STANDARD MATERIALS 401(K) PLAN","001","1998-01-01","STANDARD MATERIALS,LLC.",,,"62505 HWY. 11",,"PEARL RIVER","LA","70452",,,,,,,"62505 HWY. 11",,"PEARL RIVER","LA","70452",,,,,,,"720507821","5048636304","327300","STANDARD MATERIALS,LLC.",,"62505 HWY. 11",,"PEARL RIVER","LA","70452",,,,,,,"720507821","5048636304",,,,"2011-06-14T14:53:16-0500","VERA OBRIEN",,,,,62,51,0,5,56,0,56,37,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620160723P040081766993001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"REID LAW OFFICE 401K PROFIT SHARING PLAN AS AMENDED","001","1998-01-01","DAVID R. REID","REID LAW OFFICE LLC",,"2041 W ILES AVENUE SUITE A",,"SPRINGFIELD","IL","62704",,,,,,,,,,,,,,,,,,"371374597","2175461001","541110","DAVID R. REID",,"2041 W ILES AVENUE SUITE A",,"SPRINGFIELD","IL","62704",,,,,,,"300555187","2175461001",,,,"2011-06-20T16:07:04-0500","DAVID REID",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613144453P040077384753001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MATERIALISE DENTAL, INC. 401(K) RETIREMENT PLAN","001","2010-01-01","MATERIALISE DENTAL, INC.",,,"810 X CROMWELL PARK DRIVE",,"GLEN BURNIE","MD","21061",,,,,,,,,,,,,,,,,,"521234210","4435570121","541600","MATERIALISE DENTAL, INC.",,"810 X CROMWELL PARK DRIVE",,"GLEN BURNIE","MD","21061",,,,,,,"521234210","4435570121",,,,"2011-06-13T12:02:01-0500","CHRIS BARNARD",,,,,24,15,0,2,17,0,17,13,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614113119P040077934993001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"WESCO TURF INC CAFETERIA PLAN","501","1988-04-15","WESCO TURF, INC",,,"2101 CANTU COURT",,"SARASOTA","FL","34232",,,,,,,,,,,,,,,,,,"592763187","9413776777","423400","WESCO TURF INC",,"2101 CANTU COURT",,"SARASOTA","FL","34232",,,,,,,"592763187","9413776777",,,,"2011-06-13T16:46:43-0500","DAVID CROFOOT",,,,,108,117,,,117,,117,,,,,"4H4D4B4A","1",,,"1","1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620091623P030374111168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EASTERN SUFFOLK CARDIOLOGY, P.C. 401(K) AND PROFIT SHARING PLAN","002","1984-09-01","EASTERN SUFFOLK CARDIOLOGY, P.C.",,,"951 ROANOKE AVENUE",,"RIVERHEAD","NY","11901",,,,,,,"951 ROANOKE AVENUE",,"RIVERHEAD","NY","11901",,,,,,,"112695058","6317277773","621111","EASTERN SUFFOLK CARDIOLOGY, P.C.",,"951 ROANOKE AVENUE",,"RIVERHEAD","NY","11901",,,,,,,"112695058","6317277773",,,,"2011-06-20T09:15:39-0500","BABU EASOW",,,,,51,58,0,0,58,0,58,50,1,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110614130527P040354790256001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"G. TANURY PLATING COMPANY SUPPLEMENTAL RETIREMENT PLAN","002","1984-01-01","G. TANURY PLATING COMPANY",,,"100 RAILROAD AVENUE",,"JOHNSTON","RI","029192407",,,,,,,,,,,,,,,,,,"050350318","4012322330","332810","G. TANURY PLATING COMPANY",,"100 RAILROAD AVENUE",,"JOHNSTON","RI","029192407",,,,,,,"050350318","4012322330",,,,"2011-06-14T13:04:41-0500","GEORGE TANURY",,,,,47,32,0,12,44,0,44,44,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614180122P030359297632001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"COMBINED HEMATOLOGY & ONCOLOGY PRACTICE OF NEW JERSEY PROFIT SHARING PLAN","001","1999-01-01","COMBINED HEMATOLOGY & ONCOLOGY PRACTICE OF NEW JERSEY",,"DR MARK DRUCK","210 PALISADE AVENUE",,"JERSEY CITY","NJ","07306",,,,,,,,,,,,,,,,,,"223588361","2017950114","621111","COMBINED HEMATOLOGY & ONCOLOGY PRACTICE OF NEW JERSEY","DR. MARK DRUCK","210 PALISADE AVENUE",,"JERSEY CITY","NJ","07306",,,,,,,"223588361","2017950114",,,,"2011-06-14T13:49:20-0500","DR MARK DRUCK",,,,,19,11,,5,16,,16,16,,,"2K2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614131506P040354812544001","2010-06-01","2010-08-31","2",,,,,"1",,"1",,,,,"GARDINER C. VOSE, INC. RETIREMENT INCOME PLAN","001","1979-06-01","GARDINER C. VOSE, INC.",,,"832 CRESTVIEW",,"BLOOMFIELD HILLS","MI","48302",,,,,,,,,,,,,,,,,,"381548259","2483327000","238900","GARDINER C. VOSE, INC.",,"832 CRESTVIEW",,"BLOOMFIELD HILLS","MI","48302",,,,,,,"381548259","2483327000",,,,"2011-06-14T13:10:13-0500","RICHARD K. SCHWARZ",,,,,6,5,1,0,6,0,6,6,,,"2E2H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620085027P040370089200001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TELESEARCH, INC. 401K PLAN","001","1997-01-01","TELESEARCH, INC.",,,"251 U.S. HIGHWAY 206",,"FLANDERS","NJ","078360000",,,,,,,,,,,,,,,,,,"223103874","9739277870","812990","TELESEARCH, INC.",,"251 U.S. HIGHWAY 206",,"FLANDERS","NJ","078360000",,,,,,,"223103874","9739277870",,,,"2011-06-20T08:50:18-0500","KARRIE PETERSON",,,,,69,59,0,3,62,0,62,12,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620154945P040370981184001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBINS, KAPLAN, MILLER AND CIRESI L.L.P. GROUP HEALTH INSURANCE PLAN","502","1977-07-01","ROBINS, KAPLAN, MILLER AND CIRESI L.L.P.",,,"800 LASALLE AVENUE, SUITE 2800",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"410719631","6123498500","541110","ROBINS, KAPLAN, MILLER AND CIRESI L.L.P.",,"800 LASALLE AVENUE, SUITE 2800",,"MINNEAPOLIS","MN","55402",,,,,,,"410719631","6123498500",,,,"2011-06-20T15:49:30-0500","GLORIA J. OANES","2011-06-20T15:49:30-0500","RICHARD J. NIGON",,,586,565,24,0,589,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620144328P030079358017009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BIGHAM INSULATION & SUPPLY COMPANY, INC & SPARTA INSULATION COMPANY PROFIT SHARING PLAN","002","1971-01-01","BIGHAM INSULATION AND SUPPLY CO,INC AND SPARTA INSULATION COMPANY",,,"P.O. BOX 22146",,"FORT LAUDERDALE","FL","333352146",,,,,,,,,,,,,,,,,,"590883075","9545222887","238900","BIGHAM INSULATION AND SUPPLY CO,INC AND SPARTA INSU",,"P.O. BOX 22146",,"FORT LAUDERDALE","FL","333352146",,,,,,,"590883075","9545222887",,,,"2011-06-20T10:38:46-0500","ROBERT BRYANT",,,,,29,24,,,24,,24,24,2,,"2E3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620161434P040081770225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CMH MANUFACTURING CO PROFIT SHARING PLAN","001","1997-01-01","CMH MANUFACTURING CO",,,"1320 HARVARD ST",,"LUBBOCK","TX","794032619",,,,,,,"1320 HARVARD ST",,"LUBBOCK","TX","794032619",,,,,,,"752149716","8067448003","332900","CMH MANUFACTURING CO",,"1320 HARVARD ST",,"LUBBOCK","TX","794032619",,,,,,,"752149716","8067448003",,,,"2011-06-20T15:59:16-0500","JOHN HALL",,,,,19,11,,6,17,,17,17,0,1,"2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110614083239P030010979234001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DECOTY COFFEE COMPANY, INC. RETIREMENT PLAN","002","1996-01-01","DECOTY COFFEE COMPANY, INC.",,,"1920 AUSTIN STREET",,"SAN ANGELO","TX","76903",,,,,,,,,,,,,,,,,,"751235338","3256555607","311900","DECOTY COFFEE COMPANY, INC.",,"1920 AUSTIN STREET",,"SAN ANGELO","TX","76903",,,,,,,"751235338","3256555607",,,,"2011-06-14T08:18:38-0500","RONNIE WALLACE",,,,,65,58,0,4,62,0,62,21,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614134507P030075932097002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EMPLOYEE BENEFITS PLAN OF UNITED WAY OF EAST CENTRAL ALABAMA","001","1978-02-01","UNITED WAY OF EAST CENTRAL ALABAMA, INC.",,,"1505 WILMER AVE",,"ANNISTON","AL","36207",,,,,,,,,,,,,,,,,,"630350957","2562368229","813000","UNITED WAY OF EAST CENTRAL ALABAMA, INC.",,"1505 WILMER AVE",,"ANNISTON","AL","36207",,,,,,,"630350957","2562368229",,,,"2011-06-14T13:55:42-0500","CURTIS M. SIMPSON","2011-06-14T13:55:57-0500","CURTIS M. SIMPSON",,,7,6,,1,7,,7,7,,,"2L",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620140008P030374719248002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BASIC MONEY PURCHASE PENSION PLAN","002","1987-01-01","MARK J. YURCHISIN",,,"720 2ND STREET, SUITE 202",,"BOWLING GREEN","KY","421011778",,,,,,,,,,,,,,,,,,"621291154","2708435111","621111","MARK J. YURCHISIN",,"720 2ND STREET, SUITE 202",,"BOWLING GREEN","KY","421011778",,,,,,,"621291154","2708435111",,,,"2011-06-15T11:48:01-0500","MARK J. YURCHISIN","2011-06-15T11:48:09-0500","MARK J. YURCHISIN",,,3,3,0,0,3,0,3,3,,,"2C3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620094139P040081573249001","2003-10-01","2004-09-30","2",,"0","0","0","0","0","0","0","1","0",,"SUN'N FUN FLY-IN, INC. DEFINED CONTRIBUTION PLAN","001","2000-10-01","SUN N FUN FLY-IN, INC.",,,"4175 MEDULLA ROAD",,"LAKELAND","FL","33811",,,,,,,,,,,,,,,,,,"592803958","8636442431","481000","SAME",,"4175 MEDULLA ROAD",,"LAKELAND","FL","33811",,,,,,,"592803958","8636442431",,,,"2011-06-20T09:41:18-0500","JOHN BURTON",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620111344P030079262801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MUTOH AMERICA INC","001","1984-10-01","MUTOH AMERICA INC",,,"2602 S 47TH STREET","SUITE 102","PHOENIX","AZ","85034",,,,,,,"2602 S 47TH STREET","SUITE 102","PHOENIX","AZ","85034",,,,,,,"860358347","4809687772","423600","MUTOH AMERICA INC",,"2602 S 47TH STREET","SUITE 102","PHOENIX","AZ","85034",,,,,,,"860358347","4809687772",,,,"2011-06-20T11:12:16-0500","DEBRA RANKIN",,,,,40,36,0,10,46,0,46,41,0,41,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620142754P030079351457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ATLANTIC DENTAL 401(K) RETIREMENT PLAN","001","1995-01-01","DRS. ROBBINS & MICHNICK DDS, PA DBA ATLANTIC DENTAL ASSOCIATES",,,"12308 OCEAN GATEWAY","UNIT 7","OCEAN CITY","MD","21842",,,,,,,,,,,,,,,,,,"521103997","4102132670","621210","DRS. ROBBINS & MICHNICK DDS, PA DBA ATLANTIC DENTAL ASSOCIATES",,"12308 OCEAN GATEWAY","UNIT 7","OCEAN CITY","MD","21842",,,,,,,"521103997","4102132670",,,,"2011-06-20T13:02:56-0500","ANTONIO CRISANTI",,,,,16,13,0,1,14,0,14,14,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620145047P030374833152001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLACK & DECKER PR., 401(K)/1165(E) BENEFIT PENSION PLAN","001","1993-07-01","BLACK & DECKER PR.,",,,"PMB 208 PO BOX 4985",,"CAGUAS","PR","00726",,,,,,,,,,,,,,,,,,"520794995","7872863560","333310","BLACK & DECKER PR.,",,"PMB 208 PO BOX 4985",,"CAGUAS","PR","00726",,,,,,,"520794995","7872863560",,,,"2011-06-20T14:40:42-0500","CYNTHIA SANTOS",,,,,26,17,0,4,21,0,21,14,0,,"2E2F2G2T3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613153244P040077408785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPITAL CONSULTANTS, INC. P/S PLAN & TRUST","001","1975-05-01","CAPITAL CONSULTANTS, INC.",,,"14845 SW MURRAY SCHOLLS DR. 110-410",,"BEAVERTON","OR","970079237",,,,,,,,,,,,,,,,,,"931269691","5032411200","523900","CAPITAL CONSULTANTS, INC.",,"14845 SW MURRAY SCHOLLS DR. 110-410",,"BEAVERTON","OR","970079237",,,,,,,"931269691","5032411200",,,,"2011-06-13T15:23:08-0500","THOMAS A. DILLON",,,,,10,0,0,10,10,0,10,10,0,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613204034P040024267607001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","0","0",,"STEIN CONSTRUCTION 401 (K) PROFIT SHARING PLAN AND TRUST","001","2006-01-01","STEIN CONSTRUCTION INC","STEIN CONSTRUCTION INC","ANDREW C STEIN","157 ROMINE CIRCLE",,"BALLWIN","MO","63011",,,,,,,"157 ROMINE CIRCLE",,"BALLWIN","MO","63011",,,,,,,"203815581","3147135008","541990","STEIN CONSTRUCTION INC","ANDREW C STEIN","157 ROMINE CIRCLE",,"BALLWIN","MO","63011",,,,,,,"203815581","3147135008",,,,"2011-06-13T20:39:42-0500","ANDREW STEIN",,,,,2,3,,,3,,3,1,,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614115332P040002355507001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THREE SAINTS BAY, LLC EMPLOYEE BENEFITS PLAN","501","2006-01-01","THREE SAINTS BAY, LLC",,,"10440 BALLS FORD RD #200",,"MANASSAS","VA","20109",,,,,,,,,,,,,,,,,,"030424447","7033650450","541330","THREE SAINTS BAY, LLC",,"10440 BALLS FORD RD #200",,"MANASSAS","VA","20109",,,,,,,"030424447","7033650450",,,,"2011-06-14T11:51:30-0500","JUDITH DYE",,,,,305,454,0,0,454,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614154130P030011009890001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ST. THOMAS'S DAY SCHOOL 403(B) DC PLAN","001","1984-09-01","ST. THOMAS'S DAY SCHOOL, INC.","C/O FILOMENA CARDINALE",,"830 WHITNEY AVENUE",,"NEW HAVEN","CT","06511",,,,,,,"830 WHITNEY AVENUE",,"NEW HAVEN","CT","06511",,,,,,,"060736072","2037762123","611000","ST. THOMAS'S DAY SCHOOL, INC.",,"830 WHITNEY AVENUE",,"NEW HAVEN","CT","06511",,,,,,,"060736072","2037762123",,,,"2011-05-31T09:04:23-0500","FILOMENA CARDINALE",,,,,43,38,,6,44,,44,41,,,"2L",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614160330P040078075921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAMARGO RENTAL CENTER, INC. PENSION PLAN","001","1995-01-01","CAMARGO RENTAL CENTER, INC.",,,"8149 CAMARGO ROAD",,"CINCINNATI","OH","452432203",,,,,,,,,,,,,,,,,,"311039045","5132716510","532310","CAMARGO RENTAL CENTER, INC.",,"8149 CAMARGO ROAD",,"CINCINNATI","OH","452432203",,,,,,,"311039045","5132716510",,,,"2011-06-14T15:53:57-0500","DAVID MURPHY",,,,,6,5,0,1,6,0,6,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614162356P040355219744001","2010-07-01","2011-03-31","2",,,,"1","1",,,,,,,"SOFTWARE PLUS, INC. PROFIT SHARING PLAN","001","1989-07-01","SOFTWARE PLUS, INC.",,,"400 W DUNDEE, SUITE 10",,"BUFFALO GROVE","IL","600893415",,,,,,,,,,,,,,,,,,"362979772","8475201717","443120","SOFTWARE PLUS, INC.",,"400 W DUNDEE, SUITE 10",,"BUFFALO GROVE","IL","600893415",,,,,,,"362979772","8475201717",,,,"2011-06-02T05:06:14-0500","STEVEN HERZOG","2011-06-02T05:06:23-0500","STEVEN HERZOG",,,2,0,,,0,,0,,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620124621P040081663329001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BOLING VISION CENTER, LLC EMPLOYEES' RETIREMENT PLAN","001","1987-01-01","BOLING VISION CENTER, LLC",,,"2746 OLD US 20 WEST",,"ELKHART","IN","465141364",,,,,,,,,,,,,,,,,,"205040190","5742933545","621399","BOLING VISION CENTER, LLC",,"2746 OLD US 20 WEST",,"ELKHART","IN","465141364",,,,,,,"205040190","5742933545",,,,"2011-06-20T12:44:56-0500","HAYLEY BOLING",,,,,46,37,0,3,40,0,40,38,2,,"2E2F2J2K3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613182454P030075470337001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"JEFFREY E. DONFELD, A PROFESSIONAL CORP. 401(K) PROFIT SHARING PLAN","001","1994-02-01","JEFFREY E. DONFELD, A PROFESSIONAL CORPORATION",,,"11355 W. OLYMPIC BLVD., SUITE 200",,"LOS ANGELES","CA","900645095",,,,,,,,,,,,,,,,,,"953957124","3103128080","541110","JEFFREY E. DONFELD, A PROFESSIONAL CORPORATION",,"11355 W. OLYMPIC BLVD., SUITE 200",,"LOS ANGELES","CA","900645095",,,,,,,"953957124","3103128080",,,,"2011-06-13T18:20:56-0500","JEFFREY E. DONFELD","2011-06-13T18:20:56-0500","JEFFREY E. DONFELD",,,7,6,0,0,6,0,6,0,0,,"2A2E2F2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614073423P040077821537004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MICHAEL R. CASPER, P.C. 401(K) PROFIT SHARING PLAN AND TRUST","002","2002-01-01","MICHAEL R. CASPER, PC",,,"418 CANDLER STREET",,"GAINESVILLE","GA","30501",,,,,,,"418 CANDLER STREET",,"GAINESVILLE","GA","30501",,,,,,,"581920711","7705344376","541110","MICHAEL R. CASPER, PC",,"418 CANDLER STREET",,"GAINESVILLE","GA","30501",,,,,,,"581920711","7705344376",,,,"2011-05-23T08:31:15-0500","MICHAEL R. CASPER","2011-05-23T08:31:15-0500","MICHAEL R. CASPER",,,2,2,,,2,,2,2,,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614081307P040077837793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRESBYTERIAN MANORS OF MID-AMERICA EMPLOYEE GROUP BENEFIT MEDICAL PLAN","503","1985-09-01","PRESBYTERIAN MANORS OF MID-AMERICA, INC.",,,"6525 E. MAINSGATE",,"WICHITA","KS","67208",,,,,,,,,,,,,,,,,,"480877587","3166851100","623000","PRESBYTERIAN MANORS OF MID-AMERICA, INC.",,"6525 E. MAINSGATE",,"WICHITA","KS","67208",,,,,,,"480877587","3166851100",,,,"2011-06-13T21:41:37-0500","BRUCE SHOGREN","2011-06-13T21:41:37-0500","BRUCE SHOGREN",,,759,1078,10,,1088,,,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620105738P030374329376001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"M. BURR KEIM COMPANY PROFIT SHARING PLAN","001","1967-12-31","M. BURR KEIM COMPANY",,"ROBERT WORTHINGTON","2021 ARCH STREET",,"PHILADELPHIA","PA","19103",,,,,,,"2021 ARCH STREET",,"PHILADELPHIA","PA","19103",,,,,,,"231642248","2155638113","323100","M. BURR KEIM COMPANY","ROBERT WORTHINGTON","2021 ARCH STREET",,"PHILADELPHIA","PA","19103",,,,,,,"231642248","2155638113",,,,"2011-06-20T10:57:14-0500","ROBERT WORTHINGTON",,,,,20,19,0,18,37,,37,37,0,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620145432P040370844512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANCHOR COMMERCIAL BANK 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","ANCHOR COMMERCIAL BANK",,,"11025 RCA CENTER DRIVE","SUITE 100","PALM BEACH GARDENS","FL","33410",,,,,,,,,,,,,,,,,,"202502516","5613833170","522110","ANCHOR COMMERCIAL BANK",,"11025 RCA CENTER DRIVE","SUITE 100","PALM BEACH GARDENS","FL","33410",,,,,,,"202502516","5613833170",,,,"2011-06-20T02:54:30-0500","ANCHOR COMMERCIAL BANK",,,,,28,21,0,0,21,0,21,7,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620082852P040081540065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FLAGSHIP FINANCIAL SERVICES INC. 401(K) PLAN","001","1997-01-01","FLAGSHIP FINANCIAL SERVICES INC.",,,"1500 NW 62 STREET #206",,"FT. LAUDERDALE","FL","333090000",,,,,,,,,,,,,,,,,,"650148629","9547718984","522292","FLAGSHIP FINANCIAL SERVICES INC.",,"1500 NW 62 STREET #206",,"FT. LAUDERDALE","FL","333090000",,,,,,,"650148629","9547718984",,,,"2011-06-20T08:28:44-0500","GISELE PETERSON",,,,,15,6,0,8,14,0,14,13,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613161521P030075410913001","2010-01-01","2010-12-31","2",,"0","0","0","0","1",,,,,,"STANDARD GOLF COMPANY EMPLOYEES SAVINGS PLAN","002","1985-11-01","STANDARD GOLF COMPANY",,,"P.O. BOX 68",,"CEDAR FALLS","IA","50613",,,,,,,"6620 NORDIC DRIVE",,"CEDAR FALLS","IA","50613",,,,,,,"420766974","3192662638","339900","STANDARD GOLF COMPANY",,"P.O. BOX 68",,"CEDAR FALLS","IA","50613",,,,,,,"420766974","3192662638",,,,"2011-06-13T16:14:43-0500","PETER VOORHEES",,,,,47,43,0,2,45,1,46,44,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614095439P040011435474001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TC INDUSTRIES, INC. RETIREMENT SAVINGS AND INVESTMENT PLAN","002","1990-07-01","TC INDUSTRIES, INC.",,,"3703 S. ROUTE 31",,"CRYSTAL LAKE","IL","600121412",,,,,,,,,,,,,,,,,,"362182283","8154592400","332900","TC INDUSTRIES, INC.",,"3703 S. ROUTE 31",,"CRYSTAL LAKE","IL","600121412",,,,,,,"362182283","8154592400",,,,"2011-06-14T09:54:31-0500","TIM SMITH","2011-06-14T09:54:31-0500","TIM SMITH",,,301,310,2,14,326,0,326,320,3,,"2E2F2G2J2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614141227P030075944033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GANS & SMITH INSURANCE AGENCY, INC. EMPLOYEE PROFIT SHARINGPLAN AND TRUST","001","1981-04-01","GANS & SMITH INSURANCE AGENCY, INC.",,,"1109 JUDSON ROAD","PO BOX 2869","LONGVIEW","TX","75606",,,,,,,,,,,,,,,,,,"751383762","9037574601","524210","GANS & SMITH INSURANCE AGENCY, INC.",,"1109 JUDSON ROAD","PO BOX 2869","LONGVIEW","TX","75606",,,,,,,"751383762","9037574601",,,,"2011-06-14T14:11:59-0500","JESSIE M SAVELL",,,,,25,25,0,1,26,0,26,21,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620143049P030079352641001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NEUS SUPPLY LINE INC PROFIT SHARING PLAN","001","1995-01-01","NEU S SUPPLY LINE, INC",,,"N116 W164 WEST MAIN STREET",,"GERMANTOWN","WI","53022",,,,,,,,,,,,,,,,,,"390914757","2622511122","444190","NEU S SUPPLY LINE INC","ROBERT NEU","N116 W164 W MAIN ST",,"GERMANTOWN","WI","53022",,,,,,,"390914757","4142511122",,,,"2011-06-20T13:48:07-0500","ROBERT NEU",,,,,4,3,,,3,,3,3,,,"2R2H2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620094553P030011489186001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KAPPA KAPPA GAMMA FRATERNITY 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","KAPPA KAPPA GAMMA FRATERNITY",,,"INC","530 E TOWN STREET","COLUMBUS","OH","43216",,,,,,,,,,,,,,,,,,"314221880","6142286515","813000","KAPPA KAPPA GAMMA FRATERNITY",,"INC","530 E TOWN STREET","COLUMBUS","OH","43216",,,,,,,"314221880","6142286515",,,,"2011-06-20T09:45:50-0500","KAPPA KAPPA GAMMA FRATERNITY",,,,,42,38,0,5,43,0,43,43,4,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620101549P030079244065001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MERCY HOSPICE, LLC 401(K) PLAN","001","2010-01-01","MERCY HOSPICE, LLC",,,"2430 HWY 34, SUITE A-22",,"MANASQUAN","NJ","08736",,,,,,,,,,,,,,,,,,"208726781","8774597685","623000","MERCY HOSPICE, LLC",,"2430 HWY 34, SUITE A-22",,"MANASQUAN","NJ","08736",,,,,,,"208726781","8774597685",,,,"2011-06-20T10:15:06-0500","MARVIN BEINHORN","2011-06-20T10:15:06-0500","MARVIN BEINHORN",,,3,7,0,0,7,0,7,1,0,,"2G2J3D",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614102915P040354470656001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GIGANTE VAZ & PARTNERS 401K PLAN","001","1995-01-01","GIGANTE VAZ & PARTNERS ADVERTISING, INC.",,,"99 MADISON AVENUE","4TH FLOOR","NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"223085694","2123430004","541800","GIGANTE VAZ & PARTNERS ADVERTISING, INC.",,"99 MADISON AVENUE","4TH FLOOR","NEW YORK","NY","10016",,,,,,,"223085694","2123430004",,,,"2011-06-14T10:28:30-0500","PAUL GIGANTE",,,,,13,7,0,5,12,0,12,12,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614114149P030075876017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST NATIONAL BANK IN WADENA PROFIT SHARING PLAN","001","1976-01-01","FIRST NATIONAL BANK IN WADENA",,,"PO BOX 111",,"WADENA","MN","56482",,,,,,,,,,,,,,,,,,"410256910","2186311590","522110","FIRST NATIONAL BANK IN WADENA",,"PO BOX 111",,"WADENA","MN","56482",,,,,,,"410256910","2186311590",,,,"2011-06-14T11:41:40-0500","SCOTT PETTIT",,,,,21,21,0,0,21,0,21,21,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614115810P040077948209001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"PARAMETRIC TECHNOLOGY CORPORATION BUSINESS TRAVEL ACCIDENT PLAN","512","1992-06-01","PARAMETRIC TECHNOLOGY CORPORATION",,,"140 KENDRICK STREET",,"NEEDHAM","MA","024942739",,,,,,,,,,,,,,,,,,"042866152","7813705292","334410","PARAMETRIC TECHNOLOGY CORPORATION",,"140 KENDRICK STREET",,"NEEDHAM","MA","024942739",,,,,,,"042866152","7813705292",,,,"2011-06-14T11:50:04-0500","RENEE BLAINE",,,,,5197,5617,0,0,5617,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614115831P040354659744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MASTERSON CO. DENTAL, LONG TERM DISABILITY AND SHORT TERM DISABILITY PLAN","503","1982-06-01","MASTERSON CO.",,,"4023 W. NATIONAL AVENUE",,"MILWAUKEE","WI","53215",,,,,,,,,,,,,,,,,,"391914746","4149022242","311300","MASTERSON CO.",,"4023 W. NATIONAL AVENUE",,"MILWAUKEE","WI","53215",,,,,,,"391914746","4149022242",,,,"2011-06-14T11:58:13-0500","DEBRA LIEBERT",,,,,147,139,3,0,142,,,,,,,"4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620133942P030002331587001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KELLER & HECKMAN GROUP HEALTH PLAN","501","1990-01-01","KELLER AND HECKMAN, LLP",,,"1001 G STREET, N.W., SUITE 500 WEST",,"WASHINGTON","DC","20001",,,,,,,,,,,,,,,,,,"520743156","2024344100","541110","KELLER AND HECKMAN, LLP",,"1001 G STREET, N.W., SUITE 500 WEST",,"WASHINGTON","DC","20001",,,,,,,"520743156","2024344100",,,,"2011-06-20T13:39:38-0500","JOAN OAKFORD",,,,,131,131,8,0,139,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620192220P030079473745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EVERETT KIDS N US INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","KIDS N US INC",,,"17120 9TH AVE SE",,"MILL CREEK","WA","98012",,,,,,,,,,,,,,,,,,"911413539","4253378373","624410","KIDS N US INC",,"17120 9TH AVE SE",,"MILL CREEK","WA","98012",,,,,,,"911413539","4253378373",,,,"2011-06-20T07:22:17-0500","KIDS N US INC",,,,,121,126,0,0,126,0,126,1,0,,"2E2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","0","0",,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620150042P030079363905005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"OXFORD RADIOLOGY INC MONEY PURCHASE PENSION PLAN","002","1994-01-01","OXFORD RADIOLOGY, INC",,,"3425 SHERBROOKE DRIVE",,"CINCINNATI","OH","45241",,,,,,,,,,,,,,,,,,"311290199","5137330858","621510","OXFORD RADIOLOGY INC",,"3425 SHERBROOKE DRIVE",,"CINCINNATI","OH","45241",,,,,,,"311290199","5137330858",,,,"2011-06-20T11:55:52-0500","MARY C MOEBIUS MD",,,,,4,4,,,4,,4,4,,,"3D2G2F2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620132457P040011982002001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COUPLER TO COUPLER, LLC 401(K) RETIREMENT SAVINGS PLAN","001","2002-01-01","COUPLER TO COUPLER, LLC",,,"11532 MALVERN DRIVE",,"ST. LOUIS","MO","63131",,,,,,,,,,,,,,,,,,"201507104","6182717210","488210","COUPLER TO COUPLER, LLC",,"11532 MALVERN DRIVE",,"ST. LOUIS","MO","63131",,,,,,,"201507104","6182717210",,,,"2011-06-20T13:18:32-0500","RONALD ORTYL",,,,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K2R2T3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110614074523P040024358903001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL COALITION FOR HOMELESS VETERANS 403(B) PLAN","001","1995-01-13","NATIONAL COALITION FOR HOMELESS VETERANS",,,"333 1/2 PENNSYLVANIA AVENUE, SE",,"WASHINGTON","DC","200031148",,,,,,,,,,,,,,,,,,"521826860","2025461969","611000","NATIONAL COALITION FOR HOMELESS VETERANS",,"333 1/2 PENNSYLVANIA AVENUE, SE",,"WASHINGTON","DC","200031148",,,,,,,"521826860","2025461969",,,,"2011-06-14T07:44:53-0500","JOHN DRISCOLL","2011-06-14T07:44:53-0500","JOHN DRISCOLL",,,4,3,0,1,4,0,4,3,0,,"2M2G2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614074637P030357995328001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE COMMERCIAL ELECTRICAL CONTRACTORS, INC. MONEY PURCHASE PENSION PLAN","001","1987-07-01","COMMERCIAL ELECTRICAL CONTRACTORS, INC.",,,"10-28 47TH AVENUE",,"LONG ISLAN","NY","11101",,,,,,,,,,,,,,,,,,"112829750","7187843500","238210","COMMERCIAL ELECTRICAL CONTRACTORS, INC.",,"10-28 47TH AVENUE",,"LONG ISLAN","NY","11101",,,,,,,"112829750","7187843500",,,,"2011-06-13T16:24:03-0500","CIRO LUPO","2011-06-13T16:24:03-0500","CIRO LUPO",,,9,5,0,3,8,0,8,8,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614182822P040002360627001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORDOVA VETERINARY HOSPITAL 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-29","CORDOVA VETERINARY HOSPITAL",,,"2939 MATHER FIELD RD",,"RANCHO CORDOVA","CA","95670",,,,,,,,,,,,,,,,,,"412261499","9163639443","541990","CORDOVA VETERINARY HOSPITAL",,"2939 MATHER FIELD RD",,"RANCHO CORDOVA","CA","95670",,,,,,,"412261499","9163639443",,,,"2011-06-14T06:28:18-0500","CORDOVA VETERINARY HOSPITAL",,,,,19,13,0,6,19,0,19,17,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614182900P040355459920001","2010-06-01","2010-12-31","2",,"0","0","0","1",,,,,,,"WAVE FORM SYSTEMS, INC. 401(K) PLAN","001","2004-06-01","WAVE FORM SYSTEMS, INC.",,,"7737 SW NIMBUS AVE",,"BEAVERTON","OR","97008",,,,,,,"7737 SW NIMBUS AVE",,"BEAVERTON","OR","97008",,,,,,,"930974013","5036262100","541990","WAVE FORM SYSTEMS, INC.",,"7737 SW NIMBUS AVE",,"BEAVERTON","OR","97008",,,,,,,"930974013","5036262100",,,,"2011-06-14T14:33:58-0500","CHARLES WATKINS",,,,,35,33,0,2,35,0,35,19,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620110228P030024649159001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRESSLY, THOMAS & CONLEY, PA 401(K) PLAN","001","1992-04-22","PRESSLY, THOMAS & CONLEY, PA",,,"224 HARRILL STREET",,"STATESVILLE","NC","286775347",,,,,,,,,,,,,,,,,,"561775334","7048711989","541110","PRESSLY, THOMAS & CONLEY, PA",,"224 HARRILL STREET",,"STATESVILLE","NC","286775347",,,,,,,"561775334","7048711989",,,,"2011-06-20T11:00:43-0500","ED PRESSLY",,,,,7,6,0,1,7,0,7,7,0,,"2A2E2J",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620083602P030374029344001","2010-11-01","2010-12-31","2",,"1",,"0","1","0","0","0","0","0",,"R & J JENSEN ENTERPRISES, INC. PROFIT SHARING PLAN","001","2010-11-01","R & J JENSEN ENTERPRISES, INC.",,,"6300 W 49TH DR",,"WHEATRIDGE","CO","80033",,,,,,,,,,,,,,,,,,"273833430","2818815621","238900","R & J JENSEN ENTERPRISES, INC.",,"6300 W 49TH DR",,"WHEATRIDGE","CO","80033",,,,,,,"273833430","2818815621",,,,"2011-06-20T08:31:39-0500","RONALD JENSEN",,,,,2,2,0,0,2,0,2,2,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620101838P040370275904001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FBC 401(K) / PROFIT SHARING PLAN","001","2004-01-01","FB COLORADO, INC.",,,"6143 S. WILLOW DRIVE, SUITE 105",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"6143 S. WILLOW DRIVE, SUITE 105",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"710901319","3037406069","722210","JOHN W. HERCHER",,"6143 S. WILLOW DRIVE, SUITE 105",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"841109012","3037406069",,,,"2011-06-16T14:57:54-0500","JOHN HERCHER",,,,,2,2,,,2,,2,2,,,"2E2G2J2R3E3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613162610P030010925074001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPOKANE VALLEY EAR, NOSE & THROAT, P.S. 401K PROFIT SHARING PLAN","001","1979-07-01","SPOKANE VALLEY EAR, NOSE & THROAT, P.S.",,,"1424 N. MCDONALD RD., STE 101",,"SPOKANE VALLEY","WA","99216",,,,,,,,,,,,,,,,,,"911072626","5099287272","621111","SPOKANE VALLEY EAR, NOSE & THROAT, P.S.",,"1424 N. MCDONALD RD., STE 101",,"SPOKANE VALLEY","WA","99216",,,,,,,"911072626","5099287272",,,,"2011-06-13T16:25:55-0500","ERIC B. LEAVITT",,,,,23,20,0,3,23,0,23,23,0,,"2E2G2J2R3D2F",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614091152P030023545879001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ESOPUS DATA PROCESSING PROFIT SHARING PLAN","001","2002-01-01","ESOPUS DATA PROCESSING PROFIT SHARING PLAN",,,"PO BOX 1195",,"PORT EWEN","NY","12466",,,,,,,"PO BOX 1195",,"PORT EWEN","NY","12466",,,,,,,"141625505","8453312957","541700","ESOPUS DATA PROCESSING PROFIT SHARING PLAN",,"PO BOX 1195",,"PORT EWEN","NY","12466",,,,,,,"141625505","8453312957",,,,"2011-06-14T09:08:45-0500","PAUL POMEROY",,,,,2,,1,1,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620123358P030079300961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NET WORTH MANAGEMENT, INC., DEFINED BENEFIT PLAN","003","2007-01-01","NET WORTH MANAGEMENT, INC.",,,"701 FOREST",,"WILMETTE","IL","60091",,,,,,,"701 FOREST",,"WILMETTE","IL","60091",,,,,,,"364000741","8472512239","523120","NET WORTH MANAGEMENT, INC.",,"701 FOREST",,"WILMETTE","IL","60091",,,,,,,"364000741","8472512239","NET WORTH MANAGEMENT, INC.","364000741","002","2011-06-20T12:33:34-0500","CHARLES MCKENZIE",,,,,2,2,0,0,2,0,2,,0,,"1A1D3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620123628P030079302225001","2005-01-01","2005-12-31","2",,"0","1","0","0","0","0","0","0","0",,"C.W. HENDERSON ELECTRIC, INC. PROFIT SHARING PLAN","001","1992-01-01","C.W. HENDERSON ELECTRIC, INC.",,,"P.O. BOX 91051",,"HOUSTON","TX","77291",,,,,,,"P.O. BOX 91051",,"HOUSTON","TX","77291",,,,,,,"742180547","2814473426","221100","C.W. HENDERSON ELECTRIC, INC.",,"P.O. BOX 91051",,"HOUSTON","TX","77291",,,,,,,"742180547","2814473426",,,,"2011-06-20T12:36:15-0500","KARLA ARTHUR",,,,,12,11,0,1,12,0,12,12,0,,"2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620095742P040081581377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOWN & SHORE ASSOCIATES 401(K) PROFIT SHARING PLAN","002","1995-01-01","TOWN & SHORE ASSOCIATES, LLC",,,"ONE UNION WHARF",,"PORTLAND","ME","04101",,,,,,,,,,,,,,,,,,"010366311","2077730262","531210","TOWN & SHORE ASSOCIATES, LLC",,"ONE UNION WHARF",,"PORTLAND","ME","04101",,,,,,,"010366311","2077730262",,,,"2011-06-20T09:57:28-0500","ROBERT E. KNECHT",,,,,16,16,0,1,17,0,17,15,0,,"2E2F2G2J2K2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620095910P030079238865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CALIFORNIA BANK OF COMMERCE PROFIT SHARING 401(K) PLAN","001","2008-01-01","CALIFORNIA BANK OF COMMERCE",,,"3595 MT DIABLO BLVD",,"LAFAYETTE","CA","94549",,,,,,,,,,,,,,,,,,"204302114","9252832265","522110","CALIFORNIA BANK OF COMMERCE",,"3595 MT DIABLO BLVD",,"LAFAYETTE","CA","94549",,,,,,,"204302114","9252832265",,,,"2011-06-18T16:24:56-0500","VIRGINIA ROBBINS","2011-06-18T16:24:56-0500","VIRGINIA ROBBINS",,,31,32,0,1,33,0,33,30,0,,"2A2E2G2J2F2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620115337P030079282305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE IRIS GROUP, INC. 401K PLAN","001","2007-10-12","THE IRIS GROUP, INC.",,,"7260 POLARIS LN N",,"MAPLE GROVE","MN","553112650",,,,,,,,,,,,,,,,,,"261287468","7632219197","811190","THE IRIS GROUP, INC.",,"7260 POLARIS LN N",,"MAPLE GROVE","MN","553112650",,,,,,,"261287468","7632219197",,,,"2011-06-20T11:53:24-0500","DOUGLAS ASCHER","2011-06-20T11:53:24-0500","DOUGLAS ASCHER",,,4,4,0,0,4,0,4,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620115342P040370476208001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GIS SOLUTIONS, INC. EMPLOYEES' RETIREMENT PLAN AND TRUST","001","1999-01-01","GIS SOLUTIONS, INC.",,,"2612 FARRAGUT DRIVE, 2ND FLOOR",,"SPRINGFIELD","IL","62704",,,,,,,"2612 FARRAGUT DRIVE, 2ND FLOOR",,"SPRINGFIELD","IL","62704",,,,,,,"371300582","2175463635","541512","GIS SOLUTIONS, INC.",,"2612 FARRAGUT DRIVE, 2ND FLOOR",,"SPRINGFIELD","IL","62704",,,,,,,"371300582","2175463635",,,,"2011-06-20T11:52:29-0500","TIM JOHNSON",,,,,25,22,0,5,27,0,27,24,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613150513P030075381185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GUIFFRE DISTRIBUTING COMPANY, INC. 401(K) PLAN","001","2000-11-01","GUIFFRE DISTRIBUTING COMPANY, INC.",,,"6839 INDUSTRIAL RD.",,"SPRINGFIELD","VA","22151",,,,,,,,,,,,,,,,,,"540715884","7036421700","424800","GUIFFRE DISTRIBUTING COMPANY, INC.",,"6839 INDUSTRIAL RD.",,"SPRINGFIELD","VA","22151",,,,,,,"540715884","7036421700",,,,"2011-06-13T15:02:44-0500","DEAN GENBERG",,,,,102,89,0,11,100,0,100,33,0,,"2E2F2G2J2K3B3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614105159P030358365520001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SHIELDS CONSTRUCTION COMPANY, INC. PROFIT SHARING PLAN","002","2000-01-01","SHIELDS CONSTRUCTION COMPANY, INC.",,,"1615 WEST CHESTER PIKE, SUITE 101",,"WEST CHESTER","PA","19380",,,,,,,"1615 WEST CHESTER PIKE, SUITE 101",,"WEST CHESTER","PA","19380",,,,,,,"232425044","6106962200","236200","SHIELDS CONSTRUCTION COMPANY, INC.",,"1615 WEST CHESTER PIKE, SUITE 101",,"WEST CHESTER","PA","19380",,,,,,,"232425044","6106962200",,,,"2011-06-14T07:25:49-0500","CARRIE DERRO",,,,,87,0,0,0,0,0,0,0,0,,"2E2G3E",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620121404P030079291313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMPETITIVE TELEPHONE SYSTEMS, INC. EMPLOYEES' PROFIT SHARING PLAN","001","1985-07-01","COMPETITIVE TELEPHONE SYSTEMS, INC.",,,"2065 FRANKLIN ROAD",,"BLOOMFIELD HILLS","MI","48302",,,,,,,,,,,,,,,,,,"382317936","2483345800","517000","COMPETITIVE TELEPHONE SYSTEMS, INC.",,"2065 FRANKLIN ROAD",,"BLOOMFIELD HILLS","MI","48302",,,,,,,"382317936","2483345800",,,,"2011-06-20T12:13:57-0500","DARREN FRANCEK",,,,,35,27,0,8,35,0,35,33,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110615100903P030011075890001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","002","1999-01-01","AGRI PRODUCERS, INC.",,,"P. O. BOX 25",,"TAMPA","KS","67483",,,,,,,,,,,,,,,,,,"480445160","7859652221","115110","AGRI PRODUCERS, INC.",,"P. O. BOX 25",,"TAMPA","KS","67483",,,,,,,"480445160","7859652221",,,,"2011-06-15T10:08:52-0500","STAN UTTING",,,,,34,45,0,3,48,0,48,34,1,,"3D2E2F2G2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615102919P030011077938008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BATON ROUGE ORTHOPAEDIC CLINIC HEALTH PLAN","502","2007-01-01","BATON ROUGE ORTHOPAEDIC CLINIC, LLC",,,"8080 BLUEBONNET BLVD., SUITE 1000",,"BATON ROUGE","LA","70810",,,,,,,"8080 BLUEBONNET BLVD., SUITE 1000",,"BATON ROUGE","LA","70810",,,,,,,"721460193","2254087937","621111","BATON ROUGE ORTHOPAEDIC CLINIC, LLC",,"8080 BLUEBONNET BLVD., SUITE 1000",,"BATON ROUGE","LA","70810",,,,,,,"721460193","2254087937",,,,"2011-06-15T05:01:50-0500","TREY WILLIAMSON",,,,,160,174,2,,176,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615104558P030002246979001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MISSION HEALTH SYSTEM INC. HEALTH REIMBURSEMENT ACCOUNT","510","2005-01-01","MISSION HEALTH SYSTEM",,,"5 FREDERICK STREET",,"ASHEVILLE","NC","28801",,,,,,,,,,,,,,,,,,"581450888","8282135600","622000","MISSION HEALTH SYSTEM",,"5 FREDERICK STREET",,"ASHEVILLE","NC","28801",,,,,,,"581450888","8282135600",,,,"2011-06-15T10:45:51-0500","MARIA ROLOFF",,,,,5097,0,0,0,0,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615151334P030361690736010","2010-03-01","2011-02-28","2",,,,,,,,,,,,"HOMEMAKERS PLAZA, INC FLEXIBLE BENEFITS PLAN","501","1991-10-01","HOMEMAKERS PLAZA, INC.",,,"10215 DOUGLAS AVENUE",,"URBANDALE","IA","50322",,,,,,,"10215 DOUGLAS AVENUE",,"URBANDALE","IA","50322",,,,,,,"954830456","5152762772","442110","HOMEMAKERS PLAZA, INC.",,"10215 DOUGLAS AVENUE",,"URBANDALE","IA","50322",,,,,,,"954830456","5152762772",,,,"2011-06-01T10:02:46-0500","DAVID MERSCHMAN","2011-06-02T10:02:46-0500","DAVID MERSCHMAN",,,216,192,6,,198,,,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,,,,,,,"1","7","1",,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110615135522P040078651489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GOLDLEAF FINANCIAL 401(K) PLAN","002","2004-01-01","GOLDLEAF FINANCIAL, LTD.",,,"3246 EAST HIGHWAY 7, SUITE 150",,"MONTEVIDEO","MN","56265",,,,,,,,,,,,,,,,,,"411901717","3202693144","524290","GOLDLEAF FINANCIAL, LTD.",,"3246 EAST HIGHWAY 7, SUITE 150",,"MONTEVIDEO","MN","56265",,,,,,,"411901717","3202693144",,,,"2011-06-15T13:54:33-0500","JACK ANDERSON",,,,,22,17,0,4,21,0,21,18,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615142651P030361588016001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HILL EVANS JORDAN & BEATTY, PL PROFIT SHARING PLAN","001","1985-09-16","HILL EVANS JORDAN & BEATTY, PL",,,"P.O.BOX 989",,"GREENSBORO","NC","27402",,,,,,,,,,,,,,,,,,"560565309","3363791390","541110","HILL EVANS JORDAN & BEATTY, PL",,"P.O.BOX 989",,"GREENSBORO","NC","27402",,,,,,,"560565309","3363791390",,,,"2011-06-15T14:26:37-0500","EVERETT B SASLOW JR","2011-06-15T14:26:37-0500","EVERETT B SASLOW JR",,,31,17,1,11,29,0,29,29,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110615095404P030361008672001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MED-NATIONAL EMPLOYEES 401(K) PROFIT SHARING PLAN","001","1996-04-01","MED-NATIONAL INC.",,,"10615 PERRIN-BEITEL RD","SUITE # 302","SAN ANTONIO","TX","78217",,,,,,,,,,,,,,,,,,"742488158","2104904515","621210","MED-NATIONAL INC.",,"10615 PERRIN-BEITEL RD","SUITE # 302","SAN ANTONIO","TX","78217",,,,,,,"742488158","2104904515",,,,"2011-06-15T09:53:54-0500","KENNETH WELBORN","2011-06-15T09:53:54-0500","KENNETH WELBORN",,,61,37,0,34,71,0,71,59,4,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613152130P030075389137001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"DMW WORLDWIDE 401(K) SAVINGS PLAN","001","2002-02-01","DMW WORLDWIDE LLC",,,"701 LEE RD.","SUITE 103","CHESTERBROOK","PA","19087",,,,,,,"701 LEE RD.","SUITE 103","CHESTERBROOK","PA","19087",,,,,,,"233102129","4843830153","541800","DMW WORLDWIDE LLC",,"701 LEE RD.","SUITE 103","CHESTERBROOK","PA","19087",,,,,,,"233102129","4843830153",,,,"2011-06-13T15:14:47-0500","JOSIE CLIPPINGER",,,,,96,75,0,12,87,0,87,74,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110615140810P030076537777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STERLING INN, INC. PROFIT SHARING & 401(K) PLAN","003","1998-01-01","STERLING INN, INC.",,,"34911 VAN DYKE AVE.",,"STERLING HEIGHTS","MI","48312",,,,,,,"34911 VAN DYKE AVE.",,"STERLING HEIGHTS","MI","48312",,,,,,,"381987440","5869791400","721110","STERLING INN, INC.",,"34911 VAN DYKE AVE.",,"STERLING HEIGHTS","MI","48312",,,,,,,"381987440","5869791400",,,,"2011-06-15T13:55:19-0500","VICTOR MARTIN","2011-06-15T14:07:23-0500","VICTOR MARTIN",,,90,79,0,6,85,0,85,58,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110615140912P030076538209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GIGAMEDIA ACCESS CORPORATION 401(K) PLAN","001","2006-09-01","GIGAMEDIA ACCESS CORPORATION",,,"607 HERNDON PARKWAY, SUITE 302",,"HERNDON","VA","20170",,,,,,,,,,,,,,,,,,"541986099","7034673745","511210","GIGAMEDIA ACCESS CORPORATION",,"607 HERNDON PARKWAY, SUITE 302",,"HERNDON","VA","20170",,,,,,,"541986099","7034673745",,,,"2011-06-15T12:38:50-0500","NIHAT CARDAK",,,,,25,17,0,8,25,0,25,25,0,,"2E2G2J3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615120133P040078601105003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PRISM ASSOCIATES INC PROFIT SHARING PLAN AND TRUST","001","2007-01-01","PRISM ASSOCIATES, INC",,,"9747 BUSINESS PARK AVENUE SUITE 217",,"SAN DIEGO","CA","92131",,,,,,,,,,,,,,,,,,"330493232","8586957099","454390","PRISM ASSOCIATES INC",,"9747 BUSINESS PARK AVENUE SUITE 217",,"SAN DIEGO","CA","92131",,,,,,,"330493232","8586957099",,,,"2011-06-14T17:16:19-0500","PETER J MULLIN",,,,,2,2,,,2,,2,2,,,"3D2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615150154P040011557730003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KNUDSEN CONSTRUCTION CO INC PROFIT SHARING PLAN & TRUST","001","2000-01-01","KNUDSEN CONSTRUCTION CO , INC",,,"1440 HUNTINGTON DRIVE",,"CALUMET CITY","IL","60409",,,,,,,,,,,,,,,,,,"363763807","7084180800","238900","KNUDSEN CONSTRUCTION CO INC",,"1440 HUNTINGTON DRIVE",,"CALUMET CITY","IL","60409",,,,,,,"363763807","7084180800",,,,"2011-06-15T14:30:00-0500","DOUGLAS P KNUDSEN",,,,,39,28,11,,39,,39,39,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615070445P040078465489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLEVELAND CHIROPRACTIC COLLEGE LIFE, DISABILITY AND DENTAL PLAN","502","2001-06-01","CLEVELAND CHIROPRACTIC COLLEGE",,,"10850 LOWELL",,"OVERLAND PARK","KS","66210",,,,,,,"10850 LOWELL",,"OVERLAND PARK","KS","66210",,,,,,,"446000294","9132340612","611000","CLEVELAND CHIROPRACTIC COLLEGE",,"10850 LOWELL",,"OVERLAND PARK","KS","66210",,,,,,,"446000294","9132340612",,,,"2011-06-14T15:56:32-0500","DALE MARRANT",,,,,149,134,0,0,134,0,134,,,,,"4B4D4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615162741P030076607073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLIFFORD A. ROFFIS, O.D., P.C. SAFE HARBOR 401(K) PLAN","001","2002-01-01","CLIFFORD A ROFFIS, O.D., P.C.",,,"4811 SOUTH LABURNUM AVENUE",,"RICHMOND","VA","23231",,,,,,,,,,,,,,,,,,"541783118","8042261144","621320","CLIFFORD A ROFFIS, O.D., P.C.",,"4831 SOUTH LABURNUM AVENUE",,"RICHMOND","VA","23231",,,,,,,"541783118","8042261144",,,,"2011-06-15T16:27:11-0500","DR. CLIFFORD ROFFIS",,,,,35,28,0,4,32,0,32,26,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615080007P030076375169001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EARL F. GHASTER CO., L.P.A. PROFIT SHARING PLAN","002","1999-01-01","EARL GHASTER CO., L.P.A.",,,"8373 MENTOR AVENUE",,"MENTOR","OH","44077",,,,,,,,,,,,,,,,,,"341543086","4403529696","541110","EARL GHASTER CO., L.P.A.",,"8373 MENTOR AVENUE",,"MENTOR","OH","44077",,,,,,,"341543086","4403529696",,,,"2011-05-24T12:01:07-0500","EARL GHASTER","2011-05-24T12:01:13-0500","EARL GHASTER",,,1,2,0,0,2,0,2,2,,,"2E2F2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110615193154P030362241984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAHNSON, INC. EMPLOYEE DENTAL PLAN","508","1992-01-01","BAHNSON, INC.",,,"3901 WEST POINT BOULEVARD","SUITE 100","WINSTON SALEM","NC","27103",,,,,,,,,,,,,,,,,,"561740746","3367944790","333200","BAHNSON, INC.",,"3901 WEST POINT BOULEVARD","SUITE 100","WINSTON SALEM","NC","27103",,,,,,,"561740746","3367944790",,,,"2011-06-15T19:31:46-0500","LISA CUNNINGHAM",,,,,334,326,0,0,326,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615125446P030076507473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEES HEALTH CARE PLAN","501","1987-12-01","OCM, LLC","OHIO COMMUNITY MEDIA",,"1455 WEST MAIN STREET",,"TIPP CITY","OH","45371",,,,,,,"1455 WEST MAIN STREET",,"SPRINGFIELD","OH","45371",,,,,,,"272893904","9376678512","511110","OCM, LLC","OHIO COMMUNITY MEDIA","1455 WEST MAIN STREET",,"TIPP CITY","OH","45371",,,,,,,"272893904","9376678512","THE BROWN PUBLISHING CO","310226480",,"2011-06-15T12:50:32-0500","JOHN ASTON",,,,,383,267,8,0,275,0,275,,0,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615174041P030002204164001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ECOLSCIENCES, INC. CASH BALANCE PLAN","003","2006-01-01","ECOLSCIENCES, INC.",,,"75 FLEETWOOD DRIVE - SUITE 250",,"ROCKAWAY","NJ","07866",,,,,,,,,,,,,,,,,,"222589134","9733669500","541990","ECOLSCIENCES, INC.",,"75 FLEETWOOD DRIVE - SUITE 250",,"ROCKAWAY","NJ","07866",,,,,,,"222589134","9733669500",,,,"2011-06-15T17:40:31-0500","MICHAEL S. FRIEDMAN",,,,,23,21,0,0,21,0,21,,0,,"1B1C1G1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615085607P040011526066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMBIOTEC CIVIL ENGINEERING GROUP, INC. 401(K) PROFIT SHARING PLAN","001","2006-01-01","AMBIOTEC CIVIL ENGINEERING GROUP, INC.",,,"1101 E. HARRISON AVENUE",,"HARLINGEN","TX","78550",,,,,,,,,,,,,,,,,,"742893119","9564237807","541330","AMBIOTEC CIVIL ENGINEERING GROUP, INC.",,"1101 E. HARRISON AVENUE",,"HARLINGEN","TX","78550",,,,,,,"742893119","9564237807",,,,"2011-06-14T23:23:42-0500","CARLOS MARIN",,,,,40,35,0,1,36,1,37,17,1,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615132444P040078639057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOWARD & BOWIE PROFIT SHARING PLAN","001","1997-01-01","HOWARD & BOWIE",,,"P.O.BOX 460",,"DAMARISCOTTA","ME","04543",,,,,,,,,,,,,,,,,,"010366065","2075633112","541110","HOWARD & BOWIE",,"P.O.BOX 460",,"DAMARISCOTTA","ME","04543",,,,,,,"010366065","2075633112",,,,"2011-06-15T13:07:50-0500","KATHLEEN BLODGETT",,,,,11,14,0,0,14,0,14,10,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615140210P030361531040001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRUCE H. PLATNIK, M.D. PROFIT SHARING PLAN","004","2006-01-01","BRUCE H. PLATNIK, M.D.",,,"652 SUFFOLK AVENUE",,"BRENTWOOD","NY","11717",,,,,,,"652 SUFFOLK AVENUE",,"BRENTWOOD","NY","11717",,,,,,,"112219852","6312732403","621111","BRUCE H. PLATNIK, M.D.",,"652 SUFFOLK AVENUE",,"BRENTWOOD","NY","11717",,,,,,,"112219852","6312732403",,,,"2011-06-11T15:06:44-0500","BRUCE PLATNIK",,,,,8,6,0,1,7,0,7,7,0,,"2A2E3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615155448P030361796064002","2009-04-01","2010-03-31","2",,,,,,,,,"1",,,"RX OPTIONS, INC. VOLUNTARY LIFE INSURANCE PLAN","503","2008-04-01","RX OPTIONS INC.",,,"2181 E. AURORA ROAD","SUITE 201","TWINSBURG","OH","44087",,,,,,,,,,,,,,,,,,"341939227","3304058089","446110","RX OPTIONS INC.",,"2181 E. AURORA ROAD","SUITE 201","TWINSBURG","OH","44087",,,,,,,"341939227","3304058089",,,,"2011-06-15T11:39:16-0500","THOMAS WELSH",,,,,516,516,0,0,516,,516,,,,,,"1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615170653P030361960688001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAILEY, P.C. PROFIT SHARING PLAN","001","1977-07-01","GRANT S. BAILEY, D.D.S., M.S.D., P.C.",,,"P.O. BOX 219",,"CENTERVILLE","UT","84014",,,,,,,"390 EAST PAGES LANE",,"CENTERVILLE","UT","84014",,,,,,,"870332393","8012921222","621210","GRANT S. BAILEY, D.D.S., M.S.D., P.C.",,"P.O. BOX 219",,"CENTERVILLE","UT","84014",,,,,,,"870332393","8012921222",,,,"2011-06-15T17:02:53-0500","GRANT S. BAILEY","2011-06-15T17:02:53-0500","GRANT S. BAILEY",,,15,14,0,1,15,1,16,12,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110615161317P030076601249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVIS, FRIEDMAN, ZAVETT, ET AL PROFIT SHARING PLAN","001","1988-01-01","DAVIS, FRIEDMAN, ZAVETT, ET AL",,,"135 S LASALLE ST FL 36",,"CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"200500501","3127822220","541110","DAVIS, FRIEDMAN, ZAVETT, ET AL",,"135 S LASALLE ST FL 36",,"CHICAGO","IL","60603",,,,,,,"200500501","3127822220",,,,"2011-06-15T16:13:11-0500","JULIE MCCORMACK",,,,,19,15,0,3,18,0,18,18,0,,"2T3D2E2G2J2K2A",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615164514P040078731009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHN PALMER PAINTING INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","JOHN PALMER PAINTING INC",,,"8104 CENTER ST.",,"LA MESA","CA","91942",,,,,,,,,,,,,,,,,,"330963199","6194603985","238300","JOHN PALMER PAINTING INC",,"8104 CENTER ST.",,"LA MESA","CA","91942",,,,,,,"330963199","6194603985",,,,"2011-06-15T04:45:11-0500","JOHN PALMER PAINTING INC",,,,,10,8,0,0,8,0,8,3,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110628154806P030396430640001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"I SQUARE R RETIREMENT PLAN","001","2006-01-01","I SQUARE R",,,"12 ESTABROOK WAY",,"WESTMINSTER","MA","01473",,,,,,,,,,,,,,,,,,"233975411","9783457360","334110","I SQUARE R",,"12 ESTABROOK WAY",,"WESTMINSTER","MA","01473",,,,,,,"233975411","9783457360",,,,"2011-06-28T15:47:14-0500","BRIAN MYGATT",,,,,2,2,0,0,2,0,2,2,,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628152118P040086410577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QUICK-WAY MANUFACTURING, INC. 401(K) RETIREMENT PLAN","002","2009-01-01","QUICK-WAY MANUFACTURING, INC.",,,"915 STANLEY DRIVE",,"EULESS","TX","76040",,,,,,,,,,,,,,,,,,"751335501","8172671515","332110","QUICK-WAY MANUFACTURING, INC.",,"915 STANLEY DRIVE",,"EULESS","TX","76040",,,,,,,"751335501","8172671515","QUICK-WAY STAMPINGS, INC. OF TEXAS","751335501","002","2011-06-28T15:21:10-0500","MIKE LUND","2011-06-28T15:21:10-0500","MIKE LUND",,,52,40,0,3,43,0,43,43,3,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628132941P040086359777001","2004-08-01","2005-07-31","2",,"0","0","0","0","0","0","0","1","0",,"NASHVILLE SYMPHONY ASSOCIATION RETIREMENT PLAN","002","1994-08-01","NASHVILLE SYMPHONY ASSOCIATION",,,"ONE SYMPHONY PLACE",,"NASHVILLE","TN","372012031",,,,,,,,,,,,,,,,,,"620550979","6156876515","813000","NASHVILLE SYMPHONY ASSOCIATION",,"ONE SYMPHONY PLACE",,"NASHVILLE","TN","372012031",,,,,,,"620550979","6156876515",,,,"2011-06-28T13:29:35-0500","MICHAEL KIRBY",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628132946P030083892049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIFE & LTD FOR THE EMPLOYEES OF YMCA OF METROPOLITAN MINNEAPOLIS","507","2000-01-01","YMCA OF METROPOLITAN MINNEAPOLIS",,,"2125 EAST HENNEPIN AVENUE",,"MINNEAPOLIS","MN","554131766",,,,,,,,,,,,,,,,,,"410695629","6124650471","813000","YMCA OF METROPOLITAN MINNEAPOLIS",,"2125 EAST HENNEPIN AVENUE",,"MINNEAPOLIS","MN","554131766",,,,,,,"410695629","6124650471",,,,"2011-06-28T13:29:29-0500","SHARON BERGLUND",,,,,346,364,0,0,364,,,,,,,"4B4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629123137P030084477857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BERKSHIRE HEALTH PARTNERS","510","1974-12-31","SACRED HEART HEALTHCARE SYSTEM",,,"421 CHEW STREET","HUMAN RESOURCES","ALLENTOWN","PA","18102",,,,,,,"421 CHEW STREET","HUMAN RESOURCES","ALLENTOWN","PA","18102",,,,,,,"231352208","6107764526","622000","SACRED HEART HEALTHCARE SYSTEM",,"421 CHEW STREET","HUMAN RESOURCES","ALLENTOWN","PA","18102",,,,,,,"231352208","6107764526",,,,"2011-06-28T13:33:51-0500","JOSEPH MIKITKA",,,,,828,796,7,0,803,0,803,,,,,"4A",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110628105912P030083819649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEIER & BARRUS, INC. PROFIT-SHARING PLAN","001","1987-01-01","MEIER & BARRUS, INC.",,,"2913 NW 156TH STREET",,"EDMOND","OK","73013",,,,,,,"2913 NW 156TH STREET",,"EDMOND","OK","73013",,,,,,,"731479089","4053593300","541211","MEIER & BARRUS, INC.",,"2913 NW 156TH STREET",,"EDMOND","OK","73013",,,,,,,"731479089","4053593300",,,,"2011-06-28T10:58:01-0500","PHIL MEIER",,,,,2,2,0,0,2,0,2,2,0,,"2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628084310P030012172722001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"DRAPER HOLDINGS BUSINESS TRUST 401(K) PLAN","002","2000-01-01","DRAPER HOLDINGS BUSINESS TRUST",,,"1729 N. SALISBURY BLVD.",,"SALISBURY","MD","21801",,,,,,,"1729 N. SALISBURY BLVD.",,"SALISBURY","MD","21801",,,,,,,"522003556","4438809220","515100","DRAPER HOLDINGS BUSINESS TRUST",,"1729 N. SALISBURY BLVD.",,"SALISBURY","MD","21801",,,,,,,"522003556","4438809220",,,,"2011-06-28T08:42:15-0500","LAURA BAKER",,,,,153,97,0,54,151,0,151,128,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628084312P040391603232001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANIMAL CLINIC INC 401(K) PROFIT SHARING PLAN","001","1991-01-01","ANIMAL CLINIC INC",,"C/O HILLS BANK AND TRUST COMPANY","PO BOX 100",,"HILLS","IA","52235",,,,,,,,,,,,,,,,,,"420958461","3193372123","541940","ANIMAL CLINIC INC","C/O HILLS BANK AND TRUST COMPANY","PO BOX 100",,"HILLS","IA","52235",,,,,,,"420958461","3193372123",,,,"2011-06-28T08:35:19-0500","WILLIAM WELTER","2011-06-28T08:35:19-0500","WILLIAM WELTER",,,11,9,0,2,11,0,11,11,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628090947P030083769249001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DRS. LIUDAHL & BLEEKER PROFIT SHARING PLAN & TRUST","003","1994-01-01","DRS. LIUDAHL & BLEEKER PC",,,"305 N. SANBORN",,"MITCHELL","SD","57301",,,,,,,,,,,,,,,,,,"460316413","6059962745","621320","DRS. LIUDAHL & BLEEKER PC",,"305 N. SANBORN",,"MITCHELL","SD","57301",,,,,,,"460316413","6059962745",,,,"2011-06-28T04:08:16-0500","GREGG A. BLEEKER",,,,,1,1,,,1,,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110624125039P040381636464001","2010-12-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"COURTYARD NURSING CARE CENTER FLEXIBLE BENEFIT PLN","502","2001-12-01","SOLOMONT FAMILY MEDFORD VENTURE, IN","D/B/A COURTYARD NURSING CARE CENTER",,"200 GOVERNORS AVENUE",,"MEDFORD","MA","02155",,,,,,,,,,,,,,,,,,"042958931","9787497020","623000","SOLOMONT FAMILY MEDFORD VENTURE, IN",,"200 GOVERNORS AVENUE",,"MEDFORD","MA","02155",,,,,,,"042958931","9787497020",,,,"2011-06-24T12:17:44-0500","JUDITH BLINN",,,,,167,0,0,0,0,,,,,,,"4A4B4D4F4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624113131P040084049345001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PROFIT SHARING PLAN FOR RITA IZZO","001","1996-01-01","RITA IZZO",,,"149 BARRINGTON STREET",,"ROCHESTER","NY","146072901",,,,,,,,,,,,,,,,,,"208907271","5852440613","621112","RITA IZZO",,"149 BARRINGTON STREET",,"ROCHESTER","NY","146072901",,,,,,,"208907271","5852440613",,,,"2011-06-24T11:13:15-0500","RITA IZZO",,,,,1,1,,,1,,1,1,,,"2E2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628122656P030083863297001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SMITH CONSULTING ARCHITECTS 401(K) PLAN","001","1996-08-01","CDS ARCHITECTS, INC. DBA SMITH CONSULTING",,,"12220 EL CAMINO REAL, STE 200",,"SAN DIEGO","CA","921302091",,,,,,,,,,,,,,,,,,"330688349","8587934777","238900","CDS ARCHITECTS, INC. DBA SMITH CONSULTING",,"12220 EL CAMINO REAL, STE 200",,"SAN DIEGO","CA","921302091",,,,,,,"330688349","8587934777",,,,"2011-06-28T12:05:08-0500","CRAIG MCCARTHY",,,,,35,29,,1,30,,30,29,,,"2E2F2G2J2K3E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628122842P040086333777001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"COMMUNITY HOSPITAL OF THE MONTEREY PENINSULA HEALTH AND WELFARE PLAN","504","2003-01-01","COMMUNITY HOSPITAL OF THE MONTEREY PENINSULA",,,"PO BOX HH",,"MONTEREY","CA","93942",,,,,,,,,,,,,,,,,,"940760193","8316245311","622000","COMMUNITY HOSPITAL OF THE MONTEREY PENINSULA",,"PO BOX HH",,"MONTEREY","CA","93942",,,,,,,"940760193","8316245311",,,,"2011-06-28T12:28:38-0500","BARBARA L SOPOAGA",,,,,2153,1142,0,0,1142,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628100307P030083795969001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"TIMOTHY H SMITH DDS SC 401(K) PROFIT SHARING PLAN AND TRUST","002","2007-01-01","TIMOTHY H SMITH DDS SC",,"TIMOTHY H SMITH","259 ROBINS RUN",,"BURLINGTON","WI","53105",,,,,,,"259 ROBINS RUN",,"BURLINGTON","WI","53105",,,,,,,"391718056","2627637121","621210","TIMOTHY H SMITH DDS SC","TIMOTHY H SMITH","259 ROBINS RUN",,"BURLINGTON","WI","53105",,,,,,,"391718056","2627637121",,,,"2011-06-28T10:02:49-0500","GARY LIPOR",,,,,6,7,,,7,,7,7,,,"2A2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628183449P030084039409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEVERANCE COMPENSATION PLAN OF SAMSONITE CORPORATION","524","1996-08-19","SAMSONITE CORPORATION",,,"575 WEST STREET, SUITE 110",,"MANSFIELD","MA","02048",,,,,,,,,,,,,,,,,,"363511556","5088511400","326100","SAMSONITE CORPORATION",,"575 WEST STREET, SUITE 110",,"MANSFIELD","MA","02048",,,,,,,"363511556","5088511400",,,,"2011-06-28T18:34:43-0500","LOUIS F. CIMINI",,,,,358,524,0,0,524,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628184148P030084041457001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"ROCK SPRINGS 401(K) PLAN","001","1999-01-01","ROCK SPRINGS GUEST RANCH, LLC",,,"4085 NORTHWEST SLAGSZOLD",,"BEND","OR","97701",,,,,,,,,,,,,,,,,,"936092976","5413824075","812990","ROCK SPRINGS GUEST RANCH, LLC",,"4085 NORTHWEST SLAGSZOLD",,"BEND","OR","97701",,,,,,,"936092976","5413824075",,,,"2011-06-28T18:41:41-0500","EVA GILL","2011-06-28T18:41:41-0500","EVA GILL",,,15,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624060007P040026281303001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DARBY METALWORKS, INC. 401K PROFIT SHARING PLAN","001","1994-04-01","DARBY METALWORKS, INC.",,,"PO BOX 73","110 SHIRLEY STORE ROAD","ANDERSON","SC","296220073",,,,,,,,,,,,,,,,,,"570647084","8642256906","332900","DARBY METALWORKS, INC.",,"PO BOX 73","110 SHIRLEY STORE ROAD","ANDERSON","SC","296220073",,,,,,,"570647084","8642256906",,,,"2011-06-24T05:52:10-0500","STEVE DARBY",,,,,36,27,,3,30,0,30,30,,,"2E2G2J",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624080314P030011840434001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDISEARCH P.R., INC. 401K","001","2000-10-01","MEDISEARCH P.R., INC.",,,"PO BOX 2460",,"GUAYAMA","PR","007852460",,,,,,,,,,,,,,,,,,"660355743","7878640684","339110","MEDISEARCH P.R., INC.",,"PO BOX 2460",,"GUAYAMA","PR","007852460",,,,,,,"660355743","7878640684",,,,"2011-06-24T07:59:29-0500","GAIL A. ORFFEO",,,,,125,131,0,2,133,0,133,101,,,"2E2G2F2T3C",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624143132P030081668529001","2010-09-01","2010-12-31","2",,,,"1","1",,,,,,,"KRETCHMAR GRAPHIC ART MATERIAL INC PROFIT SHARING PLAN","001","1986-09-01","KRETCHMAR GRAPHIC ART MATERIAL, INC","STERLING ART & ENGINEERING SUPPLIES",,"459 E 20TH ST",,"COSTA MESA","CA","92627",,,,,,,,,,,,,,,,,,"952846115","9495740520","453210","KRETCHMAR GRAPHIC ART MATERIAL INC",,"459 E 20TH ST",,"COSTA MESA","CA","92627",,,,,,,"952846115","9495740520",,,,"2011-06-24T12:29:46-0500","STEPHEN GOLIAN",,,,,9,,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628094107P040086261137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FINISH THOMPSON, INC. PROFIT SHARING AND SAVINGS & MATCH PLAN","001","1971-01-01","FINISH THOMPSON, INC.",,,"921 GREENGARDEN RD",,"ERIE","PA","16501",,,,,,,"921 GREENGARDEN RD",,"ERIE","PA","16501",,,,,,,"250985057","8144554478","333900","FINISH THOMPSON, INC.",,"921 GREENGARDEN RD",,"ERIE","PA","16501",,,,,,,"250985057","8144554478",,,,"2011-06-28T09:40:26-0500","ROSEMARIE KIDD",,,,,49,49,0,1,50,0,50,50,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628152450P040086412849001","2010-09-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"THE CARLE FOUNDATION 24 HOUR BUSINESS ACTVITY INSURANCE","506","1981-09-01","THE CARLE FOUNDATION",,,"611 W PARK",,"URBANA","IL","61801",,,,,,,,,,,,,,,,,,"370673465","2173833138","622000","THE CARLE FOUNDATION",,"611 W PARK",,"URBANA","IL","61801",,,,,,,"370673465","2173833138","CARLE FOUNDATION HOSPITAL","371119538","506","2011-06-28T15:24:44-0500","CARLE FOUNDATION BY PHILIP L. KUBOW","2011-06-28T15:24:44-0500","CARLE FOUNDATION BY PHILIP L. KUBOW",,,2500,4817,0,0,4817,,,,,,,"4L","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628111604P030083826097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHOENIX SURGICALS LLC RETIREMENT PLAN","002","2007-01-01","PHOENIX SURGICALS LLC",,,"163 OLD FIELD ROAD",,"FAIRFIELD","CT","06824",,,,,,,,,,,,,,,,,,"020703762","2032321600","621399","PHOENIX SURGICALS LLC",,"163 OLD FIELD ROAD",,"FAIRFIELD","CT","06824",,,,,,,"020703762","2032321600",,,,"2011-06-28T11:07:17-0500","MARK HOWAT",,,,,3,3,0,0,3,0,3,,0,,"1A3B3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628161651P030083972273006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"YOUTH HOMES HEALTH PLAN","501","2008-01-01","YOUTH HOMES",,,"PO BOX 7616",,"MISSOULA","MT","59807",,,,,,,,,,,,,,,,,,"810331313","4067212704","813000","YOUTH HOMES",,"PO BOX 7616",,"MISSOULA","MT","59807",,,,,,,"810331313","4067212704",,,,"2011-06-28T05:14:29-0500","DANN SWALLOW","2011-06-28T05:14:29-0500","DANN SWALLOW",,,100,103,,,103,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628133225P030083893905002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"NIEMANN FOODS INC 401K PROFIT SHARING PLAN","001","1971-12-31","NIEMANN FOODS INC",,,"1501 N 12TH ST",,"QUINCY","IL","62301",,,,,,,,,,,,,,,,,,"370475125","2172215600","445110","NIEMANN FOODS INC",,"1501 N 12TH ST",,"QUINCY","IL","62301",,,,,,,"370475125","2172215600",,,,"2011-06-28T10:57:50-0500","CHRISTOPHER J NIEMANN",,,,,1844,1671,,373,2044,3,2047,2025,143,,"3D2J2H2E",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629120044P030012276594001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIS ALLEN REAL ESTATE CORPORATION 401(K) PLAN","001","1998-01-01","WILLIS ALLEN REAL ESTATE",,,"1131 WALL STREET",,"LA JOLLA","CA","92037",,,,,,,"1131 WALL STREET",,"LA JOLLA","CA","92037",,,,,,,"330676771","8584594033","531210","WILLIS ALLEN REAL ESTATE",,"1131 WALL STREET",,"LA JOLLA","CA","92037",,,,,,,"330676771","8584594033",,,,"2011-06-29T11:59:05-0500","ISAAC CLARK",,,,,29,23,0,9,32,0,32,29,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624090135P040012338402004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE PRECISION MOLDING INC PREMIUM ONLY PLAN","503","2007-08-01","PRECISION MOLDING, INC",,,"5500 ROBERTS-MATTHEWS HWY",,"SPARTA","TN","38583",,,,,,,,,,,,,,,,,,"621305460","9317388376","326100","PRECISION MOLDING INC",,"5500 ROBERTS-MATTHEWS HWY",,"SPARTA","TN","38583",,,,,,,"621305460","9317388376",,,,"2011-06-23T15:37:25-0500","MARGO SACHS",,,,,201,196,,,196,,196,,,,,"4H4D4B4A","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624145052P030081679489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE COOPERSMITH LAW FIRM 401(K) PROFIT SHARING PLAN","001","2009-01-01","THE COOPERSMITH LAW FIRM",,,"555 W. BEECH STREET, STE. 230",,"SAN DIEGO","CA","92101",,,,,,,,,,,,,,,,,,"330204086","6192387360","541110","THE COOPERSMITH LAW FIRM",,"555 W. BEECH STREET, STE. 230",,"SAN DIEGO","CA","92101",,,,,,,"330204086","6192387360",,,,"2011-06-24T13:56:53-0500","STEVEN COOPERSMITH","2011-06-24T13:56:53-0500","STEVEN COOPERSMITH",,,1,1,0,0,1,0,1,1,0,,"2A2E2J2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624143306P030081668929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE LYLE COMPANY 401K PROFIT SHARING PLAN","001","1996-01-01","THE LYLE COMPANY",,,"3140 GOLD CAMP DRIVE SUITE 30",,"RANCHO CORDOVA","CA","956700000",,,,,,,,,,,,,,,,,,"911572166","9162667015","517000","THE LYLE COMPANY",,"3140 GOLD CAMP DRIVE SUITE 30",,"RANCHO CORDOVA","CA","956700000",,,,,,,"911572166","9162667015",,,,"2011-06-24T14:32:58-0500","PENSION FILERS",,,,,128,59,0,46,105,0,105,85,0,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628112051P030012185154001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DUNMORE CORPORATION WELFARE PLAN","501","1989-04-01","DUNMORE CORPORATION WELFARE PLAN",,,"145 WHARTON RD",,"BRISTOL","PA","190071621000",,,,,,,,,,,,,,,,,,"221903518","2157818895","339900","DUNMORE CORPORATION",,"145 WHARTON RD",,"BRISTOL","PA","190071621000",,,,,,,"221903518","2157818895",,,,"2011-06-28T12:20:29-0500","MARY SULLIVAN",,,,,126,127,1,,128,,128,,,,,"4A4B4D4H","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629083711P030012261522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARTERS HECK O'DONNELL , ETAL PROFIT SHARING PLAN","001","1999-01-01","CHARTERS HECK O'DONNELL , ETAL",,,"888 W BIG BEAVER RD STE 1490",,"TROY","MI","48084",,,,,,,,,,,,,,,,,,"382593223","2483624700","541110","CHARTERS HECK O'DONNELL , ETAL",,"888 W BIG BEAVER RD STE 1490",,"TROY","MI","48084",,,,,,,"382593223","2483624700",,,,"2011-06-29T08:37:05-0500","JOHN P. CHARTERS",,,,,22,19,0,2,21,0,21,21,0,,"2T3D2E2G2J2K2A2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624121250P030011853842001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"NDT SYSTEMS & SERVICES (AMERICA), INC. FLEXIBLE EMPLOYEE BENEFIT PLAN","501","2008-09-01","NDT SYSTEMS & SERVICES AMERICA, INC.",,,"2835 HOLMES ROAD",,"HOUSTON","TX","770511023",,,,,,,,,,,,,,,,,,"208598301","7137995430","423700","NDT SYSTEMS & SERVICES AMERICA, INC.",,"2835 HOLMES ROAD",,"HOUSTON","TX","770511023",,,,,,,"208598301","7137995430",,,,"2011-06-24T12:12:27-0500","MIKAELA REYNOLDS",,,,,121,118,1,0,119,,,,,,,"4A4B4D4E4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628133814P040392271824001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PERQUEST, INC. 401(K) PLAN","001","2006-01-01","PERQUEST, INC.",,,"268 BUSH STREET","NO. 3432","SAN FRANCISCO","CA","94104",,,,,,,,,,,,,,,,,,"942875447","4152184011","812990","PERQUEST, INC.",,"268 BUSH STREET","NO. 3432","SAN FRANCISCO","CA","94104",,,,,,,"942875447","4152184011",,,,"2011-06-28T13:37:55-0500","ROBERT KOSTOW","2011-06-28T13:37:55-0500","ROBERT KOSTOW",,,60,14,0,41,55,0,55,55,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628135615P030083905953001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"FARRELL DISTRIBUTING CORPORATION, INC. HEALTH PLAN","501","1974-01-01","FARRELL DISTRIBUTING CORPORATION, INC.",,,"5 HOLMES ROAD",,"SOUTH BURLINGTON","VT","05403",,,,,,,,,,,,,,,,,,"030214188","8028644422","424800","FARRELL DISTRIBUTING CORPORATION",,"5 HOLMES ROAD",,"SOUTH BURLINGTON","VT","05403",,,,,,,"030214188","8028644422",,,,"2011-06-28T13:54:56-0500","CATHY CAMPBELL",,,,,276,281,0,0,281,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628142758P030396260400001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"T.O.E., INC. PROFIT SHARING PLAN","001","2007-06-08","T.O.E., INC.",,,"200 INTERNATIONAL BLVD.",,"LAVERGNE","TN","37086",,,,,,,,,,,,,,,,,,"260329681","3148629191","561720","T.O.E., INC.",,"200 INTERNATIONAL BLVD.",,"LAVERGNE","TN","37086",,,,,,,"260329681","3148629191",,,,"2011-06-28T14:24:37-0500","RANDY MCDONALD",,,,,23,15,0,0,15,0,15,2,,,"2E2G3D2J2R2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629093233P030084382465001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","1","0","1","0",,"SELLING COMMUNICATIONS, INC. RETIREMENT PLAN","001","2004-01-01","SELLING COMMUNICATIONS, INC.",,,"520 WHITE PLAINS ROAD, SUITE 120",,"TARRYTOWN","NY","10591",,,,,,,,,,,,,,,,,,"133798709","9145917600","541800","SELLING COMMUNICATIONS, INC.",,"520 WHITE PLAINS ROAD, SUITE 120",,"TARRYTOWN","NY","10591",,,,,,,"133798709","9145917600",,,,"2011-06-29T09:32:16-0500","MICHELE MCKNIGHT",,,,,21,22,0,0,22,0,22,0,0,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624065936P040380914800001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICHAEL UHRICH DDS SELF EMPLOYED RETIREMENT PLAN","001","1982-12-30","MICHAEL UHRICH, D.D.S.",,,"26300 EUCLID AVENUE, STE. 620",,"EUCLID","OH","441323703",,,,,,,,,,,,,,,,,,"341226318","2162616464","621210","MICHAEL UHRICH, D.D.S.",,"26300 EUCLID AVENUE, STE. 620",,"EUCLID","OH","441323703",,,,,,,"341226318","2162616464",,,,"2011-06-24T06:42:24-0500","MICHAEL UHRICH, DDS",,,,,5,6,0,0,6,0,6,6,,,"2E2G3B3D2J",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628113112P030012185842001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBINSON TRENCHING 401(K) PROFIT SHARING PLAN","001","2001-01-01","ROBINSON TRENCHING, INC.",,,"12368 SOUTHEASTERN AVENUE",,"INDIANAPOLIS","IN","46259",,,,,,,,,,,,,,,,,,"351137514","3178623929","238210","ROBINSON TRENCHING, INC.",,"12368 SOUTHEASTERN AVENUE",,"INDIANAPOLIS","IN","46259",,,,,,,"351137514","3178623929",,,,"2011-06-28T11:30:18-0500","EDWARD ROBINSON",,,,,25,26,0,1,27,0,27,19,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628113150P040012697906001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHARI'S MANAGEMENT 401(K) RETIREMENT PLAN","001","1987-04-01","SHARIS MANAGEMENT CORP",,,"9400 SW GEMINI DR",,"BEAVERTON","OR","970087105",,,,,,,,,,,,,,,,,,"931263136","5036054299","722110","SHARIS MANAGEMENT CORP",,"9400 SW GEMINI DR",,"BEAVERTON","OR","970087105",,,,,,,"931263136","5036054299",,,,"2011-06-28T11:31:32-0500","ALAN HARTLEY",,,,,2938,2310,1,237,2548,0,2548,578,12,,"2E2F2G2J2K2S",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628103235P030083807217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLER PROCTOR NICKOLAS INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1993-07-01","MILLER PROCTOR NICKOLAS INC.",,,"2 HUDSON STREET",,"SLEEPY HOLLOW","NY","10591",,,,,,,,,,,,,,,,,,"111901330","9143320088","423700","MILLER PROCTOR NICKOLAS INC.",,"2 HUDSON STREET",,"SLEEPY HOLLOW","NY","10591",,,,,,,"111901330","9143320088",,,,"2011-06-28T10:08:40-0500","DANIEL MCALISTER",,,,,57,37,11,8,56,,56,56,0,,"2E2O",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628211439P040086561537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WHITESBURG ANIMAL HOSPITAL, PC 401(K) PROFIT SHARING PLAN","001","2001-01-01","WHITESBURG ANIMAL HOSPITAL, PC",,,"8407 WHITESBURG DRIVE",,"HUNTSVILLE","AL","35802",,,,,,,,,,,,,,,,,,"630956893","2568820950","541940","WHITESBURG ANIMAL HOSPITAL, PC",,"8407 WHITESBURG DRIVE",,"HUNTSVILLE","AL","35802",,,,,,,"630956893","2568820950",,,,"2011-06-28T21:14:34-0500","C. MARK RUSSELL",,,,,21,16,1,5,22,1,23,23,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629104413P030084421697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BJT, INC. DBA MUTUAL DISTRIBUTING COMPANY FLEXIBLE BENEFITS PLAN","506","2009-01-01","BJT, INC.","MUTUAL DISTRIBUTING COMPANY",,"2233 CAPITAL BLVD.",,"RALEIGH","NC","27604",,,,,,,,,,,,,,,,,,"561051650","9198283842","424800","BJT, INC.",,"2233 CAPITAL BLVD.",,"RALEIGH","NC","27604",,,,,,,"561051650","9198283842",,,,"2011-06-29T10:44:00-0500","JAMES BURKHARDT","2011-06-29T10:44:00-0500","JAMES BURKHARDT",,,135,126,0,0,126,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629110215P040012785042001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALSIP ACQUISITION, LLC DBA FUTUREMARK PAPER COMPANY HEALTH & WELFARE PLAN","501","2009-11-07","ALSIP ACQUISITION, LLC DBA FUTUREMARK PAPER COMPANY",,,"13101 SOUTH PULASKI ROAD",,"ALSIP","IL","60803",,,,,,,,,,,,,,,,,,"270514908","7802728700","322200","ALSIP ACQUISITION, LLC DBA FUTUREMARK PAPER COMPANY",,"13101 SOUTH PULASKI ROAD",,"ALSIP","IL","60803",,,,,,,"270514908","7802728700",,,,"2011-06-29T10:53:47-0500","KERRY MCCRORY",,,,,195,178,17,3,198,,,,,,,"4A4B4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624150007P040084153329002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE PALMER KNIGHT COMPANY PROFIT SHARING PLAN AND TRUST","001","2001-06-30","THE PALMER KNIGHT COMPANY",,,"1022 PARK STREET,SUITE 402",,"JACKSONVILLE","FL","32204",,,,,,,,,,,,,,,,,,"593714649","9043589080","523900","THE PALMER KNIGHT COMPANY",,"1022 PARK STREET,SUITE 402",,"JACKSONVILLE","FL","32204",,,,,,,"593714649","9043589080",,,,"2011-06-24T14:56:52-0500","A. PALMER KNIGHT","2011-06-24T14:57:38-0500","A. PALMER KNIGHT",,,2,2,0,0,2,0,2,2,,,"2E3C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624153835P030081703105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WHEATLAND BANK EMPLOYEE STOCK OWNERSHIP PLAN WITH 401K PROVISIONS","001","1986-01-01","WHEATLAND BANK",,,"222 N WALL ST SUITE 308",,"SPOKANE","WA","99201",,,,,,,,,,,,,,,,,,"911055499","5092425626","522110","WHEATLAND BANK",,"222 N WALL ST SUITE 308",,"SPOKANE","WA","99201",,,,,,,"911055499","5092425626",,,,"2011-06-24T15:30:29-0500","ALLISON YARNELL",,,,,119,90,0,22,112,0,112,92,8,,"2E2H2J2K2P2I2F",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624184435P030081787201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAKOTA ELECTRIC ASSOC MEDICAL AND DENTAL PLAN","550","1986-07-01","DAKOTA ELECTRIC ASSOCIATION",,,"4300 220TH STREET WEST",,"FARMINGTON","MN","550249003",,,,,,,,,,,,,,,,,,"410212180","6514636212","221100","DAKOTA ELECTRIC ASSOCIATION",,"4300 220TH STREET WEST",,"FARMINGTON","MN","550249003",,,,,,,"410212180","6514636212",,,,"2011-06-24T18:44:30-0500","DENISE HRNCIR",,,,,190,183,0,0,183,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628082544P040014436518001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAMPSHIRE GROUP, LTD AND SUBSIDIARIES VISION PLAN","506","2007-01-01","HAMPSHIRE GROUP, LTD AND SUBSIDIARIES",,,"1924 PEARMAN DAIRY ROAD",,"ANDERSON","SC","29625",,,,,,,,,,,,,,,,,,"060967107","8642311200","551112","HAMPSHIRE GROUP, LTD AND SUBSIDIARIES",,"1924 PEARMAN DAIRY ROAD",,"ANDERSON","SC","29625",,,,,,,"060967107","8642311200",,,,"2011-06-28T08:25:36-0500","MICHAEL T. MCGUINN",,,,,120,105,9,0,114,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628145510P040086399665001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NUMERIC INVESTORS LLC PROFIT SHARING PLAN","001","1994-01-01","NUMERIC INVESTORS LLC",,,"470 ATLANTIC AVENUE FLOOR 6",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"043068821","6178977800","523900","NUMERIC INVESTORS LLC",,"470 ATLANTIC AVENUE FLOOR 6",,"BOSTON","MA","02210",,,,,,,"043068821","6178977800",,,,"2011-06-28T15:26:53-0500","HARRY KALAJIAN","2011-06-28T15:27:29-0500","HARRY KALAJIAN",,,76,75,,5,80,,80,79,,,"2E2F2G2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629120534P030084466081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KAWATA DENTAL, INC. 401(K) PLAN","001","2002-01-01","KAWATA DENTAL, INC.",,,"12211 W. PICO BLVD.",,"LOS ANGELES","CA","90064",,,,,,,,,,,,,,,,,,"954888484","3108266123","621210","KAWATA DENTAL, INC.",,"12211 W. PICO BLVD.",,"LOS ANGELES","CA","90064",,,,,,,"954888484","3108266123",,,,"2011-06-28T18:09:36-0500","BEN KAWATA",,,,,7,6,0,0,6,0,6,6,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624103713P040084020657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BURR & TEMKIN SOUTH, INC. 401(K) PROFIT SHARING PLAN","001","1986-01-01","BURR & TEMKIN SOUTH INCORPORATED",,,"882 N MAIN ST NW STE 140",,"CONYERS","GA","30012",,,,,,,,,,,,,,,,,,"582030399","7709222800","531210","BURR & TEMKIN SOUTH INCORPORATED",,"882 N MAIN ST NW STE 140",,"CONYERS","GA","30012",,,,,,,"582030399","7709222800",,,,"2011-06-24T10:36:30-0500","LUANN ORCHOWSKI",,,,,15,16,0,1,17,0,17,17,0,,"2C2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624111838P030081582929001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"EYE CENTER OF NORTHERN COLORADO 401(K) PROFIT SHARING PLAN","002","1984-07-01","EYE CENTER OF NORTHERN COLORADO, P.C.",,,"1725 E. PROSPECT ROAD",,"FORT COLLINS","CO","80525",,,,,,,"1725 E. PROSPECT ROAD",,"FORT COLLINS","CO","80525",,,,,,,"840675076","9702212222","621111","EYE CENTER OF NORTHERN COLORADO, P.C.",,"1725 E. PROSPECT ROAD",,"FORT COLLINS","CO","80525",,,,,,,"840675076","9702212222",,,,"2011-06-24T11:17:29-0500","CAROL WITTMER",,,,,88,79,0,14,93,4,97,95,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624190524P030081795089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SIX CONTINENTS HOTELS, INC. HEALTH & WELFARE BENEFITS PROGRAM","501","1957-12-01","SIX CONTINENTS HOTELS, INC.",,,"THREE RAVINIA DRIVE","SUITE 100","ATLANTA","GA","30346",,,,,,,"THREE RAVINIA DRIVE","SUITE 100","ATLANTA","GA","30346",,,,,,,"582283470","7706042000","721110","SIX CONTINENTS HOTELS, INC.",,"THREE RAVINIA DRIVE","SUITE 100","ATLANTA","GA","30346",,,,,,,"582283470","7706042000",,,,"2011-06-24T16:15:26-0500","JULIE CUNNINGHAM","2011-06-24T16:14:48-0500","JULIE CUNNINGHAM",,,11654,11442,177,323,11942,,11942,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","13",,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628083247P030083750465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARDEMAN COUNTY INVESTMENT COMPANY, INC. ESOP","003","1984-01-01","HARDEMAN COUNTY INVESTMENT COMPANY, INC.",,,"809 W. MARKET STREET",,"BOLIVAR","TN","38008",,,,,,,,,,,,,,,,,,"621144865","7316682265","522110","HARDEMAN COUNTY INVESTMENT COMPANY, INC.",,"809 W. MARKET STREET",,"BOLIVAR","TN","38008",,,,,,,"621144865","7316682265",,,,"2011-06-27T16:46:47-0500","DONNA DICKINSON",,,,,103,88,0,9,97,0,97,97,3,,"2O",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628113529P030083833569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SMITHERS-OASIS GROUP MEDICAL PLAN","501","1983-01-01","SMITHERS-OASIS COMPANY",,,"2020 FRONT STREET","SUITE 301","CUYAHOGA FALLS","OH","44221",,,,,,,"2020 FRONT STREET","SUITE 301","CUYAHOGA FALLS","OH","44221",,,,,,,"341536399","3309455102","326100","SMITHERS-OASIS COMPANY",,"2020 FRONT STREET","SUITE 301","CUYAHOGA FALLS","OH","44221",,,,,,,"341536399","3309455102",,,,"2011-06-28T09:12:40-0500","JAMES STULL",,,,,129,117,7,,124,,124,,,,,"4A4Q",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629093505P030398379824001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","002","1998-09-01","EVANGELINE FARMERS COOPERATIVE",,,"521 LITHCOTE ROAD",,"VILLE PLATTE","LA","70586",,,,,,,,,,,,,,,,,,"720562829","3373632127","115110","EVANGELINE FARMERS COOPERATIVE",,"521 LITHCOTE ROAD",,"VILLE PLATTE","LA","70586",,,,,,,"720562829","3373632127",,,,"2011-06-29T09:34:57-0500","MIKE LANDRENEAU",,,,,4,3,0,0,3,0,3,2,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629095951P030084401121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE SHARP LAW FIRM, PC EMPLOYEES' SAVINGS & PROFIT SHARING PLAN AND TRUST","001","1987-01-01","THE SHARP LAW FIRM, PC",,,"1115 HARRISON","PO BOX 906","MT. VERNON","IL","62864",,,,,,,,,,,,,,,,,,"371025057","6182420246","541110","THE SHARP LAW FIRM, PC",,"1115 HARRISON","PO BOX 906","MT. VERNON","IL","62864",,,,,,,"371025057","6182420246",,,,"2011-06-29T09:59:42-0500","TERRY SHARP","2011-06-29T09:59:42-0500","TERRY SHARP",,,20,12,0,3,15,0,15,15,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624122544P040381583136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEVADA LIGHTING REPRESENTATIVE 401(K) PLAN","002","2001-07-01","NEVADA LIGHTING REPRESENTATIVE INC- RENO",,,"860 MAESTRO DRIVE","SUITE A","RENO","NV","89511",,,,,,,"860 MAESTRO DRIVE","SUITE A","RENO","NV","89511",,,,,,,"880190049","7753293411","423990","NEVADA LIGHTING REPRESENTATIVE INC- RENO",,"860 MAESTRO DRIVE","SUITE A","RENO","NV","89511",,,,,,,"880190049","7753293411",,,,"2011-06-24T12:25:02-0500","MARK LISKE",,,,,12,9,0,2,11,0,11,11,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624134817P040084116833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEGAL SERVICES OF EASTERN MISSOURI 401(A) PLAN","001","1985-01-01","LEGAL SERVICES OF EASTERN MISSOURI INC.",,,"4232 FOREST PARK BLVD",,"ST LOUIS","MO","631082811",,,,,,,,,,,,,,,,,,"430816805","3142568758","541110","LEGAL SERVICES OF EASTERN MISSOURI INC.",,"4232 FOREST PARK BLVD",,"ST LOUIS","MO","631082811",,,,,,,"430816805","3142568758",,,,"2011-06-24T13:48:13-0500","DANIEL K. GLAZIER","2011-06-24T13:48:13-0500","DANIEL K GLAZIER",,,83,76,0,4,80,0,80,80,0,,"2E2F2G2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628105445P040086296881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"S. WAYNE EASTERLING PROFIT SHARING PLAN","001","1992-01-01","S. WAYNE EASTERLING",,,"120 SOUTH TENTH AVENUE",,"HATTIESBURG","MS","39401",,,,,,,,,,,,,,,,,,"640663495","6015448900","541110","S. WAYNE EASTERLING",,"120 SOUTH TENTH AVENUE",,"HATTIESBURG","MS","39401",,,,,,,"640663495","6015448900",,,,"2011-06-28T10:54:41-0500","S. WAYNE EASTERLING","2011-06-28T10:54:42-0500","S. WAYNE EASTERLING",,,2,2,0,0,2,0,2,2,0,,"2T3D2E2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628121056P040086327985005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NORTHWEST PATHOLOGY 2005 401K PROFIT SHARING PLAN","004","2005-01-01","NORTHWEST PATHOLOGY P.S.",,,"3614 MERIDIAN STREET, SUITE 100",,"BELLINGHAM","WA","98225",,,,,,,"3614 MERIDIAN STREET, SUITE 100",,"BELLINGHAM","WA","98225",,,,,,,"911385504","3607342800","621111","NORTHWEST PATHOLOGY P.S.",,"3614 MERIDIAN STREET, SUITE 100",,"BELLINGHAM","WA","98225",,,,,,,"911385504","3607342800",,,,"2011-06-24T04:35:08-0500","JOHN HOYT",,,,,40,38,0,0,38,0,38,39,0,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628095618P030083793377001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"EASY RENT, INC. 401(K) PLAN","001","2007-02-15","EASY RENT, INC.",,,"8535-7 BAY MEADOWS ROAD",,"JACKSONVILLE","FL","32256",,,,,,,"8535-7 BAY MEADOWS ROAD",,"JACKSONVILLE","FL","32256",,,,,,,"570803941","9044437446","339900","EASY RENT, INC.",,"8535-7 BAY MEADOWS ROAD",,"JACKSONVILLE","FL","32256",,,,,,,"570803941","9044437446",,,,"2011-06-28T09:55:57-0500","JOHN ANSEL",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628144711P030396294480001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HALPERN ENTERPRISES 401(K) PROFIT SHARING PLAN","001","1997-01-01","HALPERN ENTERPRISES, INC.",,,"5269 BUFORD HIGHWAY",,"ATLANTA","GA","30340",,,,,,,"5269 BUFORD HIGHWAY",,"ATLANTA","GA","30340",,,,,,,"581138687","7705083319","531120","HALPERN ENTERPRISES, INC.",,"5269 BUFORD HIGHWAY",,"ATLANTA","GA","30340",,,,,,,"581138687","7705083319",,,,"2011-06-28T14:46:49-0500","LISA LOFTEN",,,,,31,25,0,5,30,0,30,30,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628175915P040086485057001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"FRI-M CORPORATION SALARIED 401(K) PLAN","002","2002-07-11","FRI-M CORPORATION",,,"2200 FARADAY AVE","SUITE 250","CARLSBAD","CA","92008",,,,,,,,,,,,,,,,,,"330197057","7608045750","551112","FRI-M CORPORATION",,"2200 FARADAY AVE","SUITE 250","CARLSBAD","CA","92008",,,,,,,"330197057","7608045750",,,,"2011-06-28T16:23:09-0500","KAZUMASA OGAWA",,,,,129,52,0,36,88,0,88,88,0,,"2J2K3H2E",,"1",,"1",,"1",,"1",,"0",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628151526P030012201458006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EASTER SEALS FLORIDA, INC. 403(B) PLAN","001","2000-11-01","EASTER SEALS FLORIDA, INC.",,,"2010 MIZELL AVENUE",,"WINTER PARK","FL","32792",,,,,,,"2010 MIZELL AVENUE",,"WINTER PARK","FL","32792",,,,,,,"590637848","4076297881","624100","EASTER SEALS FLORIDA, INC.",,"2010 MIZELL AVENUE",,"WINTER PARK","FL","32792",,,,,,,"590637848","4076297881",,,,"2011-06-23T03:17:16-0500","GLADYS EPPS",,,,,287,258,0,0,258,0,258,113,0,,"2A2F2G2M",,,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629103416P030084418257007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PRE-TAX PLAN","501","1993-09-01","INTUITION SYSTEMS INC",,,"9428 BAYMEADOWS ROAD SUITE 500",,"JACKSONVILLE","FL","32256",,,,,,,,,,,,,,,,,,"593474149","9044217218","812990","INTUITION SYSTEMS INC",,"9428 BAYMEADOWS ROAD SUITE 500",,"JACKSONVILLE","FL","32256",,,,,,,"593474149","9044217218",,,,"2011-06-27T06:07:45-0500","SHERRY LEWIS",,,,,195,208,2,1,211,,,,,,,"4A4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624095523P040084006225001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"GROUP DENTAL PLAN","503","1997-01-01","ROBERTET, INC.",,,"125 BAUER DRIVE",,"OAKLAND","NJ","07436",,,,,,,,,,,,,,,,,,"222273649","2013377100","311900","ROBERTET, INC.",,"125 BAUER DRIVE",,"OAKLAND","NJ","07436",,,,,,,"222273649","2013377100",,,,"2011-06-24T09:55:10-0500","C. IRENE DALEY",,,,,234,236,1,0,237,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628083003P030083748721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARCH OF DIMES HEALTH CARE FLEXIBLE SPENDING A/C","508","1995-01-01","MARCH OF DIMES FOUNDATION",,,"1275 MAMARNECK AVENUE",,"WHITE PLAINS","NY","10605",,,,,,,"1275 MAMARNECK AVENUE",,"WHITE PLAINS","NY","10605",,,,,,,"131846366","9144287100","813000","MARCH OF DIMES FOUNDATION",,"1275 MAMARNECK AVENUE",,"WHITE PLAINS","NY","10605",,,,,,,"131846366","9144287100",,,,"2011-06-28T08:29:44-0500","NICHOLAS DATTOMA",,,,,145,148,,,148,,148,,,,,"4Q","0",,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628083039P040086223633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ATTENDS HEALTHCARE PRODUCTS HEALTH PROTECTION PLAN","501","1983-09-01","ATTENDS HEALTHCARE PRODUCTS, INC.",,,"1029 OLD CREEK ROAD",,"GREENVILLE","NC","278348178",,,,,,,,,,,,,,,,,,"061640071","2527521100","322200","ATTENDS HEALTHCARE PRODUCTS, INC.",,"1029 OLD CREEK ROAD",,"GREENVILLE","NC","278348178",,,,,,,"061640071","2527521100",,,,"2011-06-28T08:30:10-0500","TODD BROWDER",,,,,234,231,2,0,233,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628124526P040027054183001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROOM AND BOARD INC. DENTAL PLAN","504","1997-01-01","ROOM AND BOARD INC.",,,"4600 OLSON MEMORIAL HIGHWAY",,"MINNEAPOLIS","MN","55422",,,,,,,,,,,,,,,,,,"411384146","7635887525","442110","ROOM AND BOARD INC.",,"4600 OLSON MEMORIAL HIGHWAY",,"MINNEAPOLIS","MN","55422",,,,,,,"411384146","7635887525",,,,"2011-06-28T12:45:18-0500","BRENDA MEEHL",,,,,484,513,10,0,523,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629122537P030084474113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVID SAMSON, INC. PROFIT SHARING PLAN","001","1988-01-01","DAVID SAMSON, INC.",,"C/O COLEMAN CORP.","P.O. BOX 1013",,"SYOSSET","NY","11791",,,,,,,,,,,,,,,,,,"112136068","5163648414","812990","DAVID SAMSON, INC.","C/O COLEMAN CORP.","P.O. BOX 1013",,"SYOSSET","NY","11791",,,,,,,"112136068","5163648414",,,,"2011-06-29T12:25:23-0500","THOMAS SAMSON",,,,,6,5,0,0,5,0,5,5,0,,"2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624103946P040002537763001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FOCUS BUSINESS SERVICES, L.L.C. 401(K) PROFIT SHARING PLAN","001","2008-01-01","FOCUS BUSINESS SERVICES, L.L.C.",,,"1333 BUTTERFIELD ROAD","SUITE 490","DOWNERS GROVE","IL","60515",,,,,,,,,,,,,,,,,,"201340345","6307951495","541990","FOCUS BUSINESS SERVICES, L.L.C.",,"1333 BUTTERFIELD ROAD","SUITE 490","DOWNERS GROVE","IL","60515",,,,,,,"201340345","6307951495",,,,"2011-06-24T10:35:19-0500","RICHARD FLYNN JR",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624100200P040084008849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAVALLEE S BAKERY DISTRIBUTORS, LLC 401(K) PROFIT SHARING PLAN","001","2007-01-01","LAVALLEE S BAKERY DISTRIBUTORS, LLC",,,"117 BEAVER STREET",,"WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"030498647","8664879888","424400","LAVALLEE S BAKERY DISTRIBUTORS, LLC",,"117 BEAVER STREET",,"WALTHAM","MA","02451",,,,,,,"030498647","8664879888",,,,"2011-06-23T09:47:07-0500","ANDREW LAVALLEE","2011-06-23T09:47:07-0500","ANDREW LAVALLEE",,,15,11,0,2,13,,13,13,1,,"2F2H2J2A3B3D2T2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628092406P040086252513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COTT BEVERAGES USA, INC. EMPLOYEE HEALTH BENEFIT PLAN","519","1997-09-01","COTT BEVERAGES USA, INC.",,,"5519 WEST IDLEWILD AVENUE",,"TAMPA","FL","33634",,,,,,,,,,,,,,,,,,"581947565","8882688872","311900","COTT BEVERAGES USA, INC.",,"5519 WEST IDLEWILD AVENUE",,"TAMPA","FL","33634",,,,,,,"581947565","8882688872",,,,"2011-06-28T09:23:56-0500","REESE REYNOLDS",,,,,956,857,0,0,857,,,,,,,"4A4D4E4G","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628090227P040086240161003","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"PELLIS CONSULTING INC PROFIT SHARING PLAN","001","1991-01-01","PELLIS CONSULTING INC",,,"1103 HARVEY AVENUE",,"GREENSBURG","PA","15601",,,,,,,,,,,,,,,,,,"251642650","7248367511","541600","PELLIS CONSULTING INC",,"1103 HARVEY AVENUE",,"GREENSBURG","PA","15601",,,,,,,"251642650","7248367511",,,,"2011-06-24T12:24:42-0500","MAXINE A PELLIS",,,,,2,,,,0,,0,,,,"3D2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628132742P040392246208001","2010-01-01","2010-11-30","2",,"0","0","0","1","0","0","0","0","0",,"WRC SENIOR SERVICES GROUP BENEFIT PLAN","505","1993-01-01","WRC SENIOR SERVICES",,,"985 ROUTE 28",,"BROOKVILLE","PA","15825",,,,,,,,,,,,,,,,,,"251552925","8148491205","623000","WRC SENIOR SERVICES",,"985 ROUTE 28",,"BROOKVILLE","PA","15825",,,,,,,"251552925","8148491205",,,,"2011-06-28T13:27:29-0500","SUSAN SCHMADER",,,,,267,258,7,0,265,,,,,,,"4A4B4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628132801P030012194514001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDICAL BENEFITS FOR THE EMPLOYEES OF YMCA OF METROPOLITAN MINNEAPOLIS","505","1999-01-01","YMCA OF METROPOLITAN MINNEAPOLIS",,,"2125 EAST HENNEPIN AVENUE",,"MINNEAPOLIS","MN","554131766",,,,,,,,,,,,,,,,,,"410695629","6124650471","813000","YMCA OF METROPOLITAN MINNEAPOLIS",,"2125 EAST HENNEPIN AVENUE",,"MINNEAPOLIS","MN","554131766",,,,,,,"410695629","6124650471",,,,"2011-06-28T13:27:43-0500","SHARON BERGLUND",,,,,313,313,1,1,315,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629084832P030084363521001","2010-01-02","2011-01-01","2",,"0","1","0","0","0","0","0","0","0",,"GROUP HEALTH PLAN","501","2001-07-01","SARATOGA EAGLE SALES & SERVICE, INC",,,"45 DUPLAINVILLE RD",,"SARATOGA SPRINGS","NY","12866",,,,,,,"45 DUPLAINVILLE RD",,"SARATOGA SPRINGS","NY","12866",,,,,,,"141470802","8003429565","424800","SARATOGA EAGLE SALES & SERVICE, INC",,"45 DUPLAINVILLE RD",,"SARATOGA SPRINGS","NY","12866",,,,,,,"141470802","8003429565",,,,"2011-06-29T08:27:56-0500","JEFFREY VUKELIC",,,,,107,138,1,,139,,,,,,,"4A4D","0","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629085413P030084365649001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"PROGRESSIVE TECHNOLOGY FEDERAL SYSTEMS, INC. EMPLOYEE BENEFIT & WELFARE PLAN","501","2010-01-01","PROGRESSIVE TECHNOLOGY FEDERAL SYSTEMS, INC.",,,"6400 GOLDSBORO ROAD","SUITE 200","BETHESDA","MD","20817",,,,,,,,,,,,,,,,,,"521942959","6207938473","541519","PROGRESSIVE TECHNOLOGY FEDERAL SYSTEMS, INC.",,"6400 GOLDSBORO ROAD","SUITE 200","BETHESDA","MD","20817",,,,,,,"521942959","6207938473",,,,"2011-06-29T08:52:10-0500","ANTHONY BERKANT",,,,,116,126,1,0,127,,127,,,,,"4A4B4D4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624122642P040084074497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LA CLINICA DE LA RAZA EMPLOYEE BENEFIT PLAN","501","1980-01-01","LA CLINICA DE LA RAZA",,,"1450 FRUITVALE AVE. 2ND FL., STE. H",,"OAKLAND","CA","94601",,,,,,,,,,,,,,,,,,"941744108","5105354000","621111","LA CLINICA DE LA RAZA",,"1450 FRUITVALE AVE. 2ND FL., STE. H",,"OAKLAND","CA","94601",,,,,,,"941744108","5105354000",,,,"2011-06-24T12:26:36-0500","BRUCE CARP, CFO",,,,,555,608,5,9,622,,,,,,,"4A4B4D4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628140227P030083910113007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DERMATOLOGY ASSOCIATES OF DALLAS PROFIT SHARING PLAN AND TRUST","001","1974-01-01","DERMATOLOGY ASSOCIATES OF DALLAS","PROFIT SHARING PLAN & TRUST",,"7150 GREENVILLE AVENUE SUITE 100",,"DALLAS","TX","752317900",,,,,,,,,,,,,,,,,,"751433273","2146916999","621111","DERMATOLOGY ASSOCIATES OF DALLAS INC","DR. DAVID ALKEK, PRESIDENT","7150 GREENVILLE AVENUE SUITE 100",,"DALLAS","TX","752317900",,,,,,,"752179667","2146916999",,,,"2011-06-28T09:33:32-0500","DR DAVID ALKEK",,,,,5,5,,,5,,5,5,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628111338P040391934464001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NEXTLABS, INC. 401(K) PLAN","001","2005-12-01","NEXTLABS, INC.",,,"2 WATERS PARK DRIVE","SUITE 250","SAN MATEO","CA","94403",,,,,,,"2 WATERS PARK DRIVE","SUITE 250","SAN MATEO","CA","94403",,,,,,,"352212859","6505779101","511210","NEXTLABS, INC.",,"2 WATERS PARK DRIVE","SUITE 250","SAN MATEO","CA","94403",,,,,,,"352212859","6505779101",,,,"2011-06-14T12:56:37-0500","MICHAEL MUNEMITSU","2011-06-21T13:16:19-0500","BARBARA SARPA",,,44,26,0,16,42,0,42,35,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624155620P040084186353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTEGRITY ABSTRACT CORPORATION PROFIT SHARING PLAN","001","1998-01-01","INTEGRITY ABSTRACT CORPORATION",,,"120 FRONT STREET",,"MINEOLA","NY","115014401",,,,,,,"120 FRONT STREET",,"MINEOLA","NY","115014401",,,,,,,"113427029","5167467001","531390","INTEGRITY ABSTRACT CORPORATION",,"120 FRONT STREET",,"MINEOLA","NY","115014401",,,,,,,"113427029","5167467001",,,,"2011-06-24T15:55:29-0500","JOSEPH MARO",,,,,5,3,2,,5,,5,5,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110623133401P030081076881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QPAY, INC. EMPLOYEE BENEFITS PLAN","501","2006-01-01","QPAY, INC.",,,"16853 NE 2ND AVENUE, SUITE 302",,"NORTH MIAMI BEACH","FL","33162",,,,,,,,,,,,,,,,,,"421573784","3056509930","522300","QPAY, INC.",,"16853 NE 2ND AVENUE, SUITE 302",,"NORTH MIAMI BEACH","FL","33162",,,,,,,"421573784","3056509930",,,,"2011-06-23T13:32:49-0500","GLENDA MILIAN",,,,,194,175,0,0,175,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110621170237P040082421505001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SYSTEM PROS INC 401(K) PROFIT SHARING PLAN & TRUST","001","1999-10-10","SYSTEM PROS INC.",,,"2 COLLINS RD.",,"COLUMBIA","CT","06237",,,,,,,,,,,,,,,,,,"061355739","8602283351","541310","SYSTEM PROS INC.",,"2 COLLINS RD.",,"COLUMBIA","CT","06237",,,,,,,"061355739","8602283351",,,,"2011-06-21T05:02:34-0500","SYSTEM PROS INC.",,,,,7,3,0,1,4,0,4,3,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","1","1","0","0",,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110622142013P030380239584001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"CENTURION, INC. 401K PLAN","002","2004-01-01","CENTURION, INC.",,,"14047 PETRONELLA DR. #101",,"LIBERTYVILLE","IL","60048",,,,,,,"14047 PETRONELLA DR. #101",,"LIBERTYVILLE","IL","60048",,,,,,,"362859127","8474193033","561490","CENTURION, INC.",,"14047 PETRONELLA DR. #101",,"LIBERTYVILLE","IL","60048",,,,,,,"362859127","8474193033",,,,"2011-06-22T14:14:29-0500","MICHAEL ANDERSON",,,,,17,10,0,6,16,0,16,13,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622181003P030025104279001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AVNET FLEXIBLE BENEFITS PLAN","704","1993-04-01","AVNET,INC.",,"RETIREMENT DEPARTMENT","2211 SOUTH 47TH STREET",,"PHOENIX","AZ","85034",,,,,,,"2211 SOUTH 47TH STREET",,"PHOENIX","AZ","85034",,,,,,,"111890605","4806437445","334410","AVNET,INC.","RETIREMENT DEPARTMENT","2211 SOUTH 47TH STREET",,"PHOENIX","AZ","85034",,,,,,,"111890605","4806437445",,,,"2011-06-22T18:07:38-0500","RAYMOND SADOWSKI",,,,,1347,1569,,,1569,,1569,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622182014P040083058497001","2010-01-01","2010-12-31","3",,,,,,,,,,,,"624 BOSTON SAVINGS INCENTIVE PLAN","001","1994-09-01","MATRIX ARCHITECTS ENGINEERS PLANNERS, INC.",,,"TWO WEST SECOND ST., STE. 1000",,"TULSA","OK","74103",,,,,,,,,,,,,,,,,,"730758969","9185874747","541310","MATRIX ARCHITECTS ENGINEERS PLANNERS, INC.",,"TWO WEST SECOND ST., STE. 1000",,"TULSA","OK","74103",,,,,,,"730758969","9185874747",,,,"2011-06-22T07:19:57-0500","RICHARD A. FLAMING",,,,,76,42,2,18,62,0,62,53,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622155716P040082998401001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"TRI-MED STAFFING SERVICES LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","TRI-MED STAFFING SERVICES LLC",,,"4110 BUTLER PIKE STE 106",,"PLYMOUTH MEETING","PA","19462",,,,,,,,,,,,,,,,,,"264578433","2158364828","423990","TRI-MED STAFFING SERVICES LLC",,"4110 BUTLER PIKE STE 106",,"PLYMOUTH MEETING","PA","19462",,,,,,,"264578433","2158364828",,,,"2011-06-22T03:57:14-0500","TRI-MED STAFFING SERVICES LLC",,,,,4,0,0,17,17,0,17,17,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622140402P030080492337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HANKYU HANSHIN EXPRESS USA INC. GROUP BENEFIT & VOLUNTARY PLAN","502","2007-11-01","HANKYU HANSHIN EXPRESS USA INC.",,,"909 W. IRVING PARK ROAD",,"ITASCA","IL","60143",,,,,,,"909 W. IRVING PARK ROAD",,"ITASCA","IL","60143",,,,,,,"952668593","3106651490","561500","HANKYU HANSHIN EXPRESS USA INC.",,"909 W. IRVING PARK ROAD",,"ITASCA","IL","60143",,,,,,,"952668593","3106651490",,,,"2011-06-22T14:03:48-0500","FRANK YEN",,,,,274,229,0,0,229,0,229,,,,,"4A4B4D4F4H4L4R","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623103518P040083422929001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CES CREDIT UNION, INC. 401(K) PLAN","002","1998-01-01","CES CREDIT UNION, INC.",,,"PO BOX 631",,"MOUNT VERNON","OH","43050",,,,,,,"1215 YAUGER ROAD",,"MOUNT VERNON","OH","43050",,,,,,,"314400124","7403971136","522130","CES CREDIT UNION, INC.",,"PO BOX 631",,"MOUNT VERNON","OH","43050",,,,,,,"314400124","7403971136",,,,"2011-06-23T10:34:30-0500","EYDIE GLASSTETTER",,,,,59,57,0,2,59,0,59,57,6,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623104602P040083428673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SID DILLON INC DENTAL PLAN","503","2000-01-01","SID DILLON INC",,,"2420 EAST 23 ST",,"FREMONT","NE","680252454",,,,,,,,,,,,,,,,,,"470581068","4027212448","441110","SID DILLON INC",,"2420 EAST 23 ST",,"FREMONT","NE","680252454",,,,,,,"470581068","4027212448",,,,"2011-06-23T10:42:04-0500","JOHN SAJEVIC",,,,,611,179,0,0,179,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623152032P040083565121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KEN'S PLUMBING & HEATING, INC. 401(K) PLAN","001","2001-01-01","KENS PLUMBING & HEATING, INC.",,,"6510 FORTUNA ROAD NW",,"ALBUQUERQUE","NM","87121",,,,,,,,,,,,,,,,,,"850350027","5058331718","812990","KENS PLUMBING & HEATING, INC.",,"6510 FORTUNA ROAD NW",,"ALBUQUERQUE","NM","87121",,,,,,,"850350027","5058331718",,,,"2011-06-23T15:20:22-0500","MARIA GONZALES",,,,,35,21,0,10,31,1,32,22,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622182034P030025105703001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONTINENTAL CATERING, INC. SAFE HARBOR 401(K) PROFIT SHARING PLAN","001","2004-01-01","CONTINENTAL CATERING, INC.",,,"8238 PARKWAY DRIVE",,"LA MESA","CA","91941",,,,,,,"8238 PARKWAY DRIVE",,"LA MESA","CA","91941",,,,,,,"330330152","6196983500","722300","CONTINENTAL CATERING, INC.",,"8238 PARKWAY DRIVE",,"LA MESA","CA","91941",,,,,,,"330330152","6196983500",,,,"2011-06-22T16:38:07-0500","DENISE JERMYN",,,,,26,18,0,8,26,0,26,21,0,,"2E2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623083616P040002517539001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"FENSTERMACHER CONSTRUCTION SERVICES, INC. 401(K) PLAN","001","2003-01-01","FENSTERMACHER CONSTRUCTION SERVICES, INC.",,,"411 WEST MAIN STREET",,"KUTZTOWN","PA","19530",,,,,,,"411 WEST MAIN STREET",,"KUTZTOWN","PA","19530",,,,,,,"232795412","6106835228","236200","FENSTERMACHER CONSTRUCTION SERVICES, INC.",,"411 WEST MAIN STREET",,"KUTZTOWN","PA","19530",,,,,,,"232795412","6106835228",,,,"2011-06-22T12:59:47-0500","WILLIAM FENSTERMACHER",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623083640P030080935985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NLOGIC, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2009-06-26","NLOGIC, INC.",,,"4901 CORPORATE DRIVE NORTHWEST","SUITE H","HUNTSVILLE","AL","358056219",,,,,,,,,,,,,,,,,,"270445567","2563278777","541330","NLOGIC, INC.",,"4901 CORPORATE DRIVE NORTHWEST","SUITE H","HUNTSVILLE","AL","358056219",,,,,,,"270445567","2563278777",,,,"2011-06-22T16:42:54-0500","TIMOTHY V. THORNTON",,,,,26,36,0,8,44,0,44,44,2,,"2I2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110621145551P040013813142001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DURA WAX COMPANY, INC.","001","1993-01-01","DURA WAX COMPANY 401K PLAN",,,"4101 ALBANY STREET",,"MCHENRY","IL","60050",,,,,,,,,,,,,,,,,,"362686802","8004355705","325600","DURA WAX COMPANY 401K PLAN",,"4101 ALBANY STREET",,"MCHENRY","IL","60050",,,,,,,"362686802","8004355705",,,,"2011-06-21T14:55:45-0500","BRIAN SCHWERMAN","2011-06-21T14:55:45-0500","BRIAN SCHWERMAN",,,15,14,0,0,14,0,14,14,0,,"2E2F2G2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621155612P040082392769001","2010-05-01","2010-07-08","4","C","0","0","1","1","0","0","0","0","0",,"WTC-CIF II TIPS PLUS","032",,"WELLINGTON TRUST COMPANY, NA",,"JOSEPH PENTA","75 STATE STREET",,"BOSTON","MA","02109",,,,,,,,,,,,,,,,,,"046913417","6177908964",,"WELLINGTON TRUST COMPANY, NA","JOSEPH PENTA","75 STATE STREET",,"BOSTON","MA","02109",,,,,,,"046913417","6177908964",,,,,,,,"2011-06-21T15:55:37-0500","JOSEPH A. PENTA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-06-21",,"Filed with authorized/valid electronic signature", "20110621153008P030377666272002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LISA M. SCHOENE, D.P.M., P.C. 401(K)PROFIT SHARING PLAN","001","2003-04-01","LISA M. SCHOENE, D.P.M., P.C.",,,"351 S. GREENLEAF ST., STE C","SUITE C","PARK CITY","IL","60085",,,,,,,,,,,,,,,,,,"300153255","8472636073","621391","LISA M. SCHOENE, D.P.M., P.C.",,"351 S. GREENLEAF ST., STE C",,"PARK CITY","IL","60085",,,,,,,"300153255","8472636073",,,,"2011-06-21T16:17:17-0500","LISA M. SCHOENE, D.P.M.","2011-06-21T16:17:30-0500","LISA M. SCHOENE, D.P.M.",,,7,6,0,1,7,0,7,7,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623094214P040083401297004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CPEC FOUNDATION INC MONEY PURCHASE PLAN & TRUST","003","1995-02-01","CPEC FOUNDATION INC",,,"1344 SILAS DEANE HIGHWAY",,"ROCKY HILL","CT","06067",,,,,,,,,,,,,,,,,,"222708727","8604937610","541990","CPEC FOUNDATION INC",,"1344 SILAS DEANE HIGHWAY",,"ROCKY HILL","CT","06067",,,,,,,"222708727","8604937610",,,,"2011-06-22T08:08:03-0500","LAURA M. HUREN",,,,,5,0,,,0,,0,2,,,"2C2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623171054P030011785970001","2010-10-01","2010-11-01","2",,"0","1","1","1","0","1","0","0","0",,"A & P PRINTING INC. 401(K) PLAN","001","2008-10-20","A & P PRINTING INC.",,,"5566 BROOK RUN DRIVE",,"MEDINA","OH","44256",,,,,,,,,,,,,,,,,,"300500909","3307222009","561430","A & P PRINTING INC.",,"5566 BROOK RUN DRIVE",,"MEDINA","OH","44256",,,,,,,"300500909","3307222009",,,,"2011-06-22T17:33:50-0500","ALFRED CARRERO","2011-06-23T17:10:48-0500","ALFRED CARRERO",,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622110112P030080411857011","2010-01-01","2010-12-31","4","C",,,,,,,,,,,"GPTC LARGE CAP FUND","007",,"GREAT PLAINS TRUST COMPANY",,,"7700 SHAWNEE MISSION PKWY STE 101",,"OVERLAND PARK","KS","66202",,,,,,,,,,,,,,,,,,"486149655","9138317999","525100","GREAT PLAINS TRUST COMPANY",,"7700 SHAWNEE MISSION PKWY STE 101",,"OVERLAND PARK","KS","66202",,,,,,,"486149655","9138317999",,,,"2011-06-22T08:23:11-0500","LAURIE MARCHIO",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622133557P040012165810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"L. FISH CORP. 401(K) PLAN","001","2007-01-01","L. FISH CORP.",,,"10 S. RIVERSIDE PLAZA, SUITE 1040",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"364169103","3127079600","442110","L. FISH CORP.",,"10 S. RIVERSIDE PLAZA, SUITE 1040",,"CHICAGO","IL","60606",,,,,,,"364169103","3127079600",,,,"2011-06-22T13:35:49-0500","STEPHEN EHRLICHMAN",,,,,34,34,0,2,36,0,36,10,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622071238P040375421168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IMPACT PLAYER GROUP INC. PROFIT SHARING PLAN","001","2009-03-05","IMPACT PLAYER GROUP INC.",,,"24260 HIDDEN VALLEY PL",,"ALDIE","VA","20105",,,,,,,,,,,,,,,,,,"264394749","7033271176","812990","IMPACT PLAYER GROUP INC.",,"24260 HIDDEN VALLEY PL",,"ALDIE","VA","20105",,,,,,,"264394749","7033271176",,,,"2011-06-21T16:30:20-0500","RICHARD AUGUGLIARO",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623115839P030006958677001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE PENNA 401(K) PLAN","001","1998-08-01","PENNAS RESTAURANT, INC","VILLA PENNA",,"38400 VAN DYKE",,"STERLING HEIGHTS","MI","48312",,,,,,,,,,,,,,,,,,"383113550","5869783880","722300","PENNAS RESTAURANT, INC",,"38400 VAN DYKE",,"STERLING HEIGHTS","MI","48312",,,,,,,"383113550","5869783880",,,,"2011-06-23T11:58:35-0500","JANET SZYDLIK",,,,,63,52,0,4,56,0,56,32,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623115957P030081033633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRG NETWORKING, INC. 401(K) PLAN","001","2001-01-01","TRG NETWORKING, INC.",,,"11436 CRONRIDGE DR., STE. 4B",,"OWINGS MILLS","MD","21117",,,,,,,,,,,,,,,,,,"521802967","4103636980","541519","TRG NETWORKING, INC.",,"11436 CRONRIDGE DR., STE. 4B",,"OWINGS MILLS","MD","21117",,,,,,,"521802967","4103636980",,,,"2011-06-23T11:59:53-0500","TONI D. ROSEN","2011-06-23T11:59:53-0500","TONI D. ROSEN",,,14,9,0,3,12,0,12,10,1,,"2E2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623142350P040083536897001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SOS INTERNATIONAL, LTD PAY DEFERRAL PLAN","003","2005-07-01","SOS INTERNATIONAL, LTD",,,"40 FULTON STREET","26TH FLOOR","NEW YORK","NY","10038",,,,,,,"40 FULTON STREET","26TH FLOOR","NEW YORK","NY","10038",,,,,,,"133769986","7037741809","541930","SOS INTERNATIONAL, LTD",,"40 FULTON STREET","26TH FLOOR","NEW YORK","NY","10038",,,,,,,"133769986","7037741809","SOS INTERNATIONAL, LTD","133769986","003","2011-06-23T14:22:48-0500","JOSEPH MOTT",,,,,110,96,0,2,98,0,98,9,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623142401P040083537057001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"GOLDEN OPPORTUNITIES INC. 401(K) PLAN","001","2008-07-01","GOLDEN OPPORTUNITIES INC.",,,"820 W RYAN STREET",,"BRILLION","WI","54110",,,,,,,,,,,,,,,,,,"262903081","9207562800","443112","GOLDEN OPPORTUNITIES INC.",,"820 W RYAN STREET",,"BRILLION","WI","54110",,,,,,,"262903081","9207562800",,,,"2011-06-23T14:23:47-0500","CLARK CURTIS","2011-06-23T14:23:47-0500","CLARK CURTIS",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621193227P030080055633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"G2 SOFTWARE SYSTEMS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2009-01-01","G2 SOFTWARE SYSTEMS, INC.",,,"4250 PACIFIC HIGHWAY #125",,"SAN DIEGO","CA","92110",,,,,,,,,,,,,,,,,,"330454802","6193168025","541511","G2 SOFTWARE SYSTEMS, INC.",,"4250 PACIFIC HIGHWAY #125",,"SAN DIEGO","CA","92110",,,,,,,"330454802","6193168025",,,,"2011-06-21T19:31:43-0500","GEORGIA GRIFFITHS",,,,,79,66,0,14,80,,80,77,7,,"2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110622125300P040082917649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CASEY GROUP HEALTH AND DENTAL PLAN","501","1980-10-01","CASEY AUTO GROUP, INC.",,,"813 DILIGENCE DRIVE, SUITE 116",,"NEWPORT NEWS","VA","23606",,,,,,,,,,,,,,,,,,"541423677","7575911000","441110","CASEY AUTO GROUP, INC.",,"813 DILIGENCE DRIVE, SUITE 116",,"NEWPORT NEWS","VA","23606",,,,,,,"541423677","7575911000",,,,"2011-06-22T12:52:43-0500","ARTHUR CASEY",,,,,209,194,14,0,208,,,,,,,"4A4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622142208P030380243984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BROWNWOOD SPECIALTY GROUP, P.A. 401(K) PLAN","004","2007-01-01","BROWNWOOD SPECIALTY GROUP, P.A.",,,"2502 CROCKETT DRIVE",,"BROWNWOOD","TX","76801",,,,,,,,,,,,,,,,,,"752812413","3256435521","621111","BROWNWOOD SPECIALTY GROUP, P.A.",,"2502 CROCKETT DRIVE",,"BROWNWOOD","TX","76801",,,,,,,"752812413","3256435521",,,,"2011-06-22T14:21:29-0500","GARY BUTKA",,,,,56,30,0,25,55,0,55,55,0,,"2A2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622142334P030080502241001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"DISTRIBUTION & SERVICE, INC. PROFIT SHARING PLAN","002","2006-01-01","DISTRIBUTION & SERVICE, INC.",,,"10565 FAIRFAX BLVD","STE 303","FAIRFAX","VA","220303135",,,,,,,,,,,,,,,,,,"460500007","7032679616","424400","DISTRIBUTION & SERVICE, INC.",,"10565 FAIRFAX BLVD","STE 303","FAIRFAX","VA","220303135",,,,,,,"460500007","7032679616",,,,"2011-06-22T14:15:22-0500","MICHAEL AEVERMAN",,,,,8,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622142411P040012169346001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DRS. SRIVASTAVA, S.C. PROFIT SHARING PLAN","002","1985-01-01","DRS. SRIVASTAVA, S.C.",,,"4920 E STATE STREET",,"ROCKFORD","IL","61108",,,,,,,,,,,,,,,,,,"363146949","8152261906","621111","DRS. SRIVASTAVA, S.C.",,"4920 E STATE STREET",,"ROCKFORD","IL","61108",,,,,,,"363146949",,,,,"2011-06-13T10:02:28-0500","MADHAV K. SRIVASTAVA, M.D.",,,,,7,7,,,7,,7,7,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622160430P040012175298001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BURTON MEDICAL PRODUCTS CORP/ LUXO CORPORATION 401(K) PLAN","001","1994-07-01","LUXO CORPORATION",,,"5 WESTCHESTER PLZ",,"ELMSFORD","NY","10523",,,,,,,,,,,,,,,,,,"133551359","9143450067","339110","LUXO CORPORATION",,"5 WESTCHESTER PLZ",,"ELMSFORD","NY","10523",,,,,,,"133551359","9143450067",,,,"2011-06-22T16:01:44-0500","SAMUEL GUMINS",,,,,58,41,0,7,48,0,48,48,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623130403P030081061457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"R. M. SELLERGREN & ASSOCIATES, INC. 401K PLAN","001","2001-01-01","R. M. SELLERGREN & ASSOCIATES, INC.",,,"350 CROSSEN",,"ELK GROVE VILLAGE","IL","600072002",,,,,,,,,,,,,,,,,,"363793911","8475931764","238300","R. M. SELLERGREN & ASSOCIATES, INC.",,"350 CROSSEN",,"ELK GROVE VILLAGE","IL","600072002",,,,,,,"363793911","8475931764",,,,"2011-06-23T12:57:18-0500","SHARON CROMER",,,,,18,8,0,7,15,0,15,15,0,,"2A2E2F2G2J",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623150432P040379174784001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"KASSERMAN LAW OFFICES, PLLC PROFIT SHARING PLAN","001","2008-01-01","KASSERMAN LAW OFFICES, PLLC",,,"94 14TH ST",,"WHEELING","WV","26003",,,,,,,,,,,,,,,,,,"331187267","3042330288","541110","KASSERMAN LAW OFFICES, PLLC",,"94 14TH ST",,"WHEELING","WV","26003",,,,,,,"331187267","3042330288",,,,"2011-06-23T15:04:22-0500","BETH KASSERMAN",,,,,3,3,0,0,3,0,3,3,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622122934P030011673218001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"TOURNEY CONSULTING GROUP LLC 401K PLAN","001","2010-01-01","TOURNEY CONSULTING GROUP LLC",,,"3401 MIDLINK DRIVE",,"KALAMAZOO","MI","49048",,,,,,,,,,,,,,,,,,"383561526","2693849980","541380","TOURNEY CONSULTING GROUP LLC",,"3401 MIDLINK DRIVE",,"KALAMAZOO","MI","49048",,,,,,,"383561526","2693849980",,,,"2011-06-22T12:26:56-0500","VINCENT WHEELER",,,,,10,16,0,0,16,0,16,14,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622140953P030080496433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NETWORK IMAGING, LLC 401(K) PROFIT SHARING PLAN","001","1997-01-01","NETWORK IMAGING, LLC.",,,"122 SPRING STREET","B-3","SOUTHINGTON","CT","06489",,,,,,,,,,,,,,,,,,"061471590","8606211825","532400","NETWORK IMAGING, LLC.",,"122 SPRING STREET","B-3","SOUTHINGTON","CT","06489",,,,,,,"061471590","8606211825",,,,"2011-06-22T14:06:46-0500","MARIA ROSADO",,,,,17,13,0,5,18,0,18,15,1,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622141147P030080497713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MOLLOY COLLEGE LIFE INSURANCE PLAN","507","1999-05-01","MOLLOY COLLEGE",,,"1000 HEMPSTEAD AVENUE","PO BOX 5002","ROCKVILLE CENTRE","NY","11571",,,,,,,"1000 HEMPSTEAD AVENUE","PO BOX 5002","ROCKVILLE CENTRE","NY","11571",,,,,,,"111797182","5166785000","611000","MOLLOY COLLEGE",,"1000 HEMPSTEAD AVENUE","PO BOX 5002","ROCKVILLE CENTRE","NY","11571",,,,,,,"111797182","5166785000",,,,"2011-06-22T14:11:37-0500","LISA MILLER",,,,,404,437,,,437,,437,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623075939P030080920977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KARIAN PETERSON POWERLINE CONTRACTING, LLC 401(K) PLAN - 002","002","2000-11-01","KARIAN PETERSON POWERLINE CONTRACTING, LLC",,,"PO BOX 345",,"MONTEVIDEO","MN","56265",,,,,,,"7004 CO. RD. 15 SW",,"MONTEVIDEO","MN","56265",,,,,,,"411979829","2186844962","221100","KARIAN PETERSON POWERLINE CONTRACTING, LLC",,"PO BOX 345",,"MONTEVIDEO","MN","56265",,,,,,,"411979829","2186844962",,,,"2011-06-23T07:59:29-0500","TIM HOFMANN","2011-06-23T07:59:29-0500","TIM HOFMANN",,,55,35,0,29,64,0,64,58,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623084812P030002380435001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INNOVATIVE SOLUTIONS & SUPPORT, INC. EMPLOYEE BENEFIT PLAN","510","2007-01-01","INNOVATIVE SOLUTIONS & SUPPORT, INC",,,"720 PENNSYLVANIA DR",,"EXTON","PA","193411129",,,,,,,,,,,,,,,,,,"232507402","6106469800","336410","INNOVATIVE SOLUTIONS & SUPPORT, INC",,"720 PENNSYLVANIA DR",,"EXTON","PA","193411129",,,,,,,"232507402","6106469800",,,,"2011-06-23T08:46:45-0500","ANITA M. BROADY",,,,,142,127,5,0,132,,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622142859P030080504289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AKRON/SUMMIT CONVENTION VISITORS BUREAU 401(K) PLAN","001","1988-01-01","AKRON SUMMIT CONVENTION & VISITORS BUREAU INC.",,,"77 E MILL ST",,"AKRON","OH","44308",,,,,,,,,,,,,,,,,,"341131390","3303748944","812990","AKRON SUMMIT CONVENTION & VISITORS BUREAU INC.",,"77 E MILL ST",,"AKRON","OH","44308",,,,,,,"341131390","3303748944",,,,"2011-06-22T14:28:13-0500","SUSAN HAMO",,,,,33,27,0,0,27,0,27,25,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622144905P030380302848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GP-LS 401(K) PLAN","001","1996-01-01","GOEBEL PAVING, GRADING & UNDERGROUND, INC.",,,"227 HOWARD STREET",,"PETALUMA","CA","94952",,,,,,,,,,,,,,,,,,"942440768","7077630088","238100","GOEBEL PAVING, GRADING & UNDERGROUND, INC.",,"227 HOWARD STREET",,"PETALUMA","CA","94952",,,,,,,"942440768","7077630088",,,,"2011-06-22T14:48:54-0500","JOANNE R GOEBEL","2011-06-22T14:48:54-0500","JOANNE R GOEBEL",,,81,74,0,11,85,0,85,62,8,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623092358P040378427040001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SPRINGFIELD BOYS AND GIRLS CLUB RETIREMENT PLAN","002","2003-01-01","SPRINGFIELD BOYS & GIRLS CLUB",,,"481 CAREW STREET",,"SPRINGFIELD","MA","01144",,,,,,,,,,,,,,,,,,"041858620","4137327201","813000","SPRINGFIELD BOYS & GIRLS CLUB",,"481 CAREW STREET",,"SPRINGFIELD","MA","01144",,,,,,,"041858620","4137327201",,,,"2011-06-23T10:23:37-0500","GARRETT MCCARTHY",,,,,17,15,0,1,16,0,16,8,0,,"2E2F2G2J2M2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623154345P040002524707001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"YAVAPAI PRESCOTT INDIAN TRIBE PREMIUM CONVERSION FLEXIBLE BENEFIT PLAN","501","1995-11-01","YAVAPAI PRESCOTT INDIAN TRIBE",,,"530 E MERRITT",,"PRESCOTT","AZ","86301",,,,,,,,,,,,,,,,,,"820300206","9284458790","813000","YAVAPAI PRESCOTT INDIAN TRIBE",,"530 E MERRITT",,"PRESCOTT","AZ","86301",,,,,,,"820300206","9284458790",,,,"2011-06-23T15:36:21-0500","MICHELLE MALOTT","2011-06-23T15:37:50-0500","WILLIAM TOWNE",,,519,489,5,0,494,0,,,,,,"4A4B4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621193829P040082495841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAVI JAHAGIRDAR,M.D.,P.A.","001","1986-09-16","ASSOCIATES IN UROLOGY OF CENTRAL FLORIDA, PA",,,"2501 N. ORANGE AVE., SUITE 501",,"ORLANDO","FL","328044644",,,,,,,"2501 N. ORANGE AVE., SUITE 501",,"ORLANDO","FL","328044644",,,,,,,"592712175","4078964717","621111","ASSOCIATES IN UROLOGY OF CENTRAL FLORIDA, PA",,"2501 N. ORANGE AVE., SUITE 501",,"ORLANDO","FL","328044644",,,,,,,"592712175","4078964717",,,,"2011-06-21T17:56:07-0500","RAVI JAHAGIRDAR",,,,,5,4,,1,5,,5,5,0,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110623121459P030382768032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUSINESS INDUSTRY POLITICAL ACTION COMMITTEE 401K PLAN AND TRUST","002","2008-01-01","BUSINESS INDUSTRY POLITICAL ACTION COMMITTEE",,"GREGORY S. CASEY","888 16TH STREET NW",,"WASHINGTON","DC","20006",,,,,,,,,,,,,,,,,,"131985476","2028331880","813000","BUSINESS INDUSTRY POLITICAL ACTION COMMITTEE","GREGORY S. CASEY","888 16TH STREET NW",,"WASHINGTON","DC","20006",,,,,,,"131985476","2028331880",,,,"2011-06-23T12:13:54-0500","GREGORY S. CASEY",,,,,19,15,0,5,20,0,20,20,0,,"2E2F2G2J2K2R3D2A",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623095459P040083409201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRC INSURANCE SERVICES, INC. VISION WELFARE BENEFIT PLAN","511","2002-11-01","CRC INSURANCE SERVICES, INC.",,,"ONE METROPLEX DRIVE SUITE 400",,"BIRMINGHAM","AL","352096895",,,,,,,,,,,,,,,,,,"630834817","2054142378","541110","CRC INSURANCE SERVICES, INC.",,"ONE METROPLEX DRIVE SUITE 400",,"BIRMINGHAM","AL","352096895",,,,,,,"630834817","2054142378",,,,"2011-06-23T09:01:34-0500","LINDSEY PATTERSON","2011-06-23T09:46:39-0500","KRISTI JEFFERS",,,667,397,2,201,600,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623165738P030002335812001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"FUSION COATINGS INC PROFIT SHARING PLAN","001","1983-01-01","FUSION COATINGS INC",,,"932 W PENN AVENUE",,"ROBESONIA","PA","195519801",,,,,,,"932 W. PENN AVENUE",,"ROBESONIA","PA","195519801",,,,,,,"232440344","6106935886","333510","FUSION COATINGS INC",,"932 W PENN AVENUE",,"ROBESONIA","PA","195519801",,,,,,,"232440344","6106935886",,,,"2011-06-09T12:47:51-0500","DAVID JONES",,,,,21,21,,2,23,,23,23,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623134730P030081081057001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"CENTRAL IOWA POWER COOPERATIVE 401(K) SAVINGS PLAN","004","1987-09-01","CENTRAL IOWA POWER COOPERATIVE",,,"PO BOX 2517",,"CEDAR RAPIDS","IA","524062517",,,,,,,,,,,,,,,,,,"420652127","3193668011","221100","CENTRAL IOWA POWER COOPERATIVE",,"PO BOX 2517",,"CEDAR RAPIDS","IA","524062517",,,,,,,"420652127","3193668011",,,,"2011-06-23T13:47:26-0500","JAMES ALBERTSON","2011-06-23T13:47:26-0500","JAMES ALBERTSON",,,142,130,0,11,141,0,141,139,0,,"2E2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622082438P030080344337001","2009-09-01","2010-08-31","4","M","0","0","0","0","0","0","0","0","0",,"NORTHWESTERN UNIVERSITY DISABILITY PLAN MASTER TRUST","550",,"NORTHWESTERN UNIVERSITY",,"ANNE N. FISH","720 UNIVERSITY PLACE",,"EVANSTON","IL","602081145",,,,,,,,,,,,,,,,,,"362167817","8474918588",,"NORTHWESTERN UNIVERSITY","ANNE N. FISH","720 UNIVERSITY PLACE",,"EVANSTON","IL","602081145",,,,,,,"362167817","8474918588",,,,,,,,"2011-06-22T08:13:49-0500","ANNE N. FISH DIRECTOR OF BENEFITS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","1","FILING_RECEIVED","2011-06-22",,"Filed with authorized/valid electronic signature", "20110622111614P030025033079001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KARSON A KUPIEC DDS MS 401K PROFIT SHARING PLAN & TRUST","001","2007-01-01","KARSON A KUPIEC DDS MS PC",,,"P.O. BOX 5010. PMB 158",,"RANCHO SANTA FE","CA","92067",,,,,,,,,,,,,,,,,,"330885516","7606344800","621210","KARSON A KUPIEC DDS MS PC",,"P.O. BOX 5010. PMB 158",,"RANCHO SANTA FE","CA","92067",,,,,,,"330885516","7606344800",,,,"2011-06-22T11:07:49-0500","KARSON A. KUPIEC",,,,,15,5,1,9,15,0,15,15,,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622123559P030080457825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRANFORD, BUCKLEY, SCHULTZE, TOMCHIN, ALLEN & BUIE, P.A. 401(K) PROFIT SHARING PLAN","001","2002-01-01","CRANFORD, BUCKLEY, SCHULTZE, TOMCHIN, ALLEN & BUIE, P.A.",,,"7257 PINEVILLE-MATTHEWS RD STE 2100",,"CHARLOTTE","NC","28226",,,,,,,,,,,,,,,,,,"561817454","7044421010","541110","CRANFORD, BUCKLEY, SCHULTZE, TOMCHIN, ALLEN & BUIE, P.A.",,"7257 PINEVILLE-MATTHEWS RD STE 2100",,"CHARLOTTE","NC","28226",,,,,,,"561817454","7044421010",,,,"2011-06-22T12:34:13-0500","MICHAEL F. SCHULTZE","2011-06-22T12:34:13-0500","MICHAEL F. SCHULTZE",,,11,13,0,0,13,0,13,10,0,,"2A2E2F2G2J2K3D2T2R",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622163008P030080573121001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"HUGHES ELECTRIC PAINT & SUPPLIES, INC. PROFIT SHARING PLAN","001","1980-03-28","HUGHES ELECTRIC PAINT & SUPPLIES, INC. PROFIT SHARING PLAN",,,"152 TENNESSEE STREET",,"MURPHY","NC","28906",,,,,,,,,,,,,,,,,,"561239490","8288372240","444110","HUGHES ELECTRIC PAINT & SUPPLIES, INC. PROFIT SHARING PLAN",,"152 TENNESSEE STREET",,"MURPHY","NC","28906",,,,,,,"561239490","8288372240",,,,"2011-06-22T16:28:33-0500","LEE ROYCE HUGHES",,,,,7,6,,1,7,,7,6,1,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623124830P030382841536001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GROUP EAP PLAN","507","2004-01-01","AGILYSYS, INC.",,,"28925 FOUNTAIN PARKWAY",,"SOLON","OH","44139",,,,,,,,,,,,,,,,,,"340907152","4405198700","425120","AGILYSYS, INC.",,"28925 FOUNTAIN PARKWAY",,"SOLON","OH","44139",,,,,,,"340907152","4405198700",,,,"2011-06-23T12:46:13-0500","SUSAN GERLACH",,,,,1457,1457,,,1457,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"1","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623162201P040012274722008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EDWARD W. SCOTT ELECTRIC CO., INC PROFIT SHARING PLAN","001","1988-01-01","EDWARD W. SCOTT ELECTRIC CO., INC",,,"1150 25TH ST",,"SAN FRANCISCO","CA","94107",,,,,,,"1150 25TH STREET",,"SAN FRANCISCO","CA","94107",,,,,,,"941482078","4152067120","238210","ADMINISTRATIVE COMMITTEE OF THE EDWARD W. SCOTT ELEC CO. INC P/S PL",,"1150 25TH ST",,"SAN FRANCISCO","CA","94107",,,,,,,"943098790","4152067120",,,,"2011-06-23T09:02:31-0500","EILEEN B LYNCH","2011-06-23T09:02:31-0500","EILEEN B LYNCH",,,30,22,,8,30,,30,30,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623162334P040012274866001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MICROSCAN SYSTEMS HEALTH AND WELFARE PLAN","501","1996-01-01","MICROSCAN SYSTEMS, INC.",,,"700 SW 39TH STREET",,"RENTON","WA","98057",,,,,,,,,,,,,,,,,,"061237374","4252265770","335900","MICROSCAN SYSTEMS, INC.",,"700 SW 39TH STREET",,"RENTON","WA","98057",,,,,,,"061237374","4252265770",,,,"2011-06-23T11:38:24-0500","EVE HEWITT","2011-06-23T11:38:24-0500","EVE HEWITT",,,129,109,0,0,109,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623162823P040083596113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREATER PHOENIX CONVENTION & VISITORS BUREAU 401(K) PLAN","003","1997-01-01","GREATER PHOENIX CONVENTION & VISITORS BUREAU",,,"400 E VAN BUREN ST ONE AZ CTR 600",,"PHOENIX","AZ","850042290",,,,,,,,,,,,,,,,,,"860224211","6024526204","713900","GREATER PHOENIX CONVENTION & VISITORS BUREAU",,"400 E VAN BUREN ST ONE AZ CTR 600",,"PHOENIX","AZ","850042290",,,,,,,"860224211","6024526204",,,,"2011-06-23T16:28:16-0500","MICHAEL A MOONEY",,,,,80,52,0,23,75,0,75,74,2,,"2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623151015P030081124961001","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"IATSE LOCAL 12 WELFARE PLAN","501","2000-01-01","TRUSTEES OF IATSE LOCAL 12 WELFARE",,,"P O BOX 362",,"COLUMBUS","OH","432160362",,,,,,,,,,,,,,,,,,"311732862","6142214341","561900","TRUSTEES OF IATSE LOCAL 12 WELFARE",,"P O BOX 362",,"COLUMBUS","OH","432160362",,,,,,,"311732862","6142214341",,,,"2011-06-23T09:51:04-0500","GREGORY BRYAN","2011-06-23T11:08:17-0500","RONALD CHAPMAN",,,32,29,,,29,,29,,,,,"4A4D4E",,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622134120P040082941105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MINNESOTA NEONATAL PHYSICIANS, P.A. 401(K) PROFIT SHARING PLAN","002","1983-01-01","MINNESOTA NEONATAL PHYSICIANS, P.A.",,,"2545 CHICAGO AVE. S., SUITE 512",,"MINNEAPOLIS","MN","55404",,,,,,,,,,,,,,,,,,"411438410","6128137198","621111","MINNESOTA NEONATAL PHYSICIANS, P.A.",,"2545 CHICAGO AVE. S., SUITE 512",,"MINNEAPOLIS","MN","55404",,,,,,,"411438410","6128137198",,,,"2011-06-22T13:41:04-0500","MICHELLE RAW",,,,,21,18,0,2,20,0,20,20,0,,"2E2F2G2J2K2R3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622163915P030080577425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOYD KEITH FRIEDLANDER PARTNERS, LTD. AGE WEIGHTED PROFIT SHARING PLAN","001","1992-01-01","LOYD KEITH FRIEDLANDER PARTNERS, LTD.",,,"18 PROSPECT STREET",,"HUNTINGTON","NY","11743",,,,,,,,,,,,,,,,,,"112973781","6314242600","524210","LOYD KEITH FRIEDLANDER PARTNERS, LTD.",,"18 PROSPECT STREET",,"HUNTINGTON","NY","11743",,,,,,,"112973781","6314242600",,,,"2011-06-22T16:00:25-0500","LOYD KEITH FRIEDLANDER","2011-06-22T16:00:25-0500","LOYD KEITH FRIEDLANDER",,,7,7,0,1,8,0,8,7,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622135018P030380170400001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRIAN L. HOCHSTEIN, D.D.S., P.A. 401K PLAN","001","2006-01-01","BRIAN L. HOCHSTEIN, D.D.S., P.A.",,,"2244 S BUCKNER BLVD STE C",,"DALLAS","TX","752278578",,,,,,,,,,,,,,,,,,"752673238","2143810663","621210","BRIAN L. HOCHSTEIN, D.D.S., P.A.",,"2244 S BUCKNER BLVD STE C",,"DALLAS","TX","752278578",,,,,,,"752673238","2143810663",,,,"2011-06-22T13:44:04-0500","BRIAN HOCHSTEIN",,,,,19,16,0,5,21,0,21,21,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623070826P030080901985001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FORD MOTOR COMPANY GENERAL RETIREMENT PLAN","002","1950-03-01","FORD MOTOR COMPANY",,,"ONE AMERICAN ROAD",,"DEARBORN","MI","48126",,,,,,,,,,,,,,,,,,"380549190","3133229379","336100","FORD MOTOR COMPANY",,"ONE AMERICAN ROAD",,"DEARBORN","MI","48126",,,,,,,"380549190","3133229379",,,,"2011-06-23T07:00:46-0500","PAMELA DEVEER",,,,,124847,30477,52285,29133,111895,12915,124810,,853,,"1A1B1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","1","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623081034P040026107207001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BODINE ELECTRIC COMPANY FLEXIBLE COMPENSATION PLAN","502","2009-01-01","BODINE ELECTRIC COMPANY",,,"19225 KAPP DRIVEP",,"PEOSTA","IA","52068",,,,,,,,,,,,,,,,,,"360821210","5635838326","335310","BODINE ELECTRIC COMPANY",,"19225 KAPP DRIVE",,"PEOSTA","IA","52068",,,,,,,"360821210","5635838326",,,,"2011-06-23T07:58:33-0500","JEFFERY STAHL",,,,,140,139,0,0,139,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110621150322P030377611328001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"YOUNG & COMPANY 401(K) PROFIT SHARING PLAN","001","2009-01-01","YOUNG & COMPANY",,,"722 WEST SOLANO DRIVE",,"SCOTTSDALE","AZ","85013",,,,,,,,,,,,,,,,,,"860991132","6023918765","523900","YOUNG & COMPANY",,"722 WEST SOLANO DRIVE",,"SCOTTSDALE","AZ","85013",,,,,,,"860991132","6023918765",,,,"2011-06-21T14:55:10-0500","BENJAMIN POWERS",,,,,6,4,0,2,6,0,6,5,0,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110622101456P040375770496001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE GLEASON WORKS GROUP LIFE INSURANCE","501","1960-01-01","THE GLEASON WORKS",,,"PO BOX 22970",,"ROCHESTER","NY","146922970",,,,,,,"1000 UNIVERSITY AVENUE",,"ROCHESTER","NY","146922970",,,,,,,"160450130","5854731000","333510","THE GLEASON WORKS",,"PO BOX 22970",,"ROCHESTER","NY","146922970",,,,,,,"160450130","5854731000",,,,"2011-06-22T10:14:44-0500","MICHELLE HARDEN",,,,,486,473,0,0,473,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622164326P030080579713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LUNDY & SHACTER, P.A. 401K PLAN","001","1994-07-01","LUNDY & SHACTER, P.A.",,,"400 NORTH PINE ISLAND ROAD","SUITE 300","PLANTATION","FL","333241868",,,,,,,,,,,,,,,,,,"650387313","9544520100","541211","LUNDY & SHACTER, P.A.",,"400 NORTH PINE ISLAND ROAD","SUITE 300","PLANTATION","FL","333241868",,,,,,,"650387313","9544520100",,,,"2011-06-22T16:43:25-0500","RICHARD LUNDY",,,,,18,15,0,0,15,0,15,15,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623085713P040083379889001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"THE CLEMONS COMPANY 401(K) PLAN","001","1987-01-01","THE CLEMONS COMPANY",,,"P.O. BOX 2298",,"PANAMA CITY","FL","32402",,,,,,,,,,,,,,,,,,"593568123","8507634451","524290","THE CLEMONS COMPANY",,"P.O. BOX 2298",,"PANAMA CITY","FL","32402",,,,,,,"593568123","8507634451",,,,"2011-06-23T08:57:11-0500","ELIZABETH CAMPBELL","2011-06-23T08:57:11-0500","ELIZABETH CAMPBELL",,,6,4,0,1,5,0,5,4,0,,"2G2J3D2E",,"1",,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623091055P030013365718001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROMEO BIHAG TAN SERP","001","1998-01-01","ROMEO B TAN MD",,,"1601 THIRD STREET",,"MOUNDSVILLE","WV","26041",,,,,,,"1601 THIRD STREET",,"MOUNDSVILLE","WV","26041",,,,,,,"550553993","3048452330","621111","ROMEO B TAN MD",,"1601 THIRD STREET",,"MOUNDSVILLE","WV","26041",,,,,,,"550553993","3048452330",,,,"2011-06-23T09:10:04-0500","ROMEO TAN",,,,,5,4,,1,5,,5,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110624083730P030011842658001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STANDARD ELECTRIC SUPPLY CO. FLEXIBLE BENEFITS PLAN","501","2000-01-01","STANDARD ELECTRIC SUPPLY CO.",,,"222 N EMMBER LN",,"MILWAUKEE","WI","53233",,,,,,,,,,,,,,,,,,"390630070","4142728100","423600","SASI",,"1720 W FLORIST AVE, SUITE 250",,"MILWAUKEE","WI","53209",,,,,,,"260843192","4142249099",,,,"2011-06-13T14:03:07-0500","BRIAN KONKEL","2011-06-24T08:32:56-0500","CASSIE PETTY",,,108,107,,,107,,,,,,,"4A4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621141852P040082337553001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ACARA HOLDINGS, LLC DBA BUSINESS CARD EXPRESS 401(K) PLAN & TRUST","001","1992-04-01","ACARA HOLDINGS, LLC","BUSINESS CARD EXPRESS",,"4 TINKHAM AVE","P.O. BOX 287","DERRY","NH","030380287",,,,,,,,,,,,,,,,,,"020517723","6034343175","323100","ACARA HOLDINGS, LLC",,"4 TINKHAM AVE","P.O. BOX 287","DERRY","NH","030380287",,,,,,,"020517723","6034343175",,,,"2011-06-21T14:18:46-0500","RON HAUFF",,,,,35,26,0,7,33,0,33,16,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621141933P040373527680001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHENANDOAH ASSET MANAGEMENT, L.L.C. 401(K) PROFIT SHARING PLAN","001","2002-01-01","SHENANDOAH ASSET MANAGEMENT, L.L.C.",,,"300 W. MORGAN STREET, SUITE 1200",,"DURHAM","NC","27701",,,,,,,,,,,,,,,,,,"541924083","9196888600","523900","SHENANDOAH ASSET MANAGEMENT, L.L.C.",,"300 W. MORGAN STREET, SUITE 1200",,"DURHAM","NC","27701",,,,,,,"541924083","9196888600",,,,"2011-06-21T13:45:30-0500","CAMERON F. MCLENNAN",,,,,5,4,0,0,4,0,4,4,0,,"2E2F2G2J2R3B3D2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110622165151P030025096439001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PATTERSON LEGAL GROUP, L.C. PROFIT SHARING PLAN","001","2005-01-01","PATTERSON LEGAL GROUP, L.C.",,,"245 NORTH WACO, SUITE 405",,"WICHITA","KS","67202",,,,,,,,,,,,,,,,,,"481188222","3166872400","541110","PATTERSON LEGAL GROUP, L.C.",,"245 NORTH WACO, SUITE 405",,"WICHITA","KS","67202",,,,,,,"481188222","3166872400","PATTERSON BURK, L.C.",,,"2011-06-22T16:51:34-0500","ANGELA PATTERSON",,,,,6,9,0,2,11,0,11,7,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622154906P030380439792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRANDT CRIMINAL DEFENSE PROFIT SHARING PLAN","001","2006-01-01","BRANDT CRIMINAL DEFENSE",,,"403 JACKSON STREET, SUITE 303",,"ANOKA","MN","55303",,,,,,,,,,,,,,,,,,"020760335","7634216366","541110","BRANDT CRIMINAL DEFENSE",,"403 JACKSON STREET, SUITE 303",,"ANOKA","MN","55303",,,,,,,"020760335","7634216366",,,,"2011-06-22T15:42:40-0500","MICHAEL J. BRANDT",,,,,3,3,0,0,3,0,3,3,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623101636P030011754146001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CROWN FLEXO GRAPHICS, INC. 401(K) PROFIT SHARING PLAN","001","1997-01-01","CROWN FLEXO GRAPHICS, INC.",,,"2624 VERNE ROBERTS CIRCLE","SUITE 111","ANTIOCH","CA","94509",,,,,,,,,,,,,,,,,,"943263528","9252064030","541400","CROWN FLEXO GRAPHICS, INC.",,"2624 VERNE ROBERTS CIRCLE","SUITE 111","ANTIOCH","CA","94509",,,,,,,"943263528","9252064030",,,,"2011-06-23T10:16:33-0500","ROLLAND P. RICE",,,,,4,3,0,1,4,0,4,4,0,,"2E2F2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622132920P040012164898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPECTRUM FINANCIAL SYSTEMS INC RETIREMENT SAVINGS PLAN","001","1990-05-01","SPECTRUM FINANCIAL SYSTEMS, INC,",,,"163 MCKENZIE ROAD",,"MOORESVILLE","NC","28115",,,,,,,,,,,,,,,,,,"581751051","7046634466","541519","SPECTRUM FINANCIAL SYSTEMS, INC,",,"163 MCKENZIE ROAD",,"MOORESVILLE","NC","28115",,,,,,,"581751051","7046634466",,,,"2011-06-22T13:29:09-0500","ROSEMARY MACRI",,,,,81,56,0,12,68,0,68,64,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623163613P040026191175001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ZOOLOGICAL SOCIETY OF CINCINNATI GROUP DISABILITY AND TERM LIFE PLAN","502","1987-07-01","ZOOLOGICAL SOCIETY OF CINCINNATI",,"LORI L. VOSS","3400 VINE STREET",,"CINCINNATI","OH","45220",,,,,,,"3400 VINE STREET",,"CINCINNATI","OH","45220",,,,,,,"310537171","5132814700","712100","ZOOLOGICAL SOCIETY OF CINCINNATI","LORI L. VOSS","3400 VINE STREET",,"CINCINNATI","OH","45220",,,,,,,"310537171","5132814700",,,,"2011-06-23T16:35:33-0500","LORI VOSS",,,,,211,206,0,0,206,0,206,,,,,"4B4F4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623184244P030383564304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ORNAMENTAL MOULDINGS, LLC EMPLOYEE DENTAL PLAN","506","2006-01-01","ORNAMENTAL MOULDINGS, LLC",,,"3804 COMANCHE ROAD",,"ARCHDALE","NC","27263",,,,,,,,,,,,,,,,,,"562369490","3364319120","525100","ORNAMENTAL MOULDINGS, LLC",,"3804 COMANCHE ROAD",,"ARCHDALE","NC","27263",,,,,,,"562369490","3364319120",,,,"2011-06-23T18:42:39-0500","DENNIS LOWE",,,,,143,103,4,0,107,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110624102129P040084015265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRECISION ENGINEERED PRODUCTS FLEXIBLE BENEFIT PLAN","502","2009-01-01","PRECISION ENGINEERED PRODUCTS, INC.",,,"110 FRANK MOSSBERG DRIVE",,"ATTLEBORO","MA","02703",,,,,,,,,,,,,,,,,,"010757398","5082265600","339900","PRECISION ENGINEERED PRODUCTS, INC.",,"110 FRANK MOSSBERG DRIVE",,"ATTLEBORO","MA","02703",,,,,,,"010757398","5082265600",,,,"2011-06-24T10:21:21-0500","THOMAS MURRAY",,,,,146,138,0,0,138,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110622131255P030025051527001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","0","0",,"DANIEL COSGROVE MD., A MEDICAL CORP. 401(K) PROFIT SHARING PLAN & TRUST","001","2002-01-01","DANIEL COSGROVE MD., A MEDICAL CORP.",,,"49-499 EISENHOWER DRIVE",,"LA QUINTA","CA","92253",,,,,,,"49-499 EISENHOWER DRIVE",,"LA QUINTA","CA","92253",,,,,,,"330600561","7607778772","541990","DANIEL COSGROVE MD., A MEDICAL CORP.",,"49-499 EISENHOWER DRIVE",,"LA QUINTA","CA","92253",,,,,,,"330600561","7607778772",,,,"2011-06-22T13:11:25-0500","DANIEL COSGROVE",,,,,2,0,0,0,0,0,0,0,0,0,"2E2G2J2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622120008P030011671618002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LASALLE ELEC SUPPLY CO EMPL PS RET PLAN & TRUST","001","1984-01-01","LASALLE ELECTRIC SUPPLY CO.",,,"34073 SCHOOLCRAFT",,"LIVONIA","MI","481501313",,,,,,,,,,,,,,,,,,"380408570","7344256200","423600","JAMES GATWARD",,"34073 SCHOOLCRAFT",,"LIVONIA","MI","481501313",,,,,,,"380408570","7344256200",,,,"2011-06-20T13:47:58-0500","JAMES GATWARD","2011-06-22T11:52:33-0500","JAMES GATWARD",,,23,20,0,2,22,0,22,22,2,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622094626P040082818049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEXSERV, INC. 401(K) PROFIT SHARING PLAN","001","2009-01-30","MEXSERV, INC.",,,"22328 COLLINGTON DR.",,"BOCA RATON","FL","33428",,,,,,,,,,,,,,,,,,"264153461","5614709217","812990","MEXSERV, INC.",,"22328 COLLINGTON DR.",,"BOCA RATON","FL","33428",,,,,,,"264153461","5614709217",,,,"2011-06-22T09:46:15-0500","LUIS GALINDO",,,,,1,4,0,0,4,,4,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622171233P040376668928001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRESCENT PARK 401(K) PLAN","001","2006-01-01","CRESCENT PARK COMMUNITY CHILDCARE",,,"4161 ALMA STREET",,"PALO ALTO","CA","94306",,,,,,,,,,,,,,,,,,"770548348","6503229668","611000","CRESCENT PARK COMMUNITY CHILDCARE",,"4161 ALMA STREET",,"PALO ALTO","CA","94306",,,,,,,"770548348","6503229668","CRESCENT PARK COMMUNITY CHILD CARE","770548348","001","2011-06-22T16:48:56-0500","STEPHANIE HILL",,,,,12,9,0,3,12,0,12,10,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622135623P030380184816001","2002-09-01","2003-08-31","2",,"0","0","0","0","0","0","0","1","0",,"YAVNEH ACADEMY 403B TDA PLAN","002","1992-10-01","YAVNEH ACADEMY",,,"155 FARVIEW AVENUE",,"PARAMUS","NJ","07652",,,,,,,"155 FARVIEW AVENUE",,"PARAMUS","NJ","07652",,,,,,,"221613659","2012628494","611000","YAVNEH ACADEMY",,"155 FARVIEW AVENUE",,"PARAMUS","NJ","07652",,,,,,,"221613659","2012628494",,,,"2011-06-22T13:21:12-0500","JOEL KIRSCHNER",,,,,0,0,0,,0,,0,,,,"2L",,"1",,"1",,"1",,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623112738P030081019441001","2010-08-01","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"SHAREPLUS FEDERAL BANK 401(K) PLAN AND TRUST","002","1997-01-01","SHAREPLUS FEDERAL BANK",,,"5224 WEST PLANO PARKWAY",,"PLANO","TX","75093",,,,,,,,,,,,,,,,,,"751004819","9729315311","522120","SHAREPLUS FEDERAL BANK",,"5224 WEST PLANO PARKWAY",,"PLANO","TX","75093",,,,,,,"751004819","9729315311",,,,"2011-06-23T11:27:30-0500","JEFF WEAVER","2011-06-23T11:27:30-0500","JEFF WEAVER",,,0,59,0,14,73,0,73,54,3,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623154712P040012270866001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLORADO PULMONARY ASSOCIATES PC EMPLOYEES' PROFIT SHARING PLAN","001","1980-11-25","COLORADO PULMONARY ASSOCIATES, PC",,,"1721 EAST 19TH AVENUE, STE 366",,"DENVER","CO","802181242",,,,,,,,,,,,,,,,,,"840829880","3038630300","621111","COLORADO PULMONARY ASSOCIATES, PC",,"1721 EAST 19TH AVENUE, STE 366",,"DENVER","CO","802181242",,,,,,,"840829880","3038630300",,,,"2011-06-23T15:27:03-0500","JEFFREY SCHWARTZ","2011-06-23T15:29:33-0500","JEFFREY SCHWARTZ",,,20,14,0,9,23,0,23,20,0,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621160947P040082398641001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"UNITED MEDICAL GROUP, LLC PROFIT SHARING 401(K) PLAN","001","1998-01-01","UNITED MEDICAL GROUP, LLC",,,"5701 STATE AVE","SUITE 100","KANSAS CITY","KS","66102",,,,,,,"5701 STATE AVE","SUITE 100","KANSAS CITY","KS","66102",,,,,,,"431797047","9135963245","621111","UNITED MEDICAL GROUP, LLC",,"5701 STATE AVE","SUITE 100","KANSAS CITY","KS","66102",,,,,,,"431797047","9135963245",,,,"2011-06-21T16:08:37-0500","PRATIP PATEL",,,,,67,41,0,17,58,1,59,58,4,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110622173318P040376703008001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"PANO LOGIC INC. 401(K) PLAN","001","2006-11-01","PANO LOGIC INC.",,,"2000 SEAPORT BLVD","STE 200","REDWOOD CITY","CA","94063",,,,,,,"2000 SEAPORT BLVD","STE 200","REDWOOD CITY","CA","94063",,,,,,,"204387667","6504548940","519100","PANO LOGIC INC.",,"2000 SEAPORT BLVD","STE 200","REDWOOD CITY","CA","94063",,,,,,,"204387667","6504548940",,,,"2011-06-22T16:54:07-0500","MICHELLE LAMBRECHTS","2011-06-22T17:00:42-0500","MICHELLE LAMBRECHTS",,,63,69,0,18,87,0,87,58,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622143559P030380274928001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"WILD RICE ELECTRIC COOPERATIVE, INC. 401(K) PLAN","001","1978-01-01","WILD RICE ELECTRIC COOPERATIVE, INC",,,"P. O. BOX 438",,"MAHNOMEN","MN","56557",,,,,,,,,,,,,,,,,,"410612945","2189352517","221100","WILD RICE ELECTRIC COOPERATIVE, INC",,"P. O. BOX 438",,"MAHNOMEN","MN","56557",,,,,,,"410612945","2189352517",,,,"2011-06-22T14:35:50-0500","STEVEN J HAAVEN",,,,,27,23,0,2,25,0,25,25,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623113740P030081025073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PSRBB INDUSTRIAL GROUP, INC. 401(K) PLAN","001","2004-01-01","PSRBB INDUSTRIAL GROUP, INC.",,,"1845 NORTHWESTERN DR STE A",,"EL PASO","TX","79912",,,,,,,,,,,,,,,,,,"202673124","9158772020","541990","PSRBB INDUSTRIAL GROUP, INC.",,"1845 NORTHWESTERN DR STE A",,"EL PASO","TX","79912",,,,,,,"202673124","9158772020",,,,"2011-06-23T11:37:26-0500","HAROLD PRESTIDGE",,,,,9,9,0,0,9,0,9,9,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623113823P030081025393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EAST WEST MARKETING INC 401K RETIREMENT PLAN","001","1995-06-01","EAST WEST MARKETING, INC.","EAST WEST MARKETING, INC.","SHIRLEY PRATHER","977 W MAIN STREET",,"TIPP CITY","OH","45371",,,,,,,"977 W MAIN STREET",,"TIPP CITY","OH","45371",,,,,,,"331193483","9376675033","423990","EAST WEST MARKETING, INC,","SHIRLEY PRATHER","977 W. MAIN STREET",,"TIPP CITY","OH","45371",,,,,,,"331193483","9376675033",,,,"2011-06-23T11:37:43-0500","SHIRLEY PRATHER",,,,,3,3,,,3,,3,,,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623161745P040012274450001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"KYSAR & KOISTINEN, INC. 401(K) PROFIT SHARING PLAN","002","2003-01-01","KYSAR & KOISTINEN, INC.",,,"2817 NE CEDAR CREEK ROAD",,"WOODLAND","WA","98674",,,,,,,,,,,,,,,,,,"911586400","3602252142","238900","KYSAR & KOISTINEN, INC.",,"2817 NE CEDAR CREEK ROAD",,"WOODLAND","WA","98674",,,,,,,"911586400","3602252142",,,,"2011-06-23T16:16:45-0500","JILL KOISTINEN",,,,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622103958P040082851937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNIVERSAL INDUSTRIAL SUPPLY RETIREMENT PLAN","001","2005-01-01","UNIVERSAL INDUSTRIAL SUPPLY",,,"9936 PRINCETON GLENDALE ROAD",,"CINCINNATI","OH","45246",,,,,,,,,,,,,,,,,,"311639018","5137697470","812990","UNIVERSAL INDUSTRIAL SUPPLY",,"9936 PRINCETON GLENDALE ROAD",,"CINCINNATI","OH","45246",,,,,,,"311639018","5137697470",,,,"2011-06-22T10:39:46-0500","ANTHONY KENNEALLY",,,,,8,5,0,5,10,0,10,10,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622104210P030080405313001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"FAMILY SERVICES OF CHEMUNG COUNTY, INC. LTD PLAN","502","2010-01-01","FAMILY SERVICES OF CHEMUNG COUNTY, INC.",,"TERRY SWANK","1019 E. WATER ST.",,"ELMIRA","NY","14901",,,,,,,"1019 E. WATER ST.",,"ELMIRA","NY","14901",,,,,,,"160743995","6077335696","621420","FAMILY SERVICES OF CHEMUNG COUNTY, INC.","TERRY SWANK","1019 E. WATER ST.",,"ELMIRA","NY","14901",,,,,,,"160743995","6077335696",,,,"2011-06-22T10:41:10-0500","PAMELA DEPRIMO",,,,,111,119,,,119,,119,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622175726P040012183202001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"PROACTA 401(K) PLAN","001","2004-01-01","PROACTA",,,"4275 EXECUTIVE SQUARE","SUITE 440","LA JOLLA","CA","92037",,,,,,,"4275 EXECUTIVE SQUARE","SUITE 440","LA JOLLA","CA","92037",,,,,,,"201962757","8586420386","541700","PROACTA",,"4275 EXECUTIVE SQUARE","SUITE 440","LA JOLLA","CA","92037",,,,,,,"201962757","8586420386",,,,"2011-06-22T17:45:56-0500","JOHN GUTHEIL",,,,,9,4,0,5,9,0,9,9,4,,"2E2F2G2J2K2S2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622180629P030080604785001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"STUDIO KATZ AND ASSOCIATES, INC. 401K PLAN","001","2001-01-01","STUDIO KATZ AND ASSOCIATES, INC.","STUDIO KATZ AND ASSOCIATES, INC.",,"6479 DWANE AVE",,"SAN DIEGO","CA","92120",,,,,,,"6479 DWANE AVE",,"SAN DIEGO","CA","92120",,,,,,,"330895687","6199959773","541320","STUDIO KATZ AND ASSOCIATES, INC.",,"6479 DWANE AVE",,"SAN DIEGO","CA","92120",,,,,,,"330895687","6199959773",,,,"2011-06-22T18:05:46-0500","BRIAN KATZ",,,,,20,10,0,6,16,,16,13,0,,"2E2F2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622151147P030011687218001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","1","0","1","0",,"NEWMAN, MCDONOUGH, SCHOFEL AND GIGER PC 401(K) PLAN","003","2002-01-01","NEWMAN, MCDONOUGH, SCHOFEL AND GIGER PC",,,"101 EISENHOWER PARKWAY",,"ROSELAND","NJ","07068",,,,,,,,,,,,,,,,,,"222769714","9734039292","541110","NEWMAN, MCDONOUGH, SCHOFEL AND GIGER PC",,"101 EISENHOWER PARKWAY",,"ROSELAND","NJ","07068",,,,,,,"222769714","9734039292",,,,"2011-06-22T15:10:25-0500","GARY NEWMAN",,,,,12,11,0,0,11,0,11,6,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623100558P030382473808001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"PUTNAM ABSOLUTE RETURN FIXED INCOME FUND","270","2008-07-07","PUTNAM FIDUCIARY TRUST COMPANY",,,"ONE POST OFFICE SQUARE",,"BOSTON","MA","021092106",,,,,,,,,,,,,,,,,,"262407878","6177608794","525100","PUTNAM FIDUCIARY TRUST COMPANY",,"ONE POST OFFICE SQUARE",,"BOSTON","MA","021092106",,,,,,,"262407878","6177608794",,,,,,,,"2011-06-23T10:04:23-0500","NICHOLAS CHINGRIS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-06-23",,"Filed with authorized/valid electronic signature", "20110623102522P040378582192001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THE MISSION SOCIETY 401(K) RETIREMENT PLAN","001","2009-01-01","THE MISSION SOCIETY",,,"6234 CROOKED CREEK ROAD",,"NORCROSS","GA","30052",,,,,,,,,,,,,,,,,,"581546441","7704461381","813000","THE MISSION SOCIETY",,"6234 CROOKED CREEK ROAD",,"NORCROSS","GA","30052",,,,,,,"581546441","7704461381",,,,"2011-06-23T10:21:46-0500","IVAR C. QUINDSLAND",,,,,97,80,0,20,100,0,100,93,5,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110627150215P030083351297006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NOVEN & ASSOCIATES PC 401K PLAN","001","2009-12-01","NOVEN & ASSOCIATES, PC",,,"1777 S HARRISON ST 1510",,"DENVER","CO","80210",,,,,,,,,,,,,,,,,,"263076550","3037829100","541211","NOVEN & ASSOCIATES PC",,"1777 S HARRISON ST 1510",,"DENVER","CO","80210",,,,,,,"263076550","3037829100",,,,"2011-06-27T14:52:36-0500","DANIEL A NOVEN",,,,,9,8,,,8,,8,7,,,"2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627161217P040012629762001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"HILDE COMPANIES PROFIT SHARING AND 401(K) SAVINGS PLAN","333","1976-01-01","SATELLITE INDUSTRIES, INC.",,,"2530 XENIUM LN N",,"MINNEAPOLIS","MN","554413695",,,,,,,,,,,,,,,,,,"410854413","7635517289","339900","SATELLITE INDUSTRIES, INC.",,"2530 XENIUM LN N",,"MINNEAPOLIS","MN","554413695",,,,,,,"410854413","7635517289",,,,"2011-06-27T16:10:10-0500","JOHN BABCOCK",,,,,266,213,0,41,254,0,254,232,23,,"2E2F2G2J2S2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627090007P040085627409006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ANDERSON OCONEE SPEECH AND HEARING SERVICES, INC.","002","1991-01-01","ANDERSON-OCONEE SPEECH & HEARING SERVICES, INC.",,"DICK L. BRANDON","106 DOSTAK DRIVE",,"ANDERSON","SC","29621",,,,,,,,,,,,,,,,,,"591173611","8642262477","621399","ANDERSON-OCONEE SPEECH & HEARING SERVICES, INC.","DICK L. BRANDON","106 DOSTAK DRIVE",,"ANDERSON","SC","29621",,,,,,,"591173611","8642262477",,,,"2011-06-27T08:59:11-0500","DICK BRANDON",,,,,9,3,0,6,9,0,9,9,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627181251P030025994231001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"RESOURCE CONCEPTS, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1984-01-01","RESOURCE CONCEPTS INC",,,"340 NORTH MINNESOTA STREET",,"CARSON CITY","NV","897034152",,,,,,,"340 NORTH MINNESOTA STREET",,"CARSON CITY","NV","897034152",,,,,,,"880148691","7758831600","541330","RESOURCE CONCEPTS INC",,"340 NORTH MINNESOTA STREET",,"CARSON CITY","NV","897034152",,,,,,,"880148691","7758831600",,,,"2011-06-27T18:05:16-0500","JOHN MCLAIN","2011-06-27T17:44:04-0500","BRUCE SCOTT",,,54,40,0,9,49,1,50,48,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627151800P030083362849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TALASCEND, LLC LONG TERM DISABILITY PLAN","580","2002-06-17","TALASCEND, LLC",,,"5700 CROOKS RD., STE 450",,"TROY","MI","48098",,,,,,,,,,,,,,,,,,"743034970","2485371300","541330","TALASCEND, LLC",,"5700 CROOKS RD., STE 450",,"TROY","MI","48098",,,,,,,"743034970","2485371300",,,,"2011-06-27T15:17:50-0500","MAUREEN WOOD",,,,,127,127,0,0,127,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627080255P030013711206001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAUL D HANKENSON, D.O., P.C 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","PAUL D HANKENSON, D.O., P.C.",,,"2044 WOODFIELD ROAD",,"OKEMOS","MI","48864",,,,,,,,,,,,,,,,,,"382222315","5176633344","621111","PAUL D HANKENSON, D.O., P.C.",,"2044 WOODFIELD ROAD",,"OKEMOS","MI","48864",,,,,,,"382222315","5176633344",,,,"2011-06-27T08:02:38-0500","PAUL D. HANKENSON","2011-06-27T08:02:38-0500","PAUL D. HANKENSON",,,5,5,0,0,5,0,5,4,0,,"2K2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627103330P030083207537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACUSHNET RUBBER COMPANY, INC SHORT-TERM DISABILITY PLAN","505","1995-01-01","ACUSHNET RUBBER COMPANY, INC","DBA PRECIX",,"744 BELLEVILLE AVENUE",,"NEW BEDFORD","MA","02745",,,,,,,,,,,,,,,,,,"133976048","5089984000","326200","ACUSHNET RUBBER COMPANY, INC",,"744 BELLEVILLE AVENUE",,"NEW BEDFORD","MA","02745",,,,,,,"133976048","5089984000",,,,"2011-05-19T14:36:57-0500","ROBERT J. ANDREONI","2011-06-27T10:33:25-0500","LYNNE MASTERA",,,179,197,0,0,197,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627135331P030083320369001","2004-11-01","2005-10-31","2",,"0","0","0","0","0","0","0","1","0",,"ORCHIDS PAPER PRODUCTS COMPANY LIFE, STD, LTD AND AD&D PLAN","503","1998-08-01","ORCHIDS PAPER PRODUCTS COMPANY",,,"4826 HUNT STREET",,"PRYOR","OK","743614480",,,,,,,,,,,,,,,,,,"232956944","9188250616","322200","ORCHIDS PAPER PRODUCTS COMPANY",,"4826 HUNT STREET",,"PRYOR","OK","743614480",,,,,,,"232956944","9188250616",,,,"2011-06-27T13:53:20-0500","HOGANTAYLOR LLP PREPARER",,,,,234,243,0,0,243,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627135340P040085782241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GOODWIN PROCTER LLP CONSOLIDATED WELFARE BENEFITS PLAN","501","1966-01-01","GOODWIN PROCTER LLP",,,"EXCHANGE PLACE",,"BOSTON","MA","02109",,,,,,,,,,,,,,,,,,"041378465","6175701000","541110","GOODWIN PROCTER LLP",,"EXCHANGE PLACE",,"BOSTON","MA","02109",,,,,,,"041378465","6175701000",,,,"2011-06-27T13:53:31-0500","MARIAN TSE","2011-06-27T13:53:31-0500","MARIAN TSE",,,1584,1454,105,0,1559,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","12","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627103508P030083208001001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"GIANTOMASI & OLIVEIRA, P.C. 401K","001","1998-01-01","GIANTOMASI & OLIVEIRA, P.C.",,,"292 LAFAYETTE ST.",,"NEWARK","NJ","071050000",,,,,,,,,,,,,,,,,,"223018766","9735890085","541110","GIANTOMASI & OLIVEIRA, P.C.",,"292 LAFAYETTE ST.",,"NEWARK","NJ","071050000",,,,,,,"223018766","9735890085",,,,"2011-06-27T10:34:34-0500","FRANCIS GIANTOMASI",,,,,15,0,0,0,0,0,0,0,0,,"2E2F2G3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627165623P030012124498001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KALYPSYS, INC. 401K PROFIT SHARING PLAN","001","2002-01-01","KALYPSYS, INC.",,,"445 MARINE VIEW AVENUE","STE 320","DEL MAR","CA","92014",,,,,,,,,,,,,,,,,,"330969990","8587543397","541700","KALYPSYS, INC.",,"445 MARINE VIEW AVENUE","STE 320","DEL MAR","CA","92014",,,,,,,"330969990","8587543397",,,,"2011-06-27T16:56:09-0500","DANA ZHANG","2011-06-27T16:56:09-0500","KALYPSYS INC.",,,83,45,0,60,105,1,106,70,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627123637P040085749521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TKLI 401K PLAN","001","2001-01-01","TKL INTERACTIVE",,,"3700 STANDRIDGE DRIVE","SUITE 210","THE COLONY","TX","75056",,,,,,,,,,,,,,,,,,"330928256","9723707878","541800","TKL INTERACTIVE",,"3700 STANDRIDGE DRIVE","SUITE 210","THE COLONY","TX","75056",,,,,,,"330928256","9723707878",,,,"2011-06-27T12:36:31-0500","SUZELLE LEE BAKER",,,,,7,6,0,0,6,0,6,6,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627100508P030002443971001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"SOUTHERN MAINE MEDICAL CENTER FLEXIBLE BENEFIT PLAN","506","1988-01-01","WEBBER HOSPITAL ASSOCIATION","SOUTHERN MAINE MEDICAL CENTER",,"PO BOX 626",,"BIDDEFORD","ME","04005",,,,,,,"ONE MEDICAL CENTER DRIVE",,"BIDDEFORD","ME","04005",,,,,,,"010179500","2072837261","622000","WEBBER HOSPITAL ASSOCIATION",,"PO BOX 626",,"BIDDEFORD","ME","04005",,,,,,,"010179500","2072837261",,,,"2011-06-27T10:01:36-0500","LORRAINE BOUCHARD",,,,,715,0,,,0,,0,,,,,"4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627135553P040085783201001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"COMPREHENSIVE OB/GYN, P.A. PROFIT-SHARING PLAN","001","2004-01-01","COMPREHENSIVE OB/GYN, P.A.",,,"12959 PALMS WEST DRIVE, SUITE 130",,"LAXAHATCHEE","FL","33470",,,,,,,,,,,,,,,,,,"651070245","5617935657","621111","COMPREHENSIVE OB/GYN, P.A.",,"12959 PALMS WEST DRIVE, SUITE 130",,"LAXAHATCHEE","FL","33470",,,,,,,"651070245","5617935657",,,,"2011-06-27T13:55:45-0500","DAVID ADLER",,,,,5,0,0,0,0,0,0,0,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627135639P030012109346001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PATRICK KWAN M.D., P.A. DEFINED BENEFIT PENSION PLAN","003","2005-01-01","PATRICK KWAN M.D., P.A.",,,"801 N. GRAND AVENUE, SUITE4",,"GAINESVILLE","TX","762403574",,,,,,,,,,,,,,,,,,"752558483","9406682663","621111","PATRICK KWAN M.D., P.A.",,"801 N. GRAND AVENUE, SUITE4",,"GAINESVILLE","TX","762403574",,,,,,,"752558483","9406682663",,,,"2011-06-27T13:36:50-0500","PATRICK KWAN","2011-06-27T13:36:50-0500","PATRICK KWAN",,,3,2,1,0,3,0,3,,0,,"1A3D",,,,"1",,,,"1",,,,"1",,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627121553P040389314800001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","1","0",,"JESUS ROBERTO VAZQUEZ, M.D., P.A. PROFIT SHARING PLAN & TRUST","001","1981-03-09","JESUS ROBERTO VAZQUEZ, M.D.",,,"5812 CROMO DR.",,"EL PASO","TX","79912",,,,,,,"5812 CROMO DR.",,"EL PASO","TX","79912",,,,,,,"742169874","9155337600","621111","JESUS ROBERTO VAZQUEZ, MD",,"5812 CROMO DR.",,"EL PASO","TX","79912",,,,,,,"742169874","9155337600",,,,"2011-06-27T12:12:21-0500","CLARENCE A. PITRE",,,,,3,0,0,0,0,1,1,0,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627174359P030083431153001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GOPAL K. BATRA, M.D., F.C.C.P., A MED CORP PENSION PLAN","002","1991-01-01","GOPAL K. BATRA, M.D., F.C.C.P., A MED CORP",,,"912 TEAKWOOD RD",,"LOS ANGELES","CA","90049",,,,,,,,,,,,,,,,,,"953953526","3107867100","621111","GOPAL K. BATRA, M.D., F.C.C.P., A MED CORP",,"912 TEAKWOOD RD",,"LOS ANGELES","CA","90049",,,,,,,"953953526","3107867100",,,,"2011-06-27T17:43:43-0500","GOPAL BATRA","2011-06-27T17:43:43-0500","GOPAL BATRA",,,4,0,,,0,,0,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627174451P040085880545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INCYTE CORPORATION GROUP BENEFIT PLAN","501","1991-07-20","INCYTE CORPORATION",,,"ROUTE 141 HENRY CLAY ROAD",,"WILMINGTON","DE","19880",,,,,,,"BUILDING E336 EXPERIMENTAL STATION",,"WILMINGTON","DE","19880",,,,,,,"943136539","3024986700","541700","INCYTE CORPORATION",,"ROUTE 141 HENRY CLAY ROAD",,"WILMINGTON","DE","19880",,,,,,,"943136539","3024986700",,,,"2011-06-27T16:15:19-0500","JENNIFER KILPATRICK","2011-06-27T16:17:57-0500","PAULA SWAIN",,,217,243,4,0,247,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627124131P040085751153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHWEST BEVERAGE, INC. PROFIT SHARING PLAN AND TRUST","001","1992-01-01","NORTHWEST BEVERAGE, INC.",,,"P.O. BOX 398",,"MOBRIDGE","SD","57601",,,,,,,"HIGHWAY 12 EAST",,"MOBRIDGE","SD","57601",,,,,,,"522136197","6058453902","424800","NORTHWEST BEVERAGE, INC.",,"P.O. BOX 398",,"MOBRIDGE","SD","57601",,,,,,,"522136197","6058453902",,,,"2011-06-27T12:41:25-0500","JEN PRESTON",,,,,6,6,0,0,6,0,6,6,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627132958P030083308209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUNSET PEDIATRIC PROFESSIONALS, P.A. PROFIT SHARING & 401(K) PLAN","001","2002-01-01","SUNSET PEDIATRIC PROFESSIONALS, P.A.",,,"8701 S.W. 128TH STREET",,"MIAMI","FL","33176",,,,,,,,,,,,,,,,,,"651113301","3052341700","621111","SUNSET PEDIATRIC PROFESSIONALS, P.A.",,"8701 S.W. 128TH STREET",,"MIAMI","FL","33176",,,,,,,"651113301","3052341700",,,,"2011-06-27T13:19:20-0500","LYDIA MASUD, M.D.",,,,,6,4,0,3,7,0,7,7,0,,"2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627143827P040389626352001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","0","0","0","0",,"KENNEDY CENTER OPERA HOUSE ORCHESTRA / WASHINGTON NATIONAL OPERA ORCHESTRA BENEFITS FUND","501","1988-05-27","KCOHO / WNOO BENEFITS FUND",,"PETER DE BOOR","431 N KENMORE ST",,"ARLINGTON","VA","22201",,,,,,,"431 N KENMORE ST",,"ARLINGTON","VA","22201",,,,,,,"521600352","7034659157","525100","KCOHO / WNOO BENEFITS FUND","PETER DE BOOR","431 N KENMORE ST",,"ARLINGTON","VA","22201",,,,,,,"521600352","7034659157",,,,"2011-06-21T22:58:09-0500","PETER DE BOOR",,,,,57,57,,,57,,57,,,2,,"4A4B4D4H4Q",,,"1",,"1",,"1",,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627113242P040026843479001","2010-01-01","2010-10-29","2",,"1","0","1","1","0","0","0","1","0",,"MOONDANCE HOLDINGS INC 401K PLAN","001","2009-06-19","MOONDANCE HOLDINGS INC",,,"310 ARTHUR #19",,"HOLLYWOOD","FL","33019",,,,,,,,,,,,,,,,,,"270419000","9545604263","323100","MOONDANCE HOLDINGS INC",,"310 ARTHUR #19",,"HOLLYWOOD","FL","33019",,,,,,,"270419000","9545604263",,,,"2011-06-27T11:32:33-0500","MITCH ROOKER","2011-06-27T11:32:33-0500","MITCH ROOKER",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627185256P030083452225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TWIN CITIES ORTHOPEDICS, P.A. CAFETERIA PLAN","501","2002-01-01","TWIN CITIES ORTHOPEDICS, P.A.",,,"6465 WAYZATA BOULEVARD","SUITE 900","ST LOUIS PARK","MN","55426",,,,,,,,,,,,,,,,,,"411861374","9525125600","621111","TWIN CITIES ORTHOPEDICS, P.A.",,"6465 WAYZATA BOULEVARD","SUITE 900","ST LOUIS PARK","MN","55426",,,,,,,"411861374","9525125600",,,,"2011-06-27T18:52:24-0500","SHARON HULBACK",,,,,479,481,0,0,481,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627163452P030083404193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE DOCTORS CLINIC LIFE INSURANCE PLAN","501","1974-07-01","THE DOCTORS CLINIC",,,"9621 RIDGETOP BLVD NW",,"SILVERDALE","WA","98383",,,,,,,,,,,,,,,,,,"911538918","3607823604","621111","THE DOCTORS CLINIC",,"9621 RIDGETOP BLVD NW",,"SILVERDALE","WA","98383",,,,,,,"911538918","3607823604",,,,"2011-06-27T16:34:48-0500","KATHERINE GALLINGTON","2011-06-27T16:34:48-0500","KATHERINE GALLINGTON",,,449,434,0,0,434,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627115652P040085733249001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"DESPERAK-BAKER ENTERPRISES, INC. 401(K) PROFIT SHARING PLAN","001","2007-07-20","DESPERAK-BAKER ENTERPRISES, INC.",,,"10854 BEVERLY GLEN AVE",,"BOYNTON BEACH","FL","33473",,,,,,,,,,,,,,,,,,"260564253","9546326004","442291","DESPERAK-BAKER ENTERPRISES, INC.",,"10854 BEVERLY GLEN AVE",,"BOYNTON BEACH","FL","33473",,,,,,,"260564253","9546326004",,,,"2011-06-27T11:53:18-0500","EDWARD BAKER",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627115723P030083248385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FAMILY CARE NETWORK WELFARE BENEFIT PLAN","501","2001-03-01","FAMILY CARE NETWORK",,,"709 W. ORCHARD DRIVE, SUITE 4",,"BELLINGHAM","WA","98225",,,,,,,,,,,,,,,,,,"911753976","3603189804","621111","FAMILY CARE NETWORK",,"709 W. ORCHARD DRIVE, SUITE 4",,"BELLINGHAM","WA","98225",,,,,,,"911753976","3603189804",,,,"2011-06-27T11:19:59-0500","KELLY BEEDLE",,,,,196,191,4,0,195,,,,,,,"4A4B4D4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627124746P030083283329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STELLAR MARKETING INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","STELLAR MARKETING, INC.",,,"2280 HWY 92 EAST",,"PLANT CITY","FL","33563",,,,,,,,,,,,,,,,,,"311341788","8138563663","424990","STELLAR MARKETING, INC.",,"2280 HWY 92 EAST",,"PLANT CITY","FL","33563",,,,,,,"311341788","8138563663",,,,"2011-06-27T00:47:44-0500","STELLAR MARKETING, INC.",,,,,5,5,0,0,5,0,5,5,0,,"2E2F2G2J2K2T3D3F",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627094220P040389015536001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"CARDINAL HEALTH STABLE VALUE FUND","002",,"CARDINAL HEALTH, INC.",,,"7000 CARDINAL PLACE",,"DUBLIN","OH","43017",,,,,,,,,,,,,,,,,,"043793339","6147575000",,"CARDINAL HEALTH, INC.",,"7000 CARDINAL PLACE",,"DUBLIN","OH","43017",,,,,,,"043793339","6147575000",,,,,,,,"2011-06-27T09:39:14-0500","DAWN RICH",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","1","3","1","1","0","FILING_RECEIVED","2011-06-27",,"Filed with authorized/valid electronic signature", "20110627094255P030083187425001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"CARDINAL HEALTH, INC. US QUALIFIED PLANS MASTER TRUST","001",,"CARDINAL HEALTH, INC.",,,"7000 CARDINAL PLACE",,"DUBLIN","OH","43017",,,,,,,,,,,,,,,,,,"043793339","6147575000",,"CARDINAL HEALTH, INC.",,"7000 CARDINAL PLACE",,"DUBLIN","OH","43017",,,,,,,"043793339","6147575000",,,,,,,,"2011-06-27T09:37:14-0500","DAWN RICH",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-27",,"Filed with authorized/valid electronic signature", "20110627082441P040012594290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACCESS COMMUNITY HEALTH CENTERS LIFE & DISABILITY PLAN","510","2007-09-01","ACCESS COMMUNITY HEALTH CENTERS",,,"2901 W. BELTLINE HWY, STE 120",,"MADISON","WI","53713",,,,,,,,,,,,,,,,,,"391391134","6084435558","621112","ACCESS COMMUNITY HEALTH CENTERS",,"2901 W. BELTLINE HWY, STE 120",,"MADISON","WI","53713",,,,,,,"391391134","6084435558",,,,"2011-06-24T16:51:16-0500","DAN SEERING",,,,,147,163,0,0,163,,,,,,,"4B4F4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627101536P040012601874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROGRESSIVE HYDRAULICS INC 401K AND PROFIT SHARING TRUST","001","1990-01-01","PROGRESSIVE HYDRAULICS INC",,,"280 NORTH MIDLAND AVE","BLDG. G-1","SADDLE BRO","NJ","07663",,,,,,,,,,,,,,,,,,"221896852","2017913400","423800","PROGRESSIVE HYDRAULICS INC",,"280 NORTH MIDLAND AVE","BLDG. G-1","SADDLE BRO","NJ","07663",,,,,,,"221896852","2017913400",,,,"2011-06-27T09:49:14-0500","DAVID SCHATTEMAN","2011-06-27T09:49:14-0500","DAVID SCHATTEMAN",,,43,36,0,4,40,0,40,29,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627151403P030025960727001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NDS TECHNOLOGIES, INC. 401(K) PLAN","001","2000-01-01","NDS TECHNOLOGIES, INC.",,,"891 E.OAK ROAD REAR",,"VINELAND","NJ","08360",,,,,,,,,,,,,,,,,,"223027514","8566910330","327210","NDS TECHNOLOGIES, INC.",,"891 E.OAK ROAD REAR",,"VINELAND","NJ","08360",,,,,,,"223027514","8566910330",,,,"2011-06-27T15:13:58-0500","ROBERT R. DEGRAZIA",,,,,24,24,0,2,26,0,26,12,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627095747P030083193601001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPE ANN TRANSPORTATION OPERATING COMPANY, INC. 40","001","1997-01-01","CAPE ANN TRANS. OPERATING CO., INC.",,,"3 REAR POND RD",,"GLOUCESTER","MA","01930",,,,,,,,,,,,,,,,,,"043016626","9782833936","485110","CAPE ANN TRANS. OPERATING CO., INC.",,"3 REAR POND RD",,"GLOUCESTER","MA","01930",,,,,,,"043016626","9782833936",,,,"2011-06-27T09:57:43-0500","ROBERT B. RYAN",,,,,36,40,0,0,40,0,40,19,1,,"2E2J2F2G2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627095836P030025902967001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PIERRE FOODS INC MEDICAL PLAN","501","1998-06-09","PIERRE FOODS INC",,,"9990 PRINCETON RD",,"CINCINNATI","OH","45246",,,,,,,,,,,,,,,,,,"560945643","5806164131","311610","PIERRE FOODS INC",,"9990 PRINCETON RD",,"CINCINNATI","OH","45246",,,,,,,"560945643","5806164131",,,,"2011-06-27T09:58:30-0500","BRIAN HAYDEN",,,,,1332,1270,12,0,1282,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627112357P030393131856001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"POWERSCREEN OF WASHINGTON RETIREMENT SAVINGS PLAN","001","2006-11-01","POWERSCREEN OF WASHINGTON, INC.",,,"32613 STATE ROUTE 2",,"SULTAN","WA","982948657",,,,,,,,,,,,,,,,,,"911707425","3607937686","541519","POWERSCREEN OF WASHINGTON, INC.",,"32613 STATE ROUTE 2",,"SULTAN","WA","982948657",,,,,,,"911707425","3607937686",,,,"2011-06-27T11:05:37-0500","GREG MACKENZIE",,,,,9,9,0,0,9,0,9,7,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110707074507P040091677617001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EMPLOYEE BENEFITS PLAN OF UNITED WAY OF ATLANTIC COUNTY","003","1994-01-01","UNITED WAY OF ATLANTIC COUNTY, INC",,,"4 EAST JIMMIE LEEDS ROAD-SUITE 10",,"GALLOWAY","NJ","08205",,,,,,,,,,,,,,,,,,"210646540","6094044483","813000","UNITED WAY OF ATLANTIC COUNTY, INC",,"4 EAST JIMMIE LEEDS ROAD-SUITE 10",,"GALLOWAY","NJ","08205",,,,,,,"210646540","6094044483",,,,"2011-07-07T07:36:02-0500","FRED SOPER",,,,,10,10,0,4,14,0,14,14,,,"2C2G",,"1",,,,"1",,,,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707074946P040091679457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"P C GODAIRE 401(K) PLAN","001","2007-02-01","P C GODAIRE, INC.",,,"PO BOX 68",,"DAMASCUS","MD","20872",,,,,,,,,,,,,,,,,,"521450154","3014287959","238220","P C GODAIRE, INC.",,"PO BOX 68",,"DAMASCUS","MD","20872",,,,,,,"521450154","3014287959",,,,"2011-07-07T07:48:40-0500","PHILIP GODAIRE",,,,,8,7,0,1,8,0,8,8,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110706131748P030417305872001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"GROUP LONG TERM DISABILITY INSURANCE FOR EMPLOYEES OF CONGRESSIONAL COUNTRY CLUB INC","508","2010-01-01","CONGRESSIONAL COUNTRY CLUB INC",,,"8500 RIVER ROAD",,"BETHESDA","MD","208172699",,,,,,,,,,,,,,,,,,"530050980","3014682038","713900","CONGRESSIONAL COUNTRY CLUB INC",,"8500 RIVER ROAD",,"BETHESDA","MD","208172699",,,,,,,"530050980","3014682038",,,,"2011-07-06T13:17:10-0500","DEAN DAVIDSON",,,,,196,222,2,0,224,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110705083757P030087772561001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"DETWILER FENTON GROUP, INC. 401(K) EMPLOYEE SAVINGS PLAN","001","1991-04-01","DETWILER FENTON GROUP, INC.",,,"100 HIGH ST STE 2800",,"BOSTON","MA","021102301",,,,,,,,,,,,,,,,,,"952627415","6174510100","551112","DETWILER FENTON GROUP, INC.",,"100 HIGH ST STE 2800",,"BOSTON","MA","021102301",,,,,,,"952627415","6174510100","DETWILER FENTON GROUP, INC.",,,"2011-07-05T08:37:56-0500","SUZANNE LYONS","2011-07-05T08:37:56-0500","SUZANNE LYONS",,,97,62,0,22,84,1,85,70,6,,"2E2F2G2J2K2R2T3H",,"1",,"1",,"1",,"1",,"1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705084000P030087774225001","2010-03-01","2011-02-28","2",,"0","1","0","0","0","0","0","0","0",,"PIEDMONT COMMUNITY ACTIONS EMPLOYEE BENEFITS PLAN","501","2001-03-01","PIEDMONT COMMUNITY ACTIONS, INC.",,,"P.O. BOX 5374",,"SPARTANBURG","SC","29304",,,,,,,"300 S. DANIEL MORGAN AVENUE",,"SPARTANBURG","SC","29306",,,,,,,"570476252","8643271116","624100","PIEDMONT COMMUNITY ACTIONS, INC.",,"P.O. BOX 5374",,"SPARTANBURG","SC","29304",,,,,,,"570476252","8643271116",,,,"2011-07-05T08:35:23-0500","WILLIAM ROSS",,,,,116,132,0,0,132,0,132,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705135642P040090556625001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"403 (B) THRIFT PLAN 2010","001","2010-01-01","PEOPLE ACTING IN COMMUNITY ENDEAVORS, INC.","PACE","BRUCE MORELL","166 WILLIAM STREET",,"NEW BEDFORD","MA","02740",,,,,,,"166 WILLIAM STREET",,"NEW BEDFORD","MA","02740",,,,,,,"042777810","5089999920","624200","PEOPLE ACTING IN COMMUNITY ENDEAVORS, INC.","BRUCE MORELL","166 WILLIAM STREET",,"NEW BEDFORD","MA","02740",,,,,,,"042777810","5089999920",,,,"2011-07-05T13:55:45-0500","BRUCE MORELL",,,,,12,12,0,0,12,0,12,12,0,,"2L",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707082435P040091692369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HCSB EMPLOYEE PROFIT SHARING PLAN","333","1988-05-01","HCSB EMPLOYEE PS PLAN",,,"201 W 6TH ST",,"PLAINVIEW","TX","79072",,,,,,,,,,,,,,,,,,"750313320","8062933635","522110","HCSB EMPLOYEE PS PLAN",,"201 W 6TH ST",,"PLAINVIEW","TX","79072",,,,,,,"750313320","8062933635",,,,"2011-07-07T08:23:39-0500","CAROLYN BAKER","2011-07-07T08:23:39-0500","CAROLYN BAKER",,,113,97,0,7,104,0,104,104,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707110014P040091779473004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JUDITH L PETERMAN DC PROFIT SHARING PLAN","001","1990-01-01","JUDITH L PETERMAN DC PROFIT SHARING PLAN",,,"175 SUMMER STREET",,"LEE","MA","01238",,,,,,,,,,,,,,,,,,"042679716","4132432983","621310","JUDITH L PETERMAN DC PROFIT SHARING PLAN",,"175 SUMMER STREET",,"LEE","MA","01238",,,,,,,"042679716","4132432983",,,,"2011-07-07T10:40:52-0500","JUDITH L PETERMAN",,,,,2,2,,,2,,2,,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707154452P030089301873006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MERIDIUM, INC. FLEXIBLE BENEFITS PLAN","501","2001-01-01","MERIDIUM, INC.",,,"207 BULLITT AVE. SE",,"ROANOKE","VA","24103",,,,,,,,,,,,,,,,,,"541647664","5403449205","541511","MERIDIUM, INC.",,"207 BULLITT AVE. SE",,"ROANOKE","VA","24103",,,,,,,"541647664","5403449205",,,,"2011-07-07T10:53:43-0500","MARNIE YOUNG","2011-07-07T10:53:43-0500","MARNIE YOUNG",,,128,137,0,0,137,,,,,,,"4A4B4D4H4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706143455P040013413986001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MYERS & STROBERG, LLP 401(K) PROFIT SHARING PLAN","001","2004-01-01","MYERS & STROBERG, LLP",,,"605 GREEN STREET",,"GAINESVILLE","GA","30501",,,,,,,,,,,,,,,,,,"582384254","7705311710","541110","MYERS & STROBERG, LLP",,"605 GREEN STREET",,"GAINESVILLE","GA","30501",,,,,,,"582384254","7705311710",,,,"2011-07-06T14:34:54-0500","W. ALLAN MYERS","2011-07-06T14:34:54-0500","W. ALLAN MYERS",,,5,5,,,5,,5,5,0,,"2A2E2G2J2K2R3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706143640P030088565473002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TIMBERLINE ANIMAL HOSPITAL LTD 401 K PLAN","001","1993-02-18","TIMBERLINE ANIMAL HOSPITAL, LTD",,,"950 NE FRONTAGE ROAD",,"JOLIET","IL","60431",,,,,,,,,,,,,,,,,,"363739890","8157291555","541940","TIMBERLINE ANIMAL HOSPITAL LTD",,"950 NE FRONTAGE ROAD",,"JOLIET","IL","60431",,,,,,,"363739890","8157291555",,,,"2011-07-06T10:22:13-0500","DANIEL MALONEY",,,,,3,3,,,3,,3,3,,,"2J2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706181414P030012908610001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHOOL SPECIALTY, INC. WELFARE BENEFIT PLAN","502","1999-01-01","SCHOOL SPECIALTY, INC.",,,"W6316 DESIGN DRIVE",,"GREENVILLE","WI","54942",,,,,,,,,,,,,,,,,,"390971239","9208825849","453210","SCHOOL SPECIALTY, INC.",,"W6316 DESIGN DRIVE",,"GREENVILLE","WI","54942",,,,,,,"390971239","9208825849",,,,"2011-07-06T18:05:22-0500","KAREN GARVEY",,,,,2073,1936,80,0,2016,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706181543P030088666289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HINES NURSERIES LLC HEALTH AND WELFARE PLAN","501","2009-02-01","HINES NURSERIES LLC",,,"12621 JEFFREY ROAD",,"IRVINE","CA","92620",,,,,,,,,,,,,,,,,,"352352567","8004444499","111400","HINES NURSERIES LLC",,"12621 JEFFREY ROAD",,"IRVINE","CA","92620",,,,,,,"352352567","8004444499",,,,"2011-07-06T18:15:35-0500","LINDA FUSSELMAN",,,,,864,516,34,8,558,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707160423P040091924289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FASANO CORPORATION PROFIT SHARING PLAN","001","1984-01-01","FASANO CORPORATION",,"ALBERT FASANO","333 WELLINGTON AVENUE",,"CRANSTON","RI","02910",,,,,,,"333 WELLINGTON AVENUE",,"CRANSTON","RI","02910",,,,,,,"050350601","4017859646","333200","FASANO CORPORATION","ALBERT FASANO","333 WELLINGTON AVENUE",,"CRANSTON","RI","02910",,,,,,,"050350601","4017859646",,,,"2011-06-21T13:15:01-0500","ROBERT SCLAMA",,,,,4,4,,1,5,0,5,5,0,,"2E2G",,"1",,,"1","1",,,"1","1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110703103634P030086731393001","2010-01-01","2010-12-28","2",,"0","0","1","1","0","0","0","0","0",,"ASM ENTERPRISES, INC. 401(K) PLAN","001","2008-08-21","ASM ENTERPRISES, INC.",,,"2528 HEMINGWAY TRAIL",,"SCHERTZ","TX","78154",,,,,,,,,,,,,,,,,,"800243718","2106588178","812320","ASM ENTERPRISES, INC.",,"2528 HEMINGWAY TRAIL",,"SCHERTZ","TX","78154",,,,,,,"800243718","2106588178",,,,"2011-07-03T10:36:25-0500","SHAYNE MCBREARTY","2011-07-03T10:36:25-0500","SHAYNE MCBREARTY",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705094352P030012781106001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","001","1986-09-30","THE FARMERS COOPEARATIVE ELEVATOR",,,"P. O. BOX 6",,"NICKERSON","KS","67561",,,,,,,,,,,,,,,,,,"480214460","6204223207","115110","THE FARMERS COOPEARATIVE ELEVATOR",,"P. O. BOX 6",,"NICKERSON","KS","67561",,,,,,,"480214460","6204223207",,,,"2011-07-05T09:43:46-0500","DAVID CORNELIUS",,,,,22,25,0,11,36,0,36,23,0,,"3D2E2F2G2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707151503P030012995586001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AZDAK TRANSPORT 401(K) PROFIT SHARING PLAN","001","2004-01-01","AZDAK TRANSPORT, INC.","K & E TRANSPORT",,"1321 RIVER DRIVE, SUITE 102",,"NORTH SIOUX CITY","SD","57049",,,,,,,,,,,,,,,,,,"481305555","7128988129","484120","AZDAK TRANSPORT, INC.",,"1321 RIVER DRIVE, SUITE 102",,"NORTH SIOUX CITY","SD","57049",,,,,,,"481305555","7128988129",,,,"2011-07-07T15:14:56-0500","ERIN KIMBELL",,,,,7,5,0,1,6,0,6,6,0,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110705112432P030087856081009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE HEALTH AND WELFARE BENEFITS PLAN FOR TOPPAN PHOTOMASKS, FORMERLY DUPONT PHOTOMASK","501","1999-01-01","TOPPAN PHOTOMASKS, INC.",,,"131 E. OLD SETTLERS BLVD.",,"ROUND ROCK","TX","786642211",,,,,,,,,,,,,,,,,,"742238819","5123106559","335900","TOPPAN PHOTOMASKS, INC.",,"131 E. OLD SETTLERS BLVD.",,"ROUND ROCK","TX","786642211",,,,,,,"742238819","5123106559",,,,"2011-06-28T06:06:06-0500","MICHAEL SCOTT",,,,,480,416,7,,423,,,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705182717P040090695985001","2010-10-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"MAIL TERMINAL SERVICES, LLC WELFARE PLAN","501","2004-10-01","MAIL TERMINAL SERVICES, LLC",,,"2700 SOUTH COMMERCE PARKWAY","SUITE 400","WESTON","FL","33331",,,,,,,,,,,,,,,,,,"743128641","9549036354","561430","MAIL TERMINAL SERVICES, LLC",,"2700 SOUTH COMMERCE PARKWAY","SUITE 400","WESTON","FL","33331",,,,,,,"743128641","9549036354",,,,"2011-07-05T18:27:11-0500","BETH L. DAY",,,,,584,0,0,0,0,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705152225P040090602097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXCELLENT HOME HEALTH CARE 401(K) PLAN","001","2009-01-01","EXCELLENT HOME HEALTH CARE, INC.",,,"3901 WEST OAKTON AVENUE",,"SKOKIE","IL","60076",,,,,,,,,,,,,,,,,,"611445316","8476743202","621610","EXCELLENT HOME HEALTH CARE, INC.",,"3901 WEST OAKTON AVENUE",,"SKOKIE","IL","60076",,,,,,,"611445316","8476743202",,,,"2011-07-05T15:21:02-0500","BENJAMIN LISING",,,,,22,23,0,1,24,0,24,24,1,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706133115P040013406818001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"UNITED BRONZE OF PITTSBURGH INC PROFIT SHARING PLAN & TRUST","001","1997-01-01","UNITED BRONZE OF PGH, INC. PS PLAN & TRU",,,"344 W 6TH AVE",,"TARENTUM","PA","150841304",,,,,,,"344 W 6TH AVE",,"TARENTUM","PA","150841304",,,,,,,"251095013","7242268500","331400","ROBERT ORRINGER","UNITED BRONZE OF PITTSBURGH","344 W 6TH AVE",,"TARENTUM","PA","150841304",,,,,,,"251095013",,,,,"2011-06-30T09:48:18-0500","ROBERT ORRINGER",,,,,3,3,,,3,,3,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707070919P040091663521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAPPYS POTATO CHIP COMPANY MONEY PURCHASE PENSION PLAN","114","1974-01-01","HAPPYS POTATO CHIP COMPANY",,,"3900 CHANDLER DRIVE",,"MINNEAPOLIS","MN","554214411",,,,,,,,,,,,,,,,,,"410738759","6127813121","311900","HAPPYS POTATO CHIP COMPANY",,"3900 CHANDLER DRIVE",,"MINNEAPOLIS","MN","554214411",,,,,,,"410738759","6127813121",,,,"2011-07-07T07:06:24-0500","BETTY KAPSNER",,,,,12,7,0,5,12,0,12,12,0,,"2C2G3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707080313P030089028849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLLEGE FOR CREATIVE STUDIES GROUP LIFE, DISABILITY AND AD&D PLAN","501","1988-09-01","COLLEGE FOR CREATIVE STUDIES",,,"201 E. KIRBY ST.",,"DETROIT","MI","482024048",,,,,,,,,,,,,,,,,,"381550064","3136647400","611000","COLLEGE FOR CREATIVE STUDIES",,"201 E. KIRBY ST.",,"DETROIT","MI","482024048",,,,,,,"381550064","3136647400",,,,"2011-07-07T07:58:35-0500","GREGORY P. KNOFF",,,,,209,204,0,0,204,,,,,,,"4B4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110705100707P030027359527001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WYANDOT, INC. GROUP LONG TERM DISABILITY PLAN","502","1979-05-01","WYANDOT, INC.",,,"757 ARMSTRONG AVE",,"KANSAS CITY","KS","66101",,,,,,,,,,,,,,,,,,"263338038","9132333300","621330","WYANDOT, INC.",,"757 ARMSTRONG AVE",,"KANSAS CITY","KS","66101",,,,,,,"263338038","9132333300",,,,"2011-07-05T10:06:57-0500","CATHRYN CARTER",,,,,341,342,0,0,342,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706185114P040414027616001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ARTIST TRUST 403(B) PLAN","001","1999-01-01","ARTIST TRUST",,,"1835 12TH AVENUE",,"SEATTLE","WA","981222437",,,,,,,,,,,,,,,,,,"911353974","2064678734","711510","ARTIST TRUST",,"1835 12TH AVENUE",,"SEATTLE","WA","981222437",,,,,,,"911353974","2064678734",,,,"2011-07-06T17:59:36-0500","FIDELMA MCGINN","2011-07-06T17:59:36-0500","FIDELMA MCGINN",,,5,3,,2,5,,5,5,0,,"2M2F2G",,,,,,,,,,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705092138P040090409121001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"MIDWAY SERVICES, INC. 401(K) PLAN","001","1996-02-01","MIDWAY SERVICES, INC.",,,"4677 118TH. AVE. N.",,"CLEARWATER","FL","33762",,,,,,,"4677 118TH. AVE. N.",,"CLEARWATER","FL","33762",,,,,,,"590896532","7275739500","238220","MIDWAY SERVICES, INC.",,"4677 118TH. AVE. N.",,"CLEARWATER","FL","33762",,,,,,,"590896532","7275739500",,,,"2011-07-05T09:18:23-0500","W. WARD REGISTER",,,,,178,130,0,22,152,0,152,28,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705184824P040411276448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAD & SONS ENTERPRISES INC. 401(K) PLAN","001","2007-07-04","DAD & SONS ENTERPRISES INC.",,,"205 8TH AVE, STE A",,"SPRINGFIELD","MI","490378072",,,,,,,,,,,,,,,,,,"260476433","2692750760","811110","DAD & SONS ENTERPRISES INC.",,"205 8TH AVE, STE A",,"SPRINGFIELD","MI","490378072",,,,,,,"260476433","2692750760",,,,"2011-07-05T18:48:19-0500","DUANE GUNN","2011-07-05T18:48:19-0500","DUANE GUNN",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706144818P040091262401001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MANA PRODUCTS, INC. PROFIT SHARING PLAN","002","1981-07-01","MANA PRODUCTS, INC.",,,"32-02 QUEENS BOULEVARD",,"LONG ISLAND CITY","NY","11101",,,,,,,"32-02 QUEENS BOULEVARD",,"LONG ISLAND CITY","NY","11101",,,,,,,"132832494","7183612550","325600","MANA PRODUCTS, INC.",,"32-02 QUEENS BOULEVARD",,"LONG ISLAND CITY","NY","11101",,,,,,,"132832494","7183612550",,,,"2011-07-06T14:47:36-0500","LAWRENCE WEINSTOCK",,,,,657,525,0,102,627,1,628,499,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706154522P040028531543001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CLIFTON-WALLINGTON MEDICAL GROUP, P.A. 401(K) PLAN","001","2002-01-01","CLIFTON-WALLINGTION MEDICAL GROUP",,,"1033 CLIFTON AVENUE",,"CLIFTON","NJ","07013",,,,,,,,,,,,,,,,,,"134229293","9734734400","621111","CLIFTON-WALLINGTION MEDICAL GROUP",,"1033 CLIFTON AVENUE",,"CLIFTON","NJ","07013",,,,,,,"134229293","9734734400",,,,"2011-07-06T15:09:00-0500","KRYSTYNA SZEWCZYK-SZCZECH","2011-07-06T15:23:10-0500","KRYSTYNA SZEWCZYK-SZCZECH",,,17,14,0,4,18,0,18,18,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707115932P040013505410001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WHITLEY BURCHETT & ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","001","1987-01-01","WHITLEY BURCHETT & ASSOCIATES, INC.",,,"1777 OAKLAND BLVD, SUITE 200",,"WALNUT CREEK","CA","94596",,,,,,,,,,,,,,,,,,"680047922","9259456850","541330","WHITLEY BURCHETT & ASSOCIATES, INC.",,"1777 OAKLAND BLVD, SUITE 200",,"WALNUT CREEK","CA","94596",,,,,,,"680047922","9259456850",,,,"2011-07-07T11:57:08-0500","ROBERT WHITLEY","2011-07-07T11:57:08-0500","ROBERT WHITLEY",,,15,10,0,2,12,0,12,12,1,,"2E2G2J2F2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705130027P040090523089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EDGAR, DUNN & COMPANY 401(K) PROFIT SHARING PLAN","003","2001-10-26","EDGAR, DUNN & COMPANY",,,"TWO HARRISON STREET, SUITE 310",,"SAN FRANCISCO","CA","941056139",,,,,,,,,,,,,,,,,,"522243214","4159771870","541600","EDGAR, DUNN & COMPANY",,"TWO HARRISON STREET, SUITE 310",,"SAN FRANCISCO","CA","941056139",,,,,,,"522243214","4159771870",,,,"2011-07-05T13:00:23-0500","ROBERT WHITE","2011-07-05T13:00:23-0500","ROBERT WHITE",,,33,22,0,14,36,0,36,36,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705162647P030087993697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BANCOOP SAVINGS & INVESTMENT PLAN","001","1998-01-01","BANCO COOPERATIVO DE PUERTO RICO",,,"623 AVE PONCE DE LEON",,"HATO REY","PR","009174820",,,,,,,,,,,,,,,,,,"660317722","7876411071","522110","BANCO COOPERATIVO DE PUERTO RICO",,"623 AVE PONCE DE LEON",,"HATO REY","PR","009174820",,,,,,,"660317722","7876411071",,,,"2011-07-05T16:10:38-0500","JOHNNY PEREZ",,,,,52,48,1,3,52,0,52,48,1,,"2E2F2G3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705162749P040090638273001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ASSOCIATED BRIGHAM CONTRACTORS INC. 401(K) PLAN","002","1996-07-01","ASSOCIATED BRIGHAM CONTRACTORS INC",,,"P.O. BOX 578",,"BRIGHAM CITY","UT","84302",,,,,,,"75 NORTH 900 WEST",,"BRIGHAM CITY","UT","84302",,,,,,,"870253167","4357238529","238100","ASSOCIATED BRIGHAM CONTRACTORS INC",,"P.O. BOX 578",,"BRIGHAM CITY","UT","84302",,,,,,,"870253167","4357238529",,,,"2011-07-05T16:16:50-0500","DENNIS RACINE",,,,,403,397,0,99,496,3,499,262,0,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705200107P040090731665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE FLEXIBLE BENEFITS PLAN OF SWIRE PACIFIC HOLDINGS INC BOTTLING GROUP","501","1989-01-01","SWIRE PACIFIC HOLDINGS INC",,,"12634 SOUTH 265 WEST",,"DRAPER","UT","84020",,,,,,,"12634 SOUTH 265 WEST",,"DRAPER","UT","84020",,,,,,,"870424812","8018165429","312110","SWIRE PACIFIC HOLDINGS INC",,"12634 SOUTH 265 WEST",,"DRAPER","UT","84020",,,,,,,"870424812","8018165429",,,,"2011-07-05T19:57:19-0500","CHRISTINE BUCKLEY",,,,,1413,1361,0,0,1361,0,1361,,0,,,"4A4D",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705201423P040090736657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEIKKI ERIC KOSTAMAA MD PC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","HEIKKI ERIC KOSTAMAA MD PC",,,"4006 HARDING PLACE",,"NASHVILLE","TN","37215",,,,,,,,,,,,,,,,,,"202240772","6154291615","621111","HEIKKI ERIC KOSTAMAA MD PC",,"4006 HARDING PLACE",,"NASHVILLE","TN","37215",,,,,,,"202240772","6154291615",,,,"2011-07-05T08:14:21-0500","HEIKKI ERIC KOSTAMAA MD PC",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705143009P040090571569003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"COASTAL ENVIRONMENTAL OPERATIONS, INC. PROFIT SHARING PLAN","001","1996-12-23","COASTAL ENVIRONMENTAL OPERATIONS, INC.",,,"PO BOX 6062",,"LAKE CHARLES","LA","70606",,,,,,,,,,,,,,,,,,"721258144","3377755881","562000","COASTAL ENVIRONMENTAL OPERATIONS, INC.",,"PO BOX 6062",,"LAKE CHARLES","LA","70606",,,,,,,"721258144","3377755881",,,,"2011-06-06T15:55:45-0500","KARL R BOUDREAUX","2011-06-06T15:55:58-0500","KARL R BOUDREAUX",,,13,5,0,7,12,0,12,12,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705145333P040006876629001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIGITAL GLOBE, INC. GROUP LIFE AND DISABILITY PLAN","504","1996-02-01","DIGITAL GLOBE, INC.",,,"1601 DRY CREEK DRIVE, SUITE 260",,"LONGMONT","CO","805036503",,,,,,,,,,,,,,,,,,"311420852","3036844000","541990","DIGITAL GLOBE, INC.",,"1601 DRY CREEK DRIVE, SUITE 260",,"LONGMONT","CO","805036503",,,,,,,"311420852","3036844000",,,,"2011-07-05T14:53:30-0500","ALETHEA TAYLOR",,,,,474,595,0,0,595,,,,,,,"4B4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707103710P040091766673001","2010-06-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"ROCKY ROAD VENTURES INC. PROFIT SHARING PLAN","001","2009-06-24","ROCKY ROAD VENTURES INC.",,,"3401 BERMUDA AVE #16",,"DAVIS","CA","95616",,,,,,,,,,,,,,,,,,"270431879","5307531919","812990","ROCKY ROAD VENTURES INC.",,"3401 BERMUDA AVE #16",,"DAVIS","CA","95616",,,,,,,"270431879","5307531919",,,,"2011-07-06T19:56:18-0500","GREGORY ROQUET",,,,,1,0,,,0,,0,,,,"2E2G2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707151752P040002780547001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HUFFMAN KOOS INC. RETIREMENT AND INCENTIVE SAVINGS PLAN","006","1988-09-01","BREUNERS HOME FURNISHINGS CORP. AKA HUFFMAN KOOS INC.",,,"C/O CLAYBROOK AND ASSOCIATES","913 NORTH MARKET STREET, SUITE 900","WILMINGTON","DE","19801",,,,,,,,,,,,,,,,,,"363451329","8003554663","442110","BREUNERS HOME FURNISHINGS CORP. AKA HUFFMAN KOOS INC.",,"C/O CLAYBROOK AND ASSOCIATES","913 NORTH MARKET STREET, SUITE 900","WILMINGTON","DE","19801",,,,,,,"363451329","8003554663",,,,"2011-07-07T15:13:22-0500","MONTAGUE CLAYBROOK","2011-07-07T15:13:22-0500","MONTAGUE CLAYBROOK",,,183,0,0,167,167,0,167,167,0,,"2E2F2G2J2K3H",,"1",,,,"1",,,,"1",,,"1",,"1","3","1","1",,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706163050P040091324113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NOTOCO INDUSTRIES, LLC 401(K) SALARY SAVINGS PLAN","002","1990-01-01","NOTOCO INDUSTRIES, LLC",,,"10380 AIRLINE HWY",,"BATON ROUGE","LA","70816",,,,,,,,,,,,,,,,,,"720965865","2252921303","423600","NOTOCO INDUSTRIES, LLC",,"10380 AIRLINE HWY",,"BATON ROUGE","LA","70816",,,,,,,"720965865","2252921303",,,,"2011-07-06T16:30:38-0500","NORMAN BORNE JR","2011-07-06T16:30:38-0500","NORMAN BORNE JR.",,,116,87,1,36,124,0,124,81,28,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705120008P030414372368001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROSENBAUM, BLOOM, MEYERSON, GALINSKY, WEINER & CIRINO, P.C. PROFIT SHARING PLAN","001","1988-01-01","ROSENBAUM, BLOOM, MEYERSON & GALINSKY, P.C.",,"LARRY MEYERSON","645 GRISWOLD ST. SUITE 3080",,"DETROIT","MI","48226",,,,,,,,,,,,,,,,,,"381893332","3139611003","541110","ROSENBAUM, BLOOM, MEYERSON & GALINSKY PC",,"645 GRISWOLD SUITE 3080",,"DETROIT","MI","48226",,,,,,,"381893332","3139611003",,,,"2011-06-28T11:48:30-0500","LARRY MEYERSON","2011-06-28T11:48:35-0500","LARRY MEYERSON",,,4,3,,1,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705162955P040028320631001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALCYON, INC. 401(K) PROFIT SHARING PLAN","001","2005-11-01","ALCYON, INC.",,,"1021 OLD MONROVIA ROAD",,"HUNTSVILLE","AL","35806",,,,,,,,,,,,,,,,,,"203525258","2567042305","334200","ALCYON, INC.",,"1021 OLD MONROVIA ROAD",,"HUNTSVILLE","AL","35806",,,,,,,"203525258","2567042305",,,,"2011-07-05T16:29:47-0500","AUTUMN SELLARS FRANCIS",,,,,9,8,0,1,9,0,9,7,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705163252P040090639905003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LEE INDUSTRIAL PROPERTIES PROFIT SHARING PLAN","001","1999-01-01","LEE INDUSTRIAL PROPERTIES, INC.",,,"1535 STANDARD AVENUE",,"MASURY","OH","44438",,,,,,,,,,,,,,,,,,"341801001","3304484477","531120","LEE INDUSTRIAL PROPERTIES, INC.",,"1535 STANDARD AVENUE",,"MASURY","OH","44438",,,,,,,"341801001","3304484477",,,,"2011-07-05T10:39:37-0500","PAULA LEE","2011-07-05T10:39:37-0500","PAULA LEE",,,4,4,,,4,,4,4,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705134325P030087920401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHN DERMODY VENTURES 401(K) PLAN","001","2008-01-01","JOHN DERMODY VENTURES",,,"140 W. HUFFAKER LANE, SUITE 501",,"RENO","NV","89511",,,,,,,,,,,,,,,,,,"911700565","7752848855","531110","JOHN DERMODY VENTURES",,"140 W. HUFFAKER LANE, SUITE 501",,"RENO","NV","89511",,,,,,,"911700565","7752848855",,,,"2011-07-05T13:03:48-0500","DOUG MCINTYRE",,,,,5,5,0,0,5,0,5,5,0,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705134507P040410664064003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PATSY A. IEZZI, JR., P.C. 401(K)PLAN AND TRUST","001","1992-01-01","PATSY A. IEZZI, JR., P.C.",,,"140 SOUTH MAIN STREET, SUITE 201",,"GREENSBURG","PA","15601",,,,,,,,,,,,,,,,,,"251673053","7248327171","541110","PATSY A. IEZZI, JR., P.C.",,"140 SOUTH MAIN STREET, SUITE 201",,"GREENSBURG","PA","15601",,,,,,,"251673053","7248327171",,,,"2011-07-05T14:07:39-0500","PATSY A. IEZZI, JR.",,,,,4,4,0,0,4,0,4,4,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706133459P040091229809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MODERN SUPPLY COMPANY , INC. PROFIT SHARING PLAN AND TRUST","001","1968-05-24","MODERN SUPPLY COMPANY, INC.",,,"525 LOVELL ROAD",,"KNOXVILLE","TN","379330997",,,,,,,,,,,,,,,,,,"620633739","8659664567","423800","MODERN SUPPLY COMPANY, INC.",,"525 LOVELL ROAD",,"KNOXVILLE","TN","379330997",,,,,,,"620633739","8659664567",,,,"2011-07-06T13:34:49-0500","PACE ROBINSON",,,,,103,70,3,21,94,1,95,53,0,,"2E2G2J2K2T3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707103751P040028700295001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"FRANK FISCHER, INC. PROFIT SHARING PLAN","001","1968-12-16","FRANK FISCHER, INC.",,,"3940 TAUSSIG ROAD",,"BRIDGETOWN","MO","63044",,,,,,,,,,,,,,,,,,"430667778","3147391600","238220","FRANK FISCHER, INC.",,"3940 TAUSSIG ROAD",,"BRIDGETOWN","MO","63044",,,,,,,"430667778","3147391600",,,,"2011-07-07T10:37:42-0500","JACK GOLDKAMP",,,,,23,21,0,5,26,0,26,24,,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110704131241P040089933425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AJP INSURANCE BROKERS, INC. PROFIT SHARING PLAN","002","1986-10-01","AJP INSURANCE BROKERS, INC.",,,"44684 PRIDE MOUNTAIN STREET",,"TEMECULA","CA","925926529",,,,,,,,,,,,,,,,,,"770005917","4086791476","524210","AJP INSURANCE BROKERS, INC.",,"44684 PRIDE MOUNTAIN STREET",,"TEMECULA","CA","925926529",,,,,,,"770005917","4086791476",,,,"2011-07-04T13:12:00-0500","ALAN J. PRUESS",,,,,2,2,0,0,2,0,2,2,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-04","Filed with authorized/valid electronic signature",, "20110705141556P030414644560001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DDB WORLDWIDE COMMUNICATIONS GROUP SEVERANCE PAY PLAN","504","1997-01-01","DDB WORLDWIDE COMMUNICATIONS GROUP INC",,,"437 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"437 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"133355855","2124152000","541800","DDB WORLDWIDE COMMUNICATIONS GROUP INC",,"437 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"133355855","2124152000",,,,"2011-07-05T14:11:53-0500","JADWIGA FERRUCIO",,,,,1158,954,0,16,970,,970,,0,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705153132P040090607249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTER FOR WOMEN'S MEDICINE, INC. 401(K) PROFIT SHARING PLAN","001","2003-01-01","CENTER FOR WOMENS MEDICINE, INC.",,,"10901 KATY FREEWAY",,"HOUSTON","TX","770792203",,,,,,,,,,,,,,,,,,"760536543","7134674488","621111","CENTER FOR WOMENS MEDICINE, INC.",,"10901 KATY FREEWAY",,"HOUSTON","TX","770792203",,,,,,,"760536543","7134674488",,,,"2011-07-05T15:27:49-0500","MICHAEL ALLON",,,,,29,20,0,8,28,0,28,28,7,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707104508P030419804208001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BILL ADAMS CONSTRUCTION, INC., 401 K PLAN & TRUST","001","1995-06-01","BILL ADAMS CONSTRUCTION, INC.",,,"P.O. BOX 927",,"MURRAY","KY","42071",,,,,,,,,,,,,,,,,,"611109124","2707537577","236200","BILL ADAMS CONSTRUCTION, INC.",,"P.O. BOX 927",,"MURRAY","KY","42071",,,,,,,"611109124","2707537577",,,,"2011-07-07T10:31:45-0500","WILLIAM C. ADAMS, JR.",,,,,15,13,1,0,14,0,14,15,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707120017P030089143329001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"J & S AUTOMOTIVE, INC. PROFIT","001","1981-01-01","J & S AUTOMOTIVE INC",,,"14438 W 167TH ST",,"HOMER GLEN","IL","60491",,,,,,,,,,,,,,,,,,"363104731","7083018971","811110","JOSEPH DISYLVESTRO",,"14438 W 167TH ST","JOSEPH DISYLVESTRO","HOMER GLEN","IL","60491",,,,,,,"363104731",,,,,"2011-07-07T00:13:22-0500","JOSEPH DISYLVESTRO","2011-07-07T00:13:22-0500","JOSEPH DISYLVESTRO",,,4,0,4,0,4,,4,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705163836P040028321463001","2011-01-01","2011-06-01","2",,"0","0","1","1","0","0","0","0","0",,"FEHR INVESTMENTS 401K RETIREMENT PLAN AND TRUST","001","2007-03-23","FEHR INVESTMENTS, INC.",,,"6507 E. SHANNON TRAIL",,"HIGHLANDS RANCH","CO","80130",,,,,,,,,,,,,,,,,,"208699175","3032632326","541990","FEHR INVESTMENTS, INC.",,"6507 E. SHANNON TRAIL",,"HIGHLANDS RANCH","CO","80130",,,,,,,"208699175","3032632326",,,,"2011-07-05T16:38:27-0500","TYSON FEHR","2011-07-05T16:38:27-0500","TYSON FEHR",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2R3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705143811P040090577361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARBER ENTERPRISES 401(K) PROFIT SHARING PLAN","002","1995-01-01","BARBER OIL COMPANY, INC.",,,"PO BOX 268",,"EBENSBURG","PA","15931",,,,,,,,,,,,,,,,,,"251157073","8144726770","424700","BARBER OIL COMPANY, INC.",,"PO BOX 268",,"EBENSBURG","PA","15931",,,,,,,"251157073","8144726770",,,,"2011-07-05T14:38:01-0500","CAROL A. WESTLEY","2011-07-05T14:38:01-0500","CAROL A. WESTLEY",,,46,45,0,0,45,0,45,20,0,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706145141P030088573489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CFO EMPLOYEES SAVINGS & 401(K) PLAN","002","1994-01-01","CORTLAND CHRYSLER, FAYETTEVILLE DOD",,,"5427 N. BURDICK STREET",,"FAYETTEVILLE","NY","13066",,,,,,,"5427 N. BURDICK STREET",,"FAYETTEVILLE","NY","13066",,,,,,,"161124852","3156375001","441110","CORTLAND CHRYSLER, FAYETTEVILLE DOD",,"5427 N. BURDICK STREET",,"FAYETTEVILLE","NY","13066",,,,,,,"161124852","3156375001",,,,"2011-07-06T14:35:12-0500","CAROL ROGERS",,,,,68,45,0,4,49,0,49,49,1,,"2A2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707093354P040091725713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OLSEN VISION CARE, PC 401(K) PLAN","001","2008-01-01","OLSEN VISION CARE, PC",,,"501 E. 15TH STREET",,"EDMOND","OK","73013",,,,,,,,,,,,,,,,,,"261604779","4053412062","621210","OLSEN VISION CARE, PC",,"501 E. 15TH STREET",,"EDMOND","OK","73013",,,,,,,"261604779","4053412062",,,,"2011-07-07T09:33:41-0500","LARRY OLSEN","2011-07-07T09:33:41-0500","LARRY OLSEN",,,5,4,0,1,5,0,5,5,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705120501P040090495985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLEMAN COUNTRY DAY INC 401(K)/PROFIT SHARING PLAN","001","1992-01-01","COLEMAN COUNTRY DAY, INC.",,,"P.O. BOX 34",,"MERRICK","NY","115660034",,,,,,,,,,,,,,,,,,"133128826","5163786363","713900","COLEMAN COUNTRY DAY, INC.",,"P.O. BOX 34",,"MERRICK","NY","115660034",,,,,,,"133128826","5163786363",,,,"2011-07-05T12:04:55-0500","GEORGE G. COLEMAN, PRESIDENT",,,,,19,13,0,2,15,0,15,15,0,,"2A2E2H2J3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705145526P030087949105010","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"SMG INC. PROFIT SHARING PLAN","001","2002-01-01","SMG, INC.",,,"PO BOX 8005",,"ASPEN","CO","81612",,,,,,,"PO BOX 8005",,"ASPEN","CO","81612",,,,,,,"841333913",,"812990","SMG, INC.",,"PO BOX 8005",,"ASPEN","CO","81612",,,,,,,"841333913",,,,,"2011-06-30T08:20:47-0500","MARJORIE RODELL",,,,,2,2,,,2,,2,2,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705145800P040090587793001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARVIN M. SLOTT, DDS, PA PROFIT SHARING PLAN & TRUST","001","1979-08-01","MARVIN M. SLOTT, DDS, PA",,,"6801 NW 9TH BLVD, STE 1",,"GAINESVILLE","FL","32605",,,,,,,"6801 NW 9TH BLVD, STE 1",,"GAINESVILLE","FL","32605",,,,,,,"591938395","3523312016","621210","MARVIN M. SLOTT, DDS, PA",,"6801 NW 9TH BLVD, STE 1",,"GAINESVILLE","FL","32605",,,,,,,"591938395","3523312016",,,,"2011-06-08T10:51:18-0500","MARVIN M. SLOTT, DDS",,,,,13,11,,2,13,,13,13,1,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706165554P040091339377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SKYPARK PHYSICAL THERAPY, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","SKYPARK PHYSICAL THERAPY, INC.",,,"2811 WILSHIRE BLVD","STE 690","SANTA MONICA","CA","90403",,,,,,,,,,,,,,,,,,"330152163","3108287239","621340","SKYPARK PHYSICAL THERAPY, INC.",,"2811 WILSHIRE BLVD","STE 690","SANTA MONICA","CA","90403",,,,,,,"330152163","3108287239",,,,"2011-07-06T16:55:49-0500","ROY YU",,,,,15,12,0,5,17,0,17,16,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706155247P030088599777001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RANDOLPH BOYD CHERRY & VAUGHAN PROFIT SHARING PLAN","002","1991-01-01","RANDOLPH BOYD CHERRY & VAUGHAN",,,"W.E. DIBRELL HOUSE","14 E. MAIN STREET","RICHMOND","VA","23219",,,,,,,"W.E. DIBRELL HOUSE","14 E. MAIN STREET","RICHMOND","VA","23219",,,,,,,"541116143","8046436611","541110","RANDOLPH BOYD CHERRY & VAUGHAN",,"W.E. DIBRELL HOUSE","14 E. MAIN STREET","RICHMOND","VA","23219",,,,,,,"541116143","8046436611",,,,"2011-07-06T15:51:52-0500","FRANCIS CHERRY",,,,,16,19,0,2,21,0,21,0,0,,"2F2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706174504P040091361201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MJM DEVELOPMENT CORPORATION PROFIT SHARING PLAN","001","1993-01-01","MJM DEVELOPMENT CORPORATION",,"P.O. BOX 2810","5387 CEDAR SPRINGS DRIVE",,"SIERRA VISTA","AZ","856358535",,,,,,,,,,,,,,,,,,"860667858","5205591793","236110","MJM DEVELOPMENT CORPORATION","P.O. BOX 2810","5387 CEDAR SPRINGS DRIVE",,"SIERRA VISTA","AZ","856358535",,,,,,,"860667858","5205591793",,,,"2011-07-06T17:46:40-0500","MICHAEL J MILIANTA","2011-07-06T17:46:40-0500","MICHAEL J MILIANTA",,,3,3,0,0,3,0,3,3,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706171508P040091347553001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"MICHAEL M ZIMMERER MD SELF-EMPLOYED RETIREMENT PLAN","001","1981-01-01","MICHAEL M ZIMMERER",,,"1210 ASHLAND AVENUE",,"ZANESVILLE","OH","43701",,,,,,,,,,,,,,,,,,"310988299","7404543288","621111","MICHAEL M ZIMMERER",,"1210 ASHLAND AVENUE",,"ZANESVILLE","OH","43701",,,,,,,"310988299","7404543288",,,,"2011-07-06T18:04:33-0500","MICHAEL M ZIMMERER","2011-07-06T18:04:40-0500","MICHAEL M ZIMMERER",,,1,0,0,0,0,0,0,,,,"1I",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705165619P040090653713001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","1","0",,"401 (K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","WILLIAM C MORTENSON","MORTENSON PRECISION SHEET METAL",,"1943 HARTOG DRIVE",,"SAN JOSE","CA","95131",,,,,,,"1943 HARTOG DRIVE",,"SAN JOSE","CA","95131",,,,,,,"770441137","4084417380","326100","WILLIAM C MORTENSON",,"1943 HARTOG DRIVE",,"SAN JOSE","CA","95131",,,,,,,"770441137","4084417380",,,,"2011-07-05T16:55:43-0500","JANELLE MORTENSON",,,,,15,11,,1,12,,12,6,,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706132225P040013405026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AFFILIATED VETERINARY EMERGENCY SERVICE, PC 401(K) PLAN","001","2000-01-01","AFFILIATED VETERINARY EMERGENCY SERVICE, PC",,,"15220 SOUTHFIELD RD.",,"ALLEN PARK","MI","48101",,,,,,,,,,,,,,,,,,"010722651","3133891700","541940","AFFILIATED VETERINARY EMERGENCY SERVICE, PC",,"15220 SOUTHFIELD RD.",,"ALLEN PARK","MI","48101",,,,,,,"010722651","3133891700",,,,"2011-07-06T13:22:20-0500","JEFFREY DIZIK",,,,,14,10,0,4,14,0,14,12,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706123644P030088493713005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PLANNED PARENTHOOD OF NORTHERN NEW ENGLAND VISION PLAN","506","2004-01-01","PLANNED PARENTHOOD OF NORTHERN NEW ENGLAND",,,"183 TALCOTT ROAD",,"WILLISTON","VT","05495",,,,,,,,,,,,,,,,,,"030222941","8022888431","621410","PLANNED PARENTHOOD OF NORTHERN NEW ENGLAND",,"183 TALCOTT ROAD",,"WILLISTON","VT","05495",,,,,,,"030222941","8022888431",,,,"2011-07-06T10:49:56-0500","ABBY HOPPE",,,,,130,138,5,3,146,,146,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706175114P030088655265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JEWELERS MUTUAL EMPLOYEE ASSISTANCE PLAN","506","1995-01-01","JEWELERS MUTUAL INSURANCE COMPANY",,,"24 JEWELERS PARK DRIVE",,"NEENAH","WI","54956",,,,,,,,,,,,,,,,,,"390493890","9207254326","524150","JEWELERS MUTUAL INSURANCE COMPANY",,"24 JEWELERS PARK DRIVE",,"NEENAH","WI","54956",,,,,,,"390493890","9207254326",,,,"2011-07-06T17:51:05-0500","CHRISTOPHER D. HARTRICH",,,,,191,190,,,190,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707105334P040091776593004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MID-WEST METAL PRODUCTS COMPANY, INC. EMPLOYEE BENEFIT PLAN","501","2003-01-01","MID-WEST METAL PRODUCTS COMPANY",,,"4211 EAST JACKSON STREET",,"MUNCIE","IN","473034423",,,,,,,,,,,,,,,,,,"350514520","7652893355","332610","MID-WEST METAL PRODUCTS COMPANY",,"4211 EAST JACKSON STREET",,"MUNCIE","IN","473034423",,,,,,,"350514520","7652893355",,,,"2011-07-06T03:49:29-0500","KEVIN P. SMITH",,,,,124,188,8,0,196,,,,,,,"4A4B4D4Q","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707085348P040015281942001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AD-LINK CORPORATION RETIREMENT PLAN","001","2003-01-01","AD-LINK CORPORATION",,"ROSA L. MONROY CASTRO","PO BOX 362884",,"SAN JUAN","PR","009362884",,,,,,,,,,,,,,,,,,"660571858","7877674342","812990","AD-LINK CORPORATION","ROSA L. MONROY CASTRO","PO BOX 362884",,"SAN JUAN","PR","009362884",,,,,,,"660571858","7877674342",,,,"2011-07-07T08:53:40-0500","ROSA L. MONROY CASTRO","2011-07-07T08:53:40-0500","ROSA L. MONROY CASTRO",,,4,4,0,0,4,0,4,0,0,,"2E3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707144327P030089268321001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"HAWAIIAN AIRLINES, INC. PILOTS' 401(K) PLAN","007","1990-09-01","HAWAIIAN AIRLINES, INC.",,,"3375 KOAPAKA STREET, G-350",,"HONOLULU","HI","96819",,,,,,,,,,,,,,,,,,"990042880","8088353622","481000","HAWAIIAN AIRLINES, INC.",,"3375 KOAPAKA STREET, G-350",,"HONOLULU","HI","96819",,,,,,,"990042880","8088353622",,,,"2011-07-07T14:43:15-0500","BARBARA FALVEY","2011-07-07T14:43:15-0500","BARBARA FALVEY",,,475,440,0,60,500,0,500,499,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706131507P040091218993001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"OHIO INDUSTRIAL REALTY COMPANY PROFIT SHARING PLAN AND TRUST","001","1982-01-01","OHIO INDUSTRIAL REALTY CO, INC.",,,"778 NORTHWEST BLVD",,"COLUMBUS","OH","432123832",,,,,,,,,,,,,,,,,,"310960072","6142980800","531110","OHIO INDUSTRIAL REALTY CO, INC.",,"778 NORTHWEST BLVD",,"COLUMBUS","OH","432123832",,,,,,,"310960072","6142980800",,,,"2011-06-28T17:15:57-0500","JOHN W. MYERS","2011-06-28T17:16:06-0500","JOHN W. MYERS",,,2,0,0,0,0,0,0,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705080926P030413898544001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INVENTURUS KNOWLEDGE SOLUTIONS, INC. HEALTH & WELF ARE PLAN","501","2009-12-01","INVENTURUS KNOWLEDGE SOLUTIONS, INC",,,"5 PENN PLAZA, 23RD FLOOR",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"205570291","6463782182","541350","INVENTURUS KNOWLEDGE SOLUTIONS, INC",,"5 PENN PLAZA, 23RD FLOOR",,"NEW YORK","NY","10001",,,,,,,"205570291","6463782182",,,,"2011-07-05T08:09:20-0500","SHARON KAY","2011-07-05T08:09:20-0500","SHARON KAY",,,233,184,19,0,203,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705081321P030012774370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REFRIGERATION SALES CORPORATION HEALTH INSURANCE PLAN","501","1966-01-01","REFRIGERATION SALES CORP.",,,"9450 ALLEN DRIVE",,"VALLEY VIEW","OH","44125",,,,,,,,,,,,,,,,,,"340657342","2168817800","423700","REFRIGERATION SALES CORP.",,"9450 ALLEN DRIVE",,"VALLEY VIEW","OH","44125",,,,,,,"340657342","2168817800",,,,"2011-07-01T15:20:56-0500","WILLIAM WAGNER","2011-07-01T15:20:56-0500","WILLIAM WAGNER",,,128,100,20,0,120,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705131531P030414519360001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MASSARELLI'S LAWN ORNAMENTS, INC 401(K) PROFIT SHARING PLAN","001","1997-01-01","MASSARELLI'S LAWN ORNAMENTS, INC",,,"500 S EGG HARBOR RD",,"HAMMONTON","NJ","08037",,,,,,,,,,,,,,,,,,"222205686","6095679700","327300","MASSARELLI'S LAWN ORNAMENTS, INC",,"500 S EGG HARBOR RD",,"HAMMONTON","NJ","08037",,,,,,,"222205686","6095679700",,,,"2011-07-05T13:14:31-0500","MARIO MASSARELLI","2011-07-05T13:11:17-0500","CHRISTINE MASSARELLI",,,73,61,0,0,61,0,61,17,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706132425P030088524209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT J. JORDAN, D.D.S., P.A. PROFIT SHARING PLAN","001","1987-02-01","ROBERT J. JORDAN, D.D.S., P.A.",,,"2501 SOUTH LAKELINE BLVD.",,"CEDAR PARK","TX","78613",,,,,,,,,,,,,,,,,,"742457746","5122191645","621210","ROBERT J. JORDAN, D.D.S., P.A.",,"2501 SOUTH LAKELINE BLVD.",,"CEDAR PARK","TX","78613",,,,,,,"742457746","5122191645",,,,"2011-07-06T13:20:17-0500","BETTE JORDAN",,,,,10,7,0,3,10,0,10,10,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706143748P030417482448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"401K PLAN FOR STEPHEN M QUINLAN MD","001","1988-01-01","STEPHEN M QUINLAN","STEPHEN M QUINLAN MD",,"411 LAUREL SUITE 2225",,"DES MOINES","IA","50314",,,,,,,"411 LAUREL SUITE 2225",,"DES MOINES","IA","50314",,,,,,,"421296170","5152447444","621111","STEPHEN M QUINLAN",,"411 LAUREL SUITE 2225",,"DES MOINES","IA","50314",,,,,,,"421296170","5152447444",,,,"2011-07-06T14:36:40-0500","THEODORE MULLINS",,,,,2,2,0,0,2,0,2,2,0,,"2G2E2J3B3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707113434P040091797569001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NATIONAL SOCIETY OF PROFESSIONAL ENGINEERS SAVINGS PLAN AND TRUST","002","1983-08-01","NATIONAL SOCIETY OF PROFESSIONAL ENGINEERS",,,"1420 KING STREET",,"ALEXANDRIA","VA","223142750",,,,,,,"1420 KING STREET",,"ALEXANDRIA","VA","223142750",,,,,,,"521353803","7036842800","541990","NATIONAL SOCIETY OF PROFESSIONAL ENGINEERS",,"1420 KING STREET",,"ALEXANDRIA","VA","223142750",,,,,,,"521353803","7036842800",,,,"2011-07-07T11:26:31-0500","LAWRENCE JACOBSON",,,,,113,82,0,29,111,0,111,111,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707113938P040091800001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WYNNCHURCH CAPITAL LIMITED 401K PLAN & TRUST","001","2001-01-15","WYNNCHURCH CAPITAL LIMITED",,"ROY SROKA","6250 N. RIVER ROAD","SUITE 10-100","ROSEMONT","IL","60018",,,,,,,,,,,,,,,,,,"364284329","8476046100","523900","WYNNCHURCH CAPITAL LIMITED","ROY SROKA","6250 N. RIVER ROAD","SUITE 10-100","ROSEMONT","IL","60018",,,,,,,"364284329","8476046100",,,,"2011-07-07T11:38:54-0500","ROY SROKA",,,,,21,22,0,4,26,0,26,26,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707085540P040091710689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERNATIONAL REPUBLICAN INSTITUTE WELFARE PLAN","501","2004-01-01","INTERNATIONAL REPUBLICAN INSTITUTE",,,"1225 I STREET NW","SUITE 700","WASHINGTON","DC","20005",,,,,,,,,,,,,,,,,,"521340267","2024089450","813000","INTERNATIONAL REPUBLICAN INSTITUTE",,"1225 I STREET NW","SUITE 700","WASHINGTON","DC","20005",,,,,,,"521340267","2024089450",,,,"2011-07-06T11:15:01-0500","DAVID PUENING",,,,,140,130,4,0,134,,,,,,,"4A4B4D4E4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707085713P040091711345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOWERS BREWER GARRETT & WILEY PROFIT SHARING PLAN","002","1989-01-01","BOWERS BREWER GARRETT & WILEY",,,"301 WARREN STREET",,"HUNTINGTON","IN","46750",,,,,,,,,,,,,,,,,,"350190825","2603564800","541110","BOWERS BREWER GARRETT & WILEY",,"301 WARREN STREET",,"HUNTINGTON","IN","46750",,,,,,,"350190825","2603564800",,,,"2011-07-07T08:57:05-0500","ROBERT S. GARRETT","2011-07-07T08:57:05-0500","ROBERT S. GARRETT",,,9,9,0,0,9,0,9,9,0,,"2T3D2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705111743P040090468161001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"B. MEINHARDT, INC. EMPLOYEES' PROFIT SHARING PLAN","001","1979-01-01","B. MEINHARDT, INC.",,,"P.O. BOX 74",,"EAST HANOVER","NJ","07936",,,,,,,"30-B RIDGEDALE AVENUE",,"EAST HANOVER","NJ","07936",,,,,,,"222335735","9733869700","424300","B. MEINHARDT, INC.",,"P.O. BOX 74",,"EAST HANOVER","NJ","07936",,,,,,,"222335735","9733869700",,,,"2011-07-05T10:45:35-0500","BRIAN GREGOV",,,,,5,0,0,2,2,0,2,2,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706145548P040091265041001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"AMLON INDUSTRIES EMPLOYEE 401(K) RETIREMENT","001","1997-01-01","AMLON INDUSTRIES, INC.",,,"254 HELICOPTER CIRCLE",,"CORONA","CA","92880",,,,,,,"254 HELICOPTER CIRCLE",,"CORONA","CA","92880",,,,,,,"330044165","9512788888","323100","AMLON INDUSTRIES, INC.",,"254 HELICOPTER CIRCLE",,"CORONA","CA","92880",,,,,,,"330044165","9512788888",,,,"2011-07-06T14:53:37-0500","JOYCE THOMSON",,,,,14,11,0,4,15,0,15,13,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110705093657P030087807761001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JAMES K. HERSTOFF PROFIT SHARING PLAN","001","1977-01-01","JAMES K. HERSTOFF, M.D.",,,"75 GIBBS AVENUE",,"NEWPORT","RI","028402216",,,,,,,"75 GIBBS AVENUE",,"NEWPORT","RI","028402216",,,,,,,"050368575","4018492223","621111","JAMES K. HERSTOFF, M.D.",,"75 GIBBS AVENUE",,"NEWPORT","RI","028402216",,,,,,,"050368575","4018492223",,,,"2011-07-05T03:07:08-0500","JAMES K HERSTOFF MD",,,,,2,2,,,2,,2,2,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705144545P030414706944001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WHITE WAY LAUNDRY, INCORPORATED SECTION 401(K) PROFIT SHARING PLAN","001","1997-01-01","WHITE WAY LAUNDRY, INCORPORATED",,,"271 HALL AVENUE",,"WALLINGFORD","CT","06492",,,,,,,,,,,,,,,,,,"060944333","2032694444","812320","WHITE WAY LAUNDRY, INCORPORATED",,"271 HALL AVENUE",,"WALLINGFORD","CT","06492",,,,,,,"060944333","2032694444",,,,"2011-07-05T03:45:24-0500","FRANK MARESCA",,,,,69,57,0,10,67,0,67,67,8,,"2E2H2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707100241P040028690279001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"WESLEY GARDENS CORPORATION","501","1985-06-01","WESLEY GARDENS CORPORATION",,,"3 UPTON PARK",,"ROCHESTER","NY","14607",,,,,,,"3 UPTON PARK",,"ROCHESTER","NY","14607",,,,,,,"223139841","5852412100","623000","WESLEY GARDENS CORPORATION",,"3 UPTON PARK",,"ROCHESTER","NY","14607",,,,,,,"223139841","5852412100",,,,"2011-07-07T10:02:23-0500","FRANCIS DAMICO",,,,,178,178,,,178,,178,,,,,"4B4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110706164657P040413791424001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"TENEBRAE, LLC 401(K) PLAN","001","2004-05-04","TENEBRAE APPLIED EMPIRICISM, LLC",,,"121 ROGERS WAY",,"DUXBURY","MA","02332",,,,,,,,,,,,,,,,,,"320251040","7819346242","541600","TENEBRAE APPLIED EMPIRICISM, LLC",,"121 ROGERS WAY",,"DUXBURY","MA","02332",,,,,,,"320251040","7819346242",,,,"2011-07-06T16:30:13-0500","PETER PATTINSON",,,,,2,0,0,0,0,0,0,,,,"2E2F2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110705071626P030087734961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REGENTATLANTIC CAPITAL, LLC CASH BALANCE PLAN","003","2003-01-01","REGENTATLANTIC CAPITAL, LLC",,,"1200 MT. KEMBLE AVENUE",,"MORRISTOWN","NJ","07960",,,,,,,,,,,,,,,,,,"223822194","9734258420","523900","REGENTATLANTIC CAPITAL, LLC",,"1200 MT. KEMBLE AVENUE",,"MORRISTOWN","NJ","07960",,,,,,,"223822194","9734258420",,,,"2011-07-05T07:16:16-0500","JENNIFER PAPADOPOLO",,,,,41,24,0,8,32,0,32,,0,,"1A1C1G1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110701113058P030404105696001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GORMAN & COMPANY, INC. 401(K) PLAN","001","1989-08-01","GORMAN & COMPANY, INC.",,,"200 NORTH MAIN STREET",,"OREGON","WI","53575",,,,,,,,,,,,,,,,,,"391490225","6088353900","531390","GORMAN & COMPANY, INC.",,"200 NORTH MAIN STREET",,"OREGON","WI","53575",,,,,,,"391490225","6088353900",,,,"2011-07-01T11:30:50-0500","JOYCE WUETRICH",,,,,98,58,0,38,96,0,96,96,12,,"3D2E2J2K2F2G2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701052152P030085492081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEB LISTINGS CORPORATION PROFIT SHARING 401(K) PLAN","001","1999-01-01","WEB LISTINGS CORPORATION",,,"915 HAYNE ROAD",,"HILLSBOROUGH","CA","94010",,,,,,,,,,,,,,,,,,"954572573","6505339889","541600","WEB LISTINGS CORPORATION",,"915 HAYNE ROAD",,"HILLSBOROUGH","CA","94010",,,,,,,"954572573","6505339889",,,,"2011-06-30T14:16:51-0500","GRETCHEN VON GUSTLIN",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701144947P030085754161001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MAASS MANUFACTURING, INC. 401(K) PROFIT SHARING PLAN","001","1973-10-31","MAASS MANUFACTURING, INC.",,,"PO BOX 547",,"HUNTLEY","IL","60142",,,,,,,,,,,,,,,,,,"390859375","8476695135","332900","MAASS MANUFACTURING, INC.",,"PO BOX 547",,"HUNTLEY","IL","60142",,,,,,,"390859375","8476695135",,,,"2011-07-01T14:47:29-0500","JOHN SURINAK",,,,,34,29,0,0,29,0,29,29,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706150345P040013415474001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PADUCAH DENTAL CARE RETIREMENT PLAN & TRUST","001","1992-01-01","WILLIAM E. WALDEN, D.M.D., P.S.C.",,,"5154 VILLAGE SQUARE DRIVE",,"PADUCAH","KY","42001",,,,,,,,,,,,,,,,,,"611207763","2704446414","621210","WILLIAM E. WALDEN, D.M.D., P.S.C.",,"5154 VILLAGE SQUARE DRIVE",,"PADUCAH","KY","42001",,,,,,,"611207763","2704446414",,,,"2011-07-06T15:02:47-0500","WILLIAM E. WALDEN, D.M.D.","2011-07-06T15:02:47-0500","WILLIAM E. WALDEN, D.M.D.",,,15,11,2,2,15,0,15,15,1,,"2A2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706161109P040091305681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DICK DISTRIBUTING CO PROFIT SHARING PLAN AND TRUST","002","1990-01-01","DICK DISTRIBUTING CO INC",,"MARK DICK","PO BOX 351",,"GRAND RAPIDS","MN","55744",,,,,,,"PO BOX 351",,"GRAND RAPIDS","MN","55744",,,,,,,"410910000","2183263209","422800","DICK DISTRIBUTING CO INC","MARK DICK","PO BOX 351",,"GRAND RAPIDS","MN","55744",,,,,,,"410910000","2183263209",,,,"2011-07-06T16:09:57-0500","MARK YOUNG",,,,,9,10,,,10,,10,10,,,"2N",,,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630180926P040087782417001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ILLINOIS FLUSH DOOR 401 K PROFIT SHARING PLAN","002","2004-01-01","ILLINOIS FLUSH DOOR INC",,,"6726 BLACKBURN PL",,"DOWNERS GROVE","IL","60516",,,,,,,"14335 S VAN DYKE RD UNIT103",,"PLAINFIELD","IL","60544",,,,,,,"366068479","8154363113","236110","ILLINOIS FLUSH DOOR INC",,"6726 BLACKBURN PL",,"DOWNERS GROVE","IL","60516",,,,,,,"366068479","6304084596","THE GEORGE ARQUILLA COMPANIES INC","208334091","002","2011-06-30T18:08:16-0500","CAROL ROGLIN",,,,,51,54,,8,62,,62,32,1,,"2E2F2G2J2K3E3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701075342P040012964162001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BENNETT INTERNATIONAL/BENNETT MOTOR EXPRESS EMPLOYEE BENEFIT PLAN","501","1993-01-01","BENNETT INTERNATIONAL GROUP, INC./ BENNETT MOTOR EXPRESS, INC.",,,"1001 INDUSTRIAL PARKWAY",,"MCDONOUGH","GA","30253",,,,,,,,,,,,,,,,,,"581614971","7709571866","484120","BENNETT INTERNATIONAL GROUP, INC./ BENNETT MOTOR EXPRESS, INC.",,"1001 INDUSTRIAL PARKWAY",,"MCDONOUGH","GA","30253",,,,,,,"581614971","7709571866",,,,"2011-07-01T07:53:35-0500","DAVID PITTMAN",,,,,417,390,0,0,390,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706112700P040013395826001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHAMBERLAIN & STEWARD PROFIT SHARING PLAN AND TRUST","001","1985-06-17","CHAMBERLAIN & STEWARD ASSOCIATES LTD",,,"400 PARK AVENUE FL 6",,"NEW YORK","NY","100224470",,,,,,,"400 PARK AVENUE FL 6",,"NEW YORK","NY","100224470",,,,,,,"133279213","2123714980","551112","CHAMBERLAIN & STEWARD ASSOCIATES LTD",,"400 PARK AVENUE FL 6",,"NEW YORK","NY","100224470",,,,,,,"133279213","2123714980",,,,"2011-07-06T11:10:33-0500","LAWRENCE BUKZIN",,,,,4,4,0,0,4,0,4,4,0,,"2E2G3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706072333P040412573136001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CAROL FOR EVA GRAHAM, INC. PROFIT SHARING PLAN","001","1993-01-01","CAROL FOR EVA GRAHAM, INC.",,,"366 FIFTH AVE., SUITE 704",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"133427639","2128898686","321210","CAROL FOR EVA GRAHAM, INC.",,"366 FIFTH AVE., SUITE 704",,"NEW YORK","NY","10001",,,,,,,"133427639","2128898686",,,,"2011-07-06T07:23:24-0500","EVA C. GRAHAM","2011-07-06T07:23:24-0500","EVA C. GRAHAM",,,13,11,0,2,13,0,13,13,0,,"2A2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706161313P040413735152001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALLISON, SLUTSKY & KENNEDY, P.C. PROFIT SHARING PLAN","001","1995-01-01","ALLISON, SLUTSKY & KENNEDY, P.C.",,,"230 W MONROE ST STE 2600",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"363994099","3123649400","541110","ALLISON, SLUTSKY & KENNEDY, P.C.",,"230 W MONROE ST STE 2600",,"CHICAGO","IL","60606",,,,,,,"363994099","3123649400",,,,"2011-07-06T16:13:04-0500","THOMAS D. ALLISON",,,,,10,10,0,1,11,0,11,11,0,,"2T3D2E2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110701083301P040399836912001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TRISTATE RESISTANCE WELDING PRODUCTS INC PROFIT SHARING PLAN","001","1997-01-01","TRISTATE RESISTANCE WELDING PRODUCTS, INC",,,"7024 HARRISON AVE",,"CINCINNATI","OH","45247",,,,,,,,,,,,,,,,,,"311448239","5133539020","423800","TRISTATE RESISTANCE WELDING PRODUCTS INC",,"7024 HARRISON AVE",,"CINCINNATI","OH","45247",,,,,,,"311448239","5133539020",,,,"2011-06-30T08:50:39-0500","JAMES M KENNING",,,,,2,2,,,2,,2,2,,,"3D2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701141407P040088282689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROFESSIONAL BUSINESS PROVIDERS, INC. 401(K) PLAN","001","2004-03-01","PROFESSIONAL BUSINESS PROVIDERS INC",,,"450 E. ROUTE 22",,"LAKE ZURICH","IL","60047",,,,,,,,,,,,,,,,,,"364483147","8475509366","811310","PROFESSIONAL BUSINESS PROVIDERS INC",,"450 E. ROUTE 22",,"LAKE ZURICH","IL","60047",,,,,,,"364483147","8475509366",,,,"2011-07-01T14:11:49-0500","CHRISTINE FOGGIA","2011-07-01T14:13:29-0500","NICHOLAS FASANO",,,20,14,0,5,19,0,19,19,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706081911P030088362449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE WATERS SENIOR LIVING, LLC 401(K) PROFIT SHARING PLAN","001","2003-05-01","THE WATERS SENIOR LIVING, LLC",,,"9031 PENN AVENUE S.",,"BLOOMINGTON","MN","55431",,,,,,,,,,,,,,,,,,"411936363","9528863260","623000","THE WATERS SENIOR LIVING, LLC",,"9031 PENN AVENUE S.",,"BLOOMINGTON","MN","55431",,,,,,,"411936363","9528863260",,,,"2011-07-06T08:19:07-0500","LAURIE HONZA",,,,,33,28,0,5,33,0,33,12,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706125320P040091209425001","2010-01-01","2010-09-27","2",,"0","0","1","1","0","1","0","0","0",,"AMERICAN CRITICAL CARE SERVICES 401K PLAN","001","1995-01-01","AMERICAN CRITICAL CARE SERVICES",,,"221 RUTHERS ROAD SUITE 103",,"RICHMOND","VA","23235",,,,,,,,,,,,,,,,,,"541372204","8043201113","621610","AMERICAN CRITICAL CARE SERVICES",,"221 RUTHERS ROAD SUITE 103",,"RICHMOND","VA","23235",,,,,,,"541372204","8043201113",,,,"2011-07-06T12:53:05-0500","TIFFANY YARBROUGH","2011-07-06T12:53:05-0500","TIFFANY YARBROUGH",,,165,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706125404P030012885202001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"CLOUGHERTY PACKING COMPANY SALARIED HEALTH PLAN","501","1981-01-01","CLOUGHERTY PACKING COMPANY",,,"3049 EAST VERNON AVENUE",,"LOS ANGELES","CA","90058",,,,,,,,,,,,,,,,,,"951465844","3235834621","311610","CLOUGHERTY PACKING COMPANY",,"3049 EAST VERNON AVENUE",,"LOS ANGELES","CA","90058",,,,,,,"951465844","3235834621",,,,"2011-07-06T11:24:30-0500","ERNIE ARAUZA",,,,,1776,1821,0,0,1821,,1821,,,,,"4A4B4D4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110701030230P030012424370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AH ENVIRONMENTAL CONSULTANTS, INC. 401(K) P/S PLAN & TRUST","001","2000-01-01","AH ENVIRONMENTAL CONSULTANTS, INC.",,,"11837 ROCK LANDING DRIVE, SUITE 300",,"NEWPORT NEWS","VA","23606",,,,,,,,,,,,,,,,,,"541821699","7578734959","541330","AH ENVIRONMENTAL CONSULTANTS, INC.",,"11837 ROCK LANDING DRIVE, SUITE 300",,"NEWPORT NEWS","VA","23606",,,,,,,"541821699","7578734959",,,,"2011-06-30T16:31:25-0500","DALE KEAFER","2011-06-30T16:31:25-0500","EDWARD ANTOUN",,,50,41,0,4,45,0,45,27,2,,"2E2G2J2K2F2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110701031728P030002512131001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HIGH SIERRA SHARED SERVICES, LLC EMPLOYEE BENEFIT PLAN","510","2006-10-01","HIGH SIERRA SHARED SERVICES, LLC",,,"3773 CHERRY CREEK NORTH DRIVE","SUITE 1000","DENVER","CO","80209",,,,,,,,,,,,,,,,,,"261389248","3038151010","561300","HIGH SIERRA SHARED SERVICES, LLC",,"3773 CHERRY CREEK NORTH DRIVE","SUITE 1000","DENVER","CO","80209",,,,,,,"261389248","3038151010",,,,"2011-06-30T16:24:48-0500","KAREN WILCOX",,,,,396,367,13,0,380,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706100130P030012869970004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GLIMCHER REALTY TRUST LTD PLAN","504","1998-04-01","GLIMCHER REALTY TRUST",,,"180 EAST BROAD STREET",,"COLUMBUS","OH","43215",,,,,,,"180 EAST BROAD STREET",,"COLUMBUS","OH","43215",,,,,,,"311390518","6146219000","531120","GLIMCHER REALTY TRUST",,"180 EAST BROAD STREET",,"COLUMBUS","OH","43215",,,,,,,"311390518","6146219000",,,,"2011-07-06T05:43:47-0500","GRACE E. SCHMITT","2011-07-06T05:43:47-0500","LISA A, INDEST",,,361,376,,,376,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706102506P040028452263001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WHI MANAGED PROPERTIES RETIREMENT PLAN & TRUST-RIVER ROAD HOTEL CORP","001","1991-07-01","RIVER ROAD HOTEL CORP.",,,"4243 HUNT ROAD",,"CINCINNATI","OH","45242",,,,,,,,,,,,,,,,,,"341086814","5137942566","721110","WINEGARDNER & HAMMONS, INC.","PAYROLL SUPERVISOR","4243 HUNT ROAD",,"CINCINNATI","OH","45242",,,,,,,"310725098","5137942566",,,,"2011-07-06T10:22:53-0500","JOHN SLABOCH",,,,,12,,,8,8,,8,8,,,"2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706140008P030012890386002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VLASTOS, HENLEY & DRELL, P.C. PROFIT SHARING PLAN THE LIBRA PLAN","001","1985-01-01","VLASTOS, HENLEY & DRELL, P.C.",,,"P.O. BOX 10",,"CASPER","WY","82602",,,,,,,,,,,,,,,,,,"830272027","3072356613","541110","VLASTOS, HENLEY & DRELL, P.C.",,"P.O. BOX 10",,"CASPER","WY","82602",,,,,,,"830272027","3072356613",,,,"2011-07-01T18:00:36-0500","JOHN I. HENLEY","2011-07-01T18:00:44-0500","JOHN I. HENLEY",,,6,6,0,0,6,0,6,6,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706140019P040013409570001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDPACE, INC. VOLUNTARY LIFE AND ACCIDENT PLAN","503","2004-02-01","MEDPACE, INC.",,,"4820 RED BANK RD",,"CINCINNATI","OH","45227",,,,,,,,,,,,,,,,,,"753033627","5135799911","541700","MEDPACE, INC.",,"4820 RED BANK RD",,"CINCINNATI","OH","45227",,,,,,,"753033627","5135799911",,,,"2011-07-06T14:00:14-0500","ADAM VREELAND, EXEC. DIR. ADMIN.",,,,,188,177,,,177,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630111043P040087578897006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHARLES HENDERSON CHILD HEALTH CENTER DEFINED CONTRIBUTION RETIREMENT PLAN","001","1980-01-01","CHARLES HENDERSON MEMORIAL ASSOCIATION",,,"P.O. BOX 928",,"TROY","AL","36081",,,,,,,,,,,,,,,,,,"636092641","3345667600","611000","CHARLES HENDERSON MEMORIAL ASSOCIATION",,"P.O. BOX 928",,"TROY","AL","36081",,,,,,,"636092641","3345667600",,,,"2011-06-30T05:53:48-0500","SUSANNE ADAMS",,,,,79,64,,18,82,,82,74,0,,"2L3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630170539P040398196416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLUE CROSS & BLUE SHIELD OF MISS, INC. GROUP DENTAL PLAN","510","1989-07-01","BLUE CROSS & BLUE SHIELD OF MISSISSIPPI",,,"3545 LAKELAND DRIVE",,"JACKSON","MS","392088839",,,,,,,,,,,,,,,,,,"640295748","6019323704","524290","BLUE CROSS & BLUE SHIELD OF MISSISSIPPI",,"3545 LAKELAND DRIVE",,"JACKSON","MS","392088839",,,,,,,"640295748","6019323704",,,,"2011-06-30T17:05:37-0500","AMY AYERS","2011-06-30T17:05:37-0500","AMY AYERS",,,860,598,197,108,903,,,,,,,"4D",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110701100951P040012973938001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CAROLINA PRODUCTS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2007-01-01","CAROLINA PRODUCTS, INC.",,,"1132 PRO AM DRIVE",,"CHARLOTTE","NC","28211",,,,,,,,,,,,,,,,,,"560951942","7043649029","335310","CAROLINA PRODUCTS, INC.",,"1132 PRO AM DRIVE",,"CHARLOTTE","NC","28211",,,,,,,"560951942","7043649029",,,,"2011-06-30T12:21:42-0500","ANN FOUTCH",,,,,45,42,0,1,43,0,43,43,1,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706105107P030012874770001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ALPHA REVIEW CORPORATION 401(K) PLAN AND TRUST","001","2003-01-01","ALPHA REVIEW CORPORATION",,,"1807 W. DIEHL ROAD",,"NAPERVILLE","IL","60563",,,,,,,,,,,,,,,,,,"364025216","6303058108","524290","ALPHA REVIEW CORPORATION",,"1807 W. DIEHL ROAD",,"NAPERVILLE","IL","60563",,,,,,,"364025216","6303058108",,,,"2011-07-06T10:50:56-0500","MICHAEL DREVALAS","2011-07-06T10:50:56-0500","MICHAEL DREVALAS",,,17,16,0,1,17,0,17,17,1,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630150548P030085116561001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BASE LINE DATA PROFIT SHARING AND 401(K) PLAN","001","1989-10-01","BASE LINE DATA, INC.",,,"P.O. BOX 925",,"PORTLAND","TX","78374",,,,,,,"206 LANG ROAD",,"PORTLAND","TX","78374",,,,,,,"742373550","3616433400","541380","BASE LINE DATA, INC.",,"P.O. BOX 925",,"PORTLAND","TX","78374",,,,,,,"742373550","3616433400",,,,"2011-06-30T15:04:55-0500","BARBARA RALLS",,,,,74,52,0,14,66,0,66,54,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630150632P030085116865001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"SAMMIES BAR-B-Q INC","501","1996-02-01","SAMMIES BAR-B-Q INC.",,,"3801 E. BELKNAP",,"FORT WORTH","TX","76111",,,,,,,,,,,,,,,,,,"751995985","8178341822","722110","SAMMIES BAR-B-Q INC.",,"3801 E. BELKNAP",,"FORT WORTH","TX","76111",,,,,,,"751995985","8178341822","BOBBY PLATT",,,"2011-06-30T15:04:53-0500","GREG THOMAS",,,,,4,4,,,4,,4,,,,,"4A4D","1",,,,"1",,,,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701101523P040088180433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PATHWAY BANK 401(K) PROFIT SHARING PLAN","001","1962-01-01","PATHWAY BANK",,,"306 SOUTH HIGH STREEET","PO BOX 428","CAIRO","NE","68824",,,,,,,,,,,,,,,,,,"470306980","3083822128","522110","PATHWAY BANK",,"306 SOUTH HIGH STREEET","PO BOX 428","CAIRO","NE","68824",,,,,,,"470306980","3083822128",,,,"2011-07-01T10:13:47-0500","CYNTHIA POPE",,,,,53,52,0,2,54,0,54,54,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701080749P040012965154001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WESTBY CORPORATION 401(K) PLAN","001","1997-11-01","WESTBY CORPORATION",,,"11450 SE DIXIE HIGHWAY, SUITE 204",,"HOBE SOUND","FL","33455",,,,,,,,,,,,,,,,,,"510115384","7725459040","561110","WESTBY CORPORATION",,"11450 SE DIXIE HIGHWAY, SUITE 204",,"HOBE SOUND","FL","33455",,,,,,,"510115384","7725459040",,,,"2011-07-01T08:02:00-0500","LUCILLE F. KEEGAN",,,,,15,14,0,1,15,0,15,15,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701190343P030085868017001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","0","0","0","0",,"IBEW LOCAL 575 PENSION FUND","001","1979-01-01","JOINT BOARD OF TRUSTEES OF IBEW LOCAL 575 PENSION FUND",,"AMERICAN BENEFIT CORPORATION","3150 ROUTE 60",,"ONA","WV","25545",,,,,,,"3150 ROUTE 60",,"ONA","WV","25545",,,,,,,"621059603","3045250331","238210","JOINT BOARD OF TRUSTEES OF IBEW LOCAL 575 PENSION FUND","AMERICAN BENEFIT CORPORATION","3150 ROUTE 60",,"ONA","WV","25545",,,,,,,"621059603","3045250331",,,,"2011-07-01T09:19:16-0500","SONYA PATRICK","2011-07-01T14:30:48-0500","JOSEPH DILLOW",,,665,639,8,4,651,4,655,594,,33,"2G",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706113932P040091177745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SYSTEM PLANNING CORPORATION LIFE PLAN","501","1972-04-15","SYSTEM PLANNING CORPORATION",,,"3601 WILSON BOULEVARD",,"ARLINGTON","VA","22201",,,,,,,,,,,,,,,,,,"540882801","7033518214","541330","SYSTEM PLANNING CORPORATION",,"3601 WILSON BOULEVARD",,"ARLINGTON","VA","22201",,,,,,,"540882801","7033518214",,,,"2011-07-06T11:26:07-0500","LAWRENCE EDWARDS",,,,,205,209,0,0,209,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630094915P040397280560001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"N. E. MISSOURI ORTHOPEDIC ASSOCIATES, P.C. PROFIT SHARING PLAN","001","1983-09-01","N. E. MISSOURI ORTHOPEDIC ASSOCIATES, P.C.",,,"PO BOX 249","1108 E PATTERSON ST","KIRKSVILLE","MO","635010249",,,,,,,,,,,,,,,,,,"431304277","6606271229","621111","N. E. MISSOURI ORTHOPEDIC ASSOCIATES, P.C.",,"1108 E PATTERSON ST","P.O. BOX 249","KIRKSVILLE","MO","635010249",,,,,,,"431304277","6606271229",,,,"2011-06-30T09:49:14-0500","DR. EDWARD G. BROWNING",,,,,5,3,0,1,4,0,4,4,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630134507P040087663361005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HAWTHORNE EDUCATIONAL SERVICES,INC. PROFIT SHARING PLAN","001","1994-01-01","HAWTHORNE EDUCATIONAL SERVICES, IN",,,"800 GRAY OAK DRIVE",,"COLUMBIA","MO","652013730",,,,,,,,,,,,,,,,,,"431314645","5738741710","511130","HAWTHORNE EDUCATIONAL SERVICES","SUSAN KURTZ","800 GRAY OAK DRIVE",,"COLUMBIA","MO","65201",,,,,,,"431314645","5738741710",,,,"2011-06-30T13:37:04-0500","SUSAN KURTZ","2011-06-30T13:42:29-0500","MICHELE JACKSON",,,10,10,0,0,10,0,10,10,,,"2I2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110701084249P040088138705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE BID 403B PLAN","001","1997-01-01","DOWNTOWN ALBANY RESTORATION PROGRAM","DOWNTOWN BID",,"522 BROADWAY",,"ALBANY","NY","122072705",,,,,,,,,,,,,,,,,,"141790346","5184652143","813000","DOWNTOWN ALBANY RESTORATION PROGRAM",,"522 BROADWAY",,"ALBANY","NY","122072705",,,,,,,"141790346","5184652143",,,,"2011-07-01T08:41:49-0500","DONALD WILSON",,,,,10,5,0,2,7,0,7,3,0,,"2L2T3D2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701092106P030012448962001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LINDSAY CORPORATION VOLUNTARY LONG TERM DISABILITY PLAN","506","2009-01-01","LINDSAY CORPORATION",,,"2222 N. 111 STREET",,"OMAHA","NE","68164",,,,,,,,,,,,,,,,,,"470554096","4028296800","333100","LINDSAY CORPORATION",,"2222 N. 111 STREET",,"OMAHA","NE","68164",,,,,,,"470554096","4028296800",,,,"2011-07-01T08:18:22-0500","DANIEL KELLER",,,,,123,193,0,0,193,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701134444P030085715185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMG, INC. EMPLOYEE HEALTH & WELFARE BENEFIT PLAN","501","1989-08-01","AMG, INC.",,,"1497 SHOUP MILL ROAD",,"DAYTON","OH","45414",,,,,,,,,,,,,,,,,,"310983767","9372740736","541990","AMG, INC.",,"1497 SHOUP MILL ROAD",,"DAYTON","OH","45414",,,,,,,"310983767","9372740736",,,,"2011-07-01T13:44:28-0500","ALBERTO MENDEZ",,,,,72,43,0,0,43,,,,,,,"4A4B4D4F4H","1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706090639P030088386097006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CAPITAL TECHNOLOGY SOURCE LLC 401K PLAN","001","2008-01-01","CAPITAL TECHNOLOGY SOURCE LLC",,,"2805 E OAKLAND PARK BLVD STE 418",,"FORT LAUDERDALE","FL","33306",,,,,,,,,,,,,,,,,,"202639028","9545689900","541519","CAPITAL TECHNOLOGY SOURCE LLC",,"2805 E OAKLAND PARK BLVD STE 418",,"FORT LAUDERDALE","FL","33306",,,,,,,"202639028","9545689900",,,,"2011-07-01T14:12:26-0500","MARCUS PRADEL",,,,,4,5,,,5,,5,3,,,"3D2T2K2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630171540P030085185953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLLISION SOLUTION, INC. 401K P/S PLAN","001","2007-01-01","COLLISION SOLUTION, INC. 401K P/S PLAN",,,"1026 SHERIDAN ROAD",,"NORTH CHICAGO","IL","60064",,,,,,,,,,,,,,,,,,"364389539","8476899050","811120","COLLISION SOLUTION, INC. 401K P/S PLAN",,"1026 SHERIDAN ROAD",,"NORTH CHICAGO","IL","60064",,,,,,,"364389539","8476899050",,,,"2011-06-30T16:50:33-0500","HAL DAVIS","2011-06-30T16:50:33-0500","HAL DAVIS",,,10,6,,5,11,,11,11,,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630123656P030002500755001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHERN CROSS WIRELESS 401(K) PLAN","001","2006-01-01","SOUTHERN CROSS WIRELESS COMMUNICATIONS LLC",,,"12871 PERKINS ROAD",,"BATON ROUGE","LA","70810",,,,,,,,,,,,,,,,,,"202018444","2254087007","811490","SOUTHERN CROSS WIRELESS COMMUNICATIONS LLC",,"12871 PERKINS ROAD",,"BATON ROUGE","LA","70810",,,,,,,"202018444","2254087007",,,,"2011-06-30T12:28:10-0500","JOHN SHAFER",,,,,20,9,0,7,16,0,16,16,3,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701032259P030085447953001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONARCH CORPORATE CAPITAL, INC. 401(K) PLAN","001","2000-01-01","MONARCH CORPORATE CAPITAL, INC.",,,"P. O. BOX 7554",,"NORTHRIDGE","CA","913277554",,,,,,,,,,,,,,,,,,"954433222","8187006996","488990","MONARCH CORPORATE CAPITAL, INC.",,"P. O. BOX 7554",,"NORTHRIDGE","CA","913277554",,,,,,,"954433222","8187006996",,,,"2011-06-30T13:47:55-0500","RAVINDER SETHI","2011-06-30T13:47:55-0500","RAVINDER SETHI",,,7,5,0,0,5,0,5,5,0,,"2E2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630111526P040087581553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEINE BROTHERS COFFEE, INC. 401(K) PLAN","001","1995-05-01","HEINE BROTHERS COFFEE, INC.",,,"2714 FRANKFORT AVENUE",,"LOUISVILLE","KY","40206",,,,,,,,,,,,,,,,,,"611265448","5028995551","445299","HEINE BROTHERS COFFEE, INC.",,"2714 FRANKFORT AVENUE",,"LOUISVILLE","KY","40206",,,,,,,"611265448","5028995551",,,,"2011-06-30T11:04:59-0500","MIKE MAYS",,,,,58,48,0,3,51,0,51,28,0,,"2F2G3D2K2E2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630130951P040087641377001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"WHITEHALL SHELL CAR WASH PROFIT SHARING PLAN","001","1977-10-20","WSC OPERATIONS, LLC",,,"4780 EAST BROAD STREET",,"COLUMBUS","OH","43213",,,,,,,,,,,,,,,,,,"203895923","6148612551","811190","WSC OPERATIONS, LLC",,"4780 EAST BROAD STREET",,"COLUMBUS","OH","43213",,,,,,,"203895923","6148612551",,,,"2011-06-30T13:09:12-0500","LARRY FARRINGTON",,,,,4,0,0,0,0,0,0,0,0,,"2E2J2K3B3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110706111327P040091162705001","2010-01-01","2010-06-11","2",,"0","0","1","1","0","0","0","0","0",,"COLONY PHARMACY INC DBA THE PHARMACY COUNTER 401K","001","1988-01-01","COLONY PHARMACY INC DBA THE PHARMACY COUNTER",,,"3131 DOUGLAS ROAD",,"TOLEDO","OH","43606",,,,,,,,,,,,,,,,,,"340945608","4194731493","446110","COLONY PHARMACY INC DBA THE PHARMACY COUNTER",,"3131 DOUGLAS ROAD",,"TOLEDO","OH","43606",,,,,,,"340945608","4194731493",,,,"2011-07-06T11:11:51-0500","BRENDA L. WEISS",,,,,131,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706150021P040091267649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"C. DOUGLAS HENSLEY, MD 401(K) PROFIT SHARING PLAN","001","1995-01-01","C. DOUGLAS HENSLEY, MD",,,"305-B MIDDLETOWN PARK PLACE",,"LOUISVILLE","KY","402432517",,,,,,,,,,,,,,,,,,"611253343","5022542300","621111","C. DOUGLAS HENSLEY, MD",,"305-B MIDDLETOWN PARK PLACE",,"LOUISVILLE","KY","402432517",,,,,,,"611253343","5022542300",,,,"2011-07-06T15:00:12-0500","C. DOUGLAS HENSLEY, M.D.",,,,,6,5,0,0,5,0,5,5,0,,"2E3D2G2F3B2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630132201P040087650033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCRIPPS COASTAL MEDICAL GROUP HEALTH AND WELFARE PLAN","502","2009-01-01","SAN DIEGO COASTAL MEDICAL GROUP, INC.","SCRIPPS COASTAL MEDICAL GROUP, INC.","KEVIN S. HIRSCH, MD, FACP","501 WASHINGTON STREET","SUITE 500","SAN DIEGO","CA","92103",,,,,,,"501 WASHINGTON STREET","SUITE 500","SAN DIEGO","CA","92103",,,,,,,"330776371","6192783300","622000","SAN DIEGO COASTAL MEDICAL GROUP, INC.","KEVIN S. HIRSCH, MD, FACP","501 WASHINGTON STREET","SUITE 500","SAN DIEGO","CA","92103",,,,,,,"330776371","6192783300",,,,"2011-06-30T13:17:41-0500","KEVIN HIRSCH",,,,,121,131,2,0,133,0,133,,,,,"4A4B4D4E4H","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701121644P030026725111001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"B BARNES HOLDINGS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","B BARNES HOLDINGS INC",,,"1045 SANSOME ST. SUITE 402",,"SAN FRANCISCO","CA","94111",,,,,,,,,,,,,,,,,,"264067081","4153971900","541990","B BARNES HOLDINGS INC",,"1045 SANSOME ST. SUITE 402",,"SAN FRANCISCO","CA","94111",,,,,,,"264067081","4153971900",,,,"2011-07-01T00:16:42-0500","B BARNES HOLDINGS INC",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701105656P030012454402001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEE KIMBALL KITCHENS, INC. 401(K) AND PROFIT SHARING PLAN","001","2002-01-01","LEE KIMBALL KITCHENS, INC.",,,"2 LOWELL AVE",,"WINCHESTER","MA","01890",,,,,,,,,,,,,,,,,,"043039027","7818386100","541400","LEE KIMBALL KITCHENS, INC.",,"2 LOWELL AVE",,"WINCHESTER","MA","01890",,,,,,,"043039027","7818386100",,,,"2011-07-01T10:55:11-0500","BRUCE JOHNSON",,,,,16,10,0,5,15,0,15,15,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706055227P040090994353001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"HUNTSVILLE LASER CENTER PROFIT SHARING PLAN AND TRUST","001","2002-01-01","HUNTSVILLE LASER CENTER, LLC",,,"3501 MEMORIAL PARKWAY SW","SUITE 200","HUNTSVILLE","AL","35801",,,,,,,,,,,,,,,,,,"631229309","2567043937","621399","HUNTSVILLE LASER CENTER, LLC",,"3501 MEMORIAL PARKWAY SW","SUITE 200","HUNTSVILLE","AL","35801",,,,,,,"631229309","2567043937",,,,"2011-07-06T05:52:23-0500","WILLIAM MITCHELL",,,,,8,7,1,1,9,0,9,9,1,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706160609P040015203846001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLOSE TO HOME, INC. 401(K) PLAN","001","2004-01-01","CLOSE TO HOME, INC.",,,"1206 MARK AVE",,"TOMAH","WI","54660",,,,,,,,,,,,,,,,,,"391909115","6083745300","623000","CLOSE TO HOME, INC.",,"1206 MARK AVE",,"TOMAH","WI","54660",,,,,,,"391909115","6083745300",,,,"2011-07-06T16:03:18-0500","ROBERTA DIETZMAN",,,,,30,23,0,0,23,0,23,19,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110701201207P030085889905001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","0","0","0","0",,"KEITH W. LINFORD OD PC BASIC PSP PROTOTYPE MLPF&S FBO KEITH W. LINFORD","001","1991-12-01","KEITH W. LINFORD OD","KEITH W. LINFORD OD PC","KEITH W. LINFORD","1633 OAKCREST DR",,"OGDEN","UT","84403",,,,,,,"1633 OAKCREST DR",,"OGDEN","UT","84403",,,,,,,"870432418","8013945047","621320","KEITH W. LINFORD OD","KEITH W. LINFORD","1633 OAKCREST DR",,"OGDEN","UT","84403",,,,,,,"870432418","8013945047",,,,"2011-07-01T20:11:45-0500","KEITH LINFORD",,,,,5,1,1,3,5,0,5,4,0,,"2E2C3E2J",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706130008P030417271040001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"US CABLE CORPORATION HEALTH & WELFARE BENEFIT PLAN","501","1982-06-01","US CABLE CORPORATION",,,"28 WEST GRAND AVENUE",,"MONTVALE","NJ","07645",,,,,,,,,,,,,,,,,,"222123004","2019309000","515210","US CABLE CORPORATION",,"28 WEST GRAND AVENUE",,"MONTVALE","NJ","07645",,,,,,,"222123004","2019309000",,,,"2011-07-06T12:49:47-0500","DIANE ANANIAN-CASEY",,,,,577,696,,,696,,,,,,,"4A4B4D4E4H4Q","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630163309P040087746625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WELDON MACHINE TOOL, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1999-12-30","WELDON SOLUTIONS",,,"425 EAST BERLIN ROAD",,"YORK","PA","174088810",,,,,,,,,,,,,,,,,,"233023919","7178464000","333200","WELDON SOLUTIONS",,"425 EAST BERLIN ROAD",,"YORK","PA","174088810",,,,,,,"233023919","7178464000",,,,"2011-06-29T14:26:38-0500","TRAVIS GENTZLER",,,,,42,28,4,9,41,1,42,42,0,,"2E2I2O2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701132556P040400442672001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"YORK PATHOLOGY ASSOCIATES, P.A. 401(K) PROFIT SHARING PLAN AND TRUST","003","1994-01-01","YORK PATHOLOGY ASSOCIATES, P.A.",,,"P.O. BOX 4016-CRS",,"ROCK HILL","SC","29730",,,,,,,"P.O. BOX 4016 - CRS",,"ROCK HILL","SC","29730",,,,,,,"570751940","8033662545","621111","YORK PATHOLOGY ASSOCIATES, P.A.",,"P.O. BOX 4016-CRS",,"ROCK HILL","SC","29730",,,,,,,"570751940","8033662545",,,,"2011-07-01T12:34:11-0500","EARL JENKINS",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G3D2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701031111P030014077894001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAGOMARSINO FARMING 401(K) PLAN AND TRUST","001","1999-05-01","LAGOMARSINO FARMING, LLC",,,"222 N. GARDEN STREET","SUITE 400","VISALIA","CA","93291",,,,,,,,,,,,,,,,,,"770499317","5597359700","561300","LAGOMARSINO FARMING, LLC",,"222 N. GARDEN STREET","SUITE 400","VISALIA","CA","93291",,,,,,,"770499317","5597359700",,,,"2011-06-30T17:25:54-0500","MATTHEW WARMERDAM",,,,,22,17,0,4,21,0,21,16,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701143307P030012471554001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LIBERTY MEDIA 401K SAVINGS PLAN","001","1999-03-02","LIBERTY MEDIA LLC",,,"12300 LIBERTY BLVD",,"ENGLEWOOD","CO","801127009",,,,,,,,,,,,,,,,,,"841288730","7208755400","515210","LIBERTY MEDIA LLC",,"12300 LIBERTY BLVD",,"ENGLEWOOD","CO","801127009",,,,,,,"841288730","7208755400",,,,"2011-06-30T14:05:21-0500","CHRISTOPHER SHEAN",,,,,2633,1853,3,657,2513,,2513,1948,89,,"3H2R2K2J2I2G2F2E",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701150746P040088308817001","2010-06-21","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"ATHARVA TECHNOLOGY GROUP, INC. 401(K) PROFIT SHARING PLAN","001","2010-06-21","ATHARVA TECHNOLOGY GROUP, INC.",,,"16825 HICKORY CREST DRIVE",,"BALLWIN","MO","63011",,,,,,,,,,,,,,,,,,"272911843","6163087143","541910","ATHARVA TECHNOLOGY GROUP, INC.",,"16825 HICKORY CREST DRIVE",,"BALLWIN","MO","63011",,,,,,,"272911843","6163087143",,,,"2011-07-01T14:55:07-0500","ADESH SHARMA",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706095552P030416849168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DEROY & DEVEREAUX PRIVATE 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","DEROY & DEVEREAUX PRIVATE",,,"26777 CENTRAL PARK BLVD #180",,"SOUTHFIELD","MI","48076",,,,,,,,,,,,,,,,,,"382251232","2483583220","523900","DEROY & DEVEREAUX PRIVATE",,"26777 CENTRAL PARK BLVD #180",,"SOUTHFIELD","MI","48076",,,,,,,"382251232","2483583220",,,,"2011-07-06T09:55:49-0500","DEROY DEVEREAUX PRIVATE",,,,,13,13,0,1,14,0,14,14,0,,"2A2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706135117P030088539425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLASSIC CATERING PEOPLE INC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","CLASSIC CATERING PEOPLE INC",,,"99 PAINTERS MILLS ROAD",,"OWINGS MILLS","MD","21117",,,,,,,,,,,,,,,,,,"521715183","4103561666","722320","CLASSIC CATERING PEOPLE INC",,"99 PAINTERS MILLS ROAD",,"OWINGS MILLS","MD","21117",,,,,,,"521715183","4103561666",,,,"2011-07-06T01:51:15-0500","CLASSIC CATERING PEOPLE INC",,,,,0,145,0,0,145,0,145,16,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630112316P040397497200001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIDLAND PROFESSIONAL SERVICES, INC. MEDICAL-DENTAL PLAN","503","2003-01-01","MIDLAND PROFESSIONAL SERVICES, INC.",,,"5020 BOB BILLINGS PARKWAY, SUITE C",,"LAWRENCE","KS","66049",,,,,,,"5020 BOB BILLINGS PARKWAY, SUITE C",,"LAWRENCE","KS","66049",,,,,,,"481127189","7858409676","541990","MIDLAND PROFESSIONAL SERVICES, INC.",,"5020 BOB BILLINGS PARKWAY, SUITE C",,"LAWRENCE","KS","66049",,,,,,,"481127189","7858409676",,,,"2011-06-30T10:46:40-0500","ROGER MCCOLLISTER",,,,,139,142,,,142,,142,,,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630145028P030085109041008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE PLANET","501","2007-01-01","THE PLANET",,,"315 CAPITOL STREET, SUITE 205",,"HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"752817128","2144420606","518210","THE PLANET",,"315 CAPITOL STREET, SUITE 205",,"HOUSTON","TX","77002",,,,,,,"752817128","2144420606",,,,"2011-06-30T09:34:34-0500","GARY KINMAN",,,,,536,418,36,75,529,,,,,,,"4A4B4D4E4H4L","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630145039P040087691025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SIMPSON PLAZA HARDWARE INC. 401 (K) PLAN","001","2004-01-01","SIMPSON PLAZA HARDWARE",,,"40 W WESMARK BLVD",,"SUMTER","SC","29150",,,,,,,,,,,,,,,,,,"570441899","8037733397","423700","SIMPSON PLAZA HARDWARE",,"40 W WESMARK BLVD",,"SUMTER","SC","29150",,,,,,,"570441899","8037733397",,,,"2011-06-23T15:30:08-0500","CARL SIMPSON",,,,,22,16,0,0,16,0,16,16,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701110022P040400137072001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRAKE HUGHES BELLERMANN LLP 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","BRAKE HUGHES BELLERMANN LLP",,,"1701 PENNSYLVANIA AVE. NW","SUITE 300","WASHINGTON","DC","20036",,,,,,,,,,,,,,,,,,"202417546","2024706450","541110","BRAKE HUGHES BELLERMANN LLP",,"1701 PENNSYLVANIA AVE. NW","SUITE 300","WASHINGTON","DC","20036",,,,,,,"202417546","2024706450",,,,"2011-07-01T11:00:20-0500","BRAKE HUGHES BELLERMANN LLP",,,,,4,9,0,1,10,0,10,9,0,,"2A2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701051154P030085486337001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"PACMOORE PRODUCTS, INC. WELFARE BENEFIT PLAN","501","1996-08-01","PACMOORE PRODUCTS, INC.",,,"1844 SUMMER STREET",,"HAMMOND","IN","46320",,,,,,,,,,,,,,,,,,"201621299","2199322666","311900","PACMOORE PRODUCTS, INC.",,"1844 SUMMER STREET",,"HAMMOND","IN","46320",,,,,,,"201621299","2199322666",,,,"2011-06-30T18:48:35-0500","LEE RANDALL",,,,,191,222,0,0,222,,,,,,,"4A4B4D4E4F4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706103639P040412938208009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DOWNS RACHLIN & MARTIN PLLC HEALTH BENEFITS PLAN","504","1977-07-01","DOWNS RACHLIN & MARTIN PLLC",,,"90 PROSPECT STREET",,"ST JOHNSBURY","VT","051890099",,,,,,,,,,,,,,,,,,"030253168","8028627512","541110","DOWNS RACHLIN & MARTIN PLLC",,"90 PROSPECT STREET",,"ST JOHNSBURY","VT","051890099",,,,,,,"030253168","8028627512",,,,"2011-07-05T12:29:03-0500","BARBARA GRAF",,,,,128,119,,,119,,119,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706150150P040028519479001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIDLAND COGENERATION VENTURE LIMITED PARTNERSHIP DISABILITY & LIFE INSURANCE PLANS","503","1988-05-01","MIDLAND COGENERATION VENTURE LIMITED PARTNERSHIP",,,"100 PROGRESS PLACE",,"MIDLAND","MI","48640",,,,,,,"100 PROGRESS PLACE",,"MIDLAND","MI","48640",,,,,,,"382726166","9896337890","221100","MIDLAND COGENERATION VENTURE LIMITED PARTNERSHIP",,"100 PROGRESS PLACE",,"MIDLAND","MI","48640",,,,,,,"382726166","9896337890",,,,"2011-07-06T14:55:11-0500","GARY PASEK",,,,,121,112,0,0,112,,112,,,,,"4B4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706112506P030417057312001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BONNER CHEVROLET INC. 401(K)/PROFIT SHARING PLAN","001","1997-01-01","BONNER CHEVROLET, INC.",,,"694 WYOMING AVENUE",,"KINGSTON","PA","18704",,,,,,,"694 WYOMING AVENUE",,"KINGSTON","PA","18704",,,,,,,"240857460","5702872117","441110","BONNER CHEVROLET, INC.",,"694 WYOMING AVENUE",,"KINGSTON","PA","18704",,,,,,,"240857460","5702872117",,,,"2011-07-06T11:24:37-0500","RICHARD CROSSIN",,,,,41,39,0,4,43,0,43,43,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706120641P040091190977004","2010-01-01","2010-12-31","3",,,,,,,,,,,,"JAGELARD & SOFT-SERVE PROFIT SHARING PLAN","001","1985-01-01","JAGELARD, INC AND SOFT-SERVE, INC",,,"2 KELLEY CIRCLE",,"POUGHKEEPSIE","NY","12601",,,,,,,,,,,,,,,,,,"141548424","8455644020","722210","JAGELARD INC AND SOFT-SERVE INC",,"2 KELLEY CIRCLE",,"POUGHKEEPSIE","NY","12601",,,,,,,"141548424","8455644020",,,,"2011-07-06T11:44:29-0500","LOUIS GALLO",,,,,3,3,,,3,,3,3,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706115147P040013398114001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERVENTIONAL SPINE INSTITUTE OF FLORIDA 401(K) PROFIT SHARING PLAN AND TRUST","001","2009-01-01","INTERVENTIONAL SPINE INSTITUTE DBA SOAR",,,"308 S HARBOR CITY BLVD. SUITE A",,"MELBOURNE","FL","32901",,,,,,,,,,,,,,,,,,"810643060","3217330064","621111","INTERVENTIONAL SPINE INSTITUTE DBA SOAR",,"308 S HARBOR CITY BLVD. SUITE A",,"MELBOURNE","FL","32901",,,,,,,"810643060","3217330064",,,,"2011-07-06T11:51:18-0500","BRIAN C. DOWDELL, M.D.",,,,,24,12,0,14,26,0,26,16,0,,"2E2K2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706160748P040002761299001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"GRAVES & KING 401(K) PROFIT SHARING PLAN","001","1994-01-01","GRAVES & KING, LLP",,,"3610 FOURTEENTH STREET","2ND FLOOR","RIVERSIDE","CA","92501",,,,,,,"3610 FOURTEENTH STREET","2ND FLOOR","RIVERSIDE","CA","92501",,,,,,,"330584868","9516800100","541110","GRAVES & KING, LLP",,"3610 FOURTEENTH STREET","2ND FLOOR","RIVERSIDE","CA","92501",,,,,,,"330584868","9516800100",,,,"2011-07-06T16:07:02-0500","VICTOR R JOHNSON",,,,,37,27,0,10,37,0,37,32,0,,"2E2F2G2J2K2T3D2A",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706160849P040013420994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANK MUTUAL CORPORATION PENSION PLAN","001","1959-06-15","BANK MUTUAL CORPORATION",,,"P.O. BOX 245034",,"MILWAUKEE","WI","532249534",,,,,,,"4949 W. BROWN DEER ROAD",,"MILWAUKEE","WI","532249534",,,,,,,"392004336","4143541500","522120","BANK MUTUAL CORPORATION",,"P.O. BOX 245034",,"MILWAUKEE","WI","532249534",,,,,,,"392004336","4143541500",,,,"2011-07-06T16:01:16-0500","DIANE SOUTHWORTH",,,,,925,623,115,198,936,20,956,,56,,"1A1G",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706170257P040091342385001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JASON INCORPORATED FLEXIBLE COMPENSATION PLAN","525","2000-01-01","JASON INCORPORATED","JASON INCORPORATED","JASON INCORPORATED","411 E WISCONSIN AVE","SUITE 2120","MILWAUKEE","WI","53202",,,,,,,"411 E WISCONSIN AVE","SUITE 2120","MILWAUKEE","WI","53202",,,,,,,"391756840","4142779300","339900","JASON INCORPORATED","JASON INCORPORATED","411 E WISCONSIN AVE","SUITE 2120","MILWAUKEE","WI","53202",,,,,,,"391756840","4142779300",,,,"2011-07-06T16:46:24-0500","JOHN HENGEL",,,,,98,71,,,71,,71,,,,,"4A4D4E",,,,"1",,,,"1",,,,,,"0",,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630164314P030002505219002","2010-03-01","2011-02-28","2",,,,,,,,,,,,"PORTILLOS HOT DOGS, INC. PREMIUM CONVERSION WELFARE BENEFIT PLAN","501","1991-02-15","PORTILLO'S HOT DOG, INC.",,,"2001 SPRING ROAD","SUITE 500","OAK BROOK","IL","605232032",,,,,,,"2001 SPRING ROAD","SUITE 500","OAK BROOK","IL","605232032",,,,,,,"362679879","6309543773","722210","PORTILLO'S HOT DOG, INC.",,"2001 SPRING ROAD","SUITE 500","OAK BROOK","IL","605232032",,,,,,,"362679879","6309543773",,,,"2011-06-30T07:36:44-0500","GLENDA S.KNIPPEN","2011-06-30T07:36:44-0500","KAREN L. PETERSON",,,2393,2458,,,2458,,,,,,,"4A4D4E4H","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630174050P030085196417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROFIT SHARING PLAN","001","1991-01-01","SASITHORN R JITPAKDEE MD",,,"2509 W MCFADDEN AVE","SUITE C","SANTA ANA","CA","92704",,,,,,,"2509 W MCFADDEN AVE","SUITE C","SANTA ANA","CA","92704",,,,,,,"330444822","7145424724","621111","SASITHORN R JITPAKDEE MD",,"2509 W MCFADDEN AVE","SUITE C","SANTA ANA","CA","92704",,,,,,,"330444822","7145424724",,,,"2011-06-30T17:40:22-0500","SASITHORN JITPAKDEE",,,,,3,3,,,3,,3,3,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701131845P040088257521001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GENESEE PACKAGING, INC.- SHORT TERM DISABILITY","502","2008-07-01","GENESEE PACKAGING, INC.",,,"P.O. BOX 7716",,"FLINT","MI","48507",,,,,,,"2010N DORT HIGHWAY",,"FLINT","MI","48506",,,,,,,"382115957","8102356120","339900","GENESEE PACKAGING, INC.",,"P.O. BOX 7716",,"FLINT","MI","48507",,,,,,,"382115957","8102356120",,,,"2011-07-01T13:09:15-0500","VERONICA ARTIS",,,,,112,105,,,105,,105,,,,,"4F","1",,,,"1",,,,,,,,,"1","1",,,"1","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706083800P030088372209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIDWEST COMMUNICATIONS, INC. LIFE INSURANCE PLAN","501","1995-10-01","MIDWEST COMMUNICATIONS, INC.",,,"904 GRAND AVENUE",,"WAUSAU","WI","54403",,,,,,,,,,,,,,,,,,"391151193","7158421437","515100","MIDWEST COMMUNICATIONS, INC.",,"904 GRAND AVENUE",,"WAUSAU","WI","54403",,,,,,,"391151193","7158421437",,,,"2011-07-06T08:31:34-0500","PAUL W. RAHMLOW",,,,,268,287,0,0,287,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706085835P030012866194001","2007-02-01","2008-01-31","2",,"1","0","0","0","0","0","0","1","0",,"NATIONAL FIDELITY MORTGAGE","501","2007-02-01","NATIONAL FIDELITY MORTGAGE",,,"505 PROGRESS DRIVE",,"LINTHICUM","MD","21090",,,,,,,"505 PROGRESS DRIVE",,"LINTHICUM","MD","21090",,,,,,,"522192740","4103479988","522292","NATIONAL FIDELITY MORTGAGE",,"505 PROGRESS DRIVE",,"LINTHICUM","MD","21090",,,,,,,"522192740","4103479988",,,,"2011-07-05T08:37:44-0500","BERNADETTE PEARSON",,,,,152,149,0,0,149,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630193548P030085245233001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PCA RETIREMENT PLAN","001","2003-01-01","POSITIVE COACHING ALLIANCE",,,"1001 N. RENGSTORFF AVE., SUITE 100",,"MOUNTAIN VIEW","CA","94043",,,,,,,"1001 N. RENGSTORFF AVE., SUITE 100",,"MOUNTAIN VIEW","CA","94043",,,,,,,"770485946","8667250024","611000","POSITIVE COACHING ALLIANCE",,"1001 N. RENGSTORFF AVE., SUITE 100",,"MOUNTAIN VIEW","CA","94043",,,,,,,,"8667250024",,,,"2011-06-30T18:48:30-0500","HEANA SIMPSON","2011-06-30T18:48:07-0500","HEANA SIMPSON",,,,,,,,,,,,,"2L2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630152222P030085123217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A & O MOLD & ENGINEERING, INC. EMPLOYEE 401(K) PLAN","001","1992-06-01","A & O MOLD & ENGINEERING, INC.",,,"301 N 4TH ST",,"VICKSBURG","MI","49097",,,,,,,,,,,,,,,,,,"382763873","6166490600","333900","A & O MOLD & ENGINEERING, INC.",,"301 N 4TH ST",,"VICKSBURG","MI","49097",,,,,,,"382763873","6166490600",,,,"2011-06-30T15:19:57-0500","VIRGINIA NORTHUP",,,,,55,38,0,13,51,0,51,51,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701144116P030404485904001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"XCELIENCE 401(K) PLAN","001","2006-05-15","XCELIENCE",,,"5415 WEST LAUREL STREET",,"TAMPA","FL","33607",,,,,,,"5415 WEST LAUREL STREET",,"TAMPA","FL","33607",,,,,,,"204487469","8132860404","541700","XCELIENCE",,"5415 WEST LAUREL STREET",,"TAMPA","FL","33607",,,,,,,"204487469","8132860404",,,,"2011-07-01T14:40:31-0500","DEREK HENNECKE",,,,,72,62,0,3,65,2,67,47,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706141333P040091247409001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KIM LEE & CO. PROFIT SHARING PLAN","001","2004-01-01","KIM LEE & CO.",,,"1261 BROADWAY SUITE 302",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"112883955","2125632727","541211","KIM LEE & CO.",,"1261 BROADWAY SUITE 302",,"NEW YORK","NY","10001",,,,,,,"112883955","2125632727",,,,"2011-07-06T10:12:09-0500","YONGBAE KIM",,,,,9,6,0,3,9,,9,9,,,"2A2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110629160125P040087063329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALL TRUCK PARTS AND EQUIPMENT 401(K) PROFIT SHARING PLAN","001","1979-01-01","ALL TRUCK PARTS & EQUIPMENT CO., INC.",,,"15959 FLORIDA BLVD",,"BATON ROUGE","LA","70819",,,,,,,"15959 FLORIDA BLVD",,"BATON ROUGE","LA","70819",,,,,,,"720626308","2252750222","423100","ALL TRUCK PARTS & EQUIPMENT CO., INC.",,"15959 FLORIDA BLVD",,"BATON ROUGE","LA","70819",,,,,,,"720626308","2252750222",,,,"2011-06-29T16:00:04-0500","MIKE CULOTTA",,,,,17,10,0,4,14,1,15,15,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629162740P030084576513004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THOMPSON INSURANCE AGENCY, INC PROFIT-SHARING PLAN","001","1971-12-01","THOMPSON INSURANCE AGENCY, INC.",,,"P.O. BOX 27886",,"FRESNO","CA","937297886",,,,,,,"7760 N FRESNO, SUITE #101",,"FRESNO","CA","93720",,,,,,,"942147715","5592300153","524210","THOMPSON INSURANCE AGENCY, INC.",,"P.O. BOX 27886",,"FRESNO","CA","937297886",,,,,,,"942147715","5592300153",,,,"2011-07-15T04:12:08-0500","BRITT THOMPSON","2011-07-15T04:12:08-0500","BRITT THOMPSON",,,4,4,,,4,,4,,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629112912P030084445457001","2010-03-01","2010-11-30","2",,"0","0","0","1","0","0","0","0","0",,"E. T. HOSPITALITY CORPORATION GROUP EMPLOYEE BENEFIT PLAN","501","1993-03-01","E. T. HOSPITALITY CORPORATION",,,"ONE PICO BOULEVARD",,"SANTA MONICA","CA","90405",,,,,,,,,,,,,,,,,,"954297274","3104580030","721110","E. T. HOSPITALITY CORPORATION",,"ONE PICO BOULEVARD",,"SANTA MONICA","CA","90405",,,,,,,"954297274","3104580030",,,,"2011-06-29T09:24:32-0500","GEMA ORTIZ-CARDENAS",,,,,482,456,1,0,457,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629183651P030399490496001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHRISTOPHER CORINES MD MONEY PURCHASE PLAN FIDELITY","004","1999-01-01","CHRISTOPHER CORINES MD",,,"212-42ND AVE",,"BAYSIDE","NY","11361",,,,,,,"212-42ND AVE",,"BAYSIDE","NY","11361",,,,,,,"113111963","7182251060","621111","CHRISTOPHER CORINES MD",,"212-42ND AVE",,"BAYSIDE","NY","11361",,,,,,,"113111963","7182251060",,,,"2011-06-29T18:28:33-0500","CHRISTOPHER CORINES MD",,,,,2,2,,,2,,2,,,,"2C2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629125939P040086971153001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DR. CARLOS DICOVSKY DEFINED BENEFIT PENSION PLAN","001","1991-01-01","C. DICOVSKIY MEDICAL GROUP LLC",,,"681 BROADWAY",,"PATERSON","NJ","075141421",,,,,,,,,,,,,,,,,,"223695880","9732781000","621111","C. DICOVSKIY MEDICAL GROUP LLC",,"681 BROADWAY",,"PATERSON","NJ","075141421",,,,,,,"223695880","9732781000",,,,"2011-06-29T12:42:48-0500","CLAUDIO DICOVSKIY",,,,,17,11,0,4,15,1,16,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630100554P040087552369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RATHBORNE COMPANIES EMPLOYEES PROFIT SHARING PLAN","001","1978-10-01","RATHBORNE COMPANIES, LLC",,,"P.O. BOX 157",,"HARVEY","LA","70059",,,,,,,,,,,,,,,,,,"720295880","5043686355","531310","RATHBORNE COMPANIES, LLC",,"P.O. BOX 157",,"HARVEY","LA","70059",,,,,,,"720295880","5043686355",,,,"2011-06-30T10:04:38-0500","J.C. RATHBORNE",,,,,11,10,0,0,10,0,10,10,,,"2E2J2K2F2H3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629133507P030084505937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROSPECT MEDICAL GROUP EMPLOYEE BENEFIT PLAN","501","1999-01-01","PROSPECT MEDICAL HOLDINGS",,,"1920 E. 17TH STREET, SUITE 200",,"SANTA ANA","CA","92705",,,,,,,,,,,,,,,,,,"330564370","7147965965","621111","PROSPECT MEDICAL HOLDINGS",,"1920 E. 17TH STREET, SUITE 200",,"SANTA ANA","CA","92705",,,,,,,"330564370","7147965965",,,,"2011-06-10T12:54:07-0500","CARYN LOOMIS","2011-06-29T13:12:54-0500","MICHAEL HEATHER",,,207,282,1,0,283,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630090008P030012352146001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RAYE'S INC FLEXIBLE BENEFIT PLAN","501","1995-01-01","RAYES INC","WHEELCHAIRS OF KANSAS",,"PO BOX 320",,"ELLIS","KS","676370320",,,,,,,,,,,,,,,,,,"480828871","8005376454","339110","RAYES INC",,"PO BOX 320",,"ELLIS","KS","676370320",,,,,,,"480828871","8005376454",,,,"2011-06-30T09:48:34-0500","RODNEY TAYLOR","2011-06-30T09:48:42-0500","RODNEY TAYLOR",,,484,540,,,540,,,,,,,"4A4B4D","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630104836P040087569969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAGE, MANNINO, PERESICH AND MCDERMOTT, PLLC 401K PROFIT SHARING PLAN AND TRUST","002","1996-01-01","PAGE, MANNINO, PERESICH AND MCDERMOTT, PLLC",,,"759 VIEXU MARCHE MALL",,"BILOXI","MS","39533",,,,,,,,,,,,,,,,,,"640542332","2283742100","541110","PAGE, MANNINO, PERESICH AND MCDERMOTT, PLLC",,"759 VIEXU MARCHE MALL",,"BILOXI","MS","39533",,,,,,,"640542332","2283742100",,,,"2011-06-30T10:47:12-0500","LYLE PAGE",,,,,113,54,3,41,98,0,98,93,6,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629150240P040087034705007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VICTOR TENENBAUM MERRILL LYNCH PROFIT SHARING PLAN","001","1988-01-01","VICTOR TENENBAUM",,,"1995 ROCKAWAY PARKWAY",,"BROOKLYN","NY","11236",,,,,,,,,,,,,,,,,,"112917495","7182511661","621111","VICTOR TENENBAUM",,"1995 ROCKAWAY PARKWAY",,"BROOKLYN","NY","11236",,,,,,,"112917495","7182511661",,,,"2011-06-29T14:53:58-0500","VICTOR TENENBAUM",,,,,2,2,,,2,,2,2,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630112946P040087586817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLUME & BLUME ATTORNEYS AT LAW PC PROFIT SHARING PLAN","001","1993-07-01","BLUME & BLUME ATTORNEYS AT LAW PC",,,"3620 OAK GLEN DRIVE",,"TUSCALOOSA","AL","35406",,,,,,,"3620 OAK GLEN DRIVE",,"TUSCALOOSA","AL","35406",,,,,,,"631094644","2055566712","541110","BLUME & BLUME ATTORNEYS AT LAW PC",,"3620 OAK GLEN DRIVE",,"TUSCALOOSA","AL","35406",,,,,,,"631094644","2055566712",,,,"2011-06-29T15:16:42-0500","JOHN DEWITT",,,,,3,3,,,3,,3,3,,,"2E2G2R2T3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630114118P040087594849003","2010-03-01","2011-02-28","2",,,,,,,,,,,,"HIGHBRIDGE CAPITAL MANAGEMENT, LLC MEDICAL PLAN","502","2005-03-01","HIGHBRIDGE CAPITAL MANAGEMENT, LLC",,,"1350 AVENUE OF THE AMERICAS","34TH FLOOR","NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"201901985","2122874917","523110","HIGHBRIDGE CAPITAL MANAGEMENT, LLC",,"1350 AVENUE OF THE AMERICAS","34TH FLOOR","NEW YORK","NY","10019",,,,,,,"201901985","2122874917",,,,"2011-07-15T07:01:57-0500","ODILIS ALMANZAR",,,,,594,726,,,726,,,,,,,"4A",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629163801P030399268112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANGELINE ELIZABETH KIRBY MEMORIAL HEALTH CENTER 403(B) RETIREMENT PLAN","001","1974-01-01","ANGELINE ELIZABETH KIRBY MEMORIAL HEALTH CENTER",,,"71 N FRANKLIN ST",,"WILKES-BARRE","PA","18701",,,,,,,"71 N. FRANKLIN STREET",,"WILKES BARRE","PA","18701",,,,,,,"240795443","5708235450","621510","ANGELINE ELIZABETH KIRBY MEMORIAL HEALTH CENTER",,"71 N FRANKLIN ST",,"WILKES-BARRE","PA","18701",,,,,,,"240795443","5708235450",,,,"2011-06-29T16:37:42-0500","DANIELLE CAPPELLINI","2011-06-29T16:37:42-0500","DANIELLE CAPPELLINI",,,21,19,0,2,21,0,21,19,0,,"2F2G2M",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629152647P040012807074001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","001","1992-02-01","CONNELL GRANGE SUPPLY COMPANY INC",,,"P. O. BOX 190",,"CONNELL","WA","993260190",,,,,,,,,,,,,,,,,,"910185640","5092342631","115110","CONNELL GRANGE SUPPLY COMPANY INC",,"P. O. BOX 190",,"CONNELL","WA","993260190",,,,,,,"910185640","5092342631",,,,"2011-06-29T15:26:33-0500","KEVIN BESEL",,,,,7,5,0,1,6,0,6,6,0,,"3D2E2F2G2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629152735P040087043841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREEN BAY PACKERS INC DENTAL BENEFIT PLAN","502","2004-01-01","GREEN BAY PACKERS INC",,,"PO BOX 10628",,"GREEN BAY","WI","54307",,,,,,,,,,,,,,,,,,"390318570","9205697500","711210","GREEN BAY PACKERS INC",,"PO BOX 10628",,"GREEN BAY","WI","54307",,,,,,,"390318570","9205697500",,,,"2011-06-29T14:23:14-0500","NICOLE LEDVINA",,,,,181,178,0,0,178,0,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629184710P030084634289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MANKATO CLINIC LTD EMPLOYEE ASSISTANCE PROGRAM","505","2004-04-01","MANKATO CLINIC LTD",,,"PO BOX 8674","1230 EAST MAIN STREET","MANKATO","MN","56002",,,,,,,,,,,,,,,,,,"410849339","5076251811","621111","MANKATO CLINIC LTD",,"PO BOX 8674","1230 EAST MAIN STREET","MANKATO","MN","56002",,,,,,,"410849339","5076251811",,,,"2011-06-29T18:47:05-0500","STEVE HATKIN",,,,,757,633,0,0,633,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629210734P040012833634001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","0","0","0","0",,"EDWARD J. BAKER KEOUGH PROFIT SHARING PLAN","002","1990-02-22","EDWARD J. BAKER","SAME",,"1350 FLAMINGO DR.",,"FLORISSANT","MO","63031",,,,,,,"1350 FLAMINGO DR.",,"FLORISSANT","MO","63031",,,,,,,"431576661","3149214594","541219","EDWARD J. BAKER",,"1350 FLAMINGO DR.",,"FLORISSANT","MO","63031",,,,,,,"431576661","3149214594",,,,"2011-06-29T21:07:13-0500","EDWARD BAKER",,,,,1,1,,,1,,1,1,,1,"3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630105530P030401315712001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JEWEKEBRI 401K RETIREMENT PLAN AND TRUST","001","2006-11-10","JEWEKEBRI, INC.",,,"4812 PIMLICO LANE",,"WAXHAW","NC","28173",,,,,,,,,,,,,,,,,,"205861241","2403048294","561790","JEWEKEBRI, INC.",,"4812 PIMLICO LANE",,"WAXHAW","NC","28173",,,,,,,"205861241","2403048294",,,,"2011-06-30T10:53:02-0500","JEFF HENNINGS","2011-06-30T10:53:02-0500","JEFF HENNINGS",,,2,2,0,0,2,0,2,1,0,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629130342P040086973793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP BENEFITS PLAN FOR EMPLOYEES OF THE ROCKEFELLER FOUNDATION","511","2009-01-01","THE ROCKEFELLER FOUNDATION",,,"BENEFIT COMMITTEE","450 FIFTH AVENUE","NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"131659629","2128528242","813000","THE ROCKEFELLER FOUNDATION",,"BENEFIT COMMITTEE","450 FIFTH AVENUE","NEW YORK","NY","10018",,,,,,,"131659629","2128528242",,,,"2011-06-28T13:42:08-0500","SAMANTHA GILBERT","2011-06-29T13:03:31-0500","ELLEN M. TAUS",,,230,113,114,0,227,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629141951P030084523857005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WAGNER INDUSTRIES, INC. GROUP BENEFITS PLAN","503","2002-01-01","WAGNER INDUSTRIES, INC.",,,"1201 E 12TH AVE",,"NORTH KANSAS CITY","MO","64116",,,,,,,"1201 E 12TH AVE",,"NORTH KANSAS CITY","MO","64116",,,,,,,"440595244","8164213520","493100","GINGER CLARE",,"1201 E 12TH AVE",,"NORTH KANSAS CITY","MO","64116",,,,,,,"440595244",,,,,"2011-07-31T05:56:11-0500","GINGER CLARE","2011-07-31T05:56:11-0500","KEVIN SERVICE",,,161,126,,,126,,126,,,,,"4B4H","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630113251P030085018001002","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"SHELDON I COHEN PROFIT SHARING RETIRMENT PLAN","001","1987-12-09","SHELDON I COHEN & ASSOC SHELDON I COHEN",,,"2009 N 14TH STREET STE 708",,"ARLINGTON","VA","22201",,,,,,,,,,,,,,,,,,"520936548","7035221200","541110","SHELDON COHEN",,"2009 N 14 TH STREET STE 708",,"ARLINGTON","VA","22201",,,,,,,"520936548","7035221200",,,,"2011-06-30T08:41:44-0500","SHELDON COHEN",,,,,1,2,,,2,,2,2,,,"3E3B2E2A",,,,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629142004P040012800546001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"SPOT BUSINESS SYSTEMS, LLC 401(K) PLAN","001","2005-01-01","SPOT BUSINESS SYSTEMS, LLC",,,"12345 SOUTH 300 EAST",,"DRAPER","UT","84020",,,,,,,,,,,,,,,,,,"204029818","8012082222","812990","SPOT BUSINESS SYSTEMS, LLC",,"12345 SOUTH 300 EAST",,"DRAPER","UT","84020",,,,,,,"204029818","8012082222",,,,"2011-06-29T14:19:50-0500","MICHAEL WILDE",,,,,19,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629181650P030084620033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARNOLD S. ZAGER, M.D., P.A. MONEY PURCHASE PENSION PLAN","001","1974-08-01","ARNOLD S. ZAGER, M.D., P.A.",,,"3810 HOLLYWOOD BOULEVARD, SUITE 2",,"HOLLYWOOD","FL","330216779",,,,,,,,,,,,,,,,,,"591548510","9549838511","621112","ARNOLD S. ZAGER, M.D., P.A.",,"3810 HOLLYWOOD BOULEVARD, SUITE 2",,"HOLLYWOOD","FL","330216779",,,,,,,"591548510","9549838511",,,,"2011-06-29T18:10:27-0500","ARNOLD S. ZAGER, M.D.",,,,,2,2,0,0,2,0,2,2,0,,"2C3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629190210P030399535792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNIVERSAL METAL PRODUCTS, INC. HEALTH AND WELFARE PLAN","501","1950-04-01","UNIVERSAL METAL PRODUCTS, INC.",,,"29980 LAKELAND BOULEVARD",,"WICKLIFFE","OH","44092",,,,,,,,,,,,,,,,,,"341535109","4409437313","332110","UNIVERSAL METAL PRODUCTS, INC.",,"29980 LAKELAND BOULEVARD",,"WICKLIFFE","OH","44092",,,,,,,"341535109","4409437313",,,,"2011-06-29T19:02:01-0500","FRANCINE TIEDMAN",,,,,161,160,4,0,164,,,,,,,"4A4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630073253P030084911249001","2010-08-01","2011-03-31","2",,"0","0","0","1","0","0","0","0","0",,"THE BOLLES SCHOOL GROUP INSURANCE PLAN","501","1972-10-01","THE BOLLES SCHOOL",,,"7400 SAN JOSE BOULEVARD",,"JACKSONVILLE","FL","32217",,,,,,,"7400 SAN JOSE BOULEVARD",,"JACKSONVILLE","FL","32217",,,,,,,"590637814","9047339292","611000","THE BOLLES SCHOOL",,"7400 SAN JOSE BOULEVARD",,"JACKSONVILLE","FL","32217",,,,,,,"590637814","9047339292",,,,"2011-06-30T06:54:26-0500","NANCY GREENE",,,,,249,243,0,0,243,0,243,0,0,,,"4B4D4F4H","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630101113P030084979617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROCK COUNTY OPPORTUNITIES 403(B) PLAN","001","2009-01-01","ROCK COUNTY OPPORTUNITIES",,,"P.O. BOX 626",,"LUVERNE","MN","56156",,,,,,,"807 W. MAIN",,"LUVERNE","MN","56156",,,,,,,"410911814","5072834582","624310","ROCK COUNTY OPPORTUNITIES",,"P.O. BOX 626",,"LUVERNE","MN","56156",,,,,,,"410911814","5072834582",,,,"2011-06-30T10:10:57-0500","ANN LEE",,,,,25,24,0,0,24,0,24,3,0,,"2L2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629123746P040086960321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EYE CENTERS OF FLORIDA EMPLOYEE BENEFIT PLAN","503","1999-01-01","EYE CENTERS OF FLORIDA",,,"4101 EVANS AVENUE",,"FORT MYERS","FL","33901",,,,,,,,,,,,,,,,,,"591429153","2392751176","551112","EYE CENTERS OF FLORIDA",,"4101 EVANS AVENUE",,"FORT MYERS","FL","33901",,,,,,,"591429153","2392751176",,,,"2011-06-29T12:35:51-0500","SHARON P. DILL","2011-06-29T12:37:42-0500","DAVID C. BROWN, MD",,,152,150,1,0,151,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629135849P040086997985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MURPHY & MURPHY DDS, PC RETIREMENT SAVINGS PLAN","001","1976-09-30","MURPHY & MURPHY DDS, PC",,,"4124 W. ST. JOSEPH HWY",,"LANSING","MI","489174217",,,,,,,,,,,,,,,,,,"381998517","5173214815","621210","MURPHY & MURPHY DDS, PC",,"4124 W. ST. JOSEPH HWY",,"LANSING","MI","489174217",,,,,,,"381998517","5173214815",,,,"2011-06-29T13:58:35-0500","JOHN M. MURPHY","2011-06-29T13:58:35-0500","JOHN M. MURPHY",,,13,11,0,1,12,0,12,10,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629135951P030398924848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENTERPRISING SOLUTIONS INC EE SAVINGS & RETIREMENT PLAN","001","2004-04-16","CENTRAL TEXAS MUSEUM OF AUTOMOTIVE HISTORY",,"ENTERPRISING SOLUTIONS INC","3707 N 7TH STREET SUITE 300",,"PHOENIX","AZ","85014",,,,,,,,,,,,,,,,,,"742202758","8009897228","712100","ENTERPRISING SOLUTIONS, INC.",,"3707 N 7TH STREET SUITE 300",,"PHOENIX","AZ","85014",,,,,,,"880346948","6027789856",,,,"2011-06-29T13:30:55-0500","REBECCAH SOTELO",,,,,9,8,0,2,10,0,10,7,0,,"2E2F2G2K2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630104008P030084993953009","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"ERNEST J. GOODSON RETIREMENT AND PROFIT SHARING PL","001","1986-11-17","ERNEST J. GOODSON",,,"950 S MCPHERSON CHURCH ROAD",,"FAYETTEVILLE","NC","283035351",,,,,,,"950 S MCPHERSON CHURCH ROAD",,"FAYETTEVILLE","NC","283035351",,,,,,,"561501895","9104832633","621210","ERNEST J GOODSON",,"950 S MCPHERSON CHURCH ROAD",,"FAYETTEVILLE","NC","283035351",,,,,,,"561501895",,,,,"2011-07-15T06:09:15-0500","ERNEST J GOODSON","2011-07-15T06:09:15-0500","ERNEST J GOODSON",,,1,0,0,1,1,0,1,1,0,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629090724P030084370897007","2008-01-01","2008-05-15","2",,,,"1","1",,,,"1",,,"JEWISH HOME ASSISTED LIVING 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","JEWISH HOME ASSISTED LIVING",,,"10 LINK DRIVE",,"ROCKLEIGH","NJ","07647",,,,,,,,,,,,,,,,,,"450501306","2017504232","623000","JEWISH HOME ASSISTED LIVING",,"10 LINK DRIVE",,"ROCKLEIGH","NJ","07647",,,,,,,"450501306","2017504232",,,,"2011-06-29T04:58:31-0500","CHARLES BERKOWITZ","2011-06-29T04:58:31-0500","CHARLES BERKOWITZ",,,66,0,0,,0,,0,0,,,"2E2G2J2K3F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629132957P040086985057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLETUS P LYMAN PROFIT SHARING PLAN AND TRUST","001","1994-01-01","CLETUS P LYMAN PC",,,"1612 LATIMER ST",,"PHILADELPHIA","PA","191036397",,,,,,,"1612 LATIMER ST",,"PHILADELPHIA","PA","191036397",,,,,,,"232872603","2157327040","541110","CLETUS P LYMAN PC",,"1612 LATIMER ST",,"PHILADELPHIA","PA","191036397",,,,,,,"232872603","2157327040",,,,"2011-06-29T13:13:41-0500","CLETUS P LYMAN",,,,,8,5,0,3,8,0,8,8,0,,"2A2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629145723P040087032513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIXIE ELECTRIC COOPERATIVE WELFARE PLAN","501","2001-01-01","DIXIE ELECTRIC COOPERATIVE",,,"402 EAST BLACKMON STREET",,"UNION SPRINGS","AL","36089",,,,,,,,,,,,,,,,,,"630059155","3347382500","221100","DIXIE ELECTRIC COOPERATIVE",,"402 EAST BLACKMON STREET",,"UNION SPRINGS","AL","36089",,,,,,,"630059155","3347382500",,,,"2011-06-29T10:19:42-0500","MIKE BARLOW",,,,,117,81,25,0,106,,,,,,,"4A4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629155547P040087061233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHNSON FEED, INC.","501","2006-09-01","JOHNSON FEED, INC.",,,"305 W. INDUSTRIAL ROAD",,"CANTON","SD","57013",,,,,,,"305 W. INDUSTRIAL ROAD",,"CANTON","SD","57013",,,,,,,"460325358","6059874201","484120","JOHNSON FEED, INC.",,"305 W. INDUSTRIAL ROAD",,"CANTON","SD","57013",,,,,,,"460325358","6059874201",,,,"2011-06-29T15:55:26-0500","KIM ADAMSON",,,,,125,131,,,131,,131,,,,,"4A4B4D","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629155632P040087061617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEWPORT PARTNERS LLC 401(K) RETIREMENT PLAN","001","2002-10-01","NEWPORT PARTNERS, LLC",,,"3760 TANGLEWOOD LANE",,"DAVIDSONVILLE","MD","21035",,,,,,,,,,,,,,,,,,"820564349","3018890017","541380","NEWPORT PARTNERS, LLC",,"3760 TANGLEWOOD LANE",,"DAVIDSONVILLE","MD","21035",,,,,,,"820564349","3018890017",,,,"2011-06-29T12:18:40-0500","LIZA BOWLES",,,,,11,10,0,2,12,0,12,12,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629090728P030084370913001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"TECH ELECTRIC 401(K) PLAN","001","2010-01-01","TECH ELECTRIC COMPANY, INC.",,,"4606 NORTH 132ND STREET",,"BUTLER","WI","53007",,,,,,,,,,,,,,,,,,"391491823","2627832222","423600","TECH ELECTRIC COMPANY, INC.",,"4606 NORTH 132ND STREET",,"BUTLER","WI","53007",,,,,,,"391491823","2627832222",,,,"2011-06-29T09:00:18-0500","SHIRLEY WICK",,,,,12,11,0,0,11,0,11,5,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629134538P040086992417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE DAKOTA MANUFACTURING EXTENSION PARTNERSHIP SAFE HARBOR 401(K) PLAN","001","2002-01-01","THE DAKOTA MANUFACTURING EXTENSION PARTNERSHIP, INC.",,,"1929 N WASHINGTON STREET","NORTHBROOK PROFESSIONAL CENTER","BISMARCK","ND","58501",,,,,,,,,,,,,,,,,,"450459754","7013285475","541600","THE DAKOTA MANUFACTURING EXTENSION PARTNERSHIP, INC.",,"1929 N WASHINGTON STREET","NORTHBROOK PROFESSIONAL CENTER","BISMARCK","ND","58501",,,,,,,"450459754","7013285475",,,,"2011-06-29T13:45:25-0500","DEANN BERG",,,,,17,12,1,4,17,0,17,17,3,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630104508P030084995777001","2010-12-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"MEDICAL REIMBURSEMENT","502","1994-12-01","ROSEN-HOFFBERG REHABILATION AND PAIN MANAGEMENT ASSOCIATES PA","SAME",,"8415 BELLONA LANE","SUITE 201","BALTIMORE","MD","21204",,,,,,,"8415 BELLONA LANE","SUITE 201","BALTIMORE","MD","21204",,,,,,,"521229557","4108217775","621112","ROSEN-HOFFBERG REHABILATION AND PAIN MANAGEMENT ASSOCIATES PA",,"8415 BELLONA LANE","SUITE 201","BALTIMORE","MD","21204",,,,,,,"521229557","4108217775",,,,"2011-06-30T10:43:57-0500","NORMAN B. ROSEN",,,,,6,6,,,6,,6,,,,,"4A4D4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630104541P030084995921001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HALSEY GROCERY 401(K) PLAN","002","2000-01-01","W. L. HALSEY GROCERY CO., INC. DBA FOOD SERVICE",,,"401 LANIER RD.",,"MADISON","AL","35758",,,,,,,"401 LANIER RD.",,"MADISON","AL","35758",,,,,,,"680092300","2563273549","445110","W. L. HALSEY GROCERY CO., INC. DBA FOOD SERVICE",,"401 LANIER RD.",,"MADISON","AL","35758",,,,,,,"680092300","2563273549",,,,"2011-06-30T10:42:57-0500","JOHNIA PARKER",,,,,117,113,0,8,121,0,121,82,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630114507P030401416400002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROCK HILL DERMATOLOGY CENTER, PA MONEY PURCHASE PENSION PLAN","001","1982-04-01","ROCK HILL DERMATOLOGY CENTER, PA",,"EUGENE LEPINE","1634 CLARENDON PLACE",,"ROCK HILL","SC","29732",,,,,,,,,,,,,,,,,,"621134116","8033281831","621111","ROCK HILL DERMATOLOGY CENTER, PA","EUGENE LEPINE","1634 CLARENDON PLACE",,"ROCK HILL","SC","29732",,,,,,,"621134116","8033281831",,,,"2011-06-03T16:36:28-0500","EUGENE LEPINE","2011-06-03T16:36:51-0500","EUGENE LEPINE",,,4,4,0,0,4,0,4,4,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630114714P040397546112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A-1 FARGO VAN & STORAGE INC. EMPLOYEES SAVINGS TRU","001","2001-01-01","A-1 FARGO VAN & STORAGE INC.",,,"7700 SW 100TH ST",,"MIAMI","FL","33156",,,,,,,,,,,,,,,,,,"590936451","3056709501","493100","A-1 FARGO VAN & STORAGE INC.",,"7700 SW 100TH ST",,"MIAMI","FL","33156",,,,,,,"590936451","3056709501",,,,"2011-06-30T11:47:08-0500","VIRGIL HALE",,,,,37,23,0,14,37,0,37,33,0,,"2E2F2G2J3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629102702P040086892641001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JEFFREY W. DAVIS INSURANCE AGENCY, INC. PROFIT SHARING PLAN","001","1985-01-01","JEFFREY W. DAVIS INSURANCE AGENCY, INC.",,,"2208 WOODMAN DRIVE",,"KETTERING","OH","45420",,,,,,,,,,,,,,,,,,"270090293","9372540657","524210","JEFFREY W. DAVIS INSURANCE AGENCY, INC.",,"2208 WOODMAN DRIVE",,"KETTERING","OH","45420",,,,,,,"270090293","9372540657",,,,"2011-06-29T10:26:59-0500","JEFFREY DAVIS","2011-06-29T10:26:59-0500","JEFFREY DAVIS",,,4,4,0,0,4,0,4,4,0,,"2E3D","4B","1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712092757P030092091009001","2010-04-16","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"TD NASH ENTERPRISES INC. PROFIT SHARING PLAN","001","2010-04-16","TD NASH ENTERPRISES INC.",,,"4719 S SANTA FE CIR","UNIT ONE","ENGELWOOD","CO","80110",,,,,,,,,,,,,,,,,,"272372315","3037302500","561210","TD NASH ENTERPRISES INC.",,"4719 S SANTA FE CIR","UNIT ONE","ENGELWOOD","CO","80110",,,,,,,"272372315","3037302500",,,,"2011-07-12T09:27:11-0500","THOMAS NASH",,,,,1,1,,,1,,1,1,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712093009P030092091953002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WILLIAM R. DEAL PROFIT SHARING PLAN","001","1988-01-01","WILLIAM R. DEAL",,,"515 WITHERS ROAD",,"WYTHEVILLE","VA","24382",,,,,,,,,,,,,,,,,,"541146415","2762287948","621111","WILLIAM R. DEAL",,"515 WITHERS ROAD",,"WYTHEVILLE","VA","24382",,,,,,,"541146415","2762287948",,,,"2011-07-12T09:27:18-0500","WILLIAM R. DEAL","2011-07-12T09:27:38-0500","WILLIAM R. DEAL",,,4,4,0,0,4,0,4,4,,,"2E2J3D3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712102813P040013927714006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LOGISTICS HEALTH, INC. HEALTH AND WELFARE BENEFIT PLAN","501","2003-06-01","LOGISTICS HEALTH, INC.",,,"328 FRONT STREET SOUTH",,"LA CROSSE","WI","54601",,,,,,,,,,,,,,,,,,"391974851","6087820404","541990","LOGISTICS HEALTH, INC.",,"328 FRONT STREET SOUTH",,"LA CROSSE","WI","54601",,,,,,,"391974851","6087820404",,,,"2011-07-12T04:01:59-0500","ROBERT KELEMEN",,,,,1011,1163,,,1163,,1163,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712090358P030092073937001","2010-07-01","2010-12-01","2",,,,"1","1",,"1",,,,,"SWAIM, INC. PROFIT SHARING PLAN & TRUST","001","1979-06-28","SWAIM, INC.",,,"P. O. BOX 4189",,"HIGH POINT","NC","27263",,,,,,,,,,,,,,,,,,"560950990","3366856131","337000","SWAIM, INC.",,"P. O. BOX 4189",,"HIGH POINT","NC","27263",,,,,,,"560950990","3366856131",,,,"2011-07-12T10:03:56-0500","RHONDA SWAIM-WARREN",,,,,132,0,0,0,0,0,0,0,0,,"2E3C2G2F3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712155444P040094943841001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"O'ROURKE BROS., INC. 401(K) PROFIT SHARING PLAN","001","1985-08-01","OROURKE BROS., INC.",,,"3885 ELMORE AVE STE 100",,"DAVENPORT","IA","528072580",,,,,,,,,,,,,,,,,,"421039137","5638231520","423600","OROURKE BROS., INC.",,"3885 ELMORE AVE STE 100",,"DAVENPORT","IA","528072580",,,,,,,"421039137","5638231520",,,,"2011-07-12T15:54:39-0500","DIANE LINDSKOG","2011-07-12T15:54:39-0500","DIANE LINDSKOG",,,129,122,0,7,129,0,129,113,4,,"2E2F2G2J2K2S2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712120017P040429469728001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TR WEBSTER & SON INC 401K","001","2008-01-01","TR WEBSTER & SON INC",,,"PO BOX 671",,"REXBURG","ID","83440",,,,,,,,,,,,,,,,,,"331066239","2083560367","111900","TR WEBSTER & SON INC",,"PO BOX 671",,"REXBURG","ID","83440",,,,,,,"331066239","2083560367",,,,"2011-07-11T23:11:38-0500","LYLE M SIMMONS",,,,,2,2,0,0,2,,2,,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713032837P030092583985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMSERV EMPLOYEE WELFARE BENEFIT PLAN","501","1993-06-19","COMSERV, INC.",,,"619 PENNTON AVENUE","PO BOX 1080","LENOIR","NC","28645",,,,,,,,,,,,,,,,,,"561717932","8287570209","623000","COMSERV, INC.",,"619 PENNTON AVENUE","PO BOX 1080","LENOIR","NC","28645",,,,,,,"561717932","8287570209",,,,"2011-07-12T18:50:04-0500","MELISSA PARSONS",,,,,189,154,2,0,156,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713122242P030092830593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUSINESS TRAVEL & ACCIDENT","503","1965-12-01","THE AMERICAN COLLEGE",,,"270 S. BRYN MAWR AVENUE",,"BRYN MAWR","PA","19010",,,,,,,"270 S. BRYN MAWR AVENUE",,"BRYN MAWR","PA","19010",,,,,,,"231352008","6105261510","611000","THE AMERICAN COLLEGE",,"270 S. BRYN MAWR AVENUE",,"BRYN MAWR","PA","19010",,,,,,,"231352008","6105261510",,,,"2011-07-13T12:21:52-0500","JOHN WELLS",,,,,199,219,0,0,219,0,219,0,0,0,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712112846P030002711011001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RALEYS RETIREE MEDICAL PLAN","502","2005-01-01","RALEYS",,,"500 WEST CAPITOL AVENUE",,"WEST SACRAMENTO","CA","95605",,,,,,,,,,,,,,,,,,"941316611","9163736280","445110","RALEYS",,"500 WEST CAPITOL AVENUE",,"WEST SACRAMENTO","CA","95605",,,,,,,"941316611","9163736280",,,,"2011-07-11T19:29:12-0500","LISA JOHNSON",,,,,157,157,0,0,157,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712213431P040015807398001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE GAP INC. EXECUTIVE TRANSITION BENEFITS PLAN","525","2007-02-13","GAP INC",,"C/O EMPLOYEE RELATIONS COORDINATOR","2 FOLSOM STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"941697231","4154275275","448140","GAP INC","C/O EMPLOYEE RELATIONS COORDINATOR","2 FOLSOM STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"941697231","4154275275",,,,"2011-07-12T11:54:41-0500","DANIEL BRISKIN","2011-07-12T11:54:41-0500","DANIEL BRISKIN",,,175,150,7,0,157,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712150002P030092290689001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARK SEED COMPANY PROFIT SHARING PLAN","001","1998-01-01","MARK SEED COMPANY",,,"P O BOX 67",,"PERRY","IA","50220",,,,,,,"823 W 2ND STREET",,"PERRY","IA","50220",,,,,,,"421326038","5154652122","424500","MARK SEED COMPANY",,"P O BOX 67",,"PERRY","IA","50220",,,,,,,"421326038","5154652122",,,,"2011-07-12T13:47:21-0500","MARK A TERPSTRA",,,,,2,2,,,2,,2,,,,"2E2C",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712150010P040013947922006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LAW OFFICE OF THOMAS A. TONOZZI PROFIT SHARING PLAN","001","1970-12-31","LAW OFFICE OF THOMAS A. TONOZZI",,,"222 EAST SAINT PAUL STREET",,"SPRING VALLEY","IL","61362",,,,,,,,,,,,,,,,,,"363334359","8156642393","541110","LAW OFFICE OF THOMAS A. TONOZZI",,"222 EAST SAINT PAUL STREET",,"SPRING VALLEY","IL","61362",,,,,,,"363334359","8156642393",,,,"2011-07-12T14:56:33-0500","THOMAS A. TONOZZI","2011-07-12T14:57:38-0500","THOMAS A. TONOZZI",,,2,2,0,0,2,0,2,2,,,"2F2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713033200P030435246528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROEN BROTHERS AVIATION USA, INC. RETIREMENT PLAN","001","2002-01-01","GROEN BROTHERS AVIATION USA, INC",,,"2640 W CALIFORNIA AVE",,"SALT LAKE CITY","UT","84104",,,,,,,,,,,,,,,,,,"870440847","8019730177","336410","GROEN BROTHERS AVIATION USA, INC",,"2640 W CALIFORNIA AVE",,"SALT LAKE CITY","UT","84104",,,,,,,"870440847","8019730177",,,,"2011-07-12T16:32:39-0500","ROBERT H H WILSON","2011-07-12T16:32:39-0500","ROBERT H H WILSON",,,60,11,8,40,59,0,59,56,0,,"2J2E2K2F2G",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712100007P040094759729001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ULTRA FOAM 401(K) PLAN","001","2007-01-01","ULTRA FOAM",,,"301 S. WEST STREET",,"DOVER","IL","61323",,,,,,,,,,,,,,,,,,"581918089","8156432900","326100","ULTRA FOAM",,"301 S. WEST STREET",,"DOVER","IL","61323",,,,,,,"581918089","8156432900",,,,"2011-07-12T09:46:08-0500","JOHN KURTH","2011-07-12T09:46:32-0500","JOHN KURTH",,,9,10,0,0,10,0,10,9,,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712102957P030433096528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PURVIS OPERATING 401(K) PLAN","001","2007-01-01","PURVIS OPERATING COMPANY",,,"3101 NORTH PECOS STREET",,"MIDLAND","TX","79705",,,,,,,"3101 NORTH PECOS STREET",,"MIDLAND","TX","79705",,,,,,,"752215632","4326827346","211110","PURVIS OPERATING COMPANY",,"3101 NORTH PECOS STREET",,"MIDLAND","TX","79705",,,,,,,"752215632","4326827346",,,,"2011-07-12T10:28:28-0500","MARGARET PURVIS","2011-07-12T10:28:28-0500","MARGARET PURVIS",,,5,5,0,0,5,0,5,3,0,,"2J2F2E2G2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712134513P030092242129006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GREGORY M. ZAWROTNY, DMD PROFIT SHARING PLAN","001","1993-01-01","GREGORY M. ZAWROTNY, DMD",,,"501 W. HIGH STREET",,"EBENSBURG","PA","15931",,,,,,,,,,,,,,,,,,"251634576","8144728841","621210","GREGORY M. ZAWROTNY, DMD",,"501 W. HIGH STREET",,"EBENSBURG","PA","15931",,,,,,,"251634576","8144728841",,,,"2011-07-12T14:06:02-0500","GREGORY M. ZAWROTNY","2011-07-12T14:06:20-0500","GREGORY M. ZAWROTNY",,,3,2,0,0,2,0,2,2,,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712130241P040429604592001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VAN AMERINGEN FOUNDATION INC RETIREMENT PLAN","001","1977-02-09","VAN AMERINGEN FOUNDATION INC",,,"509 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"509 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"136125699","2127586221","813000","VAN AMERINGEN FOUNDATION INC",,"509 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"136125699","2127586221",,,,"2011-07-12T12:03:39-0500","IRWIN HAIMS",,,,,2,1,0,1,2,0,2,2,0,0,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712141447P040429764176001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WORLDCARE INCORPORATED 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","WORLDCARE INCORPORATED",,,"7 BULFINCH PLACE 3RD FL",,"BOSTON","MA","02114",,,,,,,,,,,,,,,,,,"043436164","6172505171","541600","WORLDCARE INCORPORATED",,"7 BULFINCH PLACE 3RD FL",,"BOSTON","MA","02114",,,,,,,"043436164","6172505171",,,,"2011-07-12T02:14:44-0500","WORLDCARE INCORPORATED","2011-07-12T02:14:44-0500","WORLDCARE INCORPORATED",,,18,13,0,0,13,0,13,9,0,,"2E2F2G2J2T3D3F",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712131358P040094858161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CANOPY EXPLORATION GROUP LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","CANOPY EXPLORATION GROUP LLC",,,"18 REESE DR",,"SUNSET VALLEY","TX","78745",,,,,,,,,,,,,,,,,,"030427708","5128926430","541990","CANOPY EXPLORATION GROUP LLC",,"18 REESE DR",,"SUNSET VALLEY","TX","78745",,,,,,,"030427708","5128926430",,,,"2011-07-12T01:13:56-0500","CANOPY EXPLORATION GROUP LLC",,,,,2,0,0,2,2,0,2,2,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712131612P030013433442001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FEIZY IMPORT & EXPORT CO. 401(K) PLAN","001","1997-06-01","FEIZY IMPORT & EXPORT CO.",,,"1949 STEMMONS FREEWAY",,"DALLAS","TX","75207",,,,,,,,,,,,,,,,,,"751658387","2147476000","442210","FEIZY IMPORT & EXPORT CO.",,"1949 STEMMONS FREEWAY",,"DALLAS","TX","75207",,,,,,,"751658387","2147476000",,,,"2011-07-12T13:16:04-0500","NASSER GARROUSSI",,,,,100,82,0,10,92,,92,52,2,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713094910P040095351793001","2010-01-01","2010-12-31","3",,"0","0","0","0","1","0","0","0","0",,"ROAD & RAIL GROUP HEALTH PLAN","502","1996-06-01","ROAD & RAIL SERVICES, INC.",,,"4233 BARDSTOWN ROAD","SUITE 200","LOUISVILLE","KY","40218",,,,,,,"4233 BARDSTOWN ROAD","SUITE 200","LOUISVILLE","KY","40218",,,,,,,"621699728","5024956688","488990","ROAD & RAIL SERVICES, INC.",,"4233 BARDSTOWN ROAD","SUITE 200","LOUISVILLE","KY","40218",,,,,,,"621699728","5024956688",,,,"2011-07-13T09:48:48-0500","ROBERT AMRINE",,,,,526,549,1,0,550,,550,,,,,"4A4B4Q","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713040459P030435321856001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPRESAS FONALLEDAS, INC. GROUP HEALTH COVERAGE","502","2004-02-01","EMPRESAS FONALLEDAS, INC.",,,"PO BOX 71450",,"SAN JUAN","PR","00936",,,,,,,,,,,,,,,,,,"660516026","7874747474","531310","EMPRESAS FONALLEDAS",,"PO BOX 71450",,"SAN JUAN","PR","00936",,,,,,,"660516026","7874747474",,,,"2011-07-12T16:11:16-0500","GRETCHEN OPPENHEIMER",,,,,335,335,0,0,335,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712143915P040094900865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED GROUP INSURANCE TRUST","501","1998-01-01","UNITED GROUP INSURANCE TRUST",,,"1277 TREAT BLVD., STE. 650",,"WALNUT CREEK","CA","94597",,,,,,,"1277 TREAT BLVD., STE. 650",,"WALNUT CREEK","CA","94597",,,,,,,"911879291","9259561642","525100","UNITED GROUP INSURANCE TRUST",,"1277 TREAT BLVD., STE. 650",,"WALNUT CREEK","CA","94597",,,,,,,"911879291","9259561642",,,,"2011-07-12T14:35:17-0500","NICOLE JONE-GYLLSTROM","2011-07-12T14:35:17-0500","NICOLE JONE-GYLLSTROM",,,10147,13589,0,,13589,,,,,,,"4A4Q4B4L4D4E4H","1",,,,"1",,,,,,,,,"1","26",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712162331P030092329377001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"VELCON FILTERS LLC COMPREHENSIVE HEALTH PLAN","501","1985-10-01","VELCON FILTERS LLC",,,"1210 GARDEN OF THE GODS RD",,"COLORADO SPRINGS","CO","80907",,,,,,,"1210 GARDEN OF THE GODS RD",,"COLORADO SPRINGS","CO","80907",,,,,,,"264563734","7195315855","332900","VELCON FILTERS LLC",,"1210 GARDEN OF THE GODS RD",,"COLORADO SPRINGS","CO","80907",,,,,,,"264563734","7195315855",,,,"2011-07-12T16:21:17-0500","JAMES MEDLEY",,,,,128,158,,,158,,158,,,,,"4A4D4H",,,,"1","1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712113527P030092170417001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"KOCH MEMBRANE SYSTEMS GROUP MEDICAL INSURANCE","506","1994-07-01","KOCH MEMBRANE SYSTEMS",,,"10054 OLD GROVE ROAD",,"SAN DIEGO","CA","92131",,,,,,,,,,,,,,,,,,"223011666","8586953840","326100","KOCH MEMBRANE SYSTEMS",,"10054 OLD GROVE ROAD",,"SAN DIEGO","CA","92131",,,,,,,"223011666","8586953840",,,,"2011-07-11T19:18:59-0500","PAMELA BROWN",,,,,114,0,0,0,0,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712120923P040094824977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PIEDMONT CORRUGATED SPECIALTY 401(K) PROFIT SHARING PLAN","001","1975-05-01","PIEDMONT CORRUGATED SPECIALTY",,,"PO BOX 68",,"VALDESE","NC","28690",,,,,,,,,,,,,,,,,,"561057839","8288741153","322200","PIEDMONT CORRUGATED SPECIALTY",,"PO BOX 68",,"VALDESE","NC","28690",,,,,,,"561057839","8288741153",,,,"2011-07-12T12:08:27-0500","FRED LAXTON",,,,,39,36,0,0,36,0,36,30,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712114736P030092178321001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ANCHOR COUPLING, INC. EMPLOYEE ASSISTANCE PLAN","502","2005-03-22","ANCHOR COUPLING, INC.",,,"5520 13TH STREET",,"MENOMINEE","MI","498581014",,,,,,,,,,,,,,,,,,"383100011","9068641154","336610","ANCHOR COUPLING, INC.",,"5520 13TH STREET",,"MENOMINEE","MI","498581014",,,,,,,"383100011","9068641154",,,,"2011-07-11T15:48:30-0500","JOHN LEE",,,,,667,700,0,0,700,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713093629P030029009543001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"WORDEN-MARTIN, INC. HEALTH REIMBURSEMENT ARRANGEME","503","2004-01-01","WORDEN-MARTIN, INC.",,,"1404 N DUNLAP AVE",,"SAVOY","IL","61874",,,,,,,,,,,,,,,,,,"370653739","2173527901","441110","WORDEN-MARTIN INC.",,"1404 N DUNLAP AVE",,"SAVOY","IL","61874",,,,,,,"370653739","2173527901",,,,"2011-07-13T09:36:22-0500","KELLY ADAMS","2011-07-13T09:36:22-0500","KELLY ADAMS",,,126,125,0,0,125,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713033312P030092588177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PETCETERA ANIMAL CLINIC SAFE HARBOR 401(K)","001","2001-01-01","PETCETERA ANIMAL CLINIC",,,"1150 40TH AVE. S",,"GRAND FORKS","ND","58201",,,,,,,,,,,,,,,,,,"450436313","7017750549","812910","PETCETERA ANIMAL CLINIC",,"1150 40TH AVE. S",,"GRAND FORKS","ND","58201",,,,,,,"450436313","7017750549",,,,"2011-07-12T14:39:09-0500","RODNEY GIGSTAD",,,,,21,10,0,7,17,0,17,17,0,,"3D2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713114238P030013534530001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MERCURIA ENERGY TRADING, INC. 401(K) PLAN","001","2008-04-22","MERCURIA ENERGY TRADING, INC.",,,"311 SOUTH WACKER DR SUITE 1700",,"CHICAGO","IL","60606",,,,,,,"311 SOUTH WACKER DR SUITE 1700",,"CHICAGO","IL","60606",,,,,,,"841726646","8476872139","424700","MERCURIA ENERGY TRADING, INC.",,"311 SOUTH WACKER DR SUITE 1700",,"CHICAGO","IL","60606",,,,,,,"841726646","8476872139",,,,"2011-07-13T11:42:14-0500","JAREK KOZLOWSKI",,,,,49,72,0,6,78,0,78,78,5,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712055936P030432553680001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CARIBBEAN SCHOOL 1165E RETIREMENT PLAN","001","1999-01-01","CARIBBEAN SCHOOL, INC.",,,"1689 CALLE NAVARRA","URB. LA RAMBLA","PONCE","PR","007304043",,,,,,,,,,,,,,,,,,"660234885","7878432048","611000","CARIBBEAN SCHOOL, INC.",,"1689 CALLE NAVARRA","URB. LA RAMBLA","PONCE","PR","007304043",,,,,,,"660234885","7878432048",,,,"2011-07-12T05:58:46-0500","ISRAEL GONZALEZ",,,,,86,82,0,9,91,0,91,84,9,,"2E2F2G2T3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712130327P030013432466001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CABRERA CAPITAL MARKETS, LLC 401K PLAN","001","2005-02-01","CABRERA CAPITAL MARKETS, LLC",,,"10 SOUTH LASALLE ST","SUITE 1050","CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"010892965","3122368888","523900","CABRERA CAPITAL MARKETS, LLC",,"10 SOUTH LASALLE ST","SUITE 1050","CHICAGO","IL","60603",,,,,,,"010892965","3122368888","CABRERA CAPITAL MARKETS, LLC","391384463","001","2011-07-12T13:03:14-0500","CYNTHIA LAU",,,,,71,70,0,8,78,0,78,71,6,,"2E2F2G2J2K3B3D2T2S",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712123524P030092203489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ORTHOPAEDIC HOSPITAL MEDICAL PLAN","511","1997-01-01","ORTHOPAEDIC HOSPITAL",,,"2400 S. FLOWER STREET",,"LOS ANGELES","CA","90007",,,,,,,,,,,,,,,,,,"951644604","2137421153","622000","ORTHOPAEDIC HOSPITAL",,"2400 S. FLOWER STREET",,"LOS ANGELES","CA","90007",,,,,,,"951644604","2137421153",,,,"2011-07-12T12:31:14-0500","RICHARD HONDEL",,,,,121,108,4,0,112,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712123550P040094839777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRINDLE INSURANCE GROUP 401)K) PLAN","001","2009-01-01","BRINDLE INSURANCE GROUP, INC.",,,"P. O. BOX 157",,"SANDY","UT","84091",,,,,,,,,,,,,,,,,,"870503641","8015723803","524210","BRINDLE INSURANCE GROUP, INC.",,"P. O. BOX 157",,"SANDY","UT","84091",,,,,,,"870503641","8015723803",,,,"2011-07-12T12:17:35-0500","ROBERT BRINDLE","2011-07-12T12:17:35-0500","ROBERT BRINDLE",,,3,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712144508P030013443634003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PAYNET MERCHANT SERVICES, INC. PROFIT SHARING PLAN AND TRUST","001","2001-01-01","PAYNET MERCHANT SERVICES, INC",,,"950 S. OLD WOODWARD 220",,"BIRMINGHAM","MI","48009",,,,,,,,,,,,,,,,,,"383233512","2487235760","522210","PAYNET MERCHANT SERVICES, INC",,"950 S. OLD WOODWARD 220",,"BIRMINGHAM","MI","48009",,,,,,,"383233512","2487235760",,,,"2011-07-07T15:35:02-0500","CLINTON BALLER","2011-07-07T15:35:14-0500","CLINTON BALLER",,,7,10,0,0,10,0,10,10,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713051808P030092635633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NOMADIC STRUCTURES FLEXIBLE BENEFITS PLAN","501","1992-08-01","NOMADIC STRUCTURES, INC.","NOMADIC DISPLAY",,"5617 INDUSTRIAL DRIVE, STE. E",,"SPRINGFIELD","VA","22151",,,,,,,,,,,,,,,,,,"521039236","8003365019","339900","NOMADIC STRUCTURES, INC.",,"5617 INDUSTRIAL DRIVE, STE. E",,"SPRINGFIELD","VA","22151",,,,,,,"521039236","8003365019",,,,"2011-07-12T16:36:51-0500","ABEL AQUINO",,,,,103,85,0,0,85,,,,,,,"4A4D4R","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712102344P040094776321001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"AUTUMN HARP LIFE AND DISABILITY PLAN","506","2002-02-01","AUTUMN HARP, INC.",,,"26 THOMPSON DRIVE",,"ESSEX JUNCTION","VT","05443",,,,,,,,,,,,,,,,,,"030284189","8028574600","424990","AUTUMN HARP, INC.",,"26 THOMPSON DRIVE",,"ESSEX JUNCTION","VT","05443",,,,,,,"030284189","8028574600",,,,"2011-07-12T10:23:26-0500","CHRISTIE KANE",,,,,180,174,0,0,174,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712102359P040094776465001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"AUTUMN HARP HEALTH REIMBURSEMENT ARRANGEMENT","503","2004-01-01","AUTUMN HARP, INC.",,,"26 THOMPSON DRIVE",,"ESSEX JUNCTION","VT","05452",,,,,,,,,,,,,,,,,,"030284189","8028574600","424990","AUTUMN HARP, INC.",,"26 THOMPSON DRIVE",,"ESSEX JUNCTION","VT","05452",,,,,,,"030284189","8028574600",,,,"2011-07-12T10:22:08-0500","CHRISTIE KANE",,,,,183,29,0,0,29,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712131704P030013433570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALVE CORPORATION EMPLOYEE BENEFIT PLAN","501","1998-01-01","VALVE CORPORATION",,,"10900 NE 4TH STREET","SUITE 500","BELLEVUE","WA","98004",,,,,,,,,,,,,,,,,,"912184416","4258899642","541519","VALVE CORPORATION","DINA NELSON","10900 NE 4TH STREET","SUITE 500","BELLEVUE","WA","980044345",,,,,,,"912184416","4258899642",,,,"2011-07-12T13:16:19-0500","SCOTT LYNCH",,,,,212,232,8,0,240,,,,,,,"4A4B4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712152610P030092303809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PALADIN INDUSTRIES, INC. 401(K) PLAN","001","2006-02-01","PALADIN INDUSTRIES, INC.",,,"5270 HWY 90 EAST","PO BOX 218","HIDDENITE","NC","28636",,,,,,,,,,,,,,,,,,"562271179","8286350448","337000","PALADIN INDUSTRIES, INC.",,"5270 HWY 90 EAST","PO BOX 218","HIDDENITE","NC","28636",,,,,,,"562271179","8286350448",,,,"2011-07-12T15:24:58-0500","JANET LACKEY",,,,,61,47,0,0,47,0,47,33,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713122928P030013537858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALLEN & CARON 401(K) PLAN","001","1995-04-01","ALLEN & CARON, INC.",,,"18200 VON KARMAN AVE","#780","IRVINE","CA","92612",,,,,,,,,,,,,,,,,,"330074775","9494744300","541800","ALLEN & CARON, INC.",,"18200 VON KARMAN AVE","#780","IRVINE","CA","92612",,,,,,,"330074775","9494744300",,,,"2011-07-13T12:29:20-0500","ESTELLE B. BLANCHETTE","2011-07-13T12:29:20-0500","RENE H. CARON",,,12,11,0,1,12,0,12,11,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712114821P030092178865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALAN R. OWEN, DDS, INC., 401(K)","001","2007-09-01","ALAN R. OWEN, DDS, INC.",,,"7300 N. MACARTHUR",,"OKLAHOMA CITY","OK","73132",,,,,,,,,,,,,,,,,,"731307908","4057211616","621210","ALAN R. OWEN, DDS, INC.",,"7300 N. MACARTHUR",,"OKLAHOMA CITY","OK","73132",,,,,,,"731307908","4057211616",,,,"2011-07-11T19:41:43-0500","ALAN R. OWEN, DDS","2011-07-11T19:41:43-0500","ALAN R. OWEN, DDS",,,6,5,0,1,6,0,6,6,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712150707P040429872848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RALPH KORTE ENTERPRISES PROFIT-SHARING/THRIFT PLAN","002","1985-01-01","KORTE CONSTRUCTION COMPANY",,,"P. O. BOX 146","12441 U.S. HIGHWAY 40","HIGHLAND","IL","622490146",,,,,,,,,,,,,,,,,,"371017433","6186548611","236200","KORTE CONSTRUCTION COMPANY",,"P. O. BOX 146","12441 U.S. HIGHWAY 40","HIGHLAND","IL","622490146",,,,,,,"371017433","6186548611",,,,"2011-07-12T15:03:59-0500","WILLIAM BOUDOURIS","2011-07-12T15:03:59-0500","WILLIAM BOUDOURIS",,,245,229,0,0,229,0,229,229,10,,"2G2J2R",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712163157P030092332689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IBM INDIA HEALTH & WELFARE PLAN","501","2001-08-01","IBM INDIA",,,"3039 CORNWALLIS ROAD, B201",,"RESEARCH TRIANGLE PARK","NC","27709",,,,,,,,,,,,,,,,,,"522061430","9195435243","541519","IBM INDIA",,"3039 CORNWALLIS ROAD, B201",,"RESEARCH TRIANGLE PARK","NC","27709",,,,,,,"522061430","9195435243",,,,"2011-07-12T16:17:00-0500","MAGGIE MURRAY",,,,,3015,3981,7,0,3988,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712163204P040094961537001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CIERPIAL MEMORIAL FUNERAL HOME, INC, PROTOTYPE SHORT FORM PROFIT SHARING PLAN","001","2000-01-01","CIERPIAL MEMORIAL FUNERAL HOMES,INC.",,,"61 GRAPE STREET",,"CHICOPEE","MA","01013",,,,,,,"61 GRAPE STREET",,"CHICOPEE","MA","01013",,,,,,,"043501908","4135988573","812210","CIERPIAL MEMORIAL FUNERAL HOMES,INC.",,"61 GRAPE STREET",,"CHICOPEE","MA","01013",,,,,,,"043501908","4135988573",,,,"2011-06-12T09:35:58-0500","RONALD CIERPIAL","2011-06-12T09:35:58-0500","RONALD CIERPIAL",,,3,3,,,3,,3,3,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713093903P030013521618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CITISOFT, INC. 401(K) PLAN","001","2003-01-01","CITISOFT, INC",,,"343 CONGRESS STREET",,"BOSTON","MA","02210",,,,,,,"343 CONGRESS STREET",,"BOSTON","MA","02210",,,,,,,"542075416","6174289580","541511","CITISOFT, INC",,"343 CONGRESS STREET",,"BOSTON","MA","02210",,,,,,,"542075416","6174289580",,,,"2011-07-13T09:38:46-0500","KATHERINE CINGEL",,,,,45,29,0,15,44,0,44,40,0,,"2J2G2E2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713081236P030435815248001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"INSURENT AGENCY CORPORATION 401(K) PLAN","001","2008-02-15","INSURENT AGENCY CORPORATION",,,"11 E 44TH ST","11TH FLOOR","NEW YORK","NY","10017",,,,,,,"11 E 44TH ST","11TH FLOOR","NEW YORK","NY","10017",,,,,,,"300055641","6468431718","524210","INSURENT AGENCY CORPORATION",,"11 E 44TH ST","11TH FLOOR","NEW YORK","NY","10017",,,,,,,"300055641","6468431718",,,,"2011-07-13T08:11:44-0500","DEB WISNEWSKI",,,,,3,6,0,0,6,0,6,2,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712100757P030433038576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRECISION TOOL, DIE AND MOLD, INC. 401K PLAN AND TRUST","001","2007-01-01","PRECISION TOOL, DIE AND MOLD, INC.",,,"69 BAGWELL MILL ROAD",,"ARDEN","NC","287048553",,,,,,,,,,,,,,,,,,"561903866","8286872990","332210","PRECISION TOOL, DIE AND MOLD, INC.",,"69 BAGWELL MILL ROAD",,"ARDEN","NC","287048553",,,,,,,"561903866","8286872990",,,,"2011-07-12T10:07:55-0500","KEITH WHITAKER",,,,,11,13,0,0,13,0,13,10,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712120536P040094823553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AYN RAND INSTITUTE - FLEXIBLE BENEFITS PLAN","502","2005-01-01","AYN RAND INSTITUTE",,,"2121 ALTON PARKWAY, SUITE 250",,"IRVINE","CA","92606",,,,,,,"2121 ALTON PARKWAY, SUITE 250",,"IRVINE","CA","92606",,,,,,,"222570926","9492226550","611000","AYN RAND INSTITUTE",,"2121 ALTON PARKWAY, SUITE 250",,"IRVINE","CA","92606",,,,,,,"222570926","9492226550",,,,"2011-07-12T11:43:53-0500","STEVEN DOUGHERTY",,,,,6,6,,,6,,6,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712160541P030013450002001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"FAIRPOINT COMMUNICATIONS NORTHERN NEW ENGLAND COLLECTIVELY BARGAINED RETIREE HEALTH PLAN","508","2008-03-31","FAIRPOINT COMMUNICATIONS, INC.",,,"521 E. MOREHEAD STREET, SUITE 500",,"CHARLOTTE","NC","28202",,,,,,,,,,,,,,,,,,"133725229","7043448150","517000","FAIRPOINT BENEFIT PLANS COMMITTEE","C/O HUMAN RESOURCES DEPT.","521 E. MOREHEAD STREET, SUITE 500",,"CHARLOTTE","NC","28202",,,,,,,"262948099","7043448150",,,,"2011-07-12T15:52:39-0500","THOMAS GRIFFIN","2011-07-12T15:53:17-0500","THOMAS GRIFFIN",,,66,93,,,93,,,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713095739P040014024722001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"LAWLEY SERVICE, INC. MEDICAL COVERAGE","505","1966-11-10","LAWLEY SERVICE, INC.",,,"361 DELAWARE AVENUE",,"BUFFALO","NY","14202",,,,,,,,,,,,,,,,,,"160802517","7168498618","524210","LAWLEY SERVICE, INC.",,"361 DELAWARE AVENUE",,"BUFFALO","NY","14202",,,,,,,"160802517","7168498618",,,,"2011-07-11T11:40:15-0500","DEBORAH JINDRA","2011-07-12T13:23:47-0500","MARK HIGGINS",,,208,0,0,,0,,0,,,,,"4A4E","1",,,,"1",,,,,,,,,"1","10",,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713035801P030435305584001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"FRASCA INTERNATIONAL INC GROUP INSURANCE PLAN","501","1992-03-01","FRASCA INTERNATIONAL INC",,,"906 E AIRPORT RD",,"URBANA","IL","61802",,,,,,,,,,,,,,,,,,"370860218","2173449200","333610","FRASCA INTERNATIONAL INC",,"906 E AIRPORT RD",,"URBANA","IL","61802",,,,,,,"370860218","2173449200",,,,"2011-07-12T15:06:11-0500","JODI WOLKEN","2011-07-12T15:06:11-0500","JODI WOLKEN",,,118,111,0,0,111,,,,,,,"4A4B4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712121709P030002712307001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FRANK H. STOWELL & SONS, INC. 401(K)/PROFIT SHARING PLAN","001","2001-01-01","FRANK H. STOWELL & SONS, INC.",,,"8150 CENTRAL PARK AVENUE",,"SKOKIE","IL","60076",,,,,,,,,,,,,,,,,,"362238916","8473299200","236200","FRANK H. STOWELL & SONS, INC.",,"8150 CENTRAL PARK AVENUE",,"SKOKIE","IL","60076",,,,,,,"362238916","8473299200",,,,"2011-07-12T12:17:00-0500","SAM W. STOWELL",,,,,10,8,0,3,11,0,11,11,0,,"2A2E2F2G2J2K2R3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712125550P030013432018001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MERIDIEN EPIX LLC, DBA USSC","501","2009-01-01","MERIDIEN EPIX LLC, DBA USSC",,,"150 GORDON DRIVE",,"EXTON","PA","19341",,,,,,,,,,,,,,,,,,"203352806","6109945434","336300","MERIDIEN EPIX LLC, DBA USSC",,"150 GORDON DRIVE",,"EXTON","PA","19341",,,,,,,"203352806","6109945434",,,,"2011-07-12T12:55:44-0500","VALERIE YOUNG","2011-07-12T12:55:44-0500","KEN SCHNARRS",,,104,101,5,0,106,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712132117P030433544544001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHARLES T. LOO, DMD, MSD PROFIT SHARING PLAN","001","1985-12-20","CHARLES T. LOO, DMD, MSD",,,"150 CREST ROAD",,"RIDGEWOOD","NJ","07450",,,,,,,,,,,,,,,,,,"222665303","2014474404","621210","CHARLES T. LOO, DMD, MSD",,"150 CREST ROAD",,"RIDGEWOOD","NJ","07450",,,,,,,"222665303","2014474404",,,,"2011-07-12T13:21:02-0500","CHARLES T. LOO","2011-07-12T13:21:02-0500","CHARLES T. LOO",,,8,5,0,2,7,0,7,7,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712173806P030434163904001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUTTER HEALTH SACRAMENTO SIERRA REGION SEVERANCE PLAN","515","2001-01-01","SUTTER HEALTH SACRAMENTO SIERRA REGION SEVERANCE PLAN",,"C/O SUTTER HEALTH","2200 RIVER PLAZA DR",,"SACRAMENTO","CA","95833",,,,,,,,,,,,,,,,,,"941156621","9165664788","622000","SUTTER HEALTH SACRAMENTO SIERRA REGION SEVERANCE PLAN","C/O SUTTER HEALTH","2200 RIVER PLAZA DRIVE",,"SACRAMENTO","CA","95833",,,,,,,"941156621","9165664788",,,,"2011-07-12T17:27:52-0500","JEFF SZCZESNY",,,,,6854,9832,0,0,9832,,9832,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712104410P030092136593001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"THOMAS M. SHANLEY, P.C. PROFIT SHARING PLAN","001","2010-01-01","THOMAS M. SHANLEY, P.C.",,,"37 ARCH ST",,"GREENWICH","CT","06830",,,,,,,,,,,,,,,,,,"270454701","2036229004","541110","THOMAS M. SHANLEY, P.C.",,"37 ARCH ST",,"GREENWICH","CT","06830",,,,,,,"270454701","2036229004",,,,"2011-07-12T10:43:54-0500","THOMAS M. SHANLEY","2011-07-12T10:43:54-0500","THOMAS M. SHANLEY",,,0,4,0,0,4,0,4,3,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712104427P040094785089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GATORLAND 401(K) RETIREMENT PLAN","001","1997-01-01","GODWIN'S GATORLAND, INC.",,,"14501 S ORANGE BLOSSOM TRL",,"ORLANDO","FL","32837",,,,,,,,,,,,,,,,,,"591280454","8003935297","713100","GODWIN'S GATORLAND, INC.",,"14501 S ORANGE BLOSSOM TRL",,"ORLANDO","FL","32837",,,,,,,"591280454","8003935297",,,,"2011-07-12T10:42:39-0500","BONNIE VAN DYKE","2011-07-12T10:43:34-0500","BONNIE VAN DYKE",,,88,72,0,0,72,0,72,69,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712100410P040429187104001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ENVIRO SERVICE, INC. 401K PROFIT SHARING PLAN & TRUST","001","1999-01-01","ENVIRO SERVICE, INC.",,,"104 LONGWATER DRIVE, UNIT 111",,"NORWELL","MA","02061",,,,,,,"104 LONGWATER DRIVE, UNIT 111",,"NORWELL","MA","02061",,,,,,,"043270379","7819824000","238220","ENVIRO SERVICE, INC.",,"104 LONGWATER DRIVE, UNIT 111",,"NORWELL","MA","02061",,,,,,,"043270379","7819824000",,,,"2011-07-12T09:47:32-0500","JILL DONNELLY",,,,,28,24,0,22,46,0,46,45,1,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712130738P030433513136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OAKLEY INC. 401(K) PLAN","003","1994-10-01","OAKLEY, INC.",,,"1 ICON",,"FOOTHILL RANCH","CA","92610",,,,,,,,,,,,,,,,,,"953194947","9498296427","423910","OAKLEY, INC.",,"1 ICON",,"FOOTHILL RANCH","CA","92610",,,,,,,"953194947","9498296427",,,,"2011-07-12T13:06:40-0500","CAROLINE KENYON","2011-07-11T11:46:11-0500","RICHARD SHIELDS",,,2629,2520,0,198,2718,1,2719,1536,31,,"3D2J2F2G2K2E2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712133941P030013435426001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NAUTILUS, INC. EMPLOYEE WELFARE PLAN","501","2000-01-01","NAUTILUS, INC.",,,"16400 SE NAUTILUS DRIVE",,"VANCOUVER","WA","986835535",,,,,,,,,,,,,,,,,,"943002667","3606947722","339900","NAUTILUS, INC.",,"16400 SE NAUTILUS DRIVE",,"VANCOUVER","WA","986835535",,,,,,,"943002667","3606947722",,,,"2011-07-12T13:38:20-0500","DEBORAH MARSH",,,,,549,308,34,0,342,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712170118P040013957298001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRENT BROWN AUTOMOTIVE GROUP WELFARE BENEFITS PLAN","501","2008-01-01","BRENT BROWN AUTOMOTIVE GROUP",,,"1400 SOUTH SANDHILL RD.",,"OREM","UT","84058",,,,,,,,,,,,,,,,,,"870672706","8012241320","441110","BRENT BROWN AUTOMOTIVE GROUP",,"1400 SOUTH SANDHILL RD.",,"OREM","UT","84058",,,,,,,"870672706","8012241320",,,,"2011-07-12T17:00:04-0500","BRENT L. BROWN","2011-07-12T17:00:04-0500","BRENT L. BROWN",,,150,164,,,164,,,,,,,"4A4B4D4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712151457P030092299265001","2010-01-01","2010-12-06","2",,"0","0","1","1",,,,,,,"CSWITCH CORPORATION RETIREMENT PLAN","001","2004-01-01","CSWITCH CORPORATION",,,"3131 JAY STREET","SUITE 200","SANTA CLARA","CA","95054",,,,,,,"3131 JAY STREET","SUITE 200","SANTA CLARA","CA","95054",,,,,,,"571189728","4089861964","334410","CSWITCH CORPORATION",,"3131 JAY STREET","SUITE 200","SANTA CLARA","CA","95054",,,,,,,"571189728","4089861964",,,,"2011-06-28T20:41:38-0500","SHANNON LANE",,,"2011-07-08T13:34:58-0500","DOUGLAS LAIRD",13,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110712151507P040094921553003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LARRY YOUNGGREN & SONS, INC. PROFIT SHARING PLAN","004","2002-11-26","LARRY YOUNGGREN & SONS, INC.",,,"722 SOUTH 6TH ST.",,"HALLOCK","MN","56728",,,,,,,,,,,,,,,,,,"411339351","2188433318","111900","LARRY YOUNGGREN & SONS, INC.",,"722 SOUTH 6TH ST.",,"HALLOCK","MN","56728",,,,,,,"411339351","2188433318",,,,"2011-07-12T15:47:23-0500","DANIEL L. YOUNGGREN","2011-07-12T15:47:35-0500","DANIEL L. YOUNGGREN",,,1,1,0,0,1,0,1,1,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713125016P030436461872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LUONG DANG, DDS 401(K) PLAN","001","2009-01-01","LUONG DANG, DDS",,,"2050 TOWN CENTER",,"WEST SACRAMENTO","CA","95691",,,,,,,,,,,,,,,,,,"202104047","9163749974","621210","LUONG DANG, DDS",,"2050 TOWN CENTER",,"WEST SACRAMENTO","CA","95691",,,,,,,"202104047","9163749974",,,,"2011-07-13T12:48:20-0500","LUONG DANG",,,,,5,5,,,5,,5,5,,,"2A2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712083537P030092063233001","2009-10-01","2010-09-30","4","C","0","0","0","0","0","0","0","0","0",,"COMMINGLED PENSION TRUST FUND (EQUITY INDEX) OF JPMORGAN CHASE BANK, N.A.","001",,"JPMORGAN CHASE BANK, N.A.",,,"270 PARK AVENUE","6TH FLOOR","NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"202266703","2126482532",,"JPMORGAN CHASE BANK, N.A.",,"270 PARK AVENUE","6TH FLOOR","NEW YORK","NY","10017",,,,,,,"202266703","2126482532",,,,,,,,"2011-07-12T08:26:49-0500","LAURA S. MELMAN",0,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-07-12",,"Filed with authorized/valid electronic signature", "20110712103412P030092131537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CROWNER & BROWN 401(K) PLAN","001","1996-01-01","WEST HICKMAN TIRE AND AUTO CENTER",,,"2905 S DUFF",,"AMES","IA","50010",,,,,,,,,,,,,,,,,,"421365360","5152326000","811190","WEST HICKMAN TIRE AND AUTO CENTER",,"2905 S DUFF",,"AMES","IA","50010",,,,,,,"421365360","5152326000",,,,"2011-07-12T10:33:57-0500","MIKE SMITHERMAN",,,,,78,65,0,14,79,0,79,41,0,,"2E2F2G2J2K3D3H2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712142909P030013442082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DELAWARE DENTAL PARTNERS HALVERSON, RIGGS & BECKMAN, LLP 401(K) PROFIT SHARING PLAN","001","2008-01-01","DELAWARE DENTAL PARTNERS, LLP",,,"1179 COLUMBUS PIKE",,"DELWARE","OH","43015",,,,,,,,,,,,,,,,,,"208310623","7403622202","621111","DELAWARE DENTAL PARTNERS, LLP",,"1179 COLUMBUS PIKE",,"DELWARE","OH","43015",,,,,,,"208310623","7403622202",,,,"2011-07-12T14:09:18-0500","DALE RIGGS",,,,,10,9,1,0,10,0,10,5,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712145050P040094909281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEE ASSISTANCE PROGRAM","509","1987-06-01","BAPTIST HEALTH CARE CORPORATION","SAME","SAME","1000 WEST MORENO STREET",,"PENSACOLA","FL","32501",,,,,,,"1000 WEST MORENO STREET",,"PENSACOLA","FL","32501",,,,,,,"590657322","8504692195","622000","BAPTIST HEALTH CARE CORPORATION","SAME","1000 WEST MORENO STREET",,"PENSACOLA","FL","32501",,,,,,,"590657322","8504692195",,,,"2011-07-12T14:50:26-0500","STEVEN INFINGER",,,,,3225,3632,0,0,3632,0,3632,0,0,0,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712160827P030013450146001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"REDFLEX TRAFFIC SYSTEMS EMPLOYEE BENEFITS PLAN","501","2009-08-01","REDFLEX TRAFFIC SYSTEMS",,,"23751 N 23RD AVE",,"PHOENIX","AZ","85085",,,,,,,"23751 N 23RD AVE",,"PHOENIX","AZ","85085",,,,,,,"860956737","6232052350","541990","REDFLEX TRAFFIC SYSTEMS",,"23751 N 23RD AVE",,"PHOENIX","AZ","85085",,,,,,,"860956737","6232052350",,,,"2011-07-12T09:02:06-0500","SANDRA STEVENS",,,,,364,333,0,0,333,0,333,0,0,,,"4A","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713090550P030029002279001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PEDIATRIC ASSOCIATES OF NORWOOD & FRANKLIN, P.C. PROFIT SHARING PLAN","001","1978-08-01","PEDIATRIC ASSOCIATES OF NORWOOD & FRANKLIN, P.C.",,,"62 WALPOLE STREET",,"NORWOOD","MA","02062",,,,,,,,,,,,,,,,,,"042647485","7817694090","621111","PEDIATRIC ASSOCIATES OF NORWOOD & FRANKLIN, P.C.",,"62 WALPOLE STREET",,"NORWOOD","MA","02062",,,,,,,"042647485","7817694090",,,,"2011-07-13T09:05:39-0500","ROBERT E. BRAITMAN",,,,,39,33,0,8,41,0,41,41,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712130758P040094856033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PEPPER DINING, INC. WELFARE BENEFIT PLAN","501","2007-07-01","PEPPER DINING, INC",,,"ONE STATION PLAZA",,"STAMFORD","CT","06902",,,,,,,,,,,,,,,,,,"208384658","8005160543","722110","PEPPER DINING, INC",,"ONE STATION PLAZA",,"STAMFORD","CT","06902",,,,,,,"208384658","8005160543",,,,"2011-07-12T13:07:15-0500","GARY SACHS","2011-07-12T13:07:15-0500","GARY SACHS",,,1209,1513,0,0,1513,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712164145P040094963969001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"J. HERNDON, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","2008-01-01","J. HERNDON, INC.",,,"4500 E. SPEEDWAY BLVD.","SUITE 64","TUCSON","AZ","85712",,,,,,,"4500 E. SPEEDWAY BLVD.","#67","TUCSON","AZ","85712",,,,,,,"860735557","5203254504","722110","J. HERNDON, INC.",,"4500 E. SPEEDWAY BLVD.","SUITE 64","TUCSON","AZ","85712",,,,,,,"860735557","5203254504",,,,"2011-07-12T16:49:42-0500","J. MICHAEL HERNDON","2011-07-12T16:49:42-0500","J. MICHAEL HERNDON",,,32,0,0,0,0,0,0,0,0,,"2E2P2Q",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713091137P040095328097001","2010-01-01","2010-12-31","3",,"0",,"0","0","0","1",,,,,"AXCET HR SOLUTIONS M/E 401(K) RETIREMENT PLAN","333","1996-01-01","AXCET HR SOLUTIONS",,,"8345 LENEXA DR STE 100",,"LENEXA","KS","662141765",,,,,,,,,,,,,,,,,,"481102958","9133832999","561300","AXCET HR SOLUTIONS",,"8345 LENEXA DR STE 100",,"LENEXA","KS","662141765",,,,,,,"481102958","9133832999",,,,"2011-07-13T09:11:34-0500","JEANETTE COLEMAN","2011-07-13T09:11:34-0500","JEANETTE COLEMAN",,,3909,2974,0,134,3108,3,3111,767,326,,"2E2F2G2J2K2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713130014P040095439841005","2010-04-01","2011-03-31","2",,,,,,,,,,,,"KROPF CONSTRUCTION INC 401K PROFIT SHARING PLAN","001","2005-04-01","KROPF CONSTRUCTION, INC",,,"910 SCEPTER CT NE",,"SALEM","OR","97301",,,,,,,,,,,,,,,,,,"931094082","5035818591","236110","KROPF CONSTRUCTION INC",,"910 SCEPTER CT NE",,"SALEM","OR","97301",,,,,,,"931094082","5035818591",,,,"2011-07-13T12:54:15-0500","CURTIS KROPF",,,,,8,1,,5,6,,6,6,,,"2R2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713130127P040014039010001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REYNOLDS SHIPYARD CORP. 401K PROFIT SHARING PLAN","003","1998-01-01","REYNOLDS SHIPYARD CORP.",,,"200 EDGEWATER ST",,"STATEN ISLAND","NY","103054917",,,,,,,,,,,,,,,,,,"133143960","7189812800","483000","REYNOLDS SHIPYARD CORP.",,"200 EDGEWATER ST",,"STATEN ISLAND","NY","103054917",,,,,,,"133143960","7189812800",,,,"2011-07-13T12:56:08-0500","MICHAEL REYNOLDS",,,,,5,4,0,1,5,0,5,5,0,,"2E2F2G2J2K2A2R3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712105905P030013419346001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","0","0","0","0",,"SGH EMPLOYEE WELFARE PLAN","501","1958-01-01","SIMPSON GUMPERTZ & HEGER INC.",,"41 SEYON STREET","BUILDING 1, SUITE 500",,"WALTHAM","MA","02453",,,,,,,"41 SEYON STREET","BUILDING 1, SUITE 500","WALTHAM","MA","02453",,,,,,,"042256923","7816432000","541330","SIMPSON GUMPERTZ & HEGER INC.",,"41 SEYON STREET","BUILDING 1, SUITE 500","WALTHAM","MA","02453",,,,,,,"042256923","7816432000",,,,"2011-07-12T10:32:29-0500","GEORGE REITTER",,,,,385,385,18,,403,,403,,,,,"4A4B4D4E4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712095823P030013409650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FLEXIBLE BENEFIT PLAN","501","1992-03-01","TENASKA, INC.",,,"1044 NORTH 115TH STREET, SUITE 400",,"OMAHA","NE","681544446",,,,,,,,,,,,,,,,,,"470701708","4026919500","541990","TENASKA, INC.",,"1044 NORTH 115TH STREET, SUITE 400",,"OMAHA","NE","681544446",,,,,,,"470701708","4026919500",,,,"2011-07-12T09:51:40-0500","TIMOTHY KUDRON",,,,,298,362,0,0,362,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712145828P030013445090001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALEXANDER DUBOSE & TOWNSEND LLP 401(K) PLAN","001","2003-12-01","ALEXANDER DUBOSE & TOWNSEND LLP",,,"1844 HARVARD STREET",,"HOUSTON","TX","77008",,,,,,,,,,,,,,,,,,"562356523","7135232358","541110","ALEXANDER DUBOSE & TOWNSEND LLP",,"1844 HARVARD STREET",,"HOUSTON","TX","77008",,,,,,,"562356523","7135232358",,,,"2011-07-12T14:54:17-0500","KEVIN DUBOSE",,,,,14,14,0,1,15,0,15,15,1,,"2A2E2F2G2J2K2T3B3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712161803P030434005344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEVERANCE PAY PLAN FOR RALCORP HOLDINGS, INC. AND AFFILIATES","507","1994-04-01","RALCORP HOLDINGS, INC.",,,"P.O. BOX 618",,"ST. LOUIS","MO","63188",,,,,,,"800 N. MARKET",,"ST. LOUIS","MO","63188",,,,,,,"431766315","3148777740","311900","RALCORP HOLDINGS, INC.",,"P.O. BOX 618",,"ST. LOUIS","MO","63188",,,,,,,"431766315","3148777740",,,,"2011-07-12T16:10:54-0500","THOMAS GRANNEMAN",,,,,1833,1872,0,0,1872,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712194605P040013965682001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARETECH SOLUTIONS, INC. EMPLOYEE BENEFIT PLAN","501","1998-10-01","CARETECH SOLUTIONS, INC.",,,"901 WILSHIRE DR., SUITE 480",,"TROY","MI","48084",,,,,,,,,,,,,,,,,,"383421436","2488230800","541519","CARETECH SOLUTIONS, INC.",,"901 WILSHIRE DR., SUITE 480",,"TROY","MI","48084",,,,,,,"383421436","2488230800",,,,"2011-07-12T19:45:18-0500","BARBARA R. JOHNSON",,,,,709,768,15,0,783,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713091437P040095329265001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"O-A, INC. 401(K) PLAN","001","1997-01-01","O-A, INC.",,,"325 SILVER STREET",,"AGAWAM","MA","01001",,,,,,,,,,,,,,,,,,"042916318","4137891800","336410","O-A, INC.",,"325 SILVER STREET",,"AGAWAM","MA","01001",,,,,,,"042916318","4137891800",,,,"2011-07-13T10:14:20-0500","PHIL CHMURA",,,,,39,31,0,9,40,0,40,38,0,,"2E2F2H2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110708124104P030089835921001","2005-07-01","2006-06-30","2",,"1","0","0","0","0","0","0","1","0",,"GROUP HOME FOUNDATION INC.","501","2005-07-01","GROUP HOME FOUNDATION INC",,,"PO BOX 227",,"BELFAST","ME","04915",,,,,,,"PO BOX 227",,"BELFAST","ME","04915",,,,,,,"010343697","2073382080","624310","GROUP HOME FOUNDATION INC",,"PO BOX 227",,"BELFAST","ME","04915",,,,,,,"010343697","2073382080",,,,"2011-07-08T12:35:26-0500","LORI DAVIDSON",,,,,143,141,,,141,,141,,,,,"4A4D",,,,,,,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708151255P040419236208001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"L & K ELECTRIC 401(K) PLAN AND TRUST","001","2007-01-01","L & K ELECTRIC, INC.",,,"5317 2ND AVENUE WEST",,"WILLISTON","ND","58801",,,,,,,,,,,,,,,,,,"450433297","7017741094","811110","L & K ELECTRIC, INC.",,"5317 2ND AVENUE WEST",,"WILLISTON","ND","58801",,,,,,,"450433297","7017741094",,,,"2011-07-08T15:01:49-0500","JILL KLEVEN",,,,,16,13,0,2,15,0,15,15,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708105036P030422560960001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"FOSTER FUELS, INC. 401(K) PLAN","001","1998-11-01","FOSTER FUELS, INC.",,,"P. O. BOX 190",,"BROOKNEAL","VA","24528",,,,,,,"16720 BROOKNEAL HWY",,"BROOKNEAL","VA","24528",,,,,,,"540682048","4343762322","454319","E. C. TIBBS, JR.",,"P. O. BOX 190",,"BROOKNEAL","VA","24528",,,,,,,"540682048","4343762322",,,,"2011-07-08T10:47:18-0500","ELWOOD TIBBS",,,,,47,51,0,3,54,0,54,45,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708105228P030422564256001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIVING RESOURCES CORPORATION SECTION 105 PLAN","525","2005-12-31","LIVING RESOURCES CORPORATION",,,"300 WASHINGTON AVENUE EXTENSION",,"ALBANY","NY","122037303",,,,,,,,,,,,,,,,,,"141564208","5182180000","624100","LIVING RESOURCES CORPORATION",,"300 WASHINGTON AVENUE EXTENSION",,"ALBANY","NY","122037303",,,,,,,"141564208","5182180000",,,,"2011-07-08T10:27:23-0500","EILEEN MARTEL",,,,,543,572,0,0,572,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708132146P030422895408001","2003-01-01","2003-12-31","2",,"1","0","0","0","0","0","0","1","0",,"NATIONWIDE CHILDREN'S HOSPITAL EMPLOYEE ASSISTANCE PLAN","511","1995-04-01","NATIONWIDE CHILDREN'S HOSPITAL","NATIONWIDE CHILDREN'S HOSPITAL","NATIONWIDE CHILDREN'S HOSPITAL","700 CHILDREN'S DRIVE",,"COLUMBUS","OH","43205",,,,,,,"700 CHILDREN'S DRIVE",,"COLUMBUS","OH","43205",,,,,,,"314379441","6143554101","622000","NATIONWIDE CHILDREN'S HOSPITAL","NATIONWIDE CHILDREN'S HOSPITAL","700 CHILDREN'S DRIVE",,"COLUMBUS","OH","43205",,,,,,,"314379441","6143554101",,,,"2011-07-08T13:09:58-0500","JOSE BALDERRAMA",,,,,3133,3239,0,0,3239,,3239,,,0,,"4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708132200P030089860305001","2005-01-01","2005-12-31","2",,"1","0","0","0","0","0","0","1","0",,"NATIONWIDE CHILDREN'S HOSPITAL EMPLOYEE ASSISTANCE PLAN","511","1995-04-01","NATIONWIDE CHILDREN'S HOSPITAL","NATIONWIDE CHILDREN'S HOSPITAL","NATIONWIDE CHILDREN'S HOSPITAL","700 CHILDREN'S DRIVE",,"COLUMBUS","OH","43205",,,,,,,"700 CHILDREN'S DRIVE",,"COLUMBUS","OH","43205",,,,,,,"314379441","6143554101","622000","NATIONWIDE CHILDREN'S HOSPITAL","NATIONWIDE CHILDREN'S HOSPITAL","700 CHILDREN'S DRIVE",,"COLUMBUS","OH","43205",,,,,,,"314379441","6143554101",,,,"2011-07-08T13:07:57-0500","JOSE BALDERRAMA",,,,,3347,3598,0,0,3598,,3598,,,0,,"4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711111757P030091514193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANALYTICAL GRAPHICS, INC. FLEXIBLE BENEFITS PLAN","501","1998-01-01","ANALYTICAL GRAPHICS, INC.",,,"220 VALLEY GREEK BLVD.",,"EXTON","PA","193410000",,,,,,,,,,,,,,,,,,"232556208","6109818000","511210","ANALYTICAL GRAPHICS, INC.",,"220 VALLEY GREEK BLVD.",,"EXTON","PA","193410000",,,,,,,"232556208","6109818000",,,,"2011-07-06T15:13:35-0500","LISA VELTE","2011-07-11T11:16:47-0500","WILLIAM J. BRODERICK",,,259,260,1,0,261,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711073941P040029385191001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DINSE, KNAPP & MCANDREW, PC RETIREMENT PLAN","001","1977-01-01","DINSE, KNAPP & MCANDREW, PC",,,"209 BATTERY STREET",,"BURLINGTON","VT","05401",,,,,,,,,,,,,,,,,,"030349804","8028645751","541110","DINSE, KNAPP & MCANDREW, PC",,"209 BATTERY STREET",,"BURLINGTON","VT","05401",,,,,,,"030349804","8028645751",,,,"2011-07-11T07:39:15-0500","JOANNE AUSTIN",,,,,74,48,0,0,48,0,48,47,3,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711140111P030013332882005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BANCTEC EMPLOYEES SAVINGS PLAN","001","1984-04-01","BANCTEC, INC",,,"2701 E GRAUWYLER ROAD",,"IRVING","TX","75061",,,,,,,,,,,,,,,,,,"751559633","9728214321","334610","BANCTEC INC",,"2701 E GRAUWYLER ROAD",,"IRVING","TX","75061",,,,,,,"751559633","9728214321",,,,"2011-07-11T13:22:40-0500","MARK TRIVETTE",,,,,1367,1143,23,689,1855,7,1862,1198,4,,"2T2K2J2G2F2E",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711141517P030091603969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALL METALS, INC. 401(K) PROFIT SHARING PLAN","001","2008-01-01","ALL METALS, INC.",,,"628 INDUSTRIAL DRIVE",,"ADRIAN","MI","49221",,,,,,,,,,,,,,,,,,"340960933","5172634625","423500","ALL METALS, INC.",,"628 INDUSTRIAL DRIVE",,"ADRIAN","MI","49221",,,,,,,"340960933","5172634625",,,,"2011-07-11T14:09:35-0500","BRIAN ROE",,,,,8,6,0,1,7,0,7,7,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711095250P030091468865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HNI CORPORATION DISABILITY PLAN","517","1999-01-01","HNI CORPORATION",,,"P. O. BOX 1109","408 E SECOND ST","MUSCATINE","IA","527610071",,,,,,,,,,,,,,,,,,"420617510","5632727400","337000","HNI CORPORATION",,"P. O. BOX 1109","408 E SECOND ST","MUSCATINE","IA","527610071",,,,,,,"420617510","5632727400",,,,"2011-07-11T09:52:50-0500","GARY CARLSON",,,,,7101,6618,0,0,6618,,,,,,,"4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708072225P040092286977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TOWN & COUNTRY LINOLEUM & CARPET CO., INC. EMPLOYEE RETIREMENT SAVINGS PLAN","002","1974-01-01","TOWN & COUNTRY LINOLEUM & CARPET CO., INC.",,,"4101 W GENESEE ST",,"SYRACUSE","NY","132191933",,,,,,,,,,,,,,,,,,"150580710","3154686288","442210","TOWN & COUNTRY LINOLEUM & CARPET CO., INC.",,"4101 W GENESEE ST",,"SYRACUSE","NY","132191933",,,,,,,"150580710","3154686288",,,,"2011-07-08T07:22:24-0500","WENDY WILSON",,,,,3,0,0,1,1,0,1,1,0,,"2E2G2J2K3D2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708140938P030089891089001","2008-07-01","2009-06-30","2",,"0","1","0","0","0","1","0","0","0",,"BEAVER DAM COMMUNITY HOSPITALS, INC. RETIREMENT PLAN","001","1968-12-15","BEAVER DAM CUMMUNITY HOSPITALS, INC",,,"707 SOUTH UNIVERSITY AVENUE",,"BEAVER DAM","WI","53916",,,,,,,,,,,,,,,,,,"391157876","9208877181","622000","BEAVER DAM CUMMUNITY HOSPITALS, INC",,"707 SOUTH UNIVERSITY AVENUE",,"BEAVER DAM","WI","53916",,,,,,,"391157876","9208877181",,,,"2011-07-07T08:29:13-0500","DONNA HUTCHINSON",,,,,1182,607,282,294,1183,16,1199,,18,,"1A1G3E",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708142402P030002643683001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"CENTRAL COLLEGE GROUP TERM LIFE INSURANCE","502","1969-09-01","CENTRAL COLLEGE",,,"812 UNIVERSITY ST.",,"PELLA","IA","50219",,,,,,,"812 UNIVERSITY ST.",,"PELLA","IA","50219",,,,,,,"420680344","6416285199","611000","CENTRAL COLLEGE",,"812 UNIVERSITY ST.",,"PELLA","IA","50219",,,,,,,"420680344","6416285199",,,,"2011-07-08T10:43:52-0500","MONA ROOZEBOOM",,,,,373,376,0,0,376,,376,,,,,"4B",,,,"1",,,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708182733P040092613281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANK OF AGRICULTURE AND COMMERCE HEALTH AND WELFARE PLAN","502","2006-01-01","BANK OF AGRICULTURE AND COMMERCE",,,"2021 WEST MARCH LANE, 2ND FLOOR",,"STOCKTON","CA","95207",,,,,,,,,,,,,,,,,,"941597144","2094736839","522110","BANK OF AGRICULTURE AND COMMERCE",,"2021 WEST MARCH LANE, 2ND FLOOR",,"STOCKTON","CA","95207",,,,,,,"941597144","2094736839",,,,"2011-07-08T17:37:05-0500","PEGGY NEMEE",,,,,93,90,2,0,92,,,,,,,"4A4B4D4E4H4L4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110710144424P040424298512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FREDERICK VETERINARY LLC PROFIT SHARING PLAN","001","1999-01-01","FREDERICK VETERINARY LLC","FREDERICK VETERINARY CENTER LLC",,"7421 GROVE ROAD",,"FREDERICK","MD","21704",,,,,,,"7421 GROVE ROAD",,"FREDERICK","MD","21704",,,,,,,"522143111","3016948015","541940","JOHN F. FLYNN",,"7194 MEADOWBROOKE DRIVE",,"FREDERICK","MD","21702",,,,,,,"522145111","3016948015",,,,"2011-07-10T14:43:15-0500","JOHN FLYNN",,,,,1,1,0,0,1,0,1,,0,,"2E3B3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-10","Filed with authorized/valid electronic signature",, "20110710155325P040093687825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALERIE WILSON TRAVEL, INC.","503","1998-09-01","VALERIE WILSON TRAVEL, INC.",,"JESSICA COOK","475 PARK AVENUE SOUTH",,"NEW YORK","NY","10016",,,,,,,"475 PARK AVENUE SOUTH",,"NEW YORK","NY","10016",,,,,,,"133072817","2125921280","561500","VALERIE WILSON TRAVEL, INC.","JESSICA COOK","475 PARK AVENUE SOUTH",,"NEW YORK","NY","10016",,,,,,,"133072817","2125921280",,,,"2011-07-10T15:51:28-0500","JESSICA COOK",,,,,100,102,,,102,,102,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-10","Filed with authorized/valid electronic signature",, "20110708091508P040092337505001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NORTHEAST IOWA PODIATRY PC STANDARDIZED PROFIT SHARING PLAN","003","1995-01-01","NORTHEAST IOWA PODIATRY PC",,,"44 BROOKRIDGE DRIVE",,"WATERLOO","IA","50701",,,,,,,,,,,,,,,,,,"421051242","3192342644","621391","NORTHEAST IOWA PODIATRY PC",,"44 BROOKRIDGE DRIVE",,"WATERLOO","IA","50701",,,,,,,"421051242","3192342644",,,,"2011-07-07T15:56:36-0500","JOHN M ADAMS","2011-07-07T15:56:44-0500","JOHN M ADAMS","2011-07-07T15:56:51-0500","DAVID EVENSON",9,6,0,3,9,0,9,9,,,"2E2G2F2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature","Filed with authorized/valid electronic signature" "20110708094648P040028885815001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MISSOURI FARM BUREAU EMPLOYEES GROUP LIFE PLAN","504","1960-01-01","MISSOURI FARM BUREAU SERVICES, INC",,,"P.O. BOX 658",,"JEFFERSON CITY","MO","65102",,,,,,,"701 S. COUNTRY CLUB DR.",,"JEFFERSON CITY","MO","65109",,,,,,,"431030484","5738931400","525100","MISSOURI FARM BUREAU SERVICES, INC",,"P.O. BOX 658",,"JEFFERSON CITY","MO","65102",,,,,,,"431030484","5738931400",,,,"2011-07-08T09:01:04-0500","RANDALL CAMPBELL",,,,,435,453,,,453,,453,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711133213P030430731568001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MID YORK SENIOR HOMES INC. 403B PLAN","001","1997-07-01","MID YORK SENIOR HOMES",,"SUSAN BAUMAN","310 MADISON LANE",,"HAMILTON","NY","13346",,,,,,,"310 MADISON LANE",,"HAMILTON","NY","13346",,,,,,,"161079834","3158243322","623000","MID YORK SENIOR HOMES","SUSAN BAUMAN","310 MADISON LANE",,"HAMILTON","NY","13346",,,,,,,"161079834","3158243322",,,,"2011-07-11T12:27:33-0500","SUSAN BAUMAN",,,,,4,3,0,1,4,0,4,4,0,,"2M2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708152759P040419265728001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MAMSCO, LLC SECTION 401(K) PROFIT SHARING PLAN","001","2005-01-01","MAMSCO, LLC",,,"9 TIPPING DR",,"BRANFORD","CT","06405",,,,,,,,,,,,,,,,,,"061470773","2034819833","444190","MAMSCO, LLC",,"9 TIPPING DR",,"BRANFORD","CT","06405",,,,,,,"061470773","2034819833",,,,"2011-07-08T04:27:43-0500","MICHAEL MARSHALL",,,,,9,4,0,3,7,0,7,7,2,,"2E2H2J2K2A3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711132316P030013328866001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"S.W. RODGERS CO., INC. 401(K)/PROFIT SHARING PLAN","001","1984-12-31","S.W. RODGERS COMPANY, INC.",,,"5816 WELLINGTON ROAD",,"GAINESVILLE","VA","20155",,,,,,,"5816 WELLINGTON ROAD",,"GAINESVILLE","VA","20155",,,,,,,"541141778","7037548100","238900","S.W. RODGERS COMPANY, INC.",,"5816 WELLINGTON ROAD",,"GAINESVILLE","VA","20155",,,,,,,"541141778","7037548100",,,,"2011-07-11T13:22:29-0500","MIRIAM PEARSON",,,,,328,305,0,61,366,2,368,280,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711141833P040094294097001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"INSURANCE PLANS PLATINUM HOME MORTGAGE CORPORATION","501","2010-01-01","PLATINUM HOME MORTGAGE CORPORATION",,,"2200 HICKS ROAD","SUITE 101","ROLLING MEADOWS","IL","60008",,,,,,,"2200 HICKS ROAD","SUITE 101","ROLLING MEADOWS","IL","60008",,,,,,,"431653688","8477979500","522292","PLATINUM HOME MORTGAGE CORPORATION",,"2200 HICKS ROAD","SUITE 101","ROLLING MEADOWS","IL","60008",,,,,,,"431653688","8477979500",,,,"2011-07-11T14:07:26-0500","WILLIAM GIAMBRONE",,,,,342,301,0,0,301,,301,,,,,"4A4B4D4E4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711060446P040094035617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBINSONS, INC. PENSION PLAN","001","1981-01-01","ROBINSONS, INC.",,,"PO B0X 405",,"ESSEX JCT","VT","05453",,,,,,,,,,,,,,,,,,"030210287","8028784275","454311","ROBINSONS, INC.",,"PO B0X 405",,"ESSEX JCT","VT","05403",,,,,,,"030210287","8028784275",,,,"2011-07-11T05:56:08-0500","JAMES A. ROBINSON",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711061416P040094039073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PREVISOR INC. WELFARE BENEFITS PLAN","501","2004-01-01","PREVISOR INC.",,,"1805 OLD ALABAMA ROAD STE 150",,"ROSWELL","GA","300762257",,,,,,,,,,,,,,,,,,"470958091","6788320502","541600","PREVISOR INC.",,"1805 OLD ALABAMA ROAD STE 150",,"ROSWELL","GA","300762257",,,,,,,"470958091","6788320502",,,,"2011-07-11T05:02:44-0500","NIKKI HALL",,,,,399,417,,,417,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708084447P030089709617001","2011-01-01","2011-02-22","2",,"0","0","1","1","0","0","0","0","0",,"LIFT SYSTEMS, INC. 401K PLAN","001","1996-07-01","LIFT SYSTEMS, INC.",,,"1505 7TH STREET",,"E. MOLINE","IL","61244",,,,,,,,,,,,,,,,,,"202726893","3097649842","333610","LIFT SYSTEMS, INC.",,"1505 7TH STREET",,"E. MOLINE","IL","61244",,,,,,,"202726893","3097649842",,,,"2011-07-08T08:42:07-0500","BRUCE J. FORSTER",,,,,62,0,0,0,0,0,0,0,0,,"2E2F2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708103605P030089763281001","2009-10-01","2010-09-30","4","C","0","0","0","0","0","0","0","0","0",,"COMMINGLED PENSION TRUST FUND (INTERNATIONAL EQUITY INDEX) OF JPMORGAN CHASE BANK, N.A.","001",,"JPMORGAN CHASE BANK, N.A.",,,"270 PARK AVENUE","6TH FLOOR","NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"262744143","2126482532",,"JPMORGAN CHASE BANK, N.A.",,"270 PARK AVENUE","6TH FLOOR","NEW YORK","NY","10017",,,,,,,"262744143","2126482532",,,,,,,,"2011-07-08T10:27:21-0500","LAURA S. MELMAN",0,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-07-08",,"Filed with authorized/valid electronic signature", "20110708105405P030089771745001","2009-10-01","2010-09-30","4","C","0","0","0","0","0","0","0","0","0",,"COMMINGLED PENSION TRUST FUND (INTERMEDIATE CREDIT) OF JPMORGAN CHASE BANK, N.A.","001",,"JPMORGAN CHASE BANK, N.A.",,,"270 PARK AVENUE","6TH FLOOR","NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"137197339","2126482532",,"JPMORGAN CHASE BANK, N.A.",,"270 PARK AVENUE","6TH FLOOR","NEW YORK","NY","10017",,,,,,,"137197339","2126482532",,,,,,,,"2011-07-08T10:53:52-0500","LAURA S. MELMAN",0,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-07-08",,"Filed with authorized/valid electronic signature", "20110710093653P030090923713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTRAL TEXAS PATHOLOGY LABORATORY, P.A. EMPLOYEES 401(K) SAVINGS PLAN AND TRUST","001","1997-06-01","CENTRAL TEXAS PATHOLOGY LABORATORY, P.A.",,,"601 WEST HIGHWAY 6, SUITE 111",,"WACO","TX","76710",,,,,,,,,,,,,,,,,,"752695035","2547529621","621510","CENTRAL TEXAS PATHOLOGY LABORATORY, P.A.",,"601 WEST HIGHWAY 6, SUITE 111",,"WACO","TX","76710",,,,,,,"752695035","2547529621",,,,"2011-07-10T09:19:26-0500","DAVID MCTAGGART",,,,,54,37,0,11,48,0,48,48,4,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-10","Filed with authorized/valid electronic signature",, "20110708112240P030422631552001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"B & L MANAGEMENT CO LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2002-01-01","B & L MANAGEMENT CO, LLC",,,"316 EAST 63RD STREET",,"NEW YORK","NY","10065",,,,,,,,,,,,,,,,,,"133069365","2129062813","812990","B & L MANAGEMENT CO, LLC",,"316 EAST 63RD STREET",,"NEW YORK","NY","10065",,,,,,,"133069365","2129062813",,,,"2011-07-08T11:22:38-0500","B L MANAGEMENT CO, LLC",,,,,28,45,0,0,45,0,45,10,0,,"2E2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711092858P030091458337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORROSION MONITORING SERVICES, INC. 401(K) PROFIT SHARING PLAN","001","1997-01-01","CORROSION MONITORING SVCS., INC.",,,"902 EQUITY DR",,"ST CHARLES","IL","60174",,,,,,,,,,,,,,,,,,"363437612","6307629300","238900","CORROSION MONITORING SVCS., INC.",,"902 EQUITY DR",,"ST CHARLES","IL","60174",,,,,,,"363437612","6307629300",,,,"2011-07-11T09:24:49-0500","GERI NEIDHARDT",,,,,73,58,0,0,58,0,58,40,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711094358P030091464785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INLAND BANCORP 401(K) PLAN","001","2009-02-01","INLAND BANCORP, INC.",,,"2901 BUTTERFIELD ROAD",,"OAK BROOK","IL","60523",,,,,,,,,,,,,,,,,,"364396104","6302188000","531110","INLAND BANCORP, INC.",,"2901 BUTTERFIELD ROAD",,"OAK BROOK","IL","60523",,,,,,,"364396104","6302188000",,,,"2011-07-11T09:42:49-0500","PETER B STICKLER",,,,,146,210,0,14,224,0,224,149,6,,"2E2J2G2K3D2F2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708091921P030089729489001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"EMERGENCY PHYSICIANS GROUP PROFIT SHARING/401(K) PLAN","001","1983-01-01","EMERGENCY PHYSICIANS GROUP PSC",,,"1412 FREDERICA STREET",,"OWENSBORO","KY","42301",,,,,,,"1412 FREDERICA STREET",,"OWENSBORO","KY","42301",,,,,,,"610980048","2706850216","621111","EMERGENCY PHYSICIANS GROUP PSC",,"1412 FREDERICA STREET",,"OWENSBORO","KY","42301",,,,,,,"610980048","2706850216",,,,"2011-07-08T09:18:39-0500","LOUISE OSBORNE",,,,,22,17,0,4,21,0,21,20,0,,"2E2F2G2J2R2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708091924P030027992263001","2010-07-06","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"SENORX SEVERANCE PLAN","501","2010-07-06","SENORX, INC.",,,"3 MORGAN",,"IRVINE","CA","92618",,,,,,,,,,,,,,,,,,"330787406","9493624800","339110","SENORX, INC.",,"3 MORGAN",,"IRVINE","CA","92618",,,,,,,"330787406","9493624800",,,,"2011-07-07T16:45:58-0500","SCOTT LOWRY",,,,,0,134,0,0,134,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708091943P040418487792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SM-ABBINGTON SQUARE LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","SM-ABBINGTON SQUARE LLC",,,"3450 TOWNSEND BLVD",,"JACKSONVILLE","FL","32277",,,,,,,,,,,,,,,,,,"650963483","9047440122","531310","SM-ABBINGTON SQUARE LLC",,"3450 TOWNSEND BLVD",,"JACKSONVILLE","FL","32277",,,,,,,"650963483","9047440122",,,,"2011-07-08T09:19:40-0500","SM-ABBINGTON SQUARE LLC",,,,,0,6,0,0,6,0,6,1,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708094940P040092352737001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"RICE CAPITAL, INC. PROFIT SHARING PLAN","001","2003-01-01","RICE CAPITAL, INC.",,,"501 E 19TH STREET",,"STUTTGART","AR","72160",,,,,,,,,,,,,,,,,,"731572708","8706731616","311200","RICE CAPITAL, INC.",,"501 E 19TH STREET",,"STUTTGART","AR","72160",,,,,,,"731572708","8706731616",,,,"2011-07-08T09:49:33-0500","DONNA FORTENBERRY","2011-07-08T09:49:33-0500","DONNA FORTENBERRY",,,9,9,0,0,9,0,9,9,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708095133P040092353393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HILL-ROM HOLDINGS, INC. LIFE INSURANCE PLAN","519","1992-11-02","HILL-ROM HOLDINGS, INC.",,,"1069 STATE ROUTE 46",,"BATESVILLE","IN","47006",,,,,,,,,,,,,,,,,,"351160484","8129347777","339900","HILL-ROM HOLDINGS, INC.",,"1069 STATE ROUTE 46",,"BATESVILLE","IN","47006",,,,,,,"351160484","8129347777",,,,"2011-07-08T09:51:30-0500","CHRIS SHELL",,,,,4552,4241,0,0,4241,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711123511P040094223665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DELL PERRY INC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-10","DELL PERRY INC",,,"1908 GABLES LANE",,"VIENNA","VA","22182",,,,,,,,,,,,,,,,,,"050613540","7037901050","238300","DELL PERRY INC",,"1908 GABLES LANE",,"VIENNA","VA","22182",,,,,,,"050613540","7037901050",,,,"2011-07-11T00:35:08-0500","DELL PERRY INC",,,,,3,16,0,0,16,0,16,4,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711123633P030091548305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RESOURCES FOR COMMUNITY DEVELOPMENT 401(K) RETIREMENT PLAN","002","2009-01-01","RESOURCES FOR COMMUNITY DEVELOPMENT",,,"2220 OXFORD STREET",,"BERKELEY","CA","94704",,,,,,,,,,,,,,,,,,"942952466","5108454410","531390","RESOURCES FOR COMMUNITY DEVELOPMENT",,"2220 OXFORD STREET",,"BERKELEY","CA","94704",,,,,,,"942952466","5108454410",,,,"2011-07-11T12:36:20-0500","DAN SAWISLAK","2011-07-11T12:36:20-0500","DAN SAWISLAK",,,19,15,0,4,19,0,19,19,1,,"2E2G2J2K3D3H",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711103922P030091492465001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"L A KHAN MD PA EES, PROFIT SHARING PLAN AND TRUST","002","1979-11-01","L. A. KAHN M.D. P.A.","PROFIT SHARING PLAN AND TRUST",,"17202 RED OAK, STE 303",,"HOUSTON","TX","770902639",,,,,,,"17202 RED OAK, STE 303",,"HOUSTON","TX","770902639",,,,,,,"742068259","2814409500","621111","L. A. KAHN M.D. P.A.",,"17202 RED OAK, STE 303",,"HOUSTON","TX","770902639",,,,,,,"742068259","2814409500",,,,"2011-07-11T10:36:31-0500","M R YOUSUF",,,,,8,0,0,0,0,0,0,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708100257P030089751985001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"DOVEL TECHNOLOGIES INC 401(K) PLAN","001","2009-01-01","DOVEL TECHNOLOGIES, INC.",,,"7918 JONES BRANCH DR.","SUITE 100","MC LEAN","VA","22102",,,,,,,"7918 JONES BRANCH DR.","SUITE 100","MC LEAN","VA","22102",,,,,,,"541459575","7032885300","541511","DOVEL TECHNOLOGIES, INC.",,"7918 JONES BRANCH DR.","SUITE 100","MC LEAN","VA","22102",,,,,,,"541459575","7032885300","DOVEL TECHNOLOGIES, INC.","541459575","001","2011-07-08T10:02:25-0500","ELMA LEVY",,,,,42,40,0,13,53,0,53,35,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708130432P040092453937001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"RUPRECHT, HART, & WEEKS LLP 401(K) PROFIT SHARING PLAN","001","2006-01-01","RUPRECHT, HART, & WEEKS, LLP",,,"306 MAIN ST FL 2",,"MILLBURN","NJ","07041",,,,,,,"306 MAIN ST FL 2",,"MILLBURN","NJ","07041",,,,,,,"223013478","9733792400","541110","RUPRECHT, HART, & WEEKS, LLP",,"306 MAIN ST FL 2",,"MILLBURN","NJ","07041",,,,,,,"223013478","9733792400",,,,"2011-07-08T13:03:37-0500","THOMAS HART",,,,,27,26,0,3,29,0,29,24,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708160033P030002645155002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HEALTHY LIFE PUBLICATIONS INC PROFIT SHARING PLAN","001","2001-01-01","HEALTHY LIFE PUBLICATIONS, INC",,"C/O DAVID M CHENEY & CO","15600 DEVONSHIRE ST 205",,"GRANADA HILLS","CA","913447242",,,,,,,,,,,,,,,,,,"931228251","8188959719","511190","HEALTHY LIFE PUBLICATIONS INC","C/O DAVID M. CHENEY & CO.","15600 DEVONSHIRE ST 205",,"GRANADA HILLS","CA","913447242",,,,,,,"931228251","8188959719",,,,"2011-07-08T13:13:57-0500","LARRIAN GILLESPIE",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708084649P040418417840001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAMBERWELL ASSOCIATES LP 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","CAMBERWELL ASSOCIATES LP",,,"106 S CARNEY DR",,"SAINT CLAIR","MI","48079",,,,,,,,,,,,,,,,,,"521660946","8103296300","531310","CAMBERWELL ASSOCIATES LP",,"106 S CARNEY DR",,"SAINT CLAIR","MI","48079",,,,,,,"521660946","8103296300",,,,"2011-07-08T08:46:46-0500","CAMBERWELL ASSOCIATES LP",,,,,0,2,0,1,3,0,3,2,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708084811P030089710705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INSPIRE PHARMACEUTICALS INC GROUP LIFE AND DISABILITY PLAN","520","1996-04-01","INSPIRE PHARMACEUTICALS INC",,,"4222 EMPEROR BLVD STE 200",,"DURHAM","NC","277038030",,,,,,,,,,,,,,,,,,"043209022","9199419777","325410","INSPIRE PHARMACEUTICALS INC",,"4222 EMPEROR BLVD STE 200",,"DURHAM","NC","277038030",,,,,,,"043209022","9199419777",,,,"2011-07-08T08:17:58-0500","JOANNE ZELLNER","2011-07-08T08:39:30-0500","FRANCISCA YANEZ",,,241,238,0,0,238,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708130527P030089850305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MENLO HEALTH ALLIANCE, INC. CAFETERIA PLAN","501","1994-01-01","MENLO HEALTH ALLIANCE, LLC",,,"1300 CRANE STREET",,"MENLO PARK","CA","94025",,,,,,,,,,,,,,,,,,"943192446","6504984399","621111","MENLO HEALTH ALLIANCE, LLC",,"1300 CRANE STREET",,"MENLO PARK","CA","94025",,,,,,,"943192446","6504984399",,,,"2011-07-08T13:05:15-0500","TIKA MARTIN",,,,,190,180,4,1,185,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708133853P030089872257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VISTERRA CREDIT UNION WELFARE BENEFIT PLAN","501","1982-08-01","VISTERRA CREDIT UNION",,,"23540 CACTUS AVE",,"MORENO VALLEY","CA","92553",,,,,,,"23540 CACTUS AVE",,"MORENO VALLEY","CA","92553",,,,,,,"951803229","9516563701","522130","VISTERRA CREDIT UNION",,"23540 CACTUS AVE",,"MORENO VALLEY","CA","92553",,,,,,,"951803229","9516563701",,,,"2011-07-08T13:17:47-0500","LESA VONDRACEK",,,,,96,83,,,83,,83,,,,,"4A4B4D4H4Q","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708113844P030089805457001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LEVINE CHAPEL, INC. PROFIT SHARING TRUST","001","1961-12-14","LEVINE CHAPEL, INC.",,,"470 HARVARD STREET",,"BROOKLINE","MA","024462494",,,,,,,"470 HARVARD STREET",,"BROOKLINE","MA","024462494",,,,,,,"042038894","6172773010","525100","LEVINE CHAPEL, INC.",,"470 HARVARD STREET",,"BROOKLINE","MA","024462494",,,,,,,"042038894","6172773010",,,,"2011-07-15T11:18:41-0500","BARBARA LEVINE",,,,,13,13,,,13,,13,13,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708112140P040092397825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILSON BROCK & IRBY, L.L.C. 401(K) PLAN","001","1995-05-19","WILSON BROCK & IRBY, L.L.C.",,,"2849 PACES FERRY ROAD","OVERLOOK 1, SUITE 700","ATLANTA","GA","30339",,,,,,,,,,,,,,,,,,"582165110","4048535050","541110","WILSON BROCK & IRBY, L.L.C.",,"2849 PACES FERRY ROAD","OVERLOOK 1, SUITE 700","ATLANTA","GA","30339",,,,,,,"582165110","4048535050",,,,"2011-07-08T10:39:56-0500","LETHCO BROCK","2011-07-08T10:39:56-0500","LETHCO BROCK",,,18,11,0,4,15,0,15,12,0,,"2E3B2K2J2R3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708140018P030422973504001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DWIGHT H INOUYE, MD 401(K)","001","2007-10-01","DWIGHT H INOUYE MD",,,"PO BOX 849",,"GUNNISON","UT","84634",,,,,,,,,,,,,,,,,,"870362338","4355287202","621111","DWIGHT H INOUYE MD",,"PO BOX 849",,"GUNNISON","UT","84634",,,,,,,"870362338","4355287202",,,,"2011-07-08T01:18:12-0500","DWIGHT H INOUYE",,,,,5,5,0,0,5,,5,,,,"2E2F2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711151509P040094320273006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DISCOVERY SCHOOL 403(B) TDA PLAN","002","1992-01-01","DISCOVERY SCHOOL, INC.",,,"855 MILLSBORO ROAD",,"MANSFIELD","OH","449031919",,,,,,,,,,,,,,,,,,"341168732","4197568880","611000","DISCOVERY SCHOOL, INC.",,"855 MILLSBORO ROAD",,"MANSFIELD","OH","449031919",,,,,,,"341168732","4197568880",,,,"2011-07-11T15:11:50-0500","LISA COOK","2011-07-11T15:12:15-0500","LISA COOK",,,31,30,0,2,32,0,32,13,,,"2G2L",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711100835P030091476865001","2010-08-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"CENTRAL JERSEY BANK DENTAL PLAN","502","1998-01-01","CENTRAL JERSEY BANK, NA",,,"1903 HIGHWAY 35",,"OAKHURST","NJ","077552714",,,,,,,,,,,,,,,,,,"223531059","7326634044","522110","CENTRAL JERSEY BANK, NA",,"1903 HIGHWAY 35",,"OAKHURST","NJ","077552714",,,,,,,"223531059","7326634044",,,,"2011-07-11T10:07:57-0500","GAIL CORRIGAN",,,,,104,0,0,0,0,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708081040P040006998965001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"WEBB & GRAVES, P.L.L.C. PROFIT SHARING PLAN","001","2000-01-01","WEBB & GRAVES, P.L.L.C.",,,"910 N. SANDHILL BOULEVARD",,"ABERDEEN","NC","28315",,,,,,,,,,,,,,,,,,"561742899","9109449555","541110","WEBB & GRAVES, P.L.L.C.",,"910 N. SANDHILL BOULEVARD",,"ABERDEEN","NC","28315",,,,,,,"561742899","9109449555",,,,"2011-07-08T08:10:28-0500","PEGGIE BROWN","2011-07-07T08:21:29-0500","PEGGIE BROWN",,,8,9,0,1,10,0,10,9,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708081507P030089697921002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"SVLD INC. PROFIT SHARING PLAN","001","2002-01-01","STEINKE VERTAL LANGDON & DRUM, INC",,,"3511 CENTER ROAD P.O. BOX 8",,"BRUNSWICK","OH","44212",,,,,,,,,,,,,,,,,,"341312126","3302253377","541211","STEINKE VERTAL LANGDON & DRUM, INC",,"3511 CENTER ROAD P.O. BOX 8",,"BRUNSWICK","OH","44212",,,,,,,"341312126","3302253377",,,,"2011-07-08T08:58:21-0500","ROBERT E. DRUM","2011-07-08T08:58:27-0500","ROBERT E. DRUM",,,5,0,0,0,0,0,0,,,,"2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711070756P040013817538001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VERMONT COMPOSITES, INC. EMPLOYEE HEALTH AND WELFA RE PLAN","501","1996-06-04","VERMONT COMPOSITES, INC.",,,"25 PERFORMANCE DR",,"BENNINGTON","VT","052011947000",,,,,,,,,,,,,,,,,,"030350854","8024429964","339900","VERMONT COMPOSITES, INC.",,"25 PERFORMANCE DR",,"BENNINGTON","VT","052011947000",,,,,,,"030350854","8024429964",,,,"2011-07-11T08:07:37-0500","MICHAEL BARRIERE",,,,,150,150,2,2,154,,154,,,,,"4A4B4D4F4H","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708083248P030089705009001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DODGE COMPANY GROUP INSURANCE PLAN FOR EMPLOYEES","501","1973-01-01","THE DODGE COMPANY, INC.",,,"165 CAMBRIDGE PARK DRIVE,",,"CAMBRIDGE","MA","021400000000",,,,,,,,,,,,,,,,,,"041250520","6176610500","325900","THE DODGE COMPANY, INC.",,"165 CAMBRIDGE PARK DRIVE,",,"CAMBRIDGE","MA","021400000000",,,,,,,"041250520","6176610500",,,,"2011-07-08T09:32:35-0500","KATHY WATKINS",,,,,123,113,5,4,122,,122,,,,,"4A4B4D4H","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708151650P030089921921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WESTERN AR COUNS & GUID CTR 401(K) PLAN","002","1997-01-01","WESTERN AR COUNSELING & GUIDANCE CENTER",,,"P O BOX 11818",,"FORT SMITH","AR","729171818",,,,,,,"3111 SOUTH 70TH STREET",,"FORT SMITH","AR","72903",,,,,,,"237015826","4794526650","621410","WESTERN AR COUNSELING & GUIDANCE CENTER",,"P O BOX 11818",,"FORT SMITH","AR","729171818",,,,,,,"237015826","4794526650",,,,"2011-07-08T15:16:43-0500","GARRETT LUEDLOFF","2011-07-08T15:16:43-0500","GARRETT LUEDLOFF",,,176,159,0,7,166,0,166,18,8,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711113545P030091522001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COTRELL FUNERAL SERVICE 401(K) PLAN","001","2007-05-01","R & L SCHULZ LLC DBA COTRELL FUNERAL SERVICE",,,"701 VINE ST",,"POPLAR BLUFF","MO","63901",,,,,,,,,,,,,,,,,,"204969721","5737858484","812990","R & L SCHULZ LLC DBA COTRELL FUNERAL SERVICE",,"701 VINE ST",,"POPLAR BLUFF","MO","63901",,,,,,,"204969721","5737858484",,,,"2011-07-11T11:34:44-0500","LORRIE SCHULZ",,,,,8,8,0,0,8,0,8,8,0,,"2F2G2J3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708104525P030422550912001","2009-10-01","2010-09-30","4","C","0","0","0","0","0","0","0","0","0",,"COMMINGLED PENSION TRUST FUND (SMARTRETIREMENT PASSIVE BLEND INCOME) OF JPMORGAN CHASE BANK, N.A.","001",,"JPMORGAN CHASE BANK, N.A.",,,"270 PARK AVENUE","6TH FLOOR","NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"261164871","2126482532",,"JPMORGAN CHASE BANK, N.A.",,"270 PARK AVENUE","6TH FLOOR","NEW YORK","NY","10017",,,,,,,"261164871","2126482532",,,,,,,,"2011-07-08T10:45:06-0500","LAURA S. MELMAN",0,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-07-08",,"Filed with authorized/valid electronic signature", "20110708120008P040092419873003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RINGMASTER JEWELERS, INC. 401(K) PLAN","001","1983-01-01","RINGMASTER JEWELERS, INC.",,,"101 REYNOLDA VILLAGE",,"WINSTON-SALEM","NC","27106",,,,,,,,,,,,,,,,,,"561277521","3367222218","448310","RINGMASTER JEWELERS, INC.",,"101 REYNOLDA VILLAGE",,"WINSTON-SALEM","NC","27106",,,,,,,"561277521","3367222218",,,,"2011-07-08T11:53:20-0500","MICHAEL D. SCOTT",,,,,7,4,0,0,4,0,4,7,,,"2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708195317P040013626290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RETECH SYSTEMS, LLC HEALTH AND WELFARE PLAN","501","2009-01-01","RETECH SYSTEMS, LLC",,,"100 HENRY STATION ROAD",,"UKIAH","CA","95482",,,,,,,,,,,,,,,,,,"680463728","7074672999","332900","RETECH SYSTEMS, LLC",,"100 HENRY STATION ROAD",,"UKIAH","CA","95482",,,,,,,"680463728","7074672999",,,,"2011-07-08T19:52:46-0500","DUANE DIX",,,,,101,98,0,0,98,,,,,,,"4A4B4D4E4H4L4Q4R","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708164234P040419423376001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANK OF HAWAII RETIREMENT SAVINGS PLAN","002","1962-01-01","BANK OF HAWAII",,"HUMAN RESOURCES - BENEFITS","130 MERCHANT ST",,"HONOLULU","HI","968134405",,,,,,,,,,,,,,,,,,"990033900","8886433888","522110","BANK OF HAWAII","HUMAN RESOURCES - BENEFITS","130 MERCHANT ST",,"HONOLULU","HI","968134405",,,,,,,"990033900","8886433888",,,,"2011-07-08T16:36:58-0500","JEAN HAMAKAWA ON BEHALF OF BOH",,,,,3047,2136,8,894,3038,7,3045,3021,0,,"2E2G2J2K3H2O2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711141320P030013334450002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"OHIO ORAL & MAXILLOFACIAL SURTEONS INC PROFIT SHARING PLAN","002","1996-01-01","OHIO ORAL & MAXILLOFACIAL SURGERY ASSOCIATES, INC.",,,"P.O. BOX 37429",,"CINCINNATI","OH","45222",,,,,,,"6021 GLENMORE AVD",,"CINCINNATI","OH","45238",,,,,,,"311208880","5137612860","621210","OHIO ORAL & MAXILLOFACIAL SURGERY ASSOCIATES, INC.",,"P.O. BOX 37429",,"CINCINNATI","OH","45222",,,,,,,"311208880","5137612860",,,,"2011-05-21T10:24:34-0500","TIMOTHY SCHILLER","2011-08-21T10:24:34-0500","TIMOTHY SCHILLER",,,13,12,,2,14,,14,14,,,"2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711142732P040094298145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SARAH STADLER, MD, PLC SAFE HARBOR 401(K) PROFIT-SHARING PLAN","001","2007-01-01","SARAH STADLER, MD PLC",,,"914 EAST JEFFERSON STREET","SUITE G2","CHARLOTTESVILLE","VA","22902",,,,,,,,,,,,,,,,,,"760763467","4342969600","621111","SARAH STADLER, MD PLC",,"914 EAST JEFFERSON STREET","SUITE G2","CHARLOTTESVILLE","VA","22902",,,,,,,"760763467","4342969600",,,,"2011-07-11T14:27:17-0500","SARAH STADLER",,,,,4,3,0,1,4,0,4,4,0,,"2E2G2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711142741P040094298257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEEL TRANSPORT","002","1993-01-01","STEEL TRANSPORT",,,"6701 MELTON RD.",,"GARY","IN","46403",,,,,,,"6701 MELTON RD.",,"GARY","IN","46403",,,,,,,"363074464","2199393000","484120","STEEL TRANSPORT",,"6701 MELTON RD.",,"GARY","IN","46403",,,,,,,"363074464","2199393000",,,,"2011-07-11T14:27:26-0500","KENNETH PAULAN",,,,,17,11,0,6,17,0,17,15,0,,"2F2G2J2K2T3B3D",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110708110902P040092393489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILITARY ORDER OF THE PURPLE HEART WELFARE BENEFIT PLAN","503","1992-01-01","MILITARY ORDER OF THE PURPLE HEART",,,"5413B BACKLICK ROAD",,"SPRINGFIELD","VA","221513915",,,,,,,,,,,,,,,,,,"590829647","7033542140","813000","MILITARY ORDER OF THE PURPLE HEART",,"5413B BACKLICK ROAD",,"SPRINGFIELD","VA","221513915",,,,,,,"590829647","7033542140",,,,"2011-07-08T09:14:05-0500","VINCENT CANDIDA","2011-07-08T09:14:05-0500","VINCENT CANDIDA",,,159,166,,,166,,,,,,,"4A4B4E4D4H4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708140750P030089890321001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"MADACY ENTERTAINMENT GROUP INC. 401K PLAN","001","2003-12-01","MADACY ENTERTAINMENT US, INC.",,,"150 JFK PARKWAY","SUITE 100","SHORT HILLS","NJ","07078",,,,,,,"150 JFK PARKWAY","SUITE 100","SHORT HILLS","NJ","07078",,,,,,,"392077275","9738475906","423990","MADACY ENTERTAINMENT US, INC.",,"150 JFK PARKWAY","SUITE 100","SHORT HILLS","NJ","07078",,,,,,,"392077275","9738475906","MADACY ENTERTAINMENT GROUP INC.","810601078","001","2011-07-08T14:05:41-0500","HARRIS STERLING",,,,,6,7,0,3,10,0,10,8,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708141948P030089896449001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JAMES R. MORAN, D.D.S., INC. PROFIT SHARING PLAN & TRUST","002","1983-06-30","JAMES R. MORAN, D.D.S., INC.",,,"1725 CIMARRON TRAIL",,"HURST","TX","76054",,,,,,,,,,,,,,,,,,"751827349","8172823100","621210","JAMES R. MORAN, D.D.S., INC.",,"1725 CIMARRON TRAIL",,"HURST","TX","76054",,,,,,,"751827349","8172823100",,,,"2011-07-08T14:19:38-0500","JAMES R. MORAN, D.D.S.",,,,,9,8,0,1,9,0,9,9,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708182417P040092610593001","2010-01-01","2010-09-30","2",,"0","1","1","1","0","0","0","0","0",,"VIGNETTE CORPORATION 401(K) PLAN","001","1997-01-01","OPEN TEXT, INC.",,,,,,,,"275 FRANK TOMPA DRIVE",,"WATERLOO","ON","CA","N2L0A1",,,,,,,,,,,,"742769415","8663856847","541519","OPEN TEXT, INC.",,,,,,,"275 FRANK TOMPA DRIVE",,"WATERLOO","ON","CA","N2L0A1","742769415","8663856847",,,,"2011-03-23T14:11:37-0500","PAMELA MCMEEKIN","2011-03-23T14:10:26-0500","PAMELA MCMEEKIN",,,597,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708173100P040013616690001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CAMPBELL CLINIC CAFETERIA PLAN","505","1994-07-01","CAMPBELL CLINIC, P.C. HUMAN RESOURCES DEPT.",,,"1400 SOUTH GERMANTOWN ROAD",,"GERMANTOWN","TN","381382205",,,,,,,,,,,,,,,,,,"620811256","9017593105","621111","CAMPBELL CLINIC, P.C. HUMAN RESOURCES DEPT.",,"1400 SOUTH GERMANTOWN ROAD",,"GERMANTOWN","TN","381382205",,,,,,,"620811256","9017593105",,,,"2011-06-16T11:20:46-0500","TRACY M. AVERY",,,,,110,112,0,0,112,,,,,,,"4Q4S",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711081403P030430024288001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KERN ROAD VETERINARY CLINIC, P.C. PROFIT SHARING PLAN","002","1978-09-01","KERN ROAD VETERINARY CLINIC, P.C.",,,"105 FOWLERVILLE ROAD",,"FOWLERVILLE","MI","488368934",,,,,,,,,,,,,,,,,,"382220248","5172239618","541940","KERN ROAD VETERINARY CLINIC, P.C.",,"105 FOWLERVILLE ROAD",,"FOWLERVILLE","MI","488368934",,,,,,,"382220248","5172239618",,,,"2011-07-11T08:01:48-0500","PERRY RAGON",,,,,20,12,7,0,19,0,19,19,0,,"2A2E2F2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711081508P030091427425007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"OZARK OB-GYN LLC 401K PROFIT SHARING PLAN","001","2008-01-01","OZARK OB-GYN, LLC",,,"225 PHYSICIANS PARK DRIVE SUITE 300",,"POPLAR BLUFF","MO","63901",,,,,,,,,,,,,,,,,,"134225556","5737780313","621111","OZARK OB-GYN, LLC",,"225 PHYSICIANS PARK DRIVE SUITE 300",,"POPLAR BLUFF","MO","63901",,,,,,,"134225556","5737780313",,,,"2011-07-06T15:59:25-0500","DONALD JONES","2011-07-06T15:59:30-0500","DONALD JONES",,,6,6,0,0,6,0,6,6,,,"2E2F2G2J2K2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708093032P040092344961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STELLAR DEVELOPMENT INC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","STELLAR DEVELOPMENT INC",,,"DBA STELLAR DEVELOPMENT","9021 TOWN CENTER PARKWAY","BRADENTON","FL","34202",,,,,,,,,,,,,,,,,,"651032975","9419078788","236200","STELLAR DEVELOPMENT INC",,"DBA STELLAR DEVELOPMENT","9021 TOWN CENTER PARKWAY","BRADENTON","FL","34202",,,,,,,"651032975","9419078788",,,,"2011-07-08T09:30:28-0500","STELLAR DEVELOPMENT INC",,,,,0,3,0,0,3,0,3,1,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708094619P030013060674005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STAN BAZAN & COMPANY PROFIT SHARING PLAN","001","1992-01-01","STAN BAZAN & COMPANY",,,"4807 ROCKSIDE ROAD, SUITE 620",,"INDEPENDENCE","OH","441312160",,,,,,,"4807 ROCKSIDE ROAD,SUITE 620",,"INDEPENDENCE","OH","441312160",,,,,,,"341653424","2163287800","541213","STAN BAZAN & COMPANY",,"4807 ROCKSIDE ROAD, SUITE 620",,"INDEPENDENCE","OH","441312160",,,,,,,"341653424","2163287800",,,,"2011-07-08T04:58:52-0500","STACEY GARDELLA","2011-07-08T04:58:52-0500","STACEY GARDELLA",,,3,4,,,4,,4,4,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708145912P040092511617001","2001-01-01","2001-12-31","2",,"0","0","0","0","0","0","0","1","0",,"MARIST COLLEGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1958-07-28","MARIST COLLEGE",,,"3399 NORTH ROAD",,"POUGHKEEPSIE","NY","12601",,,,,,,,,,,,,,,,,,"141442493","8455753000","611000","MARIST COLLEGE",,"3399 NORTH ROAD",,"POUGHKEEPSIE","NY","12601",,,,,,,"141442493","8455753000",,,,"2011-07-08T14:58:56-0500","MICHAEL SILVESTRO",,,,,,,,,,,,,,,"2L2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708165819P030089976449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TIP TOP POULTRY, INC. 401(K) PROFIT SHARING PLAN","003","1993-01-01","TIP TOP POULTRY, INC.",,,"327 WALLACE ROAD",,"MARIETTA","GA","30062",,,,,,,,,,,,,,,,,,"580702072","7709738070","311610","TIP TOP POULTRY, INC.",,"327 WALLACE ROAD",,"MARIETTA","GA","30062",,,,,,,"580702072","7709738070",,,,"2011-07-08T15:30:06-0500","DAVID AUSTIN","2011-07-08T15:30:06-0500","DAVID AUSTIN",,,966,802,0,85,887,0,887,292,6,,"2E2G2J2K2T3D",,"1",,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708165953P040092569649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RUSTY ROUSH CPA, P.C. SAFE HARBOR 401(K) PLAN","001","2003-01-01","RUSTY ROUSH CPA, P.C.",,,"2700 SOUTH WESTERN, SUITE 100",,"AMARILLO","TX","79109",,,,,,,,,,,,,,,,,,"752956891","8063582206","541211","RUSTY ROUSH CPA, P.C.",,"2700 SOUTH WESTERN, SUITE 100",,"AMARILLO","TX","79109",,,,,,,"752956891","8063582206",,,,"2011-07-08T16:58:03-0500","RUSTY ROUSH",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110707192243P040416992400001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHNSON BOTTINI, LLP PROFIT SHARING PLAN","001","2008-01-01","JOHNSON BOTTINI, LLP",,,"501 W BROADWAY STE 1720",,"SAN DIEGO","CA","92101",,,,,,,,,,,,,,,,,,"640949367","6192300063","541110","JOHNSON BOTTINI, LLP",,"501 W BROADWAY STE 1720",,"SAN DIEGO","CA","92101",,,,,,,"640949367","6192300063",,,,"2011-07-07T19:22:31-0500","CECIL KINCAID",,,,,4,3,0,0,3,0,3,3,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110711135254P030013332114001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"THE POST OAK SCHOOL RETIREMENT SAVINGS PLAN","001","1985-08-01","THE POST OAK SCHOOL",,,"4600 BISSONNET STREET",,"BELLAIRE","TX","77401",,,,,,,"4600 BISSONNET STREET",,"BELLAIRE","TX","77401",,,,,,,"741486232","7136616688","611000","THE POST OAK SCHOOL",,"4600 BISSONNET STREET",,"BELLAIRE","TX","77401",,,,,,,"741486232","7136616688",,,,"2011-07-11T13:52:23-0500","ROBIN LUNSFORD",,,,,65,46,0,3,49,0,49,48,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711144059P030091620641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANGEL ELBARDISSI DENTIST SIMP PSP PROFIT SHARING PLAN","002","1995-01-01","ANGEL ELBARDISSI","ANGEL ELBARDISSI","ANGEL ELBARDISSI","210 STUMP ROAD",,"NORTH WALES","PA","194541904",,,,,,,"210 STUMP ROAD",,"NORTH WALES","PA","194541904",,,,,,,"232646258","2156999104","621210","ANGEL ELBARDISSI","ANGEL ELBARDISSI","210 STUMP ROAD",,"NORTH WALES","PA","194541904",,,,,,,"232646258","2156999104",,,,"2011-07-11T14:40:07-0500","SIDNEY SIDLOW",,,,,2,2,0,0,2,0,2,,0,,"2E2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711162841P040094353265001","2010-01-01","2010-12-31","2",,"0","0","0","0","1",,,,,,"HIGHWAY TECHNOLOGIES 401(K) INVESTMENT PLAN FOR UNION EMPLOYEES","002","2007-04-15","HIGHWAY TECHNOLOGIES, INC.",,,"880 NORTH ADDISON ROAD",,"VILLA PARK","IL","60181",,,,,,,"880 NORTH ADDISON ROAD",,"VILLA PARK","IL","60181",,,,,,,"043076608","6303680920","238900","HIGHWAY TECHNOLOGIES, INC.",,"880 NORTH ADDISON ROAD",,"VILLA PARK","IL","60181",,,,,,,"043076608","6303680920",,,,"2011-07-11T16:28:11-0500","SADIA REHMAN",,,,,41,50,0,4,54,1,55,36,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110709132952P030013158306001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERFACE SECURITY SYSTEMS HOLDINGS, INC. WELFARE BENEFIT PLAN","501","1998-01-01","INTERFACE SECURITY SYSTEMS HOLDINGS, INC.",,,"3773 CORPORATE CENTER",,"EARTH CITY","MO","63045",,,,,,,,,,,,,,,,,,"043583955","3145950100","561420","INTERFACE SECURITY SYSTEMS HOLDINGS, INC.",,"3773 CORPORATE CENTER",,"EARTH CITY","MO","63045",,,,,,,"043583955","3145950100",,,,"2011-07-05T15:48:12-0500","DONALD OBERMEYER","2011-07-05T15:48:12-0500","DONALD OBERMEYER",,,528,571,12,,583,,,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711131814P040426759328001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JENISSE LEISURE PRODUCTS INC","001","1999-01-01","JENISSE LEISURE PRODUCTS INC",,,"5 VAN DUYNE COURT",,"TOWACO","NJ","07082",,,,,,,"5 VAN DUYNE COURT",,"TOWACO","NJ","07082",,,,,,,"223203830","9733311177","238900","JENISSE LEISURE PRODUCTS INC",,"5 VAN DUYNE COURT",,"TOWACO","NJ","07082",,,,,,,"223203830","9733311177",,,,"2011-07-11T13:17:52-0500","RICHARD DEHART",,,,,5,5,0,0,5,0,5,5,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110709160223P030425796160001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NECS MONEY PURCHASE PLAN","001","1998-07-01","NECS, INC",,,"710 WEST 200 SOUTH",,"CLEARFIELD","UT","84015",,,,,,,,,,,,,,,,,,"870582896","8017763961","541600","NECS, INC",,"710 WEST 200 SOUTH",,"CLEARFIELD","UT","84015",,,,,,,"870582896","8017763961",,,,"2011-07-09T16:01:56-0500","LARRY SMITH",,,,,1,1,0,0,1,0,1,1,0,,"2C2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-09","Filed with authorized/valid electronic signature",, "20110711131854P040013847186009","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"SOUTHERN LOCK & SUPPLY PROFIT SHARING PLAN","001","1969-01-01","SOUTHERN LOCK & SUPPLY CO INC",,"MARVIN R CUTSON","P O BOX 1980",,"PINELLAS PARK","FL","337801980",,,,,,,"P O BOX 1980",,"PINELLAS PARK","FL","337801980",,,,,,,"591052659","7275415536","423700","MARVIN R CUTSON",,"P O BOX 1980",,"PINELLAS PARK","FL","337801980",,,,,,,"591052659","7275415536",,,,"2011-04-21T04:17:49-0500","MARVIN R CUTSON","2011-04-21T04:17:49-0500","MARVIN R CUTSON",,,65,50,,13,63,,63,63,8,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110711163259P040013867202001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHRIS PARKER CONSULTING 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","CHRIS PARKER CONSULTING",,,"20889 PLANETREE FOREST CT",,"STERLING","VA","20165",,,,,,,,,,,,,,,,,,"161677462","6154142845","541990","CHRIS PARKER CONSULTING",,"20889 PLANETREE FOREST CT",,"STERLING","VA","20165",,,,,,,"161677462","6154142845",,,,"2011-07-11T04:32:56-0500","CHRIS PARKER CONSULTING",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110707162614P030420535872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACROPOLIS 401(K) PLAN","001","2007-01-01","ACROPOLIS INVESTMENT MANAGEMENT, LLC",,,"14755 OUTER FORTY SUITE 100",,"ST. LOUIS","MO","63017",,,,,,,,,,,,,,,,,,"320016216","8888820072","523900","ACROPOLIS INVESTMENT MANAGEMENT, LLC",,"14755 OUTER FORTY SUITE 100",,"ST. LOUIS","MO","63017",,,,,,,"320016216","8888820072",,,,"2011-07-07T16:15:17-0500","MICHAEL LISSNER",,,,,33,25,0,7,32,0,32,32,1,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707163014P040416652592009","2010-01-01","2010-12-31","2",,,,,,"1",,,,,,"DENTAL EXPENSE PLAN","504","1973-01-01","THE AEROSPACE CORPORATION",,,"2310 EAST EL SEGUNDO BLVD M1/064",,"EL SEGUNDO","CA","90245",,,,,,,,,,,,,,,,,,"952102389","3103361107","541990","CHARLOTTE M LAZAR-MORRISON",,"2310 EAST EL SEGUNDO BLVD M1/022",,"EL SEGUNDO","CA","90245",,,,,,,"954660250","3103366728",,,,"2011-07-06T17:35:10-0500","CHARLOTTE M LAZAR-MORRISON","2011-07-06T17:24:41-0500","DALE E WALLIS",,,3716,3636,42,,3678,,3678,,,,,"4D","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707142029P030089251841001","2008-10-01","2009-09-30","2",,"0","1","0","0","0","0","0","0","0",,"TRAYER ENGINEERING CORPORATION PROFIT SHARING PLAN","001","1976-08-01","TRAYER ENGINEERING CORPORATION",,,"898 PENNSYLVANIA AVENUE",,"SAN FRANCISCO","CA","941073441",,,,,,,,,,,,,,,,,,"941551110","4152857770","541330","TRAYER ENGINEERING CORPORATION",,"898 PENNSYLVANIA AVENUE",,"SAN FRANCISCO","CA","941073441",,,,,,,"941551110","4152857770",,,,"2011-07-07T14:20:28-0500","BERTIL BERGSTROM",,,,,18,13,0,4,17,0,17,17,0,,"2E",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110711172000P030091706817010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE LEMELSON FOUNDATION 403(B)(7) PLAN","001","2002-01-01","THE LEMELSON FOUNDATION",,,"45 SW ANKENY STREET, SUITE 200",,"PORTLAND","OR","97204",,,,,,,,,,,,,,,,,,"880391959","5032222924","813000","THE LEMELSON FOUNDATION",,"45 SW ANKENY STREET, SUITE 200",,"PORTLAND","OR","97204",,,,,,,"880391959","5032222924",,,,"2011-07-11T09:04:20-0500","PHILIP VARNUM",,,,,11,11,,2,13,,13,13,,,"2L2M",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711153140P040013860978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE, HEALTH AND DENTAL PLAN FOR ALL SALARIED EMPLOYEES OF KAJIMA","501","1975-01-01","KAJIMA U.S.A. INC.",,,"3475 PIEDMONT ROAD, NE","SUITE 1600","ATLANTA","GA","30305",,,,,,,,,,,,,,,,,,"133381982","4045643900","236200","KAJIMA U.S.A. INC.",,"3475 PIEDMONT ROAD, NE","SUITE 1600","ATLANTA","GA","30305",,,,,,,"133381982","4045643900",,,,"2011-07-11T15:31:31-0500","SHOHEI GONDA",,,,,849,765,22,0,787,,,,,,,"4A4B4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110707203456P030013017506001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SPECTRUM HUMAN RESOURCE SYSTEMS CORPORATION LTD PLAN","504","1994-01-01","SPECTRUM HUMAN RESOURCE SYSTEMS CORPORATION",,,"707 SEVENTEENTH STREET, SUITE 3800",,"DENVER","CO","80202",,,,,,,,,,,,,,,,,,"840955532","3035923200","511210","SPECTRUM HUMAN RESOURCE SYSTEMS CORPORATION",,"707 SEVENTEENTH STREET, SUITE 3800",,"DENVER","CO","80202",,,,,,,"840955532","3035923200",,,,"2011-07-07T20:34:50-0500","CHRISTINA SCOTT",,,,,111,0,0,0,0,,,,,,,"4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110711172506P030091708369001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"MITCHUM SECURITIES, INC. PROFIT SHARING PLAN","002","1978-01-01","MITCHUM SECURITES, INC",,,"355 S. GRAND AVENUE, 34TH FLOOR",,"LOS ANGELES","CA","90071",,,,,,,,,,,,,,,,,,"952784037","2136839574","523900","MITCHUM SECURITES, INC",,"355 S. GRAND AVENUE, 34TH FLOOR",,"LOS ANGELES","CA","90071",,,,,,,"952784037","2136839574",,,,"2011-07-05T19:33:03-0500","J.P.GUERIN",,,,,2,2,,,2,,2,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711160152P030091665313001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SUPERIOR AUTOMOTIVE & AFFILIATES 401(K) PLAN","004","2008-01-01","SUPERIOR AUTOMOTIVE WAREHOUSE",,,"22 PRATT STREET",,"BOSTON","MA","02134",,,,,,,"22 PRATT STREET",,"BOSTON","MA","02134",,,,,,,"042020346","6177839100","423100","SUPERIOR AUTOMOTIVE WAREHOUSE",,"22 PRATT STREET",,"BOSTON","MA","02134",,,,,,,"042020346","6177839100",,,,"2011-07-11T16:01:00-0500","MICHAEL OSHRY",,,,,33,25,0,1,26,0,26,20,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110707170821P040013528066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MINNEAPOLIS YWCA HEALTH & DENTAL PLAN","504","1996-01-01","YWCA OF MINNEAPOLIS",,,"1130 NICOLLET MALL",,"MINNEAPOLIS","MN","55403",,,,,,,,,,,,,,,,,,"410693891","6123320501","813000","YWCA OF MINNEAPOLIS",,"1130 NICOLLET MALL",,"MINNEAPOLIS","MN","55403",,,,,,,"410693891","6123320501",,,,"2011-07-07T16:46:19-0500","KATHRYN PURCELL",,,,,165,164,0,0,164,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707143849P040091887521001","2010-04-01","2011-03-31","2",,"0",,"0","0","0","0","0","0","0",,"MARKEY'S/TRUSTMARK HEALTH PLAN JL203","502","1993-04-01","MARKEY'S AUDIO VISUAL INC","MARKEY'S RENTAL & STAGING","GREGORY V STEEB","2365 ENTERPRISE PARK PL",,"INDIANAPOLIS","IN","462184290",,,,,,,"2365 ENTERPRISE PARK PL",,"INDIANAPOLIS","IN","462184290",,,,,,,"351467871","3177831155","541990","MARKEY'S AUDIO VISUAL INC","GREGORY V STEEB","2365 ENTERPRISE PARK PL",,"INDIANAPOLIS","IN","462184290",,,,,,,"351467871","3177831155",,,,"2011-07-07T14:38:09-0500","GREGORY STEEB",,,,,130,128,1,,129,,129,,,,,"4A4B4F",,,,"1","1",,,"1",,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707143853P030420291440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MWD CONSULTING, INC. 401K PROFIT SHARING PLAN","001","2006-01-01","MWD CONSULTING, INC.",,,"300 W. WILSON BRIDGE RD. SUITE 300",,"WORTHINGTON","OH","430852299",,,,,,,,,,,,,,,,,,"340141161","6144314331","523900","MWD CONSULTING, INC.",,"300 W. WILSON BRIDGE RD. SUITE 300",,"WORTHINGTON","OH","430852299",,,,,,,"340141161","6144314331",,,,"2011-07-07T14:38:52-0500","MARK W. DUNCAN",,,,,36,35,0,14,49,0,49,36,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110711134657P040426836224001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"SHUTLER CONSULTING ENGINEERS, INC. 401(K) PLAN","001","1989-01-01","SHUTLER CONSULTING ENGINEERS INC",,,"12503 BEL RED RD","STE 100","BELLEVUE","WA","98005",,,,,,,"12503 BEL RED RD","STE 100","BELLEVUE","WA","98005",,,,,,,"911555053","4254504075","541330","SHUTLER CONSULTING ENGINEERS INC",,"12503 BEL RED RD","STE 100","BELLEVUE","WA","98005",,,,,,,"911555053","4254504075",,,,"2011-07-11T13:46:25-0500","REBECCA SHUTLER",,,,,10,8,0,2,10,0,10,10,0,,"2E2F2G2J2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711160815P030091668193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIELD ASSETS HEALTH AND WELFARE PLAN","501","2005-12-01","FIELD ASSET SERVICES",,,"101 W. LOUIS HENNA BLVD., STE. 400",,"AUSTIN","TX","78728",,,,,,,,,,,,,,,,,,"742860973","5124671537","531310","FIELD ASSET SERVICES",,"101 W. LOUIS HENNA BLVD., STE. 400",,"AUSTIN","TX","78728",,,,,,,"742860973","5124671537",,,,"2011-07-11T16:02:22-0500","GREG TOLANDER",,,,,425,460,0,0,460,,,,,,,"4A4B4D4H4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711153951P040013861586001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THORNCREEK COSMETIC DENTISTRY 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","THORNCREEK COSMETIC DENTISTRY",,,"12960 VERBENA COURT",,"THORNTON","CO","80602",,,,,,,,,,,,,,,,,,"721522510","3039204199","621210","THORNCREEK COSMETIC DENTISTRY",,"12960 VERBENA COURT",,"THORNTON","CO","80602",,,,,,,"721522510","3039204199","THORNCREEK COSMETIC DENTISTRY",,,"2011-07-11T03:39:48-0500","THORNCREEK COSMETIC DENTISTRY",,,,,10,8,0,0,8,0,8,8,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110707155321P040091920497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENNIS PAINT INC EMPLOYEE GROUP PLAN","501","2007-07-01","ENNIS PAINT INC","ENNIS TRAFFIC SAFETY SOLUTIONS",,"5910 N. CENTRAL EXPRESSWAY",,"DALLAS","TX","752065145",,,,,,,,,,,,,,,,,,"752657523","2148747200","325500","ENNIS PAINT INC",,"5910 N. CENTRAL EXPRESSWAY",,"DALLAS","TX","752065145",,,,,,,"752657523","2148747200",,,,"2011-07-07T15:53:09-0500","SUE FOSTER",,,,,587,587,0,0,587,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707142304P030002626435001","2010-02-01","2011-01-31","2",,,,,,,,,,,,"BLUM, SHAPIRO & CO., P.C. EMPLOYEE BENEFITS PLAN","503","1980-01-01","BLUM, SHAPIRO & CO., P.C.",,"MS. DONNA GILIBERTO","P.O. BOX 272000","29 SOUTH MAIN STREET","WEST HARTFORD","CT","061272000",,,,,,,,,,,,,,,,,,"061009205","8605614000","541211","BLUM, SHAPIRO & CO., P.C.","MS. DONNA GILIBERTO","P.O. BOX 272000","29 SOUTH MAIN STREET","WEST HARTFORD","CT","061272000",,,,,,,"061009205","8605614000",,,,"2011-07-07T06:24:51-0500","FREDERICK KAPLAN",,,,,222,274,20,,294,,,,,,,"4A4B4D4H4Q","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707172321P030089352209001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"ABC CONSTRUCTION CO., INC. PROFIT SHARING PLAN","001","1972-09-02","ABC CONSTRUCTION COMPANY, INC.",,,"3120 NATIONAL AVENUE",,"SAN DIEGO","CA","92113",,,,,,,,,,,,,,,,,,"952549063","6192393428","238900","PATTY MAXWELL",,"3120 NATIONAL AVENUE",,"SAN DIEGO","CA","92113",,,,,,,"952549063","6192393428",,,,"2011-07-07T16:24:25-0500","PATRICIA MAXWELL","2011-07-07T16:12:03-0500","KENNETH CZUBERNAT",,,18,13,0,1,14,1,15,15,1,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707174522P030089358945001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BALTIC AVENUE ENTERPRISES LLC 401(K) PROFIT SHARING PLAN","001","2001-01-01","BALTIC AVENUE ENTERPRISES LLC",,,"7451 PLEASANT VIEW DR",,"LISBON","OH","44432",,,,,,,,,,,,,,,,,,"341903955","3304243721","623000","BALTIC AVENUE ENTERPRISES LLC",,"7451 PLEASANT VIEW DR",,"LISBON","OH","44432",,,,,,,"341903955","3304243721",,,,"2011-07-07T17:45:21-0500","CHARLES DURKOT, EA","2011-07-07T17:45:21-0500","CHARLES DURKOT, EA",,,52,30,0,4,34,0,34,25,0,,"2E2F2G2J2K3D",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711164702P040013868002001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"JONATHAN'S LANDING GOLF CLUB, INC. 401(K) RETIREMENT PLAN","001","1999-01-01","JONATHANS LANDING GOLF CLUB, INC.",,,"185 E INDIANTOWN RD STE 128",,"JUPITER","FL","334775072",,,,,,,,,,,,,,,,,,"592580014","5617458772","531190","JONATHANS LANDING GOLF CLUB, INC.",,"185 E INDIANTOWN RD STE 128",,"JUPITER","FL","334775072",,,,,,,"592580014","5617458772",,,,"2011-07-11T16:46:57-0500","THERESA PAPAGEORGE","2011-07-11T16:46:57-0500","THERESA PAPAGEORGE",,,126,125,0,1,126,0,126,77,12,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707173633P030013005618001","2010-01-01","2010-12-23","2",,"0","0","1","1","0","1","0","0","0",,"LEVEL 5 COMMUNICATIONS, INC. 401(K) PLAN","001","1987-01-01","LEVEL 5 COMMUNICATIONS, INC.",,,"P.O.BOX 1039",,"DUBLIN","NH","03444",,,,,,,"1283 D MAIN STREET",,"DUBLIN","NH","03444",,,,,,,"020347095","2167512998","511120","THOMAS CONLON",,"1283 D MAIN STREET",,"DUBLIN","NH","03444",,,,,,,"020347095","2167512998",,,,"2011-07-07T17:36:10-0500","TOM CONLON",,,,,8,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110711154508P040013862386005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PEDIATRIC OPHTHALMOLOGY ASSOCIATES PROFIT SHARING PLAN","002","1992-07-01","PEDIATRIC OPHTHALMOLOGY ASSOC PC",,,"515 NORTH 98TH STREET",,"OMAHA","NE","68114",,,,,,,,,,,,,,,,,,"470536351","4023999400","621320","PEDIATRIC OPHTHALMOLOGY ASSOC PC",,"515 NORTH 98TH STREET",,"OMAHA","NE","68114",,,,,,,"470536351","4023999400",,,,"2011-05-27T11:09:49-0500","ROBERT N. TROIA, MD","2011-05-27T11:09:58-0500","ROBERT N. TROIA, MD",,,11,12,0,1,13,0,13,13,2,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707181806P030089372897001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ASSURANCE ONE OF TEXAS 401K PLAN","001","2004-01-01","ASSURANCE ONE OF TEXAS, LLC",,,"11767 KATY FREEWAY","SUITE 930","HOUSTON","TX","77079",,,,,,,"11767 KATY FREEWAY","SUITE 930","HOUSTON","TX","77079",,,,,,,"760689536","2815969200","524210","ASSURANCE ONE OF TEXAS, LLC",,"11767 KATY FREEWAY","SUITE 930","HOUSTON","TX","77079",,,,,,,"760689536","2815969200",,,,"2011-07-07T18:17:39-0500","TERI ERWIN",,,,,13,14,0,1,15,0,15,14,0,,"2A2E2F2G2J2K2T3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110711145550P030091630929001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"RHG INC - PROFIT SHARING KEOGH PLAN TRUST","002","1999-01-01","RHG INC.",,"LISA WANG","100 RIVERSIDE BOULEVARD #10H",,"NEW YORK","NY","10069",,,,,,,"34 EAST 29TH STREET 4TH FLOOR",,"NEW YORK","NY","10016",,,,,,,"133801354","2125995080","541600","RHG INC.","LISA WANG","100 RIVERSIDE BOULEVARD #10H",,"NEW YORK","NY","10069",,,,,,,"134138862","9173343939",,,,"2011-07-11T14:53:15-0500","LISA WANG",,,,,2,2,0,0,2,0,2,2,0,,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711145722P040094312017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARRY J SHLEIFER DDS PROFIT SHARING PLAN","001","1991-01-01","HARRY J SHLEIFER DDS","HARRY J SHLEIFER DDS",,"1003 BROADWAY",,"BETHLEHEM","PA","18015",,,,,,,"1003 BROADWAY",,"BETHLEHEM","PA","18015",,,,,,,"232424743","6106913311","621210","HARRY J SHLEIFER DDS",,"1003 BROADWAY",,"BETHLEHEM","PA","18015",,,,,,,"232424743","6106913311",,,,"2011-07-11T14:56:55-0500","HARRY SHLEIFER",,,,,1,1,0,0,1,0,1,1,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711162050P040427215936001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WHALE CORPORATION 401(K) PROFIT SHARING PLAN & TRU","001","1997-01-01","WHALE CORPORATION",,,"1895 CHATTAHOOCHEE RUN DRIVE",,"SUWANEE","GA","30024",,,,,,,,,,,,,,,,,,"383320969","6784822116","541511","WHALE CORPORATION",,"1895 CHATTAHOOCHEE RUN DRIVE",,"SUWANEE","GA","30024",,,,,,,"383320969","6784822116",,,,"2011-07-11T16:20:40-0500","SUNDARI BALAKRISHNAN",,,,,22,6,0,16,22,0,22,20,0,,"2E2F2G2J3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711170108P040427296064005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AGUSTIN G GARCIA PC PROFIT SHARING PLAN","001","1983-01-01","AGUSTIN G GARCIA, P C",,,"53 WEST JACKSON BLVD STE 730",,"CHICAGO","IL","606043606",,,,,,,,,,,,,,,,,,"363492482","3129860066","541110","AGUSTIN G GARCIA",,"53 WEST JACKSON BLVD STE 730",,"CHICAGO","IL","60604",,,,,,,"363492482","3129860066",,,,"2011-07-11T16:52:06-0500","AGUSTIN G GARCIA",,,,,2,2,,,2,,2,2,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,"1",,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110707130114P040091839953001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALCO PLASTICS, INC. EMPLOYEE BENEFIT PLAN","501","1993-10-01","ALCO PLASTICS, INC.",,,"160 EAST POND DR.",,"ROMEO","MI","480654902",,,,,,,,,,,,,,,,,,"382143768","5867524527","326100","ALCO PLASTICS, INC.",,"160 EAST POND DR.",,"ROMEO","MI","480654902",,,,,,,"382143768","5867524527",,,,"2011-07-07T08:40:49-0500","DANIEL J CONWAY",,,,,104,129,,,129,,,,,,,"4A4B4D4F4H4L4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707134146P030420163968001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"YUNG-TA HUANG, D.D.S., INC. DEFINED BENEFIT PENSION PLAN","001","2006-01-01","YUNG-TA HUANG, D.D.S., INC.",,,"9955 LOWER AZUSA RD. #201",,"TEMPLE CITY","CA","91780",,,,,,,,,,,,,,,,,,"954617516","6262582999","621210","YUNG-TA HUANG, D.D.S., INC.",,"9955 LOWER AZUSA RD. #201",,"TEMPLE CITY","CA","91780",,,,,,,"954617516","6262582999",,,,"2011-07-07T13:41:09-0500","YUNG TA HUANG",,,,,3,3,0,0,3,0,3,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707135111P030420183824001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TECORE 401(K) SAVINGS PLAN","001","1994-04-01","TECORE, INC.",,,"7061 COLUMBIA GATEWAY DR",,"COLUMBIA","MD","21046",,,,,,,,,,,,,,,,,,"752424245","4108726299","517000","TECORE, INC.",,"7061 COLUMBIA GATEWAY DR",,"COLUMBIA","MD","21046",,,,,,,"752424245","4108726299",,,,"2011-07-07T13:50:58-0500","JAY SALKINI","2011-07-07T13:50:58-0500","JAY SALKINI",,,113,61,0,39,100,0,100,90,7,,"2E2F2G2J2K3D3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713144844P040029889015001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ENTEGRIS, INC. SHORT TERM DISABILITY PLAN","504","1982-10-01","ENTEGRIS, INC.",,,"3500 LYMAN BLVD.",,"CHASKA","MN","55318",,,,,,,,,,,,,,,,,,"411941551","9525563131","326100","ENTEGRIS, INC.",,"3500 LYMAN BLVD.",,"CHASKA","MN","55318",,,,,,,"411941551","9525563131",,,,"2011-07-13T14:20:01-0500","LORI KOTARS",,,,,1276,1253,0,0,1253,,,,,,,"4F4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713163147P040432923760001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CITY STATE BANK PROFIT SHARING PLAN","003","1990-01-01","CITY STATE BANK",,,"59 FOURTH STREET NORTH",,"CENTRAL CITY","IA","52214",,,,,,,"59 FOURTH STREET NORTH",,"CENTRAL CITY","IA","52214",,,,,,,"420638374","3194386621","522110","CITY STATE BANK",,"59 FOURTH STREET NORTH",,"CENTRAL CITY","IA","52214",,,,,,,"420638374","3194386621",,,,"2011-07-13T16:30:55-0500","JOHN WATERS",,,,,39,37,1,5,43,0,43,40,3,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714095731P030438934512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOLLIDAY FENOGLIO FOWLER, L.P. WELFARE BENEFITS PLAN","501","2003-06-15","HOLLIDAY FENOGLIO FOWLER, L.P.",,,"8401 N. CENTRAL EXPRESSWAY,","SUITE 700","DALLAS","TX","75225",,,,,,,,,,,,,,,,,,"752858031","7138523526","522292","HOLLIDAY FENOGLIO FOWLER, L.P.",,"8401 N. CENTRAL EXPRESSWAY,","SUITE 700","DALLAS","TX","75225",,,,,,,"752858031","7138523526",,,,"2011-07-14T09:57:22-0500","NANCY GOODSON",,,,,409,419,20,6,445,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714110519P040435017920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAVENDER DENTAL PLAN","503","1989-07-01","CAVENDER OLDSMOBILE COMPANY",,,"P.O. BOX 681237",,"SAN ANTONIO","TX","78268",,,,,,,"5772 NW LOOP 410",,"SAN ANTONIO","TX","78238",,,,,,,"741619391","2105215200","441110","CAVENDER OLDSMOBILE COMPANY",,"P.O. BOX 681237",,"SAN ANTONIO","TX","78268",,,,,,,"741619391","2105215200",,,,"2011-07-14T11:04:53-0500","JON SMITH",,,,,142,143,,,143,,143,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713134733P040014042946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOSPITAL SURGICAL & ACCIDENT PLAN","502","1964-09-01","FRENKEL & CO., INC.",,,"350 HUDSON STREET",,"NEW YORK","NY","10014",,,,,,,,,,,,,,,,,,"135089030","2124880200","524210","FRENKEL & CO., INC.",,"350 HUDSON STREET",,"NEW YORK","NY","10014",,,,,,,"135089030","2124880200",,,,"2011-07-13T13:47:20-0500","ADAM GLICK",,,,,221,215,0,0,215,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713134742P040095472209001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","0","0","0","0",,"INDIANA STATE COUNCIL OF PLASTERERS & CEMENT MASONS PENSION FUND","001","1963-05-01","BOARD OF TRUSTEES, ISC PLASTERERS & CEMENT MASONS PENSION FUND",,,"P. O. BOX 50440",,"INDIANAPOLIS","IN","462500440",,,,,,,"P. O. BOX 50440",,"INDIANAPOLIS","IN","462500440",,,,,,,"356244876","3175549000","525100","BOARD OF TRUSTEES, ISC PLASTERERS & CEMENT MASONS PENSION FUND",,"P. O. BOX 50440",,"INDIANAPOLIS","IN","462500440",,,,,,,"356244876","3175549000",,,,"2011-07-13T13:47:21-0500","ANN HOWARD",,,,,4202,1319,0,2789,4108,0,4108,4108,,453,"2C",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713171620P030092984305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMERALD HAT INC. PROFIT SHARING PLAN","001","2009-05-12","EMERALD HAT INC.",,,"15400 SW BOBWHITE CIR",,"BEAVERTON","OR","97007",,,,,,,,,,,,,,,,,,"270150197","5035798858","812990","EMERALD HAT INC.",,"15400 SW BOBWHITE CIR",,"BEAVERTON","OR","97007",,,,,,,"270150197","5035798858",,,,"2011-07-13T16:49:23-0500","TAMARA HAWANA",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713174953P040095614385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C-K COMPOSITES, INC. 401K PLAN","001","1985-07-01","CK COMPOSITES, INC.",,,"ATTN RUTH STONER","361 BRIDGEPORT RD","MT PLEASANT","PA","15666",,,,,,,,,,,,,,,,,,"251488077","7245474581","339900","CK COMPOSITES, INC.",,"ATTN RUTH STONER","361 BRIDGEPORT RD","MT PLEASANT","PA","15666",,,,,,,"251488077","7245474581",,,,"2011-07-13T17:48:44-0500","RUTH STONER",,,,,58,43,0,18,61,0,61,61,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714131926P030093498833005","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"DAKOTAS AREAWIDE IBEW-NECA VACATION & HOLIDAY PLAN","507","1978-01-01","DAKOTAS AREAWIDE IBEW-NECA VACATION & HOLIDAY PLAN",,,"2901 1ST AVENUE NORTH",,"FARGO","ND","58102",,,,,,,,,,,,,,,,,,"450344738","7012931300","238210","NORIDIAN MUTUAL INSURANCE COMPANY DBA NORIDIAN BENEFIT PLAN","ADMINISTRATORS","4510 13TH AVENUE SW",,"FARGO","ND","581210001",,,,,,,"450173185","7012374787",,,,"2011-07-14T05:43:25-0500","SANDRA HANNESTAD",,,,,1468,1392,,,1392,,,,,114,,"4Q",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713133542P040095459937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STONE & SUTTON , P.A. 401K PLAN","001","1997-01-01","STONE & SUTTON, P.A.",,,"116 E. 4TH STREET",,"PANAMA CITY","FL","32401",,,,,,,,,,,,,,,,,,"592594888","8507857272","541110","STONE & SUTTON, P.A.",,"116 E. 4TH STREET",,"PANAMA CITY","FL","32401",,,,,,,"592594888","8507857272",,,,"2011-07-13T13:35:36-0500","PAMELA DRU SUTTON","2011-07-13T13:35:36-0500","PAMELA DRU SUTTON",,,4,3,0,1,4,0,4,4,0,,"2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713141646P040095491313008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STRADER & ASSOCIATES MONEY PURCHASE PLAN","002","1999-01-01","STRADER & ASSOCIATES MONEY PURCHASE PLAN","STRADER & ASSOCIATES MONEY PURCHASE","PATRICIA L STRADER","PATRICIA L STRADER",,"JEFFERSON CITY","MO","65109",,,,,,,"400 SCHELLRIDGE",,"JEFFRSON CITY","MO","65109",,,,,,,"900252164","5736352164","541990","STRADER & ASSOCIATES MONEY PURCHASE PLAN","PATRICIA L STRADER","PATRICIA L STRADER",,"JEFFERSON CITY","MO","65109",,,,,,,"900252164","5736352164",,,,"2011-07-13T08:53:45-0500","PATRICIA L STRADER",,,,,1,1,,,1,,1,1,,,"2C3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713192228P030437315712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBINSON OIL EMPLOYEE BENEFIT PLAN","501","2001-01-01","ROBINSON OIL CORPORATION",,,"955 MARTIN AVENUE",,"SANTA CLARA","CA","95050",,,,,,,,,,,,,,,,,,"941730004","4083274300","447100","ROBINSON OIL CORPORATION",,"955 MARTIN AVENUE",,"SANTA CLARA","CA","95050",,,,,,,"941730004","4083274300",,,,"2011-07-13T19:22:19-0500","STEPHEN WHITE",,,,,192,184,0,0,184,,,,,,,"4A4B4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714075011P040014112290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEST MICHIGAN ENDODONTISTS PC PROFIT SHARING & 401(K) PLAN","001","1974-01-01","WEST MICHIGAN ENDODONTISTS PC",,,"3366 BURTON SE",,"GRAND RAPIDS","MI","49546",,,,,,,,,,,,,,,,,,"382029990","6169493541","621210","WEST MICHIGAN ENDODONTISTS PC",,"3366 BURTON SE",,"GRAND RAPIDS","MI","49546",,,,,,,"382029990","6169493541",,,,"2011-07-14T07:50:41-0500","SCOTT HODGES DDS","2011-07-14T07:50:41-0500","SCOTT HODGES DDS",,,22,18,,4,22,,22,22,,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714115952P030093456337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STATON WHOLESALE WELFARE BENEFIT PLAN","502","1993-11-01","STATON HOLDINGS, INC.",,,"PO BOX 801686",,"DALLAS","TX","753801686",,,,,,,,,,,,,,,,,,"752193960","9724483000","525100","STATON HOLDINGS, INC.",,"PO BOX 801686",,"DALLAS","TX","753801686",,,,,,,"752193960","9724483000",,,,"2011-07-12T10:27:42-0500","CHRIS PETRILLA","2011-07-14T11:59:43-0500","BILLIE STATON",,,131,123,,,123,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714104054P030029258199001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALGOMA HARDWOODS, INC. FLEXIBLE BENEFIT PLAN","507","2007-01-01","ALGOMA HARDWOODS, INC.",,,"1001 PERRY STREET",,"ALGOMA","WI","54201",,,,,,,,,,,,,,,,,,"391261105","9204875221","321900","ALGOMA HARDWOODS, INC.",,"1001 PERRY STREET",,"ALGOMA","WI","54201",,,,,,,"391261105","9204875221",,,,"2011-07-14T10:40:41-0500","WILLIAM C. BEHME","2011-07-14T10:40:41-0500","WILLIAM C BEHME",,,25,20,5,0,25,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713133751P040095461345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HMO ILLINOIS","506","1971-07-01","AMERICAN LIBRARY ASSOCIATION",,,"50 EAST HURON STREET",,"CHICAGO","IL","60611",,,,,,,"50 EAST HURON STREET",,"CHICAGO","IL","60611",,,,,,,"362166947","3122804253","813000","AMERICAN LIBRARY ASSOCIATION",,"50 EAST HURON STREET",,"CHICAGO","IL","60611",,,,,,,"362166947","3122804253",,,,"2011-07-13T13:37:05-0500","RUSSELL SWEDOWSKI",,,,,193,234,0,0,234,0,234,,,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713120920P040095416417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VIRTUAL RESOURCE MANAGEMENT CORP. 401(K) PLAN","001","1996-01-01","VIRTUAL RESOURCE MANAGEMENT CORP.",,,"19 CARRS TAVERN ROAD",,"CLARKSBURG","NJ","08510",,,,,,,,,,,,,,,,,,"223276400","6092082400","561300","VIRTUAL RESOURCE MANAGEMENT CORP.",,"19 CARRS TAVERN ROAD",,"CLARKSBURG","NJ","08510",,,,,,,"223276400","6092082400",,,,"2011-07-13T12:09:19-0500","GLENN MCCLAIN","2011-07-13T12:09:19-0500","GLENN MCCLAIN",,,46,15,0,27,42,0,42,35,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713121113P030092821537001","2010-05-01","2011-04-30","2",,"0","1","0","0","0","0","0","0","0",,"QUINN A G INC","001","1991-12-10","QUINN, A.G., INC.","H&R BLOCK","MARTHA QUINN","437 SOUTH MAIN STREET",,"HENDERSONVILLE","NC","28792",,,,,,,"437 SOUTH MAIN STREET",,"HENDERSONVILLE","NC","28792",,,,,,,"561318928","8286927878","541213","QUINN, A.G., INC.","MARTHA QUINN","437 SOUTH MAIN STREET",,"HENDERSONVILLE","NC","28792",,,,,,,"561318928","8286927878",,,,"2011-07-13T12:11:02-0500","MARTHA QUINN",,,,,4,4,,,4,,4,4,,,"2A",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713144906P040095514129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SIMPLY FASHION STORES HEALTH BENEFIT PLAN","501","1992-03-01","SIMPLY FASHION STORES, LTD",,,"P.O. BOX 188",,"BIRMINGHAM","AL","352010188",,,,,,,"P.O. BOX 188",,"BIRMINGHAM","AL","352010188",,,,,,,"631056230","2059511700","448120","SIMPLY FASHION STORES, LTD.",,"P.O. BOX 188",,"BIRMINGHAM","AL","352010188",,,,,,,"631056230","2059511700",,,,"2011-07-13T14:47:32-0500","RODNEY BARSTEIN",,,,,464,506,,,506,,506,,,,,"4A4B4C4D4E4F","1",,,,"1",,,,,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713145045P040095515233001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"POGUE CONSTRUCTION, CO., LP. 401(K) PROFIT SHARING PLAN","001","1986-04-01","POGUE CONSTRUCTION, CO., LP",,,"1512 BRAY CENTRAL DRIVE, SUITE 300",,"MCKINNEY","TX","75069",,,,,,,"1512 BRAY CENTRAL DRIVE, SUITE 300",,"MCKINNEY","TX","75069",,,,,,,"751650672","9725299401","236200","POGUE CONSTRUCTION, CO., LP",,"1512 BRAY CENTRAL DRIVE, SUITE 300",,"MCKINNEY","TX","75069",,,,,,,"751650672","9725299401",,,,"2011-07-13T14:50:15-0500","NICOLE DALAL",,,,,87,76,0,16,92,0,92,89,11,,"2A2E2F2G2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714130009P040096104241003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE BANK OF GLEN BURNIE WELFARE BENEFIT PLAN","599","1989-07-01","THE BANK OF GLEN BURNIE",,,"PO BOX 70",,"GLEN BURNIE","MD","210600700",,,,,,,,,,,,,,,,,,"520575023","4107688855","522110","THE BANK OF GLEN BURNIE",,"PO BOX 70",,"GLEN BURNIE","MD","210600700",,,,,,,"520575023","4107688855",,,,"2011-07-13T15:51:53-0500","MICHELLE STAMBAUGH","2011-07-11T14:42:37-0500","MICHELLE STAMBAUGH",,,118,128,,,128,,,,,,,"4A4B4D4E4H4Q","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713132205P040029868487001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LLR MANAGEMENT LP 401(K) RETIREMENT PLAN","001","2001-01-01","LLR MANAGEMENT LP",,,"CIRA CENTRE","2929 ARCH STREET","PHILADELPHIA","PA","191042868",,,,,,,,,,,,,,,,,,"233016072","2157172900","531310","LLR MANAGEMENT LP",,"CIRA CENTRE","2929 ARCH STREET","PHILADELPHIA","PA","191042868",,,,,,,"233016072","2157172900",,,,"2011-07-13T02:21:38-0500","JOSEPH VAN THUYNE",,,,,22,24,0,1,25,0,25,18,0,,"2E2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713151958P040095530257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SYSTEMS SERVICE ENTERPRISES, INC RETIREMENT INVESTMENT PLAN","001","1990-01-01","SYSTEMS SERVICE ENTERPRISES, INC.",,,"77 WESTPORT PLAZA STE 500",,"ST. LOUIS","MO","631463126",,,,,,,,,,,,,,,,,,"430838056","3144394700","541600","SYSTEMS SERVICE ENTERPRISES, INC.",,"77 WESTPORT PLAZA STE 500",,"ST. LOUIS","MO","631463126",,,,,,,"430838056","3144394700",,,,"2011-07-13T15:10:12-0500","C. JAMES DOBBINS",,,,,103,55,0,45,100,0,100,69,10,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713164916P040095572017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DON HOCTORS AUTO WRECKING CO., INC. PROFIT SHARING PLAN","002","1977-01-01","DON HOCTORS AUTO WRECKING CO., INC",,,"20727 N. LA ENTRADA ROAD",,"MARICOPA","AZ","852392767",,,,,,,,,,,,,,,,,,"860271877","5205683458","423930","DON HOCTORS AUTO WRECKING CO., INC",,"20727 N. LA ENTRADA ROAD",,"MARICOPA","AZ","852392767",,,,,,,"860271877","5205683458",,,,"2011-07-13T16:47:03-0500","DON HOCTOR",,,,,6,4,1,0,5,0,5,5,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714131926P030093498833007","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"DAKOTAS & WESTERN MN ELECTRICAL INDUSTRY HEALTH & WELFARE PLAN","501","1967-01-01","DAKOTAS & WESTERN MN ELECTRICAL INDUSTRY HEALTH & WELFARE PLAN",,,"2901 1ST AVENUE NORTH",,"FARGO","ND","58102",,,,,,,,,,,,,,,,,,"456038633","7012931300","238210","NORIDIAN MUTUAL INSURANCE COMPANY DBA NORIDIAN BENEFIT PLAN","ADMINISTRATORS","4510 13TH AVENUE SW",,"FARGO","ND","581210001",,,,,,,"450173185","7012374787",,,,"2011-07-14T05:40:35-0500","SANDRA HANNESTAD",,,,,3422,2827,520,,3347,,,,,283,,"4A4B4D4E4H4L",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714125202P030093483841001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MILES DATA TECHNOLOGIES LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","MILES DATA TECHNOLOGIES LLC",,,"N8W22455 JOHNSON DR.",,"WAUKESHA","WI","53186",,,,,,,,,,,,,,,,,,"392001893","2625226700","541511","MILES DATA TECHNOLOGIES LLC",,"N8W22455 JOHNSON DR.",,"WAUKESHA","WI","53186",,,,,,,"392001893","2625226700",,,,"2011-07-14T00:51:30-0500","MILES DATA TECHNOLOGIES LLC",,,,,18,18,0,0,18,0,18,17,0,,"2A2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713105448P030092780945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TAX DEFERRED ANNUITY PLAN OF HEART OF TEXAS REGION MH/MR CENTER","002","1982-01-01","HEART OF TEXAS REGION MH/MR CENTER",,,"PO BOX 890",,"WACO","TX","76703",,,,,,,,,,,,,,,,,,"741622958","2547523451","621420","HEART OF TEXAS REGION MH/MR CENTER",,"PO BOX 890",,"WACO","TX","76703",,,,,,,"741622958","2547523451",,,,"2011-07-13T10:54:35-0500","RYAN ADAMS",,,,,316,150,0,126,276,4,280,278,0,,"2L",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713105726P040095389185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SIZEMORE, INC. 401(K) PLAN","001","1995-08-01","SIZEMORE, INC.",,"MATT KOTTYAN","2116 WALTON WAY",,"AUGUSTA","GA","309044387",,,,,,,,,,,,,,,,,,"581026894","7067361458","561490","SIZEMORE, INC.","MATT KOTTYAN","2116 WALTON WAY",,"AUGUSTA","GA","309044387",,,,,,,"581026894","7067361458",,,,"2011-07-13T10:34:34-0500","MATTHEW KOTTYAN",,,,,1165,932,0,43,975,0,975,113,5,,"2E2F2G2J2K3D2A3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713180016P040433083520001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PIZZA KING INC PROFIT SHARING PLAN","002","2002-01-01","PIZZA KING, INC",,"RUBY GILBERTSON","P O BOX 1143",,"ALBANY","OR","97321",,,,,,,,,,,,,,,,,,"931113854","5419269468","722110","PIZZA KING INC","RUBY GILBERTSON","P O BOX 1143",,"ALBANY","OR","97321",,,,,,,"931113854","5419269468",,,,"2011-07-13T17:40:24-0500","RUBY GILBERTSON",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714082400P040030027175001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"ASSOCIATION OF SPECIALIST IN CLEANING AND RESTORATION FOUNDATION","001","2001-07-30","ASSOCIATION OF SPECIALISTS IN CLEANING AND RESTORATION FOUNDATION","RESTORATION INDUSTRY ASSOCIATION, INC.","TIMOTHY SHAW","12339 CARROLL AVENUE",,"ROCKVILLE","MD","20852",,,,,,,"12339 CARROLL AVENUE",,"ROCKVILLE","MD","20852",,,,,,,"522256680","3012316505","611000","ASSOCIATION OF SPECIALISTS IN CLEANING AND RESTORATION FOUNDATION","TIMOTHY SHAW","12339 CARROLL AVENUE",,"ROCKVILLE","MD","20852",,,,,,,"522256680","3012316505",,,,"2011-07-14T08:23:45-0500","TIMOTHY SHAW",,,,,5,0,0,0,0,0,0,0,0,0,"2G2K2L",,"1",,,"1","1",,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713151728P040095529089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUILDING CONSULTANTS & ENGINEE 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","BUILDING CONSULTANTS",,,"1520 WEST CANAL COURT #240",,"LITTLETON","CO","80120",,,,,,,,,,,,,,,,,,"260089855","7202014560","541330","BUILDING CONSULTANTS",,"1520 WEST CANAL COURT #240",,"LITTLETON","CO","80120",,,,,,,"260089855","7202014560",,,,"2011-07-13T03:17:25-0500","BUILDING CONSULTANTS",,,,,7,7,0,0,7,0,7,4,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714114822P030439204416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"B.P. JOHN HAULING 401(K) SAVINGS PLAN","001","2002-02-01","B.P. JOHN HAULING",,,"38875 AVENIDA LA CRESTA",,"MURRIETA","CA","92562",,,,,,,,,,,,,,,,,,"953515804","9519281094","339900","B.P. JOHN HAULING",,"38875 AVENIDA LA CRESTA",,"MURRIETA","CA","92562",,,,,,,"953515804","9519281094",,,,"2011-07-14T11:43:49-0500","EDWARD METZLER",,,,,23,19,0,0,19,0,19,7,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714103142P040096021569001","2010-02-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"HEALTH AND WELFARE PLAN FOR EMPLOYEES OF BRIGHTPOINT, INC.","501","1997-01-01","BRIGHTPOINT, INC.",,,"501 AIRTECH PARKWAY",,"PLAINFIELD","IN","46168",,,,,,,"501 AIRTECH PARKWAY",,"PLAINFIELD","IN","46168",,,,,,,"351778566","3177072205","423600","BRIGHTPOINT, INC.",,"501 AIRTECH PARKWAY",,"PLAINFIELD","IN","46168",,,,,,,"351778566","3177072205",,,,"2011-07-14T10:20:21-0500","ANNETTE CYR",,,,,781,817,0,0,817,,817,,,,,"4A4D",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714095307P040096003153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VINSON & ELKINS L.L.P. BACKUP DAYCARE PLAN","518","2001-03-31","VINSON & ELKINS L.L.P.",,,"1001 FANNIN, SUITE 2500",,"HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"741183015","7137583819","541110","VINSON & ELKINS L.L.P. BENEFITS & COMPENSATION COMMITTEE",,"1001 FANNIN, SUITE 2500",,"HOUSTON","TX","77002",,,,,,,"621542290","7137583819",,,,"2011-07-14T09:38:41-0500","MICHAEL J. COLACICCO","2011-07-14T09:38:41-0500","MICHAEL J. COLACICCO",,,765,679,0,0,679,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714100026P040096007153005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BANK OF SPRINGFIELD WELFARE PLAN","501","1980-12-01","BANK OF SPRINGFIELD",,,"3400 WEST WABASH",,"SPRINGFIELD","IL","627110000",,,,,,,,,,,,,,,,,,"370865074","2175295555","522110","BANK OF SPRINGFIELD",,"3400 WEST WABASH",,"SPRINGFIELD","IL","627110000",,,,,,,"370865074","2175295555",,,,"2011-07-14T09:30:37-0500","BRENDA STROH",,,,,267,297,,,297,,297,,,,,"4H4F4E4D4B4A","1",,,,"1",,,,,,,"1",,"1","4",,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714104508P040096029745002","2010-05-01","2011-04-30","2",,,,,,,,,,,,"CENTRAL FIRE PROTECTION, INC. 401K PLAN","001","1996-05-01","CENTRAL FIRE PROTECTION, INC.",,,"P O BOX 19309",,"BIRMINGHAM","AL","35219",,,,,,,,,,,,,,,,,,"631114492","2059420200","238900","CENTRAL FIRE PROTECTION, INC.",,"P O BOX 19309",,"BIRMINGHAM","AL","35219",,,,,,,"631114492","2059420200",,,,"2011-07-14T11:37:15-0500","DAN DOTSON","2011-07-14T11:37:19-0500","DAN DOTSON",,,46,37,0,0,37,0,37,37,,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714130236P040014136450001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROCK HALL LUMBER CO., INC/CHESTERTOWN LUMBER CO. PROFIT SHARING PLAN","001","1990-01-01","ROCK HALL LUMBER CO., INC/CHESTERTOWN LUMBER CO.",,,"21555 E. SHARP STREET",,"ROCK HALL","MD","216611553",,,,,,,,,,,,,,,,,,"521603471","4106392211","444190","EASTERN STATES MANAGEMENT SERVICES INC.",,"1800 FRUITVILLE PIKE",,"LANCASTER","PA","17604",,,,,,,"231730244","8002963278",,,,"2011-07-14T13:02:36-0500","ADA O'CONNOR","2011-07-14T13:02:36-0500","ERNEST STRONG",,,15,13,0,2,15,0,15,15,0,,"2E2G2T3H3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714083934P030013618354001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTH CAROLINA MEDICAL SOCIETY RETIREMENT SAVINGS PLAN","002","1998-01-01","NORTH CAROLINA MEDICAL SOCIETY",,,"P.O. BOX 27167",,"RALEIGH","NC","27611",,,,,,,,,,,,,,,,,,"560320130","9198333836","813000","NORTH CAROLINA MEDICAL SOCIETY",,"P.O. BOX 27167",,"RALEIGH","NC","27611",,,,,,,"560320130","9198333836",,,,"2011-07-14T08:39:27-0500","DONALD WALL",,,,,34,35,0,2,37,0,37,37,0,,"2A2E2F2G2J2K2R2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713150338P040014051282001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KRECH OJARD & ASSOCIATES, P A 401(K) PLAN","001","1997-05-01","KRECH OJARD & ASSOCIATES, P A",,,"227 W 1ST ST STE 200",,"DULUTH","MN","55802",,,,,,,,,,,,,,,,,,"411492500","2187273282","541330","KRECH OJARD & ASSOCIATES, P A",,"227 W 1ST ST STE 200",,"DULUTH","MN","55802",,,,,,,"411492500","2187273282",,,,"2011-07-13T14:51:23-0500","MARY LARSON",,,,,81,75,0,0,75,0,75,73,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713150404P040014051314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HALES-BRADFORD, L.L.P. 401(K) PLAN","001","2005-01-01","HALES-BRADFORD , L.L.P.",,,"855 WEST PRICE ROAD, SUITE 25",,"BROWNSVILLE","TX","78520",,,,,,,,,,,,,,,,,,"352244360","9565429196","541211","HALES-BRADFORD , L.L.P.",,"855 WEST PRICE ROAD, SUITE 25",,"BROWNSVILLE","TX","78520",,,,,,,"352244360","9565429196",,,,"2011-07-13T15:02:51-0500","BILLY BRADFORD JR",,,,,34,31,0,0,31,0,31,24,0,,"2E2F2G2J2K2T3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714084123P030002747635001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LORDS DENTAL STUDIO, INC. 401(K) PLAN","001","1986-01-01","LORDS DENTAL STUDIO, INC.",,,"1500 WEST MAIN AVENUE",,"DE PERE","WI","54115",,,,,,,,,,,,,,,,,,"391985655","9203472929","621510","LORDS DENTAL STUDIO, INC.",,"1500 WEST MAIN AVENUE",,"DE PERE","WI","54115",,,,,,,"391985655","9203472929",,,,"2011-07-13T09:35:07-0500","ELDRIDGE B. BANKS",,,,,138,114,0,13,127,0,127,114,4,,"3D2E2G2J2T2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714085650P030093350833001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SUPERIOR STEEL FABRICATORS, INC. PROFIT SHARING PLAN","001","1994-01-01","SUPERIOR STEEL FABRICATORS, INC.",,,"46 ROUTE 13",,"BROOKLINE","NH","03033",,,,,,,,,,,,,,,,,,"020462394","6036737509","238900","SUPERIOR STEEL FABRICATORS, INC.",,"46 ROUTE 13",,"BROOKLINE","NH","03033",,,,,,,"020462394","6036737509",,,,"2011-07-14T04:17:51-0500","PATRICK DONALD HOARD",,,,,10,6,,1,7,,7,7,3,,"2E2F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714093114P040434795360001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PADE INVESTMENTS, INC., PROFIT SHARING","001","2007-02-06","PADE INVESTMENTS, INC.",,,"19412 TESSA HEIGHTS LN",,"SPICEWOOD","TX","78669",,,,,,,,,,,,,,,,,,"208354857","5122617994","531390","PADE INVESTMENTS, INC.",,"19412 TESSA HEIGHTS LN",,"SPICEWOOD","TX","78669",,,,,,,"208354857","5122617994",,,,"2011-07-14T09:24:20-0500","PETE CONNOR",,,,,1,0,,,0,,0,0,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714114950P040435119504001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEST LAKE DENTAL CENTER INCENTIVE SAVINGS PLAN AND TRUST","001","1992-04-01","WEST LAKE DENTAL CENTER, PA",,,"3033 EXCELSIOR BLVD STE 310",,"MINNEAPOLIS","MN","554163249",,,,,,,,,,,,,,,,,,"411313125","6129269000","621210","WEST LAKE DENTAL CENTER, PA",,"3033 EXCELSIOR BLVD STE 310",,"MINNEAPOLIS","MN","554163249",,,,,,,"411313125","6129269000",,,,"2011-07-14T11:40:29-0500","DONALD MCPARTLAN",,,,,12,11,0,0,11,0,11,11,0,,"2A2E2F2G2J2K3B",,"0","0","1","0","1","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714120346P040096071985001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HILCO CORPORATION PROFIT SHARING PLAN","002","1988-01-01","HILCO CORPORATION",,,"250 KING MANOR DRIVE",,"KING OF PRUSSIA","PA","194062562",,,,,,,,,,,,,,,,,,"222589888","6102798280","423920","HILCO CORPORATION",,"250 KING MANOR DRIVE",,"KING OF PRUSSIA","PA","194062562",,,,,,,"222589888","6102798280",,,,"2011-07-14T12:03:45-0500","HILDA COHEN",,,,,17,14,0,2,16,0,16,16,0,,"2A2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713112409P030092795537001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"STARK & STARK SECTION 125 PLAN","502","2004-01-01","STARK & STARK",,,"PO BOX 5315",,"PRINCETON","NJ","08543",,,,,,,,,,,,,,,,,,"222092476","6092191401","541110","STARK & STARK",,"PO BOX 5315",,"PRINCETON","NJ","08543",,,,,,,"222092476","6092191401",,,,"2011-06-17T09:21:46-0500","PAUL J. BLANKMAN",,,,,235,249,0,0,249,,,,,,,"4A4D4E4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713135338P040095477729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PACIFIC SHIP REPAIR & FABRICATION INC MEDICAL PLAN","501","1989-01-01","PACIFIC SHIP REPAIR & FABRICATION INC",,,"1625 RIGEL STREET",,"SAN DIEGO","CA","92113",,,,,,,"1625 RIGEL STREET",,"SAN DIEGO","CA","92113",,,,,,,"952662789","6192323200","336610","PACIFIC SHIP REPAIR & FABRICATION INC",,"1625 RIGEL STREET",,"SAN DIEGO","CA","92113",,,,,,,"952662789","6192323200",,,,"2011-07-12T16:32:31-0500","DAVID MOORE",,,,,120,110,2,,112,,112,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713142345P030092880561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WESTERN STONE & METAL CORP. 401(K) PLAN","003","1990-01-01","WESTERN STONE & METAL CORP.",,,"8085 S.CHESTER STREET , SUITE 300",,"CENTENNIAL","CO","80112",,,,,,,,,,,,,,,,,,"840613760","3037923500","448310","WESTERN STONE & METAL CORP.",,"8085 S.CHESTER STREET , SUITE 300",,"CENTENNIAL","CO","80112",,,,,,,"840613760","3037923500",,,,"2011-07-13T13:23:06-0500","KIM CUNNINGHAM",,,,,508,470,1,95,566,0,566,389,56,,"2E2F2G2J2K2T2R3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713142402P040029884151001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ZETA BETA TAU INC 401(K) PROFIT SHARING PLAN & TRUST","001","2000-01-01","ZETA BETA TAU INC",,,"3905 VINCENNES RD STE 100",,"INDIANAPOLIS","IN","46268",,,,,,,,,,,,,,,,,,"131496610","3173341898","324190","ZETA BETA TAU INC",,"3905 VINCENNES RD STE 100",,"INDIANAPOLIS","IN","46268",,,,,,,"131496610","3173341898",,,,"2011-07-13T02:23:59-0500","ZETA BETA TAU INC",,,,,8,8,0,0,8,0,8,6,0,,"2E2G2J2K2R2S2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713200726P040014069186001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JEROMES FURNITURE WAREHOUSE 401(K) SAVINGS PLAN","004","1983-01-01","JEROMES FURNITURE WAREHOUSE",,,"16960 MESAMINT STREET",,"SAN DIEGO","CA","92127",,,,,,,,,,,,,,,,,,"951858201","8587531554","442110","JEROMES FURNITURE WAREHOUSE",,"16960 MESAMINT STREET",,"SAN DIEGO","CA","92127",,,,,,,"951858201","8587531554",,,,"2011-07-13T18:31:35-0500","PAUL SANFORD",,,,,350,316,0,55,371,0,371,291,0,,"2E2F2H2J2K2R2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713161548P030436949936001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RAYMOND CORCORAN TRUCKING, INC. 401(K) PLAN","001","2000-01-01","RAYMOND CORCORAN TRUCKING, INC.",,,"532 KLENCK LANE",,"BILLINGS","MT","59101",,,,,,,,,,,,,,,,,,"810393939","4062527054","484120","RAYMOND CORCORAN TRUCKING, INC.",,"532 KLENCK LANE",,"BILLINGS","MT","59101",,,,,,,"810393939","4062527054",,,,"2011-07-13T16:15:40-0500","JENNIFER MCCOLLUM","2011-07-13T16:15:40-0500","JENNIFER MCCOLLUM",,,99,78,0,17,95,0,95,84,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714092406P030093364561001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SUGARTOWN WORLDWIDE, INC.","502","1993-01-12","SUGARTOWN WORLDWIDE, INC.","LILLY PULITZER","C/O SUSAN HILL","800 THIRD AVENUE",,"KING OF PRUSSIA","PA","19406",,,,,,,,,,,,,,,,,,"232708437","6108788770","448120","SUGARTOWN WORLDWIDE, INC.","C/O SUSAN HILL","800 THIRD AVENUE",,"KING OF PRUSSIA","PA","19406",,,,,,,"232708437","6108788770",,,,"2011-07-14T09:23:47-0500","SUSAN HILL",,,,,173,147,3,0,150,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714075901P030013615650001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"GROUP LIFE & DISABILITY BENEFITS","502","1988-04-26","NATIONAL TOBACCO COMPANY, L.P.",,,"5201 INTERCHANGE WAY",,"LOUISVILLE","KY","40229",,,,,,,"5201 INTERCHANGE WAY",,"LOUISVILLE","KY","40229",,,,,,,"611133037","5027784421","312200","NATIONAL TOBACCO COMPANY, L.P.",,"5201 INTERCHANGE WAY",,"LOUISVILLE","KY","40229",,,,,,,"611133037","5027784421",,,,"2011-07-14T07:41:58-0500","DAVID JOHNSON",,,,,344,194,1,113,308,,308,,,1,,"4B4F","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714104515P040096029921001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SUBURBAN CONTRACT CLEANING, INC. 401(K) SAVINGS PLAN","001","1993-01-01","SUBURBAN CONTRACT CLEANING, INC.",,,"65 BAYSTATE DRIVE",,"BRAINTREE","MA","02184",,,,,,,"65 BAYSTATE DRIVE",,"BRAINTREE","MA","02184",,,,,,,"043152379","8777781101","561720","SUBURBAN CONTRACT CLEANING, INC.",,"65 BAYSTATE DRIVE",,"BRAINTREE","MA","02184",,,,,,,"043152379","8777781101",,,,"2011-07-14T10:41:42-0500","THOMAS MCGOVERN",,,,,581,560,0,30,590,0,590,106,4,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713141246P040095488881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"4 R INVESTMENT COMPANY 401(K) PLAN","001","2007-01-01","4 R INVESTMENT COMPANY",,,"528 U.S. HIGHWAY 380 WEST",,"GRAHAM","TX","76450",,,,,,,,,,,,,,,,,,"752789456","9405490370","531110","4 R INVESTMENT COMPANY",,"528 U.S. HIGHWAY 380 WEST",,"GRAHAM","TX","76450",,,,,,,"752789456","9405490370",,,,"2011-07-13T14:10:08-0500","RONNIE ROBERTSON",,,,,6,6,0,0,6,0,6,5,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713143100P030436686080001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"APIA CORPORATION 401K PLAN","001","2008-06-21","APIA CORPORATION",,,"3050 FIVE FORKS TRICKUM RD STE D599",,"LILBURN","GA","30047",,,,,,,,,,,,,,,,,,"262860156","7707364676","531390","APIA CORPORATION",,"3050 FIVE FORKS TRICKUM RD STE D599",,"LILBURN","GA","30047",,,,,,,"262860156","7707364676",,,,"2011-07-13T13:13:31-0500","KEITH SIMS","2011-07-13T13:13:31-0500","KEITH SIMS",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713160018P030013558274003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WAUCONDA PHYSICAL THERAPY INC PROFIT SHARING PLAN","001","1996-01-01","WAUCONDA PHYSICAL THERAPY INC",,,"363 MAIN ST",,"WAUCONDA","IL","60084",,,,,,,,,,,,,,,,,,"363943416","8474870290","621340","WAUCONDA PHYSICAL THERAPY INC",,"363 MAIN ST",,"WAUCONDA","IL","60084",,,,,,,"363943416","8474870290",,,,"2011-07-13T14:54:17-0500","SHARLENE MECCHI",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713160018P030013558274002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PETER A TRACE MD PROFIT SHARING PLAN","002","1988-01-01","PETER A TRACE",,,"1600 W WALNUT",,"JACKSONVILLE","IL","62650",,,,,,,,,,,,,,,,,,"371159285","2172438455","621111","FARMERS STATE BA NK & TRUST CO",,"200 W STATE ST",,"JACKSONVILLE","IL","62650",,,,,,,"371136142","2174794000",,,,"2011-07-06T14:55:07-0500","TOM TEARNEY","2011-07-12T10:00:56-0500","DR PETER A TRACE",,,4,1,,1,2,,2,2,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714094256P030093373761008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STOLL KEENON OGDEN HEALTH PLAN","501","1965-01-09","STOLL KEENON OGDEN PLLC",,,"300 WEST VINE STREET","SUITE 2100","LEXINGTON","KY","405071801",,,,,,,"300 WEST VINE STREET","SUITE 2100","LEXINGTON","KY","405071801",,,,,,,"610421389","8592313000","541110","STOLL KEENON OGDEN PLLC",,"300 WEST VINE STREET","SUITE 2100","LEXINGTON","KY","405071801",,,,,,,"610421389","8592313000",,,,"2011-07-14T06:20:33-0500","J DAVID SMITH","2011-07-14T06:20:33-0500","J DAVID SMITH",,,449,446,,,446,,,,,,,"4A4D","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714094512P040095997457001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALABASTER DENTAL CARE PROFIT SHARING RETIREMENT PLAN","001","1988-01-01","ALABASTER DENTAL CARE, PC",,,"P.O. BOX 799",,"ALABASTER","AL","35007",,,,,,,,,,,,,,,,,,"630896295","2056631280","621210","ALABASTER DENTAL CARE, PC",,"P.O. BOX 799",,"ALABASTER","AL","35007",,,,,,,"630896295","2056631280",,,,"2011-07-14T10:31:37-0500","GREGORY HORN","2011-07-14T10:31:54-0500","GREGORY HORN",,,11,13,0,0,13,0,13,13,,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714101400P040096012593008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"V AND S ENTERPRISES INC PROFIT SHARING PLAN AND TRUST","001","2001-12-01","V & S ENTERPRISES INC",,,"3267 BEE CAVES RD.","STE. 107, PMB 92","AUSTIN","TX","78746",,,,,,,"3267 BEE CAVES RD.","STE. 107 PMB 92","AUSTIN","TX","78746",,,,,,,"742586674","5129276100","531310","V & S ENTERPRISES INC",,"3267 BEE CAVES RD.","STE. 107, PMB 92","AUSTIN","TX","78746",,,,,,,"742586674","5129276100",,,,"2011-07-15T04:48:03-0500","VICKI OLIVER",,,,,3,3,,,3,,3,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714124516P030013637634001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STURTEVANT FUNERAL HOME, INC. PROFIT SHARING RETIREMENT PLAN","001","1986-01-01","STURTEVANT FUNERAL HOME, INC.",,,"5201 PORTSMOUTH BOULEVARD",,"PORTSMOUTH","VA","23701",,,,,,,,,,,,,,,,,,"540842510","7574888348","812210","STURTEVANT FUNERAL HOME, INC.",,"5201 PORTSMOUTH BOULEVARD",,"PORTSMOUTH","VA","23701",,,,,,,"540842510","7574888348",,,,"2011-07-14T12:45:09-0500","WILLIAM R. GARDNER",,,,,28,21,0,3,24,0,24,24,0,,"2A2E3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714125501P030029290887001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","0","1","NO ASSETS--ALL ROLLED OVER IN 2007","GREEN & FINCH CHARTERED PROFIT SHARING PLAN","001","1974-01-01","GREEN & FINCH CHARTERED, ATTORNEYS",,,"101 WEST SECOND ST.",,"OTTAWA","KS","66067",,,,,,,"101 WEST SECOND ST.",,"OTTAWA","KS","66067",,,,,,,"480805016","7852422783","541110","GREEN & FINCH CHARTERED, ATTORNEYS",,"101 WEST SECOND ST.",,"OTTAWA","KS","66067",,,,,,,"480805016","7852422783",,,,"2011-07-14T12:51:59-0500","ROBERT GREEN",,,,,0,0,0,0,0,,0,0,0,,"2E",,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714082731P040434658464001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","1","0","0","0",,"PORTER-GAUD SCHOOL DEFINED CONTRIBUTION RETIREMENT PLAN","001","1978-09-01","PORTER-GAUD SCHOOL",,,"300 ALBEMARLE ROAD",,"CHARLESTON","SC","29407",,,,,,,,,,,,,,,,,,"570342032","8435563620","611000","PORTER-GAUD SCHOOL",,"300 ALBEMARLE ROAD",,"CHARLESTON","SC","29407",,,,,,,"570342032","8435563620",,,,"2011-07-14T08:26:31-0500","D. DUBOSE EGLESTON, JR.",,,,,352,374,,54,428,,428,398,0,,"2C2F2G2L",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714112940P030093440561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAURICE SCHWARTZ & SON 401K PLAN","003","1994-01-01","MAURICE SCHWARTZ & SONS, INC.",,,"585 SHREWSBURY AVE",,"SHREWSBURY","NJ","07702",,,,,,,"585 SHREWSBURY AVE",,"SHREWSBURY","NJ","07702",,,,,,,"210732290","7325304100","444110","MAURICE SCHWARTZ & SONS, INC.",,"585 SHREWSBURY AVE",,"SHREWSBURY","NJ","07702",,,,,,,"210732290","7325304100",,,,"2011-07-14T11:28:54-0500","ARLENE FAY",,,,,31,28,0,0,28,0,28,22,0,,"2E2G2J2K2T3D",,"1",,"1",,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713103617P030092770881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CASUAL MALE RETAIL GROUP, INC. ANCILLARY BENEFIT PLAN","504","2003-01-01","CASUAL MALE RETAIL GROUP, INC.",,,"555 TURNPIKE STREET",,"CANTON","MA","02021",,,,,,,,,,,,,,,,,,"042623104","7818289300","448210","CASUAL MALE RETAIL GROUP, INC.",,"555 TURNPIKE STREET",,"CANTON","MA","02021",,,,,,,"042623104","7818289300",,,,"2011-07-13T10:35:40-0500","ALAN TEIXEIRA","2011-07-13T10:35:40-0500","ALAN TEIXEIRA",,,1558,1499,35,0,1534,,,,,,,"4B4H4L4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713145825P040095519889001","2010-07-01","2011-06-30","2",,"0","0","1","0","0","0","0","0","0",,"BERTHOLON-ROWLAND CORP. EMPLOYEE STOCK OWNERSHIP PLAN","003","1990-07-01","BERTHOLON-ROWLAND CORP.",,,"100 MATAWAN ROAD","SUITE 200","MATAWAN","NJ","07747",,,,,,,,,,,,,,,,,,"135603648","7323555316","524210","BERTHOLON-ROWLAND CORP.",,"100 MATAWAN ROAD","SUITE 200","MATAWAN","NJ","07747",,,,,,,"135603648","7323555316",,,,"2011-07-13T14:54:08-0500","ARNOL KAPLAN",,,,,2,0,0,0,0,0,0,0,0,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713150805P030092912449004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"QUALITY DAIRY EMPLOYEE DEFERRED COMPENSATION PLAN","002","1985-06-01","QUALITY DAIRY CO.",,,"111 W. MT HOPE",,"LANSING","MI","48910",,,,,,,,,,,,,,,,,,"380948380","5173714955","445110","QUALITY DAIRY CO.",,"111 W. MT HOPE",,"LANSING","MI","48910",,,,,,,"380948380","5173714955",,,,"2011-07-13T10:59:09-0500","RONALD BELINSKY",,,,,794,649,,24,673,,673,173,3,,"2E2G2J",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713170400P040432989200001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"STANDARD MACHINE & MANUFACTURING CO., INC. HEALTH REIMBURSEMENT PLAN","511","2004-07-01","STANDARD MACHINE & MANUFACTURING CO.",,,"10014 BIG BEND BLVD.",,"ST. LOUIS","MO","63122",,,,,,,,,,,,,,,,,,"430790588","3149664500","333200","STANDARD MACHINE & MANUFACTURING CO.",,"10014 BIG BEND BLVD.",,"ST. LOUIS","MO","63122",,,,,,,"430790588","3149664500",,,,"2011-07-13T13:58:55-0500","JEREMY DEUTSCH","2011-07-13T13:58:55-0500","JEREMY DEUTSCH",,,181,173,1,0,174,,,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714092535P040014117954001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE FELLS RETIREMENT PLAN","001","2000-01-01","THE FELLS",,,"PO BOX 276",,"NEWBURY","NH","032550276",,,,,,,,,,,,,,,,,,"043345078","6037634789","712100","ERIC ROWLEY ROWLEY & ASSOCIATES, PC",,"6A HILLS AVE",,"CONCORD","NH","03301",,,,,,,"020522619","6032285400",,,,"2011-07-14T05:27:07-0500","TOM STARK",,,,,5,5,,,5,,5,,,,"2M",,,,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714093641P030093370385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STOP-N-GO 401(K) RETIREMENT SAVINGS PLAN","001","1992-01-01","STOP-N-GO OF MADISON, INC.",,,"2934 FISH HATCHERY ROAD",,"MADISON","WI","53713",,,,,,,,,,,,,,,,,,"391018040","6082714433","445120","STOP-N-GO OF MADISON, INC.",,"2934 FISH HATCHERY ROAD",,"MADISON","WI","53713",,,,,,,"391018040","6082714433",,,,"2011-07-14T09:24:49-0500","KEVIN OBRIEN",,,,,250,253,0,4,257,1,258,52,2,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714111210P030439110224001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRIGHT HORIZONS FLEXIBLE BENEFIT PLAN","501","1989-01-01","BRIGHT HORIZONS CHILDRENS CENTERS LLC",,,"200 TALCOTT AVENUE, SOUTH",,"WATERTOWN","MA","02472",,,,,,,,,,,,,,,,,,"042949680","6176738115","624100","BRIGHT HORIZONS CHILDRENS CENTERS LLC",,"200 TALCOTT AVENUE, SOUTH",,"WATERTOWN","MA","02472",,,,,,,"042949680","6176738115",,,,"2011-07-14T11:04:42-0500","GEORGIA DUKAKIS","2011-07-14T11:04:42-0500","GEORGIA DUKAKIS",,,10393,10084,0,0,10084,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","13","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714120837P030013634162001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEST PACK, INC. 401(K) PROFIT SHARING PLAN","001","1996-01-01","WEST PACK, INC.",,,"80 WILDCAT WAY",,"KELLOGG","ID","83837",,,,,,,,,,,,,,,,,,"820451029","2087831166","326100","WEST PACK, INC.",,"80 WILDCAT WAY",,"KELLOGG","ID","83837",,,,,,,"820451029","2087831166",,,,"2011-07-14T12:08:33-0500","PHILLIP R. WILSON",,,,,11,9,0,2,11,0,11,11,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110713111253P030092788881001","2010-07-27","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"GLOBAL ASSET MANAGEMENT SOLUTIONS, INC. PROFIT SHARING PLAN","001","2010-07-27","GLOBAL ASSET MANAGEMENT SOLUTIONS, INC.",,,"1225 W BEAVER ST STE 120",,"JACKSONVILLE","FL","32204",,,,,,,,,,,,,,,,,,"273125935","9042781886","531320","GLOBAL ASSET MANAGEMENT SOLUTIONS, INC.",,"1225 W BEAVER ST STE 120",,"JACKSONVILLE","FL","32204",,,,,,,"273125935","9042781886",,,,"2011-07-13T10:58:03-0500","JOHN HARRINGTON",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713120018P030092814033005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROCK ISLAND COUNTY FARM BUREAU 401(K) PLAN","002","1998-01-01","ROCK ISLAND COUNTY FARM BUREAU",,,"1601 52ND AVENUE SUITE 3",,"MOLINE","IL","612656389",,,,,,,,,,,,,,,,,,"361694220","3097361450","813000","ROCK ISLAND COUNTY FARM BUREAU",,"1601 52ND AVENUE SUITE 3",,"MOLINE","IL","612656389",,,,,,,"361694220","3097361450",,,,"2011-07-13T12:54:16-0500","DEANNE BLOOMBERG",,,,,2,2,0,0,2,0,2,2,,,"2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713143346P030092887905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BITUMINOUS CASUALTY CORPORATION SEVERANCE PAY PLAN","505","2004-01-01","BITUMINOUS CASUALTY CORPORATION",,,"320 - 18TH STREET",,"ROCK ISLAND","IL","612018744",,,,,,,,,,,,,,,,,,"360810360","3097865401","524150","BITUMINOUS CASUALTY CORPORATION",,"320 - 18TH STREET",,"ROCK ISLAND","IL","612018744",,,,,,,"360810360","3097865401",,,,"2011-07-13T11:44:49-0500","JANINE HAPP, SR. VP AND SECRETARY","2011-07-13T11:44:49-0500","ROBERT RAINEY, SR. VP AND TREASURER",,,468,450,,,450,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713153110P030013555026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHN DEBNEY PRODUCTIONS, INC. 401(K) PROFIT SHARING PLAN","001","1988-01-01","JOHN DEBNEY PRODUCTIONS, INC.",,,"C/O THE BRENTWOOD MANAGEMENT GROUP","11812 SAN VICENTE BLVD, STE 200","LOS ANGELES","CA","900496622",,,,,,,,,,,,,,,,,,"954090910","3108260909","711510","JOHN DEBNEY PRODUCTIONS, INC.",,"C/O THE BRENTWOOD MANAGEMENT GROUP","11812 SAN VICENTE BLVD, STE 200","LOS ANGELES","CA","900496622",,,,,,,"954090910","3108260909",,,,"2011-07-13T13:35:01-0500","JOHN DEBNEY",,,,,4,5,0,0,5,0,5,5,0,,"2A2E2J3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713203309P030093065793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AHTNA, INC. CORPORATE EMPLOYEES HEALTH & WELFARE PLAN","501","2007-01-01","AHTNA, INC.",,,"406 WEST FIREWEED, SUITE 101",,"ANCHORAGE","AK","99503",,,,,,,,,,,,,,,,,,"920042242","9078688250","551112","AHTNA, INC.",,"406 WEST FIREWEED, SUITE 101",,"ANCHORAGE","AK","99503",,,,,,,"920042242","9078688250",,,,"2011-07-13T20:33:03-0500","MEG ARMINSKI",,,,,369,315,14,0,329,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713204409P040095676481001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"GESHAY PEDIATRIC DENTISTRY, PC TIERED DEFINED BENEFIT PENSION PLAN","004","2010-01-01","GESHAY PEDIATRIC DENTISTRY, PC",,,"634 PITTSBURGH ROAD",,"UNIONTOWN","PA","15401",,,,,,,,,,,,,,,,,,"204055822","7244391576","621210","GESHAY PEDIATRIC DENTISTRY, PC",,"634 PITTSBURGH ROAD",,"UNIONTOWN","PA","15401",,,,,,,"204055822","7244391576",,,,"2011-07-13T20:33:26-0500","JAMES B. GESHAY, JR.",,,,,10,10,0,0,10,0,10,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713210033P040095682001001","2010-10-01","2011-04-30","2",,"0","0","1","1","0","0","0","0","0",,"STEPHEN W. HORNYAK, M.D. P.C. PROFIT SHARING TRUST","004","1988-10-01","STEPHEN W. HORNYAK, M.D., P.C.",,"C/O HUNTON & WILLIAMS LLP","200 PARK AVENUE, 53RD FLOOR",,"NEW YORK","NY","10166",,,,,,,"1130 VICTORY BLVD.",,"STATEN ISLAND","NY","10301",,,,,,,"132697275","7184423400","621111","STEPHEN W. HORNYAK, M.D., P.C.","C/O HUNTON & WILLIAMS LLP","200 PARK AVENUE, 53RD FLOOR",,"NEW YORK","NY","10166",,,,,,,"132697275","7184423400",,,,"2011-07-12T06:13:01-0500","STEPHEN HORNYAK",,,,,5,0,0,0,0,0,0,,0,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110714103532P030093405457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEUROLOGY NEUROSURGERY AND SPINE CLINIC OF SOUTH GEORGIA, P.C. PROFIT SHARING PLAN","001","1986-04-01","NEUROLOGY NEUROSURGERY AND SPINE CLINIC OF SOUTH GEORGIA, P.C.",,,"4274 NORTH VALDOSTA ROAD",,"VALDOSTA","GA","31605",,,,,,,,,,,,,,,,,,"582545825","2292421234","621111","NEUROLOGY NEUROSURGERY AND SPINE CLINIC OF SOUTH GEORGIA, P.C.",,"4274 NORTH VALDOSTA ROAD",,"VALDOSTA","GA","31605",,,,,,,"582545825","2292421234",,,,"2011-07-14T10:35:09-0500","MAUREEN COLLINS",,,,,42,31,0,11,42,0,42,42,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714102850P040096020049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEHMAN TRIKES USA, INC. 401(K) SAVINGS PLAN AND TRUST","001","2007-01-01","LEHMAN TRIKES USA, INC.",,,"125 INDUSTRIAL DRIVE",,"SPEARFISH","SD","57783",,,,,,,,,,,,,,,,,,"680536003","6056422111","336990","LEHMAN TRIKES USA, INC.",,"125 INDUSTRIAL DRIVE",,"SPEARFISH","SD","57783",,,,,,,"680536003","6056422111",,,,"2011-07-14T10:28:15-0500","KENNON HINES",,,,,91,51,0,8,59,0,59,34,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110715155339P030442626112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"LIFE AND DISABILITY PLAN","512","1987-02-01","PROGRAM FOR APPROPRIATE TECHNOLOGY IN HEALTH",,,"2201 WESTLAKE AVENUE, SUITE 200",,"SEATTLE","WA","98121",,,,,,,,,,,,,,,,,,"911157127","2062853500","813000","PROGRAM FOR APPROPRIATE TECHNOLOGY IN HEALTH",,"2201 WESTLAKE AVENUE, SUITE 200",,"SEATTLE","WA","98121",,,,,,,"911157127","2062853500",,,,"2011-07-15T15:53:33-0500","VYSHALI MOKADAM","2011-07-15T15:53:33-0500","VYSHALI MOKADAM",,,487,,,,0,,,,,,,"4B4Q4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715172318P040096910529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEMORIAL HEATH SERVICES VISION CARE PLAN","512","1991-01-01","MEMORIAL HEALTH SERVICES",,,"17360 BROOKHURST STREET",,"FOUNTAIN VALLEY","CA","92708",,,,,,,,,,,,,,,,,,"951643381","7143773002","622000","MEMORIAL HEALTH SERVICES",,"17360 BROOKHURST STREET",,"FOUNTAIN VALLEY","CA","92708",,,,,,,"951643381","7143773002",,,,"2011-07-15T17:20:34-0500","RICK GRANIERE","2011-07-15T17:20:34-0500","RICK GRANIERE",,,7550,7436,110,0,7546,,,,,,,"4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715190550P030094326225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BILLY GRAHAM EVANGELISTIC ASSOCIATION HEALTH AND WELFARE BENEFIT PLAN","508","1993-01-01","BILLY GRAHAM EVANGELISTIC ASSOCIATION",,,"1 BILLY GRAHAM PARKWAY",,"CHARLOTTE","NC","28201",,,,,,,,,,,,,,,,,,"410692230","7044012432","813000","BILLY GRAHAM EVANGELISTIC ASSOCIATION",,"1 BILLY GRAHAM PARKWAY",,"CHARLOTTE","NC","28201",,,,,,,"410692230","7044012432",,,,"2011-07-15T19:05:40-0500","DANIEL ALLEN",,,,,490,481,0,0,481,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715095049P040014212226010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EATON COUNTRY CLUB 401K","001","2003-01-01","EATON COUNTRY CLUB",,,"PO BOX 240",,"EATON","CO","806150240",,,,,,,"37661 WELD COUNTY ROAD 39",,"EATON","CO","80615",,,,,,,"840583821","9704542106","713900","EATON COUNTRY CLUB",,"PO BOX 240",,"EATON","CO","806150240",,,,,,,"840583821","9704542106",,,,"2011-06-15T03:31:03-0500","RICK COLE",,,,,8,8,,,8,,8,8,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110714210154P030093752001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRW DEVELOPMENT, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","CRW DEVELOPMENT, INC.",,,"3750-B CHARTER PARK DRIVE",,"SAN JOSE","CA","951361356",,,,,,,,,,,,,,,,,,"770402372","4084488270","236110","CRW DEVELOPMENT, INC.",,"3750-B CHARTED PARK DRIVE",,"SAN JOSE","CA","951361356",,,,,,,"770402372","4084488270",,,,"2011-07-14T21:01:40-0500","KENNETH CONNORS",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J2K3D",,"1","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110715130713P030013745426001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"BAUM, SMITH & EYRE LLC 401(K) PSP&T","001","2010-01-01","BAUM, SMITH & EYRE LLC",,,"P.O. BOX 967",,"LAGRANDE","OR","97850",,,,,,,"1902 4TH ST.",,"LAGRANDE","OR","97850",,,,,,,"271500240","5419633104","541110","BAUM, SMITH & EYRE LLC",,"P.O. BOX 967",,"LAGRANDE","OR","97850",,,,,,,"271500240","5419633104",,,,"2011-07-15T13:06:48-0500","DAVID C. BAUM","2011-07-15T13:06:48-0500","DAVID C. BAUM",,,6,9,0,0,9,0,9,5,0,,"2E2F2G2J2K2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715165856P030094273649001","2008-01-01","2008-12-31",,,"0","0","1","0","0","1","0","0","0",,"BIRKENSTOCK VILLAGE","001","2007-09-17","BIRKENSTOCK VILLAGE LLC.","BIRKENSTOCK VILLAGE","NANCY ROWINSKY","725 JONIVE ROAD",,"SEBASTOPOL","CA","95472",,,,,,,"725 JONIVE ROAD",,"SEBASTOPOL","CA","95472",,,,,,,"680403495","7078742701","448210","NANCY ROWINSKY",,"725 JONIVE ROAD",,"SEBASTOPOL","CA","95472",,,,,,,,,,,,"2011-07-15T16:57:24-0500","NANCY ROWINSKY",,,,,6,0,0,0,0,0,0,0,0,,"2E2F2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715102043P040096676385001","2010-03-01","2010-12-31","2",,"1","0","0","1","1","0","0","0","0",,"WOLVERINE PIPE LINE COMPANY LIFE INSURANCE PLAN","510","2010-03-01","WOLVERINE PIPE LINE COMPANY",,,"8075 CREEKSIDE DRIVE","SUITE 210","PORTAGE","MI","49024",,,,,,,"8075 CREEKSIDE DRIVE","SUITE 210","PORTAGE","MI","49024",,,,,,,"131680453","2693232491","486000","WOLVERINE PIPE LINE COMPANY",,"8075 CREEKSIDE DRIVE","SUITE 210","PORTAGE","MI","49024",,,,,,,"131680453","2693232491",,,,"2011-07-15T10:19:43-0500","KATHY DEAN",,,,,103,69,35,,104,,104,,,,,"4B4L4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715102048P040096676465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TONE PRODUCTS, INC. 401(K) SAVINGS PLAN","001","1981-01-01","TONE PRODUCTS, INC.",,,"2129 N 15TH AVE",,"MELROSE PARK","IL","60160",,,,,,,,,,,,,,,,,,"362382768","7086813660","311900","TONE PRODUCTS, INC.",,"2129 N 15TH AVE",,"MELROSE PARK","IL","60160",,,,,,,"362382768","7086813660",,,,"2011-07-15T10:19:49-0500","WILLIAM HAMEN",,,,,58,52,0,0,52,0,52,38,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715102104P040096676577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLORMATRIX CORPORATION INCENTIVE SAVINGS PLAN & TRUST","001","1988-10-01","COLORMATRIX CORPORATION",,,"608 N. ROCKY RIVER DRIVE",,"BEREA","OH","44017",,,,,,,,,,,,,,,,,,"341256877","2166220100","325900","COLORMATRIX CORPORATION",,"608 N. ROCKY RIVER DRIVE",,"BEREA","OH","44017",,,,,,,"341256877","2166220100",,,,"2011-07-15T10:12:12-0500","GARY LICHTENBERG",,,,,178,157,0,26,183,0,183,153,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715103534P040014217090001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FAMILY PRACTICE ASSOCIATES 401(K) PLAN","001","2003-01-01","FAMILY PRACTICE ASSOCIATES, LLP",,,"4206 CALL FIELD ROAD",,"WICHITA FALLS","TX","76308",,,,,,,,,,,,,,,,,,"752733219","9403975200","621111","FAMILY PRACTICE ASSOCIATES, LLP",,"4206 CALL FIELD ROAD",,"WICHITA FALLS","TX","76308",,,,,,,"752733219","9403975200",,,,"2011-07-15T10:31:19-0500","SO KIM ABAD",,,,,34,27,0,5,32,0,32,26,1,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715145105P030094200353001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CONEXANT SYSTEMS, INC. EMPLOYEE HEALTH PLAN","800","1999-01-01","CONEXANT SYSTEMS, INC.",,,"4000 MACARTHUR BOULEVARD",,"NEWPORT BEACH","CA","92660",,,,,,,,,,,,,,,,,,"251799439","9494834600","335900","SHARON JOHUR EXECUTIVE DIRECTOR HUMAN RESOURCES","CONEXANT SYSTEMS, INC.","4000 MACARTHUR BOULEVARD",,"NEWPORT BEACH","CA","92660",,,,,,,"251799439","9494834600",,,,"2011-07-15T14:50:56-0500","SHARON JOHUR",,,,,404,341,29,2,372,,,,,,,"4A4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110714113217P040096056465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARSON GUEST, INC. 401(K) PLAN","002","2004-01-01","CARSON GUEST, INC.",,"JOHN F. GUEST","1776 PEACHTREE STREET, NE","SUITE 120","ATLANTA","GA","30309",,,,,,,"1776 PEACHTREE STREET, NE","SUITE 120","ATLANTA","GA","30309",,,,,,,"581583038","4048733663","541400","CARSON GUEST, INC.","JOHN F. GUEST","1776 PEACHTREE STREET, NE","SUITE 120","ATLANTA","GA","30309",,,,,,,"581583038","4048733663",,,,"2011-07-14T11:31:54-0500","BRUCE WHITMER",,,,,9,8,0,1,9,0,9,8,0,,"2G2J2R3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110715133904P040096789313001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MET LIFE STD","504","2005-01-01","TIPPER TIE INC.",,,"2000 LUFKIN ROAD",,"APEX","NC","27539",,,,,,,"2000 LUFKIN ROAD",,"APEX","NC","27539",,,,,,,"133082788","9193628811","332610","TIPPER TIE INC.",,"2000 LUFKIN ROAD",,"APEX","NC","27539",,,,,,,"133082788","9193628811",,,,"2011-07-15T13:38:16-0500","SANDRA PRIDGEN",,,,,137,139,0,0,139,,139,,,,,"4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715172701P040096912305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANDY TOMLINSON FINANCIAL SERVICES PROFIT SHARING PLAN","004","2001-01-01","ANDY TOMLINSON FINANCIAL SERVICES",,,"824 VALLEY STREET",,"PRESCOTT","AZ","86305",,,,,,,,,,,,,,,,,,"742512326","9287761031","523120","ANDY TOMLINSON FINANCIAL SERVICES",,"824 VALLEY STREET",,"PRESCOTT","AZ","86305",,,,,,,"742512326","9287761031",,,,"2011-07-15T17:26:00-0500","ANDY TOMLINSON",,,,,7,6,0,1,7,0,7,7,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715073016P040096589441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEPHEN J MILLS PROFIT SHARING","001","1973-06-03","STEPHEN J MILLS",,,"421 CENTRAL AVENUE",,"CHELTENHAM","PA","19012",,,,,,,,,,,,,,,,,,"232533461","2153793030","621399","STEPHEN J MILLS",,"421 CENTRAL AVENUE",,"CHELTENHAM","PA","19012",,,,,,,"232533461","2153793030",,,,"2011-07-14T08:55:59-0500","THEODORE STRACK",,,,,3,3,,,3,,3,3,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715081847P030094022513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RBC- U.S.A. RETIREMENT AND SAVINGS PLAN","003","1973-06-05","RBC USA HOLDCO CORPORATION",,,"60 SOUTH SIXTH STREET",,"MINNEAPOLIS","MN","55402",,,,,,,"60 SOUTH SIXTH STREET",,"MINNEAPOLIS","MN","55402",,,,,,,"411228350","6123712922","523120","RBC USA HOLDCO CORPORATION",,"60 SOUTH SIXTH STREET",,"MINNEAPOLIS","MN","55402",,,,,,,"411228350","6123712922","RBC CAPITAL MARKETS","411228350","003","2011-07-15T08:16:45-0500","NDIKUM CHI",,,,,18033,13173,264,4094,17531,83,17614,15719,888,,"2E2F2G2J2K2O2R2S2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715081943P040014203282001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"EMERALD PERFORMANCE MATERIALS HEALTH & WELFARE PLAN","503","2006-01-01","EMERALD PERFORMANCE MATERIALS, LLC",,,"2020 FRONT ST. STE 100",,"CUYAHOGA FALLS","OH","442213215",,,,,,,,,,,,,,,,,,"204419928","3309166721","325100","EMERALD PERFORMANCE MATERIALS, LLC",,"2020 FRONT ST. STE 100",,"CUYAHOGA FALLS","OH","442213215",,,,,,,"204419928","3309166721",,,,"2011-07-15T08:19:36-0500","JONATHAN A FEDAK",,,,,607,531,16,0,547,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715083850P040096614609002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GEORGE I E HARRIS BLOODSTOCK ASSOC INC PROFIT SHAR PLAN & TRUST","002","1998-01-01","GEORGE I E HARRIS BLOODSTOCK ASSOCIATES, INC",,,"PO BOX 926",,"UNIONVILLE","PA","19375",,,,,,,"276 KENNETT PIKE",,"CHADDS FORD","PA","19317",,,,,,,"132903507","6103880936","115210","GEORGE I E HARRIS BLOODSTOCK ASSOCIATES, INC",,"PO BOX 926",,"UNIONVILLE","PA","19375",,,,,,,"132903507","6103880936",,,,"2011-06-30T04:11:48-0500","GEORGE I E HARRIS",,,"2011-06-30T04:11:48-0500","W C FENSTERMACHER, JR",2,2,,,2,,2,2,,,"2C2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110715204752P040096994497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DOBBS STANFORD CORPORATION PROFIT SHARING PLAN","001","1985-11-01","DOBBS STANFORD CORPORATION",,,"2715 ELECTRONIC LANE",,"DALLAS","TX","75220",,,,,,,,,,,,,,,,,,"751333567","2143504222","423600","DOBBS STANFORD CORPORATION",,"2715 ELECTRONIC LANE",,"DALLAS","TX","75220",,,,,,,"751333567","2143504222",,,,"2011-07-15T20:47:45-0500","JAMES F. DOBBS",,,,,44,42,0,3,45,0,45,45,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715084915P040437518592001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JENNIE-O TURKEY STORE LONG TERM DISABILITY PLAN","507","1977-10-01","JENNIE-O TURKEY STORE",,,"PO BOX 778",,"WILLMAR","MN","56201",,,,,,,"2505 WILLMAR AVENUE SW",,"WILLMAR","MN","56201",,,,,,,"410734466","3202352622","311610","JENNIE-O-TURKEY STORE",,"2505 WILLMAR AV SW",,"WILLMAR","MN","56201",,,,,,,"410734466","3202352622",,,,"2011-07-14T07:35:53-0500","PATRICIA SOLHEID",,,,,5393,5493,0,0,5493,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715121618P040030291543001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J.W. SPEAKER CORPORATION SECTION 105 HRA","503","2008-01-01","J.W. SPEAKER CORPORATION",,,"P O BOX 1011","W185 N11315 WHITNEY DR","GERMANTOWN","WI","530228011",,,,,,,,,,,,,,,,,,"390626040","2625322101","541110","J.W. SPEAKER CORPORATION",,"P O BOX 1011","W185 N11315 WHITNEY DR","GERMANTOWN","WI","530228011",,,,,,,"390626040","2625322101",,,,"2011-07-15T12:14:28-0500","JAMES SPEAKER",,,,,185,190,,,190,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715123620P030094132401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIFE INSURANCE PLAN","502","1965-07-01","DES MOINES UNIVERSITY - OSTEOPATHIC MEDICAL CENTER","DES MOINES UNIVERSITY","MARK PEIFFER","3200 GRAND AVENUE",,"DES MOINES","IA","503124198",,,,,,,"3200 GRAND AVENUE",,"DES MOINES","IA","503124198",,,,,,,"420730347","5152711475","611000","DES MOINES UNIVERSITY - OSTEOPATHIC MEDICAL CENTER","MARK PEIFFER","3200 GRAND AVENUE",,"DES MOINES","IA","503124198",,,,,,,"420730347","5152711475",,,,"2011-07-15T11:44:26-0500","MARK PEIFFER",,,,,234,226,,,226,,226,,,,,"4B4F4H","1","0",,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715142206P030442412608001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DIRNE COMMUNITY HEALTH CENTER 401(K) PLAN","001","2008-01-01","DIRNE COMMUNITY HEALTH CENTER",,,"P.O. BOX 3648",,"COEUR DALENE","ID","83816",,,,,,,,,,,,,,,,,,"943036820","2082920682","812990","DIRNE COMMUNITY HEALTH CENTER",,"P.O. BOX 3648",,"COEUR DALENE","ID","83816",,,,,,,"943036820","2082920682",,,,"2011-07-15T14:21:53-0500","PAMELA BACKMAN",,,,,10,8,0,8,16,0,16,16,2,,"2E2F2G2J2K3D3H2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715131044P030442239424001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STRUCTURED DECISIONS CORPORATION MONEY PURCHASE PENSION PLAN AND TRUST","333","2001-01-01","STRUCTURED DECISIONS CORPORATION","STURCTURED DECISIONS CORPORATION",,"1105 WASHINGTON STREET",,"WEST NEWTON","MA","02465",,,,,,,"1105 WASHINGTON STREET",,"WEST NEWTON","MA","02465",,,,,,,"043537950","6172441662","541600","MICHAEL F. CAHN & JAMES M. TIEN",,"1105 WASHINGTON STREET",,"WEST NEWTON","MA","02465",,,,,,,"043537950","6172441662",,,,"2011-07-15T13:10:27-0500","ROBERT SCULLY",,,,,6,6,0,0,6,0,6,0,0,6,"2C2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715101140P040014214818001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONNING HEALTH AND WELFARE PLANS","501","2009-09-15","CONNING & COMPANY",,,"ONE FINANCIAL PLAZA",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061174588","8602992000","523120","CONNING & COMPANY",,"ONE FINANCIAL PLAZA",,"HARTFORD","CT","06103",,,,,,,"061174588","8602992000",,,,"2011-07-15T10:11:34-0500","LAURIE ROBINSON",,,,,231,245,3,0,248,,,,,,,"4A4B4D4E4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715102516P040096678257001","2010-02-01","2011-01-31","2",,,,,,,,,,,,"MARS STEEL CORP PROFIT SHARING AND SAVINGS PLAN","001","1977-02-07","MARS STEEL CORP",,,"2401 N. 25TH AVE.",,"FRANKLIN PARK","IL","601313322",,,,,,,,,,,,,,,,,,"362837444","8474556277","423500","MARS STEEL CORP",,"2401 N. 25TH AVE.",,"FRANKLIN PARK","IL","601313322",,,,,,,"362837444","8474556277",,,,"2011-07-15T10:46:21-0500","LAURENCE B STRAUS","2011-07-15T10:46:39-0500","LAURENCE B STRAUS",,,6,6,,,6,,6,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715070018P030441455328001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MCHC, INC GROUP LIFE AND HEALTH INSURANCE","506","2000-01-01","MCHC, INC",,,"206 JONES BLVD",,"POTTSTOWN","PA","194643465",,,,,,,,,,,,,,,,,,"800263639","6104950110","334200","MCHC, INC",,"206 JONES BLVD",,"POTTSTOWN","PA","194643465",,,,,,,"800263639","6104950110",,,,"2011-07-15T07:00:08-0500","PATRICK M. DALY",,,,,186,0,0,0,0,,,,,,,"4A4B4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715130046P040438120320004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CELEBRATION FOODS EMPLOYEE HEALTH AND WELFARE PLAN","501","2008-07-01","CF FOODS LLC",,,"ONE CELEBRATION WAY",,"NEW BRITAIN","CT","06053",,,,,,,,,,,,,,,,,,"264823111","8608278000","311500","CF FOODS LLC",,"ONE CELEBRATION WAY",,"NEW BRITAIN","CT","06053",,,,,,,"264823111","8608278000",,,,"2011-07-15T08:46:02-0500","THOM GILDAY",,,,,382,430,8,,438,,438,,,,,"4Q4H4E4D4B4A","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715131902P030029518983001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GODDARD COLLEGE SECTION 125 PLAN","501","1991-11-15","GODDARD COLLEGE",,,"123 PITKIN ROAD",,"PLAINFIELD","VT","056679432",,,,,,,,,,,,,,,,,,"030179419","8024548311","611000","GODDARD COLLEGE",,"123 PITKIN ROAD",,"PLAINFIELD","VT","056679432",,,,,,,"030179419","8024548311",,,,"2011-07-15T13:01:41-0500","PAM KINNIBURGH",,,,,207,200,0,0,200,,,,,,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715135801P040014237874001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"POWEREX PROFIT SHARING & SAVINGS PLAN FOR REPRESENTED EMPLOYEES","003","1986-01-01","POWEREX, INC.",,,"173 PAVILION LANE",,"YOUNGWOOD","PA","15697",,,,,,,,,,,,,,,,,,"251501339","7249254457","334410","POWEREX, INC.",,"173 PAVILION LANE",,"YOUNGWOOD","PA","15697",,,,,,,"251501339","7249254457",,,,"2011-07-15T13:56:51-0500","ROBERT DRAKE",,,,,230,205,0,24,229,0,229,209,10,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715113434P030442026112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TALECRIS PLASMA RESOURCES, INC. GROUP BENEFIT PLAN FOR HOURLY","503","2007-01-01","TALECRIS BIOTHERAPEUTICS HOLDINGS C ORPORATION",,,"4101 RESEARCH COMMONS","79 TW ALEXANDER DRIVE","RESEARCH TRIANGLE PARK","NC","27709",,,,,,,,,,,,,,,,,,"202533768","9193166300","621510","TALECRIS BIOTHERAPEUTICS HOLDINGS C ORPORATION",,"4101 RESEARCH COMMONS","79 TW ALEXANDER DRIVE","RESEARCH TRIANGLE PARK","NC","27709",,,,,,,"202533768","9193166300",,,,"2011-07-14T17:51:45-0500","KARI HEERDT",,,,,949,684,2,0,686,0,,,,,,"4A4D4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715094643P040096659969001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LADDER INDUSTRIES, INC. PROFIT SHARING PLAN AND TRUST","001","1981-01-01","LADDER INDUSTRIES",,,"1040 SOUTH CAMINO ORO",,"GOODYEAR","AZ","853381417",,,,,,,,,,,,,,,,,,"952127725","6239325798","332300","LADDER INDUSTRIES",,"1040 SOUTH CAMINO ORO",,"GOODYEAR","AZ","853381417",,,,,,,"952127725","6239325798",,,,"2011-07-15T09:46:28-0500","MICHAEL ARNEY",,,,,24,20,0,3,23,0,23,23,1,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715100209P040096667153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DICK PECK AGENCY, INC PROFIT SHARING PLAN AND TRUST","001","1997-01-01","DICK PECK AGENCY",,,"217 E. 10TH STREET",,"ANDERSON","IN","46015",,,,,,,,,,,,,,,,,,"351100515","7656442591","531390","DICK PECK AGENCY",,"217 E. 10TH STREET",,"ANDERSON","IN","46015",,,,,,,"351100515","7656442591",,,,"2011-07-15T10:02:00-0500","TERRY L FREEMAN",,,,,2,2,0,0,2,0,2,2,0,,"3D2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715121836P040016044902001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"WASHINGTON AND LEE UNIVERSITY DENTAL PLAN","507","2001-01-01","WASHINGTON AND LEE UNIVERSITY",,,"204 W WASHINGTON ST",,"LEXINGTON","VA","244502122",,,,,,,,,,,,,,,,,,"540505977","5404588920","611000","WASHINGTON AND LEE UNIVERSITY",,"204 W WASHINGTON ST",,"LEXINGTON","VA","244502122",,,,,,,"540505977","5404588920",,,,"2011-07-15T12:18:30-0500","AMY DIAMOND BARNES",,,,,723,0,0,0,0,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715101257P040014215026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIDAMERICA NATIONAL BANK 401(K) PLAN","002","1984-01-01","MIDAMERICA NATIONAL BANK",,,"100 WEST ELM STREET",,"CANTON","IL","61520",,,,,,,,,,,,,,,,,,"370435170","3096475000","522110","MIDAMERICA NATIONAL BANK",,"100 WEST ELM STREET",,"CANTON","IL","61520",,,,,,,"370435170","3096475000",,,,"2011-07-15T10:11:04-0500","JAN DOWELL","2011-07-15T10:11:04-0500","JAN DOWELL",,,145,98,0,36,134,0,134,118,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715104439P040096689201001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"SACHEM, INC. EMPLOYEES PROFIT SHARING PLAN","001","1991-01-01","SACHEM, INC.",,,"821 E. WOODWARD ST.",,"AUSTIN","TX","78704",,,,,,,"821 E. WOODWARD ST.",,"AUSTIN","TX","78704",,,,,,,"742286932","5124443626","325900","SACHEM, INC.",,"821 E. WOODWARD ST.",,"AUSTIN","TX","78704",,,,,,,"742286932","5124443626",,,,"2011-07-15T09:42:28-0500","LINDA MASHBURN","2011-07-15T09:43:40-0500","RON MORSE",,,155,131,0,20,151,0,151,142,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715163236P040096887153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HUYCKE, O'CONNOR JARVIS & LOHMAN, LLP 401(K) PROFIT SHARING PLAN","001","1981-05-19","HUYCKE, OCONNOR JARVIS & LOHMAN, LLP",,,"823 ALDER CREEK DRIVE",,"MEDFORD","OR","975048900",,,,,,,,,,,,,,,,,,"931254813","5417721977","541110","HUYCKE, OCONNOR JARVIS & LOHMAN, LLP",,"823 ALDER CREEK DRIVE",,"MEDFORD","OR","975048900",,,,,,,"931254813","5417721977",,,,"2011-07-15T16:32:36-0500","PATRICK G. HUYCKE",,,,,11,9,0,0,9,0,9,9,0,,"2E2F2G2J2K2R3B3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715163937P040096888913001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","1","0","0","0",,"DNV GLOBAL ENERGY CONCEPTS, INC. 401K PLAN","001","2000-01-01","DNV GLOBAL ENERGY CONCEPTS, INC.",,,"1809 7TH AVENUE, SUITE 900",,"SEATTLE","WA","981011330",,,,,,,,,,,,,,,,,,"262535197","2063874215","541330","DNV GLOBAL ENERGY CONCEPTS, INC.",,"1809 7TH AVENUE, SUITE 900",,"SEATTLE","WA","981011330",,,,,,,"262535197","2063874215",,,,"2011-07-15T16:39:07-0500","ROBERT POORE",,,,,125,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715151431P030094214289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THORN HILL GROUP, INC. HEALTH PLAN","501","1988-01-01","MAILING SERVICES OF PITTSBURGH, INC.",,,"155 COMMERCE DRIVE",,"FREEDOM","PA","150429201",,,,,,,"155 COMMERCE DRIVE",,"FREEDOM","PA","150429201",,,,,,,"251202618","7247743244","323100","MAILING SERVICES OF PITTSBURGH, INC.",,"155 COMMERCE DRIVE",,"FREEDOM","PA","150429201",,,,,,,"251202618","7247743244",,,,"2011-07-15T12:28:58-0500","LAURA BUCK",,,,,251,449,,,449,,449,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715105029P040014218882001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHEMPRENE EMPLOYEE BENEFITS PLAN","501","1993-11-01","CHEMPRENE INC.",,,"483 FISHKILL AVENUE",,"BEACON","NY","12508",,,,,,,,,,,,,,,,,,"050474006","8458312800","326200","CHEMPRENE INC.",,"483 FISHKILL AVENUE",,"BEACON","NY","12508",,,,,,,"050474006","8458312800",,,,"2011-07-15T10:50:02-0500","KATIE SENS",,,,,100,103,0,0,103,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715105207P040096693649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED PLANNING ORGANIZATION HEALTH AND WELFARE PLAN","501","2005-01-01","UNITED PLANNING ORGANIZATION",,,"301 RHODE ISLAND AVE NW",,"WASHINGTON","DC","200011826",,,,,,,,,,,,,,,,,,"520788987","2022384715","624200","UNITED PLANNING ORGANIZATION",,"301 RHODE ISLAND AVE NW",,"WASHINGTON","DC","200011826",,,,,,,"520788987","2022384715",,,,"2011-07-15T10:51:06-0500","ROSALIND PINKNEY",,,,,359,369,3,0,372,,372,,,,,"4A4B4D4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715110944P040437859168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RUTLAND COUNTY COMMUNITY SERVICES , INC. MEDICAL PLAN","505","2010-01-01","RUTLAND COUNTY COMMUNITY SERVICES",,,"PO BOX 222",,"RUTLAND","VT","05702",,,,,,,"78 SOUTH MAIN ST.",,"RUTLAND","VT","05701",,,,,,,"030307810","8027754340","621330","RUTLAND COUNTY COMMUNITY SERVICES","LAWRENCE BALLOU","PO BOX 222",,"RUTLAND","VT","05702",,,,,,,"030307810","8027754340",,,,"2011-07-15T10:40:21-0500","LAWRENCE BALLOU",,,,,199,200,4,,204,,204,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715111027P040096705681001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"CENVEO 401K SAVINGS AND RETIREMENT PLAN","001","1994-03-01","CENVEO CORPORATION",,,"ONE CANTERBURY GREEN",,"STAMFORD","CT","06901",,,,,,,,,,,,,,,,,,"841250534","2035953000","322200","CENVEO CORPORATION",,"ONE CANTERBURY GREEN",,"STAMFORD","CT","06901",,,,,,,"841250534","2035953000",,,,"2011-07-15T09:17:34-0500","GINA GENUARIO",,,,,8770,8021,24,1790,9835,5,9840,7672,9,,"2E2F2G2J2K2S2T3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110714193430P030013673570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEBLANC AND CARPENTER, CPAS APC SAVINGS & RETIREMENT FUND","001","1984-07-01","LEBLANC AND CARPENTER, A CORPORATION OF CPAS",,,"PO BOX 3479",,"MORGAN CITY","LA","703813479",,,,,,,,,,,,,,,,,,"720960310","5043842630","541211","LEBLANC AND CARPENTER, A CORPORATION OF CPAS",,"PO BOX 3479",,"MORGAN CITY","LA","703813479",,,,,,,"720960310","5043842630",,,,"2011-07-14T19:31:45-0500","RICKY LEBLANC",,,,,7,7,0,0,7,0,7,7,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110715135942P040096803649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LENAPE VALLEY FOUNDATION WELFARE BENEFIT PLAN","501","1973-08-15","LENAPE VALLEY FOUNDATION",,,"500 NORTH WEST STREET",,"DOYLESTOWN","PA","18901",,,,,,,"500 NORTH WEST STREET",,"DOYLESTOWN","PA","18901",,,,,,,"231914438","2153455300","624100","LENAPE VALLEY FOUNDATION",,"500 NORTH WEST STREET",,"DOYLESTOWN","PA","18901",,,,,,,"231914438","2153455300",,,,"2011-07-15T13:59:35-0500","WALTER WOLANIUK JR",,,,,169,166,7,0,173,,,,,,,"4A4B4D4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715135947P030094169681001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PUTNAM FUNDS PROFIT SHARING PLAN OF WAYNE WUEBBELS & ASSOCIATES","002","1989-01-01","WAYNE WUEBBELS","WAYNE WUEBBELS & ASSOCIATES",,"BOX 186","307 FRANKLIN","SCALES MOUND","IL","61075",,,,,,,"BOX 186","307 FRANKLIN","SCALES MOUND","IL","61075",,,,,,,"363011369","8158452625","541211","WAYNE WUEBBELS",,"BOX 186","307 FRANKLIN","SCALES MOUND","IL","61075",,,,,,,"363011369","8158452625",,,,"2011-07-15T13:59:10-0500","WAYNE WUEBBELS",,,,,1,0,0,0,0,0,0,0,0,,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715135951P030094169777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAY ELECTRIC FLEXIBLE BENEFITS PLAN","501","1991-01-01","JAY ELECTRIC COMPANY INC",,,"600 6TH AVE",,"DOCENA","AL","36060",,,,,,,,,,,,,,,,,,"631151736","2055959910","811310","JAY ELECTRIC COMPANY INC",,"600 6TH AVE",,"DOCENA","AL","36060",,,,,,,"631151736","2055959910",,,,"2011-07-15T13:20:06-0500","GARY WOOD",,,,,145,137,0,0,137,,,,,,,"4A4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715141732P030442400560001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEXINGTON HOME BRANDS WELFARE BENEFIT PLAN","507","2002-04-13","LEXINGTON HOME BRANDS",,,"1300 NATIONAL HIGHWAY",,"THOMASVILLE","NC","27360",,,,,,,,,,,,,,,,,,"560201940","3364745300","337000","LEXINGTON HOME BRANDS",,"1300 NATIONAL HIGHWAY",,"THOMASVILLE","NC","27360",,,,,,,"560201940","3364745300",,,,"2011-07-15T14:17:24-0500","CRAIG SPOONER",,,,,258,221,1,0,222,,,,,,,"4A4B4D4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715151521P030094214625001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"OPHTHALMIC CONSULTANTS OF BOSTON, INC. HEALTH, WELFARE,& BENEFITS PLAN","501","2003-01-01","OPHTHALMIC CONSULTANTS OF BOSTON, INC.",,,"50 STANIFORD STREET",,"BOSTON","MA","02114",,,,,,,,,,,,,,,,,,"042500346","6173142777","621111","OPHTHALMIC CONSULTANTS OF BOSTON, INC.",,"50 STANIFORD STREET",,"BOSTON","MA","02114",,,,,,,"042500346","6173142777",,,,"2011-07-14T09:28:14-0500","LISA BARNES","2011-07-14T09:28:14-0500","LISA BARNES",,,392,391,,,391,,391,,,,,"4A4B4D4F4H","1",,"1",,"1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715090530P040437555008001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IMPACT CONSUMER RESEARCH, LLC 401(K) PLAN","001","2008-10-01","IMPACT CONSUMER RESEARCH, LLC",,,"3940 OLYMPIC BOULEVARD","400 OLYMPIC CORPORATE CENTER","ERLANGER","KY","41018",,,,,,,,,,,,,,,,,,"202132114","8593726690","541910","IMPACT CONSUMER RESEARCH, LLC",,"3940 OLYMPIC BOULEVARD","400 OLYMPIC CORPORATE CENTER","ERLANGER","KY","41018",,,,,,,"202132114","8593726690",,,,"2011-07-15T08:55:25-0500","DONALD MORRISON",,,,,7,7,0,0,7,0,7,6,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715091917P040437587280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SIMS ELECTRIC SERVICE, INC. EMPLOYEE BENEFIT PLAN","001","1976-05-15","SIMS ELECTRIC SERVICE, INC.",,,"331 PARKSHORE DR",,"BATTLE CREEK","MI","490148200",,,,,,,,,,,,,,,,,,"382719813","2699637910","238210","SIMS ELECTRIC SERVICE, INC.",,"331 PARKSHORE DR",,"BATTLE CREEK","MI","490148200",,,,,,,"382719813","2699637910",,,,"2011-07-15T09:18:30-0500","A. CARLYLE SIMS III","2011-07-15T09:18:30-0500","A. CARLYLE SIMS III",,,11,6,0,3,9,0,9,8,0,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715120008P030094115169003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CAPITAL GAINS, INC. PROFIT SHARING PLAN","002","1998-01-01","CAPITAL GAINS, INC.",,,"8060 W OAKTON SUITE 102",,"NILES","IL","60714",,,,,,,,,,,,,,,,,,"363821789","8476476417","523900","CAPITAL GAINS, INC.",,"8060 W OAKTON SUITE 102",,"NILES","IL","60714",,,,,,,"363821789","8476476417",,,,"2011-07-15T12:04:58-0500","GARY E. KARSHNA",,,,,2,1,0,1,2,0,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110714170716P030093640161001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PAPA MURPHYS HEALTHCARE PLAN","501","1998-11-01","PAPA MURPHYS INTERNATIONAL, LLC",,,"8000 NE PARKWAY DR","STE 350","VANCOUVER","WA","98662",,,,,,,,,,,,,,,,,,"201282063","3602607272","445299","PAPA MURPHYS INTERNATIONAL, LLC",,"8000 NE PARKWAY DR","STE 350","VANCOUVER","WA","98662",,,,,,,"201282063","3602607272",,,,"2011-07-14T17:06:58-0500","MARYELLEN MECH",,,,,155,159,12,0,171,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110715143055P030013754018001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ECONOMIC CONCEPTS, INC. PROFIT SHARING PLAN","001","1982-01-01","ECONOMIC CONCEPTS, INC.",,,"1790 PHILADELPHIA ST",,"INDIANA","PA","157011501",,,,,,,,,,,,,,,,,,"251612227","7243495421","524210","ECONOMIC CONCEPTS, INC.",,"1790 PHILADELPHIA ST",,"INDIANA","PA","157011501",,,,,,,"251612227","7243495421",,,,"2011-07-15T14:10:49-0500","RICHARD CHURA",,,,,5,3,0,2,5,0,5,5,0,,"2E",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715160707P030094245505008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WALSER AUTOMOTIVE GROUP, LLC HEALTH PLAN","503","1988-12-01","WALSER AUTOMOTIVE GROUP, LLC",,,"4401 AMERICAN BLVD. W.",,"BLOOMINGTON","MN","55437",,,,,,,,,,,,,,,,,,"522436225","9529293535","441110","WALSER AUTOMOTIVE GROUP, LLC",,"4401 AMERICAN BLVD. W.",,"BLOOMINGTON","MN","55437",,,,,,,"522436225","9529293535",,,,"2011-07-15T11:03:51-0500","PAUL WALSER",,,,,783,780,,,780,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715093717P040096651249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEWEDGE USA, LLC LIFE/AD & D, SUPPLEMENTAL, DEPENDENT LIFE, DISABILITY, AND DENTAL PLAN","504","1998-01-01","NEWEDGE USA, LLC",,,"550 W. JACKSON BOULEVARD SUITE 500",,"CHICAGO","IL","606615716",,,,,,,,,,,,,,,,,,"363620984","6465578475","523140","NEWEDGE USA, LLC",,"550 W. JACKSON BOULEVARD SUITE 500",,"CHICAGO","IL","606615716",,,,,,,"363620984","6465578475",,,,"2011-07-15T09:37:09-0500","FELICIA ELIAS",,,,,2785,986,48,0,1034,,,,,,,"4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715093830P030441755920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST BANK & TRUST COMPANY OF FULLERTON PROFIT SHARING PLAN","002","1988-01-01","FIRST BANK & TRUST COMPANY OF FULLERTON",,,"230 BROADWAY",,"FULLERTON","NE","68638",,,,,,,,,,,,,,,,,,"470162360","3085362492","522110","FIRST BANK & TRUST COMPANY OF FULLERTON",,"230 BROADWAY",,"FULLERTON","NE","68638",,,,,,,"470162360","3085362492",,,,"2011-07-15T09:36:16-0500","GARY NORTHRUP","2011-07-15T09:36:16-0500","GARY NORTHRUP",,,25,18,0,7,25,0,25,24,0,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715094803P030441776464001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"THE INDIANA COMPANIES EMPLOYEE 401(K) PLAN","003","1990-07-01","INDIANA FURNITURE INDUSTRIES",,,"PO BOX 270",,"JASPER","IN","475470270",,,,,,,,,,,,,,,,,,"350408870","8124825727","337000","INDIANA FURNITURE INDUSTRIES",,"PO BOX 270",,"JASPER","IN","475470270",,,,,,,"350408870","8124825727",,,,"2011-07-15T09:47:58-0500","NANCY WILSON","2011-07-15T09:47:58-0500","NANCY WILSON",,,338,260,0,16,276,0,276,268,41,,"2E2F2G2J2K2T",,"1",,,,"1",,,,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715142545P030442421984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROFIT SHARING PLAN FOR RIVER VALLEY BANCORPORATION, INC AND RELATED EMPLOYERS","001","1986-01-01","RIVER VALLEY BANCORPORATION, INC.",,,"327 NORTH 17TH AVENUE","PO BOX 777","WAUSAU","WI","544020777",,,,,,,,,,,,,,,,,,"391440245","7153481417","522110","RIVER VALLEY BANCORPORATION, INC.",,"327 NORTH 17TH AVENUE","PO BOX 777","WAUSAU","WI","544020777",,,,,,,"391440245","7153481417",,,,"2011-07-15T14:23:15-0500","DEBORAH CYRTMUS",,,,,343,244,23,43,310,0,310,309,30,,"2E2F2G2J2K2S2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715130543P030094142657001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"LAW OFFICE OF ROBERT W BURNETT LTD U/ADTD1-1-97","001","1997-01-01","LAW OFFICE OF ROBERT W BURNETT LTD",,"ROBERT BURNETT","1776 LEGACY CIRCLE","SUITE 116","NAPERVILLE","IL","60563",,,,,,,"1776 LEGACY CIRCLE","SUITE 116","NAPERVILLE","IL","60563",,,,,,,"363637768","6303558686","541110","LAW OFFICE OF ROBERT W BURNETT LTD","ROBERT BURNETT","1776 LEGACY CIRCLE","SUITE 116","NAPERVILLE","IL","60563",,,,,,,"363637768","6303558686",,,,"2011-07-15T13:01:09-0500","ROBERT BURNETT",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D",,,,,"1",,,,,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715101509P030094075521003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BAY CORPORATION PROFIT SHARING PLAN & TRUST","001","1982-12-27","BAY CORPORATION",,,"867 CANTERBURY ROAD",,"WESTLAKE","OH","44145",,,,,,,,,,,,,,,,,,"341278670","4408352212","339110","BROOKS HULL",,"867 CANTERBURY ROAD",,"WESTLAKE","OH","44145",,,,,,,"341278670",,,,,"2011-07-14T16:01:40-0500","BROOKS HULL","2011-07-14T16:01:42-0500","BROOKS HULL",,,33,31,0,0,31,0,31,31,3,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715124507P040438085984001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PIEDMONT EYE ASSOCIATES PROFIT SHARING PLAN AND TRUST","001","1990-01-01","PIEDMONT EYE ASSOCIATES",,,"1330 BOILING SPRINGS RD, STE 2400",,"SPARTANBURG","SC","29303",,,,,,,,,,,,,,,,,,"570902982","8645835812","621111","PIEDMONT EYE ASSOCIATES",,"1330 BOILING SPRINGS RD, STE 2400",,"SPARTANBURG","SC","29303",,,,,,,"570902982","8645835812",,,,"2011-07-15T12:33:06-0500","DAVID P. BERRY","2011-07-15T12:33:34-0500","DAVID P. BERRY",,,1,1,0,0,1,0,1,1,,,"2F2E2A2G2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715125905P040096769633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ICE SERVICES HEALTH AND WELFARE PLAN","501","1996-01-01","ICE SERVICES INC.",,,"2606 C STREET, SUITE 2B",,"ANCHORAGE","AK","99503",,,,,,,,,,,,,,,,,,"920119303","9076440385","722300","ICE SERVICES INC.",,"2606 C STREET, SUITE 2B",,"ANCHORAGE","AK","99503",,,,,,,"920119303","9076440385",,,,"2011-07-15T12:59:01-0500","WANDRA NABORS",,,,,133,169,1,0,170,,,,,,,"4A4B4D4E4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715125910P040096769665001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","1","0","0","0",,"GOOD SAMARITAN TAX SHELTERED ANNUITY","001","1968-10-01","GOOD SAMARITAN HOSPITAL",,,"P O BOX 5299 MS 603-1-HR",,"TACOMA","WA","984150299",,,,,,,,,,,,,,,,,,"910961134","2534031306","622000","MULTICARE HEALTH SYSTEM RETIREMENT COMMITTEE","WILLIAM GREENHECK","PO BOX 5299 MAILSTOP 603-1-HR",,"TACOMA","WA","98415",,,,,,,"911352172","2534031306",,,,"2011-07-15T12:59:01-0500","WILLIAM GREENHECK","2011-07-15T12:59:01-0500","WILLIAM GREENHECK",,,2462,,,,0,,0,,,,"2G2L2M2R",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","4","1","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715130008P040438118912003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JUDITH ROCHLIN MONEY PURCHASE","002","1988-12-31","JUDITH ROCHLIN",,,"3283 GREENFIELD AVE",,"LOS ANGELES","CA","90034",,,,,,,,,,,,,,,,,,"954162992","3104736208","541110","JUDITH ROCHLIN",,"3282 GREENFIELD AVE",,"LOS ANGELES","CA","90034",,,,,,,"954162992","3104736208",,,,"2011-07-14T15:36:43-0500","JUDITH ROCHLIN","2011-07-14T15:36:58-0500","JUDITH ROCHLIN",,,1,1,0,0,1,0,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714160444P030093611553001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"KENNETH RODRIGUES & PARTNERS, INC. PROFIT SHARING PLAN","001","1987-04-01","KENNETH RODRIGUES & PARTNERS, INC.",,,"445 N. WHISMAN ROAD, SUITE 200",,"MOUNTAIN VIEW","CA","940432111",,,,,,,,,,,,,,,,,,"770118200","6509650700","541310","KENNETH RODRIGUES & PARTNERS, INC.",,"445 N. WHISMAN ROAD, SUITE 200",,"MOUNTAIN VIEW","CA","940432111",,,,,,,"770118200","6509650700",,,,"2011-07-14T16:04:44-0500","KENNETH A. RODRIGUES",,,,,7,6,0,0,6,0,6,6,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110715134616P030094161857004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MCANGUS, GOUDELOCK & COURIE, LLC EMPLOYEE WELFARE PLAN","501","2003-01-01","MCANGUS, GOUDELOCK & COURIE, LLC",,,"1320 MAIN STREET, 10TH FLOOR",,"COLUMBIA","SC","29201",,,,,,,"1320 MAIN STREET, 10TH FLOOR",,"COLUMBIA","SC","29201",,,,,,,"571016548","8037792300","541110","MCANGUS, GOUDELOCK & COURIE, LLC",,"1320 MAIN STREET, 10TH FLOOR",,"COLUMBIA","SC","29201",,,,,,,"571016548","8037792300",,,,"2011-07-01T06:03:15-0500","TAMMY FLOWERS",,,,,262,281,,,281,,,,,,,"4A4B4D4F4H4Q",,,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715161231P030094247809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OUTLOOK GROUP CORP. 401(K) SAVINGS PLAN","001","1986-01-01","OUTLOOK GROUP CORP.",,,"1180 AMERICAN DRIVE",,"NEENAH","WI","54956",,,,,,,,,,,,,,,,,,"391278569","9207278528","323100","OUTLOOK GROUP CORP.",,"1180 AMERICAN DRIVE",,"NEENAH","WI","54956",,,,,,,"391278569","9207278528",,,,"2011-07-15T16:10:40-0500","DANA GILMAN","2011-07-15T16:10:40-0500","DANA GILMAN",,,461,339,4,72,415,1,416,337,2,,"2E2G2J2K2T3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715155036P030029556327001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DON STOCKLEY TRUCKING 401(K) PLAN","001","1994-07-01","DONALD L. STOCKLEY","DON STOCKLEY TRUCKING, LLC",,"3995 S. 300 WEST",,"SALT LAKE CITY","UT","841071408",,,,,,,"3995 S. 300 WEST",,"SALT LAKE CITY","UT","841071408",,,,,,,"870368150","8012652220","484120","DONALD L. STOCKLEY",,"3995 S. 300 WEST",,"SALT LAKE CITY","UT","841071408",,,,,,,"870368150","8012652220",,,,"2011-07-15T09:06:25-0500","BOYD FROST","2011-07-15T09:06:37-0500","PAULA JACOBUS",,,19,19,0,0,19,0,19,19,0,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715184705P030094319057001","2008-10-01","2009-09-30","2",,"0","1","0","0","0","0","0","0","0",,"MARIE M. GRABILL PENSION PLAN","002","2007-10-01","MARIE M. GRABILL",,,"315 PENNSYLVANIA AVENUE",,"LOS GATOS","CA","95030",,,,,,,"315 PENNSYLVANIA AVENUE",,"LOS GATOS","CA","95030",,,,,,,"010690855","4083351444","531210","MARIE M. GRABILL",,"315 PENNSYLVANIA AVENUE",,"LOS GATOS","CA","95030",,,,,,,"010690855","4083351444",,,,"2011-07-15T18:44:58-0500","MARIE GRABILL",,,,,4,4,0,0,4,0,4,,,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715092056P040014209074001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ORTHOSPINE GROUP RETIREMENT PLAN","001","2006-01-01","YAMIL C. RIVERA COLON",,,"P.O. BOX 1516",,"SABANA SECA","PR","009521516",,,,,,,"P.O. BOX 1516",,"SABANA SECA","PR","009521516",,,,,,,"660677056","7877721007","621399","YAMIL C. RIVERA COLON",,"P.O. BOX 1516",,"SABANA SECA","PR","009521516",,,,,,,"660677056","7877721007","YAMIL RIVERA CRUZ","999999999","001","2011-07-15T09:04:13-0500","YAMIL RIVERA","2011-07-15T09:04:13-0500","YAMIL RIVERA",,,2,4,0,0,4,0,4,4,0,,"2C2E3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715135535P040438256768001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","1","0","0","0",,"STRATIFY, INC. 401(K) PLAN","001","2000-01-01","STRATIFY, INC.",,,"501 ELLIS STREET",,"MOUNTAIN VIEW","CA","94043",,,,,,,,,,,,,,,,,,"770518096","6502102734","511210","STRATIFY, INC.",,"501 ELLIS STREET",,"MOUNTAIN VIEW","CA","94043",,,,,,,"770518096","6502102734",,,,"2011-07-15T13:55:15-0500","MATTHEW REGAN","2011-07-15T13:55:15-0500","MATTHEW REGAN",,,183,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110715165442P030442752288001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DESIGNER BLINDS HEALTH PLAN","503","2001-01-01","DESIGNER BLINDS",,,"4500 S. 76TH CIRCLE",,"OMAHA","NE","681270459",,,,,,,,,,,,,,,,,,"470732639","4023312283","337000","DESIGNER BLINDS",,"4500 S. 76TH CIRCLE",,"OMAHA","NE","681270459",,,,,,,"470732639","4023312283",,,,"2011-07-15T16:54:16-0500","DIANE MACH","2011-07-15T16:54:16-0500","DIANE MACH",,,81,77,2,0,79,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714141440P030439550080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CCMP CAPITAL ADVISORS, LLC 401(K) PLAN","001","2006-08-01","CCMP CAPITAL ADVISORS, LLC",,,"245 PARK AVENUE, 16TH FLOOR",,"NEW YORK","NY","10167",,,,,,,,,,,,,,,,,,"204749169","2126009636","523900","CCMP CAPITAL ADVISORS, LLC",,"245 PARK AVENUE, 16TH FLOOR",,"NEW YORK","NY","10167",,,,,,,"204749169","2126009636",,,,"2011-07-14T14:01:20-0500","MARC UNGER",,,,,64,51,0,8,59,1,60,56,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714135701P030093525233001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SELF EMPLOYED 401K(413-133507)","413","2010-01-01","SYSOLVIT INC","SYSOLVIT INC","SRINIVAS NANDAMURI","22595 FORESTVIEW CT",,"ASHBURN","VA","20148",,,,,,,"22595 FORESTVIEW CT",,"ASHBURN","VA","20148",,,,,,,"271367763","7037239777","541511","SYSOLVIT INC","SRINIVAS NANDAMURI","22595 FORESTVIEW CT",,"ASHBURN","VA","20148",,,,,,,"271367763","7037239777",,,,"2011-07-14T13:56:06-0500","SRINIVAS NANDAMURI","2011-07-14T13:56:48-0500","SRINIVAS NANDAMURI",,,1,1,,,1,,1,1,0,,"2E","4Q",,,,"1",,,,"1","1",,,"0",,,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714171244P030093642241005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GILBERTO DE LA TORRE PROFIT SHARING PLAN","001","2009-11-19","DR. GILBERTO DE LA TORRE",,,"2121 E. FLAMINGO ROAD #206",,"LAS VEGAS","NV","89119",,,,,,,"2121 E. FLAMINGO ROAD #206",,"LAS VEGAS","NV","89119",,,,,,,"880228581","7023699100","621111","DR. GILBERTO DE LA TORRE",,"2121 E. FLAMINGO ROAD #206",,"LAS VEGAS","NV","89119",,,,,,,"880228581","7023699100",,,,"2011-07-14T09:40:55-0500","GILBERTO DE LA TORRE",,,,,0,4,,,4,,4,4,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714154219P030007955541001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOMBNESS TOOL CORP., EMPLOYEE SAVINGS PLAN","001","1994-01-01","LOMBNESS TOOL CORP.",,,"5170 NORTH 126TH STREET",,"BUTLER","WI","530071328",,,,,,,,,,,,,,,,,,"391033100","2627818385","333510","DOUG LOMBNESS",,"5170 NORTH 126TH STREET",,"BUTLER","WI","530071328",,,,,,,"391033100","2627818385",,,,"2011-07-14T15:30:18-0500","PAUL LOMBNESS",,,,,5,7,0,0,7,0,7,7,,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714174557P030093660321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LONG TERM DISABILITY PLAN","504","1988-09-01","THE DIXIE GROUP, INC.",,,"2208 SOUTH HAMILTON STREET",,"DALTON","GA","307214974",,,,,,,,,,,,,,,,,,"620183370","7068765806","314000","THE DIXIE GROUP, INC.",,"2208 SOUTH HAMILTON STREET",,"DALTON","GA","307214974",,,,,,,"620183370","7068765806",,,,"2011-07-14T15:07:18-0500","JEFFREY LASETER",,,,,527,494,0,0,494,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714145312P040096158145001","2005-06-01","2006-05-31","2",,"1","0","0","0","0","0","0","1","0",,"CAMBRIDGE COLLEGE LIFE PLAN","502","1997-02-01","CAMBRIDGE COLLEGE",,,"1000 MASSACHUSETTS AVENUE",,"CAMBRIDGE","MA","02138",,,,,,,"1000 MASSACHUSETTS AVENUE",,"CAMBRIDGE","MA","02138",,,,,,,"510163080","6178730287","611000","CAMBRIDGE COLLEGE",,"1000 MASSACHUSETTS AVENUE",,"CAMBRIDGE","MA","02138",,,,,,,"510163080","6178730287",,,,"2011-06-25T09:22:27-0500","KIM GAZZOLA",,,,,168,183,,,183,,183,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714151805P040435597184001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"CONNECTICUT MEDICAL INSURANCE COMPANY 401(K) SAVINGS PLAN","001","1988-09-01","CONNECTICUT MEDICAL INSURANCE COMPANY",,,"80 GLASTONBURY BLVD FLOOR 3",,"GLASTONBURY","CT","06033",,,,,,,"80 GLASTONBURY BLVD FLOOR 3",,"GLASTONBURY","CT","06033",,,,,,,"061117483","8606337788","524150","CONNECTICUT MEDICAL INSURANCE COMPANY",,"80 GLASTONBURY BLVD FLOOR 3",,"GLASTONBURY","CT","06033",,,,,,,"061117483","8606337788",,,,"2011-07-14T08:24:57-0500","EMMANUEL ZERVOS",,,,,33,28,0,4,32,0,32,31,0,,"2E2F2G2J2K2R2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714132641P030093504225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WELFARE BENEFIT PLAN OF THE COUNTRY CLUB OF VIRGINIA","501","1980-10-01","THE COUNTRY CLUB OF VIRGINIA, INC.",,,"6031 SAINT ANDREWS LANE",,"RICHMOND","VA","232263210",,,,,,,,,,,,,,,,,,"540181850","8042882891","713900","THE COUNTRY CLUB OF VIRGINIA, INC.",,"6031 SAINT ANDREWS LANE",,"RICHMOND","VA","232263210",,,,,,,"540181850","8042882891",,,,"2011-07-14T13:25:01-0500","STEPHANIE WINTERS",,,,,218,202,3,0,205,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714134144P040096126801001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TRAVIZON INC","501","1973-01-01","TRAVIZON INC",,,"275 MISHAWUM ROAD",,"WOBURN","MA","01801",,,,,,,,,,,,,,,,,,"042534609","8887815200","561500","TRAVIZON INC",,"275 MISHAWUM ROAD",,"WOBURN","MA","01801",,,,,,,"042534609","8887815200",,,,"2011-07-14T13:41:27-0500","MATTHEW CUMMINGS","2011-07-14T13:41:27-0500","MATTHEW CUMMINGS",,,224,257,,,257,,,,,,,"4A4D4B4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714162628P030093622273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JUICE PAC, INC. SAVINGS & RETIREMENT PLAN","001","1988-01-01","JUICE PAC, INC.",,,"5796 NASHVILLE ROAD",,"BOWLING GREEN","KY","42104",,,,,,,,,,,,,,,,,,"611123654","2707826863","339900","JUICE PAC, INC.",,"5796 NASHVILLE ROAD",,"BOWLING GREEN","KY","42104",,,,,,,"611123654","2707826863",,,,"2011-07-14T16:25:08-0500","NORRIS THOMAS",,,,,8,0,0,0,0,0,0,0,0,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714164058P030029339191001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMERALD HEALTH SERVICES WELFARE BENEFITS PLAN","501","2003-01-01","EMERALD HEALTH SERVICES",,,"4640 ADMIRALTY WAY, SUITE 600",,"MARINA DEL REY","CA","90292",,,,,,,,,,,,,,,,,,"954834686","8009175055","622000","EMERALD HEALTH SERVICES",,"4640 ADMIRALTY WAY, SUITE 600",,"MARINA DEL REY","CA","90292",,,,,,,"954834686","8009175055",,,,"2011-07-14T16:15:28-0500","HUMA JAVED",,,,,230,132,4,0,136,,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714144723P030093560593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAK ENTERPRISES, INC.","505","2009-10-01","DAK ENTERPRISES, INC.",,,"5930 WILCOX PLACE, SUITE G",,"DUBLIN","OH","43016",,,,,,,,,,,,,,,,,,"201960586","6146070028","326100","DAK ENTERPRISES, INC.",,"5930 WILCOX PLACE, SUITE G",,"DUBLIN","OH","43016",,,,,,,"201960586","6146070028",,,,"2011-07-14T14:47:01-0500","BRAD WILLIAMS","2011-07-14T14:47:01-0500","BRAD WILLIAMS",,,74,73,,,73,,,,,,,"4A4B4F","1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714171713P030013663890001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WESTERN CENTER ON LAW AND POVERTY - FLEXIBLE BENEFITS PLAN","502","2008-01-01","WESTERN CENTER ON LAW AND POVERTY",,,"3701 WILSHIRE BLVD SUITE 208",,"LOS ANGELES","CA","90010",,,,,,,"3701 WILSHIRE BLVD SUITE 208",,"LOS ANGELES","CA","90010",,,,,,,"952897721","2134877211","541190","WESTERN CENTER ON LAW AND POVERTY",,"3701 WILSHIRE BLVD SUITE 208",,"LOS ANGELES","CA","90010",,,,,,,"952897721","2134877211",,,,"2011-07-14T17:15:31-0500","DENISE WILLIAMSON",,,,,9,9,,,9,,9,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714154522P030093601425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTER FOR AUTISM & RELATED DISORDERS WELFARE BENEFIT PLAN","502","2004-01-01","CENTER FOR AUTISM & RELATED DISORDERS, INC.",,,"19019 VENTURA BOULEVARD, SUITE 300",,"TARZANA","CA","91356",,,,,,,,,,,,,,,,,,"954641453","8183452345","621330","CENTER FOR AUTISM & RELATED DISORDERS, INC.",,"19019 VENTURA BOULEVARD, SUITE 300",,"TARZANA","CA","91356",,,,,,,"954641453","8183452345",,,,"2011-07-14T15:38:45-0500","MARK KELLER",,,,,332,305,6,0,311,,,,,,,"4A4B4D4E4F4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714133449P030439453632007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DAKOTA SUPPLY GROUP, INC. GROUP HEALTH & DENTAL PLAN","501","1995-01-01","DAKOTA SUPPLY GROUP, INC",,,"2601 3RD AVE NO",,"FARGO","ND","58102",,,,,,,,,,,,,,,,,,"450421041","7012379440","423600","DAKOTA SUPPLY GROUP, INC",,"2601 3RD AVE NO",,"FARGO","ND","58102",,,,,,,"450421041","7012379440",,,,"2011-07-14T08:13:51-0500","NEAL G SMITH","2011-07-14T08:13:51-0500","NEAL G SMITH",,,293,285,9,9,303,,,,,,,"4A4D","1",,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714141108P030029308711001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MMA PARTNERS, LLC 401(K) PLAN","001","2005-07-15","MMA PARTNERS, LLC",,,"643 BAIR ISLAND ROAD","STE 302","REDWOOD CITY","CA","94063",,,,,,,"643 BAIR ISLAND ROAD","STE 302","REDWOOD CITY","CA","94063",,,,,,,"943359556","6503620000","323100","MMA PARTNERS, LLC",,"643 BAIR ISLAND ROAD","STE 302","REDWOOD CITY","CA","94063",,,,,,,"943359556","6503620000",,,,"2011-07-14T14:10:51-0500","THOMAS HALEY",,,,,6,3,0,6,9,0,9,9,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714163024P030093624513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AUSTIN PRIMARY CARE 401(K) PROFIT SHARING PLAN","001","2007-07-01","AUSTIN PRIMARY CARE",,,"1909 REAL CATORCE",,"AUSTIN","TX","78746",,,,,,,,,,,,,,,,,,"300087030","4809854926","621111","AUSTIN PRIMARY CARE",,"1909 REAL CATORCE",,"AUSTIN","TX","78746",,,,,,,"300087030","4809854926",,,,"2011-07-14T16:29:09-0500","NANDINI KOHLI",,,,,5,4,0,0,4,0,4,3,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714105402P040096033569001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"PROFESSIONAL CARE SERVICES 403(B) PLAN","003","1985-01-01","PROFESSIONAL CARE SERVICES OF WEST TN, INC.",,,"1997 HIGHWAY 51 S",,"COVINGTON","TN","380193630",,,,,,,,,,,,,,,,,,"621097170","9014753569","621112","PROFESSIONAL CARE SERVICES OF WEST TN, INC.",,"1997 HIGHWAY 51 S",,"COVINGTON","TN","380193630",,,,,,,"621097170","9014753569",,,,"2011-07-14T10:53:56-0500","JIMMIE JACKSON","2011-07-14T10:53:56-0500","JIMMIE JACKSON",,,173,165,0,17,182,0,182,149,11,,"2F2G2L2M2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714135211P040014140802001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HUNTSVILLE PODIATRY CENTER PC PROFIT SHARING PLAN","001","1979-10-31","HUNTSVILLE PODIATRY CENTER PC",,,"929 FRANKLIN STREET",,"HUNTSVILLE","AL","35801",,,,,,,,,,,,,,,,,,"630757544","2565333624","621391","HUNTSVILLE PODIATRY CENTER PC",,"929 FRANKLIN STREET",,"HUNTSVILLE","AL","35801",,,,,,,"630757544","2565333624",,,,"2011-07-10T11:31:56-0500","EDWARD A. BEHMER",,,,,6,7,,,7,,7,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714172049P030093645905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DESIGN FOUR, INC. PROFIT SHARING PLAN","001","1992-08-01","DESIGN FOUR, INC.",,,"4356 BONNEY ROAD, BLDG 3, STE 102",,"VIRGINIA BEACH","VA","23452",,,,,,,,,,,,,,,,,,"541336452","7574989800","541310","DESIGN FOUR, INC.",,"4356 BONNEY ROAD, BLDG 3, STE 102",,"VIRGINIA BEACH","VA","23452",,,,,,,"541336452","7574989800",,,,"2011-07-14T17:19:45-0500","DOREEN FECHTEL",,,,,8,8,0,2,10,0,10,10,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714172118P030013664610001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JALBERTS AUTO SALES INC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","JALBERTS AUTO SALES INC","JALBERTS AUTO SALES INC","ROBERT JALBERT","313 MOUNTIAN ROAD",,"ALFRED","ME","04002",,,,,,,"313 MOUNTIAN ROAD",,"ALFRED","ME","04002",,,,,,,"010417027","2073242299","441120","JALBERTS AUTO SALES INC","ROBERT JALBERT","313 MOUNTIAN ROAD",,"ALFRED","ME","04002",,,,,,,"010417027","2073242299",,,,"2011-07-14T17:20:48-0500","ROBERT JALBERT",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714174221P030093658033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHELBY GROUP INTERNATIONAL, INC. DISABILITY PLAN","503","1992-01-01","SHELBY GROUP INTERNATIONAL, INC.",,,"5321 E. SHELBY DRIVE",,"MEMPHIS","TN","381187506",,,,,,,,,,,,,,,,,,"621237127","9017955810","424990","SHELBY GROUP INTERNATIONAL, INC.",,"5321 E. SHELBY DRIVE",,"MEMPHIS","TN","381187506",,,,,,,"621237127","9017955810",,,,"2011-07-14T15:46:03-0500","GAI LUCAS",,,,,244,248,0,0,248,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714131225P030093494433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DRES. MAS - CABRERA RETIREMENT PLAN SERIES 91-436","001","1991-01-01","DR. MANUEL MAS DRA. MAGALI CABRERA",,,"PO BOX 2209",,"GUAYNABO","PR","00970",,,,,,,,,,,,,,,,,,"660490434","7877878210","621111","DR. MANUEL MAS DRA. MAGALI CABRERA",,"PO BOX 2209",,"GUAYNABO","PR","00970",,,,,,,"660490434","7877878210",,,,"2011-07-14T13:12:13-0500","MANUEL MAS",,,,,2,2,0,0,2,0,2,0,0,0,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714133010P030093506097005","2010-05-01","2011-04-30","2",,,,,,,,,,,,"KINNAMON & ASSOCIATES LTD PROFIT SHARING PLAN","001","1979-05-01","KINNAMON & ASSOCIATES, LTD.","DBA KINNAMON ACCOUNTING SERVICE",,"217 N. NORTHWEST HWY.",,"BARRINGTON","IL","600103348",,,,,,,,,,,,,,,,,,"362808247","8473811040","541219","KINNAMON & ASSOCIATES, LTD.",,"217 N. NORTHWEST HWY.",,"BARRINGTON","IL","600103348",,,,,,,"362808247","8473811040",,,,"2011-07-14T14:13:36-0500","BRET S. KINNAMON","2011-07-14T14:13:28-0500","BRET S. KINNAMON",,,6,7,0,0,7,0,7,7,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714180503P040096258305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTRO DERMATOLOGICO ARECIBO, CSP RETIREMENT PLAN","001","2003-05-15","CENTRO DERMATOLOGICO ARECIBO, CSP",,,"PMB 187","PO BOX 70344","SAN JUAN","PR","00936",,,,,,,,,,,,,,,,,,"660585404","7876202300","621111","CENTRO DERMATOLOGICO ARECIBO, CSP",,"PMB 187","PO BOX 70344","SAN JUAN","PR","00936",,,,,,,"660585404","7876202300",,,,"2011-07-14T17:57:40-0500","LIZETTE CHABRIER BEAUCHAMP","2011-07-14T17:57:40-0500","LIZETTE CHABRIER BEAUCHAMP",,,1,1,0,0,1,0,1,1,0,,"2E3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714183402P040096274193001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"PHOTON DYNAMICS, INC. 401(K) PLAN","001","1991-11-01","PHOTON DYNAMICS, INC.",,,"5970 OPTICAL COURT",,"SAN JOSE","CA","95138",,,,,,,"5970 OPTICAL COURT",,"SAN JOSE","CA","95138",,,,,,,"943007502","4082269900","334410","PHOTON DYNAMICS, INC.",,"5970 OPTICAL COURT",,"SAN JOSE","CA","95138",,,,,,,"943007502","4082269900",,,,"2011-07-12T16:34:55-0500","GUY SHEMI","2011-07-12T12:53:37-0500","DAVID CRIVELLI",,,297,163,0,122,285,0,285,246,4,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714185852P040436034000001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MATRIX COMMUNICATIONS INC. WELFARE BENEFIT PLAN","501","1998-02-01","MATRIX COMMUNICATIONS INC.",,,"171 CHESHIRE LANE NORTH, SUITE 700",,"PLYMOUTH","MN","55441",,,,,,,,,,,,,,,,,,"411541362","7634755500","519100","MATRIX COMMUNICATIONS INC.",,"171 CHESHIRE LANE NORTH, SUITE 700",,"PLYMOUTH","MN","55441",,,,,,,"411541362","7634755500",,,,"2011-07-14T18:58:45-0500","LYNN HARRIS",,,,,95,106,2,0,108,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714140348P040096135825001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"TEMPCO MANUFACTURING CO., INC. 401(K) RETIREMENT PLAN","001","1994-02-01","TEMPCO MANUFACTURING CO., INC.",,,"2475 HIGHWAY 55",,"SAINT PAUL","MN","551201110",,,,,,,,,,,,,,,,,,"410787823","6514521441","332110","TEMPCO MANUFACTURING CO., INC.",,"2475 HIGHWAY 55",,"SAINT PAUL","MN","551201110",,,,,,,"410787823","6514521441","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-07-14T14:03:43-0500","DANIEL CRONEN","2011-07-14T14:03:43-0500","DANIEL CRONEN",,,106,97,0,12,109,0,109,71,0,,"2E2F2G2J2K2R2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714135502P040014141042001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEALDTON ELECTRIC 401K PLAN","001","2000-01-01","HEALDTON ELECTRIC",,"KELLY WILLIAMS","PO BOX 381",,"HEALDTON","OK","734380381",,,,,,,,,,,,,,,,,,"730672993","5802291469","423600","HEALDTON ELECTRIC","KELLY WILLIAMS","PO BOX 381",,"HEALDTON","OK","734380381",,,,,,,"730672993","5802291469",,,,"2011-07-14T13:48:49-0500","KELLY WILLIAMS",,,,,15,10,0,1,11,0,11,6,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714142610P030093548849001","2010-12-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"GYPSUM SUPPLY CO.","502","1996-12-01","GYPSUM SUPPLY CO.",,,"1125 HARRISON AVE.",,"ROCKFORD","IL","61104",,,,,,,"1125 HARRISON AVE.",,"ROCKFORD","IL","61104",,,,,,,"362994339","8153980380","444190","GYPSUM SUPPLY CO.",,"1125 HARRISON AVE.",,"ROCKFORD","IL","61104",,,,,,,"362994339","8153980380",,,,"2011-07-14T12:57:29-0500","JAMES M. GABELBAUER",,,,,125,117,,,117,,117,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714143549P030093554001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WICHITA CLINIC, PA EMPLOYEE LIFE AND AD&D, LONG TERM DISABILITY, OPTIONAL LIFE PLAN","505","1988-03-01","WICHITA CLINIC, PA",,,"3311 E. MURDOCK",,"WICHITA","KS","67208",,,,,,,"3311 E. MURDOCK",,"WICHITA","KS","67208",,,,,,,"480993446","3166899353","621111","WICHITA CLINIC, PA",,"3311 E MURDOCK",,"WICHITA","KS","67208",,,,,,,"480993446","3166899353",,,,"2011-07-14T14:34:47-0500","KIMBERLY SHANK",,,,,1061,1065,0,0,1065,0,1065,0,0,,,"4B4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714173352P030093654001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE NOVATECH, LLC FLEXIBLE BENEFITS PLAN","501","2004-01-01","NOVATECH, LLC",,,"11500 CRONRIDGE DRIVE, SUITE 110",,"OWINGS MILLS","MD","21117",,,,,,,,,,,,,,,,,,"481175730","4107538346","541511","NOVATECH, LLC",,"11500 CRONRIDGE DRIVE, SUITE 110",,"OWINGS MILLS","MD","21117",,,,,,,"481175730","4107538346",,,,"2011-07-14T17:04:31-0500","CONNIE GIBSON","2011-07-14T17:04:31-0500","CONNIE GIBSON",,,213,202,3,0,205,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110714151517P030093580721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAYMAN'S CLOTHIERS, INC. 401(K) PROFIT SHARING PLAN","001","2007-01-01","CAYMANS CLOTHIERS, INC.",,,"2001 WEST MAIN",,"NORMAN","OK","73069",,,,,,,,,,,,,,,,,,"731187921","4053603969","448190","CAYMANS CLOTHIERS, INC.",,"2001 WEST MAIN",,"NORMAN","OK","73069",,,,,,,"731187921","4053603969",,,,"2011-07-14T15:03:47-0500","CURTIS COLEMAN",,,,,9,8,0,1,9,0,9,9,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714113818P030013632066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KOVACK FINANCIAL LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","KOVACK FINANCIAL LLC",,,"6451 N FEDERAL HIGHWAY","SUITE 1201","FORT LAUDERDALE","FL","33308",,,,,,,,,,,,,,,,,,"900613053","9547824771","523120","KOVACK FINANCIAL LLC",,"6451 N FEDERAL HIGHWAY","SUITE 1201","FORT LAUDERDALE","FL","33308",,,,,,,"900613053","9547824771","KOVACK SECURITIES INC","650747270",,"2011-07-14T11:38:16-0500","KOVACK FINANCIAL LLC",,,,,23,23,0,0,23,0,23,20,0,,"2A2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714132400P040096120497001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"STRATEGIC MARKET SOLUTIONS, INC. 401(K) PROFIT SHARING PLAN","001","1999-05-01","STRATEGIC MARKET SOLUTIONS DBA AIR MARKETING",,,"3419 EAST UNIVERSITY DR.",,"PHOENIX","AZ","85034",,,,,,,,,,,,,,,,,,"860881876","4809213220","541990","STRATEGIC MARKET SOLUTIONS DBA AIR MARKETING",,"3419 EAST UNIVERSITY DR.",,"PHOENIX","AZ","85034",,,,,,,"860881876","4809213220",,,,"2011-07-14T13:23:58-0500","ALAN GOLD, CPA",,,,,53,27,0,21,48,0,48,36,3,,"2A2E2H2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110714160828P030093613201001","2010-01-04","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"ANA WOCHASKI, INC. 401K PROFIT SHARING PLAN","001","2010-01-04","ANA WOCHASKI, INC.",,,"43484 RIVERWAY DRIVE",,"CLINTON TOWNSHIP","MI","48038",,,,,,,,,,,,,,,,,,"271616706","5864122270","811490","ANA WOCHASKI, INC.",,"43484 RIVERWAY DRIVE",,"CLINTON TOWNSHIP","MI","48038",,,,,,,"271616706","5864122270",,,,"2011-07-14T15:54:33-0500","EDWARD WOCHASKI",,,,,2,6,0,0,6,0,6,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-14","Filed with authorized/valid electronic signature",, "20110718154122P040098650113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN PSYCHIATRIC ASSOCIATION LIFE AND AD&D PLAN","503","1988-01-01","AMERICAN PSYCHIATRIC ASSOCIATION",,,"1000 WILSON BOULEVARD",,"ARLINGTON","VA","222093901",,,,,,,,,,,,,,,,,,"522168499","7039077300","541990","AMERICAN PSYCHIATRIC ASSOCIATION",,"1000 WILSON BOULEVARD",,"ARLINGTON","VA","222093901",,,,,,,"522168499","7039077300",,,,"2011-07-18T15:40:32-0500","NICOLA CURRY",,,,,229,205,0,0,205,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718155244P040446418816005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LEE UNIVERSITY DEFINED CONTRIBUTION RETIREMENT PLAN","001","1971-07-01","LEE UNIVERSITY",,"ANN P. MCELRATH","P.O. BOX 3450",,"CLEVELAND","TN","373203450",,,,,,,"P. O. BOX 3450",,"CLEVELAND","TN","373203450",,,,,,,"620502739","4236148102","611000","ANN P. MCELRATH DIRECTOR OF HUMAN RESOURCES","LEE UNIVERSITY","1120 N. OCOEE STREET",,"CLEVELAND","TN","373203450",,,,,,,"620502739",,,,,"2011-07-12T11:38:36-0500","ANN MCELRATH, DIRECTOR OF HR",,,,,588,491,,93,584,1,585,558,,,"2L",,"1",,"1",,"1",,,,,,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720142914P030014205666008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DOTHAN PSYCHIATRY SLEEP DISORD MEDICINE PC PSP","001","1990-01-01","DOTHAN PSYCHIATRY SLEEP DISORDERS MEDI",,,"4300 WEST MAIN ST. STE 102",,"DOTHAN","AL","36305",,,,,,,,,,,,,,,,,,"630993292","3347939564","621111","DOTHAN PSYCHIATRY SLEEP DISORDERS MEDI",,"4300 WEST MAIN ST. STE 102",,"DOTHAN","AL","36305",,,,,,,"630993292","3347939564",,,,"2011-07-08T09:23:46-0500","ANN B MCDOWELL",,,,,1,2,,,2,,2,2,,,"2E2G",,,,"1",,,,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720143725P030014207394001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM P. OBERHARDT, LLC 401(K) PROFIT SHARING PLAN","001","2007-01-01","WILLIAM P. OBERHARDT, LLC",,,"70 WEST MADISON STREET, SUITE 2100",,"CHICAGO","IL","60602",,,,,,,,,,,,,,,,,,"200149747","3122511100","541110","WILLIAM P. OBERHARDT, LLC",,"70 WEST MADISON STREET, SUITE 2100",,"CHICAGO","IL","60602",,,,,,,"200149747","3122511100",,,,"2011-07-20T14:36:10-0500","WILLIAM P. OBERHARDT",,,,,1,1,0,0,1,0,1,1,0,,"2A2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110718112754P040098491041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PONTCHARTRAIN FOODS, INC. 401(K) PLAN","001","1998-08-01","PONTCHARTRAIN FOODS, INC.",,,"71711 RIVERSIDE DRIVE",,"COVINGTON","LA","70433",,,,,,,,,,,,,,,,,,"720813218","9858926173","722210","PONTCHARTRAIN FOODS, INC.",,"71711 RIVERSIDE DRIVE",,"COVINGTON","LA","70433",,,,,,,"720813218","9858926173",,,,"2011-07-18T11:27:36-0500","GLENN J JACOB",,,,,155,112,0,12,124,0,124,39,4,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110715191349P030094329313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEBCOR BUILDERS WELFARE BENEFIT PLAN","501","1999-03-01","WEBCOR CONSTRUCTION LP","WEBCOR BUILDERS",,"951 MARINERS ISLAND BOULEVARD","7TH FLOOR","SAN MATEO","CA","94404",,,,,,,,,,,,,,,,,,"208399744","6503492727","236200","WEBCOR CONSTRUCTION LP",,"951 MARINERS ISLAND BOULEVARD","7TH FLOOR","SAN MATEO","CA","94404",,,,,,,"208399744","6503492727",,,,"2011-07-15T19:13:41-0500","TIMOTHY J. LUTZ",,,,,402,325,0,0,325,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110718183604P040446757088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEMMANAGEMENT BUSINESS TRAVEL ACCIDENT","507","2000-05-01","SEMMANAGEMENT, INC.",,,"6120 SOUTH YALE AVENUE, SUITE 700",,"TULSA","OK","74136",,,,,,,,,,,,,,,,,,"043780772","9185248100","561300","SEMMANAGEMENT, INC.",,"6120 SOUTH YALE AVENUE, SUITE 700",,"TULSA","OK","74136",,,,,,,"043780772","9185248100",,,,"2011-07-18T18:35:49-0500","LAURA LUNDQUIST",,,,,283,255,0,0,255,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718183930P040098730881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEMMANAGEMENT GROUP DENTAL PLAN","504","2000-05-01","SEMMANAGEMENT LLC",,,"6120 SOUTH YALE AVENUE, SUITE 700",,"TULSA","OK","74136",,,,,,,,,,,,,,,,,,"043780772","9185248100","561300","SEMMANAGEMENT LLC",,"6120 SOUTH YALE AVENUE, SUITE 700",,"TULSA","OK","74136",,,,,,,"043780772","9185248100",,,,"2011-07-18T18:38:30-0500","LAURA LUNDQUIST",,,,,339,259,0,0,259,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720150325P040099975489002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARCAN CONSULTING PENSION PLAN","001","1991-01-01","MARCAN CONSULTING CORP",,,"24-40 LITTLE NECK PKWY",,"BAYSIDE","NY","11360",,,,,,,,,,,,,,,,,,"113040869","7184650688","235400","MARCAN CONSULTING CORP",,"24-40 LITTLE NECK PKWY",,"BAYSIDE","NY","11360",,,,,,,"113040869","7184650688",,,,"2011-07-20T14:42:25-0500","STEVEN KAHN",,,,,2,1,,1,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110718085011P030449564352001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DYNAMIC STRATEGIES, INC. 401(K) PROFIT SHARING PLAN","001","2000-03-01","DYNAMIC STRATEGIES INC.",,,"110 MELRICH RD","STE 4","CRANBURY","NJ","08512",,,,,,,"110 MELRICH RD","STE 4","CRANBURY","NJ","08512",,,,,,,"223559772","6096198937","541600","DYNAMIC STRATEGIES INC.","ROB PEZZULLO","110 MELRICH RD","STE 4","CRANBURY","NJ","08512",,,,,,,"223559772","6096198937",,,,"2011-07-18T08:48:57-0500","ROBERT PEZZULLO",,,,,31,25,0,0,25,0,25,19,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718090746P040098399025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACADEMY PHYSICAL THERAPY 401(K) PLAN & TRUST","001","2005-01-01","ACADEMY PHYSICAL THERAPY",,"GAETANO LOMBARDO","1160 FIFTH AVE, SUITE 103",,"NEW YORK","NY","10029",,,,,,,,,,,,,,,,,,"810647777","2124264700","621498","ACADEMY PHYSICAL THERAPY","GAETANO LOMBARDO","1160 FIFTH AVE, SUITE 103",,"NEW YORK","NY","10029",,,,,,,"810647777","2124264700",,,,"2011-07-18T08:49:37-0500","GAETANO LOMBARDO",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718125300P030095811809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROB'S PET COMPANY, INC. 401(K) PROFIT SHARING PLAN","001","2008-08-01","ROBS PET COMPANY, INC.",,,"12225 WAYCROSS DR.",,"HENRICO","VA","23233",,,,,,,,,,,,,,,,,,"263092207","8045121023","812990","ROBS PET COMPANY, INC.",,"12225 WAYCROSS DR.",,"HENRICO","VA","23233",,,,,,,"263092207","8045121023",,,,"2011-07-18T12:34:31-0500","ROBERT HALL",,,,,1,3,0,0,3,0,3,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718130422P030450161568001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEWIS METAL WORKS, INC. 401(K) PLAN","001","2008-01-01","LEWIS METAL WORKS, INC.",,,"PO BOX 127",,"HARRODSBURG","KY","40330",,,,,,,,,,,,,,,,,,"611263087","8598652333","332900","LEWIS METAL WORKS, INC.",,"PO BOX 127",,"HARRODSBURG","KY","40330",,,,,,,"611263087","8598652333",,,,"2011-07-18T12:58:44-0500","PATRICIA LEWIS",,,,,7,6,0,1,7,0,7,7,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718130426P030014003266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BODYWORKS EQUIPMENT 401(K) PLAN","001","2000-01-01","BODYWORKS EQUIPMENT",,,"116 RAILROAD AVENUE",,"MONROVIA","CA","91016",,,,,,,"116 RAILROAD AVENUE",,"MONROVIA","CA","91016",,,,,,,"931178199","6263579771","336990","BODYWORKS EQUIPMENT",,"116 RAILROAD AVENUE",,"MONROVIA","CA","91016",,,,,,,"931178199","6263579771",,,,"2011-07-12T09:59:02-0500","JAMES ANDERSON",,,,,7,6,,,6,,6,,,,"2J2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110715171844P040096908401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHARD D ANDERSON MD PA PROFIT SHARING PLAN","003","1993-07-01","RICHARD D ANDERSON MD PA",,,"2520 SEDLEY ROAD",,"CHARLOTTE","NC","28211",,,,,,,"2520 SEDLEY ROAD",,"CHARLOTTE","NC","28211",,,,,,,"561265478","7043664578","621111","RICHARD D ANDERSON MD PA",,"2520 SEDLEY ROAD",,"CHARLOTTE","NC","28211",,,,,,,"561265478","7043664578",,,,"2011-07-15T17:11:33-0500","CHARLES SIMON",,,,,2,2,,,2,,2,,,,"2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110718184152P040014533874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEMMANAGEMENT HEALTH INSURANCE PLAN","501","2000-05-01","SEMMANAGEMENT, INC.",,,"6120 SOUTH YALE AVENUE, SUITE 700",,"TULSA","OK","74136",,,,,,,,,,,,,,,,,,"043780772","9185248100","561300","SEMMANAGEMENT, INC.",,"6120 SOUTH YALE AVENUE, SUITE 700",,"TULSA","OK","74136",,,,,,,"043780772","9185248100",,,,"2011-07-18T18:40:49-0500","LAURA LUNDQUIST",,,,,294,242,0,0,242,,,,,,,"4A4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720145608P030097145441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRO ACTION OF STEUBEN AND YATES, INC. SECTION 125 CAFETERIA PLAN","505","1991-07-01","PRO ACTION OF STEUBEN AND YATES, IN C.",,,"117 EAST STEUBEN STREET",,"BATH","NY","14810",,,,,,,,,,,,,,,,,,"160914512","6077762125","624100","PRO ACTION OF STEUBEN AND YATES, IN C.",,"117 EAST STEUBEN STREET",,"BATH","NY","14810",,,,,,,"160914512","6077762125",,,,"2011-07-20T14:52:58-0500","MEREDITH DESSOYE",,,,,98,109,0,0,109,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110718092313P040098406833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAPTIST HEALTH AD&D PLAN","532","2001-01-01","BAPTIST HEALTH SYSTEM, INC.",,,"820 PRUDENTIAL DRIVE, SUITE 706",,"JACKSONVILLE","FL","32207",,,,,,,,,,,,,,,,,,"592487136","9042024894","622000","BAPTIST HEALTH SYSTEM, INC.",,"820 PRUDENTIAL DRIVE, SUITE 706",,"JACKSONVILLE","FL","32207",,,,,,,"592487136","9042024894",,,,"2011-07-18T09:14:23-0500","CAMILLE COSSA",,,,,7000,7100,0,0,7100,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718092421P040098407441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES C. HODGE, JR., D.D.S., INC. PROFIT SHARING PLAN","002","1981-12-03","JAMES C. HODGE, JR., D.D.S., INC.",,,"1941 HUNTINGTON DRIVE, SUITE H",,"SOUTH PASADENA","CA","91030",,,,,,,,,,,,,,,,,,"953671733","6264411139","621111","JAMES C. HODGE, JR., D.D.S., INC.",,"1941 HUNTINGTON DRIVE, SUITE H",,"SOUTH PASADENA","CA","91030",,,,,,,"953671733","6264411139",,,,"2011-07-18T09:22:45-0500","JAMES HODGE",,,,,5,5,0,0,5,0,5,5,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718095047P040098419697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OSBORN HEIRS COMPANY LTD 401(K) PLAN","002","2006-01-01","OSBORN HEIRS COMPANY LTD",,,"1250 NE LOOP 410, SUITE 1100",,"SAN ANTONIO","TX","78209",,,,,,,,,,,,,,,,,,"742339959","2108260700","211110","OSBORN HEIRS COMPANY LTD",,"1250 NE LOOP 410, SUITE 1100",,"SAN ANTONIO","TX","78209",,,,,,,"742339959","2108260700",,,,"2011-07-18T09:45:56-0500","PATRICK GARCIA",,,,,42,40,0,3,43,0,43,43,0,,"2A2E2F2G2J2K2T3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718095104P030449697136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAY NURSING, INC. RETIREMENT SAVINGS PLAN","001","2000-01-01","BAY NURSING, INC.",,,"255 N BAILEY ST",,"ROMEO","MI","48065",,,,,,,,,,,,,,,,,,"383076857","5867521111","621610","BAY NURSING, INC.",,"255 N BAILEY ST",,"ROMEO","MI","48065",,,,,,,"383076857","5867521111",,,,"2011-07-18T09:49:40-0500","JO ANN SIMRAK",,,,,94,85,0,0,85,0,85,52,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718105330P040098471713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TIMBER INSPECTION PRODUCTS, INC. WELFARE BENEFIT PLAN","501","2006-01-01","TIMBER PRODUCTS INSPECTION, INC.",,,"P O BOX 919",,"CONYERS","GA","30012",,,,,,,"1641 SIGMAN ROAD",,"CONYERS","GA","30012",,,,,,,"581763631","7709228000","115310","TIMBER PRODUCTS INSPECTION, INC.",,"P O BOX 919",,"CONYERS","GA","30012",,,,,,,"581763631","7709228000",,,,"2011-07-18T10:53:12-0500","TODD GREER",,,,,92,92,0,0,92,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718133853P030095831889002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"U.S. SUGAR CO., INC. 401(K) PLAN","001","2005-10-01","U.S. SUGAR CO., INC.",,,"692 BAILEY AVE",,"BUFFALO","NY","14206",,,,,,,,,,,,,,,,,,"205676987","7168281170","311300","U.S. SUGAR CO., INC.",,"692 BAILEY AVE",,"BUFFALO","NY","14206",,,,,,,"205676987","7168281170",,,,"2011-07-18T08:55:06-0500","WILLIAM K. MCDANIEL, JR.",,,,,57,57,,,57,,57,57,,,"2A2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718134853P040098570641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE HILLMAN GROUP LIFE, AD&D AND LTD PLAN","519","1969-03-01","THE HILLMAN GROUP, INC.",,,"10590 HAMILTON AVENUE",,"CINCINNATI","OH","452310012",,,,,,,,,,,,,,,,,,"311623179","5138514900","423700","THE HILLMAN GROUP, INC.",,"10590 HAMILTON AVENUE",,"CINCINNATI","OH","452310012",,,,,,,"311623179","5138514900",,,,"2011-07-18T13:47:32-0500","JAMES WATERS, V. P. OF FINANCE",,,,,2148,1671,,,1671,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718131437P040098549921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FEMCO MACHINE CO. HEALTH & WELFARE PLAN","501","2003-03-01","FEMCO HOLDINGS LLC",,,"754 S MAIN STREET EXT",,"PUNXSUTAWNEY","PA","15767",,,,,,,,,,,,,,,,,,"542094479","8149389763","332700","FEMCO HOLDINGS LLC",,"754 S MAIN STREET EXT",,"PUNXSUTAWNEY","PA","15767",,,,,,,"542094479","8149389763",,,,"2011-07-18T13:14:15-0500","JODY CHICOLA","2011-07-18T13:14:15-0500","JODY CHICOLA",,,132,121,4,0,125,,,,,,,"4A4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718145211P040098618577001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"FARIBAULT TRANSPORTATION COMPANY INC CAFETERIA PLAN","001","1990-07-01","FARIBAULT TRANSPORTATION COMPANY INC",,,"1111 HOME PLACE",,"FARIBAULT","MN","55021",,,,,,,"2615 1ST AVE NW",,"FARIBAULT","MN","55021",,,,,,,"411379552","5073345121","485510","FARIBAULT TRANSPORTATION COMPANY INC","THOMAS MERRILL","1111 HOME PLACE",,"FARIBAULT","MN","55021",,,,,,,"411379552","5073345121",,,,"2011-07-18T14:51:03-0500","THOMAS MERRILL",,,,,10,10,,,10,,10,10,,,"2E2G3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110715191618P030094330033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE ARC OF BLACKSTONE VALLEY MEDICAL AND DENTAL INSURANCE PLAN","506","1992-01-01","THE ARC OF BLACKSTONE VALLEY",,,"115 MANTON STREET",,"PAWTUCKET","RI","02861",,,,,,,,,,,,,,,,,,"050300152","4017270150","624310","THE ARC OF BLACKSTONE VALLEY",,"115 MANTON STREET",,"PAWTUCKET","RI","02861",,,,,,,"050300152","4017270150",,,,"2011-07-15T19:16:13-0500","JOHN J PADIEN III",,,,,373,169,0,0,169,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110715192047P040096959265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DON E. SKAFF, D.D.S., INC. PROFIT SHARING PLAN","001","1991-01-01","DON E. SKAFF, D.D.S., INC.",,,"4502 MACCORKLE AVE SE STE C",,"CHARLESTON","WV","253041835",,,,,,,,,,,,,,,,,,"920186835","3049269260","621210","DON E SKAFF DDS INC",,"4502 MACCORKLE AVENUE SE STE C",,"CHARLESTON","WV","25304",,,,,,,"920186835","3049269260",,,,"2011-07-15T18:56:16-0500","DON E. SKAFF",,,,,7,8,0,1,9,0,9,9,0,,"2K2E2F2G2J",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","3","0","1","0","FILING_RECEIVED","2011-07-15","Filed with authorized/valid electronic signature",, "20110718140219P030095841041001","2008-01-01","2008-12-31","2",,,"1",,,,"0","0","0","0",,"THE SHORELINE FAMILY DENTAL GRP. PROFIT SHARING PLAN","001","1997-01-01","THE SHORELINE FAMILY DENTAL GRP",,,"43 BAY CIRCLE DRIVE",,"HOLLAND","MI","49424",,,,,,,,,,,,,,,,,,"382619020","6163999520","621210","SAME",,"43 BAY CIRCLE DRIVE",,"HOLLAND","MI","49424",,,,,,,"382619020","6163999520",,,,"2011-07-18T14:02:16-0500","THOMAS E. ANDERSON","2011-07-18T14:02:16-0500","THOMAS E. ANDERSON",,,20,11,0,3,14,0,14,13,0,,"3D2E2F2G2J2K2T",,"1",,,,"1",,,,"1",,,,"1","1","4",,"1",,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718132859P040098557265001","2009-01-01","2009-12-02","2",,"0","0","1","1","0","0","0","1","0",,"CANDLELIGHTERS FOR CHILDHOOD 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","CANDLELIGHTERS FOR CHILDHOOD",,,"601 S RANCHO DRIVE B11",,"LAS VEGAS","NV","89106",,,,,,,,,,,,,,,,,,"942579116","7027371919","624100","CANDLELIGHTERS FOR CHILDHOOD",,"601 S RANCHO DRIVE B11",,"LAS VEGAS","NV","89106",,,,,,,"942579116","7027371919",,,,"2011-07-18T13:28:53-0500","MELISSA CIPRIANO",,,,,8,0,0,0,0,0,0,0,0,,"2E2G2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718153429P030095885761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PEOPLES BANK GROUP INSURANCE PLAN","502","1980-11-26","THE PEOPLES BANK, BILOXI, MISSISSIPPI",,"JAN SMITHERMAN","P O BOX 529",,"BILOXI","MS","395330529",,,,,,,"152 LAMEUSE ST.",,"BILOXI","MS","39530",,,,,,,"640220430","2284355511","522110","THE PEOPLES BANK, BILOXI, MISSISSIPPI","JAN SMITHERMAN","P O BOX 529",,"BILOXI","MS","395330529",,,,,,,"640220430","2284355511",,,,"2011-07-18T15:33:44-0500","JAN SMITHERMAN",,,,,192,170,14,,184,,184,,,,,"4A4B","1",,,"1","1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718160816P030095901889008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DAVID B BECKHAM PROFIT SHARING PLAN","002","2002-01-01","DAVID B BECKHAM",,,"319 SIXTH AVENUE SW",,"ALBANY","OR","97321",,,,,,,,,,,,,,,,,,"930799797","5419285555","541110","DAVID B BECKHAM",,"319 SIXTH AVENUE SW",,"ALBANY","OR","97321",,,,,,,"930799797","5419285555",,,,"2011-07-18T12:22:26-0500","DAVID B BECKHAM",,,,,3,3,,,3,,3,3,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110717111235P040097887073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHN B. DALE, DMD, MS, PC RETIREMENT SAVINGS PLAN & TRUST","001","2004-01-01","JOHN B. DALE, DMD, MS, PC",,,"7314 N. WILLOW LAKE CT., SUITE A",,"PEORIA","IL","61614",,,,,,,,,,,,,,,,,,"200235035","3096919100","621210","JOHN B. DALE, DMD, MS, PC",,"7314 N. WILLOW LAKE CT., SUITE A",,"PEORIA","IL","61614",,,,,,,"200235035","3096919100",,,,"2011-07-17T11:12:27-0500","JOHN B. DALE","2011-07-17T11:12:27-0500","JOHN B DALE",,,5,5,0,0,5,0,5,5,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718115355P040098503217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE CONSERVATION FUND GROUP DISABILITY PLAN","503","1997-01-01","THE CONSERVATION FUND",,,"1655 N. FORT MYER DRIVE, SUITE 1300",,"ARLINGTON","VA","222093199",,,,,,,,,,,,,,,,,,"521388917","7035256300","541990","THE CONSERVATION FUND",,"1655 N. FORT MYER DRIVE, SUITE 1300",,"ARLINGTON","VA","222093199",,,,,,,"521388917","7035256300",,,,"2011-07-18T11:53:31-0500","DAVID PHILLIPS, JR.",,,,,128,132,0,0,132,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718160818P030450592624005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SCAPA TAPES NORTH AMERICA INC FLEXIBLE BENEFITS PLAN","501","1993-06-01","SCAPA NORTH AMERICA, INC",,,"111 GREAT POND DR",,"WINDSOR","CT","06095",,,,,,,,,,,,,,,,,,"061611439","8606888000","339900","SCAPA NORTH AMERICA INC",,"111 GREAT POND DR",,"WINDSOR","CT","06095",,,,,,,"061611439","8606888000",,,,"2011-07-18T11:46:57-0500","KEVIN TOOMEY",,,,,246,194,8,4,206,,206,,,,,"4Q4H4F4D4B4A","1",,,"1","1",,,"1",,,,,,"1","8",,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718151206P030095875873001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GENERATION MORTGAGE COMPANY WELFARE BENEFITS PLAN","501","2006-11-01","GENERATION MORTGAGE COMPANY",,,"THREE PIEDMONT CENTER NE, STE 300",,"ATLANTA","GA","303051538",,,,,,,,,,,,,,,,,,"270016233","4049955540","522292","GENERATION MORTGAGE COMPANY",,"THREE PIEDMONT CENTER NE, STE 300",,"ATLANTA","GA","303051538",,,,,,,"270016233","4049955540",,,,"2011-07-18T15:11:02-0500","AMY DAVIES",,,,,182,224,13,0,237,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718144432P040014511378001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"GUARANTEE ELECTRICAL COMPANY MEDICAL PLAN","503","1989-03-01","GUARANTEE ELECTRICAL COMPANY",,"KAREN BOYD","3405 BENT AVENUE",,"SAINT LOUIS","MO","63116",,,,,,,"3405 BENT AVENUE",,"SAINT LOUIS","MO","63116",,,,,,,"430303610","3146788187","238210","GUARANTEE ELECTRICAL COMPANY","KAREN BOYD","3405 BENT AVENUE",,"SAINT LOUIS","MO","63116",,,,,,,"430303610","3146788187",,,,"2011-07-18T14:43:48-0500","KAREN BOYD",,,,,116,103,0,0,103,0,103,0,0,0,,"4A4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718144507P040098612849001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GLADSTONE A PAYTON DO PC PROFIT SHARING PLAN & TR","004","1997-01-01","GLADSTONE PAYTON, D.O., P.C.",,,"247 GRATIOT",,"MT. CLEMENS","MI","48043",,,,,,,,,,,,,,,,,,"381909852","5864688088","621111","GLADSTONE PAYTON, D.O., P.C.",,"247 GRATIOT",,"MT. CLEMENS","MI","48043",,,,,,,"381909852","5864688088",,,,"2011-07-18T15:28:39-0500","GLADSTONE A PAYTON DO",,,,,4,3,0,1,4,0,4,4,,,"2A2E",,"1",,"1",,"1",,"1",,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718152259P040098639905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNION SPECIAL WELFARE BENEFITS PLAN","501","1933-01-01","UNION SPECIAL LLC",,,"ONE UNION SPECIAL PLAZA",,"HUNTLEY","IL","60142",,,,,,,,,,,,,,,,,,"262167565","8476695101","333900","UNION SPECIAL LLC",,"ONE UNION SPECIAL PLAZA",,"HUNTLEY","IL","60142",,,,,,,"262167565","8476695101",,,,"2011-07-18T15:22:12-0500","ROBERTA M. MAZUREK","2011-07-18T15:22:12-0500","TERENCE A. HITPAS",,,115,108,3,0,111,,,,,,,"4A4B4D4E4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720150414P030097151329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BASIC ACCIDENTAL DEATH & DISABILITY PLAN","545","1987-01-01","WELLS LAMONT CORPORATION","WELLS LAMONT",,"6640 WEST TOUHY AVE",,"NILES","IL","60714",,,,,,,,,,,,,,,,,,"364264748","8476478200","315990","WELLS LAMONT OPERATING UNIT COMM","WELLS LAMONT","6640 WEST TOUHY AVE",,"NILES","IL","60714",,,,,,,"363567347","8476478200",,,,"2011-07-20T15:01:17-0500","THERESA CHIP","2011-07-20T15:01:17-0500","THERESA CHIP",,,102,111,,,111,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720150441P030014211026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GASTROENTEROLOGY PROFESSIONAL SERVICES, INC PROFIT SHARING RETIREMENT PLAN","001","2005-01-01","DR. JEFFREY HERNANDEZ",,,"PO BOX 8938",,"CAGUAS","PR","00726",,,,,,,"PO BOX 8938",,"CAGUAS","PR","00726",,,,,,,"660639279","7877465993","812990","JEFFREY HERNANDEZ",,"PO BOX 8938",,"CAGUAS","PR","00726",,,,,,,"660639279","7877465993",,,,"2011-07-20T15:04:33-0500","ALINA ALVAREZ MERCHAN",,,,,8,8,0,0,8,0,8,0,0,,"2E3B3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110717122901P030013912626001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROALD HAESTAD INC 401(K) PROFIT SHARING PLAN","001","1976-06-01","ROALD HAESTAD INC",,,"37 BROOKSIDE ROAD",,"WATERBURY","CT","06708",,,,,,,"37 BROOKSIDE ROAD",,"WATERBURY","CT","06708",,,,,,,"060871380","2037539800","541330","ROALD HAESTAD INC","RANDI HOFFMAN","37 BROOKSIDE ROAD",,"WATERBURY","CT","06708",,,,,,,"060871380","2037539800",,,,"2011-07-17T12:23:00-0500","RANDI HOFFMAN",,,,,19,15,0,0,15,0,15,15,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-17","Filed with authorized/valid electronic signature",, "20110717125655P040097922097001","2010-05-03","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"BADGER HOLDING CORPORATION 401K PROFIT SHARING PLAN","001","2010-05-03","BADGER HOLDING CORPORATION",,,"8132 ACACIA COURT",,"WAXHAW","NC","28173",,,,,,,,,,,,,,,,,,"272485560","7047800263","238900","BADGER HOLDING CORPORATION",,"8132 ACACIA COURT",,"WAXHAW","NC","28173",,,,,,,"272485560","7047800263",,,,"2011-07-17T12:45:31-0500","PATRICK GODFREY",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-17","Filed with authorized/valid electronic signature",, "20110718122510P040030834407001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PLY GEM INDUSTRIES, INC. FLEXIBLE SPENDING PLAN","503","2007-01-01","PLY GEM INDUSTRIES, INC.",,,"5020 WESTON PARKWAY, SUITE 400",,"CARY","NC","27513",,,,,,,,,,,,,,,,,,"111727150","9196773900","339900","PLY GEM INDUSTRIES, INC.",,"5020 WESTON PARKWAY, SUITE 400",,"CARY","NC","27513",,,,,,,"111727150","9196773900",,,,"2011-07-18T12:24:16-0500","STEVEN BROWN",,,,,432,458,0,0,458,,,,,,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718151339P030450462176001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"300 DELMAR FUND VIP PROFIT SHARING PLAN","001","1990-01-01","300 DELMAR FUND",,,"4209 21ST AVENUE WEST, SUITE 401",,"SEATTLE","WA","98199",,,,,,,"4209 21ST AVENUE WEST, SUITE 401",,"SEATTLE","WA","98199",,,,,,,"911112301","2066239395","541990","LOREN D HOSTEK",,"4209 21ST AVENUE WEST, SUITE 401",,"SEATTLE","WA","98199",,,,,,,"911298467","2066239395",,,,"2011-07-18T15:04:46-0500","LOREN HOSTEK",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3E",,,,"1",,,,"1",,"1",,,"0","1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718092615P040030793447001","2010-01-01","2010-12-31","1",,"1","0","0","0","0","0","0","0","0",,"LEFRAK ESTATES, LP HRA PLAN","510","2007-01-01","LEFRAK ESTATES, LP",,,"40 W. 57TH ST.",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"112578948","2127086222","531310","LEFRAK ESTATES, LP",,"40 W. 57TH ST.",,"NEW YORK","NY","10019",,,,,,,"112578948","2127086222",,,,"2011-07-18T09:26:11-0500","LAURA CARBONE",,,,,92,107,0,0,107,0,,,,,,"4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718135543P040098573489001","2010-03-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"SEVERN BANCORP, INC. EMPLOYEE BENEFIT PLAN","502","1990-03-01","SEVERN SAVINGS BANK",,,"200 WESTGATE CIRCLE","SUITE 200","ANNAPOLIS","MD","214012544",,,,,,,,,,,,,,,,,,"521726127","4102602055","522120","SEVERN SAVINGS BANK",,"200 WESTGATE CIRCLE","SUITE 200","ANNAPOLIS","MD","214012544",,,,,,,"521726127","4102602055",,,,"2011-07-18T13:40:54-0500","THOMAS BEVIVINO",,,,,114,136,0,0,136,,136,,,,,"4A4D","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718160707P030095900785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OAKLEY MOTORS INC CAFETERIA PLAN","501","1987-05-01","OAKLEY MOTORS INC CAFETERIA PLAN",,,"118 WEST 2ND STREET",,"OAKLEY","KS","67748",,,,,,,"118 WEST 2ND STREET",,"OAKLEY","KS","67748",,,,,,,"480698875","7856723238","441110","OAKLEY MOTORS INC CAFETERIA PLAN",,"118 WEST 2ND STREET",,"OAKLEY","KS","67748",,,,,,,"480698875","7856723238",,,,"2011-07-18T16:04:49-0500","DANIEL ROBBEN",,,,,15,14,,,14,,14,,,,,"4A4B4D","1",,,,"1",,,,,,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720133322P030097090177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCGUIRE CHEVROLET CADILLAC ISUZU 401(K) PLAN","001","1966-01-05","J.R. ROOF, INC. D/B/A MCGUIRE CHEVROLET CADILLAC",,,"41-47 MAIN ST",,"NEWTON","NJ","07860",,,,,,,"41-47 MAIN ST",,"NEWTON","NJ","07860",,,,,,,"221433194","9733831300","441110","J.R. ROOF, INC. D/B/A MCGUIRE CHEVROLET CADILLAC",,"41-47 MAIN ST",,"NEWTON","NJ","07860",,,,,,,"221433194","9733831300",,,,"2011-07-20T13:32:33-0500","SEAN MCGUIRE",,,,,15,14,0,2,16,0,16,15,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720140601P030014201282001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TANGER PROPERTIES LIMITED PARTNERSHIP SECTION 125 PLAN","501","1993-01-01","TANGER PROPERTIES LIMITED PARTNERSHIP",,,"3200 NORTHLINE AVENUE, SUITE 360",,"GREENSBORO","NC","27408",,,,,,,,,,,,,,,,,,"561633719","3362923010","531120","TANGER PROPERTIES LIMITED PARTNERSHIP",,"3200 NORTHLINE AVENUE, SUITE 360",,"GREENSBORO","NC","27408",,,,,,,"561633719","3362923010",,,,"2011-07-20T13:59:14-0500","FRANK MARCHISELLO","2011-07-20T13:59:14-0500","FRANK MARCHISELLO",,,167,175,10,0,185,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718103258P040098460417002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CAROUSEL INDUSTRIES MEDICAL PLAN","501","1993-01-01","CAROUSEL INDUSTRIES OF NORTH AMERICA INC.",,,"659 SOUTH COUNTY TRAIL",,"EXETER","RI","02822",,,,,,,"659 SOUTH COUNTY TRAIL",,"EXETER","RI","02822",,,,,,,"061502254","8004010760","238900","CAROUSEL INDUSTRIES OF NORTH AMERICA INC.",,"659 SOUTH COUNTY TRAIL",,"EXETER","RI","02822",,,,,,,"061502254","8004010760",,,,"2011-06-09T11:01:17-0500","GAIL HYNES",,,,,1096,1368,,,1368,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718104149P030030026151001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"ROUSSELOT, INC. LOCAL 13 UAW EMPLOYEES' RETIREMENT SAVINGS PLAN","001","1984-03-01","ROUSSELOT, INC.",,,"2350 KERPER BOULEVARD",,"DUBUQUE","IA","520010938",,,,,,,"2350 KERPER BOULEVARD",,"DUBUQUE","IA","520010938",,,,,,,"753029395","5635886244","311900","ROUSSELOT, INC.",,"2350 KERPER BOULEVARD",,"DUBUQUE","IA","520010938",,,,,,,"753029395","5635886244",,,,"2011-07-18T10:41:39-0500","JIM SCHREIBER",,,,,49,44,0,6,50,0,50,50,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718142918P030095854417001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"RENEWABLE ENERGY SYSTEMS HARTFORD PLAN","504","2010-01-01","RES AMERICA CONSTRUCTION, INC.",,,"11101 W. 120TH AVENUE, SUITE 400",,"BROOMFIELD","CO","80021",,,,,,,,,,,,,,,,,,"954668183","3034394200","333610","RES AMERICA CONSTRUCTION, INC.",,"11101 W. 120TH AVENUE, SUITE 400",,"BROOMFIELD","CO","80021",,,,,,,"954668183","3034394200",,,,"2011-07-18T14:28:46-0500","WANDA LASATER",,,,,217,245,0,0,245,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718143008P040014509218003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EMPLOYEE BENEFIT PLAN OF ABBOTT HOUSE INC","001","1981-01-01","ABBOTT HOUSE INC",,,"909 COURT MERRILL PO BOX 700",,"MITCHELL","SD","57301",,,,,,,,,,,,,,,,,,"460229822","6059962486","623000","ABBOTT HOUSE INC",,"909 COURT MERRILL PO BOX 700",,"MITCHELL","SD","57301",,,,,,,"460229822","6059962486",,,,"2011-07-13T16:45:20-0500","ERIC KLOOZ",,,,,81,47,0,43,90,0,90,90,4,,"2C2F2G",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718153549P040098646273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARROWPAC INTERNATIONAL, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1998-01-01","ARROWPAC INTERNATIONAL, INC.",,,"333 MEADOWLAND PARKWAY, 5TH FLOOR",,"SECAUCUS","NJ","07094",,,,,,,,,,,,,,,,,,"223143500","2017709001","488510","ARROWPAC INTERNATIONAL, INC.",,"333 MEADOWLAND PARKWAY, 5TH FLOOR",,"SECAUCUS","NJ","07094",,,,,,,"223143500","2017709001",,,,"2011-07-18T15:35:07-0500","PAUL S. DOHERTY, JR.",,,,,50,11,0,,11,0,11,11,0,,"2I2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718164208P030095920161001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HARBORFRONT FINANCIAL GROUP LLC","001","2007-01-01","HARBORFRONT FINANCIAL GROUP LLC",,,"401 W. LUDINGTON AVENUE","SUITE 103","LUDINGTON","MI","49431",,,,,,,"401 W. LUDINGTON AVENUE","SUITE 103","LUDINGTON","MI","49431",,,,,,,"134278160","2318431516","523120","HARBORFRONT FINANCIAL GROUP LLC",,"401 W. LUDINGTON AVENUE","SUITE 103","LUDINGTON","MI","49431",,,,,,,"134278160","2318431516",,,,"2011-07-18T16:38:11-0500","RICHARD RUBA",,,,,3,3,0,0,3,0,3,3,0,,"2E2J3E3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718143627P040098604177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CINCINNATI SPECIALTIES, BARGAINING UNIT 401(K) PLAN","009","1999-02-25","CINCINNATI SPECIALTIES, LLC",,,"501 MURRAY ROAD",,"CINCINNATI","OH","45217",,,,,,,,,,,,,,,,,,"954716165","5132423300","325100","CINCINNATI SPECIALTIES, LLC",,"501 MURRAY ROAD",,"CINCINNATI","OH","45217",,,,,,,"954716165","5132423300",,,,"2011-07-18T14:35:39-0500","THADDEUS D. MCCORD",,,,,27,5,0,20,25,0,25,25,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718191853P040098746289001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"KELING ELECTRIC 401 (K) & PROFIT SHARE","001","2006-10-01","KELING ELECTRIC INC",,,"2243 ROOSEVELT STREET",,"HOLLYWOOD","FL","33020",,,,,,,"2243 ROOSEVELT STREET",,"HOLLYWOOD","FL","33020",,,,,,,"260113517","9546496414","238210","KELING ELECTRIC INC",,"2243 ROOSEVELT STREET",,"HOLLYWOOD","FL","33020",,,,,,,"260113517","9546496414",,,,"2011-07-18T18:58:09-0500","KELLY SHEARS",,,,,17,,8,0,8,0,8,3,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,,,"0",,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718192707P030096002209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPIRIT AIRLINES, INC. PREMIUM ONLY PLAN","501","1994-06-01","SPIRIT AIRLINES, INC.",,,"2800 EXECUTIVE WAY",,"MIRAMAR","FL","33025",,,,,,,,,,,,,,,,,,"381747023","9544477893","481000","SPIRIT AIRLINES, INC.",,"2800 EXECUTIVE WAY",,"MIRAMAR","FL","33025",,,,,,,"381747023","9544477893",,,,"2011-07-18T19:26:07-0500","THOMAS C CANFIELD",,,,,1699,1847,16,2,1865,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720140010P030097105521002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ATTERRO, INC. TEMPORARY EMPLOYEES BENEFIT PLAN","507","2002-06-01","ATTERRO, INC.",,,"50 SOUTH 10TH STREET, SUITE 500",,"MINNEAPOLIS","MN","55403",,,,,,,,,,,,,,,,,,"411655052","6123732600","561300","ATTERRO, INC.",,"50 SOUTH 10TH STREET, SUITE 500",,"MINNEAPOLIS","MN","55403",,,,,,,"411655052","6123732600","DOBBS TEMPORARY SERVICES INC","411655052","507","2011-07-20T13:45:33-0500","TERI CALDERON",,,,,547,419,,,419,,,,,,,"4A4B4D4E4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720142625P040451995040001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"VAT INCORPORATED 401(K) PROFIT SHARING PLAN","002","1987-01-01","VAT INC.",,,"500 W. CUMMINGS PARK","SUITE 5450","WOBURN","MA","01801",,,,,,,"500 W. CUMMINGS PARK","SUITE 5450","WOBURN","MA","01801",,,,,,,"042823615","7819351446","339900","VAT INC.",,"500 W. CUMMINGS PARK","SUITE 5450","WOBURN","MA","01801",,,,,,,"042823615","7819351446",,,,"2011-07-20T14:24:14-0500","SIMON MANSBRIDGE",,,,,34,29,0,7,36,0,36,34,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110718111901P040098487393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UT MEDICAL GROUP LTD PLAN","502","1987-01-01","UT MEDICAL GROUP, INC.",,,"1407 UNION AVENUE, SUITE 100",,"MEMPHIS","TN","38104",,,,,,,,,,,,,,,,,,"621162462","9018668100","621111","UT MEDICAL GROUP, INC.",,"1407 UNION AVENUE, SUITE 100",,"MEMPHIS","TN","38104",,,,,,,"621162462","9018668100",,,,"2011-07-18T11:18:21-0500","STUART WILKINSON",,,,,828,856,0,0,856,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718083508P040445359760001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"AOPA WELFARE BENEFITS PLAN","501","1988-02-01","AIRCRAFT OWNERS AND PILOTS ASSOCIATION",,,"421 AVIATION WAY",,"FREDERICK","MD","217014756",,,,,,,,,,,,,,,,,,"520636210","3016952000","813000","AIRCRAFT OWNERS AND PILOTS ASSOCIATION",,"421 AVIATION WAY",,"FREDERICK","MD","217014756",,,,,,,"520636210","3016952000",,,,"2011-07-18T08:34:48-0500","TIM FORTUNE",,,,,225,205,4,3,212,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718121236P030450047216001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMPASS HEALTHCARE MARKETERS 401(K) PLAN","001","2007-10-01","COMPASS HEALTHCARE MARKETERS",,,"200 PRINCETON SOUTH CORPORATE CTR","SUITE 320","EWING","NJ","08628",,,,,,,,,,,,,,,,,,"061689603","6096888440","621610","COMPASS HEALTHCARE MARKETERS",,"200 PRINCETON SOUTH CORPORATE CTR","SUITE 320","EWING","NJ","08628",,,,,,,"061689603","6096888440",,,,"2011-07-18T12:10:58-0500","KRISTIN KELLER",,,,,28,24,1,5,30,,30,24,,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718162338P030095910817004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARGARET P MUSCARELLE CHILD DEVELOPMENT CENTER, INC","001","1998-04-29","MARGARET P MUSCARELLE CHILD DEVELOPMENT CENTER, INC",,,"1 WALNUT AVENUE",,"GARFIELD","NJ","07026",,,,,,,,,,,,,,,,,,"221593527","9734783080","624410","MARGARET P MUSCARELLE CHILD DEVELOPMENT CENTER, INC",,"1 WALNUT AVENUE",,"GARFIELD","NJ","07026",,,,,,,"221593527","9734783080",,,,"2011-07-13T12:12:58-0500","JEAN LICKUN",,,,,10,6,,4,10,,10,,,,"2L",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720142709P030014205186001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"LOCAL I-18 INTERNATIONAL ASSOCIATION OF FIRE FIGHTERS MONEY PURCHASE PLAN","001","2000-10-01","DAKOTA SERVICES, INC. & LOCAL I-18 INTL ASSOC. OF FIRE FIGHTERS",,,"702 SPRAKER DR. CAFS",,"CAVALIER","ND","58220",,,,,,,,,,,,,,,,,,"450379683","7019938622","812990","DAKOTA SERVICES, INC. & LOCAL I-18 INTL ASSOC. OF FIRE FIGHTERS",,"702 SPRAKER DR. CAFS",,"CAVALIER","ND","58220",,,,,,,"450379683","7019938622",,,,"2011-07-20T14:26:49-0500","KENNETH GUDMUNDSON","2011-07-20T14:26:49-0500","KENNETH GUDMUNDSON",,,16,15,0,2,17,0,17,16,0,,"3D2C2T2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718083530P030013982802007","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"403(B) PLAN FOR THE SOCIETY FOR THE PREVENTION OF CRUELTY TO ANIMALS TAMPA BAY, FLORIDA, INC.","003","1995-07-01","SOCIETY FOR THE PREVENTION OF CRUELTY",,"TO ANIMALS, TAMPA BAY, FLORIDA, INC","9099 130TH AVENUE NORTH",,"LARGO","FL","337731411",,,,,,,,,,,,,,,,,,"590715928","7275863591","812910","SOCIETY FOR THE PREVENTION OF CRUELTY","TO ANIMALS, TAMPA BAY, FLORIDA, INC","9099 130TH AVENUE NORTH",,"LARGO","FL","337731411",,,,,,,"590715928","7275863591",,,,"2011-07-18T04:10:01-0500","BIBI GOEDDERT",,,,,17,10,0,0,10,0,10,14,,,"2M",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718090037P040098394337001","2010-11-01","2011-03-31","2",,"0","0","1","1","0","0","0","0","0",,"CAVALIER TELEPHONE MEDICAL PLAN","501","2001-11-01","CAVALIER TELEPHONE L.L.C.",,,"2134 W LABURNUM AVE",,"RICHMOND","VA","23227",,,,,,,,,,,,,,,,,,"541914822","8044224532","525100","CAVALIER TELEPHONE L.L.C.",,"2134 W LABURNUM AVE",,"RICHMOND","VA","23227",,,,,,,"541914822","8044224532",,,,"2011-07-18T08:59:14-0500","SUSAN BROGGI",,,,,1152,0,0,0,0,,,,,,,"4A4E4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718124548P040098535777001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BRANDT, FISHER, ALWARD & PEZZETTI P.C. 401(K) PLAN","001","1998-07-01","BRANDT, FISHER, ALWARD & PEZZETTI, P.C.",,,"1241 E 8TH",,"TRAVERSE CITY","MI","49696",,,,,,,,,,,,,,,,,,"383330491","2319419660","541110","BRANDT, FISHER, ALWARD & PEZZETTI, P.C.",,"1241 E 8TH",,"TRAVERSE CITY","MI","49696",,,,,,,"383330491","2319419660",,,,"2011-07-18T12:44:35-0500","DONALD BRANDT","2011-07-18T12:45:26-0500","DONALD BRANDT",,,35,38,0,0,38,0,38,37,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718125856P040002976179001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEALTH AND WELFARE PLAN OF KONDEX CORPORATION","502","1999-02-01","KONDEX CORPORATION",,,"1500 TECHNOLOGY DRIVE",,"LOMIRA","WI","530489440",,,,,,,,,,,,,,,,,,"391205951","9202694100","332110","KONDEX CORPORATION",,"1500 TECHNOLOGY DRIVE",,"LOMIRA","WI","530489440",,,,,,,"391205951","9202694100",,,,"2011-07-18T12:55:06-0500","JAMES WESSING",,,,,232,169,0,0,169,0,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718125932P030014002914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WALES DARBY INC 401K PROFIT SHARING PLAN","001","1988-01-01","WALES DARBY INC",,,"5B POWDER HORN DR",,"WARREN","NJ","070595105",,,,,,,,,,,,,,,,,,"112335371","7325601001","423800","WALES DARBY INC",,"5B POWDER HORN DRIVE",,"WARREN","NJ","070595105",,,,,,,"112335371","7325601001",,,,"2011-07-18T12:58:12-0500","STEPHEN DARBY",,,,,75,59,0,10,69,0,69,68,0,,"2A2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718195426P030096011425001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"COMPOSITE SOFTWARE HEALTH AND WELFARE PLAN","501","2010-01-01","COMPOSITE SOFTWARE, INC.",,,"2655 CAMPUS DRIVE, SUITE 200",,"SAN MATEO","CA","94403",,,,,,,,,,,,,,,,,,"010585498","6502278200","541519","COMPOSITE SOFTWARE, INC.",,"2655 CAMPUS DRIVE, SUITE 200",,"SAN MATEO","CA","94403",,,,,,,"010585498","6502278200",,,,"2011-07-18T19:53:44-0500","JON A BODE",,,,,117,117,0,0,117,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720152426P030097169569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN BRIDGE COMPANY HEALTH AND WELFARE PLAN FOR FULL-TIME SALARIED EMPLOYEES","501","1992-07-01","AMERICAN BRIDGE COMPANY",,,"1000 AMERICAN BRIDGE WAY",,"CORAOPOLIS","PA","15108",,,,,,,,,,,,,,,,,,"251607500","4126311000","237310","DIRECTOR OF HUMAN RESOURCES",,"1000 AMERICAN BRIDGE WAY",,"CORAOPOLIS","PA","151081266",,,,,,,"251767200","4126311000",,,,"2011-07-20T15:21:27-0500","KATHY BONETTI",,,,,274,255,8,0,263,,,,,,,"4A4B4D4E4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720132657P040014713186001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"NEAL W. FARINHOLT PROFIT SHARING PLAN","002","1986-01-01","NEAL W. FARINHOLT",,,"9625 BLACK MOUNTAIN ROAD","SUITE 307","SAN DIEGO","CA","92126",,,,,,,,,,,,,,,,,,"952901593","8585656605","524210","NEAL W. FARINHOLT",,"9625 BLACK MOUNTAIN ROAD","SUITE 307","SAN DIEGO","CA","92126",,,,,,,"952901593","8585656605",,,,"2011-07-20T13:26:51-0500","NEAL FARINHOLT","2011-07-20T13:26:51-0500","NEAL FARINHOLT",,,1,1,0,0,1,0,1,1,0,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720133434P030097090977001","2010-08-10","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"LEISURE TIME GAMING & AMUSEMENTS, INC. 401(K) PLAN","001","2010-08-10","LEISURE TIME GAMING & AMUSEMENTS",,,"507 CLAIRE LANE",,"PROSPECT HEIGHTS","IL","60070",,,,,,,,,,,,,,,,,,"273210270","8473661122","713200","LEISURE TIME GAMING & AMUSEMENTS",,"507 CLAIRE LANE",,"PROSPECT HEIGHTS","IL","60070",,,,,,,"273210270","8473661122",,,,"2011-07-20T13:34:12-0500","ROBIN FERRARI","2011-07-20T13:33:38-0500","ROBIN FERRARI",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718104645P030449837712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLAAMP COMPANY, INC. 401(K) PROFIT SHARING PLAN","001","2007-08-01","CLAAMP COMPANY, INC.",,,"1109 W OAKLAND AVE",,"AUSTIN","MN","55912",,,,,,,,,,,,,,,,,,"411856193","5074337123","446110","CLAAMP COMPANY, INC.",,"1109 W OAKLAND AVE",,"AUSTIN","MN","55912",,,,,,,"411856193","5074337123",,,,"2011-07-18T10:46:29-0500","JON ENGELHARDT",,,,,0,12,0,0,12,0,12,11,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718134459P040098568897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEINBERG'S INC. EMPLOYEES' PENSION PLAN","001","2007-06-01","STEINBERGS INC.",,,"PO BOX 5665",,"CARY","NC","275125665",,,,,,,"PO BOX 5665",,"CARY","NC","275125665",,,,,,,"208846270","9193635544","454110","ROBERT L STEINBERG","STEINBERGS INC.","PO BOX 5665",,"CARY","NC","27512",,,,,,,"208846270","9193635544",,,,"2011-07-18T13:44:23-0500","STEPHEN CRAIR",,,,,3,2,,1,3,,3,,,,"3B3C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718135751P040446132464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONELL CHEMICAL SENSES CENTER DENTAL PLAN","501","2005-01-01","MONELL CHEMICAL SENSES CENTER",,,"3500 MARKET STREET",,"PHILADELPHIA","PA","19104",,,,,,,,,,,,,,,,,,"232020897","2158986666","813000","MONELL CHEMICAL SENSES CENTER",,"3500 MARKET STREET",,"PHILADELPHIA","PA","19104",,,,,,,"232020897","2158986666",,,,"2011-07-18T13:57:02-0500","MOIRA MCANDREWS","2011-07-18T13:57:02-0500","MOIRA MCANDREWS",,,110,105,3,0,108,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718102405P030095741761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CCDC, INC. 401(K) PLAN","001","2007-10-01","CCDC, INC.",,,"560 BAILEY RD",,"LUMBERTON","NC","28358",,,,,,,,,,,,,,,,,,"201283560","9107388200","624410","CCDC, INC.",,"560 BAILEY RD",,"LUMBERTON","NC","28358",,,,,,,"201283560","9107388200",,,,"2011-07-18T10:23:03-0500","DANNY LOWERY",,,,,33,32,0,0,32,0,32,3,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718103523P030095747857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOYOLA HIGH SCHOOL","501","2009-01-01","LOYOLA HIGH SCHOOL - FLEXIBLE BENEFITS PLAN",,,"1901 VENICE BLVD.",,"LOS ANGELES","CA","90006",,,,,,,"1901 VENICE BLVD.",,"LOS ANGELES","CA","90006",,,,,,,"951664109","2133815121","611000","LOYOLA HIGH SCHOOL - FLEXIBLE BENEFITS PLAN",,"1901 VENICE BLVD.",,"LOS ANGELES","CA","90006",,,,,,,"951664109","2133815121",,,,"2011-07-18T10:31:12-0500","JAMES RICH",,,,,62,53,,,53,,53,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718104319P030013992546009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"S&B ENGINEERS & CONSTRUCTORS LTD. ACCIDENTAL DEATH AND DISMEMBERMENT","503","1992-01-01","S&B ENGINEERS & CONSTRUCTORS LTD.",,"FOREST C. DUGAT","PO BOX 266245",,"HOUSTON","TX","77207",,,,,,,"7809 PARK PLACE BLVD.",,"HOUSTON","TX","770874639",,,,,,,"760355284","7138454234","237990","S&B ENGINEERS & CONSTRUCTORS LTD.","FOREST C. DUGAT","PO BOX 266245",,"HOUSTON","TX","77207",,,,,,,"760355284","7138454234",,,,"2011-07-18T05:34:39-0500","FORREST C. DUGAT","2011-07-18T05:34:39-0500","FORREST C. DUGAT",,,1622,1731,,,1731,,,,,,,"4H4L","1",,,,"1",,,,,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718104421P040098466753001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DAVID BINDER RESEARCH 401(K) PLAN","001","2009-01-01","DAVID BINDER RESEARCH",,,"44 PAGE STREET","SUITE 404","SAN FRANCISCO","CA","94102",,,,,,,,,,,,,,,,,,"270615383","4156217655","541990","DAVID BINDER RESEARCH",,"44 PAGE STREET","SUITE 404","SAN FRANCISCO","CA","94102",,,,,,,"270615383","4156217655","DAVID BINDER RESEARCH","943222639","001","2011-07-18T10:44:15-0500","DAVID BINDER",,,,,7,7,0,1,8,0,8,8,1,,"2A2E2F2G2J3D3H",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718073951P040002970115001","2011-01-01","2011-01-31","2",,"0","0","1","1","0","0","0","0","0",,"APRIMO, INC. HEALTH, DENTAL, VISION, LIFE","502","2004-01-01","APRIMO, INC.",,,"900 EAST 96TH STREET","SUITE 400","INDIANAPOLIS","IN","462403876",,,,,,,,,,,,,,,,,,"352052509","3178034368","541519","APRIMO, INC.",,"900 EAST 96TH STREET","SUITE 400","INDIANAPOLIS","IN","462403876",,,,,,,"352052509","3178034368",,,,"2011-07-15T16:29:24-0500","KIM KEAN","2011-07-15T16:29:24-0500","KIM KEAN",,,323,0,0,0,0,,,,,,,"4A4B4D4E4H4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718140829P030095844305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VERAMARK TECHNOLOGIES INC. GROUP TERM LIFE INSURANCE","501","1988-12-01","VERAMARK TECHNOLOGIES, INC.",,,"1565 JEFFERSON ROAD","SUITE 120","ROCHESTER","NY","14623",,,,,,,"1565 JEFFERSON ROAD","SUITE 120","ROCHESTER","NY","14623",,,,,,,"161192368","5853816000","541519","VERAMARK TECHNOLOGIES, INC.",,"1565 JEFFERSON ROAD","SUITE 120","ROCHESTER","NY","14623",,,,,,,"161192368","5853816000",,,,"2011-07-18T13:40:50-0500","JESSIE CRAFT",,,,,77,88,0,0,88,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718160802P030095901473006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FRANK RYBURN III MD PA EMPLOYEES PROFIT SHARING PLAN & TRUST","001","1982-10-01","FRANK RYBURN III MD PA",,,"3420 23RD STREET",,"LUBBOCK","TX","79410",,,,,,,,,,,,,,,,,,"751838243","8067932474","621111","FRANK RYBURN III MD PA",,"3420 23RD STREET",,"LUBBOCK","TX","79410",,,,,,,"751838243","8067932474",,,,"2011-07-18T09:27:05-0500","BARBARA A GILLIAM",,,,,3,3,,,3,,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720135409P030014200114001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIFE INSURANCE","501","1973-10-01","CREDIT SUISSE SECURITIES USA LLC",,,"ELEVEN MADISON AVENUE",,"NEW YORK","NY","100103629",,,,,,,,,,,,,,,,,,"050546650","2123252000","523110","CREDIT SUISSE SECURITIES USA LLC",,"ELEVEN MADISON AVENUE",,"NEW YORK","NY","100103629",,,,,,,"050546650","2123252000",,,,"2011-07-20T09:16:09-0500","JENNIFER SCHILLER",,,,,10142,10208,489,0,10697,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110718162845P030095914225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STERN, HAMMER, PRICE, AND ASSOCIATES 401(K) PLAN","001","1994-01-01","STERN, HAMMER, PRICE, AND ASSOCIATES",,"DAVID ZUCKERMAN","5358 SNOWCREEK ST.",,"SIMI VALLEY","CA","93063",,,,,,,"5358 SNOWCREEK ST.",,"SIMI VALLEY","CA","93063",,,,,,,"953793271","8055206489","541211","STERN, HAMMER, PRICE, AND ASSOCIATES","DAVID ZUCKERMAN","5358 SNOWCREEK ST.",,"SIMI VALLEY","CA","93063",,,,,,,"953793271","8055206489",,,,"2011-07-18T16:23:32-0500","DAVID ZUCKERMAN",,,,,1,1,0,0,1,0,1,1,0,,"2C2G2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718180928P040446704736001","2010-11-01","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"SAPPHIRE DESIGN GROUP, INC. 401(K) PROFIT SHARING PLAN","001","2010-11-01","SAPPHIRE DESIGN GROUP, INC.",,,"10505 TARTON FIELDS CIRCLE",,"RALEIGH","NC","27617",,,,,,,,,,,,,,,,,,"273814695","9192089014","238300","SAPPHIRE DESIGN GROUP, INC.",,"10505 TARTON FIELDS CIRCLE",,"RALEIGH","NC","27617",,,,,,,"273814695","9192089014",,,,"2011-07-18T18:06:47-0500","KRISTA DAVILA",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110720150149P040099974785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIR I ALIKHAN MD MONEY PURCHASE PLAN","002","1998-01-01","NIR I ALIKHAN MD INC",,,"500 E OLIVE AVE # 803",,"BURBANK","CA","91501",,,,,,,"500 E OLIVE AVE # 803",,"BURBANK","CA","91501",,,,,,,"954644651","8188453510","621112","MIR I ALIKHAN",,"2644 SAN ANDRES WAY",,"CLAREMONT","CA","91711",,,,,,,"753172054","9096269786",,,,"2011-07-20T15:00:44-0500","IBRAHIM KHAN",,,,,1,1,0,0,1,0,1,1,0,,"3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720150806P040099978081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ELEPHANT S FOOT, INC. PROFIT SHARING PLAN","002","1982-07-01","ELEPHANT S FOOT, INC.",,,"3800 SOUTH DIXIE HIGHWAY",,"WEST PALM BEACH","FL","33405",,,,,,,"ELEPHANTS FOOT INC","3800 SOUTH DIXIE HIGHWAY","WEST PALM BEACH","FL","33405",,,,,,,"591922004","5618320170","453990","ELEPHANT S FOOT, INC.",,"3800 SOUTH DIXIE HIGHWAY",,"WEST PALM BEACH","FL","33405",,,,,,,"591922004","5618320170",,,,"2011-07-20T14:50:50-0500","RONALD FRENCH","2011-07-20T14:50:50-0500","RONALD FRENCH",,,4,3,0,0,3,0,3,4,0,,"2E3D",,"1",,"1",,,,"1",,"1",,,,"1","1","2",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718090150P030449586112001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"HENRY RUSCHMANN INVENTIONS, INC. EMPLOYEE PROFIT SHARING PLAN","001","1980-04-01","HENRY RUSCHMANN INVENTIONS, INC.",,,"PO BOX 152",,"BERNARDSVILLE","NJ","07942",,,,,,,"PO BOX 152",,"BERNARDSVILLE","NJ","07942",,,,,,,"221964541","9087665067","423990","HENRY RUSCHMANN INVENTIONS, INC.",,"PO BOX 152",,"BERNARDSVILLE","NJ","07942",,,,,,,"221964541","9087665067",,,,"2011-07-18T09:01:04-0500","TIM LENIHAN JR.",,,,,1,1,0,0,1,0,1,1,0,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718125003P030095810385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUNDWATER & ENVIRONMENTAL SERVICES, INC EMPLOYEE WELFARE BENEFIT PLAN","501","1992-01-01","GROUNDWATER & ENVIRONMENTAL SERVICES",,,"1340 CAMPUS PARKWAY",,"NEPTUNE","NJ","07753",,,,,,,,,,,,,,,,,,"232335424","9089191646","562000","GROUNDWATER & ENVIRONMENTAL SERVICES",,"1340 CAMPUS PARKWAY",,"NEPTUNE","NJ","07753",,,,,,,"232335424","9089191646",,,,"2011-07-18T12:47:42-0500","ANTHONY A. KULL",,,,,667,603,0,0,603,,,,,,,"4A4B4D4F4H4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718171219P040098696881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VANGUARD INVESTMENT AND CONSULTING 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","VANGUARD INVESTMENT AND CONSUL",,,"3575 PIEDMONT RD BLDG 15","STE L120","ATLANTA","GA","30305",,,,,,,,,,,,,,,,,,"201830303","4044959577","531390","VANGUARD INVESTMENT AND CONSUL",,"3575 PIEDMONT RD BLDG 15","STE L120","ATLANTA","GA","30305",,,,,,,"201830303","4044959577","VANGUARD INVESTMENT AND CONSUL","201830303","001","2011-07-18T05:12:17-0500","VANGUARD INVESTMENT AND CONSUL",,,,,51,55,0,2,57,0,57,7,0,,"2T2G3D2E2J3H2K2R",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718144703P040098614993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ECKENROD FORD 401(K) PLAN","001","1999-07-12","ECKENROD FORD LINCOLN MERCURY OF CULLMAN, INC.",,,"5255 ALABAMA HWY 157",,"CULLMAN","AL","350580820",,,,,,,,,,,,,,,,,,"631218918","2567343361","441110","ECKENROD FORD LINCOLN MERCURY OF CULLMAN, INC.",,"5255 ALABAMA HWY 157",,"CULLMAN","AL","350580820",,,,,,,"631218918","2567343361",,,,"2011-07-18T14:46:15-0500","LISA ECKENROD",,,,,41,41,0,0,41,0,41,27,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718145534P040098619953008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"IAN MC MILLAN MONEY PURCHASE PLAN","002","1986-01-01","IAN MC MILLAN",,,"427 ELM AVENUE",,"ELMHURST","IL","60126",,,,,,,"427 ELM AVENUE",,"ELMHURST","IL","60126",,,,,,,"363554659","6308339068","541110","IAN MC MILLAN",,"427 ELM AVENUE",,"ELMHURST","IL","60126",,,,,,,"363554659","6308339068",,,,"2011-07-18T08:53:16-0500","IAN MCMILLAN",,,"2011-07-18T08:53:16-0500","RAYMOND BERG",1,1,,,1,,1,1,,,"2C2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110718145559P040098620081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WAMCO, INC. PROFIT SHARING PLAN","001","1973-12-27","WAMCO, INC.",,,"11555-A COLEY RIVER CIRCLE",,"FOUNTAIN VALLEY","CA","92708",,,,,,,,,,,,,,,,,,"952560160","7145455560","423600","WAMCO, INC.",,"11555-A COLEY RIVER CIRCLE",,"FOUNTAIN VALLEY","CA","92708",,,,,,,"952560160","7145455560",,,,"2011-07-18T14:55:58-0500","CHRISTOPHER MATTHEWS","2011-07-18T14:55:58-0500","CHRISTOPHER MATTHEWS",,,36,38,,,38,,38,38,2,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110718150939P040098629809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GENESIS 401(K) PLAN AND TRUST","002","1988-01-01","GENESIS",,,"1273 W. DERRYNANE STREET",,"LE CENTER","MN","56057",,,,,,,,,,,,,,,,,,"410371070","5073576868","115110","GENESIS",,"1273 W. DERRYNANE STREET",,"LE CENTER","MN","56057",,,,,,,"410371070","5073576868",,,,"2011-07-18T15:09:34-0500","CHANTEL BARNETT",,,,,93,88,2,12,102,0,102,85,1,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718182137P030095968305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QANTAS AIRWAYS HEALTH & WELFARE PLAN","501","1957-09-01","QANTAS AIRWAYS LIMITED",,,"6080 CENTER DRIVE, SUITE 400",,"LOS ANGELES","CA","90045",,,,,,,,,,,,,,,,,,"941096229","3107261400","481000","QANTAS AIRWAYS LIMITED",,"6080 CENTER DRIVE, SUITE 400",,"LOS ANGELES","CA","90045",,,,,,,"941096229","3107261400",,,,"2011-07-18T17:46:23-0500","JENNIFER NEELY",,,,,216,185,6,0,191,,,,,,,"4A4B4D4E4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110718102538P030095742657001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WATERDAM SURGICAL ASSOCIATES, P.C. PROFIT SHARING PLAN","002","1997-03-17","WATERDAM SURGICAL ASSOCIATES, P.C.",,,"242 EAST MCMURRAY ROAD",,"MCMURRAY","PA","15317",,,,,,,,,,,,,,,,,,"232887852","7249423202","621111","WATERDAM SURGICAL ASSOCIATES, P.C.",,"242 EAST MCMURRAY ROAD",,"MCMURRAY","PA","15317",,,,,,,"232887852","7249423202",,,,"2011-07-18T11:16:23-0500","EUGENE HAMMELL",,,,,2,2,,,2,,2,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-18","Filed with authorized/valid electronic signature",, "20110719161137P040099327233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENCOMPASS GROUP LLC 401K RETIREMENT PLAN","001","1999-08-02","ENCOMPASS GROUP LLC",,,"615 MACON ROAD",,"MCDONOUGH","GA","30253",,,,,,,,,,,,,,,,,,"582471437","7709573981","339110","ENCOMPASS GROUP LLC",,"615 MACON ROAD",,"MCDONOUGH","GA","30253",,,,,,,"582471437","7709573981",,,,"2011-07-19T16:10:31-0500","SUZANNE ALLMAN",,,,,611,480,0,81,561,0,561,431,9,,"2E2G2J2K2T3D2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720083010P040099756753007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BARTOW FORD COMPANY, INC. 401(K) RETIREMENT PLAN","003","1987-01-01","BARTOW FORD COMPANY, INC.",,,"2800 U.S. HWY. 98 NORTH",,"BARTOW","FL","33830",,,,,,,,,,,,,,,,,,"590687878","8635330425","441110","BARTOW FORD COMPANY, INC.",,"2800 U.S. HWY. 98 NORTH",,"BARTOW","FL","33830",,,,,,,"590687878","8635330425",,,,"2011-07-08T15:37:51-0500","RANDALL MATTHEWS",,,,,200,204,21,0,225,0,225,120,,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720122245P030097052465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORE MATERIALS CORPORATION COLUMBUS BENEFIT PLAN","533","2003-01-01","CORE MATERIALS CORPORATION",,,"800 MANOR PARK DRIVE",,"COLUMBUS","OH","432280183",,,,,,,,,,,,,,,,,,"311481870","6148705000","326100","CORE MATERIALS CORPORATION",,"800 MANOR PARK DRIVE",,"COLUMBUS","OH","432280183",,,,,,,"311481870","6148705000",,,,"2011-07-20T12:21:40-0500","MICHAEL DEL REGNO",,,,,342,387,0,0,387,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719131115P040031083367001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEALTHCARE BENEFIT PLAN","501","1987-10-10","DETROIT COUNTRY DAY SCHOOL",,,"22305 WEST 13 MILE RD",,"BEVERLY HILLS","MI","480254435",,,,,,,,,,,,,,,,,,"381359251","2486467717","611000","DETROIT COUNTRY DAY SCHOOL",,"22305 WEST 13 MILE RD",,"BEVERLY HILLS","MI","480254435",,,,,,,"381359251","2486467717",,,,"2011-07-19T13:10:17-0500","LOUISE WENZEL",,,,,183,214,25,0,239,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719165303P040099364657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLACK, SIMS & BIRCH PROFIT SHARING PLAN","003","1986-10-17","BLACK, SIMS & BIRCH",,,"345 S. ATLANTIC AVENUE",,"ORMOND BEACH","FL","32176",,,,,,,,,,,,,,,,,,"591312176","3862531111","541110","BLACK, SIMS & BIRCH",,"345 S. ATLANTIC AVENUE",,"ORMOND BEACH","FL","32176",,,,,,,"591312176","3862531111",,,,"2011-07-19T15:27:16-0500","GUILFORD SIMS",,,,,7,1,0,2,3,0,3,2,0,,"2E2F2G2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720081348P030455207776005","2010-03-01","2011-02-28","2",,,,,,,,,,,,"DUQUE-SALVA, MD PA PROFIT-SHARING PLAN AND TRUST","002","1989-03-01","NIEVA T. DUQUE, MD, PA",,,"2500 GRUBB ROAD, SUITE 120",,"WILMINGTON","DE","19810",,,,,,,,,,,,,,,,,,"510174730","3024751556","621111","NIEVA T. DUQUE, MD, PA",,"2500 GRUBB ROAD, SUITE 120",,"WILMINGTON","DE","19810",,,,,,,"510174730","3024751556",,,,"2011-07-31T10:34:29-0500","NIEVA DUQUE-SALVA",,,,,12,5,,7,12,,12,9,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720090008P040014689730001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KENT E. LOVELACE, DDS, PC PROFIT SHARING PLAN","001","1985-07-01","KENT E LOVELACE, DDS, PC",,,"1101 S. 70TH STREET, SUITE 201",,"LINCOLN","NE","685104293",,,,,,,,,,,,,,,,,,"470673792","4024831101","621210","KENT E LOVELACE, DDS, PC",,"1101 S. 70TH STREET, SUITE 201",,"LINCOLN","NE","685104293",,,,,,,"470673792","4024831101",,,,"2011-05-19T14:22:54-0500","KENT LOVELACE","2011-05-19T14:23:05-0500","DR. KENT LOVELACE",,,8,8,0,0,8,0,8,9,1,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720104628P040099835457001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"SONY MUSIC ENTERTAINMENT 401K PLAN","006","1987-01-01","SONY MUSIC HOLDINGS DBA SONY MUSIC ENTERTAINMENT",,,"550 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"550 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"133431958","2128338000","512200","SONY MUSIC HOLDINGS DBA SONY MUSIC ENTERTAINMENT",,"550 MADISON AVENUE",,"NEW YORK","NY","10022",,,,,,,"133431958","2128338000",,,,"2011-07-20T10:43:06-0500","JOHN MATRA",,,,,3791,1806,45,1778,3629,4,3633,3395,1,,"2F2G2J2K2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719193357P030096618305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEVERANCE PAY PLAN FOR EMPLOYEES OF THE GAS COMPANY","505","2003-08-08","THE GAS COMPANY, LLC",,,"P.O. BOX 3000",,"HONOLULU","HI","96802",,,,,,,"1140 WAIMANU STREET",,"HONOLULU","HI","96802",,,,,,,"383679115","8085945607","221210","THE GAS COMPANY, LLC",,"P.O. BOX 3000",,"HONOLULU","HI","96802",,,,,,,"383679115","8085945607",,,,"2011-07-19T18:33:59-0500","KENNETH YAMAMOTO",,,,,309,311,,,311,,311,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110716083525P030094634481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRAUER AND KUCHTA DENTAL ASSOCIATES 401(K) PLAN","001","2006-01-01","GRAUER AND KUCHTA DENTAL ASSOCIATES",,,"101 SOUTH WASHINGTON AVENUE","SUITE 135","PARK RIDGE","IL","60068",,,,,,,,,,,,,,,,,,"362681656","8476963240","621210","GRAUER AND KUCHTA DENTAL ASSOCIATES",,"101 SOUTH WASHINGTON AVENUE","SUITE 135","PARK RIDGE","IL","60068",,,,,,,"362681656","8476963240",,,,"2011-07-16T08:34:08-0500","MARK KUCHTA",,,,,9,8,0,0,8,0,8,4,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-16","Filed with authorized/valid electronic signature",, "20110719164520P040099358081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAHHS FLEX BENEFIT PLAN","545","1989-09-01","CALIFORNIA ASSOCIATION OF HOSPITALS & HEALTH SYSTEMS",,,"1215 K STREET, SUITE 800",,"SACRAMENTO","CA","95814",,,,,,,,,,,,,,,,,,"941205908","9165527567","622000","CALIFORNIA ASSOCIATION OF HOSPITALS & HEALTH SYSTEMS",,"1215 K STREET, SUITE 800",,"SACRAMENTO","CA","95814",,,,,,,"941205908","9165527567",,,,"2011-07-19T14:28:50-0500","JULIE REPPAS","2011-07-19T14:42:03-0500","JULIE REPPAS",,,193,177,0,0,177,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110716105711P040097361761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITEDHEALTH GROUP EMPLOYEE HEALTH BENEFIT PLAN","511","1992-01-01","UNITEDHEALTH GROUP INCORPORATED",,,"PO BOX 1459","MN008-W162","MINNEAPOLIS","MN","554401459",,,,,,,,,,,,,,,,,,"411321939","9529361300","541990","UNITEDHEALTH GROUP INCORPORATED",,"PO BOX 1459","MN008-W162","MINNEAPOLIS","MN","554401459",,,,,,,"411321939","9529361300",,,,"2011-07-16T10:57:04-0500","JAMES F. COPPENS",,,,,75565,77755,1219,1103,80077,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-16","Filed with authorized/valid electronic signature",, "20110719171041P040031145735001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KUNES COUNTRY FORD LINCOLN MECURY INC DENTAL PLAN","501","2007-03-01","KUNES COUNTRY FORD LINCOLN MERCURY, INC.",,,"1234 E. GENEVA STREET",,"DELAVAN","WI","531152002",,,,,,,,,,,,,,,,,,"364115913","2627285544","441110","KUNES COUNTRY FORD LINCOLN MERCURY, INC.",,"1234 E. GENEVA STREET",,"DELAVAN","WI","531152002",,,,,,,"364115913","2627285544",,,,"2011-07-19T16:33:53-0500","SUSAN L. METCALF",,,,,106,101,,,101,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720084438P030455271376005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HEALTH PLAN","505","2007-11-01","ISGN SOLUTIONS, INC",,,"31 INWOOD ROAD",,"ROCKY HILL","CT","060673412",,,,,,,,,,,,,,,,,,"232999188","2675257195","522298","ISGN SOLUTIONS, INC",,"31 INWOOD ROAD",,"ROCKY HILL","CT","060673412",,,,,,,"232999188","2675257195",,,,"2011-07-19T12:03:00-0500","SUE GREEN",,,,,122,836,,,836,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720110035P030097008481001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"TIME CONTROLS, INC. 401(K) PLAN","001","2000-01-01","TIME CONTROLS, INC.",,,"501 E FOX DEN DRIVE",,"KNOXVILLE","TN","37934",,,,,,,,,,,,,,,,,,"620643621","8656920209","453990","BRADLEY MAYNARD",,"501 E FOX DEN DRIVE",,"KNOXVILLE","TN","37934",,,,,,,"620643621","8656920209",,,,"2011-07-20T10:59:09-0500","BRADLEY MAYNARD",,,,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720093013P030014178050008","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"JUDITH G ARMSTRONG PROFIT SHARING RETIREMENT PLAN","001","1994-01-01","JUDITH G ARMSTRONG",,,"PO BOX 2467",,"STAUNTON","VA","24402",,,,,,,,,,,,,,,,,,"542007791","5408863447","531210","JUDITH G ARMSTRONG",,"PO BOX 2467",,"STAUNTON","VA","24402",,,,,,,"542007791","5408863447",,,,"2011-07-20T10:20:36-0500","JUDITH G ARMSTRONG","2011-07-20T10:20:20-0500","JUDITH G ARMSTRONG",,,2,0,0,0,0,0,0,,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110716121011P030094723425001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"MERCY HOSPITAL LONG TERM DISABILITY PLAN","503","1974-04-04","MERCY HOSPITAL",,,"500 EAST MARKET STREET",,"IOWA CITY","IA","522452633",,,,,,,,,,,,,,,,,,"420680391","3193393567","622000","MERCY HOSPITAL",,"500 EAST MARKET STREET",,"IOWA CITY","IA","522452633",,,,,,,"420680391","3193393567",,,,"2011-07-16T12:10:03-0500","MARIE PEETERS",,,,,1072,1067,0,0,1067,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-16","Filed with authorized/valid electronic signature",, "20110720122604P030455786544002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TOMPKINS FINANCIAL CORPORATION LONG TERM DISABILITY, LIFE & ADD PLAN","502","2002-03-01","TOMPKINS FINANCIAL CORPORATION",,,"110 THE COMMONS",,"ITHACA","NY","14850",,,,,,,"110 THE COMMONS",,"ITHACA","NY","14850",,,,,,,"161482357","6072733210","522110","TOMPKINS FINANCIAL CORPORATION",,"110 THE COMMONS",,"ITHACA","NY","14850",,,,,,,"161482357","6072733210",,,,"2011-07-14T07:52:02-0500","CINDY A. CUTE",,,,,788,832,,,832,,,,,,,"4B4H4L","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720103206P040014698066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ESL FEDERAL CREDIT UNION VOLUNTARY EMPLOYEES BENEFICIARY ASSOCIATION PLAN","506","1997-01-01","ESL FEDERAL CREDIT UNION","SAME",,"225 CHESTNUT STREET",,"ROCHESTER","NY","14604",,,,,,,"225 CHESTNUT STREET",,"ROCHESTER","NY","14604",,,,,,,"161490324","5853361354","522130","ESL FEDERAL CREDIT UNION",,"225 CHESTNUT STREET",,"ROCHESTER","NY","14604",,,,,,,"161490324","5853361354",,,,"2011-07-19T14:23:27-0500","LISA MCLAUGHLIN","2011-07-20T09:15:08-0500","DAVID FIEDLER",,,48,0,42,0,42,,42,,,,,"4Q","0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720125924P030455875152001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEAVER LEATHER, LLC","502","1999-04-01","WEAVER LEATHER GOODS, LLC",,,"PO BOX 68",,"MT. HOPE","OH","446600068",,,,,,,,,,,,,,,,,,"263411165","3306747548","316990","WEAVER LEATHER GOODS, LLC",,"PO BOX 68",,"MT. HOPE","OH","446600068",,,,,,,"263411165","3306747548",,,,"2011-07-20T12:58:35-0500","BARB CLARK",,,,,121,120,0,0,120,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719135805P040449079136001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ST. MARY'S FOOD BANK'S PROFIT SHARING PLAN","002","1994-01-01","ST. MARYS FOOD BANK ALLIANCE",,,"2831 N 31ST AVE",,"PHOENIX","AZ","85009",,,,,,,"2831 N 31ST AVE",,"PHOENIX","AZ","85009",,,,,,,"237353532","6023523640","813000","ST. MARYS FOOD BANK ALLIANCE",,"2831 N 31ST AVE",,"PHOENIX","AZ","85009",,,,,,,"237353532","6023523640",,,,"2011-07-19T13:57:32-0500","PATRICK SNYDER",,,,,179,154,0,30,184,0,184,113,8,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719135103P040014609986001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THE DANAIS GROUP 401(K) PLAN","001","2005-01-01","THE DANAIS GROUP",,,"1442 IRVINE BOULEVARD, SUITE 220",,"TUSTIN","CA","92780",,,,,,,,,,,,,,,,,,"571195404","7145739900","541600","THE DANAIS GROUP",,"1442 IRVINE BOULEVARD, SUITE 220",,"TUSTIN","CA","92780",,,,,,,"571195404","7145739900",,,,"2011-07-19T13:47:44-0500","DOUGLAS SMITH",,,,,4,3,1,0,4,0,4,4,0,,"2A2E2F2H2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719164659P040099360161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HARRISBURG NEWS COMPANY EMPLOYEE BENEFIT PLAN","501","1998-01-01","HARRISBURG NEWS COMPANY",,,"980 BRIARSDALE ROAD",,"HARRISBURG","PA","17106",,,,,,,,,,,,,,,,,,"231966685","7175618377","511110","HARRISBURG NEWS COMPANY",,"980 BRIARSDALE ROAD",,"HARRISBURG","PA","17106",,,,,,,"231966685","7175618377",,,,"2011-07-19T14:55:17-0500","JASON A. KIEFFER",,,,,129,129,0,0,129,,,,,,,"4A4B4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719171114P040099374033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL QUALITY INSPECTIONS, INC. 401(K) PLAN","001","1997-01-01","NATIONAL QUALITY INSPECTIONS, INC.",,,"2527 NW UPSHUR",,"PORTLAND","OR","97210",,,,,,,,,,,,,,,,,,"411816003","5034971278","115110","NATIONAL QUALITY INSPECTIONS, INC.",,"2527 NW UPSHUR",,"PORTLAND","OR","97210",,,,,,,"411816003","5034971278",,,,"2011-07-19T16:36:34-0500","NICOLE RAYMOND",,,,,58,59,0,1,60,0,60,19,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719172013P040014632082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REDDY ICE CORPORATION HEALTH AND WELFARE PLAN","501","1998-02-01","REDDY ICE CORPORATION",,,"8750 N CENTRAL EXPWY, STE 1800",,"DALLAS","TX","75231",,,,,,,,,,,,,,,,,,"752244985","8009475870","312110","REDDY ICE CORPORATION",,"8750 N CENTRAL EXPWY, STE 1800",,"DALLAS","TX","75231",,,,,,,"752244985","8009475870",,,,"2011-07-19T17:19:24-0500","CATHERINE NESBITT",,,,,1478,1386,87,0,1473,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720111302P030097016193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE LPA GROUP INCORPORATED CAFETERIA BENEFIT PLAN - MEDICAL/LIFE","501","1986-01-01","THE LPA GROUP INCORPORATED",,,"700 HUGER STREET",,"COLUMBIA","SC","29201",,,,,,,,,,,,,,,,,,"570716200","8032542211","541330","THE LPA GROUP INCORPORATED",,"700 HUGER STREET",,"COLUMBIA","SC","29201",,,,,,,"570716200","8032542211",,,,"2011-07-20T11:12:05-0500","ARTHUR E PARRISH, JR",,,,,370,370,0,0,370,,,,,,,"4A4B4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719135843P030096466449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDICAL MANAGEMENT SERVICES 401(K) PROFIT SHARING PLAN & TRUST","001","1993-01-01","MEDICAL MANAGEMENT SERVICES",,,"400 KEISLER DRIVE",,"CARY","NC","27518",,,,,,,,,,,,,,,,,,"562174337","9197819950","621111","MEDICAL MANAGEMENT SERVICES",,"400 KEISLER DRIVE",,"CARY","NC","27518",,,,,,,"562174337","9197819950",,,,"2011-07-19T01:58:40-0500","MEDICAL MANAGEMENT SERVICES",,,,,83,71,0,12,83,0,83,80,0,,"2T2G2A3D2E2J3H2K2R",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719140311P030453145264008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PETER P RUPPE INC 401K PROFIT SHARING PLAN","001","2006-01-01","PETER P RUPPE INC",,,"21 ROSLYN ROAD",,"GROSSE POINTE SHORES","MI","48236",,,,,,,,,,,,,,,,,,"381408830","5867780120","531210","PETER P RUPPE INC",,"21 ROSLYN ROAD",,"GROSSE POINTE SHORES","MI","48236",,,,,,,"381408830","5867780120",,,,"2011-07-19T13:00:02-0500","PETER P RUPPE",,,,,2,2,,,2,,2,2,,,"3E2R2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719225408P040014653378006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AURORA MARKETING COMPANY RESTATED PROFIT SHARING PLAN AND TRUST","001","1984-09-01","AURORA MARKETING COMPANY",,,"2018 S. PONTIAC WAY",,"DENVER","CO","80224",,,,,,,,,,,,,,,,,,"840769746","3037583051","423600","AURORA MARKETING COMPANY",,"2018 S. PONTIAC WAY",,"DENVER","CO","80224",,,,,,,"840769746","3037583051",,,,"2011-07-19T09:27:51-0500","STANLEY REUBENSTEIN","2011-07-19T09:27:51-0500","STANLEY REUBENSTEIN",,,5,5,,,5,,5,5,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720084508P030096935041003","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"ANDREW C. TARKINGTON DDS PC PROFIT SHARING PLAN","002","1985-01-01","ANDREW C TARKINGTON DDS PC",,,"215 S. RIPLEY",,"ALPENA","MI","497072816",,,,,,,,,,,,,,,,,,"382339818","9893548340","621210","ANDREW C TARKINGTON DDS PC",,"215 S. RIPLEY",,"ALPENA","MI","497072816",,,,,,,"382339818","9893548340",,,,"2011-07-20T09:30:53-0500","ANDREW C. TARKINGTON, PRESIDENT","2011-07-19T15:55:26-0500","ANDREW C. TARKINGTON, PRESIDENT","2011-07-15T15:25:00-0500","ANDREW C. TARKINGTON",8,8,0,0,8,0,8,8,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature","Filed with authorized/valid electronic signature" "20110720111325P030014186914001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CERAMTEC NORTH AMERICA SHORT TERM DISABILITY PLAN","501","2007-01-01","CERAMTEC NORTH AMERICA CORPORATION",,,"ONE TECHNOLOGY PLACE",,"LAURENS","SC","29360",,,,,,,,,,,,,,,,,,"521708698","8646823215","325900","CERAMTEC NORTH AMERICA CORPORATION",,"ONE TECHNOLOGY PLACE",,"LAURENS","SC","29360",,,,,,,"521708698","8646823215",,,,"2011-07-20T11:13:08-0500","PATRICK MCPOLAND",,,,,171,182,0,0,182,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720111341P030097016977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BURRY FOODSERVICE 401 K PROFIT SHARING PLAN","001","2003-01-01","BURRY FOODSERVICE",,,"53 SOUTHGATE COURSE",,"ST. CHARLES","IL","601745725",,,,,,,,,,,,,,,,,,"721575137","6305849055","541990","BURRY FOODSERVICE",,"53 SOUTHGATE COURSE",,"ST. CHARLES","IL","601745725",,,,,,,"721575137","6305849055",,,,"2011-07-20T11:12:22-0500","ANN G HYLER",,,,,14,16,0,1,17,0,17,16,0,,"2E2G2J2K3D2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720120030P040099880129007","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"VISION SERVICE PLAN","507","2009-11-01","MAYNARD, COOPER & GALE, P.C.",,,"1901 SIXTH AVENUE NORTH, SUITE 2400",,"BIRMINGHAM","AL","352032618",,,,,,,,,,,,,,,,,,"630864426","2052541000","541110","MAYNARD, COOPER & GALE, P.C.",,"1901 SIXTH AVENUE NORTH, SUITE 2400",,"BIRMINGHAM","AL","352032618",,,,,,,"630864426","2052541000",,,,"2011-07-31T06:40:24-0500","WALT I. GRAHAM",,,,,0,160,,,160,,,,,,,"4E","1",,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720134246P030014198946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAMES E. CONNER JR., INC. 401(K) PLAN","001","1998-01-01","JAMES E. CONNER JR., PLUMBING,",,,"505 ROUTE 168 SUITES B AND C",,"TURNERSVILLE","NJ","08012",,,,,,,,,,,,,,,,,,"223159136","8567840004","238220","JAMES E. CONNER JR., PLUMBING,",,"505 ROUTE 168 SUITES B AND C",,"TURNERSVILLE","NJ","08012",,,,,,,"223159136","8567840004",,,,"2011-07-20T13:41:58-0500","JAMES CONNER",,,,,52,29,0,0,29,0,29,24,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720134254P030455996288001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALCATEL-LUCENT LONG TERM DISABILITY PLAN FOR MANAGEMENT EMPLOYEES","516","1996-10-01","ALCATEL-LUCENT USA INC.",,,"600 MOUNTAIN AVENUE, RM 7B-414A",,"MURRAY HILL","NJ","07974",,,,,,,,,,,,,,,,,,"223408857","9085824365","334200","ALCATEL-LUCENT USA INC.",,"600 MOUNTAIN AVENUE, RM 7B-414A",,"MURRAY HILL","NJ","07974",,,,,,,"223408857","9085824365",,,,"2011-07-20T13:16:43-0500","NOREEN ROBINSON",,,,,14334,13558,324,,13882,,,,,,,"4H","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719183522P040099418561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M. ARTHUR GENSLER JR. & ASSOCIATES, INC. COMPREHENSIVE HEALTH AND WELFARE BENEFIT PLAN","510","2005-01-01","M. ARTHUR GENSLER JR. & ASSOCIATES, INC.",,,"2 HARRISON STREET, SUITE 400",,"SAN FRANCISCO","CA","941051672",,,,,,,,,,,,,,,,,,"941663305","4154333700","541310","M. ARTHUR GENSLER JR. & ASSOCIATES, INC.",,"2 HARRISON STREET, SUITE 400",,"SAN FRANCISCO","CA","941051672",,,,,,,"941663305","4154333700",,,,"2011-07-19T18:18:31-0500","KAREN DRAPER",,,,,2001,1945,91,0,2036,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720083550P030014173874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RETIREMENT PLAN FOR EMPLOYEES OF FNB ALTUS","001","1960-10-01","THE FIRST NATIONAL BANK IN ALTUS",,,"110 EAST BROADWAY ST.",,"ALTUS","OK","735215599",,,,,,,,,,,,,,,,,,"730125375","5804827700","522110","RETIREMENT COMMITTEE",,"110 EAST BROADWAY ST.",,"ALTUS","OK","735215599",,,,,,,"731001391","5804827700",,,,"2011-07-20T08:35:35-0500","RALPH KUNKEL",,,,,58,54,0,0,54,1,55,,4,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720092023P040099782689005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GENERAL PRESS CORPORATION 401(K) PROFIT SHARING PL","001","1977-01-01","GENERAL PRESS CORPORATION",,,"ALLEGHENY DRIVE, P.O. BOX 316",,"NATRONA HEIGHTS","PA","150650316",,,,,,,,,,,,,,,,,,"250501195","7242243500","323100","GENERAL PRESS CORPORATION",,"ALLEGHENY DRIVE, P.O. BOX 316",,"NATRONA HEIGHTS","PA","150650316",,,,,,,"250501195","7242243500",,,,"2011-07-20T04:02:15-0500","JAMES V, WOLFF",,,,,47,48,0,1,49,0,49,34,0,,"2E2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720092023P040099782689004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NEW PIG CORPORATION WELFARE BENEFIT PLAN","502","1997-09-01","NEW PIG CORPORATION",,,"ONE PORK AVENUE",,"TIPTON","PA","166840034",,,,,,,,,,,,,,,,,,"232363423","8146840101","333900","NEW PIG CORPORATION",,"ONE PORK AVENUE",,"TIPTON","PA","166840034",,,,,,,"232363423","8146840101",,,,"2011-07-20T04:04:40-0500","REBECCA COWAN",,,,,330,340,,,340,,,,,,,"4A4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720093013P030014178050006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KRAYNEK CHIROPRACTIC CLINIC P.C. PROFIT SHARING PLAN","001","1989-01-01","KRAYNEK CHIROPRACTIC CLINIC P.C.",,,"5816 NORTH SHELDON RD",,"CANTON","MI","48187",,,,,,,,,,,,,,,,,,"382613160","7344511225","621310","KRAYNEK CHIROPRACTIC CLINIC P.C.",,"5816 NORTH SHELDON RD",,"CANTON","MI","48187",,,,,,,"382613160","7344511225",,,,"2011-07-20T10:11:55-0500","R KRAYNEK",,,,,5,5,0,0,5,0,5,4,,,"2E2H3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719132506P030096449201001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"OPENCONNECT SYSTEMS, INC. 401K PROFIT SHARING PLAN","001","1989-01-01","OPENCONNECT SYSTEMS, INC.",,,"2711 LBJ FREEWAY, SUITE 700",,"DALLAS","TX","75234",,,,,,,,,,,,,,,,,,"751756312","9724845200","334110","OPENCONNECT SYSTEMS, INC.",,"2711 LBJ FREEWAY, SUITE 700",,"DALLAS","TX","75234",,,,,,,"751756312","9724845200",,,,"2011-07-19T13:51:43-0500","CHARLES BROCKENBUSH",,,,,58,35,,23,58,,58,,,,"2E2G2J2K3D3F",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719132606P040014607858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUFFALO HEARING & SPEECH CENTER DENTAL DOLLARS PROGRAM","503","2004-01-01","BUFFALO HEARING & SPEECH CENTER",,,"50 E. NORTH STREET",,"BUFFALO","NY","14203",,,,,,,"50 E. NORTH STREET",,"BUFFALO","NY","14203",,,,,,,"160776186","7168858318","621340","BUFFALO HEARING & SPEECH CENTER",,"50 E. NORTH STREET",,"BUFFALO","NY","14203",,,,,,,"160776186","7168858318",,,,"2011-07-18T16:04:29-0500","PATRICIA RANDLE",,,,,183,195,0,0,195,0,195,,,,,"4D",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719164001P040099351617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JORDANS MISHAWAKA TRANSFER, INC. EMPLOYEE PROFIT SHARING PLAN","001","1977-01-01","JORDANS MISHAWAKA TRANSFER, INC.",,,"1208 EAST 7TH STREET",,"MISHAWAKA","IN","46544",,,,,,,,,,,,,,,,,,"350939283","5742595237","484200","JORDANS MISHAWAKA TRANSFER, INC.",,"1208 EAST 7TH STREET",,"MISHAWAKA","IN","46544",,,,,,,"350939283","5742595237",,,,"2011-07-19T14:34:12-0500","WILLIAM G. HUYS","2011-07-19T14:34:12-0500","WILLIAM G. HUYS",,,4,3,0,1,4,0,4,4,0,,"2E2F2G2J2K3D2T","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720124054P040099902065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EASTERN MAINE ELECTRIC COOPERATIVE RETIREE WELFARE BENEFIT PLAN","526","1995-06-01","EASTERN MAINE ELECTRIC COOPERATIVE",,,"21 UNION STREET",,"CALAIS","ME","04619",,,,,,,"21 UNION STREET",,"CALAIS","ME","04619",,,,,,,"010056837","2074547555","221100","EASTERN MAINE ELECTRIC COOPERATIVE",,"21 UNION STREET",,"CALAIS","ME","04619",,,,,,,"010056837","2074547555",,,,"2011-07-20T12:40:38-0500","BRIDGET FORD",,,,,49,47,,,47,,47,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720103441P030014183490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALBERT, NEELY & KUHLMANN, L.L.P. 401(K) PLAN","001","1991-01-01","ALBERT, NEELY & KUHLMANN, L.L.P.",,,"309 WEST 7TH STREET, SUITE 1200",,"FORT WORTH","TX","76102",,,,,,,,,,,,,,,,,,"752135797","8178770055","541110","ALBERT, NEELY & KUHLMANN, L.L.P.",,"309 WEST 7TH STREET, SUITE 1200",,"FORT WORTH","TX","76102",,,,,,,"752135797","8178770055",,,,"2011-07-20T10:33:56-0500","KARL ALBERT",,,,,21,16,0,5,21,0,21,21,0,,"2A2E2F2G2J2K2T3B3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720144409P030097136353001","2010-05-01","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"ERICKSON PA/NJ REGION COMMUNITY HEALTH AND WELFARE PLAN","501","2010-05-01","CEDAR CREST VILLAGE C/O ERICKSON LIVING RETIREMENT, LLC",,,"701 MAIDEN CHOICE LANE",,"CATONSVILLE","MD","21228",,,,,,,,,,,,,,,,,,"522184915","4102422880","623000","CEDAR CREST VILLAGE C/O ERICKSON LIVING RETIREMENT, LLC",,"701 MAIDEN CHOICE LANE",,"CATONSVILLE","MD","21228",,,,,,,"522184915","4102422880",,,,"2011-07-20T14:43:12-0500","GERALD DOHERTY",,,,,1185,1296,21,0,1317,,,,,,,"4A4D4B4H4F4Q4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","1","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719151508P030096505937002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALLIED WITAN PROFIT SHARING TRUST AGREEMENT","001","1959-11-12","ALLIED WITAN COMPANY",,,"13805 PROGRESS PARKWAY",,"NORTH ROYALTON","OH","44133",,,,,,,,,,,,,,,,,,"340767226","4402379630","333900","ALLIED WITAN COMPANY",,"13805 PROGRESS PARKWAY",,"NORTH ROYALTON","OH","44133",,,,,,,"340767226","4402379630",,,,"2011-07-19T15:00:28-0500","SANDY NEMETH","2011-07-19T15:01:30-0500","SANDY NEMETH",,,27,29,0,1,30,0,30,30,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719151552P040014620162001","2010-01-01","2010-05-31","2",,"0","1","1","1","0","0","0","0","0",,"WBP-HEALTH-LIFE-STD-LTD-ADD-VISION","501","2010-01-01","ELECTROSONIC, INC.",,,"10320 BREN ROAD EAST",,"MINNETONKA","MN","55343",,,,,,,"10320 BREN ROAD EAST",,"MINNETONKA","MN","55343",,,,,,,"410989729","9529317500","423600","ELECTROSONIC, INC.",,"10320 BREN ROAD EAST",,"MINNETONKA","MN","55343",,,,,,,"410989729","9529317500",,,,"2011-07-19T15:15:38-0500","JERYL JORGENSON",,,,,135,0,0,,0,,0,,,,,"4A4B4E4F4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720131037P040099918305001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"THE M RESORT HEALTH AND WELFARE PLAN","502","2008-01-01","THE M RESORT",,,"12300 LAS VEGAS BLVD SOUTH",,"HENDERSON","NV","89044",,,,,,,,,,,,,,,,,,"260274436","7027971000","721120","THE M RESORT",,"12300 LAS VEGAS BLVD SOUTH",,"HENDERSON","NV","89044",,,,,,,"260274436","7027971000",,,,"2011-07-20T02:10:17-0500","TONIE KEREKES",,,,,1404,1113,0,0,1113,,1113,,,,,"4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720111507P030097018737002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LANEHART ELECTRICAL CONTRACTORS LP WELFARE PLAN","501","2002-01-01","LANEHART ELECTRICAL CONTRACTORS LP",,,"2411 RIVER HILL RD",,"IRVING","TX","75061",,,,,,,,,,,,,,,,,,"760121360","9727211304","238210","LANEHART ELECTRICAL CONTRACTORS LP",,"2411 RIVER HILL RD",,"IRVING","TX","75061",,,,,,,"760121360","9727211304",,,,"2011-07-20T12:03:47-0500","RANDY GARRETT","2011-07-20T12:04:01-0500","RANDY GARRETT",,,334,267,,,267,,,,,,,"4A4B4F4H","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719151957P040449276832001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAIME R. VILLA COLON, MD TARGET BENEFIT PENSION PLAN","001","1991-01-01","JAIME R. VILLA COLON, MD",,,"EDIFICIO PARRA SUITE 403","PONCE BY PASS","PONCE","PR","00731",,,,,,,"EDIFICIO PARRA SUITE 403","PONCE BY PASS","PONCE","PR","00731",,,,,,,"660445562","7872593391","621111","JAIME R. VILLA COLON, MD",,"EDIFICIO PARRA SUITE 403","PONCE BY PASS","PONCE","PR","00731",,,,,,,"660445562","7872593391",,,,"2011-07-19T15:03:07-0500","JAIME VILLA","2011-07-19T15:03:07-0500","JAIME VILLA",,,7,7,0,0,7,0,7,7,0,,"2B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719152357P040449288192001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MCT INDUSTRIES/SOUTHWEST LANDFILL 401(K) PROFIT SHARING PLAN","001","1996-01-01","MCT INDUSTRIES, INC.",,,"7451 PAN AMERICAN FWY",,"ALBUQUERQUE","NM","87109",,,,,,,"7451 PAN AMERICAN FWY",,"ALBUQUERQUE","NM","87109",,,,,,,"850233093","5053458651","336990","MCT INDUSTRIES, INC.",,"7451 PAN AMERICAN FWY",,"ALBUQUERQUE","NM","87109",,,,,,,"850233093","5053458651",,,,"2011-07-19T14:32:48-0500","JENNY VELASQUEZ","2011-07-19T14:37:07-0500","ROBERT ARCHULETA",,,77,67,0,4,71,1,72,54,2,,"2E2H2J2K2F3E3H","4B","1",,"1",,"1",,"1",,"1",,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719141626P040014612978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHWICKERT'S TECTA AMERICA OF MANKATO, INC. FLEXIBLE BENEFIT PLAN","506","1989-01-01","SCHWICKERT'S TECTA AMERICA OF MANKATO, INC.",,"STEVEN L HANSON. CONTROLLER","221 MINNESOTA STREET","PO BOX 487","MANKATO","MN","560020487",,,,,,,"221 MINNESOTA STREET","PO BOX 487","MANKATO","MN","560020487",,,,,,,"411925993","5073873106","238220","SCHWICKERT'S TECTA AMERICA OF MANKATO, INC.","STEVEN L HANSON. CONTROLLER","221 MINNESOTA STREET","PO BOX 487","MANKATO","MN","560020487",,,,,,,"411925993","5073873106","SCHWICKERT'S OF MANKATO, INC.","411925993","506","2011-07-19T14:14:41-0500","STEVEN L HANSON",,,,,153,139,3,0,142,0,142,0,0,,,"4A4B4D4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719174037P040014633778001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"CMI TAX DEFERRED SAVINGS PLAN","008","1999-01-01","CHEVRON MINING INC.",,,"116 INVERNESS DR. EAST, SUITE 207",,"ENGLEWOOD","CO","80112",,,,,,,,,,,,,,,,,,"440658937","3039304270","212110","CHEVRON MINING INC.",,"116 INVERNESS DR. EAST, SUITE 207",,"ENGLEWOOD","CO","80112",,,,,,,"440658937","3039304270",,,,"2011-07-19T17:39:39-0500","THOMAS GEESEY",,,,,328,325,0,22,347,0,347,251,0,,"2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720095027P040099800593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GENERAL DISTRIBUTING COMPANY 401(K) PROFIT SHARING PLAN","001","1985-05-01","GENERAL DISTRIBUTING COMPANY",,,"PO BOX 221210",,"SALT LAKE CITY","UT","84122",,,,,,,"5350 AMELIA EARHART DR.",,"SALT LAKE CITY","UT","84122",,,,,,,"870275548","8012392624","488990","GENERAL DISTRIBUTING COMPANY",,"PO BOX 221210",,"SALT LAKE CITY","UT","84122",,,,,,,"870275548","8012392624",,,,"2011-07-19T15:56:49-0500","MARK PURDIE","2011-07-19T15:56:49-0500","MARK PURDIE",,,144,127,0,0,127,0,127,81,1,,"2K2E2G2F2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720105304P040014701186001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ROBERT E. PATTERSON 401(K) PROFIT SHARING PLAN","001","1990-01-01","ROBERT E. PATTERSON",,,"100 JEFFERSON STREET SOUTH",,"HUNTSVILLE","AL","35801",,,,,,,,,,,,,,,,,,"630883755","2565398686","541110","ROBERT E. PATTERSON",,"100 JEFFERSON STREET SOUTH",,"HUNTSVILLE","AL","35801",,,,,,,"630883755","2565398686",,,,"2011-07-20T10:52:18-0500","ROBERT E PATTERSON","2011-07-20T10:52:18-0500","ROBERT E PATTERSON",,,3,2,1,0,3,0,3,3,0,,"2E2J2K3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720113003P030002854403001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CURT MANUFACTURING, INC. SELF FUNDED MEDICAL REIMBURSEMENT PLAN","509","2001-01-01","CURT MANUFACTURING, INC.",,,"6208 INDUSTRIAL DR.",,"EAU CLAIRE","WI","54701",,,,,,,,,,,,,,,,,,"391803196","7158318713","332900","CURT MANUFACTURING, INC.",,"6208 INDUSTRIAL DR.",,"EAU CLAIRE","WI","54701",,,,,,,"391803196","7158318713",,,,"2011-07-20T11:22:05-0500","KIMBERLY J. MYERS",,,,,138,181,1,0,182,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"1","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720121632P030097050129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J.L. SCHIFFMAN & CO. INC PROFIT SHARING PLAN","001","1971-01-01","J.L. SCHIFFMAN & CO. INC.",,,"P.O. BOX 10",,"MAPLEWOOD","NJ","07040",,,,,,,"P.O. BOX 10",,"MAPLEWOOD","NJ","07040",,,,,,,"221897751","9737631121","523120","J.L. SCHIFFMAN & CO. INC.",,"P.O. BOX 10",,"MAPLEWOOD","NJ","07040",,,,,,,"221897751","9737631121",,,,"2011-07-20T12:15:50-0500","CHARLES BRENNER",,,,,3,2,1,,3,,3,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719142804P030096483393001","2010-01-01","2010-12-31","2",,"1",,"0","0","0",,,,,,"MORNING STAR BOYS' RANCH PROFIT SHARING PLAN","002","1989-07-01","MORNING STAR BOYS RANCH",,,"4511 S GLENROSE RD",,"SPOKANE","WA","992231348",,,,,,,,,,,,,,,,,,"910664709","5094481411","813000","MORNING STAR BOYS RANCH",,"4511 S GLENROSE RD",,"SPOKANE","WA","992231348",,,,,,,"910664709","5094481411",,,,"2011-07-19T14:28:03-0500","DAN KUHLMANN","2011-07-19T14:28:03-0500","DAN KUHLMANN",,,15,22,0,1,23,0,23,19,0,,"2E2F2G2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719163314P030453476720006","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"RESTATED RICHARD R JENCEN ASSOCIATES PROFIT SHARING PLAN","001","1975-01-01","RICHARD R JENCEN ASSOCIATES",,,"2850 EUCLID AVENUE",,"CLEVELAND","OH","44115",,,,,,,,,,,,,,,,,,"341696357","2167810131","541310","RICHARD R JENCEN ASSOCIATES",,"2850 EUCLID AVENUE",,"CLEVELAND","OH","44115",,,,,,,"341696357","2167810131",,,,"2011-07-11T09:58:41-0500","NICK ZALANY",,,,,18,17,,,17,,17,19,,,"3F3B2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719161301P040031128375001","2010-06-28","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"TRIPP SERVICES, INC. 401(K) PROFIT SHARING PLAN","001","2010-06-28","TRIPP SERVICES, INC.",,,"999 FALL RIVER AVE",,"SEEKONK","MA","02771",,,,,,,,,,,,,,,,,,"272940372","5085571481","561720","TRIPP SERVICES, INC.",,"999 FALL RIVER AVE",,"SEEKONK","MA","02771",,,,,,,"272940372","5085571481",,,,"2011-07-19T16:07:09-0500","CARL TRIPP",,,,,3,3,0,0,3,0,3,1,1,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719162720P040449422736001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PACIFIC WOMENS OBSTETRICS & GYNECOLOGY MEDICAL GROUP PROFIT SHARING PLAN","001","2004-01-01","PACIFIC WOMENS OBSTETRICS & GYNECOLOGY MEDICAL GROUP",,,"3838 CALIFORNIA STREET, SUITE 316",,"SAN FRANCISCO","CA","94118",,,,,,,,,,,,,,,,,,"943063257","4153799600","621111","PACIFIC WOMENS OBSTETRICS & GYNECOLOGY MEDICAL GROUP",,"3838 CALIFORNIA STREET, SUITE 316",,"SAN FRANCISCO","CA","94118",,,,,,,"200371276","4153799600",,,,"2011-07-19T14:05:01-0500","LAURIE GREEN",,,,,30,21,0,10,31,0,31,30,5,,"2A2E2F2G2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720120453P030455733712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BIRTH AND WOMENS CENTER, INC. PROFIT SHARING PLAN","001","1994-01-01","BIRTH AND WOMENS CENTER, INC.",,,"3100 SWISS AVENUE",,"DALLAS","TX","75204",,,,,,,,,,,,,,,,,,"752461350","2148218190","621399","BIRTH AND WOMENS CENTER, INC.",,"3100 SWISS AVENUE",,"DALLAS","TX","75204",,,,,,,"752461350","2148218190",,,,"2011-07-20T12:04:26-0500","CHERIE BOETTCHER","2011-07-20T12:04:26-0500","CHERIE BOETTCHER",,,3,2,0,1,3,0,3,3,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719153008P030014107186006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SHINN FUNERAL SERVICE INC PROF SHAR PLAN & TRUST","001","1992-11-01","OWP, INC","SHINN FUNERAL SERVICE","ORMOND PETERS","PO BOX 700",,"RUSSELLVILLE","AR","72811",,,,,,,,,,,,,,,,,,"710840261","4799681212","812210","OWP, INC","ORMOND PETERS","PO BOX 700",,"RUSSELLVILLE","AR","72811",,,,,,,"710840261","4799681212",,,,"2011-07-19T16:24:32-0500","ORMOND W. PETERS","2011-07-19T16:24:39-0500","ORMOND W. PETERS",,,6,7,0,1,8,0,8,8,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719165532P040099366241001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LIBERTY BANCSHARES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1989-01-01","LIBERTY BANCSHARES, INC.",,,"118 SOUTH MAIN STREET",,"ADA","OH","458101255",,,,,,,,,,,,,,,,,,"341545356","4196345015","551111","LIBERTY BANCSHARES, INC.",,"118 SOUTH MAIN STREET",,"ADA","OH","458101255",,,,,,,"341545356","4196345015",,,,"2011-07-19T15:35:13-0500","PATRICIA A. ARNETT",,,,,95,62,1,34,97,0,97,87,5,,"2P2I3H2J2K2H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719163636P040449446192001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SCBT N.A. VOLUNTARY BENEFITS PLAN","509","2000-01-01","SCBT N.A.",,,"520 GERVAIS STREET",,"COLUMBIA","SC","29201",,,,,,,,,,,,,,,,,,"570219408","8035403324","522110","SCBT N.A.",,"520 GERVAIS STREET",,"COLUMBIA","SC","29201",,,,,,,"570219408","8035403324",,,,"2011-07-19T14:39:04-0500","LESLIE DUNN",,,,,115,133,0,0,133,,,,,,,"4A4F4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719163641P030096544081001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"TAYLOR UNITED, INC. 401(K) PLAN","001","1988-11-01","TAYLOR UNITED, INC.",,,"130 SE LYNCH ROAD",,"SHELTON","WA","98584",,,,,,,,,,,,,,,,,,"910853722","3604266178","111900","TAYLOR UNITED, INC.",,"130 SE LYNCH ROAD",,"SHELTON","WA","98584",,,,,,,"910853722","3604266178",,,,"2011-07-19T16:36:13-0500","STEVE MARSH",,,,,323,321,0,14,335,0,335,143,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719162808P040449424272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARRASSO USDIN KUPPERMAN FREEMAN & SARVER, L.L.C. 401(K) PLAN","001","2003-04-21","BARRASSO USDIN KUPPERMAN FREEMAN & SARVER, L.L.C.",,,"909 POYDRAS STREET STE 2400",,"NEW ORLEANS","LA","70112",,,,,,,,,,,,,,,,,,"900067114","5045899700","541110","BARRASSO USDIN KUPPERMAN FREEMAN & SARVER, L.L.C.",,"909 POYDRAS STREET STE 2400",,"NEW ORLEANS","LA","70112",,,,,,,"900067114","5045899700",,,,"2011-07-19T14:09:07-0500","RACHEL KOENIG",,,,,54,57,0,9,66,0,66,66,4,,"3D2E2F2G2R2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720081232P040099749793001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MACMURRAY COLLEGE TDA PLAN","004","1976-01-01","MACMURRAY COLLEGE",,"BUSINESS OFFICE","447 E. COLLEGE AVE",,"JACKSONVILLE","IL","62650",,,,,,,"447 E. COLLEGE AVE",,"JACKSONVILLE","IL","62650",,,,,,,"370661217","2174797008","611000","MACMURRAY COLLEGE","BUSINESS OFFICE","447 E. COLLEGE AVE",,"JACKSONVILLE","IL","62650",,,,,,,"370661217","2174797008",,,,"2011-07-19T16:59:22-0500","JACKIE LOOSER",,,,,137,0,0,0,0,0,0,0,0,,"2L2M2T",,"1",,"1",,"1",,"1",,"0",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720091016P040099777329007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE CHESTER TELEPHONE COMPANY DENTAL PLAN","505","2007-07-01","THE CHESTER TELEPHONE COMPANY",,,"112 YORK STREET",,"CHESTER","SC","29706",,,,,,,,,,,,,,,,,,"570139910","8033852191","517000","THE CHESTER TELEPHONE COMPANY",,"112 YORK STREET",,"CHESTER","SC","29706",,,,,,,"570139910","8033852191",,,,"2011-07-20T09:09:12-0500","DAVID BRUNT",,,,,113,104,5,,109,,,,,,,"4D","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720091017P040099777393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMERALD STEEL PROCESSING 401(K) PLAN","001","2003-01-01","EMERALD STEEL PROCESSING",,,"31600 STEPHENSON HWY",,"MADISON HGTS","MI","48071",,,,,,,,,,,,,,,,,,"383586922","2487200575","332900","EMERALD STEEL PROCESSING",,"31600 STEPHENSON HWY",,"MADISON HGTS","MI","48071",,,,,,,"383586922","2487200575",,,,"2011-07-20T09:09:45-0500","LINDA O'BRIEN",,,,,31,33,0,1,34,0,34,23,2,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720101141P040099812865006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"OZARKS COMMUNITY HOSPITAL EMPLOYEE HEALTH PLAN","501","2001-06-01","SGOH ACQUISITION, INC",,,"2828 N. NATIONAL AVENUE",,"SPRINGFIELD","MO","65803",,,,,,,,,,,,,,,,,,"431592082","4178374300","622000","SGOH ACQUISITION, INC",,"2828 N. NATIONAL AVENUE",,"SPRINGFIELD","MO","65803",,,,,,,"431592082","4178374300",,,,"2011-07-20T05:04:26-0500","PAUL TAYLOR",,,,,202,573,,,573,,,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720102741P040014697218001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CIVC PARTNERS 401(K) PLAN","001","2005-01-01","CIVC PARTNERS",,,"191 NORTH WACKER DRIVE","SUITE 1100","CHICAGO","IL","60606",,,,,,,"191 NORTH WACKER DRIVE","SUITE 1100","CHICAGO","IL","60606",,,,,,,"582671460","3128737310","525990","CIVC PARTNERS",,"191 NORTH WACKER DRIVE","SUITE 1100","CHICAGO","IL","60606",,,,,,,"582671460","3128737310",,,,"2011-07-20T10:23:57-0500","CHRIS GENESER",,,,,30,18,0,9,27,0,27,26,1,,"2A2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719164306P030453500880001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMMUNITY ACTION PROGRAM, INC. 403(B) TAX SHELTERED ANNUITY PLAN","001","2006-01-01","COMMUNITY ACTION PROGRAM, INC.",,,"P.O. BOX 144","744 CHINA STREET","ABILENE","TX","79604",,,,,,,,,,,,,,,,,,"751229649","3256735785","624200","COMMUNITY ACTION PROGRAM, INC.",,"P.O. BOX 144","744 CHINA STREET","ABILENE","TX","79604",,,,,,,"751229649","3256735785",,,,"2011-07-19T16:39:30-0500","JOSH AMMONS",,,,,22,0,0,11,11,0,11,11,0,,"2E2G2J2K2L",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719170807P040099372081001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"COLONY RESORTS LVH LLC EMPLOYEE BENEFIT PLAN","501","2004-06-18","COLONY RESORTS LVH LLC","LAS VEGAS HILTON",,"3000 PARADISE ROAD",,"LAS VEGAS","NV","89109",,,,,,,"3000 PARADISE ROAD",,"LAS VEGAS","NV","89109",,,,,,,"412120123","7027325111","721120","COLONY RESORTS LVH LLC",,"3000 PARADISE ROAD",,"LAS VEGAS","NV","89109",,,,,,,"412120123","7027325111",,,,"2011-07-19T17:06:19-0500","ROBERT SCHAFFHAUSER",,,,,749,638,21,,659,,659,,,,,"4A4B4D4E4H4L","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110720090002P030096941633006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHILDRENS HOSPITAL SELF INSURED HEALTH PLAN","501","1981-09-01","CHILDRENS HOSPITAL INC",,,"200 HENRY CLAY AVENUE",,"NEW ORLEANS","LA","70118",,,,,,,"200 HENRY CLAY AVENUE",,"NEW ORLEANS","LA","70118",,,,,,,"720467503","5048969360","622000","CHILDRENS HOSPITAL INC",,"200 HENRY CLAY AVENUE",,"NEW ORLEANS","LA","70118",,,,,,,"720467503","5048969360",,,,"2011-07-19T06:07:20-0500","DOUGLAS MITTELSTAEDT, VP OF HR","2011-07-19T06:07:20-0500","DOUGLAS MITTELSTAEDT, VP OF HR",,,1453,1321,20,,1341,,1341,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720094247P040031285687001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RABOBANK, NATIONAL ASSOCIA FLEXPLUS CAFETERIA PLAN","501","1989-04-01","RABOBANK, NATIONAL ASSOCIATION",,,"925 HIGHLAND POINTE DRIVE","SUITE 350","ROSEVILLE","CA","95678",,,,,,,,,,,,,,,,,,"953463626","7603373284","522110","RABOBANK, NATIONAL ASSOCIATION",,"925 HIGHLAND POINTE DRIVE","SUITE 350","ROSEVILLE","CA","95678",,,,,,,"953463626","9167978222",,,,"2011-07-19T19:11:09-0500","ANTHONY PANARIELLO","2011-07-19T19:11:09-0500","ANTHONY PANARIELLO",,,339,373,0,0,373,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720104609P040014700514001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAZZELLA WELDING & FABRICATION INC PLAN & TRUST","001","1999-01-01","MAZZELLA WELDING & FABRICATION INC",,,"P.O. BOX 288",,"WELLSBURG","WV","26070",,,,,,,,,,,,,,,,,,"550548864","3048294300","332900","MAZZELLA WELDING & FABRICATION INC RETIREMENT COMMITTEE",,"PO BOX 288",,"WELLSBURG","WV","26070",,,,,,,"542003354","3048294300",,,,"2011-07-20T10:45:18-0500","STEVEN C. MAZZELLA",,,,,12,10,0,0,10,0,10,10,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110719153314P030096513697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEFFEY EXCAVATING CO. PROFIT SHARING PLAN","001","2004-01-01","STEFFEY EXCAVATING CO.",,,"10433 W. MARIPOSA GRANDE",,"PEORIA","AZ","85383",,,,,,,"MARSHA STEFFEY","10433 W. MARIPOSA GRANDE","PEORIA","AZ","85383",,,,,,,"611416917","6238257111","237100","STEFFEY EXCAVATING CO.",,"10433 W. MARIPOSA GRANDE",,"PEORIA","AZ","85383",,,,,,,"611416917","6238257111",,,,"2011-07-19T15:33:01-0500","J DAN STEFFEY","2011-07-19T15:33:01-0500","J DAN STEFFEY",,,19,19,,,19,,19,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719140008P030014101298004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DANA E. OTTERHOLT SELF-EMPLOYED PROFIT-SHARING RETIREMENT PLAN","001","1979-02-10","DANA E. OTTERHOLT, D.D.S.",,,"104 NORTH 15TH STREET",,"MOUNT VERNON","WA","98273",,,,,,,,,,,,,,,,,,"911002214","3604249045","621210","DANA E. OTTERHOLT, D.D.S.",,"104 NORTH 15TH STREET",,"MOUNT VERNON","WA","98273",,,,,,,"911002214","3604249045",,,,"2011-07-19T14:52:51-0500","DANA E. OTTERHOLT, D.D.S.","2011-07-19T14:52:59-0500","DANA E. OTTERHOLT, D.D.S.",,,7,6,0,0,6,0,6,6,,,"2E2G2R3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719140737P040099258817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEE SAVINGS AND INVESTMENT PLAN FOR FRIEND TIRE COMPANY","014","1973-04-01","FRIEND TIRE COMPANY C/O YOKOHAMA TIRE CORPORATION",,"YOKOHAMA TIRE","1500 INDIANA ST., SALEM, VA 24153",,"SALEM","VA","24153",,,,,,,,,,,,,,,,,,"431609347","5403758572","423100","FRIEND TIRE COMPANY C/O YOKOHAMA TIRE CORPORATION","YOKOHAMA TIRE","1500 INDIANA ST., SALEM, VA 24153",,"SALEM","VA","24153",,,,,,,"431609347","5403758572",,,,"2011-07-19T14:06:39-0500","TIMOTHY K. HUBBARD","2011-07-19T14:06:39-0500","TIMOTHY K. HUBBARD",,,189,197,0,5,202,0,202,93,0,,"2E2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719140912P030096475009001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"MARGARET E MOUL HOME HEALTH, WELFARE AND BENEFITS PLAN","501","1989-12-31","YORK COUNTY CEREBRAL PALSY HOME, INC","MARGARET E MOUL HOME",,"2050 BARLEY ROAD",,"YORK","PA","17408",,,,,,,"2050 BARLEY ROAD",,"YORK","PA","17408",,,,,,,"232037566","7177676463","623000","YORK COUNTY CEREBRAL PALSY HOME, INC",,"2050 BARLEY ROAD",,"YORK","PA","17408",,,,,,,"232037566","7177676463",,,,"2011-07-19T14:00:31-0500","EDIE STAUB","2011-07-19T14:01:06-0500","EDIE STAUB",,,187,202,,,202,,202,,,,,"4B4E4D4H4A4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719174647P040449615520001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVIS LEVIN LIVINGSTON, ATTORNEYS AT LAW PROFIT SHARING PLAN","001","1982-01-01","DAVIS LEVIN LIVINGSTON, ATTORNEYS AT LAW",,,"851 FORT STREET, SUITE 400",,"HONOLULU","HI","968134300",,,,,,,,,,,,,,,,,,"990198933","8085247500","541110","DAVIS LEVIN LIVINGSTON, ATTORNEYS AT LAW",,"851 FORT STREET, SUITE 400",,"HONOLULU","HI","968134300",,,,,,,"990198933","8085247500",,,,"2011-07-19T17:35:24-0500","MARK DAVIS",,,,,15,8,0,8,16,0,16,16,0,,"2A2E2H2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719184653P030096597393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WYNDHAM WORLDWIDE CORPORATION HEALTH AND WELFARE PLAN","501","2006-08-01","WYNDHAM WORLDWIDE CORPORATION",,,"22 SYLVAN WAY",,"PARSIPPANY","NJ","07054",,,,,,,,,,,,,,,,,,"200052541","9737536000","721110","WYNDHAM WORLDWIDE CORPORATION",,"22 SYLVAN WAY",,"PARSIPPANY","NJ","07054",,,,,,,"200052541","9737536000",,,,"2011-07-19T18:46:05-0500","WILLIAM SKRZAT",,,,,15890,16886,322,0,17208,,,,,,,"4A4B4D4E4F4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719121635P040099177073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TECHNICAL DEVICES COMPANY 401(K) PLAN","001","1999-01-01","WINTHER TECHNOLOGIES, INC.",,,"560 ALASKA AVENUE",,"TORRANCE","CA","90503",,,,,,,,,,,,,,,,,,"330155482","3106188437","333200","WINTHER TECHNOLOGIES, INC.",,"560 ALASKA AVENUE",,"TORRANCE","CA","90503",,,,,,,"330155482","3106188437",,,,"2011-07-19T12:16:01-0500","REY MALAZO","2011-07-19T12:16:01-0500","REY MALAZO",,,30,25,0,4,29,0,29,23,0,,"2E2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719124315P040099194369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIXIE INDUSTRIAL FINISHING COMPANY, INC. PROFIT SHARING PLAN","002","1980-04-01","DIXIE INDUSTRIAL FINISHING CO INC.",,,"4925 S ROYAL ATLANTA DR",,"TUCKER","GA","300843006",,,,,,,,,,,,,,,,,,"580828229","7709347100","339900","DIXIE INDUSTRIAL FINISHING CO INC.",,"4925 S. ROYAL ATLANTA DRIVE",,"TUCKER","GA","30084",,,,,,,"580828229","7709413633",,,,"2011-07-19T12:34:22-0500","DAVID HENDERSON",,,,,90,56,0,21,77,0,77,73,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719112127P040099145521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GANNETT FLEMING, INC. GROUP DISABILITY PLAN","501","1970-01-01","GANNETT FLEMING, INC.",,,"P.O. BOX 67100",,"HARRISBURG","PA","171067100",,,,,,,,,,,,,,,,,,"251613591","7177637211","541330","GANNETT FLEMING, INC.",,"P.O. BOX 67100",,"HARRISBURG","PA","171067100",,,,,,,"251613591","7177637211",,,,"2011-07-19T11:21:11-0500","RODERICK A. SAVIDGE",,,,,1245,1248,0,0,1248,,,,,,,"4H4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719111346P040014593922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J MASSEY ASPHALT PAVING INC PROFIT SHARING PLAN","001","1998-12-31","JUSTIN MASSEY","J MASSEY ASPHALT PAVING INC",,"548 BLACKJACK ROAD",,"TRUSSVILLE","AL","35173",,,,,,,"548 BLACKJACK ROAD",,"TRUSSVILLE","AL","35173",,,,,,,"631134994","2054677214","237990","JUSTIN MASSEY",,"548 BLACKJACK ROAD",,"TRUSSVILLE","AL","35173",,,,,,,"631134994","2054677214",,,,"2011-07-19T11:11:45-0500","JUSTIN MASSEY",,,,,3,3,1,,4,,4,3,0,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719114120P040014597154001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"L. CRAVEN & SONS, INC. 401(K) PROFIT SHARING PLAN","002","1994-01-01","L. CRAVEN & SONS, INC.",,,"1600 NORTH 25TH AVENUE, SUITE B",,"MELROSE PARK","IL","60160",,,,,,,,,,,,,,,,,,"362233810","7083430500","424400","L. CRAVEN & SONS, INC.",,"1600 NORTH 25TH AVENUE, SUITE B",,"MELROSE PARK","IL","60160",,,,,,,"362233810","7083430500",,,,"2011-07-19T11:40:50-0500","JACK S. CRAVEN",,,,,31,17,,9,26,0,26,21,0,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719132955P030014097778001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MCNAMARA FOODS INC PROFIT SHARING PLAN AND TRUST","001","1992-01-01","MCNAMARA FOODS INC DBA GATES BIG M",,,"1520 SPENCERPORT RD",,"ROCHESTER","NY","146063598",,,,,,,"1520 SPENCERPORT RD",,"ROCHESTER","NY","146063598",,,,,,,"161207717","7162474878","445110","MCNAMARA FOODS INC DBA GATES BIG M",,"1520 SPENCERPORT RD",,"ROCHESTER","NY","146063598",,,,,,,"161207717","7162474878",,,,"2011-07-19T13:13:05-0500","BRIAN MCNAMARA",,,,,47,23,0,22,45,1,46,44,2,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719075839P040099023425001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"CHOICES, INC. 401(K) RETIREMENT PLAN","001","1997-07-01","CHOICES, INC.",,,"4701 N KEYSTONE AVE STE 150",,"INDIANAPOLIS","IN","462051562",,,,,,,,,,,,,,,,,,"352005131","3177262121","624100","CHOICES, INC.",,"4701 N KEYSTONE AVE STE 150",,"INDIANAPOLIS","IN","462051562",,,,,,,"352005131","3177262121",,,,"2011-07-19T07:58:37-0500","GRETA CLEMENTS","2011-07-19T07:58:37-0500","GRETA CLEMENTS",,,297,186,0,42,228,0,228,228,46,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719092922P040099070945001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CLARIAN HEALTH EMPLOYEE ASSISTANCE PROGRAM","522","1998-01-01","CLARIAN HEALTH PARTNERS, INC.",,,"340 W. 10TH STREET",,"INDIANAPOLIS","IN","46202",,,,,,,,,,,,,,,,,,"351955872","3179623025","622000","BRIAN OCONNOR",,"340 W. 10TH STREET",,"INDIANAPOLIS","IN","46202",,,,,,,"351955872","3179623025",,,,"2011-07-19T09:28:31-0500","BRIAN OCONNOR","2011-07-19T09:28:31-0500","BRIAN OCONNOR",,,8790,9022,,,9022,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719111437P040002994179001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERACT INCORPORATED 401K PLAN","001","1997-10-01","INTERACT INCORPORATED",,,"1225 L STREET, STE. 600",,"LINCOLN","NE","68508",,,,,,,,,,,,,,,,,,"470672317","4024768786","541519","INTERACT INCORPORATED",,"1225 L STREET, STE. 600",,"LINCOLN","NE","68508",,,,,,,"470672317","4024768786",,,,"2011-07-19T11:14:03-0500","GREG ZOUBEK","2011-07-19T11:14:03-0500","GREG ZOUBEK",,,56,49,1,3,53,0,53,49,4,,"2E2F2T2J2K2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719083923P040014577538008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SOUTHERN VACUUM COOLING, INC. PROFIT SHARING PLAN","001","1978-04-01","SOUTHERN VACUUM COOLING, INC.",,,"2253 HOLLINGSHED ROAD",,"IRMO","SC","290639437",,,,,,,,,,,,,,,,,,"570425805",,"333100","SOUTHERN VACUUM COOLING, INC.",,"2253 HOLLINGSHED ROAD",,"IRMO","SC","290639437",,,,,,,"570425805",,,,,"2011-07-19T04:13:48-0500","DEVERA R. MARTIN","2011-07-19T04:13:48-0500","DEVERA R. MARTIN",,,10,10,,,10,,10,10,,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719101146P040099092385001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"OCCIDENTAL COLLEGE GROUP LIFE INSURANCE PLAN","507","1935-07-01","OCCIDENTAL COLLEGE",,,"1600 CAMPUS ROAD",,"LOS ANGELES","CA","90041",,,,,,,"1600 CAMPUS ROAD",,"LOS ANGELES","CA","90041",,,,,,,"951667177","3232592613","611000","RICHARD LEDWIN",,"1600 CAMPUS ROAD",,"LOS ANGELES","CA","90041",,,,,,,"830402307","3232592613",,,,"2011-07-18T18:35:07-0500","RICHARD LEDWIN",,,,,588,624,,,624,,624,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719083011P030096306385002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LAUREL ANESTHESIA ASSOCIATES PC 401 K PROFIT SHARING PLAN","001","2007-01-01","LAUREL ANESTHESIA ASSOCIATES, P C",,,"1170 OLD FORBES ROAD",,"LIGONIER","PA","156582516",,,,,,,,,,,,,,,,,,"200208616","7245520068","621111","LAUREL ANESTHESIA ASSOCIATES P C",,"1170 OLD FORBES ROAD",,"LIGONIER","PA","156582516",,,,,,,"200208616","7245520068",,,,"2011-07-18T12:12:41-0500","DAVID W BEYER MD",,,,,3,3,,,3,,3,3,,,"2J2G2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719124958P040099198705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE D.S. BROWN EMPLOYEES' 401(K) SAVINGS PLAN","001","1985-09-01","THE D.S. BROWN COMPANY",,,"300 EAST CHERRY STREET",,"NORTH BALTIMORE","OH","45872",,,,,,,,,,,,,,,,,,"262823744","4192573561","237310","THE D.S. BROWN COMPANY",,"300 EAST CHERRY STREET",,"NORTH BALTIMORE","OH","45872",,,,,,,"262823744","4192573561",,,,"2011-07-19T12:49:14-0500","RHONDA GROTHAUS","2011-07-19T12:49:14-0500","RHONDA GROTHAUS",,,267,241,1,33,275,0,275,212,5,,"2E2G2J2K3D3H2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719091205P040448376688001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"WALTER G ANDERSON INC GROUP LIFE AND ACCIDENTAL DEATH INSURANCE PLAN - UNION EMPLOYEES","506","1981-08-01","WALTER G ANDERSON, INC.",,,"4535 WILLOW DRIVE",,"HAMEL","MN","55340",,,,,,,"4535 WILLOW DRIVE",,"HAMEL","MN","55340",,,,,,,"410734781","7634782133","323100","WALTER G ANDERSON, INC.",,"4535 WILLOW DRIVE",,"HAMEL","MN","55340",,,,,,,"410734781","7634782133",,,,"2011-07-19T08:34:49-0500","MARC ANDERSON","2011-07-19T08:35:27-0500","MARC ANDERSON",,,107,121,1,,122,,122,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719083215P040448282688001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"BELLSOUTH PERSONAL RETIREMENT ACCOUNT PENSION PLAN - DEATH BENEFITS","525","1980-10-01","BELLSOUTH CORPORATION",,,"P.O. BOX 132160",,"DALLAS","TX","753132160",,,,,,,,,,,,,,,,,,"581533433","2103513333","517000","BELLSOUTH CORPORATION",,"P.O. BOX 132160",,"DALLAS","TX","753132160",,,,,,,"581533433","2103513333",,,,"2011-07-18T15:34:29-0500","LARRY RUZICKA",,,,,14312,0,0,0,0,,,,,,,"4L","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719114402P040448753072001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DANA F. PERKINS, INC. 401(K) PLAN","001","2002-01-01","DANA F. PERKINS, INC.",,,"1049 EAST STREET",,"TEWKSBURY","MA","01876",,,,,,,,,,,,,,,,,,"043111266","9788580680","541330","DANA F. PERKINS, INC.",,"1049 EAST STREET",,"TEWKSBURY","MA","01876",,,,,,,"043111266","9788580680",,,,"2011-07-19T11:36:51-0500","JENNIFER EGAN",,,,,9,6,1,2,9,0,9,9,0,,"2E2J2K2F2G3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719103632P040099107697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ORTHOPEDIC SURGICAL PRACTICE OF SANTA BARBARA 401(K) PROFIT SHARING PLAN","009","1992-01-01","ORTHOPEDIC SURGICAL PRACTICE OF SANTA BARBARA",,,"5333 HOLLISTER AVENUE, SUITE 135",,"SANTA BARBARA","CA","93111",,,,,,,,,,,,,,,,,,"770534009","8059679311","621111","ORTHOPEDIC SURGICAL PRACTICE OF SANTA BARBARA",,"5333 HOLLISTER AVENUE, SUITE 135",,"SANTA BARBARA","CA","93111",,,,,,,"770534009","8059679311",,,,"2011-07-19T10:35:05-0500","DOUGLAS S. HENDRY",,,,,16,11,0,5,16,0,16,15,0,,"2A2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719122034P040099180385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXCELLERX HEALTH AND WELFARE PLAN","501","2003-10-01","EXCELLERX, INC.",,,"1601 CHERRY STREET, SUITE 1700",,"PHILADELPHIA","PA","19102",,,,,,,,,,,,,,,,,,"233068914","2152821600","446110","EXCELLERX, INC.",,"1601 CHERRY STREET, SUITE 1700",,"PHILADELPHIA","PA","19102",,,,,,,"233068914","2152821600",,,,"2011-07-19T12:20:13-0500","DIANE PERRYMORE",,,,,590,577,5,0,582,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719080028P030096295985004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PERRY J STAMATIADES DDS PA PROFIT SHARING PLAN","001","2007-01-01","PERRY J STAMATIADES, DDS, PA",,,"C/O 600 HOUZE WAY SUITE D6",,"ROSWELL","GA","30076",,,,,,,,,,,,,,,,,,"201731048","7705528500","621210","PERRY J STAMATIADES DDS PA",,"C/O 600 HOUZE WAY SUITE D6",,"ROSWELL","GA","30076",,,,,,,"201731048","7705528500",,,,"2011-07-18T16:35:30-0500","PERRY J STAMATIADES",,,,,7,7,,,7,,7,7,,,"2J2H2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719080047P040014574434001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNIVITA WELFARE BENEFIT PLAN","502","1999-01-01","UNIVITA",,,"11000 PRAIRIE LAKES DR.","STE 600","EDEN PRAIRIE","MN","55344",,,,,,,,,,,,,,,,,,"263778546","9525166167","524140","UNIVITA",,"11000 PRAIRIE LAKES DR.","STE 600","EDEN PRAIRIE","MN","55344",,,,,,,"263778546","9525166167",,,,"2011-07-19T07:59:41-0500","SHANE SWANSON",,,,,910,1046,0,0,1046,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719070912P030096271713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOB BRANDI HONEY & FARMING DEFINED BENEFIT PENSION PLAN","001","2005-01-01","BOB BRANDI HONEY & FARMING",,,"14509 SANTA LUCIA",,"LOS BANOS","CA","936359703",,,,,,,,,,,,,,,,,,"942194810","2098260921","111900","BOB BRANDI HONEY & FARMING",,"14509 SANTA LUCIA",,"LOS BANOS","CA","936359703",,,,,,,"942194810","2098260921",,,,"2011-07-19T06:54:41-0500","KATHLEEN BRANDI",,,,,8,7,0,1,8,0,8,,0,,"1A1G3D",,"0","0","1","0","0","0","1","0","0","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719105016P040099117441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HUMAN RIGHTS WATCH BENEFITS PROGRAM","501","2001-01-01","HUMAN RIGHTS WATCH",,,"350 FIFTH AVE., 34TH FLOOR",,"NEW YORK","NY","10118",,,,,,,,,,,,,,,,,,"132875808","2122904700","813000","HUMAN RIGHTS WATCH",,"350 FIFTH AVE., 34TH FLOOR",,"NEW YORK","NY","10118",,,,,,,"132875808","2122904700",,,,"2011-07-19T10:49:24-0500","BARBARA GUGLIELMO",,,,,152,188,3,0,191,,,,,,,"4A4B4D4E4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719113223P040099152081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OAK CLIFF OFFICE SUPPLY 401(K) PLAN","002","2004-01-01","OAK CLIFF OFFICE SUPPLY",,,"ATTN KEN CALDWELL","1876 LONE STAR DR","DALLAS","TX","75212",,,,,,,,,,,,,,,,,,"761164207","2149437421","445220","OAK CLIFF OFFICE SUPPLY",,"ATTN KEN CALDWELL","1876 LONE STAR DR","DALLAS","TX","75212",,,,,,,"761164207","2149437421",,,,"2011-07-19T11:31:16-0500","KEN CALDWELL",,,,,14,11,0,0,11,0,11,7,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719113241P040448727888001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KOLEY JESSEN P.C., L.L.O. BASIC LIFE/AD&D PLAN","501","1990-02-01","KOLEY JESSEN P.C., L.L.O.",,,"1125 S. 103RD STREET, SUITE 800",,"OMAHA","NE","68124",,,,,,,,,,,,,,,,,,"470712652","4023909500","541110","KOLEY JESSEN P.C., L.L.O.",,"1125 S. 103RD STREET, SUITE 800",,"OMAHA","NE","68124",,,,,,,"470712652","4023909500",,,,"2011-07-19T11:32:11-0500","M. SHAUN MCGAUGHEY","2011-07-19T11:32:11-0500","M. SHAUN MCGAUGHEY",,,97,94,0,0,94,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719081847P040099036065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONTROL TECHNOLOGIES, INC. FLEXIBLE BENEFITS PLAN","501","2001-01-01","CONTROL TECHNOLOGIES, INC.",,,"121 PARK AVENUE, SUITE 10",,"WILLISTON","VT","05495",,,,,,,,,,,,,,,,,,"030306764","8027642200","238900","CONTROL TECHNOLOGIES, INC.",,"121 PARK AVENUE, SUITE 10",,"WILLISTON","VT","05495",,,,,,,"030306764","8027642200",,,,"2011-07-19T07:52:42-0500","LEONARD PATTISON",,,,,199,194,2,0,196,,,,,,,"4A4B4Q4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719081949P030096302049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORD MOVING AND STORAGE COMPANY 401(K) PLAN","001","1986-01-01","CORD MOVING AND STORAGE COMPANY",,,"4101 RIDER TRAIL NORTH",,"EARTH CITY","MO","63045",,,,,,,,,,,,,,,,,,"430650903","3142917440","493100","CORD MOVING AND STORAGE COMPANY",,"4101 RIDER TRAIL NORTH",,"EARTH CITY","MO","63045",,,,,,,"430650903","3142917440",,,,"2011-07-19T08:13:40-0500","STEPHEN PATTERSON",,,,,169,154,0,10,164,0,164,52,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719074603P030014073666001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNIVERSAL BEARINGS LLC PROFIT SHARING PLAN AND TRUST","001","1968-07-01","UNIVERSAL BEARINGS LLC",,,"431 N. BIRKEY DRIVE",,"BREMEN","IN","46506",,,,,,,,,,,,,,,,,,"260762205","5745462261","332900","UNIVERSAL BEARINGS LLC",,"431 N. BIRKEY DRIVE",,"BREMEN","IN","46506",,,,,,,"260762205","5745462261",,,,"2011-07-19T07:45:06-0500","DAVID KETCHAM",,,,,187,216,1,0,217,0,217,217,0,,"2E2G3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719111631P030014088914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MUTAZ A. TABBAA, M.D., P.A. PROFIT SHARING PLAN","001","1999-01-01","MUTAZ A. TABBAA, M.D., P.A.",,,"2559 HUNTCLIFF LANE",,"PANAMA CITY","FL","32405",,,,,,,,,,,,,,,,,,"593521598","8507630333","621111","MUTAZ A. TABBAA, M.D., P.A.",,"2559 HUNTCLIFF LANE",,"PANAMA CITY","FL","32405",,,,,,,"593521598","8507630333",,,,"2011-07-19T11:16:30-0500","MUTAZ A. TABBAA","2011-07-19T11:16:30-0500","MUTAZ A. TABBAA",,,6,6,0,0,6,0,6,5,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719111701P030096391153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXPERIMENTAL AIRCRAFT ASSOCIATION FLEXIBLE BENEFIT PLAN","503","1991-10-01","EXPERIMENTAL AIRCRAFT ASSOCIATION",,,"3000 POBEREZNY ROAD",,"OSHKOSH","WI","549028939",,,,,,,,,,,,,,,,,,"390917537","9204266843","813000","EXPERIMENTAL AIRCRAFT ASSOCIATION",,"3000 POBEREZNY ROAD",,"OSHKOSH","WI","549028939",,,,,,,"390917537","9204266843",,,,"2011-07-19T11:15:08-0500","BARBARA BLANCK",,,,,180,161,0,0,161,,,,,,,"4B4H4F4L","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719103009P040099103121001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MICHAEL J. WHITTED, DDS, PC SAFE HARBOR 401(K) PROFIT SHARING PLAN","001","2007-01-01","MICHAEL J. WHITTED D.D.S., P.C.",,,"1950 GYORR AVE",,"SOUTH ELGIN","IL","60177",,,,,,,,,,,,,,,,,,"651237806","8476955100","621210","MICHAEL J. WHITTED D.D.S., P.C.",,"1950 GYORR AVE",,"SOUTH ELGIN","IL","60177",,,,,,,"651237806","8476955100",,,,"2011-07-19T11:18:02-0500","MICHAEL J. WHITTED","2011-07-19T11:18:08-0500","MICHAEL J. WHITTED",,,5,6,0,1,7,0,7,7,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719103020P030096366849007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AVR INC EMPLOYEE LIFE INSURANCE PLAN","502","2004-01-01","AVR, INC",,,"14698 GALAXIE AVE",,"APPLE VALLEY","MN","55124",,,,,,,,,,,,,,,,,,"411511874","9524327132","327300","AVR INC",,"14698 GALAXIE AVE",,"APPLE VALLEY","MN","55124",,,,,,,"411511874","9524327132",,,,"2011-07-19T10:03:30-0500","LIZA A ROBSON",,,,,190,166,,,166,,166,,,,,"4B",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719121037P030096416113003","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"PROGRESSIVE ENVIRONMENTAL SERVICES, INC. DBA EAGLE HEALTH","507","2010-01-01","PROGRESSIVE ENVIRONMENTAL SERVICES, INC. DBA EAGLE - SWS",,,"600 GRAND PANAMA BLVD, SUITE 200",,"PANAMA CITY BEACH","FL","32407",,,,,,,,,,,,,,,,,,"263604581","8505637961","562000","PROGRESSIVE ENVIRONMENTAL SERVICES, INC. DBA EAGLE",,"600 GRAND PANAMA BLVD, SUITE 200",,"PANAMA CITY BEACH","FL","32407",,,,,,,"263604581","8505637961",,,,"2011-07-19T04:25:36-0500","ROBERT COSTON",,,,,0,240,,,240,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719102217P040099098241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"T.S.R. CONTRACT EMPLOYEE CONSULTANTS 401(K) SAVING","002","1987-01-01","T.S.R., INC.",,,"400 OSER AVENUE",,"HAUPPAUGE","NY","11788",,,,,,,,,,,,,,,,,,"132635899","6312310333","541519","T.S.R., INC.",,"400 OSER AVENUE",,"HAUPPAUGE","NY","11788",,,,,,,"132635899","6312310333",,,,"2011-07-19T10:22:11-0500","DENISE NEWMAN","2011-07-19T10:22:11-0500","JOHN SHARKEY",,,115,79,0,53,132,0,132,66,0,,"2E2J2F2G2K3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719085305P040031021687001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARNEGIE INSTITUTE DENTAL PLAN","503","1997-08-01","CARNEGIE INSTITUTE",,,"4400 FORBES AVENUE",,"PITTSBURGH","PA","152134007",,,,,,,,,,,,,,,,,,"250965280","4126223180","712100","CARNEGIE INSTITUTE EMPLOYEE BENEFIT PLAN COMMITTEE",,"4400 FORBES AVENUE",,"PITTSBURGH","PA","15213",,,,,,,"251309182","4126223180",,,,"2011-07-19T08:45:00-0500","EILEEN MEDDIS",,,,,386,371,,,371,,,,,,,"4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719083448P040002991923001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEMC ELECTRONIC MATERIALS, INC. RETIREE WELFARE PLAN","507","2009-01-01","MEMC ELECTRONIC MATERIALS, INC.",,"C/O BENEFITS DEPARTMENT","P.O. BOX 8","501 PEARL DRIVE","ST. PETERS","MO","63376",,,,,,,,,,,,,,,,,,"561505767","6364745000","334410","MEMC ELECTRONIC MATERIALS, INC.","C/O BENEFITS DEPARTMENT","P.O. BOX 8","501 PEARL DRIVE","ST. PETERS","MO","63376",,,,,,,"561505767","6364745000",,,,"2011-07-19T08:34:04-0500","JAMES WELSH",,,,,738,763,0,0,763,,,,,,,"4A4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719105957P030452708336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAROLINA FRIENDS SCHOOL DEFINED CONTRIBUTION PLAN","001","1971-01-01","CAROLINA FRIENDS SCHOOL",,,"4809 FRIENDS SCHOOL ROAD",,"DURHAM","NC","277058193",,,,,,,"4809 FRIENDS SCHOOL ROAD",,"DURHAM","NC","277058193",,,,,,,"560812560","9193836602","611000","CAROLINA FRIENDS SCHOOL",,"4809 FRIENDS SCHOOL ROAD",,"DURHAM","NC","277058193",,,,,,,"560812560","9193836602",,,,"2011-07-19T10:59:26-0500","SUSAN SUMMERS",,,,,131,73,13,50,136,1,137,137,0,,"2L",,"1","1",,"0","0","1",,,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719104025P040448610064001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOM FURNITURE CAFETERIA PLAN","503","2006-01-01","HOM FURNITURE, INC.",,,"10301 WOODCREST DRIVE NW",,"COON RAPIDS","MN","554336519",,,,,,,,,,,,,,,,,,"411411444","7637673600","442110","HOM FURNITURE, INC.",,"10301 WOODCREST DRIVE NW",,"COON RAPIDS","MN","554336519",,,,,,,"411411444","7637673600",,,,"2011-07-19T10:40:02-0500","DEBRA SMITH","2011-07-19T10:40:02-0500","DEBRA SMITH",,,142,151,0,0,151,,,,,,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719094235P040099076785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIVE OAKS MANOR, LLC LIFE AND AD&D PLAN","502","2002-01-01","FIVE OAKS MANOR, LLC",,,"P. O. BOX 1907",,"KERNERSVILLE","NC","27285",,,,,,,"413 WINECOFF SCHOOL ROAD",,"CONCORD","NC","28027",,,,,,,"010731351","8439024582","623000","FIVE OAKS MANOR, LLC",,"P. O. BOX 1907",,"KERNERSVILLE","NC","27285",,,,,,,"010731351","8439024582",,,,"2011-07-19T08:59:46-0500","JAMES JOYNER",,,,,126,69,2,50,121,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719090603P040014580354001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PJ MURPHY EMPLOYEE PROFIT SHARING PLAN","001","1992-01-01","P.J MURPHY FOREST PRODUCTS",,,"P.O BOX300","150 RIVER ROAD","MONTVILLE","NJ","07045",,,,,,,"P.O BOX300","150 RIVER ROAD","MONTVILLE","NJ","07045",,,,,,,"111573859","9733160800","113210","P.J MURPHY FOREST PRODUCTS",,"P.O BOX300","150 RIVER ROAD","MONTVILLE","NJ","07045",,,,,,,"111573859","9733160800",,,,"2011-07-19T09:05:48-0500","SAM SOPRANO",,,,,34,30,0,4,34,,34,30,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719112433P040099146689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OSWEGO COUNTY OPPORTUNITIES, INC. WELFARE BENEFITS PLAN","502","1995-02-01","OSWEGO COUNTY OPPORTUNITIES, INC. WELFARE BENEFITS PLAN",,,"239 ONEIDA ST.",,"FULTON","NY","13069",,,,,,,,,,,,,,,,,,"160979876","3155984717","624100","OSWEGO COUNTY OPPORTUNITIES, INC. WELFARE BENEFITS PLAN",,"239 ONEIDA ST.",,"FULTON","NY","13069",,,,,,,"160979876","3155984717",,,,"2011-07-19T08:00:20-0500","DIANE COOPER-CURRIER",,,,,284,293,0,0,293,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719110731P040099130465001","2010-10-01","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"ANGELS SENIOR HOME SOLUTIONS, INC 401K","001","2010-10-01","ANGELS SENIOR HOME SOLUTIONS",,,"156-A SAGAMORE PARKWAY W",,"WEST LAFAYETTE","IN","47906",,,,,,,,,,,,,,,,,,"205203129","7654632100","812190","ANGELS SENIOR HOME SOLUTIONS",,"156-A SAGAMORE PARKWAY W",,"WEST LAFAYETTE","IN","47906",,,,,,,"205203129","7654632100",,,,"2011-07-19T11:06:46-0500","SUSAN JORDAN",,,,,20,25,0,0,25,0,25,9,0,,"2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719080632P040014575042001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"VF CORP GROUP VOLUNTARY LONG TERM DISABILITY INSURANCE PLAN","503","1973-07-01","VF CORPORATION",,,"105 CORPORATE CENTER BLVD.",,"GREENSBORO","NC","274201488",,,,,,,,,,,,,,,,,,"231180120","3364246000","315990","VF CORPORATION",,"105 CORPORATE CENTER BLVD.",,"GREENSBORO","NC","274201488",,,,,,,"231180120","3364246000",,,,"2011-07-19T08:03:30-0500","DEBORAH J. ARNOLD",,,,,3147,0,0,0,0,0,,,,,,"4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719075045P030014073922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TURNERS CUSTOM AUTO GLASS, INC. PROFIT SHARING AND 401K PLAN","001","1986-01-01","TURNERS CUSTOM AUTO GLASS, INC.",,,"P.O. BOX 3802","2608 W. PALMETTO STREET","FLORENCE","SC","295023802",,,,,,,,,,,,,,,,,,"570778633","8036699799","441300","DANNY TURNER",,"P.O. BOX 3802, 2608 W. PALMETTO ST",,"FLORENCE","SC","295023802",,,,,,,"249781882","8036699799",,,,"2011-07-19T07:50:17-0500","DEBORAH KNIGHT",,,,,40,33,0,5,38,0,38,21,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719111800P040099142353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHEMCEL FEDERAL CREDIT UNION 401(K) PLAN AND TRUST","001","1997-03-01","CHEMCEL FEDERAL CREDIT UNION",,,"5740 CR 4",,"BISHOP","TX","78343",,,,,,,,,,,,,,,,,,"746047771","3615846246","522130","CHEMCEL FEDERAL CREDIT UNION",,"5740 CR 4",,"BISHOP","TX","78343",,,,,,,"746047771","3615846246",,,,"2011-07-19T11:17:06-0500","MICHAEL ENGEL","2011-07-19T11:17:06-0500","MICHAEL ENGEL",,,28,24,1,2,27,0,27,18,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719123444P040099189233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EBY FORD SALES, INC. EMPLOYEES' RETIREMENT PLAN","002","1983-01-01","EBY FORD SALES, INC.",,,"2714 ELKHART ROAD",,"GOSHEN","IN","46527",,,,,,,,,,,,,,,,,,"350911731","5745343673","441110","EBY FORD SALES, INC.",,"2714 ELKHART ROAD",,"GOSHEN","IN","46527",,,,,,,"350911731","5745343673",,,,"2011-07-19T12:34:00-0500","TIM GROVE",,,,,40,26,0,6,32,0,32,32,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719092810P040448415040001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LAFLAMME, BARRON & CHABOT PROFIT SHARING PLAN","001","1991-09-14","LAFLAMME, BARRON & CHABOT",,,"114 KENOZA AVE",,"HAVERHILL","MA","01830",,,,,,,,,,,,,,,,,,"043034753","9785214737","541110","LAFLAMME, BARRON & CHABOT",,"114 KENOZA AVE",,"HAVERHILL","MA","01830",,,,,,,"043034753","9785214737",,,,"2011-07-19T09:27:21-0500","SANDI DISALVO","2011-07-19T09:27:21-0500","DANIEL T. CHABOT",,,6,5,0,0,5,0,5,5,0,,"2T3D2E2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719090904P030096326897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KYOWA HAKKO KIRIN AMERICA, INC. 401(K) RETIREMENT SAVINGS PLAN","002","1998-01-01","KYOWA HAKKO KIRIN AMERICA, INC.",,,"212 CARNEGIE CENTER, SUITE 101",,"PRINCETON","NJ","08540",,,,,,,,,,,,,,,,,,"134037218","6095807400","325900","KYOWA HAKKO KIRIN AMERICA, INC.",,"212 CARNEGIE CENTER, SUITE 101",,"PRINCETON","NJ","08540",,,,,,,"134037218","6095807400",,,,"2011-07-19T08:59:20-0500","JUNPEI WATANABE",,,,,262,192,0,55,247,0,247,247,5,,"2A2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719090939P030096327233001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CLARIAN HEALTH SHORT TERM DISABILITY INS PLAN","513","2000-06-01","CLARIAN HEALTH PARTNERS, INC.",,,"340 W. 10TH STREET",,"INDIANAPOLIS","IN","46202",,,,,,,,,,,,,,,,,,"351955872","3179623025","622000","BRIAN OCONNOR",,"340 W. 10TH STREET",,"INDIANAPOLIS","IN","46202",,,,,,,"351955872","3179623025",,,,"2011-07-19T09:08:48-0500","BRIAN OCONNOR","2011-07-19T09:08:48-0500","BRIAN OCONNOR",,,3237,3990,,,3990,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110719123627P040099190593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEST PENN CARDIOLOGY ASSOCIATES, PC 401(K) PROFIT SHARING PLAN","002","1994-11-01","WEST PENN CARDIOLOGY ASSOCIATES, PC",,,"5140 LIBERTY AVENUE",,"PITTSBURGH","PA","15224",,,,,,,,,,,,,,,,,,"251331285","4126822100","621111","WEST PENN CARDIOLOGY ASSOCIATES, PC",,"5140 LIBERTY AVENUE",,"PITTSBURGH","PA","15224",,,,,,,"251331285","4126822100",,,,"2011-07-19T12:36:18-0500","JEFFREY S GARRETT",,,,,29,14,0,1,15,0,15,14,0,,"2F2G2T2E3F2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110719072806P030014072098001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"ZEON CHEMICALS L.P. WELFARE BENEFIT PLAN","501","1990-07-01","ZEON CHEMICALS L.P.",,,"P. O. BOX 34320",,"LOUISVILLE","KY","402324320",,,,,,,,,,,,,,,,,,"611335430","5027757700","325900","ZEON CHEMICALS L.P. HUMAN RESOURCES COMMITTEE",,"P.O. BOX 34320",,"LOUISVILLE","KY","402324320",,,,,,,"611201101","5027752033",,,,"2011-07-19T07:27:56-0500","KAREN HICKS",,,,,445,308,152,0,460,,,,,,,"4B4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-19","Filed with authorized/valid electronic signature",, "20110722172713P040101359697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NCH CORPORATION EMPLOYEE LIFE AND HEALTH BENEFIT PLAN","504","1982-09-01","NCH CORPORATION & SUBSIDIARIES",,,"2727 CHEMSEARCH BLVD",,"IRVING","TX","75062",,,,,,,,,,,,,,,,,,"750457200","9724380226","325900","NCH CORPORATION & SUBSIDIARIES",,"2727 CHEMSEARCH BLVD",,"IRVING","TX","75062",,,,,,,"750457200","9724380226",,,,"2011-07-22T17:26:11-0500","MARILYN BONA",,,,,2435,2469,55,0,2524,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","11","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110724210545P030099786305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAGRUTI A. THAKKAR, D.D.S. DEFINED BENEFIT PENSION PLAN","001","2002-01-01","JAGRUTI A. THAKKAR, D.D.S.",,,"10346 ARLINGTON AVE",,"RIVERSIDE","CA","92505",,,,,,,,,,,,,,,,,,"330960013","9513597500","621210","JAGRUTI A. THAKKAR, D.D.S.",,"10346 ARLINGTON AVE",,"RIVERSIDE","CA","92505",,,,,,,"330960013","9513597500",,,,"2011-07-24T21:04:15-0500","JAGRUTI A. THAKKAR",,,,,2,4,0,1,5,0,5,,0,,"1A3B3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-24","Filed with authorized/valid electronic signature",, "20110722122224P030014401330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TOM LANGE COMPANY 401K RETIREMENT PLAN","003","2009-01-01","TOM LANGE COMPANY INC",,,"755 APPLE ORCHARD RD",,"SPRINGFIELD","IL","627035914",,,,,,,,,,,,,,,,,,"430961120","2177863300","424400","TOM LANGE COMPANY INC",,"755 APPLE ORCHARD RD",,"SPRINGFIELD","IL","627035914",,,,,,,"430961120","2177863300",,,,"2011-07-22T12:21:27-0500","SARAH L BEUNING",,,,,133,124,0,12,136,0,136,136,8,,"2E2F2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722214111P030098685681001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"TRITECH SOFTWARE SYSTEMS 401(K) SAVINGS PLAN","001","1991-06-01","TRITECH SOFTWARE SYSTEMS",,,"9860 MESA RIM ROAD",,"SAN DIEGO","CA","92121",,,,,,,"9860 MESA RIM ROAD",,"SAN DIEGO","CA","92121",,,,,,,"953871079","8587997380","541511","TRITECH SOFTWARE SYSTEMS",,"9860 MESA RIM ROAD",,"SAN DIEGO","CA","92121",,,,,,,"953871079","8587997380",,,,"2011-07-22T21:38:57-0500","BRENDA STIEHL",,,,,183,170,0,42,212,2,214,201,16,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722151444P040101303297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CES SECURITY, INC. 401(K) PLAN","001","1996-01-01","CES SECURITY, INC.",,,"115 MCHENRY AVE",,"BALTIMORE","MD","21208",,,,,,,,,,,,,,,,,,"521084405","4434717000","561600","CES SECURITY, INC.",,"115 MCHENRY AVE",,"BALTIMORE","MD","21208",,,,,,,"521084405","4434717000",,,,"2011-07-22T11:21:56-0500","DENNIS BERNSTEIN",,,,,118,93,0,10,103,1,104,89,1,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722095749P030098320321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAM MUTUAL INSURANCE COMPANY 401(K) PLAN","003","1986-04-01","RAM MUTUAL INSURANCE COMPANY",,,"16 EAST HIGHWAY 61",,"ESKO","MN","55733",,,,,,,,,,,,,,,,,,"410246603","2188793321","524150","RAM MUTUAL INSURANCE COMPANY",,"16 EAST HIGHWAY 61",,"ESKO","MN","55733",,,,,,,"410246603","2188793321",,,,"2011-07-22T09:57:06-0500","SHARON E. SWENSON",,,,,68,53,0,10,63,0,63,63,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722140622P040101271345001","2007-12-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"A & I PRODUCTS HEALTH INSURANCE PLAN","501","2001-06-01","A & I PRODUCTS, INC.",,,"ONE JOHN DEERE PLACE",,"MOLINE","IL","61265",,,,,,,,,,,,,,,,,,"421302649","3097658000","333100","A & I PRODUCTS, INC.",,"ONE JOHN DEERE PLACE",,"MOLINE","IL","61265",,,,,,,"421302649","3097658000",,,,"2011-07-22T13:23:23-0500","THOMAS K. JARRETT",,,,,418,197,,,197,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722161037P040101328465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UCB INC PRE-TAX BENEFIT PLAN","501","1993-04-01","UCB, INC.",,,"1950 LAKE PARK DRIVE",,"SMYRNA","GA","30080",,,,,,,,,,,,,,,,,,"133010020","7709708427","339110","UCB, INC.",,"1950 LAKE PARK DRIVE",,"SMYRNA","GA","30080",,,,,,,"133010020","7709708427",,,,"2011-07-22T16:07:53-0500","ALLEN REID",,,,,480,322,0,0,322,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722100311P040101147297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAW OFFICE OF GEWURZ&ZACCARIA, 401K","001","2005-08-22","LAW OFFICE OF GEWURZ & ZACCARIA, P. ATTN BENNETT GEWURZ",,,"50 CHARLES LINDBERGH BLVD STE 204",,"UNIONDALE","NY","11553",,,,,,,,,,,,,,,,,,"203203988","5162285500","541110","LAW OFFICE OF GEWURZ & ZACCARIA, P. ATTN BENNETT GEWURZ",,"50 CHARLES LINDBERGH BLVD STE 204",,"UNIONDALE","NY","11553",,,,,,,"203203988","5162285500",,,,"2011-07-22T09:56:02-0500","BENNETT GEWURZ",,,,,11,10,0,2,12,0,12,12,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722101627P030461381264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARIPOSA CORP 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","MARIPOSA CORP",,,"DBA NATIONAL GASKET","P O BOX 820747","HOUSTON","TX","77282",,,,,,,,,,,,,,,,,,"741738092","7132220220","326200","MARIPOSA CORP",,"DBA NATIONAL GASKET","P O BOX 820747","HOUSTON","TX","77282",,,,,,,"741738092","7132220220",,,,"2011-07-22T10:16:24-0500","MARIPOSA CORP",,,,,2,19,0,0,19,0,19,15,0,,"2T2G3D2E2J2K",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722063111P040101041265001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"TRANSYLVANIA UNIVERSITY HEALTH PLAN","501","1988-10-10","TRANSYLVANIA UNIVERSITY",,,"300 N. BROADWAY",,"LEXINGTON","KY","40508",,,,,,,,,,,,,,,,,,"610444825","8592338701","611000","TRANSYLVANIA UNIVERSITY",,"300 N. BROADWAY",,"LEXINGTON","KY","40508",,,,,,,"610444825","8592338701",,,,"2011-07-22T06:30:43-0500","MARC A MATHEWS","2011-07-22T06:30:43-0500","MARC A MATHEWS",,,253,257,,,257,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722123928P040101227265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARYLAND PRIMARY CARE PHYSICIANS, LLC SECTION 125 PLAN","501","1996-01-01","MARYLAND PRIMARY CARE PHYSICIANS, LLC",,,"1111 BENFIELD BOULEVARD","SUITE 200","MILLERSVILLE","MD","211083004",,,,,,,,,,,,,,,,,,"521923448","4105441500","621111","MARYLAND PRIMARY CARE PHYSICIANS, LLC",,"1111 BENFIELD BOULEVARD","SUITE 200","MILLERSVILLE","MD","211083004",,,,,,,"521923448","4105441500",,,,"2011-07-22T12:07:51-0500","DONALD BUNTZ","2011-07-22T12:16:48-0500","CAROL FLETCHER",,,274,267,4,0,271,,271,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722124005P030098419665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE HOMESTEAD GROUP, INC. PROFIT SHARING PLAN","001","1986-01-01","THE HOMESTEAD GROUP, INC.",,,"4075 MARKET ST",,"CAMP HILL","PA","170114221",,,,,,,,,,,,,,,,,,"232005510","7177637500","531210","THE HOMESTEAD GROUP, INC.",,"4075 MARKET ST",,"CAMP HILL","PA","170114221",,,,,,,"232005510","7177637500",,,,"2011-07-22T12:40:04-0500","MICHAEL J. GREENE",,,,,24,19,0,3,22,0,22,22,1,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722152734P030462130656001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"XAVIER UNIVERSITY GROUP DISABILITY","501","1959-11-01","XAVIER UNIVERSITY",,,"3800 VICTORY PARKWAY",,"CINCINNATI","OH","452074641",,,,,,,,,,,,,,,,,,"310537516","5137453638","611000","XAVIER UNIVERSITY",,"3800 VICTORY PARKWAY",,"CINCINNATI","OH","452074641",,,,,,,"310537516","5137453638",,,,"2011-07-22T14:35:16-0500","KATHLEEN M RIGA","2011-07-22T10:51:47-0500","KATHLEEN M RIGA",,,826,835,,,835,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722083720P040014894802001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HATCHER CONSTRUCTION SERVICES 401(K) PLAN","001","2000-02-01","NOLAN HATCHER CONSTRUCTION SERVICES",,,"2601 EAST HIGHWAY 37",,"TUTTLE","OK","73089",,,,,,,,,,,,,,,,,,"731504847","4053819478","236200","NOLAN HATCHER CONSTRUCTION SERVICES",,"2601 EAST HIGHWAY 37",,"TUTTLE","OK","73089",,,,,,,"731504847","4053819478",,,,"2011-07-22T08:24:02-0500","RENEE HATCHER",,,,,22,19,0,3,22,0,22,16,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722130510P030014404882001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"META5, INC. 401(K)/PROFIT SHARING PLAN","001","2002-01-01","META5, INC.",,,"122 WEST MAIN ST.",,"BABYLON","NY","11702",,,,,,,,,,,,,,,,,,"113569617","6315876800","812990","META5, INC.",,"122 WEST MAIN ST.",,"BABYLON","NY","11702",,,,,,,"113569617","6315876800",,,,"2011-07-22T12:56:43-0500","JAMES P. KANZLER",,,,,7,2,0,1,3,0,3,3,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722102738P040101162433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSTANCE P. BRUNT 401K PLAN","002","2001-01-01","CONSTANCE P BRUNT ESQUIRE",,,"1820 LINGLESTOWN RD",,"HARRISBURG","PA","171103339",,,,,,,,,,,,,,,,,,"251683849","7172327200","541110","CONSTANCE P BRUNT ESQUIRE",,"1820 LINGLESTOWN RD",,"HARRISBURG","PA","171103339",,,,,,,"251683849","7172327200",,,,"2011-07-22T10:18:39-0500","CONSTANCE P. BRUNT, ESQUIRE",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K2R3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722151351P040457847568001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOE S ZHOU PROFIT SHARING PLAN","001","2001-01-01","JOE S. ZHOU, MD",,,"5819 MEADOW DR",,"OREFIELD","PA","180698807",,,,,,,,,,,,,,,,,,"233039345","6108242474","621111","JOE S. ZHOU, MD",,"5819 MEADOW DR",,"OREFIELD","PA","180698807",,,,,,,"233039345","6108242474",,,,"2011-07-22T08:16:12-0500","JOE S ZHOU, MD","2011-07-22T08:16:12-0500","JOE S ZHOU, MD",,,3,3,,,3,,3,3,,,"2E2R3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722184705P040101399361001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"DURO BAG MFG COMPANY HEALTH AND BENEFIT PLAN","511","1983-09-01","DURO BAG MANUFACTURING COMPANY",,,"7600 EMPIRE DRIVE",,"FLORENCE","KY","41042",,,,,,,,,,,,,,,,,,"610475966","8595818200","322200","DURO BAG MANUFACTURING COMPANY",,"7600 EMPIRE DRIVE",,"FLORENCE","KY","41042",,,,,,,"610475966","8595818200",,,,"2011-07-22T18:46:23-0500","JACKIE R ISAACS",,,,,1587,1610,0,0,1610,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110723184446P040015028466001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SURGICAL CLINIC OF NORTH MISSISSIPPI MONEY PURCHASE PENSION PLAN AND TRUST","003","1997-12-31","OXFORD BARIATRIC GENERAL AND METABOLIC SURGERY PLLC","OXFORD BARIATRIC GENERAL AND METABOLIC SURGERY PLLC","WILLIAM R RHODES","2215 JEFF DAVIS EXTENDED",,"OXFORD","MS","38655",,,,,,,"2215 JEFF DAVIS EXTENDED",,"OXFORD","MS","38655",,,,,,,"721372888","6622343303","621111","OXFORD BARIATRIC GENERAL AND METABOLIC SURGERY PLLC","WILLIAM R RHODES","2215 JEFF DAVIS EXTENDED",,"OXFORD","MS","38655",,,,,,,"721372888","6622343303",,,,"2011-07-23T18:43:12-0500","WILLIAM RHODES",,,,,9,7,,1,8,,8,8,,,"2C2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-23","Filed with authorized/valid electronic signature",, "20110722110030P030014392514008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THOMPSON FARMS BASIC","001","2000-01-01","MICHAEL J THOMPSON",,,"15318 71ST PLACE NE",,"GRAFTON","ND","58237",,,,,,,,,,,,,,,,,,"450410165","7013520141","111900","ARDELL E HERMANSON CPA PC",,"PO BOX 151",,"GRAFTON","ND","582370151",,,,,,,"470807330","7013522285",,,,"2011-07-22T10:51:11-0500","ARDELL HERMANSON",,,,,2,3,,,3,,3,3,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722112449P030098370337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED HOSPITAL SERVICES, LLC EMPLOYEES' PENSION PLAN","001","1980-01-01","UNITED HOSPITAL SERVICES, LLC",,,"9948 PARK DAVIS DRIVE",,"INDIANAPOLIS","IN","46235",,,,,,,,,,,,,,,,,,"203088879","3178994050","541990","UNITED HOSPITAL SERVICES, LLC",,"9948 PARK DAVIS DRIVE",,"INDIANAPOLIS","IN","46235",,,,,,,"203088879","3178994050",,,,"2011-07-22T11:23:52-0500","LIFANG ZHU","2011-07-22T11:23:52-0500","LIFANG ZHU",,,121,26,37,49,112,3,115,0,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722133006P040457613040001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"CONNECT CABLE CONTRACTORS INC GROUP INS PLAN (BLUE CROSS BLUE SHIELD OF NC)","501","2010-03-01","CONNECT CABLE CONTRACTORS, INC.",,,"PO BOX 2387",,"HICKORY","NC","28603",,,,,,,"819 OLD LENOIR RD NW",,"HICKORY","NC","28601",,,,,,,"561950817","8283276700","238900","CONNECT CABLE CONTRACTORS, INC.",,"PO BOX 2387",,"HICKORY","NC","28603",,,,,,,"561950817","8283276700",,,,"2011-07-22T13:27:24-0500","STEPHEN SEILER",,,,,139,148,3,,151,,151,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","1","0",,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722134509P030098460833005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MOUNTAINEER GAS COMPANY BASIC LIFE INSURANCE PLAN","503","2005-01-01","MOUNTAINEER GAS COMPANY",,,"2401 SISSONVILLE DRIVE",,"CHARLESTON","WV","25312",,,,,,,,,,,,,,,,,,"550521087","3043404021","221210","MOUNTAINEER GAS COMPANY",,"2401 SISSONVILLE DRIVE",,"CHARLESTON","WV","25312",,,,,,,"550521087","3043404021",,,,"2011-07-22T13:35:03-0500","MOSES SKAFF",,,,,480,507,0,0,507,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722095147P040101141809004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AMERICAN BEVERAGE CORPORATION FLEXIBLE BENEFIT PLAN","501","1984-05-01","AMERICAN BEVERAGE CORPORATION",,,"ONE DAILY WAY",,"VERONA","PA","15147",,,,,,,"ONE DAILY WAY",,"VERONA","PA","15147",,,,,,,"340730294","4128289020","312110","AMERICAN BEVERAGE CORPORATION",,"ONE DAILY WAY",,"VERONA","PA","15147",,,,,,,"340730294","4128289020",,,,"2011-07-14T07:06:24-0500","MICHAEL BARTLETT","2011-07-14T07:06:24-0500","MICHAEL BARTLETT",,,495,474,,,474,,,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","9",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722140744P040101272113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE CHICAGO LIGHTHOUSE FOR PEOPLE WHO ARE BLIND OR VISUALLY IMPAIRED HEALTH INSURANCE PLAN","501","1983-01-01","THE CHICAGO LIGHTHOUSE FOR PEOPLE WHO ARE BLIND OR VISUALLY IMPAIRED",,,"1850 W. ROOSEVELT RD",,"CHICAGO","IL","60608",,,,,,,"1850 W. ROOSEVELT RD",,"CHICAGO","IL","60608",,,,,,,"362169139","3126661331","624310","THE CHICAGO LIGHTHOUSE FOR PEOPLE WHO ARE BLIND INSURANCE & PENN COMM",,"1850 W. ROOSEVELT RD",,"CHICAGO","IL","60608",,,,,,,"363880784","3126661331",,,,"2011-07-22T14:05:59-0500","JANET SZLYK",,,,,130,141,,,141,,141,,,,,"4A","1","0",,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722142221P030098483921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOUNTAINEER GAS COMPANY EMPLOYEE SAVINGS PLAN","001","2005-10-01","MOUNTAINEER GAS CO.",,,"2401 SISSONVILLE DR",,"CHARLESTON","WV","253871338",,,,,,,,,,,,,,,,,,"550521087","3043470541","221210","MOUNTAINEER GAS CO.",,"2401 SISSONVILLE DR",,"CHARLESTON","WV","253871338",,,,,,,"550521087","3043470541",,,,"2011-07-22T13:05:26-0500","MOSES G. SKAFF JR","2011-07-22T13:05:26-0500","MOSES G. SKAFF JR",,,463,475,0,14,489,0,489,406,2,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722155759P030098543969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHYSICIANS MEDICAL CENTER, LLC BENEFITS PLAN","501","2009-01-01","PHYSICIANS MEDICAL CENTER, LLC",,,"6020 W PARKER RD",,"PLANO","TX","75093",,,,,,,,,,,,,,,,,,"481281376","9724032804","622000","PHYSICIANS MEDICAL CENTER, LLC",,"6020 W PARKER RD",,"PLANO","TX","75093",,,,,,,"481281376","9724032804",,,,"2011-07-22T08:20:28-0500","LARRY ROBERTSON",,,,,135,150,2,0,152,0,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722100625P040457145360001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"RICHARD DAY RESEARCH, INC 401(K) PROFIT SHARING PLAN","002","1983-09-01","RICHARD DAY RESEARCH INC",,,"820 DAVIS ST, STE 500",,"EVANSTON","IL","60204",,,,,,,"820 DAVIS ST, STE 500",,"EVANSTON","IL","60204",,,,,,,"371101399","8473282329","541910","RICHARD DAY RESEARCH INC",,"820 DAVIS ST, STE 500",,"EVANSTON","IL","60204",,,,,,,"371101399","8473282329",,,,"2011-07-22T10:03:56-0500","HENRIETTA SAUNDERS","2011-07-22T10:05:03-0500","HENRIETTA SAUNDERS",,,39,21,0,24,45,0,45,41,6,,"2A2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722101321P040101151345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BETHANY LUTHERAN HOMES, INC HEALTH & DENTAL BENEFIT PLAN","504","1997-01-01","BETHANY LUTHERAN HOMES, INC",,"TODD GARVES","2575 S. 7TH ST",,"LA CROSSE","WI","54601",,,,,,,"2575 S. 7TH ST",,"LA CROSSE","WI","54601",,,,,,,"390909446","6087759900","623000","BETHANY LUTHERAN HOMES, INC","TODD GARVES","2575 S. 7TH ST",,"LA CROSSE","WI","54601",,,,,,,"390909446","6087759900",,,,"2011-07-22T10:12:27-0500","TODD GARVES",,,,,290,283,,,283,,283,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722125504P030014403874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GESSNER PRODUCTS CO., INC. 401K PS PLAN","003","1992-09-01","GESSNER PRODUCTS CO., INC.",,,"241 N MAIN ST",,"AMBLER","PA","190024224",,,,,,,,,,,,,,,,,,"231542945","2156467667","326100","GESSNER PRODUCTS CO., INC.",,"241 N MAIN ST",,"AMBLER","PA","190024224",,,,,,,"231542945","2156467667",,,,"2011-07-22T12:47:45-0500","GEOFFREY RIES",,,,,61,43,0,15,58,0,58,47,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722145529P040101292417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HILTON PALM SPRINGS 401(K) PLAN","001","2001-01-01","WALTER FAMILY PARTNERSHIP",,,"400 EAST TAHQUITZ CANYON WAY",,"PALM SPRINGS","CA","92262",,,,,,,,,,,,,,,,,,"330326971","7603206868","721110","WALTER FAMILY PARTNERSHIP",,"400 EAST TAHQUITZ CANYON WAY",,"PALM SPRINGS","CA","92262",,,,,,,"330326971","7603206868",,,,"2011-07-22T14:55:14-0500","LYNN PAJONK",,,,,166,136,0,21,157,0,157,91,0,,"2E2F2G2J3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722170752P030014427778001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CANCER CENTER OF SANTA BARBARA - FLEXIBLE BENEFITS PLAN","504","2007-01-01","CANCER CENTER OF SANTA BARBARA",,,"300 WEST PUEBLO STREET",,"SANTA BARBARA","CA","93105",,,,,,,"300 WEST PUEBLO STREET",,"SANTA BARBARA","CA","93105",,,,,,,"952158727","8056827300","621498","CANCER CENTER OF SANTA BARBARA",,"300 WEST PUEBLO STREET",,"SANTA BARBARA","CA","93105",,,,,,,"952158727","8056827300",,,,"2011-07-22T17:07:44-0500","PHIL STONE",,,,,26,21,,,21,,21,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110723102437P040101762001001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PRIZE STEAK PRODUCTS INC PROFIT SHARING TRUST","001","1971-04-01","PRIZE STEAK PRODUCTS, INC.",,,"4264 S. 27TH STREET",,"MILWAUKEE","WI","532211895",,,,,,,,,,,,,,,,,,"390969209","4142815800","424400","PRIZE STEAK PRODUCTS, INC.",,"4264 S. 27TH STREET",,"MILWAUKEE","WI","532211895",,,,,,,"390969209","4142815800",,,,"2011-07-21T04:49:36-0500","JAMES D. KATERINOS",,,,,15,13,,,13,,13,11,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-23","Filed with authorized/valid electronic signature",, "20110722131625P030098444913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KINGS DAUGHTERS HOSPITAL HEALTH BENEFIT PLAN","511","1992-01-01","KINGS DAUGHTERS HOSPITAL AND HEALTH SERVICES",,,"ONE KINGS DAUGHTERS DRIVE","P.O. BOX 447","MADISON","IN","47250",,,,,,,,,,,,,,,,,,"350895832","8122655211","622000","KINGS DAUGHTERS HOSPITAL AND HEALTH SERVICES",,"ONE KINGS DAUGHTERS DRIVE","P.O. BOX 447","MADISON","IN","47250",,,,,,,"350895832","8122655211",,,,"2011-07-22T13:16:22-0500","STEPHEN MEACHAM","2011-07-22T13:16:22-0500","STEPHEN MEACHAM",,,206,226,,,226,,,,,,,"4A4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722131716P030014406130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY CAPITAL CORPORATION ESOP WITH 401K PROV","001","1991-01-01","CAPITALBANK",,,"PO BOX 218","1402 C. HIGHWAY 72 WEST","GREENWOOD","SC","296480218",,,,,,,,,,,,,,,,,,"570866395","8649418298","522120","CAPITALBANK",,"PO BOX 218","1402 C. HIGHWAY 72 WEST","GREENWOOD","SC","296480218",,,,,,,"570866395","8649418298",,,,"2011-07-22T13:04:25-0500","JULIE LAMB",,,,,202,182,0,24,206,0,206,187,12,,"2O2F2H2I2J2K2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722132403P030098448225001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MARSHALL, DENNEHEY, WARNER, COLEMAN & GOGGIN HEALTH AND WELFARE PLAN","501","1995-10-01","MARSHALL, DENNEHEY, WARNER, COLEMAN & GOGGIN",,,"1845 WALNUT STREET",,"PHILADELPHIA","PA","191034797",,,,,,,,,,,,,,,,,,"231724150","2155752600","541110","MARSHALL, DENNEHEY, WARNER, COLEMAN & GOGGIN",,"1845 WALNUT STREET",,"PHILADELPHIA","PA","191034797",,,,,,,"231724150","2155752600",,,,"2011-07-22T13:22:57-0500","KAREN RUDDEROW",,,,,905,906,14,0,920,,,,,,,"4A4B4D4H4L4F4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110723110149P040015004674001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PETER J BERTUGLIA CPA PC 401K PROFIT SHARING PLAN","002","1993-01-01","PETER J BERTUGLIA CPA PC",,,"775 PARK AVE","SUITE 354","HUNTINGTON","NY","11743",,,,,,,"775 PARK AVE","SUITE 354","HUNTINGTON","NY","11743",,,,,,,"112954955","6313857003","541211","PETER J BERTUGLIA CPA PC",,"775 PARK AVE","SUITE 354","HUNTINGTON","NY","11743",,,,,,,"112954955","6313857003",,,,"2011-07-23T10:38:56-0500","PETER BERTUGLIA",,,,,2,2,,,2,,2,2,0,,"2E2H2J",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-23","Filed with authorized/valid electronic signature",, "20110722084818P030014381314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CUMMINS GROUP TRAVEL ACCIDENT INSURANCE PLAN","508","1963-06-01","CUMMINS INC",,,"500 JACKSON STREET, MAIL CODE 60128",,"COLUMBUS","IN","47201",,,,,,,,,,,,,,,,,,"350257090","8006828788","333610","CUMMINS INC",,"500 JACKSON STREET, MAIL CODE 60128",,"COLUMBUS","IN","47201",,,,,,,"350257090","8006828788",,,,"2011-07-22T08:48:08-0500","RICHARD HARRIS","2011-07-22T08:48:08-0500","RICHARD HARRIS",,,15032,13820,0,0,13820,,,,,,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722090028P040101111585007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MONARCH FLEXIBLE SPENDING PLAN","505","2003-01-01","MONARCH",,,"350 PEE DEE AVENUE STE A",,"ALBEMARLE","NC","28001",,,,,,,,,,,,,,,,,,"561922385","7049861500","624100","MONARCH",,"350 PEE DEE AVENUE STE A",,"ALBEMARLE","NC","28001",,,,,,,"561922385","7049861500",,,,"2011-07-22T08:22:20-0500","CINDY JONES",,,,,183,211,,,211,,211,,,,,"4Q","1",,,"1","1",,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722091047P040101115985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AAA EAST CENTRAL VISION PLAN","512","2003-01-01","AAA EAST CENTRAL",,,"5900 BAUM BLVD.",,"PITTSBURGH","PA","152063854",,,,,,,"5900 BAUM BLVD.",,"PITTSBURGH","PA","152063854",,,,,,,"251114373","4123657240","813000","AAA EAST CENTRAL",,"5900 BAUM BLVD.",,"PITTSBURGH","PA","152063854",,,,,,,"251114373","4123657240",,,,"2011-07-22T08:05:22-0500","GLENDA MORGAN",,,,,826,537,6,0,543,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722113629P040101196177001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"IBASE TECHNOLOGY (USA), INC. 401(K) RETIREMENT/PROFIT SHARING PLAN","002","1995-01-01","IBASE TECHNOLOGY USA INC",,,"1050 STEWART DRIVE",,"SUNNYVALE","CA","94085",,,,,,,"1050 STEWART DRIVE",,"SUNNYVALE","CA","94085",,,,,,,"954063124","4089220888","334110","IBASE TECHNOLOGY USA INC",,"1050 STEWART DRIVE",,"SUNNYVALE","CA","94085",,,,,,,"954063124","4089220888",,,,"2011-07-15T12:01:19-0500","WU CHUN HSU",,,,,37,30,7,,37,,37,,0,,"2E2F2G2J2K3D",,"1",,,,"1",,,,"1",,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722110217P040101181617005","2006-07-01","2006-12-31","2",,"1","0","0","1","0","0","0","1","0",,"ACULABS, INC. GROUP LIFE, AD&D & LTD PLAN","501","2006-07-01","ACULABS, INC.",,,"2 KENNEDY BLVD",,"EAST BRUNSWICK","NJ","08816",,,,,,,"2 KENNEDY BLVD",,"EAST BRUNSWICK","NJ","08816",,,,,,,"221972075","7327772588","621510","ACULABS, INC.",,"2 KENNEDY BLVD",,"EAST BRUNSWICK","NJ","08816",,,,,,,"221972075","7327772588",,,,"2011-07-22T10:45:21-0500","DAUNA GUDAITIS","2011-07-22T10:45:21-0500","DAUNA GUDAITIS",,,119,119,0,0,119,0,119,0,0,,,"4B4H4L","1","0","0","0","1","0","0","0",,"0","0",,,"1","1",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722110616P040101183313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EICHENLAUB, INC. PROFIT SHARING PLAN AND TRUST","001","1989-01-01","EICHENLAUB, INC.",,,"P.O. BOX 111282","3809 SAXONBURG","PITTSBURGH","PA","152380682",,,,,,,,,,,,,,,,,,"251371647","4127674769","561730","EICHENLAUB, INC.",,"P.O. BOX 111282",,"PITTSBURGH","PA","152380682",,,,,,,"251371647","4127674769",,,,"2011-07-22T11:06:11-0500","DANIEL J. EICHENLAUB",,,,,33,30,0,5,35,0,35,35,1,,"2E3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722133043P040101254145012","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CAROL J BRAUN PSRP","001","1992-01-01","CAROL J BRAUN, DDS",,,"2816 VEACH ROAD",,"OWENSBORO","KY","423036295",,,,,,,,,,,,,,,,,,"621325117","2706840152","621210","CAROL J BRAUN DDS",,"2816 VEACH ROAD",,"OWENSBORO","KY","423036295",,,,,,,"621325117","2706840152",,,,"2011-07-19T18:10:11-0500","CAROL J BRAUN DDS",,,,,9,9,,,9,,9,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722134651P040101261841003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JAMES T. SCHULTZ, D.D.S., P.L.C. SELF EMPLOYED PROFIT SHARING RETIREMENT PLAN","002","1994-01-01","JAMES T. SCHULTZ, D.D.S., P.L.C.",,,"26206 W. TWELVE MILE RD, STE 104",,"SOUTHFIELD","MI","48034",,,,,,,,,,,,,,,,,,"300126776","2488271220","621210","JAMES T. SCHULTZ, D.D.S., P.L.C.",,"26206 W. TWELVE MILE RD, STE 104",,"SOUTHFIELD","MI","48034",,,,,,,"300126776","2488271220",,,,"2011-07-08T09:42:02-0500","JAMES T. SCHULTZ",,,,,4,4,,,4,,4,4,,,"2A2E2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722135610P030098465633001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"NDS, INC. 401(K) PLAN","001","2000-01-01","NDS, INC.",,,"851 N HARVARD AVE",,"LINDSAY","CA","932471714",,,,,,,,,,,,,,,,,,"953332340","5595629888","326100","NDS, INC.",,"851 N HARVARD AVE",,"LINDSAY","CA","932471714",,,,,,,"953332340","5595629888",,,,"2011-07-22T13:56:05-0500","JUANA LACY","2011-07-22T13:54:37-0500","RANDALL STOTT",,,450,416,0,22,438,0,438,404,13,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722135701P030098465905001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SIGNATURE BRANDS","501","2010-01-01","SIGNATURE BRANDS",,,"808 S.W. 12TH ST",,"OCALA","FL","34471",,,,,,,"808 S.W. 12TH ST",,"OCALA","FL","34471",,,,,,,"593359107","3526223134","311300","SIGNATURE BRANDS",,"808 S.W. 12TH ST",,"OCALA","FL","34471",,,,,,,"593359107","3526223134",,,,"2011-07-22T13:53:47-0500","CONSTANCE LARSEN",,,,,1275,1275,,,1275,,1275,,,,,"4A4Q4D4B4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722163945P040458031328001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M & M AMERICAN LOGISTICS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-07-01","M & M AMERICAN LOGISTICS INC",,,"300 DISTRIBUTION CIRCLE","STE A","FAIRFIELD","OH","45014",,,,,,,,,,,,,,,,,,"311742076","5138743601","484120","M & M AMERICAN LOGISTICS INC",,"300 DISTRIBUTION CIRCLE","STE A","FAIRFIELD","OH","45014",,,,,,,"311742076","5138743601","M & M AMERICAN LOGISTICS INC",,,"2011-07-22T16:39:16-0500","BRIAN WEST",,,,,19,14,0,5,19,0,19,18,0,,"2E2G2J2K3E3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722164137P040101340737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LUSTIG ORTHODONTICS 401(K) PLAN","001","2006-01-01","JEREMY R. LUSTIG, DDS, MS, PA",,,"5340 N TARRANT PKWY",,"FORT WORTH","TX","76248",,,,,,,,,,,,,,,,,,"200593005","8175141717","621210","JEREMY R. LUSTIG, DDS, MS, PA",,"5340 N TARRANT PKWY",,"FORT WORTH","TX","76248",,,,,,,"200593005","8175141717",,,,"2011-07-22T16:39:57-0500","JEREMY R. LUSTIG, DDS","2011-07-22T16:39:57-0500","JEREMY R. LUSTIG, DDS",,,12,15,0,0,15,0,15,15,0,,"2A2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722093035P030098309601004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BOBECK REAL ESTATE COMPANY INC PROFIT SHARING PLAN AND TRUST","001","1969-01-01","BOBECK REAL ESTATE COMPANY, INC",,,"3333 WEST HAMILTON ROAD",,"FORT WAYNE","IN","46814",,,,,,,,,,,,,,,,,,"351070139","2604321000","531210","BOBECK REAL ESTATE COMPANY INC",,"3333 WEST HAMILTON ROAD",,"FORT WAYNE","IN","46814",,,,,,,"351070139","2604321000",,,,"2011-07-22T08:46:01-0500","VICTORIA AULD",,,,,6,4,,2,6,,6,6,,,"3D2K2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722094414P030030866471001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VERTEX, INC. SEVERANCE PLAN","513","2007-11-14","VERTEX, INC.",,,"1041 OLD CASSATT ROAD",,"BERWYN","PA","19312",,,,,,,,,,,,,,,,,,"232081753","6106404200","511210","VERTEX, INC.",,"1041 OLD CASSATT ROAD",,"BERWYN","PA","19312",,,,,,,"232081753","6106404200",,,,"2011-07-22T09:43:21-0500","BARB DYSON","2011-07-22T09:43:21-0500","BARB DYSON",,,634,665,0,0,665,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722100135P040101146481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INDEPENDENCE BLUE CROSS, KEYSTONE","556","2009-01-01","DOPACO, INC.",,,"100 ARRANDALE BLVD",,"EXTON","PA","19341",,,,,,,"100 ARRANDALE BLVD",,"EXTON","PA","19341",,,,,,,"232106485","6105248500","322200","DOPACO, INC.",,"100 ARRANDALE BLVD",,"EXTON","PA","19341",,,,,,,"232106485","6105248500",,,,"2011-07-22T09:20:09-0500","MIKE BELL",,,,,727,732,8,,740,,740,,,,,"4A4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722114130P030030897783001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"CUNA MUTUAL VOLUNTARY ACCIDENTAL DEATH & DISMEMBERMENT PLAN","505","1967-03-01","CUNA MUTUAL INSURANCE SOCIETY",,,"P.O. BOX 391",,"MADISON","WI","537010391",,,,,,,,,,,,,,,,,,"390230590","6082385851","524140","EMPLOYEE BENEFITS PLAN ADMINISTRATION COMMITTEE",,"P.O. BOX 391",,"MADISON","WI","537010391",,,,,,,"391240740","6082385851",,,,"2011-07-22T11:41:12-0500","THOMAS MERFELD","2011-07-20T17:18:15-0500","TERI EDMAN",,,317,287,6,,293,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722114259P030461592368001","2010-12-01","2010-12-31","2",,"0","1","0","1","0","0","0","0","0",,"ELARC GROUP TERM LIFE AND ACCIDENTAL DEATH & DISMEMBERMENT PLAN","502","1994-12-01","EASTERN LOS ANGELES REGIONAL CENTER",,,"1000 S. FREMONT AVE.",,"ALHAMBRA","CA","918027916",,,,,,,,,,,,,,,,,,"237049877","6262994700","624100","EASTERN LOS ANGELES REGIONAL CENTER",,"1000 S. FREMONT AVE.",,"ALHAMBRA","CA","918027916",,,,,,,"237049877","6262994700",,,,"2011-07-22T11:42:22-0500","MARY MAYNARD","2011-07-22T11:42:22-0500","MARY MAYNARD",,,241,242,0,0,242,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722123339P030098414561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRODUCTION SERVICES ASSOCIATES LLC WELFARE BENEFIT PLAN","501","2008-01-01","PRODUCTION SERVICES ASSOCIATES LLC",,,"485 E HALF DAY ROAD",,"BUFFALO GROVE","IL","60089",,,,,,,,,,,,,,,,,,"205698580","8474787630","323100","PRODUCTION SERVICES ASSOCIATES LLC",,"485 E HALF DAY ROAD",,"BUFFALO GROVE","IL","60089",,,,,,,"205698580","8474787630",,,,"2011-07-22T12:32:51-0500","LAURA J. RUBY",,,,,157,192,0,0,192,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722120324P040014912402001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ATCH-MONT GEAR CO., INC. 401K PSP","001","2000-01-01","ATCH- MONT GEAR CO., INC.",,,"65 INDUSTRIAL DRIVE",,"IVYLAND","PA","18974",,,,,,,"65 INDUSTRIAL DRIVE",,"IVYLAND","PA","18974",,,,,,,"232787249","2153555146","332700","ATCH- MONT GEAR CO., INC.",,"65 INDUSTRIAL DRIVE",,"IVYLAND","PA","18974",,,,,,,"232787249","2153555146",,,,"2011-07-22T12:01:36-0500","ALEX SHILSTUT",,,,,7,7,0,0,7,0,7,7,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722141430P030098478321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLUE RIDGE BANK & TRUST CO. PROFIT SHARING PLAN","001","1984-01-01","BLUE RIDGE BANK & TRUST CO.",,,"4200 LITTLE BLUE PARKWAY",,"INDEPENDENCE","MO","64057",,,,,,,,,,,,,,,,,,"431550520","8163585000","522110","BLUE RIDGE BANK & TRUST CO.",,"4200 LITTLE BLUE PARKWAY",,"INDEPENDENCE","MO","64057",,,,,,,"431550520","8163585000","BLUE RIDGE BANK AND TRUST CO.","430626318","001","2011-07-22T14:13:55-0500","MARK DUDLEY",,,,,236,188,0,51,239,0,239,189,2,,"2E2J2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722142423P030098485089001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"AVIDYNE HEALTH AND WELFARE PLAN","501","1997-06-01","AVIDYNE CORPORATION",,,"55 OLD BEDFORD ROAD",,"LINCOLN","MA","017731125",,,,,,,,,,,,,,,,,,"043213876","7814027448","334500","AVIDYNE CORPORATION",,"55 OLD BEDFORD ROAD",,"LINCOLN","MA","017731125",,,,,,,"043213876","7814027448",,,,"2011-07-22T14:19:49-0500","REED MALLECK",,,,,133,103,1,0,104,,104,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722171342P030014428178001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EAGLE FOUNDRY 401(K) & PROFIT SHARING PLAN","003","1985-01-01","EAGLE FOUNDRY CO",,,"P.O. BOX 250",,"EAGLE CREEK","OR","97022",,,,,,,"23123 SE EAGLE CREEK ROAD",,"EAGLE CREEK","OR","97022",,,,,,,"930634858","5036373048","331500","EAGLE FOUNDRY CO",,"P.O. BOX 250",,"EAGLE CREEK","OR","97022",,,,,,,"930634858","5036373048",,,,"2011-07-22T17:12:46-0500","DOUGLAS POSTLEWAITE",,,,,104,90,0,15,105,0,105,104,1,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110721232919P040455963504001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAN LUIS REY DOWNS RETIREMENT PLAN","001","1993-02-01","SAN LUIS REY DOWNS ENTERPRISES LLC",,,"5772 CAMINO DEL REY",,"BONSALL","CA","92003",,,,,,,"5772 CAMINO DEL REY",,"BONSALL","CA","92003",,,,,,,"330065286","7604143200","713900","SAN LUIS REY DOWNS ENTERPRISES LLC",,"5772 CAMINO DEL REY",,"BONSALL","CA","92003",,,,,,,"330065286","7604143200",,,,"2011-07-21T23:16:07-0500","WILLIAM THEAD",,,,,105,88,17,,105,2,107,56,,,"2G2J3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722054754P040014885714001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STEWART EFI, LLC WELFARE BENEFITS PLANS","501","2003-03-24","STEWART EFI, LLC",,,"45 OLD WATERBURY ROAD",,"THOMASTON","CT","06787",,,,,,,"45 OLD WATERBURY ROAD",,"THOMASTON","CT","06787",,,,,,,"710918038","8602838213","332810","STEWART EFI, LLC",,"45 OLD WATERBURY ROAD",,"THOMASTON","CT","06787",,,,,,,"710918038","8602838213",,,,"2011-07-21T10:07:22-0500","STEVEN STRANIERI",,,,,275,323,,,323,,,,,,,"4A4B4D4E4F4H4L4Q","1",,,,"1",,,,,,,,,"1","12",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722143014P040101281777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RIDGEVIEW INSTITUTE, INC. WELFARE BENEFIT PLAN","501","1985-10-01","RIDGEVIEW INSTITUTE, INC.",,,"3995 S COBB DRIVE SE",,"SMYRNA","GA","300806342",,,,,,,,,,,,,,,,,,"582077522","7704344567","624100","RIDGEVIEW INSTITUTE, INC.",,"3995 S COBB DRIVE SE",,"SMYRNA","GA","300806342",,,,,,,"582077522","7704344567",,,,"2011-07-22T14:18:43-0500","JERRY MAGNISON",,,,,217,273,,,273,,,,,,,"4A4B4D4E4H","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722144002P040101285073001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"NEVER WITHOUT, LLC 401K PROFIT SHARING PLAN","001","2006-01-01","NEVER WITHOUT, LLC",,,"950 JOSEPH E. LOWERY BLVD., NW","SUITE 17","ATLANTA","GA","30318",,,,,,,"950 JOSEPH E. LOWERY BLVD., NW","SUITE 17","ATLANTA","GA","30318",,,,,,,"204118722","4045773515","541800","NEVER WITHOUT, LLC",,"950 JOSEPH E. LOWERY BLVD., NW","SUITE 17","ATLANTA","GA","30318",,,,,,,"204118722","4045773515",,,,"2011-07-22T14:35:26-0500","MICHAEL COHEN",,,,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722144043P030014414866001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"AMARILLO ANESTHESIA CONSULTANTS, PA 401(K) PLAN","001","2010-01-01","AMARILLO ANESTHESIA CONSULTANTS, PA",,,"1000 SHILOH ROAD, SUITE 100",,"PLANO","TX","75074",,,,,,,,,,,,,,,,,,"752251516","9723129900","621111","AMARILLO ANESTHESIA CONSULTANTS, PA",,"1000 SHILOH ROAD, SUITE 100",,"PLANO","TX","75074",,,,,,,"752251516","9723129900",,,,"2011-07-22T14:40:19-0500","LOGAN LOWRY",,,,,24,24,0,0,24,0,24,19,0,,"2A2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722145947P030014417298001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HAMPSHIRE FIRE PROTECTION CO., INC. 401(K) PROFIT","001","1986-09-01","HAMPSHIRE FIRE PROTECTION",,,"8 NO. WENTWORTH AVE",,"LONDONDERRY","NH","03053",,,,,,,,,,,,,,,,,,"020341554","6034328221","238900","HAMPSHIRE FIRE PROTECTION",,"8 NO. WENTWORTH AVE",,"LONDONDERRY","NH","03053",,,,,,,"020341554","6034328221",,,,"2011-07-22T14:59:21-0500","LAWRENCE THIBODEAU","2011-07-22T14:59:21-0500","LAWRENCE THIBODEAU",,,82,65,0,9,74,0,74,69,0,,"2E2J2F2G2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110723125304P040101831409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ASARCO LONG-TERM DISABILITY","531","1995-07-01","ASARCO LLC",,,"5285 E. WILLIAMS CIRCLE, SUITE 2000",,"TUCSON","AZ","85711",,,,,,,,,,,,,,,,,,"810666284","5207987510","212200","ASARCO LLC",,"5285 E. WILLIAMS CIRCLE, SUITE 2000",,"TUCSON","AZ","85711",,,,,,,"810666284","5207987510",,,,"2011-07-18T17:22:04-0500","DARRELL SAWYER","2011-07-18T17:22:04-0500","DARRELL SAWYER",,,597,597,,,597,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722080426P030014377074001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE LONG ISLAND HOME LONG TERM DISABILITY PLAN","501","1978-07-01","THE LONG ISLAND HOME",,,"400 SUNRISE HIGHWAY",,"AMITYVILLE","NY","11701",,,,,,,,,,,,,,,,,,"112837244","6312644000","622000","THE LONG ISLAND HOME","PATRICIA PORTER","400 SUNRISE HIGHWAY",,"AMITYVILLE","NY","11701",,,,,,,"112837244","6312644000",,,,"2011-07-22T08:01:36-0500","PATRICIA PORTER, CFO","2011-07-22T08:01:36-0500","PATRICIA PORTER, CFO",,,206,205,0,0,205,,205,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722083217P030461146192001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DATASAVERS OF JACKSONVILLE RETIREMENT PLAN","001","1998-08-01","DATASAVERS OF JACKSONVILLE",,,"888 SUEMAC ROAD",,"JACKSONVILLE","FL","32254",,,,,,,,,,,,,,,,,,"592934736","9047865749","493100","DATASAVERS OF JACKSONVILLE",,"888 SUEMAC ROAD",,"JACKSONVILLE","FL","32254",,,,,,,"592934736","9047865749",,,,"2011-07-22T08:09:31-0500","CHARLENE J. SULLIVAN","2011-07-22T08:09:31-0500","CHARLENE J. SULLIVAN",,,24,18,0,2,20,0,20,20,0,,"2A2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722131827P030098445681001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"THE DON HUMMER TRUCKING CORPORATION 401(K) RETIREMENT PLAN","001","1994-07-01","THE DON HUMMER TRUCKING CORPORATION",,,"PO BOX 310",,"OXFORD","IA","523220310",,,,,,,,,,,,,,,,,,"421196060","3198282000","484120","THE DON HUMMER TRUCKING CORPORATION",,"PO BOX 310",,"OXFORD","IA","523220310",,,,,,,"421196060","3198282000",,,,"2011-07-22T13:14:41-0500","DENA BOELTER","2011-07-22T13:18:23-0500","DENA BOELTER",,,191,167,0,18,185,0,185,82,19,,"2E2F2G2J2K2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722164507P030462314448001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SHAHRIAR A NABIZADEH, MD, PA PROFIT SHARING PLAN","001","2001-01-01","SHAHRIAR NABIZADEH, MD, PA",,,"11512 LAKE MEAD AVE., STE. 601",,"JACKSONVILLE","FL","32256",,,,,,,,,,,,,,,,,,"593590543","9045651001","621111","SHAHRIAR NABIZADEH, MD, PA",,"11512 LAKE MEAD AVE., STE. 601",,"JACKSONVILLE","FL","32256",,,,,,,"593590543","9045651001",,,,"2011-07-20T13:52:43-0500","SHAHRIAR A NABIZADEH, MD",,,,,1,1,0,0,1,0,1,1,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722164917P030098569057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FLEXFUND","501","1990-01-10","CITIZENS STATE BANK",,,"102 W MAIN ST",,"LENA","IL","610489247",,,,,,,,,,,,,,,,,,"360918150","8153694524","522110","CITIZENS STATE BANK",,"102 W MAIN ST",,"LENA","IL","610489247",,,,,,,"360918150","8153694524",,,,"2011-07-22T16:38:15-0500","ANNE LYTLE",,,,,11,7,0,0,7,,,,,,,"4Q","0","0","1","1","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722110716P040101183681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEIMLA & ASSOCIATES, INC. MONEY PURCHASE PENSION PLAN","001","1984-01-01","STEIMLA & ASSOCIATES, INC.",,,"2867 GYPSUM CIRCLE",,"NAPERVILLE","IL","60564",,,,,,,"2867 GYPSUM CIRCLE",,"NAPERVILLE","IL","60564",,,,,,,"363268412","6309048480","541990","STEIMLA & ASSOCIATES, INC.",,"2867 GYPSUM CIRCLE",,"NAPERVILLE","IL","60564",,,,,,,"363268412","6309048480",,,,"2011-07-22T11:05:09-0500","JOSEPH STEIMLA",,,,,4,4,,,4,,4,4,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722133056P030098451297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CERRO WIRE LLC WELFARE BENEFIT PLAN","550","2010-01-01","CERRO WIRE LLC",,,"1099 THOMPSON RD SE",,"HARTSELLE","AL","35640",,,,,,,,,,,,,,,,,,"363205325","2567732522","335900","CERRO WIRE LLC",,"1099 THOMPSON RD SE",,"HARTSELLE","AL","35640",,,,,,,"363205325","2567732522",,,,"2011-07-22T13:30:27-0500","SHAWN DENNISON",,,,,306,314,34,0,348,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722134734P030002897139001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHAEL J. ROGERS, DDS, PC 401K PLAN","001","2007-01-01","MICHAEL J. ROGERS, DDS, PC",,,"1741 OLD TUSCULUM ROAD",,"GREENEVILLE","TN","377454308",,,,,,,,,,,,,,,,,,"621774416","4236387491","621210","MICHAEL J. ROGERS, DDS, PC",,"1741 OLD TUSCULUM ROAD",,"GREENEVILLE","TN","377454308",,,,,,,"621774416","4236387491",,,,"2011-07-22T13:46:41-0500","JANET E. ROGERS",,,,,13,11,0,2,13,0,13,13,0,,"2A2E2G2J2K",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722200337P040458406400001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLD FRONT DISTRIBUTION, LLC 401(K) PLAN","001","2001-01-01","COLD FRONT DISTRIBUTION, LLC",,,"5151 BANNOCK ST",,"DENVER","CO","802161850",,,,,,,,,,,,,,,,,,"841544561","3033212369","484200","COLD FRONT DISTRIBUTION, LLC",,"5151 BANNOCK ST",,"DENVER","CO","802161850",,,,,,,"841544561","3033212369",,,,"2011-07-22T13:00:32-0500","DAVID ROBERTS",,,,,183,196,0,6,202,0,202,69,2,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722153643P030098532209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AETRIUM SALARY SAVINGS PLAN","001","1990-04-01","AETRIUM INCORPORATED",,,"2350 HELEN ST N",,"ST PAUL","MN","551092942",,,,,,,,,,,,,,,,,,"411439182","6517702000","335900","AETRIUM INCORPORATED",,"2350 HELEN ST N",,"ST PAUL","MN","551092942",,,,,,,"411439182","6517702000",,,,"2011-07-22T15:36:38-0500","PAUL ASKEGAARD",,,,,121,66,0,47,113,0,113,108,1,,"2E2F2G2J2K2S2T3D3F3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722094754P040457101216001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDCOST LLC HEALTH AND DENTAL PLAN","501","1997-01-01","MEDCOST, LLC",,,"165 KIMEL PARK DRIVE",,"WINSTON-SALEM","NC","27103",,,,,,,,,,,,,,,,,,"561999192","3367603090","541600","MEDCOST, LLC",,"165 KIMEL PARK DRIVE",,"WINSTON-SALEM","NC","27103",,,,,,,"561999192","3367603090",,,,"2011-07-22T09:45:49-0500","JOEL GROCE",,,,,219,204,6,0,210,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722095605P030030869719001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARBLEHEAD BANK 401(K) RETIREMENT PLAN","002","1993-11-01","MARBLEHEAD BANK",,,"21 ATLANTIC AVENUE",,"MARBLEHEAD","MA","019453230",,,,,,,,,,,,,,,,,,"041580550","7816315500","522120","MARBLEHEAD BANK",,"21 ATLANTIC AVENUE",,"MARBLEHEAD","MA","019453230",,,,,,,"041580550","7816315500",,,,"2011-07-22T09:55:06-0500","MERRILL BELMER","2011-07-22T09:55:06-0500","MERRILL BELMER",,,60,40,0,15,55,0,55,55,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722122047P040101219153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACADEMIC INTERNATIONAL PRESS, INC. EMPLOYEES' PROFIT SHARING PLAN AND TRUST","001","1983-01-01","ACADEMIC INTERNATIONAL PRESS, INC.",,,"200 PENSACOLA BEACH ROAD, APT. F2",,"GULF BREEZE","FL","32561",,,,,,,"200 PENSACOLA BEACH ROAD, APT. F2",,"GULF BREEZE","FL","32561",,,,,,,"592251479","8509325479","511130","ACADEMIC INTERNATIONAL PRESS, INC.",,"200 PENSACOLA BEACH ROAD, APT. F2",,"GULF BREEZE","FL","32561",,,,,,,"592251479","8509325479",,,,"2011-07-22T12:19:52-0500","LONNIE SIMMONS",,,,,1,1,0,0,1,0,1,1,0,,"2A2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722140524P030098469953001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MARC GLASSMAN, INC. GROUP BENEFIT PLAN","501","1987-01-01","MARC GLASSMAN, INC.","MARC'S, XPECT DISCOUNTS","BETH WEINER, VP-CFO","5841 W. 130TH STREET",,"CLEVELAND","OH","44130",,,,,,,"5841 W. 130TH STREET",,"CLEVELAND","OH","44130",,,,,,,"341259106","2162657700","446110","MARC GLASSMAN, INC.","BETH WEINER, VP-CFO","5841 W. 130TH STREET",,"CLEVELAND","OH","44130",,,,,,,"341259106","2162657700",,,,"2011-07-22T14:04:35-0500","BETH WEINER",,,,,1666,1541,16,,1557,,1557,,,,,"4A4B4D4H4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722141041P040101273153001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"INSMED, INC. 401(K) PLAN AND TRUST","001","1996-01-01","INSMED, INC.",,,"11 DEER PARK DRIVE","SUITE 117","MONMOUTH JUNCTION","NJ","08852",,,,,,,"11 DEER PARK DRIVE","SUITE 117","MONMOUTH JUNCTION","NJ","08852",,,,,,,"541972729","7324389434","541990","INSMED, INC.",,"11 DEER PARK DRIVE","SUITE 117","MONMOUTH JUNCTION","NJ","08852",,,,,,,"541972729","7324389434",,,,"2011-07-22T14:10:04-0500","DEE GROSSO",,,,,54,9,0,40,49,0,49,44,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722141052P030014411650001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MENU FOODS, INC. 401(K) SAVINGS PLAN","001","1994-10-01","MENU FOODS MIDWEST CORP.",,,"1400 E. LOGAN",,"EMPORIA","KS","66801",,,,,,,"1400 E. LOGAN",,"EMPORIA","KS","66801",,,,,,,"742837363","6203421323","311110","MENU FOODS MIDWEST CORP.",,"1400 E. LOGAN",,"EMPORIA","KS","66801",,,,,,,"742837363","6203421323",,,,"2011-07-22T14:09:14-0500","SIDNEY SYMES",,,,,449,385,0,73,458,1,459,413,32,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722141700P030098480081001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"THE ADAMS EXPRESS COMPANY EMPLOYEE THRIFT PLAN","002","1966-01-01","THE ADAMS EXPRESS COMPANY",,,"7 SAINT PAUL ST",,"BALTIMORE","MD","212021626",,,,,,,,,,,,,,,,,,"134912740","4102302914","525990","THE ADAMS EXPRESS COMPANY",,"7 SAINT PAUL ST",,"BALTIMORE","MD","212021626",,,,,,,"134912740","4102302914",,,,"2011-07-22T14:16:59-0500","CHRISTY SLOAN","2011-07-22T14:16:59-0500","CHRISTY SLOAN",,,19,17,0,2,19,0,19,19,0,,"2E2F2G2J2K2T3I",,"1",,"1",,"1",,"1",,"0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722141721P040101276929001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PHOENIX AIRPORT FOOD SERVICES, INC. 401(K) PLAN","001","2000-01-01","PHOENIX AIRPORT FOOD SERVICES, INC. 401K PLAN",,,"3800 SKY HARBOR BLVD., T-4",,"PHOENIX","AZ","85034",,,,,,,,,,,,,,,,,,"860819769","6026810909","445291","BOYD FROST",,"5530 APPIAN WAY",,"SALT LAKE CITY","UT","841182309",,,,,,,"429747366","8014038602",,,,"2011-07-01T08:12:23-0500","BOYD FROST","2011-07-01T08:12:36-0500","NAVA THURAISINGAM",,,18,18,0,0,18,0,18,18,0,,"2E2G2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110724182944P040102531825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANCHOR BAY COMMUNICATIONS, INC., 401(K) PROFIT SHARING PLAN AND TRUST","001","1990-01-01","ANCHOR BAY COMMUNICATIONS, INC.",,,"9541 CYPRESS LAKE DRIVE","SUITE 3","FORT MYERS","FL","339194947",,,,,,,,,,,,,,,,,,"223014267","2394335354","423600","ANCHOR BAY COMMUNICATIONS, INC.",,"9541 CYPRESS LAKE DRIVE","SUITE 3","FORT MYERS","FL","339194947",,,,,,,"223014267","2394335354",,,,"2011-07-24T17:50:52-0500","ELLA BERNE","2011-07-24T17:50:52-0500","ELLA BERNE",,,2,2,0,0,2,0,2,2,0,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722100841P040101149729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MTEMC BLUECROSS BLUESHIELD EMPLOYEE HEALTH PLAN","501","1962-12-25","MIDDLE TENNESSEE ELECTRIC MEMBERSHIP CORPORATION",,"SHANNON KAPRIVE","555 NEW SALEM ROAD",,"MURFREESBORO","TN","37129",,,,,,,"555 NEW SALEM ROAD",,"MURFREESBORO","TN","37129",,,,,,,"620293472","6154941507","221100","MIDDLE TENNESSEE ELECTRIC MEMBERSHIP CORPORATION","SHANNON KAPRIVE","555 NEW SALEM ROAD",,"MURFREESBORO","TN","37129",,,,,,,"620293472","6154941507",,,,"2011-07-20T14:26:43-0500","SHANNON KAPRIVE","2011-07-22T10:06:52-0500","FRANK JENNINGS",,,417,373,40,,413,5,418,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722142609P030098485841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KEANE & SONS DRILLING CORPORATION 401(K) PLAN","002","2002-01-01","KEANE & SONS DRILLING CORP.",,,"101 KEANE LANE",,"LEWIS RUN","PA","16738",,,,,,,,,,,,,,,,,,"251881292","8143639380","211110","KEANE & SONS DRILLING CORP.",,"101 KEANE LANE",,"LEWIS RUN","PA","16738",,,,,,,"251881292","8143639380",,,,"2011-07-22T11:19:46-0500","WILLIAM REESE","2011-07-22T11:19:46-0500","WILLIAM REESE",,,65,62,1,18,81,0,81,66,0,,"2E2J3D2G2K2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722144208P030098498353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"USC MANAGEMENT COMPANY, LP HEALTH CARE BENEFITS PLAN","502","2000-08-01","USC MANAGEMENT COMPANY, LP",,,"2925 BRIARPARK DR., SUITE 1050",,"HOUSTON","TX","770423732",,,,,,,,,,,,,,,,,,"760608062","7134996200","327300","USC MANAGEMENT COMPANY, LP",,"2925 BRIARPARK DR., SUITE 1050",,"HOUSTON","TX","770423732",,,,,,,"760608062","7134996200",,,,"2011-07-22T14:41:58-0500","THERESA TOUCHETTE",,,,,770,1181,25,,1206,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722165114P030462325392001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CARL WARREN & CO. TAX SAVERS' FLEX PLAN","505","1991-01-01","CARL WARREN & CO.",,,"770 S. PLACENTIA AVENUE",,"PLACENTIA","CA","92870",,,,,,,,,,,,,,,,,,"952917562","7145725200","812990","CARL WARREN & CO.",,"770 S. PLACENTIA AVENUE",,"PLACENTIA","CA","92870",,,,,,,"952917562","7145725200",,,,"2011-07-22T16:37:32-0500","ALLISON DUNCAN","2011-07-22T16:43:04-0500","ALLISON DUNCAN",,,176,174,0,0,174,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722165535P040101345985010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LINDQUIST, VON HUSEN & JOYCE RETIREMENT PLAN","001","1989-09-01","LINDQUIST, VON HUSEN & JOYCE LLP",,,"90 NEW MONTGOMERY STREET, 11TH FL",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"941250261","4159579999","541211","LINDQUIST, VON HUSEN & JOYCE LLP",,"90 NEW MONTGOMERY STREET, 11TH FL",,"SAN FRANCISCO","CA","94105",,,,,,,"941250261","4159579999",,,,"2011-07-22T09:34:14-0500","MARK BRITTAIN",,,,,54,36,,14,50,,50,50,3,,"2E2H2J2K3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722160620P030098547857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOSEPH MURAT & ASSOCIATES, INC. PROFIT SHARING PLAN","002","1990-01-01","JOSEPH MURAT & ASSOCIATES, INC.",,,"525 EAST E STREET",,"WILMINGTON","CA","907445507",,,,,,,,,,,,,,,,,,"953524563","3105131228","541600","JOSEPH MURAT & ASSOCIATES, INC.",,"525 EAST E STREET",,"WILMINGTON","CA","907445507",,,,,,,"953524563","3105131228",,,,"2011-07-22T16:03:44-0500","SUSAN MURAT",,,,,4,3,0,0,3,1,4,4,0,,"2A2E3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722080741P040101084545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SERVICESOURCE INC DENTAL LIFE ACCIDENTAL DEATH & DISMEMBERMENT AND LONG TERM DISABILITY PLAN","502","1997-05-01","SERVICESOURCE INC",,,"6295 EDSALL ROAD SUITE 175",,"ALEXANDRIA","VA","22312",,,,,,,,,,,,,,,,,,"540901256","7034616000","624310","SERVICESOURCE INC",,"6295 EDSALL ROAD SUITE 175",,"ALEXANDRIA","VA","22312",,,,,,,"540901256","7034616000",,,,"2011-07-22T07:52:07-0500","CHALLIE DUNN","2011-07-11T10:20:27-0500","THOMAS CHANG",,,1241,1187,12,0,1199,,,,,,,"4B4D4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722082603P040031709239001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHERN CO. SERVICES INC. SEPARATION PAY PLAN","509","1986-05-01","SOUTHERN COMPANY SERVICES, INC.",,,"30 IVAN ALLEN JR BLVD NW","BIN SC900","ATLANTA","GA","303083003",,,,,,,,,,,,,,,,,,"630274273","6786237619","812990","RETIREMENT BOARD OF SOUTHERN COMPANY SERVICES, INC.",,"30 IVAN ALLEN JR BLVD NW SCM00",,"ATLANTA","GA","303083055",,,,,,,"136044157","6786237619",,,,"2011-07-22T08:16:41-0500","TIM FALLAW",,,,,109,106,0,0,106,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722104714P030461455824001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHWAL & PLATT PROFIT SHARING PLAN AND TRUST","002","1985-01-01","SHWAL & PLATT",,,"767 3RD AVE FL 23",,"NEW YORK","NY","100179006",,,,,,,"767 3RD AVE FL 23",,"NEW YORK","NY","100179006",,,,,,,"133315461","2123323311","541110","SHWAL & PLATT",,"767 3RD AVE FL 23",,"NEW YORK","NY","100179006",,,,,,,"133315461","2123323311",,,,"2011-07-22T10:30:19-0500","MYRA PLATT",,,,,3,3,0,0,3,0,3,3,0,,"2A2E3B3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722105951P030014392418001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"ALEXIS, INC. 401(K) PLAN","001","2007-12-15","ALEXIS, INC.",,,"10 SOUTH CODY COURT",,"LAKEWOOD","CO","80226",,,,,,,,,,,,,,,,,,"352318849","3032330921","442291","ALEXIS, INC.",,"10 SOUTH CODY COURT",,"LAKEWOOD","CO","80226",,,,,,,"352318849","3032330921",,,,"2011-07-22T10:59:24-0500","CHARLES LANE","2011-07-22T10:59:24-0500","CHARLES LANE",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110722102355P040014902546001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CENTERSTATE BANKS, INC. EMPLOYEES SAVINGS TRUST","001","2000-07-01","CENTERSTATE BANKS, INC.",,,"42745 US HIGHWAY 27",,"DAVENPORT","FL","33837",,,,,,,,,,,,,,,,,,"593606741","8634197750","522110","CENTERSTATE BANKS, INC.",,"42745 US HIGHWAY 27",,"DAVENPORT","FL","33837",,,,,,,"593606741","8634197750",,,,"2011-07-22T10:10:33-0500","JAMES J. ANTAL",,,,,455,489,0,23,512,0,512,313,5,,"2E2F2G2J2K3H3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110722103735P040014904018001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RUBIN & RUBIN PC - PROFIT SHARING PLAN","001","1984-12-11","RUBIN & RUBIN PC",,,"8404 GEORGIA AVENUE",,"SILVER SPRING","MD","20910",,,,,,,"8404 GEORGIA AVENUE",,"SILVER SPRING","MD","20910",,,,,,,"521274385","3015853822","541110","RUBIN & RUBIN PC",,"8404 GEORGIA AVENUE",,"SILVER SPRING","MD","20910",,,,,,,"521274385","3015853822",,,,"2011-07-22T10:35:40-0500","LAWRENCE RUBIN",,,,,3,3,0,0,3,,3,3,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-22","Filed with authorized/valid electronic signature",, "20110721155645P040100716785001","2003-03-01","2004-02-29","2",,"0","0","0","0","0","0","0","1","0",,"TARANTINO PROPERTIES, INC. LIFE PLAN","501","1998-03-01","TARANTINO PROPERTIES, INC.",,,"7887 SAN FELIPE, SUITE 237",,"HOUSTON","TX","77573",,,,,,,,,,,,,,,,,,"742128773","7139744292","531390","TARANTINO PROPERTIES, INC.",,"7887 SAN FELIPE, SUITE 237",,"HOUSTON","TX","77573",,,,,,,"742128773","7139744292",,,,"2011-07-21T15:55:28-0500","TODD WITMER",,,,,159,129,0,0,129,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721161638P040455139088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRILL CONCEPTS, INC. WELFARE BENEFITS PLAN","501","1995-01-01","GRILL CONCEPTS, INC.",,,"6300 CANOGA AVE. STE 1700",,"WOODLAND HILLS","CA","91367",,,,,,,"6300 CANOGA AVE. STE 1700",,"WOODLAND HILLS","CA","91367",,,,,,,"133319172","8182517000","722110","GRILL CONCEPTS, INC.",,"6300 CANOGA AVE. STE 1700",,"WOODLAND HILLS","CA","91367",,,,,,,"133319172","8182517000",,,,"2011-07-21T16:11:02-0500","CHRISTOPHER GEHRKE",,,,,270,237,4,0,241,,241,,,,,"4A4B4D4H4L","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721134529P030097785329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PLYMOUTH MANOR CARE CENTER 401(K) PLAN","001","1998-01-01","PLYMOUTH MANOR CARE CENTER",,,"954 7TH AVENUE SE",,"LEMARS","IA","510312693",,,,,,,,,,,,,,,,,,"420988417","7125467831","623000","PLYMOUTH MANOR CARE CENTER",,"954 7TH AVENUE SE",,"LEMARS","IA","510312693",,,,,,,"420988417","7125467831",,,,"2011-07-21T13:44:34-0500","COLEEN DELFS",,,,,66,53,0,4,57,0,57,13,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721154816P030014317026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICHAEL D. VOEGELI, D.D.S., PC PROFIT SHARING PLAN","002","1995-01-01","MICHAEL D. VOEGELI, D.D.S., PC","MICHAEL D. VOEGELI, D.D.S., PC",,"7601 W. IRVING PARK RD. SUITE 101",,"CHICAGO","IL","60634",,,,,,,"7601 W. IRVING PARK RD. SUITE 101",,"CHICAGO","IL","60634",,,,,,,"364016273","7735899003","621210","MICHAEL D. VOEGELI, D.D.S., PC",,"7601 W. IRVING PARK RD. SUITE 101",,"CHICAGO","IL","60634",,,,,,,"364016273","7735899003",,,,"2011-07-21T15:47:57-0500","MICHAEL D. VOEGELI",,,,,2,2,0,0,2,0,2,2,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725101629P040102917825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FOLEY HOAG LLP SAVINGS AND RETIREMENT PLAN","003","1987-01-01","FOLEY HOAG LLP",,,"155 SEAPORT BOULEVARD",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"042150535","6178321000","541110","FOLEY HOAG LLP",,"155 SEAPORT BOULEVARD",,"BOSTON","MA","02210",,,,,,,"042150535","6178321000",,,,"2011-07-25T10:15:45-0500","TERESA MARTLAND","2011-07-25T10:15:45-0500","TERESA MARTLAND",,,676,433,0,226,659,0,659,616,31,,"2E2F2G3B",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110724085511P030099473073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CSN, LLC GROUP LIFE INSURANCE PLAN","502","2007-01-01","COMPANHIA SIDERURGICA NACIONAL, LLC",,,"455 WEST INDUSTRIAL DRIVE",,"TERRE HAUTE","IN","47802",,,,,,,,,,,,,,,,,,"522328027","8122994157","331200","COMPANHIA SIDERURGICA NACIONAL, LLC",,"455 WEST INDUSTRIAL DRIVE",,"TERRE HAUTE","IN","47802",,,,,,,"522328027","8122994157",,,,"2011-07-22T07:23:52-0500","DAWN DEPASSE","2011-07-22T07:23:52-0500","DAWN DEPASSE",,,204,201,0,0,201,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721105128P030097653617001","2010-01-01","2010-12-31","2",,"0",,"0","0","1",,,,,,"NIKKEI CONCERNS 403(B) PLAN","002","2004-10-01","NIKKEI CONCERNS",,,"1601 E YESLER WAY",,"SEATTLE","WA","981225640",,,,,,,,,,,,,,,,,,"510172382","2067266506","813000","NIKKEI CONCERNS",,"1601 E YESLER WAY",,"SEATTLE","WA","981225640",,,,,,,"510172382","2067266506",,,,"2011-07-21T10:51:23-0500","CLAUDIA OBANION","2011-07-21T10:51:23-0500","CLAUDIA OBANION",,,318,255,0,62,317,0,317,288,36,,"2F2G2L2M2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721142253P040100651361001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FIDELITY MANAGEMENT TRUST COMPANY, TRUSTEE FOR NORTHWEST FAMILY DENTISTRY PROFIT SHARING PLAN","001","1992-12-09","NORTHWEST FAMILY DENTISTRY",,"ANDREW WONG","1507 WEST 18TH STREET",,"HOUSTON","TX","77008",,,,,,,,,,,,,,,,,,"760344349","7138617078","621210","NORTHWEST FAMILY DENTISTRY","ANDREW WONG","1507 WEST 18TH STREET",,"HOUSTON","TX","77008",,,,,,,"760344349","7138617078",,,,"2011-07-21T09:13:43-0500","ANDREW WONG",,,,,5,5,,,5,,5,5,,,"2E2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721143819P030097820305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMD SERONO, INC. CONSOLIDATED WELFARE BENEFITS PLAN","501","1978-11-01","EMD SERONO, INC.",,,"ONE TECHNOLOGY PLACE",,"ROCKLAND","MA","02370",,,,,,,,,,,,,,,,,,"061040874","7819829000","325410","EMD SERONO, INC.",,"ONE TECHNOLOGY PLACE",,"ROCKLAND","MA","02370",,,,,,,"061040874","7819829000",,,,"2011-07-21T14:38:00-0500","MICHELLE FREEMAN","2011-07-21T14:38:00-0500","MICHELLE FREEMAN",,,1086,1147,20,0,1167,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","11","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721145303P040454941088001","2008-08-01","2009-07-31","2",,"0",,"0","0","0","0","0","1","0",,"RECOVERY MANAGEMENT CORPORATION HEALTH CARE PLAN","502","2002-08-01","RECOVERY MANAGEMENT CORPORATION",,,"13900 E. 35TH STREET",,"INDEPENDENCE","MO","64055",,,,,,,"13900 E. 35TH STREET",,"INDEPENDENCE","MO","64055",,,,,,,"431578603","8162529666","423990","RECOVERY MANAGEMENT CORPORATION",,"13900 E. 35TH STREET",,"INDEPENDENCE","MO","64055",,,,,,,"431578603","8162529666",,,,"2011-07-21T14:51:12-0500","GLEN DAVIS",,,,,212,171,,,171,,171,,,,,"4A4B4F4H","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721150021P040454960416004","2010-01-01","2010-12-31","2",,,,,,"1",,,,,,"HOLLY A CARLIN PS 401K PLAN TRUST","001","2004-12-21","HOLLY A CARLIN CPA",,"HOLLY A CARLIN","1912 SIDEWINDER DR 211A",,"PARK CITY","UT","84060",,,,,,,,,,,,,,,,,,"870663354","4356490909","541211","HOLLY A CARLIN CPA","HOLLY A. CARLIN","1912 SIDEWINDER DR 211A",,"PARK CITY","UT","84060",,,,,,,"870663354","4356490909",,,,"2011-07-21T14:38:31-0500","HOLLY A CARLIN",,,,,2,2,,,2,,2,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725084545P040464754144001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOS ALTOS TECHNOLOGIES NC INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","LOS ALTOS TECHNOLOGIES NC INC",,,"135 PARKWAY OFFICE COURT # 205",,"CARY","NC","27518",,,,,,,,,,,,,,,,,,"562211676","9195731494","541519","LOS ALTOS TECHNOLOGIES NC INC",,"135 PARKWAY OFFICE COURT # 205",,"CARY","NC","27518",,,,,,,"562211676","9195731494",,,,"2011-07-25T08:45:42-0500","LOS ALTOS TECHNOLOGIES NC INC",,,,,0,3,0,0,3,0,3,3,0,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110721114035P030458668032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PACCAR INC SAVINGS INVESTMENT PLAN","002","1955-01-01","PACCAR INC",,,"777 106TH AVENUE NE",,"BELLEVUE","WA","98004",,,,,,,"777 106TH AVENUE NE",,"BELLEVUE","WA","98004",,,,,,,"910351110","4254687440","336100","PACCAR INC",,"777 106TH AVE NE",,"BELLEVUE","WA","98004",,,,,,,"910351110","4254687440",,,,"2011-07-21T11:37:32-0500","SUE ELDE",,,,,8762,7823,23,963,8809,22,8831,6388,0,,"2E2F2H2J2K2O3I",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721144503P040454920624001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PERSONAL ACCIDENT INSURANCE","544","1992-01-01","KAYSER-ROTH CORP",,,"102 CORPORATE CENTER BLVD.",,"GREENSBORO","NC","27408",,,,,,,,,,,,,,,,,,"942974014","3368522030","315100","KAYSER-ROTH CORPORATION ADMINISTRATIVE COMMITTEE",,"102 CORPORATE CENTER BLVD.",,"GREENSBORO","NC","27408",,,,,,,"942974014","3368522030",,,,"2011-07-21T14:44:43-0500","TODD HOWARD",,,,,718,0,0,0,0,,,,,,,"4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725101118P040102914529006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GREINER BIO-ONE NORTH AMERICA, INC.","501","1998-01-01","GREINER BIO-ONE NORTH AMERICA, INC.",,,"4238 CAPITAL DRIVE",,"MONROE","NC","28110",,,,,,,,,,,,,,,,,,"522041193","7042617800","339110","GREINER BIO-ONE NORTH AMERICA, INC.",,"4238 CAPITAL DRIVE",,"MONROE","NC","28110",,,,,,,"522041193","7042617800",,,,"2011-07-15T06:07:37-0500","ERIC MCINNIS",,,,,243,482,,,482,,,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110721131623P040014818850001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARGOTEC HOLDING, INC. GROUP HEALTH & WELFARE PLAN","501","2009-01-01","CARGOTEC HOLDING, INC.",,,"415 E. DUNDEE",,"OTTAWA","KS","66067",,,,,,,,,,,,,,,,,,"581730881","7852297124","336990","CARGOTEC HOLDING, INC.",,"415 E. DUNDEE",,"OTTAWA","KS","66067",,,,,,,"581730881","7852297124",,,,"2011-07-21T13:11:47-0500","ROBERT WILLS",,,,,593,593,0,0,593,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721131651P030458894032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ST. ANN'S HOME MEDICAL PLAN","504","1995-01-01","ST. ANNS HOME FOR THE AGED",,,"1500 PORTLAND AVENUE",,"ROCHESTER","NY","14621",,,,,,,,,,,,,,,,,,"160743146","5855446000","623000","ST. ANNS HOME FOR THE AGED",,"1500 PORTLAND AVENUE",,"ROCHESTER","NY","14621",,,,,,,"160743146","5855446000",,,,"2011-07-21T13:15:53-0500","WILLIAM REMIZOWSKI",,,,,457,454,2,0,456,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721140846P030097800273001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"PERFECT DELIVERY, INC. RETIREMENT SAVINGS PLAN","001","2001-05-07","PERFECT DELIVERY, INC.",,,"355 WOODRUFF RD STE 406",,"GREENVILLE","SC","296073481",,,,,,,,,,,,,,,,,,"570959058","8646277272","445299","PERFECT DELIVERY, INC.",,"355 WOODRUFF RD STE 406",,"GREENVILLE","SC","296073481",,,,,,,"570959058","8646277272","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-07-21T14:08:42-0500","ELIZABETH BORDELON","2011-07-21T14:08:42-0500","ELIZABETH BORDELON",,,211,179,0,1,180,0,180,56,38,,"2E2F2G2J2K2T3D",,"1",,,,"1",,,,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721133130P030097776785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUFF, POOLE & MAHONEY, P.C. 401(K) PLAN","001","1990-09-01","HUFF, POOLE & MAHONEY, P.C.",,,"4705 COLUMBUS STREET, SUITE 100",,"VIRGINIA BEACH","VA","234626749",,,,,,,,,,,,,,,,,,"541414013","7574991841","541110","HUFF, POOLE & MAHONEY, P.C.",,"4705 COLUMBUS STREET, SUITE 100",,"VIRGINIA BEACH","VA","234626749",,,,,,,"541414013","7574991841",,,,"2011-07-21T13:30:59-0500","M TODD GERBER","2011-07-21T13:30:59-0500","M TODD GERBER",,,85,64,0,18,82,0,82,80,1,,"2E2J2K2F2G3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721155856P030002807748001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE REAVES AGENCY 401(K) PROFIT SHARING PLAN","001","1984-01-01","THE REAVES AGENCY",,,"1401 NORTH CENTRAL EXPRESSWAY","SUITE 230","RICHMOND","TX","75080",,,,,,,,,,,,,,,,,,"752091115","9726692435","524210","THE REAVES AGENCY",,"1401 NORTH CENTRAL EXPRESSWAY","SUITE 230","RICHMOND","TX","75080",,,,,,,"752091115","9726692435",,,,"2011-07-21T15:57:02-0500","JACK REAVES",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725094412P030100085153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WALKER DENTAL PLAN","505","2001-01-01","WALKER PARKING CONSULTANTS/ENGINEERS INC.",,"RISE LANDEROS","2121 HUDSON AVE",,"KALAMAZOO","MI","49008",,,,,,,"2121 HUDSON AVE",,"KALAMAZOO","MI","49008",,,,,,,"381782774","2693816080","541330","WALKER PARKING CONSULTANTS/ENGINEERS INC.","RISE LANDEROS","2121 HUDSON AVE",,"KALAMAZOO","MI","49008",,,,,,,"381782774","2693816080",,,,"2011-07-22T15:43:30-0500","RISE LANDEROS",,,,,180,147,,,147,,147,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110724114534P040102362625001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SHELDON LIPPMAN PHYSICIAN PC 401(K) PLAN","001","2005-01-01","SHELDON LIPPMAN PHYSICIAN PC",,,"1 DEERING LANE",,"EAST ROCKAWAY","NY","11518",,,,,,,,,,,,,,,,,,"562476759","7183391238","621111","SHELDON LIPPMAN PHYSICIAN PC",,"1 DEERING LANE",,"EAST ROCKAWAY","NY","11518",,,,,,,"562476759","7183391238",,,,"2011-07-24T12:45:08-0500","SHELDON LIPPMAN",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-24","Filed with authorized/valid electronic signature",, "20110721133948P030015979590001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NCMIC GROUP INC RETIREMENT SAVINGS PLAN","001","1991-01-01","NCMIC GROUP INC",,,"14001 UNIVERSITY AVENUE",,"CLIVE","IA","503258258",,,,,,,,,,,,,,,,,,"421469363","8003217015","551112","NCMIC GROUP INC",,"14001 UNIVERSITY AVENUE",,"CLIVE","IA","503258258",,,,,,,"421469363","8003217015",,,,"2011-07-21T13:39:43-0500","JUDY BOHROFEN",,,,,229,198,0,35,233,0,233,222,7,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721140848P030097800321001","2010-10-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"STARKIST CO. HEALTH & WELFARE BENEFITS PLAN","501","2008-10-01","STARKIST CO.",,,"225 NORTH SHORE DRIVE","SUITE 400","PITTSBURGH","PA","15212",,,,,,,,,,,,,,,,,,"262883016","4123237476","311710","STARKIST CO.",,"225 NORTH SHORE DRIVE","SUITE 400","PITTSBURGH","PA","15212",,,,,,,"262883016","4123237476",,,,"2011-07-21T14:08:29-0500","SALLY MUELLER",,,,,1578,1628,2,0,1630,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721141104P040454827968001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ROCKFORD MANUFACTURING COMPANY EMPLOYEE BENEFIT PLAN","502","1998-07-01","ROCKFORD MANUFACTURING COMPANY",,"T MARK LUND","3901 LITTLE RIVER ROAD",,"ROCKFORD","TN","37853",,,,,,,"3901 LITTLE RIVER ROAD",,"ROCKFORD","TN","37853",,,,,,,"620342620","8659703131","314000","ROCKFORD MANUFACTURING COMPANY","T MARK LUND","3901 LITTLE RIVER ROAD",,"ROCKFORD","TN","37853",,,,,,,"620342620","8659703131",,,,"2011-07-21T14:10:47-0500","MARK LUND",,,,,227,188,35,,223,,223,,,,,"4A4D",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721134726P030097786625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PITTSBURGH ASSOCIATES RETIREMENT SAVINGS PLAN","003","1989-01-01","PITTSBURGH ASSOCIATES",,,"115 FEDERAL STREET",,"PITTSBURGH","PA","15212",,,,,,,"PNC PARK AT NORTH SHORE",,"PITTSBURGH","PA","15212",,,,,,,"251512457","4123254451","711210","JAMES D. PLAKE",,"PNC PARK AT NORTH SHORE",,"PITTSBURGH","PA","15212",,,,,,,"251310143","4123254451",,,,"2011-07-21T13:19:01-0500","DINEEN RUNKEY","2011-07-21T13:19:01-0500","JAMES PLAKE",,,272,251,0,36,287,1,288,209,1,,"2G2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721135533P030458994688001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SEVERANCE TRUCKING CO EE SAVINGS PLAN","001","1972-01-02","SEVERANCE TRUCKING CO., INC.",,,"49 MCGRATH ROAD",,"DRACUT","MA","018262838",,,,,,,,,,,,,,,,,,"042154554","8002251111","484110","SEVERANCE TRUCKING CO., INC.",,"49 MCGRATH ROAD",,"DRACUT","MA","018262838",,,,,,,"042154554","8002251111",,,,"2011-07-21T13:54:54-0500","KATHRYN BOYD",,,,,89,74,0,17,91,0,91,68,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721220754P030098025553001","2010-08-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"CWD LLC HEALTH PLAN","501","2006-08-01","CWD, LLC","CENTRIC PARTS, STOPTECH, POWESLOT, WDSOURCE.COM","ESTELLE COHEN","21046 S FIGUEROA ST., UNIT B",,"CARSON","CA","90745",,,,,,,"21046 S FIGUEROA ST., UNIT B",,"CARSON","CA","90745",,,,,,,"912015832","3102181082","423100","CWD, LLC","ESTELLE COHEN","21046 S FIGUEROA ST., UNIT B",,"CARSON","CA","90745",,,,,,,"912015832","3102181082",,,,"2011-07-21T22:07:32-0500","ESTELLE COHEN",,,,,207,231,,,231,,231,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725085654P030008452261001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PECKHAM INDUSTRIES, INC GROUP DENTAL & VISION PLAN","502","2003-02-01","PECKHAM INDUSTRIES, INC",,,"20 HAARLEM AVENUE",,"WHITE PLAINS","NY","10603",,,,,,,"20 HAARLEM AVENUE",,"WHITE PLAINS","NY","10603",,,,,,,"131724577","9149492000","237310","PECKHAM INDUSTRIES, INC",,"20 HAARLEM AVENUE",,"WHITE PLAINS","NY","10603",,,,,,,"131724577","9149492000",,,,"2011-07-14T14:46:11-0500","RICHARD ANTES",,,,,296,295,,,295,,295,,,,,"4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725095547P030008454901009","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"ROBERT H. SILBERMAN PROFIT SHARING PLAN","001","1985-12-27","ROBERT H. SILBERMAN, P.A.",,,"5873 ALLENTOWN ROAD",,"CAMP SPRINGS","MD","20746",,,,,,,,,,,,,,,,,,"521250686","3014233430","541110","ROBERT H. SILBERMAN, P.A.",,"5873 ALLENTOWN ROAD",,"CAMP SPRINGS","MD","20746",,,,,,,"521250686","3014233430",,,,"2011-07-19T11:34:05-0500","ROBERT H. SILBERMAN","2011-07-19T11:34:05-0500","ROBERT H. SILBERMAN, P.A.","2011-07-19T11:34:05-0500","AARON BLOOM",3,3,,,3,,3,3,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110724152505P030099631121001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","0","0","0","0",,"MELVIN J. KALISH DAVID LERNER ASSOCIATES PROFIT SHARING PLAN","009","2002-12-20","MELVIN J. KALISH",,,"114 OLD COUNTRY ROAD",,"MINEOLA","NY","11501",,,,,,,"114 OLD COUNTRY ROAD",,"MINEOLA","NY","11501",,,,,,,"133109733","5167463000","541110","MELVIN J. KALISH",,"114 OLD COUNTRY ROAD",,"MINEOLA","NY","11501",,,,,,,"133109733","5167463000",,,,"2011-07-24T12:38:02-0500","MELVIN KALISH",,,,,3,3,0,0,3,0,3,3,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-24","Filed with authorized/valid electronic signature",, "20110721112157P030458622144005","2010-09-01","2011-05-31","2",,,,"1","1",,,,,,,"FACENDINI TILE CO., INC. EMPLOYEE PROFIT SHARING P","001","1976-01-15","FACENDINI TILE CO. INC.",,,"129 TOWNVIEW DRIVE",,"WENTZVILLE","MO","633852922",,,,,,,,,,,,,,,,,,"430993067","6364410122","238300","FACENDINI TILE CO. INC.",,"129 TOWNVIEW DRIVE",,"WENTZVILLE","MO","633852922",,,,,,,"430993067","6364410122",,,,"2011-07-31T06:08:49-0500","GARY FACENDINI",,,,,2,2,,,2,,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721113018P040100527185007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SHAPIRO & SHAPIRO EMPLOYEES PROFIT SHARING & 401K PLAN","001","1997-01-01","SHAPIRO & SHAPIRO CPA PA",,,"30 TECHNOLOGY DRIVE",,"WARREN","NJ","07059",,,,,,,,,,,,,,,,,,"222468659","9082223770","541211","SHAPIRO & SHAPIRO CPA PA",,"30 TECHNOLOGY DRIVE",,"WARREN","NJ","07059",,,,,,,"222468659","9082223770",,,,"2011-07-21T11:13:06-0500","ROBERT SHAPIRO",,,,,7,5,,,5,,5,7,,,"2J2G2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721144815P040014834962001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"KAYSER-ROTH CORP TN PPO CARITEN HEALTHCARE","549","2004-01-01","KAYSER-ROTH CORPORATION",,,"102 CORPORATE CENTER BLVD.",,"GREENSBORO","NC","274083172",,,,,,,,,,,,,,,,,,"942974014","3368522030","315100","KAYSER-ROTH CORPORATION",,"102 CORPORATE CENTER BLVD.",,"GREENSBORO","NC","274083172",,,,,,,"942974014","3368522030",,,,"2011-07-21T14:47:51-0500","TODD HOWARD",,,,,0,0,0,0,0,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721153050P040014839330001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PER MAR SECURITY RESEARCH CORP MEDICAL INSURANCE PLAN","502","1983-09-01","PER MAR SECURITY RESEARCH CORP",,,"1910 EAST KIMBERLY ROAD",,"DAVENPORT","IA","52807",,,,,,,,,,,,,,,,,,"420818682","5633593200","561600","PER MAR SECURITY RESEARCH CORP",,"1910 EAST KIMBERLY ROAD",,"DAVENPORT","IA","52807",,,,,,,"420818682","5633593200",,,,"2011-07-21T15:19:36-0500","DEAN GUYETTE",,,,,280,0,0,0,0,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721180401P030459601552001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE GAS STOP PROFIT SHARING PLAN","001","1970-01-01","THE GAS STOP",,,"1011 BUENOS AVENUE, SUITE D",,"SAN DIEGO","CA","92110",,,,,,,,,,,,,,,,,,"952464849","6192751084","447100","THE GAS STOP",,"1011 BUENOS AVENUE, SUITE D",,"SAN DIEGO","CA","92110",,,,,,,"952464849","6192751084",,,,"2011-07-21T18:03:55-0500","ROBERTDEES2",,,,,5,3,0,1,4,0,4,4,0,,"2E2F2H2R3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725094508P030100085649007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HUGH C. NABERS, JR. M.D. PROFIT SHARING PLAN","001","1986-08-01","HUGH C. NABERS, JR., M.D.",,,"1215 7TH STREET, SE, SUITE 190",,"DECATUR","AL","35601",,,,,,,,,,,,,,,,,,"630938912","2563539899","621111","HUGH C. NABERS, JR., M.D.",,"1215 7TH STREET, SE, SUITE 190",,"DECATUR","AL","35601",,,,,,,"630938912","2563539899",,,,"2011-07-11T15:14:50-0500","HUGH C. NABERS, JR.","2011-07-11T15:15:01-0500","HUGH C. NABERS, JR.",,,3,0,0,0,0,0,0,3,,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725061512P030099998609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AAA AUTO CLUB SOUTH INC. EMPLOYEES GROUP INSURANCE PLAN","505","1977-04-12","AAA AUTO CLUB SOUTH, INC.",,,"1515 N. WESTSHORE BOULEVARD",,"TAMPA","FL","33607",,,,,,,,,,,,,,,,,,"590475480","8132895900","812990","AAA AUTO CLUB SOUTH, INC.",,"1515 N. WESTSHORE BOULEVARD",,"TAMPA","FL","33607",,,,,,,"590475480","8132895900",,,,"2011-07-25T06:14:35-0500","ROBERT A. MCKEE","2011-07-25T06:14:35-0500","LEIGH ANN TUCKER",,,2928,2809,162,0,2971,0,2971,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","1","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725090359P040102875185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPRAYING SYSTEMS CO GROUP MEDICAL PLAN","503","1976-12-01","SPRAYING SYSTEMS CO",,,"P O BOX 7900",,"WHEATON","IL","601877901",,,,,,,"NORTH AVE AT SCHMALE",,"WHEATON","IL","601877901",,,,,,,"361922920","6306655000","332900","SPRAYING SYSTEMS CO",,"P O BOX 7900",,"WHEATON","IL","601877901",,,,,,,"361922920","6306655000",,,,"2011-07-25T09:00:58-0500","JAMES YEHLING",,,,,862,829,0,0,829,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110721121639P030014292418001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CMS ACQUISITION, INC. 401K PLAN","001","2009-03-25","CMS ACQUISITION, INC.",,,"1900 PLEASANT HILL ROAD",,"GREER","SC","29651",,,,,,,,,,,,,,,,,,"264346956","8646169941","423400","CMS ACQUISITION, INC.",,"1900 PLEASANT HILL ROAD",,"GREER","SC","29651",,,,,,,"264346956","8646169941",,,,"2011-07-21T12:16:06-0500","MICHAEL CAMPBELL","2011-07-21T12:16:06-0500","MICHAEL CAMPBELL",,,2,4,0,0,4,0,4,4,0,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721130745P030097756769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VONAGE HOLDINGS CORP. EMPLOYEE BENEFITS PROGRAM","501","2002-03-01","VONAGE HOLDINGS CORP.",,,"23 MAIN STREET",,"HOLMDEL","NJ","07733",,,,,,,,,,,,,,,,,,"113547680","7325282600","517000","VONAGE HOLDINGS CORP.",,"23 MAIN STREET",,"HOLMDEL","NJ","07733",,,,,,,"113547680","7325282600",,,,"2011-07-21T13:07:20-0500","MICHAEL PORTA",,,,,1238,1126,0,0,1126,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721132732P030014298962001","2005-04-01","2006-03-31","2",,"0","1","0","0","0","1","0","0","0",,"BUSINESS LOAN EXPRESS, LLC HEALTH PROTECTION PLAN","501","2001-04-01","BUSINESS LOAN EXPRESS, LLC",,,"ONE INDEPENDENCE POINTE","SUITE 102","GREENVILLE","SC","29615",,,,,,,,,,,,,,,,,,"133568801","8647514465","522298","BUSINESS LOAN EXPRESS, LLC",,"ONE INDEPENDENCE POINTE","SUITE 102","GREENVILLE","SC","29615",,,,,,,"133568801","8647514465",,,,"2011-07-21T12:47:18-0500","NIKKI BENNETT","2011-07-21T12:47:18-0500","NIKKI BENNETT",,,229,249,0,0,249,,,,,,,"4A4D4F4H4Q","1",,"1","1","1",,"1","1",,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725100727P030014646658001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE DERRYFIELD SCHOOL DEFINED CONTRIBUTION PLAN","001","1968-10-25","THE DERRYFIELD SCHOOL",,,"2108 RIVER ROAD",,"MANCHESTER","NH","03104",,,,,,,,,,,,,,,,,,"020265542","6036694524","611000","THE DERRYFIELD SCHOOL",,"2108 RIVER ROAD",,"MANCHESTER","NH","03104",,,,,,,"020265542","6036694524",,,,"2011-07-25T10:00:11-0500","LYNNE WAGNER",,,,,216,98,15,93,206,0,206,183,0,,"2F2G2L",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725092429P040015172018001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KEYSER MALONEY & WINNER, LLP PROFIT SHARING PLAN","001","2002-10-01","KEYSER MALONEY & WINNER, LLP",,,"150 LAKE STREET",,"ELMIRA","NY","14901",,,,,,,,,,,,,,,,,,"020646014","6077340990","541110","KEYSER MALONEY & WINNER, LLP",,"150 LAKE STREET",,"ELMIRA","NY","14901",,,,,,,"020646014","6077340990",,,,"2011-07-18T09:58:25-0500","JOHN MALONEY","2011-07-25T09:23:28-0500","JOHN MALONEY",,,16,12,0,3,15,0,15,15,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725075019P040102831393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHNSTON, ALLISON & HORD, P.A. RETIREMENT PLAN","001","1988-01-01","JOHNSTON, ALLISON & HORD, P.A.",,,"1065 EAST MOREHEAD STREET",,"CHARLOTTE","NC","28204",,,,,,,,,,,,,,,,,,"561803693","7043321181","541110","JOHNSTON, ALLISON & HORD, P.A.",,"1065 EAST MOREHEAD STREET",,"CHARLOTTE","NC","28204",,,,,,,"561803693","7043321181",,,,"2011-07-25T07:49:57-0500","JOSEPH SHEALY","2011-07-25T07:49:57-0500","JOSEPH SHEALY",,,89,79,0,8,87,0,87,87,1,,"2A2E2F2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725081028P030100035425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PILTZ WILLIAMS LAROSA & CO. 401(K) PROFIT SHARING PLAN","001","1995-01-01","PILTZ, WILLIAMS, LAROSA & CO.",,,"1077 TOMMY MUNRO DR",,"BILOXI","MS","39532",,,,,,,,,,,,,,,,,,"640767137","2283744141","541211","PILTZ, WILLIAMS, LAROSA & CO.",,"1077 TOMMY MUNRO DR",,"BILOXI","MS","39532",,,,,,,"640767137","2283744141",,,,"2011-07-25T08:08:47-0500","MARGARET D. CLOSSON",,,,,26,24,0,5,29,0,29,29,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725090403P040464795328001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPRAYING SYSTEMS TRAVEL ACCIDENT/INSURANCE PLAN","504","1967-01-29","SPRAYING SYSTEMS CO","NORTH AVE AT SCHMALE",,"P O BOX 7900",,"WHEATON","IL","601877901",,,,,,,,,,,,,,,,,,"361922920","6306655000","332900","SPRAYING SYSTEMS CO",,"P O BOX 7900",,"WHEATON","IL","601877901",,,,,,,"361922920","6306655000",,,,"2011-07-25T09:00:58-0500","JAMES YEHLING",,,,,867,845,,,845,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110721100959P040014799634001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOSHINO USA, INC. TAX SAVINGS PLAN","501","1992-03-01","HOSHINO USA, INC.",,,"1726 WINCHESTER ROAD",,"BENSALEM","PA","190204542",,,,,,,,,,,,,,,,,,"231646753","2156388670","339900","HOSHINO USA, INC.",,"1726 WINCHESTER ROAD",,"BENSALEM","PA","190204542",,,,,,,"231646753","2156388670",,,,"2011-07-21T10:09:13-0500","DIANE MURASKY",,,,,119,109,1,0,110,,,,,,,"4A4B4D4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721134926P030458979744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERITRADE ONLINE HOLDINGS CORPORATION GROUP MEDICAL PLAN","501","1978-01-01","AMERITRADE ONLINE HOLDINGS CORPORATION",,,"4211 SOUTH 102ND STREET",,"OMAHA","NE","68127",,,,,,,,,,,,,,,,,,"470642657","4025746537","523120","AMERITRADE ONLINE HOLDINGS CORPORATION",,"4211 SOUTH 102ND STREET",,"OMAHA","NE","68127",,,,,,,"470642657","4025746537",,,,"2011-07-21T13:48:58-0500","DONALD WINTERS",,,,,5338,5281,137,0,5418,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721154353P030014316514001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRANSPORT SYSTEMS OF HAWAII, INC PACIFIC EXPRESS INC. 401(K) PLAN","001","2006-01-01","PACIFIC EXPRESS, INC.",,,"1150 SAND ISLAND PKWY",,"HONOLULU","HI","96819",,,,,,,,,,,,,,,,,,"990106339","8088459595","484110","PACIFIC EXPRESS, INC.",,"1150 SAND ISLAND PKWY",,"HONOLULU","HI","96819",,,,,,,"990106339","8088459595",,,,"2011-07-21T15:43:01-0500","AMY NIITANI",,,,,28,17,0,4,21,0,21,21,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721164858P030459437408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ELIOT N. MOSTOW, M.D. PROFIT SHARING PLAN","001","1994-01-01","ELIOT N. MOSTOW, M.D.",,,"157 WEST CEDAR ST.",,"AKRON","OH","44307",,,,,,,,,,,,,,,,,,"341741758","3305357100","621111","ELIOT N. MOSTOW, M.D.",,"157 WEST CEDAR ST.",,"AKRON","OH","44307",,,,,,,"341741758","3305357100",,,,"2011-07-21T16:48:39-0500","MICHELLE MOSTOW",,,,,26,15,0,5,20,0,20,19,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721170445P040100752465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OCONNELL PENSION CONSULTING, INC. DEFINED BENEFIT PENSION PLAN","002","2007-01-01","OCONNELL PENSION CONSULTING, INC.",,,"PO BOX 689",,"EUGENE","OR","974400689",,,,,,,,,,,,,,,,,,"412064284","5413387631","524290","OCONNELL PENSION CONSULTING, INC.",,"PO BOX 689",,"EUGENE","OR","974400689",,,,,,,"412064284","5413387631",,,,"2011-07-21T17:02:51-0500","GWEN O'CONNELL",,,,,2,2,0,0,2,0,2,0,0,,"1A",,"0","0","1","0","0","0","1","0","0","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721143537P040100661345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HPSI PURCHASING SERVICES OF OHIO 401(K) PLAN","001","2008-01-01","HPSI PURCHASING SERVICES OF OHIO",,,"204 BRUCE CT",,"CLAYTON","OH","45315",,,,,,,,,,,,,,,,,,"562531798","9374150527","423400","HPSI PURCHASING SERVICES OF OHIO",,"251 ASHBROOK RD.",,"DAYTON","OH","45415",,,,,,,"562531798","6143182200",,,,"2011-07-21T14:35:36-0500","CHRISTOPHER A. BACK",,,,,3,3,0,0,3,0,3,3,0,,"2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721162227P040455151712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CIVIL SOLUTIONS RETIREMENT PLAN","001","2004-01-01","CIVIL ENGINEERING SOLUTIONS INC",,,"590 E STREET",,"LINCOLN","CA","956480000",,,,,,,,,,,,,,,,,,"710965542","9165637300","541330","CIVIL ENGINEERING SOLUTIONS INC",,"590 E STREET",,"LINCOLN","CA","956480000",,,,,,,"710965542","9165637300",,,,"2011-07-21T16:22:15-0500","PENSION FILERS",,,,,20,6,0,13,19,0,19,18,0,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721162416P030097884625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"D.J. CLARK, INC. ACCIDENT PROTECTION PLAN","501","1994-01-01","D.J. CLARK, INC.",,,"601 10TH STREET",,"KEMAH","TX","77565",,,,,,,,,,,,,,,,,,"760002801","2813346575","722210","D.J. CLARK, INC.",,"601 10TH STREET",,"KEMAH","TX","77565",,,,,,,"760002801","2813346575",,,,"2011-07-21T16:23:16-0500","DON CLARK","2011-07-21T16:23:16-0500","DON CLARK",,,616,607,0,0,607,,,,,,,"4A4D4E4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721150331P030097835313007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SPENCO GROUP LIFE PLAN","531","1979-02-01","SPENCO MEDICAL CORPORATION",,,"P.O. BOX 2501",,"WACO","TX","76702",,,,,,,,,,,,,,,,,,"870274699","2547726000","339900","SPENCO MEDICAL CORPORATION",,"P.O. BOX 2501",,"WACO","TX","76702",,,,,,,"870274699","2547726000",,,,"2011-07-21T09:50:19-0500","EUNETA JONES","2011-07-21T09:50:19-0500","PATTY SMITH",,,109,114,,,114,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721144142P040014833570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MON YOUGH COMMUNITY SERVICES, INC. 403(B) RETIREMENT PLAN","001","1971-05-01","MON YOUGH COMMUNITY SERVICES, INC.",,,"500 WALNUT STREET",,"MCKEESPORT","PA","15132",,,,,,,,,,,,,,,,,,"251202461","4126758526","624200","MON YOUGH COMMUNITY SERVICES, INC.",,"500 WALNUT STREET",,"MCKEESPORT","PA","15132",,,,,,,"251202461","4126758526",,,,"2011-07-21T14:41:40-0500","NOREEN FREDERICK",,,,,389,356,0,36,392,0,392,211,,,"2E2G2J2K2M3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721124826P040454585120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMN SERVICES HEALTHCARE PROFESSIONAL HEALTH AND WELFARE BENEFIT PLAN","501","1990-12-01","AMN SERVICES",,,"12400 HIGH BLUFF DRIVE",,"SAN DIEGO","CA","92130",,,,,,,,,,,,,,,,,,"561708641","8587920711","621900","AMN SERVICES",,"12400 HIGH BLUFF DRIVE",,"SAN DIEGO","CA","92130",,,,,,,"561708641","8587920711",,,,"2011-07-21T12:45:45-0500","MARIA MAYO",,,,,2215,2583,225,0,2808,,,,,,,"4A4B4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721173305P030097914257001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GREAT LAKES CHEESE CO., INC. 401K PLAN & TRUST","003","2007-07-01","GREAT LAKES CHEESE CO., INC.",,,"17825 GREAT LAKES PKY","PO BOX 1806","HIRAM","OH","442341806",,,,,,,,,,,,,,,,,,"341015620","4408342500","311500","GREAT LAKES CHEESE CO., INC.",,"17825 GREAT LAKES PKY","PO BOX 1806","HIRAM","OH","442341806",,,,,,,"341015620","4408342500",,,,"2011-07-21T06:32:51-0500","RUSSELL MULLINS",,,,,1857,1826,0,44,1870,0,1870,1522,0,,"2F2G2J3H2E2S2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721153456P030015990742001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THE MENS WEARHOUSE, INC. FLEXIBLE BENEFITS ACCOUNT PLAN","501","1989-02-01","THE MENS WEARHOUSE, INC.",,,"6380 ROGERDALE",,"HOUSTON","TX","770721624",,,,,,,,,,,,,,,,,,"741790172","2817767000","448110","THE MENS WEARHOUSE, INC.",,"6380 ROGERDALE",,"HOUSTON","TX","770721624",,,,,,,"741790172","2817767000",,,,"2011-07-21T15:34:24-0500","DIANA M. WILSON","2011-07-21T15:34:24-0500","CLAUDIA A. PRUITT",,,491,480,0,0,480,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725092646P040102887137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE PLAN FOR CAMCO FINANCIAL CORPORATION","505","1994-01-01","CAMCO FINANCIAL CORPORATION",,,"6901 GLEN HIGHWAY",,"CAMBRIDGE","OH","43725",,,,,,,"6901 GLEN HIGHWAY",,"CAMBRIDGE","OH","43725",,,,,,,"510110823","7404325641","522120","CAMCO FINANCIAL CORPORATION",,"6901 GLEN HIGHWAY",,"CAMBRIDGE","OH","43725",,,,,,,"510110823","7404325641",,,,"2011-07-25T09:23:21-0500","JAMES CHUGG",,,,,230,226,0,0,226,,226,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725081908P040003107811001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHARLESTON RADIOLOGISTS, PA 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","CHARLESTON RADIOLOGISTS, PA",,,"1241 WOODLAND AVENUE",,"MT PLEASANT","SC","29464",,,,,,,,,,,,,,,,,,"570634747","8438240606","621111","SOUTHEASTERN PENSION SERVICES, LLC.",,"11 ISABELLA STREET SUITE A",,"CHARLESTON","SC","29403",,,,,,,"331060067","8438535248",,,,"2011-07-25T08:19:06-0500","CLARENCE W. PATE",,,,,44,44,0,0,44,0,44,44,0,,"2E2J2K2F2G2R3D2H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110721133749P030458949584001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LAUREL MARKETING AND DESIGN 401(K) RETIREMENT SAVINGS PLAN","001","1995-01-01","LEMPUGH, INC. DBA LAUREL MARKETING",,,"14409 GREENVIEW DRIVE",,"LAUREL","MD","207083293",,,,,,,,,,,,,,,,,,"521056576","3014986656","541400","LEMPUGH, INC. DBA LAUREL MARKETING",,"14409 GREENVIEW DRIVE",,"LAUREL","MD","207083293",,,,,,,"521056576","3014986656",,,,"2011-07-21T13:37:20-0500","SARAH PUGH","2011-07-21T13:37:20-0500","SARAH PUGH",,,20,16,0,2,18,0,18,18,0,,"2E2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721135859P030097795041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE WASHINGTON SAVINGS BANK HEALTH & WELFARE BENEFITS PLAN","501","1995-01-01","THE WASHINGTON SAVINGS BANK",,,"4201 MITCHELLVILLE ROAD, SUITE 502",,"BOWIE","MD","20716",,,,,,,,,,,,,,,,,,"521271169","3013523130","522130","THE WASHINGTON SAVINGS BANK",,"4201 MITCHELLVILLE ROAD, SUITE 502",,"BOWIE","MD","20716",,,,,,,"521271169","3013523130",,,,"2011-07-21T13:58:24-0500","BILL WALKER, VP OF HR","2011-07-21T13:58:24-0500","BILL WALKER, VP OF HR",,,129,102,1,0,103,,,,,,,"4A4B4D4E4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721151724P040455001552001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"BUSINESS TRAVEL & ACCIDENT","507","1990-02-01","KAYSER-ROTH CORPORATION",,,"102 CORPORATE CENTER BLVD.",,"GREENSBORO","NC","27408",,,,,,,,,,,,,,,,,,"942974014","3368522030","315100","KAYSER-ROTH CORPORATION ADMINISTRATIVE COMMITTEE",,"102 CORPORATE CENTER BLVD.",,"GREENSBORO","NC","27408",,,,,,,"942974014","3368522030",,,,"2011-07-21T15:16:08-0500","TODD HOWARD",,,,,1416,0,0,0,0,,,,,,,"4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725092730P040102887345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DECARO, DORAN, SICILIANO, GALLAGHER & DEBLASIS, LLP 401(K) PROFIT SHARING PLAN","001","1993-01-01","DECARO, DORAN, SICILIANO, GALLAGHER & DEBLASIS, LLP",,,"17251 MELFORD BLVD. , STE 200",,"BOWIE","MD","207154435",,,,,,,,,,,,,,,,,,"521800374","3013524950","541110","DECARO, DORAN, SICILIANO, GALLAGHER & DEBLASIS, LLP",,"17251 MELFORD BLVD. , STE 200",,"BOWIE","MD","207154435",,,,,,,"521800374","3013524950",,,,"2011-07-25T09:25:39-0500","ALAN R. SICILIANO","2011-07-25T09:25:39-0500","THOMAS L. DORAN",,,51,45,0,9,54,0,54,52,10,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725083611P030100048145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHFIELD CORPORATION GROUP HEALTH PLAN","501","1977-01-01","SOUTHFIELD CORPORATION",,,"C/O DAVID J. WEBSTER","8995 W. 95TH STREET","PALOS HILLS","IL","60465",,,,,,,,,,,,,,,,,,"362368188","6303205600","444190","SOUTHFIELD CORPORATION",,"C/O DAVID J. WEBSTER","8995 W. 95TH STREET","PALOS HILLS","IL","60465",,,,,,,"362368188","6303205600",,,,"2011-07-25T08:35:34-0500","DAVID WEBSTER",,,,,138,89,9,9,107,,,,,,,"4A4B4D4F4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725093606P030002942243001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL FFA ORGANIZATION GROUP LIFE & DISABILITY PLAN","504","1999-09-01","NATIONAL FFA ORGANIZATION",,,"P.O. BOX 68960",,"INDIANAPOLIS","IN","46268",,,,,,,"SAME",,"INDIANAPOLIS","IN","46268",,,,,,,"540524844","3178024211","813000","NATIONAL FFA ORGANIZATION",,"P.O. BOX 68960",,"INDIANAPOLIS","IN","46268",,,,,,,"540524844","3178024211",,,,"2011-07-25T09:34:34-0500","PAT FAUST",,,,,134,138,,,138,,,,,,,"4B4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110721140555P030097798849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOSPICE AUSTIN BASIC LIFE/AD&D PLAN","501","2004-01-01","HOSPICE AUSTIN",,,"4107 SPICEWOOD SPRINGS ROAD","SUITE 100","AUSTIN","TX","787598645",,,,,,,,,,,,,,,,,,"742200596","5123424767","621610","HOSPICE AUSTIN",,"4107 SPICEWOOD SPRINGS ROAD","SUITE 100","AUSTIN","TX","787598645",,,,,,,"742200596","5123424767",,,,"2011-07-21T14:02:44-0500","MARJORIE MULANAX",,,,,144,147,0,0,147,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725100048P030100095521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLACK HILLS DERMATOLOGY CENTRE, PC RETIREMENT PLAN","001","2003-01-01","BLACK HILLS DERMATOLOGY CENTRE, PC",,,"7236 JORDAN DR, SUITE 101",,"RAPID CITY","SD","57701",,,,,,,,,,,,,,,,,,"460461314","6053415565","621111","BLACK HILLS DERMATOLOGY CENTRE, PC",,"7236 JORDAN DR, SUITE 101",,"RAPID CITY","SD","57701",,,,,,,"460461314","6053415565",,,,"2011-07-25T09:59:09-0500","VASSILIA YOUNG",,,,,33,28,0,6,34,0,34,34,1,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110721104953P030097652977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICRO AIRE SURGICAL INSTRUMENTS LIFE","510","1995-04-01","MICRO AIRE SURGICAL INSTRUMENTS",,,"1641 EDLICH DRIVE",,"CHARLOTTESVILE","VA","22911",,,,,,,"1641 EDLICH DRIVE",,"CHARLOTTESVILE","VA","22911",,,,,,,"753086908","4349758305","339110","MICRO AIRE SURGICAL INSTRUMENTS",,"1641 EDLICH DRIVE",,"CHARLOTTESVILE","VA","22911",,,,,,,"753086908","4349758305",,,,"2011-07-21T09:52:51-0500","MELISSA PAYTON",,,,,117,121,,,121,,121,,,,,"4B4F","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721111036P030458584640001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN EXPRESS HEALTHCARE REIMBURSEMENT PLAN","512","1986-01-01","AMERICAN EXPRESS COMPANY AND ITS PARTICIPATING SUBSIDIARIES",,,"AMERICAN EXPRESS TOWER",,"NEW YORK","NY","10285",,,,,,,"WORLD FINANCIAL CENTER",,"NEW YORK","NY","10285",,,,,,,"134922250","2126402000","522298","EMPLOYEE BENEFITS ADMINISTRATION COMMITTEE",,"WORLD FINANCIAL CENTER",,"NEW YORK","NY","10285",,,,,,,"133538458","2126402000",,,,"2011-07-20T09:47:17-0500","JAMES DWYER",,,,,1339,809,,,809,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721142011P030097806785001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"ST. CHARLES HEALTH SYSTEM RETIREMENT PLAN","001","1969-11-01","ST. CHARLES HEALTH SYSTEM",,,"2500 NE NEFF RD",,"BEND","OR","977014279",,,,,,,,,,,,,,,,,,"930602940","5413824321","622000","ST. CHARLES HEALTH SYSTEM",,"2500 NE NEFF RD",,"BEND","OR","977014279",,,,,,,"930602940","5413824321",,,,"2011-07-21T14:18:51-0500","KAREN M SHEPARD",,,,,3215,3129,7,308,3444,2,3446,2549,79,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721162724P030097886369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADELMAN TRAVEL SYSTEMS, INC. PROFIT SHARING 401(K) PLAN","001","1987-01-01","ADELMAN TRAVEL SYSTEMS, INC.",,,"6980 NORTH PORT WASHINGTON ROAD",,"MILWAUKEE","WI","53217",,,,,,,,,,,,,,,,,,"592247604","4143527600","561500","ADELMAN TRAVEL SYSTEMS, INC.",,"6980 NORTH PORT WASHINGTON ROAD",,"MILWAUKEE","WI","53217",,,,,,,"592247604","4143527600",,,,"2011-07-21T16:27:07-0500","MICHELLE DE WITT BUGAJSKI",,,,,191,170,0,23,193,0,193,189,7,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721191416P030097954513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHORT TERM DISABILITY PLAN FOR GRAY PLANT MOOTY MOOTY AND BENNETT PA","506","1973-11-01","GRAY PLANT MOOTY MOOTY AND BENNETT PA",,,"500 IDS CENTER, 80 SOUTH 8TH STREET",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"411411978","6126323000","541110","GRAY PLANT MOOTY MOOTY AND BENNETT PA",,"500 IDS CENTER, 80 SOUTH 8TH STREET",,"MINNEAPOLIS","MN","55402",,,,,,,"411411978","6126323000",,,,"2011-07-21T19:13:15-0500","JOHN M. NICHOLS",,,,,170,158,0,0,158,,,,,,,"4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721191429P030097954609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRAY PLANT MOOTY MOOTY AND BENNETT PA EMPLOYEE ASSISTANCE PROGRAM","512","1981-01-01","GRAY PLANT MOOTY MOOTY AND BENNETT PA",,,"500 IDS CENTER, 80 SOUTH 8TH STREET",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"411411978","6126323000","541110","GRAY PLANT MOOTY MOOTY AND BENNETT PA",,"500 IDS CENTER, 80 SOUTH 8TH STREET",,"MINNEAPOLIS","MN","55402",,,,,,,"411411978","6126323000",,,,"2011-07-21T19:14:24-0500","JOHN M. NICHOLS",,,,,359,335,0,0,335,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725100915P040102913617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLAUSMAN & ASSOCIATES PROFIT SHARING PLAN","001","1992-12-22","CLAUSMAN & ASSOCIATES, PC",,,"1980 EAST 116TH STREET","SUITE 105","CARMEL","IN","46032",,,,,,,"1980 EAST 116TH STREET","SUITE 105","CARMEL","IN","46032",,,,,,,"352061934","3178443110","541211","CLAUSMAN & ASSOCIATES, PC",,"1980 EAST 116TH STREET","SUITE 105","CARMEL","IN","46032",,,,,,,"352061934","3178443110",,,,"2011-07-25T10:07:11-0500","JOSEPH CLAUSMAN",,,,,2,2,0,0,2,0,2,,0,,"3B3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725064654P030031388871001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LINDE MATERIAL HANDLING N. AMERICA CORP. HEALTH CARE PLAN","501","2008-01-01","LINDE MATERIAL HANDLING N. AMERICA CORP",,,"2450 W. 5TH NORTH STREET",,"SUMMERVILLE","SC","294839621",,,,,,,,,,,,,,,,,,"571075851","8438758347","333900","LINDE MATERIAL HANDLING N. AMERICA CORP",,"2450 W. 5TH NORTH STREET",,"SUMMERVILLE","SC","294839621",,,,,,,"571075851","8438758347",,,,"2011-07-25T06:46:39-0500","MARTY WHITE",,,,,102,98,1,0,99,,,,,,,"4A4R","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725080753P040102840865004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LATITUDE CORP. BENEFIT PLAN","502","1999-07-01","LATITUDE CORP.",,,"PO BOX 930340","1003 AMERICAN WAY","VERONA","WI","53593",,,,,,,,,,,,,,,,,,"363714613","6088452600","331400","LATITUDE CORP.",,"PO BOX 930340","1003 AMERICAN WAY","VERONA","WI","53593",,,,,,,"363714613","6088452600",,,,"2011-06-27T10:18:41-0500","TOBIN RUHDE",,,,,99,120,,,120,,,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725080753P040102840865005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GRIFFIN BEVERAGE COMPANY 401(K) PLAN","001","1974-08-01","GRIFFIN BEVERAGE COMPANY",,,"1901 DAM ROAD",,"WEST BRANCH","MI","48661",,,,,,,"1901 DAM ROAD",,"WEST BRANCH","MI","48661",,,,,,,"381861506","9893450540","424800","GRIFFIN BEVERAGE COMPANY",,"1901 DAM ROAD",,"WEST BRANCH","MI","48661",,,,,,,"381861506","9893450540",,,,"2011-07-19T08:45:34-0500","GARY SANCARTIER","2011-07-19T08:45:34-0500","GARY SANCARTIER",,,189,197,,18,215,,215,131,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721112641P030097677217001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PARALLEL DATA SYSTEMS, INC. PROFIT SHARING PLAN","002","2000-01-01","PARALLEL DATA SYSTEMS, INC.",,,"2500 CITYWEST BLVD., SUITE 2000",,"HOUSTON","TX","77042",,,,,,,"2500 CITYWEST BLVD., SUITE 2000",,"HOUSTON","TX","77042",,,,,,,"752723281","7138602100","541360","PARALLEL DATA SYSTEMS, INC.",,"2500 CITYWEST BLVD., SUITE 2000",,"HOUSTON","TX","77042",,,,,,,"752723281","7138602100",,,,"2011-07-21T11:13:58-0500","CANDACE GRIMM",,,,,8,8,0,0,8,0,8,8,0,,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721120800P030097707681001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CENTRAL DECAL COMPANY, INC. SAVINGS PLAN","001","1986-02-01","CENTRAL DECAL COMPANY, INC.",,,"6901 HIGH GROVE BLVD",,"BURR RIDGE","IL","60527",,,,,,,,,,,,,,,,,,"362663242","6302148781","323100","CENTRAL DECAL COMPANY, INC.",,"6901 HIGH GROVE BLVD",,"BURR RIDGE","IL","60527",,,,,,,"362663242","6302148781",,,,"2011-07-21T12:07:15-0500","JENNIFER LOCONTE",,,,,62,39,0,8,47,0,47,47,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721114546P030458680416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MYSTIC MEDICAL GROUP INC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","MYSTIC MEDICAL GROUP",,,"170 GOVERNORS AVE.",,"MEDFORD","MA","02155",,,,,,,,,,,,,,,,,,"270000855","7813910801","621111","MYSTIC MEDICAL GROUP",,"170 GOVERNORS AVE.",,"MEDFORD","MA","02155",,,,,,,"270000855","7813910801",,,,"2011-07-21T11:45:43-0500","MYSTIC MEDICAL GROUP",,,,,0,4,0,0,4,0,4,4,0,,"2T2G3D2E2J2R",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721145120P030097828753001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"SFI OF OHIO PROFIT SHARING 401(K) PLAN FOR UNION E","005","2009-02-01","SFI OF OHIO, LLC",,,"2722 WEST TUCKER DRIVE",,"SOUTH BEND","IN","46624",,,,,,,,,,,,,,,,,,"261512513","5742365114","332900","SFI OF OHIO, LLC",,"2722 WEST TUCKER DRIVE",,"SOUTH BEND","IN","46624",,,,,,,"261512513","5742365114","SFI OF OHIO, LLC","261512513","005","2011-07-21T14:50:41-0500","MR. RICH KING","2011-07-21T14:50:41-0500","MR. RICH KING",,,70,72,0,1,73,0,73,41,4,,"2E2J2A2F2G2K2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721152742P040100700929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN FORM RETIREMENT PLAN","001","1996-11-01","AMERICAN FORM CORP.",,,"513 WINTHROP STREET","ROUTE 44","REHOBOTH","MA","027691205",,,,,,,,,,,,,,,,,,"042998531","5083366063","238100","AMERICAN FORM CORP.",,"513 WINTHROP STREET","ROUTE 44","REHOBOTH","MA","027691205",,,,,,,"042998531","5083366063",,,,"2011-07-21T15:22:39-0500","LEONARD MILLS",,,,,3,2,0,1,3,0,3,0,0,,"2E2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721153610P040455043264001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"APPLESHINE CAR WASH & LUBE 401(K) PLAN","001","2008-01-01","F & L CLEANING SYSTEMS, INC.",,,"4992 ADAIRSVILLE ROAD NW",,"ADAIRSVILLE","GA","30103",,,,,,,,,,,,,,,,,,"582361123","7066297575","811190","F & L CLEANING SYSTEMS, INC.",,"4992 ADAIRSVILLE ROAD NW",,"ADAIRSVILLE","GA","30103",,,,,,,"582361123","7066297575",,,,"2011-07-21T15:35:29-0500","FAYE DARBY","2011-07-21T15:35:29-0500","FAYE DARBY",,,13,0,,,0,,0,0,0,,"2E2J3D2K2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721192101P040100806001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FOOT AND ANKLE CENTERS 401(K) PLAN","001","1999-01-01","CENTERS FOR FOOT AND ANKLE SURGERY, LTD.",,,"654 WEST VETERANS PARKWAY, SUITE D",,"YORKVILLE","IL","60560",,,,,,,,,,,,,,,,,,"363856184","6305539300","621111","CENTERS FOR FOOT AND ANKLE SURGERY, LTD.",,"654 WEST VETERANS PARKWAY, SUITE D",,"YORKVILLE","IL","60560",,,,,,,"363856184","6305539300",,,,"2011-07-21T19:14:57-0500","DINA RAPPETTE",,,,,15,12,0,3,15,0,15,13,2,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110725093726P030469136176001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENVIROCHEM, INC. PROFIT-SHARING PLAN","001","1980-01-01","ENVIROCHEM, INC.",,,"425 WHITEHEAD AVE",,"SOUTH RIVER","NJ","08882",,,,,,,,,,,,,,,,,,"222051993","7322386700","325600","ENVIROCHEM, INC.",,"425 WHITEHEAD AVE",,"SOUTH RIVER","NJ","08882",,,,,,,"222051993","7322386700",,,,"2011-07-25T09:28:06-0500","DEBORAH GILDERSLEEVE","2011-07-25T09:28:06-0500","DEBORAH GILDERSLEEVE",,,12,13,0,0,13,0,13,13,0,,"2A2E2F2G2J2K2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721135236P030014303138001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"PARAMONT MFG LLC RETIREMENT PLAN","001","1999-12-01","PARAMONT MFG LLC",,,"18259 WESTINGHOUSE RD",,"ABINGDON","VA","242107931",,,,,,,,,,,,,,,,,,"581897721","2766281173","326100","PARAMONT MFG LLC",,"18259 WESTINGHOUSE RD",,"ABINGDON","VA","242107931",,,,,,,"581897721","2766281173",,,,"2011-07-21T13:52:31-0500","JAMES BROWN","2011-07-21T13:52:31-0500","JAMES BROWN",,,132,125,0,7,132,0,132,130,0,,"2E2F2G2J2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721151224P030097840513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICROTRACE LLC PROFIT-SHARING PLAN","001","2003-02-12","MICROTRACE, LLC",,,"3100 84TH LANE NE","SUITE A","MINNEAPOLIS","MN","55449",,,,,,,,,,,,,,,,,,"421575278","7637849725","339900","MICROTRACE, LLC",,"3100 84TH LANE NE","SUITE A","MINNEAPOLIS","MN","55449",,,,,,,"421575278","7637849725",,,,"2011-07-21T15:11:50-0500","BRIAN BROGGER",,,,,9,9,0,0,9,0,9,3,0,,"2E2G2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721151248P030097840721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PECK'S MARKET, INC. FLEXIBLE BENEFIT PLAN","502","1996-01-01","PECK'S MARKET, INC.",,,"120 KIRK ROAD",,"NARROWSBURG","NY","12764",,,,,,,"120 KIRK ROAD",,"NARROWSBURG","NY","12764",,,,,,,"141550547","8452523091","445110","PECK'S MARKET, INC.",,"120 KIRK ROAD",,"NARROWSBURG","NY","12764",,,,,,,"141550547","8452523091",,,,"2011-07-21T15:11:44-0500","LEE REIMER",,,,,126,109,2,,111,,111,,,,,"4A4D4B4F","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721151300P040454992272001","2010-06-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"LIBERTY EDUCATIONAL MINISTRIES INCORPORATED HRA BENEFIT PLAN","501","2010-06-01","LIBERTY EDUCATIONAL MINISTRIES INCORPORATED DBA LI",,,"1301 SOUTH HIGHWAY 377",,"ARGYLE","TX","76226",,,,,,,,,,,,,,,,,,"752316143","9402942111","611000","LIBERTY EDUCATIONAL MINISTRIES INCORPORATED DBA LI",,"1301 SOUTH HIGHWAY 377",,"ARGYLE","TX","76226",,,,,,,"752316143","9402942111",,,,"2011-07-21T14:53:20-0500","CIELITA SPAIN","2011-07-21T15:12:12-0500","MELLISA MASTEN",,,152,156,0,0,156,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720213052P030456995328001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RYAN GROCERY & PROCESSING PROFIT SHARING PENSION PLAN","001","1991-01-01","RYAN GROCERY & PROCESSING INC",,,"PO BOX 349",,"JORDAN","MT","59337",,,,,,,"300 MAIN STREET",,"JORDAN","MT","59337",,,,,,,"810480550","4065572744","445110","RYAN GROCERY & PROCESSING INC",,"PO BOX 349",,"JORDAN","MT","59337",,,,,,,"810480550","4065572744",,,,"2011-07-20T21:30:18-0500","ELLEN ELLIS",,,,,13,16,0,1,17,0,17,17,0,,"2E",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720181155P040014735634001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AEM, INC. 401(K) SAVINGS PLAN","001","1996-01-01","AEM HOLDINGS, INC.",,,"6610 COBRA WAY",,"SAN DIEGO","CA","92121",,,,,,,"6610 COBRA WAY",,"SAN DIEGO","CA","92121",,,,,,,"330215757","8584810210","334410","AEM HOLDINGS, INC.",,"6610 COBRA WAY",,"SAN DIEGO","CA","92121",,,,,,,"330215757","8584810210",,,,"2011-07-20T18:11:25-0500","FRANK COVALT",,,,,70,84,0,6,90,0,90,54,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720181523P030097253697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HELFON HANONO, OPTOMETRIST DEFINED BENEFIT PENSION PLAN & TRUST","002","2005-01-01","HELFON HANONO, OPTOMETRIST",,,"894 PALM AVENUE, SUITE B",,"IMPERIAL BEACH","CA","91932",,,,,,,,,,,,,,,,,,"953775446","8585099181","621320","HELFON HANONO, OPTOMETRIST",,"894 PALM AVENUE, SUITE B",,"IMPERIAL BEACH","CA","91932",,,,,,,"953775446","8585099181",,,,"2011-07-20T18:15:08-0500","HELFON HANONO","2011-07-20T18:15:08-0500","HELFON HANONO",,,7,7,0,0,7,0,7,,0,,"1A3B3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721092409P040100449185010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BURNETT OIL CO., INC. AND AFFILIATES 401(K) PLAN","002","1993-01-01","BURNETT OIL CO., INC. AND AFFILIATES",,,"801 CHERRY STREET, UNIT 9","BURNETT PLAZA SUITE #1500","FORT WORTH","TX","76102",,,,,,,,,,,,,,,,,,"751691478","8173325108","211110","BURNETT OIL CO., INC. AND AFFILIATES",,"801 CHERRY STREET, UNIT 9","BURNETT PLAZA SUITE #1500","FORT WORTH","TX","76102",,,,,,,"751691478","8173325108",,,,"2011-07-21T04:18:47-0500","V. NEILS AGTHER",,,,,143,138,,9,147,,147,128,2,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721072751P040100389585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VINCENT PAUL WILSON, M.D., P.A. PROFIT SHARING PLAN","001","2000-04-03","VINCENT P. WILSON, M.D.",,,"301 SOUTH MAITLAND AVENUE","SUITE B","MAITLAND","FL","32751",,,,,,,"301 SOUTH MAITLAND AVENUE","SUITE B","MAITLAND","FL","32751",,,,,,,"593631913","4076783255","621111","VINCENT P. WILSON, M.D.",,"301 SOUTH MAITLAND AVENUE","SUITE B","MAITLAND","FL","32751",,,,,,,"593631913","4076783255",,,,"2011-07-21T07:27:34-0500","VINCENT WILSON",,,,,4,4,,,4,,4,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721093432P040100454225001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"ALTERNATE CONCEPTS","501","2004-02-01","ALTERNATE CONCEPTS, INC",,,"CARR. 24 EDIFICIO 21","EXPRESO MARTINEZ NADAL","GUAYNABO","PR","00966",,,,,,,"CARR. 24 EDIFICIO 21","EXPRESO MARTINEZ NADAL","GUAYNABO","PR","00966",,,,,,,"043043576","7877494949","482110","ALTERNATE CONCEPTS, INC",,"CARR. 24 EDIFICIO 21","EXPRESO MARTINEZ NADAL","GUAYNABO","PR","00966",,,,,,,"043043576","7877494949",,,,"2011-07-21T09:34:14-0500","NORELIS RODRIGUEZ",,,,,334,297,,,297,,297,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721090612P040014793026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SNYDER'S GATEWAY, INC. 401(K) SAVINGS PLAN","002","1982-04-01","SNYDERS GATEWAY, INC.",,,"16563 LINCOLN HWY",,"BREEZEWOOD","PA","155330287",,,,,,,,,,,,,,,,,,"231585029","8147354011","447100","SNYDERS GATEWAY, INC.",,"16563 LINCOLN HWY",,"BREEZEWOOD","PA","155330287",,,,,,,"231585029","8147354011",,,,"2011-07-20T13:59:04-0500","JOHN BITTNER",,,,,142,132,0,10,142,0,142,121,8,,"2E2F2G2J2K2S2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721090639P030097589409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WALTER X. LOYOLA, MD, PA SAFE HARBOR 401K NEW COMPARABILITY PS PLAN","001","2003-01-01","WALTER X. LOYOLA, MD, PA",,,"3200 GLENHURST CT",,"PLANO","TX","750933448",,,,,,,,,,,,,,,,,,"721564187","9725668586","621111","WALTER X. LOYOLA, MD, PA",,"3200 GLENHURST CT",,"PLANO","TX","750933448",,,,,,,"721564187","9725668586",,,,"2011-07-21T09:04:57-0500","WALTER LOYOLA",,,,,2,3,0,0,3,0,3,2,0,,"2A2E2F2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721083640P030097576609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEUROLOGY CONSULTANTS OF ROCHE 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","NEUROLOGY CONSULTANTS OF ROCHE",,,"101 SULLYS TRAIL","BUILDING 20","PITTSFORD","NY","14534",,,,,,,,,,,,,,,,,,"770720419","5855447979","621111","NEUROLOGY CONSULTANTS OF ROCHE",,"101 SULLYS TRAIL","BUILDING 20","PITTSFORD","NY","14534",,,,,,,"770720419","5855447979",,,,"2011-07-21T08:36:38-0500","NEUROLOGY CONSULTANTS OF ROCHE",,,,,7,6,0,0,6,0,6,6,0,,"2T2G2A3D2E2J2R2K",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721123659P030458802752001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","0","0","0","0",,"ST. VINCENTS HEALTH SYSTEM HEALTH CARE PLAN","506","2000-10-01","ST. VINCENTS HEALTH SYSTEM",,,"ONE SHIRCLIFF WAY",,"JACKSONVILLE","FL","32204",,,,,,,"ONE SHIRCLIFF WAY",,"JACKSONVILLE","FL","32204",,,,,,,"593650609","9043087469","622000","KAYE LUNSFORD",,"ONE SHIRCLIFF WAY",,"JACKSONVILLE","FL","32204",,,,,,,"593650609","9043087469",,,,"2011-07-21T12:01:31-0500","KAYE LUNSFORD",,,,,2524,2561,28,106,2695,0,2695,,,,,"4A","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721123717P030015974006001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SUNNY DELIGHT BEVERAGES COMPANY FLEXIBLE BENEFITS PLAN","501","2004-08-01","SUNNY DELIGHT BEVERAGES COMPANY",,,"10300 ALLIANCE ROAD",,"CINCINNATI","OH","45242",,,,,,,,,,,,,,,,,,"591027282","7142389357","312110","SUNNY DELIGHT BEVERAGES COMPANY",,"10300 ALLIANCE ROAD",,"CINCINNATI","OH","45242",,,,,,,"591027282","7142389357",,,,"2011-07-21T12:37:03-0500","ATHENA WONG","2011-07-21T12:37:03-0500","ATHENA WONG",,,649,622,5,0,627,,,,,,,"4A4B4D4H4L4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721123811P040100564689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DSG ASSOCIATES 401(K) PROFIT SHARING PLAN & TRUST","001","2000-01-01","DSG ASSOCIATES, INC.",,,"2110 E 1ST ST STE 106",,"SANTA ANA","CA","92705",,,,,,,,,,,,,,,,,,"953865535","7148353020","541910","DSG ASSOCIATES, INC.",,"2110 E 1ST ST STE 106",,"SANTA ANA","CA","92705",,,,,,,"953865535","7148353020",,,,"2011-07-21T12:06:53-0500","STEFANIE CHUNG","2011-07-21T12:35:53-0500","DONNA GUIDO",,,36,25,0,2,27,0,27,27,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721111621P030014285458001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMAS FUNERAL SERVICE 401(K)/PROFIT SHARING PLAN AND TRUST","001","1975-08-31","THOMAS FUNERAL SERVICE",,,"304 SOUTH MAIN STREET",,"MINOT","ND","58701",,,,,,,,,,,,,,,,,,"450219910","7018382832","813000","THOMAS FUNERAL SERVICE",,"304 SOUTH MAIN STREET",,"MINOT","ND","58701",,,,,,,"450219910","7018382832",,,,"2011-07-21T10:55:34-0500","BRYAN THOMAS",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721104018P040454294512001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALBANY GASTROENTEROLOGY CONSULTANTS 401K PLAN","001","2003-01-01","ALBANY GASTROENTEROLOGY CONSULTANTS, PC",,,"1375 WASHINGTON AVE","SUITE 101","ALBANY","NY","12206",,,,,,,,,,,,,,,,,,"141781028","5185331217","621111","ALBANY GASTROENTEROLOGY CONSULTANTS, PC",,"1375 WASHINGTON AVE","SUITE 101","ALBANY","NY","12206",,,,,,,"141781028","5185331217",,,,"2011-07-21T11:39:53-0500","NICOLE ESPOSITO",,,,,64,65,0,8,73,0,73,75,1,,"2E2F2G2J2K2R2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721104039P030097649409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CTMI, LLC 401(K) PROFIT SHARING PLAN","001","1989-01-01","CTMI, LLC",,,"9001 AIRPORT FREEWAY, SUITE 700",,"FORT WORTH","TX","76180",,,,,,,,,,,,,,,,,,"450580021","8175765032","541219","CTMI, LLC",,"9001 AIRPORT FREEWAY, SUITE 700",,"FORT WORTH","TX","76180",,,,,,,"450580021","8175765032",,,,"2011-07-21T10:39:36-0500","MARY EVANS",,,,,32,21,0,2,23,0,23,21,3,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721074851P030097559745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANGIODYNAMICS GROUP DENTAL, LIFE & DISABILITY BENEFITS PLAN","507","2005-01-01","ANGIODYNAMICS INC.","ANGIODYNAMICS INC.",,"603 QUEENSBURY AVE",,"QUEENSBURY","NY","128047619",,,,,,,,,,,,,,,,,,"113146460","5187981215","339110","ANGIODYNAMICS INC.",,"603 QUEENSBURY AVE",,"QUEENSBURY","NY","128047619",,,,,,,"113146460","5187981215",,,,"2011-07-21T07:46:09-0500","MARY CREGUT",,,,,614,618,0,0,618,,,,,,,"4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721065652P040016609494001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SENTARA SHORT-TERM DISABILITY PLAN","509","1989-05-01","SENTARA HEALTHCARE",,,"6015 POPLAR HALL DRIVE, SUITE 100",,"NORFOLK","VA","23502",,,,,,,,,,,,,,,,,,"521271901","7574557565","622000","SENTARA HEALTHCARE",,"6015 POPLAR HALL DRIVE, SUITE 100",,"NORFOLK","VA","23502",,,,,,,"521271901","7574557565",,,,"2011-07-21T06:18:25-0500","TAMARA L. MEARS",,,,,16184,17137,0,0,17137,,,,,,,"4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110720160651P030014218866001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"LENZING FIBERS INC. GROUP HEALTH CARE AND DENTAL PLAN","504","2004-01-01","LENZING FIBERS INC.",,,"12950 HIGHWAY 43 NORTH",,"AXIS","AL","36505",,,,,,,,,,,,,,,,,,"510394692","2516792316","325500","LENZING FIBERS INC.",,"12950 HIGHWAY 43 NORTH",,"AXIS","AL","36505",,,,,,,"510394692","2516792316",,,,"2011-07-20T16:06:29-0500","DAN HERZOG","2011-07-20T16:06:29-0500","DAN HERZOG",,,101,100,0,0,100,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721092523P030097601313001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"KENNEDY, JOHNSON, D'ELIA & GILLOOLY RETIREMENT SAVINGS PLAN","001","1993-05-01","KENNEDY, JOHNSON, DELIA & GILLOOLY, L.L.C.",,,"555 LONG WHARF DRIVE",,"NEW HAVEN","CT","06511",,,,,,,,,,,,,,,,,,"061250924","2038658430","541110","KENNEDY, JOHNSON, DELIA & GILLOOLY, L.L.C.",,"555 LONG WHARF DRIVE",,"NEW HAVEN","CT","06511",,,,,,,"061250924","2038658430",,,,"2011-07-21T10:25:05-0500","DAVID H. JOHNSON",,,,,21,22,0,1,23,0,23,23,0,,"2E2F2G2J2K2T3B3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721085919P040031487079001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FORKS MOTORS, INC. 401(K) PLAN","001","1970-06-01","FORKS MOTORS, INC.",,,"PO BOX 13064",,"GRAND FORKS","ND","582083064",,,,,,,,,,,,,,,,,,"450220794","7017726274","441110","FORKS MOTORS, INC.",,"PO BOX 13064",,"GRAND FORKS","ND","582083064",,,,,,,"450220794","7017726274",,,,"2011-07-21T08:58:34-0500","BOB MULLEN",,,,,77,45,0,34,79,0,79,67,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721082352P030097572097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENHANCED PRINTING PRODUCTS, INC. 401(K) PROFIT SHARING PLAN","001","2007-01-01","ENHANCED PRINTING PRODUCTS, INC.",,,"6315 EAST 12TH STREET",,"TULSA","OK","74112",,,,,,,,,,,,,,,,,,"731508000","9185851991","332700","ENHANCED PRINTING PRODUCTS, INC.",,"6315 EAST 12TH STREET",,"TULSA","OK","74112",,,,,,,"731508000","9185851991",,,,"2011-07-21T08:18:30-0500","GREG MOSLEY",,,,,5,3,0,4,7,0,7,4,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721082436P040100415921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AVERY HASLER & ASSOCIATES, INC. 401(K) PLAN & TRUST","001","1970-10-01","AVERY HASLER & ASSOCIATES, INC.",,,"14 E FOURTEEN MILE RD",,"CLAWSON","MI","48017",,,,,,,,,,,,,,,,,,"381559852","8105883434","524210","AVERY HASLER & ASSOCIATES, INC.",,"14 E FOURTEEN MILE RD",,"CLAWSON","MI","48017",,,,,,,"381559852","8105883434",,,,"2011-07-21T08:23:41-0500","STEPHEN HASLER",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721093602P040454142032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TURNER BROADCASTING SYSTEM, INC. TRAVEL ACCIDENT","504","1986-03-18","TURNER BROADCASTING SYSTEM, INC.",,,"ONE CNN CENTER, 14 SE",,"ATLANTA","GA","30303",,,,,,,,,,,,,,,,,,"580950695","4048272114","515100","TURNER BROADCASTING SYSTEM, INC.",,"ONE CNN CENTER, 14 SE",,"ATLANTA","GA","30303",,,,,,,"580950695","4048272114",,,,"2011-07-21T09:35:44-0500","BRETT G. HELLENGA",,,,,14402,15603,0,0,15603,,,,,,,"4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721093652P040100455425001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ENTING WATER CONDITIONING, INC. 401(K) PROFIT SHARING PLAN","001","1991-03-01","ENTING WATER CONDITIONING, INC.",,,"3211 DRYDEN RD",,"DAYTON","OH","45439",,,,,,,"3211 DRYDEN RD",,"DAYTON","OH","45439",,,,,,,"310709601","9372945100","238220","ENTING WATER CONDITIONING, INC.",,"3211 DRYDEN RD",,"DAYTON","OH","45439",,,,,,,"310709601","9372945100",,,,"2011-07-21T09:35:56-0500","NICHOLAS DASCALOS",,,,,27,19,0,2,21,0,21,20,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110720173451P030097236241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDCARE EQUIPMENT COMPANY, LLC 401K PLAN","001","2008-06-02","EXCELA HEALTH",,,"134 INDUSTRIAL PARK ROAD","SUITE 1700","GREENSBURG","PA","15601",,,,,,,"134 INDUSTRIAL PARK ROAD","SUITE 1700","GREENSBURG","PA","15601",,,,,,,"261361520","7246891947","423400","EXCELA HEALTH",,"134 INDUSTRIAL PARK ROAD","SUITE 1700","GREENSBURG","PA","15601",,,,,,,"261361520","7246891947",,,,"2011-07-20T17:34:16-0500","ANTHONY WALTOS",,,,,112,102,0,16,118,0,118,117,0,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720183215P040100068737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST NATIONAL BANK OF KEMP ESOP W/401(K) PROVISIONS","001","1993-01-01","FIRST NATIONAL BANK OF KEMP",,,"100 SOUTH STATE HIGHWAY 274",,"KEMP","TX","75143",,,,,,,,,,,,,,,,,,"750373615","9034988541","522110","FIRST NATIONAL BANK OF KEMP",,"100 SOUTH STATE HIGHWAY 274",,"KEMP","TX","75143",,,,,,,"750373615","9034988541",,,,"2011-07-20T18:31:27-0500","VIDAL JONES",,,,,34,26,4,4,34,0,34,19,0,,"2F2H2I2J2K2O2Q2T3I",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110721094508P030097611761003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ASHLEY BANCSTOCK COMPANY EE SAV & RET PLAN","002","1997-12-01","ASHLEY BANCSTOCK COMPANY",,,"218 MAIN STREET",,"CROSSETT","AR","71635",,,,,,,,,,,,,,,,,,"710565425","8703641300","522110","ASHLEY BANCSTOCK COMPANY",,"218 MAIN STREET",,"CROSSETT","AR","71635",,,,,,,"710565425","8703641300",,,,"2011-07-21T10:24:39-0500","NANCY MCCAY, VICE PRESIDENT","2011-07-21T10:24:56-0500","EDWARD L. HOLT, PRESIDENT AND CEO",,,60,68,1,0,69,1,70,68,1,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720183327P040031375943001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MODERN AD MEDIA MEDICAL PLAN","501","2010-01-01","MODERN AD MEDIA, LLC",,,"2200 SW 10TH STREET",,"DEERFIELD BEACH","FL","33442",,,,,,,,,,,,,,,,,,"900385584","9546914019","541800","MODERN AD MEDIA, LLC",,"2200 SW 10TH STREET",,"DEERFIELD BEACH","FL","33442",,,,,,,"900385584","9546914019",,,,"2011-07-20T18:33:01-0500","MICHAEL HOLT",,,,,131,138,5,0,143,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110721085221P030014273762001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT RESOURCES, L.L.C. RETIREMENT PLAN AND TRUST","001","1999-01-01","ROBERT RESOURCES, L.L.C.",,,"135 ROBERT E LEE BLVD",,"NEW ORLEANS","LA","701242534",,,,,,,,,,,,,,,,,,"721446050","5042070162","445110","ROBERT RESOURCES, L.L.C.",,"135 ROBERT E LEE BLVD",,"NEW ORLEANS","LA","701242534",,,,,,,"721446050","5042070162",,,,"2011-07-21T08:31:07-0500","LORI SCHMITT",,,,,126,108,0,37,145,0,145,85,1,,"2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721081337P040031476375001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL LIME & STONE COMPANY PRETAX PREMIUM PLAN","503","1992-01-01","NATIONAL LIME & STONE COMPANY",,,"551 LAKE CASCADE PKWY",,"FINDLAY","OH","458390120",,,,,,,,,,,,,,,,,,"344312430","4194224341","212310","NATIONAL LIME & STONE COMPANY",,"551 LAKE CASCADE PKWY",,"FINDLAY","OH","458390120",,,,,,,"344312430","4194224341",,,,"2011-07-21T08:13:34-0500","JEANNINE CLARK",,,,,285,260,3,0,263,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721081508P030097568833003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BRMC AMENDED AND RESTATED WELFARE BENEFIT PLAN","513","2002-01-01","BAY REGIONAL MEDICAL CENTER",,,"1900 COLUMBUS AVENUE",,"BAY CITY","MI","487086880",,,,,,,,,,,,,,,,,,"381976271","9898943000","622000","BAY REGIONAL MEDICAL CENTER",,"1900 COLUMBUS AVENUE",,"BAY CITY","MI","487086880",,,,,,,"381976271","9898943000",,,,"2011-07-21T08:06:33-0500","BRIAN KAY",,,,,2382,1900,513,0,2413,,,,,,,"4A4D4F4H4L4Q","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110720155507P040099995953001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EAST CAMBRIDGE SAVINGS BANK BLUE CROSS & BLUE SHIELD OF MA DENTAL BLUE","505","1990-01-01","EAST CAMBRIDGE SAVINGS BANK",,,"344 CAMBRIDGE STREET",,"CAMBRIDGE","MA","02141",,,,,,,,,,,,,,,,,,"041269550","6173547700","522120","EAST CAMBRIDGE SAVINGS BANK",,"344 CAMBRIDGE STREET",,"CAMBRIDGE","MA","02141",,,,,,,"041269550","6173547700",,,,"2011-07-20T16:32:57-0500","HARRY KALAJIAN","2011-07-20T16:33:35-0500","HARRY KALAJIAN",,,133,130,,,130,,130,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720161945P030002859427001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EVAPCO, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1984-01-01","EVAPCO, INC.",,,"5151 ALLENDALE LANE",,"TANEYTOWN","MD","217872103",,,,,,,,,,,,,,,,,,"521059673","4107562600","332900","EVAPCO, INC.",,"5151 ALLENDALE LANE",,"TANEYTOWN","MD","217872103",,,,,,,"521059673","4107562600",,,,"2011-07-20T16:13:28-0500","ANNE MULDOON",,,,,1254,1013,8,172,1193,2,1195,1192,48,,"2I2P3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110720162017P040014728194001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"BARTON PROFIT SHARING PLAN AND TRUST","001","1956-10-31","BARTON SOLVENTS, INC.",,,"PO BOX 221",,"DES MOINES","IA","503060221",,,,,,,,,,,,,,,,,,"420683217","5152657998","424600","BARTON SOLVENTS, INC.",,"PO BOX 221",,"DES MOINES","IA","503060221",,,,,,,"420683217","5152657998",,,,"2011-07-20T16:20:06-0500","DANIEL SMITH","2011-07-20T16:20:06-0500","DANIEL SMITH",,,186,153,3,29,185,0,185,171,2,,"2E2G2T","4B","1",,"1",,"1",,"1",,"1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720162454P030097206961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEYH CORPORATION EMPLOYEES' PROFIT SHARING PLAN","001","2000-04-01","WEYH CORPORATION",,,"15909 S 87TH ST.",,"PAPILLION","NE","680464631",,,,,,,"15909 S 87TH ST.",,"PAPILLION","NE","680464631",,,,,,,"470765068","4025924142","238900","WEYH CORPORATION",,"15909 S 87TH ST.",,"PAPILLION","NE","680464631",,,,,,,"470765068","4025924142",,,,"2011-07-20T16:21:14-0500","DAVE WEYH",,,,,2,1,1,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110721093731P040100455777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STERILMED, INC. GROUP LIFE & AD&D, VOL. LIFE & AD&D AND VOL. DEPENDENT LIFE AND AD&D PLAN","501","2002-09-01","STERILMED, INC.",,,"11400 73RD AVENUE NORTH, SUITE 100",,"MAPLE GROVE","MN","553695562",,,,,,,,,,,,,,,,,,"753094703","7634883463","339110","STERILMED, INC.",,"11400 73RD AVENUE NORTH, SUITE 100",,"MAPLE GROVE","MN","553695562",,,,,,,"753094703","7634883463",,,,"2011-07-21T09:37:01-0500","ELIZABETH A. GOODWIN",,,,,514,609,0,0,609,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721082702P030097573201001","2010-12-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"MARINER ENERGY HEALTH AND WELFARE PLAN","501","1985-12-01","MARINER ENERGY, INC.",,,"2000 POST OAK BOULEVARD","SUITE 100","HOUSTON","TX","77042",,,,,,,,,,,,,,,,,,"860460233","7132966000","211110","MARINER ENERGY, INC.",,"2000 POST OAK BOULEVARD","SUITE 100","HOUSTON","TX","77042",,,,,,,"860460233","7132966000",,,,"2011-07-21T08:26:48-0500","MARGERY M. HARRIS",,,,,327,0,0,0,0,,,,,,,"4A4B4D4E4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110720174419P040100047841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN PACIFIC MORTGAGE HEALTH & WELFARE PLAN","501","2002-01-01","AMERICAN PACIFIC MORTGAGE",,,"3000 LAVA RIDGE CT STE 200",,"ROSEVILLE","CA","956612803",,,,,,,,,,,,,,,,,,"680382674","9169601325","522292","AMERICAN PACIFIC MORTGAGE",,"3000 LAVA RIDGE COURT STE 200",,"ROSEVILLE","CA","956612803",,,,,,,"680382674","9169601325",,,,"2011-07-20T17:41:21-0500","SHARON CHAPPEL",,,,,628,553,0,0,553,,,,,,,"4A4B4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110721093840P040100456209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","002","2006-06-01","CLOUD COUNTY COOPERATIVE ELEVATOR ASSOCIATION",,,"P. O. BOX 345",,"CONCORDIA","KS","66901",,,,,,,,,,,,,,,,,,"480537996","7852432080","115110","CLOUD COUNTY COOPERATIVE ELEVATOR ASSOCIATION",,"P. O. BOX 345",,"CONCORDIA","KS","66901",,,,,,,"480537996","7852432080",,,,"2011-07-21T09:37:48-0500","GAIL L. BAXA",,,,,8,11,0,1,12,0,12,8,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721061309P030097523953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEADERS MOVING & STORAGE COMPANY 401 (K) PLAN","002","2006-01-01","LEADERS MOVING & STORAGE COMPANY",,,"7455 ALTA VIEW BLVD",,"WORTHINGTON","OH","43085",,,,,,,,,,,,,,,,,,"311760761","6147859595","493100","LEADERS MOVING & STORAGE COMPANY",,"7455 ALTA VIEW BLVD",,"WORTHINGTON","OH","43085",,,,,,,"311760761","6147859595",,,,"2011-07-21T06:12:40-0500","STEVE ENGLISH",,,,,17,15,0,2,17,0,17,17,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110720200801P030097298641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AVALERE HEALTH LLC HEALTH & WELFARE BENEFIT PLAN","501","2001-06-01","AVALERE HEALTH LLC",,,"1350 CONNECTICUT AVE NW, SUITE 900",,"WASHINGTON","DC","200361731",,,,,,,,,,,,,,,,,,"525550787","2022071300","541990","AVALERE HEALTH LLC",,"1350 CONNECTICUT AVE NW, SUITE 900",,"WASHINGTON","DC","200361731",,,,,,,"525550787","2022071300",,,,"2011-07-20T20:07:40-0500","JENNIFER RIPKIN","2011-07-20T20:07:40-0500","JENNIFER RIPKIN",,,116,127,3,0,130,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110720153556P030014214386001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMAS J VANEENENAAM DDS HR-10 PROFIT-SHARING PLAN","001","1994-01-01","THOMAS J VANEENENAAM DDS",,,"243 E MAIN",,"ZEELAND","MI","494641737",,,,,,,,,,,,,,,,,,"382114296","6167726933","621210","THOMAS J VANEENENAAM DDS",,"243 E MAIN",,"ZEELAND","MI","494641737",,,,,,,"382114296","6167726933",,,,"2011-07-20T15:36:40-0500","THOMAS J VANEENENAAM","2011-07-20T15:36:40-0500","THOMAS J VANEENENAAM",,,2,2,,,2,,2,2,,,"2E2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721075940P030014270674001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NOBLE D. HARRISON II, P.C. 401K PROFIT SHARING PLAN","001","2004-01-01","NOBLE D. HARRISON II, P.C.",,,"140 E FAYETTE ST","P.O. BOX 110","PITTSFIELD","IL","623630110",,,,,,,,,,,,,,,,,,"371206494","2172851911","541211","NOBLE D. HARRISON II, P.C.",,"140 E FAYETTE ST","P.O. BOX 110","PITTSFIELD","IL","623630110",,,,,,,"371206494","2172851911",,,,"2011-07-21T07:59:39-0500","NOBLE D. HARRISON II",,,,,6,5,0,1,6,0,6,6,0,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721061507P030097524769001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"UNIVERSITY BOOKSTORE INC EMPLOYEES PROFIT SHARING PLAN","001","1992-04-01","UNIVERSITY BOOKSTORE, INC",,,"2529 WEST MICHIGAN AVENUE",,"KALAMAZOO","MI","490065642",,,,,,,,,,,,,,,,,,"381720622","2693816280","451211","UNIVERSITY BOOKSTORE, INC",,"2529 WEST MICHIGAN AVENUE",,"KALAMAZOO","MI","490065642",,,,,,,"381720622","2693816280",,,,"2011-07-20T07:04:55-0500","ROBERT J. WARNER","2011-07-20T07:05:04-0500","ROBERT J. WARNER",,,12,13,,,13,,13,13,,,"2A2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721092138P040100448081001","2010-07-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"IKARIA, INC. WELFARE BENEFIT PLAN","501","2007-07-01","IKARIA, INC. F/K/A IKARIA HOLDINGS, INC.",,,"PERRYVILLE III CORPORATE PARK","53 FRONTAGE ROAD, THIRD FLOOR","HAMPTON","NJ","088279001",,,,,,,,,,,,,,,,,,"208617785","9082386655","325410","IKARIA, INC. F/K/A IKARIA HOLDINGS, INC.",,"PERRYVILLE III CORPORATE PARK","53 FRONTAGE ROAD, THIRD FLOOR","HAMPTON","NJ","088279001",,,,,,,"208617785","9082386655",,,,"2011-07-21T09:21:13-0500","JOHN MCCABE",,,,,459,450,11,0,461,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110720152821P030030492103001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAYCHEX, INC. LONG TERM DISABILITY INCOME INS PLAN","504","1982-04-01","PAYCHEX, INC.",,,"911 PANORAMA TRAIL S",,"ROCHESTER","NY","146250397",,,,,,,,,,,,,,,,,,"161124166","5853876200","541214","PAYCHEX, INC.",,"911 PANORAMA TRAIL S",,"ROCHESTER","NY","146250397",,,,,,,"161124166","5853876200",,,,"2011-07-20T14:13:09-0500","ELLEN PAPE GILMORE",,,,,10904,10601,0,0,10601,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110721095821P030014279170001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RADIUS SPECIALTY HOSPITAL WELFARE BENEFIT PLAN","501","2006-01-01","RADIUS SPECIALTY HOSPITAL, LLC",,,"59 TOWNSEND STREET",,"ROXBURY","MA","021191318",,,,,,,"59 TOWNSEND STREET",,"ROXBURY","MA","021191318",,,,,,,"203254587","6179898400","622000","RADIUS SPECIALTY HOSPITAL, LLC",,"59 TOWNSEND STREET",,"ROXBURY","MA","021191318",,,,,,,"203254587","6179898400",,,,"2011-07-19T14:33:05-0500","DANIEL MITCHELL",,,,,212,203,,,203,,203,,,,,"4A4B4D4H4L4Q","1",,,"1","1",,,"1",,,,,,"1","6","1",,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110720175330P040100051121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GENERAL RUBBER CORPORATION 401(K) PSP AND TRUST","001","1996-03-01","GENERAL RUBBER CORPORATION",,,"2201 E GANLEY RD",,"TUCSON","AZ","85706",,,,,,,,,,,,,,,,,,"860997928","5208892979","326200","GENERAL RUBBER CORPORATION",,"2201 E GANLEY RD",,"TUCSON","AZ","85706",,,,,,,"860997928","5208892979",,,,"2011-07-20T17:51:33-0500","AMY HAMMARSTROM",,,,,98,86,0,0,86,0,86,43,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-20","Filed with authorized/valid electronic signature",, "20110721100017P040100471457010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LOIS KULINSKY & ASSOCIATES LTD EMPLOYEES RETIREMENT PLAN AND TRUST","001","1990-01-01","LOIS KULINSKY AND ASSOCIATES LTD",,,"395 E DUNDEE",,"WHEELING","IL","60090",,,,,,,,,,,,,,,,,,"363547323","8474594448","541110","LOIS KULINSKY AND ASSOCIATES LTD",,"395 E DUNDEE",,"WHEELING","IL","60090",,,,,,,"363547323","8474594448",,,,"2011-07-19T16:53:54-0500","LOIS KULINSKY",,,,,9,10,,,10,,10,10,2,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721093009P030097604417008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THOMAS A HIMLER JR DEFINED CONTRIBUTION PENSION PLAN","003","1987-04-10","THOMAS A HIMLER JR ATTORNEY",,,"414 GARFIELD ROAD",,"LATROBE","PA","15650",,,,,,,,,,,,,,,,,,"251538221","7245393511","541110","THOMAS A HIMLER JR ATTORNEY",,"414 GARFIELD ROAD",,"LATROBE","PA","15650",,,,,,,"251538221","7245393511",,,,"2011-07-21T10:24:42-0500","THOMAS A HIMLER JR","2011-07-21T10:24:49-0500","THOMAS A HIMLER JR",,,2,0,0,1,1,0,1,1,,,"2C3B",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721093032P030097605009001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FREDERICK W MURDOCK RETIREMENT","002","1979-12-31","FREDERICK W MURDOCK",,,"3 HAMPSHIRE ST",,"METHUEN","MA","01844",,,,,,,,,,,,,,,,,,"042445315","9786860137","541110","FREDERICK W MURDOCK",,"3 HAMPSHIRE ST",,"METHUEN","MA","01844",,,,,,,"042445315","9786860137",,,,"2011-07-21T09:02:25-0500","FREDERICK W MURDOCK",,,,,2,1,1,,2,,2,2,,,"3B2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721123653P040100563825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAGNUM MACHINING, INC. 401(K) PLAN","001","1996-10-01","MAGNUM MACHINING, INC.",,,"20959 STATE HIGHWAY 6",,"DEERWOOD","MN","56444",,,,,,,,,,,,,,,,,,"411776251","2185343552","333200","MAGNUM MACHINING, INC.",,"20959 STATE HIGHWAY 6",,"DEERWOOD","MN","56444",,,,,,,"411776251","2185343552",,,,"2011-07-21T12:30:05-0500","JERRY BOWMAN",,,,,62,60,0,3,63,0,63,27,3,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721100525P040454209888001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"SHARON COATING LLC UNION SAVINGS PLAN","001","2007-06-08","SHARON COATING, LLC",,,"277 N SHARPSVILLE AVE",,"SHARON","PA","161462153",,,,,,,,,,,,,,,,,,"208848682","7249836464","331200","SHARON COATING, LLC",,"277 N SHARPSVILLE AVE",,"SHARON","PA","161462153",,,,,,,"208848682","7249836464",,,,"2011-07-21T10:05:19-0500","ROBERT MILLER","2011-07-21T10:05:19-0500","ROBERT MILLER",,,176,159,0,3,162,0,162,88,1,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110721084602P030097581601001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"DIGGYPOD, INC. SAFE HARBOR 401(K) P/S","001","2010-01-01","DIGGYPOD, INC.",,,"1259 INDUSTRIAL DR. SUITE A",,"SALINE","MI","48176",,,,,,,,,,,,,,,,,,"382806692","7344293307","511130","DIGGYPOD, INC.",,"1259 INDUSTRIAL DR. SUITE A",,"SALINE","MI","48176",,,,,,,"382806692","7344293307",,,,"2011-07-21T08:36:50-0500","TIMOTHY SIMPSON",,,,,7,5,0,0,5,0,5,4,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721080421P040031474951001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MAC FADDEN & ASSOCIATES HEALTH & DENTAL PLAN","501","2009-01-01","MAC FADDEN & ASSOCIATES, INC.",,,"8403 COLESVILLE ROAD, SUITE 400",,"SILVER SPRING","MD","20910",,,,,,,,,,,,,,,,,,"521642695","3015885900","541990","MAC FADDEN & ASSOCIATES, INC.",,"8403 COLESVILLE ROAD, SUITE 400",,"SILVER SPRING","MD","20910",,,,,,,"521642695","3015885900",,,,"2011-07-21T08:01:04-0500","DORA ANN DANIEL",,,,,174,172,8,0,180,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721080528P040100407329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLAKEY HALL RETIREMENT PLAN","001","1999-01-01","BLAKEY HALL & ASSOCIATES",,,"501 BLAKELY HALL LN",,"ELON","NC","27244",,,,,,,,,,,,,,,,,,"562088714","3365062310","623000","BLAKEY HALL & ASSOCIATES",,"501 BLAKELY HALL LN",,"ELON","NC","27244",,,,,,,"562088714","3365062310",,,,"2011-07-21T08:03:51-0500","DAWN WALKER",,,,,39,40,0,11,51,0,51,51,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721065214P040453788608001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SENTARA EMPLOYEES MEDICAL PLAN","511","1999-07-01","SENTARA HEALTHCARE",,,"6015 POPLAR HALL DRIVE, SUITE 100",,"NORFOLK","VA","23502",,,,,,,,,,,,,,,,,,"521271901","7574557565","622000","SENTARA HEALTHCARE",,"6015 POPLAR HALL DRIVE, SUITE 100",,"NORFOLK","VA","23502",,,,,,,"521271901","7574557565",,,,"2011-07-21T06:06:36-0500","TAMARA L. MEARS",,,,,12179,12003,194,,12197,,,,,,,"4A4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",, "20110721111508P030014285042006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GARY A. BREYMAIER, D.D.S. PROFIT SHARING TRUST","002","1987-01-01","GARY BREYMAIER, D.D.S.",,"GARY A. BREYMAIER","3602 RUGBY DRIVE",,"TOLEDO","OH","43614",,,,,,,,,,,,,,,,,,"341521513","4193851671","621210","GARY A. BREYMAIER",,"3602 RUGBY DR.",,"TOLEDO","OH","43614",,,,,,,"341521513","4193851671",,,,"2011-07-19T09:27:46-0500","GARY A. BREYMAIER","2011-07-19T09:28:05-0500","GARY A. BREYMAIER",,,5,5,,,5,,5,5,,,"2E2G3B",,"1",,"1",,"1",,"1",,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-07-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726093013P040103559713010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GARY BENSON SELF EMPLOYED PROFIT SHARING PLAN","001","1994-01-01","GARY BENSON LAW OFFICES",,,"2615 N SHEFFIELD AVENUE",,"CHICAGO","IL","606141368",,,,,,,,,,,,,,,,,,"363420788","7733277120","541100","GARY BENSON LAW OFFICES",,"2615 N SHEFFIELD AVENUE",,"CHICAGO","IL","606141368",,,,,,,"363420788","7733277120",,,,"2011-07-26T09:20:47-0500","GARY BENSON",,,,,1,1,,,1,,1,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726115611P030100859073001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"DUNCAN AVIATION, INC. EMPLOYEE ASSISTANCE PROGRAM","512","2010-01-01","DUNCAN AVIATION, INC.",,,"P.O. BOX 81887",,"LINCOLN","NE","68501",,,,,,,,,,,,,,,,,,"470461109","4024752611","811310","DUNCAN AVIATION, INC.",,"P.O. BOX 81887",,"LINCOLN","NE","68501",,,,,,,"470461109","4024752611",,,,"2011-07-26T11:55:27-0500","KRISTIN ULLMAN",,,,,1830,1870,0,0,1870,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726122116P030100873489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE 401(K) PLAN OF ARROWOOD INDEMNITY COMPANY","004","1976-01-01","ARROWOOD INDEMNITY COMPANY",,,"3600 ARCO CORPORATE DR",,"CHARLOTTE","NC","28273",,,,,,,,,,,,,,,,,,"135358230","7045222000","524290","ARROWOOD INDEMNITY COMPANY",,"3600 ARCO CORPORATE DR",,"CHARLOTTE","NC","28273",,,,,,,"135358230","7045222000",,,,"2011-07-26T12:20:30-0500","CATHERINE A CARLINO","2011-07-26T12:20:30-0500","CATHERINE A CARLINO",,,1938,238,20,1432,1690,0,1690,1690,0,,"2F2G2J2K2T3F3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725173803P040015213538001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ADTRAN, INC. 401(K) RETIREMENT PLAN","001","1990-01-01","ADTRAN, INC",,,"901 EXPLORER BLVD.",,"HUNTSVILLE","AL","35806",,,,,,,"901 EXPLORER BLVD.",,"HUNTSVILLE","AL","35806",,,,,,,"630918200","2569638000","541512","ADTRAN, INC",,"901 EXPLORER BLVD.",,"HUNTSVILLE","AL","35806",,,,,,,"630918200","2569638000",,,,"2011-07-25T17:37:40-0500","PAMELA TITUS",,,,,1839,1690,5,234,1929,8,1937,1748,0,,"2F2G2J2K2T3I",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725214301P030014705474001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DR.TECHN.OLAV OLSEN, INC. 401(K) RETIREMENT PLAN","001","2007-12-01","DR.TECHN.OLAV OLSEN, INC.",,,"2000 S DAIRY ASHFORD SUITE 350",,"HOUSTON","TX","77077",,,,,,,,,,,,,,,,,,"141956293","2815560232","621111","DR.TECHN.OLAV OLSEN, INC.",,"2000 S DAIRY ASHFORD SUITE 350",,"HOUSTON","TX","77077",,,,,,,"141956293","2815560232",,,,"2011-07-25T21:23:35-0500","ARNSTEIN GODEJORD",,,,,3,3,0,0,3,0,3,2,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725154057P030002951139006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BIRDDOG SOLUTIONS, INC. DENTAL PLAN","502","2009-01-01","BIRDDOG SOLUTIONS, INC.",,,"138 RIVER ROAD, SUITE 208",,"ANDOVER","MA","01810",,,,,,,,,,,,,,,,,,"470809335","9786888400","561490","BIRDDOG SOLUTIONS, INC.",,"138 RIVER ROAD, SUITE 208",,"ANDOVER","MA","01810",,,,,,,"470809335","9786888400",,,,"2011-07-25T11:30:22-0500","PATRICIA M BOWLER",,,,,127,121,,,121,,,,,,,"4D",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726084952P030100727025001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"WABASHA FIRE DEPARTMENT RELIEF ASSOC","001","1956-03-05","WABASHA FIRE DEPARTMENT RELIEF ASSOC",,,"113 HIAWATHA DR W",,"WABASHA","MN","55981",,,,,,,"113 HIAWATHA DR W",,"WABASHA","MN","55981",,,,,,,"416031643","6515653384","812990","WABASHA FIRE DEPARTMENT RELIEF ASSOC",,"113 HIAWATHA DR W",,"WABASHA","MN","55981",,,,,,,"416031643","6515653384",,,,"2011-07-26T08:49:12-0500","JEFF WALLERICH",,,,,31,27,2,7,36,,36,34,1,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726104648P040103600977010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KEEN ENERGY SERVICES, LLC WELFARE BENEFIT PLAN","501","2009-01-01","KEEN ENERGY SERVICES, LLC",,,"PO BOX 549",,"STILLWATER","OK","74076",,,,,,,,,,,,,,,,,,"680626242","4057432132","213110","KEEN ENERGY SERVICES, LLC",,"PO BOX 549",,"STILLWATER","OK","74076",,,,,,,"680626242","4057432132",,,,"2011-07-22T05:34:22-0500","DITTY MILLER",,,,,434,568,,,568,,,,,,,"4A4B4D4E","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725152957P030470032912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KRAMER & FRANK P C INC 401K PLAN","001","1992-01-01","KRAMER & FRANK P C INC",,,"9300 DIELMAN INDUSTRIAL DRIVE","SUITE 100","ST LOUIS","MO","63132",,,,,,,,,,,,,,,,,,"431387366","3149911835","541110","KRAMER & FRANK P C INC",,"9300 DIELMAN INDUSTRIAL DRIVE","SUITE 100","ST LOUIS","MO","63132",,,,,,,"431387366","3149911835",,,,"2011-07-25T15:29:26-0500","DENISE SPARROW",,,,,154,140,1,16,157,0,157,107,2,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725141908P040465558784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KERR DRUG, INC WELFARE PLAN","501","1998-05-01","KERR DRUG, INC",,,"3220 SPRING FOREST ROAD",,"RALEIGH","NC","27616",,,,,,,,,,,,,,,,,,"522017313","9195443896","446110","KERR DRUG, INC",,"3220 SPRING FOREST ROAD",,"RALEIGH","NC","27616",,,,,,,"522017313","9195443896",,,,"2011-07-25T14:09:29-0500","VINCENT LONGOBARDO",,,,,902,852,0,0,852,,,,,,,"4B4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725141910P030100248241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BARRACK, RODOS & BACINE 401(K) SAVINGS PLAN","001","1998-01-01","BARRACK, RODOS & BACINE",,,"3300 TWO COMMERCE SQUARE","2001 MARKET STREET","PHILADELPHIA","PA","19103",,,,,,,,,,,,,,,,,,"232011065","2159630600","541110","BARRACK, RODOS & BACINE",,"3300 TWO COMMERCE SQUARE","2001 MARKET STREET","PHILADELPHIA","PA","19103",,,,,,,"232011065","2159630600",,,,"2011-07-25T14:18:17-0500","ERWIN ZINGER",,,,,51,38,0,13,51,0,51,51,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726001012P040103316049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DONALD R. MONTANO, DDS, MSD, APC 401K PLAN","004","2004-01-01","DONALD R. MONTANO, DDS, MSD, APC",,,"9330 STOCKDALE HWY STE 200",,"BAKERSFIELD","CA","933113615",,,,,,,,,,,,,,,,,,"770049281","6616657600","621210","DONALD R. MONTANO, DDS, MSD, APC",,"9330 STOCKDALE HWY STE 200",,"BAKERSFIELD","CA","933113615",,,,,,,"770049281","6616657600",,,,"2011-07-26T00:08:48-0500","DONALD R. MONTANO, DDS, MSD, APC",,,,,4,4,0,0,4,0,4,3,0,,"2J3D2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726104711P030100812529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUCK & BUCK, LLC PROFIT SHARING PLAN","001","1984-01-01","BUCK & BUCK, LLC",,,"98 WADSWORTH STREET",,"HARTFORD","CT","06106",,,,,,,"98 WADSWORTH STREET",,"HARTFORD","CT","06106",,,,,,,"060743014","8605272677","541330","BUCK & BUCK, LLC",,"98 WADSWORTH STREET",,"HARTFORD","CT","06106",,,,,,,"060743014","8605272677",,,,"2011-07-14T13:43:51-0500","LAWRENCE BUCK",,,,,5,5,0,0,5,0,5,5,0,,"2E2G2R3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725151257P030100276833001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"HATCO CORPORATION 401(K) TRUST","004","1994-01-01","HATCO CORPORATION",,,"635 SOUTH 28TH STREET",,"MILWAUKEE","WI","53215",,,,,,,"635 SOUTH 28TH STREET",,"MILWAUKEE","WI","53215",,,,,,,"390913489","4146716350","332900","HATCO CORPORATION",,"635 SOUTH 28TH STREET",,"MILWAUKEE","WI","53215",,,,,,,"390913489","4146716350",,,,"2011-07-25T13:52:45-0500","RANDALL BAUMGART",,,,,393,349,1,25,375,4,379,369,4,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725142524P040103058913001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"INTERNATIONAL SECURITIES EXCHANGE LLC RETENTION PLAN","507","2007-12-19","INTERNATIONAL SECURITIES EXCHANGE LLC",,,"60 BROAD STREET",,"NEW YORK","NY","10004",,,,,,,,,,,,,,,,,,"205219802","2129432400","523210","THE SEVERANCE PLAN COMMITTEE","INTERNATIONAL SECURITIES EXCHANGE LLC","60 BROAD STREET",,"NEW YORK","NY","10004",,,,,,,"205219802","2129432400",,,,"2011-07-25T14:38:13-0500","BRUCE COOPERMAN, CFO",,,,,158,,,,0,,0,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725161459P030100319889001","2010-01-01","2010-09-30","2",,"0","1","1","1","0","0","0","0","0",,"VURV TECHNOLOGY, INC. 401(K) PROFIT SHARING PLAN","001","2000-01-01","VURV TECHNOLOGY, INC.",,,"4140 DUBLIN BLVD","SUITE 400","DUBLIN","CA","94568",,,,,,,,,,,,,,,,,,"593412988","9254523669","541519","VURV TECHNOLOGY, INC.",,"4140 DUBLIN BLVD","SUITE 400","DUBLIN","CA","94568",,,,,,,"593412988","9254523669",,,,"2011-07-25T16:14:15-0500","GINA LINDAUER",,,,,41,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725162912P040017028902001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LC&D CORPORATION","001","1998-07-15","LC&D CORPORATION",,,"9 BRENTWOOD DRIVE",,"LIVINGSTON","NJ","070394409",,,,,,,,,,,,,,,,,,"223597504","9737401337","541511","LC&D CORPORATION",,"9 BRENTWOOD DRIVE",,"LIVINGSTON","NJ","070394409",,,,,,,"223597504","9737401337",,,,"2011-07-23T13:55:01-0500","LIHFENG VICTORIA LEU","2011-07-23T13:55:03-0500","LIHFENG VICTORIA LEU","2011-07-23T13:55:06-0500","LIHFENG VICTORIA LEU",2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110726080032P030100696449001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"NIKKEN FOODS USA, INC. 401(K) PLAN","001","2010-01-01","NIKKEN FOODS USA, INC.",,,"4984 MANCHESTER ROAD",,"ST. LOUIS","MO","63110",,,,,,,,,,,,,,,,,,"208131597","3144365050","424400","NIKKEN FOODS USA, INC.",,"4984 MANCHESTER ROAD",,"ST. LOUIS","MO","63110",,,,,,,"208131597","3144365050",,,,"2011-07-26T08:00:31-0500","PAUL HINTON",,,,,11,10,0,4,14,0,14,14,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726080109P030471901408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMF MECHANICAL, INC. 401(K) RETIREMENT PLAN","001","1999-01-01","AMF MECHANICAL, INC.",,,"14757 MAIN ST STE 103",,"UPPR MARLBORO","MD","20772",,,,,,,,,,,,,,,,,,"521636982","3016271700","238220","AMF MECHANICAL, INC.",,"14757 MAIN ST STE 103",,"UPPR MARLBORO","MD","20772",,,,,,,"521636982","3016271700",,,,"2011-07-26T08:00:18-0500","MARTY FOWLER",,,,,51,16,0,28,44,0,44,44,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726100242P030100771137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPITALCARE MEDICAL GROUP, LLC GROUP LONG TERM DISABILITY INSURANCE PLAN","504","2002-07-01","CAPITALCARE MEDICAL GROUP, LLC",,"JOAN HAYNER, CEO","501 NEW KARNER RD., STE 1A",,"ALBANY","NY","122053882",,,,,,,,,,,,,,,,,,"161531979","5184521337","621111","CAPITALCARE MEDICAL GROUP, LLC","JOAN HAYNER, CEO","501 NEW KARNER RD, STE 1A",,"ALBANY","NY","122053882",,,,,,,"161531979","5184521337",,,,"2011-07-26T10:02:04-0500","JOAN R. HAYNER, CEO",,,,,400,422,0,0,422,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725143819P040465611792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLONIAL COMPANY VOLUNTARY LIFE INSURANCE PLAN","505","1999-02-01","THE COLONIAL COMPANY & SUBSIDIARIES",,,"5251 HAMPSTEAD HIGH STREET","UNIT 203","MONTGOMERY","AL","36116",,,,,,,"5251 HAMPSTEAD HIGH STREET","UNIT 203","MONTGOMERY","AL","36116",,,,,,,"631136006","3342706638","551112","THE COLONIAL COMPANY & SUBSIDIARIES",,"5251 HAMPSTEAD HIGH STREET","UNIT 203","MONTGOMERY","AL","36116",,,,,,,"631136006","3342706638",,,,"2011-07-25T14:20:22-0500","BRYAN TUCKER",,,,,20,15,,,15,,15,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725151514P030100278449006","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"ROBERT S. ROLLINGER PROFIT SHARING PLAN","001","1993-12-31","ROBERT S. ROLLINGER",,,"30500 NORTHWESTERN HWY, SUITE 500",,"FARMINGTON HILLS","MI","48334",,,,,,,,,,,,,,,,,,"383104628","2486261133","541110","ROBERT S. ROLLINGER",,"30500 NORTHWESTERN HWY, SUITE 500",,"FARMINGTON HILLS","MI","48334",,,,,,,"383104628","2486261133",,,,"2011-07-25T15:05:07-0500","ROBERT ROLLINGER",,,,,3,2,0,1,3,,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725154247P040015205330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHN P. BEAUCLAIR, M.D., INC. MONEY PURCHASE PENSION PLAN","002","1989-01-01","JOHN P. BEAUCLAIR, M.D., INC.",,,"622 WEST DUARTE ROAD, STE 103",,"ARCADIA","CA","91007",,,,,,,,,,,,,,,,,,"953399147","6264454873","621111","JOHN P. BEAUCLAIR, M.D., INC.",,"622 WEST DUARTE ROAD, STE 103",,"ARCADIA","CA","91007",,,,,,,"953399147","6264454873",,,,"2011-07-25T15:42:43-0500","JOHN P. BEAUCLAIR","2011-07-25T15:42:43-0500","JOHN P. BEAUCLAIR",,,7,5,0,0,5,0,5,2,0,,"2C2G2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725143120P040017019318001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRINCE MANUFACTURING CORPORATION SHORT-TERM DISABILITY PLAN","503","1991-01-01","PRINCE MANUFACTURING CORPORATION",,,"P.O. BOX 7000",,"NORTH SIOUX CITY","SD","57049",,,,,,,"612 N DERBY LANE",,"NORTH SIOUX CITY","SD","57049",,,,,,,"420678168","6052351220","332900","PRINCE MANUFACTURING CORPORATION",,"P.O. BOX 7000",,"NORTH SIOUX CITY","SD","57049",,,,,,,"420678168","6052351220",,,,"2011-07-25T13:18:39-0500","PETER MULLEN",,,,,317,314,,,314,,314,,,,,"4F","0",,,"1","0",,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726100254P030472222976001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLE CHEVROLET GEO, INC. NADART SALARY DEF 401K PLAN","001","1998-11-01","COLE CHEVROLET GEO, INC.",,,"1325 YELLOWSTONE AVE.",,"POCATELLO","ID","83201",,,,,,,,,,,,,,,,,,"820483757","2082372438","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T09:58:39-0500","ALAN B. SVEDLOW",,,,,41,40,0,2,42,0,42,21,1,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726100614P030014753922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GARDEN STATE GROWERS 401(K) SAVINGS PLAN","001","2002-01-01","GARDEN STATE GROWERS",,,"99 LOCUST GROVE RD",,"PITTSTOWN","NJ","08867",,,,,,,,,,,,,,,,,,"222577869","9087308888","111400","GARDEN STATE GROWERS",,"99 LOCUST GROVE RD",,"PITTSTOWN","NJ","08867",,,,,,,"222577869","9087308888",,,,"2011-07-26T10:04:24-0500","SCOTT ACKER",,,,,83,71,0,0,71,0,71,28,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726092948P030100749057001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SHEPHERD OF THE VALLEY LUTHERAN HOME AND RETIREMENT CENTER CAF PLAN","501","1991-01-01","SHEPHERD OF THE VALLEY LUTHERAN RETIREMENT SERVICES, INC.",,,"5525 SILICA ROAD",,"AUSTINTOWN","OH","44515",,,,,,,,,,,,,,,,,,"341147594","3305304038","623000","SHEPHERD OF THE VALLEY LUTHERAN HOME & RETIREMENT CENTER",,"5525 SILICA ROAD",,"YOUNGSTOWN","OH","44515",,,,,,,"341147594","3305304038",,,,"2011-07-26T04:06:59-0500","DONALD KACMAR","2011-07-26T04:06:59-0500","DONALD KACMAR",,,262,250,,,250,,,,,,,"4A4B4D4E4F","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725143926P030100260497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JONES SWANSON HUDDELL & GARRISON, LLC 401(K) PROFIT SHARING PLAN & TRUST","002","1998-01-01","JONES SWANSON HUDDELL & GARRISON, LLC",,,"601 POYDRAS ST STE 2655",,"NEW ORLEANS","LA","70130",,,,,,,,,,,,,,,,,,"721517600","5045232500","541110","JONES SWANSON HUDDELL & GARRISON, LLC",,"601 POYDRAS ST STE 2655",,"NEW ORLEANS","LA","70130",,,,,,,"721517600","5045232500",,,,"2011-07-25T14:38:49-0500","LYNN E. SWANSON",,,,,11,9,0,5,14,0,14,12,0,,"2E2F2G2H2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725193428P040103214033001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"ROARK PARTNERS MONEY PURCHASE PENSION PLAN","001","1989-01-01","ROARK PARTNERS PLAN COMMITTEE",,,"P. O. BOX 33",,"LINDSAY","CA","93247",,,,,,,,,,,,,,,,,,"770274994","5595624527","111300","SANTA BARBARA PENSION CONSULTANTS, INC.",,"1129 STATE STREET, SUITE 18",,"SANTA BARBARA","CA","93101",,,,,,,"770307834","8055683814",,,,"2011-07-25T19:21:15-0500","DAVID PECKHAM",,,,,8,7,0,0,7,0,7,7,0,,"2C3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726091148P030016444118001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"METROPLEX, INC. LONG TERM DISABILITY PLAN","503","1992-05-01","METROPLEX, INC.",,,"200 E. RANDOLPH ST., SUITE 2100",,"CHICAGO","IL","60601",,,,,,,"200 E. RANDOLPH ST., SUITE 2100",,"CHICAGO","IL","60601",,,,,,,"362923701","3127265600","531310","METROPLEX, INC.",,"200 E. RANDOLPH ST., SUITE 2100",,"CHICAGO","IL","60601",,,,,,,"362923701","3127265600",,,,"2011-07-21T15:25:20-0500","THOMAS KORANDA",,,,,177,174,,,174,,174,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726103020P040103591329008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ARK-LA-TEX FINANCIAL SERVICES LLC 401 K PLAN","001","2005-01-01","ARK-LA-TEX FINANCIAL SERVICES, LLC",,,"5160 TENNYSON PARKWAY SUITE 2000W",,"PLANO","TX","75024",,,,,,,,,,,,,,,,,,"752838184","9723987625","522292","ARK-LA-TEX FINANCIAL SERVICES LLC",,"5160 TENNYSON PARKWAY SUITE 2000W",,"PLANO","TX","75024",,,,,,,"752838184","9723987625",,,,"2011-07-26T09:14:45-0500","HAROLD RASMUSSEN",,,,,363,198,,37,235,,235,70,16,,"3H3D2T2K2J2G2F2E",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726095527P030014752386001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOPE FOUNDATION FOR RETARDED CHILDREN EMPLOYEES 401(K) PLAN","001","1998-06-01","HOPE FOUNDATION FOR RETARDED CHILDREN INC.",,,"15403 HOPE VILLAGE RD",,"FRIENDSWOOD","TX","77546",,,,,,,,,,,,,,,,,,"746087577","2814002008","812990","HOPE FOUNDATION FOR RETARDED CHILDREN INC.",,"15403 HOPE VILLAGE RD",,"FRIENDSWOOD","TX","77546",,,,,,,"746087577","2814002008",,,,"2011-07-26T09:53:30-0500","JOSEPH CLINGER",,,,,39,34,0,0,34,0,34,31,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726101017P030031683623001","2010-01-08","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"SPIRKE BUSINESSES INC. 401(K) PLAN","001","2010-01-08","SPIRKE BUSINESSES INC.",,,"24 OLD FOX TRAIL",,"LAKE WYLIE","SC","29710",,,,,,,,,,,,,,,,,,"271629408","8033227748","339900","SPIRKE BUSINESSES INC.",,"24 OLD FOX TRAIL",,"LAKE WYLIE","SC","29710",,,,,,,"271629408","8033227748",,,,"2011-07-26T10:09:18-0500","KEITH SPIRO","2011-07-26T10:09:18-0500","KEITH SPIRO",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726100023P030014753122001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPITALCARE MEDICAL GROUP, LLC SHORT TERM DISABILITY INSURANCE PLAN","508","2002-07-01","CAPITALCARE MEDICAL GROUP LLC","CAPITALCARE MEDICAL GROUP LLC",,"501 NEW KARNER RD.","JOAN HAYNER, CEO","ALBANY","NY","122053882",,,,,,,,,,,,,,,,,,"161531979","5184521337","621111","CAPITALCARE MEDICAL GROUP, LLC","JOAN R. HAYNER, CEO","501 NEW KARNER RD.",,"ALBANY","NY","122053882",,,,,,,"161531979","5184521337",,,,"2011-07-26T09:59:39-0500","JOAN R. HAYNER, CEO",,,,,101,107,0,0,107,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725153109P030470036112006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHURCH DEVOE AND ASSOCIATTES PLLC 401K PROFIT SHARING PLAN","001","1999-01-01","CHURCH, DEVOE AND ASSOCIATTES, PLLC",,,"PO BOX 1237",,"OXFORD","MS","38655",,,,,,,,,,,,,,,,,,"043687731","6622340703","541211","CHURCH DEVOE AND ASSOCIATTES PLLC",,"PO BOX 1237",,"OXFORD","MS","38655",,,,,,,"043687731","6622340703",,,,"2011-07-25T09:18:41-0500","RICHARD DEVOE",,,,,20,14,,6,20,,20,,,,"3D2K2J2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725164823P030014687282005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VISION CARE PLAN - MANAGEMENT EMPLS","517","1992-01-01","WASHINGTON GAS LIGHT COMPANY",,,"101 CONSTITUTION AVENUE, NW",,"WASHINGTON","DC","20080",,,,,,,,,,,,,,,,,,"530162882","7037505584","221210","WASHINGTON GAS LIGHT COMPANY",,"101 CONSTITUTION AVENUE, NW",,"WASHINGTON","DC","20080",,,,,,,"530162882","7037505584",,,,"2011-07-25T12:31:30-0500","LUANNE S. GUTERMUTH",,,,,325,331,,,331,,,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725160812P040103109137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANESTHESIOLOGY CONSULTANTS OF VIRGINIA, INC. 401(K) PROFIT SHARING PLAN & TRUST","002","2007-01-01","ACV, INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"270907515","6207938473","621111","ACV, INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"270907515","6207938473","ACV, INC.","200270236","002","2011-07-25T16:08:11-0500","GEORGE S. COURY, MD",,,,,53,49,0,0,49,1,50,49,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","3","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726104200P030100809553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OEM FABRICATORS, INC. 401(K) PLAN AND TRUST","001","1995-01-01","OEM FABRICATORS, INC.",,,"300 MCMILLAN ROAD",,"WOODVILLE","WI","54028",,,,,,,,,,,,,,,,,,"391571676","7156982111","332900","OEM FABRICATORS, INC.",,"300 MCMILLAN ROAD",,"WOODVILLE","WI","54028",,,,,,,"391571676","7156982111",,,,"2011-07-26T10:40:49-0500","LAWRENCE LARSEN",,,,,229,279,0,29,308,0,308,166,15,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725145534P040103073169017","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RETIREMENT PLAN OF SEWARD PROSSER MELLON SEPARATE TRUST FOR CHILDREN","001","1969-07-01","SEWARD PROSSER MELLON SEPARATE TRUST FOR CHILDREN",,,"PO BOX RKM",,"LIGONIER","PA","156580780",,,,,,,,,,,,,,,,,,"256437500","7242386671","541990","LAWRENCE S BUSCH",,"PO BOX RKM",,"LIGONIER","PA","156580780",,,,,,,"251581158","7242388460",,,,"2011-07-25T11:14:55-0500","LAWRENCE S BUSCH",,,,,20,21,,1,22,,22,22,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725152425P030470019632001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"LIGHTHOUSE COMPUTER SERVICES, INC. 401(K) PLAN","002","1998-07-01","LIGHTHOUSE COMPUTER SERVICES, INC.",,,"6 BLACKSTONE VALLEY PLACE","#205","LINCOLN","RI","02865",,,,,,,"6 BLACKSTONE VALLEY PLACE","#205","LINCOLN","RI","02865",,,,,,,"050481955","4013340799","541512","LIGHTHOUSE COMPUTER SERVICES, INC.",,"6 BLACKSTONE VALLEY PLACE","#205","LINCOLN","RI","02865",,,,,,,"050481955","4013340799",,,,"2011-07-25T14:48:52-0500","KELLIE-ANN HEENAN","2011-07-25T14:43:37-0500","THOMAS MRVA",,,101,81,0,27,108,0,108,97,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725155744P030100310273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRISON BUSINESS SOLUTIONS, INC.","503","2003-03-01","TRISON BUSINESS SOLUTIONS, INC.",,,"17 BANK STREET",,"LEROY","NY","14482",,,,,,,,,,,,,,,,,,"161596358","5857689660","561300","TRISON BUSINESS SOLUTIONS, INC.",,"17 BANK STREET",,"LEROY","NY","14482",,,,,,,"161596358","5857689660",,,,"2011-07-25T14:33:20-0500","SUSAN MCQUILLEN","2011-07-25T14:33:20-0500","SUSAN MCQUILLEN",,,153,159,0,0,159,0,159,,,,,"4B4D4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725161654P030100320753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STINSON MORRISON HECKER LLP HEALTH AND WELFARE PLAN","507","2003-01-01","STINSON MORRISON HECKER LLP",,,"1201 WALNUT ST, STE 2900",,"KANSAS CITY","MO","641062150",,,,,,,,,,,,,,,,,,"440643135","8168428600","541110","STINSON MORRISON HECKER LLP",,"1201 WALNUT ST, STE 2900",,"KANSAS CITY","MO","641062150",,,,,,,"440643135","8168428600",,,,"2011-07-25T16:16:25-0500","TERRY BRUMMER",,,,,575,539,0,,539,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726082201P030471947536001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COOKEVILLE PEDIATRIC ASSOCIATES PLLC 401K PROFIT SHARING PLAN","001","2007-01-01","COOKEVILLE PEDIATRIC ASSOCIATES PLLC",,,"150 NORTH WILLOW AVENUE",,"COOKEVILLE","TN","38501",,,,,,,"150 NORTH WILLOW AVENUE",,"COOKEVILLE","TN","38501",,,,,,,"201984641","9315281485","621111","COOKEVILLE PEDIATRIC ASSOCIATES PLLC",,"150 NORTH WILLOW AVENUE",,"COOKEVILLE","TN","38501",,,,,,,"201984641","9315281485",,,,"2011-07-26T08:21:49-0500","LLOYD FRANKLIN",,,,,9,10,0,0,10,0,10,10,,,"2E2F2G2J3B2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726105511P030100818609001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE CLAYTON ENGINEERING COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","002","1989-01-01","THE CLAYTON ENGINEERING COMPANY",,,"11920 WESTLINE INDUSTRIAL DRIVE",,"ST. LOUIS","MO","63146",,,,,,,,,,,,,,,,,,"430753034","3146928888","541330","THE PLAN COMMITTEE - THE CLAYTON ENGINEERING COMPANY",,"11920 WESTLINE INDUSTRIAL DRIVE",,"ST. LOUIS","MO","63146",,,,,,,"430753034","3146928888",,,,"2011-07-20T14:06:27-0500","FRED L. IVY",,,,,44,18,8,12,38,1,39,39,2,,"2E2P",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725153109P030470036112014","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"MARK D GAUGHAN MDPC VIP PLUS FLEXIBLE PROFIT SHARING PLAN","001","2002-01-01","MARK D GAUGHAN, MD, PC",,,"523-B CAMINO DEL RIO SUITE B",,"DURANGO","CO","81303",,,,,,,,,,,,,,,,,,"841587891","9702471970","621111","MARK D GAUGHAN MD PC",,"523-B CAMINO DEL RIO SUITE B",,"DURANGO","CO","81303",,,,,,,"841587891","9702471970",,,,"2011-07-25T15:29:38-0500","ANITA ROHILLA",,,,,2,,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725143420P030014673298007","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"SAFETY AND INJURED WORKERS REHABILITATION FUND","501","1992-11-01","BOARD OF TRUSTEES OF SAFETY AND INJURED WORKERS REHABILITATION FUND",,,"1405 LILAC DRIVE NORTH SUITE 100",,"GOLDEN VALLEY","MN","554224528",,,,,,,,,,,,,,,,,,"411757224","7635930941","238100","BOARD OF TRUSTEES OF SAFETY AND INJURED WORKERS REH",,"1405 LILAC DRIVE NORTH SUITE 100",,"GOLDEN VALLEY","MN","554224528",,,,,,,"411757224","7635930941",,,,"2011-07-31T04:37:07-0500","JAMES E. BIGHAM","2011-07-31T04:37:07-0500","JAMES E. BIGHAM",,,765,629,,,629,,,,,45,,"4F4J",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725170940P030100344305001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"FREMONT GROUP RETIREMENT PLAN","001","1965-01-01","FREMONT INVESTORS INC.",,,"199 FREMONT STREET STE. 1900",,"SAN FRANCISCO","CA","941052245",,,,,,,,,,,,,,,,,,"942675217","4152848690","523900","FREMONT GROUP RETIREMENT PLAN COMMITTEE","C/O THE FREMONT GROUP","199 FREMONT ST. STE. 1900",,"SAN FRANCISCO","CA","941052245",,,,,,,"946712345","4152848690",,,,"2011-07-25T17:08:42-0500","GAEL SAPIRO, DIRECTOR OF HR",,,,,242,108,0,121,229,0,229,228,0,,"2E2F2G2J2K2R3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726100717P030014754066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BERTCH CABINET MFG DISABILITY PLAN","503","2008-01-01","BERTCH CABINET MFG., INC.",,,"4747 CRESTWOOD DR., PO BOX 2280",,"WATERLOO","IA","507042280",,,,,,,,,,,,,,,,,,"421122484","3192961300","337000","BERTCH CABINET MFG., INC.",,"4747 CRESTWOOD DR., PO BOX 2280",,"WATERLOO","IA","507042280",,,,,,,"421122484","3192961300",,,,"2011-07-26T10:05:45-0500","GARY BERTCH","2011-07-26T10:05:45-0500","GARY BERTCH",,,451,410,0,0,410,,,,,,,"4H4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726093011P030100749505009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GROUP MEDICAL HMO PLAN FOR EMPLOYEES OF TRINITY INDUSTRIES, INC. AND CERTAIN AFFILIATES","602","1986-04-01","TRINITY INDUSTRIES, INC.",,,"2525 N. STEMMONS FREEWAY",,"DALLAS","TX","75207",,,,,,,,,,,,,,,,,,"750225040","2146314420","336510","TRINITY INDUSTRIES, INC.",,"2525 N. STEMMONS FREEWAY",,"DALLAS","TX","75207",,,,,,,"750225040","2146314420",,,,"2011-07-26T09:24:16-0500","PAMELA BEHRENS",,,,,348,302,10,,312,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726100036P030014753234001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KOBELCO CONSTRUCTION MACHINERY AMERICA LLC WELFARE BENEFIT PLAN","501","1999-04-01","KOBELCO CONSTRUCTION MACHINERY AMERICA LLC",,,"501 RICHARDSON ROAD, SE",,"CALHOUN","GA","307013620",,,,,,,,,,,,,,,,,,"582642631","7066295572","333100","KOBELCO CONSTRUCTION MACHINERY AMERICA LLC",,"501 RICHARDSON ROAD, SE",,"CALHOUN","GA","307013620",,,,,,,"582642631","7066295572",,,,"2011-07-26T10:00:15-0500","ANGELA LAYTON","2011-07-26T10:00:15-0500","ANGELA LAYTON",,,160,116,0,0,116,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725152130P030100283953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DRT MFG. CO. RETIREMENT PLAN","001","1963-08-20","DRT HOLDINGS, INC.",,,"618 GREENMOUNT BLVD.",,"DAYTON","OH","45419",,,,,,,,,,,,,,,,,,"263788982","9372987391","331310","DRT HOLDINGS, INC.",,"618 GREENMOUNT BLVD.",,"DAYTON","OH","45419",,,,,,,"263788982","9372987391",,,,"2011-07-25T15:21:16-0500","GARY L. VAN GUNDY","2011-07-25T15:21:16-0500","GARY L. VAN GUNDY",,,463,396,0,47,443,1,444,416,18,,"2E2G2J2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725165036P030100335345001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"ST MARY MEDICAL CENTER TRAVEL ACCIDENT/LIFE INS PLAN","527","1988-04-01","ST. MARY MEDICAL CENTER",,"PATRICIA L MASON","1500 SOUTH LAKE PARK AVENUE",,"HOBART","IN","463426638",,,,,,,,,,,,,,,,,,"352007327","2193927140","622000","ST. MARY MEDICAL CENTER","PATRICIA L MASON","1500 SOUTH LAKE PARK AVENUE",,"HOBART","IN","463426638",,,,,,,"352007327","2193927140",,,,"2011-07-25T16:37:51-0500","PATRICIA L MASON",,,,,1122,1190,0,0,1190,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726095725P040103571073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SWALLOWS INSURANCE AGENCY RET. PLAN","001","1995-01-01","SWALLOWS INSURANCE AGENCY, INC.",,,"1020 W MAIN ST",,"LIVINGSTON","TN","38570",,,,,,,,,,,,,,,,,,"620966633","9318235641","524210","SWALLOWS INSURANCE AGENCY, INC.",,"1020 W MAIN ST",,"LIVINGSTON","TN","38570",,,,,,,"620966633","9318235641",,,,"2011-07-26T09:56:19-0500","DONNA WILSON",,,,,24,24,0,0,24,0,24,21,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726094424P030014751618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALLSOUTH FEDERAL CREDIT UNION GROUP DISABILITY PLAN","503","1984-01-01","ALLSOUTH FEDERAL CREDIT UNION",,,"6923 NORTH TRENHOLM ROAD",,"COLUMBIA","SC","29206",,,,,,,,,,,,,,,,,,"570407742","8037431818","522130","ALLSOUTH FEDERAL CREDIT UNION",,"6923 NORTH TRENHOLM ROAD",,"COLUMBIA","SC","29206",,,,,,,"570407742","8037431818",,,,"2011-07-26T09:43:30-0500","KEVIN CLUPPERT",,,,,266,270,0,0,270,,,,,,,"4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726103658P040103596065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BURNS BROS 401K PROFIT SHARING PLAN","001","1976-01-01","BURNS BROS CONTROLLED GROUP",,,"400 LEAVENWORTH AVENUE",,"SYRACUSE","NY","13204",,,,,,,"400 LEAVENWORTH AVENUE",,"SYRACUSE","NY","13204",,,,,,,"161113885","3154220261","423700","BURNS BROS CONTROLLED GROUP",,"400 LEAVENWORTH AVE.",,"SYRACUSE","NY","13204",,,,,,,"222847769","3154220261",,,,"2011-07-26T10:19:56-0500","CAROL ROGERS",,,,,72,57,0,38,95,0,95,54,3,,"2E2F2H2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726103706P040015282610001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KENYON PRESS INC 401K PLAN","001","1989-01-01","KENYON PRESS INC",,,"PO BOX 710",,"SHERBURNE","NY","13460",,,,,,,"PO BOX 710",,"SHERBURNE","NY","13460",,,,,,,"161092432","6076749066","323100","KENYON PRESS INC",,"PO BOX 710",,"SHERBURNE","NY","13460",,,,,,,"161092432","6076749066",,,,"2011-07-26T10:20:04-0500","CAROL ROGERS",,,,,46,43,0,1,44,0,44,0,24,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725145636P030100269569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JSP INTERNATIONAL GROUP LTD CAFETERIA PLAN","502","1994-01-01","JSP INTERNATIONAL GROUP",,,"1285 DRUMMERS LANE","SUITE 301","WAYNE","PA","19087",,,,,,,,,,,,,,,,,,"133308754","6106518630","326100","JSP INTERNATIONAL GROUP",,"1285 DRUMMERS LANE","SUITE 301","WAYNE","PA","19087",,,,,,,"133308754","6106518630",,,,"2011-07-25T14:56:09-0500","SUSANNE PONTO","2011-07-25T14:56:09-0500","SUSANNE PONTO",,,304,295,2,0,297,,297,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725145643P030469950032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"P.E.A. OF MICHGAN, INC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","P.E.A. OF MICHIGAN, INC.",,,"8077 LEE ROAD",,"BRIGHTON","MI","48116",,,,,,,"8077 LEE ROAD",,"BRIGHTON","MI","48116",,,,,,,"382535230","8102299125","541330","P.E.A. OF MICHIGAN, INC.",,"8077 LEE ROAD",,"BRIGHTON","MI","48116",,,,,,,"382535230","8102299125",,,,"2011-07-25T14:56:27-0500","MARY WAGNER",,,,,11,8,0,3,11,0,11,11,0,,"2E2F2J2T3D",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725153307P030100292353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRAXIS ENGINEERING TECHNOLOGIES, INC. WELFARE BENEFITS PLAN","504","2009-01-01","PRAXIS ENGINEERING TECHNOLOGIES, INC.",,,"135 NATIONAL BUSINESS PARKWAY","SUITE 310","ANNAPOLIS JUNCTION","MD","207011022",,,,,,,,,,,,,,,,,,"522347259","3014904299","541511","PRAXIS ENGINEERING TECHNOLOGIES, INC.",,"135 NATIONAL BUSINESS PARKWAY","SUITE 310","ANNAPOLIS JUNCTION","MD","207011022",,,,,,,"522347259","3014904299",,,,"2011-07-25T13:24:57-0500","DEBRA MOBLEY","2011-07-25T15:31:33-0500","MARK KLEIN",,,168,198,1,0,199,,199,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725182645P030470439376001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"PETER LEON, INC. PROFIT SHARING PLAN","002","2003-07-01","PETER LEON,INC.",,"PETER LEON","300 MEADOW LANE",,"MERION","PA","19066",,,,,,,"257 N. 52ND STREET",,"PHILADELPHIA","PA","19139",,,,,,,"232116859","2157478917","446110","PETER LEON,INC.","PETER LEON","300 MEADOW LANE",,"MERION","PA","19066",,,,,,,"232116859","2157478917",,,,"2011-07-25T16:20:32-0500","PETER LEON",,,,,3,2,,,2,,2,2,,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725162238P040103116305010","2010-01-01","2010-12-31","2",,,,,,"1",,,,,,"PENDLETON WOOLEN MILLS, INC. PENSION PLAN FOR HOURLY EMPLOYEES","002","1967-01-01","PENDLETON WOOLEN MILLS, INC",,,"220 NW BROADWAY",,"PORTLAND","OR","97209",,,,,,,"220 NW BROADWAY",,"PORTLAND","OR","972083030",,,,,,,"930250770","5032264801","315220","RETIREMENT COMMITTEE PENDLETON WOOL HOURLY EMPLOYEES PENSION PLAN AND",,"PO BOX 3030",,"PORTLAND","OR","972083030",,,,,,,"930250770","5032264801",,,,"2011-07-25T09:02:57-0500","DENNIS M. SIMMONDS","2011-07-25T09:02:57-0500","DENNIS M. SIMMONDS",,,531,173,132,187,492,24,516,,5,,"1B1G",,,,"1",,,,"1",,,,"1","1",,,,"1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726082443P030100709697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NJ DIVISION OF CRIMINAL INVESTIGATION DIVISION DEATH BENEFIT FUND","501","1995-11-05","NJ DIVISION OF CRIMINAL INVESTIGATION DIVISION DEATH BENEFIT FUND",,"FRANK STRYKER","PO BOX 741",,"SPRINGFIELD","NJ","07081",,,,,,,"PO BOX 741",,"SPRINGFIELD","NJ","07081",,,,,,,"223173696","9739214272","813000","NJ DIVISION OF CRIMINAL INVESTIGATION DIVISION DEATH BENEFIT FUND","FRANK STRYKER","PO BOX 741",,"SPRINGFIELD","NJ","07081",,,,,,,"223173696","9739214272",,,,"2011-07-26T08:24:24-0500","FRANK STRYKER",,,,,64,59,,,59,,59,,,,,"4L",,,,"1",,,"1","1",,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726100445P030100773137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHUCK LINDSAY CHEV-OLDS NADART SALARY DEF 401K PLAN","001","1984-01-01","CHUCK LINDSAY CHEV-OLDS",,,"627 EAST LINCOLNWAY",,"MORRISON","IL","61270",,,,,,,,,,,,,,,,,,"362861449","8156256300","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T09:58:39-0500","ALAN B. SVEDLOW",,,,,54,49,0,2,51,0,51,31,1,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725145857P030100270385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"K.L. JACK & CO RETIREMENT PLAN","001","1993-05-03","K. L. JACK & CO.",,,"145 WARREN AVE.",,"PORTLAND","ME","04103",,,,,,,"145 WARREN AVE.",,"PORTLAND","ME","04103",,,,,,,"010422707","2078783600","423700","K. L. JACK & CO.",,"145 WARREN AVE.",,"PORTLAND","ME","04103",,,,,,,"010422707","2078783600",,,,"2011-07-25T14:50:07-0500","CAROLINE LACHANCE",,,,,29,27,11,,38,,38,,,,"2G2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725145928P040103074977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INDUCTION HEAT TREATING CORP. RETIREMENT PLAN & TRUST","001","1991-01-01","INDUCTION HEAT TREATING CORP.",,,"775 TEK DRIVE",,"CRYSTAL LAKE","IL","60014",,,,,,,,,,,,,,,,,,"362799552","8154777788","339900","INDUCTION HEAT TREATING CORP.",,"775 TEK DRIVE",,"CRYSTAL LAKE","IL","60014",,,,,,,"362799552","8154777788",,,,"2011-07-25T14:55:01-0500","DAVID HAIMBAUGH",,,,,43,35,0,5,40,0,40,25,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725152511P040103089969001","2010-09-16","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"FORMAN DESIGN, INC. 401(K) PROFIT SHARING PLAN","001","2010-09-16","FORMAN DESIGN, INC.",,,"5765-F BURKE CENTRE PKWY #131",,"BURKE","VA","22015",,,,,,,,,,,,,,,,,,"273472585","7035776853","238300","FORMAN DESIGN, INC.",,"5765-F BURKE CENTRE PKWY #131",,"BURKE","VA","22015",,,,,,,"273472585","7035776853",,,,"2011-07-25T15:24:27-0500","DAVID FORMAN",,,,,2,2,0,0,2,0,2,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725154754P040015205922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEST BEND MUTUAL INSURANCE COMPANY EMPLOYEE ASSISTANCE PROGRAM PLAN","504","2009-01-01","WEST BEND MUTUAL INSURANCE COMPANY",,,"1900 SOUTH 18TH AVENUE",,"WEST BEND","WI","53095",,,,,,,,,,,,,,,,,,"390698170","2623345571","524150","WEST BEND MUTUAL INSURANCE COMPANY",,"1900 SOUTH 18TH AVENUE",,"WEST BEND","WI","53095",,,,,,,"390698170","2623345571",,,,"2011-07-25T15:45:45-0500","CHAD FELTZ",,,,,971,1041,81,0,1122,,,,,,,"4Q",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725170537P030014688242001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EBARA TECHNOLOGIES, INC.","501","2005-01-01","EBARA TECHNOLOGIES, INC.",,,"51 MAIN AVENUE",,"SACRAMENTO","CA","95838",,,,,,,,,,,,,,,,,,"770270092","9169237502","333900","EBARA TECHNOLOGIES, INC.",,"51 MAIN AVENUE",,"SACRAMENTO","CA","95838",,,,,,,"770270092","9169237502",,,,"2011-07-25T17:02:58-0500","STANLEY CORUM",,,,,166,163,0,0,163,0,,0,0,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726102752P030472289680001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"MCMONAGLE SAVINGS AND RETIREMENT PLAN","472","1987-07-01","MCMONAGLE LUMBER, INC.",,,"C/O RETIREMENT STRATEGIES, LLC","107 W MAIN STREET","LITTLE CHUTE","WI","54140",,,,,,,,,,,,,,,,,,"390976344","9203363134","444190","MCMONAGLE LUMBER, INC.",,"C/O RETIREMENT STRATEGIES, LLC","107 W MAIN STREET","LITTLE CHUTE","WI","54140",,,,,,,"390976344","9203363134",,,,"2011-07-26T10:27:34-0500","STEVEN J. MC MONAGLE",,,,,41,32,0,5,37,0,37,31,1,,"2E2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726093013P040103559713002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE GEL GROUP INC EMPLOYEE BENEFIT PLAN","501","1991-06-01","THE GEL GROUP, INC",,,"PO BOX 30712",,"CHARLESTON","SC","29417",,,,,,,,,,,,,,,,,,"570713831","8435568171","541700","THE GEL GROUP INC",,"PO BOX 30712",,"CHARLESTON","SC","29417",,,,,,,"570713831","8435568171",,,,"2011-07-25T10:18:54-0500","DOUGLAS E EARNST",,,,,321,303,1,,304,,304,,,,,"4Q4H4E4D4B4A","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725211919P040103255761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PACIFIC MARINE & SUPPLY CO., LTD. & AFFILIATES LONG-TERM DISABILITY INSURANCE PLAN","503","1991-07-01","PACIFIC MARINE & SUPPLY CO., LTD.",,,"P.O. BOX 29816",,"HONOLULU","HI","968200000",,,,,,,,,,,,,,,,,,"990072245","8085317001","541990","PACIFIC MARINE & SUPPLY CO., LTD.",,"P.O. BOX 29816",,"HONOLULU","HI","968200000",,,,,,,"990072245","8085317001",,,,"2011-07-25T21:10:15-0500","GILIW ABENES",,,,,110,113,0,0,113,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726091700P030472092640001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROCA RESOURCE COMPANY, INC. PROFIT SHARING PLAN","001","1998-01-01","ROCA RESOURCE COMPANY, INC.",,,"PO BOX 1981",,"MIDLAND","TX","79702",,,,,,,,,,,,,,,,,,"752353788","4326822554","211110","ROCA RESOURCE COMPANY, INC.",,"PO BOX 1981",,"MIDLAND","TX","79702",,,,,,,"752353788","4326822554",,,,"2011-07-26T08:25:58-0500","ALEX ARELLANO",,,,,6,5,0,0,5,0,5,3,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726100835P030100777297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PETE HARKNESS CHEVROLET BUICK PONTIAC, INC. NADART SALARY DEF 401K PLAN","001","2005-02-01","PETE HARKNESS CHEVROLET BUICK PONTI",,,"1003 NORTH 18TH STREET",,"CENTERVILLE","IA","52544",,,,,,,,,,,,,,,,,,"201718661","6414374040","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T09:58:41-0500","ALAN B. SVEDLOW",,,,,12,13,0,0,13,0,13,6,1,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725145412P040465653712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SSM HEALTH CARE HEALTH CARE SPENDING ACCOUNT PLAN","504","1990-01-01","SSM HEALTH CARE",,,"477 NORTH LINDBERGH BLVD.",,"ST. LOUIS","MO","631417813",,,,,,,,,,,,,,,,,,"466029223","3149947800","622000","SSM HEALTH CARE",,"477 NORTH LINDBERGH BLVD.",,"ST. LOUIS","MO","631417813",,,,,,,"466029223","3149947800",,,,"2011-07-25T14:22:37-0500","SUSAN E. GOLDBERG","2011-07-25T14:22:37-0500","SUSAN E. GOLDBERG",,,1855,1955,0,0,1955,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725183908P030100384369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"D. R. SCHOLZ, INC. ACCIDENT PROTECTION PLAN","501","1996-04-01","D.R. SCHOLZ, INC.",,,"18607 FOREST BEND CREEK WAY",,"SPRING","TX","77379",,,,,,,,,,,,,,,,,,"760076950","7138243995","722210","D.R. SCHOLZ, INC.",,"18607 FOREST BEND CREEK WAY",,"SPRING","TX","77379",,,,,,,"760076950","7138243995",,,,"2011-07-25T18:38:02-0500","DENNIS SCHOLZ","2011-07-25T18:38:02-0500","DENNIS SCHOLZ",,,105,105,0,0,105,,,,,,,"4A4D4E4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110726091806P030100741601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QUINCY MEDICAL GROUP LIFE INSURANCE PLAN","503","2000-01-01","QUINCY MEDICAL GROUP",,,"1025 MAINE",,"QUINCY","IL","62301",,,,,,,,,,,,,,,,,,"371206525","2172226550","621111","QUINCY MEDICAL GROUP",,"1025 MAINE",,"QUINCY","IL","62301",,,,,,,"371206525","2172226550",,,,"2011-07-26T08:00:14-0500","ROBERT JOHNSON",,,,,597,583,38,38,659,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726081857P030100707265001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"FUTURE COMPUTER SYSTEMS, INC. 401(K) PLAN","001","2007-12-07","FUTURE COMPUTER SYSTEMS, INC.",,"WILLIAM T. CARTER","508 CAHABA VALLEY CIRCLE",,"PELHAM","AL","35124",,,,,,,"508 CAHABA VALLEY CIRCLE",,"PELHAM","AL","35124",,,,,,,"630982650","2057336741","541511","FUTURE COMPUTER SYSTEMS, INC.","WILLIAM T. CARTER","508 CAHABA VALLEY CIRCLE",,"PELHAM","AL","35124",,,,,,,"630982650","2057336741",,,,"2011-07-22T16:29:21-0500","WILLIAM CARTER",,,,,8,8,0,0,8,0,8,9,0,,"2E2F2J2K3E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726105158P040103603377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL STRUCTURES, INC. PROFIT SHARING PLAN","001","1998-01-01","NATIONAL STRUCTURES, INC.",,,"145 DWIGHT PARK DRIVE",,"SYRACUSE","NY","13209",,,,,,,"145 DWIGHT PARK DRIVE",,"SYRACUSE","NY","13209",,,,,,,"161494955","3154130100","238300","NATIONAL STRUCTURES, INC.",,"145 DWIGHT PARK DRIVE",,"SYRACUSE","NY","13209",,,,,,,"161494955","3154130100",,,,"2011-07-26T10:34:56-0500","DOMINIC MACIA",,,,,14,13,0,1,14,0,14,7,0,,"2A2F3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726094508P030014751714009","2010-01-01","2010-12-31","3",,,,,,,,,,,,"SOUTH CAROLINA BANKERS EMPLOYEE BENEFIT TRUST","501","2000-01-01","SPRATT SAVINGS & LOAN ASSOCIATION",,,"PO BOX 579",,"CHESTER","SC","29706",,,,,,,,,,,,,,,,,,"570252520","8033855102","522120","SPRATT SAVINGS & LOAN ASSOCIATION",,"PO BOX 579",,"CHESTER","SC","29706",,,,,,,"570252520","8033855102",,,,"2011-07-26T09:34:35-0500","GLENN ANDERSON","2011-07-26T09:33:46-0500","GLENN ANDERSON",,,19,19,,,19,,,,,,,"4A4B","1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725173308P030100353313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRIPLE R CHILD CARE OF ARIZONA 401K PLAN","001","2009-01-09","TRIPLE R CHILD CARE OF ARIZONA",,,"5009 EAST MARCONI AVENUE",,"SCOTTSDALE","AZ","85254",,,,,,,,,,,,,,,,,,"860906646","6022375107","624410","TRIPLE R CHILD CARE OF ARIZONA",,"5009 EAST MARCONI AVENUE",,"SCOTTSDALE","AZ","85254",,,,,,,"860906646","6022375107","R & M INVESTMENT GROUP, INC.","264049571","001","2011-07-25T17:32:53-0500","MARCIA FISCHBACH","2011-07-25T17:32:53-0500","MARCIA FISCHBACH",,,20,20,0,0,20,0,20,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725213008P040466473888001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BELARMINO A. NUNES PROFIT SHARING PLAN","002","1992-10-12","BELARMINO A. NUNES, MD",,,"22 GREENWOOD LANE",,"LINCOLN","RI","02865",,,,,,,,,,,,,,,,,,"050385197","4017232818","621111","BELARMINO A. NUNES, MD",,"22 GREENWOOD LANE",,"LINCOLN","RI","02865",,,,,,,"050385197","4017232818",,,,"2011-07-25T21:28:49-0500","BELARMINO A. NUNES, MD","2011-07-21T22:46:32-0500","BELARMINO A. NUNES, MD",,,5,5,,,5,,5,,,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725162427P040465902928001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"MACQUARIE HOLDINGS USA INC SEVERANCE PAY PLAN","504","2005-10-01","MACQUARIE HOLDINGS USA INC",,,"125 W. 55TH STREET",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"133789912","2122312087","523110","MACQUARIE HOLDINGS USA INC ADMINISTRATIVE COMMITTEE","C/O HEAD OF HR-AMERICAS","125 W. 55TH STREET",,"NEW YORK","NY","10019",,,,,,,"133789912","2122312087",,,,"2011-07-25T16:23:13-0500","JANA CARLSON",,,,,2142,2193,,,2193,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110726083702P040467674336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOWARD BENTLEY BUICK GMC, INC. NADART SALARY DEF 401K PLAN","001","1996-01-01","HOWARD BENTLEY BUICK GMC, INC.",,,"4321 HWY 431",,"ALBERTVILLE","AL","35950",,,,,,,,,,,,,,,,,,"621352815","2568781050","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278","HOWARD BENTLEY BUICK PONTIAC GMC, I",,,"2011-07-26T07:56:32-0500","ALAN B. SVEDLOW",,,,,35,42,0,3,45,0,45,19,0,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726084509P030100723089005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PRAIRIE CONTRACTORS, INC. EMPLOYEE PROFIT SHARING TRUST","001","2000-01-01","PRAIRIE CONTRACTORS, INC.",,,"9318 GULFSTREAM SUITE C",,"FRANKFORT","IL","60423",,,,,,,,,,,,,,,,,,"200315323","8154691904","236200","PRAIRIE CONTRACTORS, INC.",,"9318 GULFSTREAM SUITE C",,"FRANKFORT","IL","60423",,,,,,,"200315323","8154691904",,,,"2011-07-26T07:18:00-0500","RICHARD LLOYD","2011-07-26T07:18:20-0500","PETER HEGARTY",,,25,25,2,0,27,0,27,22,2,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726161104P040103800081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GEORGE GROWNEY MOTORS NADART SALARY DEF 401K PLAN","001","1974-07-01","GEORGE GROWNEY MOTORS",,,"1160 MAIN ST",,"RED BLUFF","CA","96080",,,,,,,,,,,,,,,,,,"942567655","5305271034","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T16:09:25-0500","ALAN B. SVEDLOW",,,,,17,16,1,0,17,0,17,13,0,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726151153P040468668080001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FARZAD FIROUZIAN 401 (K) PLAN","001","2003-01-01","FARZAD FIROUZIAN","SMILE MAKERS",,"3754 PENBROOKE GREEN E",,"NEW ALBANY","OH","43054",,,,,,,"3754 PENBROOKE GREEN E",,"NEW ALBANY","OH","43054",,,,,,,"311425719","6148485001","621210","FARZAD FIROUZIAN",,"3754 PENBROOKE GREEN E",,"NEW ALBANY","OH","43054",,,,,,,"311425719","6148485001",,,,"2011-07-26T15:11:01-0500","NAT RAMMOHAN",,,,,9,9,,,9,,9,9,0,,"2E2F2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726110022P040015284322003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CAM CREDITS INC","001","1997-06-20","CAM CREDITS, INC",,,"PO BOX E",,"LA GRANDE","OR","97850",,,,,,,,,,,,,,,,,,"930677729","5419637177","561450","CAM CREDITS INC",,"PO BOX E",,"LA GRANDE","OR","97850",,,,,,,"930677729","5419637177",,,,"2011-07-25T16:13:36-0500","JULIE HICKERSON",,,,,9,7,,2,9,,9,9,,,"2K2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726121423P030014767058006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WHEELESS, SHAPPLEY, BAILESS & RECTOR, LLP PLAN","001","1987-03-01","WHEELESS,SHAPPLEY,BAILESS,& RECTOR,LLP",,,"P.O. BOX 991",,"VICKSBURG","MS","39181",,,,,,,"1301 WASHINGTON STREET, SUITE 800",,"VICKSBURG","MS","39181",,,,,,,"364515626","6016368451","541110","WHEELESS,SHAPPLEY,BAILESS,& RECTOR,LLP",,"P.O. BOX 991",,"VICKSBURG","MS","39181",,,,,,,"364515626","6016368451",,,,"2011-07-19T08:06:52-0500","KENNETH RECTOR",,,,,8,7,,1,8,,8,8,,,"2E2G2K3D","4B","1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726110451P040103610593001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"NY CCS MEDICAL SERVICES PC","509","2010-08-01","NY CCS MEDICAL SERVICES PC",,"MEL WAYMASTER","3343 PERIMETER HILL DRIVE","SUITE 300","NASHVILLE","TN","37211",,,,,,,"10 WOODS RD",,"VALHALLA","NY","10595",,,,,,,"272698906","6153245709","621498","NY CCS MEDICAL SERVICES PC","MEL WAYMASTER","3343 PERIMETER HILL DRIVE","SUITE 300","NASHVILLE","TN","37211",,,,,,,"272698906","6153245709",,,,"2011-07-25T16:18:12-0500","MEL WAYMASTER",,,,,28,31,,,31,,31,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726125058P030100893313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ELDERSERVE LICENSED HOME CARE SERVICES AGENCY, INC GROUP LIFE PLAN","502","1997-01-01","ELDERSERVE LICENSED HOME CARE SERVICES AGENCY, INC.",,,"5901 PALISADE AVENUE",,"RIVERDALE","NY","104711205",,,,,,,,,,,,,,,,,,"133900644","9143685524","623000","ELDERSERVE LICENSED HOME CARE SERVICES AGENCY, INC.",,"5901 PALISADE AVENUE",,"RIVERDALE","NY","104711205",,,,,,,"133900644","9143685524",,,,"2011-07-26T12:50:42-0500","ELLEN BURKE",,,,,327,312,0,0,312,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726155445P030101037473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMPREHENSIVE HEALTH PLAN FOR EMPLOYEES OF BANK HAPOALIM BM","502","1980-06-01","BANK HAPOALIM B.M.",,,"1177 AVENUE OF THE AMERICAS","HUMAN RESOURCES DEPT","NEW YORK","NY","10036",,,,,,,,,,,,,,,,,,"132775750","2127822042","522110","BANK HAPOALIM B.M.",,"1177 AVENUE OF THE AMERICAS","HUMAN RESOURCES DEPT","NEW YORK","NY","10036",,,,,,,"132775750","2127822042",,,,"2011-07-26T15:48:22-0500","CARMEN MILLS","2011-07-26T15:48:22-0500","CARMEN MILLS",,,275,307,26,0,333,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726161508P040103802481004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"F STEPHEN BAUER PROFIT SHARING PLAN","001","1981-12-03","F STEPHEN BAUER DMD",,,"22 SMULL AVENUE",,"CALDWELL","NJ","07006",,,,,,,,,,,,,,,,,,"222256011","9732263575","621210","F STEPHEN BAUER DMD",,"22 SMULL AVENUE",,"CALDWELL","NJ","07006",,,,,,,"222256011","9732263575",,,,"2011-07-26T16:56:37-0500","F STEPHEN BAUER",,,,,2,2,0,0,2,0,2,2,,,"2E2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726133722P030014775906001","2003-01-01","2003-12-31","3",,"0","0","0","0","0","0","0","1","0",,"KLINGENSMITH DRUG, INC. WELFARE PLAN","501","1999-01-01","KLINGENSMITH DRUG, INC.",,,"P.O. BOX 151, 401 FORD STREET",,"FORD CITY","PA","16226",,,,,,,,,,,,,,,,,,"251258407","7247638889","446110","KLINGENSMITH DRUG, INC.",,"P.O. BOX 151, 401 FORD STREET",,"FORD CITY","PA","16226",,,,,,,"251258407","7247638889",,,,"2011-07-26T13:19:30-0500","JULIE ALLEN","2011-07-26T13:19:30-0500","JULIE ALLEN",,,171,174,,,174,,,,,,,"4A4B4C4D4E4F4H","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726161526P040103802609001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"INCIPE LLC DBA HAWK FORD OF OAK LAWN NADART SALARY DEF 401K PLAN","002","2007-01-01","INCIPE LLC DBA HAWK FORD OF OAK LAW",,,"6100 WEST 95TH STREET",,"OAK LAWN","IL","60453",,,,,,,,,,,,,,,,,,"204991334","7082338901","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T16:09:26-0500","ALAN B. SVEDLOW",,,,,38,36,0,1,37,0,37,19,1,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726133725P040468422704001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"MANSFIELD PLUMBING PRODUCTS LLC EMPLOYEES' WELFARE PLAN","510","1995-01-01","MANSFIELD PLUMBING PRODUCTS LLC",,,"150 FIRST STREET",,"PERRYSVILLE","OH","44864",,,,,,,"150 FIRST STREET",,"PERRYSVILLE","OH","44864",,,,,,,"311739929","4199385211","339900","MANSFIELD PLUMBING PRODUCTS LLC",,"150 FIRST STREET",,"PERRYSVILLE","OH","44864",,,,,,,"311739929","4199385211",,,,"2011-07-26T13:20:22-0500","PHILIP TAGGART",,,,,466,483,3,0,486,0,486,0,0,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1",,"0","0",,,"1","4",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726153310P040103779809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORNFORTH-CAMPBELL MOTORS NADART SALARY DEF 401K PLAN","001","1963-01-01","CORNFORTH-CAMPBELL MOTORS",,,"305 2ND ST SE",,"PUYALLUP","WA","98372",,,,,,,,,,,,,,,,,,"910777037","2538487139","811120","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T15:26:31-0500","ALAN B. SVEDLOW",,,,,27,12,2,14,28,0,28,28,2,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726152753P030101015905001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"GRANITE GROUP WHOLESALERS PROFIT SHARING PLAN & TRUST","001","1983-10-07","GRANITE GROUP WHOLESALERS, LLC",,,"6 STORRS ST",,"CONCORD","NH","03301",,,,,,,,,,,,,,,,,,"020495286","6032241901","423700","GRANITE GROUP WHOLESALERS, LLC",,"6 STORRS ST",,"CONCORD","NH","03301",,,,,,,"020495286","6032241901",,,,"2011-07-26T04:27:41-0500","JOSEPH GOFF",,,,,430,331,0,78,409,0,409,345,8,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726113652P030100849281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRANDE CHEESE COMPANY LIFE INSURANCE PLAN","504","1979-06-01","GRANDE CHEESE COMPANY",,,"DAIRY ROAD","PO BOX 67","BROWNSVILLE","WI","530060067",,,,,,,,,,,,,,,,,,"390867071","9202697200","311500","GRANDE CHEESE COMPANY",,"DAIRY ROAD","PO BOX 67","BROWNSVILLE","WI","530060067",,,,,,,"390867071","9202697200",,,,"2011-07-26T11:36:34-0500","RYAN CROPPER","2011-07-26T11:36:34-0500","RYAN CROPPER",,,721,697,0,0,697,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726134634P030014776834001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KENSEY NASH CORPORATION FLEXIBLE BENEFITS PLAN","501","1992-07-01","KENSEY NASH CORPORATION",,,"735 PENNSYLVANIA DRIVE",,"EXTON","PA","19341",,,,,,,,,,,,,,,,,,"363316412","4847132100","339110","KENSEY NASH CORPORATION",,"735 PENNSYLVANIA DRIVE",,"EXTON","PA","19341",,,,,,,"363316412","4847132100",,,,"2011-07-26T13:41:48-0500","JOAN HUGGINS","2011-07-26T13:43:51-0500","MICHAEL CELANO",,,316,266,11,0,277,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726123219P040103657409001","2010-06-01","2010-12-31","3",,"0","0","0","1","0","0","0","0","0",,"GROUP LIFE INSURANCE","502","1958-06-01","MICHIGAN FARM BUREAU",,,"7373 W SAGINAW HWY",,"LANSING","MI","48917",,,,,,,"7373 W SAGINAW HWY",,"LANSING","MI","48917",,,,,,,"381718391","5173237000","115110","MICHIGAN FARM BUREAU",,"7373 W SAGINAW HWY",,"LANSING","MI","48917",,,,,,,"381718391","5173237000",,,,"2011-07-26T11:47:24-0500","THOMAS WISEMAN",,,,,1050,925,125,0,1050,0,1050,,0,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726130405P040032506983001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RSI HOME PRODUCTS 401K RETIREMENT SAVINGS PLAN","001","1991-01-01","RSI HOME PRODUCTS, INC.",,,"400 E ORANGETHORPE AVE",,"ANAHEIM","CA","92801",,,,,,,"400 E ORANGETHORPE AVE",,"ANAHEIM","CA","92801",,,,,,,"954473773",,"321900","RSI HOME PRODUCTS, INC.",,"400 E ORANGETHORPE AVE",,"ANAHEIM","CA","92801",,,,,,,"954473773",,,,,"2011-07-26T13:01:23-0500","JERRY LIU",,,,,1793,1972,2,120,2094,4,2098,514,1,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726160008P030101042113002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CULLEN, CARSNER, SEERDEN & CULLEN PROFIT SHARING & 401(K) PLAN","001","1997-01-01","CULLEN, CARSNER, SEERDEN & CULLEN",,,"119 SOUTH MAIN",,"VICTORIA","TX","77901",,,,,,,,,,,,,,,,,,"742864211","3615736318","541110","CULLEN, CARSNER, SEERDEN & CULLEN",,"119 SOUTH MAIN",,"VICTORIA","TX","77901",,,,,,,"742864211","3615736318",,,,"2011-07-21T14:41:01-0500","KEVIN CULLEN",,,,,10,9,0,1,10,0,10,10,,,"2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726130447P030100905633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INFILCO DEGREMONT, INC GROUP LIFE INS. AD&D","503","1974-03-01","INFILCO DEGREMONT, INC",,,"8007 DISCOVERY DRIVE",,"RICHMOND","VA","232298605",,,,,,,,,,,,,,,,,,"222023093","8047567600","541330","INFILCO DEGREMONT, INC",,"8007 DISCOVERY DRIVE",,"RICHMOND","VA","232298605",,,,,,,"222023093","8047567600",,,,"2011-07-26T13:04:27-0500","A. G. MASON DIRICKSON",,,,,355,385,,,385,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726111259P030014760786001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PORT CITY NISSAN, INC. NADART SALARY DEF 401K PLAN","001","1995-02-01","PORT CITY NISSAN, INC.",,,"120 SPAULDING TURNPIKE",,"PORTSMOUTH","NH","03801",,,,,,,,,,,,,,,,,,"020436526","6034316500","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T11:02:02-0500","ALAN B. SVEDLOW",,,,,49,43,0,4,47,0,47,24,1,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726131923P040015299810002","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OBERLIN COLLEGE LONG TERM DISABILITY PLAN FOR FACULTY AND STAFF","505","1967-03-01","OBERLIN COLLEGE",,,"173 WEST LORAIN STREET",,"OBERLIN","OH","44074",,,,,,,"173 WEST LORAIN STREET",,"OBERLIN","OH","44074",,,,,,,"340714363","4407758430","611000","OBERLIN COLLEGE",,"173 WEST LORAIN STREET",,"OBERLIN","OH","44074",,,,,,,"340714363","4407758430",,,,"2011-07-26T13:02:18-0500","MARK BATES","2011-07-26T13:02:18-0500","KIM WIGGERLY",,,1057,1049,0,0,1049,0,1049,0,0,,,"4H","1","0","0","0","1","0","0","0",,"0","0",,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726132428P040468385536001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GARNET CAPITAL ADVISORS LLC 401(K) PLAN","001","2004-11-15","GARNET CAPITAL ADVISORS, LLC",,,"500 MAMARONECK AVENUE","SUITE 215","HARRISON","NY","10528",,,,,,,"500 MAMARONECK AVENUE","SUITE 215","HARRISON","NY","10528",,,,,,,"522391970","9149091000","522300","GARNET CAPITAL ADVISORS, LLC",,"500 MAMARONECK AVENUE","SUITE 215","HARRISON","NY","10528",,,,,,,"522391970","9149091000",,,,"2011-07-25T15:23:19-0500","ROBIN ISHMAEL",,,,,32,31,0,8,39,0,39,26,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726155238P030473177040001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNIVERSITY OF IOWA FOUNDATION TIAA CREF RETIREMENT PLAN","001","1959-07-01","STATE UNIVERSITY OF IOWA FOUNDATION",,,"ONE W PARK RD",,"IOWA CITY","IA","52240",,,,,,,,,,,,,,,,,,"420796760","3193353305","611000","STATE UNIVERSITY OF IOWA FOUNDATION",,"ONE W PARK RD",,"IOWA CITY","IA","52240",,,,,,,"420796760","3193353305",,,,"2011-07-26T15:38:57-0500","SHERRI P. FURMAN","2011-07-26T15:38:57-0500","SHERRI P. FURMAN",,,407,355,0,57,412,0,412,376,0,,"2L2G",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726163511P030473288656001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PUCKETT MACHINERY COMPANY 401(K) RETIREMENT SAVINGS PLAN AND TRUST","001","1957-09-27","PUCKETT MACHINERY COMPANY",,,"P. O. BOX 3170",,"JACKSON","MS","392073170",,,,,,,"3263 HIGHWAY 80 WEST",,"JACKSON","MS","392073170",,,,,,,"640395517","6019696000","444190","PUCKETT MACHINERY COMPANY",,"P. O. BOX 3170",,"JACKSON","MS","392073170",,,,,,,"640395517","6019696000",,,,"2011-07-26T16:34:36-0500","WILLIAM E. FARLOW, JR.",,,,,394,303,20,44,367,2,369,335,6,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726111340P040468065728001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UBISENSE, INC. RETIREMENT PLAN AND TRUST","001","1999-01-01","UBISENSE, INC.",,,"5445 DTC PARKWAY","#1110","GREENWOOD VILLAGE","CO","80111",,,,,,,,,,,,,,,,,,"200196270","3035396922","541519","UBISENSE, INC.",,"5445 DTC PARKWAY","#1110","GREENWOOD VILLAGE","CO","80111",,,,,,,"200196270","3035396922",,,,"2011-07-26T11:13:32-0500","GRAHAM HANDBY","2011-07-26T11:13:32-0500","GRAHAM HANDBY",,,32,37,0,8,45,0,45,43,0,,"2E3D2G2J2K2F2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726133218P040103697169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JANZEN AUTOMOTIVE GROUP, INC. NADART SALARY DEF 401K PLAN","001","1992-04-01","JANZEN AUTOMOTIVE GROUP, INC.",,,"4900 W 6TH AVE",,"STILLWATER","OK","74074",,,,,,,,,,,,,,,,,,"731371230","4053724550","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T13:25:46-0500","ALAN B. SVEDLOW",,,,,31,30,0,1,31,0,31,22,1,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726152528P030014790466001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TUITION REIMBURSEMENT","540","1993-01-01","EPPENDORF, INC. & ITS AFFILIATED COMPANIES",,,"175 FRESHWATER BLVD",,"ENFIELD","CT","06082",,,,,,,,,,,,,,,,,,"113521426","8602533470","423400","EPPENDORF, INC. & ITS AFFILIATED COMPANIES",,"175 FRESHWATER BLVD",,"ENFIELD","CT","06082",,,,,,,"113521426","8602533470",,,,"2011-07-26T15:22:41-0500","FELICIA E. NELSON","2011-07-26T15:22:41-0500","FELICIA E. NELSON",,,307,313,,,313,,,,,,,"4J","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726155241P040002927748014","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DESERET GENERATION & TRANSMISSION CO-OPERATIVE EMPLOYEE VISION BENEFIT PLAN","535","1997-01-01","DESERET GENERATION & TRANSMISSION CO-OPERATIVE",,,"10714 SOUTH JORDAN GATEWAY",,"SOUTH JORDAN","UT","84095",,,,,,,,,,,,,,,,,,"870350540","8016196500","221100","DESERET GENERATION & TRANSMISSION CO-OPERATIVE",,"10714 SOUTH JORDAN GATEWAY",,"SOUTH JORDAN","UT","84095",,,,,,,"870350540","8016196500",,,,"2011-07-26T15:15:01-0500","KIMBALL RASMUSSEN",,,,,143,143,,,143,,143,,,,,"4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726115702P030100859761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONCHO VALLEY HHC OF WEST TEXAS, LLC 401(K) PLAN","001","2008-06-01","CONCHO VALLEY HHC OF WEST TEXAS",,,"3103 SOUTHWEST BLVD",,"SAN ANGELO","TX","76904",,,,,,,,,,,,,,,,,,"200069939","3259448916","621610","CONCHO VALLEY HHC OF WEST TEXAS",,"3103 SOUTHWEST BLVD",,"SAN ANGELO","TX","76904",,,,,,,"200069939","3259448916",,,,"2011-07-25T10:13:41-0500","DONALD TOWNSEND",,,,,5,0,0,5,5,0,5,5,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726134742P040015302210001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STAHL COMPANY GROUP DENTAL PLAN","502","1980-06-01","STAHL SPECIALTY COMPANY",,,"111 EAST PACIFIC STREET",,"KINGSVILLE","MO","64061",,,,,,,"111 EAST PACIFIC STREET",,"KINGSVILLE","MO","64061",,,,,,,"440609809","8165973322","331400","STAHL SPECIALTY COMPANY",,"111 EAST PACIFIC STREET",,"KINGSVILLE","MO","64061",,,,,,,"440609809","8165973322",,,,"2011-07-26T13:37:21-0500","MICHAEL HAWES",,,,,228,230,,,230,0,230,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726135425P040103711057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PACIFIC METAL STAMPINGS INCORP 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","PACIFIC METAL STAMPINGS",,,"28415 WITHERSPOON PARKWAY",,"VALENCIA","CA","91355",,,,,,,,,,,,,,,,,,"954263718","6612577656","332110","PACIFIC METAL STAMPINGS",,"28415 WITHERSPOON PARKWAY",,"VALENCIA","CA","91355",,,,,,,"954263718","6612577656",,,,"2011-07-26T01:54:22-0500","PACIFIC METAL STAMPINGS",,,,,33,24,0,2,26,0,26,22,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","1","1","0","1",,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726123432P030100880513001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"HEALTHCOMP FLEXIBLE BENEFITS PLAN","502","1996-04-01","HEALTHCOMP, INC.",,,"P.O. BOX 45018",,"FRESNO","CA","937185018",,,,,,,"621 SANTA FE STREET",,"FRESNO","CA","937185018",,,,,,,"770385729","5594992450","524290","HEALTHCOMP, INC.",,"P.O. BOX 45018",,"FRESNO","CA","937185018",,,,,,,"770385729","5594992450",,,,"2011-07-26T12:33:36-0500","MICHAEL BOUSKOS, CFO",,,,,158,158,,,158,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726123436P030100880609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KAWASAKI MOTORS MANUFACTURING CORP., U.S.A. MEDICAL INSURANCE PLAN","504","1978-01-01","KAWASAKI MOTORS MANUFACTURING CORP. , U.S.A.",,,"6600 NW 27TH STREET",,"LINCOLN","NE","685248904",,,,,,,,,,,,,,,,,,"470640533","4024766600","336990","KAWASAKI MOTORS MANUFACTURING CORP. , U.S.A.",,"6600 NW 27TH STREET",,"LINCOLN","NE","685248904",,,,,,,"470640533","4024766600",,,,"2011-07-26T12:33:44-0500","MICHELLE EUREK",,,,,1935,1887,28,4,1919,,,,,,,"4A4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726124013P030014769650002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TECH TALENT","001","2004-01-01","ALEX WENZ",,,"5304 LIMERICK AVE",,"SAN DIEGO","CA","92117",,,,,,,"5304 LIMERICK AVE",,"SAN DIEGO","CA","92117",,,,,,,"161718958","6195188488","561300","ALEX WENZ",,"5304 LIMERICK AVE",,"SAN DIEGO","CA","92117",,,,,,,"161718958",,,,,"2011-07-28T10:32:07-0500","ALEX WENZ","2011-07-28T10:32:07-0500","ALEX WENZ",,,2,2,,,2,,2,2,,,"2E2G2J2R3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726124027P030014769714001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NOBLE AND GREENOUGH SCHOOL GROUP LIFE INSURANCE","502","1983-11-01","NOBLE AND GREENOUGH SCHOOL",,"STEPHEN GINSBERG","10 CAMPUS DRIVE",,"DEDHAM","MA","02026",,,,,,,"10 CAMPUS DRIVE",,"DEDHAM","MA","02026",,,,,,,"042104784","7813263700","611000","NOBLE AND GREENOUGH SCHOOL","STEPHEN GINSBERG","10 CAMPUS DRIVE",,"DEDHAM","MA","02026",,,,,,,"042104784","7813263700",,,,"2011-07-26T12:35:28-0500","STEPHEN GINSBERG",,,,,178,185,0,0,185,0,185,0,0,0,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726135902P030100950785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAGE COMMUNITY GROUP, INC. 401K PLAN","001","2001-01-01","SAGE COMMUNITY GROUP, INC.",,,"3 CORPORATE PLAZA, SUITE 102",,"NEWPORT BEACH","CA","926607954",,,,,,,,,,,,,,,,,,"330701426","9496443514","531390","SAGE COMMUNITY GROUP, INC.",,"3 CORPORATE PLAZA, SUITE 102",,"NEWPORT BEACH","CA","926607954",,,,,,,"330701426","9496443514",,,,"2011-07-26T13:34:11-0500","ELENA TINSETH",,,,,11,4,0,6,10,0,10,7,0,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726140444P030100953281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERPATH LABORATORY, INC. RESTATED PROFIT SHARING PLAN AND TRUST AGREEMENT","001","1971-01-01","INTERPATH LABORATORY, INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"930587431","6207938473","621510","INTERPATH LABORATORY, INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"930587431","6207938473",,,,"2011-07-26T14:04:08-0500","THOMAS M. KENNEDY",,,,,272,217,2,36,255,2,257,206,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726153912P040103784481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KENNETT NATIONAL BANK 401(K) PROFIT SHARING PLAN","002","1971-07-15","KENNETT NATIONAL BANK",,,"805 1ST ST",,"KENNETT","MO","63857",,,,,,,,,,,,,,,,,,"430790695","5738889051","522110","KENNETT NATIONAL BANK",,"805 1ST ST",,"KENNETT","MO","63857",,,,,,,"430790695","5738889051",,,,"2011-07-26T15:36:57-0500","DAVID DALTON",,,,,43,35,0,10,45,0,45,45,0,,"2C2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726171307P030473374512001","2011-01-01","2011-01-05","2",,"0","0","1","1","0","0","0","0","0",,"J.C. PENNEY CORP., INC. V.E.B.A. CO.-PAID LONG TERM DISABILITY BENEFIT PLAN","543","1995-01-01","J.C. PENNEY CORP., INC. VOL. EES. BENE. ASSOC.",,,"6501 LEGACY DRIVE",,"PLANO","TX","750243698",,,,,,,,,,,,,,,,,,"237399985","9724311000","452110","J.C. PENNEY CORPORATION INC. BENEFITS ADMINISTRATION COMMITTEE",,"6501 LEGACY DRIVE - MS1203",,"PLANO","TX","750243698",,,,,,,"752583575","9724312129",,,,"2011-07-26T17:12:13-0500","SHARON BOYD","2011-07-26T16:27:24-0500","KERVIN HARTMAN",,,0,0,0,0,0,,,,,,,"4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726110302P030100825617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SYNDICATE SALES, INC. INSURANCE PLAN","504","1998-01-01","SYNDICATE SALES, INC.",,,"PO BOX 756","2025 N. WABASH STREET","KOKOMO","IN","469030756",,,,,,,,,,,,,,,,,,"356207887","7654577277","327300","SYNDICATE SALES, INC.",,"PO BOX 756",,"KOKOMO","IN","469030756",,,,,,,"356207887","7654577277",,,,"2011-07-26T09:07:09-0500","LYNDA OGLE","2011-07-26T11:02:44-0500","LINDA UTTER",,,255,241,0,0,241,,,,,,,"4B4D4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726140855P030100956865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"C L SMITH HEALTH AND WELFARE PLAN","501","2007-01-01","C L SMITH",,,"1311 SOUTH 39TH STREET",,"ST. LOUIS","MO","63110",,,,,,,,,,,,,,,,,,"431051754","3147711202","326100","C L SMITH",,"1311 SOUTH 39TH STREET",,"ST. LOUIS","MO","63110",,,,,,,"431051754","3147711202",,,,"2011-07-26T14:06:09-0500","DAVID MURNIN","2011-07-26T14:06:09-0500","DAVID MURNIN",,,142,129,0,0,129,,,,,,,"4A4D4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726161658P030014795490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DESERT SCHOOLS FEDERAL CREDIT UNION EMPLOYEE BENEFIT PLAN","501","1992-02-01","DESERT SCHOOLS FEDERAL CREDIT UNION",,,"148 N. 48TH STREET",,"PHOENIX","AZ","85034",,,,,,,,,,,,,,,,,,"860096740","6024336130","522130","DESERT SCHOOLS FEDERAL CREDIT UNION",,"148 N. 48TH STREET",,"PHOENIX","AZ","85034",,,,,,,"860096740","6024336130",,,,"2011-07-26T16:15:59-0500","JENNIFER GODEL",,,,,1286,1061,55,0,1116,,,,,,,"4D4E4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726151508P030101008097009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STEEL & PIPE SUPPLY CO, INC EMPLOYEE BENEFIT PLAN","501","1970-04-01","STEEL & PIPE SUPPLY CO, INC.",,,"PO BOX 1688","555 POYNTZ AVE","MANHATTAN","KS","665051688",,,,,,,,,,,,,,,,,,"480521830","7855875100","331200","STEEL & PIPE SUPPLY CO, INC.",,"PO BOX 1688",,"MANHATTAN","KS","665051688",,,,,,,"480521830","7855875100",,,,"2011-07-26T15:16:10-0500","DENNIS MULLIN","2011-07-26T15:16:05-0500","DENNIS MULLIN",,,444,402,98,,500,,,,,,,"4A4B4D4E4F4H4L4Q","1",,"1",,"1",,"1",,,,,"1",,"1","8","1",,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726151508P030101008097004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HARRY G. MILLER JR MONEY PURCHASE PENSION PLAN","001","1987-01-01","HARRY G. MILLER JR",,,"23 EAGLE RIDGE ROAD",,"NORTH OAKS","MN","551276411",,,,,,,,,,,,,,,,,,"411562612","6514846747","524210","HARRY G. MILLER JR",,"23 EAGLE RIDGE ROAD",,"NORTH OAKS","MN","551276411",,,,,,,"411562612","6514846747",,,,"2011-07-26T16:00:41-0500","HARRY G. MILLER JR",,,,,1,1,0,0,1,0,1,1,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726122841P030472620848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALLEY MEDICAL GROUP, P.C. - GROUP MEDICAL, DENTAL AND FSA PLAN (WAS VALLEY MEDICAL GROUP, P.C. - GROUP MEDICAL)","501","2000-01-01","VALLEY MEDICAL GROUP, P.C.",,,"329 CONWAY STREET",,"GREENFIELD","MA","01301",,,,,,,,,,,,,,,,,,"042945394","4137723336","621111","VALLEY MEDICAL GROUP, P.C.",,"329 CONWAY STREET",,"GREENFIELD","MA","01301",,,,,,,"042945394","4137723336",,,,"2011-07-26T12:28:36-0500","DAVID T. DALY, CFO",,,,,183,181,0,0,181,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726111439P040103615105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEN RAY DDS AND JERRY GILPIN DMD PROFIT SHARING PLAN - FROZEN","003","1994-01-01","LEN RAY DDS AND JERRY GILPIN DMD",,"JERRY GILPIN DMD","2907 POLO CLUB ROAD",,"NASHVILLE","TN","37221",,,,,,,"2907 POLO CLUB",,"NASHVILLE","TN","37221",,,,,,,"621382903","6157924238","621210","LEN RAY DDS AND JERRY GILPIN DDS","JERRY GILPIN DMD","2907 POLO CLUB ROAD",,"NASHVILLE","TN","37221",,,,,,,"621382903","6157924238",,,,"2011-07-21T14:57:58-0500","LEONARD RAY","2011-07-22T12:14:36-0500","JERRY GILPIN",,,9,6,0,3,9,0,9,9,0,,"2E2H3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726132050P040468375840001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SYNOVA INC. MEDICAL, DENTAL, VISION & PRESCRIPTION PLAN","501","2001-09-01","SYNOVA, INC.",,,"1000 TOWN CENTER, SUITE 700",,"SOUTHFIELD","MI","48075",,,,,,,"1000 TOWN CENTER, SUITE 700",,"SOUTHFIELD","MI","48075",,,,,,,"383456423","2482812500","541600","SYNOVA, INC.",,"1000 TOWN CENTER, SUITE 700",,"SOUTHFIELD","MI","48075",,,,,,,"383456423","2482812500",,,,"2011-07-26T13:17:36-0500","TIM MANNEY",,,,,223,213,9,19,241,,241,,,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726132054P030100917521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOOZ AND COMPANY NA INC. EMPLOYEE MEDICAL PLAN","504","2008-08-01","BOOZ AND COMPANY NA INC.",,,"4 WOOD HOLLOW ROAD",,"PARSIPPANY","NJ","07054",,,,,,,,,,,,,,,,,,"262494682","9736306700","541600","BOOZ AND COMPANY NA INC.",,"4 WOOD HOLLOW ROAD",,"PARSIPPANY","NJ","07054",,,,,,,"262494682","9736306700",,,,"2011-07-26T13:20:09-0500","HELEN TRGALA","2011-07-26T13:20:09-0500","KAREN MCCANN",,,896,835,26,27,888,,,,,,,"4A4B4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726132549P030472770976001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUMITOMO MITSUI BANKING CORP. WELFARE PLANS","501","1983-12-31","SUMITOMO MITSUI BANKING CORPORATION",,,"277 PARK AVENUE",,"NEW YORK","NY","10172",,,,,,,,,,,,,,,,,,"135611820","2122244000","522110","SUMITOMO MITSUI BANKING CORPORATION",,"277 PARK AVENUE",,"NEW YORK","NY","10172",,,,,,,"135611820","2122244000",,,,"2011-07-26T13:25:32-0500","CHRISTINE CUTRONA",,,,,728,699,66,0,765,,,,,,,"4A4B4D4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","13","1","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726143019P030100978081004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ELYRIA CHIROPRACTIC SERVICES INC PROFIT SHARING PLAN","001","1975-10-01","ELYRIA CHIROPRACTIC SERVICES, INC",,,"136 WINCKLES ST",,"ELYRIA","OH","44035",,,,,,,,,,,,,,,,,,"341155244","4403658323","621310","ELYRIA CHIROPRACTIC SERVICES INC",,"136 WINCKLES ST",,"ELYRIA","OH","44035",,,,,,,"341155244","4403658323",,,,"2011-07-26T07:10:59-0500","GENE BEDOCS",,,,,3,3,,,3,,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726133304P030100926129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAYLOR FREEZER OF MICHIGAN INC. 401 K PLAN","001","1986-10-01","TAYLOR FREEZER OF MICHIGAN, INC.",,,"13341 STARK ROAD",,"LIVONIA","MI","48150",,,,,,,,,,,,,,,,,,"381796410","7345252535","423800","TAYLOR FREEZER OF MICHIGAN, INC.",,"13341 STARK ROAD",,"LIVONIA","MI","48150",,,,,,,"381796410","7345252535",,,,"2011-07-26T13:32:45-0500","TIMOTHY J. LENNON","2011-07-26T13:32:45-0500","TIMOTHY J. LENNON",,,70,60,0,5,65,0,65,58,2,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726144349P040103744209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PREMIERE COPIER, INC. 401(K) PLAN","001","2010-01-01","PREMIERE COPIER, INC.",,"ATTN TOD NORTH","7442 SOUTH TUSCON WAY #170",,"CENTENNIAL","CO","80112",,,,,,,,,,,,,,,,,,"841610917","3037517307","111100","PREMIERE COPIER, INC.","ATTN TOD NORTH","7442 SOUTH TUSCON WAY #170",,"CENTENNIAL","CO","80112",,,,,,,"841610917","3037517307",,,,"2011-07-26T14:43:07-0500","TOD NORTH",,,,,9,9,0,0,9,0,9,9,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726150047P030101000385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE UNIVERSITY OF SCRANTON BLUE CROSS AND BLUE SHIELD PLAN","501","1942-01-01","THE UNIVERSITY OF SCRANTON","OFFICE OF HUMAN RESOURCES",,"800 LINDEN STREET",,"SCRANTON","PA","185102429",,,,,,,,,,,,,,,,,,"240795495","5709417767","611000","THE UNIVERSITY OF SCRANTON",,"800 LINDEN STREET",,"SCRANTON","PA","185102429",,,,,,,"240795495","5709417767",,,,"2011-07-26T14:51:42-0500","PATRICIA TETREAULT",,,,,898,820,94,0,914,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726145720P030100998369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BEHLER-YOUNG COMPANY PROFIT SHARING 401(K) PLAN","002","1988-01-01","BEHLER-YOUNG COMPANY",,,"P.O. BOX 946",,"GRAND RAPIDS","MI","495090946",,,,,,,,,,,,,,,,,,"380338530","6165313400","423700","BEHLER-YOUNG COMPANY",,"P.O. BOX 946",,"GRAND RAPIDS","MI","495090946",,,,,,,"380338530","6165313400","THE BEHLER-YOUNG COMPANY","380338530","002","2011-07-26T14:56:39-0500","JOSEPH E. HRABOVSKY, VICE PRESIDENT",,,,,206,165,0,27,192,1,193,180,0,,"2E2G2J2K2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726145743P030100998689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHORT TERM DISABILITY PLAN","501","1991-10-01","CREDIT UNION ASSOCIATION OF NEW YORK",,,"PO BOX 15118",,"ALBANY","NY","122125118",,,,,,,"1021 WATERVLIET SHAKER RD",,"ALBANY","NY","122125118",,,,,,,"135582889","5184378100","813000","CREDIT UNION ASSOCIATION OF NEW YORK",,"PO BOX 15118",,"ALBANY","NY","122125118",,,,,,,"135582889","5184378100",,,,"2011-07-26T14:57:08-0500","LORI MAYER",,,,,122,129,,,129,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726114856P030014764850001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"STUPP CORPORATION BARGAINING UNIT / HOURLY EMPLOYEE 401(K) PLAN","009","1998-06-01","STUPP CORPORATION, A DIVISION OF STUPP BROS., INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"430542490","6207938473","332900","STUPP CORPORATION, A DIVISION OF STUPP BROS., INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"430542490","6207938473",,,,"2011-07-26T11:46:39-0500","THOMAS L. TURNER",,,,,227,207,6,37,250,1,251,248,9,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726135517P030031754199001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSOLIDATED SYSTEMS, INC. VOLUNTARY GROUP CANCER PLAN","505","2005-01-01","CONSOLIDATED SYSTEMS, INC.",,,"P.O. BOX 1756",,"COLUMBIA","SC","29202",,,,,,,,,,,,,,,,,,"550508744","8037717920","332300","CONSOLIDATED SYSTEMS, INC.",,"P.O. BOX 1756",,"COLUMBIA","SC","29202",,,,,,,"550508744","8037717920",,,,"2011-07-26T13:54:33-0500","DEBRA PATTON",,,,,137,146,0,0,146,,,,,,,"4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726153440P040103781329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAPIDS FORD-LINCOLN-MERCURY, LLC NADART SALARY DEF 401K PLAN","001","1998-10-01","RAPIDS FORD-LINCOLN-MERCURY, LLC",,,"4330 8TH ST. SOUTH SUITE NO.100",,"WISCONSIN RAPIDS","WI","54494",,,,,,,,,,,,,,,,,,"391830809","7154220000","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T15:26:32-0500","ALAN B. SVEDLOW",,,,,34,27,0,4,31,0,31,24,0,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726155713P040103793617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROCHE VISION PLAN","515","1997-01-01","HOFFMANN-LA ROCHE INC.",,,"340 KINGSLAND STREET",,"NUTLEY","NJ","07110",,,,,,,,,,,,,,,,,,"220994270","9732355000","325410","HOFFMANN-LA ROCHE INC.",,"340 KINGSLAND STREET, BLDG.",,"NUTLEY","NJ","07110",,,,,,,"220994270","9732355000",,,,"2011-07-26T15:36:29-0500","DAVID MCDEDE",,,,,5123,4593,,,4593,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726115830P030014766082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIKE TOLER CHRYSLER DODGE JEEP, INC. NADART SALARY DEF 401K PLAN","001","2008-02-08","MIKE TOLER CHRYSLER DODGE JEEP, INC",,,"5069 HWY 70 WEST",,"MOREHEAD CITY","NC","28557",,,,,,,,,,,,,,,,,,"261568070","2522472003","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T11:49:09-0500","ALAN B. SVEDLOW",,,,,12,14,0,0,14,0,14,8,0,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726125644P030472693104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALTRAN USA HOLDINGS, INC. & SUBSIDIARIES","501","2005-01-01","ALTRAN USA HOLDINGS, INC.",,,"451 D STREET",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"134132432","6172041000","541600","ALTRAN USA HOLDINGS, INC.",,"451 D STREET",,"BOSTON","MA","02210",,,,,,,"134132432","6172041000",,,,"2011-07-26T12:56:23-0500","LORI ELFUS",,,,,298,232,21,0,253,0,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726143019P030100978081009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"REDWOOD PERIODONTICS LLC EMPLOYEE PROFIT SHARING PLAN","002","1982-07-01","REDWOOD PERIODONTICS, LLC",,,"6287 SOUTH REDWOOD ROAD NO 102",,"SALT LAKE CITY","UT","84123",,,,,,,,,,,,,,,,,,"432054398","8012938833","621210","REDWOOD PERIODONTICS LLC",,"6287 SOUTH REDWOOD ROAD NO 102",,"SALT LAKE CITY","UT","84123",,,,,,,"432054398","8012938833",,,,"2011-07-24T17:56:18-0500","JEREMY MANWARING",,,,,15,12,,3,15,,15,15,,,"2K2J2G2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726153202P030014791458001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"SHELL CONSTRUCTION COMPANY, INC. 401K PROFIT SHARING PLAN","002","1994-06-01","SHELL CONSTRUCTION COMPANY, INC.",,,"336 N FALCON DR",,"OKLAHOMA CITY","OK","731277212",,,,,,,,,,,,,,,,,,"730720879","4054952063","237310","SHELL CONSTRUCTION COMPANY, INC.",,"336 N FALCON DR",,"OKLAHOMA CITY","OK","731277212",,,,,,,"730720879","4054952063",,,,"2011-07-26T15:29:12-0500","DONNY NIEBRUGGE",,,,,24,21,0,1,22,0,22,14,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726123009P040103655857001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"O.J.W. PROFIT SHARING PLAN","001","1992-01-01","O.J. WATSON COMPANY, INC.",,,"5335 FRANKLIN STREET",,"DENVER","CO","80216",,,,,,,,,,,,,,,,,,"841099156","3032952885","811310","O.J. WATSON COMPANY, INC.",,"5335 FRANKLIN STREET",,"DENVER","CO","80216",,,,,,,"841099156","3032952885",,,,"2011-07-20T19:34:00-0500","RICHARD K. ECKRICH",,,,,41,37,6,0,43,0,43,32,3,,"2F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726123016P030014768306005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DOUGLAS A MYERS PROFIT SHARING PLAN","002","1988-01-01","DOUGLAS R MYERS DOUGLAS R MYERS MD",,,"505 NE 87TH AVE STE 150",,"VANCOUVER","WA","98664",,,,,,,,,,,,,,,,,,"911379907","3602547725","621111","DOUGLAS R MYERS DOUGLAS R MYERS MD",,"505 NE 87TH AVE STE 150",,"VANCOUVER","WA","98664",,,,,,,"911379907","3602547725",,,,"2011-07-12T22:03:39-0500","DOUGLAS R MYERS",,,,,2,2,,,2,,2,,,,"3B2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726132111P040468376640008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VAIL VALLEY EMERGENCY PHYSICIANS PC PROFIT-SHARING PLAN","001","1989-01-01","VAIL VALLEY EMERGENCY PHYSICIANS,PC",,,"27 MAIN STREET, C-301",,"EDWARDS","CO","81632",,,,,,,,,,,,,,,,,,"841024906","9705693600","621111","VAIL VALLEY EMERGENCY PHYSICIANS,PC",,"27 MAIN STREET, C-301",,"EDWARDS","CO","81632",,,,,,,"841024906","9705693600",,,,"2011-07-25T06:48:05-0500","LAURENCE W. BROOKS",,,,,16,17,,,17,,17,18,,,"2E2G2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726132125P030100918113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOOZ AND COMPANY NA INC. LIFE INSURANCE","506","2008-08-01","BOOZ AND COMPANY NA INC.",,,"4 WOOD HOLLOW ROAD",,"PARSIPPANY","NJ","07054",,,,,,,,,,,,,,,,,,"262494682","9736306700","541600","BOOZ AND COMPANY NA INC.",,"4 WOOD HOLLOW ROAD",,"PARSIPPANY","NJ","07054",,,,,,,"262494682","9736306700",,,,"2011-07-26T13:21:14-0500","HELEN TRGALA","2011-07-26T13:21:14-0500","KAREN MCCANN",,,701,824,0,0,824,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726143113P030014781554001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANGELINA INTERNAL MEDICINE ASSOCIATES 401(K) PROFIT SHARING PLAN","001","1994-03-15","ANGELINA INTERNAL MEDICINE ASSOCIATES",,,"1111 WEST FRANK STREET, SUITE 100",,"LUFKIN","TX","75904",,,,,,,,,,,,,,,,,,"752528708","9366392244","621111","ANGELINA INTERNAL MEDICINE ASSOCIATES",,"1111 WEST FRANK STREET, SUITE 100",,"LUFKIN","TX","75904",,,,,,,"752528708","9366392244",,,,"2011-07-26T14:28:13-0500","SEAN MORAN",,,,,20,13,0,6,19,0,19,19,1,,"2E2F2G2J2K2R2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726144423P040103744945001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GAGER, EMERSON, RICKART, BOWER & SCALZO, LLP 401(K THRIFT PLAN","004","1992-02-01","GAGER,EMERSON,RICKART,BOWER&SCALZO,LLP",,,"2 STONY HILL ROAD",,"BETHEL","CT","06801",,,,,,,,,,,,,,,,,,"060641014","2032075400","541110","GAGER,EMERSON,RICKART,BOWER&SCALZO,LLP",,"2 STONY HILL ROAD",,"BETHEL","CT","06801",,,,,,,"060641014","2032075400",,,,"2011-07-25T10:37:35-0500","THOMAS M. RICKART",,,,,23,10,1,10,21,,21,21,,,"2E2G2J3B",,,,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726153006P040103778049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PIERCE PACKAGING COMPANY, INC. EMPLOYEE HEALTH & WELFARE BENEFIT PLAN","502","1997-07-01","PIERCE PACKAGING COMPANY, INC.","PIERCE DISTRIBUTION SERVICES COMPANY",,"PO BOX 15600",,"LOVES PARK","IL","611325600",,,,,,,"2028 EAST RIVERSIDE BLVD",,"LOVES PARK","IL","611325600",,,,,,,"364161206","8156365656","561900","PIERCE PACKAGING COMPANY, INC.",,"PO BOX 15600",,"LOVES PARK","IL","611325600",,,,,,,"364161206","8156365656",,,,"2011-07-26T15:28:59-0500","ANTHONY CHIODINI",,,,,228,169,3,0,172,0,172,0,0,,,"4A4B4D4H","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726155332P040468778768001","2010-06-09","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"ARROW W SERVICES GROUP, INC. PROFIT SHARING PLAN","001","2010-06-09","ARROW W SERVICES GROUP, INC.",,,"2072 SPRING VALLEY RD",,"LANSDALE","PA","19446",,,,,,,,,,,,,,,,,,"272817298","2674671217","522298","ARROW W SERVICES GROUP, INC.",,"2072 SPRING VALLEY RD",,"LANSDALE","PA","19446",,,,,,,"272817298","2674671217",,,,"2011-07-26T13:34:49-0500","TIMOTHY WILSON",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D3H2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726111159P030100830657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICHAEL HOHL MOTOR COMPANY NADART SALARY DEF 401K PLAN","001","1987-07-01","MICHAEL HOHL MOTOR COMPANY",,,"2910 S. CARSON",,"CARSON CITY","NV","89701",,,,,,,,,,,,,,,,,,"880193574","7758848600","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T11:02:01-0500","ALAN B. SVEDLOW",,,,,29,27,0,1,28,0,28,10,0,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726111633P040015285474001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HITSCHFEL INSTRUMENTS INC 401(K) PROFIT SHARING PLAN & TRUST","002","1995-07-01","HITSCHFEL INSTRUMENTS INC",,,"2333 SOUTH HANLEY ROAD",,"ST LOUIS","MO","63144",,,,,,,,,,,,,,,,,,"431087550","3146446660","811210","HITSCHFEL INSTRUMENTS INC",,"2333 SOUTH HANLEY ROAD",,"ST LOUIS","MO","63144",,,,,,,"431087550","3146446660",,,,"2011-07-26T11:16:31-0500","HITSCHFEL INSTRUMENTS INC",,,,,19,11,0,3,14,0,14,14,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726111727P040468076800001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SEVERANCE PAY POLICY","508","1987-10-29","NORTHEAST UTILITIES SERVICE COMPANY",,,"P. O. BOX 270",,"HARTFORD","CT","061410270",,,,,,,,,,,,,,,,,,"060810627","8606655000","221500","VICE PRESIDENT - HUMAN RESOURCES",,"P.O. BOX 270",,"HARTFORD","CT","061410270",,,,,,,"060989432","8606653650",,,,"2011-07-26T11:15:44-0500","JEAN LAVECCHIA",,,,,3847,4057,0,0,4057,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726135008P040468455520001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENDURACARE THERAPY MANAGEMENT, INC.","501","2002-02-01","ENDURACARE THERAPY MANAGEMENT, INC.",,,"2500 N BUFFALO DR SUITE 210",,"LAS VEGAS","NV","89128",,,,,,,,,,,,,,,,,,"030486133","7028761103","621340","ENDURACARE THERAPY MANAGEMENT, INC.",,"2500 N BUFFALO DR SUITE 210",,"LAS VEGAS","NV","89128",,,,,,,"030486133","7028761103",,,,"2011-07-26T13:45:44-0500","MARYANN BLANCHARD",,,,,1114,1044,19,0,1063,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726140659P030100954321001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"DMH ELECTRICAL 401(K) & PENSION PLAN","001","2010-01-01","DMH ELECTRIC, INC.",,,"29 LEGATE HILL ROAD",,"STERLING","MA","01564",,,,,,,,,,,,,,,,,,"043448069","9784220400","238210","DMH ELECTRIC, INC.",,"29 LEGATE HILL ROAD",,"STERLING","MA","01564",,,,,,,"043448069","9784220400",,,,"2011-07-26T14:03:07-0500","DAVID M. HINCKLEY","2011-07-26T14:03:07-0500","DAVID M. HINCKLEY",,,0,37,0,1,38,0,38,30,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726153011P030473113936003","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"BUMB CONSTRUCTION PROFIT-SHARING PLAN","001","1996-01-01","BUMB CONSTRUCTION, INC",,,"12890 PENNRIDGE DRIVE",,"BRIDGETON","MO","63044",,,,,,,,,,,,,,,,,,"431185190","3142914284","238100","BUMB CONSTRUCTION, INC",,"12890 PENNRIDGE DRIVE",,"BRIDGETON","MO","63044",,,,,,,"431185190","3142914284",,,,"2011-07-26T14:19:55-0500","DAVID BUMB",,,,,2,2,0,0,2,0,2,2,,,"2E3J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726114147P030100852017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FREEDMAN SEATING COMPANY HEALTH AND WELFARE PLAN","501","1998-02-01","FREEDMAN SEATING COMPANY",,,"4545 W. AUGUSTA BLVD.",,"CHICAGO","IL","60651",,,,,,,,,,,,,,,,,,"362276977","7735242440","336990","FREEDMAN SEATING COMPANY",,"4545 W. AUGUSTA BLVD.",,"CHICAGO","IL","60651",,,,,,,"362276977","7735242440",,,,"2011-07-26T11:41:07-0500","MARISELA MARTINEZ-WILLIAMS",,,,,459,492,5,0,497,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726135050P030014777490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KORDSA, INC. 401(K) PROFIT SHARING PLAN","002","1991-01-01","KORDSA, INC.",,,"4501 NORTH ACCESS RD.",,"CHATTANOOGA","TN","37415",,,,,,,,,,,,,,,,,,"562160110","4236432706","314000","KORDSA, INC.",,"4501 NORTH ACCESS RD.",,"CHATTANOOGA","TN","37415",,,,,,,"562160110","4236432706",,,,"2011-07-26T13:50:12-0500","TERESA JOHNSON",,,,,389,341,1,49,391,2,393,393,7,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726123724P030014769202001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TP ORTHODONTICS, INC. GROUP HOSPITAL & LIFE INSURANCE PLAN","501","1989-01-01","TP ORTHODONTICS, INC.",,,"100 CENTER PLAZA",,"LA PORTE","IN","46350",,,,,,,,,,,,,,,,,,"350981266","2197852591","621210","TP ORTHODONTICS, INC.",,"100 CENTER PLAZA",,"LA PORTE","IN","46350",,,,,,,"350981266","2197852591",,,,"2011-07-26T12:21:16-0500","CHARLES KOPP",,,,,320,296,,,296,,,,,,,"4A4B4Q4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726141301P040015304370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MULTI SERVICE INCORPORATED GROUP INSURANCE PLAN","501","1992-08-01","MULTI SERVICE, INC.",,,"8650 COLLEGE BLVD.",,"OVERLAND PARK","KS","662101886",,,,,,,,,,,,,,,,,,"481103204","9134512400","522298","MULTI SERVICE, INC.",,"8650 COLLEGE BLVD.",,"OVERLAND PARK","KS","662101886",,,,,,,"481103204","9134512400",,,,"2011-07-26T14:12:43-0500","DORETTA WATSON",,,,,148,157,0,0,157,,,,,,,"4A4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726140740P040103717473001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CATBRIDGE MACHINERY 401K PLAN","001","2003-10-01","CATBRIDGE MACHINERY",,,"222 NEW ROAD",,"PARSIPPANY","NJ","07054",,,,,,,"222 NEW ROAD",,"PARSIPPANY","NJ","07054",,,,,,,"010672417","9738080029","333200","CATBRIDGE MACHINERY",,"222 NEW ROAD",,"PARSIPPANY","NJ","07054",,,,,,,"010672417","9738080029",,,,"2011-07-26T13:54:13-0500","WILLIAM CHRISTMAN",,,,,41,50,,,50,,50,33,,,"2E2F2G2J2K3E",,,,"1",,,,"1",,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726153533P040103782241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARTIN'S GARAGE, INC NADART SALARY DEF 401K PLAN","001","1964-09-01","MARTIN'S GARAGE, INC",,,"1422 MAIN",,"UNION GROVE","WI","53182",,,,,,,,,,,,,,,,,,"391034743","2628781226","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-26T15:26:32-0500","ALAN B. SVEDLOW",,,,,14,14,1,1,16,0,16,16,1,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726154712P040103788785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELECTRICAL & ELECTRONIC CONTROLS INC. 401(K) PLAN","001","2005-03-01","EE CONTROLS",,,"3881 DANBURY RD",,"BREWSTER","NY","10509",,,,,,,,,,,,,,,,,,"061034047","8452785777","423600","EE CONTROLS",,"3881 DANBURY RD",,"BREWSTER","NY","10509",,,,,,,"061034047","8452785777",,,,"2011-07-26T15:42:42-0500","SUSHIL KAUSHIK",,,,,21,19,0,1,20,0,20,20,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110725141332P040103054161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST NATIONAL BANK OF WASECA 401K PLAN","001","1970-12-28","FIRST NATIONAL BANK OF WASECA",,,"101 N STATE ST",,"WASECA","MN","560932928",,,,,,,,,,,,,,,,,,"410600210","5078359599","522110","FIRST NATIONAL BANK OF WASECA",,"101 N STATE ST",,"WASECA","MN","560932928",,,,,,,"410600210","5078359599",,,,"2011-07-25T14:02:28-0500","THOMAS SANKOVITZ",,,,,57,47,0,11,58,0,58,44,0,,"2E2F2G2J2K2T3H3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","6","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725110116P030100126369011","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GEORGE TENEDIOS MD PC MONEY PURCHASE PENSION PLAN","002","2000-01-01","GEORGE TENEDIOS M D P C",,,"795 FELMEY ROAD BOX 16",,"WINFIELD","PA","17889",,,,,,,,,,,,,,,,,,"233008799","5705222000","621111","GEORGE TENEDIOS",,"795 FELMEY ROAD BOX 16",,"WINDFIELD","PA","17889",,,,,,,"233008799","5705245889",,,,"2011-07-25T10:48:29-0500","GEORGE TENEDIOS",,,,,10,8,,2,10,,10,10,,,"2G2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725115800P030014657922001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","0","0","0","0",,"GROUP LONG TERM DISABILITY PLAN","501","1989-01-01","TEXAS CREDIT UNION LEAGUE",,,"4455 LBJ FREEWAY/SUITE 1100",,"DALLAS","TX","752445998",,,,,,,,,,,,,,,,,,"750603700","4693856400","813000","TEXAS CREDIT UNION LEAGUE",,"4455 LBJ FREEWAY/SUITE 1100",,"DALLAS","TX","752445998",,,,,,,"750603700","4693856400",,,,"2011-07-25T11:57:08-0500","VALASKA BEACHUM",,,,,118,107,,,107,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725115900P030100165041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PALMA & NARDOZZA DENTAL SERVIC 401(K) PROFIT SHARING PLAN & TRUST","001","1995-01-01","PALMA & NARDOZZA DENTAL SERVIC",,,"523 CHARLES AVE",,"SOLVAY","NY","13209",,,,,,,,,,,,,,,,,,"020561286","3154681000","812990","PALMA & NARDOZZA DENTAL SERVIC",,"523 CHARLES AVE",,"SOLVAY","NY","13209",,,,,,,"020561286","3154681000",,,,"2011-07-25T11:58:58-0500","PALMA NARDOZZA DENTAL SERVIC",,,,,0,10,0,0,10,0,10,10,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725123110P040102992897003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EDWARD W BOEHM JR DMD PROFIT SHARING PLAN","002","1989-03-01","EDWARD W BOEHM JR DMD",,,"112 LEXINGTON AVENUE",,"PASSAIC","NJ","07055",,,,,,,,,,,,,,,,,,"222641147","2013017700","621210","EDWARD W BOEHM JR DMD",,"112 LEXINGTON AVENUE",,"PASSAIC","NJ","07055",,,,,,,"222641147","2013017700",,,,"2011-07-25T12:02:31-0500","EDWARD W BOEHM JR",,,,,4,3,1,,4,,4,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725123110P040102992897016","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PRAGMATICS INC COMPREHENSIVE WELFARE BENEFITS PLAN","501","2002-12-01","PRAGMATICS, INC",,,"7926 JONES BRANCH DRIVE SUITE 711",,"MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"541145723","7037614033","541511","PRAGMATICS INC",,"7926 JONES BRANCH DRIVE SUITE 711",,"MCLEAN","VA","22102",,,,,,,"541145723","7037614033",,,,"2011-07-22T10:13:59-0500","KERRI MOREHART",,,,,513,586,6,,592,,592,,,,,"4Q4H4F4E4D4B4A","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725131516P040465394432001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPICERS PAPER INC HEALTH AND LIFE INSURANCE PLAN","502","1990-04-01","SPICERS PAPER",,,"12310 E. SLAUSON AVENUE",,"SANTA FE SPRINGS","CA","90670",,,,,,,"12310 E. SLAUSON AVENUE",,"SANTA FE SPRINGS","CA","90670",,,,,,,"521595269","5626981199","424100","SPICERS PAPER",,"12310 E. SLAUSON AVENUE",,"SANTA FE SPRINGS","CA","90670",,,,,,,"521595269","5626981199",,,,"2011-07-25T11:13:42-0500","EMILIA PAREDES",,,,,279,296,,,296,,296,,,,,"4A4B4D4E4F4Q4H","1",,,,"1",,,,,,,,,"1","8",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725140748P030100241681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARDRIVES EMPLOYEE RETIREMENT 401K SAVINGS & PROFIT SHARING PLAN","002","1971-07-15","HARDRIVES OF DELRAY, INC.",,"GEORGE T. ELMORE, PRESIDENT","2101 SOUTH CONGRESS AVE.",,"DELRAY BEACH","FL","33445",,,,,,,"2101 SOUTH CONGRESS AVE.",,"DELRAY BEACH","FL","33445",,,,,,,"590702991","5612780456","551112","HARDRIVES OF DELRAY, INC","GEORGE T. ELMORE, PRESIDENT","2101 SOUTH CONGRESS AVE",,"DELRAY BEACH","FL","33445",,,,,,,"590702991","5612780456",,,,"2011-07-25T14:02:32-0500","GEORGE ELMORE",,,,,183,102,,14,116,,116,102,13,,"2E2H2J",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725121730P030100174753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONTRACT SWEEPERS & EQUIPMENT, INC. PROFIT SHARING 401(K) PLAN","001","1974-10-01","CONTRACT SWEEPERS & EQUIPMENT, INC.",,,"561 SHORT STREET",,"COLUMBUS","OH","432155678",,,,,,,,,,,,,,,,,,"310780604","6142217441","561900","CONTRACT SWEEPERS & EQUIPMENT, INC.",,"561 SHORT STREET",,"COLUMBUS","OH","432155678",,,,,,,"310780604","6142217441",,,,"2011-07-25T12:16:58-0500","WILLIAM J MILLER","2011-07-25T12:16:58-0500","WILLIAM J MILLER",,,84,72,0,9,81,0,81,68,3,,"2E2G2J2K3D2F2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725140821P030100241969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ATTORNEYS' TITLE FUND SERVICES, LLC 401(K) PLAN","001","1976-01-01","ATTORNEYS' TITLE FUND SERVICES, LLC",,,"6545 CORPORATE CENTER BLVD",,"ORLANDO","FL","32822",,,,,,,,,,,,,,,,,,"270354435","4072403863","541190","ATTORNEYS' TITLE FUND SERVICES, LLC",,"6545 CORPORATE CENTER BLVD",,"ORLANDO","FL","32822",,,,,,,"270354435","4072403863",,,,"2011-07-25T14:04:55-0500","KENDRA J. BRAGG, QKA",,,,,829,473,0,104,577,15,592,543,19,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725132002P040103023153001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"STERLING PAYMENT TECHNOLOGIES, INC. WELFARE BENEFITS PLAN","501","2009-01-01","STERLING PAYMENT TECHNOLOGIES, INC.",,,"1111 N. WESTSHORE BLVD. SUITE 500",,"TAMPA","FL","33607",,,,,,,,,,,,,,,,,,"593688818","8133934566","541519","STERLING PAYMENT TECHNOLOGIES, INC.",,"1111 N. WESTSHORE BLVD. SUITE 500",,"TAMPA","FL","33607",,,,,,,"593688818","8133934566",,,,"2011-07-25T13:19:22-0500","PAUL HUNTER",,,,,142,147,8,0,155,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","1","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725125252P040015189826001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"AMERICAN COLLEGE OF PHYSICIANS, INC. DEFINED CONTRIBUTION RETIREMENT PLAN B","003","1996-01-01","AMERICAN COLLEGE OF PHYSICIANS, INC.",,,"190 N INDEPENDENCE MALL W",,"PHILADELPHIA","PA","191061508",,,,,,,,,,,,,,,,,,"231520302","2153512412","813000","AMERICAN COLLEGE OF PHYSICIANS, INC.",,"190 N INDEPENDENCE MALL W",,"PHILADELPHIA","PA","191061508",,,,,,,"231520302","2153512412",,,,"2011-07-25T12:52:39-0500","GUY HUDSON","2011-07-25T12:52:39-0500","GUY HUDSON",,,112,141,0,2,143,0,143,140,0,,"2E2F2G2J2K2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725111004P040102944625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OAK BROOK MECHANICAL SERVICES, INC. PROFIT SHARING PLAN","001","1975-09-01","OAK BROOK MECHANICAL SERVICES, INC.",,,"961 S. ROUTE 83",,"ELMHURST","IL","60126",,,,,,,"961 S. ROUTE 83",,"ELMHURST","IL","60126",,,,,,,"362826084","6309413555","238220","OAK BROOK MECHANICAL SERVICES, INC.",,"961 S. ROUTE 83",,"ELMHURST","IL","60126",,,,,,,"362826084","6309413555",,,,"2011-07-19T14:17:27-0500","FRANK J. KELLY","2011-07-19T14:17:27-0500","FRANK J. KELLY",,,18,15,0,2,17,0,17,17,1,,"2A2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725105613P030014651826001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GARDEN GROVE PHARMACY, INC. PROFIT SHARING PLAN","002","1976-12-27","GARDEN GROVE PHARMACY, INC.",,,"12665 GARDEN GROVE BLVD.",,"GARDEN GROVE","CA","928431901",,,,,,,,,,,,,,,,,,"953049457","7145301130","446110","GARDEN GROVE PHARMACY, INC.",,"12665 GARDEN GROVE BLVD.",,"GARDEN GROVE","CA","928431901",,,,,,,"953049457","7145301130",,,,"2011-07-25T10:56:12-0500","HENRY GOTTERER OR ROBIN S. GOTTERER",,,,,8,1,0,3,4,0,4,4,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725130232P040103009649001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","0","0","0","0",,"KIRK HORSE INSURANCE, LLC PROFIT SHARING PLAN","002","1981-06-01","KIRK HORSE INSURANCE, LLC",,,"129 WALTON AVENUE",,"LEXINGTON","KY","40508",,,,,,,"129 WALTON AVENUE",,"LEXINGTON","KY","40508",,,,,,,"610988192","8592310838","524210","KIRK HORSE INSURANCE, LLC",,"129 WALTON AVENUE",,"LEXINGTON","KY","40508",,,,,,,"610988192","8592310838",,,,"2011-07-25T13:02:07-0500","BARRY SNELLING",,,,,11,11,,,11,,11,11,1,,"2E2G2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725112049P040465135952001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"ANDREW A PANSINI","001","1997-03-31","ANDREW A PANSINI","PANSINI CONSULTING",,"2030 HATCH RD",,"NOVATO","CA","94947",,,,,,,"2030 HATCH RD",,"NOVATO","CA","94947",,,,,,,"900215182","4158973820","525920","ANDREW A PANSINI",,"2030 HATCH RD",,"NOVATO","CA","94947",,,,,,,"900215182","4158973820",,,,"2011-07-25T11:19:34-0500","ANDREW PANSINI",,,,,1,1,,,1,,1,1,,,"2G",,,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725112121P030100143409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARROLLTON BANK EMPLOYEES 401(K) AND PS PLAN","001","1953-01-01","CARROLLTON BANK",,,"315 SIXTH STREET",,"CARROLLTON","IL","620160232",,,,,,,,,,,,,,,,,,"370207180","2179429308","522110","CARROLLTON BANK",,"315 SIXTH STREET",,"CARROLLTON","IL","620160232",,,,,,,"370207180","2179429308",,,,"2011-07-25T11:21:03-0500","BECKY LEWIS",,,,,125,126,0,9,135,0,135,121,3,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725132250P040103025329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE AND HEALTH INSURANCE","501","1981-07-01","SOUTHWEST GALVANIZING, INC.",,,"731 ALEEN STREET",,"HOUSTON","TX","770291601",,,,,,,"731 ALEEN STREET",,"HOUSTON","TX","770291601",,,,,,,"741540148","7136750921","332810","SOUTHWEST GALVANIZING, INC.",,"731 ALEEN STREET",,"HOUSTON","TX","770291601",,,,,,,"741540148","7136750921",,,,"2011-07-25T13:05:49-0500","DEBORAH KOENIG","2011-07-25T13:05:49-0500","DEBORAH KOENIG",,,183,180,0,0,180,0,180,0,0,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725141026P040103052753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP DISABILITY INCOME PLAN OF UNITED WAY WORLDWIDE","502","1994-01-01","UNITED WAY WORLDWIDE",,,"701 N. FAIRFAX ST",,"ALEXANDRIA","VA","22314",,,,,,,,,,,,,,,,,,"131635294","7038367100","813000","UNITED WAY WORLDWIDE",,"701 N. FAIRFAX ST",,"ALEXANDRIA","VA","22314",,,,,,,"131635294","7038367100",,,,"2011-07-25T14:04:27-0500","EVELYN AMADOR","2011-07-25T11:08:26-0500","ROBERT BERDELLE",,,219,221,0,0,221,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725140351P030002947427001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLEMENT & WHEATLEY, A PROFESSIONAL CORP. 401(K) PSP","003","1980-06-01","CLEMENT & WHEATLEY, A",,,"549 MAIN STREET",,"DANVILLE","VA","24541",,,,,,,,,,,,,,,,,,"541139665","4347938200","541110","CLEMENT & WHEATLEY, A",,"549 MAIN STREET",,"DANVILLE","VA","24541",,,,,,,"541139665","4347938200",,,,"2011-07-25T14:02:34-0500","HARRY SAKELLARIS",,,,,31,33,0,0,33,0,33,33,0,,"2C2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725113921P040102960209007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE JOHN S RAINEY SELF-EMPLOYED RETIREMENT PLAN","001","1974-01-01","JOHN S RAINEY",,,"402 BOULEVARD",,"ANDERSON","SC","29621",,,,,,,"402 BOULEVARD",,"ANDERSON","SC","29621",,,,,,,"570537408","8642220804","541110","JOHN S RAINEY",,"402 BOULEVARD",,"ANDERSON","SC","29621",,,,,,,"570537408","8642220804",,,,"2011-07-23T07:25:21-0500","JULIE STRAUSBAUGH, CO-TRUSTEE","2011-07-23T07:25:21-0500","JULIE STRAUSBAUGH, CO-TRUSTEE",,,4,4,,,4,,4,4,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725121337P040015184882001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SYNOPSYS, INC. WELFARE PLAN","501","1990-01-01","SYNOPSYS, INC.",,,"700 E. MIDDLEFIELD ROAD",,"MOUNTAIN VIEW","CA","94043",,,,,,,,,,,,,,,,,,"561546236","6505845000","541519","SYNOPSYS, INC.",,"700 E. MIDDLEFIELD ROAD",,"MOUNTAIN VIEW","CA","94043",,,,,,,"561546236","6505845000",,,,"2011-07-25T12:10:19-0500","BEVERLY HENRY",,,,,2874,3023,76,0,3099,,,,,,,"4A4B4D4E4G4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","10","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725132451P040465418800001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M&M DOLLAR STORE, INC., PROFIT SHARING PLAN","001","1997-01-01","M&M DOLLAR STORE, INC.",,,"6910 ST. ANNES AVENUE",,"LANHAM","MD","20706",,,,,,,,,,,,,,,,,,"521873701","3017311721","453990","M&M DOLLAR STORE, INC.",,"6910 ST. ANNES AVENUE",,"LANHAM","MD","20706",,,,,,,"521873701","3017311721",,,,"2011-07-25T13:23:59-0500","STEVEN PELFREY","2011-07-25T13:23:59-0500","STEVEN PELFREY",,,5,4,0,1,5,0,5,5,0,,"2E2A3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725141426P040103054625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DURATECH INDUSTRIES RETIREMENT PLAN","001","1989-06-01","DURATECH INDUSTRIES",,,"3216 COMMERCE ST",,"LA CROSSE","WI","546031710",,,,,,,,,,,,,,,,,,"391286262","6087812570","323100","DURATECH INDUSTRIES",,"3216 COMMERCE ST",,"LA CROSSE","WI","546031710",,,,,,,"391286262","6087812570",,,,"2011-07-25T14:12:11-0500","DEB CADE",,,,,214,154,0,5,159,2,161,140,9,,"2E2F2G2J2K2S2T3D3H",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725081516P040102844369001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HEALTH AND WELFARE PLAN FOR EMPLOYEES OF ROBROY INDUSTRIES, INC.","503","1986-06-01","ROBROY INDUSTRIES, INC.",,,"10 RIVER RD",,"VERONA","PA","15147",,,,,,,,,,,,,,,,,,"232926669","4128282100","335310","ROBROY INDUSTRIES, INC.",,"10 RIVER RD",,"VERONA","PA","15147",,,,,,,"232926669","4128282100",,,,"2011-07-25T09:15:02-0500","JUDY SHOEMAKER","2011-07-21T04:00:39-0500","MICHAEL T. DEANE",,,252,200,16,0,216,0,216,,,,,"4A4B4D4F4H4L","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725120110P030002945299017","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BROADSOFT COMPREHENSIVE HEALTH AND WELFARE BENEFIT PLAN","501","2000-06-01","BROADSOFT, INC",,,"9737 WASHINGTON BLVD SUITE 350",,"GAITHERSBURG","MD","20878",,,,,,,,,,,,,,,,,,"522130962","2403645307","541511","BROADSOFT INC",,"9737 WASHINGTON BLVD SUITE 350",,"GAITHERSBURG","MD","20878",,,,,,,"522130962","2403645307",,,,"2011-07-21T12:12:50-0500","ANNE SCOTTO-LOWERY",,,,,214,233,7,,240,,240,,,,,"4Q4L4H4F4D4B4A","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725132523P030100211073001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ASPIRE INDIANA GROUP MEDICAL AND DENTAL PLAN","501","1989-01-01","ASPIRE INDIANA",,"ATTN CRAIG BAIRD","9615 E 148TH ST",,"NOBLESVILLE","IN","46060",,,,,,,,,,,,,,,,,,"351341204","3175870500","624100","ASPIRE INDIANA","ATTN CRAIG BAIRD","9615 E 148TH ST",,"NOBLESVILLE","IN","46060",,,,,,,"351341204","3175870500",,,,"2011-07-25T10:12:44-0500","STEVEN J. KRITZMIRE","2011-07-25T10:13:10-0500","STEVEN J. KRITZMIRE",,,302,242,,,242,,242,,,,,"4A4D",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725141518P040103054929008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DR. ROBY'S EYE CARE ASSOCIATES, LTD. 401(K) PLAN","001","2008-01-01","DR. ROBY'S EYE CARE ASSOCS., LTD.","EYE CARE ASSOCIATES, LTD.",,"1401 E. 87TH STREET",,"CHICAGO","IL","60619",,,,,,,,,,,,,,,,,,"364314292","7737218787","621320","DR. ROBY'S EYE CARE ASSOCS., LTD.",,"1401 E. 87TH STREET",,"CHICAGO","IL","60619",,,,,,,"364314292","7737218787",,,,"2011-07-25T14:12:40-0500","HANIEL ROBY",,,,,2,2,0,0,2,0,2,2,,,"2E2K2R2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725123540P030100184033001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PARETTI MOTOR COMPANY, INC. 401(K) PLAN","001","1974-01-01","PARETTI MOTOR COMPANY, INC. DBA PARETTI MAZDA",,,"4000 VETERANS BLVD.",,"METAIRIE","LA","70002",,,,,,,,,,,,,,,,,,"720394017","5048885420","441110","PARETTI MOTOR COMPANY, INC. DBA PARETTI MAZDA",,"4000 VETERANS BLVD.",,"METAIRIE","LA","70002",,,,,,,"720394017","5048885420",,,,"2011-07-25T12:35:13-0500","JOSEPH SALINAS",,,,,113,100,0,14,114,1,115,42,0,,"2E2F2G2J2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725111551P030100141073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPE BANK EMPLOYEES' SAVINGS & PROFIT SHARING PLAN AND TRUST","003","2007-11-01","CAPE BANK",,,"225 NORTH MAIN STREET",,"CAPE MAY COURT HOUSE","NJ","08210",,,,,,,,,,,,,,,,,,"210600992","6094655600","522120","CAPE BANK",,"225 NORTH MAIN STREET",,"CAPE MAY COURT HOUSE","NJ","08210",,,,,,,"210600992","6094655600",,,,"2011-07-25T11:15:41-0500","GUY HACKNEY","2011-07-25T11:15:41-0500","GUY HACKNEY",,,229,207,0,31,238,0,238,195,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725123548P040102995137006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TLC ENGINEERING FOR ARCHITECTURE, INC. EMPLOYEE HEALTH AND WELFARE BENEFIT PLAN","504","1990-07-01","TLC ENGINEERING FOR ARCHITECTURE INC.",,,"255 S. ORANGE AVENUE, STE 1600",,"ORLANDO","FL","32801",,,,,,,,,,,,,,,,,,"591228645","4078419050","541330","TLC ENGINEERING FOR ARCHITECTURE INC.",,"255 S. ORANGE AVENUE, STE 1600",,"ORLANDO","FL","32801",,,,,,,"591228645","4078419050",,,,"2011-07-25T08:14:51-0500","AIMEE WEINER",,,,,305,288,6,4,298,,,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725124516P040102999377001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"PHASE FORWARD INCORPORATED EMPLOYEE BENEFIT PLAN","502","1997-12-01","PHASE FORWARD INCORPORATED",,,"77 FOURTH AVE.",,"WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"043386549","7819024498","541700","PHASE FORWARD INCORPORATED",,"77 FOURTH AVE.",,"WALTHAM","MA","02451",,,,,,,"043386549","7819024498",,,,"2011-07-25T12:37:50-0500","MICHELE MACDONALD",,,,,627,560,40,0,600,,600,,,,,"4A4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725072530P040464589120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AUTOMOTIVE SERVICE PRODUCTS, INC. PROFIT SHARING PLAN","001","1997-01-01","AUTOMOTIVE SERVICE PRODUCTS, INC.",,,"1574 PRODUCTION DRIVE",,"BURLINGTON","KY","410059331",,,,,,,,,,,,,,,,,,"611100598","8595252220","441300","AUTOMOTIVE SERVICE PRODUCTS, INC.",,"1574 PRODUCTION DRIVE",,"BURLINGTON","KY","410059331",,,,,,,"611100598","8595252220",,,,"2011-07-25T07:24:15-0500","CHARLENE VATER",,,,,12,10,0,2,12,0,12,11,2,,"2A2E2F2G3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725113938P030100153585001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RYLEY CARLOCK & APPLEWHITE LIFE AND ACCIDENTAL DEATH PLAN","502","1984-04-01","RYLEY CARLOCK & APPLEWHITE",,,"1 N. CENTRAL AVENUE","SUITE 1200","PHOENIX","AZ","85004",,,,,,,"1 N. CENTRAL AVENUE","SUITE 1200","PHOENIX","AZ","85004",,,,,,,"860323339","6022587701","541110","RYLEY CARLOCK & APPLEWHITE",,"1 N. CENTRAL AVENUE","SUITE 1200","PHOENIX","AZ","85004",,,,,,,"860323339","6022587701",,,,"2011-07-25T11:37:22-0500","SHANNON BRYANT",,,,,132,105,1,,106,,106,,,,,"4B4S","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725113951P030100153745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"P-R INC. PROFIT SHARING PLAN","001","1995-01-01","P-R INC.",,"CHARLES INGRAM","P O BOX 205","4555 ROBERTS ROAD","ACWORTH","GA","30101",,,,,,,"P O BOX 205","4555 ROBERTS ROAD","ACWORTH","GA","30101",,,,,,,"582088719","7709743188","238900","P-R INC.","CHARLES INGRAM","P O BOX 205","4555 ROBERTS ROAD","ACWORTH","GA","30101",,,,,,,"582088719","7709743188",,,,"2011-07-25T10:28:31-0500","CHARLES INGRAM",,,,,4,4,,,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725114109P030100154225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLESTON RUBBER & GASKET CO., INC. 401K PLAN","002","1989-01-01","CHARLESTON RUBBER & GASKET CO., INC.",,,"1024 BANKTON CIRCLE",,"HANAHAN","SC","294102925",,,,,,,,,,,,,,,,,,"570629101","8437475738","326200","CHARLESTON RUBBER & GASKET CO., INC.",,"1024 BANKTON CIRCLE",,"HANAHAN","SC","294102925",,,,,,,"570629101","8437475738",,,,"2011-07-25T11:40:17-0500","MICHAEL LANE",,,,,34,29,0,5,34,0,34,32,0,,"2E2G2J2K3D2F2T",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725101848P040003110835001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RONALD BLUE & CO HEALTH PLAN","502","1994-01-01","RONALD BLUE & CO LLC",,,"300 COLONIAL CENTER PARKWAY","SUITE 300","ROSWELL","GA","30076",,,,,,,"300 COLONIAL CENTER PARKWAY","SUITE 300","ROSWELL","GA","30076",,,,,,,"581411966","7702806000","523900","RONALD BLUE & CO LLC",,"300 COLONIAL CENTER PARKWAY","SUITE 300","ROSWELL","GA","30076",,,,,,,"581411966","7702806000",,,,"2011-07-25T09:36:47-0500","PATTY WARREN",,,,,209,205,3,,208,,208,,,,,"4A4D","1",,,"1","1",,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725125258P040015189858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"R.C. GALUTIA, INC. MONEY PURCHASE PLAN","002","1984-04-01","R.C. GALUTIA, INC.",,,"P.O. BOX 159",,"WHEELER","TX","79096",,,,,,,"905 S. MOBEETIE",,"WHEELER","TX","79096",,,,,,,"751952426","8068263581","621111","R.C. GALUTIA, INC.",,"P.O. BOX 159",,"WHEELER","TX","79096",,,,,,,"751952426","8068263581",,,,"2011-07-24T17:29:14-0500","ROBERT GALUTIA",,,,,3,3,0,0,3,0,3,3,0,,"2C2F2G2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725103346P040015178322001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"L.L. & G., INC. AND AFFILIATES EMPLOYEES PROFIT SHARING PLAN AND TRUST","001","1981-12-31","L.L. & G., INC.",,,"335 N WASHINGTON ST STE 120",,"HUTCHINSON","KS","675014866",,,,,,,,,,,,,,,,,,"480777932","6206691194","722110","L.L. & G., INC.",,"335 N WASHINGTON ST STE 120",,"HUTCHINSON","KS","675014866",,,,,,,"480777932","6206691194",,,,"2011-07-25T10:22:14-0500","GALE PREMER","2011-07-25T10:22:14-0500","GALE PREMER",,,736,379,0,141,520,2,522,479,86,,"2E2F2G2T3D3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725112659P030100146337004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BAKER & COLSON PC 401K PROFIT SHARING PLAN","001","1988-10-01","BAKER & COLSON, P C",,,"2414 NE DIVISION",,"GRESHAM","OR","97030",,,,,,,,,,,,,,,,,,"260441523","5036665569","541211","BAKER & COLSON P C",,"2414 NE DIVISION",,"GRESHAM","OR","97030",,,,,,,"260441523","5036665569",,,,"2011-07-25T11:06:32-0500","RANDOLPH L COLSON",,,,,16,14,1,,15,,15,14,1,,"2R2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725130410P040103011105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARMSTRONG WEALTH MANAGEMENT GROUP 401(K) PSP & TRUST","001","2003-01-01","ARMSTRONG WEALTH MANAGEMENT GRP.",,,"1801C W EVANS ST",,"FLORENCE","SC","29501",,,,,,,,,,,,,,,,,,"020606699","8432929997","523900","ARMSTRONG WEALTH MANAGEMENT GRP.",,"1801C W EVANS ST",,"FLORENCE","SC","29501",,,,,,,"020606699","8432929997",,,,"2011-07-25T13:03:40-0500","REGINALD ARMSTRONG",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725133045P040465432560001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEWS AMERICA INCORPORATED CAFETERIA PLAN","510","1994-05-01","NEWS AMERICA INCORPORATED",,,"1211 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10036",,,,,,,"1211 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10036",,,,,,,"133249610","2128527000","519100","NEWS AMERICA INCORPORATED",,"1211 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10036",,,,,,,"133249610","2128527000",,,,"2011-07-25T13:30:28-0500","EDWARD PETROSKI",,,,,788,735,,,735,,735,,,,,"4A","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725130448P040015191298001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OAK HILL SURGICAL PRACTICE PROFIT SHARING PLAN","001","1987-01-01","NIRMAL K DUTTA","OAK HILL SURGICAL PRACTICE",,"PO BOX 193",,"OAK HILL","OH","45656",,,,,,,"PO BOX 193",,"OAK HILL","OH","45656",,,,,,,"311191854","7402887784","621111","NIRMAL K DUTTA",,"PO BOX 193",,"OAK HILL","OH","45656",,,,,,,"311191854","7402887784",,,,"2011-07-25T13:04:30-0500","RONALD ATKINSON",,,,,2,2,,,2,,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725133641P030100217121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CINCINNATI MUSEUM CENTER WELFARE PLAN","504","1996-07-01","CINCINNATI MUSEUM CENTER",,,"1301 WESTERN AVE",,"CINCINNATI","OH","45203",,,,,,,,,,,,,,,,,,"311212634","5132877009","712100","CINCINNATI MUSEUM CENTER","DAVID HOWARD","1301 WESTERN AVE",,"CINCINNATI","OH","45203",,,,,,,"311212634","5132877009",,,,"2011-07-25T13:35:57-0500","DAVID HOWARD-DIRECTOR OF H.R.","2011-07-25T13:35:57-0500","DAVID HOWARD - DIRECTOR OF H.R.",,,178,169,,,169,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725113008P030100148449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAMA PROFIT SHARING PLAN","001","1985-01-01","THE BAMA COMPANIES, INC.",,,"2727 E. 11TH STREET",,"TULSA","OK","74104",,,,,,,,,,,,,,,,,,"730988323","9185920778","311800","THE BAMA COMPANIES, INC.",,"2727 E. 11TH STREET",,"TULSA","OK","74104",,,,,,,"730988323","9185920778",,,,"2011-07-25T11:25:17-0500","LAURIE GRAVES","2011-07-25T11:25:17-0500","LAURIE GRAVES",,,1044,786,1,280,1067,0,1067,939,37,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725120551P040102977121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONTANA CONTRACTORS ASSOC, INC. 401(K) RETIREMENT PLAN & TRUST","004","1998-01-01","S K CONSTRUCTION, INC.",,,"P. O. BOX 18276",,"MISSOULA","MT","59808",,,,,,,,,,,,,,,,,,"810375744","4064497937","237310","ADMIN COMMITTEE, MONTANA CONTRACTORS ASSOC",,"404 N 31ST STREET STE 125","PO BOX 30177","BILLINGS","MT","59101",,,,,,,"810448832","4062569910",,,,"2011-07-25T12:03:26-0500","ANDREW TRI","2011-07-25T12:03:26-0500","MARVIN REHBEIN",,,1,0,0,1,1,0,1,1,0,,"2E2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110725130030P040103008705001","2010-07-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"MEDICAL EYE SERVICE","507","1995-07-01","MONTEREY INSTITUTE OF INTERNATIONAL STUDIES",,,"460 PIERCE STREET",,"MONTEREY","CA","93940",,,,,,,"460 PIERCE STREET",,"MONTEREY","CA","93940",,,,,,,"941425570","8316474100","611000","MONTEREY INSTITUTE OF INTERNATIONAL STUDIES",,"460 PIERCE STREET",,"MONTEREY","CA","93940",,,,,,,"941425570","8316474100",,,,"2011-07-25T12:57:11-0500","STEVEN MARINO",,,,,189,196,,,196,,196,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725110243P030014652594005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WHITEWATER INC PROFIT SHARING PLAN","001","1972-12-13","WHITEWATER INC",,"D STEWART ALLEN","6743 N ESHLEMAN RD",,"NORTH PLATTE","NE","691031534",,,,,,,"6743 N ESHLEMAN RD",,"NORTH PLATTE","NE","691031534",,,,,,,"470597050","3085326061","112111","WHITEWATER INC","D STEWART ALLEN","6743 N ESHLEMAN RD",,"NORTH PLATTE","NE","691031534",,,,,,,"470597050","3085326061",,,,"2011-07-25T04:06:09-0500","D STEWART ALLEN",,,,,3,3,,,3,,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725141710P040465554080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"READFIELD MEATS, INC. 401(K) PROFIT SHARING PLAN","001","1984-07-01","READFIELD MEATS, INC.",,,"2130 E.WM. J. BRYAN PKWY",,"BRYAN","TX","77805",,,,,,,,,,,,,,,,,,"742016378","9797765685","423990","READFIELD MEATS, INC.",,"2130 E.WM. J. BRYAN PKWY",,"BRYAN","TX","77805",,,,,,,"742016378","9797765685",,,,"2011-07-25T14:12:23-0500","RICHARD RUFFINO",,,,,97,80,0,10,90,0,90,70,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725130109P040103008993009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PAUL F KIRKEGAARD DDS DBA ST ANTHONY PARK DENTAL CARE EMPLOYEES PROFIT SHARING PLAN AND TRUST","001","2002-01-01","PAUL F KIRKEGAARD, DDS","ST ANTHONY PARK DENTAL CARE",,"2278 COMO AVENUE",,"ST PAUL","MN","55108",,,,,,,,,,,,,,,,,,"411481486","6516449216","621210","PAUL F KIRKEGAARD DDS",,"2278 COMO AVENUE",,"ST PAUL","MN","55108",,,,,,,"411481486","6516449216",,,,"2011-06-28T08:45:12-0500","PAUL KIRKEGAARD",,,,,10,9,,1,10,,10,10,,,"2J2G2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725103539P030002943379001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"EDMUND D QUINTANA PROFIT SHARING TRUST","001","1996-01-01","EDMUND D QUINTANA PA",,,"1100 KRISTANNA DRIVE",,"PANAMA CITY","FL","32405",,,,,,,"1100 KRISTANNA DRIVE",,"PANAMA CITY","FL","32405",,,,,,,"593390454","8508147171","541110","EDMUND D QUINTANA PA",,"1100 KRISTANNA DRIVE",,"PANAMA CITY","FL","32405",,,,,,,"593390454","8508147171",,,,"2011-07-25T10:35:00-0500","EDMUND QUINTANA",,,,,1,1,,,1,,1,1,,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725121518P040465254000010","2010-01-01","2010-12-31","2",,,,,,"1",,,,,,"AMERICAN ORDNANCE LLC SAVINGS PLAN FOR BARGAINING EMPLOYEES","007","1999-11-30","AMERICAN ORDNANCE LLC",,"IOWA ARMY AMMUNITION PLANT","17575 HIGHWAY 79",,"MIDDLETOWN","IA","52638",,,,,,,,,,,,,,,,,,"621735307","3197537401","332900","AMERICAN ORDNANCE LLC","IOWA ARMY AMMUNITION PLANT","17575 HIGHWAY 79",,"MIDDLETOWN","IA","52638",,,,,,,"621735307","3197537401",,,,"2011-07-25T12:08:32-0500","MICKEY BURKETT",,,,,139,132,0,3,135,3,138,119,,,"2E2G2J2K2F",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725104203P030469294464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JIM SCHMIDT CHEVROLET - PONTIAC BUICK 401(K) PLAN","001","1995-07-01","JIM SCHMIDT CHEVROLET - PONTIAC BUICK",,,"575 WEST HIGH STREET",,"HICKSVILLE","OH","43526",,,,,,,,,,,,,,,,,,"341082081","4195427776","811110","JIM SCHMIDT CHEVROLET - PONTIAC BUICK",,"575 WEST HIGH STREET",,"HICKSVILLE","OH","43526",,,,,,,"341082081","4195427776",,,,"2011-07-25T10:40:03-0500","MICHELE PETER",,,,,60,54,0,8,62,0,62,41,1,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725140649P040103051137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARCADIA INC GROUP BENEFITS PLAN","502","1995-08-01","ARCADIA INC",,,"2301 E. VERNON AVENUE",,"VERNON","CA","90058",,,,,,,"2301 E. VERNON AVENUE",,"VERNON","CA","90058",,,,,,,"954021169","3232697300","332900","ARCADIA INC",,"2301 E. VERNON AVENUE",,"VERNON","CA","90058",,,,,,,"954021169","3232697300",,,,"2011-07-25T13:20:04-0500","KHAN CHOW",,,,,471,471,,,471,,471,,,0,,"4A4B4D","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725121050P030100170737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHMOND AREA ASSN FOR RETARDED CITIZENS HEALTH & WELFARE","503","2009-01-01","RICHMOND AREA ASSN FOR RETARDED CIT",,,"1901 WESTWOOD AVENUE",,"RICHMOND","VA","23227",,,,,,,,,,,,,,,,,,"540629691","8043581874","238900","RICHMOND AREA ASSN FOR RETARDED CIT",,"1901 WESTWOOD AVENUE",,"RICHMOND","VA","23227",,,,,,,"540629691","8043581874",,,,"2011-07-25T12:09:50-0500","CHARLES STORY",,,,,186,179,,,179,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",, "20110725105502P030469324080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIPOSCIENCE INC GROUP MEDICAL PLAN","506","2004-06-01","LIPOSCIENCE INC",,,"2500 SUMNER BLVD",,"RALEIGH","NC","276163235",,,,,,,,,,,,,,,,,,"561879288","9192561238","621510","LIPOSCIENCE INC",,"2500 SUMNER BLVD",,"RALEIGH","NC","276163235",,,,,,,"561879288","9192561238",,,,"2011-07-25T10:47:10-0500","WENDY WARD","2011-07-25T10:53:53-0500","DUFFY MCDONALD",,,118,127,1,0,128,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-25","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110727080007P040104203169001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HENRY B KEIDEL SELF EMPLOYED RETIREMENT PLAN","001","1974-01-01","HENRY B KEIDEL",,,"165 LAUREL AVENUE",,"NORTHPORT","NY","11731",,,,,,,,,,,,,,,,,,"112646675","6312611501","621310","HENRY B KEIDEL",,"165 LAUREL AVENUE",,"NORTHPORT","NY","11731",,,,,,,"112646675","6312611501",,,,"2011-06-29T12:54:30-0500","HENRY B KEIDEL",,,,,1,1,0,0,1,0,1,1,,,"2E",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727095550P030101507713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATLANTIC REFRIGERATION CORP. 401(K) PLAN","001","1989-01-01","ATLANTIC REFRIGERATION, INC.",,,"1255 NW 17TH AVE STE 1",,"DELRAY BEACH","FL","33445",,,,,,,,,,,,,,,,,,"650018913","5612781937","238220","ATLANTIC REFRIGERATION, INC.",,"1255 NW 17TH AVE STE 1",,"DELRAY BEACH","FL","33445",,,,,,,"650018913","5612781937",,,,"2011-07-27T09:51:25-0500","MICHAEL PAKRADOONI",,,,,23,22,0,5,27,0,27,27,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727103929P030101538193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTEGRACARE, LTD. 401K PLAN & TRUST","001","1982-09-30","INTEGRACARE, LTD",,,"PO BOX 296",,"SARTELL","MN","563770296",,,,,,,,,,,,,,,,,,"411426790","3202521900","621310","INTEGRACARE, LTD",,"PO BOX 296",,"SARTELL","MN","563770296",,,,,,,"411426790","3202521900",,,,"2011-07-27T10:38:07-0500","MARK HALSTROM",,,,,37,33,1,6,40,0,40,30,2,,"3D2E2G2J2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727104016P040015389842001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACME PACKET, INC. MEDICAL, DENTAL AND LIFE/DISABIL ITY PLAN","506","2002-01-01","ACME PACKET, INC.",,,"100 CROSBY DRIVE",,"BEDFORD","MA","01730",,,,,,,,,,,,,,,,,,"043526641","7813284400","334200","ACME PACKET, INC.",,"100 CROSBY DRIVE",,"BEDFORD","MA","01730",,,,,,,"043526641","7813284400",,,,"2011-07-27T10:39:54-0500","ANDRE NORMAND",,,,,333,387,4,0,391,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727111832P030475473360001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ALI-NORTH AMERICA, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1992-01-01","ALI-NORTH AMERICA, INC.",,,"3765 CHAMPION BLVD.",,"WINSTON-SALEM","NC","27105",,,,,,,,,,,,,,,,,,"561759822","3366611556","335900","ALI-NORTH AMERICA, INC.",,"3765 CHAMPION BLVD.",,"WINSTON-SALEM","NC","27105",,,,,,,"561759822","3366611556",,,,"2011-07-27T12:18:17-0500","KARENA TATE",,,,,85,64,0,25,89,0,89,85,0,,"2E2F2G2J2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727132352P040015404546001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN MICROSYSTEMS LTD 401(K) PROFIT SHARING PLAN & TRUST","001","2002-01-01","AMERICAN MICROSYSTEMS LTD",,,"2190 REGAL PARKWAY",,"EULESS","TX","76040",,,,,,,,,,,,,,,,,,"752485699","8175719015","425110","AMERICAN MICROSYSTEMS LTD",,"2190 REGAL PARKWAY",,"EULESS","TX","76040",,,,,,,"752485699","8175719015",,,,"2011-07-27T01:23:49-0500","AMERICAN MICROSYSTEMS LTD",,,,,28,20,0,1,21,0,21,17,0,,"2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727132403P040471406736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPITAL ENTERPRISES SUPPLEMENTAL LIFE INSURANCE PLAN","503","1989-09-01","WK CAPITAL ENTERPRISES, INC.",,,"3445 N WEBB ROAD",,"WICHITA","KS","67226",,,,,,,"3445 N WEBB ROAD",,"WICHITA","KS","67226",,,,,,,"480914416","3166341617","561110","WK CAPITAL ENTERPRISES, INC.",,"3445 N WEBB ROAD",,"WICHITA","KS","67226",,,,,,,"480914416","3166341617",,,,"2011-07-27T11:31:05-0500","JEROLD HEIDE","2011-07-27T12:55:16-0500","MONA SCHNEIDER",,,137,143,,,143,,143,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727082121P040470595312001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ART STONE THEATRICAL CORP. 401 (K) SAVINGS PLAN","001","2004-01-01","ART STONE THEATRICAL CORP.",,,"1795 EXPRESS DRIVE NORTH",,"SMITHTOWN","NY","11788",,,,,,,,,,,,,,,,,,"131973856","6315829500","812990","ART STONE THEATRICAL CORP.",,"1795 EXPRESS DRIVE NORTH",,"SMITHTOWN","NY","11788",,,,,,,"131973856","6315829500",,,,"2011-07-27T08:20:44-0500","IRA PLUTNER",,,,,249,181,0,10,191,0,191,41,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727083007P040104222337009","2010-03-01","2011-02-28","2",,,"1",,,,,,,,,"GRAVES & ASSOCIATES, INC. PROFIT SHARING PLAN","001","1976-03-16","GRAVES & ASSOCIATES, INC.",,,"P.O. BOX 1549",,"PINE BLUFF","AR","716131549",,,,,,,,,,,,,,,,,,"710394722","8705354123","237310","GRAVES & ASSOCIATES, INC.",,"P.O. BOX 1549",,"PINE BLUFF","AR","716131549",,,,,,,"710394722","8705354123",,,,"2011-07-25T17:05:58-0500","DON C. GRAVES",,,,,25,24,0,3,27,0,27,27,2,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727101004P040104278289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ELLIOTT TAPE, INC. 401(K) PLAN","002","1998-01-01","ELLIOTT TAPE, INC.",,,"1882 POND RUN",,"AUBURN HILLS","MI","48326",,,,,,,,,,,,,,,,,,"382047908","2484755786","423990","ELLIOTT TAPE, INC.",,"1882 POND RUN",,"AUBURN HILLS","MI","48326",,,,,,,"382047908","2484755786",,,,"2011-07-27T10:09:33-0500","PAULA JOACHIM","2011-07-27T10:09:33-0500","PAULA JOACHIM",,,24,22,0,2,24,0,24,18,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727134117P040471451776001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THERMADYNE HOLDINGS CORPORATION CAFETERIA PLAN","520","1991-01-01","THERMADYNE HOLDINGS CORPORATION",,,"16052 SWINGLEY RIDGE RD, SUITE 300",,"CHESTERFIELD","MO","630172079",,,,,,,,,,,,,,,,,,"742482571","6367283035","333510","THERMADYNE HOLDINGS CORPORATION",,"16052 SWINGLEY RIDGE RD, SUITE 300",,"CHESTERFIELD","MO","630172079",,,,,,,"742482571","6367283035",,,,"2011-07-27T13:40:58-0500","JAN SCHOEMEHL","2011-07-27T13:40:58-0500","JAN SCHEOMEHL",,,1136,804,33,0,837,,,,,,,"4A4B4D4E4F4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727124228P040104361537003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BRYAN J RIPELLINO PSP QRP","001","2002-01-01","BRYAN RIPELLINO AGENCY LLC",,,"S 3346 SOUTHWESTERN BLVD.",,"ORCHARD PARK","NY","14127",,,,,,,"S 3346 SOUTHWESTERN BLVD.",,"ORCHARD PARK","NY","14127",,,,,,,"161589361","7166758100","524210","BRYAN RIPELLINO AGENCY LLC",,"S 3346 SOUTHWESTERN BLVD.",,"ORCHARD PARK","NY","14127",,,,,,,"161589361","7166758100",,,,"2011-07-10T09:07:47-0500","BRYAN RIPELLINO",,,,,1,1,,,1,,1,,,,"2E2G3B3D3F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727070703P030474881280001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"VILLAGE FARMS, L.P. GROUP HEALTH PLAN","501","2000-01-02","VILLAGE FARMS, L.P.",,,"7 CHRISTOPHER WAY",,"EATONTOWN","NJ","07724",,,,,,,,,,,,,,,,,,"223694947","7326763000","111400","VILLAGE FARMS, L.P.",,"7 CHRISTOPHER WAY",,"EATONTOWN","NJ","07724",,,,,,,"223694947","7326763000",,,,"2011-07-26T11:07:17-0500","DAWN MODAFERI","2011-07-26T11:07:17-0500","DAWN MODAFERI",,,445,483,,,483,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727104424P030101540321002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE STAR GROUP EMPLOYEE BENEFIT PLAN","510","2005-01-01","THE STAR GROUP",,,"VOORHEES TOWN CENTER","220 LAUREL ROAD","VOORHEES","NJ","08043",,,,,,,,,,,,,,,,,,"222644854","8567827000","541990","THE STAR GROUP",,"VOORHEES TOWN CENTER","220 LAUREL ROAD","VOORHEES","NJ","08043",,,,,,,"222644854","8567827000",,,,"2011-07-27T06:41:15-0500","CONNIE FITHIAN",,,,,270,249,13,,262,,,,,,,"4A4B4D4F4H4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727104424P030101540321009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STRUCTURAL CONSULTING CO. INC. PROFIT SHARING PLAN & TRUST","001","1990-01-01","STRUCTURAL CONSULTING CO., INC.",,,"1608 WEST MAIN",,"HOUSTON","TX","77006",,,,,,,,,,,,,,,,,,"760218469","7135208528","541310","STRUCTURAL CONSULTING CO., INC.",,"1608 WEST MAIN",,"HOUSTON","TX","77006",,,,,,,"760218469","7135208528",,,,"2011-07-27T04:26:55-0500","JON MONTEITH","2011-07-27T04:26:55-0500","JON MONTEITH","2011-07-27T04:26:55-0500","JON MONTEITH",10,12,,,12,,12,10,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110727104436P030101540369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"1607 CAPITAL PARTNERS 401K PLAN AND TRUST","001","2008-01-01","1607 CAPITAL PARTNERS LLC",,,"4991 LAKE BROOK DR","SUITE 125","GLEN ALLEN","VA","230609290",,,,,,,,,,,,,,,,,,"260529973","8045251750","523900","1607 CAPITAL PARTNERS LLC",,"4991 LAKE BROOK DR","SUITE 125","GLEN ALLEN","VA","230609290",,,,,,,"260529973","8045251750",,,,"2011-07-27T10:44:00-0500","THOMAS TATTERSALL",,,,,9,10,0,0,10,0,10,10,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727114057P040104329489003","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"ROMAN/THAYER DESIGN, INC. PROFIT SHARING PLAN","001","1996-12-26","ROMAN/THAYER DESIGN, INC.",,,"1133 BROADWAY-SUITE 1424",,"NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"133695532","2126270027","541400","ROMAN/THAYER DESIGN, INC.",,"1133 BROADWAY-SUITE 1424",,"NEW YORK","NY","10010",,,,,,,"133695532","2126270027",,,,"2011-07-15T05:17:52-0500","ROBERT ROSENBERG",,,,,2,2,,,2,,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727134507P040104410945004","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"TRANS PACIFIC TRADE INC. 401K PLAN","002","2006-03-24","TRANS PACIFIC TRADE INC.",,,"30200 TELEGRAPH ROAD SUITE 451",,"BINGHAM FARMS","MI","48025",,,,,,,,,,,,,,,,,,"382705803","2487230666","541990","TRANS PACIFIC TRADE INC.",,"30200 TELEGRAPH ROAD SUITE 451",,"BINGHAM FARMS","MI","48025",,,,,,,"382705803","2487230666",,,,"2011-07-20T19:53:22-0500","DONNA M. LEI","2011-07-20T19:53:24-0500","DONNA M. LEI",,,5,0,0,0,0,0,0,,,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727131325P030101623025004","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"EARTH POLICY INSTITUTE DEFINED CONTRIBUTION RETIREMENT PLAN","001","2001-05-01","EARTH POLICY INSTITUTE",,,"1350 CONNECTICUT AVE., NW SUITE 403",,"WASHINGTON","DC","20036",,,,,,,,,,,,,,,,,,"522300217","2024969290","511130","EARTH POLICY INSTITUTE",,"1350 CONNECTICUT AVE., NW SUITE 403",,"WASHINGTON","DC","20036",,,,,,,"522300217","2024969290",,,,"2011-07-26T08:05:56-0500","REAH JANISE KAUFFMAN",,,,,21,6,0,13,19,0,19,19,0,,"2F2G2L3D",,"1",,,,"1",,,,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727055256P030101385537001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","0","0","0","0",,"BERTELSMANN EMPLOYEE PROTECTION PLAN","503","1935-01-01","BERTELSMANN, INC",,"LYNDA FALLS","1745 BROADWAY",,"NEW YORK","NY","10019",,,,,,,"1745 BROADWAY",,"NEW YORK","NY","10019",,,,,,,"952949493","2127821500","511130","BERTELSMANN, INC","LYNDA FALLS","1745 BROADWAY",,"NEW YORK","NY","10019",,,,,,,"952949493","2127821500",,,,"2011-07-27T05:24:18-0500","ROBERT SORRENTINO",,,,,8433,6781,1173,1350,9304,,9304,,,,,"4A4B4D4E4F4H4L","1",,,"1","1",,,"1",,,,,,"1","10","1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727105349P030101545009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"YEMM CHEVROLET, INC. NADART SALARY DEF 401K PLAN","001","1981-07-01","YEMM CHEVROLET, INC.",,,"2195 N HENDERSON ST",,"GALESBURG","IL","61402",,,,,,,,,,,,,,,,,,"370809899","3093442727","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:48-0500","ALAN B. SVEDLOW",,,,,68,56,2,9,67,0,67,59,3,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727111412P030014872498001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"NORTHLAND TRANSPORTATION COMPANY 401(K) PROFIT SHARING PLAN","001","1990-07-01","NORTHLAND TRANSPORTATION COMPANY",,,"P.O. BOX 24527",,"SEATTLE","WA","98124",,,,,,,,,,,,,,,,,,"200073045","2067363000","483000","NORTHLAND TRANSPORTATION COMPANY",,"P.O. BOX 24527",,"SEATTLE","WA","98124",,,,,,,"200073045","2067363000",,,,"2011-07-27T12:13:27-0500","BARRY L. HACHLER",,,,,486,331,0,107,438,0,438,416,14,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727105403P030475400576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILSON CHRYSLER JEEP, INC NADART SALARY DEF 401K PLAN","001","1995-10-01","WILSON CHRYSLER JEEP, INC",,,"307 E MAIN ST",,"CLINTON","IL","61727",,,,,,,,,,,,,,,,,,"371128232","2179353131","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:48-0500","ALAN B. SVEDLOW",,,,,11,11,1,0,12,0,12,9,0,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727094530P030475221040001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AURORA HEALTH CARE, INC. TRAVEL ACCIDENT PLAN","504","1980-03-20","AURORA HEALTH CARE, INC.",,"SAME","POST OFFICE BOX 343910",,"MILWAUKEE","WI","532343910",,,,,,,"750 W VIRGINIA STREET",,"MILWAUKEE","WI","53215",,,,,,,"391442285","4146473448","622000","AURORA HEALTH CARE, INC.","SAME","POST OFFICE BOX 343910",,"MILWAUKEE","WI","532343910",,,,,,,"391442285","4146473448",,,,"2011-07-27T09:44:26-0500","KATHERINE KLOBUCHAR",,,,,28887,30177,,,30177,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727134329P040104409297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ASPEN INSURANCE US SERVICES HEALTH AND WELFARE PLAN","501","2006-01-01","ASPEN INSURANCE US SERVICES INC.",,,"600 ATLANTIC AVENUE","FLOORS 20 AND 21","BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"320085193","6175327300","524150","ASPEN INSURANCE US SERVICES INC.",,"600 ATLANTIC AVENUE","FLOORS 20 AND 21","BOSTON","MA","02210",,,,,,,"320085193","6175327300",,,,"2011-07-27T13:42:50-0500","EMILY DYSON",,,,,229,187,,,187,,,,,,,"4A4B4D4E4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727090157P030101474081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KELLY, LEGAN & GERARD INC. 401(K) RETIREMENT","001","1995-06-01","KELLY, LEGAN AND GERARD INC",,,"104 FIFTH AVENUE","19TH FLOOR","NEW YORK","NY","10011",,,,,,,"104 FIFTH AVENUE","19TH FLOOR","NEW YORK","NY","10011",,,,,,,"133709023","2125145885","541600","KELLY, LEGAN AND GERARD INC",,"104 FIFTH AVENUE","19TH FLOOR","NEW YORK","NY","10011",,,,,,,"133709023","2125145885",,,,"2011-07-27T09:00:18-0500","CARRIE YOUNGBERG",,,,,13,11,0,7,18,0,18,14,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727085128P040104230689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VICTOR AUTOMOTIVE, INC. NADART SALARY DEF 401K PLAN","001","2008-05-01","VICTOR AUTOMOTIVE, INC.",,,"2409 N. BROAD ST.",,"SELMA","AL","36701",,,,,,,,,,,,,,,,,,"630961029","3348722371","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T08:50:42-0500","ALAN B. SVEDLOW",,,,,16,17,0,2,19,0,19,10,2,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727095803P030101508625001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"OTTERBOURG STEINDLER HOUSTON & ROSEN P.C. LONG TERM DISABILITY","507","1987-01-01","OTTERBOURG STEINDLER HOUSTON & ROSEN P.C.",,,"230 PARK AVENUE",,"NEW YORK","NY","10169",,,,,,,"230 PARK AVENUE",,"NEW YORK","NY","10169",,,,,,,"132660310","2126619100","541110","BOARD OF DIRECTORS",,"230 PARK AVENUE",,"NEW YORK","NY","10169",,,,,,,"133344893","2126619100",,,,"2011-07-27T09:27:22-0500","DANIEL WALLEN",,,,,102,103,,,103,,103,,,,,"4H4S","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727113008P030101564993008","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"PLAINFIELD FAMILY DNTL, INC. 401(K) & PROFIT-SHRNG","001","2002-12-31","PLAINFIELD FAMILY DENTAL, INC.",,,"1620 HAWTHORN DR., STE 100",,"PLAINFIELD","IN","46168",,,,,,,,,,,,,,,,,,"371423148","3178398684","621210","PLAINFIELD FAMILY DENTAL, INC.",,"1620 HAWTHORN DR., STE 100",,"PLAINFIELD","IN","46168",,,,,,,"371423148","3178398684",,,,"2011-07-27T11:28:42-0500","DR. TIMOTHY WILLIAMS","2011-07-27T11:29:12-0500","DR. TIMOTHY WILLIAMS",,,6,8,0,0,8,0,8,8,,,"2E2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727121046P030475611408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAMPDEN BANK EMPLOYEE STOCK OWNERSHIP PLAN & TRUST","003","2007-01-01","HAMPDEN BANK",,,"19 HARRISION AVENUE",,"SPRINGFIELD","MA","01103",,,,,,,,,,,,,,,,,,"041414080","4134525113","522120","HAMPDEN BANK",,"19 HARRISION AVENUE",,"SPRINGFIELD","MA","01103",,,,,,,"041414080","4134525113",,,,"2011-07-27T11:41:10-0500","LYNN BUNCE",,,,,102,95,0,10,105,0,105,105,1,,"2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727113250P030101566321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DEPAUL UNIVERSITY 403(B) RETIREMENT PLAN","001","1948-02-01","DEPAUL UNIVERSITY",,"C/O BENEFITS DEPT, OFFICE OF HR","1 E. JACKSON BLVD.",,"CHICAGO","IL","60604",,,,,,,,,,,,,,,,,,"362167048","3123628232","611000","DEPAUL UNIVERSITY","C/O BENEFITS DEPT, OFFICE OF HR","1 E. JACKSON BLVD.",,"CHICAGO","IL","60604",,,,,,,"362167048","3123628232",,,,"2011-07-27T11:31:45-0500","WILLIAM SEITHEL",,,,,7403,4977,15,2296,7288,15,7303,4831,0,,"2F2G2L2M2R2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727113313P030101566561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FALLS DODGE, INC. DBA JOE CECCONI'S CHRYSLER COMPL NADART SALARY DEF 401K PLAN","001","1977-01-01","FALLS DODGE, INC. DBA JOE CECCONI'S",,,"2380 MILITARY ROAD",,"NIAGARA FALLS","NY","14304",,,,,,,,,,,,,,,,,,"160865689","7162975800","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T11:24:47-0500","ALAN B. SVEDLOW",,,,,20,29,2,15,46,0,46,21,0,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727101235P030002987155001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"DSI VIDEO SYSTEMS LLC TRADING AS DIVERSIFIED SYSTEMS 401(K) PLAN","001","1993-08-01","DSI VIDEO SYSTEMS LLC TRADING AS DIVERSIFIED",,,"363 MARKET ST",,"KENILWORTH","NJ","070332033",,,,,,,,,,,,,,,,,,"320034094","9082454833","334310","DSI VIDEO SYSTEMS LLC TRADING AS DIVERSIFIED",,"363 MARKET ST",,"KENILWORTH","NJ","070332033",,,,,,,"320034094","9082454833",,,,"2011-07-27T10:12:31-0500","ALFRED DALESSANDRO","2011-07-27T10:12:31-0500","ALFRED DALESSANDRO",,,148,143,0,11,154,0,154,125,11,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727121511P040104346801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHARMERICA CORPORATION PLAN FOR EMPLOYEE BENEFITS","501","2007-08-01","PHARMERICA CORPORATION",,,"1901 CAMPUS PLACE",,"LOUISVILLE","KY","40299",,,,,,,,,,,,,,,,,,"870792558","5026277000","446110","PHARMERICA CORPORATION",,"1901 CAMPUS PLACE",,"LOUISVILLE","KY","40299",,,,,,,"870792558","5026277000",,,,"2011-07-27T12:14:48-0500","CHRISTOPHER D. MOSS",,,,,4779,4495,101,0,4596,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727131511P040015403778005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BOYLE REALTY COMPANY 401(K) PROFIT SHARING PLAN","001","1991-01-01","BOYLE REALTY COMPANY",,,"6705 WEST 12TH, SUITE 2",,"LITTLE ROCK","AR","72204",,,,,,,,,,,,,,,,,,"710019440","5016030099","531120","BOYLE REALTY COMPANY",,"6705 WEST 12TH, SUITE 2",,"LITTLE ROCK","AR","72204",,,,,,,"710019440","5016030099",,,,"2011-07-27T13:10:17-0500","JOEL LEDBETTER",,,,,3,3,0,0,3,0,3,3,,,"2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727131630P030101624529001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MONAGHAN & ASSOCIATES, P.C. 401(K) & PROFIT SHARING PLAN","001","2008-01-01","MONAGHAN & ASSOCIATES, P.C. 401 K PROFIT SHARING PLAN",,,"4111 S DARLINGTON AVE STE 900",,"TULSA","OK","74135",,,,,,,,,,,,,,,,,,"731462892","9186276202","541110","MONAGHAN & ASSOCIATES, P.C. 401 K PROFIT SHARING PLAN",,"4111 S DARLINGTON AVE STE 900",,"TULSA","OK","74135",,,,,,,"731462892","9186276202",,,,"2011-07-27T13:15:08-0500","KELLY MONAGHAN",,,,,10,9,0,1,10,0,10,10,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110726190930P040469195360001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EAGLE INDUSTRIES, INC 401(K) PROFIT SHARING PLAN","001","1994-01-01","EAGLE INDUSTRIES, INC",,,"1337 GOLDENROD ROAD",,"BURLINGTON","WA","98233",,,,,,,,,,,,,,,,,,"911198966","3607571515","441221","EAGLE INDUSTRIES, INC",,"1337 GOLDENROD ROAD",,"BURLINGTON","WA","98233",,,,,,,"911198966","3607571515",,,,"2011-07-26T19:06:09-0500","LORIE SMITH","2011-07-26T13:42:49-0500","LORIE SMITH",,,37,15,0,24,39,0,39,38,0,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726192314P030473628224001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEALING HANDS HOME CARE INC 401K PLAN","001","2006-01-01","HEALING HANDS HOME CARE, INC.",,,"6730 W HIGGINS",,"CHICAGO","IL","60656",,,,,,,"6730 W HIGGINS",,"CHICAGO","IL","60656",,,,,,,"010614555","7737923333","621610","HEALING HANDS HOME CARE, INC.",,"6730 W HIGGINS",,"CHICAGO","IL","60656",,,,,,,"010614555","7737923333",,,,"2011-07-26T19:22:57-0500","ANGELA MAROULIS",,,,,25,34,,,34,,34,34,,,"2G2J2R",,,,"1",,,,"1",,"1",,,"0","1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110727074757P030101431297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DANIEL R WHIPPLE MD PC PROFIT SHARING PLAN","001","1994-01-01","DANIEL R WHIPPLE MD PC",,,"8244 E US 36","SUITE 200","AVON","IN","46123",,,,,,,"8244 E US 36","SUITE 200","AVON","IN","46123",,,,,,,"351848530","3172722020","621111","DANIEL R WHIPPLE MD PC",,"8244 E US 36","SUITE 200","AVON","IN","46123",,,,,,,"351848530","3172722020",,,,"2011-07-27T07:47:16-0500","MICHELLE MCDERMOTT",,,,,6,7,0,0,7,0,7,7,0,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727102901P030101531041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONCORDANT 401(K) PLAN","001","2000-07-01","CONCORDANT, INC.",,,"112 DUNN ROAD",,"ASHBURNHAM","MA","01430",,,,,,,,,,,,,,,,,,"043479695","9788273399","541519","CONCORDANT, INC.",,"112 DUNN ROAD",,"ASHBURNHAM","MA","01430",,,,,,,"043479695","9788273399",,,,"2011-07-27T10:27:23-0500","MARY BETH JOKELA",,,,,75,58,0,0,58,0,58,54,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727105444P040104303105009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SIAA MID AMERICA, INC. PROFIT SHARING PLAN","001","2001-01-01","SIAA/MIDAMERICA, INC.",,,"PO BOX 1905",,"BLOWING ROCK","NC","286051905",,,,,,,,,,,,,,,,,,"562039007","8282958555","524290","SIAA/MIDAMERICA, INC.",,"PO BOX 1905",,"BLOWING ROCK","NC","286051905",,,,,,,"562039007","8282958555",,,,"2011-07-27T06:13:45-0500","TINA BARRETT",,,,,2,2,,,2,,2,2,,,"2E2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727114818P030101579249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOME OFFICE GROUP LIFE INSURANCE PLAN","502","1957-10-01","THE OHIO NATIONAL LIFE INSURANCE COMPANY",,,"ONE FINANCIAL WAY","C/O TAX DEPT, 75A","CINCINNATI","OH","45242",,,,,,,"ONE FINANCIAL WAY","C/O TAX DEPT, 75A","CINCINNATI","OH","45242",,,,,,,"310397080","5137946100","524140","THE OHIO NATIONAL LIFE INSURANCE COMPANY",,"ONE FINANCIAL WAY","C/O TAX DEPT, 75A","CINCINNATI","OH","45242",,,,,,,"310397080","5137946100",,,,"2011-07-26T10:56:19-0500","CLETUS DAVIS","2011-07-27T08:16:27-0500","ROBERT GONGWER",,,1339,1336,,,1336,,1336,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727105906P030475415856001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLE-WHITNEY FORD NADART PENSION PLAN","001","1976-01-01","COLE-WHITNEY FORD",,,"74 MAIN STREET",,"LINCOLN","ME","04457",,,,,,,,,,,,,,,,,,"010370178","2077946522","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:50-0500","ALAN B. SVEDLOW",,,,,17,16,0,2,18,0,18,15,0,,"2C2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727111456P030031967143001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AURORA HEALTH CARE, INC. LONG TERM DISABILITY","502","1969-04-01","AURORA HEALTH CARE, INC.",,"SAME","POST OFFICE BOX 343910",,"MILWAUKEE","WI","532343910",,,,,,,"750 W VIRGINIA STREET",,"MILWAUKEE","WI","53215",,,,,,,"391442285","4146473448","622000","AURORA HEALTH CARE, INC.","SAME","POST OFFICE BOX 343910",,"MILWAUKEE","WI","532343910",,,,,,,"391442285","4146473448",,,,"2011-07-27T11:14:27-0500","KATHERINE KLOBUCHAR",,,,,17633,18626,,,18626,,,,,,,"4H","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727133012P030101633137006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LINCOLN NAT'L LT DIS.&LIFE INS PLAN-RIVIER COLLEGE","510","2002-01-01","RIVIER COLLEGE",,,"420 SOUTH MAIN STREET",,"NASHUA","NH","030605086",,,,,,,,,,,,,,,,,,"020223339","6038881311","611000","RIVIER COLLEGE",,"420 SOUTH MAIN STREET",,"NASHUA","NH","030605086",,,,,,,"020223339","6038881311",,,,"2011-07-27T13:24:19-0500","DIANA STRANO",,,,,259,265,,,265,,,,,,,"4B4H4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727134421P040015407138001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"SELLEN CONSTRUCTION COMPANY SHORT TERM DISABILITY PLAN","503","1997-03-01","SELLEN CONSTRUCTION COMPANY",,,"PO BOX 9970",,"SEATTLE","WA","981090970",,,,,,,"227 WESTLAKE AVENUE N",,"SEATTLE","WA","98109",,,,,,,"910592890","2066827770","236200","SELLEN CONSTRUCTION COMPANY",,"PO BOX 9970",,"SEATTLE","WA","981090970",,,,,,,"910592890","2066827770",,,,"2011-07-27T13:44:11-0500","MARK D SUMMERS","2011-07-27T13:44:11-0500","MARK D SUMMERS",,,164,162,0,0,162,,,,,,,"4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726192403P030473629488001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"EVANS DEDICATED SYSTEMS, INC. 401(K) PROFIT SHARING PLAN","001","1989-04-01","EVANS DEDICATED SYSTEMS, INC.",,,"P.O. BOX 9",,"MAYWOOD","CA","90270",,,,,,,,,,,,,,,,,,"953048684","3237252928","484120","EVANS DEDICATED SYSTEMS, INC.",,"P.O. BOX 9",,"MAYWOOD","CA","90270",,,,,,,"953048684","3237252928",,,,"2011-07-26T19:23:00-0500","CLEO EVANS",,,,,194,156,1,35,192,0,192,189,20,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726193016P040103906481002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LANDMARK PRODUCE SALES PROFIT SHARING PLAN","001","1987-01-01","MARCHESOTTI SUTHERLAND PARTNERSHIP","LANDMARK PRODUCE SALES",,"POST OFFICE DRAWER D",,"VICTOR","CA","95253",,,,,,,,,,,,,,,,,,"680090183","2093344666","424500","MARCHESOTTI SUTHERLAND PARTNERSHIP",,"POST OFFICE DRAWER D",,"VICTOR","CA","95253",,,,,,,"680090183","2093344666",,,,"2011-07-26T17:38:33-0500","BRUCE SUTHERLAND",,,,,4,3,,1,4,,4,3,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110727103009P030101531921005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PABLO A. FONCEA, DMD, PC","001","2002-01-01","PABLO A. FONCEA, DMD, PC",,,"2719 KINGSTON PIKE",,"KNOXVILLE","TN","37919",,,,,,,,,,,,,,,,,,"010701108","8655241265","621210","PABLO A. FONCEA, DMD, PC",,"2719 KINGSTON PIKE",,"KNOXVILLE","TN","37919",,,,,,,"010701108","8655241265",,,,"2011-07-27T10:20:51-0500","PABLO A. FONCEA, DMD",,,,,4,4,0,0,4,0,4,4,,,"2E2J2G2F3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727112420P030101561697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE GENERAL CABLE WELFARE BENEFIT PLAN","501","1955-01-01","GK TECHNOLOGIES INC",,,"4 TESSENEER DRIVE",,"HIGHLAND HEIGHTS","KY","41076",,,,,,,"4 TESSENEER DRIVE",,"HIGHLAND HEIGHTS","KY","41076",,,,,,,"133064555","8595728000","332610","GENERAL CABLE INDUSTRIES INC",,"4 TESSENEER DRIVE",,"HIGHLAND HEIGHTS","KY","41076",,,,,,,"061009714","8595728000",,,,"2011-07-27T10:59:18-0500","BETH CURTIS",,,,,1456,1533,0,0,1533,0,1533,,,,,"4A4B4D4E4F4H4L","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727122004P040104348945001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PILOT TRAVEL CENTERS EMPLOYEE BENEFIT PLAN","501","2002-01-01","PILOT TRAVEL CENTERS",,,"5508 LONAS ROAD",,"KNOXVILLE","TN","37909",,,,,,,,,,,,,,,,,,"341953155","8655887488","447100","PILOT TRAVEL CENTERS",,"5508 LONAS ROAD",,"KNOXVILLE","TN","37909",,,,,,,"341953155","8655887488",,,,"2011-07-27T12:19:27-0500","JANET WOMBLE",,,,,7129,11166,80,,11246,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727100048P030475261792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DIVERSIFIED SETTLEMENT SERVICES 401(K) PROFIT SHARING PLAN","001","2003-01-01","DIVERSIFIED SETTLEMENT SERVICES",,"ATTN STEPHEN DANASTOR","1206 VETERANS HWY",,"BRISTOL","PA","19007",,,,,,,,,,,,,,,,,,"232983731","2157811900","524290","DIVERSIFIED SETTLEMENT SERVICES","ATTN STEPHEN DANASTOR","1206 VETERANS HWY",,"BRISTOL","PA","19007",,,,,,,"232983731","2157811900",,,,"2011-07-27T09:59:47-0500","STEPHEN DANASTORG",,,,,15,8,0,7,15,0,15,15,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727114507P040104331201002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EMPLOYEE TRAVEL ACCIDENT POLICY OF WHITMAN COLLEGE","504","1978-03-01","WHITMAN COLLEGE",,,"345 BOYER AVE",,"WALLA WALLA","WA","99362",,,,,,,,,,,,,,,,,,"910567740","5095274936","611000","WHITMAN COLLEGE",,"345 BOYER AVE",,"WALLA WALLA","WA","99362",,,,,,,"910567740","5095274936","PETER HARVEY",,"504","2011-07-27T11:31:55-0500","CINDY MATERN","2011-07-27T11:31:05-0500","WALTER R FROESE",,,135,135,,,135,,135,,,,,"4F4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727113406P040104326577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EAST FAIRFIELD COAL COMPANY RETIREMENT SAVINGS PLAN AND TRUST","001","1973-11-01","EAST FAIRFIELD COAL COMPANY",,,"10900 SOUTH AVENUE",,"NORTH LIMA","OH","44452",,,,,,,,,,,,,,,,,,"340194290","3305492165","212110","EAST FAIRFIELD COAL COMPANY",,"10900 SOUTH AVENUE",,"NORTH LIMA","OH","44452",,,,,,,"340194290","3305492165",,,,"2011-07-27T11:32:30-0500","W THOMAS MACKALL",,,,,137,125,1,6,132,0,132,127,3,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727113948P040104328833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNIVERSITY OF COLORADO FOUNDATION 401(K) PLAN","002","2003-01-01","UNIVERSITY OF COLORADO FOUNDATION",,,"4740 WALNUT STREET",,"BOULDER","CO","803012538",,,,,,,,,,,,,,,,,,"846049811","3035411200","611000","PLAN COMMITTEE",,"4740 WALNUT STREET",,"BOULDER","CO","803012538",,,,,,,"846049811","3035411200",,,,"2011-07-27T11:38:51-0500","KELLER YOUNG","2011-07-27T11:38:51-0500","KELLER YOUNG",,,232,184,0,67,251,0,251,201,0,,"2E2F2G2J2K3H3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727085622P040104233937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SMITH VOLKSWAGEN, LTD NADART PROFIT SHARING PLAN","002","1980-01-01","SMITH VOLKSWAGEN, LTD",,,"4304 KIRKWOOD HWY",,"WILMINGTON","DE","19808",,,,,,,,,,,,,,,,,,"510102966","3029980131","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T08:50:43-0500","ALAN B. SVEDLOW",,,,,29,31,1,3,35,0,35,27,2,,"2E2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727103421P030014869682001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HUSKER REHABILITATION & WELLNESS 401(K) PROFIT SHARING PLAN","001","2006-01-01","HUSKER REHABILITATION & WELLNESS",,,"4911 N 26TH ST STE 100",,"LINCOLN","NE","68521",,,,,,,,,,,,,,,,,,"470813731","4024773110","621340","HUSKER REHABILITATION & WELLNESS",,"4911 N 26TH ST STE 100",,"LINCOLN","NE","68521",,,,,,,"470813731","4024773110",,,,"2011-07-27T10:33:53-0500","MICHAEL ZALMAN",,,,,12,10,0,1,11,0,11,11,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727101740P040470888544001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHN W. CARLSON, P.C. 401(K) RETIREMENT PLAN","002","1990-01-01","JOHN W. CARLSON, P.C.",,,"114 N 6TH STREET",,"BEATRICE","NE","68310",,,,,,,,,,,,,,,,,,"470581202","4022283443","541110","JOHN W. CARLSON, P.C.",,"114 N 6TH STREET",,"BEATRICE","NE","68310",,,,,,,"470581202","4022283443",,,,"2011-07-27T10:17:28-0500","JOHN W. CARLSON","2011-07-27T10:17:28-0500","JOHN W. CARLSON",,,6,5,0,0,5,0,5,0,0,,"2E2F2T2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727093721P040015381794001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"403(B) THRIFT PLAN OF KOINONIA HOMES, INC.","001","1997-07-01","KOINONIA HOMES, INC.",,,"6161 OAK TREE BLVD STE 400",,"INDEPENDENCE","OH","44131",,,,,,,,,,,,,,,,,,"237412318","2165888777","623000","KOINONIA HOMES, INC.",,"6161 OAK TREE BLVD STE 400",,"INDEPENDENCE","OH","44131",,,,,,,"237412318","2165888777",,,,"2011-07-27T09:36:41-0500","NANCY M. DISBROW",,,,,138,132,0,19,151,0,151,151,16,,"2L",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727105627P030101546337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROTMAN MOTOR COMPANY INC NADART SALARY DEF 401K PLAN","001","1972-07-31","ROTMAN MOTOR COMPANY INC",,,"HWY 64 W",,"MAQUOKETA","IA","52060",,,,,,,,,,,,,,,,,,"420984967","5636524928","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:49-0500","ALAN B. SVEDLOW",,,,,11,9,1,1,11,0,11,11,1,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727105942P030475417424001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FRANK GALOS CHEVROLET INC NADART SALARY DEF 401K PLAN","001","1998-07-01","FRANK GALOS CHEVROLET INC",,,"884 PORTLAND ROAD",,"SACO","ME","04072",,,,,,,,,,,,,,,,,,"010262966","2072845986","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:50-0500","ALAN B. SVEDLOW",,,,,35,35,0,0,35,0,35,12,0,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727110317P030101550401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OWATONNA MOTOR CO. DBA OWATONNA FORD CHRYSLER NADART SALARY DEF 401K PLAN","001","1978-09-01","OWATONNA MOTOR CO. DBA OWATONNA FOR",,,"1001 HOFFMAN DRIVE",,"OWATONNA","MN","55060",,,,,,,,,,,,,,,,,,"411888344","5074517860","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:51-0500","ALAN B. SVEDLOW",,,,,32,27,3,3,33,0,33,22,1,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727085657P040470682192001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JENKINS LINC-MERC INC NADART SALARY DEF 401K PLAN","001","1966-10-01","JENKINS LINC-MERC INC",,,"941 EAST MAIN STREET",,"LAKELAND","FL","33802",,,,,,,,,,,,,,,,,,"590722140","8636826151","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T08:50:43-0500","ALAN B. SVEDLOW",,,,,36,28,1,5,34,0,34,34,0,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727090454P030101476401006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DEGRAF CONCRETE CONSTRUCTION, INC. EMPLOYEE PROFIT SHARING PLAN","001","2000-04-01","DEGRAF CONCRETE CONSTRUCTION, INC.",,,"300 ALDERMAN AVENUE",,"WHEELING","IL","60090",,,,,,,"300 ALDERMAN AVENUE",,"WHEELING","IL","60090",,,,,,,"363857943","8475412140","237990","DEGRAF CONCRETE CONSTRUCTION, INC.",,"300 ALDERMAN AVENUE",,"WHEELING","IL","60090",,,,,,,"363857943","8475412140",,,,"2011-07-28T05:12:37-0500","MICHAEL PIRRON",,,,,1,1,,,1,,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727072818P030101425313001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MUTARE, INC. 401(K) PROFIT SHARING PLAN","001","1999-10-01","MUTARE, INC.",,,"2060 E ALGONQUIN RD STE 701",,"SCHAUMBURG","IL","60173",,,,,,,,,,,,,,,,,,"363092124","8474969000","541990","MUTARE, INC.",,"2060 E ALGONQUIN RD STE 701",,"SCHAUMBURG","IL","60173",,,,,,,"363092124","8474969000",,,,"2011-07-27T07:27:43-0500","BEN CROWN",,,,,25,27,0,1,28,0,28,28,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727092524P030014860898009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SOUTHERN INPATIENT SERVICES, INC. 401(K) PROFIT SH","001","2003-01-01","SOUTHERN INPATIENT SERVICES, INC.",,,"433 POINCIANA DRIVE",,"HOMEWOOD","AL","35209",,,,,,,,,,,,,,,,,,"631276736","2058772589","621111","SOUTHERN INPATIENT SERVICES, INC.",,"433 POINCIANA DRIVE",,"HOMEWOOD","AL","35209",,,,,,,"631276736","2058772589",,,,"2011-07-27T03:17:11-0500","ALISON LEAH DAGGETT",,,,,2,1,,,1,,1,1,,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727111620P040015393522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"APPLIED COMPUTING TECHNOLOGIES, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1995-01-01","APPLIED COMPUTING TECHNOLOGIES, INC.",,,"6225 BRANDON AVE, SUITE 275",,"SPRINGFIELD","VA","22150",,,,,,,,,,,,,,,,,,"541690488","7038914334","541519","APPLIED COMPUTING TECHNOLOGIES, INC.",,"6225 BRANDON AVE, SUITE 275",,"SPRINGFIELD","VA","22150",,,,,,,"541690488","7038914334",,,,"2011-07-27T11:15:21-0500","ROBERT P HANSEN",,,,,138,110,0,48,158,0,158,158,25,,"3D2E2J2K2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727133247P040104401489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE RETINA SPECIALISTS OF ALABAMA IN MONTGOMERY, LLC 401(K) PLAN","001","2007-01-01","RETINA SPECIALISTS OF ALABAMA IN MONTGOMERY, LLC",,,"2055 NORMANDIE DR SUITE 314",,"MONTGOMERY","AL","36111",,,,,,,,,,,,,,,,,,"631248339","3342630105","621111","RETINA SPECIALISTS OF ALABAMA IN MONTGOMERY, LLC",,"2055 NORMANDIE DR SUITE 314",,"MONTGOMERY","AL","36111",,,,,,,"631248339","3342630105",,,,"2011-07-27T13:31:53-0500","MICHAEL P. MASSEY, M.D.",,,,,15,12,0,3,15,0,15,15,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727133343P040015405714001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OPPORTUNITIES UNLIMITED OF NIAGARA, INC. HEALTH & WELFARE BENEFITS PLAN","502","1993-06-15","OPPORTUNITIES UNLIMITED OF NIAGARA, INC.",,,"2393 NIAGARA FALLS BLVD LPO 360",,"NIAGARA FALLS","NY","143040360",,,,,,,"2393 NIAGARA FALLS BLVD",,"NIAGARA FALLS","NY","143040360",,,,,,,"160794847","7165042625","624100","OPPORTUNITIES UNLIMITED OF NIAGARA, INC.",,"2393 NIAGARA FALLS BLVD LPO 360",,"NIAGARA FALLS","NY","143040360",,,,,,,"160794847","7165042625",,,,"2011-07-27T11:20:07-0500","CYNTHIA BOOTZ",,,,,481,598,0,0,598,,,,,,,"4A4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727123009P030101599841008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SPECIFIED COMPONENTS OF MN, INC. 401(K) PLAN & TRUST","001","1998-01-01","SPECIFIED COMPONENTS OF MINNESOTA",,"C/O TIMOTHY J. DUNN","495 N. RIVERSIDE DRIVE, SUITE 102",,"GURNEE","IL","60031",,,,,,,,,,,,,,,,,,"364191749","8476251600","423300","SPECIFIED COMPONENTS OF MINNESOTA","C/O TIMOTHY J. DUNN","495 N. RIVERSIDE DRIVE, SUITE 102",,"GURNEE","IL","60031",,,,,,,"364191749","8476251600",,,,"2011-07-27T12:21:27-0500","TIMOTHY J. DUNN",,,,,7,6,0,1,7,0,7,7,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727123009P030101599841004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SOUTHERN IMPERIAL, INC. ACCIDENTAL DEATH AND DISMEMBERMENT, GROUP TERM LIFE","504","1996-05-01","SOUTHERN IMPERIAL, INC.",,,"P.O. BOX 2308","1400 EDDY AVENUE","ROCKFORD","IL","611310308",,,,,,,,,,,,,,,,,,"640407668","8158777041","332610","SOUTHERN IMPERIAL, INC.",,"P.O. BOX 2308",,"ROCKFORD","IL","611310308",,,,,,,"640407668","8158777041",,,,"2011-07-20T17:37:00-0500","DALE S. THOMAS",,,,,172,181,,,181,,,,,,,"4B4L","1",,,,"1",,,,,,,,,"1","2","1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727082704P030101450145001","2010-01-01","2010-12-31","3",,"0","1","0","0",,"1",,,,,"CANAL INSURANCE COMPANY 401(K) SAVINGS AND INVESTMENT PLAN","002","1990-01-01","CANAL INSURANCE COMPANY",,,"P.O. BOX 7",,"GREENVILLE","SC","296020007",,,,,,,"400 EAST STONE AVENUE",,"GREENVILLE","SC","296020007",,,,,,,"570133332","8642509291","524150","CANAL INSURANCE COMPANY",,"P.O. BOX 7",,"GREENVILLE","SC","296020007",,,,,,,"570133332","8642509291",,,,"2011-07-27T08:25:10-0500","WILLIAM R TIMMONS III",,,,,264,211,2,29,242,0,242,221,10,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727081120P040104209025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PREMIER FINANCIAL SERVICES PROFIT SHARING PLAN","001","1992-05-13","PREMIER FINANCIAL SERVICES INC",,,"14 EAST 60TH STREET SUITE 402",,"NEW YORK","NY","10022",,,,,,,"14 EAST 60TH STREET SUITE 402",,"NEW YORK","NY","10022",,,,,,,"133668688","2127524343","523900","PREMIER FINANCIAL SERVICES INC",,"14 EAST 60TH STREET SUITE 402",,"NEW YORK","NY","10022",,,,,,,"133668688","2127524343",,,,"2011-07-27T08:09:34-0500","JOHN DIAZ",,,,,3,3,0,0,3,0,3,3,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727100821P030475277968001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ZOTEC PARTNERS, LLC LTD PLAN","504","2008-01-01","ZOTEC PARTNERS, LLC",,,"11460 N. MERIDIAN STREET",,"CARMEL","IN","46032",,,,,,,"11460 N. MERIDIAN STREET",,"CARMEL","IN","46032",,,,,,,"352070080","3177055050","541511","ZOTEC PARTNERS, LLC",,"11460 N. MERIDIAN STREET",,"CARMEL","IN","46032",,,,,,,"352070080","3177055050",,,,"2011-07-27T10:05:31-0500","DEAN BURGER",,,,,321,316,0,0,316,,316,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727115503P030014875698001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PEQUOT TOOL & MFG., INC. EMPLOYEES SAVINGS TRUST","001","2008-01-01","PEQUOT TOOL & MFG., INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"411410590","6207938473","332700","PEQUOT TOOL & MFG., INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"411410590","6207938473",,,,"2011-07-27T11:45:31-0500","KARLO GOERGES",,,,,107,102,0,5,107,0,107,91,3,,"2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727133548P040471436784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"1ST CENTENNIAL BANK EMPLOYEE STOCK OWNERSHIP PLAN WITH 401(K) PROVISIONS","002","2000-02-01","FEDERAL DEPOSIT INSURANCE CORP AS RECEIVER OF 1ST CENTENNIAL BANK",,,"1601 BRYAN STREET",,"DALLAS","TX","75201",,,,,,,,,,,,,,,,,,"330406636","9727612187","522110","FEDERAL DEPOSIT INSURANCE CORP AS RECEIVER OF 1ST CENTENNIAL BANK",,"1601 BRYAN STREET",,"DALLAS","TX","75201",,,,,,,"330406636","9727612187",,,,"2011-07-27T13:35:06-0500","DEBRA FOSTER AS FDIC RECEIVER","2011-07-27T13:35:06-0500","DEBRA FOSTER AS FDIC RECEIVER",,,93,0,0,94,94,1,95,95,95,,"2E2H2I2J2K2O3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727085831P040032686407001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIKE BELL CHEVROLET, INC. NADART SALARY DEF 401K PLAN","001","1987-01-01","MIKE BELL CHEVROLET, INC.",,,"1200 N PARK ST.",,"CARROLLTON","GA","30117",,,,,,,,,,,,,,,,,,"580813096","7708322436","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T08:50:44-0500","ALAN B. SVEDLOW",,,,,40,26,3,14,43,0,43,39,2,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727090645P030101477249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OARWEED RESTAURANT MANAGEMENT INC MONEY PURCHASE PLAN","001","1991-01-01","OARWEED RESTAURANT MANAGEMENT INC",,,"PO BOX 1889",,"OGUNQUIT","ME","03907",,,,,,,"PERKINS COVE ROAD",,"OGUNQUIT","ME","03907",,,,,,,"010441925","2076464022","722110","OARWEED RESTAURANT MANAGEMENT INC",,"PO BOX 1889",,"OGUNQUIT","ME","03907",,,,,,,"010441925","2076464022",,,,"2011-07-27T09:05:51-0500","JOHN LANE",,,,,4,4,,,4,,4,4,,,"2C2H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727095828P030101508865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE PORTER COMPANY 401(K) PLAN AND TRUST","001","1995-05-01","THE PORTER COMPANY/MECHANICAL CONTRACTORS DBA THE PORTER COMPANY",,,"2105 FM 1626 WEST",,"MANCHACA","TX","78652",,,,,,,,,,,,,,,,,,"742194094","5122829691","238220","THE PORTER COMPANY/MECHANICAL CONTRACTORS DBA THE PORTER COMPANY",,"2105 FM 1626 WEST",,"MANCHACA","TX","78652",,,,,,,"742194094","5122829691",,,,"2011-07-27T09:47:02-0500","DAVID RICHARDS",,,,,59,49,0,6,55,,55,30,,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727101312P040017199750001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DCP MIDSTEAM, LP WELFARE PLAN","501","2001-01-01","DCP MIDSTREAM, LP",,,"370 17TH STREET, SUITE 2500",,"DENVER","CO","802025604",,,,,,,,,,,,,,,,,,"841041166","3036052170","221210","DCP MIDSTREAM, LP",,"370 17TH STREET, SUITE 2500",,"DENVER","CO","802025604",,,,,,,"841041166","3036052170",,,,"2011-07-27T10:12:07-0500","JILL SANFORD",,,,,2873,2818,76,0,2894,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727112621P030101562881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FICHTNER CHEVROLET NADART PENSION PLAN","001","1974-04-01","FICHTNER CHEVROLET",,,"202 SE 4TH ST.",,"LAUREL","MT","59044",,,,,,,,,,,,,,,,,,"810339585","4066284618","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T11:24:45-0500","ALAN B. SVEDLOW",,,,,10,7,1,2,10,0,10,10,1,,"2C2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727130250P030014881730001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C & C MILLWRIGHT MAINTENANCE CO. INC. 401(K) PROFIT SHARING PLAN","001","1997-07-01","C & C MILLWRIGHT MAINTENANCE",,,"PO BOX 970",,"GREENEVILLE","TN","37744",,,,,,,,,,,,,,,,,,"620918510","4236390131","236200","C & C MILLWRIGHT MAINTENANCE",,"PO BOX 970",,"GREENEVILLE","TN","37744",,,,,,,"620918510","4236390131",,,,"2011-07-27T13:01:19-0500","DARIUS PEEDIN",,,,,69,55,0,0,55,0,55,50,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727130357P040104374577001","2010-03-01","2010-12-31","2",,"0","1","1","1","0","0","0","0","0",,"PREPAID HOSPITALIZATION SURGICAL MEDICAL FOR EMPLOYEES OF COLLEGE OF MT. SAINT JOSEPH","501","1969-10-01","COLLEGE OF MOUNT SAINT JOSEPH",,,"5701 DELHI ROAD",,"CINCINNATI","OH","45233",,,,,,,,,,,,,,,,,,"237179567","5132444393","611000","COLLEGE OF MOUNT SAINT JOSEPH",,"5701 DELHI ROAD",,"CINCINNATI","OH","45233",,,,,,,"237179567","5132444393",,,,"2011-07-27T13:02:49-0500","LINDA PANZECA",,,,,219,192,,,192,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727130405P040104374625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WYFFELS HYBRIDS, INC. EMPLOYEES PROFIT SHARING AND SAVINGS PLAN","001","1981-09-01","WYFFELS HYBRIDS, INC.",,,"13344 U.S. HIGHWAY 6",,"GENESEO","IL","61254",,,,,,,,,,,,,,,,,,"362837014","3099448334","424500","STEVEN A. CHRISTENSEN, ROBERT J. WYFFELS AND WILLIAM J. WYFFELS, JR.",,"13344 U.S. HIGHWAY 6",,"GENESEO","IL","61254",,,,,,,"363218246","3099448334",,,,"2011-07-26T14:17:24-0500","STEVEN CHRISTENSEN",,,,,169,115,0,36,151,0,151,137,9,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727085934P040470688864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROD BAKER FORD SALES INC NADART SALARY DEF 401K PLAN","001","1993-07-01","ROD BAKER FORD SALES INC",,,"16101 S. LINCOLN HIGHWAY",,"PLAINFIELD","IL","60586",,,,,,,,,,,,,,,,,,"362520787","8154365681","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T08:50:44-0500","ALAN B. SVEDLOW",,,,,29,30,0,4,34,0,34,22,1,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727090809P030101477809001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"AIR COMFORT, INC. 401(K) PLAN","001","1980-01-01","AIR COMFORT, INC. ATTN BETTY BARBER",,,"517 W H ST",,"JENKS","OK","74037",,,,,,,,,,,,,,,,,,"730778145","9182999401","238220","AIR COMFORT, INC. ATTN BETTY BARBER",,"517 W H ST",,"JENKS","OK","74037",,,,,,,"730778145","9182999401",,,,"2011-07-27T09:07:31-0500","CECIL CRAIN",,,,,54,49,0,0,49,0,49,47,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727070336P040015367906001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RENT-A-CENTER, INC. 401(K) RETIREMENT PLAN","001","1997-10-01","RENT-A-CENTER, INC.",,,"5501 HEADQUARTERS DRIVE",,"PLANO","TX","75024",,,,,,,,,,,,,,,,,,"450491516","9728011326","812990","RENT-A-CENTER, INC.",,"5501 HEADQUARTERS DRIVE",,"PLANO","TX","75024",,,,,,,"450491516","9728011326",,,,"2011-07-27T07:02:36-0500","STEVEN SPRATT","2011-07-27T07:02:36-0500","STEVE SPRATT",,,17420,15868,247,1521,17636,1,17637,9596,2069,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727085351P040104232529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHERN ARIZONA AUTO CO NADART PROFIT SHARING PLAN","002","1989-01-01","SOUTHERN ARIZONA AUTO CO",,,"2801 BARCELONA DRIVE",,"DOUGLAS","AZ","85607",,,,,,,,,,,,,,,,,,"860081368","5203644686","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T08:50:42-0500","ALAN B. SVEDLOW",,,,,3,1,2,0,3,0,3,3,0,,"2E2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727093034P030101493585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN APPRAISAL ASSOCIATES EMPLOYEE BENEFIT PLAN GROUP LIFE INSURANCE","505","1974-02-01","AMERICAN APPRAISAL ASSOCIATES, INC.","AMERICAN APPRAISAL","DIANE BRADLEY","411 E WISCONSIN AVENUE","SUITE 1900","MILWAUKEE","WI","53202",,,,,,,"411 E WISCONSIN AVENUE","SUITE 1900","MILWAUKEE","WI","53202",,,,,,,"391137784","4142717240","541990","AMERICAN APPRAISAL ASSOCIATES, INC.","DIANE BRADLEY","411 E WISCONSIN AVENUE","SUITE 1900","MILWAUKEE","WI","53202",,,,,,,"391137784","4142717240",,,,"2011-07-27T09:12:46-0500","DIANE BRADLEY",,,,,366,240,119,0,359,0,359,0,0,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727093837P040104259185001","2010-09-01","2010-12-31","2",,"0","0","0","1","0","1","0","0","0",,"ZEP INC. WELFARE BENEFIT PLAN","501","2008-09-01","ZEP INC.",,,"1310 SEABOARD INDUSTRIAL BLVD.",,"ATLANTA","GA","303182825",,,,,,,,,,,,,,,,,,"260783366","4046037806","551112","ZEP INC.",,"1310 SEABOARD INDUSTRIAL BLVD.",,"ATLANTA","GA","303182825",,,,,,,"260783366","4046037806",,,,"2011-07-27T09:37:33-0500","BOB COLLINS","2011-07-27T09:37:33-0500","BOB COLLINS",,,2514,1741,132,0,1873,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727105711P030014871010001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORDHUS MOTOR CO NADART PENSION PLAN","002","1979-01-01","NORDHUS MOTOR CO",,,"1406 CENTER",,"MARYSVILLE","KS","66508",,,,,,,,,,,,,,,,,,"480880038","7855622383","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:49-0500","ALAN B. SVEDLOW",,,,,10,8,0,2,10,0,10,10,1,,"2C2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727110039P040104307889007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FITZGERALD DEPIETRO AND WOJNAS SALARY DEFERRAL PLAN","001","1994-01-01","FITZGERALD, DEPIETRO & WOJNAS, CPA S, P C",,,"291 GENESEE STREET",,"UTICA","NY","13501",,,,,,,,,,,,,,,,,,"161163912","3157242145","541211","FITZGERALD DEPIETRO & WOJNAS CPA S P C",,"291 GENESEE STREET",,"UTICA","NY","13501",,,,,,,"161163912","3157242145","RINEHARD FITZGERALD DEPIETRO & WOJNAS CPA S P C","161163912","001","2011-07-27T10:39:25-0500","DAVID J WOJNAS",,,,,25,19,,5,24,1,25,,,,"2R2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727131936P040104387409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PERILLO ASSOCIATES EMPLOYEE DEFERRED COMPENSATION PLAN","001","1995-01-01","PERILLO ASSOCIATES",,,"401 CLAIRMONT AVENUE",,"THORNWOOD","NY","10594",,,,,,,,,,,,,,,,,,"132869623","9147690700","541330","PERILLO ASSOCIATES",,"401 CLAIRMONT AVENUE",,"THORNWOOD","NY","10594",,,,,,,"132869623","9147690700",,,,"2011-07-27T13:18:39-0500","ANTHONY BRUNI","2011-07-27T13:18:39-0500","ANTHONY BRUNI",,,8,4,0,0,4,0,4,2,0,,"2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727085938P030014858354006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EMORY AND HENRY COLLEGE 403(B) TDA PLAN","005","1976-01-01","EMORY AND HENRY COLLEGE",,,"POST OFFICE BOX 947",,"EMORY","VA","243270947",,,,,,,,,,,,,,,,,,"540505892","2769446112","611000","EMORY AND HENRY COLLEGE",,"POST OFFICE BOX 947",,"EMORY","VA","243270947",,,,,,,"540505892","2769446112",,,,"2011-07-27T04:42:32-0500","DIRK WILMOTH","2011-07-27T04:42:32-0500","DIRK WILMOTH",,,320,297,,27,324,0,324,262,,,"2F2G2L2M3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727093913P030101499329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OSSEO MEDICAL CENTER, INC., MAYO HEALTH SYSTEM LONG TERM DISABILITY PLAN","520","2006-01-01","OSSEO MEDICAL CENTER, INC., MAYO HEALTH SYSTEM",,,"13025 8TH STREET",,"OSSEO","WI","547580070",,,,,,,"PO BOX 70",,"OSSEO","WI","547580070",,,,,,,"391029430","7155973121","622000","OSSEO MEDICAL CENTER, INC., MAYO HEALTH SYSTEM",,"13025 8TH STREET",,"OSSEO","WI","547580070",,,,,,,"391029430","7155973121",,,,"2011-07-27T09:37:44-0500","RHONDA WILSON",,,,,179,194,0,0,194,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727103921P030014870146001","2010-03-01","2011-02-28","2",,"0","0","1","0","0","0","0","0","0",,"DIVERSIFIED TECHNOLOGY SERVICES, INC. PROFIT SHARING PLAN","001","2009-03-06","DIVERSIFIED TECHNOLOGY SERVICES, INC.",,,"2021 SIROCO LN",,"MELBOURNE","FL","32934",,,,,,,,,,,,,,,,,,"264400351","3217512501","812990","DIVERSIFIED TECHNOLOGY SERVICES, INC.",,"2021 SIROCO LN",,"MELBOURNE","FL","32934",,,,,,,"264400351","3217512501",,,,"2011-07-27T09:28:07-0500","MICHAEL RIETZEL",,,,,1,0,,,0,,0,0,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727094321P030101501665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LONG TERM CARE PLAN FOR EMPLOYEE'S OF MILLIMAN, INC.","508","2005-11-01","MILLIMAN, INC",,,"1301 FIFTH AVENUE","SUITE 3800","SEATTLE","WA","98101",,,,,,,"1301 FIFTH AVENUE","SUITE 3800","SEATTLE","WA","98101",,,,,,,"910675641","2066247940","541990","MILLIMAN'S EMPLOYEE BENEFIT COMMITTEE",,"1301 FIFTH AVENUE","SUITE 3800","SEATTLE","WA","98101",,,,,,,"910675641","2066247940",,,,"2011-07-26T14:46:37-0500","SUSAN HAUGEN","2011-07-26T14:46:21-0500","WILLIAM PEDERSEN",,,198,156,0,0,156,,156,,,,,"4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727110434P030101551313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LYON COUNTY LEASING, INC. NADART PENSION PLAN","001","1979-07-01","LYON COUNTY LEASING, INC.",,,"105 E MAIN SUITE 2",,"MARSHALL","MN","56258",,,,,,,,,,,,,,,,,,"410988487","5073377777","532100","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:52-0500","ALAN B. SVEDLOW",,,,,6,5,1,0,6,0,6,5,0,,"2C2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727105739P030014871058001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LARRY FANNIN CHEV-PONT-BUICK,INC NADART SALARY DEF 401K PLAN","001","1978-05-01","LARRY FANNIN CHEV-PONT-BUICK,INC",,,"329 E MAIN ST.",,"MOREHEAD","KY","40351",,,,,,,,,,,,,,,,,,"610659092","6067846411","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T10:52:49-0500","ALAN B. SVEDLOW",,,,,39,31,3,4,38,0,38,23,3,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727111332P030014872354001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALKEON CAPITAL MANAGEMENT, LLC 401K/PROFIT SHARING PLAN","001","2005-01-01","ALKEON CAPITAL MANAGEMENT, LLC",,,"350 MADISON AVENUE, 9TH FLOOR",,"NEW YORK","NY","100173700",,,,,,,,,,,,,,,,,,"134200935","2123898712","523900","ALKEON CAPITAL MANAGEMENT, LLC",,"350 MADISON AVENUE, 9TH FLOOR",,"NEW YORK","NY","100173700",,,,,,,"134200935","2123898712",,,,"2011-07-27T11:12:34-0500","GEORGE MYKONIATIS",,,,,18,18,0,0,18,,18,15,0,,"2A2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727201324P040015444594001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TESORO, INC. DEFINED BENEFIT PENSION PLAN","001","2006-01-01","TESORO, INC.",,,"1852 N. MILLSWEET DRIVE",,"UPLAND","CA","91784",,,,,,,,,,,,,,,,,,"770597009","9095947934","424990","TESORO, INC.",,"1852 N. MILLSWEET DRIVE",,"UPLAND","CA","91784",,,,,,,"770597009","9095947934",,,,"2011-07-27T20:08:56-0500","YU SIN LAI","2011-07-27T20:08:56-0500","YU SIN LAI",,,2,1,0,1,2,0,2,,0,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727174711P040104560881001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BODY & FACIAL COSMETIC SURGERY","001","1998-01-01","BODY & FACIAL COSMETIC SURGERY",,,"2275 SWALLOWHILL RD","BUILDING 2400","PITTSBURGH","PA","15220",,,,,,,"2275 SWALLOWHILL RD","BUILDING 2400","PITTSBURGH","PA","15220",,,,,,,"251533836","4124291151","621111","BODY & FACIAL COSMETIC SURGERY",,"2275 SWALLOWHILL RD","BUILDING 2400","PITTSBURGH","PA","15220",,,,,,,"251533836","4124291151",,,,"2011-07-27T17:46:47-0500","DOMINIC BRANDY",,,,,50,48,0,9,57,0,57,48,1,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728083108P040104932721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARKSDALE FEDERAL CREDIT UNION 401(K) PLAN AND TRUST","001","1981-04-01","BARKSDALE FEDERAL CREDIT UNION",,,"2701 VILLAGE LANE",,"BOSSIER CITY","LA","711122319",,,,,,,,,,,,,,,,,,"720475038","3185498061","522130","BARKSDALE FEDERAL CREDIT UNION",,"2701 VILLAGE LANE",,"BOSSIER CITY","LA","711122319",,,,,,,"720475038","3185498061",,,,"2011-07-28T08:30:05-0500","ROD TAYLOR","2011-07-28T08:30:05-0500","ROD TAYLOR",,,317,274,0,61,335,0,335,328,28,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728093519P040473870256001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALLEY CARTAGE COMPANY INC GROUP HEALTH PLAN","503","2008-01-01","VALLEY CARTAGE COMPANY, INC",,"LYNNE MCDONALD","6100 WASECA STREET","SUITE 1","DULUTH","MN","55807",,,,,,,"3011 ENLOE STREET",,"HUDSON","WI","54016",,,,,,,"391358351","7153868836","484110","VALLEY CARTAGE COMPANY, INC","LYNNE MCDONALD","6100 WASECA STREET","SUITE 1","DULUTH","MN","55807",,,,,,,"391358351","7153868836",,,,"2011-07-28T09:31:52-0500","LYNNE MCDONALD",,,,,198,203,,,203,,203,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728111453P040015505058001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COBORN'S INC FLEXIBLE BENEFIT PLAN","525","1994-03-01","COBORNS INC",,,"1445 EAST HIGHWAY 23",,"ST CLOUD","MN","56304",,,,,,,,,,,,,,,,,,"410824910","3202524222","445110","COBORNS INC",,"1445 EAST HIGHWAY 23",,"ST CLOUD","MN","56304",,,,,,,"410824910","3202524222",,,,"2011-07-28T11:10:54-0500","GREG KOENIGS","2011-07-28T11:10:54-0500","GREG KOENIGS",,,529,534,,,534,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728071125P030014955442001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"GLOBAL SAFETY TEXTILES WELFARE BENEFIT PLAN","501","2010-01-01","GLOBAL SAFETY TEXTILES",,,"3107 BRASSFIELD RD, STE 200",,"GREENSBORO","NC","27410",,,,,,,,,,,,,,,,,,"010938087","3364580700","314000","GLOBAL SAFETY TEXTILES",,"3107 BRASSFIELD RD, STE 200",,"GREENSBORO","NC","27410",,,,,,,"010938087","3364580700",,,,"2011-07-28T07:10:56-0500","ROB DEUTSCH","2011-07-28T07:10:56-0500","ROB DEUTSCH",,,182,249,6,0,255,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727160223P040104507569001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HEALTH INSURANCE PLAN FOR EMPLOYEES OF MARTHA JEFFERSON MEDICAL GROUP AND MARTHA JEFFERSON MEDICAL ENTERPRISES","510","2008-01-01","MARTHA JEFFERSON MEDICAL GROUP, LLC",,,"630 PETER JEFFERSON PKWY, SUITE 300",,"CHARLOTTESVILLE","VA","22911",,,,,,,,,,,,,,,,,,"261126956","4346548454","622000","MARTHA JEFFERSON MEDICAL GROUP, LLC",,"630 PETER JEFFERSON PKWY, SUITE 300",,"CHARLOTTESVILLE","VA","22911",,,,,,,"261126956","4346548454",,,,"2011-07-27T16:01:25-0500","SUSAN CABELL MAINS",,,,,151,172,0,0,172,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728111603P040105052353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INPRO INSURANCE GROUP, INC. 401(K) PROFIT SHARING PLAN & TRUST","002","1979-01-01","INPRO INSURANCE GROUP, INC.",,,"2095 E. BIG BEAVER, SUITE 100",,"TROY","MI","48083",,,,,,,,,,,,,,,,,,"382003879","2485263260","524210","INPRO INSURANCE GROUP, INC.",,"2095 E. BIG BEAVER, SUITE 100",,"TROY","MI","48083",,,,,,,"382003879","2485263260",,,,"2011-07-28T11:15:26-0500","BARBARA GEIGER",,,,,25,17,0,8,25,0,25,24,0,,"2A2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728103043P040474023472005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DONOVAN ENTERPRISES INC PROFIT SHARING PLAN & TRUST","001","1994-01-01","DONOVAN ENTERPRISES INC",,,"P O BOX 2974",,"HENDERSONVILLE","TN","370772974",,,,,,,,,,,,,,,,,,"621306708","6158225283","532230","DONOVAN ENTERPRISES INC",,"P O BOX 2974",,"HENDERSONVILLE","TN","370772974",,,,,,,"621306708","6158225283",,,,"2011-07-28T09:37:46-0500","JAMES D ALLEN",,,,,9,7,,2,9,,9,9,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728091801P040104962577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCYNEXIS, INC. GROUP DENTAL & VISION PLAN","503","2001-01-01","SCYNEXIS, INC.",,,"3501-C TRICENTER BLVD",,"DURHAM","NC","277131868",,,,,,,,,,,,,,,,,,"562181648","9195448600","541700","SCYNEXIS, INC.",,"3501-C TRICENTER BLVD",,"DURHAM","NC","277131868",,,,,,,"562181648","9195448600",,,,"2011-07-28T09:16:40-0500","AMANDA MANCUSO",,,,,123,115,5,5,125,,,,,,,"4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","1","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728084737P030102128017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RENAISSANCE LEARNING, INC. GROUP HEALTH BENEFIT PLAN","502","1997-01-01","RENAISSANCE LEARNING, INC.",,,"PO BOX 8036","2911 PEACH STREET","WISCONSIN RAPIDS","WI","544958036",,,,,,,,,,,,,,,,,,"391559474","7154243636","611000","RENAISSANCE LEARNING, INC.",,"PO BOX 8036","2911 PEACH STREET","WISCONSIN RAPIDS","WI","544958036",,,,,,,"391559474","7154243636",,,,"2011-07-28T08:46:09-0500","ALLEN THURBER",,,,,653,644,7,0,651,,,,,,,"4A4D4E","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728101615P040105003553001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"MIC INVESTMENT INC. 401(K) PLAN","001","2009-08-22","MIC INVESTMENT INC.",,,"3481 SOUTH BARBERRY PLACE",,"CHANDLER","AZ","85248",,,,,,,,,,,,,,,,,,"270819695","4803161819","713900","MIC INVESTMENT INC.",,"3481 SOUTH BARBERRY PLACE",,"CHANDLER","AZ","85248",,,,,,,"270819695","4803161819",,,,"2011-07-28T10:15:24-0500","JON W MOORE",,,,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110727164410P040032827111001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ST. MARY'S/DULUTH CLINIC EMPLOYEE HEALTH PLAN","501","1960-09-15","ST. MARY'S/DULUTH CLINIC HEALTH SYSTEM",,,"407 EAST THIRD STREET",,"DULUTH","MN","55805",,,,,,,,,,,,,,,,,,"411836633","2187868364","622000","ST. MARY'S/DULUTH CLINIC HEALTH SYSTEM",,"407 EAST THIRD STREET",,"DULUTH","MN","55805",,,,,,,"411836633","2187868364",,,,"2011-07-27T16:43:37-0500","DIANE T DAVIDSON",,,,,4956,4768,128,0,4896,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728104112P040032998407001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"RIPON MEDICAL CENTER HEALTH REIMBURSEMENT ARRANGEMENT","509","2010-01-01","RIPON MEDICAL CENTER",,,"PO BOX 390",,"RIPON","WI","54971",,,,,,,"933 NEWBURY ST",,"RIPON","WI","54971",,,,,,,"391101287","9207489164","622000","RIPON MEDICAL CENTER",,"PO BOX 390",,"RIPON","WI","54971",,,,,,,"391101287","9207489164",,,,"2011-07-28T10:41:09-0500","SARAH BRUS","2011-07-28T10:41:09-0500","SARAH BRUS",,,117,119,,,119,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727155225P030014897858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOSKINS CHEVROLET INC NADART PENSION PLAN","001","1972-08-02","HOSKINS CHEVROLET INC",,,"175 N. ARLINGTON HEIGHTS ROAD",,"ELK GROVE VILLAGE","IL","60007",,,,,,,,,,,,,,,,,,"362945063","8474390900","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T15:45:17-0500","ALAN B. SVEDLOW",,,,,30,28,0,2,30,0,30,29,0,,"2C2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727192503P030101816049001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"P.B.S. ENVIRONMENTAL BUILDING CONSULTANTS INC. GROUP HEALTH PLAN","501","1984-01-01","P.B.S. ENVIRONMENTAL BUILDING CONSULTANTS INC.","PBS ENGINEERING ENVIRONMENTAL","JENNIFER PORTER","4412 SW CORBETT AVENUE",,"PORTLAND","OR","97239",,,,,,,"4412 SW CORBETT AVENUE",,"PORTLAND","OR","97239",,,,,,,"930870218","5032481939","541330","P.B.S. ENVIRONMENTAL BUILDING CONSULTANTS INC.","JENNIFER PORTER","4412 SW CORBETT AVENUE",,"PORTLAND","OR","97239",,,,,,,"930870218","5032481939",,,,"2011-07-27T19:24:47-0500","JENNIFER PORTER",,,,,96,85,9,0,94,0,94,0,0,,,"4A4D4E4B4F4Q","1",,,,"1",,,"0",,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727192809P030101817425001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"RED SHIELD ACQUISITION LLC GROUP WELFARE BENEFIT PLAN","501","2008-11-01","RED SHIELD ACQUISITION LLC",,"DANIEL BIRD","24 PORTLAND STREET",,"OLD TOWN","ME","04468",,,,,,,"24 PORTLAND STREET",,"OLD TOWN","ME","04468",,,,,,,"263564974","2078270600","322100","RED SHIELD ACQUISITION LLC","DANIEL BIRD","24 PORTLAND STREET",,"OLD TOWN","ME","04468",,,,,,,"263564974","2078270600",,,,"2011-07-27T19:27:46-0500","DAVID DOUIN",,,,,158,177,,,177,,177,,,,,"4A4B4D4F","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728104906P030102224865001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"EMC CORPORATION 401(K) SAVINGS PLAN","001","1983-01-01","EMC CORPORATION",,,"176 SOUTH ST.",,"HOPKINTON","MA","017489103",,,,,,,"176 SOUTH ST.",,"HOPKINTON","MA","017489103",,,,,,,"042680009","5084351000","334110","EMC CORPORATION",,"176 SOUTH ST.",,"HOPKINTON","MA","017489103",,,,,,,"042680009","5084351000",,,,"2011-07-28T10:38:30-0500","DAVID GOULDEN",,,,,27288,22965,49,6946,29960,124,30084,27672,213,,"2E2F2G2J2K2S2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728083552P040015485842001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVID A. DIXON, DDS 401(K) PLAN","001","2004-01-01","DAVID A. DIXON, DDS",,,"1645 HOLT ROAD",,"COLUMBUS","OH","43228",,,,,,,,,,,,,,,,,,"311277517","6148781397","621111","DAVID A. DIXON, DDS",,"1645 HOLT ROAD",,"COLUMBUS","OH","43228",,,,,,,"311277517","6148781397",,,,"2011-07-28T08:35:13-0500","DAVID A. DIXON, DDS","2011-07-28T08:35:13-0500","DAVID A. DIXON, DDS",,,9,8,0,1,9,0,9,9,0,,"2A2E2F2H2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728073008P030102080689001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HARRINGTON CORPORATION LTD LIFE & AD&D","501","1999-12-31","HARRINGTON CORPORATION",,"JUSTIN REID","P O BOX 10335",,"LYNCHBURG","VA","24506",,,,,,,,,,,,,,,,,,"540801200","4348457094","326100","HARRINGTON CORPORATION","JUSTIN REID","P O BOX 10335",,"LYNCHBURG","VA","24506",,,,,,,"540801200","4348457094",,,,"2011-07-28T08:22:39-0500","JUSTIN REID","2011-07-28T08:22:47-0500","JUSTIN REID",,,102,96,,,96,,,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728095607P040104990225003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NEW ERA CAP CO., INC LONG-TERM DISABILITY PLAN","504","1997-01-01","NEW ERA CAP CO., INC.",,,"160 DELAWARE AVENUE",,"BUFFALO","NY","14202",,,,,,,,,,,,,,,,,,"160770131","7166049000","315990","NEW ERA CAP CO., INC.",,"160 DELAWARE AVENUE",,"BUFFALO","NY","14202",,,,,,,"160770131","7166049000",,,,"2011-07-28T05:13:32-0500","ERIKA MARITIME",,,,,267,222,,,222,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728102414P040105010641001","2010-02-01","2010-12-31","2",,"0","1","0","1","0","0","0","0","0",,"FIELD MUSEUM OF NATURAL HISTORY GROUP DENTAL PLAN","510","1999-02-01","FIELD MUSEUM OF NATURAL HISTORY",,,"1400 SOUTH LAKE SHORE DRIVE",,"CHICAGO","IL","60605",,,,,,,"1400 SOUTH LAKE SHORE DRIVE",,"CHICAGO","IL","60605",,,,,,,"362167011","3129229410","712100","FIELD MUSEUM OF NATURAL HISTORY",,"1400 SOUTH LAKE SHORE DRIVE",,"CHICAGO","IL","60605",,,,,,,"362167011","3129229410",,,,"2011-07-26T16:06:48-0500","HEATHER METZ","2011-07-27T09:45:08-0500","SHAWN VANDERZIEL",,,434,403,,,403,,403,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727180643P040472146464001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"USE EMPLOYEES 401K AND BENEFIT SHARING PLAN","004","1997-01-01","UNIVERSITY AND STATE EMPLOYEES CREDIT UNION",,,"10120 PACIFIC HEIGHTS BLVD","STE. 100","SAN DIEGO","CA","92121",,,,,,,"10120 PACIFIC HEIGHTS BLVD","STE. 100","SAN DIEGO","CA","92121",,,,,,,"951209332","8587956114","522130","UNIVERSITY AND STATE EMPLOYEES CREDIT UNION",,"10120 PACIFIC HEIGHTS BLVD","STE. 100","SAN DIEGO","CA","92121",,,,,,,"951209332","8587956114",,,,"2011-07-27T16:15:18-0500","JAMES HARRIS",,,,,273,178,0,92,270,2,272,244,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727175610P030476475056001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ANLIN INDUSTRIES WELFARE BENEFIT PLAN","501","1991-12-01","ANLIN INDUSTRIES",,,"1665 TOLLHOUSE ROAD",,"CLOVIS","CA","93611",,,,,,,"1665 TOLLHOUSE ROAD",,"CLOVIS","CA","93611",,,,,,,"770275139","5593221531","326100","ANLIN INDUSTRIES",,"1665 TOLLHOUSE ROAD",,"CLOVIS","CA","93611",,,,,,,"770275139","5593221531",,,,"2011-07-27T17:55:17-0500","HARRY PARISI",,,,,212,162,0,,162,,162,,,,,"4A4B4D4E4H","1",,,,"1",,,,,,,,,"1","3","0",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728073712P040473588928001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"AFFILIATED FOOT SURGEONS, P.C. 401(K) PROFIT SHARING PLAN","001","1994-01-01","AFFILIATED FOOT SURGEONS, P.C.",,,"508 BLAKE STREET",,"NEW HAVEN","CT","06515",,,,,,,,,,,,,,,,,,"061372809","2033970624","621391","AFFILIATED FOOT SURGEONS, P.C.",,"508 BLAKE STREET",,"NEW HAVEN","CT","06515",,,,,,,"061372809","2033970624",,,,"2011-07-28T08:36:45-0500","PETER A. BLUME",,,,,12,11,0,1,12,0,12,12,0,,"2E2G2J2K2R3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728073759P040104901185001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"MOUSER CUSTOM CABINETRY, LLC 401(K) PLAN","001","1995-01-01","MOUSER CUSTOM CABINETRY, LLC",,,"2112 N HWY 31W",,"ELIZABETHTOWN","KY","42701",,,,,,,"2112 N HWY 31W",,"ELIZABETHTOWN","KY","42701",,,,,,,"610709526","2707377477","337000","MOUSER CUSTOM CABINETRY, LLC",,"2112 N HWY 31W",,"ELIZABETHTOWN","KY","42701",,,,,,,"610709526","2707377477",,,,"2011-07-28T07:37:02-0500","SCOTT MANLEY",,,,,260,206,0,0,206,0,206,201,11,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728112159P040105057089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAMAR SERVICES WRAP PLAN","501","1994-04-01","DAMAR SERVICES",,,"6067 DECATUR BLVD.",,"INDIANAPOLIS","IN","462419606",,,,,,,,,,,,,,,,,,"351168048","3178565201","621498","DAMAR SERVICES",,"6067 DECATUR BLVD.",,"INDIANAPOLIS","IN","462419606",,,,,,,"351168048","3178565201",,,,"2011-07-28T11:20:45-0500","LIZ SNYDER",,,,,1029,1029,0,0,1029,,,,,,,"4A4B4D4E4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728090211P040104953873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORNERSTONE BENEFIT PLANS, INC. 401(K) PLAN","001","2006-01-01","CORNERSTONE BENEFITS PLANS, INC.",,,"5435 CORPORATE DR STE 250",,"TROY","MI","48098",,,,,,,,,,,,,,,,,,"382783685","2486412742","524210","CORNERSTONE BENEFITS PLANS, INC.",,"5435 CORPORATE DR STE 250",,"TROY","MI","48098",,,,,,,"382783685","2486412742",,,,"2011-07-28T09:02:01-0500","JEROME P. CIARAMITARO",,,,,4,4,0,1,5,0,5,5,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728084525P030102126577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SERVICES FOR THE UNDERSERVED GROUP INSURANCE PROGRAM","502","1985-01-01","SERVICES FOR THE UNDERSERVED",,,"305 SEVENTH AVENUE",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"112540650","2126336900","624100","MICHAEL WHELAN, CFO",,"305 SEVENTH AVENUE",,"NEW YORK","NY","10001",,,,,,,"112540650","9174081636",,,,"2011-07-28T08:34:17-0500","MICHAEL WHELAN",,,,,402,368,13,0,381,,,,,,,"4D4B4A4H4L4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728102734P040015499746001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COEUR, INC. EMPLOYEE BENEFIT PLAN","501","2003-06-01","COEUR, INC.",,,"100 PHYSICIANS WAY","SUITE 200","LEBANON","TN","37090",,,,,,,,,,,,,,,,,,"510458885","6155477924","339110","COUER, INC.","SAME","100 PHYSICIANS WAY","SUITE 200","LEBANON","TN","37090",,,,,,,"510458885","6155477924",,,,"2011-07-28T10:26:42-0500","JACCIE WHEELER","2011-07-28T10:26:42-0500","JACCIE WHEELER",,,138,157,1,,158,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728101539P040473981264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"E.D. BULLARD COMPANY PROFIT SHARING AND SALARY DEFERRAL PLAN","004","1985-01-01","E.D. BULLARD COMPANY",,,"1898 SAFETY WAY",,"CYTHIANA","KY","410319303",,,,,,,,,,,,,,,,,,"940348330","8592346611","339900","E.D. BULLARD COMPANY",,"1898 SAFETY WAY",,"CYTHIANA","KY","410319303",,,,,,,"940348330","8592346611",,,,"2011-07-28T10:13:52-0500","BECKY ALLAN","2011-07-28T10:13:52-0500","LINDA HUESING",,,281,241,1,39,281,0,281,276,9,,"2E2G2J2F2T3D2S2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727153357P040104493201008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DAVIS HEALTH SYSTEM GROUP ACCIDENTAL DEATH AND DISMEMBERMENT PLAN","506","1986-07-01","DAVIS HEALTH SYSTEM INC",,,"P O BOX 1484",,"ELKINS","WV","26241",,,,,,,,,,,,,,,,,,"550737655","3046363300","622000","DAVIS HEALTH SYSTEM INC",,"P O BOX 1484",,"ELKINS","WV","26241",,,,,,,"550737655","3046363300",,,,"2011-07-27T11:21:41-0500","JUDITH L. WILLIAMS","2011-07-27T11:21:41-0500","JUDITH L. WILLIAMS",,,420,385,,,385,,,,,,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727181302P030101788337004","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"GOFF ENGINEERING & SURVEYING INC PROFIT SHARING PL","001","1981-10-01","GOFF ENGINEERING & SURVEYING INC",,"BRUCE HONISCH","PO BOX 97",,"DURANGO","CO","81302",,,,,,,"126 ROCK POINT DRIVE",,"DURANGO","CO","81301",,,,,,,"840829097","9702471705","541330","GOFF ENGINEERING & SURVEYING INC","BRUCE HONISCH","PO BOX 97",,"DURANGO","CO","81302",,,,,,,"840829097","9702471705",,,,"2011-07-27T11:50:19-0500","BRUCE HONISCH","2011-07-27T11:50:19-0500","BRUCE HONISCH",,,18,0,0,0,0,0,0,0,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727181401P040015435106001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAY AREA TECH WORKERS 401(K) PROFIT SHARING PLAN","001","2000-01-01","BAY AREA TECH WORKERS",,,"3000 EXECUTIVE PARKWAY, SUITE 240",,"SAN RAMON","CA","94583",,,,,,,,,,,,,,,,,,"943310364","9253592122","541519","BAY AREA TECH WORKERS",,"3000 EXECUTIVE PARKWAY, SUITE 240",,"SAN RAMON","CA","94583",,,,,,,"943310364","9253592122",,,,"2011-07-27T18:09:36-0500","DON PEED",,,,,207,286,0,8,294,0,294,62,0,,"2E2G2J3D2F",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728110630P030014975042001","2010-01-01","2010-12-31","2",,"0","1","0","0","0",,,,,,"DREW COTTON SEED OIL MILL, INC. 401(K) RETIREMENT AND PROFIT SHARING PLAN","001","1991-03-01","DREW COTTON SEED OIL MILL, INC.",,,"404 N GABBERT ST",,"MONTICELLO","AR","716554426",,,,,,,,,,,,,,,,,,"710614614","8703679755","336610","DREW COTTON SEED OIL MILL, INC.",,"404 N GABBERT ST",,"MONTICELLO","AR","716554426",,,,,,,"710614614","8703679755",,,,"2011-07-28T11:05:52-0500","SHARRON GARRISON","2011-07-28T11:05:52-0500","SHARRON GARRISON",,,196,137,0,22,159,0,159,143,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728113327P040474196992001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LUBAWAY MASTEN & ROHN LTD. 401K PLAN & TRUST","001","1991-01-01","LUBAWAY MASTEN & COMPANY, LTD.",,,"NANCY A. DRURY","983 MANDERLY DRIVE","MILFORD","MI","48381",,,,,,,"1042 N. MILFORD ROAD","SUITE 204","MILFORD","MI","48381",,,,,,,"382963513","2483471416","561110","NANCY A. DRURY",,"983 MANDERLY DRIVE",,"MILFORD","MI","48381",,,,,,,"382963513","2483471416",,,,"2011-07-28T11:21:56-0500","NANCY DRURY",,,,,9,13,,,13,,13,13,,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728114626P030102260689001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"THE HUNT CORPORATION RETIREMENT SAVINGS PLAN","002","1998-07-01","THE HUNT CORPORATION",,,"6720 N SCOTTSDALE ROAD",,"SCOTTSDALE","AZ","85253",,,,,,,"SUITE 300",,"SCOTTSDALE","AZ","85253",,,,,,,"351332337","4803684700","236200","THE HUNT CORPORATION",,"6720 N SCOTTSDALE ROAD",,"SCOTTSDALE","AZ","85253",,,,,,,"351332337","4803684700",,,,"2011-07-28T10:05:03-0500","STEPHEN ATKINS",,,,,794,588,14,162,764,3,767,733,27,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728100949P040104999169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MADISON EQUIPMENT, INC. BASIC PROFIT SHARING PLAN","001","2003-07-31","MADISON EQUIPMENT, INC.",,,"4670 - 36TH STREET SE",,"GRAND RAPIDS","MI","49512",,,,,,,"4670 - 36TH STREET SE",,"GRAND RAPIDS","MI","49512",,,,,,,"381720185","6169495910","531120","MADISON EQUIPMENT, INC.",,"4670 - 36TH STREET SE",,"GRAND RAPIDS","MI","49512",,,,,,,"381720185","6169495910",,,,"2011-07-28T10:08:21-0500","DOUG THALER",,,,,2,2,0,0,2,0,2,2,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728101712P030014971298001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WETA 403(B) TAX DEFERRED SAVINGS PLAN","001","1989-01-01","GREATER WASHINGTON EDUCATIONAL TELECOMMUNICATIONS ASSOCIATION, INC",,,"2775 SOUTH QUINCY STREET",,"ARLINGTON","VA","22206",,,,,,,,,,,,,,,,,,"530242992","7039982719","813000","GREATER WASHINGTON EDUCATIONAL TELECOMMUNICATIONS ASSOCIATION, INC",,"2775 SOUTH QUINCY STREET",,"ARLINGTON","VA","22206",,,,,,,"530242992","7039982719",,,,"2011-07-28T11:16:54-0500","MADELINE AILEO",,,,,232,194,0,28,222,1,223,196,0,,"2L2M2F2G2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728092130P040015492098001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"DONABAUER ENTERPRISES INC. 401K PLAN","001","2009-07-01","DONABAUER ENTERPRISES INC.",,,"PO BOX 70068",,"MYRTLE BEACH","SC","29572",,,,,,,,,,,,,,,,,,"270473937","8439571851","531390","DONABAUER ENTERPRISES INC.",,"PO BOX 70068",,"MYRTLE BEACH","SC","29572",,,,,,,"270473937","8439571851",,,,"2011-07-28T09:20:48-0500","JILL DONABAUER","2011-07-28T09:20:48-0500","JILL DONABAUER",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727155306P040104502001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHECKER DISTRIBUTORS 401(K) PLAN","001","1994-01-01","CHECKER NOTIONS CO., INC.","CHECKER DISTRIBUTORS",,"400 WEST DUSSEL DRIVE, SUITE B",,"MAUMEE","OH","435371636",,,,,,,,,,,,,,,,,,"341105190","4198933636","423990","CHECKER NOTIONS CO., INC.",,"400 WEST DUSSEL DRIVE, SUITE B",,"MAUMEE","OH","435371636",,,,,,,"341105190","4198933636",,,,"2011-07-27T15:07:53-0500","CAROL HALL",,,,,105,96,0,2,98,0,98,83,6,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727154547P040104498561001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GROUP LIFE, ACCIDENTAL DEATH AND DISMEMBERMENT INSURANCE PROGRAM DATALINK","504","2009-01-01","DATALINK CORPORATION",,,"8170 UPLAND CIRCLE",,"CHANHASSEN","MN","55317",,,,,,,,,,,,,,,,,,"410856543","9529443462","541512","DATALINK CORPORATION",,"8170 UPLAND CIRCLE",,"CHANHASSEN","MN","55317",,,,,,,"410856543","9529443462",,,,"2011-07-27T15:41:04-0500","DAWN SPRAGG",,,,,217,0,0,,0,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727154613P040104498849001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"VOLUNTARY GROUP TERM LIFE INSURANCE PROGRAM DATALINK CORPORATION","506","2000-01-01","DATALINK CORPORATION",,,"8170 UPLAND CIRCLE",,"CHANHASSEN","MN","55317",,,,,,,,,,,,,,,,,,"410856543","9529443462","541512","DATALINK CORPORATION",,"8170 UPLAND CIRCLE",,"CHANHASSEN","MN","55317",,,,,,,"410856543","9529443462",,,,"2011-07-27T15:39:45-0500","DAWN SPRAGG",,,,,67,0,0,0,0,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727193830P030476674064001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"XTRA CORPORATION VISION PLAN","509","2002-01-01","XTRA CORPORATION",,,"1801 PARK 270 DRIVE - SUITE 400",,"ST. LOUIS","MO","631464036",,,,,,,,,,,,,,,,,,"060954158","3145799320","532400","XTRA CORPORATION",,"1801 PARK 270 DRIVE - SUITE 400",,"ST. LOUIS","MO","631464036",,,,,,,"060954158","3145799320",,,,"2011-07-27T17:45:15-0500","PAMELA CHERIE","2011-07-27T17:45:15-0500","PAMELA CHERIE",,,471,380,21,,401,,,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728114646P040015508610001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOS SUPERMARKET, INC. 401(K) PLAN","001","1989-05-01","BOS SUPERMARKET, INC.",,,"301 N PINE ST",,"LUMBERTON","NC","28358",,,,,,,,,,,,,,,,,,"561268308","9107395137","445110","BOS SUPERMARKET, INC.",,"301 N PINE ST",,"LUMBERTON","NC","28358",,,,,,,"561268308","9107395137",,,,"2011-07-28T11:45:52-0500","JEAN A DAVIS",,,,,241,205,2,10,217,0,217,43,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728081854P040473674880001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"ALLEGHENY ENERGY SEPARATION ALLOWANCE PLAN (WAS SEPARATION ALLOWANCE PLAN)","503","1963-12-01","ALLEGHENY ENERGRY SERVICE CORPORATION",,,"800 CABIN HILL DRIVE",,"GREENSBURG","PA","156011689",,,,,,,,,,,,,,,,,,"131993896","7248373000","221100","EMPLOYEE BENEFITS COMMITTEE","ALLEGHENY ENERGY SERVICE CORP.","800 CABIN HILL DRIVE",,"GREENSBURG","PA","156011689",,,,,,,"132863068","7248373000",,,,"2011-07-28T08:18:11-0500","DAVID P. LUTZ",,,,,3356,3223,0,0,3223,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110727160721P030101727729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUILDING SOLUTIONS, LLC EZ(K) RETIREMENT PLAN","001","2002-08-01","BUILDING SOLUTIONS, LLC",,,"808 W MCARTOR RD",,"DODGE CITY","KS","67801",,,,,,,,,,,,,,,,,,"943416527","6202251199","236200","BUILDING SOLUTIONS, LLC",,"808 W MCARTOR RD",,"DODGE CITY","KS","67801",,,,,,,"943416527","6202251199",,,,"2011-07-27T16:04:43-0500","BRIAN MARSHALL",,,,,13,14,0,3,17,0,17,17,0,,"2E2F2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728091508P040015491106004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THEDACARE LONG TERM DISABILITY PLAN","506","1993-02-01","THEDACARE",,,"PO BOX 8025","122 E COLLEGE AVE","APPLETON","WI","549128025",,,,,,,,,,,,,,,,,,"391509362","9207355560","622000","THEDACARE",,"PO BOX 8025","122 E COLLEGE AVE","APPLETON","WI","549128025",,,,,,,"391509362","9207355560",,,,"2011-07-28T04:03:56-0500","SUSAN FREDERICKSON",,,,,3784,2690,,,2690,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110727161508P040471888368003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HEALTH INSURANCE PLAN FOR MCCONWAY & TORLEY CORPORATION PITTSBURG AND KANSAS","526","1993-11-01","MCCONWAY & TORLEY CORPORATION",,,"2525 N. STEMMONS FREEWAY",,"DALLAS","TX","75207",,,,,,,,,,,,,,,,,,"250649330","2146314420","331500","MCCONWAY & TORLEY CORPORATION",,"2525 N. STEMMONS FREEWAY",,"DALLAS","TX","75207",,,,,,,"250649330","2146314420",,,,"2011-07-27T16:14:11-0500","PAMELA BEHRENS",,,,,149,135,,,135,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727162049P040104517313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACCOR BUSINESS & LEISURE, INC RETIREMENT SAVINGS PLAN","001","1989-05-01","ACCOR BUSINESS AND LEISURE NORTH AMERICA, INC.",,,"4001 INTERNATIONAL PARKWAY",,"CARROLLTON","TX","75007",,,,,,,"4001 INTERNATIONAL PARKWAY",,"CARROLLTON","TX","75007",,,,,,,"581856700","9723609000","721110","ACCOR BUSINESS AND LEISURE NORTH AMERICA, INC.",,"4001 INTERNATIONAL PARKWAY",,"CARROLLTON","TX","75007",,,,,,,"581856700","9723609000",,,,"2011-07-26T09:44:08-0500","ROBERT FLINT","2011-07-27T16:18:29-0500","SHERRY VIDAL-BROWN",,,2303,1562,3,228,1793,1,1794,749,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727162231P040104518001001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"SECTION 125 PRE-TAX PREMIUM PLAN","501","1989-02-01","SENTRY WATCH INC",,,"PO BOX 10362",,"GREENSBORO","NC","27404",,,,,,,"1705 HOLBROOK STREET",,"GREENSBORO","NC","27403",,,,,,,"560986031","3362926468","238900","SENTRY WATCH INC",,"PO BOX 10362",,"GREENSBORO","NC","27404",,,,,,,"560986031","3362926468",,,,"2011-07-27T16:20:27-0500","THERESA RHODES",,,,,46,41,,,41,,41,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727183738P030101794705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SYSTEMS INTEGRATED, LLC EMPLOYEES' 401(K) PLAN","002","1988-02-01","SYSTEMS INTEGRATED, LLC",,,"2200 N GLASSELL ST",,"ORANGE","CA","92865",,,,,,,,,,,,,,,,,,"522218905","7149980900","541519","SYSTEMS INTEGRATED, LLC",,"2200 N GLASSELL ST",,"ORANGE","CA","92865",,,,,,,"522218905","7149980900",,,,"2011-07-27T18:34:13-0500","JOSEPH SKINNER",,,,,33,16,0,18,34,0,34,34,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728092730P040017306998001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"ASHTABULA COUNTY MEDICAL CENTER LIFE AND DISABILITY PLAN","506","2003-03-01","ASHTABULA COUNTY MEDICAL CENTER",,,"2420 LAKE AVENUE",,"ASHTABULA","OH","44004",,,,,,,,,,,,,,,,,,"340726081","4409972262","622000","ASHTABULA COUNTY MEDICAL CENTER",,"2420 LAKE AVENUE",,"ASHTABULA","OH","44004",,,,,,,"340726081","4409972262",,,,"2011-07-28T09:27:05-0500","PHILIP PAWLOWSKI",,,,,966,944,0,0,944,,,,,,,"4B4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728101056P030102190337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VOLUNTARY PERSONAL ACCIDENT INSURANCE PLAN","601","1986-06-01","SKY CHEFS, INC.",,"HR OPERATIONS CENTER","6191 NORTH STATE HIGHWAY 161",,"IRVING","TX","75038",,,,,,,"6191 NORTH STATE HIGHWAY 161",,"IRVING","TX","75038",,,,,,,"131318367","9727939000","722300","SKY CHEFS, INC.","HR OPERATIONS CENTER","6191 NORTH STATE HIGHWAY 161",,"IRVING","TX","75038",,,,,,,"131318367","9727939000",,,,"2011-07-28T10:07:23-0500","KATHRYN BAIKIE",,,,,7735,7102,,,7102,,7102,,,,,"4L4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110727171656P030014904866001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENGLEWOOD HOSPITAL EMPLOYEE BENEFITS PLAN","515","1990-01-01","ENGLEWOOD HOSPITAL & MEDICAL CENTER",,,"350 ENGLE STREET",,"ENGLEWOOD","NJ","07631",,,,,,,"350 ENGLE STREET",,"ENGLEWOOD","NJ","07631",,,,,,,"221487173","2018943000","622000","ENGLEWOOD HOSPITAL & MEDICAL CENTER",,"350 ENGLE STREET",,"ENGLEWOOD","NJ","07631",,,,,,,"221487173","2018943000",,,,"2011-07-27T16:59:52-0500","MARIA KINNEY","2011-07-27T16:59:52-0500","MARIA KINNEY",,,1837,1847,48,0,1895,0,1895,0,0,,,"4A4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727153443P040471768112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VENMEX, CORP. 401(K) PLAN","001","2005-11-03","VENMEX, CORP.",,,"712B W CIENEGA AVENUE",,"SAN DIMAS","CA","917732431",,,,,,,,,,,,,,,,,,"203883410","9095926200","523110","VENMEX, CORP.",,"712B W CIENEGA AVENUE",,"SAN DIMAS","CA","917732431",,,,,,,"203883410","9095926200",,,,"2011-07-27T15:34:11-0500","CARLOS CELIS","2011-07-27T15:34:11-0500","CARLOS CELIS",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727165047P030014902994001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MAXIM GROUP, LLC DEFINED CONTRIBUTION PLAN","002","2002-10-15","MAXIM GROUP, LLC",,,"99 SUNNYSIDE BLVD.",,"WOODBURY","NY","11797",,,,,,,,,,,,,,,,,,"043640096","5163938300","523120","MAXIM GROUP, LLC",,"99 SUNNYSIDE BLVD.",,"WOODBURY","NY","11797",,,,,,,"043640096","5163938300",,,,"2011-07-27T12:25:33-0500","JOSEPH SERGIO",,,,,223,166,0,15,181,,181,158,25,,"2A2E2G",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728110823P040105046561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRACTOR TRAILER SUPPLY CO./PRECISION REBUILDERS 401K PLAN","001","1995-01-01","TRACTOR TRAILER SUPPLY CO.",,,"2525 NATURAL BRIDGE",,"ST. LOUIS","MO","63107",,,,,,,,,,,,,,,,,,"430630149","3142413072","336990","TRACTOR TRAILER SUPPLY CO.",,"2525 NATURAL BRIDGE",,"ST. LOUIS","MO","63107",,,,,,,"430630149","3142413072",,,,"2011-07-28T11:04:57-0500","THOMAS BLEY",,,,,124,98,0,19,117,0,117,72,0,,"2E2F2G2J2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728065802P040104884577001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VALLOUREC NORTH AMERICA WELFARE BENEFIT PLAN","502","2009-01-01","VALLOUREC & MANNESMANN HOLDINGS, INC.",,,"4424 W. SAM HOUSTON PARKWAY #150",,"HOUSTON","TX","770418244",,,,,,,"4424 W. SAM HOUSTON PARKWAY #150",,"HOUSTON","TX","770418244",,,,,,,"760133933","7134793200","331200","VALLOUREC & MANNESMANN HOLDINGS, INC.",,"4424 W. SAM HOUSTON PARKWAY #150",,"HOUSTON","TX","770418244",,,,,,,"760133933","7134793200",,,,"2011-07-28T01:45:19-0500","CHUCK HOOSE",,,,,1656,4589,,,4589,,4589,,,,,"4A4B4D4E4H4L","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110727155113P030101719793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAKE CHEVROLET NADART SALARY DEF 401K PLAN","001","1998-10-01","LAKE CHEVROLET",,,"31201 AUTO CENTER DRIVE",,"LAKE EISNORE","CA","92530",,,,,,,,,,,,,,,,,,"770465509","9516743116","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T15:45:16-0500","ALAN B. SVEDLOW",,,,,114,68,0,4,72,0,72,26,2,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727155333P040032813687001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"BRITISH AIRWAYS GROUP MEDICAL AND DENTAL PLAN","501","1998-04-01","BRITISH AIRWAYS",,,"2 PARK AVENUE","SUITE 1100","NEW YORK","NY","100165606",,,,,,,,,,,,,,,,,,"131545204","3474184705","488100","BRITISH AIRWAYS",,"2 PARK AVENUE","SUITE 1100","NEW YORK","NY","100165606",,,,,,,"131545204","3474184705",,,,"2011-07-27T04:53:15-0500","ROSEMARY HUGHES",,,,,2756,1447,1000,0,2447,0,2447,0,0,,,"4A4D4E",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728084136P040473726384001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAY COMPOSITES INC RETIREMENT PLAN","001","2009-01-01","BAY COMPOSITES INC",,,"1801 JARMAN",,"ESSEXVILLE","MI","48732",,,,,,,,,,,,,,,,,,"382950444","9898919155","332900","BAY COMPOSITES INC",,"1801 JARMAN",,"ESSEXVILLE","MI","48732",,,,,,,"382950444","9898919155",,,,"2011-07-28T08:40:57-0500","GLENN FONZI","2011-07-28T08:40:57-0500","GLENN FONZI",,,8,9,0,0,9,0,9,8,0,,"2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728092355P040104968369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WISCONSIN LIGHTING INC 401K PROFIT SHARING PLAN","001","1996-02-05","WISCONSIN LIGHTING, INC.",,,"155 WEST 3RD STREET",,"NEW RICHMOND","WI","54017",,,,,,,,,,,,,,,,,,"391400942","7152462233","339900","WISCONSIN LIGHTING, INC.",,"155 WEST 3RD STREET",,"NEW RICHMOND","WI","54017",,,,,,,"391400942","7152462233",,,,"2011-07-28T09:14:40-0500","TODD LOEHR",,,,,17,13,,5,18,,18,7,2,,"2E2G2J2K3D2O",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110727160841P040104510033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLER MOTOR CO. NADART PENSION PLAN","001","1970-06-01","MILLER MOTOR CO.",,,"NORTH PENNSYLVANIA AVENUE",,"CENTRE HALL","PA","16828",,,,,,,,,,,,,,,,,,"251191161","8143641471","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T16:06:46-0500","ALAN B. SVEDLOW",,,,,5,4,0,1,5,0,5,5,1,,"2C2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727160054P040104506929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CASS COUNTY ELECTRIC COOPERATIVE, INC. SAFE HARBOR 401(K) SALARY REDUCTION PLAN AND TRUST","002","1986-05-01","CASS COUNTY ELECTRIC COOPERATIVE, INC.",,,"491 ELM STREET",,"KINDRED","ND","58051",,,,,,,,,,,,,,,,,,"450115790","7013564401","221100","CASS COUNTY ELECTRIC COOPERATIVE, INC.",,"491 ELM STREET",,"KINDRED","ND","58051",,,,,,,"450115790","7013564401",,,,"2011-07-27T16:00:39-0500","LINDA OTTERSON",,,,,127,96,4,28,128,0,128,128,2,,"2E2G2F2J2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727200403P030101832785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROSENTHAL COLLINS GROUP HEALTH CARE PROGRAM","501","1969-01-01","ROSENTHAL COLLINS GROUP, LLC",,,"216 W JACKSON BLVD., 4TH FLOOR",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"364253919","3129845900","523140","ROSENTHAL COLLINS GROUP, LLC",,"216 W JACKSON BLVD., 4TH FLOOR",,"CHICAGO","IL","60606",,,,,,,"364253919","3129845900",,,,"2011-07-27T20:00:22-0500","KEVIN MCCAFFERTY",,,,,356,409,7,3,419,,,,,,,"4A4B4D4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727200824P040104632833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHARD BLACKWELL, DDS 401(K) & PROFIT SHARING PLAN","001","2002-06-01","RICHARD BLACKWELL, D.D.S.",,,"711-E NORTH BELL BOULEVARD",,"CEDAR PARK","TX","78613",,,,,,,,,,,,,,,,,,"751968925","5123356991","621210","RICHARD BLACKWELL, D.D.S.",,"711-E NORTH BELL BOULEVARD",,"CEDAR PARK","TX","78613",,,,,,,"751968925","5123356991",,,,"2011-07-27T19:42:42-0500","RICHARD BLACKWELL",,,,,10,9,0,1,10,0,10,10,0,,"2A2E2F2G2J2K2T3B3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728091519P040104960449002","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"OPERATING ENGINEERS LOCAL 101 HEALTH AND WELFARE PLAN","501","1983-01-01","OPERATING ENGINEERS LOCAL 101 HEALTH AND WELFARE PLAN",,,"6601 WINCHESTER 250",,"KANSAS CITY","MO","64133",,,,,,,,,,,,,,,,,,"440663379","8167375959","525100","OPERATING ENGINEERS LOCAL 101 HEALTH AND WELFARE PLAN",,"6601 WINCHESTER 250",,"KANSAS CITY","MO","64133",,,,,,,"440663379","8167375959",,"440663379","501","2011-07-28T09:02:02-0500","DAVID J. BARRY",,,,,4688,3060,1283,,4343,,,,,407,,"4D4A4F4L",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728111046P040105048145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILSON ELECTRIC 401(K) PLAN","001","2003-04-01","WILSON ELECTRIC SERVICES CORPORATION",,,"600 E. GILBERT DR.",,"TEMPE","AZ","852812021",,,,,,,,,,,,,,,,,,"753091289","4805056532","238210","WILSON ELECTRIC SERVICES CORPORATION",,"600 E. GILBERT DR.",,"TEMPE","AZ","852812021",,,,,,,"753091289","4805056532",,,,"2011-07-28T11:10:42-0500","ALAN GOLD, CPA",,,,,562,403,0,43,446,0,446,257,0,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728093210P040104974929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ST. MARY'S HOSPITAL EMPLOYEE AND DEPENDENT'S DENTAL PLAN","503","1982-02-01","ST. MARYS MEDICAL CENTER",,,"C/O VP OF HUMAN RESOURCES","2900 FIRST AVENUE","HUNTINGTON","WV","25702",,,,,,,,,,,,,,,,,,"550357050","3045261234","622000","ST. MARYS MEDICAL CENTER",,"C/O VP OF HUMAN RESOURCES","2900 FIRST AVENUE","HUNTINGTON","WV","25702",,,,,,,"550357050","3045261234",,,,"2011-07-28T06:58:23-0500","SUSAN ROBINSON",,,,,2009,2000,11,0,2011,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728093834P040473879488001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"REDSTONE GOLF MANAGEMENT, L.P. 401(K) PLAN","001","2001-01-01","REDSTONE GOLF MANAGEMENT, L.P.",,,"5455 WILSON ROAD",,"HUMBLE","TX","77396",,,,,,,,,,,,,,,,,,"760627674","2812569825","713900","REDSTONE GOLF MANAGEMENT, L.P.",,"5455 WILSON ROAD",,"HUMBLE","TX","77396",,,,,,,"760627674","2812569825",,,,"2011-07-28T09:37:53-0500","TRACY SCHUBERT",,,,,414,375,0,13,388,0,388,232,7,,"2E2F2G2J2K3D2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110727225440P030101901457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REEVES LAW FIRM, LLC 401(K) PLAN","001","2008-03-01","REEVES LAW FIRM, LLC",,,"PO BOX 11126",,"COLUMBIA","SC","29211",,,,,,,,,,,,,,,,,,"204649199","8039290001","541110","REEVES LAW FIRM, LLC",,"PO BOX 11126",,"COLUMBIA","SC","29211",,,,,,,"204649199","8039290001",,,,"2011-07-27T22:54:09-0500","PAUL REEVES",,,,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110728092825P030102157185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ULTRAFAB, INC. GROUP DENTAL PLAN","505","2001-02-01","ULTRAFAB, INC.",,"THOMAS E. HARE","1050 HOOK ROAD",,"FARMINGTON","NY","14425",,,,,,,"1050 HOOK ROAD",,"FARMINGTON","NY","14425",,,,,,,"160984733","5859242186","326100","ULTRAFAB, INC.","THOMAS E. HARE","1050 HOOK ROAD",,"FARMINGTON","NY","14425",,,,,,,"160984733","5859242186",,,,"2011-07-28T09:27:31-0500","SUMNER PEARSALL",,,,,195,129,4,,133,,133,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728085218P030032159719001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PIEDMONT CHEMICAL INDUSTRIES LIFE, AD&D NO. 237","508","2009-01-01","PIEDMONT CHEMICAL INDUSTRIES, INC.",,,"331 BURTON AVENUE",,"HIGH POINT","NC","27262",,,,,,,"331 BURTON AVENUE",,"HIGH POINT","NC","27262",,,,,,,"560668042","3368855131","325900","PIEDMONT CHEMICAL INDUSTRIES, INC.",,"331 BURTON AVENUE",,"HIGH POINT","NC","27262",,,,,,,"560668042","3368855131",,,,"2011-07-28T08:48:00-0500","RAY SOYARS",,,,,268,274,,,274,,274,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728080309P040015483554001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMMERCIAL LAW GROUP, P.C. PROFIT SHARING PLAN","001","1997-01-01","COMMERCIAL LAW GROUP, P.C.",,"THOMAS L. BLALOCK, ESQ.","P.O. BOX 18719",,"OKLAHOMA CITY","OK","73154",,,,,,,"5520 NORTH FRANCIS AVENUE",,"OKLAHOMA CITY","OK","73118",,,,,,,"731379254","4052323001","541110","COMMERCIAL LAW GROUP, P.C.","THOMAS L. BLALOCK, ESQ.","P.O. BOX 18719",,"OKLAHOMA CITY","OK","73154",,,,,,,"731379254","4052323001",,,,"2011-07-28T08:02:31-0500","THOMAS J. BLALOCK, ESQ","2011-07-28T08:02:31-0500","THOMAS J. BLALOCK, ESQ",,,28,24,0,6,30,0,30,30,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727153635P030014896194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DEWALCH TECHNOLOGIES, INC. RETIREMENT PLAN AND TRUST","001","2002-01-01","DEWALCH TECHNOLOGIES, INC.",,,"6850 WYNNWOOD LANE",,"HOUSTON","TX","77008",,,,,,,,,,,,,,,,,,"760147642","7138618993","332900","DEWALCH TECHNOLOGIES, INC.",,"6850 WYNNWOOD LANE",,"HOUSTON","TX","77008",,,,,,,"760147642","7138618993",,,,"2011-07-27T15:36:11-0500","MARK DEWALCH","2011-07-27T15:36:11-0500","MARK DEWALCH",,,93,86,8,0,94,0,94,25,0,,"2E2F2J2K3D2G2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727170541P040015429202001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE HAVANA NATIONAL BANK 401K THRIFT AND SAVINGS PLAN & TRUST","002","1985-01-01","THE HAVANA NATIONAL BANK",,,"112 S. ORANGE ST.",,"HAVANA","IL","626440200",,,,,,,"P.O. BOX 200",,"HAVANA","IL","626440200",,,,,,,"370317760","3095433361","522110","THE HAVANA NATIONAL BANK",,"112 S. ORANGE ST.",,"HAVANA","IL","626440200",,,,,,,"370317760","3095433361",,,,"2011-07-27T13:38:08-0500","DIANE SVOB",,,,,63,51,0,8,59,0,59,54,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727182323P040472178208001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PORT TOWNSEND PAPER CORPORATION GROUP LIFE AND HEALTH PLAN","503","1994-01-01","PORT TOWNSEND PAPER CORPORATION",,,"100 PAPER MILL HILL RD.",,"PORT TOWNSEND","WA","98368",,,,,,,,,,,,,,,,,,"911226624","3603853170","322100","PORT TOWNSEND PAPER CORPORATION",,"100 PAPER MILL HILL RD.",,"PORT TOWNSEND","WA","98368",,,,,,,"911226624","3603853170",,,,"2011-07-27T18:22:55-0500","DEBRA DELAIRE",,,,,354,335,60,0,395,0,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727145205P030476029680001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"NUMONYX LIFE INSURANCE PLAN","503","2008-04-01","NUMONYX, INC.",,,"2235 IRON POINT ROAD",,"FOLSOM","CA","956309501",,,,,,,,,,,,,,,,,,"231360453","9164583021","334410","NUMONYX, INC.",,"2235 IRON POINT ROAD",,"FOLSOM","CA","956309501",,,,,,,"231360453","9164583021",,,,"2011-07-27T14:51:31-0500","PATRICK OTTE",,,,,519,0,0,0,0,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727143019P030101671921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLORADO RIVER PLUMBING 401(K) PLAN","001","2007-01-01","COLORADO RIVER PLUMBING, INC.",,,"10135 BARRACKMAN ROAD",,"MOHAVE VALLEY","AZ","86440",,,,,,,,,,,,,,,,,,"201502219","9287688006","238220","COLORADO RIVER PLUMBING, INC.",,"10135 BARRACKMAN ROAD",,"MOHAVE VALLEY","AZ","86440",,,,,,,"201502219","9287688006",,,,"2011-07-27T14:28:51-0500","JOSEPH PAYSON",,,,,2,5,0,0,5,0,5,2,0,,"2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727150808P040104475825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LONG TERM DISABILITY PLAN","506","1985-01-01","NUMERICA CREDIT UNION",,,"PO BOX 4000",,"VERADALE","WA","99037",,,,,,,"14610 SPRAGUE AVE",,"VERADALE","WA","99037",,,,,,,"910863377","5095357613","522130","NUMERICA CREDIT UNION",,"PO BOX 4000",,"VERADALE","WA","99037",,,,,,,"910863377","5095357613",,,,"2011-07-27T15:07:30-0500","NANCY NORBURY-HARTER",,,,,248,258,,,258,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727150330P030101691057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVIS CHEVROLET INC NADART SALARY DEF 401K PLAN","001","1962-07-01","DAVIS CHEVROLET INC",,,"96 RADIO DRIVE",,"LEXINGTON","NC","27292",,,,,,,,,,,,,,,,,,"560196590","3362485108","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T15:02:48-0500","ALAN B. SVEDLOW",,,,,34,32,2,1,35,0,35,24,0,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727153025P030476137424001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WEST VIRGINIA AUTO AND TRUCK NADART PENSION PLAN","001","1974-11-01","WEST VIRGINIA AUTO AND TRUCK",,,"1618 KANAWHA BLVD. E.",,"CHARLESTON","WV","25311",,,,,,,,,,,,,,,,,,"550325753","3043434158","813000","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T15:24:23-0500","ALAN B. SVEDLOW",,,,,3,2,1,1,4,0,4,3,0,,"2C2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727151612P040104480801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE BIJOU CREEK CORPORATION, INC. 401(K)PLAN","001","2008-05-06","THE BIJOU CREEK CORPORATION, INC.",,,"27763 COUNTY ROAD 113",,"SIMLA","CO","80835",,,,,,,,,,,,,,,,,,"262583389","7195415300","541511","THE BIJOU CREEK CORPORATION, INC.",,"27763 COUNTY ROAD 113",,"SIMLA","CO","80835",,,,,,,"262583389","7195415300",,,,"2011-07-27T15:16:05-0500","NANCY CLARK","2011-07-27T15:16:05-0500","NANCY CLARK",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727152231P040104485585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"L. RISO & SONS, CO., INC. PROFIT SHARING PLAN","002","1997-01-01","L. RISO & SONS, CO., INC.",,,"36-35 BELL BOULEVARD",,"BAYSIDE","NY","11361",,,,,,,,,,,,,,,,,,"112028930","7182294300","236110","L. RISO & SONS, CO., INC.",,"36-35 BELL BOULEVARD",,"BAYSIDE","NY","11361",,,,,,,"112028930","7182294300",,,,"2011-07-27T15:22:13-0500","VINCENT RISO",,,,,18,16,0,2,18,0,18,18,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727145304P040104464593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXMERITUS SOFTWARE FEDERAL SYSTEMS, INC. 401K PLAN","107","2003-09-18","THE BOEING COMPANY & CONSOLIDATED SUBSIDIARIES","C/O THE BOEING COMPANY",,"P.O. BOX 3707 M/C 11-57",,"SEATTLE","WA","981242207",,,,,,,"100 N. RIVERSIDE PLAZA",,"CHICAGO","IL","606061596",,,,,,,"910425694","2066625825","541511","EMPLOYEE BENEFIT PLANS COMMITTEE","C/O THE BOEING COMPANY","100 N. RIVERSIDE PLAZA",,"CHICAGO","IL","606061596",,,,,,,"582405861","3125442264","EXMERITUS SOFTWARE FEDERAL SYSTEMS INC.","752993485","001","2011-07-27T11:43:25-0500","SCOTT BUCHANAN",,,,,24,16,0,6,22,0,22,22,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727145620P030101686737017","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VALLEY TELEPHONE COOP INC LONG TERM CARE INSURANCE PLAN","506","2003-10-01","VALLEY TELEPHONE COOPERATIVE, INC",,,"480 S 6TH STREET",,"RAYMONDVILLE","TX","78580",,,,,,,,,,,,,,,,,,"741207591","8004662031","517000","VALLEY TELEPHONE COOPERATIVE INC",,"480 S 6TH STREET",,"RAYMONDVILLE","TX","78580",,,,,,,"741207591","8004662031",,,,"2011-07-26T11:49:21-0500","ROY SHENEMAN",,,,,150,169,,,169,,169,,,,,"4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110726165937P030101080305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILSON JONES COMPANY EMPLOYEES IRA PLAN","008","1982-01-01","ACCO BRANDS USA LLC",,,"300 TOWER PARKWAY",,"LINCOLNSHIRE","IL","60069",,,,,,,,,,,,,,,,,,"132657051","8475419500","339900","ACCO BRANDS USA LLC",,"300 TOWER PARKWAY",,"LINCOLNSHIRE","IL","60069",,,,,,,"132657051","8475419500",,,,"2011-07-26T16:59:26-0500","KRISTIN BERDELMAN",,,,,,,,,0,,0,,,,"2N",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110727132014P040471396320001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERNATIONAL TRANSMISSION COMPANY RETIREMENT PLAN","002","2003-03-01","INTERNATIONAL TRANSMISSION COMPANY",,,"27175 ENERGY WAY",,"NOVI","MI","48377",,,,,,,,,,,,,,,,,,"810596181","2489463611","221100","INTERNATIONAL TRANSMISSION COMPANY",,"27175 ENERGY WAY",,"NOVI","MI","48377",,,,,,,"810596181","2489463611",,,,"2011-07-27T13:19:20-0500","LINDA H BLAIR",,,,,426,433,6,5,444,1,445,,8,,"1A1C1E1G3H",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","2","1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727135831P030032005719001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"IN-SIGHT BOOKS, INC. 401K PLAN","001","2000-01-01","IN-SIGHT BOOKS, INC.",,,"4141 NW EXPRESSWAY",,"OKLAHOMA CITY","OK","73116",,,,,,,,,,,,,,,,,,"751642715","4058109501","323100","IN-SIGHT BOOKS, INC.",,"4141 NW EXPRESSWAY",,"OKLAHOMA CITY","OK","73116",,,,,,,"751642715","4058109501",,,,"2011-07-27T02:58:25-0500","CINDY PEREZ",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2H2J2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727151200P030032021159001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EUGENE LINCOLN - MERCURY NADART SALARY DEF 401K PLAN","001","1984-05-01","EUGENE LINCOLN - MERCURY",,,"380 GOODPASTURE ISLAND RD",,"EUGENE","OR","97401",,,,,,,,,,,,,,,,,,"930794799","5413426161","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T15:02:51-0500","ALAN B. SVEDLOW",,,,,19,12,0,5,17,0,17,17,3,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110726164520P040103827041001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"AMERISERV FINANCIAL 401K PROFIT SHARING","002","1945-01-01","AMERISERV FINANCIAL",,,"MAIN AND FRANKLIN STREETS",,"JOHNSTOWN","PA","15901",,,,,,,,,,,,,,,,,,"250851535","8145335397","522110","AMERISERV FINANCIAL",,"MAIN AND FRANKLIN STREETS",,"JOHNSTOWN","PA","15901",,,,,,,"250851535","8145335397",,,,"2011-07-26T16:42:37-0500","TOBIE GUNBY","2011-07-26T16:42:37-0500","TOBIE GUNBY",,,383,322,0,59,381,2,383,383,0,,"2E2J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727141407P030475930656001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LONG TERM DISABILITY","505","1969-01-01","GENERAL RE CORPORATION",,,"120 LONG RIDGE ROAD",,"STAMFORD","CT","06902",,,,,,,,,,,,,,,,,,"061026471","2033285000","524150","GENERAL RE CORPORATION",,"120 LONG RIDGE ROAD",,"STAMFORD","CT","06902",,,,,,,"061026471","2033285000",,,,"2011-07-27T14:13:25-0500","ERIC ZLATIN",,,,,1450,1349,23,0,1372,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727152748P030101705185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW RIVER NISSAN, INC. NADART PENSION PLAN","001","1973-04-02","NEW RIVER NISSAN, INC.",,,"2130 N FRANKLIN ST.",,"CHRISTIANSBURG","VA","24073",,,,,,,,,,,,,,,,,,"541140453","5403822903","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T15:24:22-0500","ALAN B. SVEDLOW",,,,,31,28,0,3,31,0,31,25,0,,"2C2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110726163014P040103813409013","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ONLINE ELETRONICS RETIREMENT PLAN","001","1995-01-01","ONLINE ELECTRONICS, INC",,,"1261 JARVIS AVE",,"ELK GROVE VILLAGE","IL","60007",,,,,,,,,,,,,,,,,,"363988745","8478711700","443120","ONLINE ELECTRONICS INC",,"1261 JARVIS AVE",,"ELK GROVE VILLAGE","IL","60007",,,,,,,"363988745","8478711700",,,,"2011-07-26T15:32:15-0500","DILKHUSH BHAYANI TRUSTEE",,,,,2,2,,,2,,2,2,,,"3F2K2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110727145411P040104466001001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THE MCAFEE EMPLOYEE BENEFIT PLAN","502","1993-08-01","MCAFEE, INC.",,,"2821 MISSION COLLEGE BLVD.",,"SANTA CLARA","CA","95054",,,,,,,,,,,,,,,,,,"770316593","4083463647","541519","MCAFEE, INC.",,"2821 MISSION COLLEGE BLVD.",,"SANTA CLARA","CA","95054",,,,,,,"770316593","4083463647",,,,"2011-07-27T14:53:39-0500","NIKKI MUSSO","2011-07-27T14:53:39-0500","NIKKI MUSSO",,,2895,3040,95,0,3135,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726164758P040103828177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMLGMN LONG TERM DISABILITY","502","1982-09-15","ALLEN, MATKINS, LECK, GAMBLE, MALLORY & NATSIS",,,"515 S. FIGUEROA STREET, 9TH FLOOR",,"LOS ANGELES","CA","90071",,,,,,,,,,,,,,,,,,"953605309","2136225555","541110","ALLEN, MATKINS, LECK, GAMBLE, MALLORY & NATSIS",,"515 S. FIGUEROA STREET, 9TH FLOOR",,"LOS ANGELES","CA","90071",,,,,,,"953605309","2136225555",,,,"2011-07-26T16:41:07-0500","MICHAEL PALMER",,,,,413,393,0,0,393,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110727144702P040104457617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUNN-O-MATIC CORPORATION EMPLOYEE 401K SAVINGS PLA N AND TRUST","002","1989-01-01","BUNN-O-MATIC CORPORATION",,,"1400 STEVENSON DRIVE",,"SPRINGFIELD","IL","62703",,,,,,,,,,,,,,,,,,"370840805","2175296601","333310","BUNN-O-MATIC CORPORATION",,"1400 STEVENSON DRIVE",,"SPRINGFIELD","IL","62703",,,,,,,"370840805","2175296601",,,,"2011-07-27T14:46:29-0500","A DOUGLAS MEYER","2011-07-27T14:46:29-0500","A DOUGLAS MEYER",,,1346,1311,7,92,1410,3,1413,1259,0,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110726173646P030473425952001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMAS E. DIAZ, M.D. P.A. PROFIT SHARING PLAN","001","1999-01-01","THOMAS E. DIAZ, M.D. P.A.",,,"4625 REDWOOD CT.",,"IRVING","TX","75038",,,,,,,"4625 REDWOOD CT.",,"IRVING","TX","75038",,,,,,,"752712223","9726500680","621111","THOMAS E. DIAZ, M.D. P.A.",,"4625 REDWOOD CT.",,"IRVING","TX","75038",,,,,,,"752712223","9726500620",,,,"2011-07-26T15:58:40-0500","THOMAS DIAZ",,,,,26,0,0,26,26,,26,26,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110726173918P030101099649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EVERETT CLINIC EMPLOYEE BENEFIT PLANS","501","1975-02-01","THE EVERETT CLINIC",,,"3901 HOYT AVENUE",,"EVERETT","WA","982014988",,,,,,,,,,,,,,,,,,"910214500","4253395464","621399","THE EVERETT CLINIC","THE EVERETT CLINIC","3901 HOYT AVENUE",,"EVERETT","WA","98201",,,,,,,"910214500","4253395464",,,,"2011-07-26T17:38:17-0500","DAVID WILDMAN",,,,,1683,1738,,,1738,,,,,,,"4A4B4D4H4L4I","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110727151919P040015418722001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAKER & TAYLOR, INC. GROUP LIFE, MEDICAL, DENTAL, AND DISABILITY PLAN","501","1992-04-01","BAKER AND TAYLOR, INC.",,,"2550 W TYVOLA RD, STE 300",,"CHARLOTTE","NC","28217",,,,,,,,,,,,,,,,,,"561761729","7049983238","423990","BAKER AND TAYLOR, INC.",,"2550 W TYVOLA RD, STE 300",,"CHARLOTTE","NC","28217",,,,,,,"561761729","7049983238",,,,"2011-07-27T15:19:15-0500","JOAN DUNN",,,,,2762,2711,57,0,2768,,,,,,,"4A4B4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727140114P040471503680001","2010-01-01","2010-12-31","3",,,,,,"1",,,,,,"AMALGAMATED UNION LOCAL 450 A WELFARE FUND","501","2003-06-01","BOARD OF TRUSTEES 450A WELFARE FUND",,,"C/O DIOSCURI ADM 212-07 16TH AVE",,"BAYSIDE","NY","11360",,,,,,,,,,,,,,,,,,"061697982","7184284167","813930","BOARD OF TRUSTEES 450A WELFARE FUND",,"C/O DIOSCURI ADM 212-07 16TH AVE",,"BAYSIDE","NY","11360",,,,,,,"061697982","7184284167",,,,"2011-07-27T13:30:45-0500","JOSEPH DIESSO",,,,,187,126,,,126,,126,,,,,"4D4B4A","1",,"1",,"1",,"1",,,,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727143903P040471611984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FRANK N. MAGID ASSOCIATES, INC. LIFE PLAN","502","1976-07-01","FRANK N. MAGID ASSOCIATES, INC.",,,"8500 NORMANDALE LAKE BLVD.",,"MINNEAPOLIS","MN","55437",,,,,,,"SUITE 630",,"MINNEAPOLIS","MN","55437",,,,,,,"420894975","9528354436","541990","FRANK N. MAGID ASSOCIATES, INC.",,"8500 NORMANDALE LAKE BLVD.",,"MINNEAPOLIS","MN","55437",,,,,,,"420894975","9528354436",,,,"2011-07-27T14:38:10-0500","DENNIS SMITH",,,,,97,104,0,0,104,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727144215P040104453761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE BOMMER INDUSTRIES EMPLOYEES' SAVINGS INCENTIVE PLAN","002","1982-10-01","BOMMER INDUSTRIES, INC.",,,"PO BOX 187",,"LANDRUM","SC","29356",,,,,,,,,,,,,,,,,,"570342157","8644573301","332510","BOMMER INDUSTRIES, INC.",,"PO BOX 187",,"LANDRUM","SC","29356",,,,,,,"570342157","8644573301",,,,"2011-07-27T14:41:50-0500","CHARLES A MARTIN",,,,,136,107,5,18,130,0,130,126,0,,"2E2K",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727153243P040015419874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALPHA CLINICAL RESEARCH 401K PLAN","001","2009-07-01","ALPHA CLINICAL RESEARCH, LLC",,,"ATTN AMBER HEGGIE","279 CLEAR SKY CT STE C","CLARKSVILLE","TN","37043",,,,,,,,,,,,,,,,,,"621790008","9319202525","621510","ALPHA CLINICAL RESEARCH, LLC",,"ATTN AMBER HEGGIE","279 CLEAR SKY CT STE C","CLARKSVILLE","TN","37043",,,,,,,"621790008","9319202525",,,,"2011-07-27T15:31:57-0500","AMBER HEGGIE",,,,,11,8,0,0,8,0,8,2,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727141518P040015412066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KEARNY FEDERAL SAVINGS BANK EMPLOYEES' SAVINGS & PROFIT SHARING PLAN AND TRUST","003","2004-11-01","KEARNY FEDERAL SAVINGS BANK",,,"120 PASSAIC AVENUE",,"FAIRFIELD","NJ","07004",,,,,,,,,,,,,,,,,,"221032860","9732444554","522120","KEARNY FEDERAL SAVINGS BANK",,"120 PASSAIC AVENUE",,"FAIRFIELD","NJ","07004",,,,,,,"221032860","9732444554",,,,"2011-07-27T14:14:18-0500","ALBERT E. GOSSWEILER","2011-07-27T14:14:18-0500","ALBERT E. GOSSWEILER",,,296,362,1,47,410,2,412,370,0,,"2E2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727144846P040015415490001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MINDSHIFT TECHNOLOGIES, INC. CONSOLIDATED WELFARE BENEFIT PLAN","501","2004-02-01","MINDSHIFT TECHNOLOGIES, INC.",,,"309 WAVERLY OAKS ROAD","SUITE 301","WALTHAM","MA","02452",,,,,,,,,,,,,,,,,,"541968108","6172432700","541513","MINDSHIFT TECHNOLOGIES, INC.",,"309 WAVERLY OAKS ROAD","SUITE 301","WALTHAM","MA","02452",,,,,,,"541968108","6172432700",,,,"2011-07-27T14:48:00-0500","BRANDIE MELENDEZ",,,,,387,388,16,0,404,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727132254P040104391153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAMSON ELECTRIC, INC. PROFIT SHARING PLAN AND TRUST","001","1996-01-01","SAMSON ELECTRIC, INC.",,,"3125 NORTH VAN HORN ROAD",,"FAIRBANKS","AK","99701",,,,,,,,,,,,,,,,,,"920107448","9074510252","221100","SAMSON ELECTRIC, INC.",,"3125 NORTH VAN HORN ROAD",,"FAIRBANKS","AK","99701",,,,,,,"920107448","9074510252",,,,"2011-07-27T13:22:44-0500","MICHAEL P. SAMSON","2011-07-27T13:22:44-0500","MICHAEL P. SAMSON",,,163,83,0,64,147,0,147,143,20,,"2D2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110727151024P030101695185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QUALITY FORD, INC. DBA QUALITY FORD, INC. NADART SALARY DEF 401K PLAN","001","1994-01-01","QUALITY FORD, INC. DBA QUALITY FORD",,,"2300 EAST MAIN",,"CUSHING","OK","74023",,,,,,,,,,,,,,,,,,"731419623","9182253807","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-07-27T15:02:50-0500","ALAN B. SVEDLOW",,,,,10,9,0,1,10,0,10,8,1,,"2E2J3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110726162924P040468867488001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"CORRECT CARE SOLUTIONS VISION","505","2006-01-01","CORRECT CARE SOLUTIONS",,"MEL WAYMASTER","3343 PERIMETER HILL DRIVE","SUITE 300","NASHVILLE","TN","37211",,,,,,,"3343 PERIMETER HILL DRIVE","SUITE 300","NASHVILLE","TN","37211",,,,,,,"320092573","6153245709","621498","VISION SERVICE PLAN",,"PO BOX 60000",,"SAN FRANCISCO","CA","94160",,,,,,,"061227840",,,,,"2011-07-26T16:16:16-0500","MEL WAYMASTER",,,,,820,1063,,,1063,,1063,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-26","Filed with authorized/valid electronic signature",, "20110727142208P030014890738001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"OEM CONTROLS, INC. PROFIT SHARING PLAN","001","1973-04-01","OEM CONTROLS INC",,,"10 CONTROLS DRIVE",,"SHELTON","CT","06484",,,,,,,"10 CONTROLS DRIVE",,"SHELTON","CT","06484",,,,,,,"060811555","2039298431","335900","OEM CONTROLS INC",,"10 CONTROLS DRIVE",,"SHELTON","CT","06484",,,,,,,"060811555","2039298431",,,,"2011-07-27T14:19:02-0500","MARK PETERSON",,,,,215,175,2,29,206,1,207,200,6,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",, "20110727151508P030101698017007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN P JOYCE & ALICE PLUMMER JOYCE PROFIT SHARING","001","1992-12-24","ALTOONA DERMATOLOGY ASSOCIATES",,,"1101 LOGAN BOULEVARD",,"ALTOONA","PA","16602",,,,,,,,,,,,,,,,,,"251657138","8149439879","621399","ALTOONA DERMATOLOGY ASSOCIATES",,"1101 LOGAN BOULEVARD",,"ALTOONA","PA","16602",,,,,,,"251657138","8149439879",,,,"2011-07-27T15:50:14-0500","JOHN P JOYCE","2011-07-27T15:52:37-0500","JOHN P JOYCE",,,5,7,0,0,7,0,7,7,,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728154720P040105235025001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"U.S. AUTO PARTS NETWORK, INC. 401(K) PLAN","001","2006-01-01","U.S. AUTO PARTS NETWORK, INC.",,,"17150 MARGAY AVE",,"CARSON","CA","907461224",,,,,,,,,,,,,,,,,,"680623433","3107350085","441300","U.S. AUTO PARTS NETWORK, INC.",,"17150 MARGAY AVE",,"CARSON","CA","907461224",,,,,,,"680623433","3107350085","U.S. AUTO PARTS NETWORK, INC.",,,"2011-07-28T15:47:16-0500","AMY KRALLMAN","2011-07-28T15:47:16-0500","AMY KRALLMAN",,,253,263,0,10,273,0,273,113,43,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728105151P040015502786001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"AFRIDI 401(K) PLAN","001","2003-01-01","AFRIDI ASSOCIATES",,,"19 W 21ST STREET","SUITE 703","NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"133797214","2122430727","812990","AFRIDI ASSOCIATES",,"19 W 21ST STREET","SUITE 703","NEW YORK","NY","10010",,,,,,,"133797214","2122430727",,,,"2011-07-28T10:50:57-0500","M. SHAFQAT JAVED",,,,,19,19,0,2,21,0,21,12,1,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728133331P030478804960001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"BRYANLGH EMPLOYEE HEALTH BENEFIT PLAN","501","1996-01-01","BRYANLGH HEALTH SYSTEM",,,"1600 SOUTH 48TH STREET",,"LINCOLN","NE","68506",,,,,,,"1600 SOUTH 48TH STREET",,"LINCOLN","NE","68506",,,,,,,"363414823","4024818833","622000","BRYANLGH HEALTH SYSTEM",,"1600 SOUTH 48TH STREET",,"LINCOLN","NE","68506",,,,,,,"363414823","4024818833",,,,"2011-07-28T13:11:12-0500","JAN GARVIN",,,,,2778,2741,0,0,2741,0,2741,0,0,,,"4A4B4D4E4H4L","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728152051P030479095472001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"I3 MOBILE, INC.","001","1999-10-01","I3 MOBILE, INC.",,,"704 QUINCE ORCHARD RD",,"GAITHERSBURG","MD","20878",,,,,,,"704 QUINCE ORCHARD RD",,"GAITHERSBURG","MD","20878",,,,,,,"510335259","3017213115","517000","I3 MOBILE, INC.",,"704 QUINCE ORCHARD RD",,"GAITHERSBURG","MD","20878",,,,,,,"510335259","3017213115",,,,"2011-07-28T15:18:28-0500","KEVIN DICKENS",,,,,24,5,0,17,22,0,22,17,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728155636P030479192512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ORION APPRAISALS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","ORION APPRAISALS",,,"2926 UPPER 55TH ST E",,"INVER GROVE HEIGHTS","MN","55076",,,,,,,,,,,,,,,,,,"421719925","6516361339","531390","ORION APPRAISALS",,"2926 UPPER 55TH ST E",,"INVER GROVE HEIGHTS","MN","55076",,,,,,,"421719925","6516361339",,,,"2011-07-28T03:56:34-0500","ORION APPRAISALS",,,,,6,6,0,0,6,0,6,4,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728160043P040105245441004","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"HAAG BAT COMPANY RETIREMENT PLAN","001","2010-07-02","HAAG BAT COMPANY, INC",,"PENELOPE R HAAG","8651 N PINERY PARKWAY",,"PARKER","CO","80134",,,,,,,,,,,,,,,,,,"272907071","3033580695","321999","HAAG BAT COMPANY INC","PENELOPE R. HAAG","8651 N PINERY PARKWAY",,"PARKER","CO","80134",,,,,,,"272907071","3033580695",,,,"2011-07-28T15:29:10-0500","PENELOPE R HAAG",,,,,1,1,,,1,,1,1,,,"2J2G2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728120631P040105082785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAC & FOX NATION EMPLOYEES RETIREMENT PLAN","002","1997-01-01","SAC & FOX NATION",,,"920883 S. HWY 99 BLDG. A",,"STROUD","OK","740799652",,,,,,,,,,,,,,,,,,"730786966","9189683526","813000","SAC & FOX NATION",,"920883 S. HWY 99 BLDG. A",,"STROUD","OK","740799652",,,,,,,"730786966","9189683526",,,,"2011-07-28T11:59:50-0500","RANDLE CARTER",,,,,194,167,1,22,190,0,190,181,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728125224P040105114529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COTTONWOOD FINANCIAL ADMINISTRATIVE SERVICES, LLC EMPLOYEE 401(K) INVESTMENT PLAN","001","2000-06-01","COTTONWOOD FINANCIAL ADMINISTRATIVE SERVICES, LLC",,,"1901 GATEWAY DRIVE 200",,"IRVING","TX","75038",,,,,,,,,,,,,,,,,,"261367228","9727530822","522291","COTTONWOOD FINANCIAL ADMINISTRATIVE SERVICES, LLC",,"1901 GATEWAY DRIVE 200",,"IRVING","TX","75038",,,,,,,"261367228","9727530822",,,,"2011-07-28T12:51:49-0500","BETH L COGGSHALL",,,,,350,391,1,20,412,0,412,208,39,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728141947P030102352449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLARITY CHILD GUIDANCE CENTER LONG TERM DISABILITY PLAN","503","1998-07-01","CLARITY CHILD GUIDANCE CENTER",,,"8535 TOM SLICK",,"SAN ANTONIO","TX","78229",,,,,,,"8535 TOM SLICK",,"SAN ANTONIO","TX","78229",,,,,,,"741153067","2106160300","622000","CLARITY CHILD GUIDANCE CENTER",,"8535 TOM SLICK",,"SAN ANTONIO","TX","78229",,,,,,,"741153067","2106160300",,,,"2011-07-28T10:59:45-0500","GINA MASSEY","2011-07-28T13:40:59-0500","FRED HINES",,,151,158,,,158,,158,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728134135P040105151473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCCARTER & ENGLISH, LLP SHORT TERM DISABILITY PLAN","513","1987-03-01","MCCARTER & ENGLISH, LLP",,,"100 MULBERRY STREET",,"NEWARK","NJ","07102",,,,,,,,,,,,,,,,,,"221534652","9736224444","541110","MCCARTER & ENGLISH, LLP",,"100 MULBERRY STREET",,"NEWARK","NJ","07102",,,,,,,"221534652","9736224444",,,,"2011-07-28T13:41:10-0500","DAWN NALEPA",,,,,253,255,0,0,255,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728144401P030014996578001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALK INDUSTRIES, INC. RETIREMENT AND PROFIT SHARING PLAN","001","1995-01-01","VALK INDUSTRIES, INC.",,,"P.O. BOX 668",,"GREENEVILLE","TN","377440668",,,,,,,"VALK LANE",,"GREENEVILLE","TN","37743",,,,,,,"621072817","4236381284","339900","VALK INDUSTRIES, INC.",,"P.O. BOX 668",,"GREENEVILLE","TN","377440668",,,,,,,"621072817","4236381284",,,,"2011-07-28T14:43:27-0500","LOREN PLUCKER",,,,,42,41,0,0,41,0,41,41,0,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728121812P040015513010001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARTER BANK & TRUST PROFIT SHARING PLAN & TRUST","001","1980-01-01","CARTER BANK & TRUST",,,"1300 KINGS MOUNTAIN ROAD",,"MARTINSVILLE","VA","24112",,,,,,,,,,,,,,,,,,"205539935","2766561776","522110","CARTER BANK & TRUST",,"1300 KINGS MOUNTAIN ROAD",,"MARTINSVILLE","VA","24112",,,,,,,"205539935","2766561776",,,,"2011-07-28T12:17:12-0500","ROBIN M. LOUTHEN, QPA",,,,,1016,978,0,60,1038,1,1039,1022,37,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728130158P030014985394001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTURY BANCORP INC LIFE INSURANCE PLAN","515","1990-07-01","CENTURY BANCORP INC",,,"400 MYSTIC AVENUE",,"MEDFORD","MA","02155",,,,,,,"400 MYSTIC AVENUE",,"MEDFORD","MA","02155",,,,,,,"042498617","7813934628","522110","CENTURY BANCORP INC",,"400 MYSTIC AVENUE",,"MEDFORD","MA","02155",,,,,,,"042498617","7813934628",,,,"2011-07-28T09:02:20-0500","YASMIN WHIPPLE",,,,,360,369,,,369,,369,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728140700P040003179987001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IGX, INC 401K PLAN","001","1995-01-01","IGX, INC.",,,"1401 N. CENTRAL EXPRESSWAY","SUITE 320","RICHARDSON","TX","75080",,,,,,,,,,,,,,,,,,"752874358","9724791770","541600","IGX, INC.",,"1401 N. CENTRAL EXPRESSWAY","SUITE 320","RICHARDSON","TX","75080",,,,,,,"752874358","9724791770",,,,"2011-07-28T14:01:00-0500","SCOTT E. LAWSON","2011-07-28T14:01:00-0500","SCOTT E. LAWSON",,,38,15,0,19,34,1,35,28,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728141455P040105172241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WESTPORT SHIPYARD, INC. 401K PROFIT SHARING PLAN","001","1980-01-01","WESTPORT SHIPYARD, INC.",,,"P.O. BOX 308",,"WESTPORT","WA","98595",,,,,,,"1807 NYHUS STREET",,"WESTPORT","WA","98595",,,,,,,"911011690","3602681800","336610","WESTPORT SHIPYARD, INC.",,"P.O. BOX 308",,"WESTPORT","WA","98595",,,,,,,"911011690","3602681800",,,,"2011-07-28T14:14:24-0500","JOSEPH P. STIPIC",,,,,1278,653,0,646,1299,5,1304,1298,95,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728144437P030102370929001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"OTTAWA AGGREGATES, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1989-01-01","OTTAWA AGGREGATES, INC.",,,"O-10600 LINDEN NW",,"GRAND RAPIDS","MI","49534",,,,,,,,,,,,,,,,,,"381646038","6166776190","212320","OTTAWA AGGREGATES, INC.",,"O-10600 LINDEN NW",,"GRAND RAPIDS","MI","49534",,,,,,,"381646038","6166776190",,,,"2011-07-28T14:44:16-0500","LISA KISHMAN",,,,,16,13,0,2,15,0,15,15,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728143019P040105182833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OASIS SYSTEMS, LLC 401K PLAN","001","1998-09-01","OASIS SYSTEMS, LLC",,,"24 HARTWELL AVENUE",,"LEXINGTON","MA","02421",,,,,,,,,,,,,,,,,,"043382761","7816767348","541519","OASIS SYSTEMS, LLC",,"24 HARTWELL AVENUE",,"LEXINGTON","MA","02421",,,,,,,"043382761","7816767348",,,,"2011-07-28T14:29:56-0500","MARY JANE KNUDSON","2011-07-28T14:29:56-0500","MARY JANE KNUDSON",,,341,421,0,86,507,1,508,327,3,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728104451P030478377792001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"COMPREHENSIVE WELFARE BENEFIT PLAN","509","2010-01-01","NEW JERSEY MANUFACTURERS INSURANCE COMPANY",,,"301 SULLIVAN WAY",,"WEST TRENTON","NJ","086283496",,,,,,,,,,,,,,,,,,"210524225","6098831300","524150","NEW JERSEY MANUFACTURERS INSURANCE COMPANY",,"301 SULLIVAN WAY",,"WEST TRENTON","NJ","086283496",,,,,,,"210524225","6098831300",,,,"2011-07-28T10:38:52-0500","CHARLES PRALL",,,,,3150,2558,589,0,3147,,,,,,,"4A4B4D4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728125513P030102298993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEAMBOAT ASSOCIATES LLC 401(K) PLAN","002","2009-01-01","STEAMBOAT ASSOCIATES LLC",,,"14340 OLD MARLBORO PIKE",,"UPPER MARLBORO","MD","20772",,,,,,,,,,,,,,,,,,"611424107","3017024210","531110","STEAMBOAT ASSOCIATES LLC",,"14340 OLD MARLBORO PIKE",,"UPPER MARLBORO","MD","20772",,,,,,,"611424107","3017024210",,,,"2011-07-28T12:50:36-0500","KARL ALBERT",,,,,3,3,0,0,3,0,3,2,0,,"2A2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728123156P040015514946009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"M. WASSEF DABBAS MD PROFIT SHARING PLAN","002","1999-03-31","M. WASSEF DABBAS MD",,,"1425 E. STROOP ROAD",,"DAYTON","OH","45419",,,,,,,"1425 E. STROOP ROAD",,"DAYTON","OH","45419",,,,,,,"311098700","9372986654","621111","M. WASSEF DABBAS MD",,"1425 E. STROOP ROAD",,"DAYTON","OH","45419",,,,,,,"311098700","9372986654",,,,"2011-07-31T08:26:17-0500","M WASSEF DABBAS","2011-07-31T08:26:17-0500","M WASSEF DABBAS",,,6,6,,,6,,6,6,,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728141330P040033069703001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"THE BRAVO GROUP INC 401(K) PLAN","001","2007-11-06","THE BRAVO GROUP INC",,,"5710 WALLIS LN",,"WOODLAND HILLS","CA","913675325",,,,,,,,,,,,,,,,,,"331190523","8186123969","541400","THE BRAVO GROUP INC",,"5710 WALLIS LN",,"WOODLAND HILLS","CA","913675325",,,,,,,"331190523","8186123969",,,,"2011-07-28T14:12:50-0500","HILDA MOROVATI",,,,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728150718P040474806960001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUTHERLAND GLOBAL SERVICES INC SHORT-TERM DISABILITY PLAN","508","1998-01-01","SUTHERLAND GLOBAL SERVICES INC",,,"1180 JEFFERSON ROAD",,"ROCHESTER","NY","14623",,,,,,,,,,,,,,,,,,"161287080","5855865757","541990","SUTHERLAND GLOBAL SERVICES INC",,"1180 JEFFERSON ROAD",,"ROCHESTER","NY","14623",,,,,,,"161287080","5855865757",,,,"2011-07-28T15:06:30-0500","REBECCA KLIMEK",,,,,2242,2247,56,0,2303,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728125713P040105116817001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"RESEARCH PRODUCTS CORPORATION PRODUCTION STAFF 401(K) SAVINGS PLAN","004","1989-01-01","RESEARCH PRODUCTS CORPORATION",,,"1015 E. WASHINGTON AVE.",,"MADISON","WI","53701",,,,,,,,,,,,,,,,,,"390566098","6083106115","333410","RESEARCH PRODUCTS CORPORATION",,"1015 E. WASHINGTON AVE.",,"MADISON","WI","53701",,,,,,,"390566098","6083106115",,,,"2011-07-28T12:56:59-0500","J. CORY RECKNOR",,,,,172,146,0,15,161,0,161,147,25,,"3D2E2J3H2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728132232P030102316337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RBC SEVERANCE PAY PLAN (USA)","511","2009-03-01","RBC USA HOLDCO CORPORATION",,,"1 LIBERTY PLAZA",,"NEW YORK","NY","10006",,,,,,,,,,,,,,,,,,"411228530","6123712922","523120","RBC USA BENEFITS COMMITTEE",,"60 SOUTH SIXTH STREET",,"MINNEAPOLIS","MN","554024422",,,,,,,"411228530","6123712922",,,,"2011-07-28T09:41:39-0500","NDIKUM CHI",,,,,7626,7765,,,7765,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728143430P030102363249001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"AMERICAN GEOGRAPHICAL SOCIETY OF NY TIAA CREF TAX DEFERRED ANNUITY","002","1982-01-01","AMERICAN GEOGRAPHICAL SOCIETY OF NY",,,"32 COURT STREET, SUITE 201",,"BROOKLYN","NY","11201",,,,,,,"32 COURT STREET, SUITE 201",,"BROOKLYN","NY","11201",,,,,,,"131623890","7186242212","813000","AMERICAN GEOGRAPHICAL SOCIETY OF NY",,"32 COURT STREET, SUITE 201",,"BROOKLYN","NY","11201",,,,,,,"131623890","7186242212",,,,"2011-07-28T13:06:21-0500","MARIA VICTORIA ROSA","2011-07-28T13:59:37-0500","JEROME DOBSON",,,0,0,,,0,,0,,,,"2L",,"0",,,"1","0",,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728151524P030102391969009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JVSS ADVENTURES, INC. 401K PROFIT SHARING PLAN","001","2008-03-31","JVSS ADVENTURES, INC",,"VICKIE BRUEN","119 EAGLE POINT ROAD",,"FOX LAKE","IL","60020",,,,,,,,,,,,,,,,,,"262244241","8479732899","532290","JVSS ADVENTURES, INC","VICKIE BRUEN","119 EAGLE POINT ROAD",,"FOX LAKE","IL","60020",,,,,,,"262244241","8479732899",,,,"2011-07-28T15:05:21-0500","VICKIE BRUEN","2011-07-28T15:05:46-0500","VICKIE BRUEN",,,2,2,0,0,2,0,2,2,,,"2E2F2J2G2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728120910P040105084177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MESSER CONSTRUCTION CO. LIFE AND DISABILITY INCOME PLAN","502","1968-09-01","MESSER CONSTRUCTION CO.",,,"5158 FISHWICK DRIVE",,"CINCINNATI","OH","452160000",,,,,,,,,,,,,,,,,,"310740877","5132421541","236200","MESSER CONSTRUCTION CO.",,"5158 FISHWICK DRIVE",,"CINCINNATI","OH","452160000",,,,,,,"310740877","5132421541",,,,"2011-07-28T12:08:42-0500","WANDA L. WALLACE","2011-07-28T12:08:42-0500","WANDA L. WALLACE",,,472,489,0,0,489,,,,,,,"4B4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728120926P040474294880001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MARK DULBERG, D.C. 401(K) PLAN","002","2002-01-01","MARK DULBERG, D.C.",,,"244 CIVIC CENTER STREET",,"RICHMOND","CA","94804",,,,,,,,,,,,,,,,,,"680105388","5102367800","621310","MARK DULBERG, D.C.",,"244 CIVIC CENTER STREET",,"RICHMOND","CA","94804",,,,,,,"680105388","5102367800","MARK DULBERG, D.C. DBA CIVIC CENTER CHIROPRACTIC","680105388","002","2011-07-26T17:18:09-0500","MARK DULBERG",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G2J2K2R2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728143607P040105186913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROSKA DIRECT MARKETING 401(K) PLAN","001","1996-01-01","ROSKA DIRECT MARKETING",,,"211 B PROGRESS DRIVE",,"MONTGOMERYVILLE","PA","18936",,,,,,,,,,,,,,,,,,"232331527","2156999200","454390","ROSKA DIRECT MARKETING",,"211 B PROGRESS DRIVE",,"MONTGOMERYVILLE","PA","18936",,,,,,,"232331527","2156999200",,,,"2011-07-28T14:35:15-0500","JAMES SAUNDERS","2011-07-28T14:35:15-0500","JAMES SAUNDERS",,,66,48,0,19,67,0,67,55,3,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728144005P040033084215001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ASI 401K PLAN","001","2009-01-01","AGRI SERVICES OF NORTHERN IA INC",,,"1907 10TH STREET",,"EMMETSBURG","IA","50536",,,,,,,,,,,,,,,,,,"421517037","7128522005","115110","AGRI SERVICES OF NORTHERN IA INC",,"1907 10TH STREET",,"EMMETSBURG","IA","50536",,,,,,,"421517037","7128522005",,,,"2011-07-28T14:39:27-0500","LISA LUNDGREN",,,,,8,8,0,0,8,0,8,7,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728161522P030102432145017","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"TRINITY TECHNOLOGY GROUP VISION PLAN","503","2006-01-01","TRINITY TECHNOLOGY GROUP, INC.",,,"11781 LEE JACKSON MEMORIAL HWY","SUITE 200","FAIRFAX","VA","22033",,,,,,,,,,,,,,,,,,"450494372","7039022868","541600","TRINITY TECHNOLOGY GROUP, INC.",,"11781 LEE JACKSON MEMORIAL HWY",,"FAIRFAX","VA","22033",,,,,,,"450494372","7039022868",,,,"2011-07-28T16:03:47-0500","ELIZABETH PARKER","2011-07-28T16:04:05-0500","DOUG BULLOCK",,,104,133,,,133,,,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110728114251P030014979218001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","0","0","0","0",,"WELFARE FUND OF HEAT AND FROST INSULATORS LOCAL 12","501","1950-07-01","BOARD OF TRUSTEES HEAT AND FROST INSULATORS LOCAL 12",,,"25-19 43RD AVENUE",,"LONG ISLAND CITY","NY","111014208",,,,,,,,,,,,,,,,,,"116302784","7187848883","525100","BOARD OF TRUSTEES HEAT AND FROST INSULATORS LOCAL 12",,"25-19 43RD AVENUE",,"LONG ISLAND CITY","NY","111014208",,,,,,,"116302784","7187848883",,,,"2011-07-28T11:42:06-0500","CAROL WESTFALL",,,,,616,398,177,,575,,,,,,,"4A4B4E4F4L4Q4U","0","0","1","0","1","0","1","0","0","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728131338P030032214919001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LADENBURG THALMANN & CO. INC DEPENDENT CARE FLEXIBLE SPENDING ACCOUNT","508","1997-01-01","LADENBURG THALMANN & CO. INC",,,"58 SOUTH SERVICE RD.",,"MELVILLE","NY","11747",,,,,,,"58 SOUTH SERVICE RD.",,"MELVILLE","NY","11747",,,,,,,"132700032","6312701600","523110","LADENBURG THALMANN & CO. INC",,"58 SOUTH SERVICE RD.",,"MELVILLE","NY","11747",,,,,,,"132700032","6312701600",,,,"2011-07-28T13:10:39-0500","DIANE CHILLEMI",,,,,0,0,0,0,0,,0,,0,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728145154P040105195281001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"PARTHENON RISK PARTNERS 401K","001","2009-01-01","PARTHENON RISK PARTNERS",,,"705 EAST 4TH STREET","PO BOX 479","WINTHROP","MN","55396",,,,,,,,,,,,,,,,,,"202433339","3603036419","541219","PARTHENON RISK PARTNERS",,"705 EAST 4TH STREET","PO BOX 479","WINTHROP","MN","55396",,,,,,,"202433339","3603036419",,,,"2011-07-28T14:22:02-0500","DENNIS PAP","2011-07-28T14:22:02-0500","DENNIS PAP",,,7,0,0,0,0,0,0,0,0,,"2H2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728153915P030015002322001","2010-01-01","2010-12-31","4","M","0","1","0","0","0","0","0","0","0",,"HUNTSMAN ADVANCED MATERIALS AMERICAS MASTER TRUST","015",,"HUNTSMAN ADVANCED MATERIALS AMERICAS LLC",,,"10003 WOODLOCH FOREST DR",,"THE WOODLANDS","TX","773801913",,,,,,,,,,,,,,,,,,"522215309","2817196000",,"HUNTSMAN ADVANCED MATERIALS AMERICA",,"10003 WOODLOCH FOREST DR",,"THE WOODLANDS","TX","773801913",,,,,,,"522215309","2817196000",,,,"2011-07-28T14:21:46-0500","MARK CORDINGLY",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728115303P030102263345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLER PLANTE INC 401(K) PROFIT SHARING PLAN & TRUST","001","2004-10-01","MILLER PLANTE, INC",,,"500 WINDERLEY PL STE 105",,"MAITLAND","FL","32751",,,,,,,,,,,,,,,,,,"593571531","4078753131","454390","MILLER PLANTE, INC",,"500 WINDERLEY PL STE 105",,"MAITLAND","FL","32751",,,,,,,"593571531","4078753131",,,,"2011-07-28T11:53:00-0500","MILLER PLANTE, INC",,,,,0,21,0,0,21,0,21,5,0,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728104508P030102221905007","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"GREGORY J. ELLIS & ASSOCIATES, LTD. PROFIT SHARING PLAN","004","1998-01-01","GREGORY J. ELLIS, ESQ., LTD.",,"GREGORY J. ELLIS","18 EXECUTIVE COURT",,"SOUTH BARRINGTON","IL","60010",,,,,,,,,,,,,,,,,,"363733859","8478420999","541110","GREGORY J. ELLIS, ESQ., LTD.","GREGORY J. ELLIS","18 EXECUTIVE COURT",,"SOUTH BARRINGTON","IL","60010",,,,,,,"363733859","8478420999",,,,"2011-07-28T10:41:35-0500","GREGORY J. ELLIS",,,,,2,2,0,0,2,0,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728134642P040105154865001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RINCON RESEARCH CORPORATION 401(K) PLAN","002","1992-01-01","RINCON RESEARCH CORPORATION",,,"101 NORTH WILMOT ROAD, SUITE 101",,"TUCSON","AZ","85711",,,,,,,,,,,,,,,,,,"860465180","5205194713","541990","RINCON RESEARCH CORPORATION",,"101 NORTH WILMOT ROAD, SUITE 101",,"TUCSON","AZ","85711",,,,,,,"860465180","5205194713",,,,"2011-07-28T02:46:03-0500","STEPHEN ZIEHMER",,,,,200,184,,30,214,,214,213,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728152245P030479100496001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YPI 401(K) PLAN","002","1990-07-01","YANKEE PUBLISHING, INC",,,"P.O BOX 520",,"DUBLIN","NH","03444",,,,,,,"1121 MAIN ST",,"DUBLIN","NH","03444",,,,,,,"020206420","6035638111","511190","YANKEE PUBLISHING, INC",,"P.O BOX 520",,"DUBLIN","NH","03444",,,,,,,"020206420","6035638111",,,,"2011-07-28T15:22:06-0500","JODY BUGBEE",,,,,80,53,0,25,78,0,78,76,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728141642P030102349697001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"KEYSTONE COLLEGE DENTAL PLAN","504","1987-06-01","KEYSTONE JUNIOR COLLEGE","KEYSTONE COLLEGE","KEVIN M. WILSON","ONE COLLEGE GREEN",,"LAPLUME","PA","18440",,,,,,,"ONE COLLEGE GREEN",,"LAPLUME","PA","18440",,,,,,,"240795441","5709458373","611000","KEYSTONE JUNIOR COLLEGE","KEVIN M. WILSON","ONE COLLEGE GREEN",,"LAPLUME","PA","18440",,,,,,,"240795441","5709458373",,,,"2011-07-28T14:08:25-0500","KEVIN WILSON",,,,,201,178,9,,187,,187,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728133039P040105144641015","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KEA JA PAI MD PROFIT SHARING PLAN","002","2000-01-01","KEA JA PAI, M D",,,"11160 WARNER AVENUE STE 107",,"FOUNTAIN VALLEY","CA","92708",,,,,,,,,,,,,,,,,,"330117090","7149665205","621111","KEA JA PAI M D",,"11160 WARNER AVENUE STE 107",,"FOUNTAIN VALLEY","CA","92708",,,,,,,"330117090","7149665205",,,,"2011-07-28T13:15:10-0500","KEA JA PAI MD",,,,,2,2,,,2,,2,,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728152446P040002965268001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST BANCORP FLEXIBLE BENEFIT PLAN","501","1987-07-15","FIRST BANCORP",,,"341 NORTH MAIN STREET",,"TROY","NC","27371",,,,,,,,,,,,,,,,,,"561421916","9105766171","522110","FIRST BANCORP",,"341 NORTH MAIN STREET",,"TROY","NC","27371",,,,,,,"561421916","9105766171",,,,"2011-07-28T15:24:41-0500","PATRICIA M. MCCORMICK","2011-07-28T15:24:41-0500","TIMOTHY S. MAPLES",,,201,190,0,0,190,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728155413P040105240241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KTGY GROUP, INC. 401(K) AND PROFIT SHARING PLAN","001","1996-08-01","KTGY GROUP, INC.",,,"17922 FITCH",,"IRVINE","CA","92714",,,,,,,,,,,,,,,,,,"330488819","9498512133","541310","KTGY GROUP, INC.",,"17922 FITCH",,"IRVINE","CA","92714",,,,,,,"330488819","9498512133",,,,"2011-07-28T15:53:07-0500","OLIVIA MAYES",,,,,225,94,0,122,216,0,216,204,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728135922P030102338993001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"METROPCS WIRELESS, INC. 401(K) PLAN","001","2001-07-01","METROPCS WIRELESS, INC.",,,"2250 LAKESIDE BLVD.",,"RICHARDSON","TX","75082",,,,,,,"2250 LAKESIDE BLVD.",,"RICHARDSON","TX","75082",,,,,,,"752694973","2142652550","517000","METROPCS WIRELESS, INC.",,"2250 LAKESIDE BLVD.",,"RICHARDSON","TX","75082",,,,,,,"752694973","2142652550",,,,"2011-07-28T13:58:43-0500","JUDY PILOTTE",,,,,3490,3353,0,118,3471,1,3472,1650,108,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728144114P040474731664001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE OWEN CONSTRUCTION CORP. 401(K) PROFIT SHARING PLAN","001","2004-01-01","OWEN CONSTRUCTION CORP.",,,"101 EDWARDS AVENUE",,"CALVERTON","NY","11933",,,,,,,,,,,,,,,,,,"113369687","6313697310","236110","OWEN CONSTRUCTION CORP.",,"101 EDWARDS AVENUE",,"CALVERTON","NY","11933",,,,,,,"113369687","6313697310",,,,"2011-07-28T14:25:26-0500","MICHAEL R. OWEN","2011-07-28T14:25:26-0500","MICHAEL R. OWEN",,,10,3,0,7,10,0,10,10,0,,"2E2F2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728144154P030014996274001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RANCHO LA QUINTA SAVINGS PLAN","001","1998-01-01","T.D. DESERT DEVELOPMENT CORPORATION",,,"P.O. BOX 10246",,"BIRMINGHAM","AL","35202",,,,,,,"P.O. BOX 10246",,"BIRMINGHAM","AL","35202",,,,,,,"631075550","2059456300","531390","T.D. DESERT DEVELOPMENT CORPORATION",,"P.O. BOX 10246",,"BIRMINGHAM","AL","35202",,,,,,,"631075550","2059456300",,,,"2011-07-28T14:33:45-0500","JOHN STILWELL",,,,,176,168,58,,226,,226,145,4,,"2J2G",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728142732P030102358001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AUTISTIC SERVICES, INC. HEALTH REIMBURSEMENT ARRANGEMENT","502","2006-02-01","AUTISTIC SERVICES, INC.",,,"4444 BRYANT STRATTON WAY",,"WILLIAMSVILLE","NY","14221",,,,,,,"4444 BRYANT STRATTON WAY",,"WILLIAMSVILLE","NY","14221",,,,,,,"161185024","7166315777","611000","AUTISTIC SERVICES, INC.",,"4444 BRYANT STRATTON WAY",,"WILLIAMSVILLE","NY","14221",,,,,,,"161185024","7166315777",,,,"2011-07-28T14:27:07-0500","VERONICA FEDERICONI",,,,,211,217,0,0,217,0,217,0,0,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728163424P030479292528001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"INDEPENDENCE CAPITAL ASSET 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","INDEPENDENCE CAPITAL ASSET PAR",,,"1400 16TH ST., STE. 520",,"DENVER","CO","80202",,,,,,,,,,,,,,,,,,"201567729","3032094100","523900","INDEPENDENCE CAPITAL ASSET PAR",,"1400 16TH ST., STE. 520",,"DENVER","CO","80202",,,,,,,"201567729","3032094100",,,,"2011-07-28T04:34:21-0500","INDEPENDENCE CAPITAL ASSET PAR",,,,,14,15,0,0,15,0,15,10,0,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728161621P040105256561006","2010-01-01","2010-12-31","1",,,"1",,,"1",,,,,,"DISTRICT NO. 9 INTERNATIONAL ASSOCIATION OF MACHINISTS AND AEROSPACE WORKERS PENSION PLAN","001","1957-01-14","JOINT BOARD OF TRUSTEES OF DISTRICT 9 I.A.M. & A.W. PENSION TRUST",,,"12365 ST. CHARLES ROCK ROAD",,"BRIDGETON","MO","63044",,,,,,,,,,,,,,,,,,"510138317","3147396442","525100","JOINT BOARD OF TRUSTEES OF DISTRICT I.A.M. & A.W. PENSION TRUST",,"12365 ST. CHARLES ROCK ROAD",,"BRIDGETON","MO","63044",,,,,,,"510138317","3147396442",,,,"2011-07-26T11:05:50-0500","TONY RIPPETO",,,,,16818,3740,5956,5615,15311,1413,16724,,,211,"1B1G",,"1",,"1",,"1",,"1",,"1","1",,"1",,"1","15","1","1",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728164508P030102445089025","2010-09-01","2010-12-31","2",,"1","1",,"1",,,,,,,"MOUNTAIN VIEW MANAGEMENT, INC. 401(K) PLAN","001","2010-09-01","MOUNTAIN VIEW MANAGEMENT, INC.",,,"847 EAST 500 NORTH",,"OREM","UT","840974285",,,,,,,,,,,,,,,,,,"870529952","8012244776","531390","MOUNTAIN VIEW MANAGEMENT, INC.",,"847 EAST 500 NORTH",,"OREM","UT","840974285",,,,,,,"870529952","8012244776",,,,"2011-07-28T16:34:57-0500","TODD BISHOP",,,,,0,4,0,0,4,0,4,4,,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728162230P030102435233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"BOYCE & BYNUM PATHOLOGY LABORATORIES, PC FLEXIBLE BENEFITS PLAN","501","1992-01-01","BOYCE & BYNUM PATHOLOGY LABORATORIES, PC",,,"PO BOX 7406",,"COLUMBIA","MO","65205",,,,,,,"200 PORTLAND ST",,"COLUMBIA","MO","65201",,,,,,,"430907562","5738745000","621510","BOYCE & BYNUM PATHOLOGY LABORATORIES, PC",,"PO BOX 7406",,"COLUMBIA","MO","65205",,,,,,,"430907562","5738745000",,,,"2011-07-28T16:21:54-0500","HARRY WINFREY",,,,,274,254,,,254,,254,,,,,"4A4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728130829P030102306385003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AMERICAN SOCIETY FOR CLINICAL PATHOLOGY 403(B) PLAN","003","2005-01-01","AMERICAN SOCIETY FOR CLINICAL PATHOLOGY",,,"33 W. MONROE",,"CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"362406080","3125414999","813000","AMERICAN SOCIETY FOR CLINICAL PATHOLOGY",,"33 W. MONROE",,"CHICAGO","IL","60603",,,,,,,"362406080","3125414999",,,,"2011-07-27T06:52:27-0500","JEAN MARIE MARDEN","2011-07-27T06:52:27-0500","JEAN MARIE MARDEN",,,209,169,,40,209,,209,176,,,"2F2G2L2M2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728122637P030102282721002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"THE EMPLOYEE ASSISTANCE PROGRAM OF THE MERCHANTS BANK","809","1997-01-01","MERCHANTS BANK",,,"275 KENNEDY DRIVE",,"SOUTH BURLINGTON","VT","05403",,,,,,,,,,,,,,,,,,"030141230","8028651892","522110","MERCHANTS BANK",,"275 KENNEDY DRIVE",,"SOUTH BURLINGTON","VT","05403",,,,,,,"030141230","8028651892",,,,"2011-07-28T06:12:16-0500","CYNTHIA OLSON FBO MERCHANTS BANK","2011-07-28T06:12:16-0500","CYNTHIA OLSON FBO MERCHANTS BANK",,,322,330,0,0,330,,,,,,,"4A4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728122646P030014982018010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARY ANNE BUTLER, DMD 401(K) PROFIT SHARING PLAN","001","2000-01-01","MARY ANNE BUTLER, DMD",,,"2151 DELTA BOULEVARD, SUITE 201",,"TALLAHASSEE","FL","32303",,,,,,,,,,,,,,,,,,"593611689","8503869445","621210","MARY ANNE BUTLER, DMD",,"2151 DELTA BOULEVARD, SUITE 201",,"TALLAHASSEE","FL","32303",,,,,,,"593611689","8503869445",,,,"2011-07-28T05:55:21-0500","MARY ANNE BUTLER","2011-07-28T05:55:21-0500","MARY ANNE BUTLER",,,6,6,,,6,,6,6,,,"2E2F2G2J2K2R2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728150415P040105203921001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"RESEARCH FOUNDATION OF THE CITY UNIVERSITY OF NEW YORK DEFINED CONTRIBUTION RETIREMENT PLAN","001","1972-01-01","RESEARCH FOUNDATION OF CUNY",,,"230 WEST 41ST STREET",,"NEW YORK","NY","10036",,,,,,,,,,,,,,,,,,"131988190","2124178601","541700","RESEARCH FOUNDATION OF CUNY",,"230 WEST 41ST STREET",,"NEW YORK","NY","10036",,,,,,,"131988190","2124178601",,,,"2011-07-28T15:03:31-0500","TALIN SPENJIAN",,,,,11918,10598,0,1260,11858,38,11896,11182,0,,"2F2G2L2M2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728145245P030102376673007","2010-04-01","2011-03-31","2",,,,,,,,,,,,"ASSOCIATED GLOBAL SYSTEMS, INC.","519","2008-04-01","ASSOCIATED GLOBAL SYSTEMS, INC.",,,"3333 NEW HYDE PARK ROAD",,"NEW HYDE PARK","NY","11042",,,,,,,,,,,,,,,,,,"131873046","5166278910","481000","MICHAEL OCCHICONE",,"3333 NEW HYDE PARK ROAD",,"NEW HYDE PARK","NY","11042",,,,,,,"131873046",,,,,"2011-07-27T05:28:15-0500","MICHAEL OCCHICONE","2011-07-27T05:28:15-0500","NORMAN FREEMAN",,,244,253,,,253,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728153935P040105229201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DB INDUSTRIES, INC. EMPLOYEE BENEFIT PLAN","501","1993-04-01","DB INDUSTRIES, INC.",,,"3833 SALA WAY",,"RED WING","MN","550665005",,,,,,,,,,,,,,,,,,"411228611","6513388282","339900","DB INDUSTRIES, INC.",,"3833 SALA WAY",,"RED WING","MN","550665005",,,,,,,"411228611","6513388282",,,,"2011-07-28T15:39:09-0500","SCOTT LUTJEN",,,,,349,400,7,0,407,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728114450P040105069585001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"THE PAL-VAL, MD'S P.S.C. RETIREMENT PLAN","001","2000-07-01","PAL-VAL, MDS P.S.C.",,,"YAGRUMO G-4, CAPARRA HILLS",,"GUAYNABO","PR","00968",,,,,,,"YAGRUMO G-4, CAPARRA HILLS",,"GUAYNABO","PR","00968",,,,,,,"660580610","7877431415","621111","PAL-VAL, MDS P.S.C.",,"YAGRUMO G-4, CAPARRA HILLS",,"GUAYNABO","PR","00968",,,,,,,"660580610","7877431415",,,,"2011-07-28T11:27:45-0500","MIGUEL PALACIOS","2011-07-28T11:27:45-0500","MIGUEL PALACIOS",,,0,0,0,0,0,0,0,0,0,,"2B3C",,"0","1","1","0","0","1","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728124400P040105108993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JACKSON PAPER COMPANY, INC. FLEXIBLE BENEFITS CAFETERIA PLAN","501","1990-07-01","JACKSON PAPER COMPANY,INC.",,,"4400 C MANGUM DR.",,"FLOWOOD","MS","39232",,,,,,,,,,,,,,,,,,"640180680","6013520837","423990","JACKSON PAPER COMPANY,INC.",,"4400 C MANGUM DR.",,"FLOWOOD","MS","39232",,,,,,,"640180680","6013520837",,,,"2011-07-28T12:43:46-0500","BRENDA BERNHARD","2011-07-28T12:43:46-0500","BRENDA BERNHARD",,,186,159,,,159,,,,,,,"4A4D4E","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728130441P030102304705001","2009-12-31","2010-12-30","2",,"0","0","0","0","0","0","0","0","0",,"EL DIA, INC. RETIREMENT SAVINGS PLAN FOR UNION EMPLOYEES","005","2005-09-30","EL DIA, INC.",,,"PO BOX 9067512",,"SAN JUAN","PR","009067512",,,,,,,,,,,,,,,,,,"660274149","7876418000","511110","EL DIA, INC.",,"PO BOX 9067512",,"SAN JUAN","PR","009067512",,,,,,,"660274149","7876418000",,,,"2011-07-28T12:59:29-0500","JORGE MERCADO RUIZ","2011-07-28T12:59:29-0500","JORGE MERCADO RUIZ",,,506,374,24,73,471,0,471,468,1,,"2E2J3C",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728123345P040105103489001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"LUFTHANSA GERMAN AIRLINES PENSION PLAN FOR UNITED STATES EMPLOYEES","333","1956-06-01","LUFTHANSA GERMAN AIRLINES",,,"1640 HEMPSTEAD TURNPIKE",,"EAST MEADOW","NY","115541040",,,,,,,,,,,,,,,,,,"131789847","5162969200","481000","LUFTHANSA GERMAN AIRLINES",,"1640 HEMPSTEAD TURNPIKE",,"EAST MEADOW","NY","115541040",,,,,,,"131789847","5162969200",,,,"2011-07-28T12:25:38-0500","RUTH ANN BAKER",,,,,2548,733,975,694,2402,93,2495,,0,,"1A1G3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728120306P040474278752001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"PRIMO NOVUS INC. 401K PLAN","001","2009-11-26","PRIMO NOVUS INC.",,,"320 E. CENTER ST.",,"TROY","IL","62294",,,,,,,,,,,,,,,,,,"271374910","6186677202","811110","PRIMO NOVUS INC.",,"320 E. CENTER ST.",,"TROY","IL","62294",,,,,,,"271374910","6186677202",,,,"2011-07-28T12:02:14-0500","C. MATTHEW HUDSON",,,,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728150435P040105204369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NETFLIX, INC. HEALTH AND WELFARE PLAN","501","1999-01-01","NETFLIX, INC.",,,"100 WINCHESTER CIRCLE",,"LOS GATOS","CA","95032",,,,,,,,,,,,,,,,,,"770467272","4085403700","532230","NETFLIX, INC.",,"100 WINCHESTER CIRCLE",,"LOS GATOS","CA","95032",,,,,,,"770467272","4085403700",,,,"2011-07-28T15:04:12-0500","LINDSAY CHILDERS",,,,,2721,2418,42,0,2460,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728152333P040474853344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORPORATE BENEFIT SOLUTIONS INC. PROFIT SHARING PLAN","001","1993-01-01","CORPORATE BENEFIT SOLUTIONS, INC.",,,"1225 JOHNSON FERRY ROAD SUITE 530",,"MARIETTA","GA","30068",,,,,,,,,,,,,,,,,,"582080526","7709713290","524290","CORPORATE BENEFIT SOLUTIONS, INC.",,"1225 JOHNSON FERRY ROAD SUITE 530",,"MARIETTA","GA","30068",,,,,,,"582080526","7709713290",,,,"2011-07-28T15:22:54-0500","JAMES TYGART FOR CORPORATE BEN.SOL.",,,,,4,4,0,0,4,0,4,4,0,,"2E2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728150102P030014997922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CROSSPOINTE INSURANCE & FINANCIAL SERVICES 401(K) PLAN","001","2009-01-15","CROSSPOINTE INS.& FINANCIAL SVCS",,,"1101 N ROYAL AVE STE A",,"EVANSVILLE","IN","47715",,,,,,,,,,,,,,,,,,"261655885","8124017556","524210","CROSSPOINTE INS.& FINANCIAL SVCS",,"1101 N ROYAL AVE STE A",,"EVANSVILLE","IN","47715",,,,,,,"261655885","8124017556",,,,"2011-07-28T15:00:24-0500","JOSHUA MUSHLOCK",,,,,5,8,0,0,8,0,8,4,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728160009P030479200880006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NORBERTO J. MARTINEZ, MD PROFIT SHARING PLAN","003","1995-01-01","NORBERTO J. MARTINEZ, M.D.",,,"2504 WASHINGTON STREET, SUITE 603",,"WAUKEGAN","IL","60085",,,,,,,,,,,,,,,,,,"362778460","8476620455","621111","NORBERTO J. MARTINEZ, M.D.",,"2504 WASHINGTON STREET, SUITE 603",,"WAUKEGAN","IL","60085",,,,,,,"362778460","8476620455",,,,"2011-07-28T16:48:26-0500","NORBERTO J MARTINEZ, M.D.",,,,,3,3,0,1,4,0,4,4,,,"2E2F2J2K2R3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728114513P040105069793010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PERSOLITE PRODUCTS, INC. PERSONNEL PROFIT SHARING TRUST","001","1989-01-01","PERSOLITE PRODUCTS, INC PERSONAL PROFIT SHARING TRUST",,,"PO BOX 505",,"FLORENCE","CO","81226",,,,,,,,,,,,,,,,,,"840381246","3035723222","327900","PERSOLITE PRODUCTS, INC PERSONAL PROFIT SHARING TRUST",,"PO BOX 505",,"FLORENCE","CO","81226",,,,,,,"840381246","3035723222",,,,"2011-05-18T18:24:41-0500","LORI L. SODEN","2011-05-18T18:24:51-0500","MICHAEL STEINER",,,5,5,0,0,5,0,5,5,,,"2E2G",,,"1",,,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728121042P040033025639001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MESSER CONSTRUCTION CO. FLEXIBLE COMPENSATION PLAN","505","1987-04-01","MESSER CONSTRUCTION CO.",,,"5158 FISHWICK DRIVE",,"CINCINNATI","OH","45216",,,,,,,,,,,,,,,,,,"310740877","5132421541","236200","MESSER CONSTRUCTION CO.",,"5158 FISHWICK DRIVE",,"CINCINNATI","OH","45216",,,,,,,"310740877","5132421541",,,,"2011-07-28T12:09:53-0500","WANDA L. WALLACE","2011-07-28T12:09:53-0500","WANDA L. WALLACE",,,164,194,0,0,194,,,,,,,"4A4D4E4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728121050P030102272465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"E G I MECHANICAL, INC. 401(K) PROFIT SHARING PLAN","001","2005-01-01","E G I MECHANICAL, INC.",,,"1000 E PEARL STREET","P.O. BOX 65","SEYMOUR","WI","54165",,,,,,,,,,,,,,,,,,"391824626","9208331070","332900","E G I MECHANICAL, INC.",,"1000 E PEARL STREET","P.O. BOX 65","SEYMOUR","WI","54165",,,,,,,"391824626","9208331070",,,,"2011-07-28T12:10:46-0500","JOSEPH PUES","2011-07-28T12:10:46-0500","JOSEPH PUES",,,9,7,0,2,9,0,9,9,0,,"2E2G2J3D2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728120428P030014980402001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONTEREY MUSHROOMS, INC.","501","2010-01-01","MONTEREY MUSHROOMS, INC.",,,"642 HALE AVE",,"MORGAN HILL","CA","950380818",,,,,,,,,,,,,,,,,,"770185497","4088251012","111210","MONTEREY MUSHROOMS, INC.",,"642 HALE AVE",,"MORGAN HILL","CA","950380818",,,,,,,"770185497","4088251012",,,,"2011-07-28T12:03:28-0500","CARRIE COLLINS",,,,,130,157,,,157,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728160404P040105248529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMHERST H. WILDER FOUNDATION WELFARE PLAN","530","1998-01-01","AMHERST H. WILDER FOUNDATION",,,"451 LEXINGTON PARKWAY NORTH",,"ST. PAUL","MN","55104",,,,,,,,,,,,,,,,,,"410693889","6512802425","624100","AMHERST H. WILDER FOUNDATION",,"451 LEXINGTON PARKWAY NORTH",,"ST. PAUL","MN","55104",,,,,,,"410693889","6512802425",,,,"2011-07-28T16:03:39-0500","JENNIFER HAWKINS",,,,,506,366,61,0,427,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728130907P030014985954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOLDER AND FEHRENBACH","001","2001-01-01","HOLDER AND FEHRENBACH",,,"12 NORTH 3RD ST","PO BOX 757","LAFAYETTE","IN","47902",,,,,,,"12 NORTH 3RD ST","PO BOX 757","LAFAYETTE","IN","47902",,,,,,,"300535262","7657421124","541110","HOLDER AND FEHRENBACH",,"12 NORTH 3RD ST","PO BOX 757","LAFAYETTE","IN","47902",,,,,,,"300535262","7657421124",,,,"2011-07-28T12:59:46-0500","CAROLYN HOLDER",,,,,6,6,0,0,6,,6,6,0,,"2F2E2G2J3D2R2T",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728131753P040105133697001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SKYLINE DISPLAYS BAY AREA RETIREMENT PLAN","001","2003-01-01","SKYLINE DISPLAYS BAY AREA, INC.",,,"44111 FREMONT BLVD.",,"FREMONT","CA","94538",,,,,,,,,,,,,,,,,,"770231640","5104909900","541800","SKYLINE DISPLAYS BAY AREA, INC.",,"44111 FREMONT BLVD.",,"FREMONT","CA","94538",,,,,,,"770231640","5104909900",,,,"2011-07-28T12:36:00-0500","LORRAINE STEWART",,,,,22,17,0,3,20,0,20,12,0,,"2E2F2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728140013P040105163665004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"REPRODUCTIVE ENDOCRINOLOGY PROFIT SHARING","001","1993-01-01","REPRODUCTIVE ENDOCRINOLOGY ASSOC S",,,"340 W MILLER",,"SPRINGFIELD","IL","62702",,,,,,,,,,,,,,,,,,"371293190","2175234700","621111","REPRODUCTIVE ENDOCRINOLOGY ASSOC S",,"340 W MILLER",,"SPRINGFIELD","IL","62702",,,,,,,"371293190","2175234700",,,,"2011-07-28T14:48:17-0500","PHILLIP C. GALLE",,,,,12,12,0,0,12,0,12,12,,,"2R2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728134753P030102333473001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MOTION PICTURE AND TELEVISION FUND GROUP TERM LIFE INSURANCE","504","1977-05-01","MOTION PICTURE AND TELEVISION FUND",,,"23388 MULHOLLAND DRIVE",,"WOODLAND HILLS","CA","91364",,,,,,,,,,,,,,,,,,"951652916","8188761389","623000","MOTION PICTURE AND TELEVISION FUND",,"23388 MULHOLLAND DRIVE",,"WOODLAND HILLS","CA","91364",,,,,,,"951652916","8188761389",,,,"2011-07-28T13:39:27-0500","NANCY RUBIN",,,,,689,0,0,0,0,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728142922P030478962480001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DR MUBASHAR CHUGHTAI PENSION PLAN","001","1987-01-01","MUBASHAR CHUGHTAI",,,"424 GRANT STREET",,"DUQUESNE","PA","151101011",,,,,,,"424 GRANT STREET",,"DUQUESNE","PA","151101011",,,,,,,"251524586","4124694100","621111","MUBASHAR CHUGHTAI",,"424 GRANT STREET",,"DUQUESNE","PA","151101011",,,,,,,"251524586","4124694100",,,,"2011-07-13T10:40:16-0500","MUBASHAR CHUGHTAI","2011-07-13T10:40:19-0500","MUBASHAR CHUGHTAI",,,2,0,1,0,1,0,1,1,0,,"2E",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728161426P040105255281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE HOME DEPOT FUTUREBUILDER","001","1988-01-01","THE HOME DEPOT, INC.",,,"2455 PACES FERRY ROAD, NW",,"ATLANTA","GA","303394024",,,,,,,,,,,,,,,,,,"953261426","7704338211","444110","ADMINSTRATIVE COMMITTEE OF THE HOME DEPOT FUTUREBUILDER",,"2455 PACES FERRY ROAD, NW",,"ATLANTA","GA","303394024",,,,,,,"953261426","7704338211",,,,"2011-07-28T16:14:14-0500","RICHARD JOHNSON","2011-07-28T16:14:14-0500","RICHARD JOHNSON",,,308488,282471,0,29371,311842,1115,312957,185524,27713,,"2F2G2J2K2O2R2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728131818P040015520450001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NAVAL ACADEMY ATHLETIC ASSOCIATION DEFINED CONTRIBUTION RETIREMENT PLAN","002","1981-01-01","NAVAL ACADEMY ATHLETIC ASSOCIATION","U.S. NAVAL ACADEMY",,"566 BROWNSON ROAD",,"ANNAPOLIS","MD","21402",,,,,,,,,,,,,,,,,,"520613669","4102932700","813000","NAVAL ACADEMY ATHLETIC ASSOCIATION",,"566 BROWNSON ROAD",,"ANNAPOLIS","MD","21402",,,,,,,"520613669","4102932700",,,,"2011-07-28T13:18:14-0500","KARLENE DURISKO","2011-07-28T13:18:14-0500","KARLENE DURISKO",,,331,264,0,81,345,0,345,312,,,"2L2G",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728144952P030102375201001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"KAISER ALUMINUM HOURLY SAVINGS AND INVESTMENT PLAN","057","1989-01-01","KAISER ALUMINUM FABRICATED PRODUCTS LLC",,,"27422 PORTOLA PARKWAY, SUITE 200",,"FOOTHILL RANCH","CA","926102831",,,,,,,"27422 PORTOLA PARKWAY, SUITE 200",,"FOOTHILL RANCH","CA","926102831",,,,,,,"562553181","9496141740","331310","KAISER ALUMINUM FABRICATED PRODUCTS LLC",,"27422 PORTOLA PARKWAY, SUITE 200",,"FOOTHILL RANCH","CA","926102831",,,,,,,"562553181","9496141740",,,,"2011-07-28T14:47:08-0500","STEVE BROWN",,,,,2033,2067,4,298,2369,20,2389,1691,8,,"2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728145827P030479039936001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREATER NEW YORK GASTROENTERLOGY, PC DEFINED BENEFITS PLAN","001","2006-01-01","GREATER NEW YORK GASTROENTEROLOGY, PC",,,"137 5TH AVE 7TH FLOOR",,"NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"200867429","2122532118","621111","GREATER NEW YORK GASTROENTEROLOGY, PC",,"137 5TH AVE 7TH FLOOR",,"NEW YORK","NY","10010",,,,,,,"200867429","2122532118",,,,"2011-07-28T14:58:24-0500","HON MING ENG","2011-07-28T14:58:24-0500","HON MING ENG",,,3,1,0,2,3,0,3,,0,,"1A3D",,,"1",,,,"1",,,"1",,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728130041P040474427872012","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VILLAGE REALTY AND MANAGEMENT SERVICES INC 401K PLAN","001","1995-07-01","VILLAGE REALTY AND MANAGEMENT SERVICES, INC",,,"PO BOX 1807",,"NAGS HEAD","NC","27959",,,,,,,,,,,,,,,,,,"561830261","2524802224","531310","VILLAGE REALTY AND MANAGEMENT SERVICES INC",,"PO BOX 1807",,"NAGS HEAD","NC","27959",,,,,,,"561830261","2524802224",,,,"2011-07-28T10:16:03-0500","DOROTHY H FULLER",,,,,132,131,,1,132,,132,76,1,,"3H2K2J2G2F2E",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728140444P040105165793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM HANSHAW, M.D., P.C. DEFINED BENEFIT PENSION PLAN","003","2002-01-01","WILLIAM HANSHAW, M.D., P.C.",,,"903 VERMONT ST",,"QUINCY","IL","623013049",,,,,,,,,,,,,,,,,,"371071921","2172280090","621111","WILLIAM HANSHAW, M.D., P.C.",,"903 VERMONT ST",,"QUINCY","IL","623013049",,,,,,,"371071921","2172280090",,,,"2011-07-28T14:04:40-0500","WILLIAM HANSHAW, M.D.",,,,,4,3,0,1,4,0,4,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729091809P040033248039001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"JOHN C. BROWN & SONS, INC. 401(K) PLAN","001","1989-07-01","JOHN BROWN & SONS, INC.",,,"14 BANDB LANE",,"WEARE","NH","03281",,,,,,,"14 BANDB LANE",,"WEARE","NH","03281",,,,,,,"020307086","6035297975","113310","JOHN BROWN & SONS, INC.",,"14 BANDB LANE",,"WEARE","NH","03281",,,,,,,"020307086","6035297975",,,,"2011-07-29T09:17:48-0500","CARTER BROWN",,,,,48,31,0,15,46,0,46,46,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729091811P040105688897009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STEELTEK INC RETIREMENT PLAN","001","1994-02-28","STEELTEK, INC.",,,"4141 S JACKSON",,"TULSA","OK","741077017",,,,,,,"4141 S JACKSON",,"TULSA","OK","741077017",,,,,,,"731282606","9184464001","332900","STEELTEK, INC.",,"4141 S JACKSON",,"TULSA","OK","741077017",,,,,,,"731282606","9184464001",,,,"2011-07-26T04:20:19-0500","GARY L PETTUS",,,,,10,7,3,,10,,10,7,,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729094508P030015085938009","2010-04-01","2011-03-31","2",,,,,,,,,,,,"SEAL RITE DOOR INC","501","2006-04-01","S R DOOR INC.","SEAL-RITE DOOR INC.",,"P.O. BOX 1414, 36 SHACKELFORD ROAD",,"PATASKALA","OH","43062",,,,,,,,,,,,,,,,,,"311339442","8004777471","339900","S R DOOR INC.",,"P.O. BOX 1414, 36 SHACKELFORD ROAD",,"PATASKALA","OH","43062",,,,,,,"311339442","8004777471",,,,"2011-07-29T10:42:11-0500","SCOTT A MILLER",,,,,130,118,,,118,,118,,,,,"4B4D4E4A","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729111703P040105760417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NATIONAL BANK OF TENNESSEE 401(K) RETIREMENT PLAN","001","1986-06-01","NATIONAL BANK OF TENNESSEE",,,"262 E. BROADWAY",,"NEWPORT","TN","37821",,,,,,,,,,,,,,,,,,"620588741","4236256225","522110","NATIONAL BANK OF TENNESSEE",,"262 E. BROADWAY",,"NEWPORT","TN","37821",,,,,,,"620588741","4236256225",,,,"2011-07-29T11:15:50-0500","KEITH KETTERMAN",,,,,142,129,0,7,136,0,136,136,5,,"2E2F2G2J2T3D3H2S",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729100540P040105715505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST STATE BANCSHARES, INC. EMPLOYEES FLEXIBLE BENEFIT PLAN","501","2006-01-01","FIRST STATE BANCSHARES, INC.",,"C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","675301167",,,,,,,,,,,,,,,,,,"431345560","6207938473","522110","FIRST STATE BANCSHARES, INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","675301167",,,,,,,"431345560","6207938473",,,,"2011-07-29T09:53:26-0500","KELLY LEGAN",,,,,434,416,0,0,416,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728170548P030102454129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"POWERS BROWN ARCHITECTURE HEALTH PLAN","501","2006-01-01","POWERS BROWN ARCHITECTURE MANAGEMENT LLC",,,"1314 TEXAS AVENUE","2ND FLOOR","HOUSTON","TX","77002",,,,,,,"1314 TEXAS AVENUE","2ND FLOOR","HOUSTON","TX","77002",,,,,,,"208109797","7132240456","541310","POWERS BROWN ARCHITECTURE MANAGEMENT LLC",,"1314 TEXAS AVENUE","2ND FLOOR","HOUSTON","TX","77002",,,,,,,"208109797","7132240456","N/A",,,"2011-07-28T13:37:01-0500","JOE POWERS",,,,,34,29,0,0,29,0,29,0,0,,,"4A","1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728201602P040105384225001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"WESTERN INSURANCE HOLDINGS, INC. NETWORK-ONLY HMO REIMBURSEMENT PLAN","550","2007-01-01","WESTERN INSURANCE HOLDINGS, INC.",,,"11455 EL CAMINO REAL",,"SAN DIEGO","CA","92130",,,,,,,,,,,,,,,,,,"952890041","8583502400","524150","WESTERN INSURANCE HOLDINGS, INC.",,"11455 EL CAMINO REAL",,"SAN DIEGO","CA","92130",,,,,,,"952890041","8583502400",,,,"2011-07-28T18:24:20-0500","VERONICA MEYERS",,,,,433,0,0,0,0,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729104230P040477136704001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"LEGEND NATURAL GAS LLC 401(K) PLAN","001","2002-01-01","LEGEND NATURAL GAS LLC",,,"410 W GRAND PARKWAY SOUTH,","SUITE 400","KATY","TX","77494",,,,,,,"410 W GRAND PARKWAY SOUTH,","SUITE 400","KATY","TX","77494",,,,,,,"271324734","2816445900","211110","LEGEND NATURAL GAS LLC",,"410 W GRAND PARKWAY SOUTH,","SUITE 400","KATY","TX","77494",,,,,,,"271324734","2816445900","LEGEND NATURAL GAS LLC","271324734","001","2011-07-29T10:42:17-0500","MICHAEL BECCI",,,,,57,42,0,14,56,0,56,47,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729081507P040105655537004","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"THESTREET.COM HEALTH AND WELFARE PLAN","501","2004-01-01","THESTREET.COM",,,"14 WALL STREET, 15TH FLOOR",,"NEW YORK","NY","10005",,,,,,,,,,,,,,,,,,"061515824","2123215448","523900","THESTREET.COM",,"14 WALL STREET, 15TH FLOOR",,"NEW YORK","NY","10005",,,,,,,"061515824","2123215448",,,,"2011-07-29T09:13:56-0500","TOM ETERGINO","2011-07-29T09:14:07-0500","TOM ETERGINO",,,284,294,,,294,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","9",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728191601P040475375344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NELCO EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","002","2003-05-01","THE NELSON COMPANY, INC. OF FAIRFIELD, IOWA",,,"1200 W. STONE AVENUE","P.O. BOX 395","FAIRFIELD","IA","52556",,,,,,,"1200 W. STONE AVENUE","P.O. BOX 395","FAIRFIELD","IA","52556",,,,,,,"421068264","6414726583","332700","THE NELSON COMPANY, INC. OF FAIRFIELD, IOWA",,"1200 W. STONE AVENUE","P.O. BOX 395","FAIRFIELD","IA","52556",,,,,,,"421068264","6414726583",,,,"2011-07-28T19:13:29-0500","BRADLEY VAN HORN",,,,,54,57,0,0,57,0,57,57,3,,"2I2P2Q",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728202532P040105387841001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"RETFUNONE, INC. 401(K) PLAN","001","2007-01-04","RETFUNONE, INC.",,,"8261 HAMPTON ARBOR CIR",,"CHESTERFIELD","VA","238321973",,,,,,,,,,,,,,,,,,"208165506","8046397797","624100","RETFUNONE, INC.",,"8261 HAMPTON ARBOR CIR",,"CHESTERFIELD","VA","238321973",,,,,,,"208165506","8046397797",,,,"2011-07-27T19:49:04-0500","KEVIN O'SHEA","2011-07-27T19:49:04-0500","KEVIN O'SHEA",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729083311P030102815649001","2009-01-01","2009-12-31","2",,"0","0","1","0","0","0","0","1","0",,"FISCHBEIN LLC LONG TERM DISABILITY INCOME PLAN","520","2006-01-01","FISCHBEIN LLC",,,"151 WALKER ROAD",,"STATESVILLE","NC","28625",,,,,,,,,,,,,,,,,,"870752826","7048384608","333900","FISCHBEIN LLC",,"151 WALKER ROAD",,"STATESVILLE","NC","28625",,,,,,,"870752826","7048384608",,,,"2011-07-29T08:25:24-0500","MARTHA HEARN",,,,,134,126,0,0,126,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729102411P030102891921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ATLAS COPCO GROUP HEALTH & LONG TERM DISABILITY PLAN","501","1951-01-01","ATLAS COPCO NORTH AMERICA INC.",,,"7 CAMPUS DRIVE","SUITE 200","PARSIPPANY","NJ","07054",,,,,,,,,,,,,,,,,,"221669012","9733973400","333200","ATLAS COPCO NORTH AMERICA INC.",,"7 CAMPUS DRIVE","SUITE 200","PARSIPPANY","NJ","07054",,,,,,,"221669012","9733973400",,,,"2011-07-29T10:23:13-0500","RANDY SCHRADER",,,,,3200,3100,500,0,3600,,,,,,,"4A4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729102504P030481386272001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ENDURANT ENERGY SYSTEMS 401(K) PLAN","001","2008-10-01","ENDURANT ENERGY SYSTEMS, LLC",,,"ONE EAST OAK HILL DRIVE","SUITE 304","WESTMONT","IL","60559",,,,,,,"ONE EAST OAK HILL DRIVE","SUITE 304","WESTMONT","IL","60559",,,,,,,"204896812","6303235753","811310","ENDURANT ENERGY SYSTEMS, LLC",,"ONE EAST OAK HILL DRIVE","SUITE 304","WESTMONT","IL","60559",,,,,,,"204896812","6303235753","ENDURANT ENERGY SYSTEMS, LLC","204896812","001","2011-07-29T10:24:34-0500","KIRK MOLZAHN",,,,,15,10,0,1,11,0,11,4,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729090246P030102837329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J E M WOODWORKING AND CABINETS 401(K) PROFIT SHARING PLAN & TRUST","002","2007-01-01","J E M WOODWORKING AND CABINETS",,,"250 FALLS ROAD",,"HUDSON","NY","12534",,,,,,,,,,,,,,,,,,"208640567","5188285361","337000","J E M WOODWORKING AND CABINETS",,"250 FALLS ROAD",,"HUDSON","NY","12534",,,,,,,"208640567","5188285361",,,,"2011-07-29T09:02:44-0500","J E M WOODWORKING AND CABINETS",,,,,3,26,0,0,26,0,26,16,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728155058P040105237713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SERVICE MANAGEMENT GROUP, INC. 401(K) PLAN","001","1999-01-01","SERVICE MANAGEMENT GROUP, INC.",,,"1737 MCGEE",,"KANSAS CITY","MO","64108",,,,,,,,,,,,,,,,,,"431910102","8164484500","541800","SERVICE MANAGEMENT GROUP, INC.",,"1737 MCGEE",,"KANSAS CITY","MO","64108",,,,,,,"431910102","8164484500",,,,"2011-07-28T15:49:03-0500","MARY WIDMER","2011-07-28T14:57:43-0500","MARY WIDMER",,,185,162,3,26,191,0,191,181,18,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728221827P030102589377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CWT LLC 401K PLAN","001","2006-03-01","CLARITY WATER TECHNOLOGIES LLC",,,"48 MAPLES ROAD",,"MIDDLETOWN","NY","10940",,,,,,,"48 MAPLES ROAD",,"MIDDLETOWN","NY","10940",,,,,,,"200002164","2016978097","325900","CLARITY WATER TECHNOLOGIES LLC",,"48 MAPLES ROAD",,"MIDDLETOWN","NY","10940",,,,,,,"200002164","2016978097",,,,"2011-07-28T22:18:26-0500","GREG FRAZIER",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729084553P030481128768001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TARA S SAINI MDPC","001","1978-01-01","TARA S SAINI","PHYSICIAN SERVICES","TARA S SAINI","86 WASHINGTON AVE S",,"LAWRENCE","NY","11559",,,,,,,"86 WASHINGTON AVE S",,"LAWRENCE","NY","11559",,,,,,,"112225735","5168507971","621111","TARA S SAINI","TARA S SAINI","86 WASHINGTON AVE S",,"LAWRENCE","NY","11559",,,,,,,"112225735","5168507971","TARA S SAINI","112225735","001","2011-07-29T08:41:59-0500","TARA SAINI",,,,,2,2,0,0,2,0,2,2,0,,"2C",,,,"0","1",,,"0","1","0",,"0","0",,,,"0",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729085655P030102833953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRIDGESTONE APM HEALTH & WELFARE BENEFIT PLAN","501","1994-01-01","BRIDGESTONE APM",,,"P.O. BOX 1505",,"FINDLAY","OH","458391505",,,,,,,,,,,,,,,,,,"341559919","4194239552","423100","BRIDGESTONE APM",,"P.O. BOX 1505",,"FINDLAY","OH","458391505",,,,,,,"341559919","4194239552",,,,"2011-07-29T08:56:17-0500","TODD M. HOLE","2011-07-29T08:56:17-0500","TETSUO SHIMIZU",,,752,736,8,0,744,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110729101333P030102884033001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"TOOLING UNIVERSITY LLC 401(K) PLAN","001","2006-03-17","TOOLING UNIVERSITY LLC",,,"15700 SOUTH WATERLOO RD",,"CLEVELAND","OH","44110",,,,,,,"15700 SOUTH WATERLOO RD",,"CLEVELAND","OH","44110",,,,,,,"043592513","2167066820","611000","TOOLING UNIVERSITY LLC",,"15700 SOUTH WATERLOO RD",,"CLEVELAND","OH","44110",,,,,,,"043592513","2167066820",,,,"2011-07-29T10:13:14-0500","JAMES SPILOS",,,,,7,8,0,0,8,0,8,4,0,,"2E2F2G2J2T3D3F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729091827P040105689169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERCITY HOME CARE WELFARE BENEFITS PLAN","501","2008-01-01","INTERCITY HOME CARE",,,"11 DARTMOUTH STREET",,"MALDEN","MA","02148",,,,,,,"SAME",,"MALDEN","MA","02148",,,,,,,"042591665","7813216300","621610","INTERCITY HOME CARE",,"11 DARTMOUTH STREET",,"MALDEN","MA","02148",,,,,,,"042591665","7813216300",,,,"2011-07-29T09:17:17-0500","JONATHAN MORIN",,,,,323,272,0,0,272,,,,,,,"4A4B4D4F4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729091844P040002977556001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"401(K) PLAN OF WALL STREET MISSION DBA GOODWILL INDUSTRIES OF SIOUX CITY","002","1989-01-01","WALL STREET MISSION D/B/A GOODWILL INDUSTRIES",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"420727509","6207938473","624310","WALL STREET MISSION D/B/A GOODWILL INDUSTRIES",,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,"420727509","6207938473",,,,"2011-07-29T09:16:37-0500","HARLIN VERMEER",,,,,499,278,18,221,517,0,517,415,0,,"2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729092350P030015082770001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BROKEN ARROW COMMUNICATIONS 401(K) PLAN","001","2006-01-01","BROKEN ARROW COMMUNICATIONS, INC.",,,"8316 CORONA LOOP NE",,"ALBUQUERQUE","NM","87113",,,,,,,,,,,,,,,,,,"201285290","5058772100","812990","BROKEN ARROW COMMUNICATIONS, INC.",,"8316 CORONA LOOP NE",,"ALBUQUERQUE","NM","87113",,,,,,,"201285290","5058772100",,,,"2011-07-29T09:22:51-0500","MARK CORDOVA",,,,,53,32,0,17,49,0,49,47,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728161112P030102429953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHELPS DUNBAR GROUP HEALTH PLAN","503","1979-10-01","PHELPS DUNBAR LLP",,,"365 CANAL STREET","SUITE 2000","NEW ORLEANS","LA","70130",,,,,,,"365 CANAL STREET","SUITE 2000","NEW ORLEANS","LA","70130",,,,,,,"720358621","5045661311","541110","PHELPS DUNBAR LLP",,"365 CANAL STREET","SUITE 2000","NEW ORLEANS","LA","70130",,,,,,,"720358621","5045661311",,,,"2011-07-28T16:03:42-0500","THOMAS MITCHELL",,,,,476,459,30,0,489,,489,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728183259P030102502689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OLYMPIC COMMUNITY ACTION PROGRAMS HEALTH AND WELFARE PLAN","501","1976-01-01","OLYMPIC COMMUNITY ACTION PROGRAMS",,,"P.O. BOX 1540",,"PORT TOWNSEND","WA","98368",,,,,,,"803 WEST PARK AVENUE",,"PORT TOWNSEND","WA","98368",,,,,,,"910814319","3603852571","624200","OLYMPIC COMMUNITY ACTION PROGRAMS",,"P.O. BOX 1540",,"PORT TOWNSEND","WA","98368",,,,,,,"910814319","3603852571",,,,"2011-07-28T18:31:29-0500","LES RUBIN",,,,,108,111,0,0,111,,111,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729111442P040105758561001","2010-09-02","2011-04-19","2",,"1","1","1","1","0","0","0","0","0",,"ADVENTURIZIT, INC. 401K PLAN","001","2010-09-02","ADVENTURIZIT, INC.",,,"276 OLETA MILL TRAIL",,"HENDERSONVILLE","NC","28792",,,,,,,,,,,,,,,,,,"273372602","7044512167","541600","ADVENTURIZIT, INC.",,"276 OLETA MILL TRAIL",,"HENDERSONVILLE","NC","28792",,,,,,,"273372602","7044512167",,,,"2011-07-29T11:10:38-0500","MARK TAYLOR","2011-07-29T11:10:38-0500","MARK TAYLOR",,,0,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729113434P040105772817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GALLO VINEYARDS, INC. FARM WORKERS 401(K) SAVINGS PLAN","002","2000-01-01","GALLO VINEYARDS, INC.",,,"P.O. BOX 1130","600 YOSEMITE BLVD.","MODESTO","CA","953541130",,,,,,,,,,,,,,,,,,"941409660","2093414859","312130","ADMIN COMMITTEE FOR GALLO VINEYARDS FARM WORKERS 401K SAVINGS PLAN",,"600 YOSEMITE BLVD.",,"MODESTO","CA","95354",,,,,,,"776176208","2093414859",,,,"2011-07-26T12:26:31-0500","DOUG VILAS","2011-07-29T11:34:05-0500","ALLEN DOTY",,,117,110,0,0,110,0,110,33,0,,"2E2F2G2J2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110729114535P040477314304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AIMCO TEXAS INJURY BENEFIT PLAN","515","2004-01-01","AIMCO TEXAS INJURY BENEFIT PLAN",,,"AIMCO/ BETHESDA HOLDINGS,INC.","4582 S. ULSTER ST. PKWY, STE. 1100","DENVER","CO","80237",,,,,,,,,,,,,,,,,,"742967629","8882462674","531310","AIMCO TEXAS INJURY BENEFIT PLAN",,"AIMCO/ BETHESDA HOLDINGS,INC.","4582 S. ULSTER ST. PKWY, STE. 1100","DENVER","CO","80237",,,,,,,"742967629","8882462674",,,,"2011-07-29T11:42:31-0500","LISA R. COHN","2011-07-29T11:42:31-0500","LISA R. COHN",,,196,153,0,0,153,,,,,,,"4A4D4E4F4L4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729094751P040033253335001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M2K BENEFITS, INC SECTION 125 CAFETERIA PLAN","504","2006-01-01","M2K BENEFITS, INC.",,,"9119 OTIS AVENUE",,"INDIANAPOLIS","IN","462162027",,,,,,,,,,,,,,,,,,"202070313","3175492000","561300","M2K BENEFITS, INC.",,"9119 OTIS AVENUE",,"INDIANAPOLIS","IN","462162027",,,,,,,"202070313","3175492000",,,,"2011-07-29T09:45:48-0500","DAVID DAY",,,,,258,269,,,269,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729094758P030015086194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VICTOR R HAYES KEOGH RETIREMENT PLAN","001","1980-04-10","VICTOR R HAYES","VICTOR R HAYES COMPANY PLC","SAME","22811 GREATER MACK STE 212",,"ST CLAIR SHORES","MI","48080",,,,,,,"22811 GREATER MACK STE 212",,"ST CLAIR SHORES","MI","48080",,,,,,,"382635930","5867734711","541211","VICTOR R HAYES","SAME","22811 GREATER MACK STE 212",,"ST CLAIR SHORES","MI","48080",,,,,,,"382635930","5867734711",,,,"2011-07-29T09:46:49-0500","VICTOR HAYES",,,,,2,1,1,0,2,0,2,2,0,,"3E2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729094813P040003197459001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SENTAGE CORPORATION MEDICAL PLAN","501","1990-07-01","SENTAGE CORPORATION",,,"5775 WAYZATA BLVD STE 890",,"MINNEAPOLIS","MN","554161235",,,,,,,,,,,,,,,,,,"411641487","9523456327","621510","SENTAGE CORPORATION",,"5775 WAYZATA BLVD SUITE 890",,"MINNEAPOLIS","MN","554161235",,,,,,,"411641487","9523456327",,,,"2011-07-29T09:46:49-0500","DESIREE SULLIVAN",,,,,566,511,0,0,511,,,,,,,"4A4B4D4E4F4H","0","0","0","1","0","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728172115P030479406096001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARCHIE MD INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","ARCHIE MD INC",,,"3600 FAU BLVD","SUITE 201","BOCA RATON","FL","33431",,,,,,,,,,,,,,,,,,"510426884","3059814830","621510","ARCHIE MD INC",,"3600 FAU BLVD","SUITE 201","BOCA RATON","FL","33431",,,,,,,"510426884","3059814830",,,,"2011-07-28T05:21:13-0500","ARCHIE MD INC",,,,,5,7,0,0,7,0,7,7,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729114550P040105779441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OREGON FREEZE DRY 401(K) PLAN","001","1967-06-19","OREGON FREEZE DRY INC",,,"PO BOX 1048",,"ALBANY","OR","97321",,,,,,,,,,,,,,,,,,"431121507","5419266001","339900","OREGON FREEZE DRY INC",,"PO BOX 1048",,"ALBANY","OR","97321",,,,,,,"431121507","5419266001",,,,"2011-07-29T11:45:37-0500","PHILIP UNVERZAGT",,,,,404,333,0,24,357,0,357,279,12,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729103941P030102901841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GUILFORD CHILD DEVELOPMENT MONEY PURCHASE PENSION PLAN","001","1966-01-01","GUILFORD CHILD DEVELOPMENT",,,"1200 ARLINGTON STREET",,"GREENSBORO","NC","27406",,,,,,,,,,,,,,,,,,"560863474","3363787700","813000","GUILFORD CHILD DEVELOPMENT",,"1200 ARLINGTON STREET",,"GREENSBORO","NC","27406",,,,,,,"560863474","3363787700",,,,"2011-07-29T10:38:56-0500","TARA ANDERSON",,,,,356,269,0,118,387,1,388,356,17,,"2C2G2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729104416P030481436544001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHERN PRECISION SPRING CO., INC. 401(K) PROFIT SHARING PLAN","001","1992-09-01","SOUTHERN PRECISION SPRING CO., INC.",,,"2200 OLD STEELE CREEK ROAD",,"CHARLOTTE","NC","28208",,,,,,,"2200 OLD STEELE CREEK ROAD",,"CHARLOTTE","NC","28208",,,,,,,"560637990","7043924393","332610","SOUTHERN PRECISION SPRING CO., INC.",,"2200 OLD STEELE CREEK ROAD",,"CHARLOTTE","NC","28208",,,,,,,"560637990","7043924393",,,,"2011-07-29T10:41:47-0500","THOM DUNCAN",,,,,30,26,0,3,29,0,29,29,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729100249P040003197683001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CREATIVE APPAREL ASSOCIATES 401K PLAN","001","1996-01-01","CREATIVE APPAREL ASSOCIATES",,,"318 AUGUSTA ROAD",,"BELMONT","ME","049523015",,,,,,,,,,,,,,,,,,"010446013","2073425830","315100","CREATIVE APPAREL ASSOCIATES",,"318 AUGUSTA ROAD",,"BELMONT","ME","049523015",,,,,,,"010446013","2073425830",,,,"2011-07-29T10:02:45-0500","SHARON RYBARCZYK",,,,,290,237,0,10,247,0,247,130,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728163359P030479291120001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LUTHER HOSPITAL EMPLOYEE HEALTH PLAN","501","1990-07-01","LUTHER HOSPITAL, MAYO HEALTH SYSTEM",,,"1221 WHIPPLE STREET",,"EAU CLAIRE","WI","547035270",,,,,,,,,,,,,,,,,,"390813418","7158386717","622000","LUTHER HOSPITAL, MAYO HEALTH SYSTEM",,"1221 WHIPPLE STREET",,"EAU CLAIRE","WI","547035270",,,,,,,"390813418","7158386717",,,,"2011-07-28T16:23:43-0500","WILLIAM BROWN",,,,,1436,1475,0,0,1475,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728185530P040015555938001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LAND O LAKES EMPLOYEE ASSISTANCE PROGRAM","556","1991-01-01","LAND O LAKES, INC.",,,"4001 LEXINGTON AVENUE NORTH",,"ARDEN HILLS","MN","551262934",,,,,,,,,,,,,,,,,,"410365145","6514812222","311500","LAND O LAKES, INC.",,"4001 LEXINGTON AVENUE NORTH",,"ARDEN HILLS","MN","551262934",,,,,,,"410365145","6514812222",,,,"2011-06-09T16:19:57-0500","ROBERT C. TOMASCHKO","2011-06-09T16:20:17-0500","ROBERT C. TOMASCHKO",,,7789,7200,,,7200,,7200,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729105856P030481476480001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"THE CELL PHONE STORE 401(K) AND PROFIT SHARING PLAN","001","2000-01-01","WIRELESS COMMUNICATION GROUP DBA THE CELL PHONE ST",,,"1285 BELMONT ST","STE 8","BROCKTON","MA","02301",,,,,,,"1285 BELMONT ST","STE 8","BROCKTON","MA","02301",,,,,,,"043457213","5082307700","443112","WIRELESS COMMUNICATION GROUP DBA THE CELL PHONE ST",,"1285 BELMONT ST","STE 8","BROCKTON","MA","02301",,,,,,,"043457213","5082307700",,,,"2011-07-29T10:58:35-0500","JAMIE AUFIERO",,,,,13,20,0,1,21,0,21,6,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729110337P040477187792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RUSSELL HOSPITAL CORPORATION GROUP LIFE DISABILITY ACCIDENTAL DEATH DISMEMBERMENT DEPENDENT LIFE LONG TERM & SHORT TERM INSURANCE PLAN","540","2007-09-01","RUSSELL HOSPITAL CORPORATION","RUSSELL MEDICAL CENTER",,"PO BOX 939","3316 HIGHWAY 280","ALEXANDER CITY","AL","35010",,,,,,,,,,,,,,,,,,"630385130","2563297100","622000","RUSSELL HOSPITAL CORPORATION",,"PO BOX 939","3316 HIGHWAY 280","ALEXANDER CITY","AL","35010",,,,,,,"630385130","2563297100",,,,"2011-07-29T11:03:37-0500","L.E. PEACE III",,,,,420,417,0,0,417,,,,,,,"4B4F4H","1","0","0","0","1","0","0","0","0","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729110413P040105751633001","2010-07-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"MOUNDVIEW MEMORIAL HOSPITAL & CLINICS EMPLOYEE HEALTH CARE PLAN","504","1991-08-01","MOUNDVIEW MEMORIAL HOSPITAL & CLINICS",,,"402 WEST LAKE STREET PO BOX 40",,"FRIENDSHIP","WI","53934",,,,,,,,,,,,,,,,,,"390944012","6083398371","622000","MOUNDVIEW MEMORIAL HOSPITAL & CLINICS",,"402 WEST LAKE STREET PO BOX 40",,"FRIENDSHIP","WI","53934",,,,,,,"390944012","6083398371",,,,"2011-07-29T11:01:43-0500","JEREMY NORMINGTON",,,,,71,76,0,0,76,,,,,,,"4A","0","0","0","1","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729101423P040003197747001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHRIDGE CAPITAL, INC. 401(K) RETIREMENT SAVINGS PLAN","001","2004-01-01","NORTHRIDGE CAPITAL, LLC",,,"1101 30TH STREET, NW #150",,"WASHINGTON","DC","20007",,,,,,,"1101 30TH STREET, NW #150",,"WASHINGTON","DC","20007",,,,,,,"522037541","2026257890","531120","NORTHRIDGE CAPITAL, LLC",,"1101 30TH STREET, NW #150",,"WASHINGTON","DC","20007",,,,,,,"522037541","2026257890",,,,"2011-07-29T10:13:30-0500","DAVID JACKSON",,,,,8,5,1,1,7,0,7,7,0,,"2E2G2J2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729110010P030102918497010","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"COMPLIANCE PARTNERS LLC 401K PLAN","001","2006-01-01","COMPLIANCE PARTNERS, LLC",,,"1250 SOUTH GROVE AVENUE, SUITE 200",,"BARRINGTON","IL","60010",,,,,,,,,,,,,,,,,,"200470970","2246331378","812990","COMPLIANCE PARTNERS, LLC",,"1250 SOUTH GROVE AVENUE, SUITE 200",,"BARRINGTON","IL","60010",,,,,,,"200470970","2246331378",,,,"2011-07-29T10:51:37-0500","ROBERT MISEYKA",,,,,4,3,0,0,3,0,3,2,,,"2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729111910P040105761521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"S.A. MIRO, INC. 401(K) PROFIT SHARING PLAN","001","1995-06-01","S.A. MIRO, INC.",,,"4582 S. ULSTER ST. PKWY, SUITE 300",,"DENVER","CO","80237",,,,,,,,,,,,,,,,,,"840823892","3037413737","541330","S.A. MIRO, INC.",,"4582 S. ULSTER ST. PKWY, SUITE 300",,"DENVER","CO","80237",,,,,,,"840823892","3037413737",,,,"2011-07-29T11:19:03-0500","DAVID W. LEWIS","2011-07-29T11:19:03-0500","DAVID W. LEWIS",,,66,38,0,28,66,0,66,63,3,,"2E2F2G2J2K2R2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729072840P040015606482001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MORPACE FLEXIBLE BENEFIT PLAN","525","2009-01-01","MORPACE INC.",,,"31700 MIDDLEBELT ROAD, SUITE 200",,"FARMINGTON HILLS","MI","483342375",,,,,,,,,,,,,,,,,,"382953319","2487373209","561900","MORPACE, INC.",,"31700 MIDDLEBELT ROAD, SUITE 200",,"FARMINGTON HILLS","MI","483342375",,,,,,,"382953319","2487373209",,,,"2011-07-29T07:15:24-0500","CHARLES HAFFEY",,,,,121,121,0,0,121,,,,,,,"4A4D4E4F4B4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729074129P030480980992001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADVANCE AUTO PARTS PART-TIME TEAM MEMBER BENEFITS PLAN","510","2003-06-29","ADVANCE STORES COMPANY, INCORPORATED",,,"5008 AIRPORT ROAD",,"ROANOKE","VA","24012",,,,,,,"5008 AIRPORT ROAD",,"ROANOKE","VA","24012",,,,,,,"540118110","5403624911","441300","ADVANCE STORES COMPANY, INCORPORATED",,"5008 AIRPORT ROAD",,"ROANOKE","VA","24012",,,,,,,"540118110","5403624911",,,,"2011-07-28T16:05:02-0500","RICH MOORE",,,,,1019,1167,0,0,1167,0,1167,,,,,"4A4B4E4F","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729094215P030102867473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAZARD MIDDLE MARKET LLC 401K PROFIT SHARING PLAN","001","1986-01-01","LAZARD MIDDLE MARKET LLC",,,"225 SOUTH 6TH STREET, 46TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"261475413","6123390500","561490","LAZARD MIDDLE MARKET LLC",,"225 SOUTH 6TH STREET, 46TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,"261475413","6123390500",,,,"2011-07-29T09:41:29-0500","KYLE PECHA",,,,,128,74,0,48,122,0,122,115,0,,"2A2E2G2J3H2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729094918P030102870897007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GAUNCE FUNERAL DIRECTORS INC.","001","1998-03-01","BRENT E. GAUNCE","GAUNCE FUNERAL DIRECTORS, INC.",,"105 LOCUST STREET",,"CARLISLE","KY","40311",,,,,,,"105 LOCUST",,"CARLISLE","KY","40311",,,,,,,"611321646","8592892271","812210","BRENT E. GAUNCE",,"105 LOCUST STREET",,"CARLISLE","KY","40311",,,,,,,"611321646","8592892271",,,,"2011-07-15T05:37:48-0500","BRENT GAUNCE",,,,,2,1,1,,2,,2,1,,,"2E3B3D",,"1",,,,"1",,,,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728165106P030015007922001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CARRIER MANAGEMENT SYSTEMS 401K PROFIT SHARING PLAN","001","2000-03-01","CARRIER MANAGEMENT SYSTEMS, INC.",,,"500 CHESTNUT STREET","SUITE 500","ABILENE","TX","79602",,,,,,,"500 CHESTNUT STREET","SUITE 500","ABILENE","TX","79602",,,,,,,"752866198","3256775900","541511","CARRIER MANAGEMENT SYSTEMS, INC.",,"500 CHESTNUT STREET","SUITE 500","ABILENE","TX","79602",,,,,,,"752866198","3256775900",,,,"2011-07-28T16:50:32-0500","BRITT BILBERRY",,,,,17,13,,4,17,,17,,,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729104032P040105734817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TAYLOR INVESTMENT COUNSELORS 401K PLAN","001","2004-01-01","TAYLOR INVESTMENT COUNSELORS",,,"50 FEDERAL STREET",,"BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"522398149","6174822222","541990","TAYLOR INVESTMENT COUNSELORS",,"50 FEDERAL STREET",,"BOSTON","MA","02110",,,,,,,"522398149","6174822222",,,,"2011-07-29T10:20:17-0500","KELLIE AIELLO",,,,,11,10,0,2,12,0,12,11,0,,"2E2G2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729104037P030102902721001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"EMPLOYEE BENEFIT PLAN OF ALPHAPOINTE ASSOCIATION FOR THE BLIND","002","1980-01-01","ALPHAPOINTE ASSOCIATION FOR THE BLIND",,,"7501 PROSPECT AVE",,"KANSAS CITY","MO","64132",,,,,,,"7501 PROSPECT AVE",,"KANSAS CITY","MO","64132",,,,,,,"440552486","8162372007","326100","ALPHAPOINTE ASSOCIATION FOR THE BLIND",,"7501 PROSPECT AVE",,"KANSAS CITY","MO","64132",,,,,,,"440552486","8162372007",,,,"2011-07-29T10:40:12-0500","ED PRUSIA",,,,,131,113,0,16,129,1,130,130,9,,"2C2F2G3D",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729093619P040033251591001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"VIPDESK LIFE AND AD&D INSURANCE","501","2000-01-01","VIPDESK.COM, INC.",,,"324 N. FAIRFAX STREET",,"ALEXANDRIA","VA","22153",,,,,,,"324 N. FAIRFAX STREET",,"ALEXANDRIA","VA","22153",,,,,,,"522171036","7038373529","561490","VIPDESK.COM, INC.",,"324 N. FAIRFAX STREET",,"ALEXANDRIA","VA","22153",,,,,,,"522171036","7038373529",,,,"2011-07-29T09:36:06-0500","KARYN SCHNEIDER",,,,,131,198,0,0,198,0,198,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728190043P030015019106003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN T LOCKARD DDS MS INC EMPLOYEES PENSION PLAN AND TRUST","001","1982-11-01","JOHN T LOCKARD, DDS, MS, INC",,,"3200 SOUTH ELM PLACE",,"BROKEN ARROW","OK","740127921",,,,,,,,,,,,,,,,,,"731164028","9184550977","621210","JOHN T LOCKARD DDS MS INC",,"3200 SOUTH ELM PLACE",,"BROKEN ARROW","OK","740127921",,,,,,,"731164028","9184550977",,,,"2011-07-28T09:42:32-0500","JOHN T LOCKARD",,,,,9,9,,,9,,9,9,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728181841P040105331009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PORT BLAKELY TREE FARMS, L.P. LONG TERM DISABILITY","503","2007-01-01","PORT BLAKELY TREE FARMS, L.P.",,,"1325 4TH AVE, 10TH FLOOR",,"SEATTLE","WA","98101",,,,,,,"1325 4TH AVE, 10TH FLOOR",,"SEATTLE","WA","98101",,,,,,,"911289012","2066245810","113210","PORT BLAKELY TREE FARMS, L.P.",,"1325 4TH AVE, 10TH FLOOR",,"SEATTLE","WA","98101",,,,,,,"911289012","2066245810",,,,"2011-06-15T13:10:17-0500","BARB MEYER",,,,,102,100,,,100,,100,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729103516P030102898225001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"BRIDGEWATER PROPERTIES, LLC PROFIT SHARING PLAN","002","2005-01-01","BRIDGEWATER PROPERTIES, LLC",,,"741 HARRY MCCARTY RD.","SUITE 201","BETHLEHEM","GA","30620",,,,,,,,,,,,,,,,,,"020546356","6784252314","531390","BRIDGEWATER PROPERTIES, LLC",,"741 HARRY MCCARTY RD.","SUITE 201","BETHLEHEM","GA","30620",,,,,,,"020546356","6784252314",,,,"2011-07-29T10:35:14-0500","STARKE V. HUDSON","2011-07-29T10:35:14-0500","STARKE V. HUDSON",,,1,0,0,0,0,0,0,0,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729105340P040015622786001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GOULD MEDICAL GROUP, INC. 401(K) PROFIT SHARING PLAN","003","2002-01-01","GOULD MEDICAL GROUP, INC.",,,"600 COFFEE ROAD",,"MODESTO","CA","95355",,,,,,,,,,,,,,,,,,"942151374","2095216097","621111","ADMINISTRATIVE COMMITTEE",,"600 COFFEE ROAD",,"MODESTO","CA","95355",,,,,,,"942151374","2095216097",,,,"2011-07-29T11:53:31-0500","PETER J. TRIOLO, M.D.","2011-07-28T05:02:07-0500","MARTIN F. PRICCO, M.D.",,,339,278,0,51,329,0,329,313,6,,"2E2F2G2J2R3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729083126P030102814209001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FISCHBEIN LLC GROUP MEDICAL PLAN","501","2006-01-01","FISCHBEIN LLC",,,"151 WALKER ROAD",,"STATESVILLE","NC","28625",,,,,,,,,,,,,,,,,,"870752826","7048384608","333900","FISCHBEIN LLC",,"151 WALKER ROAD",,"STATESVILLE","NC","28625",,,,,,,"870752826","7048384608",,,,"2011-07-29T08:22:34-0500","MARTHA HEARN",,,,,116,124,0,0,124,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729101723P030102887217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LUMENIS INC. HEALTH AND WELFARE PLANS","502","2001-05-01","LUMENIS INC.",,,"5302 BETSY ROSS DRIVE",,"SANTA CLARA","CA","95054",,,,,,,"5302 BETSY ROSS DRIVE",,"SANTA CLARA","CA","95054",,,,,,,"043155703","4087643308","339110","LUMENIS INC.",,"5302 BETSY ROSS DRIVE",,"SANTA CLARA","CA","95054",,,,,,,"043155703","4087643308",,,,"2011-07-29T10:15:20-0500","GUY FOWLKS",,,,,276,248,15,0,263,,,,,,,"4A4B4D4E4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729090530P030481177264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SWS TRIMAC, INC. 401(K) PLAN","002","1997-01-01","SWS TRIMAC, INC.",,,"3610 FOCUS DR.",,"FORT WAYNE","IN","46818",,,,,,,,,,,,,,,,,,"382565573","2604901510","332900","SWS TRIMAC, INC.",,"3610 FOCUS DR.",,"FORT WAYNE","IN","46818",,,,,,,"382565573","2604901510",,,,"2011-07-29T09:04:48-0500","GORDON MCINTOSH",,,,,45,28,0,12,40,0,40,33,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728182021P040475264608001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FLEXFUND","502","2002-10-01","STATE BANK OF GRAYMONT",,,"PO BOX 47",,"GRAYMONT","IL","617430047",,,,,,,"204 MAIN STREET",,"GRAYMONT","IL","61743",,,,,,,"370532770","8157435951","522120","STATE BANK OF GRAYMONT",,"PO BOX 47",,"GRAYMONT","IL","617430047",,,,,,,"370532770","8157435951",,,,"2011-07-28T18:16:54-0500","RONALD L. MINNAERT",,,,,12,13,0,0,13,,,,,,,"4Q","0","0","1","1","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729104918P040105743729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE KORNBLATT COMPANY 401(K) PROFIT SHARING PLAN AND TRUST","001","1989-01-01","THE KORNBLATT COMPANY",,,"200 SAINT PAUL PLACE","SUITE 2121","BALTIMORE","MD","21202",,,,,,,,,,,,,,,,,,"521277025","4105392700","531310","THE KORNBLATT COMPANY",,"200 SAINT PAUL PLACE","SUITE 2121","BALTIMORE","MD","21202",,,,,,,"521277025","4105392700",,,,"2011-07-29T10:35:19-0500","TIM POLANOWSKI",,,,,11,11,0,1,12,0,12,9,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729105422P030102915329001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"IAMAW LOCAL 2575 AIR WISCONSIN AIRLINES CORP. RETIREMENT PLAN AND TRUST","008","1985-09-01","AIR WISCONSIN AIRLINES CORPORATION",,,"W6390 CHALLENGER DRIVE SUITE 203",,"APPLETON","WI","549159120",,,,,,,,,,,,,,,,,,"391767281","9207497501","481000","IAMAW LOCAL 2575 PENSION COMMITTEE",,"W6390 CHALLENGER DRIVE SUITE 203",,"APPLETON","WI","549159120",,,,,,,"391312786","9207497501",,,,"2011-07-29T10:54:08-0500","STAN PETERSEN-GAUTHIER",,,,,1623,1073,3,675,1751,1,1752,1752,199,,"2E2G2J2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729110050P030015095826001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"W R CHESNUT ENGINEERING INC 401(K) PROFIT SHARING PLAN & TRUST","001","1995-10-01","W R CHESNUT ENGINEERING INC",,,"14 SPIELMAN RD",,"FAIRFIELD","NJ","07004",,,,,,,,,,,,,,,,,,"222021586","9732276995","541330","W R CHESNUT ENGINEERING INC",,"14 SPIELMAN RD",,"FAIRFIELD","NJ","07004",,,,,,,"222021586","9732276995",,,,"2011-07-29T11:00:47-0500","W R CHESNUT ENGINEERING INC",,,,,15,12,0,2,14,0,14,6,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729112545P040015625762001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MERCANTILE BANK OF MICHIGAN 401(K) PLAN","001","1998-01-01","MERCANTILE BANK OF MICHIGAN",,,"310 LEONARD STREET NW",,"GRAND RAPIDS","MI","49504",,,,,,,,,,,,,,,,,,"383360868","6167261208","522110","LONNA WIERSMA","MERCANTILE BANK OF MICHIGAN","310 LEONARD STREET NW",,"GRAND RAPIDS","MI","49504",,,,,,,"383360868","6167261208",,,,"2011-07-29T11:25:14-0500","LONNA WIERSMA","2011-07-29T11:25:14-0500","LONNA WIERSMA",,,341,274,0,51,325,0,325,283,0,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729092557P040476946912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SNYDER/NORWESCO GROUP DENTAL PLAN","505","1989-11-01","SNYDER/NORWESCO",,,"4700 FREMONT STREET",,"LINCOLN","NE","68504",,,,,,,,,,,,,,,,,,"470484147","4024675221","326100","SNYDER/NORWESCO",,"4700 FREMONT STREET",,"LINCOLN","NE","68504",,,,,,,"470484147","4024675221",,,,"2011-07-29T09:25:22-0500","STEPHEN M. HANSEN","2011-07-29T09:25:22-0500","STEPHEN M. HANSEN",,,192,328,,,328,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"1","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728171424P030102458785001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ROBERT REISER & COMPANY, INC.","502","1997-11-01","ROBERT REISER & COMPANY, INC.",,,"725 DEDHAM STREET",,"CANTON","MA","02021",,,,,,,,,,,,,,,,,,"042014453","7818211290","423800","ROBERT REISER & COMPANY, INC.",,"725 DEDHAM STREET",,"CANTON","MA","02021",,,,,,,"042014453","7818211290",,,,"2011-07-28T17:13:30-0500","TERRY TAMASCO","2011-07-28T17:14:07-0500","GEORGE REISER",,,162,160,1,0,161,0,,,,,,"4A4B4D4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110728165118P030479337600001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"VALLEY HEALTH AND POSTAL EMPLOYEES CREDIT UNION 401K PLAN","001","1997-02-01","VALLEY HEALTH AND POSTAL EMPLOYEES CREDIT UNION",,,"2096 MISSION STREET SE",,"SALEM","OR","97309",,,,,,,"2096 MISSION STREET SE",,"SALEM","OR","97309",,,,,,,"936027729","5033647999","522130","VALLEY HEALTH AND POSTAL EMPLOYEES CREDIT UNION",,"2096 MISSION STREET SE",,"SALEM","OR","97309",,,,,,,"936027729","5033647999",,,,"2011-07-28T16:43:25-0500","CHRISTOPHER MONTI",,,,,22,17,0,3,20,0,20,20,3,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729113120P040477274960001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSOLIDATED GRAPHICS, INC. EMPLOYEE 401K SAVINGS PLAN","010","1997-01-01","CONSOLIDATED GRAPHICS, INC.",,,"5858 WESTHEIMER","SUITE 200","HOUSTON","TX","77057",,,,,,,,,,,,,,,,,,"760190827","7134819204","323100","CONSOLIDATED GRAPHICS, INC.",,"5858 WESTHEIMER","SUITE 200","HOUSTON","TX","77057",,,,,,,"760190827","7134819204",,,,"2011-07-29T11:31:08-0500","MICHAEL GRIFFIN",,,,,6378,4407,5,1868,6280,7,6287,3943,0,,"2E2F2G2J3D3F3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","1","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729113712P030102945617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RIJK ZWAAN U S A INC 401(K) PROFIT SHARING PLAN & TRUST","001","2002-04-01","RIJK ZWAAN USA INC",,,"19040 PORTOLA DR SUITE B",,"SALINAS","CA","93908",,,,,,,,,,,,,,,,,,"770526175","8314553000","115110","RIJK ZWAAN USA INC",,"19040 PORTOLA DR SUITE B",,"SALINAS","CA","93908",,,,,,,"770526175","8314553000",,,,"2011-07-29T11:37:10-0500","RIJK ZWAAN USA INC",,,,,12,12,0,0,12,0,12,12,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729112633P040105765665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WISCONSIN AVIATION, INC. 401K PROFIT SHARING PLAN","001","1991-07-01","WISCONSIN AVIATION, INC.",,,"1741 RIVER DRIVE",,"WATERTOWN","WI","530947401",,,,,,,,,,,,,,,,,,"391397427","9202614567","481000","WISCONSIN AVIATION, INC.",,"1741 RIVER DRIVE",,"WATERTOWN","WI","530947401",,,,,,,"391397427","9202614567",,,,"2011-07-29T11:24:26-0500","JEFFREY BAUM",,,,,112,93,0,12,105,0,105,56,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729064230P040033225159001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"IKG HEALTH PLAN","545","1990-01-01","HARSCO CORPORATION",,,"350 POPLAR CHURCH ROAD",,"CAMP HILL","PA","17011",,,,,,,,,,,,,,,,,,"231483991","7177637064","339900","HARSCO CORPORATION",,"350 POPLAR CHURCH ROAD",,"CAMP HILL","PA","17011",,,,,,,"231483991","7177637064",,,,"2011-07-29T06:41:45-0500","MARK E. KIMMEL","2011-07-29T06:41:45-0500","MARK E. KIMMEL",,,29,0,0,0,0,,0,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729080205P040105650289001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"VOSS CLARK WELFARE BENEFIT PLAN","501","1993-09-15","PGP CORPORATION","VOSS CLARK",,"701 LOOP ROAD",,"JEFFERSONVILLE","IN","47130",,,,,,,"701 LOOP ROAD",,"JEFFERSONVILLE","IN","47130",,,,,,,"382472855","8122857700","331400","PGP CORPORATION",,"701 LOOP ROAD",,"JEFFERSONVILLE","IN","47130",,,,,,,"382472855","8122857700",,,,"2011-07-29T08:00:14-0500","DAVID VOSS",,,,,115,125,0,0,125,0,125,,0,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729074228P030102789329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ECR INTERNATIONAL, INC. 401(K) & PROFIT SHARING PLAN","003","1988-01-01","ECR INTERNATIONAL, INC.",,,"2201 DWYER AVENUE",,"UTICA","NY","13501",,,,,,,,,,,,,,,,,,"160414490","3157971310","333410","ECR INTERNATIONAL, INC.",,"2201 DWYER AVENUE",,"UTICA","NY","13501",,,,,,,"160414490","3157971310",,,,"2011-07-29T07:42:14-0500","ALLAN FREETAGE","2011-07-29T07:42:14-0500","ALLAN FREETAGE",,,247,143,0,77,220,0,220,207,9,,"2E2G2J2K3D2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729091147P030102845473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLER MILLING COMPANY, EMPLOYEE SAVINGS & RETIREMENT PLAN","001","1988-01-01","MILLER MILLING COMPANY",,,"7808 CREEKRIDGE CIR STE 100",,"BLOOMINGTON","MN","554392612",,,,,,,,,,,,,,,,,,"411539050","9528266331","311200","MILLER MILLING COMPANY",,"7808 CREEKRIDGE CIR STE 100",,"BLOOMINGTON","MN","554392612",,,,,,,"411539050","9528266331",,,,"2011-07-29T09:10:45-0500","BONNIE KIEHL",,,,,93,84,0,5,89,0,89,85,2,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729091614P030102848049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORRIS & LOVE ORTHOPAEDICS & SPORTS 401(K) PSP","001","1984-07-05","NORRIS & LOVE ORTHOPAEDICS & SPORTS PC FKA RANDALL G. NORRIS",,,"1900 SAINT CHARLES ST",,"JASPER","IN","47546",,,,,,,,,,,,,,,,,,"351607938","8126341211","621399","NORRIS & LOVE ORTHOPAEDICS & SPORTS PC FKA RANDALL G. NORRIS",,"1900 SAINT CHARLES ST",,"JASPER","IN","47546",,,,,,,"351607938","8126341211",,,,"2011-07-29T09:13:31-0500","RANDALL NORRIS",,,,,33,27,0,8,35,0,35,35,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729094404P040015615202001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE DIAGNOSTIC & TREATMENT CENTER","502","2006-01-01","THE DIAGNOSTIC & TREATMENT CENTER","THE DIAGNOSTIC & TREATMENT CENER","MARY TASSON","3401 CRANBERRY BLVD",,"WESTON","WI","54476",,,,,,,"3401 CRANBERRY BLVD",,"WESTON","WI","54476",,,,,,,"200691634","7153932490","621498","THE DIAGNOSTIC & TREATMENT CENTER","MARY TASSON","3401 CRANBERRY BLVD",,"WESTON","WI","54476",,,,,,,"350472300","7153932490",,,,"2011-07-27T16:30:40-0500","MARY TASSON",,,,,136,136,,,136,,136,,,,,"4F",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729095002P030102871377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GIVENS ESTATES UNITED METHODIST RETIREMENT COMMUNITY GROUP HEALTH PLAN","501","1985-10-01","GIVENS ESTATES UNITED METHODIST RETIREMENT COMMUNITY","GIVENS ESTATES",,"2360 SWEETEN CREEK ROAD",,"ASHEVILLE","NC","28803",,,,,,,"2360 SWEETEN CREEK ROAD",,"ASHEVILLE","NC","28803",,,,,,,"510199312","8282744800","813000","GIVENS ESTATES UNITED METHODIST RETIREMENT COMMUNITY",,"2360 SWEETEN CREEK ROAD",,"ASHEVILLE","NC","28803",,,,,,,"510199312","8282744800",,,,"2011-07-29T09:48:09-0500","ALLEN SQUIRES",,,,,218,195,2,,197,,197,,,,,"4A4B","1",,,,"1",,,,,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728163144P040002966148001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORNERSTONE ADMINISYSTEMS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2006-01-01","CORNERSTONE ADMINISYSTEMS, INC.",,,"P.O. BOX 726",,"NEW CUMBERLAND","PA","17070",,,,,,,"331 BRIDGE STREET, SUITE 300",,"NEW CUMBERLAND","PA","17070",,,,,,,"232770384","7172147224","541990","CORNERSTONE ADMINISYSTEMS, INC.",,"P.O. BOX 726",,"NEW CUMBERLAND","PA","17070",,,,,,,"232770384","7172147224",,,,"2011-07-28T16:31:01-0500","KENNETH M. BROWN",,,,,28,23,0,6,29,0,29,29,0,0,"2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728170042P040015547794007","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"REGINALD FLEMING CHARLES SCHWAB QRP MPPP","001","1991-01-18","REGINALD FLEMING",,,"PO BOX 340",,"EVERGREEN","CO","804370340",,,,,,,,,,,,,,,,,,"841230422","3036701945","531210","REGINALD FLEMING",,"PO BOX 340",,"EVERGREEN","CO","804370340",,,,,,,"841230422","3036701945",,,,"2011-07-28T16:23:29-0500","REGINALD FLEMING",,,,,1,1,,,1,,1,,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728171507P030102459297003","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"KHAN MEDICAL ASSOCIATES SC, 401K PLAN","004","2010-01-01","KHAN MEDICAL ASSOCIATES, SC",,,"10239 NORTH WATERLEAF DRIVE",,"MEQUON","WI","53092",,,,,,,,,,,,,,,,,,"452758671","4144311570","621111","KHAN MEDICAL ASSOCIATES, SC",,"10239 NORTH WATERLEAF DRIVE",,"MEQUON","WI","53092",,,,,,,"452758671","4144311570",,,,"2011-07-28T18:03:06-0500","DR. GOUHAR KHAN",,,"2011-07-28T18:03:23-0500","SAMUEL J MICALE",0,1,,,1,,1,1,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature", "20110728182232P030102497009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LONG TERM DISABILITY","502","2010-01-01","NORTH COAST ELECTRIC COMPANY",,,"2450 8TH AVE S",,"SEATTLE","WA","98134",,,,,,,"2450 8TH AVE S",,"SEATTLE","WA","98134",,,,,,,"911504457","2064429830","423600","NORTH COAST ELECTRIC COMPANY",,"2450 8TH AVE S",,"SEATTLE","WA","98134",,,,,,,"911504457","2064429830",,,,"2011-07-28T18:22:11-0500","ANN WEBB",,,,,454,454,8,0,462,0,462,0,0,0,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729114843P030481600304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUMMIT BUSINESS FORMS PROFIT SHARING PLAN","002","1987-01-01","DAVID E HOLMQUIST","SUMMIT BUSINESS FORMS",,"4280 REDWOOD HWY,SUITE 6",,"SAN RAFAEL","CA","90903",,,,,,,"4280 REDWOOD HWY,SUITE 6",,"SAN RAFAEL","CA","90903",,,,,,,"942987203","4154726200","454390","DAVID E HOLMQUIST",,"4280 REDWOOD HWY,SUITE 6",,"SAN RAFAEL","CA","90903",,,,,,,"942987203","4154726200",,,,"2011-07-29T11:47:37-0500","DAVID HOLMQUIST",,,,,2,2,0,0,2,,2,,0,,"2E2G3E3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729103624P040015621730001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"401(K) SAVINGS PLAN AND TRUST OF UNIVERSAL FIELD SERVICES, INC.","002","1996-01-01","UNIVERSAL FIELD SERVICES, INC.",,,"6666 S. SHERIDAN, SUITE 230",,"TULSA","OK","74133",,,,,,,,,,,,,,,,,,"730676799","9184947600","541990","UNIVERSAL FIELD SERVICES, INC.",,"6666 S. SHERIDAN, SUITE 230",,"TULSA","OK","74133",,,,,,,"730676799","9184947600",,,,"2011-07-29T10:21:54-0500","VEDA HESTER",,,,,434,384,2,87,473,0,473,262,22,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729075259P030102792817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOSPITAL & SURGICAL PLAN FOR EMPLOYEES OF CECO ENV IRONMENTAL","501","1971-01-25","CECO ENVIRONMENTAL",,,"3120 FORRER STREET",,"CINCINNATI","OH","45209",,,,,,,,,,,,,,,,,,"132566064","5134582600","332900","CECO ENVIRONMENTAL",,"3120 FORRER STREET",,"CINCINNATI","OH","45209",,,,,,,"132566064","5134582600",,,,"2011-07-28T16:20:14-0500","RHONDA DUTLINGER",,,,,213,188,,,188,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729083716P030481110736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUSAN B. ANTHONY HOUSE, INC. 403B DC PLAN","001","2000-01-01","SUSAN B. ANTHONY HOUSE, INC.",,,"17 MADISON STREET",,"ROCHESTER","NY","14608",,,,,,,,,,,,,,,,,,"237098699","5852797490","712100","SUSAN B. ANTHONY HOUSE, INC.",,"17 MADISON STREET",,"ROCHESTER","NY","14608",,,,,,,"237098699","5852797490",,,,"2011-07-29T08:36:16-0500","DEBORAH L HUGHES",,,,,11,2,0,9,11,0,11,11,0,,"2G2L2M3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729093814P040105700401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BMTM SAFE HARBOR 401(K)","001","2008-01-01","BMTM",,,"3 LABEL LN",,"SWANTON","VT","05488",,,,,,,,,,,,,,,,,,"030335647","8028684800","561900","BMTM",,"3 LABEL LN",,"SWANTON","VT","05488",,,,,,,"030335647","8028684800",,,,"2011-07-29T09:37:43-0500","ALAIN MORISSETTE",,,,,6,6,0,0,6,0,6,6,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729113056P040105768801012","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JAMES E HEREFORD DDS PENSION AND PROFIT SHARING PLAN","002","1988-10-01","JAMES E HEREFORD DDS INC",,,"1111 MAIN STREET",,"COLLINSVILLE","OK","74021",,,,,,,,,,,,,,,,,,"731144996","9183713375","621210","JAMES E HEREFORD DDS INC",,"1111 MAIN STREET",,"COLLINSVILLE","OK","74021",,,,,,,"731144996","9183713375",,,,"2011-07-28T18:07:31-0500","JAMES E HEREFORD",,,,,7,6,,,6,,6,,1,,"2C",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728184210P030102508193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SATELLITE HEALTHCARE IRC SECTION 125 FLEXIBLE SPENDING PLAN","503","2008-01-01","SATELLITE HEALTHCARE, INC.",,,"300 SANTANA ROW, SUITE 300",,"SAN JOSE","CA","95128",,,,,,,,,,,,,,,,,,"237290564","6504043600","621492","SATELLITE HEALTHCARE, INC.",,"300 SANTANA ROW, SUITE 300",,"SAN JOSE","CA","95128",,,,,,,"237290564","6504043600",,,,"2011-07-28T18:41:31-0500","MARIO BERTUCCI",,,,,147,133,0,0,133,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729105447P040477165536001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"CAB LIFE AND DISABILITY PLAN","502","1988-01-01","CAB HEALTH & RECOVERY SERVICES, INC.",,,"ZERO CENTENNIAL DRIVE",,"PEABODY","MA","01960",,,,,,,,,,,,,,,,,,"042400270","9789681706","621420","CAB HEALTH & RECOVERY SERVICES INC.",,"ZERO CENTENNIAL DRIVE",,"PEABODY","MA","01960",,,,,,,"042400270","9789681706",,,,"2011-07-29T10:54:24-0500","ARTHUR MCLEOD",,,,,133,0,0,0,0,,,,,,,"4B4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729105457P040105746929001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE ARGUS GROUP AND AFFILIATED EMPLOYER PROFIT SHARING PLAN","002","1998-01-01","THE ARGUS GROUP",,,"16633 VENTURA BLVD., STE. 1330",,"ENCINO","CA","91367",,,,,,,,,,,,,,,,,,"954272421","8189907200","531390","THE ARGUS GROUP",,"16633 VENTURA BLVD., STE. 1330",,"ENCINO","CA","91367",,,,,,,"954272421","8189907200",,,,"2011-07-29T11:54:29-0500","RUSSELL JONES",,,,,2,1,0,1,2,0,2,2,0,,"2A2E3J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729105521P030102915953001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ACE GROUP LIFE INSURANCE PLAN","503","1963-11-01","AMERICAN COUNCIL ON EDUCATION",,,"1 DUPONT CIRCLE, NW, SUITE 25",,"WASHINGTON","DC","20036",,,,,,,,,,,,,,,,,,"530196573","2029399330","813000","AMERICAN COUNCIL ON EDUCATION",,"1 DUPONT CIRCLE, NW, SUITE 25",,"WASHINGTON","DC","20036",,,,,,,"530196573","2029399330",,,,"2011-07-29T11:15:39-0500","SONYA WILLIAMS",,,,,332,219,,,219,,219,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729102522P040477097200001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LODGEWORKS PAYROLL, LLC LIFE INSURANCE PLAN","510","2000-04-01","LODGEWORKS PAYROLL, LLC",,,"8100 E 22ND ST. NORTH, BLDG 500",,"WICHITA","KS","672262305",,,,,,,,,,,,,,,,,,"481227325","3166815124","721110","LODGEWORKS PAYROLL, LLC",,"8100 E 22ND ST. NORTH, BLDG 500",,"WICHITA","KS","672262305",,,,,,,"481227325","3166815124",,,,"2011-07-29T11:02:15-0500","KIMBERLY SCHRANT",,,,,870,1113,,,1113,,1113,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110728153226P030479124800001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT J RENARD MONEY PURCHASE PLAN","001","1979-01-01","ROBERT J RENARD",,,"1879 CRICKET CT",,"NEENAH","WI","54956",,,,,,,"1879 CRICKET CT",,"NEENAH","WI","54956",,,,,,,"391201487","9207348331","524210","ROBERT J RENARD",,"1879 CRICKET CT",,"NEENAH","WI","54956",,,,,,,"391201487","9207348331",,,,"2011-07-28T15:28:41-0500","ROBERT RENARD",,,,,6,4,2,0,6,0,6,6,0,,"2C3B3E",,"1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110728184323P030102508993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COOLEY LLP HEALTH AND WELFARE PLAN","501","1985-02-01","COOLEY LLP",,,"101 CALIFORNIA STREET, 5TH FLOOR",,"SAN FRANCISCO","CA","94111",,,,,,,,,,,,,,,,,,"941140085","4156932000","541110","COOLEY LLP",,"101 CALIFORNIA STREET, 5TH FLOOR",,"SAN FRANCISCO","CA","94111",,,,,,,"941140085","4156932000","COOLEY GODWARD KRONISH LLP","941140085","501","2011-07-28T18:43:12-0500","THOMAS Z. REICHER",,,,,1628,1372,57,0,1429,,,,,,,"4A4B4D4E4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-07-28","Filed with authorized/valid electronic signature",, "20110729110054P030102918705018","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"NYSA-ILA CONTAINER ROYALTY FUND","504","1962-03-28","BOARD OF TRUSTEES NYSA-ILA CONTAINER ROYALTY FUND",,"EXECUTIVE SECRETARY","45 BROADWAY",,"NEW YORK","NY","100063007",,,,,,,,,,,,,,,,,,"136264730","2122080220","483000","BOARD OF TRUSTEES NYSA-ILA CONTAINER ROYALTY FUND","EXECUTIVE SECRETARY","45 BROADWAY",,"NEW YORK","NY","100063007",,,,,,,"136264730","2122080220",,,,"2011-07-29T10:50:30-0500","JOSEPH CURTO HAROLD J DAGGETT",,,,,3294,3268,74,,3342,,3342,,,,,"4Q",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729110626P040105753409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COOK & BOARDMAN, INC. 401(K) PLAN","003","2009-01-01","COOK & BOARDMAN, INC.",,,"3916 WESTPOINT BLVD",,"WINSTON SALEM","NC","27103",,,,,,,,,,,,,,,,,,"560651440","3367688872","423700","COOK & BOARDMAN, INC.",,"3916 WESTPOINT BLVD",,"WINSTON SALEM","NC","27103",,,,,,,"560651440","3367688872",,,,"2011-07-29T11:02:01-0500","W. SAM SMOAK","2011-07-29T11:02:01-0500","W.SAM SMOAK",,,125,485,0,13,498,0,498,250,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729101622P040105719729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MATURECARE OF STANDIFER PLACE","501","2003-02-01","MATURE CARE OF STANDIFER PLACE","THE HEALTH CENTER AT STANDIFER PLACE","THE HEALTH CENTER AT STANDIFER PLACE","2626 WALKER ROAD",,"CHATTANOOGA","TN","374211116",,,,,,,,,,,,,,,,,,"261235729","4234904640","623000","COURTNEY SMITH","MATURECARE OF STANDIFER PLACE","2626 WALKER ROAD",,"CHATTANOOGA","TN","37421",,,,,,,"261235729","4234904640",,,,"2011-07-29T10:12:30-0500","COURTNEY SMITH",,,,,367,380,0,0,380,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729134512P030103018833003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE WECK CORPORATION FLEXIBLE BENEFITS PLAN","501","1994-02-01","THE WECK CORPORATION DBA GRACIOUS HOMES",,,"158 WEST 27TH STREET, 12TH FLOOR",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"131996057","2129016300","444110","THE WECK CORPORATION DBA GRACIOUS HOMES",,"158 WEST 27TH STREET, 12TH FLOOR",,"NEW YORK","NY","10001",,,,,,,"131996057","2129016300",,,,"2011-07-29T13:38:01-0500","JAMES LINSALATA","2011-07-29T13:38:15-0500","JAMES LINSALATA",,,301,,,,0,,,,,,,"4D4A4F","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729134955P030103021393001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"GUNDERSON DETTMER STOUGH VILLENEUVE FRANKLIN & HACHIGIAN, LLP LIFE INSURANCE PLAN","504","2002-03-02","GUNDERSON DETTMER STOUGH VILLENEUVE FRANKLIN & HACHIGIAN, LLP",,,"1200 SEAPORT BLVD.",,"REDWOOD CITY","CA","94063",,,,,,,"1200 SEAPORT BLVD.",,"REDWOOD CITY","CA","94063",,,,,,,"770409988","6503212400","541110","GUNDERSON DETTMER STOUGH VILLENEUVE FRANKLIN & HACHIGIAN, LLP",,"1200 SEAPORT BLVD.",,"REDWOOD CITY","CA","94063",,,,,,,"770409988","6503212400",,,,"2011-07-29T10:35:11-0500","SCOTT ARMIENTI",,,,,209,205,,,205,,205,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729135420P040105862993001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CARIBBEAN RETAILERS, INC. EMPLOYEE RETIREMENT PLAN","001","2002-01-01","CARIBBEAN RETAILERS, INC.",,,"PO BOX 192928",,"SAN JUAN","PR","00919",,,,,,,"PO BOX 192928",,"SAN JUAN","PR","00919",,,,,,,"980231243","7877256419","453990","CARIBBEAN RETAILERS, INC.",,"PO BOX 192928",,"SAN JUAN","PR","00919",,,,,,,"980231243","7877256419",,,,"2011-07-29T13:37:13-0500","CARLOS CHAVES",,,,,17,16,0,1,17,0,17,17,0,,"2B3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729141436P040105877281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"METTERS INDUSTRIES 401(K) RETIREMENT PLAN","001","1987-01-01","METTERS INDUSTRIES, INC.",,,"8200 GREENSBORO DRIVE","SUITE 500","MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"521242561","7038213300","541330","METTERS INDUSTRIES, INC.",,"8200 GREENSBORO DRIVE","SUITE 500","MCLEAN","VA","22102",,,,,,,"521242561","7038213300",,,,"2011-07-29T14:10:39-0500","ALMA NORA DURAN",,,,,258,201,0,53,254,0,254,188,11,,"2E2J2F2G2K2T3H3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729130942P040105831921001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","0","0","0","0",,"LAFORCE, INC BUSINESS TRAVEL INSURANCE","507","2006-06-01","LAFORCE INC.",,,"1060 WEST MASON STREET",,"GREEN BAY","WI","54303",,,,,,,"1060 WEST MASON STREET",,"GREEN BAY","WI","54303",,,,,,,"390980509","9204977100","423700","LAFORCE INC.",,"1060 WEST MASON STREET",,"GREEN BAY","WI","54303",,,,,,,"390980509","9204977100",,,,"2011-07-29T13:09:26-0500","JILL PRUSKI",,,,,354,352,,,352,,352,,,,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729132716P030015108066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOSE PEREZ OTERO PROFIT SHARING PLAN","001","2006-03-01","JOSE PEREZ OTERO",,,"HC 03 BOX 3276",,"FLORIDA","PR","006509651",,,,,,,,,,,,,,,,,,"660670990","7875536061","541990","JOSE PEREZ OTERO",,"HC 03 BOX 3276",,"FLORIDA","PR","006509651",,,,,,,"660670990","7875536061",,,,"2011-07-29T13:27:16-0500","JOSE PEREZ","2011-07-29T13:27:16-0500","JOSE PEREZ",,,1,1,,,1,,1,1,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729133035P040105848209001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DONALD R GREENE PROFIT SHARING RETIREMENT PLAN","001","1984-01-01","DONALD R GREENE MD",,,"5 SOUTH MAIN STREET",,"BRANFORD","CT","06405",,,,,,,"5 SOUTH MAIN STREET",,"BRANFORD","CT","06405",,,,,,,"060999450","2034813419","621111","DONALD R GREENE MD",,"5 SOUTH MAIN STREET",,"BRANFORD","CT","06405",,,,,,,"060999450","2034813419",,,,"2011-07-27T09:19:22-0500","DONALD R.GREENE MD",,,,,4,4,,,4,,4,4,,,"2E2G2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729133035P040105848209010","2010-01-01","2010-12-31","4","G",,,,,,"1",,,,,"HOSPITALITY INDUSTRY HEALTH INSURANCE TRUST","501","1994-12-01","HOSPITALITY INDUSTRY HEALTH INSURANCE TRUST",,,"2323 EASTLAKE AVENUE EAST",,"SEATTLE","WA","98102",,,,,,,,,,,,,,,,,,"916832815","2067263271","722110","HOSPITALITY INDUSTRY HEALTH INSURANCE TRUST",,"2323 EASTLAKE AVENUE EAST",,"SEATTLE","WA","98102",,,,,,,"916832815","2067263271",,,,"2011-07-29T06:18:21-0500","STEVE SIMMONS","2011-07-29T06:18:21-0500","STEVE SIMMONS",,,980,1093,,,1093,,,,,,,"4A4D4E4T",,,"1",,"1",,,,,,,"1",,"1","3","1","1",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729120319P040105792113001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"BANKS PEST CONTROL INC 401K PLAN","001","1998-03-01","BANKS PEST CONTROL ,INC.",,,"215 GOLDEN STATE AVE",,"BAKERSFIELD","CA","933014110",,,,,,,,,,,,,,,,,,"942416139","6613237858","561710","BANKS PEST CONTROL ,INC.",,"215 GOLDEN STATE AVE",,"BAKERSFIELD","CA","933014110",,,,,,,"942416139","6613237858",,,,"2011-07-29T12:00:35-0500","SHARYN NEWMAN",,,,,37,34,0,3,37,0,37,37,0,,"2A2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729132208P040105842385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHN PAUL MITCHELL SYSTEMS 401(K) & PROFIT SHARING PLAN","002","1997-10-15","JOHN PAUL MITCHELL SYSTEMS",,,"20705 CENTRE POINTE PARKWAY",,"SANTA CLARITA","CA","91350",,,,,,,,,,,,,,,,,,"953504616","6612980400","325600","JOHN PAUL MITCHELL SYSTEMS",,"20705 CENTRE POINTE PARKWAY",,"SANTA CLARITA","CA","91350",,,,,,,"953504616","6612980400",,,,"2011-07-29T13:21:10-0500","KAREN HERMANSON","2011-07-29T13:21:10-0500","JOHN PAUL MITCHELL SYSTEMS",,,220,251,0,13,264,0,264,216,2,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729140007P040003202339002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"BERKLEY MID-ATLANTIC GROUP LLC GROUP DENTAL PLAN","505","2002-01-01","BERKLEY MID-ATLANTIC GROUP LLC",,,"4820 LAKE BROOK DR STE 300",,"GLEN ALLEN","VA","23060",,,,,,,,,,,,,,,,,,"263349837","8002831153","524210","BERKLEY MID-ATLANTIC GROUP LLC",,"4820 LAKE BROOK DR STE 300",,"GLEN ALLEN","VA","23060",,,,,,,"263349837","8002831153",,,,"2011-07-29T13:51:42-0500","VICKIE PRICE",,,,,222,223,,,223,,,,,,,"4D",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729110632P030102922353007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ANGELI FOODS COMPANY GROUP HEALTH, DENTAL, & SHORT TERM DISABILITY PLAN","501","1988-11-01","ANGELI FOODS COMPANY",,,"P.O. BOX 312",,"IRON RIVER","MI","49935",,,,,,,"833 RIVERSIDE PLAZA",,"IRON RIVER","MI","49935",,,,,,,"381984673","9062652817","445110","ANGELI FOODS COMPANY",,"P.O. BOX 312",,"IRON RIVER","MI","49935",,,,,,,"381984673","9062652817",,,,"2011-07-29T04:53:31-0500","DONALD S. BASTIANELLO","2011-07-29T04:53:31-0500","DONALD S. BASTIANELLO",,,111,99,,,99,,,,,,,"4A4D4F4R",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729132244P040477576992001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VMI COMPANY OF ST. LOUIS 401K PROFIT SHARING PLAN","003","1991-12-01","VMI COMPANY OF ST. LOUIS",,,"2268 WELSH INDUSTRIAL COURT",,"ST. LOUIS","MO","63146",,,,,,,,,,,,,,,,,,"431226735","3145691334","423990","VMI COMPANY OF ST. LOUIS",,"2268 WELSH INDUSTRIAL COURT",,"ST. LOUIS","MO","63146",,,,,,,"431226735","3145691334",,,,"2011-07-29T13:21:41-0500","SHEILA HESTER","2011-07-29T13:21:41-0500","SHEILA HESTER",,,1,0,0,1,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729133106P040105848753001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WAM INDUSTRIES INC EMPLOYEE PROFIT SHARING PLAN","001","1994-01-01","WAM INDUSTRIES, INC",,,"PO BOX 429",,"TECATE","CA","919800429",,,,,,,,,,,,,,,,,,"953604741","6194785156","334410","WAM INDUSTRIES INC",,"PO BOX 429",,"TECATE","CA","919800429",,,,,,,"953604741","6194785156",,,,"2011-07-29T11:32:13-0500","DELLAS WREN",,,,,4,3,1,,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729124651P040477477024001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREENEBAUM DOLL & MCDONALD EMPLOYEE ASSISTANCE PROGRAM","505","1996-09-09","GREENEBAUM DOLL & MCDONALD PLLC",,,"3500 NATIONAL CITY TOWER","101 SOUTH FIFTH STREET","LOUISVILLE","KY","40202",,,,,,,,,,,,,,,,,,"610468813","5025894200","541110","GREENEBAUM DOLL & MCDONALD PLLC",,"3500 NATIONAL CITY TOWER","101 SOUTH FIFTH STREET","LOUISVILLE","KY","40202",,,,,,,"610468813","5025894200",,,,"2011-07-29T12:18:29-0500","RICK OLGINE",,,,,312,265,,,265,,265,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729122849P040105809921001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"LONE STAR MILK TRANSPORT, INC. DENTAL INSURANCE PLAN","502","2007-01-01","LONE STAR MILK TRANSPORT, INC.",,,"217 BAIRD LANE",,"WINDTHORST","TX","76389",,,,,,,,,,,,,,,,,,"752561729","9403782203","484110","LONE STAR MILK TRANSPORT, INC.",,"217 BAIRD LANE",,"WINDTHORST","TX","76389",,,,,,,"752561729","9403782203",,,,"2011-07-29T12:16:57-0500","CHRISTOPHER VOMASTEK",,,,,140,104,2,0,106,,,,,,,"4D4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729125354P040105823201001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"VOCOLLECT HEALTH AND WELFARE PLAN","501","1987-01-01","VOCOLLECT, INC.",,,"703 RODI ROAD",,"PITTSBURGH","PA","152354558",,,,,,,,,,,,,,,,,,"251554121","4128298145","334110","VOCOLLECT, INC.",,"703 RODI ROAD",,"PITTSBURGH","PA","152354558",,,,,,,"251554121","4128298145",,,,"2011-07-29T12:53:37-0500","HEATHER TUDOR",,,,,350,372,11,0,383,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729140054P030103027633002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"ERIC SUN YIN CHAN MD PENSION PLAN","001","1988-12-29","ERIC SUN YIN CHAN MD",,,"C/O 2060 FOREST AVE STE 100",,"SAN JOSE","CA","95128",,,,,,,,,,,,,,,,,,"770160521","4082781180","621111","ERIC SUN YIN CHAN MD",,"C/O 2060 FOREST AVE STE 100",,"SAN JOSE","CA","95128",,,,,,,"770160521","4082781180",,,,"2011-07-29T13:12:02-0500","ERIC SUN YIN CHAN MD",,,,,2,2,,,2,,2,,,,"2E2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729124200P030003027507001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NBS DESIGN, INC. WELFARE BENEFITS PLAN","501","2008-01-01","NBS DESIGN, INC.",,,"2950 PATRICK HENRY DRIVE",,"SANTA CLARA","CA","95054",,,,,,,,,,,,,,,,,,"330949512","4086541100","541512","NBS DESIGN, INC.",,"2950 PATRICK HENRY DRIVE",,"SANTA CLARA","CA","95054",,,,,,,"330949512","4086541100",,,,"2011-07-29T12:33:21-0500","MICHAEL MASLANA",,,,,367,348,3,0,351,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729130724P030102995985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AGENUS INC 401(K) RETIREMENT PLAN (FORMERLY ANTIGENICS INC 401(K) RETIREMENT PLAN)","001","1997-01-01","AGENUS INC",,,"3 FORBES RD",,"LEXINGTON","MA","02421",,,,,,,"3 FORBES RD",,"LEXINGTON","MA","02421",,,,,,,"061562417","7816744400","325410","AGENUS INC",,"3 FORBES RD",,"LEXINGTON","MA","02421",,,,,,,"061562417","7816744400","ANTIGENICS INC",,,"2011-07-29T10:29:59-0500","WENDY BACCARI","2011-07-29T12:55:21-0500","SHALINI SHARP",,,192,58,1,107,166,1,167,156,3,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729120027P040105790449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARMED FORCES INSURANCE GROUP LONG TERM DISABILITY PLAN","504","1984-01-01","ARMED FORCES INSURANCE EXCHANGE",,,"550 EISENHOWER ROAD",,"LEAVENWORTH","KS","66048",,,,,,,,,,,,,,,,,,"480933281","9137274507","524150","ARMED FORCES INSURANCE EXCHANGE",,"550 EISENHOWER ROAD",,"LEAVENWORTH","KS","66048",,,,,,,"480933281","9137274507",,,,"2011-07-29T11:59:41-0500","SCOTT NEILAN",,,,,194,192,0,0,192,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729132016P030103003873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILFREDO LOPEZ HERNANDEZ TARGET BENEFIT PLAN","001","1993-01-01","WILFREDO LOPEZ HERNANDEZ",,,"PO BOX 6389",,"CAGUAS","PR","00726",,,,,,,,,,,,,,,,,,"660371894","7877464500","621111","WILFREDO LOPEZ HERNANDEZ",,"PO BOX 6389",,"CAGUAS","PR","00726",,,,,,,"660371894","7877464500",,,,"2011-07-29T13:20:16-0500","WILFREDO LOPEZ","2011-07-29T13:20:16-0500","WILFREDO LOPEZ",,,3,3,,,3,,3,3,,,"2C3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729121124P040105798081001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FIREMAN'S INSURANCE COMPANY OF WASHINGTON DC GROUP DENTAL PLAN","505","2002-01-01","FIREMAN'S INSURANCE COMPANY OF WASHINGTON DC",,"VICKIE PRICE","BERKLEY MID-ATLANTIC GROUP, LLC","4820 LAKE BROOK DR. STE 300","GLEN ALLEN","VA","23060",,,,,,,"BERKLEY MID-ATLANTIC GROUP, LLC","4820 LAKE BROOK DR. STE 300","GLEN ALLEN","VA","23060",,,,,,,"530067060","8002831153","524210","FIREMAN'S INSURANCE COMPANY OF WASHINGTON DC","VICKIE PRICE","BERKLEY MID-ATLANTIC GROUP, LLC","4820 LAKE BROOK DR. STE 300","GLEN ALLEN","VA","23060",,,,,,,"530067060","8002831153",,,,"2011-07-26T15:09:10-0500","VICKIE PRICE",,,,,230,198,,,198,,198,,,,,"4D",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729123452P040105813249001","2008-08-01","2009-07-31","2",,"0","1","0","0","0","0","0","0","0",,"NUTIS PRESS, INC. 401(K) PLAN","001","1998-08-01","NUTIS PRESS, INC.",,,"3540 E. FULTON STREET",,"COLUMBUS","OH","432270248",,,,,,,,,,,,,,,,,,"310628397","6142378626","511190","NUTIS PRESS, INC.",,"3540 E. FULTON STREET",,"COLUMBUS","OH","432270248",,,,,,,"310628397","6142378626",,,,"2011-07-29T12:29:42-0500","DAVID GEORGE",,,,,160,119,6,25,150,0,150,69,0,,"2E3E2G2J",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729132019P040015639026010","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"EASTWOOD BANK MIDWEST DENTAL BENEFITS","503","2010-01-01","EASTWOOD BANK",,,"5125 HIGHWAY 52 NORTH",,"ROCHESTER","MN","55901",,,,,,,,,,,,,,,,,,"410257090","5072853318","522110","EASTWOOD BANK",,"5125 HIGHWAY 52 NORTH",,"ROCHESTER","MN","55901",,,,,,,"410257090","5072853318",,,,"2011-07-29T08:10:42-0500","JOLEEN K MITTELSTADT",,,,,0,108,,,108,,,,,,,"4D",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729132019P040015639026002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ORTHOPAEDIC ASSOCIATES OF PORTLAND, PA DENTAL PLAN","505","1986-04-01","ORTHOPAEDIC ASSOCIATES OF PORTLAND, P.A. F/K/A/ORTHOPAEDIC ASSOCIATES,",,,"33 SEWALL STREET",,"PORTLAND","ME","04102",,,,,,,,,,,,,,,,,,"010356992","2078282222","621111","ORTHOPAEDIC ASSOCIATES OF PORTLAND, P.A. F/K/A/ORTH",,"33 SEWALL STREET",,"PORTLAND","ME","04102",,,,,,,"010356992","2078282222",,,,"2011-07-29T09:06:36-0500","KIM FOGLIO","2011-07-29T09:06:36-0500","KIM FOGLIO",,,198,206,3,,209,,,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729134921P030103021121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROFESSIONAL ENGINEERING AND T 401(K) PROFIT SHARING PLAN & TRUST","001","1999-01-31","PROFESSIONAL ENGINEERING AND T",,,"4500 E SPEEDWAY BUILDING #20",,"TUCSON","AZ","85712",,,,,,,,,,,,,,,,,,"860532977","5208811711","541330","PROFESSIONAL ENGINEERING AND T",,"4500 E SPEEDWAY BUILDING #20",,"TUCSON","AZ","85712",,,,,,,"860532977","5208811711",,,,"2011-07-29T01:49:18-0500","PROFESSIONAL ENGINEERING AND T",,,,,0,4,0,0,4,0,4,4,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729134951P030481902592001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"CHAMLIN & ASSOCIATES EMPLOYEE STOCK OWNERSHIP PLAN","002","1991-01-01","CHAMLIN & ASSOCIATES, INC",,,"3017 5TH ST",,"PERU","IL","613542469",,,,,,,,,,,,,,,,,,"362593961","8152233344","541330","CHAMLIN & ASSOCIATES, INC",,"3017 5TH ST",,"PERU","IL","613542469",,,,,,,"362593961","8152233344",,,,"2011-07-29T13:49:50-0500","CHRISTY DONAHUE","2011-07-29T13:49:50-0500","CHRISTY DONAHUE",,,69,40,15,14,69,0,69,66,2,,"2O2Q",,,,"1",,,,"1",,"1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729123609P040105813649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PERFORMANCE RADIATOR PACIFIC LLC 401K PLAN","001","1992-07-01","PERFORMANCE RADIATOR PACIFIC LLC",,,"2667 S TACOMA WAY",,"TACOMA","WA","98409",,,,,,,,,,,,,,,,,,"911956652","2066242440","811110","PERFORMANCE RADIATOR PACIFIC LLC",,"2667 S TACOMA WAY",,"TACOMA","WA","98409",,,,,,,"911956652","2066242440",,,,"2011-07-29T12:23:48-0500","GRANT PAVOLKA",,,,,394,257,0,142,399,0,399,397,34,,"2E2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729134002P030103016273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOSE M. SAMALOT GANDARA PROFIT SHARING PLAN","001","1993-01-01","JOSE M. SAMALOT GANDARA",,,"PO BOX 1131",,"MANATI","PR","00674",,,,,,,,,,,,,,,,,,"660456335","7878547380","621111","JOSE M. SAMALOT GANDARA",,"PO BOX 1131",,"MANATI","PR","00674",,,,,,,"660456335","7878547380",,,,"2011-07-29T13:40:02-0500","JOSE SAMALOT","2011-07-29T13:40:02-0500","JOSE SAMALOT",,,2,2,,,2,,2,2,,,"2E3B",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729130253P040015635714001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"AMERICAN HONDA SAVINGS PLAN MASTER TRUST","001",,"AMERICAN HONDA MOTOR COMPANY, INC",,,"1919 TORRANCE BLVD",,"TORRANCE","CA","905012722",,,,,,,,,,,,,,,,,,"043487962","3107832131",,"AMERICAN HONDA MOTOR COMPANY, INC",,"1919 TORRANCE BLVD",,"TORRANCE","CA","905012722",,,,,,,"043487962","3107832131",,,,"2011-07-29T12:01:11-0500","NATALIE ENOKI",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729125513P030102989777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONCEPT ANALYSIS & INTEGRATION 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","CONCEPT ANALYSIS AND INTEGRATI",,,"8757 GEORGIA AVE STE 430",,"SILVER SPRING","MD","20910",,,,,,,,,,,,,,,,,,"201852528","2403883024","541600","CONCEPT ANALYSIS AND INTEGRATI",,"8757 GEORGIA AVE STE 430",,"SILVER SPRING","MD","20910",,,,,,,"201852528","2403883024",,,,"2011-07-29T00:55:11-0500","CONCEPT ANALYSIS AND INTEGRATI",,,,,7,11,0,0,11,0,11,7,0,,"2E2G2J2R2S2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729135815P040105865505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WHEELER, VAN SICKLE & ANDERSON, S.C. 401(K) PROFIT SHARING PLAN","001","1978-03-01","WHEELER, VAN SICKLE & ANDERSON, S.C .",,,"25 WEST MAIN STREET, SUITE 801",,"MADISON","WI","53703",,,,,,,,,,,,,,,,,,"391236982","6082557277","541110","WHEELER, VAN SICKLE & ANDERSON, S.C .",,"25 WEST MAIN STREET, SUITE 801",,"MADISON","WI","53703",,,,,,,"391236982","6082557277",,,,"2011-07-29T13:57:18-0500","THOMAS ZAREMBA","2011-07-29T13:57:18-0500","THOMAS ZAREMBA",,,34,27,0,8,35,0,35,29,0,,"2E2F2G2J2K2R2T3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729135824P040477676480001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROMESA, INC. EMPLOYEE BENEFITS PLAN","502","1977-01-01","PROMESA, INC.",,,"1776 CLAY AVENUE",,"BRONX","NY","104577239",,,,,,,,,,,,,,,,,,"132663328","7182991100","623000","PROMESA, INC.",,"1776 CLAY AVENUE",,"BRONX","NY","104577239",,,,,,,"132663328","7182991100",,,,"2011-07-29T13:57:21-0500","TOMAS DEL RIO",,,,,350,428,0,0,428,,,,,,,"4B4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729115552P040105787873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AERT 401(K) PLAN","001","2001-01-01","ADVANCED ENVIROMENTAL RECYCLING TECHNOLOGIES INC",,,"914 NORTH JEFFERSON STREET",,"SPRINGDALE","AR","72765",,,,,,,,,,,,,,,,,,"710675758","4797567400","321900","ADVANCED ENVIROMENTAL RECYCLING TECHNOLOGIES INC",,"914 NORTH JEFFERSON STREET",,"SPRINGDALE","AR","72765",,,,,,,"710675758","4797567400",,,,"2011-07-29T11:55:34-0500","ALFORD DRINKWATER","2011-07-29T11:55:34-0500","ALFORD DRINKWATER",,,466,394,2,23,419,0,419,58,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729120115P040105791201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PENN A KEM","502","1999-07-01","PENN A KEM",,,"3324 CHELSEA AVENUE",,"MEMPHIS","TN","38108",,,,,,,"3324 CHELSEA AVENUE",,"MEMPHIS","TN","38108",,,,,,,"262770135","9013204000","325100","PENN A KEM",,"3324 CHELSEA AVENUE",,"MEMPHIS","TN","38108",,,,,,,"262770135","9013204000",,,,"2011-07-29T12:01:11-0500","SONJA HARRIS","2011-07-29T12:01:11-0500","SONJA HARRIS",,,92,104,0,0,104,,,,,,,"4B4L4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729132842P030103011393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JUNO PRINTING, INC. Y LA PERLA DEL SUR, INC. RETIREMENT PLAN","001","1999-01-01","JUNO PRINTING, INC. Y LA PERLA DEL",,,"PO BOX 7253",,"PONCE","PR","00732",,,,,,,"PO BOX 7253",,"PONCE","PR","00732",,,,,,,"660408334","7878425867","511110","JUNO PRINTING, INC. Y LA PERLA DEL",,"PO BOX 7253",,"PONCE","PR","00732",,,,,,,"660408334","7878425867",,,,"2011-07-29T13:11:35-0500","LUCILLE DE JESUS",,,,,37,36,0,2,38,0,38,32,0,,"2J3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729120758P040105794545001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"FOUNDATION COAL EMPLOYEE ASSISTANCE PLAN","502","1999-07-01","ALPHA NATURAL RESOURCES, INC.",,,"ONE ALPHA PLACE","PO BOX 2345","ABINGDON","VA","24212",,,,,,,,,,,,,,,,,,"421638663","4106897500","212110","ALPHA NATURAL RESOURCES, INC.",,"ONE ALPHA PLACE","PO BOX 2345","ABINGDON","VA","24212",,,,,,,"421638663","4106897500",,,,"2011-07-29T12:05:21-0500","DONNA STETTLER",,,,,2286,0,0,0,0,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729132135P030103005185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MANOJ R DESAI, M.D., INC","002","1980-01-01","MANOJ R DESAI MD FLEXIBLE PSP",,"DR MANOJ R DESAI MD, TRUSTEE","717 W XENIA DR",,"FAIRBORN","OH","45324",,,,,,,"717 W XENIA DR",,"FAIRBORN","OH","45324",,,,,,,"310969955","9378784531","621111","MANOJ R DESAI MD FLEXIBLE PSP","DR MANOJ R DESAI MD, TRUSTEE","717 W XENIA DR",,"FAIRBORN","OH","45324",,,,,,,"310969955","9378784531",,,,"2011-07-29T13:21:07-0500","PHYLLIS LAKINS",,,,,2,2,,,2,,2,,,,"2A2E2F2G3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729173610P040478210304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DETEX CORPORATION DENTAL/VISION PLAN","506","2002-01-01","DETEX CORPORATION",,"VIRGINIA E MORALES","302 DETEX DRIVE",,"NEW BRAUNFELS","TX","78130",,,,,,,"302 DETEX DRIVE",,"NEW BRAUNFELS","TX","78130",,,,,,,"135028040","8306292900","334500","DETEX CORPORATION","VIRGINIA E MORALES","302 DETEX DRIVE",,"NEW BRAUNFELS","TX","78130",,,,,,,"135028040","8306292900",,,,"2011-07-29T17:33:50-0500","VIRGINIA MORALES","2011-07-29T17:34:29-0500","VIRGINIA MORALES",,,114,112,,,112,,112,,,,,"4D4E","1",,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729175849P040106022177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QUALITY ELECTRIC, INC. PROFIT SHARING PLAN","001","1970-08-01","QUALITY ELECTRIC INC",,,"5225 IRVING ST",,"BOISE","ID","837061209",,,,,,,,,,,,,,,,,,"820464457","2083751300","238210","QUALITY ELECTRIC INC","QUALITY ELECTRIC INC","5225 IRVING ST",,"BOISE","ID","837061209",,,,,,,"820464457","2083751300",,,,"2011-07-29T17:58:48-0500","JAY HINTZE",,,,,5,6,0,0,6,0,6,6,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110801082846P030104572801007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ACCORD INDUSTRIES 401(K) RETIREMENT PLAN","002","1997-01-01","WEIR SYSTEM INC. DBA ACCORD INDUSTRIES LLC",,,"4001 FORSYTH ROAD",,"WINTER PARK","FL","32792",,,,,,,,,,,,,,,,,,"593026723","4076717676","326100","WEIR SYSTEM INC. DBA ACCORD INDUSTRIES LLC",,"4001 FORSYTH ROAD",,"WINTER PARK","FL","32792",,,,,,,"593026723","4076717676",,,,"2011-08-01T04:07:08-0500","DEBBIE DEFORD",,,,,114,81,,6,87,1,88,86,4,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801084331P030104579825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEA RESEARCH FOUNDATION, INC. 401(K) PROFIT SHARING PLAN","002","1997-01-01","SEA RESEARCH FOUNDATION, INC. SHARING PLAN",,,"55 COOGAN BLVD",,"MYSTIC","CT","063551997",,,,,,,,,,,,,,,,,,"061480300","8605725955","813000","SEA RESEARCH FOUNDATION, INC. SHARING PLAN",,"55 COOGAN BLVD",,"MYSTIC","CT","063551997",,,,,,,"061480300","8605725955",,,,"2011-08-01T08:41:07-0500","DENISE H. ARMSTRONG","2011-08-01T08:41:07-0500","DENISE H. ARMSTRONG",,,179,205,,31,236,0,236,123,,,"2E3D2G2J2K3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729145927P030103063793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOOP LLC EMPLOYEES' BASIC LIFE AND LTD PLAN","502","1980-02-15","LOOP LLC",,,"137 NORTHPARK BLVD",,"COVINGTON","LA","70433",,,,,,,"137 NORTHPARK BLVD",,"COVINGTON","LA","70433",,,,,,,"721335490","9852766293","486000","LOOP LLC",,"137 NORTHPARK BLVD",,"COVINGTON","LA","70433",,,,,,,"721335490","9852766293",,,,"2011-07-29T14:58:50-0500","KIM KERR",,,,,147,145,,,145,,145,,,,,"4B4H4L","1",,,,"1",,,,,,,,,"1","3","1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729162036P040105959345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SANDIA LABORATORY FEDERAL CREDIT UNION GROUP VISION PLAN","505","2000-01-01","SANDIA LABORATORY FEDERAL CREDIT UNION",,,"3707 JUAN TABO NE",,"ALBUQUERQUE","NM","87111",,,,,,,,,,,,,,,,,,"850113445","8003675328","522130","SANDIA LABORATORY FEDERAL CREDIT UNION",,"3707 JUAN TABO NE",,"ALBUQUERQUE","NM","87111",,,,,,,"850113445","8003675328",,,,"2011-07-29T16:15:47-0500","CARLOS T. GRIEGO","2011-07-29T16:15:47-0500","CARLOS T. GRIEGO",,,240,239,,,239,,,,,,,"4E4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729150642P040105910161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHAW UNIVERSITYS DENTAL INSURANCE","502","2005-01-01","SHAW UNIVERSITY",,,"118 EAST SOUTH STREET",,"RALEIGH","NC","276012341",,,,,,,,,,,,,,,,,,"560530235","9195468300","611000","SHAW UNIVERSITY",,"118 EAST SOUTH STREET",,"RALEIGH","NC","276012341",,,,,,,"560530235","9195468300",,,,"2011-07-29T12:23:58-0500","DIANE CRAWFORD","2011-07-29T15:05:49-0500","MALCOLM WEEKES",,,303,292,4,0,296,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729182713P040106033537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAKE SUPERIOR SOFTWARE GROUP INSURANCE PLAN","501","2005-01-01","LAKE SUPERIOR SOFTWARE, INC.",,,"6423 CITY WEST PARKWAY",,"EDEN PRAIRIE","MN","55344",,,,,,,,,,,,,,,,,,"411430989","9529411000","541519","LAKE SUPERIOR SOFTWARE, INC.",,"6423 CITY WEST PARKWAY",,"EDEN PRAIRIE","MN","55344",,,,,,,"411430989","9529411000",,,,"2011-07-29T18:25:58-0500","BARBARA A. MANZOLILLO",,,,,185,193,4,0,197,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110801085613P030104586801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENTERPRISE RENT-A-CAR RETIREMENT SAVINGS PLAN OF PUERTO RICO","003","2006-10-01","THE CRAWFORD GROUP, INC",,,"600 CORPORATE PARK DRIVE",,"ST. LOUIS","MO","631054211",,,,,,,,,,,,,,,,,,"431233684","3145125000","532100","THE CRAWFORD GROUP, INC",,"600 CORPORATE PARK DRIVE",,"ST. LOUIS","MO","631054211",,,,,,,"431233684","3145125000",,,,"2011-08-01T08:26:58-0500","WILLIAM SNYDER",,,,,149,155,0,22,177,0,177,127,15,,"2E2F2G2T3C",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801093227P030015344946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHIFF HARDIN LLP EQUITY PARTNERS CASH BALANCE PLA N II","010","2004-01-01","SCHIFF HARDIN LLP",,,"233 SOUTH WACKER DRIVE, SUITE 6600",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"363184453","3122585500","541110","SCHIFF HARDIN LLP",,"233 SOUTH WACKER DRIVE, SUITE 6600",,"CHICAGO","IL","60606",,,,,,,"363184453","3122585500",,,,"2011-08-01T09:26:23-0500","KEVIN COWPERTHWAITE","2011-07-27T11:37:45-0500","ALLAN HORWICH",,,113,108,0,3,111,0,111,,0,,"1C1G3B1F2F",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801120034P040033858711002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"FINANCIAL FOUNDATIONS EMPLOYEES","001","1975-07-01","FINANCIAL FOUNDATION INC",,,"322 PARK LAUREATE DRIVE",,"HOUSTON","TX","77024",,,,,,,,,,,,,,,,,,"741709914","7134646464","531210","FINANCIAL FOUNDATION INC",,"322 PARK LAUREATE DRIVE",,"HOUSTON","TX","77024",,,,,,,"741709914","7134646464",,,,"2011-08-01T00:30:48-0500","H.W. JESSE JENCKES",,,,,1,0,0,0,0,,0,,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801120217P030489693104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADRIAN J. SAMPECK, D.D.S., INC. PROFIT SHARING PLAN","002","2001-01-01","ADRIAN J. SAMPECK, D.D.S., INC.",,,"8226 DOUGLAS AVENUE, #632",,"DALLAS","TX","75225",,,,,,,"8226 DOUGLAS AVENUE, STE. 632",,"DALLAS","TX","75225",,,,,,,"751321313","2143690900","621210","WAKE FINANCIAL GROUP, INC.",,"PO BOX 536029",,"GRAND PRAIRIE","TX","75053",,,,,,,"751961778","9726416636",,,,"2011-07-27T17:07:19-0500","SHARON WAKE","2011-08-01T11:24:10-0500","ADRIAN SAMPECK",,,2,1,0,1,2,0,2,2,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729142322P040477749248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MGM GRAND DETROIT, LLC BENEFIT PLAN","504","1999-03-01","MGM GRAND DETROIT, LLC",,,"1777 THIRD STREET",,"DETROIT","MI","482262561",,,,,,,,,,,,,,,,,,"911829052","3134651169","713200","MGM GRAND DETROIT, LLC",,"1777 THIRD STREET",,"DETROIT","MI","482262561",,,,,,,"911829052","3134651169",,,,"2011-07-29T14:22:14-0500","CYNTHIA MOEHRING","2011-07-29T14:22:14-0500","CYNTHIA MOEHRING",,,2565,2504,21,0,2525,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729201033P040015677810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTRAL WYOMING PHYSICIANS ORG. LLC EMPLOYEE LIFE BENEFIT PLAN","503","2004-01-01","CENTRAL WYOMING PHYSICIANS ORG. LLC",,,"6000 E 2ND STREET SUITE 2003",,"CASPER","WY","82609",,,,,,,,,,,,,,,,,,"830313436","3072372976","621111","CENTRAL WYOMING PHYSICIANS ORG. LLC",,"6000 E 2ND STREET SUITE 2003",,"CASPER","WY","82609",,,,,,,"830313436","3072372976",,,,"2011-07-29T20:10:18-0500","RHONDA WATTERS",,,,,177,120,0,0,120,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729164504P040105973217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ESPRIT LTD","504","1985-11-01","ESPRIT LTD","LOEWS VENTANA CANYON RESORT",,"7000 N. RESORT DRIVE",,"TUCSON","AZ","85750",,,,,,,"7000 N. RESORT DRIVE",,"TUCSON","AZ","85750",,,,,,,"860490683","5202992020","721110","ESPRIT LTD",,"7000 N. RESORT DRIVE",,"TUCSON","AZ","85750",,,,,,,"860490683","5202992020",,,,"2011-07-29T16:29:03-0500","BETH-EL KLEIN","2011-07-29T16:41:30-0500","MARY ANN PHILLIPS",,,290,180,0,0,180,0,180,,0,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729164509P030103114065001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WILLIAM A TRAFIDLO PA LAW OFF PSP DTD 10/19/00","002","2000-01-01","WILLIAM A TRAFIDLO PA LAW OFFICE",,,"1 CATE ST 203",,"PORTSMOUTH","NH","038017129",,,,,,,,,,,,,,,,,,"020527924","6034312159","541110","WILLIAM A TRAFIDLO PA LAW OFFICE",,"1 CATE ST 203",,"PORTSMOUTH","NH","038017129",,,,,,,"020527924","6034312159",,,,"2011-07-29T17:26:30-0500","WILLIAM A TRAFIDLO",,,,,1,1,0,0,1,0,1,1,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110801094230P040107484865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OKLAHOMA ROOFING & SHEET METAL, LLC 401-PW RETIREMENT PLAN","002","1996-08-01","OKLAHOMA ROOFING & SHEET METAL, LLC",,,"1708 SOUTH LOWRY",,"OKLAHOMA CITY","OK","73129",,,,,,,,,,,,,,,,,,"731183407","7056701429","238100","OKLAHOMA ROOFING & SHEET METAL, LLC",,"1708 SOUTH LOWRY",,"OKLAHOMA CITY","OK","73129",,,,,,,"731183407","7056701429",,,,"2011-08-01T09:41:56-0500","MARK KLIMOWSKI",,,,,148,111,0,32,143,0,143,120,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801095736P030104615121001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"UTILITIES REDUCTION SPECIALISTS, INC. 401(K) PLAN","001","1999-01-01","UTILITIES REDUCTION SPECIALISTS",,,"PO BOX 1810",,"CLEMMONS","NC","27012",,,,,,,,,,,,,,,,,,"562007967","3367667109","541990","UTILITIES REDUCTION SPECIALISTS",,"PO BOX 1810",,"CLEMMONS","NC","27012",,,,,,,"562007967","3367667109",,,,"2011-08-01T09:50:21-0500","TAMMY WILLIAMS","2011-08-01T09:56:30-0500","KENNETH BURKEL",,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729140749P040105871793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BIOGEN IDEC HEALTH AND WELFARE BENEFIT PLAN","501","1981-05-01","BIOGEN IDEC INC.",,,"133 BOSTON POST ROAD",,"WESTON","MA","02493",,,,,,,,,,,,,,,,,,"330112644","7814642000","325410","BIOGEN IDEC INC.",,"133 BOSTON POST ROAD",,"WESTON","MA","02493",,,,,,,"330112644","7814642000",,,,"2011-07-29T14:03:03-0500","SUSAN MCGOWAN","2011-07-29T14:03:03-0500","SUSAN MCGOWAN",,,3642,3633,,,3633,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729160853P030103095601001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"J.C. NEWMAN CIGAR EMPLOYEES SAVINGS PLAN","002","1989-01-01","J.C. NEWMAN CIGAR COMPANY",,,"2701 N. 16TH STREET",,"TAMPA","FL","33605",,,,,,,"2701 N. 16TH STREET",,"TAMPA","FL","33605",,,,,,,"590884171","8132482124","312200","J.C. NEWMAN CIGAR COMPANY",,"2701 N. 16TH STREET",,"TAMPA","FL","33605",,,,,,,"590884171","8132482124",,,,"2011-07-29T16:02:52-0500","SCOTT LEWIS",,,,,115,113,0,9,122,0,122,108,2,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729170719P040478158992001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REACH, INC. 401(K) PLAN","001","2004-07-01","REACH, INC",,,"213 THIRD ST.",,"JUNEAU","AK","99801",,,,,,,,,,,,,,,,,,"920070127","9075868228","624100","REACH, INC",,"213 THIRD ST.",,"JUNEAU","AK","99801",,,,,,,"920070127","9075868228",,,,"2011-07-29T16:56:17-0500","PEGGY SCHICK",,,,,306,279,0,19,298,0,298,147,9,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110801012032P030015310562001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","0","0","0","0",,"TELEDYNE CONTINENTAL MOTORS UNION 401(K) PLAN","003","2001-06-01","TELEDYNE TECHNOLOGIES INCORPORATED",,,"BENEFITS DEPT.","2039 BROAD STREET","MOBILE","AL","36615",,,,,,,,,,,,,,,,,,"251843385","2514368198","336300","TELEDYNE TECHNOLOGIES INCORPORATED",,"BENEFITS DEPT.","2039 BROAD STREET","MOBILE","AL","36615",,,,,,,"251843385","2514368198",,,,"2011-08-01T01:08:10-0500","ROBYN MCGOWAN",,,,,306,270,0,20,290,0,290,141,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801061403P040484727520001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAFEGUARD PROPERTIES, INC. FLEXIBLE SPENDING PLAN","501","2000-01-01","SAFEGUARD PROPERTIES, LLC",,,"7887 HUB PARKWAY",,"VALLEY VIEW","OH","44125",,,,,,,,,,,,,,,,,,"261503841","2167392900","531190","SAFEGUARD PROPERTIES, LLC",,"7887 HUB PARKWAY",,"VALLEY VIEW","OH","44125",,,,,,,"261503841","2167392900",,,,"2011-08-01T06:13:03-0500","AMY WING",,,,,114,109,0,0,109,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801091347P040015902066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE & HEALTH FOR EMPLOYEES OF BAY-HOUSTON TOWING COMPANY","501","1980-09-01","BAY-HOUSTON TOWING COMPANY",,,"P O BOX 3006",,"HOUSTON","TX","772533006",,,,,,,"2243 MILFORD",,"HOUSTON","TX","77098",,,,,,,"741071729","7135293755","483000","BAY-HOUSTON TOWING COMPANY",,"P O BOX 3006",,"HOUSTON","TX","772533006",,,,,,,"741071729","7135293755",,,,"2011-08-01T09:12:03-0500","JOY PRESSLER",,,,,59,56,2,,58,0,,0,0,0,,"4A4B4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801083117P030032928263001","2010-01-01","2010-12-31","3",,"0","0","0","0",,"1",,,,,"THE COLUMBIA ASSOCIATION, INC. INCENTIVE SAVINGS PLAN AND TRUST","003","1985-01-01","COLUMBIA ASSOCIATION, INC",,,"10221 WINCOPIN CIRCLE, SUITE 100",,"COLUMBIA","MD","210443410",,,,,,,"10221 WINCOPIN CIRCLE, SUITE 100",,"COLUMBIA","MD","210443410",,,,,,,"520823992","4107153131","813000","COLUMBIA ASSOCIATION, INC",,"10221 WINCOPIN CIRCLE, SUITE 100",,"COLUMBIA","MD","210443410",,,,,,,"520823992","4107153131",,,,"2011-08-01T08:30:42-0500","PAUL PAPAGJIKA",,,,,652,481,6,213,700,1,701,701,25,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801084931P030104583025008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE EMORY CLINIC, INC. RETIREMENT SAVINGS PLAN","002","2006-01-01","THE EMORY CLINIC, INC.",,,"550 PEACHTREE ST., WW ORR BLDG,","STE 719","ATLANTA","GA","303082247",,,,,,,,,,,,,,,,,,"582030692","4046866044","621111","THE EMORY CLINIC, INC.",,"550 PEACHTREE ST., WW ORR BLDG,","STE 719","ATLANTA","GA","303082247",,,,,,,"582030692","4046866044",,,,"2011-08-01T04:33:18-0500","WILLIAM J. APICELLI",,,,,2158,1825,7,431,2263,3,2266,1932,11,,"2G2L2M2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110729143239P040105888577001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SHIPMAN & GOODWIN LLP PROFIT SHARING RETIREMENT PLAN AND TRUST","001","1968-12-31","SHIPMAN & GOODWIN LLP",,,"ONE CONSTITUTION PLAZA",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"060640174","8602515000","541110","SHIPMAN & GOODWIN LLP",,"ONE CONSTITUTION PLAZA",,"HARTFORD","CT","06103",,,,,,,"060640174","8602515000",,,,"2011-07-29T10:20:28-0500","RICHARD I. COHEN","2011-07-29T10:20:28-0500","RICHARD I. COHEN",,,333,253,1,69,323,1,324,301,1,,"2E2F2G2J2R",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","3","1","1",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729150829P040105911393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHAW UNIVERSITYS GROUP LIFE/DISABILITY INSURANCE","503","2005-01-01","SHAW UNIVERSITY",,,"118 EAST SOUTH STREET",,"RALEIGH","NC","276012341",,,,,,,,,,,,,,,,,,"560530235","9195468300","611000","SHAW UNIVERSITY",,"118 EAST SOUTH STREET",,"RALEIGH","NC","276012341",,,,,,,"560530235","9195468300",,,,"2011-07-29T12:25:31-0500","DIANE CRAWFORD","2011-07-29T15:07:46-0500","MALCOLM WEEKES",,,335,334,0,0,334,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110730115657P030103537057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VISION PLAN FOR BKD, LLP","505","2001-07-01","BKD, LLP",,,"910 E. ST. LOUIS STREET, SUITE 400",,"SPRINGFIELD","MO","65806",,,,,,,"910 E. ST. LOUIS STREET, SUITE 400",,"SPRINGFIELD","MO","65806",,,,,,,"440160260","4178317283","541211","BKD, LLP",,"910 E. ST. LOUIS STREET, SUITE 400",,"SPRINGFIELD","MO","65806",,,,,,,"440160260","4178317283",,,,"2011-07-30T10:46:01-0500","BRAD BUEHLER",,,,,987,955,,,955,,955,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-30","Filed with authorized/valid electronic signature",, "20110801091519P040107473793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REICHEL REALTY & INVESTMENTS, INC. 401(K) SALARY REDUCTION PLAN & TRUST","001","1992-01-01","REICHEL REALTY & INVESTMENTS",,,"8845 N. MILITARY TRL","SUITE 100","PALM BEACH GARDENS","FL","33410",,,,,,,"8845 N. MILITARY TRL","SUITE 100","PALM BEACH GARDENS","FL","33410",,,,,,,"592758157","5614784440","531210","REICHEL REALTY & INVESTMENTS",,"8845 N. MILITARY TRL","SUITE 100","PALM BEACH GARDENS","FL","33410",,,,,,,"592758157","5614784440",,,,"2011-08-01T09:14:31-0500","JOHN WOLFE",,,,,9,8,0,0,8,0,8,8,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801091523P030015343218003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MCDONALD CONSTRUCTION CORP. GROUP LIFE & HEALTH INS PLAN FOR EMPLOYEES","502","1990-12-01","MCDONALD CONSTRUCTION CORPORATION",,,"P.O. BOX 5109",,"LAKELAND","FL","338075109",,,,,,,,,,,,,,,,,,"590975640","8636465763","237990","MCDONALD CONSTRUCTION CORPORATION",,"PO BOX 5109",,"LAKELAND","FL","338075109",,,,,,,"590975640","8636465763",,,,"2011-07-11T09:39:08-0500","WILEY JOHNSON","2011-07-11T09:39:22-0500","WILEY JOHNSON",,,152,203,,,203,,,,,,,"4A4B4L","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801093414P040015904034001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PICIS INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1999-01-01","PICIS INC.",,,"100 QUANNAPOWITT PARKWAY SUITE 405",,"WAKEFIELD","MA","01880",,,,,,,,,,,,,,,,,,"364375169","7815573161","541519","PICIS INC.",,"100 QUANNAPOWITT PARKWAY SUITE 405",,"WAKEFIELD","MA","01880",,,,,,,"364375169","7815573161",,,,"2011-08-01T09:33:54-0500","JAMES COPPENS",,,,,716,510,0,167,677,0,677,677,0,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110729145233P040477827312001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHIQUITA BRANDS INTERNATIONAL, INC. LONG TERM DISABILITY PLAN","503","1967-08-01","CHIQUITA BRANDS INTERNATIONAL, INC.",,,"250 EAST FIFTH STREET",,"CINCINNATI","OH","452024119",,,,,,,,,,,,,,,,,,"041923360","5137848000","424400","CHIQUITA BRANDS INTERNATIONAL, INC.",,"250 EAST FIFTH STREET",,"CINCINNATI","OH","452024119",,,,,,,"041923360","5137848000",,,,"2011-07-29T14:40:31-0500","DENNIS L. HICKS, DIRECTOR, BENEFITS","2011-07-29T14:40:31-0500","DENNIS L. HICKS, DIRECTOR, BENEFITS",,,2442,2285,26,,2311,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729144016P040105892721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VERMEER CORPORATION 401(K) RETIREMENT PLAN","001","1958-12-15","VERMEER CORPORATION",,,"P.O. BOX 200",,"PELLA","IA","502190200",,,,,,,"1210 VERMEER ROAD",,"PELLA","IA","502190200",,,,,,,"420663191","6416283141","333100","VERMEER CORPORATION",,"P.O. BOX 200",,"PELLA","IA","502190200",,,,,,,"420663191","6416283141",,,,"2011-07-29T14:38:58-0500","STEVE VAN DUSSELDORP","2011-07-29T14:38:58-0500","STEVE VAN DUSSELDORP",,,2307,1822,86,221,2129,7,2136,2087,43,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729161032P030032478855001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"AMERICAN APPRAISAL ASSOCIATES BENEFIT PLAN GROUP BUSINESS TRAVEL","501","1972-04-01","AMERICAN APPRAISAL ASSOCITES, INC.","AMERICAN APPRAISAL","DIANE BRADLEY","411 E WISCONSIN AVENUE","SUITE 1900","MILWAUKEE","WI","53202",,,,,,,"411 E WISCONSIN AVENUE","SUITE 1900","MILWAUKEE","WI","53202",,,,,,,"391137784","4142717240","541990","AMERICAN APPRAISAL ASSOCITES, INC.","DIANE BRADLEY","411 E WISCONSIN AVENUE","SUITE 1900","MILWAUKEE","WI","53202",,,,,,,"391137784","4142717240",,,,"2011-07-29T16:09:58-0500","DIANE BRADLEY",,,,,239,240,0,0,240,0,240,0,0,0,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729152118P040105919217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TAMINCO HIGHER AMINES, INC. VISION PLAN","502","2006-10-01","TAMINCO HIGHER AMINES, INC.",,,"TWO WINDSOR PLAZA, STE 411","7540 WINDSOR DRIVE","ALLENTOWN","PA","18195",,,,,,,,,,,,,,,,,,"510599327","6103666793","325100","TAMINCO HIGHER AMINES, INC.",,"TWO WINDSOR PLAZA, STE 411","7540 WINDSOR DRIVE","ALLENTOWN","PA","18195",,,,,,,"510599327","6103666793",,,,"2011-07-29T15:21:05-0500","GREG CHAJNACKI","2011-07-29T15:21:05-0500","GREG CHAJNACKI",,,180,159,3,0,162,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729165429P030103119425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHIFF HARDIN LLP SHORT TERM DISABILITY PLAN","505","1988-07-27","SCHIFF HARDIN LLP",,,"233 SOUTH WACKER DRIVE, SUITE 6600",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"363184453","3122585500","541110","SCHIFF HARDIN LLP",,"233 SOUTH WACKER DRIVE, SUITE 6600",,"CHICAGO","IL","60606",,,,,,,"363184453","3122585500",,,,"2011-07-29T16:29:32-0500","DARLA HANCOCK","2011-07-29T16:48:05-0500","RONALD SAFER",,,632,606,0,0,606,,,,,,,"4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801094817P040107487313001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HAILE, SHAW & PFAFFENBERGER, PA PROFIT SHARING PLAN","001","1997-01-01","HAILE, SHAW & PFAFFENBERGER, P",,,"660 US HIGHWAY 1, #3",,"NORTH PALM BEACH","FL","33408",,,,,,,,,,,,,,,,,,"592615636","5616278100","541110","HAILE, SHAW & PFAFFENBERGER, P",,"660 US HIGHWAY 1, #3",,"NORTH PALM BEACH","FL","33408",,,,,,,"592615636","5616278100","HAILE, SHAW & PFAFFENBERGER, PA",,,"2011-08-01T09:47:58-0500","PATTIE LOU MCELVY",,,,,32,30,0,5,35,0,35,26,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801101117P040015906386001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"KENOSHA BEEF 401(K) PLAN FOR BARGAINING EMPLOYEES","004","1997-01-01","KENOSHA BEEF INTERNATIONAL, LTD.",,,"P.O. BOX 639","3111 152ND AVENUE","KENOSHA","WI","53141",,,,,,,,,,,,,,,,,,"390994777","2628592272","311610","KENOSHA BEEF INTERNATIONAL, LTD.",,"P.O. BOX 639","3111 152ND AVENUE","KENOSHA","WI","53141",,,,,,,"390994777","2628592272",,,,"2011-08-01T10:10:35-0500","JEROME KING",,,,,296,343,0,17,360,0,360,193,15,,"2E2F2G2J2K3D3F3H2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801101851P040015907538001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"HEART HOSPITAL OF LAFAYETTE 401(K) PLAN","001","1994-01-01","HEART HOSPITAL OF LAFAYETTE, LLC",,,"1105 KALISTE SALOOM RD",,"LAFAYETTE","LA","705085705",,,,,,,,,,,,,,,,,,"300442368","3375211000","622000","HEART HOSPITAL OF LAFAYETTE, LLC",,"1105 KALISTE SALOOM RD",,"LAFAYETTE","LA","705085705",,,,,,,"300442368","3375211000",,,,"2011-08-01T10:18:48-0500","KAREN WYBLE","2011-08-01T10:18:48-0500","KAREN WYBLE",,,178,164,0,11,175,0,175,118,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729162516P030103104945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"SALS PARTY STORE INC EMPLOYEE MONEY PURCHASE PENSION PLAN","001","1994-01-01","SALS PARTY STORE INC",,,"PO BOX 194",,"FLUSHING","MI","48433",,,,,,,"PO BOX 194",,"FLUSHING","MI","48433",,,,,,,"382544383","8104719717","445120","SALS PARTY STORE INC",,"PO BOX 194",,"FLUSHING","MI","48433",,,,,,,"382544383","8104719717",,,,"2011-07-29T16:25:00-0500","MARJORIE LINKER",,,,,3,3,,,3,,3,,,,"2C3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729150346P030032468103001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOOP LLC EMPLOYEES EDUCATIONAL ASSISTANCE PLAN","503","1992-01-01","LOOP LLC",,,"137 NORTHPARK BLVD.",,"COVINGTON","LA","70433",,,,,,,"137 NORTHPARK BLVD.",,"COVINGTON","LA","70433",,,,,,,"721335490","9852766293","486000","LOOP LLC",,"137 NORTHPARK BLVD.",,"COVINGTON","LA","70433",,,,,,,"721335490","9852766293",,,,"2011-07-29T15:02:48-0500","KIM KERR",,,,,3,4,0,0,4,,4,,,,,"4K",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729154415P040105931617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARTIFACTS TRADING CO., INC. 401K PROFIT SHARING PLAN","002","2006-01-01","ARTIFACTS TRADING CO., INC.",,,"P.O. BOX 180050",,"CHICAGO","IL","606180526",,,,,,,,,,,,,,,,,,"361299462","3128500041","423990","ARTIFACTS TRADING CO., INC.",,"P.O. BOX 180050",,"CHICAGO","IL","606180526",,,,,,,"361299462","3128500041",,,,"2011-07-29T15:42:49-0500","NANCY BENJAMIN",,,,,3,2,0,1,3,,3,3,0,,"2A2E2G2J2K2F2T3D",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729172914P040478197936001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PB2 CAFETERIA PLAN","501","1992-01-01","PB2 COMPANIES, LTD",,,"710 WEST ROSELAWN",,"ROGERS","AR","72756",,,,,,,,,,,,,,,,,,"710805477","4796363545","541310","PB2 COMPANIES, LTD",,"710 WEST ROSELAWN",,"ROGERS","AR","72756",,,,,,,"710805477","4796363545",,,,"2011-07-29T17:10:33-0500","DOUG HURLEY",,,,,151,269,,,269,,269,,,,,"4A4B4D4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110801082006P040015897538001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PE AMERICAS LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","PE AMERICAS LLC",,,"344 BOYLSTON STREET, 3RD FLOOR",,"BOSTON","MA","02116",,,,,,,,,,,,,,,,,,"261610788","6172474477","541990","PE AMERICAS LLC",,"344 BOYLSTON STREET, 3RD FLOOR",,"BOSTON","MA","02116",,,,,,,"261610788","6172474477",,,,"2011-08-01T08:20:03-0500","PE AMERICAS LLC",,,,,9,19,0,0,19,0,19,14,0,,"2T2G2A3D2E2J2K",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801084931P030104583025009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EMORY HEALTHCARE, INC. RETIREMENT SAVINGS AND MATCHING PLAN","002","2003-01-01","EMORY HEALTHCARE, INC.",,,"550 PEACHTREE STREET","WW ORR BLDG. STE 719","ATLANTA","GA","303082247",,,,,,,,,,,,,,,,,,"582137993","4046866044","621111","EMORY HEALTHCARE, INC.",,"550 PEACHTREE STREET","WW ORR BLDG. STE 719","ATLANTA","GA","303082247",,,,,,,"582137993","4046866044",,,,"2011-08-01T04:36:08-0500","WILLIAM J. APICELLI",,,,,14514,14881,3,487,15371,7,15378,10390,99,,"2G2L2M2R2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801085234P030015342338001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VISITING NURSE SERVICES OF NEWPORT & BRISTOL COUNTIES LIFE & DISABILITY PLAN","501","2010-01-01","VISITING NURSE SERVICES OF NEWPORT & BRISTOL COUNTIES",,,"1184 EAST MAIN ROAD","PO BOX 690","PORTSMOUTH","RI","02871",,,,,,,"1184 EAST MAIN ROAD","PO BOX 690","PORTSMOUTH","RI","02871",,,,,,,"050258915","4016822100","621610","VISITING NURSE SERVICES OF NEWPORT & BRISTOL COUNTIES",,"1184 EAST MAIN ROAD","PO BOX 690","PORTSMOUTH","RI","02871",,,,,,,"050258915","4016822100",,,,"2011-08-01T08:45:56-0500","JEAN ANDERSON",,,,,101,110,,,110,,110,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110729160149P040478011520001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILDTANGENT 401(K) PLAN","001","2002-01-01","WILDTANGENT, INC.",,,"18578 NE 67TH COURT BLDG 5","REDMOND EAST OFFICE COMPLEX","REDMOND","WA","980526711",,,,,,,,,,,,,,,,,,"911906058","4254974500","541519","WILDTANGENT, INC.",,"18578 NE 67TH COURT BLDG 5","REDMOND EAST OFFICE COMPLEX","REDMOND","WA","980526711",,,,,,,"911906058","4254974500",,,,"2011-07-29T16:01:37-0500","HUI CHONG",,,,,129,115,0,25,140,0,140,75,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729150853P040002984276001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"HOLLANDER HOME FASHIONS LLC UNION EMPLOYEES WELFARE PLAN EXCLUDING PENNSYLVANIA LOCATION EMPLOYEES","504","2002-01-01","HOLLANDER HOME FASHIONS LLC",,,"6560 W. ROGERS CIRCLE, SUITE 19",,"BOCA RATON","FL","334872746",,,,,,,,,,,,,,,,,,"270542143","5619976900","314000","HOLLANDER HOME FASHIONS LLC",,"6560 W. ROGERS CIRCLE, SUITE 19",,"BOCA RATON","FL","334872746",,,,,,,"270542143","5619976900",,,,"2011-07-29T15:08:10-0500","MICHELLE EISNER",,,,,119,210,0,0,210,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729185826P040106050161001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"GLOBAL CLOSURE SYSTEMS - VISION AND EMPLOYEE ASSISTANCE PROGRAM","502","2001-09-01","GLOBAL CLOSURE SYSTEMS",,,"1515 FRANKLIN BOULEVARD",,"LIBERTYVILLE","IL","60048",,,,,,,,,,,,,,,,,,"203452025","8472477905","326100","GLOBAL CLOSURE SYSTEMS",,"1515 FRANKLIN BOULEVARD",,"LIBERTYVILLE","IL","60048",,,,,,,"203452025","8472477905",,,,"2011-07-29T18:57:29-0500","SHARON PIERCE",,,,,218,216,0,0,216,,,,,,,"4E4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729174752P040478229264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FOOTHILL CARDIOLOGY PROFIT SHARING/401(K) AND HEALTH/DISABILITY PLAN AND TRUST","001","1999-01-01","FOOTHILL CARDIOLOGY/CALIFORNIA HEART MEDICAL GROUP, INC.",,,"145 VISTA AVENUE, SUITE 111",,"PASADENA","CA","91107",,,,,,,,,,,,,,,,,,"953350882","6267932885","621111","FOOTHILL CARDIOLOGY/CALIFORNIA HEART MEDICAL GROUP, INC.",,"145 VISTA AVENUE, SUITE 111",,"PASADENA","CA","91107",,,,,,,"953350882","6267932885",,,,"2011-07-29T17:45:24-0500","MAYER RASHTIAN",,,,,138,107,0,31,138,0,138,138,0,,"2A2E2F2G2J2R2S2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729183313P040106035665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EXCHANGE BANK GROUP HEALTH AND WELFARE PLAN","502","1967-01-06","EXCHANGE BANK",,,"PO BOX 403","533 5TH STREET","SANTA ROSA","CA","95402",,,,,,,,,,,,,,,,,,"940463800","7075243130","522110","EXCHANGE BANK",,"PO BOX 403","533 5TH STREET","SANTA ROSA","CA","95402",,,,,,,"940463800","7075243130",,,,"2011-07-29T18:33:08-0500","LORI T. ZARET",,,,,351,313,8,0,321,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729183432P040003207491001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMCOR PACKAGING DISTRIBUTION WELFARE BENEFITS PLAN","501","1995-10-01","AMCOR PACKAGING DISTRIBUTION",,,"6600 VALLEY VIEW STREET",,"BUENA PARK","CA","90620",,,,,,,,,,,,,,,,,,"951683793","7145626000","424100","AMCOR PACKAGING DISTRIBUTION",,"6600 VALLEY VIEW STREET",,"BUENA PARK","CA","90620",,,,,,,"951683793","7145626000",,,,"2011-07-29T18:34:18-0500","TONDA ISAAE JONES",,,,,1830,1871,23,0,1894,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110730163108P040480660464007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EDUCATION AFFILIATES INC WELFARE BENEFIT PLAN","508","2007-01-01","EDUCATION AFFILIATES INC",,,"5026-D CAMPBELL BOULEVARD",,"BALTIMORE","MD","21236",,,,,,,,,,,,,,,,,,"201720350","4106332929","611000","EDUCATION AFFILIATES INC",,"5026-D CAMPBELL BOULEVARD",,"BALTIMORE","MD","21236",,,,,,,"201720350","4106332929",,,,"2011-07-29T15:35:23-0500","DJ VAIL",,,,,1173,2182,17,,2199,,2199,,,,,"4Q4H4E4D4B4A","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-07-30","Filed with authorized/valid electronic signature",, "20110730133007P040106483313002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"H & S FARM SUPPLY, LLC 401(K)PROFIT SHARING PLAN","002","2003-01-01","H & S FARM SUPPLY, LLC",,"WILLIAM R. HOLBROOK","P.O. BOX 350",,"MORGANFIELD","KY","42437",,,,,,,,,,,,,,,,,,"311537138","2703893593","424500","H & S FARM SUPPLY, LLC",,"P.O. BOX 350",,"MORGANFIELD","KY","42437",,,,,,,"311537138","2703893593",,,,"2011-07-30T14:17:45-0500","WILLIAM R. HOLBROOK","2011-07-30T14:17:57-0500","WILLIAM R. HOLBROOK",,,6,5,0,2,7,0,7,7,,,"2E2F2G2R2J2K3B3D",,"1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-07-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801093737P040107483169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAMMERBAE HOLDINGS INCORPORATED 401K PLAN","001","2007-09-28","HAMMERBAE HOLDINGS INCORPORATED",,,"8118 VIBURNUM CT",,"TALLAHASSEE","FL","323125701",,,,,,,,,,,,,,,,,,"261189655","8508933017","561430","HAMMERBAE HOLDINGS INCORPORATED",,"8118 VIBURNUM CT",,"TALLAHASSEE","FL","323125701",,,,,,,"261189655","8508933017",,,,"2011-08-01T09:36:33-0500","JOSEPH MEROLA","2011-08-01T09:36:33-0500","JOSEPH MEROLA",,,6,4,0,0,4,0,4,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801124409P040107587265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCGIVNEY & KLUGER, PC 401(K) PLAN","001","1998-02-01","MCGIVNEY & KLUGER, PC",,,"23 VREELAND ROAD, SUITE 220",,"FLORHAM PARK","NJ","07932",,,,,,,"23 VREELAND ROAD, SUITE 220",,"FLORHAM PARK","NJ","07932",,,,,,,"223341493","9738221110","541110","MCGIVNEY & KLUGER, PC",,"23 VREELAND ROAD, SUITE 220",,"FLORHAM PARK","NJ","07932",,,,,,,"223341493","9738221110",,,,"2011-08-01T12:26:56-0500","KEVIN CAVANAUGH",,,,,208,217,0,11,228,0,228,94,5,,"2A2E2G2J2K2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1",,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110729145508P030103061089001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"BALFOUR SENIOR CARE LLC LIFE AND AD&D PLAN","503","2010-01-01","BALFOUR SENIOR CARE LLC",,,"1855 PLAZA DRIVE",,"LOUISVILLE","CO","80027",,,,,,,"1855 PLAZA DRIVE",,"LOUISVILLE","CO","80027",,,,,,,"841452859","3039263936","623000","BALFOUR SENIOR CARE LLC",,"1855 PLAZA DRIVE",,"LOUISVILLE","CO","80027",,,,,,,"841452859","3039263936",,,,"2011-07-29T14:54:32-0500","JANE DRURY",,,,,172,195,,,195,,195,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729152219P030103076929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAXON DRILLING EMPLOYEE HEALTH PLAN","501","2008-01-01","SAXON DRILLING L.P.",,,"1500 MUSEUM ROAD SUITE 105",,"CONWAY","AR","72032",,,,,,,"1500 MUSEUM ROAD SUITE 105",,"CONWAY","AR","72032",,,,,,,"203982936","5015131800","211110","SAXON DRILLING L.P.",,"SAME",,"SAME","AR","72032",,,,,,,"203982936","2015131800",,,,"2011-07-29T15:21:44-0500","DENNIS J. LUCE","2011-07-29T15:21:44-0500","DENNIS J. LUCE",,,839,372,,,372,,,,,,,"4A4D4E4B4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801095210P030489389872001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HOWARD HUEY DO, PC STANDARDIZED PROFIT SHARING PLAN","002","2001-01-01","HOWARD HUEY DO, PC",,,"180 PARK ROW","WEST LOBBY","NEW YORK","NY","10038",,,,,,,,,,,,,,,,,,"134165033","2122672481","621111","HOWARD HUEY",,"180 PARK ROW","WEST LOBBY","NEW YORK","NY","10038",,,,,,,"134165033","2122672481",,,,"2011-07-30T18:54:37-0500","HOWARD HUEY",,,,,5,4,,1,5,,5,,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801102134P030489458768001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","0","0","0","0",,"ELIM DENTAL PLAN","502","1996-09-01","ELIM CHRISTIAN SERVICES",,,"13020 S. CENTRAL AVE.",,"PALOS HEIGHTS","IL","60463",,,,,,,,,,,,,,,,,,"362276614","7083890555","611000","THE GUARDIAN LIFE INSURANCE COMPANY OF AMERICA",,"PO BOX 8012",,"APPLETON","WI","54913",,,,,,,"135123390","8006274200",,,,"2011-08-01T10:02:07-0500","ROBERT HOOKER",,,,,261,245,2,0,247,0,247,0,0,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110729154945P040003205187001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN MCGALEY, MD MONEY PURCHASE PLAN","001","1974-09-01","JOHN MCGALEY, MD MONEY PURCHASE PLAN",,,"85 COLD SPRING ROAD",,"SYOSSET","NY","117913109",,,,,,,,,,,,,,,,,,"112633047","5169211240","621111","JOHN MCGALEY, MD MONEY PURCHASE PLAN",,"85 COLD SPRING ROAD",,"SYOSSET","NY","117913109",,,,,,,"112633047","5169211240",,,,"2011-07-21T06:37:48-0500","JOHN MCGALEY, MD",,,,,3,3,,,3,,3,3,,,"2C2G3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729164816P040003206563001","2010-06-22","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"SANGO SIERRA, INC. PROFIT SHARING PLAN","001","2010-06-22","SANGO SIERRA, INC.",,,"5890 S VIRGINA ST",,"RENO","NV","89502",,,,,,,,,,,,,,,,,,"800447747","7757700101","812320","SANGO SIERRA, INC.",,"5890 S VIRGINA ST",,"RENO","NV","89502",,,,,,,"800447747","7757700101",,,,"2011-07-29T16:47:29-0500","EUGENE SANGUINETTI",,,,,2,2,,,2,,2,2,,,"2G3D2E2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729171147P030482419696005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALYESKA PIPELINE SERVICE CO. VOLUNTARY PERSONAL ACCIDENT INSURANCE PLAN","505","1976-07-01","ALYESKA PIPELINE SERVICE COMPANY",,"ATTN TAX DEPT.","900 EAST BENSON BLVD.",,"ANCHORAGE","AK","995196660",,,,,,,,,,,,,,,,,,"920039154","9077878763","486000","ALYESKA PIPELINE SERVICE COMPANY","ATTN TAX DEPT.","900 EAST BENSON BLVD.",,"ANCHORAGE","AK","995196660",,,,,,,"920039154","9077878763",,,,"2011-07-29T08:27:26-0500","TIMOTHY ADAMCZAK",,,,,521,1063,,,1063,,,,,,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110801102836P030015348290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OHIO ALUMINUM INDUSTRIES, INC. EMPLOYEE BENEFIT PLAN","501","2003-01-01","OHIO ALUMINUM INDUSTRIES, INC.",,,"4840 WARNER ROAD",,"CLEVELAND","OH","44125",,,,,,,,,,,,,,,,,,"341052514","2166418865","331310","OHIO ALUMINUM INDUSTRIES, INC.",,"4840 WARNER ROAD",,"CLEVELAND","OH","44125",,,,,,,"341052514","2166418865",,,,"2011-08-01T10:26:26-0500","JAMES HERKNER",,,,,115,108,0,0,108,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801104028P030104632065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE HEALTH CENTERS THE HEALTH CENTER 0F WINDERMERE","504","2004-01-01","THE HEALTH CENTER 0F WINDERMERE",,,"4875 CASON COVE DRIVE",,"ORLANDO","FL","32811",,,,,,,,,,,,,,,,,,"593664423","4074202090","623000","ROSS BAIRD","THE HEALTH CENTER OF WINDERMERE","4875 CASON COVE DRIVE",,"ORLANDO","FL","32811",,,,,,,"593664423","4074202090",,,,"2011-08-01T10:40:03-0500","ROSS BAIRD",,,,,117,120,0,0,120,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801132218P040015923090001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"SOUTHWIRE COMPANY HOURLY PENSION PLAN","013","2002-01-01","SOUTHWIRE COMPANY",,,"1 SOUTHWIRE DRIVE",,"CARROLLTON","GA","301194400",,,,,,,,,,,,,,,,,,"582020515","7778324053","334410","SOUTHWIRE COMPANY",,"1 SOUTHWIRE DRIVE",,"CARROLLTON","GA","301194400",,,,,,,"582020515","7778324053",,,,"2011-08-01T13:22:00-0500","GUYTON COCHRAN","2011-08-01T13:11:53-0500","GUYTON COCHRAN",,,3458,3182,257,564,4003,22,4025,,323,,"1B1G3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801132250P040107605217001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"INDUSTRIAL PLATING COMPANY, INC. 401(K) PLAN","001","1983-01-01","INDUSTRIAL PLATING CO. INC.",,,"P. O. BOX 16655",,"CHATTANOOGA","TN","37416",,,,,,,,,,,,,,,,,,"620797505","6153534920","332810","INDUSTRIAL PLATING CO. INC.",,"P. O. BOX 16655",,"CHATTANOOGA","TN","37416",,,,,,,"620797505","6153534920",,,,"2011-08-01T13:22:27-0500","THOMAS LUNN",,,,,19,18,0,0,18,0,18,17,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110730171436P040106563489001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SANGRE DE CRISTO ARTS CENTER 403 (B) PLAN","001","1980-01-01","SANGRE DE CRISTO ARTS & CONFERENCE CENTER, INC.",,"ROCHELLE SPOONE","210 N. SANTA FE AVENUE",,"PUEBLO","CO","81003",,,,,,,"210 N. SANTA FE AVENUE",,"PUEBLO","CO","81003",,,,,,,"840624551","7192957214","712100","SANGRE DE CRISTO ARTS & CONFERENCE CENTER, INC.","ROCHELLE SPOONE","210 N. SANTA FE AVENUE",,"PUEBLO","CO","81003",,,,,,,"840624551","7192957214",,,,"2011-07-30T17:10:19-0500","ROCHELLE SPOONE",,,,,12,8,0,0,8,0,8,13,0,,"2L",,"0",,"1",,,,"1",,,,,"0",,"1","1","1","1",,"FILING_RECEIVED","2011-07-30","Filed with authorized/valid electronic signature",, "20110729142928P040015648402001","2004-12-01","2004-12-31","2",,"0","0","1","1","0","0","0","1","0",,"GROUP MEDICAL & DENTAL","501","1995-12-02","ECOLOGY CONTROL INDUSTRIES, INC.",,,"20846 NORMANDIE AVE",,"TORRANCE","CA","905021601",,,,,,,,,,,,,,,,,,"770217403","6617239956","562000","SAME",,,,,,,,,,,,,"770217403","3103549999",,,,"2011-07-29T14:29:27-0500","BRIAN PYEATT",,,,,,118,,,118,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729151855P040105917569010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MARTIN FLOORING COMPANY INC. PROFIT SHARING PLAN","001","1991-01-01","MARTIN FLOORING COMPANY, INC.",,,"7828 ST. ANDREWS CHURCH ROAD",,"LOUISVILLE","KY","40214",,,,,,,,,,,,,,,,,,"611441038","5029353831","442210","MARTIN FLOORING COMPANY, INC.",,"7828 ST. ANDREWS CHURCH ROAD",,"LOUISVILLE","KY","40214",,,,,,,"611441038","5029353831",,,,"2011-07-29T09:00:02-0500","LARRY MARTIN",,,,,22,20,,,20,,20,20,2,,"2A2E2G2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729152950P030103080209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LONG TERM DISABILITY PLAN","505","1983-12-01","FARMERS MUTUAL INSURANCE COMPANY OF NEBRASKA",,,"1220 LINCOLN MALL",,"LINCOLN","NE","68501",,,,,,,"1220 LINCOLN MALL",,"LINCOLN","NE","68501",,,,,,,"470157205","4024348360","524150","FARMERS MUTUAL INSURANCE COMPANY OF NEBRASKA",,"1220 LINCOLN MALL",,"LINCOLN","NE","68501",,,,,,,"470157205","4024348360",,,,"2011-07-29T15:29:31-0500","JOSETTE DALTON",,,,,185,183,0,0,183,,183,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729150921P040105912209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOFTWARE AG USA, INC. WELFARE BENEFITS PLAN","506","1980-08-01","SOFTWARE AG USA, INC.",,,"11700 PLAZA AMERICA DRIVE","SUITE 700","RESTON","VA","201915424",,,,,,,,,,,,,,,,,,"541807654","7038605050","518210","SOFTWARE AG USA, INC.",,"11700 PLAZA AMERICA DRIVE","SUITE 700","RESTON","VA","201915424",,,,,,,"541807654","7038605050",,,,"2011-07-29T15:08:40-0500","MARK MOSCATO",,,,,615,554,12,0,566,,,,,,,"4A4B4D4E4G4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729182016P040106031281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MERCY CORPS HEALTH AND WELFARE PLAN","501","1996-03-01","MERCY CORPS",,,"45 SW ANKENY STREET",,"PORTLAND","OR","97204",,,,,,,,,,,,,,,,,,"911148123","5038965709","624200","MERCY CORPS",,"45 SW ANKENY STREET",,"PORTLAND","OR","97204",,,,,,,"911148123","5038965709",,,,"2011-07-29T18:20:02-0500","JESSICA CARL",,,,,282,299,0,0,299,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110801090432P030104591153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PERFORMANCE MANAGEMENT GROUP 401(K) PLAN","001","2005-01-01","PERFORMANCE MANAGEMENT GROUP, LLC",,,"1816 WALL STREET",,"FLORENCE","SC","29501",,,,,,,"PERFORMANCE MANQAGEMENT GROUP, LLC","1816 WALL STREET","FLORENCE","SC","29501",,,,,,,"200246040","8436620728","551112","PERFORMANCE MANAGEMENT GROUP, LLC",,"1816 WALL STREET",,"FLORENCE","SC","29501",,,,,,,"200246040","8436620728",,,,"2011-07-29T08:51:50-0500","BRITT POSTON",,,,,138,139,2,10,151,0,151,73,4,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801092456P040107478593001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GROUP VISION PLAN","515","2007-01-01","NEW SOUTH COMPANIES, INC.",,,"3700 CLAYPOND ROAD",,"MYRTLE BEACH","SC","295797327",,,,,,,,,,,,,,,,,,"571128614","8432369399","321110","NEW SOUTH COMPANIES, INC.",,"3700 CLAYPOND ROAD",,"MYRTLE BEACH","SC","295797327",,,,,,,"571128614","8432369399",,,,"2011-08-01T09:24:31-0500","HENRY K. THOMAS","2011-08-01T09:24:31-0500","HENRY K. THOMAS",,,251,0,0,0,0,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729144735P040015649762001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DNS CONTRACTORS, INC. RETIREMENT SAVINGS PLAN","011","2000-01-01","DNS CONTRACTORS, INC.",,,"40125 ARAVE CIRCLE",,"HEMET","CA","92543",,,,,,,,,,,,,,,,,,"522363382","9516580787","238900","DNS CONTRACTORS, INC.",,"40125 ARAVE CIRCLE",,"HEMET","CA","92543",,,,,,,"522363382","9516580787",,,,"2011-07-29T14:38:24-0500","JENNIFER ROSENBAUM",,,,,22,32,0,7,39,0,39,21,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729145818P040477844256001","2010-01-01","2010-12-31","2",,"1","0","1","0","0","0","0","0","0",,"PATHS OF PROGRESS, INC. 401(K) PROFIT SHARING PLAN","001","2009-03-11","PATHS OF PROGRESS, INC.",,,"737 LINDSEY LN.",,"BOLINGBROOK","IL","60440",,,,,,,,,,,,,,,,,,"264433173","6307125328","561900","PATHS OF PROGRESS, INC.",,"737 LINDSEY LN.",,"BOLINGBROOK","IL","60440",,,,,,,"264433163","6307125328",,,,"2011-07-29T14:57:54-0500","BILL WOKAS",,,,,1,0,0,0,0,0,0,0,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729163212P030103107361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"A. FINKL & SONS CO. HEALTH & ACCIDENT FOR ELIGIBLE OFFICE EMPLOYEES","501","1977-10-01","A. FINKL & SONS COMPANY",,,"2011 N. SOUTHPORT AVE",,"CHICAGO","IL","60614",,,,,,,"2011 N. SOUTHPORT AVE",,"CHICAGO","IL","60614",,,,,,,"362815417","7739752500","332110","STEVE DENTEN",,"2011 N. SOUTHPORT AVE",,"CHICAGO","IL","60614",,,,,,,"362815417","7739752562",,,,"2011-07-29T16:30:31-0500","STEVE DENTEN",,,,,122,107,13,2,122,,122,,,,,"4D",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729152409P040477908912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAE MANAGEMENT GROUP, INC. 401(K) PLAN","001","2009-03-30","PAE MANAGEMENT GROUP, INC.",,,"7507 LAKE ALICE RD SE",,"FALL CITY","WA","98024",,,,,,,,,,,,,,,,,,"264559270","4252226111","541600","PAE MANAGEMENT GROUP, INC.",,"7507 LAKE ALICE RD SE",,"FALL CITY","WA","98024",,,,,,,"264559270","4252226111",,,,"2011-07-29T15:14:49-0500","PETER A. EMSKY",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729191101P030003033171001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHAKRA COMMUNICATIONS INC INSURANCE DEDUCTIBLE REIMBURSEMENT PLAN (HRA)","504","2009-01-01","CHAKRA COMMUNICATIONS, INC.",,,"80 WEST DRULLARD AVE",,"LANCASTER","NY","14086",,,,,,,"80 WEST DRULLARD AVE",,"LANCASTER","NY","14086",,,,,,,"205648554","7165057300","323100","CHAKRA COMMUNICATIONS, INC.",,"80 WEST DRULLARD AVE",,"LANCASTER","NY","14086",,,,,,,"205648554","7165057300",,,,"2011-07-29T19:05:40-0500","SHARIQUE ANSARI",,,,,32,21,0,0,21,0,21,0,0,,,"4A4R",,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729164300P040105972193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMSON INC. EMPLOYEE BENEFIT PLAN","501","1988-01-01","TECHNICOLOR USA, INC.",,,"101 WEST 103RD STREET",,"INDIANAPOLIS","IN","462901102",,,,,,,,,,,,,,,,,,"351724835","3175873000","334310","TECHNICOLOR USA, INC.",,"101 WEST 103RD STREET",,"INDIANAPOLIS","IN","462901102",,,,,,,"351724835","3175873000","THOMSON INC.","351724835","501","2011-07-29T16:42:50-0500","ERIK PIENKOS - AS PRACTITIONER",,,,,12417,5581,681,4586,10848,,,,,,,"4A4B4D4E4F4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110730180109P030103663889001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JVP CONSULTING INC EMPLOYEES SAVINGS PLAN & TRUST","001","2000-06-01","JVP CONSULTING, INC",,,"156 FIFTH AVENUE SUITE 410",,"NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"061510494","2124795100","523900","JVP CONSULTING INC",,"156 FIFTH AVENUE SUITE 410",,"NEW YORK","NY","10010",,,,,,,"061510494","2124795100",,,,"2011-07-30T14:02:31-0500","RONIT DULBERG",,,,,5,2,,3,5,,5,5,,,"2J2G2E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-30","Filed with authorized/valid electronic signature",, "20110730150557P030003046483001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOK-N-LOGS, INC. GROUP INSURANCE PLAN LTD","502","1988-04-01","LOK-N-LOGS, INC.",,,"P. O. BOX 677","1066 COUNTY ROAD 23","SHERBURNE","NY","13460",,,,,,,"P. O. BOX 677","1066 COUNTY ROAD 23","SHERBURNE","NY","13460",,,,,,,"161038242","6076742592","444130","LOK-N-LOGS, INC.",,"P. O. BOX 677","1066 COUNTY ROAD 23","SHERBURNE","NY","13460",,,,,,,"161038242","6076742592",,,,"2011-07-30T15:02:43-0500","LISA NELSON","2011-07-30T15:03:46-0500","LISA NELSON",,,29,18,0,0,18,0,18,0,0,,,"4H","1",,,,"1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801123628P040107583089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHERN HILLS COUNSELING CENTER EMPLOYEE BENEFIT PLAN","501","1998-03-01","SOUTHERN HILLS COUNSELING CENTER",,,"480 EVERSMAN DRIVE",,"JASPER","IN","47546",,,,,,,"480 EVERSMAN DRIVE",,"JASPER","IN","47546",,,,,,,"351148518","8124823020","621112","SOUTHERN HILLS COUNSELING CENTER",,"480 EVERSMAN DRIVE",,"JASPER","IN","47546",,,,,,,"351148518","8124823020",,,,"2011-08-01T12:33:28-0500","RICHARD WHITAKER",,,,,82,82,,,82,,82,,,,,"4A","1",,,,"1",,,,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110729143046P040105887345001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"ELY-BLOOMENSON COMMUNITY HOSPITAL AND NURSING HOME CORPORATION TAX DEFERRED ANNUITY PLAN","010","2009-01-01","ELY-BLOOMENSON COMMUNITY HOSPITAL AND NURSING HOME CORPORATION",,,"328 W CONAN ST",,"ELY","MN","55731",,,,,,,,,,,,,,,,,,"410808719","2183658709","622000","ELY-BLOOMENSON COMMUNITY HOSPITAL AND NURSING HOME CORPORATION",,"328 W CONAN ST",,"ELY","MN","55731",,,,,,,"410808719","2183658709",,,,"2011-07-29T14:30:14-0500","JOHN FOSSUM","2011-07-29T14:30:14-0500","JOHN FOSSUM",,,184,139,0,33,172,0,172,153,0,,"2F2G2L2T",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729154037P030103084673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"A AND J WINDOW COMPANY INC. PROFIT SHARING PLAN","001","2001-01-01","A AND J WINDOW COMPANY INC.",,,"15 CARR ROAD",,"SAUGUS","MA","01906",,,,,,,"15 CARR ROAD",,"SAUGUS","MA","01906",,,,,,,"043228717","7812331098","238900","A AND J WINDOW COMPANY INC.",,"15 CARR ROAD",,"SAUGUS","MA","01906",,,,,,,"043228717","7812331098",,,,"2011-07-29T15:39:42-0500","PHILLIP CHRISTOFI",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729191531P030103182113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHILIP R LAYNE PSP PLAN 706192","001","1973-01-01","PHILIP R LAYNE",,,"150 YORK ROAD",,"MANSFIELD","MA","02048",,,,,,,"150 YORK ROAD",,"MANSFIELD","MA","02048",,,,,,,"046310235","5082616102","621391","PHILIP R LAYNE",,"150 YORK ROAD",,"MANSFIELD","MA","02048",,,,,,,"046310235","5082616102",,,,"2011-07-29T18:30:00-0500","PHILIP LAYNE",,,,,2,0,0,2,2,0,2,2,0,,"2E2G3B3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729192725P040106062289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT A. YAGER DEFINED BENEFIT PENSION PLAN","001","2001-01-01","ROBERT A. YAGER","WALNUT STREET SECURITIES",,"4820 HARWOOD ROAD, SUITE 240",,"SAN JOSE","CA","951245200",,,,,,,,,,,,,,,,,,"770537778","4089782214","523120","ROBERT A. YAGER",,"4820 HARWOOD ROAD, SUITE 240",,"SAN JOSE","CA","951245200",,,,,,,"770537778","4089782214",,,,"2011-07-29T19:27:04-0500","ROBERT A. YAGER",,,,,2,2,0,0,2,0,2,,0,,"1A1G3B3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729164418P030103113313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ESPRIT LTD","503","1985-11-01","ESPRIT LTD","LOEWS VENTANA CANYON RESORT",,"7000 N. RESORT DRIVE",,"TUCSON","AZ","85750",,,,,,,"7000 N. RESORT DRIVE",,"TUCSON","AZ","85750",,,,,,,"860490683","5202992020","721110","ESPRIT LTD",,"7000 N. RESORT DRIVE",,"TUCSON","AZ","85750",,,,,,,"860490683","5202992020",,,,"2011-07-29T16:33:28-0500","BETH-EL KLEIN","2011-07-29T16:42:20-0500","MARY ANN PHILLIPS",,,290,268,0,0,268,0,268,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110729170639P030103124833009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALYESKA PIPELINE SERVICE CO. GROUP LIFE INSURANCE","504","1996-07-01","ALYESKA PIPELINE SERVICE COMPANY",,,"900 EAST BENSON BLVD.",,"ANCHORAGE","AK","99519",,,,,,,,,,,,,,,,,,"920039154","9077878763","486000","ALYESKA PIPELINE SERVICE COMPANY",,"900 EAST BENSON BLVD.",,"ANCHORAGE","AK","99519",,,,,,,"920039154","9077878763",,,,"2011-07-29T08:49:14-0500","TIMOTHY ADAMCZAK",,,,,1179,733,55,,788,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110729171455P040003206819001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMSON INC. PENSION PLAN FOR EMPLOYEES","002","1988-01-01","TECHNICOLOR USA, INC.",,,"101 WEST 103RD STREET",,"INDIANAPOLIS","IN","462901102",,,,,,,,,,,,,,,,,,"351724835","3175873000","334310","TECHNICOLOR USA, INC.",,"101 WEST 103RD STREET",,"INDIANAPOLIS","IN","462901102",,,,,,,"351724835","3175873000","THOMSON INC.","351724835","002","2011-07-29T17:14:41-0500","ERIK PIENKOS - AS PRACTITIONER",,,,,2891,701,268,1240,2209,30,2239,,27,,"1C1G3F3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110730104417P040106418993001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MCHENRY COUNTY NURSERY INC 401(K) PLAN","001","1996-01-01","MCHENRY COUNTY NURSERY INC",,,"8501 WHITE OAKS RD",,"HARVARD","IL","60033",,,,,,,,,,,,,,,,,,"363533635","8159438733","111400","MCHENRY COUNTY NURSERY INC",,"8501 WHITE OAKS RD",,"HARVARD","IL","60033",,,,,,,"363533635","8159438733",,,,"2011-07-30T05:42:34-0500","CHARLES J. BEESON","2011-07-30T05:42:50-0500","CHARLES J. BEESON",,,8,9,,,9,,9,,,,"2J2E2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110730183843P040106590097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RAFAEL CONSTRUCTION INC. INSURANCE PROGRAM","501","2005-12-01","RAFAEL CONSTRUCTION, INC.",,,"7120 RAFAEL RIDGE WAY",,"LAS VEGAS","NV","89119",,,,,,,,,,,,,,,,,,"880270498","7024515511","238100","RAFAEL CONSTRUCTION, INC.",,"7120 RAFAEL RIDGE WAY",,"LAS VEGAS","NV","89119",,,,,,,"880270498","7024515511",,,,"2011-07-30T18:38:42-0500","RAFAEL MEDINA JR.",,,,,13,1,0,2,3,,,,,,,"4A","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-30","Filed with authorized/valid electronic signature",, "20110801103016P030104627873006","2010-01-01","2010-12-31","2",,"1","1",,,,,,,,,"MCCUMBER WELL SERVICE, INC. SELF FUNDED MEDICAL REIMBURSEMENT PLAN","501","2010-01-01","MCCUMBER WELL SERVICE, INC.",,,"650 HWY 120 WEST",,"THERMOPOLIS","WY","82443",,,,,,,,,,,,,,,,,,"830294488","3078672462","211110","MCCUMBER WELL SERVICE, INC.",,"650 HWY 120 WEST",,"THERMOPOLIS","WY","82443",,,,,,,"830294488","3078672462",,,,"2011-08-01T10:29:28-0500","ARLEA L. MCCUMBER",,,,,19,19,0,0,19,,,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801131547P040485617456001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHAW SYSTEMS ASSOCIATES, INC. PROFIT SHARING PLAN","001","1970-05-15","SHAW SYSTEMS ASSOCIATES, INC.",,,"6200 SAVOY DRIVE #600",,"HOUSTON","TX","77036",,,,,,,,,,,,,,,,,,"741597342","7137827730","541512","SHAW SYSTEMS ASSOCIATES, INC.",,"6200 SAVOY DRIVE #600",,"HOUSTON","TX","77036",,,,,,,"741597342","7137827730",,,,"2011-08-01T13:13:32-0500","KIRSTEN HERRSCHER",,,,,121,87,2,20,109,0,109,105,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110729143814P030482044896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SBERA 401(K) PLAN AS ADOPTED BY CITIZENS UNION SAVINGS BANK","002","1994-11-01","CITIZENS UNION SAVINGS BANK",,,"4 SOUTH MAIN STREET",,"FALL RIVER","MA","02721",,,,,,,,,,,,,,,,,,"041178460","5086787641","522120","THOMAS FORESE JR",,"4A GILL STREET",,"WOBURN","MA","01801",,,,,,,"223244797","7819386559",,,,"2011-07-29T10:03:57-0500","THOMAS FORESE JR.",,,,,217,209,0,25,234,0,234,199,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110801155153P030104782641001","2010-04-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"HASKELL VET CLINIC 401(K) PLAN","001","2010-04-01","HASKELL VETERINARY CLINIC",,"ATTN RENEE GOBER","801 N 3RD ST E",,"HASKELL","TX","79521",,,,,,,,,,,,,,,,,,"270178409","9402563227","541940","HASKELL VETERINARY CLINIC","ATTN RENEE GOBER","801 N 3RD ST E",,"HASKELL","TX","79521",,,,,,,"270178409","9402563227",,,,"2011-08-01T15:51:17-0500","RENEE GOBER",,,,,2,4,0,1,5,0,5,5,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110803141420P040108835521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WOODBURY FOOT CARE CENTRE 401(K) PLAN","001","2008-01-01","WOODBURY FOOT CARE CENTRE",,,"722 MANTUA PIKE STE 8",,"WOODBURY HTS","NJ","08097",,,,,,,,,,,,,,,,,,"223131447","8563841333","621391","WOODBURY FOOT CARE CENTRE",,"722 MANTUA PIKE STE 8",,"WOODBURY HTS","NJ","08097",,,,,,,"223131447","8563841333",,,,"2011-08-03T14:13:06-0500","AMY HERSKOWITZ",,,,,5,4,1,0,5,0,5,5,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110803143623P040108842817001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP HEALTH PLAN OF NEWBERRY COLLEGE","501","1999-06-01","NEWBERRY COLLEGE",,,"2100 COLLEGE STREET",,"NEWBERRY","SC","29108",,,,,,,"2100 COLLEGE STREET",,"NEWBERRY","SC","29108",,,,,,,"570314404","8033215108","611000","NEWBERRY COLLEGE",,"2100 COLLEGE STREET",,"NEWBERRY","SC","29108",,,,,,,"570314404","8033215108",,,,"2011-08-03T14:35:43-0500","SUSANNE NELSON","2011-08-03T14:35:43-0500","SUSANNE NELSON",,,183,170,,,170,,,,,,,"4A4B4D4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801131105P040107600065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TEXAS NEUROSURGERY LLP PS PLAN","001","1999-01-01","TEXAS NEUROSURGERY LLP",,,"3600 GASTON AVE STE 907",,"DALLAS","TX","75246",,,,,,,,,,,,,,,,,,"203943431","2148232052","621111","TEXAS NEUROSURGERY LLP",,"3600 GASTON AVE STE 907",,"DALLAS","TX","75246",,,,,,,"203943431","2148232052",,,,"2011-08-01T13:09:51-0500","DAVID BARNETT MD",,,,,13,11,0,1,12,0,12,12,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801183357P030015384322001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"COOKIETREE INC-LIFE & DISABILITY","502","2000-01-01","COOKIETREE INC","COOKIETREE BAKERIES",,"P O BOX 57888",,"SALT LAKE CITY","UT","841570888",,,,,,,"4122 SOUTH 500 WEST",,"SALT LAKE CITY","UT","84123",,,,,,,"870375871","8012682253","311800","THE LINCOLN NATIONAL LIFE INSURANCE COMPANY",,"8801 INDIAN HILLS DRIVE",,"OMAHA","NE","68114",,,,,,,"350472300","8004232765",,,,"2011-08-01T18:33:21-0500","HAROLD ROSEMANN",,,,,121,139,0,0,139,0,139,0,0,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801163918P040107717537001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"EDEN MEDICAL CENTER SELF-FUNDED HEALTH PLAN","527","2010-01-01","EDEN MEDICAL CENTER",,"C/O SUTTER HEALTH","2200 RIVER PLAZA DR",,"SACRAMENTO","CA","95833",,,,,,,,,,,,,,,,,,"942948100","9162866727","622000","SUTTERSELECT PLAN ADMINISTRATION COMMITTEE","SUTTER HEALTH","2200 RIVER PLAZA DRIVE",,"SACRAMENTO","CA","95833",,,,,,,"942788907","9162866727",,,,"2011-08-01T16:05:28-0500","JACQUELINE BRIGHT",,,,,1203,1141,14,0,1155,,1155,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801132824P030015361266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUPERIOR SENIOR CARE, INC. DEFINED BENEFIT PLAN AND TRUST","001","2000-01-01","SUPERIOR SENIOR CARE, INC.",,,"835 CENTRAL AVENUE",,"HOT SPRINGS","AR","719015318",,,,,,,,,,,,,,,,,,"710702258","5013211743","621610","SUPERIOR SENIOR CARE, INC.",,"835 CENTRAL AVENUE",,"HOT SPRINGS","AR","719015318",,,,,,,"710702258","5013211743",,,,"2011-08-01T13:27:42-0500","JOSEPH J. PASCUAL",,,,,19,21,1,1,23,0,23,,,,"1A1G3D1I",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801175238P030033032231001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORTLAND DIAGNOSTIC IMAGING ASSOCIATES PC EMPLOYEES PROFIT SHARING PLAN","003","1984-01-01","CORTLAND DIAGNOSTIC IMAGING ASSOCIATES PC",,"LEE AMBROSE","1199 DAVINCI DR",,"CORTLAND","NY","13045",,,,,,,"1199 DAVINCI DR",,"CORTLAND","NY","13045",,,,,,,"161314171","6077538930","621111","CORTLAND DIAGNOSTIC IMAGING ASSOCIATES PC","LEE AMBROSE","1199 DAVINCI DR",,"CORTLAND","NY","13045",,,,,,,"161314171","6077538930",,,,"2011-08-01T17:50:19-0500","J LEE AMBROSE",,,,,1,1,,,1,,1,1,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801134533P040107622337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MISSOURI BOTANICAL GARDEN LIFE INSURANCE PLAN","502","1981-06-01","MISSOURI BOTANICAL GARDEN",,,"2345 TOWER GROVE AVE",,"ST LOUIS","MO","63110",,,,,,,"2345 TOWER GROVE AVE",,"ST LOUIS","MO","63110",,,,,,,"430666759","3145775100","712100","MISSOURI BOTANICAL GARDEN",,"2345 TOWER GROVE AVE",,"ST LOUIS","MO","63110",,,,,,,"430666759","3145775100",,,,"2011-07-29T11:59:55-0500","RICHARD ANGEVINE",,,,,517,492,,,492,,492,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801140952P040107634177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRIDGE AND IRON WORKERS STAFF RETIREMENT PLAN","003","1952-01-01","INTERNATIONAL ASSOCIATION OF BRIDGE, STRUCTURAL, ORNAMENTAL AND","REINFORCING IRON WORKERS",,"1750 NEW YORK AVE., NW, STE. 400",,"WASHINGTON","DC","200065301",,,,,,,,,,,,,,,,,,"430337330","2023834800","813930","BOARD OF TRUSTEES, BRIDGE AND IRON WORKERS STAFF RETIREMENT PLAN",,"1750 NEW YORK AVE., NW, ST. 401",,"WASHINGTON","DC","200065301",,,,,,,"526129031","2023834874",,,,"2011-08-01T14:08:57-0500","WALTER WISE","2011-08-01T14:08:57-0500","EDWARD C. MCHUGH",,,269,105,111,18,234,34,268,,0,,"1A1G",,"1","0","1","0","0","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110803123314P030105854833009","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"HENRY M JACKSON HEALTH AND WELFARE PLAN","501","1990-09-01","HENRY M JACKSON FOUNDATION FOR THE ADVANCEMENT OF MILITARY MEDICINE",,,"1401 ROCKVILLE PIKE SUITE 600",,"ROCKVILLE","MD","20852",,,,,,,,,,,,,,,,,,"521317896","3017388720","541700","HENRY M JACKSON FOUNDATION FOR THE ADVANCEMENT OF MILITARY MEDICINE",,"1401 ROCKVILLE PIKE SUITE 600",,"ROCKVILLE","MD","20852",,,,,,,"521317896","3017388720",,,,"2011-08-01T16:04:12-0500","KATHLEEN CONWAY",,,,,1596,2359,17,,2376,,2376,,,,,"4Q4L4H4G4E4D4B4A","1",,,"1","1",,,"1",,,,,,"1","7","1",,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110804150412P040109455793001","2010-01-01","2010-12-31","4","P","0","0","1","0","0","0","0","0","0",,"UCL MUTUAL FUND SEPARATE ACCOUNT LXXIII","073",,"THE UNION CENTRAL LIFE INSURANCE CO",,,"1876 WAYCROSS ROAD",,"CINCINNATI","OH","45240",,,,,,,,,,,,,,,,,,"310472910","5135952811",,"THE UNION CENTRAL LIFE INSURANCE CO",,"1876 WAYCROSS ROAD",,"CINCINNATI","OH","45240",,,,,,,"310472910","5135952811",,,,,,,,"2011-08-04T15:03:54-0500","BETSY SCHAAF",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-08-04",,"Filed with authorized/valid electronic signature", "20110804152213P040109463793001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GROUP INSURANCE PLAN FOR MOSES TAYLOR HOSPITAL","504","2000-01-01","MOSES TAYLOR HOSPITAL",,,"700 QUINCY AVENUE",,"SCRANTON","PA","185100000",,,,,,,,,,,,,,,,,,"240795461","5703402027","622000","MOSES TAYLOR HOSPITAL",,"700 QUINCY AVENUE",,"SCRANTON","PA","185100000",,,,,,,"240795461","5703402027",,,,"2011-08-04T15:21:30-0500","NANCY SEPRISH",,,,,986,1027,0,0,1027,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110801120543P040015917266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HHHUNT SAVINGS AND RETIREMENT PLAN","001","1989-01-01","HHHUNT",,,"800 HETHWOOD BLVD.",,"BLACKSBURG","VA","24060",,,,,,,,,,,,,,,,,,"540886065","5405523515","531110","HHHUNT",,"800 HETHWOOD BLVD.",,"BLACKSBURG","VA","24060",,,,,,,"540886065","5405523515",,,,"2011-08-01T12:04:50-0500","OGDEN, SHARYN",,,,,1405,1230,4,139,1373,0,1373,490,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801142627P040485791536001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOSEPH J. YAMIN, DMD, PC 401K PLAN","002","2002-01-01","JOSEPH J. YAMIN, DMD, PC",,,"55 WEST STREET",,"LEOMINSTER","MA","014535651",,,,,,,,,,,,,,,,,,"042772597","9785340173","621210","JOSEPH J. YAMIN, DMD PC",,"55 WEST STREET",,"LEOMINSTER","MA","01453",,,,,,,"042772597","9785340173",,,,"2011-08-01T14:25:53-0500","JOSEPH J YAMIN DMD",,,,,10,9,0,1,10,0,10,7,0,,"2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110803141604P040108835873004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PEOPLES HEALTH NETWORK 401(K) PROFIT SHARING PLAN","001","1999-02-15","NEW ORLEANS REGIONAL PHYSICIANS HOSPITAL ORGANIZATION, INC.","PEOPLES HEALTH NETWORK",,"3838 N. CAUSEWAY BLVD.",,"METAIRIE","LA","70002",,,,,,,"3838 N. CAUSEWAY BLVD.",,"METAIRIE","LA","70002",,,,,,,"721267232","5048494500","621610","NEW ORLEANS REGIONAL PHYSICIANS HOSPITAL ORGANIZATI",,"3838 N. CAUSEWAY BLVD.",,"METAIRIE","LA","70002",,,,,,,"721267232","5048494500",,,,"2011-08-01T04:09:36-0500","GREG RUPPERT","2011-08-01T04:09:36-0500","GREG RUPPERT",,,590,613,6,53,672,0,672,502,21,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110803141905P030105894801001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"AMERICAN LEISURE FACILITIES MANAGEMENT CORP. 401(K) SAVINGS PLAN","001","1993-01-01","AMERICAN LEISURE FACILITIES MANAGEMENT CORP.",,,"414 AIRPORT EXECUTIVE PARK",,"NANUET","NY","109545288",,,,,,,,,,,,,,,,,,"112141367","8453515670","561210","AMERICAN LEISURE FACILITIES MANAGEMENT CORP.",,"414 AIRPORT EXECUTIVE PARK",,"NANUET","NY","109545288",,,,,,,"112141367","8453515670",,,,"2011-08-03T14:18:06-0500","BETH CAPLAN","2011-08-03T14:18:06-0500","BETH CAPLAN",,,129,112,7,0,119,0,119,17,1,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110803144034P040108844193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WSP ENVIRONMENTAL HOLDINGS, INC. TAX DEFERRED SAVINGS PLAN & TRUST","001","2006-09-16","WSP ENVIRONMENTAL HOLDINGS, INC.",,,"11190 SUNRISE VALLEY DRIVE","SUITE 300","RESTON","VA","20191",,,,,,,"11190 SUNRISE VALLEY DRIVE","SUITE 300","RESTON","VA","20191",,,,,,,"205436219","7037096500","541600","WSP ENVIRONMENTAL HOLDINGS, INC.",,"11190 SUNRISE VALLEY DRIVE","SUITE 300","RESTON","VA","20191",,,,,,,"205436219","7037096500",,,,"2011-08-03T14:31:01-0500","JAN CHIZZONITE",,,,,186,149,0,45,194,0,194,167,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110801152052P040015933810001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BENTELER AUTOMOTIVE VISION PLAN","507","1998-01-01","BENTELER AUTOMOTIVE CORPORATION",,,"1780 POND RUN",,"AUBURN HILLS","MI","48326",,,,,,,,,,,,,,,,,,"310995787","2483647143","332900","BENTELER AUTOMOTIVE CORPORATION",,"1780 POND RUN",,"AUBURN HILLS","MI","48326",,,,,,,"310995787","2483647143",,,,"2011-08-01T15:20:00-0500","ULRIKE HILDEBRAND","2011-08-01T15:13:37-0500","ULRIKE HILDEBRAND",,,1360,1427,9,0,1436,,,,,,,"4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110803074955P040490330304001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE PENRAY COMPANIES, INC. 401K PLAN","002","1964-12-15","THE PENRAY COMPANIES, INC.",,,"440 DENNISTON COURT",,"WHEELING","IL","600904731",,,,,,,,,,,,,,,,,,"363828768","8474595012","423700","THE PENRAY COMPANIES, INC.",,"440 DENNISTON COURT",,"WHEELING","IL","600904731",,,,,,,"363828768","8474595012",,,,"2011-08-03T07:48:56-0500","ANA MORGAN",,,,,93,82,0,14,96,0,96,77,3,,"2E2G2J2K3D2F",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110801171249P040107739761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MONITRONICS INTERNATIONAL SECTION 125 CAFETERIA PLAN","501","2000-01-01","MONITRONICS INTERNATIONAL, INC.",,,"2350 VALLEY VIEW LANE, SUITE 100",,"DALLAS","TX","75234",,,,,,,,,,,,,,,,,,"742719343","9722773603","541990","MONITRONICS INTERNATIONAL, INC.",,"2350 VALLEY VIEW LANE, SUITE 100",,"DALLAS","TX","75234",,,,,,,"742719343","9722773603",,,,"2011-08-01T17:12:33-0500","STEPHEN M. HEDRICK","2011-08-01T17:12:33-0500","STEPHEN M. HEDRICK",,,721,680,5,0,685,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110803111145P040108769217003","2010-02-01","2011-01-31","2",,,,,,,,,,,,"BARRON, ROSENBERG, MAYORAS & MAYORAS, PC PROFIT SHARING TRUST","001","1982-02-01","BARRON ROSENBERG MAYORAS & MAYORAS PC",,,"1301 W. LONG LAKE ROAD, #340",,"TROY","MI","48098",,,,,,,"1301 W. LONG LAKE RD, #340",,"TROY","MI","48098",,,,,,,"382393785","2486417070","541110","BARRON ROSENBERG MAYORAS & MAYORAS PC",,"1301 W. LONG LAKE ROAD, #340",,"TROY","MI","48098",,,,,,,"382393785","2486417070",,,,"2011-07-30T06:41:54-0500","RONALD BARRON",,,,,13,7,5,0,12,0,12,13,,,"2E",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110803111544P040108770769001","2005-11-01","2006-10-31","2",,"0","0","0","0","0","0","0","1","0",,"ROSEMONT COLLEGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1954-04-01","ROSEMONT COLLEGE",,,"1400 MONTGOMERY AVENUE",,"ROSEMONT","PA","19010",,,,,,,"1400 MONTGOMERY AVENUE",,"ROSEMONT","PA","19010",,,,,,,"231365966","6105270200","611000","ROSEMONT COLLEGE",,"1400 MONTGOMERY AVENUE",,"ROSEMONT","PA","19010",,,,,,,"231365966","6105270200",,,,"2011-08-03T10:57:03-0500","AMANDA LAYTON",,,,,,,,,,,,,,,"2L2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110801113040P030002991172001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MCGARRY & SIMON PROFIT SHARING PLAN","001","1992-01-01","MCGARRY & SIMON",,,"317 MADISON AVE. RM 1511",,"NEW YORK","NY","100175096",,,,,,,,,,,,,,,,,,"133636723","2128670100","541110","MCGARRY & SIMON",,"317 MADISON AVE. RM 1511",,"NEW YORK","NY","100175096",,,,,,,"133636723","2128670100",,,,"2011-08-01T11:28:59-0500","WILLIAM SIMON","2011-08-01T11:28:59-0500","WILLIAM SIMON",,,5,5,0,0,5,0,5,4,0,,"2E2F2G2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801135847P040015926882001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP HEALTH INSURANCE PLAN","501","2008-01-01","FOUNDATION FOR ADVANCED EDUCATION IN THE SCIENCES",,,"1 CLOISTER COURT SUITE 230",,"BETHESDA","MD","20814",,,,,,,,,,,,,,,,,,"520743814","3015948977","611000","FOUNDATION FOR ADVANCED EDUCATION IN THE SCIENCES",,"1 CLOISTER COURT SUITE 230",,"BETHESDA","MD","20814",,,,,,,"520743814","3015948977",,,,"2011-08-01T13:57:48-0500","ALEXIS ALLEYNE",,,,,4493,4300,0,0,4300,,,,,,,"4A4D4Q4B4H4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801185502P030104867905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALL POWER, INC INSURANCE PROGRAM","501","2004-01-01","ALL POWER, INC.",,,"12352 LOMA RICA DRIVE",,"GRASS VALLEY","CA","95945",,,,,,,,,,,,,,,,,,"680399476","5304777379","238210","ALL POWER, INC.",,"12352 LOMA RICA DRIVE",,"GRASS VALLEY","CA","95945",,,,,,,"680399476","5304777379",,,,"2011-08-01T18:55:01-0500","MARTIN YANG",,,,,11,19,0,0,19,,,,,,,"4A4B4Q","1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110803123514P040108800017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JARVIS PENSION PLAN","003","1946-03-17","PENCO CORPORATION",,,"229 BUCKINGHAM STREET",,"HARTFORD","CT","06106",,,,,,,"229 BUCKINGHAM STREET",,"HARTFORD","CT","06106",,,,,,,"060403810","8602782345","333900","PENCO CORPORATION",,"229 BUCKINGHAM STREET",,"HARTFORD","CT","06106",,,,,,,"060403810","8602782345",,,,"2011-08-03T12:34:08-0500","M PIKOSKY","2011-08-03T12:33:07-0500","M PIKOSKY",,,273,167,48,53,268,,268,,0,,"1A1B1G",,,,"1",,,,"1",,"1",,"1","1",,,,,,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801120639P040107571553001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"WILSHIRE PRECISION PRODUCTS, INC. DEFINED BENEFIT PENSION PLAN","002","2001-01-01","WILSHIRE PRECISION PRODUCTS, INC.",,,"7353 HINDS AVENUE",,"NORTH HOLLYWOOD","CA","91605",,,,,,,,,,,,,,,,,,"952466016","8187654571","333900","WILSHIRE PRECISION PRODUCTS, INC.",,"7353 HINDS AVENUE",,"NORTH HOLLYWOOD","CA","91605",,,,,,,"952466016","8187654571",,,,"2011-08-01T13:05:40-0500","THOMAS G. LEWIS",,,,,23,21,0,2,23,0,23,,1,,"1A1G3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801120811P030489707488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DESIGNERS' PRESS, INC. SAVINGS PLAN","001","1993-10-01","DESIGNERS PRESS, INC.",,,"6305 CHANCELLOR DR",,"ORLANDO","FL","32809",,,,,,,,,,,,,,,,,,"592989129","4078433141","323100","DESIGNERS PRESS, INC.",,"6305 CHANCELLOR DR",,"ORLANDO","FL","32809",,,,,,,"592989129","4078433141",,,,"2011-08-01T12:03:04-0500","CINDY WINTERS","2011-08-01T12:07:42-0500","CINDY WINTERS",,,49,129,0,0,129,0,129,38,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801144533P030015367618001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"ARCHEM, INC. 401(K) PLAN & TRUST","001","1990-01-01","ARTLOW SYSTEMS, INC FORMERLY ARCHEM, INC","ARTLOW SYSTEMS",,"170 S GARY AV",,"CAROL STREAM","IL","60188",,,,,,,,,,,,,,,,,,"362756469","6306538111","811490","ARTLOW SYSTEMS, INC FORMERLY ARCHEM, INC",,"170 S GARY AV",,"CAROL STREAM","IL","60188",,,,,,,"362756469","6306538111",,,,"2011-07-29T09:06:13-0500","RANDALL RICHTER BY PRACTITIONER, GE",,,,,7,6,0,0,6,,6,,,,"2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110803080033P040016094338001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MORGAN FOODS, INC LIFE AND DISABILITY PLAN","502","1986-04-01","MORGAN FOODS, INC.",,,"90 W. MORGAN STREET",,"AUSTIN","IN","471021741",,,,,,,,,,,,,,,,,,"350852905","8127941170","311400","MORGAN FOODS, INC.",,"90 W. MORGAN STREET",,"AUSTIN","IN","471021741",,,,,,,"350852905","8127941170",,,,"2011-08-03T07:58:02-0500","MARK KLINE",,,,,546,463,0,0,463,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110803164937P030105971041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DOUG THROM CONSTRUCTION, INC. 401(K) PLAN","001","2008-01-01","DOUG THROM CONSTRUCTION, INC.",,,"617 W. MAIN STREET",,"ASPEN","CO","81611",,,,,,,,,,,,,,,,,,"841080126","9709201719","236110","DOUG THROM CONSTRUCTION, INC.",,"617 W. MAIN STREET",,"ASPEN","CO","81611",,,,,,,"841080126","9709201719",,,,"2011-08-03T16:49:01-0500","DOUG THROM",,,,,4,4,0,0,4,0,4,2,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110804094936P030497409792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROCK E. SVENNUNGSEN EMPLOYEE PROFIT SHARING PLAN","001","1983-01-31","ROCK E. SVENNUNGSEN",,,"925 OILFIELD",,"SHELBY","MT","59474",,,,,,,"925 OILFIELD",,"SHELBY","MT","59474",,,,,,,"061431837","4064342763","621320","ROCK E. SVENNUNGSEN",,"925 OILFIELD",,"SHELBY","MT","59474",,,,,,,"061431837","4064342763",,,,"2011-08-04T09:39:28-0500","ROCK E. SVENNUNGSEN",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110801125404P040107592065001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SANTA BARBARA DERMATOLOGY INC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","SANTA BARBARA DERMATOLOGY INC",,,"105 W. MISSION STREET",,"SANTA BARBARA","CA","93101",,,,,,,"105 W. MISSION STREET",,"SANTA BARBARA","CA","93101",,,,,,,"201993797","8056364356","621111","SAME",,,,,,,,,,,,,,,,,,"2011-08-01T12:52:18-0500","PATRICIA STEWART",,,,,9,9,0,0,9,0,9,3,0,0,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801125513P030015358898001","2010-01-01","2010-12-31","2",,,"1","1",,,,,,,,"CAFETERIA PLAN S-125 FOR EMPLOYEES OF MARION GENERAL HOSPITAL","504","1989-01-01","MARION GENERAL HOSPITAL, INC.",,,"441 NORTH WABASH AVENUE",,"MARION","IN","46952",,,,,,,,,,,,,,,,,,"350868130","7656624601","622000","MARION GENERAL HOSPITAL, INC.",,"441 NORTH WABASH AVENUE",,"MARION","IN","46952",,,,,,,"350868130","7656624601",,,,"2011-07-13T13:15:58-0500","GWYN EASTOM",,,,,374,0,,,0,,0,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801131431P040003254035001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ST. EDWARD'S UNIVERSITY, INC. CAFETERIA PLAN","560","1989-03-01","ST. EDWARD'S UNIVERSITY, INC.",,,"3001 SOUTH CONGRESS AVENUE",,"AUSTIN","TX","78704",,,,,,,"3001 SOUTH CONGRESS AVENUE",,"AUSTIN","TX","78704",,,,,,,"741109641","5124488540","611000","ST. EDWARD'S UNIVERSITY, INC.",,"3001 SOUTH CONGRESS AVENUE",,"AUSTIN","TX","78704",,,,,,,"741109641","5124488540",,,,"2011-08-01T13:05:29-0500","DEBORAH ZIMMERMAN",,,,,702,712,,,712,,712,,,,,"4A4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801150458P040107663825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"PHILOSOPHER STONE INC PROFIT SHARING PLAN","001","2007-01-01","PHILOSOPHER STONE INC",,,"5750 WILSHIRE BVLD STE 580",,"LOS ANGELES","CA","900363695",,,,,,,"5750 WILSHIRE BLVD STE 580",,"LOS ANGELES","CA","900363695",,,,,,,"203438888","3239344814","711510","PHILOSOPHER STONE INC",,"5750 WILSHIRE BLVD STE 580",,"LOS ANGELES","CA","900363695",,,,,,,"203438888","3239344814",,,,"2011-07-01T13:06:35-0500","BRUCE LAGNESE, TRUSTEE","2011-07-01T13:06:35-0500","BRUCE LAGNESE,TRUSTEE",,,1,2,0,0,2,0,2,1,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110804114307P040016203234001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRUTZMACHER & LEWIS A MEDICAL CORPORATION 401K","001","1992-01-01","GRUTZMACHER & LEWIS A MEDICAL CORPORATION",,,"1515 RIVER PARK DRIVE SUITE 100",,"SACRAMENTO","CA","958150000",,,,,,,,,,,,,,,,,,"680401727","9166491515","621111","GRUTZMACHER & LEWIS A MEDICAL CORPORATION",,"1515 RIVER PARK DRIVE SUITE 100",,"SACRAMENTO","CA","958150000",,,,,,,"680401727","9166491515",,,,"2011-08-04T11:42:51-0500","PENSION FILERS",,,,,18,16,0,2,18,0,18,18,1,,"2E2G2J2K2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110801132937P030489897280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE SIGNATURE BANK EMPLOYEES 401(K) PLAN","001","1997-07-01","THE SIGNATURE BANK",,,"4039 S KANSAS EXPY",,"SPRINGFIELD","MO","658074018",,,,,,,,,,,,,,,,,,"431783332","4178892600","522110","THE SIGNATURE BANK",,"4039 S KANSAS EXPY",,"SPRINGFIELD","MO","658074018",,,,,,,"431783332","4178892600",,,,"2011-08-01T13:29:37-0500","TERESA FLETCHER",,,,,76,0,0,57,57,0,57,57,0,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110803111822P040490723632001","2008-01-01","2008-12-31","2",,"0","1","1","0","0","0","0","1","0",,"WHITE & RISSE PROFIT SHARING PLAN","002","2000-01-01","WHITE & RISSE LLP","WHITE & RISSE LLP",,"2176 TENBROOK ROAD",,"ARNOLD","MO","63010",,,,,,,"2176 TENBROOK ROAD",,"ARNOLD","MO","63010",,,,,,,"431839806","6362879944","541110","WHITE & RISSE LLP",,"2176 TENBROOK ROAD",,"ARNOLD","MO","63010",,,,,,,"431839806","6362879944",,,,"2011-08-03T10:33:56-0500","SCOTT WHITE",,,,,9,0,0,0,0,0,0,0,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110803171601P040108905153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOB OPTIONS, INC. MONEY PURCHASE PENSION PLAN","002","2005-01-01","JOB OPTIONS, INC.",,,"3465 CAMINO DEL RIO S STE 300",,"SAN DIEGO","CA","921083908",,,,,,,,,,,,,,,,,,"330603379","6196881784","624310","JOB OPTIONS, INC.",,"3465 CAMINO DEL RIO S STE 300",,"SAN DIEGO","CA","921083908",,,,,,,"330603379","6196881784",,,,"2011-08-03T17:05:17-0500","CHARLOTTE HEALY",,,,,151,141,0,32,173,0,173,173,0,,"2C2G3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110801112512P030104650561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAYERKOHLER & GRAFF, LTD 401(K) PLAN","001","2008-02-01","BAYERKOHLER & GRAFF, LTD",,,"11132 ZEALAND AVE N",,"CHAMPLIN","MN","55316",,,,,,,,,,,,,,,,,,"411896308","7634272542","541213","BAYERKOHLER & GRAFF, LTD",,"11132 ZEALAND AVE N",,"CHAMPLIN","MN","55316",,,,,,,"411896308","7634272542",,,,"2011-08-01T11:21:21-0500","BARBARA BAYERKOHLER",,,,,8,9,0,0,9,0,9,8,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801135925P040107629185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PADGETT,STRATEMANN & CO.,L.L.P. EMPLOYEES' 401(K) PLAN","001","1993-01-01","PADGETT, STRATEMANN & CO., L.L.P.",,,"100 N.E. LOOP 410","SUITE 1100","SAN ANTONIO","TX","78216",,,,,,,,,,,,,,,,,,"741650885","2108286281","541211","PADGETT, STRATEMANN & CO., L.L.P.",,"100 N.E. LOOP 410","SUITE 1100","SAN ANTONIO","TX","78216",,,,,,,"741650885","2108286281",,,,"2011-08-01T13:59:06-0500","GERARD KOLODEJCAK",,,,,179,183,0,28,211,0,211,185,0,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801143007P030104738401003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROBERT C TEIPEN PC PROFIT SHARING PLAN AND TRUST","001","1979-01-01","TEIPEN, SELANDERS, POYNTER & AYRES,",,,"7340 E 82ND ST SUITE A",,"INDIANAPOLIS","IN","462561406",,,,,,,,,,,,,,,,,,"351985568","3175986700","541211","TEIPEN SELANDERS POYNTER & AYRES",,"7340 E 82ND ST SUITE A",,"INDIANAPOLIS","IN","462561406",,,,,,,"351985568","3175986700",,,,"2011-08-01T13:55:50-0500","ROBERT TEIPEN",,,,,13,12,,1,13,,13,,,,"3D2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801121303P040107575233001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"DETROIT ATHLETIC CLUB LOCAL 24 UNION WELFARE BENEFIT PLAN","502","2009-01-01","DETROIT ATHLETIC CLUB",,,"241 MADISON AVENUE",,"DETROIT","MI","48226",,,,,,,"241 MADISON AVENUE",,"DETROIT","MI","48226",,,,,,,"380477160","3139639200","711210","DETROIT ATHLETIC CLUB",,"241 MADISON AVENUE",,"DETROIT","MI","48226",,,,,,,"380477160","3139639200",,,,"2011-08-01T12:11:37-0500","TIMOTHY DOOLEY",,,,,126,121,,0,121,,121,,,,,"4A4B4D4E4F","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801144045P040107650385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ONSRUD CUTTER, L.P. RETIREMENT SAVINGS PLAN","002","1989-01-01","LMT ONSRUD LP",,,"1081 S. NORTHPOINT BLVD",,"WAUKEGAN","IL","60085",,,,,,,,,,,,,,,,,,"522136091","8473261560","332900","LMT ONSRUD LP",,"1081 S. NORTHPOINT BLVD",,"WAUKEGAN","IL","60085",,,,,,,"522136091","8473261560",,,,"2011-08-01T14:39:58-0500","KURT STAROVICH",,,,,122,103,0,11,114,0,114,114,0,,"2E2F2G2J2K3D2T2S",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801144107P030104742689002","2010-02-01","2011-01-31","2",,,,,,,,,,,,"CORCORAN CO LONG TERM DISABILITY PLAN","504","1983-05-15","CORCORAN CO LONG TERM DISABILITY PLAN",,"C/O LAWRENCE J. MURPHY, TREASURER","100 GRANDVIEW ROAD","SUITE 207","BRAINTREE","MA","028142686",,,,,,,,,,,,,,,,,,"042661810","7818490011","531310","CORCORAN MANAGMENT CO., INC.","C/O LAWRENCE J. MURPHY, TREASURER","100 GRANDVIEW ROAD, SUITE 207",,"BRAINTREE","MA","021842686",,,,,,,"042661810","7818490011",,,,"2011-07-21T09:24:20-0500","LAWRENCE J. MURPHY, TREASURER",,,,,223,231,,,231,,,,,,,"4F4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801181121P030104847217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE BAKERSFIELD CALIFORNIAN WELFARE PLAN","501","1998-08-01","THE BAKERSFIELD CALIFORNIAN",,,"1707 EYE STREET",,"BAKERSFIELD","CA","933020440",,,,,,,,,,,,,,,,,,"951459901","6613957471","511110","THE BAKERSFIELD CALIFORNIAN",,"1707 EYE STREET",,"BAKERSFIELD","CA","933020440",,,,,,,"951459901","6613957471",,,,"2011-08-01T18:10:16-0500","NANCY CHAFFIN",,,,,142,221,,,221,,,,,,,"4A4B4D4E4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","1","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801181507P040107770481001","2010-03-01","2011-02-28","2",,,,,,,,,,,,"SAMON'S TIGER STORES, INC. PSP PROFIT SHARING PLAN","001","1984-03-01","SAMON'S TIGER STORES, INC.",,,"2511 MONROE N.E.",,"ALBUQUERQUE","NM","87110",,,,,,,,,,,,,,,,,,"850211612","5058844615","444190","SAMON'S TIGER STORES, INC.",,"2511 MONROE N.E.",,"ALBUQUERQUE","NM","87110",,,,,,,"850211612","5058844615",,,,"2011-08-01T16:12:57-0500","LARRY GOATCHER","2011-08-01T16:13:09-0500","LARRY GOATCHER","2011-08-01T16:12:14-0500","G L BOOTH",97,88,6,0,94,0,94,94,3,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature","Filed with authorized/valid electronic signature" "20110801160305P040107701025011","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"PETERS & LYONS LTD 401K PROFIT SHARING PLAN","001","1978-12-05","PETERS & LYONS LTD",,,"7035 VETERANS BLVD SUITE B",,"BURR RIDGE","IL","60527",,,,,,,,,,,,,,,,,,"364256862","6308876900","541110","PETERS & LYONS LTD",,"7035 VETERANS BLVD SUITE B",,"BURR RIDGE","IL","60527",,,,,,,"364256862","6308876900",,,,"2011-08-01T15:40:45-0500","DONALD F PETERS JR",,,,,3,3,,,3,,3,3,,,"2K2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110803142855P030105898321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CROWN MEDIA HOLDINGS, INC. HEALTH & WELFARE PLAN","501","2001-07-01","CROWN MEDIA UNITED STATES, LLC",,,"12700 VENTURA BLVD.","SUITE 200","STUDIO CITY","CA","916042469",,,,,,,,,,,,,,,,,,"841524410","8187552690","515210","CROWN MEDIA UNITED STATES, LLC",,"12700 VENTURA BLVD.","SUITE 200","STUDIO CITY","CA","916042469",,,,,,,"841524410","8187552690",,,,"2011-08-03T14:28:47-0500","EUGENE C. HAWKINS","2011-08-03T14:28:47-0500","EUGENE C. HAWKINS",,,148,147,9,0,156,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110804083313P040492991536001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAFLAMME AND DAVIS PROFIT SHARING PLAN","001","1986-01-01","LAFLAMME AND DAVIS",,,"212 COOLIDGE AVENUE",,"MANCHESTER","NH","03102",,,,,,,,,,,,,,,,,,"020381794","6036699155","541110","LAFLAMME AND DAVIS",,"212 COOLIDGE AVENUE",,"MANCHESTER","NH","03102",,,,,,,"020381794","6036699155",,,,"2011-08-04T08:32:43-0500","JOHN DAVIS",,,,,6,5,0,0,5,0,5,5,0,,"2T3D2E2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110801150011P040107660865004","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"PROFIT SHARING PLAN OF DR CREWS, HILTON, GRAHAM & SEMONES - DENTISTS INC","001","1974-01-01","DRS. HILTON, GRAHAM, ETAL DENTISTS INC",,,"1151 EAST MAIN ST SUITE A",,"RADFORD","VA","24141",,,,,,,,,,,,,,,,,,"540951969","5406391674","621210","DRS. HILTON, GRAHAM, ETAL DENTISTS INC",,"1151 EAST MAIN ST SUITE A",,"RADFORD","VA","24141",,,,,,,"540951969","5406391674",,,,"2011-08-01T15:30:41-0500","RONNIE M. HILTON","2011-08-01T15:30:56-0500","RONNIE M. HILTON",,,20,20,0,0,20,0,20,20,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801163620P040107716401001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BILLINGSLEY PROPERTY SERVICES INC","506","2008-02-01","BILLINGSLEY PROPERTY SERVICES INC",,,"6800 WINDHAVEN PKWY","SUITE 133","THE COLONY","TX","75056",,,,,,,"6800 WINDHAVEN PKWY","SUITE 133","THE COLONY","TX","75056",,,,,,,"752466888","9728202200","531390","BILLINGSLEY PROPERTY SERVICES INC",,"6800 WINDHAVEN PKWY","SUITE 133","THE COLONY","TX","75056",,,,,,,"752466888","9728202200",,,,"2011-08-01T14:00:07-0500","BONNIE SOLIZ",,,,,118,129,,,129,,129,,,0,,"4B","1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801104653P030489520528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOME CARE ASSOCIATES OF PHILADELPHIA","501","2009-01-01","HOME CARE ASSOCIATES OF PHILADELPHIA",,,"1500 WALNUT ST, SUITE 1000",,"PHILADELPHIA","PA","19107",,,,,,,,,,,,,,,,,,"232708367","2157350677","621610","HOME CARE ASSOCIATES OF PHILADELPHIA",,"1500 WALNUT ST, SUITE 1000",,"PHILADELPHIA","PA","19107",,,,,,,"232708367","2157350677",,,,"2011-08-01T10:46:19-0500","RONNETTE PERKINS","2011-08-01T10:46:19-0500","RONNETTE PERKINS",,,177,172,,0,172,,,,,,,"4A4B4D4H4L","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110801175123P030015382274008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BELLINGHAM ANESTHESIA ASSOCIATES PROFIT SHARING PLAN AND TRUST","001","1975-07-01","BELLINGHAM ANESTHESIA ASSOCIATES",,,"C/O P.O. BOX 336",,"BELLINGHAM","WA","98227",,,,,,,"C/O P.O. BOX 336",,"BELLINGHAM","WA","98227",,,,,,,"910937043","3606473377","621111","BELLINGHAM ANESTHESIA ASSOCIATES",,"C/O P.O. BOX 336",,"BELLINGHAM","WA","98227",,,,,,,"910937043","3606473377",,,,"2011-08-01T10:44:38-0500","CAROLE LEFCOURTE",,,,,24,29,2,,31,,31,31,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110803101916P030105797601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GERALD L. FRIEDMAN PROFESSIONAL CORPORATION PROFIT SHARING PLAN","002","1979-07-19","GERALD L. FRIEDMAN PROFESSIONAL CORP.",,,"11400 W. OLYMPIC BLVD., 9TH FLOOR",,"LOS ANGELES","CA","900641550",,,,,,,,,,,,,,,,,,"953391648","3104775450","541110","GERALD L. FRIEDMAN PROFESSIONAL CORP.",,"11400 W. OLYMPIC BLVD., 9TH FLOOR",,"LOS ANGELES","CA","900641550",,,,,,,"953391648","3104775450",,,,"2011-08-03T10:09:56-0500","GERALD FRIEDMAN",,,,,3,2,0,1,3,0,3,3,0,,"2E2A3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110804130017P040109400705002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"BRUMLEY PROFESSIONAL EMPLOYER SERVICES INC","501","2000-01-01","BRUMLEY PROFESSIONAL EMPLOYER SERVICES INC",,,"270 UFNAU LANE",,"SPRING BRANCH","TX","78070",,,,,,,,,,,,,,,,,,"742642380","8309803230","561300","BRUMLEY PROFESSIONAL EMPLOYER",,"270 UFNAU LANE",,"SPRING BRANCH","TX","78070",,,,,,,"742642380","8309803230",,,,"2011-08-04T11:24:46-0500","MARGARET BRUMLEY",,,,,3584,3655,,,3655,,3655,,,,,"4Q4H4E4D4B4A","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110801112731P030015352066001","2004-10-01","2005-09-30","2",,"0","1","0","0","0","0","0","1","0",,"ROYAL CREST DAIRY INC LONG TERM DISABILITY PLAN","505","1984-07-01","ROYAL CREST DAIRY INC",,,"350 SOUTH PEARL STREET",,"DENVER","CO","80209",,,,,,,"350 SOUTH PEARL STREET",,"DENVER","CO","80209",,,,,,,"840534204","3037772227","311500","ROYAL CREST DAIRY INC",,"350 SOUTH PEARL STREET",,"DENVER","CO","80209",,,,,,,"840534204","3037772227",,,,"2011-08-01T11:15:28-0500","KATE CHRIST",,,,,,366,,,366,,366,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801140012P040107629601011","2010-01-01","2010-12-31","2",,,,,,,,,,,,"R R LYNCH DMD P-S PLAN","001","1987-06-30","RONALD R LYNCH LTD",,,"1515 WEST WALNUT",,"JACKSONVILLE","IL","62650",,,,,,,,,,,,,,,,,,"371136142","2172451211","621210","FARMERS STATE BANK & TRUST COMPANY",,"200 WEST STATE STREET",,"JACKSONVILLE","IL","62650",,,,,,,"371136142","2174794000",,,,"2011-08-01T09:25:28-0500","TOM TEARNEY","2011-08-01T13:34:14-0500","RONALD R LYNCH",,,10,10,,,10,,10,10,,,"2E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110801140012P040107629601008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE OAK FAMILY MEDICINE & ACUPUNCTURE INC PROFIT SHARING PLAN","001","1996-01-01","THE OAK FAMILY MEDICINE & ACUPUNCTURE, INC",,,"1063 RICHWOOD AVE",,"CINCINNATI","OH","45208",,,,,,,,,,,,,,,,,,"311410047","5132714488","621111","THE OAK FAMILY MEDICINE & ACUPUNCTURE INC",,"1063 RICHWOOD AVE",,"CINCINNATI","OH","45208",,,,,,,"311410047","5132714488",,,,"2011-08-01T13:40:46-0500","CLARKE BAXTER",,,,,1,1,,,1,,1,1,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",, "20110801140836P040033883847001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TWO ELEVEN PRODUCTIONS INC PROFIT SHARING PLAN","001","1994-07-11","TWO ELEVEN PRODUCTIONS INC",,,"5750 WILSHIRE BLVD STE 580",,"LOS ANGELES","CA","900363695",,,,,,,"5750 WILSHIRE BLVD STE 580",,"LOS ANGELES","CA","90036",,,,,,,"954487302","3239344814","711510","TWO ELEVEN PRODUCTIONS INC",,"5750 WILSHIIRE BLVD STE 580",,"LOS ANGELES","CA","900363695",,,,,,,"954487302","3239344814",,,,"2011-08-01T14:06:31-0500","BRUCE LAGNESE, TRUSTEE","2011-08-01T14:06:31-0500","BRUCE LAGNESE, TRUSTEE",,,3,3,0,0,3,0,3,3,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110802100234P030105184065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOBILE COMPONENT DISTRIBUTORS, INC. PROFIT SHARING PLAN","001","1983-05-01","MOBILE COMPONENT DISTRIBUTORS, INC.",,,"450 E AMITY RD",,"BOISE","ID","837050835",,,,,,,,,,,,,,,,,,"820301013","2083452531","332900","MOBILE COMPONENT DISTRIBUTORS, INC.",,"450 E AMITY RD",,"BOISE","ID","837050835",,,,,,,"820301013","2083368700",,,,"2011-08-02T10:02:33-0500","HENRY KING",,,,,14,13,,,13,,13,13,1,,"2E2G3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802100418P040487963952004","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"UNITY HEALTHCARE HEALTH CARE PLAN","502","2002-01-01","UNITY HEALTHCARE",,,"1518 MULBERRY AVENUE",,"MUSCATINE","IA","52761",,,,,,,,,,,,,,,,,,"420680337","5632649222","622000","UNITY HEALTHCARE",,"1518 MULBERRY AVENUE",,"MUSCATINE","IA","52761",,,,,,,"420680337","5632649222",,,,"2011-08-02T04:58:45-0500","ANGELA GABRIEL, VP OF FINANCE",,,,,457,346,2,,348,,,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802123319P040034059063001","2010-11-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"FUTURA COMPANIES EMPLOYEE BENEFIT PLAN","502","1978-10-01","FUTURA CORPORATION",,,"PO BOX 7968",,"BOISE","ID","837071968",,,,,,,,,,,,,,,,,,"820359694","2083360150","332900","CHUCK WHITE",,"PO BOX 7968",,"BOISE","ID","83707",,,,,,,"820359694","2083360150",,,,"2011-08-02T12:32:34-0500","CHUCK WHITE",,,,,555,518,,,518,,,,,,,"4A4B4D4F4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802090240P040034026199001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","1","0",,"MOXIE APPAREL LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","MOXIE APPAREL",,,"145 E 27TH ST SUITE 11G",,"NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"753226953","2127790195","812990","MOXIE APPAREL",,"145 E 27TH ST SUITE 11G",,"NEW YORK","NY","10016",,,,,,,"753226953","2127790195",,,,"2011-08-02T09:02:36-0500","MOXIE APPAREL",,,,,2,2,0,0,2,0,2,2,0,,"2T2G3D2E2J2K2R",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802144250P030015463298001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DUNWOODY PEDIATRICS, P.C. EMPLOYEES' RETIREMENT PLAN","001","2005-01-01","DUNWOODY PEDIATRICS, P.C.",,,"1428 DUNWOODY VILLAGE PARKWAY",,"DUNWOODY","GA","30338",,,,,,,,,,,,,,,,,,"581413626","7703942358","621111","DUNWOODY PEDIATRICS, P.C.",,"1428 DUNWOODY VILLAGE PARKWAY",,"DUNWOODY","GA","30338",,,,,,,"581413626","7703942358",,,,"2011-08-02T03:42:31-0500","DR. JULIUS SHERWINTER",,,,,36,27,0,0,27,0,27,27,4,,"2A2E2F2G2J2K",,"1",,,,"1",,,,"1",,,,"1","1","1","1","1",,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802160032P040108305089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCKENNA ASSOCIATES, INC. 401K PROFIT SHARING PLAN","001","1995-01-01","MCKENNA ASSOCIATES, INC.",,,"235 EAST MAIN STREET","SUITE 105","NORTHVILLE","MI","48167",,,,,,,,,,,,,,,,,,"382213606","2485960920","541330","MCKENNA ASSOCIATES, INC.",,"235 EAST MAIN STREET","SUITE 105","NORTHVILLE","MI","48167",,,,,,,"382213606","2485960920",,,,"2011-08-02T16:00:15-0500","PHILLIP C. MCKENNA",,,,,37,36,0,1,37,0,37,34,0,,"2A2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110803093008P040108724465001","2010-01-01","2010-12-31","2",,,,"1",,,,"1",,,,"WIXOM STEEL PROCESSING, INC. 401(K)PROFIT SHARING PLAN & TRUST","001","2006-01-01","WIXOM STEEL PROCESSING, INC.",,,"639 TELYA RIDGE",,"MILFORD","MI","48381",,,,,,,,,,,,,,,,,,"200374612","8106234047","331200","WIXOM STEEL PROCESSING, INC.",,"639 TELYA RIDGE",,"MILFORD","MI","48381",,,,,,,"200374612","8106234047",,,,"2011-08-03T10:18:18-0500","PETER MOCERI SR.","2011-08-03T10:18:25-0500","PETER MOCERI SR.",,,1,,,0,0,,0,,,,"2E2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110803133008P030495242640001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"AMERICAN HUMANE ASSOCIATION LIFE, AD&D & DISABILITY WELFARE BENEFIT PLAN","503","2009-01-01","THE AMERICAN HUMANE ASSOCIATION",,,"63 INVERNESS DRIVE EAST",,"ENGLEWOOD","CO","801125117",,,,,,,,,,,,,,,,,,"840432950","3037929900","812990","THE AMERICAN HUMANE ASSOCIATION",,"63 INVERNESS DRIVE EAST",,"ENGLEWOOD","CO","801125117",,,,,,,"840432950","3037929900",,,,"2011-08-03T13:26:16-0500","DALE AUSTIN",,,,,131,121,,,121,,,,,,,"4B4F4H4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110803093312P040108725713001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SOUTH DAKOTA WHEAT GROWERS ASSOCIATION GROUP LIFE PLAN","502","1964-01-01","SOUTH DAKOTA WHEAT GROWERS ASSOCIATION",,,"1100 SIXTH AVENUE SE",,"ABERDEEN","SD","574021406",,,,,,,"1100 SIXTH AVENUE SE",,"ABERDEEN","SD","574021406",,,,,,,"460191930","6052255599","115110","SOUTH DAKOTA WHEAT GROWERS ASSOCIATION",,"1100 SIXTH AVENUE SE",,"ABERDEEN","SD","574021406",,,,,,,"460191930","6052255599",,,,"2011-08-02T16:31:11-0500","JUDY STULKEN",,,,,489,511,,,511,,511,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-03","Filed with authorized/valid electronic signature",, "20110731014047P030103844545001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"SALINAS SUNRISE, INC. PROFIT SHARING PLAN","001","2010-02-11","SALINAS SUNRISE, INC.",,,"6144 EVANGELINE DRIVE",,"SAN JOSE","CA","95123",,,,,,,,,,,,,,,,,,"271897624","4083078155","445120","SALINAS SUNRISE, INC.",,"6144 EVANGELINE DRIVE",,"SAN JOSE","CA","95123",,,,,,,"271897624","4083078155",,,,"2011-07-31T01:40:18-0500","PADMA SOOD",,,,,0,1,0,0,1,0,1,1,,,"2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-31","Filed with authorized/valid electronic signature",, "20110802111220P030105218129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IVY SQUARE LTD 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","IVY SQUARE LTD",,,"767 5TH AVENUE, 8TH FLOOR",,"NEW YORK","NY","10153",,,,,,,,,,,,,,,,,,"262483016","6468677345","541990","IVY SQUARE LTD",,"767 5TH AVENUE, 8TH FLOOR",,"NEW YORK","NY","10153",,,,,,,"262483016","6468677345",,,,"2011-08-02T11:12:15-0500","IVY SQUARE LTD",,,,,5,4,0,0,4,0,4,4,0,,"2T2G2A3D2E2J2R",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802111243P040108185361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HOLLAND, INC. 401(K) PLAN","002","1993-01-01","THE HOLLAND, INC.",,,"109 W 17TH STREET",,"VANCOUVER","WA","98660",,,,,,,,,,,,,,,,,,"910844538","3606941521","722210","THE HOLLAND, INC.",,"109 W 17TH STREET",,"VANCOUVER","WA","98660",,,,,,,"910844538","3606941521",,,,"2011-08-02T11:12:00-0500","JON SEQUEIRA",,,,,221,175,0,59,234,0,234,151,8,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110729135059P030103021985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CARTER LEDYARD & MILBURN 401(K) SAVINGS PLAN","008","1991-10-01","CARTER LEDYARD & MILBURN LLP",,,"2 WALL STREET",,"NEW YORK","NY","10005",,,,,,,"2 WALL STREET",,"NEW YORK","NY","10005",,,,,,,"134986540","2127323200","541110","RETIREMENT COMMITTEE CARTER LEDYARD & MILBURN",,"2 WALL STREET",,"NEW YORK","NY","10005",,,,,,,"132889148","2127323200",,,,"2011-07-29T13:18:02-0500","JEROME CAULFIELD",,,,,89,53,0,37,90,0,90,75,0,,"2F2G2J2R2T",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-29","Filed with authorized/valid electronic signature",, "20110802175352P040108356417001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"HERITAGE GOLF GROUP, INC. 401(K) PLAN","001","2000-02-01","HERITAGE GOLF GROUP, INC.",,,"12750 HIGH BLUFF DRIVE","SUITE 400","SAN DIEGO","CA","92130",,,,,,,"12750 HIGH BLUFF DRIVE","SUITE 400","SAN DIEGO","CA","92130",,,,,,,"364324834","8586176116","713900","HERITAGE GOLF GROUP, INC.",,"12750 HIGH BLUFF DRIVE","SUITE 400","SAN DIEGO","CA","92130",,,,,,,"364324834","8586176116",,,,"2011-08-01T16:54:53-0500","JUDY MUNOZ","2011-08-02T17:18:52-0500","ANGELA KASTEN",,,916,647,1,65,713,1,714,229,25,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110731210443P030032837319001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRANSITIONAL INCOME PLAN WHQ","630","2006-01-01","BORGWARNER",,,"3850 HAMLIN",,"AUBURN HILLS","MI","48326",,,,,,,"3850 HAMLIN",,"AUBURN HILLS","MI","48326",,,,,,,"133404508","2487549200","336300","JANICE MCADAMS","BORGWARNER","3850 HAMLIN",,"AUBURN HLLS","MI","48326",,,,,,,"133404508","2487549200",,,,"2011-07-30T13:11:37-0500","JANICE MCADAMS",,,,,166,198,,,198,,198,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-31","Filed with authorized/valid electronic signature",, "20110802094417P040108139089001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"TRICORE SOLUTIONS 401(K) PLAN","001","2005-05-01","TRICORE SOLUTIONS, LLC",,,"141 LONGWATER DRIVE SUITE 100",,"NORWELL","MA","02061",,,,,,,"141 LONGWATER DRIVE SUITE 100",,"NORWELL","MA","02061",,,,,,,"043472931","6177869210","541512","TRICORE SOLUTIONS, LLC",,"141 LONGWATER DRIVE SUITE 100",,"NORWELL","MA","02061",,,,,,,"043472931","6177869210",,,,"2011-08-02T09:44:01-0500","ARTHUR GREEN",,,,,81,66,0,9,75,0,75,32,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110731191906P040107146385001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"EMPLOYEES RETIREMENT PLAN OF BAT-CON INC","001","1978-04-01","BAT-CON INC",,"JEFFREY D CRYSLER","P.O. BOX 155",,"MARCELLUS","NY","13108",,,,,,,"4277 SLATE HILL ROAD",,"MARCELLUS","NY","13108",,,,,,,"161016446","3156732031","237100","BAT-CON INC","JEFFREY D CRYSLER","P.O. BOX 155",,"MARCELLUS","NY","13108",,,,,,,"161016446","3156732031",,,,"2011-07-31T19:18:35-0500","TINA FREDETTE",,,,,58,42,,13,55,,55,55,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-31","Filed with authorized/valid electronic signature",, "20110802124858P040016018450001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"USS CAL BUILDERS 401(K) SAVINGS PLAN","001","2005-01-01","USS CAL BUILDERS",,,"8051 MAIN STREET",,"STANTON","CA","90680",,,,,,,,,,,,,,,,,,"954380253","7148284882","812990","USS CAL BUILDERS",,"8051 MAIN STREET",,"STANTON","CA","90680",,,,,,,"954380253","7148284882",,,,"2011-08-02T12:47:57-0500","ALLEN OTHMAN","2011-08-02T12:47:57-0500","ALLEN OTHMAN",,,96,100,0,1,101,0,101,15,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110802141651P040488478896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACT, INC. TAX DEFERRED ANNUITY PLAN","004","1974-07-31","ACT, INC.",,,"500 ACT DRIVE",,"IOWA CITY","IA","52245",,,,,,,,,,,,,,,,,,"420841485","3193371012","611000","ACT, INC.",,"500 ACT DRIVE",,"IOWA CITY","IA","52245",,,,,,,"420841485","3193371012",,,,"2011-08-02T14:16:06-0500","ELLEN K. MINCHK","2011-08-02T14:16:06-0500","ELLEN K. MINCHK",,,707,580,0,138,718,0,718,577,0,,"2F2G2L2M2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110731200247P030104259969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LANCELECT MEDICAL PLAN","501","1991-01-01","LANCE, INC.",,"CAROLYN COOPER/BENEFITS DEPARTMENT","8600 SOUTH BLVD.",,"CHARLOTTE","NC","28273",,,,,,,"8600 SOUTH BLVD.",,"CHARLOTTE","NC","28273",,,,,,,"560292920","7045565788","311800","LANCE, INC.","CAROLYN COOPER/BENEFITS DEPARTMENT","8600 SOUTH BLVD.",,"CHARLOTTE","NC","28273",,,,,,,"560292920","7045565788",,,,"2011-07-29T16:26:14-0500","JANICE MOFFITT",,,,,4151,4098,0,0,4098,,4098,,,,,"4A4Q","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-31","Filed with authorized/valid electronic signature",, "20110802150938P040108285025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE RIVERBAY CORPORATION EMPLOYEE BENEFIT","501","1983-01-01","RIVERBAY CORPORATION",,,"2049 BARTOW AVE",,"BRONX","NY","10475",,,,,,,"2049 BARTOW AVE",,"BRONX","NY","10475",,,,,,,"132571433","7183203300","531310","RIVERBAY CORPORATION",,"2049 BARTOW AVE",,"BRONX","NY","10475",,,,,,,"132571433","7183203300",,,,"2011-08-02T14:52:24-0500","LOUIS SALEGNA",,,,,562,562,0,0,562,0,562,0,0,,,"4A4B4C4D4E4F","1","0","0","0","1","0","0","0",,"0","0",,,"1","7",,,,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802081830P030015440370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCCLARIN PLASTICS, INC. CASH OR DEFERRED PROFIT SHARING PLAN","001","1967-10-31","MCCLARIN PLASTICS, INC.",,,"P.O. BOX 486","15 INDUSTRIAL DRIVE","HANOVER","PA","173310486",,,,,,,,,,,,,,,,,,"232261263","7176372241","326100","MCCLARIN PLASTICS, INC.",,"P.O. BOX 486","15 INDUSTRIAL DRIVE","HANOVER","PA","173310486",,,,,,,"232261263","7176372241",,,,"2011-08-02T07:55:22-0500","MICHAEL J. CLIFFORD",,,,,154,125,0,10,135,0,135,114,6,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802143840P040108269553001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","1","0","0","0",,"LIFE, AD&D, LONG AND SHORT TERM DISABILITY","502","1987-02-01","MERRILL COMMUNICATIONS LLC",,,"ONE MERRILL CIRCLE",,"SAINT PAUL","MN","55108",,,,,,,,,,,,,,,,,,"412007271","6516324233","323100","MERRILL COMMUNICATIONS LLC",,"ONE MERRILL CIRCLE",,"SAINT PAUL","MN","55108",,,,,,,"412007271","6516324233",,,,"2011-08-02T14:38:28-0500","BRENDA VALE","2011-08-02T14:38:28-0500","BRENDA VALE",,,3786,3589,,,3589,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110802103339P030492331712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"HEALTH INSURANCE PLAN FOR EES OF PETER PAN BUS LINES INC.","502","1997-01-01","PETER PAN BUS LINES, INC.",,,"1776 MAIN STREET","P. O. BOX 1776","SPRINGFIELD","MA","011021776",,,,,,,"1776 MAIN STREET","P. O. BOX 1776","SPRINGFIELD","MA","011021776",,,,,,,"042202752","4137812900","485990","PETER PAN BUS LINES, INC.",,"1776 MAIN STREET","P. O. BOX 1776","SPRINGFIELD","MA","011021776",,,,,,,"042202752","4137812900",,,,"2011-08-01T13:35:04-0500","BRIAN STEFANO",,,,,309,317,3,0,320,0,320,,,,,"4A","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802072850P040108083585001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NEW SOUTH RESTORATIONS DBA NSR, INC. 401(K) PLAN","001","1996-01-01","NEW SOUTH RESTORATIONS DBA NSR, INC.",,,"3699 CHAMBLEE DUNWOODY ROAD",,"ATLANTA","GA","30341",,,,,,,"3699 CHAMBLEE DUNWOODY ROAD",,"ATLANTA","GA","30341",,,,,,,"582131402","7702200011","238300","NEW SOUTH RESTORATIONS DBA NSR, INC.",,"3699 CHAMBLEE DUNWOODY ROAD",,"ATLANTA","GA","30341",,,,,,,"582131402","7702200011",,,,"2011-08-02T07:21:46-0500","TARYN MITCHELL",,,,,47,88,0,1,89,0,89,21,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802190202P040016045234001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP HEALTH PLAN","501","1989-04-01","SEATTLE PACIFIC INDUSTRIES, INC. DBA UNIONBAY SPORTSWEAR",,,"P.O. BOX 58710",,"KENT","WA","98032",,,,,,,"21216 72ND AVE. S.",,"KENT","WA","98032",,,,,,,"911124736","2538728822","424300","SEATTLE PACIFIC INDUSTRIES, INC. DBA UNIONBAY SPORTSWEAR",,"P.O. BOX 58710",,"KENT","WA","98032",,,,,,,"911124736","2538728822",,,,"2011-08-02T18:49:53-0500","STEVE RITCHEY",,,,,223,178,4,0,182,0,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110802155715P040108304241004","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"UE MICHIGAN SALES INC PROFIT SHRG","002","1999-10-05","UE MICHIGAN SALES INC","PRECISION ELECTRIC MOTOR SALES","STEVEN OLMSTED","PO BOX 177",,"OWOSSO","MI","48817",,,,,,,"PO BOX 177",,"CORUNNA","MI","48817",,,,,,,"382078547","9897259215","423600","UE MICHIGAN SALES INC","STEVEN OLMSTED","PO BOX 177",,"OWOSSO","MI","48817",,,,,,,"382078547","9897259215",,,,"2011-07-27T10:04:10-0500","STEVEN OLMSTED",,,,,29,29,,1,30,,30,30,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-02","Filed with authorized/valid electronic signature",, "20110816131400P040524371376001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MUSGROVE FAMILY MORTUARY 401(K) PROFIT SHARING PLAN & TRUST","001","1993-04-01","MUSGROVE FAMILY MORTUARY",,,"PO BOX 22210",,"EUGENE","OR","97402",,,,,,,,,,,,,,,,,,"930474288","5413428281","812220","MUSGROVE FAMILY MORTUARY",,"PO BOX 22210",,"EUGENE","OR","97402",,,,,,,"930474288","5413428281",,,,"2011-08-16T01:13:57-0500","MUSGROVE FAMILY MORTUARY",,,,,48,31,0,5,36,0,36,34,0,,"2T2G3D2E2J2K",,"1","0","1","0","1","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110811153739P030110509745001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SEAVIEW SWEETS, LLC 401 (K) PLAN","001","2005-01-01","SEAVIEW SWEETS, LLC",,,"744 MARYS DRIVE",,"BRICK","NJ","08723",,,,,,,"744 MARYS DRIVE",,"BRICK","NJ","08723",,,,,,,"202057298","7328990022","445292","SEAVIEW SWEETS, LLC",,"744 MARYS DRIVE",,"BRICK","NJ","08723",,,,,,,"202057298","7328990022",,,,"2011-08-11T15:35:53-0500","BRUCE BRAND",,,,,7,4,0,1,5,0,5,3,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110812135245P030016298450001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","1","0","0","0",,"FIRST REPUBLIC BANK EMPLOYEE STOCK OWNERSHIP PLAN","001","1985-07-01","FIRST REPUBLIC BANK",,,"111 PINE STREET",,"SAN FRANCISCO","CA","94111",,,,,,,,,,,,,,,,,,"880157485","4153921400","522110","FIRST REPUBLIC BANK",,"111 PINE STREET",,"SAN FRANCISCO","CA","94111",,,,,,,"880157485","4153921400",,,,"2011-08-12T13:52:52-0500","WILLIS H. NEWTON","2011-08-12T13:52:52-0500","WILLIS H. NEWTON",,,0,0,0,0,0,0,0,0,0,,"2O3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110815132720P040003260164001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAN DIEGO CENTRAL PLUMBING, INC. 401(K) PROFIT SHARING PLAN","001","1997-01-01","SAN DIEGO CENTRAL PLUMBING, INC.",,,"6152 MISSION GORGE ROAD, SUITE H",,"SAN DIEGO","CA","92120",,,,,,,,,,,,,,,,,,"330106478","6192835531","238220","SAN DIEGO CENTRAL PLUMBING, INC.",,"6152 MISSION GORGE ROAD, SUITE H",,"SAN DIEGO","CA","92120",,,,,,,"330106478","6192835531",,,,"2011-08-15T13:11:46-0500","ROLAND HARMAN","2011-08-15T13:11:46-0500","ROLAND HARMAN",,,11,9,0,0,9,0,9,7,1,,"2E2J2K2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110815132050P030016528882001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RIVERFRONT RETIREMENT PLAN","001","1996-01-01","RIVERFRONT, INC.",,,"3000 SOUTH AVE",,"LACROSSE","WI","54601",,,,,,,,,,,,,,,,,,"930756626","6087849450","624310","RIVERFRONT, INC.",,"3000 SOUTH AVE",,"LACROSSE","WI","54601",,,,,,,"930756626","6087849450",,,,"2011-08-15T13:20:25-0500","JEAN RUPPERT",,,,,359,300,0,66,366,0,366,182,13,,"2E2F2G2K2M3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816084944P040523887552001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"KELLY & NOLAN, LLC PROFIT SHARING PLAN","001","1987-01-01","KELLY & NOLAN, LLC",,,"514 BRICK BLVD. - P.O. BOX 945",,"BRICK","NJ","08723",,,,,,,,,,,,,,,,,,"223771481","7324778121","541190","KELLY & NOLAN, LLC",,"514 BRICK BLVD. - P.O. BOX 945",,"BRICK","NJ","08723",,,,,,,"223771481","7324778121",,,,"2011-08-16T08:49:02-0500","MICHAEL T. NOLAN, JR.",,,,,5,3,0,0,3,0,3,3,1,,"2A2E3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","4","0","0","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110812132802P040016912946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUNTRUST EQUITABLE SECURITIES CORPORATION PROFIT SHARING PLAN","001","1975-07-01","SUNTRUST BANKS, INC.",,,"P.O. BOX 4418","MC ATL 0636 G ATTN JOHN BARKER","ATLANTA","GA","30302",,,,,,,"P.O. BOX 4418","MC ATL 0636 G ATTN JOHN BARKER","ATLANTA","GA","30302",,,,,,,"620871146","4048137155","522110","SUNTRUST BANKS, INC.",,"P.O. BOX 4418","MC ATL 0636 G ATTN JOHN BARKER","ATLANTA","GA","30302",,,,,,,"620871146","4048137155",,,,"2011-08-12T13:12:10-0500","DONNA LANGE",,,,,8,4,4,,8,,8,8,0,,"2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110812135259P040113982369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRIFFIN PEST SOLUTIONS, INC. PROFIT SHARING PLAN","002","1993-04-01","GRIFFIN PEST SOLUTIONS, INC.",,,"2700 STADIUM DRIVE",,"KALAMAZOO","MI","49008",,,,,,,,,,,,,,,,,,"381552982","2693530934","812990","GRIFFIN PEST SOLUTIONS, INC.",,"2700 STADIUM DRIVE",,"KALAMAZOO","MI","49008",,,,,,,"381552982","2693530934",,,,"2011-08-12T13:52:26-0500","PAMELA BLAUVELT",,,,,61,48,0,14,62,0,62,54,1,,"2A2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110806003341P030015758818001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","1","0",,"J & D LABORATORIES INC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","J&D LABORATORIES INC",,,"2640 PROGRESS ST",,"VISTA","CA","92081",,,,,,,"2640 PROGRESS ST",,"VISTA","CA","92081",,,,,,,"330392738","7607346800","311900","J&D LABORATORIES INC",,"2640 PROGRESS ST",,"VISTA","CA","92081",,,,,,,"330392738","7607346800",,,,"2011-08-06T00:32:49-0500","KIRAN MAJMUDAR","2011-08-06T00:33:22-0500","KIRAN MAJMUDAR",,,79,85,0,2,87,0,87,45,0,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110815085627P040115633249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ERNST FLOW INDUSTRIES, INC. PROFIT SHARING AND 401(K) PLAN","002","1993-01-01","ERNST FLOW INDUSTRIES, INC.",,,"116 MAIN STREET",,"FARMINGDALE","NJ","07727",,,,,,,,,,,,,,,,,,"221689945","7329385641","423700","ERNST FLOW INDUSTRIES, INC.",,"116 MAIN STREET",,"FARMINGDALE","NJ","07727",,,,,,,"221689945","7329385641",,,,"2011-08-15T08:54:55-0500","BARBARA DAYTON","2011-08-15T08:56:01-0500","BARBARA DAYTON",,,21,15,0,6,21,0,21,21,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110815090059P030112604625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FESCO, LTD. 401K PLAN","001","1966-08-01","FESCO, LTD.",,,"1000 FESCO DRIVE",,"ALICE","TX","783327318",,,,,,,,,,,,,,,,,,"741458395","3616617000","541330","FESCO, LTD.",,"1000 FESCO DRIVE",,"ALICE","TX","783327318",,,,,,,"741458395","3616617000",,,,"2011-08-15T08:59:48-0500","IRMA GARCIA",,,,,709,824,0,106,930,0,930,650,63,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816120038P030113260753002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"PITTSBURGH WEST OBGYN LTD PROFIT SHARING PLAN","001","1995-05-01","PITTSBURGH WEST OB/GYN LTD",,,"1764 PINE HOLLOW ROAD",,"MCKEES ROCKS","PA","15136",,,,,,,,,,,,,,,,,,"251759809","4127710222","621111","OOK JAI LEE",,"960 BEAVER GRADE ROAD",,"CORAOPOLIS","PA","15108",,,,,,,"251759809","4122644741",,,,"2011-07-31T12:08:22-0500","OOK JAI LEE MD",,,,,6,7,,,7,,7,6,,,"2E2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110811171251P030034814279001","2011-01-01","2011-07-18","2",,"0","0","1","1","0","0","0","0","0",,"CONNIE M. TYSON RETIREMENT PLAN","003","2007-01-01","CONNIE M. TYSON, CFP, CLU",,,"16940 SW GREENTREE AVENUE",,"LAKE OSWEGO","OR","97034",,,,,,,"16940 SW GREENTREE AVENUE",,"LAKE OSWEGO","OR","97034",,,,,,,"931128114","5036206260","524210","CONNIE M. TYSON, CFP, CLU",,"16940 SW GREENTREE AVENUE",,"LAKE OSWEGO","OR","97034",,,,,,,"931128114","5036206260",,,,"2011-08-11T17:10:26-0500","CONNIE TYSON",,,,,1,0,,,0,,0,,,,"1A1I3B3D",,,"1",,,,"1",,,"1",,,,,"1","1",,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110812152418P040114027233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"XOTECH-LLC 401(K) PROFIT SHARING PLAN","001","2003-08-01","XOTECH-LLC",,,"150 HOWELL ROAD, SUITE B",,"TYRONE","GA","30290",,,,,,,,,,,,,,,,,,"582528193","7706327219","541600","XOTECH-LLC",,"150 HOWELL ROAD, SUITE B",,"TYRONE","GA","30290",,,,,,,"582528193","7706327219",,,,"2011-08-12T15:16:47-0500","GARY MARULLO","2011-08-12T15:16:47-0500","GARY MARULLO",,,349,104,0,108,212,0,212,180,0,,"2E2F2G2J2K3D3H3J",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110812155313P040514487744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INDUSTRIAL ELECTRONIC SUPPLY INC. 401(K) PLAN","002","1991-11-01","INDUSTRIAL ELECTRONIC",,,"2321 TEXAS AVE",,"SHREVEPORT","LA","71103",,,,,,,,,,,,,,,,,,"720574155","3182228904","423600","INDUSTRIAL ELECTRONIC",,"2321 TEXAS AVE",,"SHREVEPORT","LA","71103",,,,,,,"720574155","3182228904",,,,"2011-08-12T15:49:25-0500","DAVID DOYAL",,,,,65,57,0,0,57,0,57,55,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110815122846P030526282480001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"LETTS INDUSTRIES, INC. EMPLOYEES' RETIREMENT INCOME PLAN","001","1963-03-01","LETTS INDUSTRIES, INC.",,,"1111 BELLEVUE AVENUE",,"DETROIT","MI","48207",,,,,,,,,,,,,,,,,,"381601278","3135791100","332110","LETTS INDUSTRIES, INC.",,"1111 BELLEVUE AVENUE",,"DETROIT","MI","48207",,,,,,,"381601278","3135791100",,,,"2011-08-15T12:27:59-0500","CRAIG PICKARD",,,,,486,2,162,254,418,42,460,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816153512P040524646896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UROLOGY MEDICAL & SURGICAL (AMC) 401(K) PROFIT SHARING PLAN","001","1996-01-01","UROLOGY MEDICAL & SURGICAL, AMC",,,"4224 HOUMA BLVD., SUITE 620",,"METAIRIE","LA","70006",,,,,,,,,,,,,,,,,,"720890193","5044562537","621111","UROLOGY MEDICAL & SURGICAL, AMC",,"4224 HOUMA BLVD., SUITE 620",,"METAIRIE","LA","70006",,,,,,,"720890193","5044562537",,,,"2011-08-16T15:30:39-0500","ALFRED COLFREY JR",,,,,9,6,0,3,9,0,9,8,0,,"2A2E2J2F2G2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110816124348P040116352417004","2004-11-01","2005-10-31","2",,,"1",,,,,,"1",,,"INSURANCE PLAN OF COLUMBIA GRAMMAR & PREPARATORY SCHOOL","502","1997-11-01","COLUMBIA GRAMMAR & PREPARATORY SCHOOL",,,"5 WEST 93RD STREET",,"NEW YORK","NY","10025",,,,,,,,,,,,,,,,,,"130590970","2127496200","611000","COLUMBIA GRAMMAR & PREPARATORY SCHOOL",,"5 WEST 93RD STREET",,"NEW YORK","NY","10025",,,,,,,"130590970","2127496200",,,,"2011-08-16T08:14:55-0500","SHARONAH VOLKOWITZ",,,,,176,198,,,198,,,,,,,"4B4H4Q",,,,"1",,,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110816124809P040524320912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NOLT & NOLT, INC. 401(K) SAVINGS PLAN","001","1989-07-01","NOLT & NOLT, INC.",,,"1886 COMMERCE PARK EAST ROAD",,"LANCASTER","PA","17601",,,,,,,,,,,,,,,,,,"232282196","7173935444","236200","NOLT & NOLT, INC.",,"1886 COMMERCE PARK EAST ROAD",,"LANCASTER","PA","17601",,,,,,,"232282196","7173935444",,,,"2011-08-16T12:46:20-0500","RON NOLT","2011-08-16T12:47:38-0500","RON NOLT",,,24,20,0,0,20,0,20,20,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110811095625P040113308817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LUZERNE COUNTY HEADSTART, INC. RETIREMENT PLAN","001","1994-10-01","LUZERNE COUNTY HEADSTART, INC.",,,"23 BEEKMAN ST",,"WILKES BARRE","PA","18703",,,,,,,,,,,,,,,,,,"232038753","5708296231","611000","LUZERNE COUNTY HEADSTART, INC.",,"23 BEEKMAN ST",,"WILKES BARRE","PA","18703",,,,,,,"232038753","5708296231",,,,"2011-08-10T13:48:30-0500","LORI NOCITO","2011-08-11T09:48:48-0500","LYNN EVANS BIGA",,,207,193,1,28,222,1,223,222,6,,"2E2G2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110812111536P030518392864001","2010-01-01","2010-09-09","2",,"0","0","1","1",,"1",,"1",,,"WOOD GROUP POWER OPERATIONS (WEST), INC. 401(K) PLAN FOR NON UNION EMPLOYEES LSP I","002","2006-03-24","WOOD GROUP POWER OPERATIONS WEST, INC.",,,"17420 KATY FREEWAY","SUITE 300","HOUSTON","TX","77094",,,,,,,"17420 KATY FREEWAY","SUITE 300","HOUSTON","TX","77094",,,,,,,"204322865","2818283540","333900","WOOD GROUP POWER OPERATIONS WEST, INC.",,"17420 KATY FREEWAY","SUITE 300","HOUSTON","TX","77094",,,,,,,"204322865","2818283540",,,,"2011-08-12T11:10:24-0500","SHARON MILLER",,,,,4,0,0,0,0,0,0,0,0,,"2F2G2J2K2T3F3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110812172559P030519106848001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"OKLAHOMA SURGICAL HOSPITAL, LLC","503","2008-01-01","OKLAHOMA SURGICAL HOSPITAL, LLC",,,"2408 EAST 81ST STREET","SUITE 900","TULSA","OK","74137",,,,,,,"2408 EAST 81ST STREET","SUITE 900","TULSA","OK","74137",,,,,,,"731573733","9184775015","622000","OKLAHOMA SURGICAL HOSPITAL, LLC",,"2408 EAST 81ST STREET","SUITE 900","TULSA","OK","74137",,,,,,,"731573733","9184775015",,,,"2011-08-12T17:18:39-0500","WILLIAM CLELAND",,,,,294,302,,,302,,302,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110815140020P030112738769002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PERRY RUDICH MD SC PROFIT SHARING PLAN & TRUST","001","1984-10-04","PERRY RUDICH, M D , S C",,,"2600 BOB-O-LINK LANE",,"NORTHBROOK","IL","600625914",,,,,,,,,,,,,,,,,,"363323282","8474981780","621111","PERRY RUDICH M D S C",,"2600 BOB-O-LINK LANE",,"NORTHBROOK","IL","600625914",,,,,,,"363323282","8474981780",,,,"2011-08-15T13:29:51-0500","PERRY RUDICH TRUSTEE",,,,,2,2,,,2,,2,2,,,"2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110815181054P030112847921001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"SHARED SERVICES HEALTH AND BENEFITS PLAN","501","2003-03-01","CORSAIR ENGINEERING, INC.",,,"218 MAIN STREET, SUITE 279",,"KIRKLAND","WA","98033",,,,,,,,,,,,,,,,,,"911663426","4258030628","541330","CORSAIR ENGINEERING, INC.",,"218 MAIN STREET, SUITE 279",,"KIRKLAND","WA","98033",,,,,,,"911663426","4258030628",,,,"2011-08-15T18:09:52-0500","MARGOT WASHINGTON",,,,,189,135,4,0,139,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110811155120P030016222930001","2010-01-01","2010-10-29","2",,"0","0","1","1","0","1","0","0","0",,"FIRSTSOURCE 401(K) PLAN","001","1996-01-01","FIRSTSOURCE SOLUTIONS USA, INC.",,"ROBIN LUCKETT","1661 LYNDON FARM COURT",,"LOUISVILLE","KY","40223",,,,,,,,,,,,,,,,,,"134112411","5024990855","524290","FIRSTSOURCE SOLUTIONS USA, INC.","ROBIN LUCKETT","1661 LYNDON FARM COURT",,"LOUISVILLE","KY","40223",,,,,,,"134112411","5024990855",,,,"2011-08-11T15:50:11-0500","CAROL HILL",,,,,1120,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2S3D3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","0","1","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110812181823P030519200000001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NGM BIOPHARMACEUTICALS 401(K) PLAN","001","2008-05-01","NGM BIOPHARMACEUTICALS, INC.",,,"630 GATEWAY BLVD",,"SOUTH SAN FRANCISCO","CA","94080",,,,,,,"630 GATEWAY BLVD",,"SOUTH SAN FRANCISCO","CA","94080",,,,,,,"261679911","6502435555","541700","NGM BIOPHARMACEUTICALS, INC.",,"630 GATEWAY BLVD",,"SOUTH SAN FRANCISCO","CA","94080",,,,,,,"261679911","6502435555",,,,"2011-08-12T12:25:37-0500","JIN-LONG CHEN",,,,,37,46,0,2,48,0,48,34,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110815084743P040115627313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ABBOTT LABORATORIES PUERTO RICO LTD PLAN","516","1976-02-01","ABBOTT PHARMACEUTICALS PR LTD.",,"C/O ABBOTT LABORATORIES","CORPORATE BENEFITS, D-589, AP51","200 ABBOTT PARK ROAD","ABBOTT PARK","IL","600646222",,,,,,,,,,,,,,,,,,"980429860","8479373830","325410","ABBOTT PHARMACEUTICALS PR LTD.","C/O ABBOTT LABORATORIES","CORPORATE BENEFITS, D-589, AP51","200 ABBOTT PARK ROAD","ABBOTT PARK","IL","600646222",,,,,,,"980429860","8479373830",,,,"2011-08-12T08:42:35-0500","TIM RICHMOND",,,,,2353,2713,254,0,2967,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816134632P040524439936001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALGONQUIN INDUSTRIES, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","ALGONQUIN INDUSTRIES, INC.",,,"P.O. BOX 176",,"BELLINGHAM","MA","02019",,,,,,,"139 FARM STREET",,"BELLINGHAM","MA","02019",,,,,,,"042673917","5089660811","332700","ALGONQUIN INDUSTRIES, INC.",,"P.O. BOX 176",,"BELLINGHAM","MA","02019",,,,,,,"042673917","5089660811",,,,"2011-08-16T13:45:48-0500","KAZMIER KASPER","2011-08-16T13:45:48-0500","KASMIER KASPER",,,110,98,0,7,105,0,105,68,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110816120324P040017233458001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"COMMUNITY SOUTH BANK WELFARE PLAN","501","2006-01-01","COMMUNITY SOUTH BANK",,,"68 W. MAIN ST.",,"PARSONS","TN","383632012",,,,,,,,,,,,,,,,,,"620797322","7318471610","551111","COMMUNITY SOUTH BANK",,"68 W. MAIN ST.",,"PARSONS","TN","383632012",,,,,,,"620797322","7318471610",,,,"2011-08-16T11:53:39-0500","COURTNEY TOWNSEND",,,,,155,141,3,0,144,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110811174010P030516543248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DELIVER OR DIE PRODUCTIONS, INC. PROFIT SHARING PENSION PLAN","001","1998-01-01","DELIVER OR DIE PRODUCTIONS, INC.",,,"26 PACIFIC AVENUE",,"PIEDMONT","CA","94611",,,,,,,,,,,,,,,,,,"943221350","5108430413","512100","DELIVER OR DIE PRODUCTIONS, INC.",,"26 PACIFIC AVENUE",,"PIEDMONT","CA","94611",,,,,,,"943221350","5108430413",,,,"2011-08-11T17:39:30-0500","DENISE REDER",,,,,1,79,0,0,79,0,79,1,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110815104418P030112647185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACOBS PROJECT MANAGEMENT COMPANY 401(K) PLUS SAVINGS PLAN AND TRUST","001","2008-10-01","JACOBS ENGINEERING GROUP, INC.",,,"1111 S. ARROYO PARKWAY",,"PASADENA","CA","91109",,,,,,,,,,,,,,,,,,"352321289","6265783500","541330","JACOBS ENGINEERING GROUP, INC.",,"1111 S. ARROYO PARKWAY",,"PASADENA","CA","91109",,,,,,,"352321289","6265783500",,,,"2011-08-15T10:43:41-0500","ADRIENNE BECK","2011-08-15T10:43:41-0500","ADRIENNE BECK",,,689,781,1,75,857,0,857,843,0,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110815155436P040115827521001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"J. M. FAHEY CONSTRUCTION COMPANY 401(K) PROFIT SHARING PLAN","001","1984-04-01","J. M. FAHEY CONSTRUCTION COMPANY",,,"408 HIGH GROVE ROAD",,"GRANDVIEW","MO","64030",,,,,,,,,,,,,,,,,,"431029042","8167633010","237310","J. M. FAHEY CONSTRUCTION COMPANY",,"408 HIGH GROVE ROAD",,"GRANDVIEW","MO","64030",,,,,,,"431029042","8167633010",,,,"2011-08-15T15:53:36-0500","JOSEPH T. FAHEY",,,,,24,22,,1,23,0,23,22,0,,"2H2J2K2E2F3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110815160043P040522064176011","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"JONES JACKSON & MOLL PLC PROFIT SHARING PLAN","001","1971-09-01","JONES, JACKSON & MOLL, PLC",,,"401 NORTH 7TH STREET",,"FORT SMITH","AR","72902",,,,,,,,,,,,,,,,,,"710416864","4797827203","541110","JONES JACKSON & MOLL PLC",,"401 NORTH 7TH STREET",,"FORT SMITH","AR","72902",,,,,,,"710416864","4797827203",,,,"2011-08-15T15:39:56-0500","MARK A MOLL",,,,,8,6,,2,8,,8,8,,,"3D2R2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816150327P040116418305002","2010-01-01","2010-12-31","2",,,,,,,,,"1",,,"EMPLYMENT BENEFIT PLAN OF CHILD CARE RESOURCE CENTER OF CUYAHOGA COUNTY DBA STARTING POINT","001","1990-10-01","EMPLOYMENT BENEFIT PLAN OF CHILD CA RE RESOURCE CENTER OF CUYAHOGA CNT","STARTING POINT",,"4600 EUCLID 5TH FLOOR",,"CLEVELAND","OH","44103",,,,,,,,,,,,,,,,,,"341650004","2165750061","624100","BILLIE OSBORNE-FEARS",,"4600 EUCLID AVE 500",,"CLEVELAND","OH","44103",,,,,,,"341650004","2165750061",,,,"2011-08-16T14:24:09-0500","JAMES W STARKS",,,,,55,52,2,4,58,,58,58,,,"2J",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110812115516P040514047216001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"S.C. ENGINEERS INC 401(K) PROFIT SHARING PLAN","001","2005-01-01","S.C. ENGINEERS INC",,,"17075 VIA DEL CAMPO 1ST FLOOR",,"SAN DIEGO","CA","921271711",,,,,,,,,,,,,,,,,,"331099576","8589460333","541330","S.C. ENGINEERS INC",,"17075 VIA DEL CAMPO 1ST FLOOR",,"SAN DIEGO","CA","921271711",,,,,,,"331099576","8589460333",,,,"2011-08-12T11:55:05-0500","FRANK SHADPOUR",,,,,22,16,0,8,24,0,24,22,0,,"2E2F2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110815114248P030112673105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARK A. STIEG, D.D.S., M.S., P.A. PROFIT SHARING PLAN","002","1994-01-01","MARK A. STIEG, D.D.S., M.S., P.A.",,,"7301 E. SECOND STREET, SUITE 208",,"SCOTTSDALE","AZ","85251",,,,,,,,,,,,,,,,,,"860848016","4809470321","621210","MARK A. STIEG, D.D.S., M.S., P.A.",,"7301 E. SECOND STREET, SUITE 208",,"SCOTTSDALE","AZ","85251",,,,,,,"860848016","4809470321",,,,"2011-08-15T11:42:20-0500","MARK A. STIEG",,,,,38,17,0,10,27,0,27,27,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110815123600P030035527335001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAUL W. KROGER, DMD, MSD, PROFIT SHARING PLAN","001","1992-01-01","PAUL W. KROGER, DMD, MSD",,,"1569 MCKAIG AVE., SUITE 101",,"TROY","OH","453732640",,,,,,,,,,,,,,,,,,"311307491","9373555050","621320","PAUL W. KROGER, DMD, MSD",,"1569 MCKAIG AVE., SUITE 101",,"TROY","OH","453732640",,,,,,,"311307491","9373555050",,,,"2011-08-15T12:35:36-0500","PAUL W. KROGER","2011-08-15T12:35:36-0500","PAUL W. KROGER",,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110816155508P040116440833001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SOUTHWEST GEORGIA OIL COMPANY, INC. 401(K) PLAN","001","1974-06-01","SOUTHWEST GEORGIA OIL COMPANY, INC.",,,"1711 E. SHOTWELL STREET",,"BAINBRIDGE","GA","39819",,,,,,,,,,,,,,,,,,"580976116","2292461553","447100","SOUTHWEST GEORGIA OIL COMPANY, INC.",,"1711 E. SHOTWELL STREET",,"BAINBRIDGE","GA","39819",,,,,,,"580976116","2292461553",,,,"2011-08-16T16:42:53-0500","CANITA GUNTER PETERSON",,,,,169,148,,11,159,,159,59,5,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110816094643P040116253489001","2011-01-01","2011-08-08","2",,"0","0","1","1","0","0","0","0","0",,"JAMES C PIERCE DBA NATIONAL LEGACY GROUP 401(K) PLAN AND TRUST","001","2004-01-01","JAMES C PIERCE","NATIONAL LEGACY GROUP",,"210 PARK AVE",,"FLORHAM PARK","NJ","079321012",,,,,,,"210 PARK AVE",,"FLORHAM PARK","NJ","079321012",,,,,,,"061620048","9735389100","524210","JAMES C PIERCE",,"210 PARK AVE",,"FLORHAM PARK","NJ","079321012",,,,,,,"061620048","9735389100",,,,"2011-08-16T09:29:05-0500","JAMES C PIERCE",,,,,12,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1",,,,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110811100008P030110361937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAMES F. VILARO NELMS RETIREMENT PLAN","001","1991-01-01","JAMES F. VILARO NELMS",,,"PO BOX 1159",,"BAYAMON","PR","00961",,,,,,,"PO BOX 1159",,"BAYAMON","PR","00961",,,,,,,"660470143","7872693800","621111","JAMES F. VILARO NELMS",,"PO BOX 1159",,"BAYAMON","PR","00961",,,,,,,"660470143","7872693800",,,,"2011-08-11T09:42:39-0500","JAMES VILARO",,,,,3,2,0,0,2,0,2,2,0,,"2C3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110812105750P030111003121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADVANCE BRANDS 401(K) RETIREMENT SAVINGS PLAN","001","2001-04-01","ADVANCE BRANDS, LLC",,,"101 14TH STREET S.E.",,"ORANGE CITY","IA","51041",,,,,,,,,,,,,,,,,,"731606504","7127374829","311900","ADVANCE BRANDS, LLC",,"101 14TH STREET S.E.",,"ORANGE CITY","IA","51041",,,,,,,"731606504","7127374829",,,,"2011-08-12T10:55:33-0500","LAURA MOUW","2011-08-12T10:57:41-0500","JEFF HENDRIX, DIRECTOR OF FINANCE",,,262,218,0,55,273,0,273,270,21,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110815072309P040018986822001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"LACAVA & SOLIER, D.D.S., LTD. PROFIT SHARING PLAN","002","1973-07-01","LACAVA & SOLIER, D.D.S., LTD.",,,"2616 SHERWOOD HALL LANE, SUITE 403",,"ALEXANDRIA","VA","22306",,,,,,,,,,,,,,,,,,"540939226","7033604500","621210","LACAVA & SOLIER, D.D.S., LTD.",,"2616 SHERWOOD HALL LANE, SUITE 403",,"ALEXANDRIA","VA","22306",,,,,,,"540939226","7033604500",,,,"2011-08-15T07:22:40-0500","GEORGE SOLIER",,,,,6,5,0,0,5,0,5,4,0,,"2E2H2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816110937P030528788592001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SIGNUM GROUP LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","SIGNUM GROUP LLC",,,"1900 THE EXCHANGE","BLDG 200","ATLANTA","GA","30339",,,,,,,,,,,,,,,,,,"582370486","7705148111","541512","SIGNUM GROUP LLC",,"1900 THE EXCHANGE","BLDG 200","ATLANTA","GA","30339",,,,,,,"582370486","7705148111",,,,"2011-08-16T11:09:34-0500","SIGNUM GROUP LLC",,,,,28,0,0,12,12,0,12,12,0,,"2T2G3D2E2J2K",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","1",,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110811110612P030110389185001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THOMAS J. MURPHY, M.D., P.C. PROFIT SHARING PLAN","001","2001-01-01","THOMAS J. MURPHY, M.D., P.C.",,,"8851 CENTER DRIVE, SUITE 100",,"LA MESA","CA","91942",,,,,,,"8851 CENTER DRIVE, SUITE 100",,"LA MESA","CA","91942",,,,,,,"330543198",,"621111","THOMAS J. MURPHY, M.D., P.C.",,"8851 CENTER DRIVE, SUITE 100",,"LA MESA","CA","91942",,,,,,,"330543198",,,,,"2011-08-09T09:31:02-0500","THOMAS MURPHY","2011-08-09T09:31:02-0500","THOMAS MURPHY",,,3,3,0,0,3,0,3,3,,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110812083911P040113860977001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GADE NURSING HOME INC VEBA TRUST SEVERANCE PAY PLAN","503","1997-12-18","GADE NURSING HOME INC",,,"405 CHESTNUT STREET",,"GREENVILLE","OH","45331",,,,,,,,,,,,,,,,,,"341220493","9375481993","623000","GADE NURSING HOME INC",,"405 CHESTNUT STREET",,"GREENVILLE","OH","45331",,,,,,,"341220493","9375481993",,,,"2011-08-12T08:18:26-0500","MARTHA E GADE",,,,,45,56,,,56,,56,,,,,"4I",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110812132101P040113969441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SEXTON, BENDER, MAHER, HILL & STEINMAN, P.C. 401(K) PROFIT SHARING PLAN","001","1987-01-01","SEXTON, BENDER, MAHER, HILL & STEINMAN, P.C.",,,"2900 BROOKTREE LANE","WOODLANDS II BUILDING, SUITE 100","GLADSTONE","MO","641191873",,,,,,,,,,,,,,,,,,"431182292","8164552700","541110","SEXTON, BENDER, MAHER, HILL & STEINMAN, P.C.",,"2900 BROOKTREE LANE","WOODLANDS II BUILDING, SUITE 100","GLADSTONE","MO","641191873",,,,,,,"431182292","8164552700",,,,"2011-08-12T13:21:01-0500","MICHAEL H. MAHER",,,,,12,11,0,1,12,0,12,12,1,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110816113924P030113251089001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","1","0","0","0",,"MEDCORP, INC. 401K PLAN","001","1996-06-01","MEDCORP, INC.",,,"745 MEDCORP DR.",,"TOLEDO","OH","43608",,,,,,,,,,,,,,,,,,"341597974","4197277000","621399","MEDCORP, INC.",,"745 MEDCORP DR.",,"TOLEDO","OH","43608",,,,,,,"341597974","4197277000",,,,"2011-08-16T11:29:38-0500","JOHN GRAHAM",,,,,753,0,0,0,0,0,0,0,0,,"2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110816135146P030113303745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEE ARNOLD COMPANIES CAFETERIA PLAN","501","1991-01-01","LEE ARNOLD & ASSOCIATES, INC.",,,"311 PARK PLACE BLVD, STE 600",,"CLEARWATER","FL","33759",,,,,,,,,,,,,,,,,,"592199808","7274427184","531210","LEE ARNOLD & ASSOCIATES, INC.",,"311 PARK PLACE BLVD, STE 600",,"CLEARWATER","FL","33759",,,,,,,"592199808","7274427184",,,,"2011-08-16T13:46:38-0500","LEE ARNOLD",,,,,103,90,0,0,90,,,,,,,"4A4B4D4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110816105126P040116295489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DIGESTIVE DISEASE MEDICINE OF CNY, LLP 401(K) PROFIT SHARING PLAN","001","1984-12-05","DIGESTIVE DISEASE MEDICINE OF CNY, LLP",,,"110 BUSINESS PARK DRIVE",,"UTICA","NY","135026302",,,,,,,,,,,,,,,,,,"161503382","3156247023","621111","DIGESTIVE DISEASE MEDICINE OF CNY, LLP",,"110 BUSINESS PARK DRIVE",,"UTICA","NY","135026302",,,,,,,"161503382","3157930205",,,,"2011-08-16T10:46:46-0500","BRADLEY SKLAR",,,,,77,51,0,16,67,0,67,64,1,,"2A2E2F2H2J3B3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110816105508P040524107824001","2010-04-26","2011-04-25","2",,"1","0","0","0","0","0","0","0","0",,"TRAVEL ACCIDENT PLAN FOR THE EMPLOYEES OF BANK HAPOALIM B.M.","504","1979-04-26","BANK HAPOALIM B.M.",,"HUMAN RESSOURCE DEPARTMENT","1177 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10036",,,,,,,"1177 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10036",,,,,,,"132775750","2127822038","522110","BANK HAPOALIM B.M.","HUMAN RESSOURCE DEPARTMENT","1177 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10036",,,,,,,"132775750","2127822038",,,,"2011-08-16T10:54:39-0500","CARMEN MILLS",,,,,311,316,,,316,,316,,,,,"4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110815102927P040521425184002","1988-07-01","1989-06-30","2",,,,,,,,,"1",,,"LAKEVIEW ACADEMY TAX-DEFERRED ANNUITY PLAN","001","1986-07-01","GAINESVILLE ISD",,,"796 LAKEVIEW DRIVE, NE",,"GAINESVILLE","GA","30501",,,,,,,,,,,,,,,,,,"581077096","7705336854","611000","JOHN KENNEDY",,"796 LAKEVIEW DR, NE",,"GAINESVILLE","GA","30501",,,,,,,"581077096","7705336854",,,,"2011-08-15T05:25:03-0500","JOHN KENNEDY",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110815104951P030112649745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATC MANAGEMENT INC. HEALTH CARE PLAN","501","2001-01-01","ATC MANAGEMENT INC.",,,"P. O. BOX 47","W234 N2000 RIDGEVIEW PKY CT","WAUKESHA","WI","531870047",,,,,,,,,,,,,,,,,,"391999363","2625066700","221100","ATC MANAGEMENT INC.",,"P. O. BOX 47",,"WAUKESHA","WI","531870047",,,,,,,"391999363","2625066700",,,,"2011-08-15T10:49:50-0500","RONALD STRZOK",,,,,563,484,22,0,506,,,,,,,"4A4B4D4E4F","1","0","1","1","1","0","1","1","0","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816151145P040116422769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ESPACIO, INC. RETIREMENT PLAN","001","2008-01-01","ESPACIO, INC.",,,"PO BOX 192572",,"SAN JUAN","PR","009192572",,,,,,,,,,,,,,,,,,"660405599","7879773330","541310","ESPACIO, INC.",,"PO BOX 192572",,"SAN JUAN","PR","009192572",,,,,,,"660405599","7879773330",,,,"2011-08-16T14:49:13-0500","LUCAS E. CAMBO","2011-08-16T14:49:13-0500","LUCAS E. CAMBO",,,2,3,0,0,3,0,3,3,0,,"2E3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110812100321P030110975601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARRIS, JOHN C. JR PROFIT SHARING PLAN","001","1991-01-01","HARRIS, JOHN C. JR",,,"P.O. BOX 99",,"FLORENCE","AL","35631",,,,,,,,,,,,,,,,,,"631032357","2567641358","541110","HARRIS, JOHN C. JR",,"P.O. BOX 99",,"FLORENCE","AL","35631",,,,,,,"631032357","2567641358",,,,"2011-08-12T10:02:48-0500","JOHN C. HARRIS, JR.",,,,,4,3,0,1,4,0,4,4,0,,"2T3D2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110816100013P030113208353001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DAN'S ROOFING PROFIT SHARING PLAN","001","1992-12-30","DAN'S ROOFING INC",,,"PO BOX 821489",,"FORT WORTH","TX","761821489",,,,,,,,,,,,,,,,,,"752420251","8174988466","238100","DAN'S ROOFING INC",,"PO BOX 821489",,"FORT WORTH","TX","761821489",,,,,,,"752420251","8174988466",,,,"2011-08-16T10:44:09-0500","DANNY D SMITH","2011-08-16T10:43:11-0500","DANNY D SMITH, PRESIDENT",,,5,3,0,0,3,0,3,,,,"2E",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110816143617P040116405745001","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"COUNTRY CUPBOARD, INC. - CAFETERIA PLAN","501","1993-01-01","COUNTRY CUPBOARD, INC.",,,"PO BOX 46",,"LEWISBURG","PA","17837",,,,,,,,,,,,,,,,,,"231886253","5705233211","722110","COUNTRY CUPBOARD, INC.",,"PO BOX 46",,"LEWISBURG","PA","17837",,,,,,,"231886253","5705233211",,,,"2011-08-15T09:00:11-0500","ROBERT PIERCE","2011-08-15T09:00:11-0500","ROBERT PIERCE",,,110,163,,,163,,,,,,,"4A4D4F","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110812113400P030016287330001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"INNOVATIVE TECHNOLOGIES CORPORATION SAVINGS PLAN AND TRUST","002","1990-10-01","INNOVATIVE TECHNOLOGIES CORP",,,"1020 WOODMAN DRIVE","SUITE 100","DAYTON","OH","45432",,,,,,,"1020 WOODMAN DRIVE","SUITE 100","DAYTON","OH","45432",,,,,,,"311217852","9372522145","541330","INNOVATIVE TECHNOLOGIES CORP",,"1020 WOODMAN DRIVE","SUITE 100","DAYTON","OH","45432",,,,,,,"311217852","9372522145",,,,"2011-08-12T10:06:56-0500","SHAWN IRISH",,,,,173,89,4,54,147,0,147,135,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110812120455P030518488864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","1","TAXPAYER'S ACCOUNTANT DIED.","CARINO INVESTMENTS INC PROFIT SHARING PLAN","002","1975-01-01","CARINO INVESTMENTS INC",,"FREDERICK A CARINO","4636 CLAY BANK ROAD",,"GLOUCESTER","VA","23061",,,,,,,"4636 CLAY BANK ROAD",,"GLOUCESTER","VA","23061",,,,,,,"540933697","8046935612","445220","CARINO INVESTMENTS INC","FREDERICK A CARINO","4636 CLAY BANK ROAD",,"GLOUCESTER","VA","23061",,,,,,,"540933697","8046935612",,,,"2011-08-12T11:47:29-0500","FRED CARINO",,,,,2,2,0,0,2,0,2,1,0,,"2E2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110815133600P040521797168002","2010-03-01","2011-02-28","2",,,,,,,,,,,,"PENTA CONSTRUCTION INC. EMPLOYEES PROFIT SHARING P","001","1981-01-01","PENTA CONSTRUCTORS INC",,,"P O BOX 1479",,"COPPERAS COVE","TX","76522",,,,,,,"P O BOX 1479",,"COPPERAS COVE","TX","76522",,,,,,,"741962058","2542901836","531390","GORDON MICKAN",,"P O BOX 1479",,"COPPERAS COVE","TX","76522",,,,,,,"741962058","2542901836",,,,"2011-09-30T11:18:15-0500","GORDON MICKAN",,,,,3,3,,,3,,3,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110815151945P030112769505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MUNICIPAL RISK MANAGERS LLC 401K PLAN AND TRUST","001","2008-01-01","MUNICIPAL RISK MANAGERS LLC",,"J. EUGENE SIRACUSA","1125 ATLANTIC AVE","STE 617","ATLANTIC CITY","NJ","08401",,,,,,,,,,,,,,,,,,"203794869","6093454755","524290","MUNICIPAL RISK MANAGERS LLC","J. EUGENE SIRACUSA","1125 ATLANTIC AVE","STE 617","ATLANTIC CITY","NJ","08401",,,,,,,"203794869","6093454755",,,,"2011-08-15T15:19:18-0500","J. EUGENE SIRACUSA",,,,,7,0,0,1,1,0,1,1,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816112457P040017231218001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KANDU INCORPORATED 401(K) RETIREMENT PLAN","001","1999-04-01","KANDU INCORPORATED",,,"4190 SUNNYSIDE DRIVE",,"HOLLAND","MI","494248716",,,,,,,,,,,,,,,,,,"386123412","6163553211","813000","KANDU INCORPORATED",,"4190 SUNNYSIDE DRIVE",,"HOLLAND","MI","494248716",,,,,,,"386123412","6163553211",,,,"2011-08-16T11:24:28-0500","THOMAS C. VREEMAN",,,,,272,272,0,17,289,0,289,83,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110816114820P040524210064001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TAYLOR STEEL, INC. HEALTH AND WELFARE PLAN","501","1983-07-01","TAYLOR STEEL, INC.",,,"2260 INDUSTRIAL TRACE",,"LORDSTOWN","OH","44481",,,,,,,,,,,,,,,,,,"341395083","3308248600","332900","TAYLOR STEEL, INC.",,"2260 INDUSTRIAL TRACE",,"LORDSTOWN","OH","44481",,,,,,,"341395083","3308248600",,,,"2011-08-16T11:47:54-0500","MARK WHITLING","2011-08-16T08:24:37-0500","MARK WHITLING",,,89,91,1,0,92,,,,,,,"4A4B4D4E4F4H4L4S","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110811163430P030110536113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEALTH","506","2007-01-01","DEL NORTE CREDIT UNION",,"DEBRA CHAVEZ","P. O. BOX 1180",,"LOS ALAMOS","NM","87544",,,,,,,"P. O. BOX 1180",,"LOS ALAMOS","NM","87544",,,,,,,"850124035","5054555445","522130","DEL NORTE CREDIT UNION","DEBRA CHAVEZ","P. O. BOX 1180",,"LOS ALAMOS","NM","87544",,,,,,,"850124035","5054555445",,,,"2011-08-11T16:34:02-0500","DEBRA CHAVEZ",,,,,208,208,,,208,,208,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110812141712P040113993681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREAT SOUTHERN CAPITAL CORPORATION SALARY REDUCTION PLAN","010","1986-01-01","GREAT SOUTHERN CAPITAL CORPORATION",,,"218 22ND AVENUE SOUTH",,"MERIDIAN","MS","39301",,,,,,,,,,,,,,,,,,"640604860","6014850866","812990","GREAT SOUTHERN CAPITAL CORPORATION",,"218 22ND AVENUE SOUTH",,"MERIDIAN","MS","39301",,,,,,,"640604860","6014850866",,,,"2011-08-12T14:16:18-0500","DANCY D. SYKES",,,,,165,159,0,7,166,0,166,132,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110815082456P030016509778001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE PELLEGRINO COMPANY EMPLOYEE RETIREMENT PLAN","002","1997-05-01","PELLEGRINO COMPANY INC",,,"5040 EVERHARD RD",,"CANTON","OH","44718",,,,,,,"5040 EVERHARD RD",,"CANTON","OH","44718",,,,,,,"341210997","3304988400","453990","PELLEGRINO COMPANY INC",,"5040 EVERHARD RD",,"CANTON","OH","44718",,,,,,,"341210997","3304988400",,,,"2011-08-15T04:22:28-0500","GERALD PELLEGRINO","2011-08-15T04:22:37-0500","GERALD PELLEGRINO",,,12,14,,,14,,14,,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110815085009P030525840272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ABBOTT LABORATORIES WORKERS' COMPENSATION SUPPLEMENT","522","1970-01-01","ABBOTT LABORATORIES",,,"CORPORATE BENEFITS, D-589, AP51","200 ABBOTT PARK ROAD","ABBOTT PARK","IL","600646222",,,,,,,,,,,,,,,,,,"360698440","8479373830","325410","ABBOTT LABORATORIES",,"CORPORATE BENEFITS, D-589, AP51","200 ABBOTT PARK ROAD","ABBOTT PARK","IL","600646222",,,,,,,"360698440","8479373830",,,,"2011-08-12T08:38:11-0500","TIM RICHMOND",,,,,34015,34897,0,0,34897,,,,,,,"4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110815154527P030526682144001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"D & D TRAILER HAULING, INC. PROFIT SHARING TRUST","001","1989-01-01","D & D TRAILER HAULING, INC.",,,"3989 HUFFMAN ROAD",,"MEDINA","OH","44256",,,,,,,,,,,,,,,,,,"341516176","3307251640","811110","D & D TRAILER HAULING, INC.",,"3989 HUFFMAN ROAD",,"MEDINA","OH","44256",,,,,,,"341516176","3307251640",,,,"2011-08-15T15:44:35-0500","JOHN GORSEK",,,,,2,2,0,0,2,0,2,2,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816084734P030528504240001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REVLON EXECUTIVE SEVERANCE PAY PLAN","507","1996-01-01","REVLON CONSUMER PRODUCTS CORPORATION",,,"237 PARK AVENUE",,"NEW YORK","NY","10017",,,,,,,"237 PARK AVENUE",,"NEW YORK","NY","10017",,,,,,,"133662953","2125274000","339900","REVLON CONSUMER PRODUCTS CORPORATION",,"237 PARK AVENUE",,"NEW YORK","NY","10017",,,,,,,"133662953","2125274000",,,,"2011-08-16T08:29:03-0500","MARK SEXTON",,,,,22,1,6,0,7,,7,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110811163856P040113486177001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JAMES UNLAND & CO INC 401K SALARY REDUCTION PLAN & TRUST","002","1999-01-01","JAMES UNLAND & CO , INC",,,"2211 BROADWAY ROAD",,"PEKIN","IL","615550879",,,,,,,,,,,,,,,,,,"370923342","3093472177","524210","JAMES UNLAND & CO INC",,"2211 BROADWAY ROAD",,"PEKIN","IL","615550879",,,,,,,"370923342","3093472177",,,,"2011-08-05T08:07:10-0500","WILLIAM SHOCK ADMINISTRATOR","2011-08-11T14:37:34-0500","AFTON BOOTH PRESIDENT",,,20,20,,3,23,,23,21,,,"3D2K2J2G2E",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110812101309P030110980833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMURCON CORPORATION OF VIRGINIA 401(K) PROFIT SHARING PLAN","001","1986-07-01","AMURCON CORPORATION OF VIRGINIA",,,"1111 EAST MAIN STREET, SUITE 1100",,"RICHMOND","VA","23219",,,,,,,,,,,,,,,,,,"382201905","8046441086","531390","AMURCON CORPORATION OF VIRGINIA",,"1111 EAST MAIN STREET, SUITE 1100",,"RICHMOND","VA","23219",,,,,,,"382201905","8046441086",,,,"2011-08-12T08:45:06-0500","ROBERT W. SCHABERG",,,,,164,138,0,20,158,0,158,96,9,,"2E2G2J2K3D2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-12","Filed with authorized/valid electronic signature",, "20110815101605P040115671121001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"BIG STONE THERAPIES, INC. RETIREMENT PLAN","001","2010-01-01","BIG STONE THERAPIES, INC.",,,"309 WASHINGTON AVENUE",,"ORTONVILLE","MN","56278",,,,,,,,,,,,,,,,,,"460412074","3208394087","621340","BIG STONE THERAPIES, INC.",,"309 WASHINGTON AVENUE",,"ORTONVILLE","MN","56278",,,,,,,"460412074","3208394087",,,,"2011-08-15T10:16:03-0500","ROMAN C. TAFFE",,,,,0,142,0,12,154,0,154,128,0,,"2A2E2F2G2J2T",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110815175447P030112839361001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"MERCEDES HOMES FULLY INSURED BENEFITS","502","2007-02-01","MERCEDES HOMES, LLC",,,"6905 NORTH WICKHAM ROAD, SUITE 501",,"MELBOURNE","FL","32940",,,,,,,,,,,,,,,,,,"271121091","3212596972","236110","MERCEDES HOMES, LLC",,"6905 NORTH WICKHAM ROAD, SUITE 501",,"MELBOURNE","FL","32940",,,,,,,"271121091","3212596972",,,,"2011-08-15T17:53:41-0500","RONALD J YELLAND",,,,,141,132,0,37,169,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816152129P040003519203001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KINGSTON SCANDLYN LUMBER CO. 401K PLAN","001","2000-01-01","SCANDLYN LUMBER CO.",,,"801 LARRY BYRD RD",,"KINGSTON","TN","37763",,,,,,,,,,,,,,,,,,"620732200","8653765585","444190","SCANDLYN LUMBER CO.",,"801 LARRY BYRD RD",,"KINGSTON","TN","37763",,,,,,,"620732200","8653765585",,,,"2011-08-16T15:20:30-0500","ANGELA VANCE",,,,,10,10,0,0,10,0,10,5,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110811153700P030110509425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"DECAROLIS TRUCK RENTAL INC WELFARE BENEFIT PLAN GROUP INSURANCE","501","1997-07-01","DECAROLIS TRUCK RENTAL INC",,,"333 COLFAX STREET",,"ROCHESTER","NY","14606",,,,,,,,,,,,,,,,,,"160905928","5852541170","532100","DECAROLIS TRUCK RENTAL INC",,"333 COLFAX STREET",,"ROCHESTER","NY","14606",,,,,,,"160905928","5852541170",,,,"2011-08-11T06:18:25-0500","MARK WILLIAMS",,,,,125,283,1,,284,,284,,,,,"4A4B4D4H4L4F","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110815161708P040522095968001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"XTERA COMMUNICATIONS 401(K) PLAN","001","1999-12-01","XTERA COMMUNICATIONS, INC.",,,"500 W. BETHANY DRIVE",,"ALLEN","TX","75013",,,,,,,"500 W. BETHANY DRIVE",,"ALLEN","TX","75013",,,,,,,"383394611","9726495000","334200","XTERA COMMUNICATIONS, INC.",,"500 W. BETHANY DRIVE",,"ALLEN","TX","75013",,,,,,,"383394611","9726495000",,,,"2011-08-15T16:16:39-0500","KELLY THOMPSON",,,,,108,62,0,33,95,0,95,67,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110816093212P040523961664001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"TRAVEL ACCIDENT INSURANCE PLAN","502","1987-06-01","FNC, INC",,,"11516 NICHOLAS STREET STE 100",,"OMAHA","NE","68154",,,,,,,,,,,,,,,,,,"470832320","4024963276","115110","FNC, INC",,"11516 NICHOLAS STREET STE 100",,"OMAHA","NE","68154",,,,,,,"470832320","4024963276",,,,"2011-08-05T12:20:49-0500","DAVID KNUTSON",,,,,215,234,,,234,,234,,,,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110804103520P040109331985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAYTON INDUSTRIES, INC. 401(K) PROFIT SHARING PLAN","001","1988-01-01","DAYTON INDUSTRIES, INC.",,,"1350 GARRISON AVE",,"BRONX","NY","10474",,,,,,,,,,,,,,,,,,"133020439","7185428144","332110","DAYTON INDUSTRIES, INC.",,"1350 GARRISON AVE",,"BRONX","NY","10474",,,,,,,"133020439","7185428144",,,,"2011-08-04T10:34:50-0500","JOHN COLLINS",,,,,62,50,0,4,54,0,54,47,8,,"2E2J2F2G2K2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110805183802P040110131553001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"BOOTS AND COOTS MEDICAL AND DENTAL PLAN","502","1998-12-01","BOOTS AND COOTS, LLC",,,"2107 CITY WEST BOULEVARD","SUITE 2.605A","HOUSTON","TX","77042",,,,,,,,,,,,,,,,,,"760475739","2815753000","211110","BOOTS AND COOTS, LLC",,"2107 CITY WEST BOULEVARD","SUITE 2.605A","HOUSTON","TX","77042",,,,,,,"760475739","2815753000",,,,"2011-08-05T18:37:30-0500","GILBERT CHAVEZ",,,,,480,410,0,11,421,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805083114P040109859137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOB WEBB GROUP, INC. 401(K) PLAN","001","2000-07-01","BOB WEBB GROUP, INC.",,,"7662 N CENTRAL DR",,"LEWIS CENTER","OH","43035",,,,,,,,,,,,,,,,,,"200243856","7405493613","236110","BOB WEBB GROUP, INC.",,"7662 N CENTRAL DR",,"LEWIS CENTER","OH","43035",,,,,,,"200243856","7405493613",,,,"2011-08-05T08:26:07-0500","PATRICIA DELPH",,,,,32,20,0,12,32,0,32,32,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809134413P030109325025001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROTZ PHARMACY INC 401K PROFIT SHARING PLAN","001","1994-07-01","ROTZ PHARMACY INC",,,"1338 AMHERST STREET",,"WINCHESTER","VA","22601",,,,,,,"1338 AMHERST STREET",,"WINCHESTER","VA","22601",,,,,,,"541220306","5406628312","446110","SAME",,"1338 AMHERST STREET",,"WINCHESTER","VA","22601",,,,,,,"541220306","5406628312",,,,"2011-08-09T13:42:25-0500","JOHN S ROTZ","2011-08-09T13:42:25-0500","JOHN S ROTZ",,,11,8,0,4,12,0,12,0,0,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110809081341P030109194833001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ATLAS COPCO NORTH AMERICA INC. TRAVEL ACCIDENT PLAN","511","2004-01-01","ATLAS COPCO NORTH AMERICA INC.",,,"7 CAMPUS DRIVE, SUITE 200",,"PARSIPPANY","NJ","07054",,,,,,,"7 CAMPUS DRIVE, SUITE 200",,"PARSIPPANY","NJ","07054",,,,,,,"221669012","9734393400","333200","ATLAS COPCO NORTH AMERICA INC.",,"7 CAMPUS DRIVE, SUITE 200",,"PARSIPPANY","NJ","07054",,,,,,,"221669012","9734393400",,,,"2011-08-09T04:06:38-0500","JEFFREY ALTEMOSE",,,,,2526,3263,,,3263,,,,,,,"4F","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110810161938P030110000401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RESIDENTIAL ACCEPTANCE NETWORK 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","RANLIFE INC",,,"268 W 400 S STE 300",,"SALT LAKE CITY","UT","84101",,,,,,,,,,,,,,,,,,"870682600","8014784544","531210","RANLIFE INC",,"268 W 400 S STE 300",,"SALT LAKE CITY","UT","84101",,,,,,,"870682600","8014784544","NO",,,"2011-08-10T04:19:35-0500","RANLIFE INC",,,,,101,104,0,2,106,0,106,40,5,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805094331P030500010256001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN TECHNICAL ASSOCIATES, INC. 401(K) RETIREMENT PLAN","001","1996-06-26","AMERICAN TECHNICAL ASSOCIATES",,,"525 BEARDEN PARK CIRCLE","PO BOX 10844","KNOXVILLE","TN","37939",,,,,,,,,,,,,,,,,,"620699432","8655885751","561300","AMERICAN TECHNICAL ASSOCIATES",,"525 BEARDEN PARK CIRCLE","PO BOX 10844","KNOXVILLE","TN","37939",,,,,,,"620699432","8655885751",,,,"2011-08-05T09:39:06-0500","BRIAN WHITE",,,,,30,23,0,0,23,0,23,11,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809143605P030109342673001","2008-01-01","2008-12-31","2",,"0","1","1","0","0","0","0","1","0",,"ALLERGY CLINIC PENSION PLAN","002","1981-01-07","JOHN M. POOTHULLIL, MD, PA","ALLERGY CLINIC OF BRAZOSPORT, INC.",,"244 SW BIRDSHILL RD",,"PORTLAND","OH","97219",,,,,,,"244 SW BIRDSHILL RD",,"PORTLAND","OH","97219",,,,,,,"742125508","5039749403","621111","JOHN M. POOTHULLIL, MD, PA",,"244 SW BIRDSHILL RD",,"PORTLAND","OH","97219",,,,,,,"742125508","5039749403",,,,"2011-08-09T14:34:26-0500","JOHN POOTHULLIL",,,,,3,0,0,0,0,0,0,0,0,,"2C",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110809085009P040112152577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE RESIDENT HOME CORPORATION WELFARE PLAN","501","2009-01-01","THE RESIDENT HOME CORPORATION",,,"3030 WEST FORK ROAD",,"CINCINNATI","OH","45211",,,,,,,,,,,,,,,,,,"316050398","5133897500","623000","THE RESIDENT HOME CORPORATION",,"3030 WEST FORK ROAD",,"CINCINNATI","OH","45211",,,,,,,"316050398","5133897500",,,,"2011-08-09T08:50:04-0500","CHRIS BOHN",,,,,102,88,,,88,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110809095115P040112179281001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","0","0",,"DIAMOND STATE PAVING LLC","001","2006-05-20","DIAMOND STATE PAVING LLC",,,"27 BEECH HILL DRIVE",,"NEWARK","DE","19711",,,,,,,"27 BEECH HILL DRIVE",,"NEWARK","DE","19711",,,,,,,"204126955","3022348155","541990","DIAMOND STATE PAVING LLC",,"27 BEECH HILL DRIVE",,"NEWARK","DE","19711",,,,,,,"204126955","3022348155",,,,"2011-08-09T09:46:37-0500","BONNIE ROSSETTI",,,,,4,0,,,0,,0,,,0,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110810124237P030109893377001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SOUTHERN ARIZONA MENTAL HEALTH CORPORATION 403 B RETIREMENT PLAN","001","2006-01-01","SOUTHERN ARIZONA MENTAL HEALTH CORPORATION",,,"2502 N. DODGE BLVD.",,"TUCSON","AZ","85716",,,,,,,,,,,,,,,,,,"860806975","5206188609","621112","SOUTHERN ARIZONA MENTAL HEALTH COPORATION",,"2502 N. DODGE BLVD.",,"TUCSON","AZ","85716",,,,,,,"860806975","5206198609",,,,"2011-08-10T12:36:24-0500","CHUCK BURBANK","2011-08-10T12:36:24-0500","CHUCK BURBANK",,,169,169,2,14,185,0,185,99,2,,"2L2M2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110810140652P030109935825005","2010-02-01","2011-01-31","2",,,,,,,,,,,,"GLEIM CROWN PUMP INC PROFIT SHARING PLAN","001","1980-02-01","GLEIM CROWN PUMP, INC",,,"PO BOX 12585",,"FRESNO","CA","93778",,,,,,,,,,,,,,,,,,"941479367","5592660584","453990","GLEIM CROWN PUMP INC",,"PO BOX 12585",,"FRESNO","CA","93778",,,,,,,"941479367","5592660584",,,,"2011-08-10T14:00:10-0500","ROWLAND GLEIM",,,,,24,27,,,27,,27,27,1,,"2H2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110810163701P040016745474001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CDL NEW YORK LIMITED LP DBA THE MILLENIUM HILTON 401K SAVINGS PLAN","001","1995-01-01","THE MILLENIUM HILTON",,,"55 CHURCH STREET",,"NEW YORK","NY","10007",,,,,,,,,,,,,,,,,,"133756163","2126932001","721110","THE MILLENIUM HILTON",,"55 CHURCH STREET",,"NEW YORK","NY","10007",,,,,,,"133756163","2126932001",,,,"2011-08-10T16:14:57-0500","DAVID KOLAR",,,,,55,17,1,18,36,,36,35,2,,"3D3B2T2K2J2G2F2E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805121204P030015713650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KE&G CONSTRUCTION, INC. 401K PROFIT SHARING PLAN & TRUST","001","1982-04-01","KE&G CONSTRUCTION, INC.",,,"1601 PASEO SAN LUIS, SUITE 202",,"SIERRA VISTA","AZ","85635",,,,,,,"1601 PASEO SAN LUIS, SUITE 202",,"SIERRA VISTA","AZ","85635",,,,,,,"205816819","5204589594","236200","ACH PENSION CONSULTANTS, INC.",,"4729 EAST SUNRISE DRIVE, PMB 333",,"TUCSON","AZ","85718",,,,,,,"860664225","5207519403",,,,"2011-08-02T11:55:18-0500","ERIC L. HUGHES",,,,,134,101,0,21,122,1,123,86,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805125152P040109978545001","2007-10-01","2007-12-31","2",,"0","1","0","1","0","0","0","0","0",,"THE ESCO CORPORATION'S HEALTH AND WELFARE BENEFIT PLAN","504","1976-10-31","ESCO CORPORATION",,,"2141 NW 25TH AVENUE",,"PORTLAND","OR","972102578",,,,,,,"2141 NW 25TH AVENUE",,"PORTLAND","OR","972102578",,,,,,,"930989423","5037786205","331500","ESCO CORPORATION",,"2141 NW 25TH AVENUE",,"PORTLAND","OR","972102578",,,,,,,"930989423","5037786205",,,,"2011-08-05T12:50:49-0500","ROSEANNE IERULLI",,,,,1293,1838,235,0,2073,0,2073,,,,,"4A4B4D4E4F4H4L","1",,,,"1",,,,,,,,,"1","14",,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809093008P030109222385002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MICHAEL J MCNAMEE PROFIT SHARING PLAN","001","1991-01-01","MICHAEL J. MCNAMEE",,,"801 10TH AVE","SUITE D","PORT HURON","MI","48060",,,,,,,,,,,,,,,,,,"382282123","8109845300","541110","MICHAEL J. MCNAMEE",,"801 10TH AVE",,"PORT HURON","MI","48060",,,,,,,"382282123","8109845300",,,,"2011-08-09T09:53:07-0500","MICHAEL MCNAMEE","2011-08-09T09:53:16-0500","MICHAEL J MCNAMEE",,,2,1,0,1,2,0,2,2,,,"2E2F3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110809111519P030109266161001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"INCHARGE PENSION PROGRAM","002","2007-07-16","INCHARGE INSTITUTE OF AMERICA, INC",,,"5750 MAJOR BLVD","SUITE 300","ORLANDO","FL","32819",,,,,,,"5750 MAJOR BLVD","SUITE 300","ORLANDO","FL","32819",,,,,,,"522196183","4072917770","541990","INCHARGE INSTITUTE OF AMERICA, INC",,"5750 MAJOR BLVD","SUITE 300","ORLANDO","FL","32819",,,,,,,"522196183","4072917770",,,,"2011-08-09T10:38:45-0500","ETTA MONEY",,,,,257,251,0,40,291,1,292,228,19,,"2E2F2G2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110810145603P030109956721001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HUTCHENS INDUSTRIES INC. EMPLOYEES TERM LIFE INSURANCE PLAN","502","1982-10-01","HUTCHENS INDUSTRIES, INC.",,,"PO BOX 1427",,"SPRINGFIELD","MO","65801",,,,,,,,,,,,,,,,,,"446014661","4178625012","332900","HUTCHENS INDUSTRIES, INC.",,"PO BOX 1427",,"SPRINGFIELD","MO","65801",,,,,,,"446014661","4178625012",,,,"2011-07-27T09:16:07-0500","FM ROSENBERGER VP FINANCE",,,,,320,443,,,443,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805140609P030500512752001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VELCRO USA INC SUPPLEMENTAL EMPLOYEE LIFE INCLUDING DEPENDENT LIFE","508","1988-01-01","VELCRO USA INC",,,"406 BROWN AVENUE",,"MANCHESTER","NH","031037202",,,,,,,,,,,,,,,,,,"132597668","6036694880","339900","VELCRO USA INC",,"406 BROWN AVENUE",,"MANCHESTER","NH","031037202",,,,,,,"132597668","6036694880",,,,"2011-08-05T14:05:35-0500","DR. FRASER K. CAMERON","2011-08-05T14:05:35-0500","DR. FRASER K. CAMERON",,,335,356,0,0,356,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110805160122P040016301202001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTL BROHOOD OF ELEC WRKR LOCAL 134 GROUP LIFE INSUR PLAN","501","1948-01-01","INTL BROTHERHOOD OF ELECTRICAL WORKERS LOCAL 134",,,"600 W WASHINGTON BLVD",,"CHICAGO","IL","60661",,,,,,,"600 W WASHINGTON BLVD",,"CHICAGO","IL","60661",,,,,,,"361264170","3124541340","813930","INTL BROTHERHOOD OF ELECTRICAL WORKERS LOCAL 134",,"600 W WASHINGTON BLVD",,"CHICAGO","IL","60661",,,,,,,"361264170","3124541340",,,,"2011-07-28T09:53:57-0500","MICHAEL CADDIGAN","2011-07-28T10:03:03-0500","TIMOTHY FOLEY",,,17459,12099,,4716,16815,,16815,,0,,,"4B4L","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110809104800P030510443184001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMAS POMEROY & ASSOCIATES","001","2004-01-01","THOMAS POMEROY & ASSOCIATES",,,"3134 NORTH 7TH STREET",,"PHOENIX","AZ","85014",,,,,,,"THOMAS R. POMEROY","3134 NORTH 7TH STREET, SUITE 1","PHOENIX","AZ","85014",,,,,,,"860651460","6022658900","812990","THOMAS POMEROY & ASSOCIATES",,"3134 NORTH 7TH STREET",,"PHOENIX","AZ","85014",,,,,,,"860651460","6022658900",,,,"2011-08-09T10:47:24-0500","THOMAS POMEROY","2011-08-09T10:47:24-0500","THOMAS POMEROY",,,9,9,,,9,,9,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110809104914P040016636930001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEELINE GROUP WELFARE BENEFITS PLAN","578","1990-01-01","LEGGETT & PLATT, INCORPORATED",,"CORPORATE HUMAN RESOURCES","PO BOX 757","NO. 1 LEGGETT ROAD","CARTHAGE","MO","648360757",,,,,,,,,,,,,,,,,,"440324630","4173588131","339900","LEGGETT & PLATT, INCORPORATED","CORPORATE HUMAN RESOURCES","PO BOX 757","NO. 1 LEGGETT ROAD","CARTHAGE","MO","648360757",,,,,,,"440324630","4173588131",,,,"2011-08-09T10:38:11-0500","CATHY JOHNS",,,,,92,101,,,101,,,,,,,"4A4B4D4L","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110809134920P030109328241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OCEAN COMUNITY ECONOMIC ACTION NOW, INC. 403(B) SAVINGS PLAN","001","1998-01-01","OCEAN, INC.",,,"40 WASHINGTON STREET",,"TOMS RIVER","NJ","08754",,,,,,,,,,,,,,,,,,"221804345","7322445333","611000","OCEAN, INC.",,"40 WASHINGTON STREET",,"TOMS RIVER","NJ","08754",,,,,,,"221804345","7322445333",,,,"2011-08-09T13:44:57-0500","THEODORE GOODING","2011-08-09T13:44:57-0500","THEODORE GOODING",,,143,146,,21,167,,167,127,12,,"2P2K2F2G",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110810090635P030016120082001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROBERT S JUTKOWITZ MD PC EMPLOYEES PROFIT SHARING TRUST","001","1978-01-01","ROBERT S JUTKOWITZ, M D P C",,,"78 TODT HILL ROAD",,"STATEN ISLAND","NY","103144528",,,,,,,,,,,,,,,,,,"132860212","7184427133","621111","ROBERT S JUTKOWITZ M D P C",,"78 TODT HILL ROAD",,"STATEN ISLAND","NY","103144528",,,,,,,"132860212","7184427133",,,,"2011-08-09T15:33:51-0500","ROBERT S JUTKOWITZ",,,,,4,4,,,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110804155005P040109477441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SANDBOX, INCORPORATED 401K PROFIT SHARING PLAN","001","2000-05-15","SANDBOX, INC",,,"12103 SOUTH 73RD AVENUE",,"PALOS HEIGHTS","IL","604631411",,,,,,,,,,,,,,,,,,"362897841","7084486658","611000","SANDBOX, INC",,"12103 SOUTH 73RD AVENUE",,"PALOS HEIGHTS","IL","604631411",,,,,,,"362897841","7084486658",,,,"2011-08-04T15:40:42-0500","SUZANNE MOUSTAKAS",,,,,103,71,,9,80,,80,40,,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110810170007P030034624599001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JANNING'S ACOUSTIC'S 401(K) PLAN","001","1996-08-01","JANNING'S ACOUSTICS INC",,,"10715 COUNTY ROAD 24",,"WATERTOWN","MN","55388",,,,,,,,,,,,,,,,,,"410943508","9529551300","238300","JANNING'S ACOUSTICS INC",,"10715 COUNTY ROAD 24",,"WATERTOWN","MN","55388",,,,,,,"410943508","9529551300",,,,"2011-08-10T17:28:16-0500","ROBERT JANNING",,,,,10,9,1,,10,0,10,10,,,"2E2G2J2K",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805165744P040110083729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOLLINGSHEAD EYE CENTER 401K PLAN","001","2002-01-01","HOLLINGSHEAD EYE CENTER, PC",,,"360 E MALLARD DR STE 125",,"BOISE","ID","837063941",,,,,,,,,,,,,,,,,,"820513481","2083368700","621320","HOLLINGSHEAD EYE CENTER, PC",,"360 E MALLARD DR STE 125",,"BOISE","ID","83706",,,,,,,"820513481","2083368700",,,,"2011-08-05T16:57:43-0500","LOUIS PENNOW",,,,,36,22,5,6,33,0,33,32,2,,"2A2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809125445P040112266257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE UNIFIED COMPANIES RETIREMENT SAVINGS PLAN","001","1993-07-01","UNIFIED FINANCIAL SERVICES, INC.",,,"2353 ALEXANDRIA DRIVE, STE. 100",,"LEXINGTON","KY","40504",,,,,,,,,,,,,,,,,,"351797759","8594220347","525990","UNIFIED FINANCIAL SERVICES, INC.",,"2353 ALEXANDRIA DRIVE, STE. 100",,"LEXINGTON","KY","40504",,,,,,,"351797759","8594220347",,,,"2011-08-09T12:54:02-0500","JACK BROWN",,,,,125,91,1,35,127,0,127,119,3,,"3D2E2F2G2J2K3H2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110809150546P040016657538001","2008-01-01","2008-01-31","2",,"0","0","1","1","0","0","0","1","0",,"COFFEE BEAN INTERNATIONAL, INC. 401(K) PROFIT SHARING PLAN","001","2004-04-12","COFFEE BEAN INTERNATIONAL, INC.",,,"9120 NE ALDERWOOD ROAD",,"PORTLAND","OR","97220",,,,,,,,,,,,,,,,,,"930714098","5034459351","311900","COFFEE BEAN INTERNATIONAL, INC.",,"9120 NE ALDERWOOD ROAD",,"PORTLAND","OR","97220",,,,,,,"930714098","5034459351",,,,"2011-08-09T15:05:14-0500","JACQUELINE MENDOZA","2011-08-09T15:05:14-0500","JACQUELINE MENDOZA",,,71,0,0,0,0,0,0,0,0,0,"2E2F2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110810122858P040508838496001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HILLWOOD HEALTHCARE CONSULTANTS, INC. 401(K) PLAN & TRUST","002","2002-11-01","HILLWOOD HEALTHCARE CONSULTANTS, INC.",,,"7600 N. 16TH STREET","SUITE 140","PHOENIX","AZ","85020",,,,,,,,,,,,,,,,,,"912057382","6022650575","621399","HILLWOOD HEALTHCARE CONSULTANTS, INC.",,"7600 N. 16TH STREET","SUITE 140","PHOENIX","AZ","85020",,,,,,,"912057382","6022650575",,,,"2011-08-10T13:28:37-0500","LAURA GREEN",,,,,1,1,,,1,,1,1,,,"2A2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110815105735P040017145586001","2010-01-01","2010-12-31","3",,"0","0","0","0",,"1",,,,,"KENSINGTON INTERNATIONAL, INC. 401(K) PROFIT SHARING PLAN","002","1993-07-01","KENSINGTON INTERNATIONAL, INC.",,,"1515 W. 22ND STREET","SUITE 500","OAK BROOK","IL","60523",,,,,,,"1515 W. 22ND STREET","SUITE 500","OAK BROOK","IL","60523",,,,,,,"363669084","6305710123","561300","KENSINGTON INTERNATIONAL, INC.",,"1515 W. 22ND STREET","SUITE 500","OAK BROOK","IL","60523",,,,,,,"363669084","6305710123",,,,"2011-08-15T10:55:24-0500","RICHARD GEORGE",,,,,33,22,5,8,35,0,35,29,2,,"2E2F2G2J2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110809090017P030034379319001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AMERICAN DREAM MORTGAGE INC.","001","2001-01-01","AMERICAN DREAM MORTGAGE INC",,,"PO BOX 2342",,"EDGEWOOD","NM","870152342",,,,,,,"3982 W MARTINEZ RD",,"EDGEWOOD","NM","87105",,,,,,,"850481152","5052864945","522292","SUNLAND MGT & TAX SERVICES INC",,"801 SAN DIEGO LOOP","FRANK S CASANOVA","JEMEZ SPRINGS","NM","870258126",,,,,,,"850318460","5052818000",,,,"2011-08-08T20:36:38-0500","FRANK S. CASANOVA",,,,,2,2,0,0,2,,2,2,,,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110809093456P040016630274001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEES PENSION PLAN OF IBT UNION LOCAL NO 710 HEALTH AND WELFARE FUND","001","1968-01-01","LOCAL 710 HEALTH AND WELFARE FUND",,,"9000 W 187TH STREET",,"MOKENA","IL","60448",,,,,,,,,,,,,,,,,,"362153764","7732542500","813000","LOCAL 710 HEALTH AND WELFARE FUND",,"9000 W 187TH STREET",,"MOKENA","IL","60448",,,,,,,"362153764","7732542500",,,,"2011-08-09T09:33:54-0500","JAMES DAWES","2011-08-09T09:32:33-0500","NEAL LONDON",,,35,20,11,4,35,1,36,,,,"1C",,,"0","1",,,"0","1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110810154133P030109984545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STUART FERTILIZER & GRAIN, INC. 401(K) PLAN AND TRUST","001","2001-01-01","STUART FERTILIZER & GRAIN, INC.",,,"206 EAST 1ST STREET",,"STUART","NE","68780",,,,,,,,,,,,,,,,,,"470682140","4029243616","115110","STUART FERTILIZER & GRAIN, INC.",,"206 EAST 1ST STREET",,"STUART","NE","68780",,,,,,,"470682140","4029243616",,,,"2011-08-10T15:40:56-0500","ERIN KIMBELL",,,,,33,27,0,6,33,0,33,28,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805113029P040109938577001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HOLLIS TIRE CO PROFIT SHARING PLAN","001","1991-12-31","HOLLIS TIRE CO INC",,,"510 N WHEELER",,"JASPER","TX","75951",,,,,,,,,,,,,,,,,,"752353540","4093848202","441300","HOLLIS TIRE CO INC",,"510 N WHEELER",,"JASPER","TX","75951",,,,,,,"752353540","4093848202",,,,"2011-08-05T10:41:56-0500","M L HOLLIS",,,,,8,7,1,1,9,,9,8,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110804144048P040109445649001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"RAINBOW MONTESSORI EMPLOYEE WELFARE BENEFIT PLAN","501","2009-05-01","RAINBOW MONTESSORI",,,"1290 KIFER ROAD, SUITE 303",,"SUNNYVALE","CA","94086",,,,,,,,,,,,,,,,,,"942332526","4087383261","624410","RAINBOW MONTESSORI",,"1290 KIFER ROAD, SUITE 303",,"SUNNYVALE","CA","94086",,,,,,,"942332526","4087383261",,,,"2011-08-04T14:40:21-0500","LAWRENCE RODENBORN",,,,,139,147,0,0,147,,,,,,,"4A4B4D4E4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110804144318P030106526465001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FITTZ & SHIPMAN, INC. EMPLOYEE RETIREMENT PLAN","001","1988-02-01","FITTZ & SHIPMAN, INC.",,,"1405 CORNERSTONE COURT",,"BEAUMONT","TX","77706",,,,,,,,,,,,,,,,,,"742087306","4098327238","541330","FITTZ & SHIPMAN, INC.",,"1405 CORNERSTONE COURT",,"BEAUMONT","TX","77706",,,,,,,"742087306","4098327238",,,,"2011-08-04T14:42:57-0500","BILLY SMITH","2011-08-04T14:42:57-0500","BILLY SMITH",,,34,27,0,7,34,0,34,25,0,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110805152721P030107124897001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NEUROCRINE BIOSCIENCES, INC. 401(K) SAVINGS PLAN","001","1993-01-01","NEUROCRINE BIOSCIENCES INC",,,"12780 EL CAMINO REAL",,"SAN DIEGO","CA","92130",,,,,,,"12780 EL CAMINO REAL",,"SAN DIEGO","CA","92130",,,,,,,"330525145","8586177600","541700","NEUROCRINE BIOSCIENCES INC",,"12780 EL CAMINO REAL",,"SAN DIEGO","CA","92130",,,,,,,"330525145","8586177600","NEUROCRINE BIOSCIENCES","330525145","001","2011-08-05T14:23:19-0500","TIMOTHY COUGHLIN",,,,,276,69,0,170,239,1,240,236,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805162016P030107143649001","2010-07-26","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"DELTA BAY ENTERPRISES, INC. 401K PROFIT SHARING PLAN","001","2010-07-26","DELTA BAY ENTERPRISES, INC.",,,"115 EAST COUNTRY CLUB DRIVE",,"BRENTWOOD","CA","94513",,,,,,,,,,,,,,,,,,"273114876","9256429045","621610","DELTA BAY ENTERPRISES, INC.",,"115 EAST COUNTRY CLUB DRIVE",,"BRENTWOOD","CA","94513",,,,,,,"273114876","9256429045",,,,"2011-08-05T16:10:50-0500","MICHAEL J VANDEN-HEUVEL",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805085039P030106952785001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"ZACHRY HOLDINGS EMPLOYEES 401(K) AND RB PLAN","004","1989-01-01","ZACHRY HOLDINGS, INC.",,,"527 LOGWOOD",,"SAN ANTONIO","TX","782211738",,,,,,,"527 LOGWOOD",,"SAN ANTONIO","TX","782211738",,,,,,,"261256814","2105886411","237990","ZACHRY HOLDINGS, INC.",,"527 LOGWOOD",,"SAN ANTONIO","TX","782211738",,,,,,,"261256814","2105886411",,,,"2011-08-04T10:10:38-0500","CYNDA REZNICEK","2011-08-04T15:01:09-0500","JOE LOZANO",,,16957,9787,106,4617,14510,96,14606,9396,1682,,"2E2F2G2J2K2T3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110809115724P030109285457001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"ARGON ST, INC 401(K) PROFIT SHARING PLAN & TRUST","003","1995-01-01","ARGON ST, INC",,,"12701 FAIR LAKES CIRCLE","SUITE 800","FAIRFAX","VA","22033",,,,,,,"12701 FAIR LAKES CIRCLE","SUITE 800","FAIRFAX","VA","22033",,,,,,,"381873250","7033220881","541512","ARGON ST, INC",,"12701 FAIR LAKES CIRCLE","SUITE 800","FAIRFAX","VA","22033",,,,,,,"381873250","7033220881",,,,"2011-08-01T09:10:44-0500","MAGGY CRONIN",,,,,1413,899,0,370,1269,7,1276,1263,73,,"2E2F2G2J2K2R2T3D3H3I",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110810084145P030109793201003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RALPH GUARNERI, P.A. PROFIT SHARING PLAN","001","2000-01-01","RALPH GUARNERI, P.A.",,,"1508 SE 3RD AVENUE",,"FORT LAUDERDALE","FL","33316",,,,,,,"1508 S.E. 3RD AVENUE",,"FORT LAUDERDALE","FL","33316",,,,,,,"650747893","9544628720","621111","RALPH GUARNERI, P.A.",,"1508 SE 3RD AVENUE",,"FORT LAUDERDALE","FL","33316",,,,,,,"650747893","9544628720",,,,"2011-08-09T11:36:01-0500","RALPH GUARNERI PA",,,,,6,5,1,,6,,6,6,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110810095303P040112757761001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"TTS TERMINALS, INC. 401K PLAN","001","1995-01-01","TTS TERMINALS, INC.",,,"30257 CLEMENS ROAD, SUITE A",,"WESTLAKE","OH","441451082",,,,,,,,,,,,,,,,,,"043703109","4408089570","488990","TTS TERMINALS, INC.",,"30257 CLEMENS ROAD, SUITE A",,"WESTLAKE","OH","441451082",,,,,,,"043703109","4408089570",,,,"2011-08-10T09:36:23-0500","ALEXANDER PLONA",,,,,119,55,0,15,70,0,70,35,5,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805171352P030107170977001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NORJENES DAYCARE CENTER PENSION PLAN","001","2000-01-01","NORJENES DAYCARE CENTER",,,"95 SOUTH ESSEX CENTER",,"ORANGE","NJ","07050",,,,,,,"95 SOUTH ESSEX CENTER",,"ORANGE","NJ","07050",,,,,,,"222991922","9736774299",,"NORJENES DAYCARE CENTER",,"95 SOUTH ESSEX CENTER",,"ORANGE","NJ","07050",,,,,,,"222991922","9736774299",,,,"2011-08-05T17:02:40-0500","NORMA ADAMS",,,,,55,29,0,15,44,0,44,44,1,0,"3D2C2F2G2T",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805103602P040109915057005","2010-04-01","2011-03-31","2",,,,"1",,,,,,,,"GREAT AMERICAN FOODS CORPORATION EMPLOYEE BENEFIT PLAN & TRUST","501","1992-04-01","GREAT AMERICAN FOODS CORPORATION",,,"7566 U.S. HIGHWAY 259 NORTH",,"ORE CITY","TX","75683",,,,,,,"7566 U.S. HIGHWAY 259 NORTH",,"ORE CITY","TX","75683",,,,,,,"751738622","9039688614","722110","GREAT AMERICAN FOODS CORPORATION",,"7566 U.S. HIGHWAY 259 NORTH",,"ORE CITY","TX","75683",,,,,,,"751738622","9039688614",,,,"2011-07-07T03:26:51-0500","TRACY SPANIOL",,,,,43,0,,,0,,,,,,,"4A4D","1",,"1",,"1",,"1",,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805103602P040109915057004","2010-06-01","2011-05-31","2",,,,,,,,,,,,"MEYER, MEYER, LACROIX & HIXSON, INC. EMPLOYEES BENEFIT PLAN AND TRUST","501","1991-06-01","MEYER, MEYER, LACROIX & HIXON",,,"P.O. BOX 5444",,"ALEXANDRIA","LA","713075444",,,,,,,,,,,,,,,,,,"720744933","3184480888","541330","MEYER, MEYER, LACROIX & HIXON",,"P.O. BOX 5444",,"ALEXANDRIA","LA","713075444",,,,,,,"720744933","3184480888",,,,"2011-08-04T10:25:03-0500","TIFFANY CRAIG",,,,,58,61,,,61,,,,,,,"4A4D4E","1",,"1",,"1",,"1",,,,,,"1","1","5",,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805110650P040016284530001","2010-01-01","2010-12-31","2",,"0","1","0","0","1",,,,,,"FHC HEALTH SYSTEMS COLLECTIVELY BARGAINED 401(K) PLAN FOR SOUTHFIELD EMPLOYEES","002","1988-01-01","FHC HEALTH SYSTEMS",,,"240 CORPORATE BLVD",,"NORFOLK","VA","235024900",,,,,,,,,,,,,,,,,,"541230110","7574595116","524140","FHC HEALTH SYSTEMS",,"240 CORPORATE BLVD",,"NORFOLK","VA","235024900",,,,,,,"541230110","7574595116",,,,"2011-08-05T11:01:02-0500","STEVEN TIMMONS",,,,,185,107,0,30,137,1,138,113,0,,"2E2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110810115500P030109876769001","2010-03-01","2011-02-28","2",,"0","0","1","0","0","0","0","0","0",,"GREENVILLE RADIOLOGY, P.A. LIFE AND DISABILTIY PLAN","501","1994-02-01","GREENVILLE RADIOLOGY, P.A.",,,"1210 WEST FARIS ROAD",,"GREENVILLE","SC","29605",,,,,,,,,,,,,,,,,,"570511552","8642954410","621111","GREENVILLE RADIOLOGY, P.A.",,"1210 WEST FARIS ROAD",,"GREENVILLE","SC","29605",,,,,,,"570511552","8642954410",,,,"2011-08-10T11:54:10-0500","AUDREY R. BALLENGER",,,,,108,0,0,0,0,0,,,,,,"4B4E4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805092448P030499972784001","2009-11-01","2010-10-31","2",,"0","0","0","0","0","1","0","0","0",,"TETER ORTHOTICS & PROSTHETICS, INC. EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","001","2001-11-01","TETER ORTHOTICS & PROSTHETICS, INC.",,,"3507 WEST FRONT STEET",,"TRAVERSE CITY","MI","49684",,,,,,,,,,,,,,,,,,"352026415","2319475701","339110","TETER ORTHOTICS & PROSTHETICS, INC.",,"3507 WEST FRONT STEET",,"TRAVERSE CITY","MI","49684",,,,,,,"352026415","2319475701",,,,"2011-08-05T09:24:35-0500","TODD STONE","2011-08-05T09:24:35-0500","TODD STONE",,,72,59,,,59,0,59,59,0,,"2E2P",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110809100816P040112193153001","2010-05-01","2011-04-30","2",,"0","1","0","0","0","0","0","1","0",,"REPUBLIC PARKING SYSTEM INC WELFARE BENEFIT PLAN","501","1992-05-01","REPUBLIC PARKING SYSTEM INC",,,"633 CHESTNUT STREET","SUITE 2000","CHATTANOOGA","TN","37450",,,,,,,,,,,,,,,,,,"591162686","4232654418","812930","REPUBLIC PARKING SYSTEM INC",,"633 CHESTNUT STREET","SUITE 2000","CHATTANOOGA","TN","37450",,,,,,,"591162686","4232654418",,,,"2011-08-09T10:07:38-0500","TAMMY L. JONES","2011-08-09T10:07:38-0500","PAT S. HOLDEFER",,,421,364,6,0,370,,,,,,,"4A4B4D4E4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110810131130P040003176964001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MANNKIND CORPORATION 401(K) PLAN","001","2002-01-01","MANNKIND CORPORATION",,,"28903 NORTH AVE PAINE",,"VALENCIA","CA","91355",,,,,,,,,,,,,,,,,,"133607736","6617755318","541700","MANNKIND CORPORATION",,"28903 NORTH AVE PAINE",,"VALENCIA","CA","91355",,,,,,,"133607736","6617755318",,,,"2011-08-10T02:11:22-0500","LYNNE GRASKA",,,,,617,432,0,188,620,2,622,588,1,,"2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110809091358P030109216785001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1",,,,,"LINCOLN PARK ZOOLOGICAL SOCIETY RETIREMENT PLAN","001","1985-04-10","LINCOLN PARK ZOO",,,"2001 N CLARK ST",,"CHICAGO","IL","606144712",,,,,,,,,,,,,,,,,,"362512404","3127422120","712100","LINCOLN PARK ZOO",,"2001 N CLARK ST",,"CHICAGO","IL","606144712",,,,,,,"362512404","3127422120",,,,"2011-08-09T09:13:42-0500","DONNA CURTIS","2011-08-09T09:13:41-0500","DONNA CURTIS",,,315,288,0,71,359,1,360,266,0,,"2F2G2L2M2S2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110809160541P040112345185001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GEORGE BELCHIC JR SELF EMPLOYED RETIREMENT TRUST","001","1975-01-01","GEORGE BELCHIC JR",,,"P O BOX 5623",,"SHREVEPORT","LA","71135",,,,,,,,,,,,,,,,,,"720797163","3187981880","621111","GEORGE BELCHIC JR",,"P O BOX 5623",,"SHREVEPORT","LA","71135",,,,,,,"720797163","3187981880",,,,"2011-08-09T15:35:25-0500","GEORGE BELCHIC JR",,,,,1,1,,,1,,1,,,,"3B2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110810173246P030110032385001","2010-10-01","2011-01-31","2",,"0","0","1","1","0","0","0","0","0",,"ROI PRINTING COMPANIES, LLC 401(K) PLAN","001","1990-01-01","ROI PRINTING COMPANIES, LLC",,,"175 W. OSTEND STREET",,"BALTIMORE","MD","21230",,,,,,,,,,,,,,,,,,"770667095","4105761111","323100","ROI PRINTING COMPANIES, LLC",,"175 W. OSTEND STREET",,"BALTIMORE","MD","21230",,,,,,,"770667095","4105761111",,,,"2011-08-10T17:32:13-0500","TIM ROBERTS",,,,,30,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110815080007P030525750016001","2010-03-01","2010-12-31","2",,"1",,,"1",,"1",,,,,"THE STAFF EDUCATION ASSOCIATION RETIREES' VEBA TRUST FUND","501","2010-03-01","THE STAFF EDUCATION ASSOCIATION RETIREES VEBA",,"JOHN WARDELL","THREE GATEWAY CENTER","401 LIBERTY AVENUE, SUITE 1625","PITTSBURGH","PA","15222",,,,,,,,,,,,,,,,,,"272528791",,"525100","CW BREITSMAN ASSOCIATES, LLC","CHARLES BREITSMAN","THREE GATEWAY CENTER, 401 LIBERTY A",,"PITTSBURGH","PA","15222",,,,,,,"260664784","4123252805",,,,"2011-08-15T03:48:26-0500","CHARLES BRIETSMAN",,,,,131,149,,180,329,,,,,,,"4A",,,"1",,"1",,"1",,,,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-08-15","Filed with authorized/valid electronic signature",, "20110805154313P040016300290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NETRIX, LLC 401(K) PLAN & TRUST","001","2006-01-01","NETRIX, LLC",,,"2801 LAKESIDE DR.",,"BANNOCKBURN","IL","60015",,,,,,,,,,,,,,,,,,"364413678","8479645400","541519","NETRIX, LLC",,"2801 LAKESIDE DR.",,"BANNOCKBURN","IL","60015",,,,,,,"364413678","8479645400",,,,"2011-08-05T15:28:12-0500","MARIO DONATO",,,,,71,53,0,17,70,,70,63,1,,"2A2E2F2G2J3D2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805090126P030106956977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"O'TOOLE & COMPANY, P.C. 401(K) PLAN","001","1994-01-01","OTOOLE & COMPANY, P.C.",,,"560 HARRISON AVENUE, SUITE 401",,"BOSTON","MA","02118",,,,,,,,,,,,,,,,,,"200536247","6173381948","541211","OTOOLE & COMPANY, P.C.",,"560 HARRISON AVENUE, SUITE 401",,"BOSTON","MA","02118",,,,,,,"200536247","6173381948",,,,"2011-08-05T09:00:31-0500","KAREN G. TIMMERMANS",,,,,17,15,0,4,19,0,19,15,0,,"2E2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809120528P040112246241001","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"DALLAS A MASSEY 401K","001","2005-08-01","DALLAS A MASSEY",,,"90379 28TH AVENUE",,"SCOTTSBLUFF","NE","69361",,,,,,,,,,,,,,,,,,"470796262","3086322239","621330","DALLAS A MASSEY",,"90379 28TH AVENUE",,"SCOTTSBLUFF","NE","69361",,,,,,,"470796262","3086322239",,,,"2011-08-09T11:20:31-0500","DALLAS MASSEY",,,,,1,1,,,1,,1,,,,"3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110805090325P040034574295001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"NOBLE HOSPITAL LONG TERM DISABILITY PLAN","507","1994-07-01","TRUSTEES OF NOBLE HOSPITAL",,,"P O BOX 1634",,"WESTFIELD","MA","01086",,,,,,,"115 SILVER STREET",,"WESTFIELD","MA","01086",,,,,,,"222537423","4135682811","622000","TRUSTEES OF NOBLE HOSPITAL",,"P O BOX 1634",,"WESTFIELD","MA","01086",,,,,,,"222537423","4135682811",,,,"2011-08-04T15:32:50-0500","JOANNE OLLSON",,,,,440,440,,,440,,440,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809161849P030511092736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRST SOUTHWEST INSURANCE AGENCY 401(K) PROFIT SHARING PLAN","001","1995-01-01","FIRST SOUTHWEST INSURANCE AGENCY",,"KEN BAKER","3005 SOUTH TREADAWAY",,"ABILENE","TX","796026729",,,,,,,,,,,,,,,,,,"752001316","3256950222","524210","FIRST SOUTHWEST INSURANCE AGENCY","KEN BAKER","3005 SOUTH TREADAWAY",,"ABILENE","TX","796026729",,,,,,,"752001316","9156950020",,,,"2011-08-09T16:17:58-0500","KEN BAKER",,,,,2,2,0,0,2,0,2,2,0,,"2H2E2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110810104734P030109855489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAMDEN NATIONAL CORPORATION RETIREMENT SAVINGS 401K PLAN","002","1992-07-01","CAMDEN NATIONAL CORPORATION",,,"P. O. BOX 310","TWO ELM STREET","CAMDEN","ME","048430310",,,,,,,,,,,,,,,,,,"010413282","2072368821","522110","CAMDEN NATIONAL CORPORATION",,"P. O. BOX 310","TWO ELM STREET","CAMDEN","ME","048430310",,,,,,,"010413282","2072368821",,,,"2011-08-10T10:46:04-0500","CAROLYN C. CROSBY",,,,,475,409,0,72,481,0,481,0,8,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805101430P040109907537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PENSION PLAN FOR EMPLOYEES OF LAUREL VALLEY GOLF CLUB","001","1974-01-01","LAUREL VALLEY GOLF CLUB",,,"P. O. BOX 435",,"LIGONIER","PA","156580435",,,,,,,,,,,,,,,,,,"251064041","7242389555","713900","PENSION COMMITTEE C/O LAUREL VALLEY GOLF CLUB",,"P. O. BOX 435",,"LIGONIER","PA","156580435",,,,,,,"251318536","7242389555",,,,"2011-08-05T10:13:43-0500","BRUCE ROBINSON",,,,,125,79,22,17,118,6,124,,1,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809094655P040112177233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEYER TOOL 401(K) AND PROFIT SHARING PLAN","001","1984-01-01","MEYER TOOL, INC.",,,"3055 COLERAIN AVENUE",,"CINCINNATI","OH","45225",,,,,,,,,,,,,,,,,,"310874289","5138534400","336410","MEYER TOOL, INC.",,"3055 COLERAIN AVENUE",,"CINCINNATI","OH","45225",,,,,,,"310874289","5138534400",,,,"2011-08-09T09:46:15-0500","JACK E. TAYLOR",,,,,943,808,2,126,936,0,936,917,46,,"3D2E2J3H2K2F2G3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110810131610P030513357664001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","0","0",,"403(B) THRIFT PLAN OF CHILD CARE ASSOCIATION OF BREVARD COUNTY, INC.","001","2005-01-01","CHILD CARE ASSOCIATION OF BREVARD COUNTY, INC.",,,"18 HARRISON STREET",,"COCOA","FL","32922",,,,,,,"18 HARRISON STREET",,"COCOA","FL","32922",,,,,,,"591100219","3212082994","624100","CHILD CARE ASSOCIATION OF BREVARD COUNTY, INC.",,"18 HARRISON STREET",,"COCOA","FL","32922",,,,,,,"591100219","3212082994",,,,"2011-08-10T13:05:56-0500","ANN PATRICK",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110804162109P030106571601001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"OPTIMIST YOUTH HOMES & FAMILY SERVICES WELFARE BENEFITS PLAN","501","1991-01-01","OPTIMIST BOYS HOME AND RANCH, INC.","DBA OPTIMIST YOUTH HOMES & FAMILY SERVICES",,"6957 N. FIGUEROA STREET",,"LOS ANGELES","CA","900421245",,,,,,,,,,,,,,,,,,"951643340","3234433013","611000","OPTIMIST BOYS HOME AND RANCH, INC.","DBA OPTIMIST YOUTH HOMES & FAMILY SERVICES","6957 N. FIGUEROA STREET",,"LOS ANGELES","CA","900421245",,,,,,,"951643340","3234433013",,,,"2011-08-04T16:17:03-0500","DOUGLAS BUTTRICK",,,,,275,265,0,0,265,,,,,,,"4A4B4D4E4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110810185555P040112981169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRIMETIME INTERNATIONAL COMPANY 401 (K) PROFIT SHARING PLAN TRUST","001","2003-01-01","6237808600",,,"ATTN GUILLERMO NEVAREZ","2019 W LONE CACTUS DR","PHOENIX","AZ","85027",,,,,,,,,,,,,,,,,,"860736454","6237808600","312200","6237808600",,"ATTN GUILLERMO NEVAREZ","2019 W LONE CACTUS DR","PHOENIX","AZ","85027",,,,,,,"860736454","6237808600",,,,"2011-08-10T18:51:19-0500","JOHN WERTHEIM",,,,,36,40,0,0,40,0,40,40,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805115238P030107042929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KD ENTERPRISES, INC. 401(K) PLAN","001","2006-08-28","KD ENTERPRISES, INC.",,,"24817 N. MOUNT SPOKANE PARK DRIVE",,"MEAD","WA","99021",,,,,,,,,,,,,,,,,,"743071726","5092389114","721199","KD ENTERPRISES, INC.",,"24817 N. MOUNT SPOKANE PARK DRIVE",,"MEAD","WA","99021",,,,,,,"743071726","5092389114",,,,"2011-08-04T18:40:12-0500","KAREN DEAL","2011-08-04T18:39:27-0500","KAREN DEAL",,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K3D2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110805123758P030107057249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"QUALITY FABRICATION 401(K) PLAN","001","2008-07-15","QUALITY FABRICATION, INC.",,,"555 BROWN LN",,"MADISONVILLE","KY","42431",,,,,,,,,,,,,,,,,,"611071122","2708249791","333200","QUALITY FABRICATION, INC.",,"555 BROWN LN",,"MADISONVILLE","KY","42431",,,,,,,"611071122","2708249791",,,,"2011-08-05T12:37:11-0500","TAMMY HOLT",,,,,25,20,0,1,21,0,21,21,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805135958P030500500400001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"INTERNATIONAL INDEX TRUST","010","1997-05-20","BANK OF AMERICA, N.A.",,,"ATTN DAVID THAYER 1201 MAIN STREET","TX1-609-10-28","DALLAS","TX","752023113",,,,,,,"ATTN DAVID THAYER 1201 MAIN STREET","TX1-609-10-28","DALLAS","TX","752023113",,,,,,,"226822027","2142096900",,"BANK OF AMERICA, N.A.",,"ATTN DAVID THAYER 1201 MAIN STREET","TX1-609-10-28","DALLAS","TX","752023113",,,,,,,"226822027","2142096900",,,,,,,,"2011-08-05T13:59:43-0500","ALLEN SQUYRES",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-08-05",,"Filed with authorized/valid electronic signature", "20110805140055P030500502624001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIDWEST CAPITAL CORPORATION 401(K) PLAN","001","2002-01-01","MIDWEST CAPITAL CORPORATION",,,"11650 OLIO RD","SUITE 1000274","FISHERS","IN","46037",,,,,,,"11650 OLIO RD","SUITE 1000274","FISHERS","IN","46037",,,,,,,"352075935","3173743678","522294","MIDWEST CAPITAL CORPORATION",,"11650 OLIO RD","SUITE 1000274","FISHERS","IN","46037",,,,,,,"352075935","3173743678",,,,"2011-08-05T14:00:35-0500","STEVEN YOUNG",,,,,5,6,0,2,8,0,8,4,0,,"2E2F2G2J2K3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809113339P040506109664001","2011-01-01","2011-01-31","2",,"0","0","1","1","0","0","0","0","0",,"4-STAR HOSE & SUPPLY, INC. 401(K) PROFIT SHARING PLAN","001","1997-10-01","4-STAR HOSE & SUPPLY, INC.",,,"10704 COMPOSITE DRIVE",,"DALLAS","TX","75220",,,,,,,,,,,,,,,,,,"751877241","2143516085","423990","4-STAR HOSE & SUPPLY, INC.",,"10704 COMPOSITE DRIVE",,"DALLAS","TX","75220",,,,,,,"751877241","2143516085",,,,"2011-08-09T11:33:31-0500","SHERYL NEWMAN","2011-08-09T11:33:31-0500","SHERYL NEWMAN",,,25,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110804163012P030003128931001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"ATIYEH BROTHERS INC EMPLOYEE PROFIT SHARING PLAN","001","1969-11-04","ATIYEH BROTHERS, INC",,,"6750 SW BONITA ROAD",,"TIGARD","OR","97224",,,,,,,,,,,,,,,,,,"930116090","5036398642","442210","ATIYEH BROTHERS INC",,"6750 SW BONITA ROAD",,"TIGARD","OR","97224",,,,,,,"930116090","5036398642",,,,"2011-08-04T16:03:11-0500","MARK MCGIRR",,,,,43,38,,4,42,,42,42,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110810212319P030016162962001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANS PROFIT SHARING PLAN","001","1997-01-01","ARIZONA NUTRITIONAL SUPPLEMENTS",,,"210 S. BECK AVE.",,"CHANDLER","AZ","85226",,,,,,,,,,,,,,,,,,"860825991","4809669630","339900","ARIZONA NUTRITIONAL SUPPLEMENTS",,"210 S. BECK AVE.",,"CHANDLER","AZ","85226",,,,,,,"860825991","4809669630",,,,"2011-08-10T21:21:42-0500","KIRK NEAL",,,,,181,166,3,15,184,0,184,135,4,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110805142851P030107096593001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"LAKEVIEW MEDICAL CENTER, INC. LIFE & DISABILITY PLAN","508","1988-04-01","LAKEVIEW MEDICAL CENTER, INC.",,,"2000 MEADE PARKWAY",,"SUFFOLK","VA","234344259",,,,,,,,,,,,,,,,,,"540855863","7575390251","621111","LAKEVIEW MEDICAL CENTER, INC.",,"2000 MEADE PARKWAY",,"SUFFOLK","VA","234344259",,,,,,,"540855863","7575390251",,,,"2011-08-05T14:27:27-0500","MICHAEL STOUT",,,,,243,237,0,0,237,,237,,,,,"4B4H4Q","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110805082843P030106947905001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE HAPPY CHEF PROFIT SHARING PLAN","001","1994-01-01","THE HAPPY CHEF INC",,,"22 PARK PLACE",,"BUTLER","NJ","074051380",,,,,,,,,,,,,,,,,,"222662217","9734922525","424990","THE HAPPY CHEF INC",,"22 PARK PLACE",,"BUTLER","NJ","074051380",,,,,,,"222662217","9734922525",,,,"2011-08-04T11:28:48-0500","JAMES NADLER",,,,,25,27,,4,31,,31,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-05","Filed with authorized/valid electronic signature",, "20110809131030P030510719696001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LONG TERM DISABILITY PLAN","509","2005-01-01","AMERICAN CRYSTAL SUGAR COMPANY",,,"101 N. THIRD STREET",,"MOORHEAD","MN","565601952",,,,,,,,,,,,,,,,,,"840004720","2182364449","311300","AMERICAN CRYSTAL SUGAR COMPANY",,"101 N. THIRD STREET",,"MOORHEAD","MN","565601952",,,,,,,"840004720","2182364449",,,,"2011-08-09T13:07:03-0500","VICKIE HARDY",,,,,915,920,0,0,920,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110809134240P040016650914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE CLIMATIC CORPORATION EMPLOYEE PENSION BENEFIT PLAN","001","1969-10-31","THE CLIMATIC CORPORATION",,,"P.O. BOX 25189",,"COLUMBIA","SC","29224",,,,,,,"1001 PINNACLE POINT DRIVE",,"COLUMBIA","SC","29224",,,,,,,"570383581","8037652595","423700","THE CLIMATIC CORPORATION",,"P.O. BOX 25189",,"COLUMBIA","SC","29224",,,,,,,"570383581","8037652595",,,,"2011-08-09T13:41:43-0500","CINDEE BAILEY",,,,,245,113,0,110,223,0,223,203,31,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-09","Filed with authorized/valid electronic signature",, "20110810100639P030109836401003","2010-01-01","2010-12-31","2",,,,,,,,,"1",,,"SELF EMPLOYED RETIREMENT PLAN ROBERT C COLLINS","001","1981-01-01","ROBERT C COLLINS JR , MD",,,"3737 N MERIDIAN STREET SUITE 201",,"INDIANAPOLIS","IN","462084729",,,,,,,,,,,,,,,,,,"351052240","3179234492","621111","ROBERT C COLLINS JR MD",,"3737 N MERIDIAN STREET SUITE 201",,"INDIANAPOLIS","IN","462084729",,,,,,,"351052240","3179234492",,,,"2011-08-10T10:04:39-0500","ROBERT C COLLINS JR MD",,,,,2,2,,,2,,2,2,,,"3B2R2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-10","Filed with authorized/valid electronic signature",, "20110808113203P040111620801001","2010-12-01","2011-02-28","2",,"0","0","1","1","0","0","0","0","0",,"IMAGINATIVE RESEARCH ASSOCIATES DEFINED BENEFIT PLAN","003","2006-12-01","IMAGINATIVE RESEARCH ASSOCIATES, INC.",,,"400 WEST CUMMINGS PARK","SUITE 3800","WOBURN","MA","01801",,,,,,,,,,,,,,,,,,"061210646","7819321988","541700","IMAGINATIVE RESEARCH ASSOCIATES, INC.",,"400 WEST CUMMINGS PARK","SUITE 3800","WOBURN","MA","01801",,,,,,,"061210646","7819321988",,,,"2011-08-08T11:19:23-0500","NAOMI VISHNUPAD",,,,,2,0,0,0,0,0,0,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110808120634P040111633521003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN E GOFF MD PC PROFIT SHARING PLAN","001","1979-10-01","JOHN E GOFF MD PC",,,"2601 CUNNINGHAM",,"JOPLIN","MO","648041543",,,,,,,"2601 CUNNINGHAM",,"JOPLIN","MO","648041543",,,,,,,"431176422","4177823600","621111","JOHN E GOFF MD PC",,"2601 CUNNINGHAM",,"JOPLIN","MO","648041543",,,,,,,"431176422","4177823600",,,,"2011-07-31T05:12:06-0500","JOHN GOFF","2011-07-31T05:12:06-0500","JOHN GOFF",,,6,6,,,6,,6,6,,,"2E3D",,"1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110811133007P040113405009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIBRED-MARYLAND, INC. 401(K) PROFIT SHARING PLAN","001","1980-06-01","FIBRED-MARYLAND, INC.",,,"PO BOX 3349",,"LAVALE","MD","21504",,,,,,,,,,,,,,,,,,"521952633","8005988894","311200","FIBRED-MARYLAND, INC.",,"PO BOX 3349",,"LAVALE","MD","21504",,,,,,,"521952633","8005988894",,,,"2011-08-11T13:28:13-0500","MARLEE ORT",,,,,33,30,0,1,31,0,31,31,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110808144859P040111709745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DANIEL & DIANNE SHUMWAY FARMS 401(K) PLAN","001","2008-01-01","DANIEL & DIANNE SHUMWAY FARMS",,,"861 ROAD 11, ROUTE 1",,"POWELL","WY","82435",,,,,,,,,,,,,,,,,,"810513565","3077545239","111900","DANIEL & DIANNE SHUMWAY FARMS",,"861 ROAD 11, ROUTE 1",,"POWELL","WY","82435",,,,,,,"810513565","3077545239",,,,"2011-08-08T14:48:20-0500","DANIEL SHUMWAY",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110811134508P040113411249003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"G. N. PATEL, MD, PC PROFIT SHARING PLAN","001","1993-01-01","G.N. PATEL, MD, P.C.",,,"44448 HAYES, STE C",,"CLINTON TWP","MI","48038",,,,,,,,,,,,,,,,,,"382480622","5862287568","621111","G. N. PATEL, MD, PC",,"44448 HAYES, STE C",,"CLINTON TWP","MI","48038",,,,,,,"382480622","5862287568",,,,"2011-08-11T11:24:43-0500","G. N. PATEL, MD","2011-08-11T11:24:51-0500","G. N. PATEL, MD",,,3,3,0,0,3,0,3,3,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110808145557P030508248720001","2010-01-01","2010-10-31","4","C","0","0","0","1","0","0","0","0","0",,"NYLIM INSTITUTIONAL HIGH YIELD COLLECTIVE FUND","001",,"NEW YORK LIFE TRUST COMPANY",,,"51 MADISON AVENUE",,"NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"204444657","2125766221",,"NEW YORK LIFE TRUST COMPANY",,"51 MADISON AVENUE",,"NEW YORK","NY","10010",,,,,,,"204444657","2125766221",,,,,,,,"2011-08-08T14:45:51-0500","LUCILLE PROTAS",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-08-08",,"Filed with authorized/valid electronic signature", "20110811134823P040511643872001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"J STREET HOLDINGS CORPORATE BENEFIT PLAN","501","2009-01-01","J STREET HOLDINGS LLC",,"JOY PARKER","16800 WESTGROVE DRIVE",,"ADDISON","TX","75001",,,,,,,"16800 WESTGROVE DRIVE",,"ADDISON","TX","75001",,,,,,,"263088061","9729801441","531310","J STREET HOLDINGS LLC","JOY PARKER","16800 WESTGROVE DRIVE",,"ADDISON","TX","75001",,,,,,,"263088061","9729801441",,,,"2011-08-11T13:44:34-0500","JOY PARKER",,,,,129,117,0,0,117,,117,,,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110811104346P040113330193001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"NORTHEAST SPA AND POOL ASSOCIATION 401(K) PLAN","002","2010-01-01","NORTHEAST SPA AND POOL ASSOC.",,,"6B SOUTH GOLD DRIVE",,"HAMILTON","NJ","08691",,,,,,,"6B SOUTH GOLD DRIVE",,"HAMILTON","NJ","08691",,,,,,,"136272699","6096899111","541990","NOETHEAST SPA AND POOL ASSOC.",,"6B SOUTH GOLD DRIVE",,"HAMILTON","NJ","08691",,,,,,,"136272699","6096899111",,,,"2011-08-11T10:43:24-0500","DOROTHY LONGOBARDI",,,,,8,8,0,0,8,0,8,7,0,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110811104842P030016206034001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALPHA SERVICES OF WESTCHESTER 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","ALPHA SERVICES OF WESTCHESTER",,,"14 CORTLANDT ST","STE 1","MOUNT VERNON","NY","10550",,,,,,,,,,,,,,,,,,"203682993","9146678176","488100","ALPHA SERVICES OF WESTCHESTER",,"14 CORTLANDT ST","STE 1","MOUNT VERNON","NY","10550",,,,,,,"203682993","9146678176",,,,"2011-08-11T10:48:39-0500","ALPHA SERVICES OF WESTCHESTER",,,,,25,28,0,6,34,0,34,26,0,,"2E2G2J2K2R2T3D3H",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110808103007P030108686289004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SMOKY MOUNTAIN HARLEY-DAVIDSON 401(K) PROFIT SHARING PLAN","001","2006-01-01","BANG BANG MOTORSPORTS, INC.","SMOKY MOUNTAIN HARLEY-DAVIDSON",,"1820 W. LAMAR ALEXANDER PARKWAY",,"MARYVILLE","TN","37801",,,,,,,,,,,,,,,,,,"200858874","8659771669","441221","BANG BANG MOTORSPORTS, INC.",,"1820 W. LAMAR ALEXANDER PARKWAY",,"MARYVILLE","TN","37801",,,,,,,"200858874","8659771669",,,,"2011-08-08T10:28:24-0500","SCOTT MADDUX",,,,,48,45,0,3,48,0,48,48,,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110804100650P030106396801001","2010-02-01","2010-12-31","2",,"0","0","0","1","0","1","0","0","0",,"SCOTT YOUNG, P.A. PROFIT SHARING PLAN","001","1986-02-01","YOUNG & ADAMS, P.A.",,,"2300 GLADES ROAD","SUITE 200 W","BOCA RATON","FL","334317386",,,,,,,,,,,,,,,,,,"592486628","5613681920","541110","YOUNG & ADAMS, P.A.",,"2300 GLADES ROAD","SUITE 200 W","BOCA RATON","FL","334317386",,,,,,,"592486628","5613681920",,,,"2011-08-04T10:06:49-0500","SCOTT YOUNG, ESQ.",,,,,17,15,0,1,16,0,16,16,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-04","Filed with authorized/valid electronic signature",, "20110808092954P040111576721001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"KENNETH A. SABACINSKI, D.P.M., P.A. PROFIT SHARING PLAN","001","1992-01-01","KENNETH A. SABACINSKI, D.P.M., P.A.",,,"601 N. FLAMINGO ROAD, SUITE 302",,"PEMBROKE PINES","FL","33028",,,,,,,,,,,,,,,,,,"650176375","9549667770","621111","KENNETH A. SABACINSKI, D.P.M., P.A.",,"601 N. FLAMINGO ROAD, SUITE 302",,"PEMBROKE PINES","FL","33028",,,,,,,"650176375","9549667770",,,,"2011-08-08T09:29:29-0500","KENNETH A. SABACINSKI","2011-08-08T09:29:29-0500","KENNETH A. SABACINSKI",,,6,3,0,3,6,0,6,6,0,,"2E3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","4","0","1","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110808100023P040016548946001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"ALERT ALARMS PROTECTION, INC. PROFIT SHARING PLAN","001","1999-01-01","ALERT ALARMS PROTECTION, INC.",,,"2308 BALL",,"GALVESTON","TX","77550",,,,,,,,,,,,,,,,,,"760170809","4097633877","561600","ALERT ALARMS PROTECTION, INC.",,"2308 BALL",,"GALVESTON","TX","77550",,,,,,,"760170809","4097633877",,,,"2011-08-03T15:18:47-0500","DORSEM L. KOEHLER, SR.","2011-08-08T09:51:23-0500","DORSEM L. KOEHLER, SR.",,,17,10,0,7,17,0,17,17,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110808124226P040016563026005","2010-02-01","2011-01-31","2",,,,,,,,"1",,,,"TABA INTERNATIONAL, INC. PROFIT SHARING PLAN","001","1992-02-01","TABA INTERNATIONAL, INC.",,,"C/O EXECUTIVE PLANNERS NORTHWEST","P O BOX 141124","SPOKANE VALLEY","WA","992141124",,,,,,,,,,,,,,,,,,"990267416",,"424990","TABA INTERNATIONAL, INC C/O EXECUTIVE PLANNERS NORTHWEST",,"P O BOX 141124",,"SPOKANE VALLEY","WA","992141124",,,,,,,"990267416",,,,,"2011-08-08T04:56:21-0500","TOSHIO TABA",,,,,2,2,,,2,,2,2,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110811100757P040113315921002","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"RADIOLOGY SERVICES PA 401K PROFIT SHARING PLAN","002","1999-07-01","RADIOLOGY SERVICES, P A",,,"PO BOX 1983",,"FORT SMITH","AR","72902",,,,,,,,,,,,,,,,,,"710336646","4794209673","621510","RADIOLOGY SERVICES PA PROFIT SHARING PLAN ADVISORY COMMITTEE",,"PO BOX 1983",,"FORT SMITH","AR","72902",,,,,,,"710476830","4794209673",,,,"2011-08-11T09:43:27-0500","ISMAIL H IHMEIDAN",,,,,4,4,,,4,,4,4,,,"2T2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110811110835P030110390049001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SOMERSET BENEFIT ADVISORS, INC. 401K PLAN","001","2009-01-01","SOMERSET BENEFIT ADVISORS, INC.",,,"850 CASSATT ROAD","SUITE 205","BERWYN","PA","19312",,,,,,,,,,,,,,,,,,"263813608","6107275201","524210","SOMERSET BENEFIT ADVISORS, INC.",,"850 CASSATT ROAD","SUITE 205","BERWYN","PA","19312",,,,,,,"263813608","6107275201",,,,"2011-08-11T12:08:06-0500","BRENDAN KELLY",,,,,8,9,,1,10,,10,4,,,"2E2G2J3D",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110808150421P040111715105001","2000-01-01","2000-12-31","2",,"1","0","0","0","0","0","0","1","0",,"INTELLICARDIA, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2000-01-01","INTELLICARDIA, INC.",,,"3960 BROADWAY, 3RD FLOOR",,"NEW YORK","NY","10032",,,,,,,"3960 BROADWAY, 3RD FLOOR",,"NEW YORK","NY","10032",,,,,,,"223629960","7634634600","339110","INTELLICARDIA, INC.",,"3960 BROADWAY, 3RD FLOOR",,"NEW YORK","NY","10032",,,,,,,"223629960","7634634600",,,,"2011-08-08T15:03:24-0500","ANNA MARCUERQUIAGA-HUGHES",,,,,0,19,0,0,19,0,19,13,0,0,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110811093315P030515595360001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"ASSOCIATED BRIGHAM CONTRACTORS WELFARE BENEFITS PLAN","502","1995-03-01","ASSOCIATED BRIGHAM CONTRACTORS",,,"75 NORTH 900 WEST",,"BRIGHAM CITY","UT","84302",,,,,,,,,,,,,,,,,,"870253167","4357238529","238100","ASSOCIATED BRIGHAM CONTRACTORS",,"75 NORTH 900 WEST",,"BRIGHAM CITY","UT","84302",,,,,,,"870253167","4357238529",,,,"2011-08-10T15:33:24-0500","DENNIS RACINE",,,,,140,128,3,,131,,131,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110811140014P030016216002002","2010-06-01","2011-05-31","2",,,,,,,,,,,,"DR. MICHAEL CUNNINGHAM, INC. EMPLOYEES PROFIT-SHARING PLAN","001","1982-03-17","DR. MICHAEL CUNNINGHAM, INC.",,,"1200 PROSPECT, SUITE 103",,"SANDUSKY","OH","44870",,,,,,,,,,,,,,,,,,"341332333","4196254942","621111","DR. MICHAEL CUNNINGHAM EUGENIA S. CUNNINGHAM",,"1200 PROSPECT, SUITE 103",,"SANDUSKY","OH","44870",,,,,,,"341332333","4196254942",,,,"2011-08-11T14:41:23-0500","DR. MICHAEL CUNNINGHAM","2011-08-11T14:41:33-0500","DR. MICHAEL CUNNINGHAM",,,5,5,0,0,5,0,5,5,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110807110335P040500842560001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"JENSEN TIRE COMPANY WELFARE PLAN","502","1999-06-01","JENSEN TIRE COMPANY",,,"10609 I STREET",,"OMAHA","NE","68127",,,,,,,,,,,,,,,,,,"470552707","4023392912","811190","JENSEN TIRE COMPANY",,"10609 I STREET",,"OMAHA","NE","68127",,,,,,,"470552707","4023392912",,,,"2011-08-06T11:27:04-0500","ALLAN HARRY",,,,,173,188,0,0,188,,,,,,,"4B4D4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-07","Filed with authorized/valid electronic signature",, "20110808114758P040111626801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEORGIA ARMS, INC. 401(K) PROFIT SHARING PLAN","001","1994-01-01","GEORGIA ARMS, INC.",,,"15 INDUSTRIAL COURT, EAST",,"VILLA RICA","GA","30180",,,,,,,,,,,,,,,,,,"581495262","7704595980","332900","GEORGIA ARMS, INC.",,"15 INDUSTRIAL COURT, EAST",,"VILLA RICA","GA","30180",,,,,,,"581495262","7704595980",,,,"2011-08-08T11:47:30-0500","LARRY E. HAYNIE","2011-08-08T11:47:30-0500","LARRY E. HAYNIE",,,40,33,,4,37,,37,16,0,,"2E3D2G2J2K",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110808180828P040016583810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TSCHIDA MACHINE WORKS 401(K) PROFIT SHARING PLAN","001","1995-01-01","TSCHIDA ENGINEERING",,,"13 SKYCREST WAY",,"NAPA","CA","94558",,,,,,,,,,,,,,,,,,"680378450","7072244482","339900","TSCHIDA ENGINEERING",,"13 SKYCREST WAY",,"NAPA","CA","94558",,,,,,,"680378450","7072244482",,,,"2011-08-08T18:07:13-0500","WARREN HUTSON",,,,,14,11,0,1,12,0,12,12,0,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110811123725P030110432961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SERVICE LAMP CORPORATION 401K PROFIT SHARING PLAN","004","1988-01-01","SERVICE LAMP CORPORATION",,,"P.O. BOX 249",,"MARLTON","NJ","08053",,,,,,,,,,,,,,,,,,"222142084","8567680404","423600","SERVICE LAMP CORPORATION",,"P.O. BOX 249",,"MARLTON","NJ","08053",,,,,,,"222142084","8567680404",,,,"2011-08-11T12:37:12-0500","IAN HARING","2011-08-11T12:37:12-0500","IAN HARING",,,24,22,0,2,24,0,24,24,1,,"2A2E2F2H2J2K3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110807153750P030015894690001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HOMES FOR OUR TROOPS 401(K) PLAN","001","2007-09-01","HOMES FOR OUR TROOPS",,,"6 MAIN ST",,"TAUNTON","MA","02780",,,,,,,"6 MAIN ST",,"TAUNTON","MA","02780",,,,,,,"542143612","5088233300","236110","HOMES FOR OUR TROOPS",,"6 MAIN ST",,"TAUNTON","MA","02780",,,,,,,"542143612","5088233300",,,,"2011-08-07T15:31:34-0500","THOMAS BENOIT",,,,,30,30,0,9,39,0,39,23,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-07","Filed with authorized/valid electronic signature",, "20110808135635P030508137392001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ZKS 401(K) & PROFIT SHARING PLAN","001","1985-01-01","ZIMMERMAN, KISER & SUTCLIFFE, P.A.",,,"P.O. BOX 3000",,"ORLANDO","FL","328023000",,,,,,,,,,,,,,,,,,"592339047","4074257010","541110","ZIMMERMAN, KISER & SUTCLIFFE, P.A.",,"P.O. BOX 3000",,"ORLANDO","FL","328023000",,,,,,,"592339047","4074257010",,,,"2011-08-08T13:56:24-0500","STEPHEN B. HATCHER","2011-08-08T13:56:24-0500","STEPHEN B. HATCHER",,,95,68,0,19,87,1,88,84,2,,"2E2F2G2J2K2R2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110808150458P040503888080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STAR TRANSPORTATION, INC. EMPLOYEE BENEFIT PLAN","501","1993-11-01","STAR TRANSPORTATION, INC.",,,"1116 POLK AVENUE",,"NASHVILLE","TN","37210",,,,,,,"1116 POLK AVENUE",,"NASHVILLE","TN","37210",,,,,,,"621094613","6152564336","484120","STAR TRANSPORTATION, INC.",,"1116 POLK AVENUE",,"NASHVILLE","TN","37210",,,,,,,"621094613","6152564336",,,,"2011-08-08T15:03:55-0500","BILL HARRIS",,,,,442,392,10,0,402,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110807232427P030506539152001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KEYWEI, INC. 401(K) PROFIT SHARING PLAN","002","2009-01-01","KEYWEI, INC.",,,"2530 CORPORATION PLACE SUITE A-104",,"MONTEREY PARK","CA","91754",,,,,,,,,,,,,,,,,,"202793404","3232638383","541990","KEYWEI, INC.",,"2530 CORPORATE PLACE SUITE A-104",,"MONTEREY PARK","CA","91754",,,,,,,"202793404","3232638383",,,,"2011-08-07T23:20:28-0500","RAYMOND HUNG-YU TAN",,,,,10,7,0,3,10,0,10,8,1,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110811124935P030110439505001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"BENTALL KENNEDY US LP EMPLOYEE BENEFIT PLAN","501","2004-02-01","BENTALL KENNEDY US LP",,,"1215 4TH AVENUE","SUITE 2410","SEATTLE","WA","98161",,,,,,,,,,,,,,,,,,"205300937","2063153802","531210","BENTALL KENNEDY US LP",,"1215 4TH AVENUE","SUITE 2410","SEATTLE","WA","98161",,,,,,,"205300937","2063153802","KENNEDY ASSOCIATES REAL ESTATE COUNSEL, L.P.","205300937","501","2011-08-11T12:49:23-0500","CHRIS WARNER",,,,,117,92,4,,96,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110811125100P040511532384001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRICELESS INDUSTRIES, INC. 401(K) PROFIT SHARING PLAN","001","1995-01-01","PRICELESS INDUSTRIES, INC.",,,"8120 NORRIS LN",,"BALTIMORE","MD","21222",,,,,,,,,,,,,,,,,,"521318471","4102851900","237310","PRICELESS INDUSTRIES, INC.",,"8120 NORRIS LN",,"BALTIMORE","MD","21222",,,,,,,"521318471","4102851900",,,,"2011-08-11T12:48:31-0500","CATHERINE HAMILTON","2011-08-11T12:50:09-0500","CATHERINE HAMILTON",,,24,21,0,0,21,0,21,19,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110811093847P030016202018001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SECURITY SUPPLY CORPORATION CAFETERIA PLAN","501","2002-03-01","SECURITY SUPPLY CORPORATION",,,"196 MAPLE AVENUE",,"SELKIRK","NY","12158",,,,,,,,,,,,,,,,,,"141052430","5187672226","423700","SECURITY SUPPLY CORPORATION",,"196 MAPLE AVENUE",,"SELKIRK","NY","12158",,,,,,,"141052430","5187672226",,,,"2011-08-10T10:41:15-0500","KEITH BENNETT","2011-08-10T10:41:15-0500","KEITH BENNETT",,,116,121,1,,122,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110808065123P030507323536001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UPSTATE NEW YORK TRANSPLANT SERVICES, INC.(UNYTS) 401K PROFIT SHARING PLAN","001","1982-06-01","UPSTATE NEW YORK TRANSPLANT SERVICES, INC",,,"110 BROADWAY",,"BUFFALO","NY","14203",,,,,,,,,,,,,,,,,,"161172453","7168536667","621900","UPSTATE NEW YORK TRANSPLANT SERVICES, INC",,"110 BROADWAY",,"BUFFALO","NY","14203",,,,,,,"161172453","7168536667",,,,"2011-08-07T15:27:48-0500","ALAN GALAC",,,,,168,108,3,57,168,0,168,168,20,,"2J2E2F2G2A2K3D2T",,"1",,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110808070212P030108604289001","2011-01-01","2011-06-30","2",,"0","0","1","1","0","0","0","0","0",,"MARC SCHWARZMAN MD PROFIT SHARING PLAN","001","1994-01-01","MARC I. SCHWARZMAN, MD",,,"60 MT. LUCAS ROAD",,"PRINCETON","NJ","08540",,,,,,,,,,,,,,,,,,"223098551","6094973400","621111","MARC I. SCHWARZMAN, MD",,"60 MT. LUCAS ROAD",,"PRINCETON","NJ","08540",,,,,,,"223098551","6094973400",,,,"2011-08-08T07:01:59-0500","MARC I. SCHWARZMAN, MD","2011-08-08T07:01:59-0500","MARC I. SCHWARZMAN, MD",,,3,0,0,0,0,0,0,0,0,,"2A2E2F2G2J2R3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110808112818P030507848800001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"FIDELITY DEFINED CONTRIBUTION RETIREMENT PLAN AND TRUST","004","1987-06-08","RONALD HIURA","HIURA & HIURA",,"1418 POLK STREET",,"SAN FRANCISCO","CA","94109",,,,,,,"1418 POLK STREET",,"SAN FRANCISCO","CA","94109",,,,,,,"331088254","4157762352","621320","RONALD HIURA",,"1418 POLK STREET",,"SAN FRANCISCO","CA","94109",,,,,,,"331088254","4157762352",,,,"2011-08-08T10:58:51-0500","RONALD HIURA",,,,,5,4,5,,9,,9,9,0,,"2E2G",,,,"1","0",,,"1","1",,,,,"1",,,,,,"FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110808120116P040503537952001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THIENES ENGINEERING, INC. 401K PLAN","001","2003-02-01","THIENES ENGINEERING",,,"14349 FIRESTONE BLVD",,"LA MIRADA","CA","90638",,,,,,,,,,,,,,,,,,"954719498","7145214811","541330","THIENES ENGINEERING",,"14349 FIRESTONE BLVD",,"LA MIRADA","CA","90638",,,,,,,"954719498","7145214811",,,,"2011-08-08T12:00:09-0500","BRIAN THIENES",,,,,39,35,0,0,35,0,35,35,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110808131854P030508064400001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHERIDAN ROSS, P.C. 401(K) PROFIT SHARING PLAN","002","1989-01-01","SHERIDAN ROSS, P.C.",,,"1560 BROADWAY, SUITE 1200",,"DENVER","CO","80202",,,,,,,,,,,,,,,,,,"841103115","3038639700","541110","SHERIDAN ROSS, P.C.",,"1560 BROADWAY, SUITE 1200",,"DENVER","CO","80202",,,,,,,"841103115","3038639700",,,,"2011-08-08T13:18:53-0500","ROBERT BRUNELLI",,,,,77,57,0,21,78,0,78,78,0,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","6","0","0","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110808134813P030015978210001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOTAL EDUCATION SOLUTIONS, INC. 401(K) PLAN","001","1998-01-01","TOTAL EDUCATION SOLUTIONS, INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"954719630","6207938473","611000","TOTAL EDUCATION SOLUTIONS, INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"954719630","6207938473",,,,"2011-08-08T13:45:26-0500","STACI HAZLETT",,,,,550,541,6,28,575,0,575,127,2,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110808162112P040111756369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HAYWARD & ASSOCIATES, P.C. 401K PLAN","001","1982-03-01","HAYWARD & ASSOCIATES, P.C.",,,"2581 PARK LANE",,"LAFAYETTE","CO","800263172",,,,,,,,,,,,,,,,,,"840863222","3034404711","541211","HAYWARD & ASSOCIATES, P.C.",,"2581 PARK LANE",,"LAFAYETTE","CO","800263172",,,,,,,"840863222","3034404711",,,,"2011-08-08T16:17:30-0500","CRAIG HAYWARD",,,,,7,5,0,1,6,0,6,6,1,,"2E2F2G2J2K2R3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110808085836P040111566465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATTORNEYS AT LAW EMPLOYEE PROFIT SHARING PLAN","001","1991-01-01","ATTORNEYS AT LAW",,,"587 MAIN STREET","SUITE 302","NEW YORK MILLS","NY","134171481",,,,,,,,,,,,,,,,,,"161275637","3157334671","541110","ATTORNEYS AT LAW",,"587 MAIN STREET","SUITE 302","NEW YORK MILLS","NY","134171481",,,,,,,"161275637","3157334671",,,,"2011-08-08T08:51:45-0500","VINCENT ROSSI",,,,,7,2,,4,6,0,6,6,0,,"2E2F2G3B3D2R",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-08","Filed with authorized/valid electronic signature",, "20110811144921P030516221792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAZY S LUMBER, INC. 401(K) PROFIT SHARING PLAN","001","1994-04-01","LAZY S LUMBER, INC.",,,"24419 NORTH HWY 395",,"KETTLE FALLS","WA","99141",,,,,,,,,,,,,,,,,,"930864131","5097384711","321210","LAZY S LUMBER, INC.",,"24419 NORTH HWY 395",,"KETTLE FALLS","WA","99141",,,,,,,"930864131","5097384711",,,,"2011-08-11T14:48:41-0500","ANGELA MONETTE",,,,,99,79,0,18,97,0,97,91,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-11","Filed with authorized/valid electronic signature",, "20110819101523P040118066961001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"GARLAND PORTERFIELD, M.D., INC. PROFIT SHARING PLAN","002","1990-05-01","GARLAND PORTERFIELD, M.D., INC.",,,"3727 NW 63RD STREET, SUITE 200",,"OKLAHOMA CITY","OK","731161923",,,,,,,,,,,,,,,,,,"731147627","4058489700","621111","GARLAND PORTERFIELD, M.D., INC.",,"3727 NW 63RD STREET, SUITE 200",,"OKLAHOMA CITY","OK","731161923",,,,,,,"731147627","4058489700",,,,"2011-08-19T10:15:03-0500","GARLAND PORTERFIELD, M.D.",,,,,5,4,0,0,4,0,4,4,1,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819101944P030003292148001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HAMPTON DIRECT, INC., PROFIT SHARING PLAN","001","2004-02-26","HAMPTON DIRECT, INC.",,,"215 MEADOWVALE ROAD",,"LUTHERVILLE","MD","21093",,,,,,,,,,,,,,,,,,"200787359","4108281380","454390","HAMPTON DIRECT, INC.",,"215 MEADOWVALE ROAD",,"LUTHERVILLE","MD","21093",,,,,,,"200787359","4108281380",,,,"2011-08-19T10:17:42-0500","JOHN BARTHOLME",,,,,2,2,,,2,,2,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110829091946P030017667554001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADS ALLIANCE DATA SYSTEMS, INC. MASTER WELFARE BENEFIT PLAN FOR INSURED BENEFITS","502","2001-01-01","ADS ALLIANCE DATA SYSTEMS, INC.",,,"7500 DALLAS PARKWAY","SUITE 700","PLANO","TX","75024",,,,,,,,,,,,,,,,,,"133163498","2144943000","522298","ADS ALLIANCE DATA SYSTEMS, INC.",,"7500 DALLAS PARKWAY","SUITE 700","PLANO","TX","75024",,,,,,,"133163498","2144943000",,,,"2011-08-26T09:09:18-0500","CALVIN HILTON",,,,,5714,5683,23,0,5706,,,,,,,"4A4B4D4E4F4G4H4L4Q","0","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110830135641P040124701681001","2010-01-01","2010-12-31","4","P",,,,,,,,,,,"INTERMEDIATE HORIZON STRATEGIC ALLOCATION FUND","022",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"DIVERSIFIED INVESTMENT ADVISORS","4333 EDGEWOOD RD NE, MD 0001","REPORTING AND DISCLOSURE UNIT","CEDAR RAPIDS","IA","52499",,,,,,,,,,,,,,,,,,"366071399","3193556952",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY","DIVERSIFIED INVESTMENT ADVISORS","4333 EDGEWOOD RD NE, MD 0001","REPORTING AND DISCLOSURE UNIT","CEDAR RAPIDS","IA","52499",,,,,,,"366071399","3193556952",,,,,,,,"2011-08-30T02:56:24-0500","JULIA J ANDERSON",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-08-30",,"Filed with authorized/valid electronic signature", "20110817140126P040116982465007","2010-03-01","2011-02-28","2",,,,"1",,,,,,,,"HARVARD CUSTOM MANUFACTURING GROUP LIFE AND AD&D","505","2003-03-01","HARVARD CUSTOM MANUFACTURING, INC.",,,"600 GLEN AVENUE",,"SALISBURY","MD","218045250",,,,,,,,,,,,,,,,,,"521989703","4105487800","335900","HARVARD CUSTOM MANUFACTURING, INC.",,"600 GLEN AVENUE",,"SALISBURY","MD","218045250",,,,,,,"521989703","4105487800",,,,"2011-08-15T04:17:28-0500","STEVEN ROBERTSON",,,,,833,674,,,674,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110818140544P030114466273001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"CREATIVE DENTAL CARE, P.A. PROFIT SHARING PLAN","001","2010-01-01","CREATIVE DENTAL CARE, P.A.",,,"423 SOUTH AVE. WEST",,"WESTFIELD","NJ","07090",,,,,,,,,,,,,,,,,,"204610613","9082320400","621210","CREATIVE DENTAL CARE, P.A.",,"423 SOUTH AVE. WEST",,"WESTFIELD","NJ","07090",,,,,,,"204610613","9082320400",,,,"2011-08-18T14:04:54-0500","JOSEPH BANKER",,,,,4,5,0,0,5,0,5,5,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110819112558P030114969601001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"MITA ENTERPRISES, INC. 401K PLAN","001","2007-10-23","MITA ENTERPRISES, INC.",,,"8405 FREEDOM CT.",,"COLUMBIA","MD","210453100",,,,,,,,,,,,,,,,,,"261392900","4109538196","523900","MITA ENTERPRISES, INC.",,"8405 FREEDOM CT.",,"COLUMBIA","MD","210453100",,,,,,,"261392900","4109538196",,,,"2011-08-19T11:24:57-0500","MICHAEL MASON","2011-08-19T11:24:57-0500","MICHAEL MASON",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110819140410P040118182641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN FOREST PRODUCTS, LLC EMPLOYEE BENEFIT PLAN","503","1998-08-01","AMERICAN FOREST PRODUCTS, LLC",,,"7358 NEW RIDGE ROAD",,"HANOVER","MD","21076",,,,,,,,,,,,,,,,,,"270373775","4106912680","423300","AMERICAN FOREST PRODUCTS, LLC",,"7358 NEW RIDGE ROAD",,"HANOVER","MD","21076",,,,,,,"270373775","4106912680",,,,"2011-08-19T14:02:58-0500","JEFFREY A. SIM",,,,,587,512,8,0,520,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110829101006P040018376962001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"COOK GROUP EMPLOYEE BENEFITS PLAN","506","2008-01-01","COOK GROUP INCORPORATED",,,"P. O. BOX 1608",,"BLOOMINGTON","IN","474021608",,,,,,,,,,,,,,,,,,"351084188","8123311025","339110","COOK GROUP INCORPORATED",,"P. O. BOX 1608",,"BLOOMINGTON","IN","474021608",,,,,,,"351084188","8123311025",,,,"2011-08-29T10:09:28-0500","RON WYATT",,,,,6418,6593,0,0,6593,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","34","0","0","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110829104910P030120647585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"R. W. MERCER COMPANY 401(K) PROFIT SHARING PLAN AND TRUST","001","1984-07-01","R. W. MERCER COMPANY",,,"2322 BROOKLYN ROAD",,"JACKSON","MI","49203",,,,,,,,,,,,,,,,,,"382120488","5177872960","238900","R. W. MERCER COMPANY",,"2322 BROOKLYN ROAD",,"JACKSON","MI","49203",,,,,,,"382120488","5177872960",,,,"2011-08-29T10:48:35-0500","MICHAEL SCHILLING",,,,,139,109,0,19,128,0,128,111,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110829170920P030564056992001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"APPLIED CLINICAL RESEARCH, INC. 401(K) PROFIT SHARING PLAN","001","1996-01-01","APPLIED CLINICAL RESEARCH LABORATORY, INC.",,"SAN DIEGO REFERENCE LABORATORY","6122 NANCY RIDGE DRIVE",,"SAN DIEGO","CA","92121",,,,,,,,,,,,,,,,,,"330486283","8586777970","621510","APPLIED CLINICAL RESEARCH LABORATORY, INC.","SAN DIEGO REFERENCE LABORATORY","6122 NANCY RIDGE DRIVE",,"SAN DIEGO","CA","92121",,,,,,,"330486283","8586777970",,,,"2011-08-29T06:09:01-0500","KIMBERLY MICHELLE GRAAS",,,,,42,26,1,22,49,0,49,46,9,,"2E2F2H2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110829172102P030120832929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHRIM BANK SAVINGS INCENTIVE PLAN","001","1992-07-01","NORTHRIM BANK",,,"3111 C STREET",,"ANCHORAGE","AK","99503",,,,,,,,,,,,,,,,,,"920134436","9072613351","522110","NORTHRIM BANK",,"3111 C STREET",,"ANCHORAGE","AK","99503",,,,,,,"920134436","9072613351",,,,"2011-08-22T15:58:18-0500","LATOSHA DICKINSON","2011-08-29T17:19:18-0500","AUDREY AMUNDSON",,,324,270,0,60,330,0,330,292,12,,"2A2E2F2G2J2K2T3D3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110817164115P030113944113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CR RESTAURANT 401(K) SAVINGS PLAN","001","1995-01-01","CR RESTAURANT INC.",,,"4425 FITCH AVE SUITE 118",,"BALTIMORE","MD","21236",,,,,,,,,,,,,,,,,,"521779562","4106630105","722210","CR RESTAURANT INC.",,"4425 FITCH AVE SUITE 118",,"BALTIMORE","MD","21236",,,,,,,"521779562","4106630105",,,,"2011-08-17T16:40:17-0500","THOMAS HERMAN",,,,,326,275,0,10,285,0,285,75,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110817060727P030113701153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BALL MEMORIAL HOSPITAL, INC. RETIREMENT PLAN","004","1994-01-01","BALL MEMORIAL HOSPITAL, INC.",,,"2401 UNIVERSITY AVENUE",,"MUNCIE","IN","473033428",,,,,,,,,,,,,,,,,,"350867958","7657473111","622000","BALL MEMORIAL HOSPITAL, INC.",,"2401 UNIVERSITY AVENUE",,"MUNCIE","IN","473033428",,,,,,,"350867958","7657473111",,,,"2011-08-16T15:34:30-0500","ANN MCGUIRE",,,,,1814,3062,0,336,3398,3,3401,2484,28,,"2F2G2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110817084006P040116847665001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"HOUSING AND REDEVELOPMENT AUTHORITY OF VIRGINIA, MN RETIREMENT PLAN","001","1969-07-01","HOUSING AND REDEVELOPMENT AUTHORITY OF VIRGINIA",,,"442 PINE MILL COURT","PO BOX 1146","VIRGINIA","MN","55792",,,,,,,,,,,,,,,,,,"416008272","2187412610","531390","HOUSING AND REDEVELOPMENT AUTHORITY OF VIRGINIA",,"442 PINE MILL COURT","PO BOX 1146","VIRGINIA","MN","55792",,,,,,,"416008272","2187412610",,,,"2011-08-17T08:36:54-0500","SUSAN SALZER",,,,,23,21,2,0,23,0,23,19,0,,"2C2F2G2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110818160524P030114521329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOMAS W. GIGER PROFIT SHARING PLAN","001","1993-10-28","THOMAS W. GIGER",,,"3903 SOUTH OAK PARK AVENUE",,"STICKNEY","IL","60402",,,,,,,"3903 SOUTH OAK PARK AVENUE",,"STICKNEY","IL","60402",,,,,,,"363539029","7087494646","541110","THOMAS W. GIGER",,"3903 SOUTH OAK PARK AVENUE",,"STICKNEY","IL","60402",,,,,,,"363539029","7087494646",,,,"2011-08-18T16:04:47-0500","MAUREEN KERSTING",,,,,2,2,0,0,2,0,2,2,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110819170021P030537454880001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EDWARD G VAUGHAN PROFIT SHARING PLAN","001","1981-03-09","EDWARD G VAUGHAN, D D S",,,"78 LYNOAK COVE",,"JACKSON","TN","38305",,,,,,,,,,,,,,,,,,"620850851","7316682795","621210","EDWARD G VAUGHAN D D S",,"78 LYNOAK COVE",,"JACKSON","TN","38305",,,,,,,"620850851","7316682795",,,,"2011-08-19T15:40:53-0500","EDWARD G VAUGHAN",,,,,1,1,,,1,,1,,,,"2E2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110829120322P040124078721001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"ROBINSON TERRACE MONEY PURCHASE PLAN","003","2000-10-01","STAMFORD HEALTH CARE SOCIETY, INC.",,,"28652 STATE HIGHWAY 23",,"STAMFORD","NY","121671712",,,,,,,,,,,,,,,,,,"150571290","6076527521","623000","STAMFORD HEALTH CARE SOCIETY, INC.",,"28652 STATE HIGHWAY 23",,"STAMFORD","NY","121671712",,,,,,,"150571290","6076527521",,,,"2011-08-29T12:03:17-0500","CHRISTOPHER HENKELS","2011-08-29T12:03:17-0500","CHRISTOPHER HENKELS",,,150,119,0,8,127,0,127,90,5,,"2C2F2G2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110817105729P040116909585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GLASS AMERICA MIDWEST, INC 401(K) PLAN","001","2005-01-01","GLASS AMERICA MIDWEST, INC",,,"150 NORTH MICHIGAN AVENUE","SUITE 1580","CHICAGO","IL","60601",,,,,,,,,,,,,,,,,,"300270064","3127816480","811120","GLASS AMERICA MIDWEST, INC",,"150 NORTH MICHIGAN AVENUE","SUITE 1580","CHICAGO","IL","60601",,,,,,,"300270064","3127816480",,,,"2011-08-17T10:57:19-0500","TONY HESSLING",,,,,461,377,0,56,433,0,433,381,0,,"2E2F2G3D2J2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110818074438P030016750290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SMITH & COMPANY CPAS RETIREMENT PLAN","001","1997-06-26","SMITH & COMPANY CPA'S",,,"207 NORTH THIRD STREET",,"BARDSTOWN","KY","40004",,,,,,,"207 NORTH THIRD STREET",,"BARDSTOWN","KY","40004",,,,,,,"611310568","5023487576","541211","SMITH & COMPANY CPA'S",,"207 NORTH THIRD STREET",,"BARDSTOWN","KY","40004",,,,,,,"611310568","5023487576",,,,"2011-08-18T07:38:56-0500","BETH CULVER",,,,,3,3,0,0,3,0,3,3,,,"2C2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110818074508P040017395090001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"H&K THREAD GRINDING CO PROFIT SHARING PLAN","001","1973-06-29","H&K THREAD GRINDING CO.",,,"31801 RESEARCH PARK DR.",,"MADISON HEIGHTS","MI","480714630",,,,,,,,,,,,,,,,,,"381900062","2485854341","332210","H&K THREAD GRINDING CO.",,"31801 RESEARCH PARK DR.",,"MADISON HEIGHTS","MI","480714630",,,,,,,"381900062","2485854341",,,,"2011-08-09T17:01:09-0500","CHRIS KARSAMA",,,,,9,7,0,2,9,0,9,9,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110819170023P030003377891001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GERARD & ASSOCIATES, APC MONEY PURCHASE PENSION PLAN","002","1995-01-01","GERARD & ASSOCIATES, APC",,,"1516 FRONT STREET",,"SAN DIEGO","CA","92101",,,,,,,,,,,,,,,,,,"330728475","6192322828","541110","GERARD & ASSOCIATES, APC",,"1516 FRONT STREET",,"SAN DIEGO","CA","92101",,,,,,,"330728475","6192322828",,,,"2011-08-19T17:00:29-0500","ROBERT B. GERARD","2011-08-19T17:00:29-0500","ROBERT B. GERARD",,,4,3,0,0,3,0,3,1,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110819193653P040017535954001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"RANDAL LEE RUNNELLS, INC. DEFINED BENEFIT PENSION PLAN","001","2010-01-01","RANDAL LEE RUNNELLS, INC.",,,"679 CORAL VIEW ST.",,"LAS VEGAS","NV","89110",,,,,,,"679 CORAL VIEW ST.",,"LAS VEGAS","NV","89110",,,,,,,"263200746","7022968360","541600","RANDAL LEE RUNNELLS, INC.",,"679 CORAL VIEW ST.",,"LAS VEGAS","NV","89110",,,,,,,"263200746","7022968360",,,,"2011-08-19T19:36:39-0500","JOSHUA LEE",,,,,0,1,0,0,1,0,1,,0,,"3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819102524P040531930384001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SHAMROCK BANCSHARES EMPLOYEE STOCK OWNERSHIP PLAN","001","1986-01-01","SHAMROCK BANCSHARES, INC.",,,"P O BOX 267",,"COALGATE","OK","745380267",,,,,,,,,,,,,,,,,,"730957956","5809272311","522110","SHAMROCK BANCSHARES, INC.",,"P O BOX 267",,"COALGATE","OK","745380267",,,,,,,"730957956","5809272311",,,,"2011-08-19T11:08:52-0500","DFRANK PLATER, JR",,,,,79,72,,11,83,,83,83,3,,"2O2P2Q",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110817111854P040116917521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MC MACHINERY SYSTEMS, INC. SAVINGS AND RETIREMENT PLAN","001","1991-08-01","MC MACHINERY SYSTEMS, INC",,,"1500 MICHAEL DRIVE",,"WOOD DALE","IL","60191",,,,,,,,,,,,,,,,,,"363766742","6308604208","423800","MC MACHINERY SYSTEMS, INC",,"1500 MICHAEL DRIVE",,"WOOD DALE","IL","60191",,,,,,,"363766742","6308604208",,,,"2011-08-17T11:18:30-0500","SUSAN CORTOPASSI","2011-08-17T11:18:30-0500","CAROL LINCOLN",,,251,223,0,18,241,0,241,193,3,,"2F2G2J2K3H2E3D2T3F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110817121041P040116934689001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NORTHWESTERN COUNSELING AND SUPPORT SERVICES TAX DEFERRED ANNUITY","001","1976-01-01","NORTHWESTERN COUNSELING ANDSUPPORT SERVICES, INC.",,,"107 FISHER POND ROAD",,"ST. ALBANS","VT","05478",,,,,,,"107 FISHER POND ROAD",,"ST. ALBANS","VT","05478",,,,,,,"030210542","8025246554","621112","NORTHWESTERN COUNSELING ANDSUPPORT SERVICES, INC.",,"107 FISHER POND ROAD",,"ST. ALBANS","VT","05478",,,,,,,"030210542","8025246554",,,,"2011-08-17T08:59:50-0500","STACEY REMILLARD","2011-08-17T12:07:54-0500","ANTHONY TREANOR",,,373,309,0,66,375,0,375,372,9,,"2G2L2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110817132803P040116964913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GROUP LIFE INSURANCE PLAN FOR EMPLOYEES","506","1987-01-01","GREENBERG TRAURIG, P.A.",,,"8400 NW 36TH STREET","SUITE 400","DORAL","FL","33166",,,,,,,"8400 NW 36TH STREET","SUITE 400","DORAL","FL","33166",,,,,,,"591270754","3055790500","541110","GREENBERG TRAURIG, P.A.",,"8400 NW 36TH STREET","SUITE 400","DORAL","FL","33166",,,,,,,"591270754","3055790500",,,,"2011-08-17T13:25:10-0500","DAVID HIRSCH","2011-08-17T13:27:25-0500","DAVID HIRSCH",,,3457,3292,,,3292,,3292,,,,,"4B4L","1",,,"0","1",,,"0",,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110818121108P040017414978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAKEVILLE MOTOR EXPRESS 401(K) SAVINGS PLAN","001","1990-01-01","LAKEVILLE MOTOR EXPRESS",,,"500 COUNTY ROAD D WEST",,"NEW BRIGHTON","MN","55112",,,,,,,,,,,,,,,,,,"410678303","6516368900","484110","LAKEVILLE MOTOR EXPRESS",,"500 COUNTY ROAD D WEST",,"NEW BRIGHTON","MN","55112",,,,,,,"410678303","6516368900",,,,"2011-08-18T12:03:01-0500","KAREN VANNEY",,,,,139,114,0,19,133,0,133,91,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110829092614P040018372066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEMEK, LLC DBA PANERA BREAD 401(K) PROFIT SHARING PLAN","001","2007-01-01","LEMEK, LLC DBA PANERA BREAD",,,"8184 LARK BROWN ROAD",,"ELKRIDGE","MD","21075",,,,,,,,,,,,,,,,,,"391927747","4435520700","722110","LEMEK, LLC DBA PANERA BREAD",,"8184 LARK BROWN ROAD",,"ELKRIDGE","MD","21075",,,,,,,"391927747","4435520700",,,,"2011-08-25T15:25:48-0500","BRIAN LEMEK",,,,,815,815,0,33,848,0,848,151,6,,"2E2F2G2J2K2T3D3B",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110817134912P040017324962001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MR. BULT'S, INC. 401(K) PLAN","001","1993-01-01","MR. BULT'S INC.",,,"2631 EAST 139TH STREET",,"BURNHAM","IL","60633",,,,,,,,,,,,,,,,,,"363408042","7085853300","484200","MR. BULT'S INC.",,"2631 EAST 139TH STREET",,"BURNHAM","IL","60633",,,,,,,"363408042","7085853300",,,,"2011-08-17T13:48:44-0500","STEVE DEBOER","2011-08-17T13:48:44-0500","STEVE DEBOER",,,776,846,0,110,956,0,956,400,30,,"2E2F2G2J2K2S2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110817144514P040116999953001","2010-03-01","2011-02-28","2",,"0","0","0","0","1","0","0","0","0",,"PRINCE RESORTS HAWAII WELFARE BENEFITS PLAN","501","2008-03-01","PRINCE RESORTS HAWAII, INC.",,,"100 HOLOMOANA STREET",,"HONOLULU","HI","96815",,,,,,,,,,,,,,,,,,"990346178","8089561111","721110","PRINCE RESORTS HAWAII, INC.",,"100 HOLOMOANA STREET",,"HONOLULU","HI","96815",,,,,,,"990346178","8089561111",,,,"2011-08-17T14:24:11-0500","GERALD KIMURA",,,,,1201,1206,35,0,1241,,,,,,,"4A4B4D4E4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110818152054P030016776946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOMERSET TRUST COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","003","1986-01-01","SOMERSET TRUST COMPANY",,,"151 W. MAIN STREET",,"SOMERSET","PA","15501",,,,,,,"PO BOX 777",,"SOMERSET","PA","15501",,,,,,,"250807970","8144439200","522110","SOMERSET TRUST COMPANY",,"151 W. MAIN STREET",,"SOMERSET","PA","15501",,,,,,,"250807970","8144439200",,,,"2011-08-17T15:51:49-0500","GLORIA PRITTS","2011-08-18T15:20:25-0500","THOMAS J. COOK",,,196,186,0,13,199,0,199,193,0,,"2P",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110818152514P040117629873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INTOUCH SOLUTIONS, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","1999-11-01","INTOUCH SOLUTIONS, INC.",,,"PO BOX 7190",,"SHAWNEE MISSION","KS","66207",,,,,,,,,,,,,,,,,,"481211201","9136485526","518210","INTOUCH SOLUTIONS, INC.",,"PO BOX 7190",,"SHAWNEE MISSION","KS","66207",,,,,,,"481211201","9136485526",,,,"2011-08-18T15:23:38-0500","CONNIE MULLINIX","2011-08-18T15:23:38-0500","FARUK CAPAN",,,159,195,0,9,204,0,204,202,3,,"2E2F2G2T2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110818141724P030534452864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAYER TRUCK LINE, INC. 401(K) PROFIT SHARING PLAN","002","1985-01-01","MAYER TRUCK LINE, INC.",,"ATTN JASON MAYER","1207 RIVERSIDE DR",,"JAMESTOWN","ND","58401",,,,,,,,,,,,,,,,,,"450358763","7012526071","484110","MAYER TRUCK LINE, INC.","ATTN JASON MAYER","1207 RIVERSIDE DR",,"JAMESTOWN","ND","58401",,,,,,,"450358763","7012526071",,,,"2011-08-18T14:17:00-0500","MARIE NESS",,,,,55,47,0,7,54,0,54,54,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110829124300P030120704609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIAM N. LANGSTAFF DDS INC. PROFIT SHARING PLAN","002","1979-08-01","WILLIAM N. LANGSTAFF DDS INC.",,,"511 E. FIRST STREET, SUITE C",,"TUSTIN","CA","92780",,,,,,,"THOMAS AND FEES PENSION SERVICE","511 E FIRST","TUSTIN","CA","927803333",,,,,,,"953119363","7146379270","621210","WILLIAM N. LANGSTAFF DDS INC.",,"511 E. FIRST STREET, SUITE C",,"TUSTIN","CA","92780",,,,,,,"953119363","7146379270",,,,"2011-08-29T12:42:30-0500","LVEZINA","2011-08-29T12:42:30-0500","LVEZINA",,,4,4,0,0,4,0,4,4,0,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110829185456P040124256929001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"CAPITAL GUARDIAN ALL COUNTRY WORLD EQUITY MASTER FUND","287",,"CAPITAL GUARDIAN TRUST COMPANY",,"ROBERT A. BONNELL","6455 IRVINE CENTER DRIVE C-2",,"IRVINE","CA","92618",,,,,,,,,,,,,,,,,,"956597294","9499755229","525920","CAPITAL GUARDIAN TRUST COMPANY","ROBERT A. BONNELL","6455 IRVINE CENTER DRIVE C-2",,"IRVINE","CA","92618",,,,,,,"956597294","9499755229",,,,,,,,"2011-08-29T18:54:46-0500","ROBERT BONNELL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-08-29",,"Filed with authorized/valid electronic signature", "20110817084507P040116849281001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SARAH CHAVES 401K PROFIT SHARING PLAN","001","2005-01-01","SARAH CHAVES, ATTORNEY",,,"1247 FIRST AVE N.",,"ST PETERSBURG","FL","33705",,,,,,,,,,,,,,,,,,"593377945","7278985203","541110","SARAH CHAVES, ATTORNEY",,"1247 FIRST AVE N.",,"ST PETERSBURG","FL","33705",,,,,,,"593377945","7278985203",,,,"2011-08-17T09:26:45-0500","SARAH CHAVES, ATTORNEY","2011-08-17T09:26:48-0500","SARAH CHAVES, ATTORNEY",,,2,2,0,0,2,0,2,2,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110818152825P030534593056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEWPARK RESOURCES, INC. SAVINGS & INVESTMENT PLAN","002","1988-05-01","NEWPARK RESOURCES, INC.",,,"2700 RESEARCH FORREST DRIVE","SUITE 100","THE WOODLANDS","TX","77381",,,,,,,,,,,,,,,,,,"721123385","2813626800","211110","NEWPARK RESOURCES, INC.",,"2700 RESEARCH FORREST DRIVE","SUITE 100","THE WOODLANDS","TX","77381",,,,,,,"721123385","2813626800",,,,"2011-08-18T15:27:42-0500","MARTY J KUNZ","2011-08-18T15:27:42-0500","MARTY J KUNZ",,,1023,921,1,599,1521,0,1521,1394,0,,"3D2E2J2F2G2K3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110818171146P030016784482001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"US AIRWAYS, INC. HEALTH BENEFIT PLAN","501","1963-07-01","US AIRWAYS, INC.",,,"4000 EAST SKY HARBOR BLVD",,"PHOENIX","AZ","85034",,,,,,,,,,,,,,,,,,"530218143","4806938952","481000","US AIRWAYS, INC.",,"4000 EAST SKY HARBOR BLVD",,"PHOENIX","AZ","85034",,,,,,,"530218143","4806938952",,,,"2011-08-18T16:53:12-0500","DANIEL PON",,,,,26831,28606,1631,468,30705,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110818171334P030114546961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MORAKOD LIM, M.D. A PROFESSIONAL CORPORATION DEFINED BENEFIT PENSION PLAN","001","2008-01-01","MORAKOD LIM, M.D. A PROFESSIONAL CORPORATION",,,"2240 STANLEY AVE., UNIT #7",,"SIGNAL HILL","CA","90755",,,,,,,"2240 STANLEY AVE., UNIT #7",,"SIGNAL HILL","CA","90755",,,,,,,"263022842","5625972716","621111","MORAKOD LIM, M.D. A PROFESSIONAL CORPORATION",,"2240 STANLEY AVE., UNIT #7",,"SIGNAL HILL","CA","90755",,,,,,,"263022842","5625972716",,,,"2011-08-18T17:13:15-0500","JOSHUA LEE",,,,,1,1,0,0,1,0,1,,0,,"3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110819142441P040017512914001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"THE POWELL GROUP EMPLOYEES' 401(K) PLAN","001","1973-02-01","THE POWELL GROUP, L.L.C.",,,"5667 BANKERS AVENUE",,"BATON ROUGE","LA","70808",,,,,,,,,,,,,,,,,,"720889792","2259224540","423300","THE POWELL GROUP, L.L.C.",,"5667 BANKERS AVENUE",,"BATON ROUGE","LA","70808",,,,,,,"720889792","2259224540",,,,"2011-08-19T14:23:48-0500","JEFFREY PETERS",,,,,199,179,0,20,199,0,199,166,4,,"2E2F2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819062743P030114847825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FAI-GON ELECTRIC INC. PROFIT SHARING PLAN","001","1988-01-01","FAI-GON ELECTRIC, INC.",,,"140 ELEVENTH STREET",,"PISCATAWAY","NJ","08854",,,,,,,,,,,,,,,,,,"222702489","7329689400","238210","FAI-GON ELECTRIC, INC.",,"140 ELEVENTH STREET",,"PISCATAWAY","NJ","08854",,,,,,,"222702489","7329689400",,,,"2011-08-19T06:26:37-0500","THOMAS FAIR",,,,,3,3,0,0,3,0,3,3,0,,"2A2E3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110829131700P040124112001001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"CHATTANOOGA ORTHOPAEDIC GROUP, PC DBA CENTER FOR SPORTS MEDICINEEMPLOYEE BENEFITS PLAN","501","1975-01-01","CHATTANOOGA ORTHOPAEDIC GROUP, PC DBA CENTER FOR SPORTS MEDICINE",,,"2415 MCCALLIE AVE",,"CHATTANOOGA","TN","37404",,,,,,,,,,,,,,,,,,"620988417","4236242696","621111","CENTER FOR SPORTS MEDICINE AND ORTHOPAEDICS",,"2415 MCCALLIE AVE",,"CHATTANOOGA","TN","37404",,,,,,,"620988417","4236242696",,,,"2011-08-29T13:16:40-0500","KELLY WEBER",,,,,191,170,0,0,170,,,,,,,"4A4B4D4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110819094507P030536624896002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"POINTE COUPEE PHYSICAL THERAPY, P.C. 401(K) SAFE-HARBOR RETIREMENT PLAN","001","1996-01-01","POINTE COUPEE PHYSICAL THERAPY, P.",,,"P.O. BOX 1051",,"NEW ROADS","LA","707601051",,,,,,,,,,,,,,,,,,"721254055","5046385724","621340","POINTE COUPEE PHYSICAL THERAPY, P.",,"P.O. BOX 1051",,"NEW ROADS","LA","707601051",,,,,,,"721254055","5046385724",,,,"2011-08-19T09:36:38-0500","JOHN ALLEN",,,,,10,9,0,0,9,0,9,9,,,"2E2J2G3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110829151927P040018397874001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","1","0","0","0",,"JOSEPH DEVELOPMENT COMPANY 401(K) AND PROFIT SHARING PLAN","001","1990-02-01","JOSEPH DEVELOPMENT COMPANY",,,"666 DUNDEE ROAD","SUITE 303","NORTHBROOK","IL","60062",,,,,,,,,,,,,,,,,,"362817783","8475641600","531310","JOSEPH DEVELOPMENT COMPANY",,"666 DUNDEE ROAD","SUITE 303","NORTHBROOK","IL","60062",,,,,,,"362817783","8475641600",,,,"2011-08-29T15:18:53-0500","DONALD JOSEPH",,,,,10,9,0,2,11,0,11,10,1,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110818132445P040017420306001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"FARNER BOCKEN CO. 401(K) RETIREMENT PLAN","001","1991-03-01","FARNER BOCKEN CO.",,,"PO BOX 368",,"CARROLL","IA","514010368",,,,,,,,,,,,,,,,,,"420662937","7127923503","424400","FARNER BOCKEN CO.",,"PO BOX 368",,"CARROLL","IA","514010368",,,,,,,"420662937","7127923503",,,,"2011-08-18T13:24:33-0500","DENNIS ANDERSON","2011-08-18T13:24:33-0500","DENNIS ANDERSON",,,926,825,0,26,851,0,851,750,67,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110819075207P030536403280001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ENDOCRINOLOGY ASSOCIATES, INC. 401(K) PLAN","001","2007-03-01","ENDOCRINOLOGY ASSOCIATES, INC.",,,"72 WEST THIRD",,"COLUMBUS","OH","43201",,,,,,,"72 WEST THIRD",,"COLUMBUS","OH","43201",,,,,,,"311707399","6144539999","621111","ENDOCRINOLOGY ASSOCIATES, INC.",,"72 WEST THIRD",,"COLUMBUS","OH","43201",,,,,,,"311707399","6144539999",,,,"2011-08-19T07:08:46-0500","ELENA CHRISTOFIDES",,,,,4,4,0,0,4,0,4,1,0,0,"2A2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819075713P040117999809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLONIAL AUTOMOTIVE GROUP 401K PLAN","002","1992-03-01","WELLESLEY VOLKSWAGEN, BUICK, INC.",,,"231 LINDEN STREET",,"WELLESLEY","MA","02181",,,,,,,,,,,,,,,,,,"042462613","7812373553","441110","WELLESLEY VOLKSWAGEN, BUICK, INC.",,"231 LINDEN STREET",,"WELLESLEY","MD","02181",,,,,,,"042462613","6172373553",,,,"2011-08-19T07:56:41-0500","RICHARD WHITE",,,,,324,307,22,0,329,0,329,126,0,,"2E2J2K2F2G3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819133008P030115027457001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RYAN AND MARKS 401(K) & PROFIT SHARING PLAN","002","2002-01-01","RYAN AND MARKS ATTORNEYS, LLP",,,"3000-8 HARTLEY ROAD",,"JACKSONVILLE","FL","32257",,,,,,,,,,,,,,,,,,"592429150","9042624242","541110","RYAN AND MARKS ATTORNEYS, LLP",,"3000-8 HARTLEY ROAD",,"JACKSONVILLE","FL","32257",,,,,,,"592429150","9042624242",,,,"2011-08-11T09:29:55-0500","WILLIAM RYAN","2011-08-11T09:30:03-0500","WILLIAM RYAN",,,6,6,0,0,6,0,6,6,,,"2E2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110817135506P030113880385001","2010-01-01","2010-12-31","3",,,"1",,,,"1",,,,,"WATKINS MEEGAN LLC DISABILITY INSURANCE PLAN","502","1992-01-01","WATKINS MEEGAN LLC",,,"7700 WISCONSIN AVENUE, SUITE 500",,"BETHESDA","MD","208143556",,,,,,,,,,,,,,,,,,"521297695","3016547555","541211","WATKINS MEEGAN LLC",,"7700 WISCONSIN AVENUE, SUITE 500",,"BETHESDA","MD","208143556",,,,,,,"521297695","3016547555",,,,"2011-08-16T13:42:27-0500","JAMES C. WAGENMANN",,,,,200,220,,,220,,220,,,,,"4F4H",,,,"1","1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110817152432P040527242448001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","1","0",,"CORTLAND REGIONAL MEDICAL CENTER FLEXIBLE SPENDING ACCOUNT","505","1989-07-01","CORTLAND REGIONAL MEDICAL CENTER","CORTLAND REGIONAL MEDICAL CENTER",,"134 HOMER AVENUE",,"CORTLAND","NY","13045",,,,,,,"134 HOMER AVENUE",,"CORTLAND","NY","13045",,,,,,,"150532079","6077563784","622000","CORTLAND REGIONAL MEDICAL CENTER",,"134 HOMER AVENUE",,"CORTLAND","NY","13045",,,,,,,"150532079","6077563784",,,,"2011-08-17T15:24:03-0500","DENISE WRINN",,,,,95,127,0,0,127,0,127,,0,,,"4A4B","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110819114221P040532076752001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"CAPITAL GUARDIAN U.S. EQUITY FUND UNIT CLASS DB","058",,"CAPITAL GUARDIAN TRUST COMPANY",,"ROBERT A. BONNELL","6455 IRVINE CENTER DRIVE C-2",,"IRVINE","CA","92618",,,,,,,,,,,,,,,,,,"956597294","9499755229","525920","CAPITAL GUARDIAN TRUST COMPANY","ROBERT A. BONNELL","6455 IRVINE CENTER DRIVE C-2",,"IRVINE","CA","92618",,,,,,,"956597294","9499755229",,,,,,,,"2011-08-19T11:40:16-0500","ROBERT BONNELL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-08-19",,"Filed with authorized/valid electronic signature", "20110818143305P030016774098003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BANKIM H DALAL MD PROFIT SHARING PLAN","001","1986-01-01","BANKIM H DALAL",,,"1827 S COURT ST SUITE B",,"VISALIA","CA","93277",,,,,,,,,,,,,,,,,,"341479569","5596352262","621111","BANKIM H DALAL",,"1827 S COURT ST SUITE B",,"VISALIA","CA","93277",,,,,,,"341479569","5596352262",,,,"2011-08-18T14:04:33-0500","BANKIM H DALAL",,,,,1,1,,,1,,1,1,,,"3B2E",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110819134923P040118168385001","2004-01-01","2004-12-31","2",,"0","1","0","0","0","0","0","1","0",,"ENTECH INSTRUMENTS, INC. 401K PROFIT SHARING PLAN & TRUST","001","1997-07-01","ENTECH INSTRUMENTS, INC.",,,"2207 AGATE COURT",,"SIMI VALLEY","CA","93065",,,,,,,"2207 AGATE COURT",,"SIMI VALLEY","CA","93065",,,,,,,"770249862","8055275939","339900","SAME",,,,,,,,,,,,,,,,,,"2011-08-19T13:49:07-0500","CHRISTY ADAMS",,,,,31,24,0,2,26,0,26,25,0,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819172150P040118274209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHEST MEDICINE AND CRITICAL CARE MEDICAL GROUP, INC. 401K PROFIT SHARING PLAN","001","1990-01-01","CHEST MEDICINE AND CRITICAL CARE MEDICAL GROUP, INC.",,,"7910 FROST STREET, STE. 245",,"SAN DIEGO","CA","92123",,,,,,,,,,,,,,,,,,"330293302","8585413363","621111","ACH PENSION CONSULTANTS, INC.",,"4729 EAST SUNRISE DRIVE, PMB 333",,"TUCSON","AZ","85718",,,,,,,"860664225","5207519403",,,,"2011-08-19T15:40:16-0500","DAVIES WONG, MD","2011-08-19T15:40:16-0500","DAVIES WONG, MD",,,8,7,0,1,8,0,8,8,1,,"2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110829122830P030120697905001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","1","0",,"THE BOLTON GROUP, LLC 401 (K)","001","2000-09-01","THE BOLTON GROUP, LLC",,,"3500 PIEDMONT RD. NE","STE 630","ATLANTA","GA","30305",,,,,,,"3500 PIEDMONT RD. NE","STE 630","ATLANTA","GA","30305",,,,,,,"582340524","4042284291","541990","THE BOLTON GROUP, LLC",,"3500 PIEDMONT RD. NE","STE 340","ATLANTA","GA","30305",,,,,,,"582340524","4042284291",,,,"2011-08-29T12:26:45-0500","TRACI SIBLY",,,,,72,64,0,2,66,0,66,36,2,,"2E2F2G2J2K3B3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110829125236P040558192224001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUERTO RICO DENTAL CARE PROFESSIONAL CORPORATION RETIREMENT PLAN","001","2004-01-01","PUERTO RICO DENTAL CARE PROFESSIONAL CORPORATION",,,"PO BOX 8480",,"SAN JUAN","PR","009100480",,,,,,,,,,,,,,,,,,"660604945","7877760570","621210","PUERTO RICO DENTAL CARE PROFESSIONAL CORPORATION","PUERTO RICO DENTAL CARE PROFESSIONA","PO BOX 8480",,"SAN JUAN","PR","009100480",,,,,,,"660604945","7877760570",,,,"2011-08-29T12:52:25-0500","JUAN C. ORTIZ DE LA RENTA","2011-08-29T12:52:25-0500","JUAN C. ORTIZ DE LA RENTA",,,4,3,0,0,3,0,3,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110817101401P040116895633001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","1","0",,"MOYES STOREY PROFIT SHARING PLAN","001","1999-01-01","MOYES STOREY",,,"1850 NORTH CENTRAL AVENUE SUITE 110",,"PHOENIX","AZ","85004",,,,,,,,,,,,,,,,,,"860936446","6026042141","541110","MOYES STOREY",,"1850 NORTH CENTRAL AVENUE SUITE 110",,"PHOENIX","AZ","85004",,,,,,,"860936446","6026042141","MOYES SELLERS & SIMS",,,"2011-08-17T10:13:36-0500","JEFFREY L. SELLERS",,,,,12,10,0,4,14,0,14,14,0,,"2T3D2E2G2J2K2A2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110818170704P030114544561001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"FUTURE CARE THE AMERICA WEST AIRLINES 401K PLAN","001","1989-01-01","AMERICA WEST HOLDINGS CORPORATION",,,"4000 EAST SKY HARBOR BLVD",,"PHOENIX","AZ","85034",,,,,,,"4000 EAST SKY HARBOR BLVD",,"PHOENIX","AZ","85034",,,,,,,"860847214","4806938952","481000","AMERICA WEST HOLDINGS CORPORATION",,"4000 EAST SKY HARBOR BLVD",,"PHOENIX","AZ","85034",,,,,,,"860847214","4806938952",,,,"2011-08-18T16:58:16-0500","DANIEL PON",,,,,4984,3852,49,896,4797,65,4862,3569,7,,"2E2F2G2J2K2R2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110819164105P040118260033001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PORTER & ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","001","1990-01-01","FRED PORTER & ASSOCIATES, INC. DBA PORTER & ASSOCIATES, INC.",,,"1200 21ST STREET",,"BAKERSFIELD","CA","93301",,,,,,,,,,,,,,,,,,"260515371","6613270362","541330","FRED PORTER & ASSOCIATES, INC. DBA PORTER & ASSOCIATES, INC.",,"1200 21ST STREET",,"BAKERSFIELD","CA","93301",,,,,,,"260515371","6613270362",,,,"2011-08-19T16:39:42-0500","FRED PORTER","2011-08-19T16:39:42-0500","FRED PORTER",,,18,13,0,4,17,0,17,12,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110819095647P030114933761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNIVERSAL ROPES COURSE BUILDERS, INC. 401K PROFIT SHARING PLAN","001","2003-01-01","UNIVERSAL ROPES COURSE BUILDERS, INC.",,,"P.O. BOX 12","32 BLACK BEAR DRIVE","ALBRIGHTSVILLE","NY","18210",,,,,,,"P.O. BOX 12","32 BLACK BEAR DRIVE","ALBRIGHTSVILLE","NY","18210",,,,,,,"232947818","5707223500","423910","UNIVERSAL ROPES COURSE BUILDERS, INC.",,"P.O. BOX 12","32 BLACK BEAR DRIVE","ALBRIGHTSVILLE","NY","18210",,,,,,,"232947818","5707223500",,,,"2011-08-19T09:56:36-0500","LUDWIG BACH",,,,,8,8,0,0,8,0,8,5,0,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110829150008P030120766769002","2010-07-01","2011-06-30","2",,,,,,,,,,,,"DHUPATI SITARAM, M.D., P.C. PROFIT SHARING PLAN & TRUST","001","1983-09-26","DHUPATI SITARAM MD PC",,,"6001 W. OUTER DRIVE, SUITE 300",,"DETROIT","MI","48235",,,,,,,,,,,,,,,,,,"382487069","3133426100","621111","DHUPATI SITARAM MD PC",,"6001 W. OUTER DRIVE, SUITE 300",,"DETROIT","MI","48235",,,,,,,"382487069","3133426100",,,,"2011-07-26T15:39:49-0500","DHUPATI SITARAM, M.D.","2011-07-26T15:39:55-0500","DHUPATI SITARAM, M.D.",,,2,2,0,0,2,0,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110817114508P030113823265004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"IVANOVIC HEALTH SERVICES, LLC PROFIT SHARING PLAN AND TRUST","001","2008-01-01","IVANOVIC HEALTH SERVICES, LLC",,,"7411 W. LAKE STREET, STE 2100",,"RIVER FOREST","IL","60305",,,,,,,,,,,,,,,,,,"223941975","7084881122","621111","IVANOVIC HEALTH SERVICES, LLC",,"7411 W. LAKE STREET, STE 2100",,"RIVER FOREST","IL","60305",,,,,,,"223941975","7084881122",,,,"2011-08-17T12:41:19-0500","LOU IVANOVIC",,,,,4,3,0,0,3,0,3,3,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110817122618P040526891104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCCREARY MODERN, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2008-01-01","MCCREARY MODERN, INC.",,,"P.O. BOX 130",,"NEWTON","NC","286580130",,,,,,,"2564 SOUTH US 321 HWY",,"NEWTON","NC","286589349",,,,,,,"561497443","8284646465","337000","MCCREARY MODERN, INC.",,"P.O. BOX 130",,"NEWTON","NC","286580130",,,,,,,"561497443","8284646465",,,,"2011-08-17T12:26:13-0500","JO NELL HARRISON","2011-08-17T12:26:13-0500","JO NELL HARRISON",,,733,597,0,99,696,1,697,697,31,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110818133008P040117579521001","2010-01-01","2010-12-31","2",,,"1",,,,,"1",,,,"JDS INDUSTRIES, INC. EMPLOYEE BENEFIT PLAN","501","1991-04-01","JDS INDUSTRIES, INC.",,,"1800 E. 57TH ST. N.",,"SIOUX FALLS","SD","57104",,,,,,,,,,,,,,,,,,"460415545","6053394010","423990","JDS INDUSTRIES, INC.",,"1800 E. 57TH ST. N.",,"SIOUX FALLS","SD","57104",,,,,,,"460415545","6053394010",,,,"2011-08-18T13:15:18-0500","SCOTT SLETTEN",,,,,143,134,,,134,,,,,,,"4A4B4D4F4H","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110818140249P040037042151001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"ELDON CORPORATION 401K PROFIT SHARING PLAN","001","2009-10-28","ELDON CORPORATION",,,"2575 PEACHTREE ROAD NE STE. 22F",,"ATLANTA","GA","30305",,,,,,,,,,,,,,,,,,"271237313","4048120406","541990","ELDON CORPORATION",,"2575 PEACHTREE ROAD NE STE. 22F",,"ATLANTA","GA","30305",,,,,,,"271237313","4048120406",,,,"2011-08-18T13:41:03-0500","LOUIE STOKES",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110818122618P030016764834001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARRIS GROUP, INC. PENSION PLAN","001","1994-01-01","ARRIS GROUP, INC.",,,"3871 LAKEFIELD DRIVE, SUITE 300",,"SUWANEE","GA","300241292",,,,,,,,,,,,,,,,,,"582588724","6784738690","423600","ARRIS GROUP, INC.",,"3871 LAKEFIELD DRIVE, SUITE 300",,"SUWANEE","GA","300241292",,,,,,,"582588724","6784738690",,,,"2011-08-18T11:50:52-0500","VICTORIA BREWSTER",,,,,552,133,95,310,538,10,548,,0,,"1A1G1I",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110818122632P030003358915001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOWARD WAXMAN, DPM PROFIT SHARING PLAN","002","1988-01-01","HOWARD WAXMAN, DPM",,,"7954 BROADVIEW ROAD",,"BROADVIEW HTS","OH","44147",,,,,,,,,,,,,,,,,,"341561353","4405465656","621391","HOWARD WAXMAN, DPM",,"7954 BROADVIEW ROAD",,"BROADVIEW HTS","OH","44147",,,,,,,"341561353","4405465656",,,,"2011-08-18T12:25:39-0500","HOWARD WAXMAN, DPM",,,,,1,2,0,0,2,0,2,2,0,,"2E3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110819114732P030536866272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BTS TECHNOLOGY, INC PROFIT SHARING PLAN","001","2006-01-01","BTS TECHNOLOGY, INC",,,"ONE AMES COURT, SUITE 103",,"PLAINVIEW","NY","118032328",,,,,,,,,,,,,,,,,,"010737569","5163495588","423990","BTS TECHNOLOGY, INC",,"ONE AMES COURT, SUITE 103",,"PLAINVIEW","NY","118032328",,,,,,,"010737569","5163495588",,,,"2011-08-19T11:46:08-0500","TAMER SHEHIDY",,,,,3,2,0,1,3,0,3,3,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819115025P030536871008001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE TIMES-PICAYUNE, L.L.C. EMPLOYEE ASSISTANCE PLAN","509","1988-01-01","THE TIMES-PICAYUNE,L.L.C.",,,"3800 HOWARD AVENUE",,"NEW ORLEANS","LA","701251429",,,,,,,,,,,,,,,,,,"201953466","5048263250","511110","THE TIMES-PICAYUNE,L.L.C.",,"3800 HOWARD AVENUE",,"NEW ORLEANS","LA","701251429",,,,,,,"201953466","5048263250",,,,"2011-08-19T11:29:59-0500","DAVID FRANCIS","2011-08-19T11:50:16-0500","RAYMOND MASSETT",,,710,626,0,0,626,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110829075810P030120576513002","2010-04-01","2011-03-31","2",,,,,,,,,,,,"F.M. BROWN'S SONS, INC. GROUP LIFE INSURANCE PLAN","505","1976-04-01","F.M. BROWN'S SONS, INC.",,,"205 WOODROW AVENUE",,"SINKING SPRING","PA","19608",,,,,,,,,,,,,,,,,,"211308422","6106784567","311200","F.M. BROWN'S SONS, INC.",,"205 WOODROW AVENUE",,"SINKING SPRING","PA","19608",,,,,,,"211308422","6106784567",,,,"2011-08-26T05:53:42-0500","RIP HARRIS","2011-08-26T05:53:42-0500","RIP HARRIS",,,153,163,,,163,,,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110829091014P040124006977001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"FRIENDS SELECT SCHOOL INSURANCE PLAN","501","2006-02-01","FRIENDS SELECT SCHOOL",,,"17TH AND THE PARKWAY",,"PHILADELPHIA","PA","19103",,,,,,,"17TH AND THE PARKWAY",,"PHILADELPHIA","PA","19103",,,,,,,"230604370","2155615900","611000","FRIENDS SELECT SCHOOL",,"17TH AND THE PARKWAY",,"PHILADELPHIA","PA","19103",,,,,,,"230604370","2155615900",,,,"2011-08-29T09:01:26-0500","MICHAEL NOONAN",,,,,115,114,0,0,114,,114,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110817140120P040003535011004","2010-04-01","2011-03-31","2",,,,,,,,,,,,"HOPE EDUCATIONAL & RESEARCH CENTER ACCIDENT & SICKNESS DISABILITY PLAN","501","1992-04-01","HOPE EDUCATIONAL & RESEARCH CENTER",,,"858 NORTH MASON ROAD",,"ST. LOUIS","MO","631416306",,,,,,,,,,,,,,,,,,"237240338","3144690100","611000","HOPE EDUCATIONAL & RESEARCH CENTER",,"858 NORTH MASON ROAD",,"ST. LOUIS","MO","631416306",,,,,,,"237240338","3144690100",,,,"2011-08-15T10:09:15-0500","BART CONNORS",,,,,211,211,,,211,,,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110817150013P040117007761002","2010-04-01","2011-03-31","2",,,"1",,,,,,,,,"SAFIUL HASAN MD PC PROFIT SHARING PLAN","002","1982-06-01","SAFIUL HASAN, MD PC",,,"4000 HIGHLAND RD STE 100",,"WATERFORD","MI","48328",,,,,,,,,,,,,,,,,,"382412433","2486824900","621111","SAFIUL HASAN, MD PC",,"4000 HIGHLAND RD STE 100",,"WATERFORD","MI","48328",,,,,,,"382412433","2486824900",,,,"2011-08-17T15:53:02-0500","SAFIUL HASAN, MD","2011-08-17T15:53:09-0500","SAFIUL HASAN, MD",,,3,4,0,0,4,0,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110819081746P040118012897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FORSYTHE APPRAISALS, LLC EMPLOYEE BENEFITS PLAN","502","2005-01-01","FORSYTHE APPRAISALS, LLC",,,"222 LITTLE CANADA ROAD",,"ST. PAUL","MN","55117",,,,,,,,,,,,,,,,,,"030514508","6514869550","531390","FORSYTHE APPRAISALS, LLC",,"222 LITTLE CANADA ROAD",,"ST. PAUL","MN","55117",,,,,,,"030514508","6514869550",,,,"2011-08-19T08:12:48-0500","BILL NOLTE","2011-08-19T08:12:48-0500","BILL NOLTE",,,149,130,5,,135,,,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110819153040P040017517938001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SEBESTA BLOMBERG & ASSOCIATES, INC CAFETERIA PLAN","501","1997-01-01","SEBESTA BLOMBERG & ASSOCIATES, INC.",,,"2381 ROSEGATE",,"ROSEVILLE","MN","55113",,,,,,,,,,,,,,,,,,"411787792","6516340775","541310","SEBESTA BLOMBERG & ASSOCIATES, INC.",,"2381 ROSEGATE",,"ROSEVILLE","MN","55113",,,,,,,"411787792","6516340775",,,,"2011-08-19T15:29:37-0500","MARYAM ARMAJANI-PETERS",,,,,302,180,0,0,180,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110817170756P030113960049001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"AMP CONSTRUCTION, INC. PROFIT SHARING/401(K) PLAN","001","2004-06-01","AMP CONSTRUCTION, INC.",,,"369-D THIRD STREET, 456",,"SAN RAFAEL","CA","94901",,,,,,,,,,,,,,,,,,"943401833","4154598843","236110","AMP CONSTRUCTION, INC.",,"369-D THIRD STREET, 456",,"SAN RAFAEL","CA","94901",,,,,,,"202792225","4154598843",,,,"2011-08-17T17:07:13-0500","MICHELLE PARTRIDGE",,,,,8,4,0,4,8,0,8,8,0,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110819135718P040118176033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOLZER HOSPITAL FOUNDATION DBA HOLZER MEDICAL CENTER EMPLOYEES PENSION PLAN","002","1965-10-01","HOLZER HOSPITAL FOUNDATION","HOLZER MEDICAL CENTER",,"100 JACKSON PIKE",,"GALLIPOLIS","OH","456311560",,,,,,,,,,,,,,,,,,"314379491","7404465105","622000","HOLZER HOSPITAL FOUNDATION",,"100 JACKSON PIKE",,"GALLIPOLIS","OH","456311560",,,,,,,"314379491","7404465105",,,,"2011-08-19T13:56:13-0500","LISA HALLEY","2011-08-19T13:56:13-0500","LISA HALLEY",,,1387,1007,0,347,1354,0,1354,1038,0,,"2C2F2G2T",,"1","0","0","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110819175239P030115137537001","2010-09-01","2010-12-31","2",,"0","0","1","1","0","1","0","0","0",,"BENCHMARK BANK GROUP HEALTH PLAN","502","2007-09-01","BENCHMARK BANK",,,"5700 LEGACY DRIVE",,"PLANO","TX","75024",,,,,,,,,,,,,,,,,,"751163748","9726734000","522110","BENCHMARK BANK",,"5700 LEGACY DRIVE",,"PLANO","TX","75024",,,,,,,"751163748","9726734000",,,,"2011-08-19T17:52:15-0500","MARC WHIPPLE",,,,,185,0,0,0,0,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819175521P030115138129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WNET.ORG AND SUBSIDIARIES DENTAL PLAN","504","2009-01-01","WNET.ORG AND SUBSIDIARIES",,,"450 WEST 33RD STREET, 6TH FLOOR",,"NYC","NY","10001",,,,,,,,,,,,,,,,,,"262810489","2125602000","515100","WNET.ORG AND SUBSIDIARIES",,"450 WEST 33RD STREET, 6TH FLOOR",,"NYC","NY","10001",,,,,,,"262810489","2125602000",,,,"2011-08-19T17:54:50-0500","ROBERT C CLAUSER",,,,,590,390,5,0,395,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819125954P030115011761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOVE, THORNTON, ARNOLD & THOMASON, PA 401(K) PLAN","002","2000-01-01","LOVE THORNTON ARNOLD & THOMASON, PA",,,"PO BOX 10045",,"GREENVILLE","SC","29603",,,,,,,,,,,,,,,,,,"570925508","8642426360","541110","LOVE THORNTON ARNOLD & THOMASON, PA",,"PO BOX 10045",,"GREENVILLE","SC","29603",,,,,,,"570925508","8642426360",,,,"2011-08-19T12:59:53-0500","DAVID MOORE, JR.",,,,,33,23,0,5,28,0,28,28,0,,"2E2F2G2J2K2R2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","4","0","0","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110829115653P030038490199001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHARLES E. MORTON, M.D., P.C. PROFIT SHARING PLAN","001","1980-11-01","CHARLES E. MORTON, M.D., P.C.",,,"2021 CHURCH STREET/SUITE 104",,"NASHVILLE","TN","37203",,,,,,,,,,,,,,,,,,"621096734","6152842400","621111","CHARLES E. MORTON, M.D., P.C.",,"2021 CHURCH STREET/SUITE 104",,"NASHVILLE","TN","37203",,,,,,,"621096734","6152842400",,,,"2011-08-29T11:52:51-0500","CHARLES E. MORTON, MD",,,,,5,4,0,0,4,0,4,4,0,,"2E2J3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110817101634P040116896289001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TANGRAM 401K PLAN","001","2004-01-01","TANGRAM COMPANY, LLC",,,"125 CORPORATE DR",,"HOLTSVILLE","NY","117422007",,,,,,,,,,,,,,,,,,"113447160","6317580460","325100","TANGRAM COMPANY, LLC",,"125 CORPORATE DR",,"HOLTSVILLE","NY","117422007",,,,,,,"113447160","6317580460",,,,"2011-08-17T10:15:52-0500","PHILIP GILLETTE",,,,,8,8,0,0,8,0,8,8,0,,"2E2F2G2J2K2A3D",,"1","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110817181147P030113980993001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"MANDALAY BASEBALL PROPERTIES, LLC MEDICAL PLAN","501","2008-02-01","MANDALAY BASEBALL PROPERTIES, LLC",,,"4751 WILSHIRE BOULEVARD, 3RD FLOOR",,"LOS ANGELES","CA","90010",,,,,,,,,,,,,,,,,,"364512769","3235494300","711210","MANDALAY BASEBALL PROPERTIES, LLC",,"4751 WILSHIRE BOULEVARD, 3RD FLOOR",,"LOS ANGELES","CA","90010",,,,,,,"364512769","3235494300",,,,"2011-08-17T18:11:24-0500","JAMES BAILEY",,,,,105,105,0,0,105,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110818092805P040017401874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EWTN 403(B) RETIREMENT SAVINGS PLAN","001","1996-05-01","ETERNAL WORD TELEVISION NETWORK",,,"5817 OLD LEEDS ROAD",,"IRONDALE","AL","35210",,,,,,,,,,,,,,,,,,"630801391","2052712900","515100","ETERNAL WORD TELEVISION NETWORK",,"5817 OLD LEEDS ROAD",,"IRONDALE","AL","35210",,,,,,,"630801391","2052712900",,,,"2011-08-18T09:27:15-0500","MICHAEL P WARSAW",,,,,330,338,0,7,345,0,345,325,6,,"2M2L2F2G2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110818092920P040017401986001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TEC-MASTERS, INC. PROFIT SHARING PLAN","001","1991-01-01","TEC-MASTERS, INC.",,,"1500 PERIMETER PARKWAY, SUITE 215",,"HUNTSVILLE","AL","35806",,,,,,,,,,,,,,,,,,"630971481","2567216616","541330","TEC-MASTERS, INC.",,"1500 PERIMETER PARKWAY, SUITE 215",,"HUNTSVILLE","AL","35806",,,,,,,"630971481","2567216616",,,,"2011-08-18T09:29:05-0500","JOANNE LUCID",,,,,367,227,1,112,340,1,341,296,11,,"2E2F2G2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110819140021P040532321552002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SOUTHERN OKLAHOMA SURGICAL CENTER INC PROFIT SHARING PLAN","001","2004-01-01","SOUTHERN OKLAHOMA SURGICAL CENTER, INC",,,"2412 N COMMERCE",,"ARDMORE","OK","73401",,,,,,,"2412 N COMMERCE",,"ARDMORE","OK","73401",,,,,,,"731205988","5802265000","621493","SOUTHERN OKLAHOMA SURGICAL CENTER INC",,"2412 N COMMERCE",,"ARDMORE","OK","73401",,,,,,,"731205988","5802265000",,,,"2011-08-18T19:35:58-0500","DEAN M SHERRY MD",,,,,20,18,,,18,,18,18,1,,"3H2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110819091701P040118039265002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COLGATE UNIVERSITY DEFINED CONTRIBUTION RETIREMENT","001","1924-01-01","COLGATE UNIVERSITY",,,"13 OAK DRIVE",,"HAMILTON","NY","13346",,,,,,,,,,,,,,,,,,"150532078","3153624700","611000","COLGATE UNIVERSITY",,"13 OAK DRIVE",,"HAMILTON","NY","13346",,,,,,,"150532078","3153624700",,,,"2011-08-19T04:41:17-0500","DAN PARTIGIANONI","2011-08-19T04:41:17-0500","DAN PARTIGIANONI",,,2209,874,307,967,2148,5,2153,2127,,,"2G2L2M2T",,"1",,"1",,"1",,"1",,,,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110819153821P040017518994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANGELA SAINT FENNELL, D.M.D., P.C. RETIREMENT PLAN & TRUST","001","1997-01-01","ANGELA SAINT FENNELL, D.M.D., P.C.",,,"4000 BALMORAL DRIVE, SUITE 102",,"HUNTSVILLE","AL","35801",,,,,,,,,,,,,,,,,,"203922230","2568808436","621210","ANGELA SAINT FENNELL, D.M.D., P.C.",,"4000 BALMORAL DRIVE, SUITE 102",,"HUNTSVILLE","AL","35801",,,,,,,"203922230","2568808436",,,,"2011-08-19T15:37:50-0500","ANGELA SAINT FENNELL, D.M.D.",,,,,9,6,0,1,7,0,7,7,1,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-19","Filed with authorized/valid electronic signature",, "20110830122633P030121323009001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1",,,,,"O'NEAL STEEL, INC . 401(K) PLAN","002","2001-01-01","ONEAL STEEL, INC.",,,"P.O. BOX 2623",,"BIRMINGHAM","AL","352022623",,,,,,,"P.O. BOX 2623",,"BIRMINGHAM","AL","352022623",,,,,,,"630196990","2055998000","423500","ONEAL STEEL, INC.",,"P.O. BOX 2623",,"BIRMINGHAM","AL","352022623",,,,,,,"630196990","2055998000",,,,"2011-08-30T12:26:11-0500","SHAWN SMITH",,,,,3538,2850,30,538,3418,3,3421,3006,17,,"2E2F2G2J2K2S2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110817140120P040003535011010","2010-04-01","2011-03-31","2",,,,,,,,,,,,"GREGORY C. TANNER, M.D, PC PROFIT SHARING PLAN","002","1979-04-01","GREGORY C. TANNER, M.D, PC",,"HJ & ASSOCIATES LLC","50 W BROADWAY, SUITE 600",,"SALT LAKE CITY","UT","84101",,,,,,,"50 W BROADWAY, SUITE 600",,"SALT LAKE CITY","UT","84101",,,,,,,"870350585","8013284408","621111","GREGORY C. TANNER, M.D, PC","HJ & ASSOCIATES LLC","50 W BROADWAY, SUITE 600",,"SALT LAKE CITY","UT","84101",,,,,,,"870350585","8013284408",,,,"2011-03-31T07:29:45-0500","GREGORY TANNER","2011-03-31T07:29:45-0500","GREGORY TANNER",,,3,3,,,3,,3,3,3,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110817191354P030113999857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOWERS FUNERAL HOME, INC. PROFIT SHARING PLAN","002","1990-01-01","TOWERS FUNERAL HOME INC",,,"2681 LONG BEACH ROAD",,"OCEANSIDE","NY","115721323",,,,,,,,,,,,,,,,,,"111411530","5167660425","812210","TOWERS FUNERAL HOME INC",,"2681 LONG BEACH ROAD",,"OCEANSIDE","NY","115721323",,,,,,,"111411530","5167660425",,,,"2011-08-17T19:07:22-0500","WILLIAM KALLINIKOS",,,,,5,4,0,0,4,0,4,4,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-17","Filed with authorized/valid electronic signature",, "20110818112238P030114381025001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"GROUP LIFE INSURANCE","501","1976-03-01","THE SHELTERING ARMS",,,"385 CENTENNIAL OLYMPIC PARK DRIVE","NW","ATLANTA","GA","30313",,,,,,,"385 CENTENNIAL OLYMPIC PARK DRIVE","NW","ATLANTA","GA","30313",,,,,,,"580566236","4045232767","624410","THE SHELTERING ARMS",,"385 CENTENNIAL OLYMPIC PARK DRIVE","NW","ATLANTA","GA","30313",,,,,,,"580566236","4045232767",,,,"2011-08-18T11:22:27-0500","DASHANA JELKS",,,,,279,290,2,6,298,0,298,,,,,"4B4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-18","Filed with authorized/valid electronic signature",, "20110825083803P040003681059001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","1","0","0","0",,"RCM INDUSTRIES, INC. DEFINED BENEFIT PENSION PLAN","001","1963-02-01","RCM INDUSTRIES, INC.",,,"3021 CULLERTON DRIVE",,"FRANKLIN","IL","60131",,,,,,,,,,,,,,,,,,"363710664","8474551950","332900","RCM INDUSTRIES, INC.",,"3021 CULLERTON DRIVE",,"FRANKLIN","IL","60131",,,,,,,"363710664","8474551950",,,,"2011-08-25T08:38:01-0500","VERNON K REIZMAN",,,,,369,168,24,171,363,0,363,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110822122501P040539735056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SARAH J. MORRIS, D.D.S., P.L.L.C. 401(K) PLAN","001","2008-01-01","SARAH J. MORRIS, D.D.S., P.L.L.C.",,,"2551 RIVER PARK PLAZA, #210",,"FORT WORTH","TX","76116",,,,,,,"2551 RIVER PARK PLAZA, STE. 210",,"FORT WORTH","TX","76116",,,,,,,"205256302","8177324419","621210","WAKE FINANCIAL GROUP",,"P.O. BOX 536029",,"GRAND PRAIRIE","TX","75053",,,,,,,"751961778","9726416636",,,,"2011-08-18T11:08:45-0500","SHARON WAKE","2011-08-22T10:45:36-0500","SARAH MORRIS",,,6,5,0,0,5,0,5,5,0,,"2E2G2J2K3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110822150649P030116765217001","2010-07-01","2011-06-30","2",,,,,,,,,,,,"A-1 CATERING, INC. PROFIT SHARING PLAN","001","1995-07-01","A-1 CATERING, INC.",,,"14311 S. LEMOLI AVE.",,"HAWTHORNE","CA","90250",,,,,,,,,,,,,,,,,,"952101460","3106799161","722300","A-1 CATERING, INC.",,"14311 S. LEMOLI AVE.",,"HAWTHORNE","CA","90250",,,,,,,"952101460","3106799161",,,,"2011-08-22T04:06:26-0500","MARK SCHOENFELD",,,,,14,12,0,0,12,0,12,12,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110823083859P030546934192001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GAD AVSHALOMOV MD 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","GAD AVSHALOMOV MD",,,"4017 GREENTREE DRIVE",,"OCEANSIDE","NY","11572",,,,,,,,,,,,,,,,,,"450467187","5164876200","812990","GAD AVSHALOMOV MD",,"4017 GREENTREE DRIVE",,"OCEANSIDE","NY","11572",,,,,,,"450467187","5164876200",,,,"2011-08-23T08:38:55-0500","GAD AVSHALOMOV MD",,,,,5,4,0,0,4,0,4,4,0,,"2A2E2F2G2J2T3B3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110823092004P030017154098001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MODERN ORTHODONTICS, P.C. PROFIT SHARING PLAN","001","2006-01-01","MODERN ORTHODONTICS, P.C.",,,"355 E 149TH ST RM 202",,"BRONX","NY","104553909",,,,,,,"355 E 149TH ST RM 202",,"BRONX","NY","104553909",,,,,,,"272817756","7189935454","621210","MODERN ORTHODONTICS, P.C.",,"355 E 149TH ST RM 202",,"BRONX","NY","104553909",,,,,,,"272817756","7189935454","KENNETH B. COOPERMAN, D.M.D., P.C.","200698105","001","2011-08-19T10:12:32-0500","KENNETH COOPERMAN",,,,,10,9,0,0,9,0,9,9,0,,"2A2E2F2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110823120051P040120528817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SANE SOLUTIONS, L.L.C. 401(K) PLAN","001","2001-01-01","SANE SOLUTIONS, L.L.C.",,"C/O SCOTT CAMPBELL","1 NORTH CASTLE DRIVE","MAIL DROP 218","ARMONK","NY","10504",,,,,,,,,,,,,,,,,,"050491258","9147655509","511210","SANE SOLUTIONS, L.L.C.","C/O SCOTT CAMPBELL","1 NORTH CASTLE DRIVE","MAIL DROP 218","ARMONK","NY","10504",,,,,,,"050491258","9147655509",,,,"2011-08-23T12:00:42-0500","MEI-JOY K. FOSTER",,,,,0,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824131526P030117867873006","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"DR. JOHN R. CUMMINS DVM PROFIT SHARING PLAN","001","1993-01-01","DR. JOHN R. CUMMINS DVM",,,"PO BOX 4577",,"LEXINGTON","KY","405444577",,,,,,,,,,,,,,,,,,"611018422","8592542093","541940","DR. JOHN R. CUMMINS DVM",,"PO BOX 4577",,"LEXINGTON","KY","405444577",,,,,,,"611018422","8592542093",,,,"2011-07-28T06:02:24-0500","DR. JOHN R. CUMMINS DVM","2011-07-28T06:02:24-0500","DR. JOHN R. CUMMINS DVM","2011-07-28T06:02:24-0500","MARK G. ENDERLE, CPA",1,0,,,0,,0,0,,,"2E2G2R3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature","Filed with authorized/valid electronic signature" "20110824072940P030117725169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEKAERT CORPORATION GROUP TERM LIFE, AD&D AND GROUP VOLUNTARY AND DEPENDENT LIFE INSURANCE PLANS","511","1987-10-01","BEKAERT CORPORATION",,,"3200 W. MARKET STREET -STE 303",,"AKRON","OH","44333",,,,,,,,,,,,,,,,,,"621340165","3308673325","331200","BEKAERT CORPORATION",,"3200 W. MARKET STREET - STE 303",,"AKRON","OH","44333",,,,,,,"621340165","3308673325",,,,"2011-08-23T08:39:00-0500","JEANIE M. RAMSER",,,,,1732,1768,132,0,1900,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824165741P030117968881001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"RUBICON PROGRAMS, INC. HEALTH AND WELFARE PLAN","501","1992-01-01","RUBICON PROGRAMS, INC.",,,"2500 BISSELL AVENUE",,"RICHMOND","CA","948041815",,,,,,,,,,,,,,,,,,"942301550","5102351516","624310","RUBICON PROGRAMS, INC.",,"2500 BISSELL AVENUE",,"RICHMOND","CA","948041815",,,,,,,"942301550","5102351516",,,,"2011-08-24T16:54:21-0500","DAVID SAMUELS",,,,,198,190,0,0,190,,,,,,,"4A4B4D4E4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110822144420P040003628403001","2008-01-01","2008-12-31","1",,,"1",,,,"1",,,,,"HALO TECHNOLOGY HOLDINGS, INC. 401(K) RETIREMENT PLAN","001","2004-11-30","HALO TECHNOLOGY HOLDINGS, INC.",,,"191 POST RD W",,"WESTPORT","CT","06880",,,,,,,,,,,,,,,,,,"880467845","2032212884","551112","HALO TECHNOLOGY HOLDINGS, INC.",,"191 POST RD W",,"WESTPORT","CT","06880",,,,,,,"880467845","2032212884",,,,"2011-08-22T03:44:08-0500","SUSAN FLORENTINO",,,,,230,90,0,124,214,0,214,214,1,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110823105831P030117225361001","2010-04-01","2011-03-31","2",,"0",,"0","0","0","1","0","0","0",,"GUERDON ENTERPRISES, LLC","501","2004-04-01","GUERDON ENTERPRISES, LLC",,"LAD DAWSON","5556 FEDERAL WAY",,"BOISE","ID","83716",,,,,,,"5556 FEDERAL WAY",,"BOISE","ID","83716",,,,,,,"752924993","8004733586","339900","GUERDON ENTERPRISES, LLC","LAD DAWSON","5556 FEDERAL WAY",,"BOISE","ID","83716",,,,,,,"752924993","8004733586",,,,"2011-08-23T10:57:16-0500","LAURENCE DAWSON","2011-08-23T10:58:19-0500","LAURENCE DAWSON",,,86,137,,,137,,137,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110824131638P030550158416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HAPOALIM SECURITIES USA, INC. WELFARE BENEFIT AND CAFETERIA PLAN","503","2000-01-01","HAPOALIM SECURITIES USA, INC.",,,"ONE BATTERY PARK PLAZA",,"NEW YORK","NY","10004",,,,,,,,,,,,,,,,,,"133732556","2128496432","523120","HAPOALIM SECURITIES USA, INC.",,"ONE BATTERY PARK PLAZA",,"NEW YORK","NY","10004",,,,,,,"133732556","2128496432",,,,"2011-08-24T13:15:36-0500","SANDEEP MALHOTRA",,,,,218,231,0,0,231,0,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824170849P030117974273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PORT PLASTICS, INC. 401(K) SAVINGS PLAN","002","1999-01-29","PORT PLASTICS, INC.",,,"15325 FAIRFIELD RANCH RD, SUITE 150",,"CHINO HILLS","CA","91709",,,,,,,,,,,,,,,,,,"952136193","9093935984","332900","PORT PLASTICS, INC.",,"15325 FAIRFIELD RANCH RD, SUITE 150",,"CHINO HILLS","CA","91709",,,,,,,"952136193","9093935984",,,,"2011-08-24T17:08:04-0500","PATRICK LAGERBORG",,,,,188,141,0,35,176,0,176,137,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110822112323P040119931137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIDWEST MOTOR EXPRESS INC GROUP INSURANCE PLAN","501","1951-02-15","MIDWEST MOTOR EXPRESS INC",,,"PO BOX 1058",,"BISMARCK","ND","58502",,,,,,,"PO BOX 1058",,"BISMARCK","ND","58502",,,,,,,"450187740","7012231880","484120","MIDWEST MOTOR EXPRESS INC",,"PO BOX 1058",,"BISMARCK","ND","58502",,,,,,,"450187740","7012231880",,,,"2011-08-22T11:22:57-0500","TYLER FELCHLE",,,,,461,502,,,502,,502,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110823132638P040038038039001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CERNER CORPORATION FOUNDATIONS LONG TERM DISABILITY PLAN","504","1989-01-01","CERNER CORPORATION",,,"2800 ROCKCREEK PKWY",,"NORTH KANSAS CITY","MO","64117",,,,,,,,,,,,,,,,,,"431196944","8162010023","541511","CERNER CORPORATION",,"2800 ROCKCREEK PKWY",,"NORTH KANSAS CITY","MO","64117",,,,,,,"431196944","8162010023",,,,"2011-08-23T13:25:35-0500","TODD DOWNEY",,,,,3941,4143,0,0,4143,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824090835P040121064961009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PB2 COMPANIES, LTD WELFARE BENEFIT PLAN","501","1992-01-01","PB2 COMPANIES, LTD",,,"710 WEST ROSELAWN",,"ROGERS","AR","72756",,,,,,,"710 WEST ROSELAWN",,"ROGERS","AR","72756",,,,,,,"710805477","4796363545","541310","PB2 COMPANIES, LTD",,"710 WEST ROSELAWN",,"ROGERS","AR","72756",,,,,,,"710805477","4796363545",,,,"2011-08-24T03:53:59-0500","DOUG HURLEY",,,,,191,166,,,166,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110816131541P040116367393001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"TAX DEFERRED ANNUITY PLAN OF CHUGACHMIUT","002","1993-12-01","CHUGACHMIUT",,,"1840 S BRAGAW ST STE 110",,"ANCHORAGE","AK","99508",,,,,,,,,,,,,,,,,,"920046614","9075624155","813000","CHUGACHMIUT",,"1840 S BRAGAW ST STE 110",,"ANCHORAGE","AK","99508",,,,,,,"920046614","9075624155",,,,"2011-08-16T13:15:16-0500","PHYLLIS WIMBERLEY","2011-08-16T13:15:16-0500","PHYLLIS WIMBERLEY",,,112,70,0,43,113,1,114,114,0,,"2L2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110820163113P030115676353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YOGA BODY AND SOUL INCORPORATED 401 (K) PROFIT SHARING PLAN","001","2009-03-11","YOGA BODY AND SOUL INCORPORATED",,"DEBBIE DIXON","19682 MARSALA DRIVE",,"YORBA LINDA","CA","92886",,,,,,,"19682 MARSALA DRIVE",,"YORBA LINDA","CA","92886",,,,,,,"264269913","7145957114","812190","YOGA BODY AND SOUL INCORPORATED","DEBBIE DIXON","19682 MARSALA DRIVE",,"YORBA LINDA","CA","92886",,,,,,,"264269913","7145957114",,,,"2011-08-20T16:27:43-0500","DEBBIE DIXON","2011-08-20T16:29:09-0500","DEBBIE DIXON",,,1,1,0,0,1,0,1,0,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110820100006P030539290464001","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"CAMPBELL'S BODY SHOP & WRECKER SELF FUNDED MEDICAL REIMBURSEMENT PLAN","502","2010-01-01","CAMPBELL'S BODY SHOP & WRECKER",,,"507 AMELIA AVE",,"SPARTANBURG","SC","29302",,,,,,,,,,,,,,,,,,"570722792","8645835616","811120","CAMPBELL'S BODY SHOP & WRECKER",,"507 AMELIA AVE",,"SPARTANBURG","SC","29302",,,,,,,"570722792","8645835616",,,,"2011-08-20T09:52:30-0500","BRENDA CAMPBELL",,,,,16,17,0,0,17,,,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-20","Filed with authorized/valid electronic signature",, "20110822105703P040539558224005","2010-07-01","2011-06-30","2",,,,,,,,,,,,"E. C. LUTHER, INC. PROFIT SHARING PLAN","003","1994-07-01","E. C. LUTHER, INC.",,,"2010 E HALL ST.",,"OLNEY","IL","62450",,,,,,,,,,,,,,,,,,"371072397","6183953524","722210","E. C. LUTHER, INC.",,"2010 E HALL ST.",,"OLNEY","IL","62450",,,,,,,"371072397","6183953524",,,,"2011-08-19T06:14:09-0500","ERIC LUTHER",,,,,12,10,,4,14,,14,11,1,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822131045P040539827824001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PURPLE GENIE, INC. PROFIT SHARING PLAN","001","2009-08-27","PURPLE GENIE, INC.",,,"60 BON AIRE CIR APT N8",,"SUFFERN","NY","10901",,,,,,,,,,,,,,,,,,"208564619","8453680172","519100","PURPLE GENIE, INC.",,"60 BON AIRE CIR APT N8",,"SUFFERN","NY","10901",,,,,,,"208564619","8453680172",,,,"2011-08-22T13:03:48-0500","LAWRENCE GORDON",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110823162211P040120660497001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SUNRISE TELECOM INCORPORATED 401(K) PROFIT SHARING","001","1996-09-01","SUNRISE TELECOM INCORPORATED",,,"302 ENZO DRIVE",,"SAN JOSE","CA","95138",,,,,,,,,,,,,,,,,,"770291197","4083601226","334200","SUNRISE TELECOM INCORPORATED",,"302 ENZO DRIVE",,"SAN JOSE","CA","95138",,,,,,,"770291197","4083601226",,,,"2011-08-23T16:21:33-0500","CHARENE ANGULO","2011-08-23T16:15:35-0500","JAMES WALKER",,,252,132,0,83,215,0,215,213,19,,"2E2J2F2G2K3H2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110824111100P030117814801001","1995-07-01","1996-06-30","2",,"0","0","0","0","0","0","0","1","0",,"DR. WILLIAM M. SCHOLL COLLEGE TAX DEFERRED ANNUITY RETIREMENT PLAN","010","1994-04-01","ROSALIND FRANKLIN UNIVERSITY OF MEDICINE AND SCIENCE",,,"3333 GREEN BAY RD.",,"NORTH CHICAGO","IL","60064",,,,,,,,,,,,,,,,,,"362181973","8475783262","611000","ROSALIND FRANKLIN UNIVERSITY OF MEDICINE AND SCIENCE",,"3333 GREEN BAY RD.",,"NORTH CHICAGO","IL","60064",,,,,,,"362181973","8475783262",,,,"2011-08-24T11:10:39-0500","JAMES MURPHY",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824111245P030117815729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DR. JOSEPH T. LOVERDI DDS, PLLC 401(K) PLAN","001","2007-01-01","JOSEPH LOVERDI D.D.S. , PLLC",,,"815 AYRAULT RD",,"FAIRPORT","NY","14450",,,,,,,,,,,,,,,,,,"208142464","5852234233","621210","JOSEPH LOVERDI D.D.S. , PLLC",,"815 AYRAULT RD",,"FAIRPORT","NY","14450",,,,,,,"208142464","5852234233",,,,"2011-08-24T11:12:10-0500","JOSEPH LOVERDI",,,,,7,6,0,0,6,0,6,5,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110825084842P040121634641008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GRAND VIEW HOMES 401K PLAN","001","2007-01-01","GRAND VIEW HOMES, INC.",,,"PO BOX 752",,"KETCHUM","OK","74349",,,,,,,"PO BOX 752",,"KETCHUM","OK","74349",,,,,,,"731236370",,"236110","GRAND VIEW HOMES, INC.",,"PO BOX 752",,"KETCHUM","OK","74349",,,,,,,"731236370",,,,,"2011-06-22T11:03:50-0500","NORM DAVIS","2011-06-22T11:03:50-0500","NORM DAVIS",,,1,1,,,1,,1,1,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823103044P030547140048001","2011-01-01","2011-06-17","2",,"0","0","1","1","0","0","0","0","0",,"FULL HOUSE VENTURES, INC. 401(K) PLAN","001","2007-04-12","FULL HOUSE VENTURES, INC.",,,"225 SEWARD STREET",,"WEST BABYLON","NY","11704",,,,,,,,,,,,,,,,,,"208834932","6315325664","531390","FULL HOUSE VENTURES, INC.",,"225 SEWARD STREET",,"WEST BABYLON","NY","11704",,,,,,,"208834932","6315325664",,,,"2011-08-23T10:30:20-0500","LARRY WARD","2011-08-23T10:30:20-0500","LARRY WARD",,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823092239P030117181985001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"ZORAN SALARY DEFERRAL PLAN","001","1988-01-01","ZORAN CORPORATION",,,"1390 KIFER RD",,"SUNNYVALE","CA","94086",,,,,,,"1390 KIFER RD",,"SUNNYVALE","CA","94086",,,,,,,"942794449","4085236500","334410","ZORAN CORPORATION",,"1390 KIFER RD",,"SUNNYVALE","CA","94086",,,,,,,"942794449","4085236500",,,,"2011-08-23T09:12:59-0500","LORI JOHNSON",,,,,431,517,0,101,618,1,619,498,9,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110823171305P040120685633001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"GAGE PRODUCTIONS, LTD., MPP AND TRUST","001","1987-02-19","GAGE PRODUCTIONS, LTD.",,"JOSEPH LIBERTSON","14301 N 87TH STREET, SUITE 208",,"SCOTTSDALE","AZ","85260",,,,,,,"14301 N 87TH STREET, SUITE 208",,"SCOTTSDALE","AZ","85260",,,,,,,"364140487","4805843517","711510","GAGE PRODUCTIONS, LTD.","JOSEPH LIBERTSON","14301 N 87TH STREET, SUITE 208",,"SCOTTSDALE","AZ","85260",,,,,,,"364140487","4805843517",,,,"2011-08-23T17:09:12-0500","CONLENE YEE",,,,,1,0,,,0,,0,,,,"2C3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110823171330P030117387553001","2010-02-01","2011-01-31","2",,,,,,,,,,,,"PENN WASTE, INC. GROUP BENEFIT PLAN","501","2005-02-01","PENN WASTE, INC",,,"P.O. BOX 3066",,"YORK","PA","17402",,,,,,,,,,,,,,,,,,"233030774","7177674456","562000","PENN WASTE, INC",,"P.O. BOX 3066",,"YORK","PA","17402",,,,,,,"233030774","7177674456",,,,"2011-08-23T04:11:38-0500","SCOTT R.WAGNER",,,,,218,269,,,269,,,,,,,"4B4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824124454P030017262882001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"SOUTH TAHOE GROUP 401(K) PLAN","003","1998-01-01","SOUTH TAHOE REFUSE CO., INC.",,,"2140 RUTH AVENUE",,"SOUTH LAKE TAHOE","CA","96150",,,,,,,,,,,,,,,,,,"941628580","5305428345","562000","SOUTH TAHOE REFUSE CO., INC.",,"2140 RUTH AVENUE",,"SOUTH LAKE TAHOE","CA","96150",,,,,,,"941628580","5305428345",,,,"2011-08-24T12:44:14-0500","GLORIA LEHMAN",,,,,146,136,0,10,146,0,146,76,0,,"2E2F2G2J2K2T3D3H",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110822142511P040539976304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STENNER PUMP COMPANY, INC. ESOP","002","1995-01-01","STENNER PUMP COMPANY, INC.",,,"3174 DESALVO ROAD",,"JACKSONVILLE","FL","32246",,,,,,,"MICHAEL A. KINCAID","3174 DESALVO ROAD","JACKSONVILLE","FL","322463733",,,,,,,"590791535","9046411666","325900","STENNER PUMP COMPANY, INC.",,"3174 DESALVO ROAD",,"JACKSONVILLE","FL","32246",,,,,,,"590791535","9046411666",,,,"2011-08-22T14:13:03-0500","MICHAEL KINCAID","2011-08-22T14:13:03-0500","MICHAEL KINCAID",,,69,53,0,10,63,1,64,64,3,,"2Q",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110822163032P030545173504001","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"MICHAEL W LANG DDS PC PROFIT SHARING PLAN","001","1994-01-01","MICHAEL W LANG DDS PC",,,"1171 E RANCHO VISTOSO BLVD 157",,"ORO VALLEY","AZ","85755",,,,,,,,,,,,,,,,,,"860781195","5208251200","621210","MICHAEL W LANG",,"1171 E RANCHO VISTOSO BLVD 157",,"ORO VALLEY","AZ","85755",,,,,,,"860781195","5208251200",,,,"2011-08-22T15:52:07-0500","MICHAEL W LANG",,,,,2,2,,,2,,2,2,,,"3D2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110823113801P040120518081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CICLON DE PUERTO RICO 1165(E) RETIREMENT PLAN","001","2007-01-01","CICLON DE PUERTO RICO",,,"CARR ESTATAL 174 LOT 107 URB INDUST",,"BAYAMON","PR","00959",,,,,,,,,,,,,,,,,,"660661647","7872886400","312110","CICLON DE PUERTO RICO",,"CARR ESTATAL 174 LOT 107 URB INDUST",,"BAYAMON","PR","00959",,,,,,,"660661647","7872886400",,,,"2011-08-23T11:37:46-0500","JOSE DEL VALLE",,,,,4,3,0,1,4,0,4,4,,,"2E2F2G2T3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110825124507P040121740289001","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"TAMPA FORKLIFT EMPLOYEE HEALTH PLAN","501","2009-01-01","TAMPA FORKLIFT",,,"3221 N. 40TH ST.",,"TAMPA","FL","33605",,,,,,,,,,,,,,,,,,"591571922","8136235251","811310","TAMPA FORKLIFT",,"3221 N. 40TH ST.",,"TAMPA","FL","33605",,,,,,,"591571922","8136235251",,,,"2011-08-25T12:30:47-0500","GARY A. MANSELL",,,,,0,0,0,0,0,,,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825132438P030552917376001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GL & V USA INC WELFARE BENEFIT PLAN","502","2000-01-01","GL & V USA INC",,,"1000 LAVAL BOULEVARD",,"LAWRENCEVILLE","GA","30043",,,,,,,,,,,,,,,,,,"582517780","7709632100","322200","GL & V USA INC",,"1000 LAVAL BOULEVARD",,"LAWRENCEVILLE","GA","30043",,,,,,,"582517780","7709632100","GL & V USA INC","582412182","502","2011-08-25T13:24:31-0500","FRANCES DUNSMORE","2011-08-25T13:24:31-0500","FRANCES DUNSMORE",,,557,552,0,0,552,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823182126P030117415297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GERMANE SYSTEMS 401(K) PLAN & TRUST","001","2004-01-01","GERMANE SYSTEMS, LC",,,"3680 CENTERVIEW DR",,"CHANTILLY","VA","20151",,,,,,,,,,,,,,,,,,"541872415","7035028890","334200","GERMANE SYSTEMS, LC",,"3680 CENTERVIEW DR",,"CHANTILLY","VA","20151",,,,,,,"541872415","7035028890",,,,"2011-08-23T17:16:12-0500","CONNIE STEWART",,,,,112,75,0,14,89,0,89,89,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824091507P030117771153001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GENERAL SURGEONS OF KANKAKEE, LTD. PROFIT SHARING PLAN AND TRUST","003","1983-07-01","GENERAL SURGEONS OF KANAKEE, LTD.",,,"375 N. WALL STREET, SUITE P640",,"KANKAKEE","IL","60901",,,,,,,,,,,,,,,,,,"362677914","8159320631","621111","GENERAL SURGEONS OF KANAKEE, LTD.",,"375 N. WALL STREET, SUITE P640",,"KANKAKEE","IL","60901",,,,,,,"362677914","8159320631",,,,"2011-08-24T10:05:17-0500","PAUL ROWLAND",,,,,5,5,0,0,5,0,5,5,,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824202946P040545964784001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RATHBUN ASSOCIATES 401(K) PLAN AND TRUST","001","2006-01-01","RATHBUN ASSOCIATES",,,"48890 MILMONT DRIVE","SUITE 109D","FREMONT","CA","94538",,,,,,,,,,,,,,,,,,"941653463","5106610950","811310","RATHBUN ASSOCIATES",,"48890 MILMONT DRIVE","SUITE 109D","FREMONT","CA","94538",,,,,,,"941653463","5106610950",,,,"2011-08-24T20:28:32-0500","STEPHEN FISCHER",,,,,10,10,0,0,10,0,10,4,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110822131642P040017772434001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAREXEL INTERNATIONAL CORPORATION HEALTH BENEFIT PLAN","501","1988-02-01","PAREXEL INTERNATIONAL CORPORATION",,,"900 CHELMSFORD ST, UNIT 310",,"LOWELL","MA","018518310",,,,,,,,,,,,,,,,,,"042776269","9788482440","541990","PAREXEL INTERNATIONAL CORPORATION",,"900 CHELMSFORD ST, UNIT 310",,"LOWELL","MA","018518310",,,,,,,"042776269","9788482440",,,,"2011-08-22T13:16:29-0500","TODD COWGILL",,,,,2233,2318,56,0,2374,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110823143727P040038048359001","2010-07-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"IPACESETTERS, LLC RETIREMENT SAVINGS PLAN","001","2010-07-01","IPACESETTERS, LLC",,,"222 W. WASHINGTON AVENUE, SUITE 200",,"MADISON","WI","53703",,,,,,,,,,,,,,,,,,"200555240","6082598004","517000","IPACESETTERS, LLC",,"222 W. WASHINGTON AVENUE, SUITE 200",,"MADISON","WI","53703",,,,,,,"200555240","6082598004",,,,"2011-08-23T14:36:33-0500","LEANN PLOESSL",,,,,94,639,0,10,649,0,649,204,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110823155534P040120648609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHN J. DOYLE BUILDERS, INC. RETIREMENT PLAN","001","2000-01-01","JOHN J. DOYLE BUILDERS, INC.",,,"PO BOX 387, 7838 STATE HIGHWAY 68",,"OGDENSBURG","NY","13669",,,,,,,,,,,,,,,,,,"161280431","3153932209","237310","JOHN J. DOYLE BUILDERS, INC.",,"PO BOX 387, 7838 STATE HIGHWAY 68",,"OGDENSBURG","NY","13669",,,,,,,"161280431","3153932209",,,,"2011-08-23T15:55:10-0500","JOHN J DOYLE",,,,,17,9,0,6,15,0,15,10,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824104918P040121106641001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"LLOYD'S PLUMBING AND HEATING CORP. 401(K) SAVINGS PLAN","001","1992-04-01","LLOYD'S PLUMBING AND HEATING COR",,,"P.O. BOX 2888","2352 WEST HIGHWAY 14","JANESVILLE","WI","53547",,,,,,,,,,,,,,,,,,"391968310","6087562626","238220","LLOYD'S PLUMBING AND HEATING COR",,"P.O. BOX 2888","2352 WEST HIGHWAY 14","JANESVILLE","WI","53547",,,,,,,"391968310","6087562626",,,,"2011-08-24T10:43:48-0500","BRENT KEPP",,,,,46,29,0,20,49,0,49,49,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824140025P040121191377002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JAY M SCHERR MD PENSION PLAN","011","2000-01-01","LUBBOCK DIAGNOSTIC RADIOLOGY LLP",,,"7602 UNIVERSITY AVENUE STE 102",,"LUBBOCK","TX","79423",,,,,,,,,,,,,,,,,,"752857758","8067922767","621111","LUBBOCK DIAGNOSTIC RADIOLOGY LLP",,"7602 UNIVERSITY AVENUE STE 102",,"LUBBOCK","TX","79423",,,,,,,"752857758","8067922767",,,,"2011-08-24T13:42:11-0500","JAY M SCHERR MD",,,,,1,1,,,1,,1,,,,"3H3E3B2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110825092851P040018039490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEVENSON & PALMER ENGINEERING, INC EMPLOYEE STOCK OWNERSHIP PLAN","002","1993-01-01","STEVENSON & PALMER ENGINEERING, INC",,,"2430 HERODIAN WAY, SUITE 101",,"SMYRNA","GA","30080",,,,,,,,,,,,,,,,,,"581917088","7709522481","541330","STEVENSON & PALMER ENGINEERING, INC",,"2430 HERODIAN WAY, SUITE 101",,"SMYRNA","GA","30080",,,,,,,"581917088","7709522481",,,,"2011-08-25T08:26:43-0500","WILLIAM WHITE",,,,,63,30,17,7,54,0,54,54,1,,"2E2I2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110822143120P040120008321001","2006-07-01","2007-06-30","2",,"0","0","0","0","0","0","0","1","0",,"BENSONS INC WELFARE BENEFIT PLAN","502","2001-07-01","BENSONS INC",,,"P O BOX 429",,"BOGART","GA","306220429",,,,,,,"134 ELDER STREET",,"BOGART","GA","306229429",,,,,,,"580706012","7707255711","721110","BENSONS INC",,"P O BOX 429",,"BOGART","GA","306220429",,,,,,,"580706012","7707255711",,,,"2011-08-22T14:30:41-0500","GARY MITCHELL",,,,,187,202,0,0,202,,,,,,,"4A4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822132850P030544812592001","2005-02-01","2006-01-31","2",,"0","0","0","0","0","0","0","1","0",,"PENN WASTE, INC. GROUP MEDICAL PLAN","502","2004-02-01","PENN WASTE, INC.",,,"P.O. BOX 3066",,"YORK","PA","17402",,,,,,,,,,,,,,,,,,"233030774","7177187563","562000","PENN WASTE, INC.",,"P.O. BOX 3066",,"YORK","PA","17402",,,,,,,"233030774","7177187563",,,,"2011-08-22T13:27:31-0500","DAWN C. LEFTRIDGE",,,,,137,174,0,0,174,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822133031P030003425123002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"XAM BUSINESS SERVICES LTD 401K PROFIT SHARING PLAN","001","2005-05-01","XAM BUSINESS SERVICES LTD",,,"7676 HILLMONT SUITE 250",,"HOUSTON","TX","77040",,,,,,,,,,,,,,,,,,"200484678","7136908400","561490","XAM BUSINESS SERVICES LTD",,"7676 HILLMONT SUITE 250",,"HOUSTON","TX","77040",,,,,,,"200484678","7136908400",,,,"2011-08-22T12:05:54-0500","HOLLY JOHNSTON",,,,,68,64,,,64,,64,41,,,"2J2G2F2E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110823074658P040003641731001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FCC SERVICE CO., INC. 401(K) SAVINGS PLAN","001","1994-09-01","FCC SERVICE CO., INC.",,,"4855 TECHNOLOGY WAY","SUITE 500","BOCA RATON","FL","33431",,,,,,,"4855 TECHNOLOGY WAY","SUITE 500","BOCA RATON","FL","33431",,,,,,,"141892571","5616231928","522298","FCC SERVICE CO., INC.",,"4855 TECHNOLOGY WAY","SUITE 500","BOCA RATON","FL","33431",,,,,,,"141892571","5616231928",,,,"2011-08-23T07:46:30-0500","JOHN CAROSELLI",,,,,213,174,1,36,211,0,211,204,22,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110823074716P040003641747001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"THE RF & F EMPLOYEE PROFIT SHARING PLAN","002","1983-01-01","ROCKVILLE FUEL & FEED CO INC.",,,"14901 SOUTHLAWN LN",,"ROCKVILLE","MD","208501322",,,,,,,,,,,,,,,,,,"520463250","3017623988","327300","ROCKVILLE FUEL & FEED CO INC.",,"14901 SOUTHLAWN LN",,"ROCKVILLE","MD","208501322",,,,,,,"520463250","3017623988","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-08-23T07:46:56-0500","STEVEN WARD","2011-08-23T07:46:56-0500","STEVEN WARD",,,154,144,0,0,144,1,145,132,2,,"2E2F2G2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823110704P030117228577001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CERNER CORPORATION TRAVEL AND ACCIDENT INSURANCE PLAN","502","1984-09-01","CERNER CORPORATION",,,"2800 ROCKCREEK PKWY",,"NORTH KANSAS CITY","MO","64117",,,,,,,,,,,,,,,,,,"431196944","8162010023","541511","CERNER CORPORATION",,"2800 ROCKCREEK PKWY",,"NORTH KANSAS CITY","MO","64117",,,,,,,"431196944","8162010023",,,,"2011-08-23T11:06:38-0500","TODD DOWNEY",,,,,7766,8312,0,0,8312,,,,,,,"4A4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824154025P040545415552001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ED CANTRELL D.D.S., P.A. RETIREMENT PLAN & TRUST","001","1999-01-01","ED CANTRELL D.D.S. P.A.",,,"4410 TEXAS BOULEVARD",,"TEXARKANA","TX","755033015",,,,,,,,,,,,,,,,,,"752827497","9037933264","621210","ED CANTRELL D.D.S. P.A.",,"4410 TEXAS BOULEVARD",,"TEXARKANA","TX","755033015",,,,,,,"752827497","9037933264",,,,"2011-08-24T15:40:24-0500","ED CANTRELL D.D.S.",,,,,5,4,0,1,5,0,5,5,1,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824161302P030117950161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BUILDING MATERIALS WHOLESALE INC 401K RETIREMENT PLAN","001","1995-01-01","BUILDING MATERIALS WHOLESALE INC",,,"P O BOX 1269",,"PELHAM","AL","35124",,,,,,,,,,,,,,,,,,"630751081","2057338026","423300","BUILDING MATERIALS WHOLESALE INC",,"P O BOX 1269",,"PELHAM","AL","35124",,,,,,,"630751081","2057338026",,,,"2011-08-24T16:11:11-0500","TERRY RIDDLESPERGER",,,,,137,36,0,66,102,0,102,78,6,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110822143319P030036907847001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOSPICE OF SOUTH TEXAS PROFIT SHARING & 401(K) PLAN","001","2007-10-01","HOSPICE OF SOUTH TEXAS",,,"605 E LOCUST AVE",,"VICTORIA","TX","77901",,,,,,,,,,,,,,,,,,"742368758","3615724300","813000","HOSPICE OF SOUTH TEXAS",,"605 E LOCUST AVE",,"VICTORIA","TX","77901",,,,,,,"742368758","3615724300",,,,"2011-08-22T14:32:32-0500","ANNE MCINTOSH",,,,,107,70,0,19,89,0,89,89,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822093731P040119880721001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"IMPRESSIONS EVERAFTER, INC. PROFIT SHARING PLAN","001","2004-04-27","IMPRESSIONS EVERAFTER, INC.",,,"915 W. HEDGEWOOD DRIVE",,"BLOOMINGTON","IN","47403",,,,,,,,,,,,,,,,,,"201054999","8123391773","442291","IMPRESSIONS EVERAFTER, INC.",,"915 W. HEDGEWOOD DRIVE",,"BLOOMINGTON","IN","47403",,,,,,,"201054999","8123391773",,,,"2011-08-22T07:07:21-0500","DANNY FRANK","2011-08-22T07:07:21-0500","DANNY FRANK",,,3,3,0,0,3,0,3,1,0,,"2A2E2F2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823134250P030117294945004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MILLER WIRE AND CABLE COMPANY,INC. 401K PROFIT SHARING PLAN & TRUST","001","1994-01-01","MILLER WIRE AND CABLE COMPANY, INC.",,,"847 CANTERBURY ROAD",,"WESTLAKE","OH","44145",,,,,,,,,,,,,,,,,,"341749568","4408351950","332900","MILLER WIRE AND CABLE COMPANY, INC.",,"847 CANTERBURY ROAD",,"WESTLAKE","OH","44145",,,,,,,"341749568","4408351950",,,,"2011-08-01T03:33:43-0500","DAVID MILLER","2011-08-01T03:33:43-0500","DAVID MILLER",,,0,0,0,0,0,0,0,0,0,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823114430P040017855186001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"URBAN DENTAL MANAGEMENT DEFINED BENEFIT PENSION PLAN","001","1999-01-01","URBAN DENTAL MANAGEMENT",,,"56 KITCHAWAN ROAD",,"POUND RIDGE","NY","10576",,,,,,,,,,,,,,,,,,"133855602","9149977000","621210","URBAN DENTAL MANAGEMENT",,"56 KITCHAWAN ROAD",,"POUND RIDGE","NY","10576",,,,,,,"133855602","9149977000",,,,"2011-08-23T11:35:20-0500","STEVEN SOLOMON",,,,,15,0,0,4,4,0,4,,0,,"1A1I",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110816164052P030113386177001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"JEFFREY ROME & ASSOCIATES PROFIT SHARING PLAN","001","2002-01-01","JEFFREY ROME & ASSOCIATES",,,"1 SAN JOAQUIN PLAZA, SUITE 250",,"NEWPORT BEACH","CA","92660",,,,,,,,,,,,,,,,,,"330797456","9497603929","541310","JEFFREY ROME & ASSOCIATES",,"1 SAN JOAQUIN PLAZA, SUITE 250",,"NEWPORT BEACH","CA","92660",,,,,,,"330797456","9497603929",,,,"2011-08-16T16:31:08-0500","JEFFREY ROME",,,,,5,7,0,0,7,0,7,3,0,,"2A2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110824163118P030117958769001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"RADNER AND RADNER RESTATED PROFIT SHARING AND RETIREMENT PLAN","001","1972-07-01","RADNER & RADNER PLLC","RADNER & RADNER PLLC",,"P.O. BOX 251145",,"WEST BLOOMFIELD","MI","48325",,,,,,,"5948 SHAUN RD",,"WEST BLOOMFIELD","MI","48322",,,,,,,"385268113","2486261200","541110","RADNER & RADNER PLLC",,"P.O. BOX 251145",,"WEST BLOOMFIELD","MI","48325",,,,,,,"385268113","2486261200",,,,"2011-08-24T16:30:00-0500","ROBERT RADNER",,,,,2,2,0,0,2,0,2,2,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110825125428P030017343362001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DOUGLAS A. SINGLETON, DDS, MS, PC RETIREMENT PLAN & TRUST","001","2006-01-01","DOUGLAS A. SINGLETON, DDS, MS, PC",,,"3104 CREEKSIDE VILLAGE DRIVE","SUITE 401","KENNESAW","GA","30144",,,,,,,,,,,,,,,,,,"201469010","7709743633","621210","DOUGLAS A. SINGLETON, DDS, MS, PC",,"3104 CREEKSIDE VILLAGE DRIVE","SUITE 401","KENNESAW","GA","30144",,,,,,,"201469010","7709743633",,,,"2011-08-25T12:53:48-0500","DOUGLAS A. SINGLETON, DDS","2011-08-25T12:53:48-0500","DOUGLAS A. SINGLETON, DDS",,,11,8,0,1,9,0,9,9,0,,"2A2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110822065513P040119808097001","2010-06-01","2011-05-31","2",,,,,,,,,,,,"DENTAL INSURANCE","505","2000-06-01","PEOPLES BANK",,,"P.O. BOX 467",,"NEWTON","NC","286580467",,,,,,,,,,,,,,,,,,"560354890","8284645620","522110","PEOPLES BANK",,"P.O. BOX 467",,"NEWTON","NC","286580467",,,,,,,"560354890","8284645620",,,,"2011-08-21T16:11:08-0500","ADAM POLAKOV",,,,,237,169,,,169,,169,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822110902P040017761922001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PARK CENTER, INC. 403(B) RETIREMENT PLAN","002","1991-07-01","PARK CENTER, INC.",,,"909 EAST STATE BLVD.",,"FORT WAYNE","IN","46805",,,,,,,,,,,,,,,,,,"351135451","2194812722","621420","PARK CENTER, INC.",,"909 EAST STATE BLVD.",,"FORT WAYNE","IN","46805",,,,,,,"351135451","2194812722",,,,"2011-08-22T12:08:36-0500","BRAD ALTEVOGT",,,,,644,339,1,214,554,3,557,557,0,,"2M2F2G2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110823142318P030117316881001","2010-06-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"OCCAZIO, INC. EMPLOYEE BENEFIT PLAN","501","1990-06-01","OCCAZIO, INC.",,,"PO BOX 505",,"NEW CASTLE","IN","47362",,,,,,,"25 E CR 300 S",,"NEW CASTLE","IN","47362",,,,,,,"311127349","7655210320","623000","OCCAZIO, INC.",,"PO BOX 505",,"NEW CASTLE","IN","47362",,,,,,,"311127349","7655210320",,,,"2011-08-23T14:18:58-0500","NICOLE BROYLES",,,,,224,245,,,245,,245,,,,,"4A4B4D4Q","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824084658P040121058337001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"ARVIG ENTERPRISES, INC. 401(K) PLAN","002","1980-01-01","ARVIG ENTERPRISES, INC.",,,"150 SECOND ST. SOUTHWEST",,"PERHAM","MN","56573",,,,,,,"150 SECOND ST. SOUTHWEST",,"PERHAM","MN","56573",,,,,,,"411507358","2183465500","517000","ARVIG ENTERPRISES, INC.",,"150 SECOND ST. SOUTHWEST",,"PERHAM","MN","56573",,,,,,,"411507358","2183465500",,,,"2011-08-24T08:46:24-0500","STACI MALIKOWSKI",,,,,353,305,1,44,350,0,350,320,0,,"2E2F2G2J2K2R2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824120406P040017951330001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SPRINGEL & FINK LLP 401(K) PLAN","001","1998-01-01","SPRINGEL & FINK LLP",,,"10655 PARK RUN DRIVE","SUITE 275","LAS VEGAS","NV","89144",,,,,,,"10655 PARK RUN DRIVE","SUITE 275","LAS VEGAS","NV","89144",,,,,,,"330838675","7028040706","541110","SPRINGEL & FINK LLP",,"10655 PARK RUN DRIVE","SUITE 275","LAS VEGAS","NV","89144",,,,,,,"330838675","7028040706",,,,"2011-08-24T12:02:34-0500","JEAN GOINS",,,,,24,11,0,8,19,1,20,20,0,,"2F2G2J2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110825150008P030118501105002","2010-07-01","2011-06-30","2",,,,,,,,,,,,"FLASH GRAPHICS INC 401K PLAN","001","1993-01-01","FLASH GRAPHICS, INC.",,,"212 N. PENTZ STREET",,"DALTON","GA","30720",,,,,,,,,,,,,,,,,,"581308872","7062787779","323100","FLASH GRAPHICS, INC.",,"212 N. PENTZ STREET",,"DALTON","GA","30720",,,,,,,"581308872","7062787779",,,,"2011-08-25T15:42:09-0500","STEVE DANIEL","2011-08-25T15:42:25-0500","STEVE DANIEL",,,11,9,0,2,11,1,12,9,,,"2J2K2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110825143226P040121783521001","2007-07-01","2008-08-31","1",,"1","0","0","0","0","0","0","1","0",,"MERRIMACK HEALTH GROUP HEALTH PLAN","501","2007-07-01","MERRIMACK HEALTH GROUP",,"LAURA MCDONNELL","35 AVCO RD",,"HAVERHILL","MA","01835",,,,,,,"35 AVCO RD",,"HAVERHILL","MA","01835",,,,,,,"043432535","9784201500","623000","MERRIMACK HEALTH GROUP","LAURA MCDONNELL","35 AVCO RD",,"HAVERHILL","MA","01835",,,,,,,"043432535","9784201500",,,,"2011-08-25T14:25:49-0500","JEFFREY MURPHY",,,,,0,819,,,819,,819,,,0,,"4A","1",,,,"1",,,,,,,,,"1","13",,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110822100029P040119889121001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MING Y HUANG MD KEOGH PLAN","001","1980-10-01","MING Y HUANG M D",,,"183 W HIGH ST",,"SOMERVILLE","NJ","08876",,,,,,,,,,,,,,,,,,"222177980","9087226400","621111","MING Y HUANG M D",,"183 W HIGH ST",,"SOMERVILLE","NJ","08876",,,,,,,"222177980","9087226400",,,,"2011-08-10T15:45:22-0500","MING Y HUANG MD",,,,,3,2,,1,3,,3,,,,"2E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822121003P040017767250006","2008-01-01","2008-12-31","2",,,"1",,,,,,"1",,,"4FRONT ENGINEERED SOLUTIONS, INC. EMPLOYEE HEALTH AND WELFARE BENEFIT PLAN","501","2006-12-01","4FRONT ENGINEERED SOLUTIONS, INC.",,,"1612 HUTTON DRIVE, SUITE 140",,"CARROLLTON","TX","75006",,,,,,,,,,,,,,,,,,"390866333","9723891435","333200","4FRONT ENGINEERED SOLUTIONS, INC.",,"1612 HUTTON DRIVE, SUITE 140",,"CARROLLTON","TX","75006",,,,,,,"390866333","9723891435",,,,"2011-08-22T06:11:17-0500","SEVE CARNERA",,,,,247,266,2,,268,,,,,,,"4A4B4C4E4H4Q","1",,,,"1",,,,,,,,,"1","9",,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822121003P040017767250004","2006-12-01","2006-12-31","2",,"1","1",,"1",,,,"1",,,"4FRONT ENGINEERED SOLUTIONS, INC. EMPLOYEE HEALTH AND WELFARE BENEFIT PLAN","501","2006-12-01","4FRONT ENGINEERED SOLUTIONS, INC.",,,"1612 HUTTON DRIVE, SUITE 140",,"CARROLLTON","TX","75006",,,,,,,,,,,,,,,,,,"390866333","9723891435","333200","4FRONT ENGINEERED SOLUTIONS, INC.",,"1612 HUTTON DRIVE, SUITE 140",,"CARROLLTON","TX","75006",,,,,,,"390866333","9723891435",,,,"2011-08-22T06:10:32-0500","SEVE CARNERA",,,,,201,205,,,205,,,,,,,"4A4B4D4E4H4Q","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822133240P040017773858005","2010-06-01","2011-05-31","2",,,,,,,,,,,,"PROFIT SHARING PLAN OF PROCTOR FUNERAL HOME, INC.","001","1973-08-02","PROCTOR FUNERAL HOME, INC.",,,"P.O. BOX P",,"CAMDEN","AR","71711",,,,,,,,,,,,,,,,,,"710605618","8708362264","812210","PROCTOR FUNERAL HOME, INC.",,"P.O. BOX P",,"CAMDEN","AR","71711",,,,,,,"710605618","8708362264",,,,"2011-08-18T05:56:04-0500","RICHARD H. MOSLEY",,,,,12,11,,,11,,11,11,,,"2E3D",,"1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822140613P040017776898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATONNE GROUP LLC 401K PLAN","001","2005-06-01","ATONNE GROUP LLC",,,"2000 CHICAGO DR SW",,"WYOMING","MI","49519",,,,,,,,,,,,,,,,,,"202973872","6163892400","423100","ATONNE GROUP LLC",,"2000 CHICAGO DR SW",,"WYOMING","MI","49519",,,,,,,"202973872","6163892400",,,,"2011-08-22T14:06:02-0500","TODD GRASMAN",,,,,580,418,4,54,476,0,476,327,10,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110816171958P040017252578004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SILVER RIDGE RANCH, INC. PROFIT SHARING PLAN","001","1968-12-01","SILVER RIDGE RANCH, INC.",,"JOHN YOUNG","2552 EAST 400 NORTH",,"ROBERTS","ID","834445114",,,,,,,"2552 EAST 400 NORTH",,"ROBERTS","ID","83444",,,,,,,"820288880",,"111100","SILVER RIDGE RANCH, INC.","JOHN YOUNG","2552 EAST 400 NORTH",,"ROBERTS","ID","834445114",,,,,,,"820288880",,,,,"2011-08-15T10:14:32-0500","JOHN YOUNG",,,,,3,3,,,3,,3,3,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-16","Filed with authorized/valid electronic signature",, "20110825082508P040121621121001","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"ALLISON PAYMENT SYSTEMS, LLC BENEFIT PLAN","502","2007-09-01","ALLISON PAYMENT SYSTEMS, LLC","ATTN ROBERT V. BOLES",,"2200 PRODUCTION DRIVE",,"INDIANAPOLIS","IN","46241",,,,,,,,,,,,,,,,,,"351950848","3178082403","561490","ALLISON PAYMENT SYSTEMS, LLC","ATTN ROBERT V. BOLES","2200 PRODUCTION DRIVE",,"INDIANAPOLIS","IN","46241",,,,,,,"351950848","3178082403",,,,"2011-08-25T07:43:57-0500","STEVEN J. KRITZMIRE","2011-08-25T07:44:14-0500","STEVEN J. KRITZMIRE",,,215,194,,,194,,194,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110822143651P040120010577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DYNTEK, INC. 401(K) PLAN","001","1990-01-01","DYNTEK, INC.",,,"4440 VON KARMAN AVE. SUITE 200",,"NEWPORT BEACH","CA","92660",,,,,,,,,,,,,,,,,,"954228470","9492716710","518210","DYNTEK, INC.",,"4440 VON KARMAN AVE. SUITE 200",,"NEWPORT BEACH","CA","92660",,,,,,,"954228470","9492716710",,,,"2011-08-22T11:21:41-0500","KAREN ROSENBERGER","2011-08-22T13:04:59-0500","KAREN ROSENBERGER",,,259,169,0,88,257,0,257,183,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110824130831P030117864833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SENECA FOODS CORPORATION EMPLOYEES SAVINGS PLAN","003","1994-01-01","SENECA FOODS CORPORATION",,,"3736 SOUTH MAIN ST.",,"MARION","NY","14505",,,,,,,,,,,,,,,,,,"160733425","3159268126","311400","SENECA FOODS CORPORATION",,"3736 SOUTH MAIN ST.",,"MARION","NY","14505",,,,,,,"160733425","3159268126",,,,"2011-08-24T13:07:32-0500","KAREN BABEY",,,,,3574,2614,0,310,2924,0,2924,1889,60,,"2E2J3H2K2F2G2S",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824112646P030117821521001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE PLACE FURNITURE GALLERIES 401(K) PLAN","001","2000-04-01","THE PLACE FURNITURE GALLERIES",,,"1640 BROAD HOLLOW ROAD",,"FARMINGDALE","NY","11735",,,,,,,,,,,,,,,,,,"113270449","2126455100","442110","THE PLACE FURNITURE GALLERIES",,"1640 BROAD HOLLOW ROAD",,"FARMINGDALE","NY","11735",,,,,,,"113270449","2126455100",,,,"2011-08-24T11:26:24-0500","STUART WEISS",,,,,108,100,0,8,108,,108,34,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824133624P030117877537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A. DOUGLAS HUNGER, III D.D.S. 401(K) PLAN","001","2007-01-01","A. DOUGLAS HUNGER, III D.D.S.",,,"9990 SUSQUEHANNA TRAIL SOUTH",,"GLEN ROCK","PA","17327",,,,,,,,,,,,,,,,,,"232474734","7172355073","621210","A. DOUGLAS HUNGER, III D.D.S.",,"9990 SUSQUEHANNA TRAIL SOUTH",,"GLEN ROCK","PA","17327",,,,,,,"232474734","7172355073",,,,"2011-08-24T13:35:38-0500","A. DOUGLAS HUNGER, III","2011-08-24T13:35:38-0500","A. DOUGLAS HUNGER, III",,,4,4,0,0,4,0,4,4,0,,"2A2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110825103440P030118393153001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"THE SMOOT CORPORATION SALARIED EMPLOYEES 401(K) PLAN AND TRUST","001","1999-01-01","SMOOT CORPORATION",,,"1907 LEONARD AVE.",,"COLUMBUS","OH","43219",,,,,,,"1907 LEONARD AVE.",,"COLUMBUS","OH","43219",,,,,,,"311192939","6142539000","236200","SMOOT CORPORATION",,"1907 LEONARD AVE.",,"COLUMBUS","OH","43219",,,,,,,"311192939","6142539000",,,,"2011-08-25T10:33:16-0500","JOSEPH MATHEWS",,,,,154,103,0,84,187,0,187,181,10,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825103621P030118393649001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"INTERFACE, INC. EMPLOYEE PROFIT SHARING & RETIREMENT SAVINGS PLAN","001","1990-01-01","INTERFACE INC.",,,"7401 E. BUTHERUS DRIVE",,"SCOTTSDALE","AZ","852602414",,,,,,,"7401 E. BUTHERUS DRIVE",,"SCOTTSDALE","AZ","852602414",,,,,,,"860217908","8004489666","334500","INTERFACE INC.",,"7401 E. BUTHERUS DRIVE",,"SCOTTSDALE","AZ","852602414",,,,,,,"860217908","8004489666",,,,"2011-08-23T10:18:25-0500","KEN GERARD",,,,,103,103,0,22,125,0,125,105,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825094119P030118366545001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"ADVANCED DRAINAGE SYSTEMS, INC. WELFARE BENEFIT PLAN TRUST","502","1983-04-01","ADVANCED DRAINAGE SYSTEMS, INC.",,,"4640 TRUEMAN BOULEVARD",,"HILLIARD","OH","430262438",,,,,,,,,,,,,,,,,,"510105665","8007337473","326100","ADVANCED DRAINAGE SYSTEMS, INC.",,"4640 TRUEMAN BOULEVARD",,"HILLIARD","OH","430262438",,,,,,,"510105665","8007337473",,,,"2011-08-25T09:40:32-0500","MARK B. STURGEON",,,,,2686,2745,0,0,2745,,,,,,,"4A4B4D4Q4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825113629P040547623504001","2010-02-01","2011-01-31","2",,"0","0","1","0","0","0","0","0","0",,"COMBINED JEWISH PHILANTHROPIES OF GREATER BOSTON, INC. GROUP SHORT TERM DISABILITY PLAN","505","2009-02-01","COMBINED JEWISH PHILANTHROPIES OF GREATER BOSTON, INC.",,,"126 HIGH STREET",,"BOSTON","MA","021102700",,,,,,,,,,,,,,,,,,"042103559","6174578505","813000","COMBINED JEWISH PHILANTHROPIES OF GREATER BOSTON, INC.",,"126 HIGH STREET",,"BOSTON","MA","021102700",,,,,,,"042103559","6174578505",,,,"2011-08-25T11:35:31-0500","SHARON CALLAHAN",,,,,113,117,0,0,117,,117,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110823101848P030117212849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PGT SAVINGS PLAN","001","1982-10-01","PGT INDUSTRIES, INC.",,,"1070 TECHNOLOGY DRIVE",,"NOKOMIS","FL","34275",,,,,,,,,,,,,,,,,,"592038649","9414801600","339900","PGT INDUSTRIES, INC.",,"1070 TECHNOLOGY DRIVE",,"NOKOMIS","FL","34275",,,,,,,"592038649","9414801600",,,,"2011-08-23T10:18:18-0500","JEFFREY T. JACKSON","2011-08-23T09:53:04-0500","RODNEY HERSHBERGER",,,2002,1188,0,396,1584,5,1589,1494,20,,"2E2F2G2J2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110824134031P040545196288001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOLAPPS, INC. 401(K) PLAN","001","2009-01-01","LOLAPPS, INC.",,,"116 NEW NONTGOMERY STREET, STE 700",,"SAN FRANCISCO","CA","94105",,,,,,,"116 NEW NONTGOMERY STREET, STE 700",,"SAN FRANCISCO","CA","94105",,,,,,,"262479330","4152430749","541511","LOLAPPS, INC.",,"116 NEW NONTGOMERY STREET, STE 700",,"SAN FRANCISCO","CA","94105",,,,,,,"262479330","4152430749",,,,"2011-08-24T12:45:36-0500","MARK OLSWING",,,,,37,21,0,8,29,0,29,19,0,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824151508P040017964834001","2010-02-01","2011-01-31","2",,,,,,,,,,,,"WOLD OIL PROPERTIES, INC. SELF FUNDED MEDICAL REIMBURSEMENT PLAN","501","2008-02-01","WOLD OIL PROPERTIES, INC.",,,"139 W. 2ND 200",,"CASPER","WY","82601",,,,,,,,,,,,,,,,,,"830260586","3072657252","211110","WOLD OIL PROPERTIES, INC.",,"139 W. 2ND 200",,"CASPER","WY","82601",,,,,,,"830260586","3072657252",,,,"2011-08-24T15:10:06-0500","DAVE SHELLENBERGER",,,,,16,13,0,0,13,,,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110825103715P030118393969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SISTERS OF SAINT FRANCIS EMPLOYEES' RETIREMENT PLAN","002","1995-09-01","SISTERS OF SAINT FRANCIS OF DUBUQUE",,,"3390 WINDSOR AVENUE",,"DUBUQUE","IA","52001",,,,,,,,,,,,,,,,,,"420757421","5635839786","813000","SISTERS OF SAINT FRANCIS OF DUBUQUE",,"3390 WINDSOR AVENUE",,"DUBUQUE","IA","52001",,,,,,,"420757421","5635839786",,,,"2011-08-25T10:36:11-0500","GERALDINE EITTER",,,,,160,155,3,4,162,0,162,120,1,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110822074823P040539193376001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FLAMHAFT, LEVY, HIRSCH & RENDEIRO PROFIT-SHARING PLAN","001","1997-01-01","FLAMHAFT, LEVY, HIRSCH & RENDEIRO, LLP",,,"16 COURT STREET",,"BROOKLYN","NY","11241",,,,,,,,,,,,,,,,,,"300224478","7182371900","541110","FLAMHAFT, LEVY, HIRSCH & RENDEIRO, LLP",,"16 COURT STREET",,"BROOKLYN","NY","11241",,,,,,,"300224478","7182371900",,,,"2011-08-22T07:48:17-0500","HAROLD LEVY","2011-08-22T07:48:17-0500","HAROLD LEVY",,,7,6,0,1,7,0,7,7,0,,"2A2E2G3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823145458P040120614865001","2008-04-01","2009-03-31","2",,"0","0","0","0","0","0","0","1","0",,"LOUREIRO ENGINEERING ASSOCIATES INC. CAFETERIA PLAN","501","2007-01-01","LOUREIRO ENGINEERING ASSOCIATES INC",,,"100 NORTHWEST DR",,"PLAINVILLE","CT","060621559",,,,,,,,,,,,,,,,,,"060918334","8604162979","541330","LOUREIRO ENGINEERING ASSOCIATES INC",,"100 NORTHWEST DR",,"PLAINVILLE","CT","060621559",,,,,,,"060918334","8604162979",,,,"2011-08-23T14:54:42-0500","JEFFREY LOUREIRO","2011-08-23T14:54:42-0500","JEFFREY LOUREIRO",,,127,111,1,0,112,0,,,,,,"4A4D4B4H4L4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823153009P040017871234001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"TRUCKMASTER ENTERPRISES INVESTMENT TRUST","001","2009-03-18","TRUCKMASTER ENTERPRISES, INC",,,"1908 KIPLING DR",,"FLOWER MOUND","TX","75022",,,,,,,,,,,,,,,,,,"264431885","9723553766","541990","TRUCKMASTER ENTERPRISES INC",,"1908 KIPLING DR",,"FLOWER MOUND","TX","75022",,,,,,,"264431885","9723553766",,,,"2011-08-10T08:06:52-0500","MIKE S MILLER",,,,,2,2,,,2,,2,2,,,"3D2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110823135607P040120583217001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"THE SILCHESTER INTERNATIONAL INVESTORS INTERNATIONAL VALUE EQUITY GROUP TRUST","001",,"SILCHESTER INTERNATIONAL INVESTORS LLP",,"SILCHESTER INTL INVESTORS, INC","780 THIRD AVENUE, 42ND FLOOR",,"NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"367045783","2123767560",,"NORTHERN TRUST COMPANY",,"50 S LA SALLE ST FL 8",,"CHICAGO","IL","606031006",,,,,,,"361561860","3124443366",,,,,,,,"2011-08-23T13:55:22-0500","MICHAEL C. MAYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-23",,"Filed with authorized/valid electronic signature", "20110823071452P040120402337001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BUTLER SCHEIN ANIMAL HEALTH EMPLOYEE WELFARE PLAN","502","1976-03-01","BUTLER ANIMAL HEALTH SUPPLY, LLC","BUTLER SCHEIN ANIMAL HEALTH SUPPLY",,"400 METRO PLACE NORTH",,"DUBLIN","OH","43017",,,,,,,"400 METRO PLACE NORTH",,"DUBLIN","OH","43017",,,,,,,"371507466","6147619095","424990","BUTLER ANIMAL HEALTH SUPPLY, LLC",,"400 METRO PLACE NORTH",,"DUBLIN","OH","43017",,,,,,,"371507466","6147619095",,,,"2011-08-23T07:09:12-0500","SALLY BAKER",,,,,918,837,48,0,885,0,885,0,0,,,"4A4B4D4E4H4I4L","1",,,"1","1",,,"1",,,,,,"1","7",,,,"FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824085748P040121061585001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","1","0",,"EPISCOPAL HIGH SCHOOL OF BATON ROUGE EMPLOYEE BENEFITS PLAN","501","1974-07-01","EPISCOPAL HIGH SCHOOL OF BATON ROUGE",,,"3200 WOODLAND RIDGE BLVD",,"BATON ROUGE","LA","708162743",,,,,,,,,,,,,,,,,,"720650540","2257533180","611000","EPISCOPAL HIGH SCHOOL OF BATON ROUGE",,"3200 WOODLAND RIDGE BLVD",,"BATON ROUGE","LA","708162743",,,,,,,"720650540","2257533180",,,,"2011-08-24T08:55:24-0500","PAUL BROWN",,,,,143,151,0,0,151,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824100541P030017252290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACCURATE AUTOBODY, INC. 401(K) PLAN","001","2008-01-01","ACCURATE AUTOBODY, INC.",,,"200 MAIN ST",,"NASHVILLE","TN","37213",,,,,,,,,,,,,,,,,,"200559850","6157263220","811120","ACCURATE AUTOBODY, INC.",,"200 MAIN ST",,"NASHVILLE","TN","37213",,,,,,,"200559850","6157263220",,,,"2011-08-24T10:04:52-0500","KIRK CAMPLIN",,,,,25,22,0,0,22,0,22,18,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824121557P040038241447001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JEFFREY D. EFIRD, DDS 401K PLAN","001","2003-01-01","JEFFREY D. EFIRD, DDS",,,"2 MCDOWELL STREET",,"ASHEVILLE","NC","288014104",,,,,,,,,,,,,,,,,,"561712450","8282526541","621210","JEFFREY D. EFIRD, DDS",,"2 MCDOWELL STREET",,"ASHEVILLE","NC","288014104",,,,,,,"561712450","8282526541",,,,"2011-08-24T12:11:47-0500","JEFFREY EFIRD",,,,,12,5,1,4,10,0,10,10,0,,"2E2G2J2K3D2F3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110825144956P030553105024001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUBLICIS BENEFITS CONNECTION BUSINESS TRAVEL & ACCIDENT INSURANCE PLAN","509","2004-01-01","MMS USA HOLDINGS, INC.",,,"35 W. WACKER DRIVE","12TH FLOOR","CHICAGO","IL","60601",,,,,,,,,,,,,,,,,,"362677628","8009333622","541800","MMS USA HOLDINGS, INC.",,"35 W. WACKER DRIVE","12TH FLOOR","CHICAGO","IL","60601",,,,,,,"362677628","8009333622",,,,"2011-08-25T14:49:14-0500","SHERYL FAVIA",,,,,3758,4110,,,4110,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110822100640P040119891585001","2008-01-01","2008-11-19","2",,,,"1","1",,,,,,,"ZY SOLUTIONS CORPORATION 401K PROFIT SHARING PLAN & TRUST","001","1999-01-01","ZY SOLUTIONS CORPORATION",,,"900 W. IL ROUTE 22 SUITE 140",,"LAKE ZURICH","IL","60047",,,,,,,,,,,,,,,,,,"364161904","8472427051","812990","ZY SOLUTIONS CORPORATION",,"900 W. IL ROUTE 22 SUITE 140",,"LAKE ZURICH","IL","60047",,,,,,,"364161904","8472427051",,,,"2011-08-22T11:06:16-0500","DAVID FRETWELL",,,,,10,0,0,0,0,0,0,0,0,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822121649P040017768098001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE STRIVE GROUP FLEXIBLE BENEFIT PLAN","501","1988-06-01","PRIDE CONTAINER CORPORATION",,,"350 N. CLARK STREET, SUITE 300",,"CHICAGO","IL","60654",,,,,,,,,,,,,,,,,,"362647607","3128804638","322200","PRIDE CONTAINER CORPORATION",,"350 N. CLARK STREET, SUITE 300",,"CHICAGO","IL","60654",,,,,,,"362647607","3128804638",,,,"2011-08-22T12:16:29-0500","BLAINE MASON",,,,,542,547,8,0,555,,,,,,,"4A4B4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",, "20110822130008P030017084578004","2010-04-01","2011-03-31","2",,,,,,,,,,,,"E.R. JAHNA INDUSTRIES, INC. HEALTH INSURANCE PLAN","501","1991-04-01","E.R. JAHNA INDUSTRIES, INC",,,"P.O. BOX 840",,"LAKE WALES","FL","33859",,,,,,,,,,,,,,,,,,"590874072","8636769431","212320","E.R. JAHNA INDUSTRIES, INC",,"P.O. BOX 840",,"LAKE WALES","FL","33859",,,,,,,"590874072","8636769431",,,,"2011-08-22T11:03:21-0500","J.A. JAHNA","2011-08-22T11:03:31-0500","J.A. JAHNA",,,217,157,0,0,157,,,,,,,"4A4B","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-08-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110823163810P040542886272001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"FINANCIAL FREEDOM SERVICES PENSION PLAN","001","1999-06-01","FINANCIAL FREEDOM LOANS, INC.",,,"2375 JEFFERSON STREET",,"CARLSBAD","CA","92008",,,,,,,,,,,,,,,,,,"330846135","7604347850","522292","FINANCIAL FREEDOM LOANS, INC.",,"2375 JEFFERSON STREET",,"CARLSBAD","CA","92008",,,,,,,"330846135","7604347850",,,,"2011-08-23T16:37:37-0500","D. L. MUHE",,,,,4,4,0,0,4,0,4,,0,,"1A1G3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110823164457P040017879378001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TECHNOLOGY ASSOCIATES INTERNATIONAL CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","002","2009-01-01","TECHNOLOGY ASSOCIATES INTERNATIONAL CORPORATION",,,"5930 PRIESTLY DRIVE",,"CARLSBAD","CA","92008",,,,,,,,,,,,,,,,,,"911973516","7606031195","541600","TECHNOLOGY ASSOCIATES INTERNATIONAL CORPORATION",,"5930 PRIESTLY DRIVE",,"CARLSBAD","CA","92008",,,,,,,"911973516","7606031195",,,,"2011-08-23T16:40:32-0500","KATHY TRZOS",,,,,256,240,0,0,240,0,240,236,0,,"2I2P3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-08-23","Filed with authorized/valid electronic signature",, "20110824081805P040121051169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GENWORTH FINANCIAL UMBRELLA WELFARE BENEFITS PLAN","501","2005-09-27","GENWORTH FINANCIAL, INC.",,,"6620 WEST BROAD STREET","BUILDING 1","RICHMOND","VA","232301721",,,,,,,,,,,,,,,,,,"331073076","8042816000","524140","GENWORTH FINANCIAL, INC.",,"6620 WEST BROAD STREET","BUILDING 1","RICHMOND","VA","232301721",,,,,,,"331073076","8042816000",,,,"2011-08-24T08:15:44-0500","MICHAEL J. MOORE",,,,,4576,4674,264,0,4938,,,,,,,"4A4B4D4E4F4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110824090416P030117765889001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"EPISCOPAL HIGH SCHOOL OF BATON ROUGE EMPLOYEE BENEFITS PLAN","501","1974-07-01","EPISCOPAL HIGH SCHOOL OF BATON ROUGE",,,"3200 WOODLAND RIDGE BLVD",,"BATON ROUGE","LA","708162743",,,,,,,,,,,,,,,,,,"720650540","2257533180","611000","EPISCOPAL HIGH SCHOOL OF BATON ROUGE",,"3200 WOODLAND RIDGE BLVD",,"BATON ROUGE","LA","708162743",,,,,,,"720650540","2257533180",,,,"2011-08-24T08:58:35-0500","PAUL BROWN",,,,,151,156,0,0,156,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-08-24","Filed with authorized/valid electronic signature",, "20110825164245P030553335440002","2010-02-01","2011-01-31","2",,,,,,,,,,,,"MEMPHIS ZOOLOGICAL SOCIETY LONG TERM DISABILITY PLAN","501","2005-02-01","MEMPHIS ZOOLOGICAL SOCIETY",,,"2000 PRENTISS PLACE",,"MEMPHIS","TN","38112",,,,,,,,,,,,,,,,,,"237236155","9013336500","712100","MEMPHIS ZOOLOGICAL SOCIETY",,"2000 PRENTISS PLACE",,"MEMPHIS","TN","38112",,,,,,,"237236155","9013336500",,,,"2011-08-25T11:04:42-0500","JOY MOORE ADAMS",,,,,128,130,,,130,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825164245P030553335440004","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"KATEE SALES, INC DENTAL PLAN","701","2010-01-01","KATEE SALES, INC",,,"PO BOX 10",,"LAKE DELTON","WI","53940",,,,,,,,,,,,,,,,,,"391788825","6082532750","541600","KATEE SALES, INC",,"PO BOX 10",,"LAKE DELTON","WI","53940",,,,,,,"391788825","6082532750",,,,"2011-09-15T10:07:23-0500","TOM WAKEFIELD","2011-09-15T10:07:23-0500","TOM WAKEFIELD",,,73,73,,,73,,,,,,,"4D","1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110826123428P030119009217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GROWTH HORIZONS, INC. WELFARE PLAN","501","1999-11-01","GROWTH HORIZONS, INC.",,,"25 HOOKS LANE, STE 202",,"BALTIMORE","MD","21208",,,,,,,,,,,,,,,,,,"232109753","4106530944","621498","GROWTH HORIZONS, INC.",,"25 HOOKS LANE, STE 202",,"BALTIMORE","MD","21208",,,,,,,"232109753","4106530944",,,,"2011-08-26T12:33:43-0500","BARBARA COLLINS",,,,,252,242,0,0,242,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110826082214P030118884225001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"JULIAN J. RODRIGUEZ PROFIT SHARING PLAN","001","1987-02-11","JULIAN J. RODRIGUEZ, PA",,,"95 MERRICK WAY","SUITE 250","CORAL GABLES","FL","33134",,,,,,,"95 MERRICK WAY","SUITE 250","CORAL GABLES","FL","33134",,,,,,,"592597590","3054450777","541211","JULIAN J. RODRIGUEZ, PA",,"95 MERRICK WAY","SUITE 250","CORAL GABLES","FL","33134",,,,,,,"592597590","3054450777",,,,"2011-08-26T08:21:50-0500","JULIAN RODRIGUEZ",,,,,7,8,1,,9,,9,8,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110827232056P030038149175001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GILBERT L URATA DMD","001","1993-01-01","GILBERT L URATA DMD",,,"BOX 518",,"CORDOVA","AK","99574",,,,,,,"BOX 518",,"CORDOVA","AK","99574",,,,,,,"920085507","9074247318","621210","GILBERT L URATA DMD",,"BOX 518",,"CORDOVA","AK","99574",,,,,,,"920085507","9074247318",,,,"2011-08-27T23:19:04-0500","GILBERT URATA",,,,,2,2,,,2,,2,,,,,,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-28","Filed with authorized/valid electronic signature",, "20110829115050P030563439120001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"AMES TRUE TEMPER RETIREMENT SAVINGS AND INVESTMENT PLAN","411","2002-01-14","AMES TRUE TEMPER, INC.",,,"465 RAILROAD AVE",,"CAMP HILL","PA","17011",,,,,,,,,,,,,,,,,,"222335400","7177302508","332510","AMES TRUE TEMPER, INC.",,"465 RAILROAD AVE",,"CAMP HILL","PA","17011",,,,,,,"222335400","7177302508",,,,"2011-08-29T12:02:13-0500","ISABELLA ALEXANDER","2011-08-29T12:50:40-0500","CHRIS EBLING",,,1473,1060,2,314,1376,3,1379,922,1,,"2F2G2J2K2R2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110825170755P040121845313001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"POKEMON USA RETIREMENT SAVINGS PLAN","001","2002-01-01","THE POKEMON COMPANY INTERNATIONAL",,,"333 108TH AVE NE","SUITE 1900","BELLEVUE","WA","98004",,,,,,,"333 108TH AVE NE","SUITE 1900","BELLEVUE","WA","98004",,,,,,,"134171476","4252744800","423920","THE POKEMON COMPANY INTERNATIONAL",,"333 108TH AVE NE","SUITE 1900","BELLEVUE","WA","98004",,,,,,,"134171476","4252744800",,,,"2011-08-25T16:15:08-0500","TODD STROH","2011-08-25T16:47:11-0500","DOUGLAS FERGSUON",,,122,120,0,19,139,0,139,100,2,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110826133019P040018139634001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"PAULUS PRECISION MACHINE INC 401(K) PLAN","001","2010-01-01","PAULUS PRECISION MACHINE, INC.",,,"7223 SOMERSET LANE",,"AUBREY","TX","76227",,,,,,,,,,,,,,,,,,"752959875","9405665600","811110","PAULUS PRECISION MACHINE, INC.",,"7223 SOMERSET LANE",,"AUBREY","TX","76227",,,,,,,"752959875","9405665600",,,,"2011-08-26T13:28:49-0500","RICK PAULUS",,,,,0,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110828114818P030038260071001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"AMERICAN PROSTHETICS, INC. PROFIT SHARING PLAN","001","1986-07-01","AMERICAN PROSTHETICS, INC. PROFIT SHARING PLAN",,,"2754 NORTH DECATUR ROAD, SUITE 102",,"DECATUR","GA","30033",,,,,,,"2754 NORTH DECATUR ROAD, SUITE 102",,"DECATUR","GA","30033",,,,,,,"581644976","4042962088","621399","AMERICAN PROSTHETICS, INC. PROFIT SHARING PLAN",,"2754 NORTH DECATUR ROAD, SUITE 102",,"DECATUR","GA","30033",,,,,,,"581644976","4042962088",,,,"2011-08-28T11:44:33-0500","HANIF CHAUDHARY",,,,,6,3,,3,6,,6,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-28","Filed with authorized/valid electronic signature",, "20110825074836P040003680371001","2010-09-15","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"TMA ADVENTURES INC. PROFIT SHARING PLAN","001","2010-09-15","TMA ADVENTURES INC.",,,"1250 CORONA POINTE COURT SUITE 302",,"CORONA","CA","92879",,,,,,,,,,,,,,,,,,"273467248","9512799565","624100","TMA ADVENTURES INC.",,"1250 CORONA POINTE COURT SUITE 302",,"CORONA","CA","92879",,,,,,,"273467248","9512799565",,,,"2011-08-23T15:50:28-0500","DARIN JOHNSTON",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110826152028P040122398481001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","1","0","0","0",,"SHEET METAL WORKERS LOCAL 44 ANNUNITY FUND","002","1983-01-01","TRUSTEES OF THE SHEET METAL WORKERS LOCAL 44",,,"248 PARRIAH STREET",,"WILKES BARRE","PA","18702",,,,,,,"248 PARRIAH STREET",,"WILKES BARRE","PA","18702",,,,,,,"236751172","5708224781","525100","SVS ASSOCIATES INC",,"249 PARISH STREET",,"WILKES BARRE","PA","18702",,,,,,,"232406253","5708294634",,,,"2011-08-12T15:05:44-0500","TERRI SCHATZEL","2011-08-15T07:40:38-0500","WARREN FAUST",,,486,412,14,64,490,0,490,490,0,0,"2C",,"1",,"1",,"1",,"1",,,,,"1",,"1",,"1",,,"FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110825133953P030118471889001","2008-06-01","2009-05-31","2",,"0","0","0","0","0","0","0","1","0",,"GROUP LIFE AD&D SHORT AND LONG TERM DISABILITY FOR EMPLOYEES OF GOVERNORS AMERICA CORPORATION","503","2003-06-01","GOVERNORS AMERICA CORPORATION",,,"720 SILVER STREET",,"AGAWAM","MA","01001",,,,,,,"720 SILVER STREET",,"AGAWAM","MA","01001",,,,,,,"042921953","4137865600","335900","GOVERNORS AMERICA CORPORATION",,"720 SILVER STREET",,"AGAWAM","MA","01001",,,,,,,"042921953","4137865600",,,,"2011-08-25T13:26:49-0500","WILLIAM FERRY",,,,,134,121,,,121,,121,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825135326P040121769777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ASR GROUP INSURANCE FOR HOURLY EMPLOYEES","501","1977-09-30","ENERGIZER HOLDINGS, INC.",,,"533 MARYVILLE UNIVERSITY DRIVE",,"ST. LOUIS","MO","63141",,,,,,,"ONE RAZOR BLADE LANE",,"VERONA","VA","24482",,,,,,,"431863181","3149852000","332900","AMERICAN SAFETY RAZOR COMPANY",,"ONE RAZOR BLADE LANE",,"VERONA","VA","24482",,,,,,,"541050207","5402488000","AMERICAN SAFETY RAZOR COMPANY","541050207","501","2011-08-24T08:48:31-0500","CAREN JARRELL",,,,,191,100,69,,169,,169,,,,,"4A4B4D4F4H4L","1",,"1","1","1",,"1","1",,,,"1",,"1","5","1",,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825135512P030118477057001","2009-01-01","2009-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NATIONAL DENTEX CORPORATION BENEFITS PLUS PLAN","502","1986-02-10","NATIONAL DENTEX CORPORATION",,,"RICHARD BECKER","2 VISION DRIVE, 3RD FLOOR","NATICK","MA","01760",,,,,,,,,,,,,,,,,,"042762050","5089077800","339900","NATIONAL DENTEX CORPORATION",,"RICHARD BECKER","2 VISION DRIVE, 3RD FLOOR","NATICK","MA","01760",,,,,,,"042762050","5089077800",,,,"2011-08-25T13:54:51-0500","MIKE SCHANTZ",,,,,976,854,29,0,883,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","12","0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825135517P030552982864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KELLER GROUP, INC. - GROUP TERM LIFE","501","1998-01-01","KELLER GROUP, INC.",,,"160 LARKIN WILLIAMS IND CT",,"FENTON","MO","63026",,,,,,,,,,,,,,,,,,"430905471","6367171755","621510","KELLER GROUP, INC.",,"160 LARKIN WILLIAMS IND CT",,"FENTON","MO","63026",,,,,,,"430905471","6367171755",,,,"2011-08-25T13:55:14-0500","MIKE SCHANTZ",,,,,219,220,0,0,220,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110826084017P040122226289001","2011-01-01","2011-05-09","2",,"0","0","1","1","0","0","0","0","0",,"CHANTY, INC. 401(K) PLAN","001","1999-07-01","CHANTY, INC.",,,"12 MORGAN STREET",,"WENHAM","MA","01984",,,,,,,,,,,,,,,,,,"043443191","9784681680","445120","CHANTY, INC.",,"12 MORGAN STREET",,"WENHAM","MA","01984",,,,,,,"043443191","9784681680",,,,"2011-08-26T08:39:02-0500","PETER PANAGOPLOS","2011-08-26T08:39:02-0500","PETER PANAGOPLOS",,,17,0,0,0,0,0,0,0,0,,"2E2G2J2K2F3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110826103138P030555340560001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INTRAL 401(K) & PROFIT SHARING PLAN","001","1987-07-01","INTRAL CORPORATION",,,"88 BLACK FALCON AVE, SUITE 202",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"042969998","6174395875","541990","INTRAL CORPORATION",,"88 BLACK FALCON AVE, SUITE 202",,"BOSTON","MA","02210",,,,,,,"042969998","6174395875",,,,"2011-08-25T10:33:09-0500","JEANNE BARNEY","2011-08-25T13:27:40-0500","KENNETH C BARNEY",,,23,14,1,9,24,0,24,21,0,,"2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110826160953P030017444098001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEVEN SWORDS, D.M.D., P.C. PROFIT SHARING PLAN","001","1997-07-01","STEVEN P. SWORDS, D.M.D., P.C.",,,"6233 VETERANS PKWY",,"COLUMBUS","GA","31909",,,,,,,,,,,,,,,,,,"223846899",,"621210","STEVEN P. SWORDS, D.M.D., P.C.",,"6233 VETERANS PKWY",,"COLUMBUS","GA","31909",,,,,,,"223846899",,,,,"2011-08-26T16:08:51-0500","STEVEN P. SWORDS, D.M.D.",,,,,6,6,0,0,6,0,6,6,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110821165630P030116242673001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WESTERN PENNSYLVANIA CONSERVANCY MATCHING DEFINED CONTRIBUTION PLAN","002","1999-01-01","WESTERN PENNSYLVANIA CONSERVANCY",,,"800 WATERFRONT DRIVE",,"PITTSBURGH","PA","15222",,,,,,,,,,,,,,,,,,"251053485","7243291441","813000","WESTERN PENNSYLVANIA CONSERVANCY",,"800 WATERFRONT DRIVE",,"PITTSBURGH","PA","15222",,,,,,,"251053485","7243291441",,,,"2011-08-21T11:06:04-0500","CONSTANCE L. EADS",,,,,234,171,0,68,239,0,239,198,0,,"2G2L",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-08-21","Filed with authorized/valid electronic signature",, "20110825115428P030118430497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AGA PUERTO RICO CORPORATION MONEY PURCHASE PENSION PLAN","001","1991-01-01","AGA PUERTO RICO CORPORATION",,,"STATE ROAD 69, KM 1.8","BARIO PALMAS","CATANO","PR","00962",,,,,,,"STATE ROAD 69, KM 1.8","BARIO PALMAS","CATANO","PR","00962",,,,,,,"660374705","7877881742","325900","AGA PUERTO RICO CORPORATION",,"STATE ROAD 69, KM 1.8","BARIO PALMAS","CATANO","PR","00962",,,,,,,"660374705","7877881742",,,,"2011-08-25T11:36:34-0500","ROBERTO SCHRODER",,,,,35,27,1,7,35,0,35,31,2,,"2J3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825135804P040121771681001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"THE S. KANN SONS COMPANY PENSION PLAN","001","1980-02-01","THE S. KANN SONS COMPANY",,,"2 WISCONSIN CIRCLE, SUITE 630",,"CHEVY CHASE","MD","208157058",,,,,,,,,,,,,,,,,,"530092120","3019861949","531120","COMMITTEE, THE S. KANN SONS COMPANY",,"2 WISCONSIN CIRCLE, SUITE 630",,"CHEVY CHASE","MD","208157058",,,,,,,"530092120","3019861949",,,,"2011-08-25T12:42:47-0500","B. BERNEI BURGUNDER, JR.",,,,,2,1,1,,2,0,2,,0,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825140106P040547914336001","2010-01-01","2010-12-31","4","M","0","0","1","0","0","0","0","0","0",,"PEPSIAMERICAS, INC. DEFINED CONTRIBUTION MASTER TRUST","001",,"PEPSICO, INC.",,"ERIK A. SOSSA 2/2","700 ANDERSON HILL ROAD",,"PURCHASE","NY","105771444",,,,,,,,,,,,,,,,,,"043785520","9142532000",,"PEPSICO, INC.","ERIK A. SOSSA 2/2","700 ANDERSON HILL ROAD",,"PURCHASE","NY","105771444",,,,,,,"043785520","9142532000",,,,"2011-08-25T13:51:19-0500","ERIK SOSSA",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110826122110P040122316353001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"THE MATCOR RETIREMENT PLAN","005","1983-09-01","MATCOR AUTOMOTIVE MICHIGAN, INC.",,,"401 S STEELE ST",,"IONIA","MI","488469401",,,,,,,,,,,,,,,,,,"421769431","6165274050","332110","MATCOR AUTOMOTIVE MICHIGAN, INC.",,"401 S STEELE ST",,"IONIA","MI","488469401",,,,,,,"421769431","6165274050",,,,"2011-08-26T12:21:05-0500","TIM OESCHGER","2011-08-26T12:21:05-0500","TIM OESCHGER",,,1477,277,0,219,496,1,497,386,48,,"2E2F2G2J2K2S2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110826122534P030017430562001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ST. FRANCIS HOSPITAL EMPLOYEE RETIREMENT AND SAVINGS PLAN - TSA","002","1988-10-01","ST. FRANCIS HOSPITAL, INC.",,,"2122 MANCHESTER EXPRESSWAY",,"COLUMBUS","GA","31908",,,,,,,,,,,,,,,,,,"580641240","7063202757","622000","ST. FRANCIS HOSPITAL, INC.",,"2122 MANCHESTER EXPRESSWAY",,"COLUMBUS","GA","31908",,,,,,,"580641240","7063202757",,,,"2011-08-26T12:24:36-0500","MONIKA SANDERS",,,,,2257,1918,6,332,2256,0,2256,720,0,,"2G2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110826120437P040550343664001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"GROUP LIFE & AD&D INSURANCE FOR IRVINGTON RADIOLOGISTS, P.C.","510","2009-01-01","IRVINGTON RADIOLOGISTS, P.C.",,,"7340 SHADELAND STATION, SUITE 200",,"INDIANAPOLIS","IN","462563980",,,,,,,,,,,,,,,,,,"351984674","3175792150","621111","IRVINGTON RADIOLOGISTS, P.C.",,"7340 SHADELAND STATION, SUITE 200",,"INDIANAPOLIS","IN","462563980",,,,,,,"351984674","3175792150",,,,"2011-08-26T12:03:17-0500","PAT MANNING",,,,,103,103,0,0,103,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110825153137P040018061042001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RCP 401K PLAN","001","2002-01-01","REVENUE CYCLE PARTNERS, LLC",,,"1643 LEWIS AVENUE SUITE 212",,"BILLINGS","MT","591024151",,,,,,,,,,,,,,,,,,"810542177","4062384785","541990","REVENUE CYCLE PARTNERS, LLC",,"1643 LEWIS AVENUE SUITE 212",,"BILLINGS","MT","59102",,,,,,,"810542177","4062522868",,,,"2011-08-25T15:16:15-0500","JEFF KESSLER",,,,,192,161,0,10,171,0,171,127,0,,"2E2F2G2J2K3D3H2T3B",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110826170225P040122444785001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"LEWIS OPERATING CORP. 401(K) PLAN","001","1999-02-01","LEWIS OPERATING CORP.",,,"1156 N. MOUNTAIN AVENUE",,"UPLAND","CA","91785",,,,,,,"1156 N. MOUNTAIN AVENUE",,"UPLAND","CA","91785",,,,,,,"330830657","9099850971","531390","LEWIS OPERATING CORP.",,"1156 N. MOUNTAIN AVENUE",,"UPLAND","CA","91785",,,,,,,"330830657","9099850971",,,,"2011-08-26T17:01:51-0500","PHILLIP BURBACH",,,,,458,368,0,77,445,3,448,327,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110825200539P040121921393001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"RTM 3LB INC., 401(K) PLAN","001","2006-03-01","RTM 3LB INC.",,,"346 VAN WAGNER ROAD",,"POUGHKEEPSIE","NY","12603",,,,,,,,,,,,,,,,,,"204554077","8454830383","713900","RTM 3LB INC.",,"346 VAN WAGNER ROAD",,"POUGHKEEPSIE","NY","12603",,,,,,,"204554077","8454830383",,,,"2011-08-25T20:05:11-0500","MARY ANN CASTRO","2011-08-25T20:05:11-0500","MARY ANN CASTRO",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D3H3B",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110825220040P030037658455001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RS MEDICAL DISABILITY INSURANCE PLAN","502","2004-06-01","INTERNATIONAL REHABILITATIVE SCIENC ES, INC","RS MEDICAL",,"14001 SE FIRST STREET",,"VANCOUVER","WA","98684",,,,,,,,,,,,,,,,,,"911490213","3608920339","454390","INTERNATIONAL REHABILITATIVE SCIENC ES INC",,"14001 SE FIRST STREET",,"VANCOUVER","WA","98684",,,,,,,"911490213","3608920339",,,,"2011-08-25T17:51:15-0500","THOMAS A PIERCE",,,,,350,374,,,374,,374,,,,,"4H4F","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110826151735P040122397569001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"INDIAN INDUSTRIES, INC. EMPLOYEE HEALTH PLAN","501","1968-09-01","INDIAN INDUSTRIES, INC.","ESCALADE SPORTS","STEPHEN WAWRIN","PO BOX 889",,"EVANSVILLE","IN","47706",,,,,,,"817 MAXWELL AVENUE",,"EVANSVILLE","IN","47711",,,,,,,"351290268","8124671200","339900","INDIAN INDUSTRIES, INC.","STEPHEN WAWRIN","PO BOX 889",,"EVANSVILLE","IN","47706",,,,,,,"351290268","8124671200",,,,"2011-08-26T15:16:45-0500","ALICIA MEHRINGER",,,,,94,95,,,95,,95,,,,,"4A4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110825120008P030017340690001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"TOP QUALITY TRIM PROFIT SHARING","001","1991-05-31","TOP QUALITY TRIM, INC.",,,"1659 REDWING LANE",,"BROOMFIELD","CO","80020",,,,,,,,,,,,,,,,,,"840913163","3039148414","238300","TOP QUALITY TRIM, INC.",,"1659 REDWING LANE",,"BROOMFIELD","CO","80020",,,,,,,"840913163","3039148414",,,,"2011-08-25T12:41:08-0500","PATRICK DINKEL","2011-08-25T12:41:19-0500","PATRICK DINKEL",,,3,3,0,0,3,0,3,3,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110825152602P040121806001002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NOBLE DRILLING CORPORATION EMPLOYEE BENEFIT PLAN","503","1985-08-01","NOBLE DRILLING CORPORATION",,,"13135 SOUTH DAIRY ASHFORD, STE 800",,"SUGAR LAND","TX","77478",,,,,,,,,,,,,,,,,,"730374541","2812766100","211110","NOBLE DRILLING CORPORATION",,"13135 SOUTH DAIRY ASHFORD, STE 800",,"SUGAR LAND","TX","77478",,,,,,,"730374541","2812766100",,,,"2011-08-25T10:09:49-0500","AMY CATE",,,,,1808,1713,20,,1733,,,,,,,"4A4D","1",,,"1","1",,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110825152753P040121807137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOEDER OIL COMPANY, INC. 401(K) PLAN","001","2009-01-01","MOEDER OIL COMPANY, INC.",,,"PO BOX 653",,"GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"481185563","6207921203","424700","MOEDER OIL COMPANY, INC.",,"PO BOX 653",,"GREAT BEND","KS","67530",,,,,,,"481185563","6207921203",,,,"2011-08-25T15:26:20-0500","KATHY RICKER",,,,,19,21,0,0,21,0,21,21,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",, "20110826121604P040122315025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCCLAUGHERTY & SILVER, P.C. 401(K) PROFIT SHARING PLAN","001","1995-03-31","MCCLAUGHERTY & SILVER, P.C.",,,"55 OLD SANTA FE TRAIL",,"SANTA FE","NM","87501",,,,,,,,,,,,,,,,,,"850294565","5059888804","541110","MCCLAUGHERTY & SILVER, P.C.",,"55 OLD SANTA FE TRAIL",,"SANTA FE","NM","87501",,,,,,,"850294565","5059888804",,,,"2011-08-26T11:45:53-0500","JOHN K. SILVER","2011-08-26T11:45:53-0500","JOHN K. SILVER",,,7,6,0,1,7,0,7,7,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110826181427P040122469633001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"PEPSI-COLA BOTTLING COMPANY OF HICKORY, NC, INC.","501","2008-05-01","PEPSI-COLA BOTTLING COMPANY OF HICKORY, NC, INC.",,,"2401 14TH AVENUE CIRCLE, NW",,"HICKORY","NC","28601",,,,,,,,,,,,,,,,,,"560585594","8283228090","312110","PEPSI-COLA BOTTLING COMPANY OF HICKORY, NC, INC.",,"2401 14TH AVENUE CIRCLE, NW",,"HICKORY","NC","28601",,,,,,,"560585594","8283228090",,,,"2011-08-26T18:14:22-0500","ERIC S. PLEMMONS",,,,,328,327,0,0,327,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110829094958P040557813344001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TCHEFUNCTE CARDIOVASCULAR ASSOC. 401(K) PLAN","002","1999-01-01","TCHEFUNCTE CARDIOVASCULAR ASSC APMC",,,"101 E. FAIRWAY DRIVE, SUITE 504",,"COVINGTON","LA","70433",,,,,,,,,,,,,,,,,,"721420795","9858718227","621111","TCHEFUNCTE CARDIOVASCULAR ASSC APMC",,"101 E. FAIRWAY DRIVE, SUITE 504",,"COVINGTON","LA","70433",,,,,,,"721420795","9858718227",,,,"2011-08-29T09:49:42-0500","GABRIEL LASALA, MD",,,,,45,45,0,3,48,0,48,48,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110829113721P040558041248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHN VERIHA TRUCKING, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","1991-01-01","JOHN VERIHA TRUCKING, INC.",,,"PO BOX 465",,"MARINETTE","WI","54143",,,,,,,,,,,,,,,,,,"391474414","7157324431","484120","JOHN VERIHA TRUCKING, INC.",,"PO BOX 465",,"MARINETTE","WI","54143",,,,,,,"391474414","7157324431",,,,"2011-08-29T11:36:52-0500","KAREN SMERCHEK",,,,,246,274,0,6,280,0,280,108,6,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110829113954P040124069153001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"R.E. LORENZ CONSTRUCTION INC. PROFIT SHARING PLAN","001","2001-01-01","R.E. LORENZ CONSTRUCTION INC.",,,"1200 RANSOM ROAD",,"LANCASTER","NY","14086",,,,,,,"1200 RANSOM ROAD",,"LANCASTER","NY","14086",,,,,,,"161580481","7166847078","236200","R.E. LORENZ CONSTRUCTION INC.","FRANCES LORENZ","1200 RANSOM ROAD",,"LANCASTER","NY","14086",,,,,,,"161580481","7166847078",,,,"2011-06-09T10:08:30-0500","FRANCES L. LORENZ",,,,,5,5,,,5,0,5,5,0,,"2E3E2F2G",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110826140414P030555757856001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COX CHEVROLET 401(K) PLAN","001","1995-01-01","COX CHEVROLET, INCORPORATED",,,"2900 CORTEZ RD WEST",,"BRADENTON","FL","34207",,,,,,,,,,,,,,,,,,"590862389","9417560621","441110","COX CHEVROLET, INCORPORATED",,"2900 CORTEZ RD WEST",,"BRADENTON","FL","34207",,,,,,,"590862389","9417560621",,,,"2011-08-26T14:00:22-0500","ED COX",,,,,122,98,0,29,127,0,127,84,15,,"3D2E2J3H2K2F2G2T",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110826140645P030037809383001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANTHONY H DEBARROS 401 K PROFIT SHARING PLAN","001","2003-01-01","ANTHONY H DEBARROS",,,"BOX 105",,"DARTMOUTH","MA","02714",,,,,,,"BOX 105",,"DARTMOUTH","MA","02714",,,,,,,"200342628","5086366155","621111","ANTHONY H DEBARROS",,"BOX 105",,"DARTMOUTH","MA","02714",,,,,,,"200342628","5086366155",,,,"2011-08-26T11:52:52-0500","ANTHONY DEBARROS",,,,,1,1,0,0,1,0,1,1,0,,"2E2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110826094336P040122253041001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"SAMFORD UNIVERSITY BUSINESS TRAVEL ACCIDENTAL DEATH PLAN","505","1970-09-01","SAMFORD UNIVERSITY",,,"800 LAKESHORE DRIVE",,"BIRMINGHAM","AL","35229",,,,,,,"800 LAKESHORE DRIVE",,"BIRMINGHAM","AL","35229",,,,,,,"630312914","2057262837","611000","SAMFORD UNIVERSITY",,"800 LAKESHORE DRIVE",,"BIRMINGHAM","AL","35229",,,,,,,"630312914","2057262837",,,,"2011-08-19T16:13:33-0500","CHARLES ROGAN",,,,,881,837,0,0,837,0,837,,,,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110826152305P040122399521001","2010-01-01","2010-12-31","3",,"0",,"0","0","1",,"1",,,,"TILLER CORPORATION & BRYAN ROCK PRODUCTS, INC. 401(K) PLAN","002","1985-12-01","TILLER CORPORATION",,,"7200 HEMLOCK LN N",,"MAPLE GROVE","MN","553695576",,,,,,,,,,,,,,,,,,"411408578","7634254191","212310","TILLER CORPORATION",,"7200 HEMLOCK LN N",,"MAPLE GROVE","MN","553695576",,,,,,,"411408578","7634254191","BRYAN ROCK PRODUCTS INC",,,"2011-08-26T15:22:59-0500","STEVEN SAUER","2011-08-26T15:22:59-0500","STEVEN SAUER",,,177,147,0,23,170,0,170,166,4,,"2E2F2G2J2K2S2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110829154743P030120786289001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BI-COUNTY MEDICAL 401(K) P/S/P & TRUST","001","2002-06-01","BI-COUNTY MEDICAL ASSOCIATES",,,"735 DAVISVILLE RD",,"SOUTHAMPTON","PA","18966",,,,,,,"735 DAVISVILLE RD",,"SOUTHAMPTON","PA","18966",,,,,,,"232981356","2153227854","621111","BI-COUNTY MEDICAL ASSOCIATES",,"735 DAVISVILLE RD",,"SOUTHAMPTON","PA","18966",,,,,,,"232981356","2153227854",,,,"2011-08-25T12:30:20-0500","CARL WENZEL",,,,,2,0,0,2,2,0,2,2,0,,"2E2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-29","Filed with authorized/valid electronic signature",, "20110825121236P040121727713001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"SONIC HEALTH & WELFARE PLAN","501","1997-01-01","SONIC MANUFACTURING TECHNOLOGIES",,,"48133 WARM SPRINGS BLVD",,"FREMONT","CA","945397498",,,,,,,,,,,,,,,,,,"770432998","5104920900","334110","SONIC MANUFACTURING TECHNOLOGIES",,"48133 WARM SPRINGS BLVD",,"FREMONT","CA","945397498",,,,,,,"770432998","5104920900",,,,"2011-08-25T12:10:33-0500","KIRAN KAUR","2011-08-25T12:12:11-0500","KENNETH RAAB",,,192,229,2,0,231,,,,,,,"4A4B4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-08-25","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110826152943P030555913984001","2010-10-01","2011-01-31","2",,"0","0","1","1","0","0","0","0","0",,"WACO MEAT SERVICE, INC. 401(K) PLAN","001","1962-04-16","WACO MEAT SERVICE, INC.",,,"209 OTIS DRIVE",,"WACO","TX","76714",,,,,,,,,,,,,,,,,,"741445393","2547725644","111100","WACO MEAT SERVICE, INC.",,"209 OTIS DRIVE",,"WACO","TX","76714",,,,,,,"741445393","2547725644",,,,"2011-08-26T15:25:49-0500","JAMES KASMIROSKI",,,,,30,0,0,0,0,0,0,0,0,,"2E2F2H2J2K2T3D","4B","0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-26","Filed with authorized/valid electronic signature",, "20110903181935P040572301632001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","1","0","0",,"JOHN P. HOLLAND, MD, PC - PROFIT SHARING PLAN","002","1993-12-31","JOHN P. HOLLAND, MD, PC",,"JOHN P. HOLLAND","9226 MILBURN LOOP SE",,"OLYMPIA","WA","98513",,,,,,,"9226 MILBURN LOOP SE",,"OLYMPIA","WA","98513",,,,,,,"911552971","2062005020","621111","JOHN P. HOLLAND, MD, PC","JOHN P. HOLLAND","9226 MILBURN LOOP SE",,"OLYMPIA","WA","98513",,,,,,,"911552971","2062005020",,,,"2011-09-03T18:18:03-0500","JOHN HOLLAND",,,,,4,4,0,0,4,0,4,4,0,,"2E2R3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-03","Filed with authorized/valid electronic signature",, "20110904085504P030124212161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PODIATRY ASSOCIATES OF CINCINNATI, INC. PROFIT SHARING PLAN","001","2003-01-01","PODIATRY ASSOCIATES OF CINCINNATI, INC.",,,"8404 BEECHMONT AVE",,"CINCINNATI","OH","452554781",,,,,,,,,,,,,,,,,,"113658721","5134744450","621391","PODIATRY ASSOCIATES OF CINCINNATI, INC.",,"8404 BEECHMONT AVE",,"CINCINNATI","OH","452554781",,,,,,,"113658721","5134744450",,,,"2011-09-04T08:40:18-0500","ANTHONY DALLALIO",,,,,23,17,0,3,20,0,20,20,0,,"2E2F2G2J2K2R3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-04","Filed with authorized/valid electronic signature",, "20110831123333P030003590243001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"BROMBERG & COHEN, P.C. 401K PROFIT SHARING PLAN","001","1994-04-01","BROMBERG & COHEN, P.C.",,,"1370 CENTER DRIVE","SUITE 202","ATLANTA","GA","30338",,,,,,,,,,,,,,,,,,"581593573","7703943281","541211","BROMBERG & COHEN, P.C.",,"1370 CENTER DRIVE","SUITE 202","ATLANTA","GA","30338",,,,,,,"581593573","7703943281",,,,"2011-08-31T12:33:33-0500","SAM BROMBERG",,,,,2,0,0,2,2,0,2,2,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831124036P040018565970001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAIGE PRODUCTS, INC. PROFIT SHARING PLAN","004","1986-01-01","DAIGE PRODUCTS, INC.",,,"1 ALBERTSON AVENUE",,"ALBERTSON","NY","11507",,,,,,,,,,,,,,,,,,"112113004","5166212100","334110","DAIGE PRODUCTS, INC.",,"1 ALBERTSON AVENUE",,"ALBERTSON","NY","11507",,,,,,,"112113004","5166212100",,,,"2011-08-24T08:03:07-0500","IKE HARRIS",,,,,5,5,0,0,5,0,5,5,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831124356P040563663072001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"T P DESIGN INC PROFIT SHARING PLAN AND TRUST","001","1997-01-01","T P DESIGN INC",,,"7007 EAGLE WATCH CT",,"STONE MOUNTAIN","GA","300875471",,,,,,,"7007 EAGLE WATCH CT",,"STONE MOUNTAIN","GA","300875471",,,,,,,"582089336","7704138276","541400","T P DESIGN INC",,"7007 EAGLE WATCH CT",,"STONE MOUNTAIN","GA","300875471",,,,,,,"582089336","7704138276",,,,"2011-08-31T12:25:54-0500","STEPHANIE TAYLOR",,,,,4,3,0,1,4,0,4,4,0,,"2E2H3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831130949P030121950881001","2010-03-06","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"RSMS CORPORATION 401K PLAN","001","2010-03-06","RSMS CORPORATION",,,"22096 EAST HOOVER DRIVE",,"AURORA","CO","80016",,,,,,,,,,,,,,,,,,"272065962","3039555719","524210","RSMS CORPORATION",,"22096 EAST HOOVER DRIVE",,"AURORA","CO","80016",,,,,,,"272065962","3039555719",,,,"2011-08-31T13:08:51-0500","ROBERT SWANSON","2011-08-31T13:08:51-0500","ROBERT SWANSON",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901121312P030122551521001","2010-04-01","2011-03-31","3",,"0","1","0","0","1",,,,,,"BRADY COMPANY CALIFORNIA 401(K) PROFIT SHARING PLAN","001","1998-04-01","BRADY COMPANY CALIFORNIA",,,"8104 COMMERCIAL STREET",,"LA MESA","CA","91942",,,,,,,"8104 COMMERCIAL STREET",,"LA MESA","CA","91942",,,,,,,"911775073","6195897575","238300","BRADY COMPANY CALIFORNIA",,"8104 COMMERCIAL STREET",,"LA MESA","CA","91942",,,,,,,"911775073","6195897575","BRADY COMPANY / LOS ANGELES, INC.","911775073","001","2011-09-01T12:13:00-0500","KEITH ESHELMAN",,,,,276,281,1,27,309,0,309,130,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110902132622P030003544660001","2001-01-01","2001-12-31","2",,"0","0","0","0","0","0","0","1","0",,"EUGENE L. VER, M.D. PROFIT SHARING PLAN","001","1997-01-01","EUGENE L. VER, M.D.",,,"4099 LAKE ROAD",,"BROCKPORT","NY","144201517",,,,,,,,,,,,,,,,,,"161499868","7166379220","621111","EUGENE L. VER, M.D.",,"4099 LAKE ROAD",,"BROCKPORT","NY","144201517",,,,,,,"161499868","7166379220",,,,"2011-09-02T13:08:53-0500","EUGENE VER",,,,,7,6,,,6,,6,6,,,"2E2F2G3B3E",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110904103552P040003868675001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UROPED MEDICAL, P.S.C. RETIREMENT PLAN","001","2007-06-01","UROPED MEDICAL, P.S.C.","SAME",,"2000 CARR. 8177","SUITE 26 PMB 211","GUAYNABO","PR","00966",,,,,,,"2000 CARR. 8177","SUITE 26 PMB 211","GUAYNABO","PR","00966",,,,,,,"660704794","7876532224","812990","UROPED MEDICAL, P.S.C.","SAME","2000 CARR. 8177","SUITE 26 PMB 211","GUAYNABO","PR","00966",,,,,,,"660704794","7876532224",,,,"2011-09-04T10:35:42-0500","MARCOS RAYMOND PEREZ BRAYFIELD","2011-09-04T10:35:42-0500","MARCOS RAYMOND PEREZ BRAYFIELD",,,2,2,0,0,2,0,2,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110831134423P030121966849001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"VISCOFAN USA, INC. HOURLY EMPLOYEES BENEFIT PLAN","501","2010-01-01","VISCOFAN USA, INC.",,,"50 COUNTY COURT",,"MONTGOMERY","AL","36105",,,,,,,"50 COUNTY COURT",,"MONTGOMERY","AL","36105",,,,,,,"631196441","8005216303","311900","VISCOFAN USA, INC.",,"50 COUNTY COURT",,"MONTGOMERY","AL","36105",,,,,,,"631196441","8005216303",,,,"2011-08-31T13:41:00-0500","ZAN WHITSITT",,,,,326,220,88,,308,,308,,,,,"4A4B4D4E4F4L","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110901153406P030572060416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A.L. HELMCAMP, INC 401(K) PROFIT SHARING PLAN","002","1996-01-01","A.L. HELMCAMP, INC",,,"4120 HIGHWAY 79 WEST","P.O. BOX 456","BUFFALO","TX","75831",,,,,,,,,,,,,,,,,,"742010794","9036265911","237310","A.L. HELMCAMP, INC",,"4120 HIGHWAY 79 WEST","P.O. BOX 456","BUFFALO","TX","75831",,,,,,,"742010794","9036265911",,,,"2011-09-01T15:33:47-0500","A.L.HELMCAMP, INC","2011-09-01T15:33:47-0500","A.L.HELMCAMP, INC",,,158,130,0,25,155,0,155,42,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901134124P030122586705001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LUTGERT COMPANIES RETIREMENT PLAN","002","1984-01-01","THE SCOTTSDALE COMPANY",,,"4200 GULF SHORE BOULEVARD N",,"NAPLES","FL","34103",,,,,,,,,,,,,,,,,,"362495903","2392616100","531390","THE SCOTTSDALE COMPANY",,"4200 GULF SHORE BOULEVARD N",,"NAPLES","FL","34103",,,,,,,"362495903","2392616100",,,,"2011-09-01T13:31:48-0500","HOWARD GUTMAN",,,,,672,202,1,55,258,0,258,238,5,,"2A2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110901071217P040018638962001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"THRESHOLDS INC. HEALTH INSURANCE & WELFARE PLAN","502","1981-06-01","THRESHOLDS & AFFILIATES",,,"1225 LAKE DRIVE SE",,"GRAND RAPIDS","MI","49506",,,,,,,,,,,,,,,,,,"382063018","6167740853","812990","THRESHOLDS & AFFILIATES",,"1225 LAKE DRIVE SE",,"GRAND RAPIDS","MI","49506",,,,,,,"382063018","6167740853",,,,"2011-08-31T15:55:26-0500","THOMAS FERCH",,,,,135,122,3,,125,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110902110806P040018738434001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"N CELL SYSTEMS INC 401(K) PLAN","001","2002-01-01","N CELL SYSTEMS INC",,,"1907 E WAYZATA BLVD","SUITE 230","WAYZATA","MN","55391",,,,,,,"1907 E WAYZATA BLVD","SUITE 230","WAYZATA","MN","55391",,,,,,,"411676960","9527465125","541512","N CELL SYSTEMS INC",,"1907 E WAYZATA BLVD","SUITE 230","WAYZATA","MN","55391",,,,,,,"411676960","9527465125",,,,"2011-09-02T11:01:00-0500","BRIAN DOCKTER",,,,,18,14,0,5,19,0,19,17,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902102626P030123123601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEHR INDUSTRIES, INC. 401(K) PROFIT SHARING PLAN","001","1985-01-01","GEHR INDUSTRIES, INC.",,,"7400 E. SLAUSON AVENUE",,"COMMERCE","CA","900403300",,,,,,,,,,,,,,,,,,"952474891","3237285558","423600","GEHR INDUSTRIES, INC.",,"7400 E. SLAUSON AVENUE",,"COMMERCE","CA","900403300",,,,,,,"952474891","3237285558",,,,"2011-09-02T10:26:19-0500","CARL ROSENTHAL","2011-09-02T10:26:19-0500","CARL ROSENTHAL",,,152,150,24,0,174,0,174,156,1,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110902113246P030123154385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"BRENNAN CONSTRUCTION OF MN INC PROFIT SHARING PLAN","001","1995-01-01","BRENNAN CONSTRUCTION OF MN INC",,,"124 E WALNUT STREET",,"MANKATO","MN","56001",,,,,,,,,,,,,,,,,,"411864619","5076255417","236200","BRENNAN CONSTRUCTION OF MN INC",,"124 E WALNUT STREET",,"MANKATO","MN","56001",,,,,,,"411864619","5076255417",,,,"2011-09-02T11:32:20-0500","CATHERINE BRENNAN",,,,,6,3,,1,4,,4,4,0,,"2E",,,,"0","1",,,"1","0","1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902113420P030123155905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMERCEWEST BANK 401K PLAN","001","2001-06-01","COMMERCEWEST BANK",,,"2111 BUSINESS CENTER DRIVE",,"IRVINE","CA","92612",,,,,,,,,,,,,,,,,,"330962768","9492516959","522110","COMMERCEWEST BANK",,"2111 BUSINESS CENTER DRIVE",,"IRVINE","CA","92612",,,,,,,"330962768","9492516959",,,,"2011-09-02T11:33:38-0500","MARY SOUSA","2011-09-02T11:33:38-0500","MARY SOUSA",,,55,60,0,30,90,0,90,53,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110902113444P040018741298001","2011-01-01","2011-02-28","2",,"0","0","1","1","0","0","0","0","0",,"LAZER ELECTRIC, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2001-07-01","LAZER ELECTRIC",,,"4701 E HUNTER AVE",,"ANAHEIM","CA","92807",,,,,,,,,,,,,,,,,,"336296844","7147774233","238210","LAZER ELECTRIC",,"4701 E HUNTER AVE",,"ANAHEIM","CA","92807",,,,,,,"336296844","7147774233",,,,"2011-09-02T11:32:16-0500","RODNEY BREWER",,,,,16,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110831085915P040125153841001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CAPEWAY ROOFING SYSTEMS, INC. RETIREMENT PLAN","010","1992-07-01","CAPEWAY ROOFING SYSTEMS, INC.",,,"664 SANFORD ROAD",,"WESTPORT","MA","027904032",,,,,,,"JOSE CALHETA","664 SANFORD ROAD","WESTPORT","MA","027904032",,,,,,,"042899319","5086740800","238100","CAPEWAY ROOFING SYSTEMS, INC.",,"664 SANFORD ROAD",,"WESTPORT","MA","027904032",,,,,,,"042899319","5086740800",,,,"2011-08-31T08:57:54-0500","JOE CALHETA","2011-08-31T08:57:54-0500","JOE CALHETA",,,111,105,,16,121,,121,119,,,"2E2G2F3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110831093247P030121829969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRAND DENTAL STUDIOS 401(K) PLAN","002","1997-01-01","GDS, PLLC",,,"1057 N.W. GRAND BLVD.",,"OKLAHOMA CITY","OK","73118",,,,,,,,,,,,,,,,,,"262873521","4058483719","621210","GDS, PLLC",,"1057 N.W. GRAND BLVD.",,"OKLAHOMA CITY","OK","73118",,,,,,,"262873521","4058483719",,,,"2011-08-31T09:31:57-0500","MICHAEL K. KIRK, DDS","2011-08-31T09:31:57-0500","MICHAEL K. KIRK, DDS",,,13,10,,3,13,0,13,10,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110831111508P040125213793005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TASMARR EXCAVATING COMPANY, INC. 401(K) PLAN","001","2003-01-01","TASMARR EXCAVATING COMPANY, INC.",,,"P.O. BOX 38580",,"COLORADO SPRINGS","CO","80937",,,,,,,,,,,,,,,,,,"841273982","7195205660","237990","TASMARR EXCAVATING COMPANY, INC.",,"P.O. BOX 38580",,"COLORADO SPRINGS","CO","80937",,,,,,,"841273982","7195205660",,,,"2011-08-29T16:16:09-0500","SCOTT MEAGHER","2011-08-29T16:16:17-0500","SCOTT MEAGHER",,,7,4,1,2,7,0,7,7,,,"2A2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110831152121P030569308336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHEAST INTERNAL MEDICINE 401(K) PROFIT SHARING PLAN","001","2002-04-10","NORTHEAST INTERNAL MEDICINE ASSOC. INC",,,"2500 NORTH DETROIT STREET",,"LAGRANGE","IN","46761",,,,,,,"2500 NORTH DETROIT STREET",,"LAGRANGE","IN","46761",,,,,,,"352140030","2604632133","621111","NORTHEAST INTERNAL MEDICINE ASSOC. INC",,"2500 NORTH DETROIT STREET",,"LAGRANGE","IN","46761",,,,,,,"352140030","2604632133",,,,"2011-08-31T15:15:12-0500","SHASHANK KASHYAP",,,,,12,12,0,0,12,0,12,12,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831152531P030569315584001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KAUFMAN KAUFMAN & MILLER, LLP PROFIT SHARING PLAN","002","1971-11-01","KAUFMAN KAUFMAN & MILLER, LLP",,,"16633 VENTURA BLVD., SUITE 500",,"ENCINO","CA","91436",,,,,,,,,,,,,,,,,,"522436588","8187885767","541110","TRUSTEE, KAUFMAN KAUFMAN & MILLER, LLP PROFIT SHARING PLAN",,"16633 VENTURA BLVD., SUITE 500",,"ENCINO","CA","91436",,,,,,,"954149088","8187885767",,,,"2011-08-31T04:24:12-0500","JACK E. KAUFMAN, TRUSTEE","2011-08-31T04:25:06-0500","JACK E. KAUFMAN, PARTNER",,,9,7,0,2,9,0,9,9,1,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901104844P040566129504009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GREAT LAKES PACKAGING CORPORATION LIFE AND DISABILITY BENEFIT PLAN","502","1994-02-01","GREAT LAKES PACKAGING CORPORATION",,,"W190 N11393 CARNEGIE DR.",,"GERMANTOWN","WI","530220278",,,,,,,"W190 N11393 CARNEGIE DR.",,"GERMANTOWN","WI","530220278",,,,,,,"391745171","2622552100","322200","GREAT LAKES PACKAGING CORPORATION",,"W190 N11393 CARNEGIE DR.",,"GERMANTOWN","WI","530220278",,,,,,,"391745171","2622552100",,,,"2011-08-31T09:08:52-0500","KENN FERRON","2011-08-31T09:08:52-0500","KENN FERRON",,,136,134,,,134,,,,,,,"4B4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901093021P040018646274003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RESEARCH HORIZONS LLC DBA PHOENIX MARKETING INTERNATIONAL","502","2008-01-01","RESEARCH HORIZONS LLC DBA PHOENIX MARKETING INTERNATIONAL",,,"6423 MONTGOMERY STREET SUITE 12",,"RHINEBECK","NY","12572",,,,,,,,,,,,,,,,,,"542065920","8458768228","541800","RESEARCH HORIZONS LLC DBA PHOENIX MARKETING INTERNATIONAL",,"6423 MONTGOMERY STREET SUITE 12",,"RHINEBECK","NY","12572",,,,,,,"542065920","8458768228",,,,"2011-07-29T14:04:04-0500","HEATHER STILL",,,,,112,105,,,105,,105,,,,,"4A","1",,,,"1",,,,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110905101506P030124786081001","2010-01-01","2010-12-31","2",,,,,,,,,,"1","CORPORATE FORM 7004 EXTENSION","MARIA EJSBRENNER, DDS, PC PROFIT SHARING PLAN","001","1998-05-28","MARIA EJSBRENNER, DDS, PC",,,"376 MALLARD POINT",,"LAKE BARRINGTON","IL","60010",,,,,,,,,,,,,,,,,,"364231851","7736317070","621210","MARIA EJSBRENNER, DDS, PC",,"376 MALLARD POINT",,"LAKE BARRINGTON","IL","60010",,,,,,,"364231851","7736317070",,,,"2011-08-30T15:21:10-0500","MARIA EJSBRENNER","2011-08-30T15:21:17-0500","MARIA EJSBRENNER",,,9,4,0,5,9,0,9,9,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110831113927P030568856448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACES, LLC 401(K) PLAN","001","2006-11-01","ACES, LLC",,,"918 TANYARD RD",,"ROCKY MOUNT","VA","24151",,,,,,,,,,,,,,,,,,"208671325","5404893434","445299","ACES, LLC",,"918 TANYARD RD",,"ROCKY MOUNT","VA","24151",,,,,,,"208671325","5404893434",,,,"2011-08-31T11:29:55-0500","DANIELLE VESTERSO",,,,,61,52,0,0,52,0,52,47,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831181949P040125392705001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","1","0","0","0",,"LFG EMPLOYEES GROUP, LLC","501","2001-02-01","LFG EMPLOYEES GROUP, LLC",,,"5424 RUFE SNOW DRIVE, SUITE 502",,"NORTH RICHLAND HILLS","TX","76180",,,,,,,,,,,,,,,,,,"752915499","8174289736","561300","LFG EMPLOYEES GROUP, LLC",,"5424 RUFE SNOW DRIVE, SUITE 502",,"NORTH RICHLAND HILLS","TX","76180",,,,,,,"752915499","8174289736",,,,"2011-08-31T18:19:15-0500","DENISE HOUSE",,,,,426,456,7,0,463,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831182106P030122092257001","2010-04-01","2011-03-31","3",,,,,,,,,,,,"VALLEY VIEW BANCSHARES, INC. WELFARE BENEFIT PLAN","501","2000-01-01","VALLEY VIEW BANCSHARES, INC.",,"TIMOTHY J. KELLEY","7500 WEST 95TH STREET",,"OVERLAND PARK","KS","66212",,,,,,,,,,,,,,,,,,"480804902","9133813311","522110","LINDSEY MOORE",,"7500 WEST 95TH STREET",,"OVERLAND PARK","KS","66212",,,,,,,"480804902","9133813311",,,,"2011-08-31T12:46:11-0500","LINDSEY MOORE",,,,,650,623,,,623,,,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831165356P040003799747011","2010-07-01","2011-06-30","2",,,"1",,,,,,,,,"PETE'S EQUIPMENT REPAIR INC.","002","2001-07-01","PETES EQUIPMENT REPAIR INC",,,"1400 BROADWAY BLVD NE",,"ALBUQUERQUE","NM","87102",,,,,,,"1400 BROADWAY BLVD NE",,"ALBUQUERQUE","NM","87102",,,,,,,"850346200","5052426969","811310","SUNLAND MGT & TAX SERVICES INC",,"801 SAN DIEGO LOOP","FRANK S CASANOVA","JEMEZ SPRINGS","NM","87025",,,,,,,"850318460","5052818000",,,,"2011-08-29T23:52:44-0500","FRANK S. CASANOVA",,,,,9,7,0,0,7,,7,7,2,,"2G2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110901105244P030122512465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NICKLE ELECTRICAL COMPANIES 401K PLAN","001","1995-02-15","NICKLE ELECTRICAL COMPANIES",,,"14 MILL PARK COURT, SUITE E",,"NEWARK","DE","197131986",,,,,,,,,,,,,,,,,,"510300576","3024534000","238210","NICKLE ELECTRICAL COMPANIES",,"14 MILL PARK COURT, SUITE E",,"NEWARK","DE","197131986",,,,,,,"510300576","3024534000",,,,"2011-09-01T10:49:05-0500","DEBORAH A. DIGNAN",,,,,148,163,0,11,174,0,174,82,3,,"2A2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110901100428P040566044752001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KRAMER CONSTRUCTION PROFIT SHARING 401(K) PLAN","002","2006-01-01","JAMES KRAMER CONSTRUCTION, INC.",,,"987 N. SAN ANTONIO ROAD",,"LOS ALTOS","CA","94022",,,,,,,,,,,,,,,,,,"770365693","6509487829","236200","JAMES KRAMER CONSTRUCTION, INC.",,"987 N. SAN ANTONIO ROAD",,"LOS ALTOS","CA","94022",,,,,,,"770365693","6509487829",,,,"2011-09-01T10:03:51-0500","JAMES KRAMER","2011-09-01T10:03:51-0500","JAMES KRAMER",,,2,2,0,0,2,0,2,2,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901115218P040566253280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARTY CITY OF ARIZONA AND NEW MEXICO PROFIT SHARING PLAN","002","2000-01-01","PARTY CITY OF ARIZONA & NEW MEXICO, INC.",,,"PO BOX 4790",,"SCOTTSDALE","AZ","85261",,,,,,,"TOMMY GRAHAM","P.O. BOX 4790","SCOTTSDALE","AZ","85261",,,,,,,"850429769","4803911135","453990","PARTY CITY OF ARIZONA & NEW MEXICO, INC.",,"PO BOX 4790",,"SCOTTSDALE","AZ","85261",,,,,,,"850429769","4803911135",,,,"2011-09-01T11:52:10-0500","TOMMY GRAHAM","2011-09-01T11:52:10-0500","TOMMY GRAHAM",,,115,81,,,81,,81,,,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901083921P040125737441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BONDED TRANSPORTATION SERVICES, INC 401(K) RETIREMENT PLAN","001","1993-08-01","BONDED TRANSPORTATION SERVICES, INC",,,"PO BOX 724",,"MILWAUKEE","WI","53201",,,,,,,,,,,,,,,,,,"390993900","4149378450","492210","BONDED TRANSPORTATION SERVICES, INC",,"PO BOX 724",,"MILWAUKEE","WI","53201",,,,,,,"390993900","4149378450",,,,"2011-09-01T08:39:11-0500","PAMELA M WITT","2011-09-01T08:39:11-0500","BONDED TRANSPORTATION SOLUTIONS, IN",,,158,129,0,21,150,0,150,89,2,,"2E2F2G2J2K3D2T2S",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901154014P040125931857001","1993-07-01","1994-06-30","2",,"0","0","0","0","0","0","0","1","0",,"EASTERN PROPANE GAS, INC. EMPLOYEE BENEFIT PLAN","501","1988-07-01","EASTERN PROPANE GAS, INC.",,,"28 INDUSTRIAL WAY",,"ROCHESTER","NH","038674296",,,,,,,,,,,,,,,,,,"042125425","6033322080","454312","EASTERN PROPANE GAS, INC.",,"28 INDUSTRIAL WAY",,"ROCHESTER","NH","038674296",,,,,,,"042125425","6033322080",,,,"2011-08-30T13:24:01-0500","AIMEE RUEL",,,,,185,179,3,0,182,,182,,,,,"4A4B4D4F","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110902121411P030123180417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEWPORT ELECTRONICS INC EMPLOYEES SAVINGS AND INVESTMENT PLAN","002","1986-01-01","NEWPORT ELECTRONICS INC",,,"2229 SOUTH YALE STREET",,"SANTA ANA","CA","92704",,,,,,,"2229 SOUTH YALE STREET",,"SANTA ANA","CA","92704",,,,,,,"952413305","2033597763","334500","NEWPORT ELECTRONICS INC",,"2229 SOUTH YALE STREET",,"SANTA ANA","CA","92704",,,,,,,"952413305","2033597763",,,,"2011-09-02T11:54:24-0500","RICHARD KREMHELLER",,,,,80,62,0,8,70,0,70,63,0,,"2F2G2J2K2T3D3F3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902123906P040569030336001","2010-06-01","2011-05-31","2",,,,,,,,,,,,"CHMC CARDIOVASCULAR SURGICAL FOUNDATION, INC. PROFIT SHARING PLAN","002","1995-06-01","CHMC CARDIOVASCULAR SURGICAL FOUNDATION INC.",,,"300 LONGWOOD AVE",,"BOSTON","MA","021155724",,,,,,,,,,,,,,,,,,"042764370","6173557930","621111","CHMC CARDIOVASCULAR SURGICAL FOUNDATION INC.",,"300 LONGWOOD AVE",,"BOSTON","MA","021155724",,,,,,,"042764370","6173557930",,,,"2011-09-02T13:38:57-0500","PEDRO DELNIDO",,,,,7,6,0,1,7,1,8,8,0,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902124038P040126434961001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LAKEVIEW MEMORIAL PARK ASSOCIATION 401 K PLAN","001","1997-01-01","LAKEVIEW MEMORIAL PARK ASSOCIATION",,,"P.O. BOX 2830",,"CINNAMONSIN","NJ","080770000",,,,,,,,,,,,,,,,,,"210495470","8568293553","812220","LAKEVIEW MEMORIAL PARK ASSOCIATION",,"P.O. BOX 2830",,"CINNAMONSIN","NJ","080770000",,,,,,,"210495470","8568293553",,,,"2011-09-02T12:40:14-0500","DAVID B STAHL SR","2011-09-02T12:40:14-0500","DAVID B STAHL SR",,,7,4,0,3,7,0,7,7,1,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110831115535P040125235265001","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"EATON CORPORATION UAW RETIREE HEALTH BENEFIT PLAN","612","1997-09-01","EATON CORPORATION",,,"1111 SUPERIOR AVENUE",,"CLEVELAND","OH","441142584",,,,,,,,,,,,,,,,,,"340196300","2165235000","336300","EATON CORPORATION H & W ADMINISTRATIVE COMMITTEE","C/O EATON CORPORATION","1111 SUPERIOR AVENUE",,"CLEVELAND","OH","441142584",,,,,,,"340196300","2165235000",,,,"2011-08-31T12:16:04-0500","ELLEN P. COLLIER",,,,,186,,158,,158,,158,,,,,"4A4Q",,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831165622P040125353281001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"MERCANTILE STORES SUPPLEMENTAL PENSION PLAN","003","1958-02-01","THE HIGBEE COMPANY",,"PHILLIP R. WATTS","P. O. BOX 486",,"LITTLE ROCK","AR","722030486",,,,,,,"1600 CANTRELL ROAD",,"LITTLE ROCK","AR","722030486",,,,,,,"340288590","5013765369","452110","THE HIGBEE COMPANY","PHILLIP R. WATTS","P. O. BOX 486",,"LITTLE ROCK","AR","722030486",,,,,,,"340288590","5013765369",,,,"2011-08-31T16:49:29-0500","PHILLIP WATTS",,,,,31,0,24,0,24,0,24,0,0,,"3C3H",,"0","0","0","1","0","0","0","1","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831165848P030017878642001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"ARTHUR MELVILLE, MARRIAGE, FAMILY COUNSELING, INC. PROFIT SHARING PLAN","002","1993-02-01","ARTHUR MELVILLE, MARRIAGE, FAMILY COUNSELING, INC.",,,"5855 E. NAPLES PLAZA, STE. 216",,"LONG BEACH","CA","90803",,,,,,,"5855 E. NAPLES PLAZA, STE. 216",,"LONG BEACH","CA","90803",,,,,,,"954000170","5624331105","621399","ARTHUR MELVILLE, MARRIAGE, FAMILY COUNSELING, INC.",,"5855 E. NAPLES PLAZA, STE. 216",,"LONG BEACH","CA","90803",,,,,,,"954000170","5624331105",,,,"2011-08-31T16:58:21-0500","HSIOH LEE",,,,,1,1,0,0,1,0,1,1,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110901115557P040018655746001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOMAS PROPERTIES GROUP, L.P. PROFIT SHARING PLAN & TRUST","001","1986-12-01","THOMAS PROPERTIES GROUP, L.P.",,,"515 SOUTH FLOWER STREET, 6TH FLOOR",,"LOS ANGELES","CA","900712201",,,,,,,,,,,,,,,,,,"731706355","2136131900","531310","THOMAS PROPERTIES GROUP, L.P.",,"515 SOUTH FLOWER STREET, 6TH FLOOR",,"LOS ANGELES","CA","900712201",,,,,,,"731706355","2136131900",,,,"2011-09-01T08:58:53-0500","GAIL KORCHAK",,,,,179,161,0,14,175,0,175,170,13,,"2E2G2J3D",,"1",,"1",,"1",,"1",,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110902133050P030123212977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAKITA U.S.A., INC. SHARED SAVINGS PROFIT SHARING PLAN","002","1986-08-01","MAKITA U.S.A., INC.",,,"14930- C NORTHAM STREET",,"LA MIRADA","CA","906385753",,,,,,,,,,,,,,,,,,"132672211","7145228088","335900","MAKITA U.S.A., INC.",,"14930- C NORTHAM STREET",,"LA MIRADA","CA","906385753",,,,,,,"132672211","7145228088",,,,"2011-09-02T13:01:17-0500","TERRY GALLOWAY","2011-09-02T13:28:38-0500","KOJI TSUZUKI",,,650,455,0,148,603,0,603,542,52,,"2E2F2G2J2K3D3H3J2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110902095333P040126365537001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MICHCON INVESTMENT AND STOCK OWNERSHIP PLAN","006","1983-09-23","DTE ENERGY CORPORATE SERVICES, LLC",,,"ONE ENERGY PLAZA, 316 GO",,"DETROIT","MI","482261279",,,,,,,,,,,,,,,,,,"205898509","3132355858","221100","THE DTE ENERGY COMPANY BENEFIT PLAN ADMINISTRATION COMMITTEE",,"ONE ENERGY PLAZA, 316 G.O.",,"DETROIT","MI","482261279",,,,,,,"383217752","3132355455",,,,"2011-09-02T09:52:38-0500","JEFFREY C. WUEPPER",,,,,535,543,1,33,577,4,581,460,0,,"2E2F2H2J2K2O2S2T3H3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902095521P030123111905001","2008-03-01","2009-02-28","2",,,"1",,,,,,"1",,,"PARAGON SOLUTIONS, INC. WELFARE PLAN","501","1982-10-01","PARAGON SOLUTIONS, INC.",,,"25 COMMERCE DRIVE",,"CRANFORD","NJ","07016",,,,,,,,,,,,,,,,,,"222380765","8004625582","541519","PARAGON SOLUTIONS, INC.",,"25 COMMERCE DRIVE",,"CRANFORD","NJ","07016",,,,,,,"222380765","8004625582",,,,"2011-08-26T09:13:23-0500","KATHY MILLER",,,,,278,269,,,269,,269,,,,,"4A4B4D4F4H4Q","1",,,,"1",,,,,,,,,"1","8",,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902103138P030123124785004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LORENS SANITATION SERVICE INC 401K PROFIT SHARING PLAN","001","1974-06-30","LOREN S SANITATION SERVICE, INC",,,"1141 CHEMAWA ROAD N",,"KEIZER","OR","973036115",,,,,,,,,,,,,,,,,,"930606121","5033707640","221300","LOREN S SANITATION SERVICE INC",,"1141 CHEMAWA ROAD N",,"KEIZER","OR","973036115",,,,,,,"930606121","5033707640",,,,"2011-09-02T10:25:07-0500","WAYNE THACKERY",,,,,25,14,1,10,25,,25,25,1,,"3H3B2K2J2E2A",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110905181935P040019040306001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PROJECT SENTINEL 403(B) PLAN","001","1992-01-01","PROJECT SENTINEL",,,"525 MIDDLE FIELD ROAD",,"REDWOOD CITY","CA","94063",,,,,,,,,,,,,,,,,,"770266612","6503216291","541990","PROJECT SENTINEL",,"525 MIDDLE FIELD ROAD",,"REDWOOD CITY","CA","94063",,,,,,,"770266612","6503216291",,,,"2011-09-05T18:15:51-0500","ANN MARQUART",,,,,,,,,0,,0,,,,"2L2H",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-09-05","Filed with authorized/valid electronic signature",, "20110831140836P040125296673001","2010-04-01","2011-03-31","2",,"0","0","0","0","1","0","0","0","0",,"BASIC LIFE/AD&D, SUPPLEMENTAL LIFE AND AD&D","512","1997-02-03","DONCASTERS, INC.",,,"36 SPRING LANE",,"FARMINGTON","CT","06032",,,,,,,"36 SPRING LANE",,"FARMINGTON","CT","06032",,,,,,,"133491053","8606771376","332900","DONCASTERS, INC.",,"36 SPRING LANE",,"FARMINGTON","CT","06032",,,,,,,"133491053","8606771376",,,,"2011-08-31T14:08:12-0500","CRAIG MACINTYRE",,,,,1108,1401,108,,1509,,1509,,,,,"4B4Q","1",,,"1","1",,,"1",,,,,,"1","2","0",,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831141000P040125297489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OPTIMAL BLUE, LLC 401(K) PROFIT SHARING PLAN","001","2006-01-01","OPTIMAL BLUE, LLC",,,"5601 DEMOCRACY DRIVE, SUITE 150",,"PLANO","TX","75024",,,,,,,,,,,,,,,,,,"753138163","9727810200","522292","OPTIMAL BLUE, LLC",,"5601 DEMOCRACY DRIVE, SUITE 150",,"PLANO","TX","75024",,,,,,,"753138163","9727810200",,,,"2011-08-31T14:09:25-0500","BERNIE OVERBERGER",,,,,43,48,0,4,52,0,52,39,0,,"2A2E2F2G2J2K2T3B3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831183321P030017884290002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WILLIAM YALE GOODMAN 401K PLAN","002","2005-01-01","WILLIAM YALE GOODMAN",,"JEFFREY MORGENROTH, AN ACCTY CORP","217 E ALAMEDA AVENUE SUITE 306",,"BURBANK","CA","91502",,,,,,,,,,,,,,,,,,"943176201","8188459900","423800","WILLIAM YALE GOODMAN","JEFFREY MORGENROTH, AN ACCTY CORP.","217 E ALAMEDA AVENUE SUITE 306",,"BURBANK","CA","91502",,,,,,,"943176201","8188459900",,,,"2011-08-31T18:26:19-0500","JEFFREY MORGENROTH CPA","2011-08-31T18:27:43-0500","WILLIAM YALE GOODMAN",,,3,3,,,3,,3,3,,,"3F2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901203246P030017986786001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MACY & THOMAS VETERINARY HOSPITAL, INC. PROFIT SHARING PLAN","002","2008-01-01","MACY & THOMAS VETERINARY HOSPITAL, INC.",,,"14036 E. WHITTIER BLVD.",,"WHITTIER","CA","90605",,,,,,,"14036 E. WHITTIER BLVD.",,"WHITTIER","CA","90605",,,,,,,"261230828","5626987985","541940","MACY & THOMAS VETERINARY HOSPITAL, INC.",,"14036 E. WHITTIER BLVD.",,"WHITTIER","CA","90605",,,,,,,"261230828","5626987985",,,,"2011-09-01T20:32:36-0500","JOSHUA LEE",,,,,3,3,0,0,3,0,3,3,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110902151157P040126499569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLARK NUBER P.S. RETIREMENT SAVINGS PLAN","001","1983-02-01","CLARK NUBER P.S.",,,"10900 NE 4TH STREET, SUITE 1700",,"BELLEVUE","WA","98004",,,,,,,,,,,,,,,,,,"911194016","4254544919","541211","CLARK NUBER P.S.",,"10900 NE 4TH STREET, SUITE 1700",,"BELLEVUE","WA","98004",,,,,,,"911194016","4254544919",,,,"2011-09-02T15:01:21-0500","DAVID KATRI",,,,,193,138,0,51,189,0,189,183,19,,"2A2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110906090921P030018388338001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNIVERSAL STAMP & STATIONERY CO., INC. PENSION PLAN","001","1985-01-01","UNIVERSAL STAMP & STATIONERY CO., INC.",,,"100 SHEARWATER COURT","APT. 26","JERSEY CITY","NJ","07305",,,,,,,"100 SHEARWATER COURT","APT. 26","JERSEY CITY","NJ","07305",,,,,,,"221456878","9735943864","323100","UNIVERSAL STAMP & STATIONERY CO., INC.",,"100 SHEARWATER COURT","APT. 26","JERSEY CITY","NJ","07305",,,,,,,"221456878","9735943864",,,,"2011-09-06T08:15:08-0500","JON ROTTENBERG",,,,,12,0,2,10,12,0,12,,,,"1A1G1I3E",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110831100948P030017851714001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"R.B.SANDRINI","501","1996-02-01","R.B. SANDRINI",,,"10889 CASEY AVENUE",,"DELANO","CA","93215",,,,,,,,,,,,,,,,,,"770390492","6617252281","111300","R.B. SANDRINI",,"10889 CASEY AVENUE",,"DELANO","CA","93215",,,,,,,"770390492","6617252281",,,,"2011-08-31T10:07:14-0500","TERESA CRUMB","2011-08-31T10:07:14-0500","TERESA CRUMB",,,16,12,0,0,12,,,,,,,"4A4B4E","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110831153327P040125323089001","2010-07-01","2011-06-30","2",,,,,,,,,,,,"MURRIETA CHAMBER 401K","001","2004-07-01","MURRIETA CHAMBER OF COMMERCE",,,"24801 MONROE AVENUE",,"MURRIETA","CA","92562",,,,,,,,,,,,,,,,,,"956111677","9516777916","813000","MURRIETA CHAMBER OF COMMERCE",,"24801 MONROE AVENUE",,"MURRIETA","CA","92562",,,,,,,"956111677","9516777916",,,,"2011-08-31T15:10:11-0500","REX OLIVER",,,,,2,2,,,2,,2,2,,,"3D2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110901094249P040125764753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GUARANTEED RATE, INC. 401(K) PLAN","001","1998-01-01","GUARANTEED RATE, INC.",,,"3940 NORTH RAVENSWOOD",,"CHICAGO","IL","60613",,,,,,,,,,,,,,,,,,"364327855","7734350631","531390","GUARANTEED RATE, INC.",,"3940 NORTH RAVENSWOOD",,"CHICAGO","IL","60613",,,,,,,"364327855","7734350631",,,,"2011-09-01T09:42:11-0500","TIMOTHY J. NILLES",,,,,354,334,0,66,400,0,400,300,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110901094458P040125765521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALZHEIMERS DISEASE AND RELATED DISORDERS ASSN INC DEFINED CONTRIBUTION PLAN","001","2004-01-01","ALZHEIMERS DISEASE AND RELATED DISORDERS ASSN INC NWO",,,"2500 NORTH REYNOLDS ROAD",,"TOLEDO","OH","436150708",,,,,,,,,,,,,,,,,,"341423768","4195371999","624410","ALZHEIMERS DISEASE AND RELATED DISORDERS ASSN INC NWO",,"2500 NORTH REYNOLDS ROAD",,"TOLEDO","OH","436150708",,,,,,,"341423768","4195371999",,,,"2011-09-01T09:44:00-0500","SALLI BOLLIN","2011-09-01T09:44:00-0500","SALLI BOLLIN",,,35,35,0,0,35,0,35,35,0,,"2F2G2L3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901142457P030122602113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BUCYRUS COMMUNITY HOSPITAL TAX DEFERRED ANNUITY PLAN","012","2001-02-01","BUCYRUS COMMUNITY HOSPITAL INC.",,,"629 N SANDUSKY AVE",,"BUCYRUS","OH","44820",,,,,,,,,,,,,,,,,,"344468311","4194680550","622000","BUCYRUS COMMUNITY HOSPITAL INC.",,"629 N SANDUSKY AVE",,"BUCYRUS","OH","44820",,,,,,,"344468311","4194680550",,,,"2011-09-01T14:24:27-0500","JEANNE PERKINS","2011-09-01T14:24:27-0500","JEANNE PERKINS",,,319,237,0,26,263,0,263,100,0,,"2G2F2L2T3H",,"1","0","0","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901154508P040018669554002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ENDODONTICS, LTD. 401(K) PROFIT SHARING PLAN","001","1994-01-01","ENDODONTICS, LTD.",,,"640 SOUTH WASHINGTON STREET, SUITE",,"NAPERVILLE","IL","60540",,,,,,,,,,,,,,,,,,"363741358","6305304808","621210","ENDODONTICS, LTD.",,"640 SOUTH WASHINGTON STREET, SUITE",,"NAPERVILLE","IL","60540",,,,,,,"363741358","6305304808",,,,"2011-09-01T16:38:12-0500","DONALD BEARD","2011-09-01T16:38:21-0500","DONALD BEARD",,,9,8,0,1,9,0,9,8,,,"2E2J2H2F2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110902135209P040126464657001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ROBERT A. WARMAN COMPANY, INC. PROFIT SHARING/401(K) PLAN","002","1999-01-01","ROBERT A. WARMAN COMPANY, INC.",,,"1720 SACRAMENTO STREET",,"SAN FRANCISCO","CA","94109",,,,,,,,,,,,,,,,,,"941749479","4157758513","561790","ROBERT A. WARMAN COMPANY, INC.",,"1720 SACRAMENTO STREET",,"SAN FRANCISCO","CA","94109",,,,,,,"941749479","4157758513",,,,"2011-08-31T18:39:47-0500","PETER BADERTSCHER",,,,,24,21,0,1,22,0,22,13,0,,"2A2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902135657P040040266295001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LANDTECH ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1985-01-01","LANDTECH ASSOCIATES, INC.",,,"10260 OLD COLUMBIA ROAD","SUITE J","COLUMBIA","MD","21046",,,,,,,,,,,,,,,,,,"521142712","4102908099","541370","LANDTECH ASSOCIATES, INC.",,"10260 OLD COLUMBIA ROAD","SUITE J","COLUMBIA","MD","21046",,,,,,,"521142712","4102908099",,,,"2011-09-02T13:54:04-0500","SANDRA PLACEK",,,,,12,7,0,4,11,0,11,10,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902124545P030574376848001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"CONVENIENT GLASS SERVICE INC. 401K PLAN","001","1994-04-01","CONVENIENT GLASS SERVICE INC ATTN JOHN LANE",,,"901 US HIGHWAY 117 BYP S",,"GOLDSBORO","NC","27530",,,,,,,,,,,,,,,,,,"561335401","9197364505","811490","CONVENIENT GLASS SERVICE INC ATTN JOHN LANE",,"901 US HIGHWAY 117 BYP S",,"GOLDSBORO","NC","27530",,,,,,,"561335401","9197364505",,,,"2011-09-02T12:42:48-0500","JOHN LANE",,,,,18,20,0,0,20,0,20,18,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902132105P030018050498001","2010-07-13","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"JENZWAY SERVICES, INC. PROFIT SHARING PLAN","001","2010-07-13","JENZWAY SERVICES, INC.",,,"22365 EL TORO","#280","LAKE FOREST","CA","92630",,,,,,,,,,,,,,,,,,"273072694","9498875091","454210","JENZWAY SERVICES, INC.",,"22365 EL TORO","#280","LAKE FOREST","CA","92630",,,,,,,"273072694","9498875091",,,,"2011-09-02T13:15:25-0500","STEPHEN JAMES",,,,,2,2,,,2,,2,2,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110831103202P030121869057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HCM GROUP RETIREMENT PLAN","001","1998-01-01","HCM GROUP, LLC",,,"40 VREELAND AVENUE","SUITE 101","TOTOWA","NJ","075120000",,,,,,,,,,,,,,,,,,"202502568","9738129777","623000","HCM GROUP, LLC",,"40 VREELAND AVENUE","SUITE 101","TOTOWA","NJ","075120000",,,,,,,"202502568","9738129777",,,,"2011-08-31T10:31:47-0500","MICHAEL HUNT",,,,,24,2,0,0,2,0,2,0,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831184536P040564381184001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GROUP MEDICAL, DENTAL, VISION, LIFE AND DISABILITY PLAN","501","1962-02-01","EARLE M. JORGENSEN COMPANY",,,"10650 S. ALAMEDA",,"LYNWOOD","CA","90262",,,,,,,,,,,,,,,,,,"651269024","3235671122","423500","EARLE M. JORGENSEN COMPANY",,"10650 S. ALAMEDA",,"LYNWOOD","CA","90262",,,,,,,"651269024","3235671122",,,,"2011-08-31T18:44:37-0500","JAMES J DESMOND",,,,,1853,1339,54,12,1405,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","13","0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110902081846P030123078401003","2010-01-01","2010-12-31","2",,"1",,,,,,"1",,,,"KENWOOD COMPLETE DENTISTRY 401(K) PROFIT SHARING P","001","2010-01-01","5050 SP LLC DBA KENWOOD COMPLETE DENTISTRY",,,"P. O. BOX 37959",,"CINCINNATI","OH","45222",,,,,,,"5050 E GALBRAITH ROAD","SUITE C","CINICNNATI","OH","45236",,,,,,,"270378525",,"621210","5050 SP LLC DBA KENWOOD COMPLETE DENTISTRY",,"P. O. BOX 37959",,"CINCINNATI","OH","45222",,,,,,,"270378525",,,,,"2011-08-19T06:14:19-0500","JORDAN PELCHOVITZ","2011-08-19T06:14:19-0500","JORDAN PELCHOVITZ",,,0,2,,,2,,2,2,,,"2E2F2G2J2K2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110906110822P030003692787001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DJ MILLER INVESTMENTS RETIREMENT PLAN","001","2009-01-27","DJ MILLER INVESTMENTS, INC.",,,"15899 88TH STREET",,"BRISTOL","WI","53104",,,,,,,,,,,,,,,,,,"264129479","4143227474","722210","DJ MILLER INVESTMENTS, INC.",,"15899 88TH STREET",,"BRISTOL","WI","53104",,,,,,,"264129479","4143227474",,,,"2011-08-22T14:01:17-0500","DONNA MILLER","2011-08-22T14:01:17-0500","DONNA MILLER",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110902142713P030123236737001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-A1 (SEL BLUE CHIP GROWTH)","157",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-02T14:26:28-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-02",,"Filed with authorized/valid electronic signature", "20110902140549P030123229297001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-XJ (SMALL CAP VALUE)","139",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-02T14:02:56-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-02",,"Filed with authorized/valid electronic signature", "20110902093222P040018730194001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SUTTER ROOFING CO. 401K PROFIT SHARING PLAN","001","1982-01-01","SUTTER ROOFING, CO.",,,"8284 VICO CT",,"SARASOTA","FL","34240",,,,,,,,,,,,,,,,,,"591923325","9413771000","238100","SUTTER ROOFING, CO.",,"8284 VICO CT",,"SARASOTA","FL","34240",,,,,,,"591923325","9413771000",,,,"2011-09-02T10:31:52-0500","STEPHEN F. SUTTER",,,,,272,196,0,61,257,1,258,190,2,,"2A2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902090807P040126340977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FAMILY GROUP LIFE INSURANCE UNDER PROCTER AND GAMBLE CASH OPTIONS","551","1985-01-01","THE PROCTER & GAMBLE COMPANY AND CERTAIN SUBSIDIARIES",,,"GO, TE-3 ATTN - RON REIRING","TWO PROCTER AND GAMBLE PLAZA","CINCINNATI","OH","45202",,,,,,,,,,,,,,,,,,"310411980","5136984501","325600","THE PROCTER & GAMBLE COMPANY AND CERTAIN SUBSIDIARIES",,"GO, TE-3 ATTN - RON REIRING","TWO PROCTER AND GAMBLE PLAZA","CINCINNATI","OH","45202",,,,,,,"310411980","5136984501",,,,"2011-09-02T08:46:14-0500","JOANN HAGOPIAN",,,,,16542,16154,0,0,16154,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110831150039P040018578802001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MYSTIC DEVELOPMENT CORPORATION PROFIT SHARING PLAN & TRUST","001","2005-06-16","MYSTIC DEVELOPMENT CORPORATION",,,"6060 RICHMOND AVE","SUITE 305","HOUSTON","TX","77057",,,,,,,,,,,,,,,,,,"203011791","7132660333","236110","MYSTIC DEVELOPMENT CORPORATION",,"6060 RICHMOND AVE","SUITE 305","HOUSTON","TX","77057",,,,,,,"203011791","7132660333",,,,"2011-08-31T14:52:27-0500","DAVID MARTIN",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831150136P040125316065001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ROPER INDUSTRIES, INC. GROUP LIFE INSURANCE PLAN","502","1970-10-01","ROPER INDUSTRIES, INC.",,,"6901 PROFESSIONAL PARKWAY EAST,","SUITE 200","SARASOTA","FL","34240",,,,,,,,,,,,,,,,,,"510263969","9415562601","551112","ROPER INDUSTRIES, INC.",,"6901 PROFESSIONAL PARKWAY EAST,","SUITE 200","SARASOTA","FL","34240",,,,,,,"510263969","9415562601",,,,"2011-08-31T15:01:07-0500","PAUL J. SONI","2011-08-31T15:01:07-0500","PAUL J. SONI",,,2076,2873,0,0,2873,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901080557P040565813616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DELTA NATURAL GAS COMPANY, INC. FLEXIBLE COMPENSATION PLAN","510","2000-01-01","DELTA NATURAL GAS COMPANY, INC.",,,"3617 LEXINGTON ROAD",,"WINCHESTER","KY","40391",,,,,,,"3617 LEXINGTON ROAD",,"WINCHESTER","KY","40391",,,,,,,"610458329","8597446171","221210","DELTA NATURAL GAS COMPANY, INC.",,"3617 LEXINGTON ROAD",,"WINCHESTER","KY","40391",,,,,,,"610458329","8597446171",,,,"2011-09-01T08:05:25-0500","CONNIE KING",,,,,63,61,0,0,61,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110902105346P040018736914001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HOVNANIAN ENTERPRISES INC. EMPLOYEE WELFARE PLAN","501","1984-07-01","K. HOVNANIAN COMPANIES, LLC",,,"110 WEST FRONT STREET","3RD FLOOR","RED BANK","NJ","07701",,,,,,,,,,,,,,,,,,"221851059","7323832653","551112","K. HOVNANIAN COMPANIES, LLC",,"110 WEST FRONT STREET","3RD FLOOR","RED BANK","NJ","07701",,,,,,,"221851059","7323832653",,,,"2011-09-02T10:53:40-0500","SHERRIE DEAN",,,,,2684,1336,116,0,1452,,,,,,,"4A4B4D4E4F4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902165027P040126544289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONOVER INSURANCE, INC. 401(K) RETIREMENT PLAN","001","1985-01-01","CONOVER INSURANCE, INC.",,,"P.O. BOX 3299",,"KIRKLAND","WA","980833299",,,,,,,,,,,,,,,,,,"911123370","4255762517","524210","CONOVER INSURANCE, INC.",,"P.O. BOX 3299",,"KIRKLAND","WA","980833299",,,,,,,"911123370","4255762517",,,,"2011-09-02T16:49:56-0500","MARIKA EVE",,,,,157,140,0,35,175,0,175,160,9,,"2E2F2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110831094709P040125175153001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"1507425","636","2010-01-01","TEST",,,"TEST",,"YULEE","FL","32097",,,,,,,,,,,,,,,,,,"457777789","9045875547","324110","TEST",,"TEST",,"YULEE","FL","32097",,,,,,,"457777789","9045875547",,,,"2011-08-31T09:46:58-0500","MARIA JANCO",,,,,0,,34,,34,,34,,,,,"4A4D","0","0","1","1","0","0","1","1","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110831094914P030017850242001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"OBID ALLERGY & RESPIRATORY CENTER PROFIT SHARING TRUST","001","1988-01-01","OBID ALLERGY & RESPIRATORY CENTER",,,"951 W. 23RD STREET",,"PANAMA CIT","FL","32405",,,,,,,,,,,,,,,,,,"592689123","8507850699","621111","OBID ALLERGY & RESPIRATORY CENTER",,"951 W. 23RD STREET",,"PANAMA CIT","FL","32405",,,,,,,"592689123","8507850699",,,,"2011-08-31T09:48:59-0500","MARWAN OBID MD","2011-08-31T09:48:59-0500","MARWAN OBID MD",,,13,9,0,0,9,0,9,9,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901143246P030122605537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ERICKSON-ROCHON AND NASH FUNERAL HOMES, INC. PROFIT SHARING PLAN","001","1972-07-01","ERICKSON-ROCHON AND NASH FUNERAL HOMES, INC.",,,"901 S. CARPENTER AVENUE",,"IRON MOUNTAIN","MI","49801",,,,,,,,,,,,,,,,,,"381919478","9067747676","812210","ERICKSON-ROCHON AND NASH FUNERAL HOMES, INC.",,"901 S. CARPENTER AVENUE",,"IRON MOUNTAIN","MI","49801",,,,,,,"381919478","9067747676",,,,"2011-09-01T14:32:23-0500","MATTHEW R. NASH",,,,,6,6,0,0,6,0,6,6,0,,"2E3D3H","4B","1","0","1","0","0","0","1","0","0","0","0","0","1","1","3","0","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110902140859P030018052914001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-XM (PRO-BLEND MAXTRM)","140",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-02T14:08:18-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-02",,"Filed with authorized/valid electronic signature", "20110902122040P030123183041001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"KINDERMUSIK INTERNATIONAL, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2001-04-01","KINDERMUSIK INTERNATIONAL, INC.",,,"203 S CHURCH ST",,"GREENSBORO","NC","27401",,,,,,,,,,,,,,,,,,"561851876","3362733363","511190","KINDERMUSIK INTERNATIONAL, INC.",,"203 S CHURCH ST",,"GREENSBORO","NC","27401",,,,,,,"561851876","3362733363",,,,"2011-09-02T12:19:38-0500","SCOTT KINSEY",,,,,53,25,0,29,54,0,54,54,0,,"2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902112026P040126406305001","2010-04-01","2011-03-31","2",,"0","0","1","0","0","0","0","0","0",,"IMAGE SOLUTIONS, INC. HEALTH INSURANCE PLAN","502","2003-04-01","IMAGE SOLUTIONS, INC.",,,"100 JEFFERSON ROAD",,"WHIPPANY","NJ","07981",,,,,,,"100 JEFFERSON ROAD",,"WHIPPANY","NJ","07981",,,,,,,"223199044","9735600404","541511","IMAGE SOLUTIONS, INC.",,"100 JEFFERSON ROAD",,"WHIPPANY","NJ","07981",,,,,,,"223199044","9735600404",,,,"2011-09-01T12:56:11-0500","PETER KIM",,,,,185,0,,,0,,0,,,,,"4A","1",,,,"1",,"0",,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110831110512P040003794483001","2010-08-19","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"BBG, INC. PROFIT SHARING PLAN","001","2010-08-19","BBG, INC.",,,"5005 NORTHRIDGE DR",,"CUMMING","GA","30040",,,,,,,,,,,,,,,,,,"273281998","7708447967","621610","BBG, INC.",,"5005 NORTHRIDGE DR",,"CUMMING","GA","30040",,,,,,,"273281998","7708447967",,,,"2011-08-31T10:18:28-0500","JENNIFER DELUCIA",,,,,1,1,,,1,,1,1,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110901164802P040125964577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANGERMEIER & ROGERS LAW OFFICES SAVINGS AND RETIREMENT PLAN","001","2004-01-01","ANGERMEIER & ROGERS LAW OFFICES",,,"312 EAST WISCONSIN AVE., STE 210",,"MILWAUKEE","WI","532024305",,,,,,,,,,,,,,,,,,"391315157","4142899200","541110","ANGERMEIER & ROGERS LAW OFFICES",,"312 EAST WISCONSIN AVE., STE 210",,"MILWAUKEE","WI","532024305",,,,,,,"391315157","4142899200",,,,"2011-09-01T16:47:37-0500","MARK J. ROGERS",,,,,9,9,0,2,11,0,11,11,0,,"2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110831132826P030121960465001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"SUPERIOR BANK GROUP VISION PLAN","504","2008-01-01","FDIC AS RECEIVER FOR SUPERIOR BANK",,,"7777 BAYMEADOWS WAY WEST",,"JACKSONVILLE","FL","32256",,,,,,,,,,,,,,,,,,"630374307","9042563457","522120","FDIC AS RECEIVER FOR SUPERIOR BANK",,"7777 BAYMEADOWS WAY WEST",,"JACKSONVILLE","FL","32256",,,,,,,"630374307","9042563457","SUPERIOR BANK","630374307","504","2011-08-31T13:28:21-0500","DONNA TRAVERSON","2011-08-31T13:28:21-0500","DONNA TRAVERSON",,,496,0,0,0,0,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901131243P030020062790001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CICINELLI & DIPPOLITO, CPAS, P.C. 401(K) RETIREMENT PLAN","001","2008-01-01","CICINELLI & DIPPOLITO, CPAS, P.C.",,,"1858 COMMERCE STREET",,"YORKTOWN HEIGHTS","NY","10598",,,,,,,,,,,,,,,,,,"133882405","9143022290","541211","CICINELLI & DIPPOLITO, CPAS, P.C.",,"1858 COMMERCE STREET",,"YORKTOWN HEIGHTS","NY","10598",,,,,,,"133882405","9143022290",,,,"2011-09-01T10:42:41-0500","FRANK CICINELLI, TRUSTEE","2011-09-01T10:42:41-0500","FRANK CICINELLI",,,3,3,0,0,3,0,3,3,1,,"2A2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110901170405P040018673714001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PENSION PLAN FOR HOURLY RATE EMPLOYEES OF THE DAVIS-STANDARD PLANT AND THE STERLING PLANT OF DAVIS-STANDARD, LLC","037","2009-01-01","DAVIS-STANDARD, LLC",,"MICHAEL BONTEMPO","1 EXTRUSION DRIVE",,"PAWCATUCK","CT","06379",,,,,,,,,,,,,,,,,,"202653604","8605996323","333200","DAVIS-STANDARD, LLC","MICHAEL BONTEMPO","1 EXTRUSION DRIVE",,"PAWCATUCK","CT","06379",,,,,,,"202653604","8605996323",,,,"2011-09-01T14:07:38-0500","MICHAEL BONTEMPO",,,,,414,123,95,177,395,17,412,,0,,"1A1G1I",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110902143301P030018054514001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHEROKEE COUNTY ELECTRIC CO-OP ASSOCIATION 401(K) PLAN","002","2003-12-01","CHEROKEE COUNTY ELECTRIC CO-OPERATIVE ASSOCIATION",,,"PO BOX 257",,"RUSK","TX","75785",,,,,,,,,,,,,,,,,,"750184514","9036832248","221100","CHEROKEE COUNTY ELECTRIC CO-OPERATIVE ASSOCIATION",,"PO BOX 257",,"RUSK","TX","75785",,,,,,,"750184514","9036832248",,,,"2011-09-02T14:10:05-0500","NAN GLAZE","2011-09-02T14:16:05-0500","GREG JONES",,,68,65,0,0,65,0,65,61,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110902143640P030574597520001","2010-01-01","2010-12-31","4","P","0","1","0","0","0","0","0","0","0",,"SIA-V2 (LIFEPOINTS 2020 STRATEGY)","127",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-02T14:35:42-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-02",,"Filed with authorized/valid electronic signature", "20110901141137P030122597201001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"EMPLOYEE BENEFIT PLAN OF CHILDREN'S AND FAMILY SERVICE","001","1976-03-01","CHILDREN'S AND FAMILY SERVICE","FAMILY SERVICE AGENCY",,"535 MARMION AVENUE",,"YOUNGSTOWN","OH","44502",,,,,,,"535 MARMION AVENUE",,"YOUNGSTOWN","OH","44502",,,,,,,"340714662","3307825664","624100","CHILDREN'S AND FAMILY SERVICE",,"535 MARMION AVENUE",,"YOUNGSTOWN","OH","44502",,,,,,,"340717662","3307825664",,,,"2011-09-01T14:01:34-0500","DAVID ARNOLD",,,,,44,0,0,0,0,0,0,0,0,,"2C2F2G",,"1",,,,"1",,,,"1",,,,"1","1","1","1","1",,"FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110901171648P040018674978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONTINENTAL VAN LINES, INC. PROFIT SHARING AND 401(K) PLAN","001","1970-12-01","CONTINENTAL VAN LINES, INC.",,,"4501 W MARGINAL WAY SW",,"SEATTLE","WA","981061543",,,,,,,,,,,,,,,,,,"910618050","2069372261","484120","CONTINENTAL VAN LINES, INC.",,"4501 W MARGINAL WAY SW",,"SEATTLE","WA","981061543",,,,,,,"910618050","2069372261",,,,"2011-09-01T17:16:28-0500","BRUCE L REED","2011-09-01T17:16:28-0500","BRUCE L REED",,,110,112,0,26,138,0,138,108,7,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110902104029P030574139392001","2010-04-22","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"STILES ENTERPRISES, INC. PROFIT SHARING PLAN","001","2010-04-22","STILES ENTERPRISES, INC.",,,"2146 ROSELAKE CIRCLE",,"ST. PETERS","MO","63376",,,,,,,,,,,,,,,,,,"272412366","3142265152","812112","STILES ENTERPRISES, INC.",,"2146 ROSELAKE CIRCLE",,"ST. PETERS","MO","63376",,,,,,,"272412366","3142265152",,,,"2011-08-29T16:40:03-0500","ANGIE STILES",,,,,2,2,,,2,,2,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902144942P030018055986001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REALTY SPECIALISTS DEFINED BENEFIT PENSION PLAN AND TRUST","001","2004-01-01","PLANET FOR SALE.COM DBA REALTY SPECIALISTS",,,"11557 WHITE CLIFF AVENUE",,"LAS VEGAS","NV","891383018",,,,,,,,,,,,,,,,,,"880472839","7022218020","531210","PLANET FOR SALE.COM DBA REALTY SPECIALISTS",,"11557 WHITE CLIFF AVENUE",,"LAS VEGAS","NV","891383018",,,,,,,"880472839","7022218020",,,,"2011-09-02T14:49:02-0500","MICHAEL J. LONGI",,,,,2,2,0,0,2,0,2,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110902112727P040126410337001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"F.C.L. GRAPHICS, INC. 401(K) SAVINGS PLAN","003","1994-01-01","F.C.L. GRAPHICS, INC.",,,"4600 NORTH OLCOTT AVENUE",,"HARWOOD HEIGHTS","IL","60706",,,,,,,"4600 NORTH OLCOTT AVENUE",,"HARWOOD HEIGHTS","IL","60706",,,,,,,"201402788","7088675500","323100","F.C.L. GRAPHICS, INC.",,"4600 NORTH OLCOTT AVENUE",,"HARWOOD HEIGHTS","IL","60706",,,,,,,"201402788","7088675500",,,,"2011-09-01T10:10:48-0500","PHILIP BAUMAN",,,,,153,121,0,29,150,0,150,127,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110906124751P030018403938001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ADVANCED OBGYN ASSOCIATES 401(K) PROFIT SHARING PLAN","001","1999-01-01","ADVANCED OBGYN ASSOCIATES",,,"9 CATHYANN COURT",,"WAYNE","NJ","07470",,,,,,,,,,,,,,,,,,"223538225","9735434440","621111","ADVANCED OBGYN ASSOCIATES",,"9 CATHYANN COURT",,"WAYNE","NJ","07470",,,,,,,"223538225","9735434440",,,,"2011-09-06T12:38:57-0500","AUDREY PREFER",,,,,19,15,0,1,16,0,16,16,0,,"2A2E2G2J3B3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110831095357P030017850754007","2010-02-01","2011-01-31","2",,,,,,,,,,,,"ASMO GREENVILLE OF NORTH CAROLINA","501","2004-01-01","ASMO GREENVILLE OF NORTH CAROLINA",,,"1125 SUGG PARKWAY",,"GREENVILLE","NC","27834",,,,,,,"1125 SUGG PARKWAY",,"GREENVILLE","NC","27834",,,,,,,"561881909","2527541000","336300","ASMO GREENVILLE OF NORTH CAROLINA",,"1125 SUGG PARKWAY",,"GREENVILLE","NC","27834",,,,,,,"561881909","2527541000",,,,"2011-08-29T04:19:46-0500","JEFF STUTTS",,,,,382,398,,,398,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","6","1",,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",, "20110901111506P040566174224001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NMB/NHBB EMPLOYEE ASSISTANCE PLAN","508","2002-01-01","NMB USA INC.",,,"9730 INDEPENDENCE AVE.",,"CHATSWORTH","CA","913114323",,,,,,,,,,,,,,,,,,"953946465","8187091770","334110","NMB USA INC.",,"9730 INDEPENDENCE AVE.",,"CHATSWORTH","CA","913114323",,,,,,,"953946465","8187091770",,,,"2011-08-29T17:08:57-0500","DAVID MORENA",,,,,1540,3895,0,0,3895,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"1","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",, "20110901095904P040125773041001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"INTEGRA NEUROSCIENCES PR, INC. SAVINGS PLAN FOR PUERTO RICO EMPLOYEES","001","1994-06-29","INTEGRA CI, INC.",,,"P.O. BOX 167","STATE ROAD 402, KM 1.2","ANASCO","PR","00610",,,,,,,,,,,,,,,,,,"980476814","7878262329","339110","INTEGRA CI, INC.",,"P.O. BOX 167","STATE ROAD 402, KM 1.2","ANASCO","PR","00610",,,,,,,"980476814","7878262329",,,,"2011-09-01T09:29:18-0500","LUCY ACEVEDO","2011-09-01T09:58:23-0500","BLANCA GONZALEZ",,,184,232,0,0,232,0,232,204,1,,"2F2G3C2J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110902113141P030574239600002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"BEMENT & COMPANY PC RETIREMENT PLAN","001","1992-01-01","BEMENT & COMPANY PC",,,"448 EAST 400 SOUTH SUITE 204",,"SALT LAKE CITY","UT","84111",,,,,,,,,,,,,,,,,,"870491451","8015961300","541211","KENNETH E BEMENT",,"448 EAST 400 SOUTH SUITE 204",,"SALT LAKE CITY","UT","84111",,,,,,,"870491451","8015961300",,,,"2011-09-02T11:15:28-0500","KENNETH E BEMENT",,,,,10,8,,,8,,8,10,2,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-02","Filed with authorized/valid electronic signature",, "20110831104143P040563420448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELWOOD STAFFING SERVICES, INC. ASSURANT BENEFIT PLAN","502","2008-01-01","ELWOOD STAFFING SERVICES, INC.",,,"P.O. BOX 1024",,"COLUMBUS","IN","47202",,,,,,,,,,,,,,,,,,"351984435","8123726200","561300","ELWOOD STAFFING SERVICES, INC.",,"P.O. BOX 1024",,"COLUMBUS","IN","47202",,,,,,,"351984435","8123726200",,,,"2011-08-31T10:41:40-0500","JOHN ELWOOD","2011-08-31T10:41:40-0500","JOHN ELWOOD",,,119,156,,,156,,,,,,,"4B4D4F4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110831104522P040018560498001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"KLS MARTIN LP EMPLOYEE WELFARE BENEFITS PLAN","550","2009-02-01","KLS MARTIN LP",,,"11201 ST. JOHNS INDUSTRIAL PKWY S",,"JACKSONVILLE","FL","322467652",,,,,,,,,,,,,,,,,,"593213685","9046417746","339110","KLS MARTIN LP","CYNTHIA ANGRESANO","11201 ST. JOHNS INDUSTRIAL PKWY S",,"JACKSONVILLE","FL","322467652",,,,,,,"593213685","9046417746",,,,"2011-08-31T10:37:02-0500","CYNTHIA ANGRESANO","2011-08-31T10:37:49-0500","CYNTHIA ANGRESANO",,,191,332,,,332,,332,,,,,"4A4D4B4H4E4F4Q","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-08-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908085928P030126453265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRUCE A. SCHILKEN, P.C. EMPLOYEES PROFIT SHARING PLAN","001","1980-05-01","BRUCE A. SCHILKEN, P.C.",,,"12569 WEST CRESTLINE DRIVE",,"LITTLETON","CO","80127",,,,,,,,,,,,,,,,,,"840816001","3039864144","541110","BRUCE A. SCHILKEN, P.C.",,"12569 WEST CRESTLINE DRIVE",,"LITTLETON","CO","80127",,,,,,,"840816001","3039864144",,,,"2011-09-08T08:58:28-0500","BRUCE A. SCHILKEN",,,,,8,2,0,6,8,1,9,9,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110906094828P030125320881001","2011-01-01","2011-03-31","2",,"0","0","1","1","0","0","0","0","0",,"PRONK READY MIX, INC. PROFIT SHARING PLAN AND TRUST","002","1991-01-01","PRONK READY MIX, INC.",,,"1732 21ST STREET",,"EDGERTON","MN","56128",,,,,,,,,,,,,,,,,,"411417896","5074425441","238900","PRONK READY MIX, INC.",,"1732 21ST STREET",,"EDGERTON","MN","56128",,,,,,,"411417896","5074425441",,,,"2011-09-06T09:48:05-0500","JEN PRESTON",,,,,12,0,0,0,0,0,0,0,0,,"2E2G2F3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906152817P030125466513001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"MID EMPLOYEE BENEFIT PLAN","502","1997-03-01","MANAGEMENT INFORMATION DISCIPLINES, LLC",,,"9800 ASSOCIATION COURT",,"INDIANAPOLIS","IN","46280",,,,,,,,,,,,,,,,,,"263871312","3175788960","518210","MANAGEMENT INFORMATION DISCIPLINES, LLC",,"9800 ASSOCIATION COURT",,"INDIANAPOLIS","IN","46280",,,,,,,"263871312","3175788960",,,,"2011-09-06T15:27:53-0500","DENISE L. STEPHENS",,,,,25,28,0,0,28,,,,,,,"4A4D4E","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906145848P040128741425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"CHEMED CORPORATION BUSINESS TRAVEL ACCIDENT INSURANCE PLAN","503","1970-12-01","CHEMED CORPORATION",,,"2600 CHEMED CENTER",,"CINCINNATI","OH","452024700",,,,,,,,,,,,,,,,,,"310791746","5137626900","551112","CHEMED CORPORATION",,"2600 CHEMED CENTER",,"CINCINNATI","OH","452024700",,,,,,,"310791746","5137626900",,,,"2011-09-06T14:57:13-0500","DAVID J. LOHBECK, V. PRESIDENT","2011-09-06T14:57:13-0500","DAVID G. SPARKS, V. PRESIDENT",,,264,265,,,265,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110907105253P030125887393001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"WHITING PETROLEUM CORPORATION EMPLOYEE MEDICAL PLAN","501","1990-07-01","WHITING PETROLEUM CORPORATION",,,"1700 BROADWAY SUITE 2300",,"DENVER","CO","80290",,,,,,,,,,,,,,,,,,"840918829","3038371661","211110","WHITING PETROLEUM CORPORATION",,"1700 BROADWAY SUITE 2300",,"DENVER","CO","80290",,,,,,,"840918829","3038371661",,,,"2011-09-07T10:52:46-0500","HEATHER M. DUNCAN","2011-09-07T10:52:46-0500","HEATHER M. DUNCAN",,,510,612,10,0,622,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908123431P030590450544001","2009-08-01","2009-12-31","2",,"0","1","1","1","0","1","0","0","0",,"WOODHAVEN HEALTH SERVICES DBA REMEDI SENIORCARE MEDICAL PLAN","501","2007-08-01","WOODHAVEN HOLDING CORP DBA REMEDI SENIORCARE",,,"9006 YELLOW BRICK RD",,"BALTIMORE","MD","21237",,,,,,,,,,,,,,,,,,"520682487","4439278827","446110","WOODHAVEN HOLDING CORP DBA REMEDI SENIORCARE",,"9006 YELLOW BRICK RD",,"BALTIMORE","MD","21237",,,,,,,"520682487","4439278827",,,,"2011-09-08T12:33:14-0500","JAMES J WALLER",,,,,299,0,0,0,0,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110906120200P030125377713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLEMAN COMPANY, INC. 401(K) PLAN","002","1993-07-01","COLEMAN COMPANY, INC.",,,"PO BOX 6400","5125 HWY. 16 S.","RAPID CITY","SD","577096400",,,,,,,,,,,,,,,,,,"460379192","6057213700","339900","COLEMAN COMPANY, INC.",,"PO BOX 6400","5125 HWY. 16 S.","RAPID CITY","SD","577096400",,,,,,,"460379192","6057213700",,,,"2011-09-06T11:54:03-0500","DWIGHT SOBCZAK",,,,,126,98,0,12,110,,110,110,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110908113528P030018581106001","2008-01-01","2008-10-15","2",,"0","0","1","1","0","0","0","0","0",,"WALKER PONTIAC GMC INC 401 K PLAN","001","2003-04-01","WALKER PONTIAC GMC INC",,,"2404 CRAIN HWY SOUTH",,"BOWIE","MD","20716",,,,,,,"2404 CRAIN HWY SOUTH",,"BOWIE","MD","20716",,,,,,,"520733640","3012491000","441110","WALKER PONTIAC GMC INC",,"2404 CRAIN HWY SOUTH",,"BOWIE","MD","20716",,,,,,,"520733640","3012491000",,,,"2011-09-08T11:23:09-0500","HELEN WALKER",,,,,25,0,0,0,0,0,0,0,0,0,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110908134840P030126592833001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TOCQUEVILLE MANAGEMENT CORPORATION TAX DEFERRED SAVINGS PLAN","001","1990-01-01","TOCQUEVILLE MANAGEMENT CORP.",,,"40W. 57TH ST., 19TH FLOOR",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"133547559","2126980800","523140","TOCQUEVILLE MANAGEMENT CORP.",,"40W. 57TH ST., 19TH FLOOR",,"NEW YORK","NY","10019",,,,,,,"133547559","2126980800",,,,"2011-09-08T13:48:13-0500","ANTHONY CHEN",,,,,121,113,0,8,121,0,121,114,0,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110907160008P040129368673001","2010-01-01","2010-12-31","2",,,,,,,,,"1",,,"JANET L. ROGGE, MD, PS. PROFIT SHARING PLAN","002","1985-03-01","JANET L. ROGGE, MD, PS",,,"509 OLIVE WAY, SUITE 1259",,"SEATTLE","WA","981011720",,,,,,,,,,,,,,,,,,"911200495","2066245355","621111","JANET L. ROGGE, MD, PS RETIREMENT PLAN ADMIN. COMMITTEE",,"509 OLIVE WAY, STE 1259",,"SEATTLE","WA","981011745",,,,,,,"911336727","2066245355",,,,"2011-09-07T16:45:08-0500","JANET L. ROGGE, MD","2011-09-07T16:48:10-0500","JANET L. ROGGE, MD",,,2,1,0,0,1,0,1,1,,,"2A2C2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110909095732P040130396769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEOPLES CHOICE FEDERAL CREDIT UNION 401(K) PLAN","002","2010-01-01","PEOPLES CHOICE FEDERAL CREDIT UNION",,,"2500 N ST",,"LINCOLN","NE","68510",,,,,,,,,,,,,,,,,,"470432253","4024757059","522130","PEOPLES CHOICE FEDERAL CREDIT UNION",,"2500 N ST",,"LINCOLN","NE","68510",,,,,,,"470432253","4024757059",,,,"2011-09-09T09:56:51-0500","DALE SPRINGER",,,,,25,25,0,1,26,0,26,25,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110906132439P030125415009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEW ENERGY CORP. PENSION PLAN","001","1985-01-01","NEW ENERGY CORP.",,,"P.O. BOX 2289",,"SOUTH BEND","IN","466802289",,,,,,,"3201 WEST CALVERT",,"SOUTH BEND","IN","466131010",,,,,,,"352015774","5742333116","325100","NEW ENERGY CORP.",,"P.O. BOX 2289",,"SOUTH BEND","IN","466802289",,,,,,,"352015774","5742333116",,,,"2011-09-06T10:00:08-0500","FRANK BUTISTE",,,,,178,103,6,54,163,6,169,,1,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906132622P040128693361001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PROFESSIONAL FINANCIAL INVESTORS, INC. PROFIT SHARING/401(K) PLAN","001","2000-01-01","PROFESSIONAL FINANCIAL INVESTORS, INC.",,,"350 IGNACIO BLVD., STE. 300",,"NOVATO","CA","94949",,,,,,,,,,,,,,,,,,"680233228","4158974111","531310","PROFESSIONAL FINANCIAL INVESTORS, INC.",,"350 IGNACIO BLVD., STE. 300",,"NOVATO","CA","94949",,,,,,,"680233228","4158974111",,,,"2011-09-06T13:16:16-0500","LEWIS WALLACH",,,,,25,13,0,6,19,0,19,17,0,,"2A2E2G2J2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906072556P040578942912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PULSE TECHNOLOGIES, INC. 401K PLAN","001","1997-07-01","PULSE TECHNOLOGIES, INC.",,,"2000 AM DRIVE",,"QUAKERTOWN","PA","189513811",,,,,,,,,,,,,,,,,,"232660285","2677330200","339110","MARK MANGINI",,"2000 AM DRIVE",,"QUAKERTOWN","PA","18951",,,,,,,"232660285","2677330200",,,,"2011-09-06T07:22:34-0500","MARK MANGINI",,,,,203,158,0,31,189,0,189,132,6,,"2E2G2J2K3D2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906171545P030125515473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"T.B. BUTLER PUBLISHING CO. INC. 401 (K) SAVINGS & RETIREMENT PLAN","001","1998-01-01","T.B. BUTLER PUBLISHING CO. INC.",,,"P.O. BOX 2030",,"TYLER","TX","75710",,,,,,,,,,,,,,,,,,"751420210","9035966239","511110","T.B. BUTLER PUBLISHING CO. INC.",,"P.O. BOX 2030",,"TYLER","TX","75710",,,,,,,"751420210","9035966239",,,,"2011-09-06T14:48:55-0500","DEBRA DOWDEN",,,,,208,178,0,25,203,1,204,130,9,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110908131602P030018586498004","2008-01-01","2008-12-31","2",,,,,,,,,"1",,,"DEVCON SERVICES GROUP, LLC 401(K) PLAN","001","2007-08-01","DEVCON SERVICES GROUP, LLC",,,"2705 C-A","SCENIC HIGHWAY 98","DESTIN","FL","32541",,,,,,,,,,,,,,,,,,"205256068","8506853569","531390","DEVCON SERVICES GROUP, LLC",,"2705 C-A","SCENIC HIGHWAY 98","DESTIN","FL","32541",,,,,,,"205256068","8506853569",,,,"2011-09-08T07:25:58-0500","WALTER SHANNON HOWELL","2011-09-08T07:25:58-0500","WALTER SHANNON HOWELL",,,4,2,,2,4,,4,4,1,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110906162617P040019127714002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"EBY-BROWN CO. SELF-INSURANCE PLAN HOSPITAL AND SURGICAL","501","1979-06-01","EBY-BROWN COMPANY, LLC",,,"280 SHUMAN BLVD., P.O. BOX 3067",,"NAPERVILLE","IL","605667067",,,,,,,,,,,,,,,,,,"364382177","6307782800","424940","EBY-BROWN COMPANY, LLC",,"280 SHUMAN BLVD., P.O. BOX 3067",,"NAPERVILLE","IL","605667067",,,,,,,"364382177","6307782800",,,,"2011-09-02T04:59:39-0500","JOAN M NAUMAN",,,,,1496,1442,16,,1458,,,,,,,"4A","1",,"1",,"1",,"1",,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110908082659P030018565522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUTCHINSON SEALING SYSTEMS, INC. 401(K) PLAN","002","1999-09-30","HUTCHINSON SEALING SYSTEMS, INC.",,,"1060 CENTRE ROAD",,"AUBURN HILLS","MI","48326",,,,,,,,,,,,,,,,,,"061554454","2483753770","336300","HUTCHINSON SEALING SYSTEMS, INC.",,"1060 CENTRE ROAD",,"AUBURN HILLS","MI","48326",,,,,,,"061554454","2483753770",,,,"2011-09-08T08:26:07-0500","CHERYL STRONG",,,,,848,536,6,221,763,2,765,735,17,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110908104254P040584737936001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"BURKE BEVERAGE, INC. WELFARE PLAN","501","2009-06-01","BURKE BEVERAGE, INC.",,,"4900 SOUTH VERNON AVENUE",,"MCCOOK","IL","60525",,,,,,,,,,,,,,,,,,"363047221","7086882000","424800","BURKE BEVERAGE, INC.",,"4900 SOUTH VERNON AVENUE",,"MCCOOK","IL","60525",,,,,,,"363047221","7086882000",,,,"2011-09-08T10:42:46-0500","KEVIN R. BURKE",,,,,195,189,0,0,189,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110908172322P030591032272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMQUIP CAPITAL & LEASING, INC. 401(K) PROFIT SHARING PLAN","001","1988-05-23","COMQUIP CAPITAL & LEASING, INC.",,,"21 BLUFF POINT ROAD",,"NORTHPORT","NY","11768",,,,,,,,,,,,,,,,,,"112912615","6313685221","532400","COMQUIP CAPITAL & LEASING, INC.",,"21 BLUFF POINT ROAD",,"NORTHPORT","NY","11768",,,,,,,"112912615","6313685221",,,,"2011-09-08T09:47:48-0500","PETER SCLAFANI",,,,,3,2,0,1,3,0,3,3,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110909123047P040130461185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUNRISE COMPANY TAX DEFERRED INVESTMENT AND PROFIT SHARING PLAN","001","1985-01-01","TOSCANA LIMITED L.P.",,,"300 EAGLE DANCE CIRCLE",,"PALM DESERT","CA","92211",,,,,,,,,,,,,,,,,,"200080804","7607727227","236110","TOSCANA LIMITED L.P.",,"300 EAGLE DANCE CIRCLE",,"PALM DESERT","CA","92211",,,,,,,"200080804","7607727227",,,,"2011-09-09T12:09:53-0500","ANN YAKOVICH",,,,,164,220,4,43,267,0,267,139,0,,"2E2F2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110906103126P030584689104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BURKERT 401K PRO PLAN AND RETIREMENT TRUST","001","1995-12-06","BURKERT CONTROMATIC CORPORATION",,,"2915 WHITEHALL PARK DRIVE","SUITE 650","CHARLOTTE","NC","28273",,,,,,,,,,,,,,,,,,"330070281","9492233175","339900","BURKERT CONTROMATIC CORPORATION",,"2915 WHITEHALL PARK DRIVE","SUITE 650","CHARLOTTE","NC","28273",,,,,,,"330070281","9492233175",,,,"2011-09-06T10:30:37-0500","JACQUELINE POUNDS",,,,,83,68,0,34,102,0,102,98,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110908135218P030126595665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAVELLE BY DAVID, LTD. PROFIT SHARING PLAN","001","1999-01-01","DAVELLE BY DAVID, LTD.",,,"42736 RIDGEWAY DRIVE",,"BROADLANDS","VA","201484558",,,,,,,,,,,,,,,,,,"542018514","7039040011","448110","DAVELLE BY DAVID, LTD.",,"42736 RIDGEWAY DRIVE",,"BROADLANDS","VA","201484558",,,,,,,"542018514","7039040011",,,,"2011-09-08T13:50:43-0500","DAVID A. EISELE SR.",,,,,9,8,0,1,9,0,9,9,0,,"2A2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110907142433P030018500018001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOODMAN THEATRE RETIREMENT PLAN","001","1997-01-01","CHICAGO THEATRE GROUP, INC.","GOODMAN THEATRE",,"170 N DEARBORN",,"CHICAGO","IL","60601",,,,,,,,,,,,,,,,,,"362896025","3124433811","711100","CHICAGO THEATRE GROUP, INC.",,"170 N DEARBORN",,"CHICAGO","IL","60601",,,,,,,"362896025","3124433811",,,,"2011-09-07T14:23:59-0500","JODI J. BROWN","2011-09-07T14:23:59-0500","PETER D. CALIBRARO",,,161,129,0,31,160,0,160,147,5,,"2A2E2F2G2J2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110907173935P030040664119001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"GROUP HEALTH INSURANCE PLAN","501","2003-02-01","THE AMERICAN SOCIETY FOR THE PREVENTION OF CRUELTY TO ANIMALS",,,"424 EAST 92ND STREET",,"NEW YORK","NY","10128",,,,,,,"424 EAST 92ND STREET",,"NEW YORK","NY","10128",,,,,,,"131623829","2128767700","541940","THE AMERICAN SOCIETY FOR THE PREVENTION OF CRUELTY TO ANIMALS",,"424 EAST 92ND STREET",,"NEW YORK","NY","10128",,,,,,,"131623829","2128767700",,,,"2011-09-01T17:30:42-0500","JULIA NELSON",,,,,369,377,16,0,393,0,393,,0,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110908111209P030590289104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACUZZI 401(K) PLAN","001","2007-02-08","JACUZZI BRANDS CORP.",,,"13925 CITY CENTER DRIVE","SUITE 200","CHINO HILLS","CA","91709",,,,,,,,,,,,,,,,,,"208158665","9092472183","339900","JACUZZI BRANDS CORP.",,"13925 CITY CENTER DRIVE","SUITE 200","CHINO HILLS","CA","91709",,,,,,,"208158665","9092472183",,,,"2011-09-08T11:11:40-0500","ROSY BRENNAN","2011-09-08T11:11:40-0500","ROSY BRENNAN",,,615,405,0,124,529,0,529,529,2,,"2F2H2J2K3H2E2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110909090718P040130374081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NASHEL AND NASHEL, LLC PROFIT SHARING PLAN","001","1974-01-01","NASHEL AND NASHEL, LLC",,,"415 60TH STREET",,"WEST NEW YORK","NJ","07093",,,,,,,,,,,,,,,,,,"221971596","2018681900","541110","NASHEL AND NASHEL, LLC",,"415 60TH STREET",,"WEST NEW YORK","NJ","07093",,,,,,,"221971596","2018681900",,,,"2011-09-09T09:06:15-0500","RICHARD NASHEL",,,,,2,1,0,2,3,0,3,3,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110906135014P030125422929001","2010-10-01","2010-12-31","2",,"0","0","0","1","0","1","0","0","0",,"WARREN ELECTRIC SUPPLY, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1998-10-01","WARREN ELECTRIC SUPPLY, INC.",,,"281 DIX AVENUE",,"QUEENSBURY","NY","12804",,,,,,,,,,,,,,,,,,"141674701","5187930274","423600","WARREN ELECTRIC SUPPLY, INC.",,"281 DIX AVENUE",,"QUEENSBURY","NY","12804",,,,,,,"141674701","5187930274",,,,"2011-09-06T13:28:46-0500","GERARD NUDI",,,,,89,54,11,25,90,1,91,91,4,,"2E2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906083744P040579081056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FOREST CITY 401(K) EMPLOYEE SAVINGS PLAN & TRUST","001","1992-05-01","FOREST CITY ENTERPRISES, INC.",,,"50 PUBLIC SQUARE, SUITE 1300",,"CLEVELAND","OH","441132204",,,,,,,,,,,,,,,,,,"340863886","2164163968","531310","FOREST CITY ENTERPRISES, INC.",,"50 PUBLIC SQUARE, SUITE 1300",,"CLEVELAND","OH","441132204",,,,,,,"340863886","2164163968",,,,"2011-09-06T08:37:26-0500","THOMAS RIEGER","2011-09-06T08:37:26-0500","ROBERT O'BRIEN",,,3037,2146,0,529,2675,10,2685,2548,0,,"2E2F2G2J2K2R2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110906163138P030125498305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EAGLE INDUSTRIES UNLIMITED, INC 401(K) PLAN","001","2007-02-01","EAGLE INDUSTRIES UNLIMITED, INC",,"ALLIANT TECHSYSTEMS, INC","7480 FLYING CLOUD DRIVE",,"MINNEAPOLIS","MN","553443720",,,,,,,,,,,,,,,,,,"431255338","9523513000","315990","EAGLE INDUSTRIES UNLIMITED, INC","ALLIANT TECHSYSTEMS, INC","7480 FLYING CLOUD DRIVE",,"MINNEAPOLIS","MN","553443720",,,,,,,"431255338","9523513000",,,,"2011-09-06T16:30:20-0500","WAYDE HEIRIGS","2011-09-06T16:30:20-0500","WAYDE HEIRIGS",,,2605,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3H3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908073007P030018561778002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"EQUITY PARTICIPATION PLAN OF GENERAL MEDICINE,P.C.","002","1999-01-01","GENERAL MEDICINE, P.C.",,,"21333 HAGGERTY ROAD SUITE 150",,"NOVI","MI","48375",,,,,,,,,,,,,,,,,,"382567464","2486620250","621399","GENERAL MEDICINE, P.C.",,"21333 HAGGERTY ROAD SUITE 150",,"NOVI","MI","48375",,,,,,,"382567464","2486620250",,,,"2011-09-08T08:20:06-0500","THOMAS M PROSE","2011-09-08T08:20:15-0500","THOMAS M PROSE",,,22,21,0,0,21,0,21,21,,,"2E3C",,,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908133056P040019291922001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"CENTER FOR PLASTIC SURGERY 401(K) PLAN","001","2010-01-01","CENTER FOR PLASTIC SURGERY",,,"1880 FILLMORE STREET",,"TWIN FALLS","ID","83301",,,,,,,,,,,,,,,,,,"201915395","2087358376","621111","CENTER FOR PLASTIC SURGERY",,"1880 FILLMORE STREET",,"TWIN FALLS","ID","83301",,,,,,,"201915395","2087358376",,,,"2011-09-08T13:31:08-0500","DELL SMITH MD","2011-09-08T13:31:08-0500","DELL SMITH MD",,,9,10,0,0,10,0,10,10,0,,"2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908142941P040129925697001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"THE DENVER WHOLESALE FLORISTS EMPLOYEE STOCK OWNERSHIP PLAN","002","2008-08-01","DENVER WHOLESALE FLORISTS",,,"4800 DAHLIA STREET","PO BOX 173354","DENVER","CO","802173354",,,,,,,,,,,,,,,,,,"840188620","3033763101","424930","DENVER WHOLESALE FLORISTS",,"4800 DAHLIA STREET","PO BOX 173354","DENVER","CO","802173354",,,,,,,"840188620","3033763101",,,,"2011-09-08T14:29:38-0500","DEBBIE BARBER","2011-09-08T14:29:38-0500","DEBBIE BARBER",,,245,210,0,21,231,1,232,221,15,,"2I2P2Q3H",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110909103654P040130416225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TREK BICYCLE CORPORATION 401(K) PLAN","002","1996-04-01","TREK BICYCLE CORPORATION",,,"801 WEST MADISON STREET",,"WATERLOO","WI","535941379",,,,,,,,,,,,,,,,,,"391237359","9204782191","336990","TREK BICYCLE CORPORATION",,"801 WEST MADISON STREET",,"WATERLOO","WI","535941379",,,,,,,"391237359","9204782191",,,,"2011-09-09T10:36:12-0500","JOSEPH R. SIEFKES",,,,,1304,1132,0,161,1293,3,1296,1177,0,,"2E2F2G2J2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110908105215P030590244288001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"FILTRATION GROUP EMPLOYEE MEDICAL BENEFIT PLAN","501","2001-06-01","FILTRATION GROUP, INC.",,,"912 E. WASHINGTON STREET",,"JOLIET","IL","60433",,,,,,,,,,,,,,,,,,"363260700","8157264600","333410","FILTRATION GROUP, INC.",,"912 E. WASHINGTON STREET",,"JOLIET","IL","60433",,,,,,,"363260700","8157264600",,,,"2011-09-08T10:46:18-0500","JAMES NEBOR",,,,,694,705,3,0,708,,,,,,,"4A4B4D4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110907180252P030588414704001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAVID G. WHITE, P.L.L.C. 401(K) PLAN","002","2004-01-01","DAVID G. WHITE, P.L.L.C.",,,"2702 E CHOLLA STREET",,"PHOENIX","AZ","85028",,,,,,,,,,,,,,,,,,"223880029","6025256622","531210","DAVID G. WHITE, P.L.L.C.",,"2702 E CHOLLA STREET",,"PHOENIX","AZ","85028",,,,,,,"223880029","6025256622",,,,"2011-09-07T18:02:51-0500","ALAN GOLD, CPA",,,,,6,6,0,0,6,0,6,6,0,,"2J2E2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110909123408P040130462385001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SUNVALLEY ARTHRITIS CENTER, LTD. DEFINED BENEFIT PLAN","005","2009-01-01","SUNVALLEY ARTHRITIS CENTER, LTD.",,,"6818 W. THUNDERBIRD ROAD",,"PEORIA","AZ","85381",,,,,,,,,,,,,,,,,,"860721995","6235663550","621111","SUNVALLEY ARTHRITIS CENTER, LTD.",,"6818 W. THUNDERBIRD ROAD",,"PEORIA","AZ","85381",,,,,,,"860721995","6235663550",,,,"2011-09-09T13:33:54-0500","JOY SCHECHTMAN, D.O.",,,,,8,8,0,0,8,0,8,,0,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110906151815P030125461729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IRWIN ACKERMAN RETIREMENT PLAN","003","2003-01-01","IRWIN ACKERMAN",,,"187 MILLBURN AVENUE","SUITE 6","MILLBURN","NJ","070411845",,,,,,,"187 MILLBURN AVENUE","SUITE 6","MILLBURN","NJ","070411845",,,,,,,"132760775","9733794150","531310","IRWIN ACKERMAN",,"187 MILLBURN AVENUE","SUITE 6","MILLBURN","NJ","070411845",,,,,,,"132760775","9733794150",,,,"2011-09-06T14:33:27-0500","IRWIN ACKERMAN",,,,,1,1,,,1,,1,,,,"1A3B3D",,"1",,"1",,"1",,"1",,"1",,"1",,"1","1","1",,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110908143505P030126619313001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SOUTH TEXAS MOULDING EMPLOYEE STOCK OWNERSHIP PLAN","002","2008-01-01","SOUTH TEXAS MOULDING, INC.",,,"940 W. EXPRESSWAY 83",,"DONNA","TX","78537",,,,,,,"940 W. EXPRESSWAY 83",,"DONNA","TX","78537",,,,,,,"742046490","9564646331","444190","SOUTH TEXAS MOULDING, INC.",,"940 W. EXPRESSWAY 83",,"DONNA","TX","78537",,,,,,,"742046490","9564646331",,,,"2011-09-08T14:33:53-0500","LOCK SEAL",,,,,72,64,,9,73,,73,,,,"2I2P2Q3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110909140445P030127170337001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"WASTE MANAGEMENT RETIREMENT SAVINGS PLAN FOR BARGAINING UNIT EMPLOYEES","007","1998-04-01","WASTE MANAGEMENT HOLDINGS, INC.",,,"1001 FANNIN STREET, SUITE 4000",,"HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"362660763","7135126200","562000","ADMINISTRATIVE COMMITTEE OF WASTE MANAGEMENT EMPLOYEE BENEFIT PLANS",,"1001 FANNIN STREET SUITE 4000",,"HOUSTON","TX","77002",,,,,,,"621544243","7135126200",,,,"2011-09-09T14:02:56-0500","KRISTA DELSOTA",,,,,1593,1739,0,47,1786,5,1791,989,0,,"2F2G2J2K2R2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110909140524P030127171105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LUTHERAN SOCIAL SERVICES OF NORTH DAKOTA PENSION PLAN","001","1986-01-01","LUTHERAN SOCIAL SERVICES OF NORTH DAKOTA",,,"1325 11TH STREET SOUTH",,"FARGO","ND","58103",,,,,,,,,,,,,,,,,,"450226421","7012357341","624100","LUTHERAN SOCIAL SERVICES OF NORTH DAKOTA",,"1325 11TH STREET SOUTH",,"FARGO","ND","58103",,,,,,,"450226421","7012357341",,,,"2011-09-09T14:03:53-0500","ROBERT SANDERSON",,,,,174,129,16,36,181,0,181,80,12,,"3D2E2C2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110906114100P030125371441001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"MATE PRECISION TOOLING EMPLOYEE RETIREMENT SAVINGS PLAN","001","1967-10-01","MATE PRECISION TOOLING, INC.",,,"1295 LUND BLVD.",,"ANOKA","MN","55303",,,,,,,"1295 LUND BLVD.",,"ANOKA","MN","55303",,,,,,,"410881512","7635763424","332110","MATE PRECISION TOOLING, INC.",,"1295 LUND BLVD.",,"ANOKA","MN","55303",,,,,,,"410881512","7635763424",,,,"2011-09-06T11:31:18-0500","DUANE VANDENBERGHE",,,,,395,323,0,88,411,7,418,411,5,,"2E2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906121714P030125385505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIAMS, BENAVIDES, & MARSTON, MD PA 401(K) PSP","001","1989-10-01","WILLIAMS, BENAVIDES, MARSTON, & KAMINSKI, MD PA",,,"3809 COMPUTER DRIVE STE 201",,"RALEIGH","NC","27609",,,,,,,,,,,,,,,,,,"561665736","9197826700","621111","WILLIAMS, BENAVIDES, MARSTON, & KAMINSKI, MD PA",,"3809 COMPUTER DRIVE STE 201",,"RALEIGH","NC","27609",,,,,,,"561665736","9197826700",,,,"2011-09-06T09:11:59-0500","RANDALL W WILLIAMS, MD","2011-09-06T09:11:59-0500","RANDALL W WILLIAMS, MD",,,25,19,0,6,25,0,25,23,0,,"2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908143830P030126620417006","2010-03-01","2011-02-28","2",,,,"1",,,,,,,,"TW-INDIANA EMPLOYEE BENEFIT PLAN","501","2003-03-01","TW-INDIANA, LLC",,,"2301 RIVER RD STE 200",,"LOUISVILLE","KY","402061093",,,,,,,,,,,,,,,,,,"352044325","5028930323","722110","TW-INDIANA, LLC",,"2301 RIVER RD STE 200",,"LOUISVILLE","KY","402061093",,,,,,,"352044325","5028930323",,,,"2011-09-08T10:29:09-0500","MATTHEW HIGGINS",,,,,89,0,0,0,0,,,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110907140452P030125974369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUPERIOR MANUFACTURING GROUP INCENTIVE SAVINGS PLA INCENTIVE SAVINGS PLAN","001","1983-10-20","SUPERIOR MANUFACTURING GROUP, INC.",,,"5655 W. 73RD STREET",,"BEDFORD PARK","IL","60638",,,,,,,,,,,,,,,,,,"362212178","7084584600","326100","SUPERIOR MANUFACTURING GROUP, INC.",,"5655 W. 73RD STREET",,"BEDFORD PARK","IL","60638",,,,,,,"362212178","7084584600",,,,"2011-09-07T13:39:00-0500","EUGENE POLLASTRINI","2011-09-07T13:39:00-0500","EUGENE POLLASTRINI",,,210,177,2,34,213,0,213,171,9,,"3D2E2J2K2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110909094507P040130392145001","2010-01-01","2010-12-31","2",,,,"1",,,,"1",,,,"HARVEY E. JOHNSON, P.C. PROFIT SHARING PLAN","001","1997-01-01","HARVEY E JOHNSON JR PC",,,"5531 LEE HIGHWAY",,"ARLINGTON","VA","222071613",,,,,,,,,,,,,,,,,,"541320434","7035330112","541211","HARVEY E JOHNSON JR PC",,"5531 LEE HIGHWAY",,"ARLINGTON","VA","222071613",,,,,,,"541320434","7035330112",,,,"2011-09-08T09:10:52-0500","PEGGY H. JOHNSON",,,,,2,0,0,0,0,0,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110909100652P040130401041001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"LAKEWOOD SURGICAL GROUP, P.A. PROFIT SHARING PLAN","002","1970-07-01","LAKEWOOD SURGICAL GROUP, P.A.",,,"9 HOSPITAL DRIVE","SUITE C-23","TOMS RIVER","NJ","08755",,,,,,,"3 PROSPECT STREET",,"LAKEWOOD","NJ","08701",,,,,,,"221910942","7323410470","621111","LAKEWOOD SURGICAL GROUP, P.A.",,"9 HOSPITAL DRIVE","SUITE C-23","TOMS RIVER","NJ","08755",,,,,,,"221910942","7323410470",,,,"2011-09-09T10:06:00-0500","WILLIAM SCHULMAN","2011-09-09T10:06:00-0500","WILLIAM SCHULMAN",,,10,7,0,1,8,0,8,8,1,,"2A2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110906080618P030125278977002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MICHAEL P SASSARIS MD PA 401-K PROFIT SHARING PLAN","001","1985-10-01","MICHAEL P SASSARIS, M D P A",,,"3920 BEE RIDGE ROAD",,"SARASOTA","FL","34233",,,,,,,,,,,,,,,,,,"592578279","9419216673","621111","MICHAEL P SASSARIS M D P A",,"3920 BEE RIDGE ROAD",,"SARASOTA","FL","34233",,,,,,,"592578279","9419216673",,,,"2011-09-02T16:20:30-0500","MICHAEL P SASSARIS",,,,,5,5,,,5,,5,5,,,"3D2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906155502P030125480273007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"AMERICAN ORTHODONTICS CORPORATION CAFETERIA PLAN","506","1993-01-01","AMERICAN ORTHODONTICS CORPORATION",,,"1714 CAMBRIDGE AVENUE",,"SHEBOYGAN","WI","53081",,,,,,,,,,,,,,,,,,"391093323","9204575051","339110","AMERICAN ORTHODONTICS CORPORATION",,"1714 CAMBRIDGE AVENUE",,"SHEBOYGAN","WI","53081",,,,,,,"391093323","9204575051",,,,"2011-09-06T09:13:50-0500","JAMES VAN ALSTINE",,,,,344,340,0,0,340,,,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110908075225P040021319878001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAN ANTONIO EXPRESS NEWS DENTAL PLAN FOR REGULAR FULL TIME EMPLOYEES","572","1983-12-01","HEARST NEWSPAPERS, LLC",,,"SAN ANTONIO EXPRESS-NEWS",,"CHARLOTTE","NC","28202",,,,,,,"214 NORTH TRYON STREET",,"CHARLOTTE","NC","28202",,,,,,,"760556295","7043488487","511110","HEARST NEWSPAPERS, LLC",,"SAN ANTONIO EXPRESS-NEWS",,"CHARLOTTE","NC","28202",,,,,,,"760556295","7043488487",,,,"2011-09-08T07:49:36-0500","EDWIN A. RUSGO",,,,,782,555,60,0,615,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110908084146P040584503232001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAFFE FINANCIAL GROUP PROFIT SHARING PLAN AND TRUST","001","2001-01-01","JAY MAFFE",,,"333 E RIVER DR STE 401",,"EAST HARTFORD","CT","061084201",,,,,,,"333 E RIVER DR STE 401",,"EAST HARTFORD","CT","061084201",,,,,,,"061474680","8602828718","524210","JAY MAFFE",,"333 E RIVER DR STE 401",,"EAST HARTFORD","CT","061084201",,,,,,,"061474680","8602828718",,,,"2011-09-08T08:23:32-0500","JAY MAFFE",,,,,9,7,0,5,12,0,12,12,0,,"2E2H2J2K2T3B3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110907144117P030125987905001","2010-05-16","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"SHULER YOTUX INC. PROFIT SHARING PLAN","001","2010-05-16","SHULER YOTUX INC.",,,"3350 RIVERWOOD PKWY STE 2100",,"ATLANTA","GA","30339",,,,,,,,,,,,,,,,,,"272619048","7703038200","311500","SHULER YOTUX INC.",,"3350 RIVERWOOD PKWY STE 2100",,"ATLANTA","GA","30339",,,,,,,"272619048","7703038200",,,,"2011-09-07T14:36:42-0500","STEPHEN SHULER",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D2R3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110907183156P040129435473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIDWESTHR, LLC 401(K) RETIREMENT PLAN","001","2005-05-01","DIXON MEYERS TRANSPORTATION INC",,"MIDWESTHR LLC","4355 WEAVER PARKWAY SUITE 140",,"WARRENVILLE","IL","60555",,,,,,,,,,,,,,,,,,"362658405","8155619923","541990","MIDWESTHR, LLC","4355 WEAVER PARKWAY","SUITE 140",,"WARRENVILLE","IL","60555",,,,,,,"880457743","6308363000",,,,"2011-09-07T17:51:41-0500","JEFFREY BARTELT",,,,,49,37,0,5,42,0,42,11,1,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110907183214P040129435569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIDWESTHR, LLC 401(K) RETIREMENT PLAN","001","2002-07-01","THE FONE ZONE FORMALLY KNOW AS THE WIRELESS ZONE",,"MIDWESTHR LLC","4355 WEAVER PARKWAY SUITE 140",,"WARRENVILLE","IL","60555",,,,,,,,,,,,,,,,,,"010583884","6308721000","541990","MIDWESTHR","4355 WEAVER PARKWAY","SUITE 140",,"WARRENVILLE","IL","60555",,,,,,,"880457743","6308363000",,,,"2011-09-07T17:51:18-0500","JEFFREY BARTELT",,,,,25,25,0,0,25,0,25,7,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110909111815P040019375026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARY SCHULTZ & ASSOCIATES, P.S. 401(K) PROFIT SHARING PLAN","001","2003-01-01","MARY SCHULTZ & ASSOCIATES, P.S.",,,"111 S. POST STREET","DAVENPORT TOWER PENTHOUSE 2250","SPOKANE","WA","99201",,,,,,,,,,,,,,,,,,"911453458","5094582750","541110","MARY SCHULTZ & ASSOCIATES, P.S.",,"111 S. POST STREET","DAVENPORT TOWER PENTHOUSE 2250","SPOKANE","WA","99201",,,,,,,"911453458","5094582750",,,,"2011-09-08T18:45:42-0500","MARY SCHULTZ",,,,,5,4,0,1,5,0,5,5,0,,"2A2E2J3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110909114748P030127106209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"WORLDWIDE MANAGED CARE 401(K) PROFIT SHARING PLAN & TRUST","002","2009-01-01","WORLDWIDE MANAGED CARE",,,"PARTNERS LLC","10800 BISCAYNE BLVD SUITE 201","MIAMI","FL","33161",,,,,,,,,,,,,,,,,,"542120040","3058922125","561110","WORLDWIDE MANAGED CARE",,"PARTNERS LLC","10800 BISCAYNE BLVD SUITE 201","MIAMI","FL","33161",,,,,,,"542120040","3058922125",,,,"2011-09-09T11:47:46-0500","WORLDWIDE MANAGED CARE",,,,,1,5,0,2,7,0,7,3,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110906093512P030125314561001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ARMED FORCES SERVICES CORPORATION RETIREMENT SAVINGS PLAN","001","2000-07-01","ARMED FORCES SERVICES CORPORATION",,,"2800 SHIRLINGTON ROAD SUITE 350",,"ARLINGTON","VA","22206",,,,,,,,,,,,,,,,,,"200897041","7033799311","541990","ARMED FORCES SERVICES CORPORATION",,"2800 SHIRLINGTON ROAD SUITE 350",,"ARLINGTON","VA","22206",,,,,,,"200897041","7033799311",,,,"2011-09-06T09:34:54-0500","KEITH MILLER","2011-09-06T09:34:54-0500","KEITH MILLER",,,184,250,0,67,317,0,317,236,27,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110906101648P040579283904001","2010-12-28","2011-06-29","2",,"0","0","1","1","0","0","0","0","0",,"EUCLID OF VIRGINIA, INC. DEFINED BENEFIT PLAN","002","2005-12-28","EUCLID OF VIRGINIA, INC.",,,"P.O. BOX 9492",,"WASHINGTON","DC","20016",,,,,,,,,,,,,,,,,,"541665007","3014641400","541990","EUCLID OF VIRGINIA, INC.",,"P.O. BOX 9492",,"WASHINGTON","DC","20016",,,,,,,"541665007","3014641400",,,,"2011-09-06T10:16:46-0500","KOO YUEN","2011-09-06T10:16:46-0500","KOO YUEN",,,9,0,0,0,0,0,0,,,,"1A3D",,,"1",,,,"1",,,"1",,,,,"1","1",,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110906183238P040128847569001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"COMERICA SMALL CAP INDEX FUND SEC. 584","001",,"COMERICA BANK & TRUST, NATIONAL ASSOCIATION",,,"P.O. BOX 75000, MAIL CODE 3460",,"DETROIT","MI","482753460",,,,,,,"411 W. LAFAYETTE BOULEVARD",,"DETROIT","MI","482753460",,,,,,,"386683275","3132224000",,"COMERICA BANK & TRUST, NATIONAL ASSOCIATION",,"P.O. BOX 75000, MAIL CODE 3460",,"DETROIT","MI","482753460",,,,,,,"386683275","3132224000",,,,,,,,"2011-09-06T15:40:36-0500","RONALD SIEMIONTKOWSKI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-06",,"Filed with authorized/valid electronic signature", "20110909105052P040130421089001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"AKEENA SOLAR, INC. 401(K) PLAN","001","2008-01-01","AKEENA SOLAR, INC.",,,"1475 SOUTH BASCOM AVE","SUITE 101","CAMPBELL","CA","95008",,,,,,,,,,,,,,,,,,"900181035","4084029487","335310","AKEENA SOLAR, INC.",,"1475 SOUTH BASCOM AVE","SUITE 101","CAMPBELL","CA","95008",,,,,,,"900181035","4084029487",,,,"2011-09-09T10:50:42-0500","TRACI THOMPSON",,,,,112,38,0,103,141,0,141,127,0,,"2E2F2G2J2S2T3D3F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110906135905P040128709185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"D.N. LUKENS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","1977-01-01","D. N. LUKENS, INC.",,,"134 FLANDERS ROAD - SUITE 250",,"WESTBORO","MA","015811023",,,,,,,"134 FLANDERS ROAD - SUITE 250",,"WESTBORO","MA","015811023",,,,,,,"042264013","5083661300","424600","D. N. LUKENS, INC.",,"134 FLANDERS ROAD - SUITE 250",,"WESTBORO","MA","015811023",,,,,,,"042264013","5083661300",,,,"2011-09-06T13:40:54-0500","JILL DONNELLY",,,,,19,10,3,5,18,0,18,15,0,,"2E2I2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906103737P030125345105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLARK FORK VALLEY HOSPITAL HEALTH INSURANCE PLAN","501","2008-01-01","PLAINS HOSPITAL CORPORATION","CLARK FORK VALLEY HOSPITAL","CARLA NEIMAN, CFO","P. O. BOX 768",,"PLAINS","MT","59859",,,,,,,"10 KRUGER ROAD",,"PLAINS","MT","59859",,,,,,,"810475376","4068264851","622000","PLAINS HOSPITAL CORPORATION","CARLA NEIMAN, CFO","P. O. BOX 768",,"PLAINS","MT","59859",,,,,,,"810475376","4068264851",,,,"2011-09-06T10:34:50-0500","CARLA NEIMAN",,,,,91,120,0,0,120,,,,,,,"4A4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906152411P040128751841010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FREDERICK BUCKMAN, INC. MONEY PURCHASE PLAN","001","2001-01-01","FREDERICK BUCKMAN, INC.",,,"1503 OFFICERS ROW",,"VANCOUVER","WA","986613860",,,,,,,"1503 OFFICERS ROW",,"VANCOUVER","WA","986613860",,,,,,,"931259009","5036978408","541600","FREDERICK BUCKMAN, INC.",,"1503 OFFICERS ROW",,"VANCOUVER","WA","986613860",,,,,,,"931259009","5036978408",,,,"2011-08-31T08:10:46-0500","FREDERICK BUCKMAN","2011-08-31T08:10:46-0500","FREDERICK BUCKMAN",,,3,3,,,3,,3,3,,,"2C2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908093833P040019274818001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"CONNECTICUT NEWSPAPERS EMPLOYEE SAVINGS PLAN","055","2008-10-01","THE HEARST CORPORATION",,,"959 EIGHTH AVENUE",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"130433120","7043488487","511110","THE HEARST CORPORATION",,"959 EIGHTH AVENUE",,"NEW YORK","NY","10019",,,,,,,"130433120","7043488487",,,,"2011-09-08T09:35:52-0500","EDWIN A. RUSGO",,,,,35,19,0,13,32,0,32,30,2,,"2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110908103037P030126494369001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"NEGOTIATED 401(K) PLAN 111","111","2003-09-21","C&S WHOLESALE GROCERS, INC.",,,"7 CORPORATE DRIVE",,"KEENE","NH","03431",,,,,,,,,,,,,,,,,,"041140950","6033547472","424400","C&S WHOLESALE GROCERS, INC.",,"7 CORPORATE DRIVE",,"KEENE","NH","03431",,,,,,,"041140950","6033547472",,,,"2011-09-08T10:29:55-0500","BRUCE A. JOHNSON","2011-09-08T10:29:55-0500","BRUCE A. JOHNSON",,,1616,1428,0,71,1499,1,1500,303,11,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908190340P030018606098001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MANETTA'S 401K","001","2006-10-01","MANETTA S FINE FOOD CORP.",,,"1076 JACKSON AVE.",,"LONG ISLAND CITY","NY","11101",,,,,,,"1076 JACKSON AVE.",,"LONG ISLAND CITY","NY","11101",,,,,,,"113087700","7187866171","722110","MANETTA S FINE FOOD CORP.",,"1076 JACKSON AVE.",,"LONG ISLAND CITY","NY","11101",,,,,,,"113087700","7187866171",,,,"2011-09-08T19:02:49-0500","ROSEANN DERISO",,,,,15,16,0,0,16,0,16,2,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110908191747P040130046113001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"CARRAND COMPANIES, INC. EMPLOYEES 401(K) PLAN","002","2005-06-01","CARRAND COMPANIES, INC.",,,"1225 EAST ARTESIA BLVD.",,"CARSON","CA","90746",,,,,,,"1225 EAST ARTESIA BLVD.",,"CARSON","CA","90746",,,,,,,"953793390","6203408406","424990","CARRAND COMPANIES, INC.",,"1225 EAST ARTESIA BLVD.",,"CARSON","CA","90746",,,,,,,"953793390","6203408406",,,,"2011-09-03T17:01:57-0500","BRADLEY KRAFT","2011-09-08T18:57:35-0500","ADELA MAYNEZ",,,38,33,0,8,41,0,41,36,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110909140645P030593343344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE JOHN MORGAN MCLACHLAN AGENCY 401K PLAN","001","2009-01-01","THE JOHN MORGAN MCLACHLAN AGENCY",,,"75 EAST MAIN STREET",,"SOMERVILLE","NJ","08876",,,,,,,,,,,,,,,,,,"264004983","9085264600","524210","THE JOHN MORGAN MCLACHLAN AGENCY",,"75 EAST MAIN STREET",,"SOMERVILLE","NJ","08876",,,,,,,"264004983","9085264600",,,,"2011-09-09T14:06:36-0500","JOHN M. MCLACHLAN",,,,,9,9,0,1,10,0,10,8,1,,"2A2E2F2H2J2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110909140648P030018665522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOMAS J. SMALL, M.D., INC. PROFIT SHARING PLAN","002","1999-01-01","THOMAS J. SMALL, M.D., INC.",,,"1101 WEST JEFFERSON STREET",,"FRANKLIN","IN","46131",,,,,,,,,,,,,,,,,,"351466374","3177369655","621111","THOMAS J. SMALL, M.D., INC.",,"1101 WEST JEFFERSON STREET",,"FRANKLIN","IN","46131",,,,,,,"351466374","3177369655",,,,"2011-09-09T14:06:41-0500","THOMAS SMALL",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110909140910P030127174257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN PSYCHOLOGICAL ASSOCIATION EMPLOYEE BENEFIT PLAN","503","1998-01-01","AMERICAN PSYCHOLOGICAL ASSOCIATION",,,"750 FIRST STREET, NE",,"WASHINGTON","DC","200024242",,,,,,,,,,,,,,,,,,"530205890","2023365500","813000","AMERICAN PSYCHOLOGICAL ASSOCIATION",,"750 FIRST STREET, NE",,"WASHINGTON","DC","200024242",,,,,,,"530205890","2023365500",,,,"2011-09-09T14:08:19-0500","ISMAEL RIVERA JR.",,,,,539,539,9,0,548,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110909032843P030126917201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C.M.B. ANESTHESIA ASSOCIATES, INC. PROFIT SHARING PLAN AND TRUST","002","1991-01-01","C.M.B. ANESTHESIA ASSOCIATES, INC.",,,"P. O. BOX 60596",,"LAS VEGAS","NV","891600596",,,,,,,,,,,,,,,,,,"880310098","7027958808","621399","C.M.B. ANESTHESIA ASSOCIATES, INC.",,"P. O. BOX 60596",,"LAS VEGAS","NV","891600596",,,,,,,"880310098","7027958808",,,,"2011-09-09T03:27:48-0500","PATRICIA A. LA ROSS",,,,,4,2,0,2,4,0,4,4,0,,"2E2G2R3D",,"1","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110909083151P040130362577001","2004-07-01","2005-06-30","2",,"0","0","0","0","0","0","0","1","0",,"BAY COVE HUMAN SERVICES, INC. HEALTH AND WELFARE PLAN","503","2001-07-01","BAY COVE HUMAN SERVICES, INC.",,,"66 CANAL STREET",,"BOSTON","MA","02214",,,,,,,"66 CANAL STREET",,"BOSTON","MA","02214",,,,,,,"042518575","6173713100","623000","BAY COVE HUMAN SERVICES, INC.",,"66 CANAL STREET",,"BOSTON","MA","02214",,,,,,,"042518575","6173713100",,,,"2011-08-19T14:59:55-0500","WILLIAM SPRAGUE",,,,,455,455,0,0,455,,455,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110906115417P040128650689002","2010-03-01","2011-02-28","2",,,,,,,,,,,,"LA MARCHE MFG CO GROUP INSURANCE PLAN","501","1957-06-01","LA MARCHE MFG CO",,,"106 BRADROCK DRIVE",,"DES PLAINES","IL","600181940",,,,,,,,,,,,,,,,,,"362305262","8472991188","335900","LA MARCHE MFG CO",,"106 BRADROCK DRIVE",,"DES PLAINES","IL","600181940",,,,,,,"362305262","8472991188",,,,"2011-09-06T10:32:59-0500","RICHARD RUTKOWSKI","2011-09-06T10:32:59-0500","RICHARD RUTKOWSKI",,,100,98,,,98,,,,,,,"4A4B4C4D4F4H","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110907123919P030018494114001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VERENIUM CORPORATION WELFARE BENEFITS PLAN","501","2000-01-01","VERENIUM CORPORATION",,,"4955 DIRECTORS PLACE",,"SAN DIEGO","CA","921213829",,,,,,,,,,,,,,,,,,"223297375","8585265000","621510","VERENIUM CORPORATION",,"4955 DIRECTORS PLACE",,"SAN DIEGO","CA","921213829",,,,,,,"223297375","8585265000",,,,"2011-09-07T12:28:05-0500","CATHERINE SCANLON",,,,,273,91,10,0,101,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110907145152P040129346625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SECURELEMENT INFRASTRUCTURE SOLUTIONS, LLC 401(K) PLAN","001","2006-01-01","SECURELEMENT INFRASTRUCTURE SOLUTIONS LLC",,,"7 GREAT VALLEY PKWY STE 110",,"MALVERN","PA","19355",,,,,,,,,,,,,,,,,,"233056092","4843231626","541519","SECURELEMENT INFRASTRUCTURE SOLUTIONS LLC",,"7 GREAT VALLEY PKWY STE 110",,"MALVERN","PA","19355",,,,,,,"233056092","4843231626",,,,"2011-09-07T14:50:56-0500","CATHRYN HINCKLEY",,,,,12,11,0,1,12,0,12,12,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110906064111P040128535025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COUNCIL ON AGING OF VOLUSIA COUNTY, INC. 403(B) PLAN","001","1992-04-01","COUNCIL ON AGING OF VOLUSIA COUNTY, INC.",,,"P.O. BOX 671","160 N. BEACH STREET","DAYTONA BEACH","FL","321150671",,,,,,,,,,,,,,,,,,"591160221","9042534700","624100","COUNCIL ON AGING OF VOLUSIA COUNTY, INC.",,"P.O. BOX 671","160 N. BEACH STREET","DAYTONA BEACH","FL","321150671",,,,,,,"591160221","9042534700",,,,"2011-09-06T06:40:57-0500","DEE CARLSON",,,,,225,221,1,11,233,0,233,55,0,,"2E2F2G2K2L2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",, "20110906090002P040128586033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PROFESSIONAL LIABILITY BROKERS & CONSULTANTS PROFIT SHARING PLAN","001","1992-01-01","PROFESSIONAL LIABILITY BROKERS & CONSULTANTS INC",,,"175 EAST HAWTHORNE PARKWAY, SUITE 3","SUITE 310","VERNON HILLS","IL","60061",,,,,,,,,,,,,,,,,,"363304035","8478164480","524210","PROFESSIONAL LIABILITY BROKERS & CONSULTANTS INC",,"175 EAST HAWTHORNE PARKWAY, SUITE 3","SUITE 310","VERNON HILLS","IL","60061",,,,,,,"363304035","8478164480",,,,"2011-08-30T11:49:59-0500","ERVIN A. KRANBERG","2011-08-30T11:49:59-0500","ERVIN A. KRANBERG",,,12,10,0,2,12,0,12,12,0,,"2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110908132423P030590552720001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"PAPER PRODUCTS, INC. 401(K) PLAN","001","1997-01-01","PAPER PRODUCTS INC. ATTN EDWIN GOLDBERG",,,"PO BOX 279",,"JEFFERSONVILLE","IN","47131",,,,,,,,,,,,,,,,,,"351056722","8122826613","424100","PAPER PRODUCTS INC. ATTN EDWIN GOLDBERG",,"PO BOX 279",,"JEFFERSONVILLE","IN","47131",,,,,,,"351056722","8122826613",,,,"2011-09-08T13:23:40-0500","EDWIN GOLDBERG",,,,,45,29,0,12,41,0,41,41,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",, "20110908132519P030126582433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNISYS FLEXIBLE SPENDING ACCOUNTS","540","1988-04-01","UNISYS CORPORATION",,,"801 LAKEVIEW DRIVE","SUITE 100","BLUE BELL","PA","19422",,,,,,,,,,,,,,,,,,"380387840","2159866574","334110","UNISYS CORPORATION",,"801 LAKEVIEW DRIVE","SUITE 100","BLUE BELL","PA","19422",,,,,,,"380387840","2159866574",,,,"2011-09-02T15:42:33-0500","DONNA BROWN","2011-09-08T13:24:50-0500","SCOTT HURLEY",,,2451,1838,10,0,1848,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110830165353P040561434032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"DURA CHEMICALS, INC. PROFIT SHARING PLAN","001","2002-01-01","DURA CHEMICALS, INC.",,,"2200 POWELL STREET, SUITE 450",,"EMERYVILLE","CA","94608",,,,,,,,,,,,,,,,,,"943241395","5108141987","424600","DURA CHEMICALS, INC.",,"2200 POWELL STREET, SUITE 450",,"EMERYVILLE","CA","94608",,,,,,,"943241395","5108141987",,,,"2011-08-30T16:55:51-0500","RAGHU SANTHANAM","2011-08-30T16:55:51-0500","RAGHU SANTHANAM",,,13,12,0,2,14,0,14,14,0,,"2E2H2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110907121409P030587701056001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CELADON FINANCIAL GROUP, LLC 401(K) PLAN","001","1999-07-01","CELADON FINANCIAL GROUP, LLC",,,"19 CENTER STREET",,"CHATHAM","NJ","07928",,,,,,,,,,,,,,,,,,"264423745","9737018033","523120","CELADON FINANCIAL GROUP, LLC",,"19 CENTER STREET",,"CHATHAM","NJ","07928",,,,,,,"264423745","9737018033",,,,"2011-09-07T12:13:52-0500","DARYL S. HERSCH",,,,,16,15,0,4,19,0,19,12,0,,"2A2E2G2R2F2T2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830114812P040018471282001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HENRY J. KAISER FAMILY FOUNDATION 401(K) PLAN","003","2001-01-01","THE HENRY J. KAISER FAMILY FOUNDATION",,,"2400 SAND HILL ROAD",,"MENLO PARK","CA","940256941",,,,,,,,,,,,,,,,,,"946064808","6508549400","813000","THE HENRY J. KAISER FAMILY FOUNDATION",,"2400 SAND HILL ROAD",,"MENLO PARK","CA","940256941",,,,,,,"946064808","6508549400",,,,"2011-08-30T11:45:14-0500","DAVID ORCUTT","2011-08-30T11:45:14-0500","DAVID ORCUTT",,,183,129,0,68,197,0,197,197,0,,"2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110830170303P030017787442001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"DIDION MANUFACTURING COMPANY 401(K) PROFIT SHARING PLAN","001","1979-01-01","DIDION MANUFACTURING COMPANY",,,"7000 WEST GENEVA DRIVE","PO BOX 177","ST. PETERS","MO","63376",,,,,,,"7000 WEST GENEVA DRIVE","PO BOX 177","ST. PETERS","MO","63376",,,,,,,"431055740","6362788700","333200","DIDION MANUFACTURING COMPANY",,"7000 WEST GENEVA DRIVE","PO BOX 177","ST. PETERS","MO","63376",,,,,,,"431055740","6362788700",,,,"2011-08-30T17:02:23-0500","JOHN CHANDLER",,,,,33,30,0,1,31,0,31,27,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830154508P040561290304001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"FLEX ONE BENEFITS PLAN","501","1996-03-01","WIECHERT SEED CO INC",,"DEBRA WIECHERT","417 W GOODNER ST",,"NASHVILLE","IL","62263",,,,,,,"417 W GOODNER ST",,"NASHVILLE","IL","62263",,,,,,,"371189766","6183273930","453990","WIECHERT SEED CO INC","DEBRA WIECHERT","417 W GOODNER ST",,"NASHVILLE","IL","62263",,,,,,,"371189766","6183273930",,,,"2011-08-30T15:44:22-0500","DEBRA WIECHERT",,,,,3,3,,,3,,3,,,,,"4Q","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110907141243P030125977489001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE ARNOT LAW FIRM, APC PENSION PLAN","001","1989-01-01","THE ARNOT LAW FIRM, APC",,,"PO BOX 1963",,"LAKE OSWEGO","OR","97035",,,,,,,,,,,,,,,,,,"942244714","7074436386","541110","THE ARNOT LAW FIRM, APC",,"PO BOX 1963",,"LAKE OSWEGO","OR","97035",,,,,,,"942244714","7074436386",,,,"2011-09-07T14:11:52-0500","STEPHEN ARNOT",,,,,4,4,0,0,4,0,4,4,0,,"2T2C3D2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110907074405P030125803665001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"L-3 OCEAN SYSTEMS PENSION PLAN FOR HOURLY EMPLOYEES","009","1998-03-31","L-3 COMMUNICATIONS CORPORATION",,,"600 THIRD AVENUE",,"NEW YORK","NY","100161901",,,,,,,"15825 ROXFORD STREET",,"SYLMAR","CA","913929212",,,,,,,"133937436","2126971111","334200","L-3 COMMUNICATIONS CORPORATION",,"600 THIRD AVENUE",,"NEW YORK","NY","100161901",,,,,,,"133937436","2126971111",,,,"2011-09-01T19:54:02-0500","PAT HEMPHILL",,,,,194,45,113,29,187,5,192,,0,,"1B1G3F3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110907081822P030040559527001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SECU CREDIT UNION OF MARYLAND, INC. FLEXIBLE BENEFIT PLAN","504","2004-01-01","SECU CREDIT UNION OF MARYLAND, INC.",,,"971 CORPORATE BOULEVARD",,"LINTHICUM","MD","21090",,,,,,,,,,,,,,,,,,"520627114","4104877425","522130","SECU CREDIT UNION OF MARYLAND, INC.",,"971 CORPORATE BOULEVARD",,"LINTHICUM","MD","21090",,,,,,,"520627114","4104877425",,,,"2011-09-07T08:17:49-0500","TESHIA WILLIAMS",,,,,259,230,0,0,230,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830132525P040018477906001","2007-01-01","2007-12-31","2",,,"1",,,,,,,,,"INFORMATION SYSTEMS CONSULTING GROUP INC EMPLOYEE RETIREMENT PLAN AND TRUST","002","1996-01-01","INFORMATION SYSTEMS CONSULTING GROUP INC INSYSCO","DIANA M JOHNSON",,"40 WINSOME LANE",,"FREDERICKSBURG","VA","22406",,,,,,,,,,,,,,,,,,"541560271","5403689682","541519","INFORMATION SYSTEMS CONSULTING GROUP INC INSYSCO","DIANA M JOHNSON","40 WINSOME LANE",,"FREDERICKSBURG","VA","22406",,,,,,,"541560271","5403689682",,,,"2011-08-30T13:25:54-0500","WILLIAM J JOHNSON, JR",,,,,47,53,,,53,,53,53,,,"2C2G2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830132701P030121346353001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"BOLINGER SUPPLY COMPANY 401K PROFIT SHARING PLAN AND TRUST","001","1963-07-31","BOLINGER SUPPLY COMPANY",,,"3212 SOUTH JONES STREET",,"FORT WORTH","TX","761104309",,,,,,,,,,,,,,,,,,"751001424","8179244598","423700","BOLINGER SUPPLY COMPANY",,"3212 SOUTH JONES STREET",,"FORT WORTH","TX","761104309",,,,,,,"751001424","8179244598",,,,"2011-08-30T13:27:01-0500","ROBERT OR GEORGIANNA BOLINGER",,,,,6,5,0,0,5,1,6,6,0,,"2E2J2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830141850P030121363857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE LAWRENCE GROUP INC. HEALTH & WELFARE PLAN","501","2005-01-01","LAWRENCE GROUP, INC",,,"319 NORTH 4TH STREET, SUITE 100",,"SAINT LOUIS","MO","63102",,,,,,,"319 NORTH 4TH STREET, SUITE 100",,"SAINT LOUIS","MO","63102",,,,,,,"431757709","3142315700","236110","LAWRENCE GROUP, INC",,"319 NORTH 4TH STREET, SUITE 100",,"SAINT LOUIS","MO","63102",,,,,,,"431757709","3142315700",,,,"2011-08-30T14:18:31-0500","KIRK BAER","2011-08-30T14:18:31-0500","KIRK BAER",,,159,134,10,7,151,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110907094654P030018480802001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A-DEC INC PROFIT SHARING PLAN AND TRUST","001","1970-12-21","A-DEC INC",,,"2601 CRESTVIEW DRIVE",,"NEWBERG","OR","971320111",,,,,,,,,,,,,,,,,,"930555952","5035389471","339900","A-DEC INC PROFIT SHARING RETIREMENT PLAN AND TRUST","ADMINISTRATIVE COMM., MARV NELSON","2601 CRESTVIEW DRIVE",,"NEWBERG","OR","971320111",,,,,,,"936062959","5035389471",,,,"2011-09-07T09:42:34-0500","MARV NELSON",,,,,1053,877,0,113,990,2,992,987,12,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830141327P030566411792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CENTRAL STATE SUPPLY CORPORATION 401(K) PROFIT SHARING PLAN","001","1970-03-15","CENTRAL STATE SUPPLY CORPORATION",,,"308 E. ARNOLD STREET","PO BOX 870","MARSHFIELD","WI","54449",,,,,,,,,,,,,,,,,,"390939770","7153843168","423700","CENTRAL STATE SUPPLY CORPORATION",,"308 E. ARNOLD STREET","PO BOX 870","MARSHFIELD","WI","54449",,,,,,,"390939770","7153843168",,,,"2011-08-30T14:13:23-0500","JAY SCHREINER",,,,,20,18,0,1,19,0,19,19,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830141413P030566413712001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FIRST STATE BANK WELFARE BENEFIT PLAN","502","1997-01-01","FIRST STATE BANK",,,"P O BOX 506",,"WAYNESBORO","MS","39367",,,,,,,"708 AZALEA DRIVE",,"WAYNESBORO","MS","39367",,,,,,,"640659655","6017353124","522110","FIRST STATE BANK",,"P O BOX 506",,"WAYNESBORO","MS","39367",,,,,,,"640659655","6017353124",,,,"2011-08-30T14:11:11-0500","KRISTY DAVIS","2011-08-30T14:11:32-0500","KRISTY DAVIS",,,117,116,,,116,,116,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110830101354P030017759090001","2010-02-01","2011-01-31","2",,"0","0","0","0","1","1","0","0","0",,"R.G. EISENHARDT, INC. MONEY PURCHASE PLAN","001","1986-02-01","R.G. EISENHARDT CONTRACTING, INC.",,,"9738 GRATIOT AVENUE",,"COLUMBUS","MI","480634121",,,,,,,,,,,,,,,,,,"382084401","5867272233","238900","R.G. EISENHARDT CONTRACTING, INC.",,"9738 GRATIOT AVENUE",,"COLUMBUS","MI","480634121",,,,,,,"382084401","5867272233",,,,"2011-08-30T10:05:56-0500","SUSAN GEORGE",,,,,7,4,0,2,6,0,6,6,0,,"2C2F2G3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110907132026P040129303777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BIG SAVER FOODS 401(K) PLAN","001","1998-01-01","UKAS BIG SAVER FOODS INC",,,"4260 CHARTER STREET",,"VERNON","CA","90058",,,,,,,,,,,,,,,,,,"954357748","3235827222","445110","UKAS BIG SAVER FOODS INC",,"4260 CHARTER STREET",,"VERNON","CA","90058",,,,,,,"954357748","3235827222",,,,"2011-08-29T13:53:16-0500","HARISH SOLANKI",,,,,571,500,0,40,540,0,540,99,2,,"2E2F2G2J2K3D2T",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110907134221P040019198578001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JERRYS FAMOUS DELI, INC., 401K PLAN","001","1999-01-01","JERRYS FAMOUS DELI, INC.",,,"12711 VENTURA BLVD, STE 400",,"STUDIO CITY","CA","916042456",,,,,,,,,,,,,,,,,,"953302338","8187668311","812990","JERRYS FAMOUS DELI, INC.",,"12711 VENTURA BLVD, STE 400",,"STUDIO CITY","CA","916042456",,,,,,,"953302338","8187668311",,,,"2011-09-07T13:41:50-0500","CHRISTINA STERLING",,,,,807,768,0,10,778,0,778,91,1,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830133008P030017770338005","2010-07-01","2011-06-30","2",,,,,,,,,,,,"YORK ELECTRIC INC MONEY PURCHASE PENSION PLAN","002","1999-07-01","YORK ELECTRIC INC",,,"P O BOX 3138",,"DAYTON","OH","45401",,,,,,,,,,,,,,,,,,"310558219","9372232580","238210","YORK ELECTRIC INC",,"P O BOX 3138",,"DAYTON","OH","45401",,,,,,,"310558219","9372232580",,,,"2011-08-30T12:28:10-0500","JEFFREY B COLLINS",,,,,4,2,0,2,4,0,4,4,,,"2C2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830160008P040124759425004","2010-01-01","2010-12-31","2",,,"1",,,,,"1",,,,"HYUNDAI IDEAL ELECTRIC COMPANY 401K PLAN","001","2007-06-01","HYUNDAI IDEAL ELECTRIC COMPANY INC",,,"330 EAST FIRST STREET",,"MANSFIELD","OH","449027756",,,,,,,,,,,,,,,,,,"141993591","4195223611","335310","HYUNDAI IDEAL ELECTRIC COMPANY INC",,"330 EAST FIRST STREET",,"MANSFIELD","OH","449027756",,,,,,,"141993591","4195223611",,,,"2011-08-29T14:16:29-0500","S. Y. HAHM",,,,,101,84,,17,101,,101,98,9,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110907083008P030587255600001","2010-07-01","2011-06-30","2",,,,,,,,,,,,"DIXIE GUN WORKS PROFIT SHARING PLAN","001","1969-03-01","DIXIE GUN WORKS, INC.",,,"HWY 51 SOUTH",,"UNION CITY","TN","38261",,,,,,,,,,,,,,,,,,"620595924","7318850561","454110","DIXIE GUN WORKS, INC.",,"HWY 51 SOUTH",,"UNION CITY","TN","38261",,,,,,,"620595924","7318850561",,,,"2011-09-07T08:16:40-0500","LEE FRY",,,,,34,26,0,6,32,0,32,27,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110907083657P030125828801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHWEST PROFESSIONAL OBSTETRICS & GYNECOLOGY, LTD. 401(K) PROFIT SHARING PLAN","001","1983-12-26","NORTHWEST PROFESSIONAL OBSTETRICS & GYNECOLOGY, LTD.",,,"121 SOUTH WILKE ROAD NO. 515",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,,,,,,,,,,,,"363242602","8475772229","621111","NORTHWEST PROFESSIONAL OBSTETRICS & GYNECOLOGY, LTD.",,"121 SOUTH WILKE ROAD NO. 515",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,"363242602","8475772229",,,,"2011-09-07T08:35:51-0500","RICHARD J. LEVY",,,,,11,11,0,0,11,0,11,11,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830141432P030121362001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE SCHWAN FOOD COMPANY RETIREMENT SAVINGS PLAN","001","1964-09-30","SCHWANS SHARED SERVICES, LLC",,,"115 WEST COLLEGE DRIVE",,"MARSHALL","MN","56258",,,,,,,,,,,,,,,,,,"810572771","5075323274","541990","SCHWANS SHARED SERVICES, LLC",,"115 WEST COLLEGE DRIVE",,"MARSHALL","MN","56258",,,,,,,"810572771","5075323274",,,,"2011-08-30T14:14:12-0500","HEIDI DIRCKX","2011-08-30T14:14:12-0500","HEIDI DIRCKX",,,19391,16243,525,1353,18121,41,18162,10572,23,,"2E2F2G2J3F3H2K2T2R",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","5","1","1","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110830141638P030121362817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCHWANS EMPLOYEE BENEFIT PLAN","501","1975-06-01","SCHWANS SHARED SERVICES, LLC",,,"115 WEST COLLEGE DRIVE",,"MARSHALL","MN","562581747",,,,,,,,,,,,,,,,,,"810572771","5075323274","541990","SCHWANS SHARED SERVICES, LLC",,"115 WEST COLLEGE DRIVE",,"MARSHALL","MN","562581747",,,,,,,"810572771","5075323274",,,,"2011-08-30T14:15:55-0500","HEIDI DIRCKX - ASST TREASURER","2011-08-30T14:15:55-0500","HEIDI DIRCKX - ASST TREASURER",,,16349,14917,705,0,15622,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","1","0","1","0","1","1","0","0","0","1","0","1","7","1","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110907093008P030125846273002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"SLAUGHTER INSTRUMENT THRIFT PLAN","001","1988-01-01","SLAUGHTER INSTRUMENT COMPANY, INC",,,"4356 N. ROOSEVELT RD",,"STEVENSVILLE","MI","49127",,,,,,,,,,,,,,,,,,"381859429","2694287471","339900","SLAUGHTER INSTRUMENT COMPANY, INC",,"4356 N. ROOSEVELT RD",,"STEVENSVILLE","MI","49127",,,,,,,"381859429","2694287471",,,,"2011-08-26T14:16:17-0500","ERIC EVERSOLE","2011-08-26T14:16:23-0500","ERIC EVERSOLE",,,6,6,0,0,6,0,6,6,,,"2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110907110238P030003709043001","2008-01-01","2008-12-31","2",,"0","1","1","0","0","0","0","0","0",,"STANDING VIP PROFIT SHARING PLAN","001","2000-01-01","BARRY H. STANDING, CPA, INC.",,"TIMOTHY STANDING, FOR THE ESTATE OF BARRY H STANDING","253 EVERGREEN AVE.",,"MILL VALLEY","CA","94941",,,,,,,"2055 HYDE STREET",,"SAN FRANCISCO","CA","94109",,,,,,,"942874685","4156063055","541211","BARRY H. STANDING, CPA, INC.","TIMOTHY STANDING, FOR THE ESTATE OF BARRY H STANDING","253 EVERGREEN AVE.",,"MILL VALLEY","CA","94941",,,,,,,"942874685","4156063055",,,,"2011-09-07T11:02:21-0500","TIMOTHY STANDING",,,,,2,0,0,0,0,,0,0,0,0,"2E2G3E",,,,,,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830150712P030121387681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAMBOO 54, INC. PROFIT SHARING/401(K) PLAN","001","2002-01-01","BAMBOO 54, INC.",,,"11309 IRIS LANE",,"EL MONTE","CA","917312723",,,,,,,,,,,,,,,,,,"330954099","6264431863","337000","BAMBOO 54, INC.",,"11309 IRIS LANE",,"EL MONTE","CA","917312723",,,,,,,"330954099","6264431863",,,,"2011-08-30T14:50:54-0500","RICK CHAN",,,,,5,4,0,0,4,0,4,4,0,,"2E2J3D2G2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830150850P030121388801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STARTEK USA, INC. GROUP INSURANCE PLAN","501","1994-05-01","STARTEK USA, INC.",,,"44 COOK STREET SUITE 400",,"DENVER","CO","80206",,,,,,,,,,,,,,,,,,"841063922","3032624500","561300","STARTEK USA, INC.",,"44 COOK STREET SUITE 400",,"DENVER","CO","80206",,,,,,,"841063922","3032624500",,,,"2011-08-30T15:07:58-0500","DAVID DURHAM",,,,,5230,4302,32,0,4334,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830173011P030121447297001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"BUCKLE 401(K) PLAN","001","1986-02-01","THE BUCKLE, INC.",,,"PO BOX 1480",,"KEARNEY","NE","68848",,,,,,,"2407 W 24TH STREET",,"KEARNEY","NE","68848",,,,,,,"470366193","3082368491","448190","THE BUCKLE, INC.",,"PO BOX 1480",,"KEARNEY","NE","68848",,,,,,,"470366193","3082368491",,,,"2011-08-30T17:28:29-0500","TOM HEACOCK","2011-08-30T17:29:01-0500","TOM HEACOCK",,,2377,1983,0,682,2665,0,2665,2389,352,,"2E2F2G2J2K2T3D2S",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110830162818P030121415921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLINICAL PATHOLOGY ASSOCIATES, P.C. MONEY PURCHASE PENSION PLAN","002","1993-01-01","CLINICAL PATHOLOGY ASSOCIATES, P.C.",,,"3421 WEST 9TH STREET",,"WATERLOO","IA","507025499",,,,,,,,,,,,,,,,,,"421327315","3192728852","621111","CLINICAL PATHOLOGY ASSOCIATES, P.C.",,"3421 WEST 9TH STREET",,"WATERLOO","IA","507025499",,,,,,,"421327315","3192728852",,,,"2011-08-24T23:28:48-0500","WILLIAM KASTEN",,,"2011-08-23T16:09:52-0500","STAN HANSEN",3,2,0,1,3,0,3,3,0,,"2C2F2G2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110907132655P030125957425001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"PRO SPORTS CLUB BENEFITS PLAN","502","2003-04-01","PROFESSIONAL RECREATION ORGANIZATION, INC.","PRO SPORTS CLUB",,"4455 148TH AVENUE NE",,"BELLEVUE","WA","98007",,,,,,,,,,,,,,,,,,"911256440","4258855566","713900","PROFESSIONAL RECREATION ORGANIZATION, INC.",,"4455 148TH AVENUE NE",,"BELLEVUE","WA","98007",,,,,,,"911256440","4258855566",,,,"2011-09-07T13:26:00-0500","PAUL BECKER",,,,,430,435,0,0,435,,,,,,,"4A4B4D4E4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830103641P030121271185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CEP CONSULTANTS, INC. 401(K) RETIREMENT PLAN","002","1993-07-26","CEP CONSULTANTS, INC.",,,"1800 WALT WHITMAN RD",,"MELVILLE","NY","117473074",,,,,,,"1800 WALT WHITMAN RD",,"MELVILLE","NY","117473074",,,,,,,"112482296","6312490500","541990","CEP CONSULTANTS, INC.",,"1800 WALT WHITMAN RD",,"MELVILLE","NY","117473074",,,,,,,"112482296","6312490500",,,,"2011-08-30T10:36:28-0500","ANTHONY WARD",,,,,9,5,0,2,7,0,7,7,0,,"2E2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830113822P040560795632001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BAKEWISE BRANDS, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","BAKEWISE BRANDS, INC.",,,"1688 N. WAYNEPORT RD",,"MACEDON","NY","14502",,,,,,,,,,,,,,,,,,"203092680","3159869999","541990","BAKEWISE BRANDS, INC.",,"1688 N. WAYNEPORT RD",,"MACEDON","NY","14502",,,,,,,"203092680","3159869999","FLEISCHERS BAGELS INC","203092680","001","2011-08-30T11:37:37-0500","KEITH BLEIER",,,,,125,153,0,10,163,0,163,77,6,,"2T2G3D2E2J3H2K",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","1","0",,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830124256P040039576439001","2010-05-01","2011-04-30","2",,"0","1","0","0","0","0","0","0","0",,"EQUUS COMPUTER SYSTEMS, INC. EMPLOYEE MEDICAL AND DENTAL BENEFIT PLAN","501","1994-05-01","EQUUS COMPUTER SYSTEMS, INC.",,,"5801 CLEARWATER DRIVE",,"MINNETONKA","MN","553438988",,,,,,,,,,,,,,,,,,"411827055","6126176200","334110","EQUUS COMPUTER SYSTEMS, INC.",,"5801 CLEARWATER DRIVE",,"MINNETONKA","MN","553438988",,,,,,,"411827055","6126176200",,,,"2011-08-30T12:42:05-0500","CHRIS AMBORN",,,,,131,136,1,0,137,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830140143P030003572131001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"BANKS CONSTRUCTION COMPANY PROFIT SHARING /401(K) PLAN","003","1983-01-01","BANKS CONSTRUCTION COMPANY",,,"4991 BANCO ROAD",,"NORTH CHARLESTON","SC","29418",,,,,,,"4991 BANCO ROAD",,"NORTH CHARLESTON","SC","29418",,,,,,,"570296227","8437448261","237310","BANKS CONSTRUCTION COMPANY",,"4991 BANCO ROAD",,"NORTH CHARLESTON","SC","29418",,,,,,,"570296227","8437448261",,,,"2011-08-30T14:01:12-0500","WILLIAM ZOBEL",,,,,291,294,0,50,344,2,346,188,14,,"2E2F2H2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830133557P040018478722001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CORNELL UNIVERSITY TAX DEFERRED ANNUITY PLAN","003","1984-07-01","CORNELL UNIVERSITY",,,"130 DAY HALL",,"ITHACA","NY","14853",,,,,,,,,,,,,,,,,,"150532082","6072553936","611000","CORNELL UNIVERSITY",,"130 DAY HALL",,"ITHACA","NY","14853",,,,,,,"150532082","6072553936",,,,"2011-08-30T10:03:49-0500","PAUL BURSIC","2011-08-30T13:35:17-0500","MARY OPPERMAN",,,11757,10038,18,2334,12390,37,12427,12427,0,,"2F2G2L2M2T3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110830175331P040018500274001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"THURSTON FOODS, INC. HEALTH AND WELFARE PLAN","501","2006-04-01","THURSTON FOODS, INC.",,,"30 THURSTON DRIVE",,"WALLINGFORD","CT","06492",,,,,,,,,,,,,,,,,,"060765487","2032651525","424990","THURSTON FOODS, INC.",,"30 THURSTON DRIVE",,"WALLINGFORD","CT","06492",,,,,,,"060765487","2032651525",,,,"2011-08-30T17:52:29-0500","PATRICK T THURSTON",,,,,141,138,0,0,138,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830140424P030566393344001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"ZANEMAX VENTURES, INC. 401(K) PLAN","001","2008-11-25","ZANEMAX VENTURES, INC.",,,"2721 RIDGEMERE DRIVE",,"FLOWER MOUND","TX","75028",,,,,,,,,,,,,,,,,,"263792761","2142407300","713900","ZANEMAX VENTURES, INC.",,"2721 RIDGEMERE DRIVE",,"FLOWER MOUND","TX","75028",,,,,,,"263792761","2142407300",,,,"2011-08-30T11:58:02-0500","AARON GRIZZLE","2011-08-30T11:58:02-0500","AARON GRIZZLE",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110830091840P040124582801001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"JO-ANN STORE, INC.","503","2002-06-01","JO-ANN STORE, INC. FKA FABRI-CENTERS OF AMERICA, INC.",,,"5555 DARROW ROAD",,"HUDSON","OH","44236",,,,,,,,,,,,,,,,,,"340720629","3304636839","452900","JO-ANN STORE, INC. FKA FABRI-CENTERS OF AMERICA, INC.",,"5555 DARROW ROAD",,"HUDSON","OH","44236",,,,,,,"340720629","3304636839",,,,"2011-08-30T09:13:55-0500","THOMAS WILLIAMS",,,,,5348,5382,75,,5457,,,,,,,"4A4B4D4E4H4Q4G4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","1","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830180254P040018501202001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"KILROY REALTY CORPORATION WELFARE PLAN","501","1997-02-01","KILROY REALTY CORPORATION",,,"12200 WEST OLYMPIC BOULEVARD","SUITE 200","LOS ANGELES","CA","90064",,,,,,,,,,,,,,,,,,"954598246","3104818400","531120","KILROY REALTY CORPORATION",,"12200 WEST OLYMPIC BOULEVARD","SUITE 200","LOS ANGELES","CA","90064",,,,,,,"954598246","3104818400",,,,"2011-08-30T18:02:32-0500","A. CHRISTIAN KROGH",,,,,127,127,2,0,129,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110907113007P030003630740001","2010-09-01","2011-08-31","2",,,,,,,,,,,,"OP & CM LOCAL 90 EMPLOYEE BENEFIT PLAN","501","1973-07-01","OP & CM LOCAL 90 EMPLOYEE BENEFIT PLAN",,,"820 LIONS DRIVE",,"TROY","IL","62294",,,,,,,,,,,,,,,,,,"370448243","6186672562","813930","OPERATIVE PLASTERERS & CEMENT MASONS LOCAL 90","CRAIG VOTRIAN","820 LIONS DRIVE",,"TROY","IL","62294",,,,,,,"370448243","6186672562",,,,"2011-09-07T11:11:52-0500","CRAIG VOTRIAN","2011-09-07T11:11:58-0500","CRAIG VOTRIAN",,,340,309,0,0,309,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110907113416P030010598437001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CARMI FLAVOR & FRAGRANCE CO., INC. 401(K) PROFIT SHARING PLAN","001","1999-12-01","CARMI FLAVOR & FRAGRANCE CO., INC.",,,"6030 SCOTT WAY",,"CITY OF COMMERCE","CA","90040",,,,,,,,,,,,,,,,,,"953523969","3238889240","311400","CARMI FLAVOR & FRAGRANCE CO., INC.",,"6030 SCOTT WAY",,"CITY OF COMMERCE","CA","90040",,,,,,,"953523969","3238889240",,,,"2011-09-07T12:33:47-0500","ELIOT CARMI",,,,,51,51,0,0,51,0,51,51,0,,"2A2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830114200P030121303457004","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"SW19 INC RETIREMENT PLAN","001","2007-01-01","SW19, INC.",,"C/O HPM PARTNERS LLC","600 SUPERIOR AVE., SUITE 1000",,"CLEVELAND","OH","44114",,,,,,,,,,,,,,,,,,"201794356","2164525560","711510","SW19, INC.","C/O HPM PARTNERS LLC","600 SUPERIOR AVE., SUITE 1000",,"CLEVELAND","OH","44114",,,,,,,"201794356","2164525560",,,,"2011-08-15T06:02:43-0500","MARIA SHARAPOVA",,,,,3,3,0,0,3,0,3,,0,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830114200P030121303457002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"F.M. HOWELL & COMPANY PART III RETIREMENT SAVINGS PLAN 401(K)","005","1992-12-09","F.M. HOWELL & COMPANY",,,"79 PENNSYLVANIA AVENUE",,"ELMIRA","NY","14902",,,,,,,,,,,,,,,,,,"160488020","6077346291","323100","F.M. HOWELL & COMPANY",,"79 PENNSYLVANIA AVENUE",,"ELMIRA","NY","14902",,,,,,,"160488020","6077346291",,,,"2011-08-30T06:44:27-0500","KEITH D. BAUMANN",,,,,240,212,22,,234,,234,187,,,"2G2J3D",,,,"1",,,,"1",,"1",,,"1",,,,,"1",,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110907132914P030125958401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHAEL S. BUCHHOLTZ, M.D., P.C. 401(K) PROFIT SHARING PLAN","001","2001-09-01","MICHAEL S. BUCHHOLTZ, M.D., P.C.",,,"270 PULASKI RD STE D",,"GREENLAWN","NY","117401605",,,,,,,"270 PULASKI RD STE D",,"GREENLAWN","NY","117401605",,,,,,,"113625064","6314276060","621111","MICHAEL S. BUCHHOLTZ, M.D., P.C.",,"270 PULASKI RD STE D",,"GREENLAWN","NY","117401605",,,,,,,"113625064","6314276060",,,,"2011-09-07T13:28:18-0500","MICHAEL BUCHHOLTZ",,,,,14,11,0,1,12,0,12,12,1,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110907135847P040582437056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAPPERMAN ENTERPRISES, INC. PROFIT SHARING PLAN","001","2009-11-04","KAPPERMAN ENTERPRISES, INC.",,,"103 ABBINGTON LN",,"GREENWOOD","SC","29649",,,,,,,,,,,,,,,,,,"271245295","8642236455","623000","KAPPERMAN ENTERPRISES, INC.",,"103 ABBINGTON LN",,"GREENWOOD","SC","29649",,,,,,,"271245295","8642236455",,,,"2011-09-07T12:45:48-0500","ELIZABETH KAPPERMAN",,,,,2,2,0,0,2,0,2,2,0,,"2R2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830104045P030121273121001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"AUSTIN NEUROSURGICAL & SPINE INSTITUTE, P.A. 401(K) PLAN","001","1997-01-01","AUSTIN NEUROSURGICAL & SPINE INSTITUTE, P.A.",,,"8224 CHALK KNOLL DRIVE",,"AUSTIN","TX","78735",,,,,,,,,,,,,,,,,,"742751474","5123304593","621111","AUSTIN NEUROSURGICAL & SPINE INSTITUTE, P.A.",,"8224 CHALK KNOLL DRIVE",,"AUSTIN","TX","78735",,,,,,,"742751474","5123304593",,,,"2011-08-30T10:36:28-0500","JAMES HANSEN",,,,,2,0,0,0,0,0,0,0,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830111446P030017762818001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"SIERRA CIRCUITS HEALTH & WELFARE BENEFIT PLAN","501","1994-01-01","SIERRA CIRCUITS, INC.",,,"1108 WEST EVELYN AVE",,"SUNNYVALE","CA","94086",,,,,,,,,,,,,,,,,,"770120789","4087357137","334410","SIERRA CIRCUITS, INC.",,"1108 WEST EVELYN AVE",,"SUNNYVALE","CA","94086",,,,,,,"770120789","4087357137",,,,"2011-08-29T20:33:29-0500","KENNETH BAHL",,,,,188,234,0,0,234,,,,,,,"4A4B4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110907080813P040129168401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MUZI MOTORS, INC. DBA MUZI FORD CITY NADART SALARY DEF 401K PLAN","001","1986-01-01","MUZI MOTORS,INC. DBA MUZI FORD CITY",,,"557 HIGHLAND AVE",,"NEEDHAM HGTS","MA","02494",,,,,,,,,,,,,,,,,,"041273030","7814445300","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-09-07T08:06:14-0500","ALAN B. SVEDLOW",,,,,131,98,6,36,140,0,140,121,15,,"2E2J3D2K2F2G2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830132333P040039583351001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DENTAL PLANS FOR FACULTY AND STAFF OF THE UNIVERSITY OF ROCHESTER","518","1980-01-27","UNIVERSITY OF ROCHESTER",,"OFFICE OF HUMAN RESOURCES","260 CRITTENDEN BLVD.",,"ROCHESTER","NY","14642",,,,,,,"260 CRITTENDEN BLVD.",,"ROCHESTER","NY","14642",,,,,,,"160743209","5852754642","611000","ASSOC VP FOR HUMAN RESOURCES","OFFICE OF HUMAN RESOURCES","260 CRITTENDEN BLVD.",,"ROCHESTER","NY","14642",,,,,,,"161070110","5852754642",,,,"2011-08-30T11:10:09-0500","CHARLES MURPHY",,,,,16611,15396,1623,0,17019,,17019,,,,,"4D","1",,,"1","1",,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830142926P030121367921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SYSTEMS 401(K) RETIREMENT PLAN","001","2005-01-01","SYSTEMS",,,"3750 HWY 54",,"OSAGE BEACH","MO","65065",,,,,,,,,,,,,,,,,,"201820942","5737467100","623000","SYSTEMS",,"3750 HWY 54",,"OSAGE BEACH","MO","65065",,,,,,,"201820942","5737467100",,,,"2011-08-30T14:28:24-0500","JAMES LINCOLN",,,,,2407,1965,0,439,2404,1,2405,1224,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110830164526P030017786322001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CUNET LONG TERM DISABILITY INSURANCE","502","1985-04-01","WESTERN BRIDGE CORPORATE FEDERAL CREDIT UNION",,,"924 OVERLAND CT",,"SAN DIMAS","CA","917731742",,,,,,,,,,,,,,,,,,"364677179","9093946300","522130","WESTERN BRIDGE CORPORATE FEDERAL CREDIT UNION",,"924 OVERLAND CT",,"SAN DIMAS","CA","917731742",,,,,,,"364677179","9093946300","WESTERN CORPORATE FEDERAL CREDIT UNION","954576487","502","2011-08-30T16:44:47-0500","CAROL MARTINEZ-SALDIVAR","2011-08-30T16:44:47-0500","SUZANNE J. RICKARDS",,,341,287,0,0,287,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110830165108P040018495522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DUPAGE MEDICAL GROUP LTD MEDICAL PLAN","503","2000-01-01","DUPAGE MEDICAL GROUP LTD","PRIMARY AND SPECIALTY PHYSICIAN GROUP","RON BRYSON","1100 W. 31ST. STREET","SUITE 300","DOWNERS GROVE","IL","60515",,,,,,,,,,,,,,,,,,"362657618","6304699200","621111","DUPAGE MEDICAL GROUP LTD","RON BRYSON","1100 W. 31ST. STREET","SUITE 300","DOWNERS GROVE","IL","60515",,,,,,,"362657618","6304699200",,,,"2011-08-30T16:50:27-0500","MICHAEL PACETTI",,,,,1175,1126,17,0,1143,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110907101202P030125862625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARTINS SUPER MARKETS, INC. 401(K) PLAN","003","1994-01-01","MARTINS SUPER MARKETS, INC.",,,"P.O. BOX 2709",,"SOUTH BEND","IN","46680",,,,,,,"760 WEST COTTER STREET",,"SOUTH BEND","IN","46680",,,,,,,"351171728","5742345848","445110","MARTINS SUPER MARKETS, INC.",,"P.O. BOX 2709",,"SOUTH BEND","IN","46680",,,,,,,"351171728","5742345848",,,,"2011-09-07T10:11:10-0500","TERI CRABILL",,,,,2139,2172,0,88,2260,1,2261,651,0,,"2E2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-07","Filed with authorized/valid electronic signature",, "20110830143032P040561147664002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SUMMIT PAINT CENTER INC PROFIT SHARING PLAN & TRUS","001","1998-01-01","SUMMIT PAINT CENTER INC",,,"1430 WOOSTER ROAD WEST",,"BARBERTON","OH","44203",,,,,,,,,,,,,,,,,,"341371917","3308258553","444120","SUMMIT PAINT CENTER INC",,"1430 WOOSTER ROAD WEST",,"BARBERTON","OH","44203",,,,,,,"341371917","3308258553",,,,"2011-08-30T14:00:35-0500","ROBERT BROUSE",,,,,3,3,,,3,,3,,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-08-30","Filed with authorized/valid electronic signature",, "20110913170310P030019009746001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RICHARD TIPERY AKIN, DDS-MD A PROF. CORP. RETIREMENT PLAN & TRUST","001","2006-01-01","RICHARD TIPERY AKIN, DDS-MD A PROF. CORP.",,,"614 CONNELL S PARK LANE",,"BATON ROUGE","LA","70806",,,,,,,,,,,,,,,,,,"760810688","2259273463","621210","RICHARD TIPERY AKIN, DDS-MD A PROF. CORP.",,"614 CONNELL S PARK LANE",,"BATON ROUGE","LA","70806",,,,,,,"760810688","2259273463",,,,"2011-09-13T17:02:27-0500","RICHARD TIPERY AKIN, D.D.S., M.D.","2011-09-13T17:02:27-0500","RICHARD TIPERY AKIN, D.D.S., M.D.",,,7,5,0,1,6,0,6,6,1,,"2A2J2K2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912145255P040019674290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WIDEOPENWEST BENEFITS PLAN","501","2001-04-01","WIDEOPENWEST FINANCE, LLC",,,"7887 EAST BELLEVIEW AVE","SUITE 1000","ENGLEWOOD","CO","80111",,,,,,,"7887 EAST BELLEVIEW AVE","SUITE 1000","ENGLEWOOD","CO","80111",,,,,,,"311811298","7204793512","517000","WIDEOPENWEST FINANCE, LLC",,"7887 EAST BELLEVIEW AVE","SUITE 1000","ENGLEWOOD","CO","80111",,,,,,,"311811298","7204793512",,,,"2011-09-09T16:42:20-0500","JANICE TURNER","2011-09-12T10:07:45-0500","PAUL CASTO",,,1068,1207,7,0,1214,,1214,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","5","0",,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912131241P030128834897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHILD INC 401K RETIREMENT PLAN","001","1987-10-01","CHILD INC",,,"818 EAST 53RD STREET",,"AUSTIN","TX","78751",,,,,,,,,,,,,,,,,,"741722420","5124517361","624410","CHILD INC",,"818 EAST 53RD STREET",,"AUSTIN","TX","78751",,,,,,,"741722420","5124517361",,,,"2011-09-12T13:11:59-0500","GLENDA OVERFELT","2011-09-12T13:11:59-0500","HUEY LONG",,,261,209,0,33,242,0,242,237,10,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913162504P030604192016001","2010-10-01","2010-11-30","4","C","0","0","1","1","0","0","0","0","0",,"EB CIS LONG GOVERNMENT BOND INDEX","073",,"THE BANK OF NEW YORK MELLON",,,"ONE BNY MELLON CENTER","ROOM 151-1135","PITTSBURGH","PA","15258",,,,,,,,,,,,,,,,,,"256078093","4122361724",,"THE BANK OF NEW YORK MELLON",,"ONE BNY MELLON CENTER","ROOM 151-1135","PITTSBURGH","PA","15258",,,,,,,"256078093","4122361724",,,,,,,,"2011-09-13T16:22:03-0500","LISA J. MCCARL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-13",,"Filed with authorized/valid electronic signature", "20110912121818P030128809313001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-BZ (SEL BLACKROCK GLOBAL ALLOCATION)","163",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-12T12:17:21-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-12",,"Filed with authorized/valid electronic signature", "20110912121934P030128809777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THORNWOOD EMPLOYEES RETIREMENT PLAN","001","1994-01-01","THORNWOOD FURNITURE MANUFACTURING,",,,"5125 EAST MADISON STREET",,"PHOENIX","AZ","85034",,,,,,,,,,,,,,,,,,"860646540","6022440434","337000","THORNWOOD FURNITURE MANUFACTURING,",,"5125 EAST MADISON STREET",,"PHOENIX","AZ","85034",,,,,,,"860646540","6022440434",,,,"2011-09-12T12:19:19-0500","SCOTT PICCO",,,,,215,185,0,3,188,0,188,56,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912122252P030600954240001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HANCOCK DEVELOPMENT PROFIT SHARING PLAN","001","1992-01-01","HANCOCK DEVELOPMENT, INC.",,,"P. O. BOX 2044",,"WEST COLUMBIA","SC","29171",,,,,,,,,,,,,,,,,,"570941914","8037943712","531390","HANCOCK DEVELOPMENT, INC.",,"P. O. BOX 2044",,"WEST COLUMBIA","SC","29171",,,,,,,"570941914","8037943712",,,,"2011-09-12T12:22:44-0500","DONALD H. BURKETT",,,,,2,2,0,0,2,0,2,2,0,,"2E2H2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912161549P030601440480001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"THE ANDREW G. GORDON 401(K) PLAN","003","1993-07-01","ANDREW G. GORDON INC",,,"680 MAIN STREET",,"NORWELL","MA","02061",,,,,,,"680 MAIN STREET",,"NORWELL","MA","02061",,,,,,,"042394502","7816592262","524210","ANDREW G. GORDON INC",,"680 MAIN STREET",,"NORWELL","MA","02061",,,,,,,"042394502","7816592262",,,,"2011-09-12T16:15:10-0500","GEOFFREY GORDON",,,,,9,9,0,0,9,0,9,9,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912214909P040019707378001","2010-07-01","2011-06-30","2",,"0","1","0","0","0","0","0","0","0",,"BARTLETT & WEST HEALTH AND LIFE BENEFIT PLAN","501","1992-07-01","BARTLETT & WEST ENGINEERS, INC.",,,"1200 SW EXECUTIVE DRIVE",,"TOPEKA","KS","666153850",,,,,,,"1200 SW EXECUTIVE DRIVE",,"TOPEKA","KS","666153850",,,,,,,"480770612","7852722252","541330","BARTLETT & WEST ENGINEERS, INC.",,"1200 SW EXECUTIVE DRIVE",,"TOPEKA","KS","666153850",,,,,,,"480770612","7852722252",,,,"2011-09-12T17:30:53-0500","JOSEPH BICHLER",,,,,247,243,6,3,252,,252,,,,,"4A4B4E","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912151858P040132195265001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","1","0",,"RONCO COMMUNICATIONS & ELECTRONICS, INC. SHORT TERM DISABILITY PLAN","508","2008-01-01","RONCO COMMUNICATIONS & ELECTRONICS, INC.",,,"595 SHERIDAN DRIVE",,"TONAWANDA","NY","14150",,,,,,,"595 SHERIDAN DRIVE",,"TONAWANDA","NY","14150",,,,,,,"160905768","7168798692","517000","RONCO COMMUNICATIONS & ELECTRONICS, INC.",,"595 SHERIDAN DRIVE",,"TONAWANDA","NY","14150",,,,,,,"160905768","7168798692",,,,"2011-09-12T15:18:43-0500","THOMAS LIPPARD",,,,,151,150,,,150,,150,,,,,"4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913090619P040132629937001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TS TECH 401K SAVINGS PLAN","001","1992-01-01","TS TECH HOLDING COMPANY",,,"8458 EAST BROAD STREET",,"REYNOLDSBURG","OH","430680000",,,,,,,,,,,,,,,,,,"311437701","6145754820","336300","TS TECH HOLDING COMPANY",,"8458 EAST BROAD STREET",,"REYNOLDSBURG","OH","430680000",,,,,,,"311437701","6145754820",,,,"2011-09-13T09:05:33-0500","STACY ROSS",,,,,2965,2740,0,239,2979,4,2983,2738,246,,"2E2F2G2J2K2T2S3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110912085145P030018887682006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"D. SCOTT FOOSHEE D.D.S. MONEY PURCHASE PLAN","002","1988-01-01","D. SCOTT FOOSHEE D.D.S.",,,"707 SE OSAGE",,"BARTLESVILLE","OK","74003",,,,,,,"707 SE OSAGE",,"BARTLESVILLE","OK","74003",,,,,,,"731124101","9183370540","621210","D. SCOTT FOOSHEE D.D.S.",,"707 SE OSAGE",,"BARTLESVILLE","OK","74003",,,,,,,"731124101","9183370540",,,,"2011-08-30T04:10:09-0500","D. SCOTT FOOSHEE D.D.S.","2011-08-30T04:10:09-0500","D. SCOTT FOOSHEE D.D.S.",,,9,8,,,8,,8,8,,,"2C3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912131924P030128837713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A2Z, INC. 401(K) PLAN AND TRUST","001","2000-04-12","A2Z, INC.",,,"1604 WILLIMANTIC CT",,"VIRGINIA BCH","VA","23456",,,,,,,,,,,,,,,,,,"541978982","7574672289","541600","A2Z, INC.",,"1604 WILLIMANTIC CT",,"VIRGINIA BCH","VA","23456",,,,,,,"541978982","7574672289",,,,"2011-09-12T13:18:55-0500","PAMELA BREWER",,,,,65,55,0,0,55,0,55,33,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912161125P030601432384001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEARFIELD COMMUNICATIONS, INC. GROUP BENEFIT PLAN","501","1995-01-01","LEARFIELD COMMUNICATIONS, INC.",,,"505 HOBBS ROAD",,"JEFFERSON CITY","MO","651091088",,,,,,,,,,,,,,,,,,"430998586","5735561220","515100","LEARFIELD COMMUNICATIONS, INC.",,"505 HOBBS ROAD",,"JEFFERSON CITY","MO","651091088",,,,,,,"430998586","5735561220",,,,"2011-09-12T16:10:54-0500","JEFF MARTIN",,,,,299,296,5,0,301,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913102538P040004038051001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"BLACKBERRY FARM 401K SAVINGS PLAN","001","1999-01-01","BLACKBERRY FARM",,,"1471 WEST MILLERS COVE ROAD",,"WALLAND","TN","37886",,,,,,,,,,,,,,,,,,"621433715","8653802269","721191","BLACKBERRY FARM",,"1471 WEST MILLERS COVE ROAD",,"WALLAND","TN","37886",,,,,,,"621433715","8653802269",,,,"2011-09-13T09:56:41-0500","V. JAN SMITH",,,,,200,186,0,9,195,0,195,39,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913112754P040042645175001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHARMACY FIRST 401 (K) PLAN","001","2005-10-01","WHOLESALE ALLIANCE, LLC/PHARMACY FIRST",,,"5632 EAST CREEK ROAD",,"SOUTH WALES","NY","14139",,,,,,,,,,,,,,,,,,"364104587","7166557933","446110","WHOLESALE ALLIANCE, LLC/PHARMACY FIRST",,"5632 EAST CREEK ROAD",,"SOUTH WALES","NY","14139",,,,,,,"364104587","7166557933",,,,"2011-09-13T09:10:38-0500","BRIAN HUCKLE","2011-09-13T09:10:38-0500","BRIAN HUCKLE",,,29,34,0,1,35,0,35,18,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912135518P030128861393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BISHER AKIL, M.D., A MEDICAL CORPORATION DEFINED BENEFIT PENSION PLAN","001","1999-01-01","BISHER AKIL, M.D., A MEDICAL CORPORATION",,,"P.O. BOX 17359",,"BEVERLY HILLS","CA","902093359",,,,,,,,,,,,,,,,,,"954774721","3102714656","621111","BISHER AKIL, M.D., A MEDICAL CORPORATION",,"P.O. BOX 17359",,"BEVERLY HILLS","CA","90209",,,,,,,"954774721","3102714656",,,,"2011-09-12T13:55:15-0500","BISHER AKIL, M.D.",,,,,8,4,0,2,6,0,6,,0,,"1A1I3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913121746P040003754996008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ARKAD CORPORATION, INC.","001","2002-07-01","ARKAD CORPORATION, INC.",,"THOMAS DROUIN","2929 1ST AVE","UNIT 201","SEATTLE","WA","98121",,,,,,,"2929 1ST AVE","UNIT 201","SEATTLE","WA","98121",,,,,,,"912086640","2069996325","524290","ARKAD CORPORATION, INC.","THOMAS DROUIN","2929 1ST AVE","UNIT 201","SEATTLE","WA","98121",,,,,,,"912086640","2069996325",,,,"2011-08-02T15:35:52-0500","PATRICIA MCGOORTY",,,,,2,2,,,2,,2,3,,,"2G2J3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110912125141P030128823089001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"PAULY MOTORS, INC. GROUP BENEFITS PLAN","501","1996-04-01","PAULY HONDA, INC.",,,"1111 SOUTH MILWAUKEE AVENUE",,"LIBERTYVILLE","IL","60048",,,,,,,,,,,,,,,,,,"362606993","8473624300","441110","PAULY HONDA, INC.",,"1111 SOUTH MILWAUKEE AVENUE",,"LIBERTYVILLE","IL","60048",,,,,,,"362606993","8473624300",,,,"2011-09-12T12:29:45-0500","DEBRA WELNINSKI","2011-09-12T12:51:28-0500","THOMAS PAULY",,,131,120,4,2,126,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110912153407P030128907521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAXIT HEALTHCARE, LLC EMPLOYEE WELFARE BENEFIT PLAN","501","2003-01-01","MAXIT HEALTHCARE, LLC",,,"705 E. MAIN ST.",,"WESTFIELD","IN","46074",,,,,,,,,,,,,,,,,,"330953583","3178672682","541519","MAXIT HEALTHCARE, LLC",,"705 E. MAIN ST.",,"WESTFIELD","IN","46074",,,,,,,"330953583","3178672682",,,,"2011-09-12T15:30:04-0500","JENNIFER ARTHUR",,,,,283,456,8,0,464,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912191428P040596465152001","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"SHEET METAL WORKERS HEALTH PLAN OF SOUTHERN CALIFORNIA ARIZONA & NEVADA","501","1951-01-01","THE BOARD OF TRUSTEES FOR SMW HEALTH PLAN OF CA, AZ & NV",,,"111 N SEPULVEDA BLVD 100",,"MANHATTAN BEACH","CA","90266",,,,,,,,,,,,,,,,,,"956052259","3107986572","238900","THE BOARD OF TRUSTEES FOR SMW HEALTH PLAN OF CA AZ & NV",,"111 N SEPULVEDA BLVD 100",,"MANHATTAN BEACH","CA","90266",,,,,,,"956052259","3107986572",,,,"2011-09-12T18:50:42-0500","ROY RINGWOOD",,,,,8296,5101,1801,,6902,,6902,,,316,,"4E4D4B4A","1",,"1",,"1",,"1",,,,,"1",,"1","12","1",,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913062300P030129282353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHIGAN STATE UNIVERSITY/KALAMAZOO CENTER FOR MEDICAL STUDIES EMPLOYEE WELFARE BENEFIT PLAN","511","1992-01-01","MICHIGAN STATE UNIVERSITY/KALAMAZOO CENTER FOR MEDICAL STUDIES",,,"1000 OAKLAND DRIVE",,"KALAMAZOO","MI","490081282",,,,,,,,,,,,,,,,,,"382015698","2693374479","611000","MICHIGAN STATE UNIVERSITY/KALAMAZOO CENTER FOR MEDICAL STUDIES",,"1000 OAKLAND DRIVE",,"KALAMAZOO","MI","490081282",,,,,,,"382015698","2693374479",,,,"2011-09-13T06:22:22-0500","THOMAS E ZAVITZ",,,,,431,439,8,5,452,,,,,,,"4A4B4D4E4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913153634P040132815089001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","0","0","0","0",,"SHEET METAL WORKERS LOCAL 44 WELFARE FUND","501","1954-06-01","TRUSTEES OF THE SHEET METAL WORKERS LOCAL 44",,,"248 PARRISH STREET",,"WILKES BARRE","PA","18702",,,,,,,"248 PARRISH STREET",,"WILKES BARRE","PA","18702",,,,,,,"232143139","5708294634","525100","SVS ASSOCIATES INC",,"248 PARRISH STREET",,"WILKES BARRE","PA","18702",,,,,,,"232406253","5708294634",,,,"2011-09-07T12:31:50-0500","TERRI SCHATZEL","2011-09-08T10:28:28-0500","WARREN FAUST",,,397,263,113,45,421,,421,,,,,"4A4B4D4E","1",,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912132437P030601086048001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TED R. MILLIGAN, D.D.S., P.A. 401(K) PROFIT SHARING PLAN","002","1998-01-01","TED R. MILLIGAN, D.D.S., P.A.",,,"8123 EAST HARRY",,"WICHITA","KS","67207",,,,,,,,,,,,,,,,,,"480906928","3166863397","621210","TED R. MILLIGAN, D.D.S., P.A.",,"8123 EAST HARRY",,"WICHITA","KS","67207",,,,,,,"480906928","3166863397",,,,"2011-09-12T13:21:44-0500","TED R. MILLIGAN",,,,,7,7,0,0,7,0,7,7,0,,"2A2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912082053P030018885586004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HAYFLICH & STEINBERG, CPA'S, PLLC PROFIT SHARING PLAN","003","2009-07-01","HAYFLICH & STEINBERG, CPA'S, PLLC",,,"#8 STONECREST DRIVE",,"HUNTINGTON","WV","257019391",,,,,,,,,,,,,,,,,,"371496963","3046975700","541211","HAYFLICH & STEINBERG, CPA'S, PLLC",,"#8 STONECREST DRIVE",,"HUNTINGTON","WV","257019391",,,,,,,"371496963","3046975700",,,,"2011-09-12T03:44:32-0500","JOHN LAFEAR",,,,,27,27,2,,29,,29,19,,,"2G2J2T3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912195822P030129024545001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TREATMENT ADVOCACY CENTER","001","2000-02-01","TREATMENT ADVOCACY CENTER","SAME",,"8401 CONNECTICUT AVE","STE 200","CHEVY CHASE","MD","20815",,,,,,,"200 N GLEBE RD","STE 730","ARLINGTON","VA","22203",,,,,,,"541905826","2404823031","541700","TREATMENT ADVOCACY CENTER",,"8401 CONNECTICUT AVE","STE 200","CHEVY CHASE","MD","20815",,,,,,,"541905826","2404823031",,,,"2011-09-12T19:51:27-0500","ANA RAMOS",,,,,10,10,,,10,,10,,,,"1A",,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912195919P030129024769001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TREATMENT ADVOCACY CENTER","001","2000-02-01","TREATMENT ADVOCACY CENTER","SAME",,"8401 CONNECTICUT AVE","STE 200","CHEVY CHASE","MD","20815",,,,,,,"200 N GLEBE RD","STE 730","ARLINGTON","VA","22203",,,,,,,"541905826","2404823031","541700","TREATMENT ADVOCACY CENTER",,"8401 CONNECTICUT AVE","STE 200","CHEVY CHASE","MD","20815",,,,,,,"541905826","2404823031",,,,"2011-09-12T19:54:13-0500","ANA RAMOS",,,,,10,10,,,10,,10,,,,"1A",,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912155011P040132204641010","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"PRECEPT MINISTRIES OF REACH OUT, INC. EMPLOYEE BENEFIT PLAN","501","1993-01-01","PRECEPT MINISTRIES OF REACH OUT,INC.",,,"P.O. BOX 182218",,"CHATTANOOGA","TN","37422",,,,,,,"7324 NOAH REID ROAD",,"CHATTANOOGA","TN","37422",,,,,,,"620841438","4238926814","424920","PRECEPT MINISTRIES OF REACH OUT,INC.",,"P.O. BOX 182218",,"CHATTANOOGA","TN","37422",,,,,,,"620841438","4238926814",,,,"2011-09-12T05:14:08-0500","DAVEY SOLOMON","2011-09-12T05:14:08-0500","DAVEY SOLOMON",,,92,81,,,81,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913165037P030019008098001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SLOAN ELECTRIC CORPORATION 401K PROFIT SHARING PLAN","001","1989-04-01","SLOAN ELECTRIC CORPORATION",,,"3520 MAIN STREET",,"SAN DIEGO","CA","921133804",,,,,,,,,,,,,,,,,,"952798589","6195159691","811110","SLOAN ELECTRIC CORPORATION",,"3520 MAIN STREET",,"SAN DIEGO","CA","921133804",,,,,,,"952798589","6195159691",,,,"2011-09-13T16:43:15-0500","JERRY GRAY",,,,,31,25,0,5,30,0,30,30,1,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913171610P040132856001008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COMPANION PET CLINIC 401(K) PLAN","001","2002-01-01","COMPANION PET CLINIC",,,"2343 GETTLE STREET",,"KLAMATH FALLS","OR","97603",,,,,,,"2343 GETTLE STREET",,"KLAMATH FALLS","OR","97603",,,,,,,"931233853","5418827674","541940","COMPANION PET CLINIC",,"2343 GETTLE STREET",,"KLAMATH FALLS","OR","97603",,,,,,,"931233853","5418827674",,,,"2011-07-31T10:14:53-0500","LISA WILSON","2011-07-31T10:14:53-0500","LISA WILSON",,,15,13,,0,13,,13,15,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912114459P040042417079001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SEGHETTI & WAXLER, AN ACCOUNTANCY CORPORATION 401(K) PROFIT SHARING PLAN","002","1989-01-01","SEGHETTI & WAXLER, AN ACCOUNTANCY CORPORATION",,,"1717 NORTH SEABRIGHT AVENUE, STE 4",,"SANTA CRUZ","CA","950622118",,,,,,,,,,,,,,,,,,"942651987","8314257676","541211","SEGHETTI & WAXLER, AN ACCOUNTANCY CORPORATION",,"1717 NORTH SEABRIGHT AVENUE, STE 4",,"SANTA CRUZ","CA","950622118",,,,,,,"942651987","8314257676",,,,"2011-09-12T12:44:39-0500","DOUGLAS WAXLER",,,,,4,4,0,0,4,0,4,4,0,,"2A2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912093533P030600600736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"POERIO & WALTER, INC. 401(K) PROFIT SHARING PLAN","001","2007-01-01","POERIO & WALTER INC.",,,"1119 PENN AVENUE","SUITE 303","PITTSBURGH","PA","15222",,,,,,,,,,,,,,,,,,"208133858","4122460506","541110","POERIO & WALTER INC.",,"1119 PENN AVENUE","SUITE 303","PITTSBURGH","PA","15222",,,,,,,"208133858","4122460506",,,,"2011-09-12T09:35:20-0500","BRAD JADLOWIEC",,,,,10,7,0,4,11,0,11,10,1,,"2E2F2G2J3D",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912161507P040132213297003","2010-01-01","2010-12-31","2",,,"1",,,,,"1",,,,"WPS HEALTH PLAN - NONBARGAINING EMPLOYEES","514","1977-09-25","WPS INSURANCE CORPORATION",,"EMPLOYEE SERVICES/CEN","1717 W BROADWAY",,"MADISON","WI","53713",,,,,,,,,,,,,,,,,,"391268299","6082214711","524140","WPS INSURANCE CORPORATION",,"1717 W BROADWAY",,"MADISON","WI","53713",,,,,,,"391268299",,"WPS INSURANCE CORPORATION","391268299",,"2011-09-12T16:05:43-0500","WILLIAM C. BEISENSTEIN",,,,,2281,2182,9,,2191,,,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913125914P040598457808001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"CONNON WOOD SCHEIDEMANTLE LLP PROFIT SHARING PLAN","001","2010-01-01","CONNON WOOD SCHEIDEMANTLE LLP",,,"35 EAST UNION STREET","UNIT C","PASADENA","CA","91103",,,,,,,,,,,,,,,,,,"522337038","6266381750","541110","CONNON WOOD SCHEIDEMANTLE LLP",,"35 EAST UNION STREET","UNIT C","PASADENA","CA","91103",,,,,,,"522337038","6266381750",,,,"2011-09-13T12:59:04-0500","DAVID SCHEIDEMANTLE","2011-09-13T12:59:04-0500","DAVID SCHEIDEMANTLE",,,0,7,0,0,7,0,7,7,0,,"2A2E2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913164857P030129549521001","2011-01-01","2011-01-11","2",,"0","1","1","1","0","1","0","0","0",,"CLOVIS ANESTHESIA & ASSOCIATES 401(K) PROFIT SHARING PLAN","001","1991-01-01","CLOVIS ANESTHESIA & ASSOCIATES",,,"7001 WATERWAY LANE",,"ABILENE","TX","79606",,,,,,,,,,,,,,,,,,"850266110","3257014043","621399","CLOVIS ANESTHESIA & ASSOCIATES",,"7001 WATERWAY LANE",,"ABILENE","TX","79606",,,,,,,"850266110","3257014043",,,,"2011-09-13T16:46:06-0500","MARCUS REYES","2011-09-13T16:46:06-0500","MARCUS REYES",,,2,0,0,0,0,0,0,0,0,,"2E2G2J2K2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913144129P030129492657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REMODELERS SUPPLY CENTER 401(K) PLAN","002","1995-01-01","LOGAN SQUARE ALUMINUM SUPPLY, INC.",,,"2500 N. PULASKI",,"CHICAGO","IL","60639",,,,,,,,,,,,,,,,,,"363049793","7732352500","444190","LOGAN SQUARE ALUMINUM SUPPLY, INC.",,"2500 N. PULASKI",,"CHICAGO","IL","60639",,,,,,,"363049793","7732352500",,,,"2011-09-13T12:17:40-0500","LOUIS SILVER","2011-09-13T12:17:40-0500","LOUIS SILVER",,,301,255,0,28,283,0,283,103,1,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912100236P030128749521001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"STEINHARDT MANAGEMENT COMPANY, INC. MONEY PURCHASE PLAN","002","1995-01-01","STEINHARDT MANAGEMENT CO., INC.",,,"650 MADISON AVENUE","17TH FLOOR BETWEEN 59 AND 60","NEW YORK","NY","10022",,,,,,,"650 MADISON AVENUE","17TH FLOOR BETWEEN 59 AND 60","NEW YORK","NY","10022",,,,,,,"132612259","2123717300","541990","STEINHARDT MANAGEMENT CO., INC.",,"650 MADISON AVENUE","17TH FLOOR BETWEEN 59 AND 60","NEW YORK","NY","10022",,,,,,,"132612259","2123717300",,,,"2011-09-12T10:02:01-0500","MICHAEL SCOLI",,,,,28,17,0,9,26,0,26,25,0,,"2C2F2G2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912140401P030601160336001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-B (WORLD OPPORT)","096",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-12T11:57:23-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-12",,"Filed with authorized/valid electronic signature", "20110913132821P040132760289001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","1","0",,"NEUROSURGICAL SPINE CENTER PROFIT SHARING PLAN AND TRUST","001","1996-01-01","NEUROSURGICAL SPINE CENTER",,,"P.O. BOX 5849",,"HUDSON","FL","34674",,,,,,,,,,,,,,,,,,"593384451","7278612332","621111","NEUROSURGICAL SPINE CENTER",,"P.O. BOX 5849",,"HUDSON","FL","34674",,,,,,,"593384451","7278612332",,,,"2011-09-13T13:27:23-0500","MENDY MCKENDRY",,,,,10,9,0,4,13,0,13,10,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913150007P040019776066002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"L. J. KYLE DDS INC. PROFIT SHARING PLAN","002","1992-01-01","L. J. KYLE DDS INC",,,"611 S. MAIN STREET",,"BLACKSBURG","VA","240605266",,,,,,,,,,,,,,,,,,"541619181","5409518383","621210","L. J. KYLE DDS INC.",,"611 S. MAIN STREET",,"BLACKSBURG","VA","240605266",,,,,,,"541619181","5409518383",,,,"2011-09-13T14:57:57-0500","L. J. KYLE","2011-09-13T14:58:46-0500","L. J. KYLE",,,16,18,0,0,18,0,18,18,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913182348P040132882337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COBB, FENDLEY & ASSOCIATES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1997-01-01","COBB, FENDLEY & ASSOCIATES, INC.",,,"13430 NORTHWEST FREEWAY, SUITE 1100",,"HOUSTON","TX","770406153",,,,,,,,,,,,,,,,,,"742192879","7134623242","541330","COBB, FENDLEY & ASSOCIATES, INC.",,"13430 NORTHWEST FREEWAY, SUITE 1100",,"HOUSTON","TX","770406153",,,,,,,"742192879","7134623242",,,,"2011-09-13T18:16:27-0500","JOHN COBB",,,,,200,133,17,50,200,0,200,199,15,,"2O2I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110912104643P030128767937001","2011-01-01","2011-08-18","2",,"0","0","1","1","0","0","0","0","0",,"CRYSTAL SODA WATER COMPANY PROFIT SHARING PLAN","002","1982-01-01","CRYSTAL SODA WATER COMPANY",,,"PO BOX 406","100 W POPLAR ST","SCRANTON","PA","185010406",,,,,,,,,,,,,,,,,,"240556190","5703475661","312110","CRYSTAL SODA WATER COMPANY",,"PO BOX 406","100 W POPLAR ST","SCRANTON","PA","185010406",,,,,,,"240556190","5703475661",,,,"2011-09-12T09:33:15-0500","LOUIS KAHANOWITZ",,,,,11,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912112119P030128779969001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-NN (SEL NASDAQ-100)","217",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-12T11:21:05-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-12",,"Filed with authorized/valid electronic signature", "20110912165001P030018920450001","2010-01-01","2010-11-05","2",,"0","0","1","1",,"1",,,,,"MONTAVISTA SOFTWARE, INC. 401(K) PLAN","001","1999-02-22","MONTAVISTA SOFTWARE, INC.",,,"2929 PATRICK HENRY DR",,"SANTA CLARA","CA","95054",,,,,,,"2929 PATRICK HENRY DR",,"SANTA CLARA","CA","95054",,,,,,,"943322876","4085728000","541511","MONTAVISTA SOFTWARE, INC.",,"2929 PATRICK HENRY DR",,"SANTA CLARA","CA","95054",,,,,,,"943322876","4085728000",,,,"2011-09-12T16:49:05-0500","SUZY SEANDEL",,,,,139,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912143814P030128883025001","2010-01-25","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"BATTEN CULINARY GROUP, INC. PROFIT SHARING PLAN","001","2010-01-25","BATTEN CULINARY GROUP, INC.",,,"7203 HAVRE TURN",,"UPPER MARLBORO","MD","20772",,,,,,,,,,,,,,,,,,"271750889","3016274496","722110","BATTEN CULINARY GROUP, INC.",,"7203 HAVRE TURN",,"UPPER MARLBORO","MD","20772",,,,,,,"271750889","3016274496",,,,"2011-09-12T14:35:54-0500","JACK BATTEN",,,,,1,1,0,0,1,0,1,1,0,,"3D2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912151150P030128898881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRAGAR WEXLER EAGEL & SQUIRE, P.C. SALARY DEFERRAL 401-K PLAN","001","1999-01-01","BRAGAR WEXLER EAGEL & SQUIRE, P.C.",,,"885 THIRD AVENUE","SUITE 3040","NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"201243366","2123085858","541110","BRAGAR WEXLER EAGEL & SQUIRE, P.C.",,"885 THIRD AVENUE","SUITE 3040","NEW YORK","NY","10022",,,,,,,"201243366","2123085858","BRAGAR WEXLER & EAGEL P.C.","201243366","001","2011-09-12T15:11:38-0500","RAYMOND A. BRAGAR","2011-09-12T15:11:38-0500","RAYMOND A. BRAGAR",,,16,9,0,7,16,0,16,15,1,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912151206P040132191313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LITECONTROL CORP PROFIT SHARING THRIFT PLAN","002","1984-12-01","LITECONTROL CORPORATION",,,"100 HAWKS AVE",,"HANSON","MA","02341",,,,,,,,,,,,,,,,,,"041549430","7812940100","335100","LITECONTROL CORPORATION",,"100 HAWKS AVE",,"HANSON","MA","02341",,,,,,,"041549430","7812940100",,,,"2011-09-12T15:11:25-0500","ADRIAN GRUNDY",,,,,195,179,0,18,197,0,197,190,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913091935P030603299376001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FEDEX SUPPLYCHAIN SERVICES, INC. FLEX PLAN","551","2000-01-01","FEDEX SUPPLYCHAIN SYSTEMS, INC.",,,"5455 DARROW ROAD",,"HUDSON","OH","44236",,,,,,,,,,,,,,,,,,"341614601","3333423020","488990","FEDEX SUPPLYCHAIN SYSTEMS, INC.",,"5455 DARROW ROAD",,"HUDSON","OH","44236",,,,,,,"341614601","3333423020",,,,"2011-09-13T09:18:19-0500","HUGH A. SKINNER",,,,,125,99,0,10,109,,,,,,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913161506P040598892176001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"STEVEN DAVID STONE, PC PROFIT SHARING PLAN","001","1986-10-01","STEVEN DAVID STONE, PC",,,"1004 PRINCE ST",,"ALEXANDRIA","VA","223142933",,,,,,,"1004 PRINCE ST",,"ALEXANDRIA","VA","223142933",,,,,,,"541387733","7036840200","541110","STEVEN DAVID STONE, PC",,"1004 PRINCE ST",,"ALEXANDRIA","VA","223142933",,,,,,,"541387733","7036840200",,,,"2011-09-13T16:09:11-0500","JOY ELLIS",,,,,4,1,,2,3,,3,3,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913201609P040019798738001","2010-01-01","2010-11-04","2",,"0","0","1","1","0","1","0","0","0",,"HOOSIER MOTOR CLUB PENSION PLAN","001","1971-01-01","HOOSIER MOTOR CLUB",,"TERRY GRIMES","3750 GUION ROAD, SUITE 390",,"INDIANAPOLIS","IN","46222",,,,,,,,,,,,,,,,,,"350392900","3179231500","812990","HOOSIER MOTOR CLUB","TERRY GRIMES","3750 GUION ROAD, SUITE 390",,"INDIANAPOLIS","IN","46222",,,,,,,"350392900","3179231500",,,,"2011-09-13T20:10:45-0500","TERRY GRIMES","2011-09-13T20:12:31-0500","TERRY GRIMES",,,297,0,0,0,0,0,0,,0,,"1A1G1H1I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912113831P030600866592001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LOUIS J. KENNEDY TRUCKING COMPANY, INC. MAJOR MEDI","501","1978-02-01","LOUIS J. KENNEDY TRUCKING CO. INC",,,"342 SCHUYLER AVENUE",,"KEARNY","NJ","07032",,,,,,,"342 SCHUYLER AVENUE",,"KEARNY","NJ","07032",,,,,,,"221837664","2019984142","484120","LOUIS J. KENNEDY TRUCKING COMPANY,",,"342 SCHUYLER AVENUE",,"KEARNY","NJ","07032",,,,,,,"221837664","2019984142",,,,"2011-09-15T06:26:00-0500","JOHN ROULETT","2011-09-15T06:26:00-0500","JOHN ROULETT",,,167,161,,,161,,,,,,,"4A4B4D4F4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912124026P030128818769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TARA H. SHANI, M.D., P.A. PROFIT SHARING PLAN & TRUST","002","2001-01-01","TARA H. SHANI, M.D., P.A.",,,"ONE BLALOCK CIRCLE",,"HOUSTON","TX","77024",,,,,,,,,,,,,,,,,,"760025999","7138801183","621111","TARA H. SHANI, M.D., P.A.",,"ONE BLALOCK CIRCLE",,"HOUSTON","TX","77024",,,,,,,"760025999","7138801183",,,,"2011-09-12T12:39:48-0500","TARA SHANI, M.D. OR HARRY SHANI","2011-09-12T12:39:48-0500","TARA SHANI, M.D. OR HARRY SHANI",,,4,4,0,0,4,0,4,4,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912075417P030003790035001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DSI HOLDINGS USA INC. PROFIT SHARING AND RETIREMENT PLAN","002","1991-07-01","DSI HOLDINGS USA INC.",,,"320 MARMON DRIVE",,"BOLINGBROOK","IL","60440",,,,,,,,,,,,,,,,,,"260880426","6307391100","423300","DSI HOLDINGS USA INC.",,"320 MARMON DRIVE",,"BOLINGBROOK","IL","60440",,,,,,,"260880426","6307391100","DYWIDAG SYSTEMS INTERNATIONAL USA INC.","132635618","002","2011-09-12T07:53:23-0500","TORSTEN REINHARDT","2011-09-12T07:53:23-0500","TORSTEN REINHARDT",,,502,361,0,139,500,1,501,492,90,,"2E2F2G2J2K2T3D3H",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912151307P030128899281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRAGAR WEXLER, EAGEL & SQUIRE, P.C. MONEY PURCHASE PENSION PLAN","002","2001-01-01","BRAGAR WEXLER EAGEL & SQUIRE, P.C.",,,"885 THIRD AVENUE","SUITE 3040","NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"201243366","2123085858","541110","BRAGAR WEXLER EAGEL & SQUIRE, P.C.",,"885 THIRD AVENUE","SUITE 3040","NEW YORK","NY","10022",,,,,,,"201243366","2123085858","BRAGAR WEXLER & EAGEL, P.C.","201243366","002","2011-09-12T15:12:55-0500","RAYMOND A. BRAGAR","2011-09-12T15:12:55-0500","RAYMOND A. BRAGAR",,,8,4,0,0,4,0,4,4,0,,"2C2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912155617P030018917970001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WILLAMETTE EGG FARMS 401K PROFIT SHARING PLAN & TRUST","001","1989-09-01","WILLAMETTE EGG FARMS LLC",,,"31348 S. HWY 170",,"CANBY","OR","970139557",,,,,,,,,,,,,,,,,,"931159899","5036512152","424500","WILLAMETTE EGG FARMS LLC",,"31348 S. HWY 170",,"CANBY","OR","970139557",,,,,,,"931159899","5036512152",,,,"2011-09-12T15:55:29-0500","JOE EBERLE",,,,,220,178,1,48,227,0,227,209,7,,"2E2F2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913075805P030041786327001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BTA INVESTMENTS, INC. PROFIT SHARING PLAN","001","2005-05-05","BTA INVESTMENTS, INC.",,,"287 MILLARD FARMER IND BLVD.",,"NEWNAN","GA","30263",,,,,,,,,,,,,,,,,,"202807647","7702524750","523900","BTA INVESTMENTS, INC.",,"287 MILLARD FARMER IND BLVD.",,"NEWNAN","GA","30263",,,,,,,"202807647","7702524750",,,,"2011-09-12T14:39:38-0500","JAMES AYERS",,,,,2,2,,,2,,2,2,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913110739P040132687713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"K&N INSURANCE AGENCY EMPLOYEE PENSION PLAN","002","1999-09-23","K&N INSURANCE AGENCY INC",,,"8053 BURLINGTON PIKE",,"FLORENCE","KY","41042",,,,,,,"8053 BURLINGTON PIKE",,"FLORENCE","KY","41042",,,,,,,"311674921","8593718191","524210","K&N INSURANCE AGENCY INC",,"8053 BURLINGTON PIKE",,"FLORENCE","KY","41042",,,,,,,"311674921","8593718191",,,,"2011-09-13T11:05:15-0500","DANIEL BRADY",,,,,4,3,0,0,3,0,3,,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913103441P030129388897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIRAVERA RENTAL PROPERTY INC. RETIREMENT PLAN","001","1999-01-01","MIRAVERA RENTAL PROPERTY INC.",,,"SAN JORGE MEDICAL","SUITE 401","SAN JUAN","PR","00912",,,,,,,"SAN JORGE MEDICAL","SUITE 401","SAN JUAN","PR","00912",,,,,,,"660550193","7877261484","446190","MIRAVERA RENTAL PROPERTY INC.",,"SAN JORGE MEDICAL","SUITE 401","SAN JUAN","PR","00912",,,,,,,"660550193","7877261484",,,,"2011-09-13T10:16:18-0500","JORGE RIVERA HERRERA","2011-09-13T10:16:18-0500","JORGE RIVERA HERRERA",,,7,5,2,0,7,0,7,7,0,,"2E3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913164459P030019007394001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"O. C. SCHUEDDIG MACHINE COMPANY, INC. 401(K) PLAN","001","2001-01-01","O. C. SCHUEDDIG MACHINE COMPANY, INC.",,,"1226 AMBASSADOR BLVD.",,"ST LOUIS","MO","63132",,,,,,,,,,,,,,,,,,"431546709","3149957002","332900","TIMOTHY L HEAD, CPA",,"301 SOVEREIGN COURT SUITE 202",,"MANCHESTER","MO","63011",,,,,,,"431714477","6362076730",,,,"2011-09-13T11:42:40-0500","SCOTT LAWRENCE",,,,,7,7,,,7,,7,7,,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913164507P040132842865003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BROST ARCHITECTS & PLANNERS LTD PROFIT SHARING PLAN","001","1991-01-01","BROST ARCHITECTS & PLANNERS LTD",,,"1005 LONGFELLOW DRIVE",,"HIAWATHA","IA","52233",,,,,,,,,,,,,,,,,,"421512721","3193668531","541310","BROST ARCHITECTS & PLANNERS LTD",,"1005 LONGFELLOW DRIVE",,"HIAWATHA","IA","52233",,,,,,,"421512721","3193668531",,,,"2011-09-09T11:54:36-0500","DAVID BROST JR.","2011-09-09T11:54:45-0500","DAVID BROST JR.",,,6,5,0,1,6,0,6,6,,,"2E2H2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913180153P040132875217001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ZAPANTA FAMILY DENTISTRY PROFIT SHARING PLAN","001","1997-01-01","ZAPANTA FAMILY DENTISTRY","ZAPANTA FAMILY DENTISTRY","BENEFIT SYNERGY","11 WEST AVENIDA JUNIPERO",,"SAN CLEMENTE","CA","92672",,,,,,,,,,,,,,,,,,"954421269","9494980924","621210","ZAPANTA FAMILY DENTISTRY","BENEFIT SYNERGY","11 WEST AVENIDA JUNIPERO",,"SAN CLEMENTE","CA","92672",,,,,,,"954421269","9494980924",,,,"2011-09-13T18:01:51-0500","JOSEPH ZAPANTA",,,,,19,16,3,0,19,0,19,16,,,"2E2A",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110912171340P030018922978001","2011-01-01","2011-06-30","2",,,"1","1","1",,,,,,,"BLUE GOOSE RETIREMENT PLAN","001","2004-01-01","JEFFREY S. JIRELE INSURANCE AGENCY, INC.",,,"4802 EAST RAY ROAD","SUITE 21","PHOENIX","AZ","85044",,,,,,,,,,,,,,,,,,"412131049","4808933585","524210","JEFFREY S. JIRELE INSURANCE AGENCY, INC.",,"4802 EAST RAY ROAD","SUITE 21","PHOENIX","AZ","85044",,,,,,,"412131049","4808933585",,,,"2011-09-12T06:13:17-0500","JEFFREY JIRELE",,,,,4,0,0,0,0,0,0,0,0,,"2A2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913110942P030129401057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"K&P INSURANCE AGENCY EMPLOYEE PROFIT SHARING PLAN","002","1973-01-01","K&P INSURANCE AGENCY INC",,,"155 W KEMPER RD",,"CINCINNATI","OH","45246",,,,,,,"155 W KEMPER RD",,"CINCINNATI","OH","45246",,,,,,,"310797044","5136716400","524210","K&P INSURANCE AGENCY INC",,"155 W KEMPER RD",,"CINCINNATI","OH","45246",,,,,,,"310797044","5136716400",,,,"2011-09-13T11:04:27-0500","DANIEL BRADY",,,,,2,2,0,0,2,0,2,,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913103817P040132674385001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"THOMPSON TOYOTA INC. FLEXIBLE BENEFIT PLAN","501","1998-03-01","THOMPSON TOYOTA INC.",,,"50 W. SWAMP ROAD",,"DOYLESTOWN","PA","18901",,,,,,,,,,,,,,,,,,"231707868","2153451110","441110","THOMPSON TOYOTA INC.",,"50 W. SWAMP ROAD",,"DOYLESTOWN","PA","18901",,,,,,,"231707868","2153451110",,,,"2011-09-13T10:37:43-0500","JENNIFER MAY","2011-09-13T10:37:43-0500","JENNIFER MAY",,,317,331,6,0,337,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913112119P040019758898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMH REGIONAL MEDICAL CENTER FLEX RX PLAN","505","1993-01-01","COMPREHENSIVE HEALTH CARE OF OHIO",,,"630 EAST RIVER STREET",,"ELYRIA","OH","44035",,,,,,,,,,,,,,,,,,"341492733","4403297500","622000","COMPREHENSIVE HEALTH CARE OF OHIO",,"630 EAST RIVER STREET",,"ELYRIA","OH","44035",,,,,,,"341492733","4403297500",,,,"2011-09-13T11:20:19-0500","ANN M. RILEY",,,,,1885,1639,12,143,1794,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913130717P040042667319001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAMLE MEDICAL CORPORATION PROFIT SHARING PLAN","002","1988-07-01","DAMLE MEDICAL CORPORATION",,,"1331 WEST AVENUE J., SUITE 101",,"LANCASTER","CA","935342945",,,,,,,,,,,,,,,,,,"953855076","6619458717","621111","DAMLE MEDICAL CORPORATION",,"1331 WEST AVENUE J., SUITE 101",,"LANCASTER","CA","935342945",,,,,,,"953855076","6619458717",,,,"2011-09-13T12:49:20-0500","PRADEEP DAMLE","2011-09-13T12:49:20-0500","PRADEEP DAMLE",,,9,5,0,1,6,0,6,6,2,,"2A2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110913183929P030129589937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STREAMLINE ENTERPRISES INC. 401(K) PLAN","001","2007-10-24","STREAMLINE ENTERPRISES INC.",,,"PO BOX 50296",,"BILLINGS","MT","59105",,,,,,,,,,,,,,,,,,"261335929","4062488001","541600","STREAMLINE ENTERPRISES INC.",,"PO BOX 50296",,"BILLINGS","MT","59105",,,,,,,"261335929","4062488001",,,,"2011-09-13T18:39:17-0500","RODNEY TRAHAN","2011-09-13T18:39:17-0500","RODNEY TRAHAN",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912180336P040019692050001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CENTER FOR DENTAL EXCELLENCE, D.P.C. RETIREMENT PLAN & TRUST","001","1999-01-01","CENTER FOR DENTAL EXCELLENCE, INC.",,,"212 EAST COLLEGE STREET",,"DICKSON","TN","37055",,,,,,,,,,,,,,,,,,"621874470","6154462372","621210","CENTER FOR DENTAL EXCELLENCE, INC.",,"212 EAST COLLEGE STREET",,"DICKSON","TN","37055",,,,,,,"621874470","6154462372",,,,"2011-09-12T18:03:23-0500","STEPHEN B. DELOACH, D.D.S.",,,,,9,4,0,5,9,0,9,9,2,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912140519P030128868273001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-DA (RETIRESMART MODERATE GROWTH)","037",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-12T14:02:03-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-12",,"Filed with authorized/valid electronic signature", "20110913140159P030129474721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"THE NEWHALL LAND AND FARMING COMPANY LONG-TERM DISABILITY PLAN FOR SALARIED","502","1975-04-01","THE NEWHALL LAND AND FARMING COMPANY",,"ALMA TERRANOVA","25124 SPRINGFIELD COURT SUITE 300",,"VALENCIA","CA","913551088",,,,,,,"25124 SPRINGFIELD COURT SUITE 300",,"VALENCIA","CA","913551088",,,,,,,"953931727","6612554055","531390","THE NEWHALL LAND AND FARMING COMPANY","ALMA TERRANOVA","25124 SPRINGFIELD COURT SUITE 300",,"VALENCIA","CA","913551088",,,,,,,"953931727","6612554055",,,,"2011-09-13T13:58:38-0500","ALMA TERRANOVA",,,,,106,100,,,100,,100,,,,,"4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110913152750P040019777218001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JANE TRAN, INC. 401(K) PROFIT SHARING PLAN","001","2009-01-01","JANE TRAN, INC.",,,"818 SOUTH BROADWAY #701",,"LOS ANGELES","CA","90014",,,,,,,,,,,,,,,,,,"364527771","2136240759","315990","JANE TRAN, INC.",,"818 SOUTH BROADWAY #701",,"LOS ANGELES","CA","90014",,,,,,,"364527771","2136240759",,,,"2011-09-13T15:26:04-0500","CHAN TRAN",,,,,5,5,0,1,6,0,6,5,,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110912124411P030003794579001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"EQUITY INDEX FUND (FORMERLY EQUITY INDEX TRUST OF WACHOVIA BANK, NATIONAL ASSOCIATION)","001",,"WELLS FARGO BANK, N.A.",,,"608 2ND AVENUE S, 9TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"566633539","6126672126",,"WELLS FARGO BANK, N.A.",,"608 2ND AVENUE S, 9TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,"566288528","6126672126",,,,,,,,"2011-09-12T12:09:03-0500","JEFFREY KLETTI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-12",,"Filed with authorized/valid electronic signature", "20110912111223P030128776161002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CHESHIRE ACADEMY 403(B) TDA PLAN","001","1986-01-01","THE CHESHIRE ACADEMY",,,"10 MAIN STREET",,"CHESHIRE","CT","06410",,,,,,,"10 MAIN STREET",,"CHESHIRE","CT","06410",,,,,,,"060662113","2032725396","611000","THE CHESHIRE ACADEMY",,"10 MAIN STREET",,"CHESHIRE","CT","06410",,,,,,,"060662113","2032725396",,,,"2011-08-02T06:03:46-0500","PATRICIA WILLIS",,,,,237,130,,98,228,,228,191,,,"2G2L2M",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912172955P030128966897001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"IFA NURSERIES, INC. RETIREMENT SAVINGS PLAN AND TRUST","003","1998-01-01","IFA NURSERIES, INC.",,,"9450 SW COMMERCE CIRCLE","SUITE 370","WILSONVILLE","OR","97070",,,,,,,"9450 SW COMMERCE CIRCLE","SUITE 370","WILSONVILLE","OR","97070",,,,,,,"930902057","5038553358","115310","IFA NURSERIES, INC.",,"9450 SW COMMERCE CIRCLE","SUITE 370","WILSONVILLE","OR","97070",,,,,,,"930902057","5038553358",,,,"2011-09-12T17:29:32-0500","THOMAS JACKMAN",,,,,101,96,1,9,106,0,106,54,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912173229P040132246945001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"HUNG LU, DDS, INC. 401(K) PLAN","001","2010-01-01","HUNG LU, DDS, INC.",,,"4420 NORTH 1ST STREET",,"FRESNO","CA","93728",,,,,,,,,,,,,,,,,,"264541149","5592258337","621210","HUNG LU, DDS, INC.",,"4420 NORTH 1ST STREET",,"FRESNO","CA","93728",,,,,,,"264541149","5592258337",,,,"2011-09-12T17:31:47-0500","HUNG LU",,,,,3,3,0,0,3,,3,,,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913154604P040132820289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"QUOIZEL, INC. 401(K) PROFIT SHARING PLAN","001","1974-01-01","QUOIZEL, INC.",,,"6 CORPORATE PARKWAY",,"GOOSE CREEK","SC","29445",,,,,,,,,,,,,,,,,,"111982765","8435536700","335100","QUOIZEL, INC.",,"6 CORPORATE PARKWAY",,"GOOSE CREEK","SC","29445",,,,,,,"111982765","8435536700",,,,"2011-09-13T15:45:30-0500","TOM JEFFRIES",,,,,200,147,0,33,180,0,180,176,0,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110912115622P040132105217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOHIN TISSA SAMARAWEERA, M.D., S.C. PROFIT SHARING PLAN","001","1988-06-01","MOHIN TISSA SAMARAWEERA, M.D., S.C.",,"PLAINFIELD MEDICAL CENTER","24016 W MAIN ST",,"PLAINFIELD","IL","605442232",,,,,,,,,,,,,,,,,,"363075818","8154367303","621111","MOHIN TISSA SAMARAWEERA, M.D., S.C.","PLAINFIELD MEDICAL CENTER","24016 W MAIN ST",,"PLAINFIELD","IL","605442232",,,,,,,"363075818","8154367303",,,,"2011-09-12T11:56:21-0500","MOHIN TISSA SAMARAWEERA, M.D.",,,,,4,2,0,0,2,0,2,2,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912080116P040004018067001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"MARQUETTE FINANCIAL COMPANIES PENSION ACCOUNT PLAN","333","1970-01-01","MARQUETTE FINANCIAL COMPANIES",,,"3800 DAIN RAUSCHER PLAZA","60 SOUTH SIXTH STREET","MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"410883341","6126613774","522110","MARQUETTE FINANCIAL COMPANIES",,"3800 DAIN RAUSCHER PLAZA",,"MINNEAPOLIS","MN","55402",,,,,,,"410883341","6126613774",,,,"2011-09-12T07:58:32-0500","CHRISTINE MANNO",,,,,358,15,179,132,326,24,350,0,0,,"1A1C1G",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110913134636P030129467633001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"FLORIDA ORTHOPAEDIC INSTITUTES EMPLOYEE BENEFITS PLAN","502","1996-03-01","MUSCULOSKELETAL INSTITUTE INC.","FLORIDA ORTHOPAEDIC INSTITUTE",,"13020 N. TELECOM PARKWAY",,"TEMPLE TERRACE","FL","336370925",,,,,,,,,,,,,,,,,,"592929608","8139789779","621399","MUSCULOSKELETAL INSTITUTE INC.",,"13020 N. TELECOM PARKWAY",,"TEMPLE TERRACE","FL","336370925",,,,,,,"592929608","8139789779",,,,"2011-09-13T13:32:41-0500","NICK MARSALA",,,,,478,469,3,0,472,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-09-13","Filed with authorized/valid electronic signature",, "20110912134058P030128851697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRIZZELL CONSTRUCTION COMPANY, INC. 401K SALARY REDUCTION PLAN AND TRUST","001","1998-01-01","FRIZZELL CONSTRUCTION COMPANY, INC.",,,"1501 BLUFF CITY HIGHWAY",,"BRISTOL","TN","37625",,,,,,,,,,,,,,,,,,"620644837","4237645107","236200","FRIZZELL CONSTRUCTION COMPANY, INC.",,"1501 BLUFF CITY HIGHWAY",,"BRISTOL","TN","37625",,,,,,,"620644837","4237645107",,,,"2011-09-12T13:40:06-0500","SHERIE HORTON","2011-09-12T13:40:06-0500","SHERIE HORTON",,,171,181,0,0,181,0,181,27,0,,"2E2F2G2J3D3H",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110912154218P040042454871001","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"BLUE HOUR DESIGN RETIREMENT PLAN","001","1995-10-01","BLUE HOUR DESIGN",,,"336 FOOT HILLS ROAD",,"DURHAM","CT","06422",,,,,,,,,,,,,,,,,,"263556510","8603478325","541310","BLUE HOUR DESIGN",,"336 FOOT HILLS ROAD",,"DURHAM","CT","06422",,,,,,,"263556510","8603478325",,,,"2011-09-12T04:41:50-0500","BRIAN AMECHE",,,,,1,0,0,0,0,0,0,0,0,,"2E2G2J2K2R3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110912154253P030128910721001","2010-01-01","2010-12-22","2",,"0","0","1","1","0","1","0","0","0",,"POHANKA OF CHANTILLY, INC. NADART SALARY DEF 401K PLAN","001","1992-10-01","POHANKA OF CHANTILLY, INC.",,,"13901 LEE JACKSON HWY",,"CHANTILLY","VA","20151",,,,,,,,,,,,,,,,,,"521759088","7035023763","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-09-12T15:43:55-0500","ALAN B. SVEDLOW",,,,,173,0,0,0,0,0,0,0,0,,"2E2J3D2K2F2G2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-12","Filed with authorized/valid electronic signature",, "20110915090332P040019943970001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHOCTAW-KAUL 401 (K) PLAN","001","1999-01-01","CHOCTAW-KAUL DISTRIBUTION CO.",,,"3540 VINEWOOD AVE",,"DETROIT","MI","48208",,,,,,,,,,,,,,,,,,"381225655","3138949494","488990","CHOCTAW-KAUL DISTRIBUTION CO.",,"3540 VINEWOOD AVE",,"DETROIT","MI","48208",,,,,,,"381225655","3138949494",,,,"2011-09-15T09:03:16-0500","HEIDI ANDERSON",,,,,124,114,0,5,119,0,119,59,2,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915135310P040133975889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEERLESS OF AMERICA WELFARE BENEFIT PLAN","501","1999-01-01","PEERLESS OF AMERICA, INC.",,,"1201 WEST WABASH AVE.",,"EFFINGHAM","IL","624010527",,,,,,,,,,,,,,,,,,"361610605","2173420405","333410","PEERLESS OF AMERICA, INC.",,"1201 WEST WABASH AVE.",,"EFFINGHAM","IL","624010527",,,,,,,"361610605","2173420405",,,,"2011-09-15T13:52:48-0500","DANIEL PATRICK",,,,,121,127,0,0,127,,,,,,,"4A4B4D4E4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110914190230P030130246705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARCOS A. AYALA RIVERA RETIREMENT PLAN SERIES 99-1795","001","1999-01-01","DR. MARCOS A. AYALA RIVERA",,,"PO BOX 1568",,"MAYAGUEZ","PR","006811568",,,,,,,,,,,,,,,,,,"660404730","7878335235","621399","DR. MARCOS A. AYALA RIVERA",,"PO BOX 1568",,"MAYAGUEZ","PR","006811568",,,,,,,"660404730","7878335235",,,,"2011-09-14T19:01:45-0500","MARCOS A. AYALA RIVERA","2011-09-14T19:01:45-0500","MARCOS A. AYALA RIVERA",,,2,1,1,0,2,0,2,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110909161119P030127225153001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"PINNACLE MORTGAGE GROUP, INC. COMPREHENSIVE HEALTH AND WELFARE BENEFIT PLAN","501","1996-01-01","PINNACLE MORTGAGE GROUP, INC.",,,"3605 SOUTH TELLER STREET",,"LAKEWOOD","CO","80235",,,,,,,,,,,,,,,,,,"841326372","3037169000","522292","PINNACLE MORTGAGE GROUP, INC.",,"3605 SOUTH TELLER STREET",,"LAKEWOOD","CO","80235",,,,,,,"841326372","3037169000",,,,"2011-09-09T16:10:25-0500","ROLAND SCOTT",,,,,104,109,3,7,119,,,,,,,"4A4B4D4E4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110915101757P040019949602001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"METROPOLITAN CORPORATION HEALTH INSURANCE PLAN","510","1988-06-01","METROPOLITAN CORPORATION",,,"4350 BAKER RD., SUITE 230",,"MINNETONKA","MN","55343",,,,,,,,,,,,,,,,,,"411832140","9528931277","441110","METROPOLITAN CORPORATION",,"4350 BAKER RD., SUITE 230",,"MINNETONKA","MN","55343",,,,,,,"411832140","9528931277",,,,"2011-09-14T09:54:40-0500","DAVID K. NORTON",,,,,294,317,4,,321,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915135435P040133976513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACKSON FEILD HOMES 401(K) PLAN","001","1999-01-01","JACKSON FEILD HOMES, INC.",,,"546 WALNUT GROVE DRIVE",,"JARRATT","VA","23867",,,,,,,,,,,,,,,,,,"540505920","4346343217","623000","JACKSON FEILD HOMES, INC.",,"546 WALNUT GROVE DRIVE",,"JARRATT","VA","23867",,,,,,,"540505920","4346343217",,,,"2011-09-15T13:53:36-0500","PATRICIA DELANO",,,,,117,88,0,14,102,0,102,45,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915171130P030130774737001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","1","0","0",,"BINKLEY & BARFIELD, INC. EMPLOYEE STOCK OWNERSHIP PLAN","004","2010-01-01","BINKLEY & BARFIELD, INC.",,,"1710 SEAMIST DRIVE, SUITE 200",,"HOUSTON","TX","77008",,,,,,,,,,,,,,,,,,"741701559","7138693433","541330","BINKLEY & BARFIELD, INC.",,"1710 SEAMIST DRIVE, SUITE 200",,"HOUSTON","TX","77008",,,,,,,"741701559","7138693433",,,,"2011-09-15T17:08:40-0500","RENEE DUNCAN",,,,,77,70,0,0,70,0,70,66,0,,"2F2O2Q",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915121510P040019959746001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"BAKER FUNERAL HOMES INC. PROFIT SHARING PLAN","002","1987-12-31","BAKER OSINSKI KENSINGER FUNERAL HM",,"CASEY KENSINGER","206 FRONT STREET",,"BEREA","OH","440171922",,,,,,,,,,,,,,,,,,"340906965","4402341331","812210","BAKER OSINSKI KENSINGER FUNERAL HOME, INC.","CASEY KENSINGER","206 FRONT STREET",,"BEREA","OH","440171922",,,,,,,"341621960","4402341331",,,,"2011-08-31T11:31:33-0500","CASEY KENSINGER","2011-08-31T11:32:27-0500","CASEY KENSINGER",,,5,4,0,1,5,0,5,5,5,,"2G2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915143859P040043149127001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-T2 (RETIREMENT INCOME)","050",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-15T14:38:33-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915143915P040133995185001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-T3 (RETIREMENT 2010)","051",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-15T14:39:05-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915144033P040133995617001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-VE (BALANCED)","278",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-15T14:39:43-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915221450P040010000869001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","1","0","0",,"STEVEN I SKLAR SELF-EMPLOYED RETIREMENT PLAN","001","1977-01-01","STEVEN I. SKLAR",,,"15 CHIPPER DRIVE",,"KENDALL PARK","NJ","088241730",,,,,,,"15 CHIPPER DRIVE",,"KENDALL PARK","NJ","088241730",,,,,,,"222657242","7324226772","541110","STEVEN I. SKLAR",,"15 CHIPPER DRIVE",,"KENDALL PARK","NJ","088241730",,,,,,,"222657242","7324226772",,,,"2011-09-15T22:05:01-0500","STEVEN SKLAR",,,,,2,3,,,3,,3,3,0,,"2E2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915083929P040022000854001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUNMEDIA HEALTH INSURANCE PLAN","502","1986-06-01","COMCORP INC.","D/B/A SUNMEDIA CORPORATION",,"5510 CLOVERLEAF PARKWAY",,"CLEVELAND","OH","441254815",,,,,,,,,,,,,,,,,,"340977569","2169862600","511110","COMCORP INC.","D/B/A SUNMEDIA CORPORATION","5510 CLOVERLEAF PARKWAY",,"CLEVELAND","OH","441254815",,,,,,,"340977569","2169862600",,,,"2011-09-15T08:28:49-0500","ELLEN SANDERS",,,,,119,51,6,0,57,,,,,,,"4A4D4R","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915144658P040133998609001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-TN (SELECT MID CAP GR II)","226",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-15T14:46:24-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110911094914P040592759776001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"DILIGENT ENTERPRISE INC. PROFIT SHARING PLAN","001","2009-06-16","DILIGENT ENTERPRISE INC.",,,"155 MAIN ST STE 303",,"DANBURY","CT","06810",,,,,,,,,,,,,,,,,,"270372510","8455921972","621610","DILIGENT ENTERPRISE INC.",,"155 MAIN ST STE 303",,"DANBURY","CT","06810",,,,,,,"270372510","8455921972",,,,"2011-09-11T09:44:09-0500","DEVON WILLIAMS",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-11","Filed with authorized/valid electronic signature",, "20110909153000P030127206449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAMPBELL'S NURSERIES & GARDEN CENTER, INC. CASH OR DEFERRED PROFIT SHARING PLAN","001","1969-12-24","CAMPBELL'S NURSERIES AND GARDEN CENTER, INC.",,,"5625 PINE LAKE ROAD",,"LINCOLN","NE","68516",,,,,,,,,,,,,,,,,,"470524518","4024234556","111400","CAMPBELL'S NURSERIES AND GARDEN CENTER, INC.",,"5625 PINE LAKE ROAD",,"LINCOLN","NE","68516",,,,,,,"470524518","4024234556",,,,"2011-09-09T15:29:50-0500","SANDY PRIEFERT",,,,,142,60,1,20,81,0,81,73,31,,"3D2E2J2K2F2G2S",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110915091247P040133832273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAYATI MUKHOPADHAY PROFIT SHARING PLAN","001","2004-12-01","JAYATI MUKHOPADHAY",,,"10 RON'S EDGE ROAD",,"SPRINGFIELD","NJ","07081",,,,,,,"10 RON'S EDGE ROAD",,"SPRINGFIELD","NJ","07081",,,,,,,"222633140","9733742648","621111","JAYATI MUKHOPADHAY",,"10 RON'S EDGE ROAD",,"SPRINGFIELD","NJ","07081",,,,,,,"222633140","9733742648",,,,"2011-09-15T09:11:12-0500","RAYMOND DE LUCA JR",,,,,1,1,0,0,1,0,1,1,0,,"2E2F3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915092852P040133840481001","2010-02-01","2011-01-31","2",,"1","0","0","0","0","0","0","0","0",,"INOVA FEDERAL CREDIT UNION AIG","001","2010-02-01","INOVA FEDERAL CREDIT UNION",,,"358 S ELKHART AVE",,"ELKHART","IN","46516",,,,,,,"358 S ELKHART AVE",,"ELKHART","IN","46516",,,,,,,"350887540","5742946553","522110","MELODY NEAGU",,"358 S ELKHART AVE",,"ELKHART","IN","46516",,,,,,,"350887540",,,,,"2011-09-15T09:28:09-0500","MELODY NEAGU",,,,,113,113,,,113,,113,,,,"3C","4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915103330P030130607409010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ELWYN J HORNSBY JR MONEY PURCHASE PLAN","002","1998-12-28","ELWYN J HORNSBY JR",,,"PO BOX 848",,"MANDEVILLE","LA","70470",,,,,,,,,,,,,,,,,,"435829380","9858980591","711510","ELWYN J HORNSBY JR",,"PO BOX 848",,"MANDEVILLE","LA","70470",,,,,,,"435829380","9858980591",,,,"2011-09-13T13:04:10-0500","ELWYN J HORNSBY JR",,,"2011-09-15T10:11:04-0500","ROBERT A NEILSON",1,1,,,1,,1,1,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110915124617P040133944241001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HARKEN INC 401(K) PROFIT SHARING PLAN & TRUST","001","1992-01-01","HARKEN INC",,,"14 ROCK AVENUE",,"PASCOAG","RI","02859",,,,,,,,,,,,,,,,,,"050280586","4015682549","623000","HARKEN INC",,"14 ROCK AVENUE",,"PASCOAG","RI","02859",,,,,,,"050280586","4015682549","OVERLOOK NURSING HOME",,,"2011-09-15T12:45:51-0500","CHARLES KENOIAN",,,,,145,138,0,36,174,0,174,155,13,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","1","0",,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110911111000P040019566562001","2011-01-01","2011-06-01","2",,"0","0","1","1","0","0","0","0","0",,"GESHAY PEDIATRIC DENTISTRY, PC DEFINED BENEFIT PENSION PLAN","003","2005-01-01","GESHAY PEDIATRIC DENISTRY, PC",,,"634 PITTSBURGH ROAD",,"UNIONTOWN","PA","15401",,,,,,,,,,,,,,,,,,"204055822","7244391576","621210","GESHAY PEDIATRIC DENISTRY, PC",,"634 PITTSBURGH ROAD",,"UNIONTOWN","PA","15401",,,,,,,"204055822","7244391576",,,,"2011-09-11T11:08:27-0500","JAMES B. GESHAY, JR.",,,,,9,0,0,0,0,0,0,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-11","Filed with authorized/valid electronic signature",, "20110911132803P040019574098001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DEAN O. TODD, DDS 401(K) PROFIT SHARING PLAN","003","2009-01-01","DEAN O. TODD DDS",,,"5215 E. 71ST, SUITE 600",,"TULSA","OK","74136",,,,,,,,,,,,,,,,,,"731278357","9184932444","621210","DEAN O. TODD DDS",,"5215 E. 71ST, SUITE 600",,"TULSA","OK","74136",,,,,,,"731278357","9184932444",,,,"2011-09-11T13:24:05-0500","DEAN O. TODD",,,,,6,5,0,1,6,0,6,6,0,,"2E2J2K3D3B2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-11","Filed with authorized/valid electronic signature",, "20110915154508P040003791556003","2010-04-01","2011-03-31","1",,,,,,"1",,,,,,"PLUMBERS & PIPEFITTERS LOCAL 25 WELFARE FUND","501","1960-08-31","PLUMBERS PIPEFITTERS LOCAL 25 WELFARE FUND",,,"4600 46TH AVENUE",,"ROCK ISLAND","IL","61201",,,,,,,,,,,,,,,,,,"362510895","3097884569","238220","PLUMBERS PIPEFITTERS LOCAL 25 WELFARE FUND",,"4600 46TH AVENUE",,"ROCK ISLAND","IL","61201",,,,,,,"362510895","3097884569",,,,"2011-09-15T16:34:09-0500","MARIE HAASE",,,"2011-09-15T16:34:17-0500","DONALD L. MOORHEAD, CPA",878,843,438,0,1281,,,,,83,,"4A4B4D4E4F4H",,,"1",,"1",,"1",,"1",,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature", "20110914170442P040601759072001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GROUP TERM LIFE AD&D DEPENDENT LIFE INSURANCE PLAN OF COMCOR, INC.","504","1993-10-01","COMCOR, INC.",,,"3615 ROBERTS ROAD",,"COLORADO SPRINGS","CO","80907",,,,,,,"3615 ROBERTS ROAD",,"COLORADO SPRINGS","CO","80907",,,,,,,"840928251","7194734460","624100","COMCOR, INC.",,"3615 ROBERTS ROAD",,"COLORADO SPRINGS","CO","80907",,,,,,,"840928251","7194734460",,,,"2011-09-14T17:04:23-0500","SHARON DETTER",,,,,120,117,,,117,,117,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110909101948P040019371362001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FELDMAN, ETRA, SCHIFFMAN, P.A. PROFIT SHARING PLAN","002","1984-11-01","FELDMAN, ETRA, SCHIFFMAN, P. A",,,"885 MAIN STREET",,"HACKENSACK","NJ","07601",,,,,,,,,,,,,,,,,,"221896181","2014895147","621111","FELDMAN, ETRA, SCHIFFMAN, P. A",,"885 MAIN STREET",,"HACKENSACK","NJ","07601",,,,,,,"221896181","2014895147",,,,"2011-09-09T10:18:53-0500","BRUCE TERRIN",,,,,16,15,0,0,15,0,15,13,0,,"2E2J2F2G2K2T3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110909161935P040588180880001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRANK V. CALABA, A LAW CORPORATION PROFIT SHARING 401K PLAN","001","1998-01-01","FRANK V. CALABA, A LAW CORPORATION",,,"10 UNIVERSAL CITY PLZ FL 20",,"UNIVERSAL CITY","CA","916081074",,,,,,,,,,,,,,,,,,"954666467","8187532413","541110","FRANK V. CALABA, A LAW CORPORATION",,"10 UNIVERSAL CITY PLZ FL 20",,"UNIVERSAL CITY","CA","916081074",,,,,,,"954666467","8187532413",,,,"2011-09-09T16:17:04-0500","FRANK V. CALABA",,,,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110915140610P040019967058001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-LJ (SELECT LARGE CAP VALUE)","057",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-15T14:01:12-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915140630P040133981777001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-LL (SEL BLUE CHIP GR II)","058",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-15T14:02:06-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110909134023P040019383074001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMS, INC. TAX DEFERRED RETIREMENT BENEFIT PLAN","001","1998-01-01","ADVERTISERS MAILING SERVICE, INC.",,,"16105 GUNDRY AVE.",,"PARAMOUNT","CA","907234830",,,,,,,,,,,,,,,,,,"952682507","5626346484","541800","ADVERTISERS MAILING SERVICE, INC.",,"16105 GUNDRY AVE.",,"PARAMOUNT","CA","907234830",,,,,,,"952682507","5626346484",,,,"2011-09-09T13:39:51-0500","SHEILA HESTER","2011-09-09T13:39:51-0500","SHEILA HESTER",,,68,0,0,67,67,0,67,67,0,,"2E2H2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915123416P040133937857001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-H5 (RETIRESMART 2050)","085",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-15T12:33:32-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915145843P040043153863001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-UW (LIFEPOINTS 2035 STRATEGY)","154",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-15T14:58:25-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110909154606P030127215601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUZUKI 401(K) RETIREMENT PLAN","002","1989-04-01","AMERICAN SUZUKI MOTOR CORPORATION, INC.",,,"3251 E IMPERIAL HIGHWAY",,"BREA","CA","928216722",,,,,,,,,,,,,,,,,,"930928739","7149967040","423100","AMERICAN SUZUKI MOTOR CORPORATION, INC.",,"3251 E IMPERIAL HIGHWAY",,"BREA","CA","928216722",,,,,,,"930928739","7149967040",,,,"2011-09-09T15:43:04-0500","MARTHA BARRERA",,,,,754,527,0,150,677,0,677,561,27,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110915085600P030019156754004","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"SOUTHLAND TRUCK GROUP, LLC EMPLOYEE BENEFIT PLAN & TRUST","501","2010-01-01","SOUTHLAND TRUCK GROUP, L.L.C.",,,"P O BOX 1450",,"GRAY","LA","70359",,,,,,,"3699 WEST PARK AVENUE",,"GRAY","LA","70359",,,,,,,"261394085","9858763000","484120","SOUTHLAND TRUCK GROUP, L.L.C.",,"P O BOX 1450",,"GRAY","LA","70359",,,,,,,"261394085","9858763000",,,,"2011-09-14T08:52:29-0500","RONDA REILLY",,,,,143,120,,,120,,,,,,,"4A4Q","1",,"1",,"1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915154620P040019977266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALEXANDER S. FLORES, DMD, INC. PROFIT SHARING PLAN AND TRUST","001","2009-01-01","ALEXANDER SANTOS FLORES, DMD, INC.",,,"10454 ARTESIA BLVD.","SUITE C","BELLFLOWER","CA","90706",,,,,,,,,,,,,,,,,,"330917801","5628814604","621210","ALEXANDER SANTOS FLORES, DMD, INC.",,"10454 ARTESIA BLVD.","SUITE C","BELLFLOWER","CA","90706",,,,,,,"330917801","5628814604",,,,"2011-09-15T15:46:18-0500","ALEXANDER S. FLORES, DMD",,,,,4,4,0,0,4,0,4,4,0,,"2A2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110914172033P040133459761001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"GENERAL STEAMSHIP PROFIT SHARING & RETIREMENT SAVINGS PLAN","004","1983-01-01","GENERAL STEAMSHIP AGENCIES, INC.",,,"575 REDWOOD HWY STE 200",,"MILL VALLEY","CA","949413007",,,,,,,,,,,,,,,,,,"943169159","4153895243","483000","GENERAL STEAMSHIP AGENCIES, INC.",,"575 REDWOOD HWY STE 200",,"MILL VALLEY","CA","949413007",,,,,,,"943169159","4153895243",,,,"2011-09-14T17:03:45-0500","JANIS MAHONEY",,,,,130,91,0,27,118,0,118,114,0,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110909102807P040587439760001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EARL C CHESTER JR MD PA PENSION PLAN","001","1977-07-01","EARL C CHESTER JR MD PA",,,"115 S 15TH AVE",,"POCATELLO","ID","83201",,,,,,,"115 S 15TH AVE",,"POCATELLO","ID","83201",,,,,,,"820331732","2082322106","621111","EARL C CHESTER JR MD PA",,"115 S 15TH AVE",,"POCATELLO","ID","83201",,,,,,,"820331732","2082322106",,,,"2011-09-07T10:23:09-0500","CAROLYN CHESTER","2011-09-07T10:23:14-0500","CAROLYN CHESTER","2011-09-07T10:23:17-0500","CAROLYN CHESTER",7,3,,3,6,,6,,,,"2C",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110915102357P030608969696001","2005-10-01","2006-09-30","2",,"1","1","0","0","0","0","0","1","0",,"GROUP LONG TERM DISABILITY FOR EMPLOYEES OF ONGUARD INDUSTRIES, LLC","501","2001-11-13","ONGUARD INDUSTRIES, LLC",,,"1850 CLARK ROAD",,"HAVRE DE GRACE","MD","21078",,,,,,,"1850 CLARK ROAD",,"HAVRE DE GRACE","MD","21078",,,,,,,"522333843","4102722000","339900","ONGUARD INDUSTRIES, LLC",,"1850 CLARK ROAD",,"HAVRE DE GRACE","MD","21078",,,,,,,"522333843","4102722000",,,,"2011-09-15T10:23:36-0500","MARTIN DYMOWSKI",,,,,97,127,,,127,,127,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915134906P030019181458001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"GLOVIS ALABAMA 401(K) PLAN","001","2006-04-01","GLOVIS ALABAMA LLC",,,"300 HYUNDAI BLVD",,"MONTGOMERY","AL","361059616",,,,,,,,,,,,,,,,,,"432037591","3342442025","493100","GLOVIS ALABAMA LLC",,"300 HYUNDAI BLVD",,"MONTGOMERY","AL","361059616",,,,,,,"432037591","3342442025",,,,"2011-09-15T13:49:02-0500","JUSTIN JUNG","2011-09-15T13:49:02-0500","JUSTIN JUNG",,,172,174,0,4,178,0,178,98,13,,"2E2F2G2J2K2T3D3H",,"1",,,,"1",,,,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915163344P030130761377001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","0","0",,"ALPINE AIR INC (401K PROFIT SHARING PLAN AND TRUST","001","2006-01-01","ALPINE AIR, INC.",,,"6185 DEMAGGIO RD",,"JACKSONVILLE","FM","32244",,,,,,,"6185 DEMAGGIO RD",,"JACKSONVILLE","FM","32244",,,,,,,"201313769","9045095020","811310","ALPINE AIR, INC.",,"6185 DEMAGGIO RD",,"JACKSONVILLE","FM","32244",,,,,,,"201313769","9045095020",,,,"2011-09-15T16:33:17-0500","SAUNDRA JONES",,,,,3,0,0,0,0,0,0,0,0,0,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915165445P030130769073002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"CSM INTERNATIONAL INC 401(K) PROFIT SHARING PLAN AND TRUST","001","2000-01-01","CSM INTERNATIONAL INC",,,"1205 25TH STREET PLACE SE",,"HICKORY","NC","28602",,,,,,,"1205 25TH STREET PLACE SE",,"HICKORY","NC","28602",,,,,,,"562177743","8283250021","424990","CSM INTERNATIONAL INC",,"1205 25TH STREET PLACE SE",,"HICKORY","NC","28602",,,,,,,"562177743","8283250021",,,,"2011-09-15T12:20:39-0500","CHRISTOPHER MAYER",,,,,1,3,,,3,,3,3,,,"2E2F2G2J2R2T",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110914182605P030130233249001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"FREEMAN MOTORS HEALTH AND WELFARE PLAN","503","1996-01-01","FREEMAN MOTORS",,,"2875 CORBY AVENUE",,"SANTA ROSA","CA","95402",,,,,,,,,,,,,,,,,,"941542405","7075421791","441110","FREEMAN MOTORS",,"2875 CORBY AVENUE",,"SANTA ROSA","CA","95402",,,,,,,"941542405","7075421791",,,,"2011-09-14T18:25:17-0500","STEPHEN C FREEMAN",,,,,204,149,0,4,153,,,,,,,"4A4B4D4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110909121045P040130454577002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"OZINGA BROS., INC. DISABILITY BENEFITS PLAN","504","1992-01-01","OZINGA BROS., INC.",,,"19001 OLD LAGRANGE ROAD SUITE 300",,"MOKENA","IL","60448",,,,,,,,,,,,,,,,,,"362332999","7083264250","327300","OZINGA BROS., INC.",,"19001 OLD LAGRANGE ROAD SUITE 300",,"MOKENA","IL","60448",,,,,,,"362332999","7083264250",,,,"2011-09-30T10:57:25-0500","DONALD L VAN DYK","2011-09-30T10:57:25-0500","DONALD L VAN DYK",,,150,139,,,139,,,,,,,"4F4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110909150725P030018669266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARSAND, INC DBA CALIFORNIA CLOSETS 401(K) PLAN","002","2001-07-12","MARSAND INC. DBA CALIFORNIA CLOSETS ATTN WILLIAM M. BLACK",,,"21430 N 15TH LN STE 116",,"PHOENIX","AZ","85027",,,,,,,,,,,,,,,,,,"202907676","6234348888","337000","MARSAND INC. DBA CALIFORNIA CLOSETS ATTN WILLIAM M. BLACK",,"21430 N 15TH LN STE 116",,"PHOENIX","AZ","85027",,,,,,,"202907676","6234348888",,,,"2011-09-09T15:05:51-0500","WILLIAM BLACK",,,,,28,21,0,0,21,0,21,20,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110915141645P040604205504001","2010-01-01","2010-12-31","4","P","1","0","0","0","0","0","0","0","0",,"SIA-QF (COMMODITY RL RTN STRAT)","216",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-15T14:16:30-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915141920P040133986017001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","1","0","0","0",,"CATHOLIC FAMILY LIFE INS SALARY SAVINGS PLAN","002","1979-11-01","CATHOLIC FINANCIAL LIFE",,,"1100 WELLS STREET",,"MILWAUKEE","WI","53223",,,,,,,,,,,,,,,,,,"390201015","4142786583","524150","CATHOLIC FINANCIAL LIFE",,"1100 WELLS STREET",,"MILWAUKEE","WI","53223",,,,,,,"390201015","4142786583",,,,"2011-09-15T14:18:22-0500","JEFFREY TILLEY",,,,,137,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915183345P040019990402002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN CUMBELICH & ASSOCIATES INC DEFINED BENEFIT PLAN","002","2005-01-01","JOHN CUMBELICH & ASSOCIATES, INC",,,"1330 N BROADWAY SUITE 200A",,"WALNUT CREEK","CA","94596",,,,,,,,,,,,,,,,,,"680457851","9259355400","531210","JOHN CUMBELICH & ASSOCIATES INC",,"1330 N BROADWAY SUITE 200A",,"WALNUT CREEK","CA","94596",,,,,,,"680457851","9259355400",,,,"2011-09-15T18:10:23-0500","MANUEL P PINTO","2011-09-15T18:08:40-0500","MANUEL P PINTO",,,2,2,,,2,,2,,,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915150005P040134005217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ECLIPSE MOLD, INC TAX EFFICIENT SAVINGS PLAN","002","1990-01-01","ECLIPSE MOLD, INC",,,"23155 15 MILE ROAD",,"CLINTON TOWNSHIP","MI","48035",,,,,,,,,,,,,,,,,,"382169256","5867923320","326100","ECLIPSE MOLD, INC",,"23155 15 MILE ROAD",,"CLINTON TOWNSHIP","MI","48035",,,,,,,"382169256","5867923320",,,,"2011-09-15T14:59:54-0500","STEVE CRAPROTTA",,,,,120,101,0,16,117,1,118,60,0,,"2E2F2G2J2K3D2T2R",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915092008P030130573953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONSULTANTS IN WOMEN S HEALTH, PLLC 401(K) PLAN","001","1997-01-01","CONSULTANTS IN WOMEN S HEALTH, PLLC",,,"1210 ARION PKWY",,"SAN ANTONIO","TX","782162880",,,,,,,,,,,,,,,,,,"264333033","2103499300","621111","CONSULTANTS IN WOMEN S HEALTH, PLLC",,"1210 ARION PKWY",,"SAN ANTONIO","TX","782162880",,,,,,,"264333033","2103499300","INSTITUTE FOR WOMEN S HEALTH, P.L.L.C.","742768427","001","2011-09-15T09:18:37-0500","MARY JONES","2011-09-15T09:18:37-0500","MARY JONES",,,264,207,1,29,237,,237,237,8,,"2E2G2J2K2A2R2F",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915145304P040019971090001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"MARCHON EYEWEAR, INC. RETIREMENT SAVINGS PLAN","001","1991-03-01","MARCHON EYEWEAR, INC.",,,"265 SPAGNOLI ROAD",,"MELVILLE","NY","11747",,,,,,,,,,,,,,,,,,"112617364","6317552020","423990","MARCHON EYEWEAR, INC.",,"265 SPAGNOLI ROAD",,"MELVILLE","NY","11747",,,,,,,"112617364","6317552020",,,,"2011-09-15T14:52:38-0500","KATHLEEN MELITA",,,,,653,0,0,0,0,0,0,0,6,,"2E2F2G2J2K3H2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915120823P030130646529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"GTECH CORPORATION LONG TERM DISABILITY PLAN","501","1981-06-01","GTECH CORPORATION",,,"10 MEMORIAL BLVD",,"PROVIDENCE","RI","02903",,,,,,,"10 MEMORIAL BLVD",,"PROVIDENCE","RI","02903",,,,,,,"050389840","4013921000","541990","GTECH CORPORATION",,"10 MEMORIAL BLVD",,"PROVIDENCE","RI","02903",,,,,,,"050389840","4013921000",,,,"2011-09-14T14:48:20-0500","LEO PERRONE","2011-09-15T11:58:09-0500","MARCIA MULLIN",,,3042,3107,,,3107,,3107,,,,,"4B4F4H4L","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915131517P040043130119001","2010-01-01","2010-12-31","4","P","1","0","0","0","0","0","0","0","0",,"SIA-JG (LARGE-CAP GROWTH)","196",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-15T13:14:18-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915151134P040134011345001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-YB (SEL STRAT BAL)","240",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-15T15:10:32-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915094344P040133850785010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ARMC HEALTH CARE PLAN SPONSORED BY ARMC HEALTH CARE","505","1986-10-01","ARMC HEALTH CARE",,,"P.O. BOX 202",,"BURLINGTON","NC","272160202",,,,,,,"1240 HUFFMAN MILL ROAD",,"BURLINGTON","NC","272160202",,,,,,,"581681363","3365387671","622000","ARMC HEALTH CARE","GWYNNE WARREN","PO BOX 202",,"BURLINGTON","NC","27216",,,,,,,"581681363","3365387671",,,,"2011-08-15T07:32:55-0500","GWYNNE WARREN",,,,,1436,1575,17,,1592,,,,,,,"4A4D","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915094344P040133850785006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ANTHONY WAYNE SERVICES GROUP MEDICAL SERVICES PLAN","501","1996-01-01","A.W. HOLDINGS, LLC.","AWS",,"8515 BLUFFTON RD.",,"FORT WAYNE","IN","46809",,,,,,,,,,,,,,,,,,"208906852","2607446145","624310","A.W. HOLDINGS, LLC.",,"8515 BLUFFTON RD.",,"FORT WAYNE","IN","46809",,,,,,,"208906852","2607446145",,,,"2011-09-07T09:53:21-0500","MARK T. FLEGGE",,,,,1234,1261,,,1261,,,,,,,"4A4B4D4H4L","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110909085300P030127032017001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"EMPIRE AMBULANCE SERVICE RETIREMENT PLAN","001","1993-10-01","TROY AMBULANCE SERVICE, INC.",,,"130 REMSEN STREET, 3RD FLOOR",,"COHOES","NY","12047",,,,,,,,,,,,,,,,,,"141563519","5182357670","621900","TROY AMBULANCE SERVICE, INC.",,"130 REMSEN STREET, 3RD FLOOR",,"COHOES","NY","12047",,,,,,,"141563519","5182357670",,,,"2011-09-09T08:42:16-0500","CHRISTOPHER ALVARO","2011-09-09T08:42:16-0500","CHRISTOPHER ALVARO",,,119,115,0,4,119,0,119,52,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915093513P040603587040001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PACIFIC INSTITUTE FOR RESEARCH AND EVALUATION INC. PROFIT SHARING PLAN AND TRUST","004","2000-01-01","PACIFIC INSTITUTE FOR RESEARCH AND EVALUATION INC.",,,"11720 BELTSVILLE DRIVE","SUITE 900","CALVERTON","MD","207053102",,,,,,,,,,,,,,,,,,"942243283","3017552700","813000","PACIFIC INSTITUTE FOR RESEARCH AND EVALUATION INC.",,"11720 BELTSVILLE DRIVE","SUITE 900","CALVERTON","MD","207053102",,,,,,,"942243283","3017552700",,,,"2011-09-15T09:34:50-0500","GARY KLIG","2011-09-15T09:32:02-0500","GARY KLIG",,,482,222,,265,487,,487,487,18,,"2E2F2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","4","1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915135109P040133974993001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-KO (RETIREMENT 2025)","160",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-15T13:50:29-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915153716P040604383088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACK GIAMBALVO MOTOR CO., INC. PROFIT SHARING PLAN","001","1986-12-01","JACK GIAMBALVO MOTOR CO., INC.",,,"1390 EDEN ROAD",,"YORK","PA","17402",,,,,,,,,,,,,,,,,,"232207372","7178461821","441110","JACK GIAMBALVO MOTOR CO., INC.",,"1390 EDEN ROAD",,"YORK","PA","17402",,,,,,,"232207372","7178461821",,,,"2011-09-15T15:36:17-0500","DONALD J. DUSICH",,,,,145,143,1,6,150,0,150,109,7,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110916115319P040134579681001","2010-09-01","2011-02-28","2",,"0","0","1","1","0","0","0","0","0",,"COMMUNITY RESEARCH FOUNDATION FLEXIBLE BENEFITS PLAN","501","1992-07-01","COMMUNITY RESEARCH FOUNDATION",,,"1202 MORENA BLVD., SUITE 300",,"SAN DIEGO","CA","92110",,,,,,,,,,,,,,,,,,"953248148","6192750822","621420","COMMUNITY RESEARCH FOUNDATION",,"1202 MORENA BLVD., SUITE 300",,"SAN DIEGO","CA","92110",,,,,,,"953248148","6192750822",,,,"2011-09-16T11:33:04-0500","BOB MARCHETTI",,,,,140,0,0,0,0,,,,,,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110909155938P030003746307001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"US PHARMACEUTICAL GROUP, LLC LONG TERM DISABILITY","505","2003-05-01","US PHARMACEUTICAL GROUP, LLC",,,"13630 NW 8TH STREET, SUITE 210",,"SUNRISE","FL","33325",,,,,,,,,,,,,,,,,,"651122695","9549035063","423990","US PHARMACEUTICAL GROUP, LLC",,"13630 NW 8TH STREET, SUITE 210",,"SUNRISE","FL","33325",,,,,,,"651122695","9549035063",,,,"2011-09-09T15:58:42-0500","REGGIE HOLT",,,,,504,439,0,0,439,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110915135952P040133979281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HANDMARK, INC. EMPLOYEE BENEFIT PLAN","501","2003-01-01","HANDMARK, INC.",,,"909 WALNUT STREET, SUITE 400",,"KANSAS CITY","MO","64106",,,,,,,,,,,,,,,,,,"431891522","8162682935","511210","HANDMARK, INC.",,"909 WALNUT STREET, SUITE 400",,"KANSAS CITY","MO","64106",,,,,,,"431891522","8162682935",,,,"2011-09-15T13:59:27-0500","SCOTT SHARP",,,,,120,63,18,0,81,,,,,,,"4A4B4D4E4F4H4I4L4R","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110909143426P030041051351001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"REHABILITATIVE RESOURCES, INC. - HEALTH INSURANCE","503","2000-01-01","REHABILITATIVE RESOURCES, INC.",,"BONITA J. KEEFE-LAYDEN, CEO","P.O. BOX 38 - 1 PICKER ROAD",,"STURBRIDGE","MA","01566",,,,,,,"P.O. BOX 38 - 1 PICKER ROAD",,"STURBRIDGE","MA","01566",,,,,,,"042593315","5083478181","611000","REHABILITATIVE RESOURCES, INC.","BONITA J. KEEFE-LAYDEN, CEO","P.O. BOX 38 - 1 PICKER ROAD",,"STURBRIDGE","MA","01566",,,,,,,"042593315","5083478181",,,,"2011-09-02T16:16:55-0500","BONITA J. KEEFE-LAYDEN",,,,,145,165,0,,165,,165,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110915075649P040133794785001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,"1",,,,"IEWC CORP. EMPLOYEE STOCK OWNERSHIP PLAN","001","1968-01-01","IEWC CORP.",,,"5001 S TOWNE DR",,"NEW BERLIN","WI","531517956",,,,,,,,,,,,,,,,,,"390987362","2627822255","423600","IEWC CORP.",,"5001 S TOWNE DR",,"NEW BERLIN","WI","531517956",,,,,,,"390987362","2627822255","INDUSTRIAL ELECTRIC WIRE & CABLE","390987362","001","2011-09-15T07:56:45-0500","KYLE SPADER","2011-09-15T07:56:45-0500","KYLE SPADER",,,267,199,12,38,249,0,249,249,10,,"2P2Q",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110915142852P030130705297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J. ALEXANDERS CORPORATION SAVINGS INCENTIVE AND SALARY DEFERRAL PLAN","001","1985-01-01","J. ALEXANDERS CORPORATION",,,"3401 WEST END AVENUE, SUITE 260",,"NASHVILLE","TN","372036862",,,,,,,,,,,,,,,,,,"620854056","6152691900","722110","J. ALEXANDERS CORPORATION",,"3401 WEST END AVENUE, SUITE 260",,"NASHVILLE","TN","372036862",,,,,,,"620854056","6152691900",,,,"2011-09-15T14:27:52-0500","MARK PARKEY",,,,,1588,1298,0,43,1341,0,1341,255,22,,"2E2F2G2J2K3D3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915142953P040133990833001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-SK (SELECT FUNDAMENTAL VAL)","174",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"041590850","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"041590850","4137443351",,,,,,,,"2011-09-15T14:29:20-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915144500P040133997665001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SIA-VY (CAP WORLD GRWTH AND INCM)","091",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-15T14:44:36-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-15",,"Filed with authorized/valid electronic signature", "20110915211927P030130891313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"CIBT INC. HEALTH AND DENTAL INSURANCE PLAN","502","2005-01-01","CIBT INC.",,,"1650 TYSONS BLVD #1350",,"MCLEAN","VA","22102",,,,,,,"1650 TYSONS BLVD #1350",,"MCLEAN","VA","22102",,,,,,,"521631723","7039031400","561490","CIBT INC.",,"1650 TYSONS BLVD #1350",,"MCLEAN","VA","22102",,,,,,,"521631723","7039031400",,,,"2011-09-15T21:18:04-0500","WILLIAM LOESEL",,,,,302,314,,,314,,314,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110909134930P030127161089001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ADVANCED SCIENCES AND TECHNOLOGIES, LLC 401(K) PLAN","001","2006-05-26","ADVANCED SCIENCES AND TECHNOLOGIES, LLC",,,"20 E TAUNTON","STE 301","BERLIN","NJ","08009",,,,,,,"20 E TAUNTON","STE 301","BERLIN","NJ","08009",,,,,,,"204068099","8567199001","541330","ADVANCED SCIENCES AND TECHNOLOGIES, LLC",,"20 E TAUNTON","STE 301","BERLIN","NJ","08009",,,,,,,"204068099","8567199001",,,,"2011-09-09T13:48:38-0500","BERNARD DEANNUNTIS",,,,,80,78,0,18,96,0,96,87,7,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-09","Filed with authorized/valid electronic signature",, "20110915080239P040133799425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEULION, INC 401K PROFIT SHARING PLAN","001","2004-01-01","NEULION, INC",,,"1600 OLD COUNTRY RD",,"PLAINVIEW","NY","118035038",,,,,,,,,,,,,,,,,,"200481604","5162496565","541511","ROY REICHBACH",,"1600 OLD COUNTRY RD",,"PLAINVIEW","NY","118035038",,,,,,,"200481604","5162496565",,,,"2011-09-15T07:59:37-0500","ROY REICHBACH",,,,,265,158,84,0,242,0,242,216,1,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110915181024P040134105105001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"VRC MANAGEMENT, INC. HEALTH AND WELFARE PLAN","501","2003-01-01","VRC MANAGEMENT, INC.",,,"405 TALLMADGE ROAD",,"CUYAHOGA FALLS","OH","44221",,,,,,,,,,,,,,,,,,"340648820","3309206555","623000","VRC MANAGEMENT, INC.",,"405 TALLMADGE ROAD",,"CUYAHOGA FALLS","OH","44221",,,,,,,"340648820","3309206555",,,,"2011-09-15T18:10:04-0500","MICHAEL J FRANCUS",,,,,761,716,0,0,716,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-09-15","Filed with authorized/valid electronic signature",, "20110914123010P030606427792001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WOODLAND BLINDS, L.P. 401(K) PROFIT SHARING PLAN","002","1985-01-01","WOODLAND BLINDS, L.P.",,,"6120 GRIGGS ROAD",,"HOUSTON","TX","77023",,,,,,,,,,,,,,,,,,"953589004","7136402885","423200","WOODLAND BLINDS, L.P.",,"6120 GRIGGS ROAD",,"HOUSTON","TX","77023",,,,,,,"953589004","7136402885",,,,"2011-09-14T12:29:19-0500","DEBBIE ALEXANDER",,,,,138,12,0,46,58,0,58,58,0,,"2E2G2J2F3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914124455P030130071985003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE WHITE LAW FIRM PLC 401(K) PLAN FKA WHITE & JOHNSON, PC 401(K) PROFIT SHARING PLAN","003","1991-01-01","THE WHITE LAW FIRM, PC",,,"101 SECOND STREET SE",,"CEDAR RAPIDS","IA","52403",,,,,,,"101 SECOND STREET SE",,"CEDAR RAPIDS","IA","52403",,,,,,,"300509457","3193640900","541110","THE WHITE LAW FIRM, PC",,"101 SECOND STREET SE",,"CEDAR RAPIDS","IA","52403",,,,,,,"300509457","3193640900",,,,"2011-09-08T03:20:15-0500","STEVE WHITE","2011-09-08T03:20:15-0500","STEVE WHITE",,,4,2,,,2,,2,2,,,"2E2F2H2J2K2R3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914073556P030042010647001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCANA CORPORATION DEATH BENEFIT PLAN","530","1984-10-01","SCANA CORPORATION",,,"220 OPERATION WAY",,"CAYCE","SC","29033",,,,,,,"100 SCANA PARKWAY",,"CAYCE","SC","29033",,,,,,,"570784499","8032179764","221100","JAMES P HUDSON",,"220 OPERATION WAY",,"CAYCE","SC","29033",,,,,,,"570784499","8032179764",,,,"2011-09-13T14:23:50-0500","JAMES P HUDSON, VP HR","2011-09-13T14:23:50-0500","JAMES P HUDSON, VP HR",,,234,317,,,317,,,,,,,"4L","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914133134P030019088034001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARION DENTAL GROUP RETIREMENT PLAN & TRUST","001","1987-09-01","JAMES E. EDWARDS, D.D.S., P.A.",,,"9277 S.E. MARICAMP RD.",,"OCALA","FL","34472",,,,,,,,,,,,,,,,,,"592149440","3526873374","621210","JAMES E. EDWARDS, D.D.S., P.A.",,"9277 S.E. MARICAMP RD.",,"OCALA","FL","34472",,,,,,,"592149440","3526873374",,,,"2011-09-14T13:31:26-0500","TIMOTHY K. HOPE, D.M.D.",,,,,40,26,0,12,38,0,38,38,5,,"2A2E3H2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914085115P030605967472001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOODWILL INDUSTRIES OF UPPER SC FLEXABLE BENEFITS PLAN","501","1997-06-01","GOODWILL INDUSTRIES OF UPSTATE/MIDLANDS SC, INC","GOODWILL INDUSTRIES OF UPPER SC, INC","ARTHUR HODGE","115 HAYWOOD ROAD",,"GREENVILLE","SC","29607",,,,,,,"115 HAYWOOD ROAD",,"GREENVILLE","SC","29607",,,,,,,"570564001","8643510139","813000","GOODWILL INDUSTRIES OF UPSTATE/MIDLANDS SC, INC","ARTHUR HODGE","115 HAYWOOD ROAD",,"GREENVILLE","SC","29607",,,,,,,"570564001","8643510139",,,,"2011-09-14T08:50:37-0500","ARTHUR HODGE",,,,,336,362,,,362,,362,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914152725P040133405153001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ADP/SSGA S&P 500R IDX SL FD ZF1N","005",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"046680613","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-14T15:25:52-0500","MATTHEW A. BOYER",,,"2011-09-14T15:25:52-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110914100617P030606126064001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CALLEA ELECTRIC INC 401K PROFIT SHARING PLAN & TRUST","001","1997-01-01","CALLEA ELECTRIC INC",,,"40 AJAX RD",,"ROCHESTER","NY","146243102",,,,,,,,,,,,,,,,,,"161442603","5857308400","238210","CALLEA ELECTRIC INC",,"40 AJAX RD",,"ROCHESTER","NY","146243102",,,,,,,"161442603","5857308400",,,,"2011-09-14T10:05:00-0500","CARLO CALLEA",,,,,34,25,0,2,27,0,27,19,2,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914100659P030129993505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"H. EDWARD PARIS, DDS, PC PROFIT SHARING PLAN","002","2009-01-01","H. EDWARD PARIS, DDS, PC",,,"1821 WHITTLESEY RD STE 100",,"COLUMBUS","GA","319049263",,,,,,,,,,,,,,,,,,"582096681","7063243636","621210","H. EDWARD PARIS, DDS, PC",,"1821 WHITTLESEY RD STE 100",,"COLUMBUS","GA","319049263",,,,,,,"582096681","7063243636",,,,"2011-09-14T09:55:28-0500","H. EDWARD PARIS, JR.",,,,,4,4,0,1,5,0,5,5,,,"2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914103013P030130006401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TROPIC SUPPLY, INC.","502","2002-01-01","TROPIC SUPPLY, INC.",,,"151 NE 179TH STREET",,"MIAMI","FL","331621016",,,,,,,,,,,,,,,,,,"591452203","3056527717","423700","TROPIC SUPPLY, INC.",,"151 NE 179TH STREET",,"MIAMI","FL","331621016",,,,,,,"591452203","3056527717",,,,"2011-09-14T10:29:04-0500","BRIGITTE REYES",,,,,169,168,1,0,169,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914123156P030130065153001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"NORCOM, INC. WELFARE BENEFIT PLAN","501","1991-05-01","NORCOM, INC.",,,"200 WILSON ROAD",,"GRIFFIN","GA","30223",,,,,,,,,,,,,,,,,,"042632925","7704475525","424100","NORCOM, INC.",,"200 WILSON ROAD",,"GRIFFIN","GA","30223",,,,,,,"042632925","7704475525",,,,"2011-09-14T12:24:03-0500","EVAN STITT",,,,,178,159,0,0,159,,,,,,,"4A4B4D4H4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914133311P040133355265006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN K LEE DDS MONEY PURCHASE PLAN","002","1992-01-01","JOHN K LEE, DDS",,"JOHN K LEE","7501 N FRESNO ST SUITE 101",,"FRESNO","CA","937201319",,,,,,,,,,,,,,,,,,"770172241","5594399621","621210","JOHN K LEE DDS","JOHN K. LEE","7501 N FRESNO ST SUITE 101",,"FRESNO","CA","937201319",,,,,,,"770172241","5594399621",,,,"2011-09-14T13:02:47-0500","JOHN K LEE DDS",,,,,2,2,,,2,,2,,,,"3B2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914121719P040133315457006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"V.E. FALKENHAIN, O.D. & ASSOCIATES, INC. PROFIT SHARING PLAN","001","1976-07-01","V.E. FALKENHAIN, O.D. & ASSOCIATES, INC.",,"VERNON E. FALKENHAIN","1001 PINE STREET",,"ROLLA","MO","65401",,,,,,,"1001 PINE STREET",,"ROLLA","MO","65401",,,,,,,"431078918","5733641773","621320","V.E. FALKENHAIN, O.D. & ASSOCIATES, INC.","VERNON E. FALKENHAIN","1001 PINE STREET",,"ROLLA","MO","65401",,,,,,,"431078918","5733641773",,,,"2011-09-14T06:57:56-0500","VERNON E. FALKENHAIN","2011-09-14T06:57:56-0500","VERNON E. FALKENHAIN",,,6,4,,1,5,,5,5,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914101548P030129997969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHWESTERN MEDICAL CENTER, INC. 403(B) PLAN","003","1995-11-01","NORTHWESTERN MEDICAL CENTER, INC.",,,"133 FAIRFIELD ST",,"SAINT ALBANS","VT","05478",,,,,,,,,,,,,,,,,,"030266986","8025241034","622000","NORTHWESTERN MEDICAL CENTER, INC.",,"133 FAIRFIELD ST",,"SAINT ALBANS","VT","05478",,,,,,,"030266986","8025241034",,,,"2011-09-14T10:15:40-0500","TED SIROTTA",,,,,644,557,4,85,646,0,646,457,0,,"2L2M2G2T","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914153017P040133406593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"BOISE ORAL AND MAXILLOFACIAL SURGERY PA EMPLOYEE PROFIT SHARING PLAN","001","1982-01-01","BOISE ORAL AND MAXILLOFACIAL SURGERY PA",,"KEVIN KEMPERS","6363 W EMERALD ST #103",,"BOISE","ID","83704",,,,,,,"6363 W EMERALD ST #103",,"BOISE","ID","83704",,,,,,,"820368332","2083764550","621210","BOISE ORAL AND MAXILLOFACIAL SURGERY PA","KEVIN KEMPERS","6363 W EMERALD ST #103",,"BOISE","ID","83704",,,,,,,"820368332","2083764550",,,,"2011-09-14T15:28:11-0500","KIM PECK",,,,,19,12,,7,19,,19,19,1,,"2A2E2F2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914154547P040019873778001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"BUCCANEERS LIMITED PARTNERSHIP LIFE AND DISABILITY INSURANCE PLAN","501","2000-07-01","BUCCANEERS LIMITED PARTNERSHIP",,,"ONE BUCCANEER PLACE",,"TAMPA","FL","33607",,,,,,,,,,,,,,,,,,"650573539","8138702700","711210","BUCCANEERS LIMITED PARTNERSHIP",,"ONE BUCCANEER PLACE",,"TAMPA","FL","33607",,,,,,,"650573539","8138702700",,,,"2011-09-14T15:36:07-0500","RAENI WARE",,,,,176,165,0,0,165,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914125015P030130075121001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"DINI COMMUNICATIONS 401(K) PLAN","001","2005-12-02","DINI COMMUNICATIONS",,,"344 RARITAN CENTER PKWY",,"EDISON","NJ","08837",,,,,,,"344 RARITAN CENTER PKWY",,"EDISON","NJ","08837",,,,,,,"223604477","7322254514","541512","DINI COMMUNICATIONS",,"344 RARITAN CENTER PKWY",,"EDISON","NJ","08837",,,,,,,"223604477","7322254514",,,,"2011-09-14T12:49:45-0500","DANUSHKA KARUNATILAKA",,,,,20,18,0,2,20,0,20,14,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914132415P030130095665001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","1","FORM 7004","TERMINATION ALLOWANCE PLAN","550","1986-01-01","AMPCO-PITTSBURGH CORPORATION, BENEFITS PROGRAM",,,"600 GRANT STREET, SUITE 4600",,"PITTSBURGH","PA","15219",,,,,,,"600 GRANT STREET, SUITE 4600",,"PITTSBURGH","PA","15219",,,,,,,"251117717","4124564400","331110","ROSE HOOVER","AMPCO-PITTSBURGH CORPORATION, BENEFITS PROGRAM","600 GRANT STREET, SUITE 4600",,"PITTSBURGH","PA","15219",,,,,,,"251117717","4124564400",,,,"2011-09-14T13:23:16-0500","ROSE HOOVER",,,,,363,375,0,0,375,0,375,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914160323P030130173601003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TOTS & TEENS HEALTH ASSOCIATES SC PROFIT SHARING PLAN & TRUST","001","1990-01-01","TOTS & TEENS HEALTH ASSOCIATES SC",,,"2500 W HIGGINS RD STE 480",,"HOFFMAN ESTATES","IL","60169",,,,,,,,,,,,,,,,,,"363812277","8478437212","621111","TOTS & TEENS HEALTH ASSOCIATES SC",,"2500 W HIGGINS RD STE 480",,"HOFFMAN ESTATES","IL","60169",,,,,,,"363812277","8478437212",,,,"2011-09-14T15:26:17-0500","HAJRA POONAWALLA",,,,,3,4,,,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914132739P030606545888001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KINGSLEY AND KINGSLEY PROF CORP PROFIT SHARING PLAN","001","2004-03-01","KINGSLEY AND KINGSLEY PROF CORP",,,"16133 VENTURA BLVD STE 1200",,"ENCINO","CA","914362416",,,,,,,,,,,,,,,,,,"953470144","8189908300","541110","KINGSLEY AND KINGSLEY PROF CORP",,"16133 VENTURA BLVD STE 1200",,"ENCINO","CA","914362416",,,,,,,"953470144","8189908300",,,,"2011-09-14T13:27:38-0500","GEORGE R KINGSLEY",,,,,16,13,0,3,16,0,16,16,4,,"2E2A3D","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914093500P030129980737001","2010-03-01","2011-02-28","2",,"0","1","0","0","0","0","0","0","0",,"STONES RIVER HOSPITAL HEALTH AND WELFARE PLAN","501","1999-01-01","STONES RIVER HOSPITAL",,,"324 DOOLITTLE ROAD",,"WOODBURY","TN","37190",,,,,,,,,,,,,,,,,,"350472300","6155634001","622000","STONES RIVER HOSPITAL",,"324 DOOLITTLE ROAD",,"WOODBURY","TN","37190",,,,,,,"350472300","6155634001",,,,"2011-09-14T09:34:04-0500","CAROLYN SCHNEIDER",,,,,232,233,0,0,233,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914145120P040133388641001","2010-02-16","2011-02-15","2",,"0","1","0","0","0","0","0","0","0",,"MILLER WASTE MILLS INC GROUP 24 HOUR AD&D","504","1981-02-16","MILLER WASTE MILLS, INC.",,,"580 EAST FRONT STREET","P.O. BOX 5439","WINONA","MN","55987",,,,,,,,,,,,,,,,,,"410413230","5074546900","326100","MILLER WASTE MILLS, INC.",,"580 EAST FRONT STREET","P.O. BOX 5439","WINONA","MN","55987",,,,,,,"410413230","5074546900",,,,"2011-09-14T14:49:48-0500","JONATHAN MILLER",,,,,193,183,0,0,183,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914145210P030019094114001","2010-01-04","2010-12-31","2",,"1","1","0","1","0","1","0","0","0",,"CIAO WOOD FIRED PIZZA & TRATTORIA, INC. 401(K) PLAN","001","2010-01-04","CIAO WOOD FIRED PIZZA & TRATTORIA, INC.",,,"1901 SE 13TH STREET",,"CAPE CORAL","FL","33990",,,,,,,,,,,,,,,,,,"271587375","2396739246","722210","CIAO WOOD FIRED PIZZA & TRATTORIA, INC.",,"1901 SE 13TH STREET",,"CAPE CORAL","FL","33990",,,,,,,"271587375","2396739246",,,,"2011-09-12T15:53:14-0500","CHRISTOPHER BACUS","2011-09-12T15:53:14-0500","CHRISTOPHER BACUS",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914095945P030129989633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RIVKIN RADLER LLP LONG TERM DISABILITY PLAN","509","1990-08-01","RIVKIN RADLER LLP",,,"926 RXR PLAZA",,"UNIONDALE","NY","115560926",,,,,,,,,,,,,,,,,,"111853927","5163573000","541110","RIVKIN RADLER LLP",,"926 RXR PLAZA",,"UNIONDALE","NY","115560926",,,,,,,"111853927","5163573000",,,,"2011-09-14T09:58:29-0500","PAUL CZELADNICKI","2011-09-14T09:58:29-0500","WILLIAM M. SAVINO",,,265,240,2,0,242,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914100131P030129990593001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CBRE OKLAHOMA 401(K) PLAN","001","2009-01-01","COMMERCIAL REALTY, LLC",,,"1401 S. BOULDER AVE., STE. 200",,"TULSA","OK","74119",,,,,,,,,,,,,,,,,,"731542132","9183927286","531210","COMMERCIAL REALTY, LLC",,"1401 S. BOULDER AVE., STE. 200",,"TULSA","OK","74119",,,,,,,"731542132","9183927286",,,,"2011-09-14T09:24:00-0500","LORI BRYANT",,,,,119,89,0,14,103,0,103,78,0,,"2J2K2F2G2T3D2E3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914140831P040133372417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PALM RESTAURANT EMPLOYEE BENEFIT TRUST","501","1984-02-01","PALM RESTAURANT GROUP",,"PALM MANAGEMENT CORP.","1730 RHODE ISLAND AVENUE NW","SUITE 900","WASHINGTON","DC","200363113",,,,,,,"1730 RHODE ISLAND AVENUE NW","SUITE 900","WASHINGTON","DC","200363113",,,,,,,"222756492","2027757256","722110","CIGNA",,"8505 E. ORCHARD ROAD",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"060303370","3037298400","GREAT WEST HEALTHCARE NOW PART OF CIGNA","840467907",,"2011-09-14T14:06:47-0500","JAMES LONGO",,,,,872,880,11,,891,,891,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914152001P040133401137001","2010-01-01","2010-11-30","2",,"0","0","1","1",,"1",,,,,"LIFESIZE COMMUNICATIONS, INC. 401K PLAN","001","2003-01-01","LIFESIZE COMMUNICATIONS, INC.",,,"SUITE 100","BUILDING 2","AUSTIN","TX","78746",,,,,,,"1601 S. MOPAC EXPRESSWAY","BUILDING 2","AUSTIN","TX","78746",,,,,,,"061680606","5123479300","334310","LIFESIZE COMMUNICATIONS, INC.",,"SUITE 100","BUILDING 2","AUSTIN","TX","78746",,,,,,,"061680606","5123479300",,,,"2011-09-14T15:14:47-0500","JENNIFER SNODDY",,,,,258,0,0,0,0,0,0,0,18,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914114320P030019077954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SECURITY STATE CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","002","1989-01-01","SECURITY STATE CORPORATION",,,"P.O. BOX 1050",,"CENTRALIA","WA","98531",,,,,,,"1930 SOUTH GOLD STREET",,"CENTRALIA","WA","98531",,,,,,,"912011590","3603302790","551111","SECURITY STATE CORPORATION",,"P.O. BOX 1050",,"CENTRALIA","WA","98531",,,,,,,"912011590","3603302790",,,,"2011-09-14T11:32:55-0500","CHERI L. WILDER","2011-09-14T11:32:55-0500","CHERI L. WILDER",,,148,106,12,18,136,1,137,136,9,,"2P2I2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914160427P030130174081001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SIERRA CYBERNETICS INC. EMPLOYEE SAVINGS AND RETIREMENT PLAN","001","1989-05-01","SIERRA CYBERNETICS, INC.",,,"5140 E LA PALMA AVE.","SUITE 201","ANAHEIM HILLS","CA","928072069",,,,,,,"5140 E LA PALMA AVE.","SUITE 201","ANAHEIM HILLS","CA","928072069",,,,,,,"953665407","7149211212","541330","SIERRA CYBERNETICS, INC.",,"5140 E LA PALMA AVE.","SUITE 201","ANAHEIM HILLS","CA","928072069",,,,,,,"953665407","7149211212",,,,"2011-09-14T15:48:25-0500","ALLAN DURDELLA","2011-09-14T15:56:40-0500","CARL LAPLANTE",,,26,11,0,12,23,0,23,18,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914162348P030130184225001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","1","0","0",,"HEDGESERV HEALTH AND WELFARE PLAN","501","2010-01-01","HEDGESERV CORPORATION",,,"1251 AVENUE OF THE AMERICAS,","21ST FLOOR","NEW YORK","NY","10020",,,,,,,,,,,,,,,,,,"262417221","2129203528","541519","HEDGESERV CORPORATION",,"1251 AVENUE OF THE AMERICAS,","21ST FLOOR","NEW YORK","NY","10020",,,,,,,"262417221","2129203528",,,,"2011-09-14T16:23:24-0500","LAURIE FREDERICKS",,,,,115,109,9,0,118,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914124044P030130069121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ULTRATEC, INC. 401K PLAN","002","1997-01-01","ULTRATEC, INC.",,,"450 SCIENCE DR.",,"MADISON","WI","537111169",,,,,,,,,,,,,,,,,,"391357022","6082385400","335310","ULTRATEC, INC.",,"450 SCIENCE DR.",,"MADISON","WI","537111169",,,,,,,"391357022","6082385400",,,,"2011-09-14T12:35:36-0500","ELIZABETH DRESEN",,,,,679,627,0,21,648,0,648,199,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914083824P030003830083001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","1","0","0",,"CH ROBINSON CO GROUP LONG TERM DISABILITY PLAN","502","1974-06-01","C.H. ROBINSON COMPANY",,"TROY RENNER","14701 CHARLSON ROAD",,"EDEN PRAIRIE","MN","55347",,,,,,,"14701 CHARLSON ROAD",,"EDEN PRAIRIE","MN","55347",,,,,,,"410680048","9529378500","488510","C.H. ROBINSON COMPANY","TROY RENNER","14701 CHARLSON ROAD",,"EDEN PRAIRIE","MN","55347",,,,,,,"410680048","9529378500",,,,"2011-09-14T08:36:38-0500","TROY RENNER",,,,,5000,5000,,,5000,,5000,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914071556P030019056850001","2010-01-01","2010-11-12","2",,"0","0","1","1","0","1","0","0","0",,"UNIVERSAL SYSTEMS & TECHNOLOGY, INC. EMPLOYEES 401(K) SAVINGS PLAN","001","1993-01-01","UNIVERSAL SYSTEMS & TECHNOLOGY, INC",,,"5870 TRINITY PARKWAY 400",,"CENTERVILLE","VA","201201970",,,,,,,,,,,,,,,,,,"521556292","7035029600","518210","UNIVERSAL SYSTEMS & TECHNOLOGY, INC",,"5870 TRINITY PARKWAY 400",,"CENTERVILLE","VA","201201970",,,,,,,"521556292","7035029600",,,,"2011-09-14T07:14:57-0500","DONALD REMSCH","2011-09-14T07:14:57-0500","DONALD REMSCH",,,596,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2S2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914160631P030130175105001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","1","0","0",,"WINTER PARK UROLOGY ASSOCIATES, P.A. HEALTH INSURANCE WELFARE BENEFIT PLAN","503","2010-01-01","WINTER PARK UROLOGY ASSOCIATES, P.A.",,,"1812 NORTH MILLS AVENUE",,"ORLANDO","FL","32803",,,,,,,,,,,,,,,,,,"591277954","4075995900","621111","WINTER PARK UROLOGY ASSOCIATES, P.A.",,"1812 NORTH MILLS AVENUE",,"ORLANDO","FL","32803",,,,,,,"591277954","4075995900",,,,"2011-09-14T16:06:21-0500","RAKESH C. PATEL, M.D.",,,,,103,118,,,118,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914091337P030019065442001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HARVIN CHOICE MEATS, INC. 401(K) RETIREMENT PLAN","002","2003-01-01","HARVIN CHOICE MEATS, INC.",,,"P.O. BOX 939",,"SUMTER","SC","29150",,,,,,,"300 MCCRAY MILLS RD.",,"SUMTER","SC","29150",,,,,,,"570194063","8037759367","424990","HARVIN CHOICE MEATS, INC.",,"P.O. BOX 939",,"SUMTER","SC","29150",,,,,,,"570194063","8037759367",,,,"2011-09-14T09:12:57-0500","SEP A. HARVIN, III",,,,,68,58,1,5,64,0,64,37,0,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914092334P040133242897002","2010-01-01","2010-12-31","2",,,,,,,,,"1",,,"LONGWOOD MANUFACTURING CORP. PROFIT SHARING PLAN","001","1975-04-01","LONGWOOD MANUFACTURING CORP.",,,"816 E. BALTIMORE PIKE",,"KENNETT SQUARE","PA","19348",,,,,,,"816 E. BALTIMORE PIKE",,"KENNETT SQUARE","PA","19348",,,,,,,"231745714","6104444200","333100","LONGWOOD MANUFACTURING CORP.",,"816 E. BALTIMORE PIKE",,"KENNETT SQUARE","PA","19348",,,,,,,"231745714","6104444200",,,,"2011-09-14T04:24:58-0500","TOM PIACENTINO","2011-09-13T04:24:58-0500","TOM PIACENTINO",,,14,14,,,14,,14,14,,,"2E",,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110914142320P040133378753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAMES R. RODERICK & ASSOCIATES, INC. SAFE HARBOR 401(K) NEW COMP PROFIT SHARING PLAN","001","2004-01-01","JAMES R. RODERICK & ASSOCIATES, INC.",,,"14250 NORTH 145 EAST AVENUE",,"COLLINSVILLE","OK","74021",,,,,,,,,,,,,,,,,,"731389706","9183717447","562000","JAMES R. RODERICK & ASSOCIATES, INC.",,"14250 NORTH 145 E. AVENUE",,"COLLINSVILLE","OK","74021",,,,,,,"731389706","9185999717",,,,"2011-09-14T14:22:00-0500","JAMES R. RODERICK",,,,,19,12,0,5,17,0,17,17,0,,"2A2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914145637P040019869938001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"VITEC SOLUTIONS, LLC 401(K) PLAN","001","2005-05-01","VITEC SOLUTIONS, LLC",,,"455 COMMERCE DRIVE","SUITE 3","AMHERST","NY","14228",,,,,,,"455 COMMERCE DRIVE","SUITE 3","AMHERST","NY","14228",,,,,,,"202309384","7162049200","541512","VITEC SOLUTIONS, LLC",,"455 COMMERCE DRIVE","SUITE 3","AMHERST","NY","14228",,,,,,,"202309384","7162049200",,,,"2011-09-14T14:56:17-0500","CHRISTY WYCKOFF",,,,,104,67,0,25,92,0,92,58,5,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914150516P040601521760001","2010-02-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"RTH SOLUTIONS, INC. PROFIT SHARING PLAN","001","2010-02-01","RTH SOLUTIONS, INC.",,,"1204 ODESSA DR",,"RICHARDSON","TX","75080",,,,,,,,,,,,,,,,,,"271814258","2147829932","541512","RTH SOLUTIONS, INC.",,"1204 ODESSA DR",,"RICHARDSON","TX","75080",,,,,,,"271814258","2147829932",,,,"2011-09-14T14:38:24-0500","DANNY MITCHELL",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914153713P040019873282001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ST LOUIS MEDICAL PROFESSIONALS 401K PROFIT SHARING PLAN & TRUST","001","2004-01-01","ST LOUIS MEDICAL PROFESSIONALS",,,"8790 WATSON RD SUITE 201",,"ST LOUIS","MO","63119",,,,,,,,,,,,,,,,,,"431925923","3145432800","621111","ST LOUIS MEDICAL PROFESSIONALS",,"8790 WATSON RD SUITE 201",,"ST LOUIS","MO","63119",,,,,,,"431925923","3145432800",,,,"2011-09-14T15:36:08-0500","NEEVEEN SALAMA",,,,,12,14,0,2,16,0,16,11,0,14,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914113020P030042054551001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"WPS MANAGERIAL PENSION PLAN","003","1985-01-01","WPS INSURANCE CORPORATION",,"EMPLOYEE SERVICES/CEN","1717 W BROADWAY",,"MADISON","WI","53713",,,,,,,,,,,,,,,,,,"391268299","6082214711","524140","WPS INSURANCE CORPORATION",,"1717 W BROADWAY",,"MADISON","WI","53713",,,,,,,"391268299",,"WPS INSURANCE CORPORATION","391268299",,"2011-09-14T11:19:44-0500","WILLIAM C BEISENSTEIN",,,,,2522,1820,493,1032,3345,36,3381,,7,,"1A1G3H",,,,"1",,,,"1",,"1",,"1","1",,,,,"1",,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110914113020P030042054551003","2010-01-01","2010-12-31","4","M",,,,,,,"1",,,,"PENSION TRUST FOR WISCONSIN PHYSICIANS SERVICE INSURANCE CORPORATION","008",,"WPS INSURANCE CORPORATION",,"EMPLOYEE SERVICES/CEN","1717 W BROADWAY",,"MADISON","WI","53713",,,,,,,,,,,,,,,,,,"391268299","6082214711","524140","WPS INSURANCE CORPORATION",,"1717 W. BROADWAY",,"MADISON","WI","53713",,,,,,,"391268299",,"WPS INSURANCE CORPORATION","391268299",,"2011-09-14T11:20:15-0500","WILLIAM C BEISENSTEIN",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-14","Filed with authorized/valid electronic signature",, "20110919130201P030133010337001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","1","0",,"DOCPREP SERVICES, INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","DOCPREP SERVICES INC",,,"6700 FALLBROOK AVE STE 111",,"WEST HILLS","CA","91307",,,,,,,"6700 FALLBROOK AVE STE 111",,"WEST HILLS","CA","91307",,,,,,,"954739214","8189329812","522300","LAURENC E COHEN",,"6700 FALLBROOK AVE STE 111",,"WEST HILL","CA","91307",,,,,,,"954739214","8189329812",,,,"2011-09-19T13:00:36-0500","KATHLEEN BRONTSEMA",,,,,6,0,0,0,0,0,0,0,0,,"2E2G2J3E",,,,,,,,,,"0",,,,"0",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919132409P040136306673001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SC CORPORATION & AFFILIATES HEALTH & WELFARE PLAN","501","1992-06-01","SC CORPORATION",,,"400 MANLEY STREET",,"WEST BRIDGEWATER","MA","023791085",,,,,,,,,,,,,,,,,,"133507136","5086387000","454110","SC CORPORATION",,"400 MANLEY STREET",,"WEST BRIDGEWATER","MA","023791085",,,,,,,"133507136","5086387000",,,,"2011-09-06T10:56:32-0500","MARION B. MAGUIRE",,,,,247,257,,,257,,,,,,,"4A4B4D4F4H4Q","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920100341P040136831553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UMB PROFIT SHARING AND 401(K) SAVINGS PLAN","001","1961-01-01","UMB FINANCIAL CORPORATION",,,"928 GRAND BOULEVARD",,"KANSAS CITY","MO","64106",,,,,,,,,,,,,,,,,,"430903811","8168607000","522110","UMB FINANCIAL CORPORATION",,"928 GRAND BOULEVARD",,"KANSAS CITY","MO","64106",,,,,,,"430903811","8168607000",,,,"2011-09-20T10:03:23-0500","LAWRENCE G. SMITH","2011-09-20T10:03:23-0500","LAWRENCE G. SMITH",,,3825,3316,11,610,3937,10,3947,3901,55,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920100355P040020375202001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRUCE BRAGDON PENSION PLAN","001","2007-01-01","DR. BRUCE R. BRAGDON",,,"10 MATHES TERRACE",,"DURHAM","NH","03824",,,,,,,"10 MATHES TERRACE",,"DURHAM","NH","03824",,,,,,,"020324560","6176289707","621210","DR. BRUCE R. BRAGDON",,"10 MATHES TERRACE",,"DURHAM","NH","03824",,,,,,,"020324560","6176289707",,,,"2011-09-19T20:06:48-0500","BRUCE BRAGDON",,,,,5,5,0,0,5,0,5,,0,,"1A3B3E",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920110913P030133618017001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"U.S. ASSET BACKED INDX NL FUND (CME6)","151",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"040025081","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-20T11:04:25-0500","MATTHEW A. BOYER",,,"2011-09-20T11:04:25-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110920100529P030019600594005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BRYAN M. SCOTT, DDS, INC. 401(K) PROFIT SHARING PL AND TRUST","001","2004-01-01","BRYAN M. SCOTT, DDS, INC.",,,"1790 TOWN PARK BLVD. STE. E",,"UNIONTOWN","OH","44685",,,,,,,,,,,,,,,,,,"341963385","3308999001","621210","BRYAN M. SCOTT, DDS, INC.",,"1790 TOWN PARK BLVD. STE. E",,"UNIONTOWN","OH","44685",,,,,,,"341963385","3308999001",,,,"2011-08-17T02:53:01-0500","BRYAN SCOTT",,,,,8,5,,2,7,,7,7,,,"2E2G2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920143804P030133730145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ZTE USA INC., CAFETERIA PLAN","502","2004-03-10","ZTE USA, INC.",,,"2425 N. CENTRAL EXPRESSWAY","SUITE 323","RICHARDSON","TX","75080",,,,,,,"2425 N. CENTRAL EXPRESSWAY","SUITE 323","RICHARDSON","TX","75080",,,,,,,"223618736","9726718885","517000","ZTE USA, INC.",,"2425 N. CENTRAL EXPRESSWAY","SUITE 323","RICHARDSON","TX","75080",,,,,,,"223618736","9726718885",,,,"2011-09-20T14:36:45-0500","GARY SIEGEL",,,,,119,190,3,0,193,0,193,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920180159P040020411922001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"THE DELAWARE COUNTY BANK LONG-TERM DISABILITY PLAN","503","1983-05-01","THE DELAWARE COUNTY BANK",,,"110 RIVERBEND AVENUE",,"LEWIS CENTER","OH","43035",,,,,,,,,,,,,,,,,,"314376006","7406577710","522110","THE DELAWARE COUNTY BANK",,"110 RIVERBEND AVENUE",,"LEWIS CENTER","OH","43035",,,,,,,"314376006","7406577710",,,,"2011-09-20T18:00:30-0500","BRIAN STANFILL",,,,,152,116,0,0,116,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919085838P030019509538001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INTERIOR SYSTEMS, INC. EMPLOYEES' RETIREMENT PLAN","001","1989-01-01","INTERIOR SYSTEMS, INC.",,,"241 N BROADWAY STE 600",,"MILWAUKEE","WI","532025860",,,,,,,,,,,,,,,,,,"391339985","4142240957","561790","INTERIOR SYSTEMS, INC.",,"241 N BROADWAY STE 600",,"MILWAUKEE","WI","532025860",,,,,,,"391339985","4142240957",,,,"2011-09-19T08:58:03-0500","JIM CARLSON",,,,,207,152,5,30,187,0,187,165,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920102820P040136845425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SNOKIST GROWERS 401(K) SAVINGS PLAN","003","1985-01-01","SNOKIST GROWERS",,,"2506 TERRACE HEIGHTS DRIVE",,"YAKIMA","WA","98901",,,,,,,,,,,,,,,,,,"910480665","5094535631","311400","SNOKIST GROWERS",,"2506 TERRACE HEIGHTS DRIVE",,"YAKIMA","WA","98901",,,,,,,"910480665","5094535631",,,,"2011-09-20T10:27:55-0500","JIM DAVIS",,,,,445,321,5,39,365,1,366,190,3,,"2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920070742P040616715296001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"CONROY STARR ASSOCIATES, INC. PROFIT SHARING PLAN","001","1990-07-01","CONROY STARR ASSOCIATES, INC.",,,"119 13TH STREET",,"PITTSBURGH","PA","15215",,,,,,,"CONROY STARR AND ASSOCIATES, INC","119 13TH STREET","PITTSBIRGH","PA","15215",,,,,,,"251633626","4127823357","423700","CONROY STARR ASSOCIATES, INC.",,"119 13TH STREET",,"PITTSBURGH","PA","15215",,,,,,,"251633626","4127823357",,,,"2011-09-20T07:07:28-0500","BRAD JADLOWIEC",,,,,6,4,0,2,6,,6,6,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920133412P040136951137001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HEYCO, INC. 401(K) PROFIT SHARING PLAN","002","1966-01-01","HEYCO, INC.",,,"PO BOX 517",,"TOMS RIVER","NJ","087540517",,,,,,,"1800 INDUSTRIAL WAY N.",,"TOMS RIVER","NJ","087540517",,,,,,,"220988605","7322864336","332110","HEYCO, INC.",,"PO BOX 517",,"TOMS RIVER","NJ","087540517",,,,,,,"220988605","7322864336",,,,"2011-09-20T13:33:24-0500","COLLEEN FAULKNOR","2011-09-20T13:33:24-0500","COLLEEN FAULKNOR",,,188,142,3,29,174,1,175,171,3,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110919092227P030019511138008","2010-07-01","2011-06-30","2",,,,,,,,,,,,"LABORERS UNION LOCAL # 110 OFFICE EMPLOYEES PENSIO","001","1988-07-01","LABORERS UNION LOCAL 110",,,"11000 LIN VALLE DRIVE",,"ST. LOUIS","MO","63123",,,,,,,,,,,,,,,,,,"431667815","3148920777","813930","LABORERS UNION LOCAL 110",,"11000 LIN VALLE DRIVE",,"ST. LOUIS","MO","63123",,,,,,,"431667815","3148920777",,,,"2011-09-06T04:07:59-0500","RICK CASSON",,,,,12,6,,5,11,,11,11,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919101509P030619660976006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SMU LTD AND LTC PLANS","506","1982-03-01","SOUTHERN METHODIST UNIVERSITY",,,"PO BOX 750261","6116 CENTRAL EXPRESSWAY, SUITE 203","DALLAS","TX","752750261",,,,,,,,,,,,,,,,,,"750800689","2147682800","611000","SOUTHERN METHODIST UNIVERSITY",,"PO BOX 750261",,"DALLAS","TX","752750261",,,,,,,"750800689","2147682800",,,,"2011-09-19T11:02:51-0500","SHERI A. STARKEY","2011-09-19T11:03:07-0500","SHERI A. STARKEY",,,2291,2714,,,2714,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110919103359P030132941201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WITHROW, MCQUADE & OLSEN, LLP PROFIT SHARING PLAN","001","1993-01-01","WITHROW, MCQUADE & OLSEN, LLP",,,"3379 PEACHTREE RD STE 970",,"ATLANTA","GA","30326",,,,,,,,,,,,,,,,,,"582021171","4048140200","541110","WITHROW, MCQUADE & OLSEN, LLP",,"3379 PEACHTREE RD STE 970",,"ATLANTA","GA","30326",,,,,,,"582021171","4048140200",,,,"2011-09-19T10:33:12-0500","SCOTT C. WITHROW","2011-09-19T10:33:12-0500","SCOTT C. WITHROW",,,9,5,0,3,8,0,8,8,0,,"2T3D2E2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110919213931P030043290807001","2010-10-19","2011-06-30","2",,"1","0","0","1","0","0","0","0","0",,"PAVIS INC. 401K PLAN","001","2010-10-19","PAVIS INC.",,,"7382 STONEGATE BOULEVARD",,"SOUTHAVEN","MS","38671",,,,,,,,,,,,,,,,,,"273713665","6622535801","811190","PAVIS INC.",,"7382 STONEGATE BOULEVARD",,"SOUTHAVEN","MS","38671",,,,,,,"273713665","6622535801",,,,"2011-09-19T21:38:51-0500","VICTOR STRATULAT","2011-09-19T21:38:51-0500","VICTOR STRATULAT",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920111012P040617209120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAWS AROUND TOWN, INC 401K PLAN","001","2009-09-01","PAWS AROUND TOWN, INC.",,,"12100-H N. MAY AVENUE",,"OKLAHOMA CITY","OK","73120",,,,,,,,,,,,,,,,,,"752943484","4057483647","541940","PAWS AROUND TOWN, INC.",,"12100-H N. MAY AVENUE",,"OKLAHOMA CITY","OK","73120",,,,,,,"752943484","4057483647",,,,"2011-09-20T11:09:22-0500","SUSAN SUGGS","2011-09-20T11:09:22-0500","SUSAN SUGGS",,,6,5,0,0,5,0,5,4,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920085834P040136794737001","2010-10-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"METALSA STRUCTURAL PRODUCTS, INC. NON-UNION BENEFIT PLAN","502","2010-10-01","METALSA STRUCTURAL PRODUCTS, INC.",,,"184 VISTA DRIVE",,"ROANOKE","VA","24019",,,,,,,,,,,,,,,,,,"980643737","5409665370","336300","METALSA STRUCTURAL PRODUCTS, INC.",,"184 VISTA DRIVE",,"ROANOKE","VA","24019",,,,,,,"980643737","5409665370",,,,"2011-09-20T08:57:55-0500","ERIC DIXON",,,,,902,902,18,0,920,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920091415P040616975360005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ZEIDLER FLORAL CO., INC. 401(K) PLAN","001","1999-01-01","ZEIDLER FLORAL CO., INC.",,,"P.O. BOX 6970","2011 N. FULTON AVE.","EVANSVILLE","IN","47710",,,,,,,,,,,,,,,,,,"351033483","8124254088","453110","ZEIDLER FLORAL CO., INC.",,"P.O. BOX 6970","2011 N. FULTON AVE.","EVANSVILLE","IN","47710",,,,,,,"351033483","8124254088",,,,"2011-09-19T04:38:00-0500","DAVID HARRIS",,,,,44,34,,,34,,34,18,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920153859P040137017249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ORLANDO PUENTE, M.D., P.A., PROFIT SHARING PLAN","001","1998-01-01","ORLANDO PUENTE, M.D., P.A.",,,"8955 SW 87TH COURT, #112",,"MIAMI","FL","33176",,,,,,,"8955 SW 87TH COURT, #112",,"MIAMI","FL","33176",,,,,,,"650003436","3055960600","621111","ORLANDO PUENTE, M.D., P.A.",,"8955 SW 87TH COURT, #112",,"MIAMI","FL","33176",,,,,,,"650003436","3055960600",,,,"2011-09-20T15:38:09-0500","ORLANDO PUENTE",,,,,4,4,,,4,,4,,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920161321P030133772001001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"MSCI TRL INDX NL QP CTF (ZVT2)","001",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"043339530","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-20T16:06:06-0500","MATTHEW A. BOYER",,,"2011-09-20T16:06:06-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110919113414P030132971665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASC INDUSTRIES, INC. BENEFIT PLAN","502","1976-05-01","ASC INDUSTRIES, INC.",,,"2100 INTERNATIONAL PARKWAY",,"CANTON","OH","44720",,,,,,,,,,,,,,,,,,"341187793","3308990340","336300","ASC INDUSTRIES, INC.",,"2100 INTERNATIONAL PARKWAY",,"CANTON","OH","44720",,,,,,,"341187793","3308990340",,,,"2011-09-19T10:58:47-0500","PETER RACKOV",,,,,189,149,8,0,157,,,,,,,"4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919113515P030132972145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SULLIVAN AND SMITH OMS RETIREMENT PLAN & TRUST","001","2005-01-01","SULLIVAN AND SMITH ORAL AND MAXILLOFACIAL SURGERY",,,"1000 NORTH LINCOLN, SUITE 200",,"OKLAHOMA CITY","OK","73104",,,,,,,,,,,,,,,,,,"203354185","4052714955","621210","SULLIVAN AND SMITH ORAL AND MAXILLOFACIAL SURGERY",,"1000 NORTH LINCOLN, SUITE 200",,"OKLAHOMA CITY","OK","73104",,,,,,,"203354185","4052714955",,,,"2011-09-19T11:34:41-0500","STEVEN M. SULLIVAN, D.D.S.",,,,,12,12,0,0,12,0,12,12,0,,"2A2E3H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919120321P040020296226006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"INTERNATIONAL PACKAGING CORPORATION CAFETERIA PLAN","503","1990-01-01","INTERNATIONAL PACKAGING CORPORATION",,,"517 MINERAL SPRING AVENUE",,"PAWTUCKET","RI","02860",,,,,,,,,,,,,,,,,,"050282145","4017241600","339900","INTERNATIONAL PACKAGING CORPORATION",,"517 MINERAL SPRING AVENUE",,"PAWTUCKET","RI","02860",,,,,,,"050282145","4017241600",,,,"2011-09-16T15:23:16-0500","JOHN KILCOYNE",,,,,359,340,,,340,,340,,,,,"4D","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920103410P040022518806001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SKYLINE ENTERPRISE GROUP INC. 401K PLAN","001","2008-09-10","SKYLINE ENTERPRISE GROUP INC.",,,"1116 AUSTIN AVENUE",,"PARK RIDGE","IL","60068",,,,,,,,,,,,,,,,,,"263322886","8473702257","454210","SKYLINE ENTERPRISE GROUP INC.",,"1116 AUSTIN AVENUE",,"PARK RIDGE","IL","60068",,,,,,,"263322886","8473702257",,,,"2011-09-20T10:33:14-0500","DEVIN SMITH","2011-09-20T10:33:14-0500","DEVIN SMITH",,,10,8,0,0,8,0,8,7,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920112738P040004170835001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DONATELLE PLASTICS, INC. LIFE AND DISABILITY PLAN","503","2007-01-01","DONATELLE PLASTICS, INC.",,,"501 COUNTY ROAD 2-EXTENSION",,"NEW BRIGHTON","MN","55112",,,,,,,,,,,,,,,,,,"411390376","6516334200","326100","DONATELLE PLASTICS, INC.",,"501 COUNTY ROAD 2-EXTENSION",,"NEW BRIGHTON","MN","55112",,,,,,,"411390376","6516334200",,,,"2011-09-20T11:27:29-0500","CHAD ISLE",,,,,424,385,0,0,385,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920144856P040136984049001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","1","0","0","0",,"GUILFORD PUBLICATIONS, INC. EMPLOYEES 401(K) PROF","002","1991-07-01","GUILFORD PUBLICATIONS, INC.",,,"72 SPRING ST",,"NEW YORK","NY","100124019",,,,,,,,,,,,,,,,,,"132756263","2124319800","511130","GUILFORD PUBLICATIONS, INC.",,"72 SPRING ST",,"NEW YORK","NY","100124019",,,,,,,"132756263","2124319800",,,,"2011-09-20T14:48:50-0500","LYNN PENNEY",,,,,82,72,0,13,85,0,85,84,1,,"2E2J2F2G2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919122049P030132991105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEALTH AND WELFARE PLAN FOR EMPLOYEES OF MCL, INC.","501","1995-01-01","MCL, INC.",,,"2730 E. 62ND ST.",,"INDIANAPOLIS","IN","462202958",,,,,,,,,,,,,,,,,,"351079999","3172575425","722210","MCL, INC.",,"2730 E. 62ND ST.",,"INDIANAPOLIS","IN","462202958",,,,,,,"351079999","3172575425",,,,"2011-09-19T12:12:31-0500","JESSE W. FEIL",,,,,225,191,0,0,191,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919133050P030133025265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASAHI/AMERICA 401(K) PLAN","003","1990-01-01","ASAHI/AMERICA, INC",,,"ATTN ANTHONY ELLIS","35 GREEN ST","MALDEN","MA","02148",,,,,,,,,,,,,,,,,,"042621836","7813884517","423700","ASAHI/AMERICA, INC",,"ATTN ANTHONY ELLIS","35 GREEN ST","MALDEN","MA","02148",,,,,,,"042621836","7813884517",,,,"2011-09-19T13:30:22-0500","ANTHONY ELLIS","2011-09-19T13:30:22-0500","ANTHONY ELLIS",,,155,120,1,51,172,0,172,120,2,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110919144643P030019534530001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROGER H. ZIERENBERG JR., D.D.S. M.S., INC. PENSION PLAN","001","2002-01-01","ROGER H. ZIERENBERG JR., D.D.S. M.S., INC.",,,"6001 GRIMES CYN. ROAD",,"MOORPARK","CA","93021",,,,,,,,,,,,,,,,,,"850485400","8054955474","621210","ROGER H. ZIERENBERG JR., D.D.S. M.S., INC.",,"6001 GRIMES CYN. ROAD",,"MOORPARK","CA","93021",,,,,,,"850485400","8054955474",,,,"2011-09-19T14:47:45-0500","ROGER H. ZIERENBERG, JR.","2011-09-19T14:47:45-0500","ROGER H. ZIERENBERG, JR.",,,2,2,0,0,2,0,2,,,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920111831P040136873825001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"WESTERN ASSET MORTGAGE BACKED SECURITIES PORTFOLIO, L.L.C.","001",,"WESTERN ASSET MANAGEMENT COMPANY",,,"385 EAST COLORADO BOULEVARD",,"PASADENA","CA","911011923",,,,,,,,,,,,,,,,,,"201575792","6268449400",,"WESTERN ASSET MANAGEMENT COMPANY",,"385 EAST COLORADO BOULEVARD",,"PASADENA","CA","911011923",,,,,,,"201575792","6268449400",,,,,,,,"2011-09-20T11:16:38-0500","PETER C. DIBONA",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-20",,"Filed with incorrect/unrecognized electronic signature", "20110920144921P040136984145001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"S&P CAD SMALL CAP (R) INDX SL FUND (CAD23)","268",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"040025081","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-20T14:47:58-0500","MATTHEW A. BOYER",,,"2011-09-20T14:47:58-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110920144932P040136984241001","2010-01-01","2010-12-31","4","C","0","0","1","0","0","0","0","0","0",,"U.S. ACTIVE VALUE/GROWTH NL FUND (CMW1)","326",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"040025081","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-20T14:47:59-0500","MATTHEW A. BOYER",,,"2011-09-20T14:47:59-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110920145001P040136984513001","2010-01-01","2010-12-31","4","C","0","0","1","0","0","0","0","0","0",,"US ACT LARGE CAP VALUE GROWTH NL SF CL A (CM","329",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"040025081","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-20T14:48:00-0500","MATTHEW A. BOYER",,,"2011-09-20T14:48:00-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110920181011P040020413234001","2004-09-01","2005-08-31","2",,"0","0","0","0","0","0","0","1","0",,"LEWIS ENERGY HEALTH CARE PLAN","501","2000-09-01","LEWIS ENERGY GROUP, LP",,,"10101 REUNION PLACE, SUITE 1000",,"SAN ANTONIO","TX","78216",,,,,,,,,,,,,,,,,,"742910903","2103843200","211110","LEWIS ENERGY GROUP, LP",,"10101 REUNION PLACE, SUITE 1000",,"SAN ANTONIO","TX","78216",,,,,,,"742910903","2103843200",,,,"2011-09-20T18:09:57-0500","CRAIG ROSENSTEIN",,,,,114,142,0,0,142,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919150440P030133071521001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"AMERICAN CHORAL DIRECTORS ASSOCIATION SAVINGS INCENTIVE PLAN","001","1998-07-01","AMERICAN CHORAL DIRECTORS ASSOCIATION",,,"545 COUCH DRIVE",,"OKLAHOMA CITY","OK","73102",,,,,,,,,,,,,,,,,,"620695676","4052328161","711300","AMERICAN CHORAL DIRECTORS ASSOCIATION",,"545 COUCH DRIVE",,"OKLAHOMA CITY","OK","73102",,,,,,,"620695676","4052328161",,,,"2011-09-19T04:04:39-0500","TIMOTHY W. SHARP",,,,,13,10,0,3,13,0,13,13,0,,"2E2F2J2L3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920221334P040618528080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SEGERDAHL CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","003","2003-01-01","SEGERDAHL CORPORATION",,,"1351 SOUTH WHEELING ROAD",,"WHEELING","IL","600905913",,,,,,,,,,,,,,,,,,"362324752","8475411080","323100","SEGERDAHL CORPORATION",,"1351 SOUTH WHEELING ROAD",,"WHEELING","IL","600905913",,,,,,,"362324752","8475411080",,,,"2011-09-20T22:12:54-0500","GARY GARDNER",,,,,187,152,2,25,179,1,180,177,5,,"2I2O2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919092227P030019511138005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ASPEN HILL IMPLANT & FAMILY DENTISTRY, P.C. 401 (K) PLAN","001","2003-01-01","ASPEN HILL IMPLANT & FAMILY DENTISTRY, P.C.",,,"4110 ASPEN HILL ROAD",,"ROCKVILLE","MD","20853",,,,,,,,,,,,,,,,,,"223871999","3018715125","621210","ASPEN HILL IMPLANT & FAMILY DENTISTRY, P.C.",,"4110 ASPEN HILL ROAD",,"ROCKVILLE","MD","20853",,,,,,,"223871999","3018715125",,,,"2011-09-14T04:54:13-0500","DR. AHMED",,,,,6,5,,2,7,,7,7,,,"2E2H2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919161356P030620432176001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WOOLDRIDGE, LLC PROFIT SHARING PLAN","002","2000-01-01","WOOLDRIDGE, LLC",,,"7918 WESTGATE COURT",,"RIVERSIDE","CA","92506",,,,,,,,,,,,,,,,,,"721472976","7855397531","611000","SAME",,"7918 WESTGATE COURT",,"RIVERSIDE","CA","92506",,,,,,,"721472976","7855397531",,,,"2011-09-19T16:13:44-0500","JIM WOOLDRIDGE",,,,,2,2,0,0,2,0,2,2,0,,"2E3E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919161440P030133104433001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CABELAS INCORPORATED 401(K) SAVINGS PLAN","002","1989-07-01","CABELAS INCORPORATED",,,"ONE CABELA DRIVE",,"SIDNEY","NE","691601001",,,,,,,,,,,,,,,,,,"200486586","3082545505","451110","CABELAS INCORPORATED",,"ONE CABELA DRIVE",,"SIDNEY","NE","691601001",,,,,,,"200486586","3082545505",,,,"2011-09-19T16:14:13-0500","RALPH CASTNER",,,,,14098,14318,0,765,15083,8,15091,5574,215,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919181519P030019551138001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WENZEL DESIGN EDUCATIONAL ASSISTANCE PLAN","001","2008-12-10","WENZEL DESIGN, INC.",,,"2411 EAST SKELLY DRIVE STE. 101",,"TULSA","OK","74104",,,,,,,,,,,,,,,,,,"266677242",,"541400","BENEFIT PLAN ADMINISTRATORS, INC.","JOHN W. TOWNSHEND","P.O. BOX 35311",,"TULSA","OK","74153",,,,,,,"731325492",,,,,"2011-06-06T11:27:35-0500","JOHN W. TOWNSHEND",,,,,5,5,0,0,5,0,5,5,0,,"2Q","4K",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920112952P030133628673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDPACE 401(K) PLAN","001","1996-09-01","MEDPACE, INC.",,,"4620 WESLEY AVENUE",,"CINCINNATI","OH","45212",,,,,,,,,,,,,,,,,,"753033627","5135799911","541700","MEDPACE, INC.",,"4620 WESLEY AVENUE",,"CINCINNATI","OH","45212",,,,,,,"753033627","5135799911",,,,"2011-09-20T11:29:15-0500","ADAM VREELAND","2011-09-20T11:29:15-0500","ADAM VREELAND",,,658,661,0,47,708,0,708,511,4,,"2E2F2G2J2K3D2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920113053P040004170851001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"WESTERN ASSET OPPORTUNISTIC ASIAN SECURITIES, L.L.C.","001",,"WESTERN ASSET MANAGEMENT COMPANY",,,"385 EAST COLORADO BOULEVARD",,"PASADENA","CA","911011923",,,,,,,,,,,,,,,,,,"205738211","6268449400",,"WESTERN ASSET MANAGEMENT COMPANY",,"385 EAST COLORADO BOULEVARD",,"PASADENA","CA","911011923",,,,,,,"205738211","6268449400",,,,,,,,"2011-09-20T11:29:07-0500","PETER C. DIBONA",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-20",,"Filed with incorrect/unrecognized electronic signature", "20110919105324P030132953649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VIEGA LLC GROUP HEALTH INSURANCE PLAN","506","2007-01-01","VIEGA LLC",,"C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","675301167",,,,,,,,,,,,,,,,,,"205194438","6207938473","326100","VIEGA LLC",,"P.O. BOX 1167",,"GREAT BEND","KS","675301167",,,,,,,"205194438","6207938473",,,,"2011-09-19T10:53:16-0500","LYNNE ASTON",,,,,442,423,0,0,423,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919114523P030132976417001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NATIONAL AUTOTECH, INC. 401(K) PLAN","001","1997-01-01","NATIONAL AUTOTECH, INC.",,,"1190 EXPLORER ST",,"DUNCANVILLE","TX","75137",,,,,,,"1190 EXPLORER ST",,"DUNCANVILLE","TX","75137",,,,,,,"650400039","9725722489","811110","NATIONAL AUTOTECH, INC.",,"1190 EXPLORER ST",,"DUNCANVILLE","TX","75137",,,,,,,"650400039","9725722489",,,,"2011-09-19T11:44:21-0500","CATHY SAWYER",,,,,134,111,0,16,127,0,127,35,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919150713P030019536018001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHAEL B. RULNICK, D.M.D., P.C. 401(K) PLAN","001","2009-01-01","MICHAEL B. RULNICK, D.M.D., P.C.",,,"1450 E. CHESTNUT AVE., BLDG 6 STE C",,"VINELAND","NJ","08360",,,,,,,,,,,,,,,,,,"223346972","8566965400","621210","MICHAEL B. RULNICK, D.M.D., P.A.",,"1450 E. CHESTNUT AVE. BLDG 6 STE C",,"VINELAND","NJ","08360",,,,,,,"223346972","8566965400",,,,"2011-09-19T15:05:28-0500","MICHAEL RULNICK",,,,,11,8,0,3,11,0,11,11,0,,"2E2J2F2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919170432P040615199776001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHA, INC. RETIREMENT INVESTMENT PLAN","001","1987-01-01","CHA, INC.",,,"3 WINNERS CIRCLE",,"ALBANY","NY","12205",,,,,,,,,,,,,,,,,,"300499903","5184538750","541330","CHA, INC.",,"3 WINNERS CIRCLE",,"ALBANY","NY","12205",,,,,,,"300499903","5184538750",,,,"2011-09-19T17:01:39-0500","ELIZABETH SNOW",,,,,926,649,3,203,855,0,855,796,70,,"3D2E2J3H2F2G2A",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919145004P030133066609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRED LOYA INSURANCE 401K RETIREMENT PLAN","001","2009-02-01","EP LOYA GROUP, LP",,,"1800 LEE TREVINO, SUITE 201",,"EL PASO","TX","79936",,,,,,,,,,,,,,,,,,"810586757","9159265128","524210","EP LOYA GROUP, LP",,"1800 LEE TREVINO, SUITE 201",,"EL PASO","TX","79936",,,,,,,"810586757","9159265128",,,,"2011-09-19T14:48:51-0500","JOE RAMIREZ",,,,,1012,1126,0,14,1140,0,1140,177,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919122545P030619941456001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OLMSTED MEDICAL CENTER DEFINED BENEFIT PENSION PLAN","002","1996-01-01","OLMSTED MEDICAL CENTER",,,"1650 FOURTH STREET SE",,"ROCHESTER","MN","55904",,,,,,,,,,,,,,,,,,"410855367","5072883443","622000","OLMSTED MEDICAL CENTER",,"1650 FOURTH STREET SE",,"ROCHESTER","MN","55904",,,,,,,"410855367","5072883443",,,,"2011-09-19T12:24:46-0500","KEVIN HIGGINS",,,,,88,80,2,6,88,0,88,,0,,"1A1D1G",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919155454P040136371329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILD BRAIN ENTERTAINMENT EMPLOYEE BENEFIT PLAN","501","1998-08-01","WILD BRAIN ENTERTAINMENT",,,"15000 VENTURE BLVD., 3RD FLOOR",,"SHERMAN OAKS","CA","91403",,,,,,,,,,,,,,,,,,"943339168","8182907088","512100","WILD BRAIN ENTERTAINMENT",,"15000 VENTURE BLVD., 3RD FLOOR",,"SHERMAN OAKS","CA","91403",,,,,,,"943339168","8182907088","WILD BRAIN, INC.","943214347","501","2011-09-18T20:03:08-0500","GEOFF WILLIAMSON",,,,,127,38,7,0,45,,,,,,,"4A4B4D4E4H4L4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919183316P030620705856001","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"BRIAN M LANE D D S PC PROFIT SHARING PLAN","001","1995-01-01","BRIAN M LANE DDS, PC",,,"1601 PASEO SAN LUIS SUITE 103",,"SIERRA VISTA","AZ","85635",,,,,,,,,,,,,,,,,,"860774812","5204171692","621210","BRIAN M LANE DDS",,"1601 PASEO SAN LUIS SUITE 103",,"SIERRA VISTA","AZ","85635",,,,,,,"860774812","5204171692",,,,"2011-09-19T16:14:34-0500","BRIAN M LANE DDS",,,,,2,2,,,2,,2,2,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920160910P040137034913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRANSCATHETER MEDICAL, C.S.P. RETIREMENT PLAN","001","2006-01-01","TRANSCATHETER MEDICAL, C.S.P.",,"PEDRO J. COLON HERNANDEZ","PO BOX 5307",,"CAGUAS","PR","00725",,,,,,,,,,,,,,,,,,"660655070","7877201088","812990","TRANSCATHETER MEDICAL, C.S.P.","PEDRO J. COLON HERNANDEZ","MONTEVERDE REAL, 9 CALLE VEREDA",,"SAN JUAN","PR","00926",,,,,,,"660655070","7877201088",,,,"2011-09-20T16:08:49-0500","PEDRO J. COLON HERNANDEZ",,,,,3,3,0,0,3,0,3,0,0,,"2C2E3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920182121P030133831281001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHEETAH LEARNING INC 401(K) PROFIT SHARING PLAN & TRUST","001","2002-01-01","CHEETAH LEARNING INC",,,"502 N DIVISION ST",,"CARSON CITY","NV","89703",,,,,,,,,,,,,,,,,,"710882359","8606870788","611000","CHEETAH LEARNING INC",,"502 N DIVISION ST",,"CARSON CITY","NV","89703",,,,,,,"710882359","8606870788",,,"001","2011-09-20T18:07:56-0500","MICHELLE LABROSSE",,,,,16,13,0,8,21,0,21,18,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919134920P030043212679001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FLEXIBLE COMPENSATION PLAN OF ACCORD HUMAN RESOURCES INC","501","1993-01-01","ACCORD HUMAN RESOURCES INC",,,"210 PARK AVE STE 1200",,"OKLAHOMA CITY","OK","73102",,,,,,,"210 PARK AVE STE 1200",,"OKLAHOMA CITY","OK","73102",,,,,,,"731402191","4052329888","541214","ACCORD HUMAN RESOURCES INC",,"210 PARK AVE STE 1200",,"OKLAHOMA CITY","OK","73102",,,,,,,"731402191","4052329888",,,,"2011-09-19T13:42:03-0500","DALE HAGEMAN",,,,,440,491,,,491,,491,,,,,"4A4B4D4E4F4G4H",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919090918P030132901137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AVANTRAS, INC. PROFIT SHARING PLAN","001","2009-04-22","AVANTRAS, INC.",,,"167 SOMERSET AVE",,"ELYSBURG","PA","17824",,,,,,,,,,,,,,,,,,"264703808","7174977760","812990","AVANTRAS, INC.",,"167 SOMERSET AVE",,"ELYSBURG","PA","17824",,,,,,,"264703808","7174977760",,,,"2011-09-18T12:08:39-0500","KEVIN MILES",,,,,2,2,,,2,,2,2,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920074402P040136768033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACCUPAC INC GROUP LIFE PLAN","504","1997-10-01","ACCUPAC, INC.",,,"P.O. BOX 200",,"MAINLAND","PA","194510200",,,,,,,"1501 INDUSTRIAL BOULEVARD",,"MAINLAND","PA","194510200",,,,,,,"232017278","2152567000","561900","ACCUPAC, INC.",,"P.O. BOX 200",,"MAINLAND","PA","194510200",,,,,,,"232017278","2152567000",,,,"2011-09-20T07:43:01-0500","DAVID MULLEN","2011-09-20T07:43:01-0500","BRUCE WRIGHT",,,196,222,0,0,222,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920142011P040136970737001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"SHEBESTA GROUP SAVINGS PLAN","001","1989-06-01","SHEBESTA GROUP SAVINGS PLAN","ABEST COMPUTER SYSTEMS, INC.","WILLIAM SHEBESTA","1118 FERRIS RD.",,"AMELIA","OH","45102",,,,,,,"1118 FERRIS RD.",,"AMELIA","OH","45102",,,,,,,"311045313","5139434425","541519","SHEBESTA GROUP SAVINGS PLAN","WILLIAM SHEBESTA","1118 FERRIS RD.",,"AMELIA","OH","45102",,,,,,,"311045313","5139434425",,,,"2011-09-20T14:19:24-0500","WILLIAM SHEBESTA",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J3B3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920160741P030133769665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"SKOOKUM EDUCATIONAL PROGRAMS 401(K) RETIREMENT SAVINGS PLAN & TRUST","001","2001-01-01","SKOOKUM EDUCATIONAL PROGRAMS",,,"4525 AUTO CENTER WAY",,"BREMERTON","WA","98312",,,,,,,,,,,,,,,,,,"911434778","3604750756","624310","SKOOKUM EDUCATIONAL PROGRAMS",,"2600 BURWELL STREET",,"BREMERTON","WA","98312",,,,,,,"911434778","3604750756",,,,"2011-09-20T16:02:39-0500","STACIE KANE",,,,,1014,913,0,410,1323,1,1324,925,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919102444P040136218513001","2010-07-01","2011-06-30","1",,"0","0","0","0","1","0","0","0","0",,"LAUNDRY INDUSTRIES 129 WELFARE FUND","501","1961-05-01","LAUNDRY INDUSTRIES 129 WELFARE FUND",,,"700 TOWER DRIVE SUITE 300",,"TROY","MI","480982808",,,,,,,,,,,,,,,,,,"386075591","2486414929","812330","LAUNDRY INDUSTRIES 129 WELFARE FUND",,"700 TOWER DRIVE SUITE 300",,"TROY","MI","480982808",,,,,,,"386075591","2486414929",,,,"2011-09-19T10:22:03-0500","VINCENT F. LOCICERO","2011-09-19T10:22:03-0500","LISHA M. SMITH",,,381,342,0,0,342,,,,,6,,"4A4B4D4E4F","0","0","1","0","1","0","1","0","0","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110919170617P040136410737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"III TO I FINANCIAL MANAGEMENT RESEARCH, L.P. RETIREMENT PLAN & TRUST","001","2007-01-01","III TO I FINANCIAL MANAGEMENT RESEARCH L.P.",,,"5580 PETERSON LANE, SUITE 190",,"DALLAS","TX","75240",,,,,,,,,,,,,,,,,,"202925399","9723925400","531390","III TO I FINANCIAL MANAGEMENT RESEARCH L.P.",,"5580 PETERSON LANE, SUITE 190",,"DALLAS","TX","75240",,,,,,,"202925399","9723925400",,,,"2011-09-19T17:05:43-0500","DARRELL W. CAIN",,,,,13,6,0,1,7,0,7,5,1,,"2A2E2J2K3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920114750P040020383794001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"WISE ENTERPRISES, INC. 401K PLAN","001","2009-11-26","WISE ENTERPRISES, INC.",,,"18027 KROSS ROAD",,"RIVERSIDE","CA","92508",,,,,,,,,,,,,,,,,,"800512666","5624271603","541213","WISE ENTERPRISES, INC.",,"18027 KROSS ROAD",,"RIVERSIDE","CA","92508",,,,,,,"800512666","5624271603",,,,"2011-09-20T11:47:26-0500","ROBERT WISE","2011-09-20T11:47:26-0500","ROBERT WISE",,,1,0,0,0,0,1,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920115046P030019608578001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAC PRODUCTS, INC. 401(K) RETIREMENT SAVINGS PLAN","003","1974-04-01","JAC PRODUCTS, INC.",,,"225 SOUTH INDUSTRIAL DRIVE",,"SALINE","MI","48176",,,,,,,,,,,,,,,,,,"381888757","7349448844","326100","JAC PRODUCTS, INC.",,"225 SOUTH INDUSTRIAL DRIVE",,"SALINE","MI","48176",,,,,,,"381888757","7349448844",,,,"2011-09-20T11:50:21-0500","CYNTHIA TACHENY - AS PRACTITIONER",,,,,724,783,0,142,925,0,925,826,8,,"2A2E2F2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920140325P040136962497002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PROFIT SHARING PLAN OF LYNNETTE BURCK CPA","001","1996-01-01","LYNNETTE BURCK, CPA",,,"8200 IH-10 WEST STE 850",,"SAN ANTONIO","TX","78230",,,,,,,,,,,,,,,,,,"742588100","2103448847","541211","LYNNETTE BURCK CPA",,"8200 IH-10 WEST STE 850",,"SAN ANTONIO","TX","78230",,,,,,,"742588100","2103448847",,,,"2011-09-16T16:58:22-0500","LYNNETTE BURCK",,,,,2,2,,,2,,2,,,,"3B2R2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920140325P040136962497004","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"RUBIN AND RUDMAN WELFARE BENEFITS PLAN","501","2001-01-01","RUBIN AND RUDMAN, LLP",,,"50 ROWES WHARF",,"BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"042202844","6173307000","541110","SALLY STRATMAN EXECUTIVE DIRECTOR",,"50 ROWES WHARF",,"BOSTON","MA","02110",,,,,,,"042202844","6173307000","RUBIN AND RUDMAN LLP",,,"2011-09-19T15:30:02-0500","SALLY STRATMAN EXECUTIVE DIRECTOR",,,,,135,125,,,125,,125,,,,,"4H4D4B4A","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920200347P030133875745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRANT & WEBER 401(K) RETIREMENT PLAN","001","2000-08-01","GRANT & WEBER",,,"26575 W. AGOURA ROAD",,"CALABASAS","CA","91302",,,,,,,,,,,,,,,,,,"953150339","8188787700","541110","GRANT & WEBER",,"26575 W. AGOURA ROAD",,"CALABASAS","CA","91302",,,,,,,"953150339","8188787700",,,,"2011-09-20T17:43:21-0500","HAROLD WEINERMAN",,,,,168,123,,15,138,0,138,104,6,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920165444P040137055393001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"NUCLA-NATURITA TELEPHONE COMPANY PENSION RETIREMENT PLAN","002","1968-06-01","NUCLA-NATURITA TELEPHONE COMPANY",,,"PO BOX 520",,"NUCLA","CO","814240520",,,,,,,,,,,,,,,,,,"840488225","9708647335","517000","NUCLA-NATURITA TELEPHONE COMPANY",,"PO BOX 520",,"NUCLA","CO","814240520",,,,,,,"840488225","9708647335",,,,"2011-09-20T16:53:47-0500","KELLY TOMLINSON",,,,,15,15,0,0,15,0,15,,0,,"1A1G3D",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","2","0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919105708P030132955937001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"VIEGA LLC GROUP VOLUNTARY CANCER INSURANCE PLAN","511","2010-01-01","VIEGA, LLC",,,"C/O CPI-QPC, INC.",,"GREAT BEND","KS","675301167",,,,,,,,,,,,,,,,,,"205194438","3164257400","326100","VIEGA, LLC",,"C/O CPI-QPC, INC.",,"GREAT BEND","KS","675301167",,,,,,,"205194438","3164257400",,,,"2011-09-19T10:56:26-0500","LYNNE ASTON",,,,,442,423,0,0,423,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919112402P030019519586001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KWAJALEIN RANGE SERVICES, LLC HEALTH & WELFARE PLAN","501","2003-03-01","KWAJALEIN RANGE SERVICES, LLC",,"C/O FCE BENEFIT ADMINISTRATORS","887 MITTEN ROAD","SUITE 200","BURLINGAME","CA","940101303",,,,,,,,,,,,,,,,,,"010738227","6503410306","541990","KWAJALEIN RANGE SERVICES, LLC","C/O FCE BENEFIT ADMINISTRATORS","887 MITTEN ROAD","SUITE 200","BURLINGAME","CA","940101303",,,,,,,"010738227","6503410306",,,,"2011-09-16T21:15:42-0500","SHERI HENDRIX","2011-09-16T21:15:42-0500","SHERI HENDRIX",,,574,517,,,517,,,,,,,"4A4B4D4E4F4H4L","0","0","1","0","1","0","1","0","0","0","0","1","0","1","5","1","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110919112447P030132968209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRST STATE FINANCIAL CORPORATION EMPLOYEES' SAVINGS AND RETIREMENT PLAN","002","1987-01-01","FIRST STATE FINANCIAL CORPORATION",,,"24300 LITTLE MACK",,"ST. CLAIR SHORES","MI","48080",,,,,,,,,,,,,,,,,,"382387765","5867755000","522110","FIRST STATE FINANCIAL CORPORATION",,"24300 LITTLE MACK",,"ST. CLAIR SHORES","MI","48080",,,,,,,"382387765","5867755000",,,,"2011-09-19T11:19:56-0500","APRIL MATALAVY",,,,,233,180,1,59,240,0,240,217,5,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919121451P040136271473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HYLTON B DUPREE JR PC PROFIT SHARING PLAN AND TRUST","001","1993-01-01","HYLTON B DUPREE JR PC",,,"49 GREEN STREET",,"MARIETTA","GA","300602050",,,,,,,"49 GREEN STREET",,"MARIETTA","GA","300602050",,,,,,,"581665503","7704247171","541110","HYLTON B DUPREE JR PC",,"49 GREEN STREET",,"MARIETTA","GA","300602050",,,,,,,"581665503","7704247171",,,,"2011-09-19T11:56:19-0500","HYLTON B DUPREE JR",,,,,10,8,0,2,10,0,10,10,0,,"2A2E3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919143329P040020305410001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GERACI & ASSOCIATES INC SAVINGS AND PROFIT SHARING PLAN","001","1993-01-01","GERACI & ASSOCIATES INC",,,"W146 N5800 ENTERPRISE AVE",,"MENOMONEE FALLS","WI","530515954",,,,,,,,,,,,,,,,,,"391672140","2622527270","424400","GERACI & ASSOCIATES INC",,"W146 N5800 ENTERPRISE AVE",,"MENOMONEE FALLS","WI","530515954",,,,,,,"391672140","2622527270",,,,"2011-09-19T14:15:55-0500","MARY BETH BORN",,,,,5,2,,,2,,2,2,,,"2J2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919143347P030620217712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRAINOR COMMERCIAL CONSTRUCTION, INC. 401(K) PROFIT SHARING PLAN","001","2002-01-01","TRAINOR COMMERCIAL CONSTRUCTION, INC.",,,"P. O. BOX 406",,"SAN ANSELMO","CA","949790406",,,,,,,,,,,,,,,,,,"680482602","4152590200","236200","TRAINOR COMMERCIAL CONSTRUCTION, INC.",,"P. O. BOX 406",,"SAN ANSELMO","CA","949790406",,,,,,,"680482602","4152590200",,,,"2011-09-19T14:30:18-0500","SUZANNE TRAINOR",,,,,38,30,0,12,42,0,42,42,0,,"2E2J2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919143428P030043223687001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"JOSEPH C. TAURO EMPLOYEES PROFIT SHARING PLAN","001","1994-01-01","JOSEPH C. TAURO, M.D.",,,"9 HOSPITAL DRIVE",,"TOMS RIVER","NJ","08755",,,,,,,"9 HOSPITAL DRIVE",,"TOMS RIVER","NJ","08755",,,,,,,"222898195","7323416226","621111","JOSEPH C. TAURO",,"9 HOSPITAL DRIVE",,"TOMS RIVER","NJ","08755",,,,,,,"222898195","7323416226",,,,"2011-09-16T10:07:40-0500","JOSEPH STOBEZKI",,,,,4,4,0,0,4,0,4,4,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920091900P040136804641001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"CAMPUS USA CREDIT UNION RETIREMENT PLAN","001","1966-10-20","CAMPUS USA CREDIT UNION",,,"PO BOX 147029",,"GAINESVILLE","FL","326147029",,,,,,,,,,,,,,,,,,"590637646","3523359090","522130","CAMPUS USA CREDIT UNION",,"PO BOX 147029",,"GAINESVILLE","FL","326147029",,,,,,,"590637646","3523359090",,,,"2011-09-20T09:18:44-0500","JILL HARPER","2011-09-20T09:18:44-0500","JILL HARPER",,,193,174,0,19,193,0,193,0,4,,"1A1G3H",,"1",,,,"1",,,,"1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920110043P040617189296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YOUNG INNOVATIONS, INC. 401(K) PROGRAM","001","1994-08-01","YOUNG INNOVATIONS, INC.",,,"2260 WENDT ST.",,"ALGONQUIN","IL","60102",,,,,,,"2260 WENDT ST.",,"ALGONQUIN","IL","60102",,,,,,,"431718931","8474585400","339900","YOUNG INNOVATIONS, INC.",,"2260 WENDT ST.",,"ALGONQUIN","IL","60102",,,,,,,"431718931","8474585400",,,,"2011-09-20T09:28:20-0500","JULIA CARTER",,,,,472,429,1,70,500,1,501,318,19,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920130944P040136940257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RECOVERY HOME CARE, INC. 401(K) PS PLAN & TRUST","001","2000-01-01","RECOVERY HOME CARE, INC.",,,"1897 PALM BEACH LAKES BLVD","SUTE 208","WEST PALM BEACH","FL","33409",,,,,,,,,,,,,,,,,,"650793103","5616881915","621610","RECOVERY HOME CARE, INC.",,"1897 PALM BEACH LAKES BLVD","SUTE 208","WEST PALM BEACH","FL","33409",,,,,,,"650793103","5616881915",,,,"2011-09-20T13:09:19-0500","KERRY GEDE",,,,,135,38,0,18,56,0,56,35,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920131149P030622741488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACCELLENT CORP. DBA ACCELLENT INC. GROUP LIFE & HEALTH INSURANCE","506","1971-06-15","ACCELLENT CORP. DBA ACELLENT INC.",,,"100 FORDHAM RD., BLDG. C",,"WILMINGTON","MA","01887",,,,,,,,,,,,,,,,,,"912054669","9785706901","332900","ACCELLENT CORP. DBA ACELLENT INC.",,"100 FORDHAM RD., BLDG. C",,"WILMINGTON","MA","01887",,,,,,,"912054669","9785706901",,,,"2011-09-20T13:10:38-0500","LISA MASSE",,,,,2231,2418,0,0,2418,,,,,,,"4A4B4D4E4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919123007P030043193911001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"F & M BANK HEALTH AND WELFARE BENEFIT PLAN","502","1987-01-01","F & M BANCORPORATION INC.",,,"1330 S. HARVARD",,"TULSA","OK","74112",,,,,,,,,,,,,,,,,,"730964683","9187441330","522110","F & M BANCORPORATION INC.",,"1330 S. HARVARD",,"TULSA","OK","74112",,,,,,,"730964683","9187441330",,,,"2011-09-19T11:32:29-0500","GREGG JAYNES",,,,,265,254,7,7,268,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","13","1","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919123213P040136283793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE PEDIATRIC SPECIALISTS MEDICAL GROUP, INC. 401(K) PROFIT SHARING PLAN","001","2009-01-01","THE PEDIATRIC SPECIALISTS MEDICAL GROUP, INC.",,,"138 WEST BRANCH STREET",,"ARROYO GRANDE","CA","93420",,,,,,,,,,,,,,,,,,"680660940","8054813166","621111","THE PEDIATRIC SPECIALISTS MEDICAL GROUP, INC.",,"138 WEST BRANCH STREET",,"ARROYO GRANDE","CA","93420",,,,,,,"680660940","8054813166",,,,"2011-09-19T12:31:56-0500","DOUGLAS S. HENDRY",,,,,4,4,0,0,4,0,4,4,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919125445P040020298754001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WATERMILL LUMBER & HOME CENTER INC. PROFIT SHARING","001","1995-01-01","WATER MILL BUILDING SUPPLY INC",,,"624 W 52ND ST",,"NEW YORK","NY","100195013",,,,,,,"624 W 52ND ST",,"NEW YORK","NY","100195013",,,,,,,"261476488","6317264493","444110","WATER MILL BUILDING SUPPLY INC",,"624 W 52ND ST",,"NEW YORK","NY","100195013",,,,,,,"261476488","6317264493",,,,"2011-09-19T12:36:13-0500","TIMOTHY MOHEN",,,,,108,71,37,0,108,0,108,82,0,,"2E3D3H","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920095944P040617063664001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAKER & DANIELS LLP GROUP MEDICAL PLAN","501","1975-01-01","BAKER & DANIELS LLP",,,"300 N MERIDIAN","SUITE 2700","INDIANAPOLIS","IN","46204",,,,,,,"300 N MERIDIAN","SUITE 2700","INDIANAPOLIS","IN","46204",,,,,,,"350837902","3172370300","541110","BAKER & DANIELS LLP",,"300 N MERIDIAN","SUITE 2700","INDIANAPOLIS","IN","46204",,,,,,,"350837902","3172370300",,,,"2011-09-19T17:53:27-0500","JOHN PURCELL",,,,,532,545,8,0,553,,553,,,,,"4A4E","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920114024P040136888609001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"WESTERN ASSET INVESTMENT GRADE LONG DURATION, L.L.C.","001",,"WESTERN ASSET MANAGEMENT COMPANY",,,"385 EAST COLORADO BOULEVARD",,"PASADENA","CA","911011923",,,,,,,,,,,,,,,,,,"261373067","6268449400",,"WESTERN ASSET MANAGEMENT COMPANY",,"385 EAST COLORADO BOULEVARD",,"PASADENA","CA","911011923",,,,,,,"261373067","6268449400",,,,,,,,"2011-09-20T11:38:22-0500","PETER C. DIBONA",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1","1","1","FILING_RECEIVED","2011-09-20",,"Filed with incorrect/unrecognized electronic signature", "20110919084546P040136171617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INSTITUTO COMMERCIAL DE PUERTO RICO,INC. DBA ICPR JUNIOR COLLEGE RETIREMENT PLAN","001","1999-01-01","INSTITUTO COMMERCIAL DE PR, INC.",,,"PO BOX 190304",,"SAN JUAN","PR","009190304",,,,,,,,,,,,,,,,,,"660494952","7877536335","611000","INSTITUTO COMMERCIAL DE PR, INC.",,"PO BOX 190304",,"SAN JUAN","PR","009190304",,,,,,,"660354046","7877536335",,,,"2011-09-19T08:41:15-0500","RAMON A. NEGRON",,,,,120,124,2,5,131,0,131,114,2,,"2E2F2G2T3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919145029P030620255616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADVOCARE, LLC / CONTINUUM HEALTH ALLIANCE, LLC 401K PROFIT SHARING PLAN","001","1998-02-01","ADVOCARE, LLC",,,"402-404 LIPPINCOTT DRIVE",,"MARLTON","NJ","08053",,,,,,,,,,,,,,,,,,"223537011","8567823300","621111","ADVOCARE, LLC",,"402-404 LIPPINCOTT DRIVE",,"MARLTON","NJ","08053",,,,,,,"223537011","8567823300",,,,"2011-09-19T14:48:16-0500","HOWARD OREL",,,,,1337,1196,0,119,1315,0,1315,1107,56,,"2A2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919151442P030019536578001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IPS WORLDWIDE, LLC 401K PLAN","001","2005-01-01","IPS WORLDWIDE, LLC",,,"265 CLYDE MORRIS BLVD.",,"ORMOND BEACH","FL","32174",,,,,,,,,,,,,,,,,,"421588672","3866727727","488990","IPS WORLDWIDE, LLC",,"265 CLYDE MORRIS BLVD.",,"ORMOND BEACH","FL","32174",,,,,,,"421588672","3866727727",,,,"2011-09-19T15:13:53-0500","TERESA MALMBERG",,,,,161,124,0,19,143,0,143,47,0,,"2T3D2E2F2G2J2K3H3B",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920142258P030019617858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"O'DANIEL AUTOMOTIVE GROUP 401(K) SAVINGS PLAN","001","1969-06-02","ODANIEL AUTOMOTIVE, INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"352026878","6207938473","441110","ODANIEL AUTOMOTIVE, INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"352026878","6207938473",,,,"2011-09-20T14:22:24-0500","DAVID GUTTING",,,,,144,123,0,12,135,0,135,114,0,,"2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110919144143P030133062321001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"THE FOREST AT DUKE MEDICAL PLAN","503","1992-08-01","THE FOREST AT DUKE",,,"2701 PICKETT RD",,"DURHAM","NC","277055688",,,,,,,,,,,,,,,,,,"561630158","9194908000","623000","THE FOREST AT DUKE",,"2701 PICKETT RD",,"DURHAM","NC","277055688",,,,,,,"561630158","9194908000",,,,"2011-09-19T14:40:59-0500","CHARLENE KEITH",,,,,125,139,3,3,145,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920152558P040137008673001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"3-10 YEAR U.S. TREASURY INDX SL FUND (CM1L)","470",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"040025081","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-20T15:25:10-0500","MATTHEW A. BOYER",,,"2011-09-20T15:25:10-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110920152716P040617762880001","2010-12-21","2011-06-30","2",,"1","0","0","1","0","0","0","0","0",,"CORE NUTRITION, INC. 401(K) PLAN","001","2010-12-21","CORE NUTRITION, INC.",,,"913 CIRCLE DRIVE",,"INDEPENDENCE","KS","67301",,,,,,,,,,,,,,,,,,"274350197","6203300861","812190","CORE NUTRITION, INC.",,"913 CIRCLE DRIVE",,"INDEPENDENCE","KS","67301",,,,,,,"274350197","6203300861",,,,"2011-09-20T15:26:42-0500","KENNETH HOGAN","2011-09-20T15:26:42-0500","KENNETH HOGAN",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920120034P030133649233007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CONTINENTAL PRODUCTS & SERVICES, INC.,","001","2002-01-01","CONTINENTAL PRODUCTS & SERVICES IN",,,"P O BOX 576",,"HUDSON","OH","442360576",,,,,,,,,,,,,,,,,,"341911491","3306565616","621112","CONTINENTAL PRODUCTS & SERVICES IN",,"P O BOX 576",,"HUDSON","OH","442360576",,,,,,,"341911491","3306565616",,,,"2011-09-20T03:55:34-0500","RICK KNAPPER","2011-09-20T03:55:34-0500","RICK KNAPPER",,,2,2,0,0,2,,2,2,,,"2E2J2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110919115630P030132980561001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"EMERITI RETIREE HEALTH PLAN FOR SAINT MARY'S COLLEGE OF CALIFORNIA","625","2007-07-01","SAINT MARYS COLLEGE OF CALIFORNIA",,,"1928 ST MARYS ROAD",,"MORAGA","CA","94575",,,,,,,"1928 ST MARYS ROAD",,"MORAGA","CA","94575",,,,,,,"941156599","9256314571","611000","SAINT MARYS COLLEGE OF CALIFORNIA",,"1928 ST MARYS ROAD",,"MORAGA","CA","94575",,,,,,,"941156599","9256314571",,,,"2011-09-19T11:55:09-0500","JEANNE DEMATTEO",,,,,420,369,62,82,513,2,515,0,0,,,"4A4D","1",,"1",,"1",,"1",,,,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919153903P040044030167001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RENESAS ELECTRONICS AMERICA INC. SEVERANCE PAYMENT PLAN","512","1998-11-23","RENESAS ELECTRONICS AMERICA INC.",,,"2880 SCOTT BLVD.",,"SANTA CLARA","CA","95050",,,,,,,,,,,,,,,,,,"941644609","4085886000","334110","RENESAS ELECTRONICS AMERICA INC.",,"2880 SCOTT BLVD.",,"SANTA CLARA","CA","95050",,,,,,,"941644609","4085886000","NEC ELECTRONICS AMERICA, INC.","941644609","512","2011-09-19T14:28:44-0500","SHARON MAIDEN",,,,,857,824,0,0,824,,824,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110919173008P040136419073001","2010-03-01","2011-02-28","2",,,"1",,,,,,,,,"FORTHS FOODS INC EMPLOYEE BENEFIT PLAN","501","1993-03-01","FORTH FOODS, INC.",,,"3090 WOODVILLE DRIVE",,"HUNTINGTON","WV","25701",,,,,,,,,,,,,,,,,,"550679166","3045253293","445110","FORTH FOODS, INC.",,"3090 WOODVILLE DRIVE",,"HUNTINGTON","WV","25701",,,,,,,"550679166","3045253293",,,,"2011-09-19T18:14:26-0500","CHARLES FORTH",,,,,112,115,0,0,115,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-09-19","Filed with authorized/valid electronic signature",, "20110920093005P040617004688001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"FLARE HEATING & AIR CONDITIONING OF GOLDEN VALLEY, INC. 401(K) PROFIT SHARING PLAN","001","1991-05-05","FLARE HEATING & AIR CONDITIONING OF GOLDEN VALLEY, INC.",,,"9303 PLYMOUTH AVE. NORTH",,"GOLDEN VALLEY","MN","55427",,,,,,,,,,,,,,,,,,"411419545","7635421166","238220","FLARE HEATING & AIR CONDITIONING OF GOLDEN VALLEY, INC.",,"9303 PLYMOUTH AVE. NORTH",,"GOLDEN VALLEY","MN","55427",,,,,,,"411419545","7635421166",,,,"2011-09-20T09:29:04-0500","PAT SURPRISON",,,,,31,21,0,9,30,0,30,30,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920093559P030133573857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENSECO ENERGY SERVICES USA CORP. 401(K) PLAN","001","2008-08-01","ENSECO ENERGY SERVICES USA CORP.",,,"5220 N BROADWAY UNIT 1",,"MINOT","ND","58703",,,,,,,,,,,,,,,,,,"711047518","4038060088","213110","ENSECO ENERGY SERVICES USA CORP.",,"5220 N BROADWAY UNIT 1",,"MINOT","ND","58703",,,,,,,"711047518","4038060088",,,,"2011-09-20T09:35:28-0500","JOHN GALLICHAN",,,,,33,18,0,0,18,0,18,10,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110920093600P040136814017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRESHAM, SMITH AND PARTNERS INSURANCE BENEFITS PLAN","501","1967-04-01","GRESHAM, SMITH AND PARTNERS",,,"511 UNION STREET, SUITE 1400",,"NASHVILLE","TN","37219",,,,,,,,,,,,,,,,,,"620794126","6157708100","541310","GRESHAM, SMITH AND PARTNERS",,"511 UNION STREET, SUITE 1400",,"NASHVILLE","TN","37219",,,,,,,"620794126","6157708100",,,,"2011-09-20T09:35:38-0500","KENNETH WEST","2011-09-20T09:35:38-0500","KENNETH WEST",,,675,542,45,0,587,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110920143425P040136976273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHASTON ASSOCIATES, INC. 401(K) PLAN","001","1989-01-01","CHASTON ASSOCIATES, INC.",,,"555 TURNPIKE ST. SUITE 45",,"NORTH ANDOVER","MA","01845",,,,,,,"555 TURNPIKE ST. SUITE 45",,"NORTH ANDOVER","MA","01845",,,,,,,"042824377","9786863688","541600","CHASTON ASSOCIATES, INC.",,"555 TURNPIKE ST. SUITE 45",,"NORTH ANDOVER","MA","01845",,,,,,,"042824377","9786863688",,,,"2011-09-20T14:31:35-0500","JAMES CHASTON",,,,,32,25,0,7,32,0,32,29,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110922143743P030134929825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FAMILY LIFE INSURANCE COMPANY EMPLOYEES' RETIREMENT PLAN","001","1967-04-01","FAMILY LIFE CORPORATION",,,"300 WEST 11TH STREET",,"KANSAS CITY","MO","64105",,,,,,,,,,,,,,,,,,"911533898","8163912000","524140","FAMILY LIFE CORPORATION",,"300 WEST 11TH STREET",,"KANSAS CITY","MO","64105",,,,,,,"911533898","8163912000",,,,"2011-09-22T14:37:20-0500","MARGARET CREEK",,,,,220,0,36,158,194,0,194,,0,,"1A1G1I3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110921153633P040137647489001","2010-01-01","2010-12-31","4","C","1","0","0","0","0","0","0","0","0",,"INTERMEDIATE CREDIT BOND FUND","008",,"AON INVESTMENT CONSULTING, INC.",,"ATTN NICOLE ROBERTSON","3565 PIEDMONT RD. NE BUILDING ONE",,"ATLANTA","GA","30305",,,,,,,,,,,,,,,,,,"272436452","4042407614",,"AON INVESTMENT CONSULTING, INC.",,"3565 PIEDMONT RD. NE BUILDING ONE",,"ATLANTA","GA","30305",,,,,,,"592706923","4042407614",,,,,,,,"2011-09-21T15:13:53-0500","NICOLE ROBERTSON",,,,,0,,0,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-21",,"Filed with authorized/valid electronic signature", "20110921150357P040137632817001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"INTECH BROAD ENHANCED PLUS FUND LLC","001",,"JANUS CAPITAL MANAGEMENT",,"C/O STATE STREET BANK & TRUST CO.","2 AVE DE LAFAYETTE LLC6",,"BOSTON","MA","021112900",,,,,,,,,,,,,,,,,,"161776212","6177863000",,"JANUS CAPITAL MANAGEMENT","C/O STATE STREET BANK & TRUST CO.","2 AVE DE LAFAYETTE LLC6",,"BOSTON","MA","021112900",,,,,,,"161776212","6177863000",,,,,,,,"2011-09-21T15:02:42-0500","JAN H. BARBAS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-21",,"Filed with authorized/valid electronic signature", "20110921170217P040137691809001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"MOBILE PRESS REGISTER BARGAINING UNIT 401(K) PLAN","004","1999-02-01","MOBILE PRESS REGISTER, INC.",,,"401 NORTH WATER STREET",,"MOBILE","AL","36602",,,,,,,,,,,,,,,,,,"112126742","2512195400","511110","MOBILE PRESS REGISTER, INC.",,"401 NORTH WATER STREET",,"MOBILE","AL","36602",,,,,,,"112126742","2512195400",,,,"2011-09-21T17:01:13-0500","LEE STRINGFELLOW",,,,,11,10,0,0,10,0,10,2,0,,"2F2G2J2T3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922145200P030134936257001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"BOB BAKER ENTERPRISES, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","1985-06-01","BOB BAKER ENTERPRISES INC.",,,"591 CAMINO DE LA REINA","SUITE 1100","SAN DIEGO","CA","92108",,,,,,,"591 CAMINO DE LA REINA","SUITE 1100","SAN DIEGO","CA","92108",,,,,,,"330062813","6192971001","441110","BOB BAKER ENTERPRISES INC.",,"591 CAMINO DE LA REINA","SUITE 1100","SAN DIEGO","CA","92108",,,,,,,"330062813","6192971001",,,,"2011-09-22T14:51:48-0500","JEFFREY MAXWELL",,,,,464,354,1,79,434,3,437,319,22,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922151955P030019804850001","2010-01-01","2010-12-31","4","P","1","0","0","0","0","0","0","0","0",,"SIA-E5 (NON-CLIENT SAGIC CORE BOND II)","182",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,,,,,,,,,,,,"900342299","4137443351",,"MASSACHUSETTS MUTUAL LIFE INSURANCE",,"1295 STATE STREET",,"SPRINGFIELD","MA","01111",,,,,,,"900342299","4137443351",,,,,,,,"2011-09-22T15:19:09-0500","ERIC H. WIETSMA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-22",,"Filed with authorized/valid electronic signature", "20110923093727P040138724721007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CAMPUS FEDERAL CREDIT UNION EMPLOYEE BENEFIT PLAN","501","1988-01-01","CAMPUS FEDERAL CREDIT UNION",,,"6230 PERKINS ROAD",,"BATON ROUGE","LA","70808",,,,,,,"6230 PERKINGS ROAD",,"BATON ROUGE","LA","70808",,,,,,,"720452899","2257698841","522130","CAMPUS FEDERAL CREDIT UNION",,"6230 PERKINS ROAD",,"BATON ROUGE","LA","70808",,,,,,,"720452899","2257698841",,,,"2011-09-23T04:12:33-0500","MARY K FORD","2011-09-23T04:12:33-0500","MARY K FORD",,,144,149,,,149,,,,,,,"4A4B4D4F4H4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922160742P030134974145001","2007-08-01","2008-07-31","2",,"0","0","0","0","0","0","0","1","0",,"KLUPENGERS NURSERY LLC RESTATED PROFIT SHARING PLAN","001","1967-08-01","KLUPENGERS NURSERY LLC",,,"DIANE BURNETT","24075 KLUPENGER ROAD NE","AURORA","OR","97002",,,,,,,,,,,,,,,,,,"202329138","5036785838","111400","KLUPENGERS NURSERY LLC",,"DIANE BURNETT","24075 KLUPENGER ROAD NE","AURORA","OR","97002",,,,,,,"202329138","5036785838",,,,"2011-09-22T16:07:35-0500","DIANE D. BURNETT",,,,,135,92,0,52,144,0,144,102,11,,"2E2F2G2J",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110920171515P030019628994001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"WESTERN TUBE & CONDUIT CORPORATION 401(K) PROFIT SHARING PLAN","001","1972-10-23","WESTERN TUBE & CONDUIT CORPORATION",,,"P O BOX 2720",,"LONG BEACH","CA","908012720",,,,,,,,,,,,,,,,,,"362554445","3105376300","331200","WESTERN TUBE & CONDUIT CORPORATION",,"P O BOX 2720",,"LONG BEACH","CA","908012720",,,,,,,"362554445","3105376300",,,,"2011-09-20T17:15:10-0500","ROGER POST","2011-09-20T17:15:10-0500","ROGER POST",,,289,276,0,8,284,0,284,220,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921131148P040137580289005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CORNERSTONE HEALTH CARE, P.A. HEALTH INSURANCE PLAN","502","1995-10-01","CORNERSTONE HEALTH CARE, P.A.",,,"1701 WESTCHESTER DRIVE, SUITE 850",,"HIGH POINT","NC","27262",,,,,,,,,,,,,,,,,,"561935767","3368022430","621111","CORNERSTONE HEALTH CARE, P.A.",,"1701 WESTCHESTER DRIVE, SUITE 850",,"HIGH POINT","NC","27262",,,,,,,"561935767","3368022430",,,,"2011-09-15T09:04:01-0500","GRACE E. TERRELL",,,,,1175,1208,,,1208,,,,,,,"4A4B4H","1",,"1",,"1",,"1",,,,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922163122P040138314017001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"UNDERWOOD COLLEGE JEWELRY 401(K) PLAN","001","1963-07-01","UNDERWOOD COLLEGE JEWELRY",,,"611 W. DICKSON ST.",,"FAYETTEVILLE","AR","72701",,,,,,,"611 W. DICKSON ST.",,"FAYETTEVILLE","AR","72701",,,,,,,"710350379","4795212000","448310","UNDERWOOD COLLEGE JEWELRY",,"611 W. DICKSON ST.",,"FAYETTEVILLE","AR","72701",,,,,,,"710350379","4795212000",,,,"2011-09-22T16:30:56-0500","ROBIN GUADAGNINI",,,,,22,22,,,22,,22,22,0,,"2E2J2K3F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922181546P040138350801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"M & G DRILLING COMPANY, INC. PROFIT SHARING PLAN","004","1997-04-01","M & G DRILLING COMPANY, INC.",,,"919 W. MONTEREY",,"STOCKTON","CA","95204",,,,,,,"BONNIE VISTICA","919 W. MONTEREY","STOCKTON","CA","95204",,,,,,,"330451953","2099437243","211110","M & G DRILLING COMPANY, INC.",,"919 W. MONTEREY",,"STOCKTON","CA","95204",,,,,,,"330451953","2099437243",,,,"2011-09-22T18:00:00-0500","BONNIE VISTICA","2011-09-22T18:00:00-0500","BONNIE VISTICA",,,2,2,0,0,2,0,2,2,0,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923110419P030135430721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOUSTON DISTRIBUTING CO. INC. TAX ADVANTAGE RETIREMENT SAVINGS PLAN","001","1984-01-01","HOUSTON DISTRIBUTING COMPANY INC.",,,"7100 HIGH LIFE DRIVE",,"HOUSTON","TX","77066",,,,,,,,,,,,,,,,,,"741608783","2818802730","424800","HOUSTON DISTRIBUTING COMPANY INC.",,"7100 HIGH LIFE DRIVE",,"HOUSTON","TX","77066",,,,,,,"741608783","2818802730",,,,"2011-09-23T08:48:36-0500","DEBRA BAGGETT","2011-09-23T08:48:36-0500","DEBRA BAGGETT",,,455,375,1,29,405,1,406,228,8,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923111839P030044181815001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAY P. CANNON, M.D., P.C. 401(K) PLAN","001","2004-01-01","JAY P. CANNON, MD, PC",,,"3435 N.W. 56TH STREET, SUITE 210",,"OKLAHOMA CITY","OK","73112",,,,,,,,,,,,,,,,,,"760703194","4059454240","621111","JAY P. CANNON, MD, PC",,"3435 N.W. 56TH STREET, SUITE 210",,"OKLAHOMA CITY","OK","73112",,,,,,,"760703194","4059454240",,,,"2011-09-23T11:17:50-0500","JAY P. CANNON, MD","2011-09-23T11:17:50-0500","JAY P. CANNON, MD",,,4,2,0,1,3,0,3,3,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922020411P030019752402001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RAPID CITY MEDICAL CENTER 401(K) PLAN","002","1997-01-01","RAPID CITY MEDICAL CENTER, LLP",,,"PO BOX 6020","2820 MT RUSHMORE ROAD","RAPID CITY","SD","57709",,,,,,,,,,,,,,,,,,"460218851","6057218317","621111","RAPID CITY MEDICAL CENTER, LLP",,"PO BOX 6020","2820 MT RUSHMORE ROAD","RAPID CITY","SD","57709",,,,,,,"460218851","6057218317",,,,"2011-09-20T07:39:56-0500","DARREL RIDDLE",,,,,369,295,0,50,345,0,345,343,0,,"2E2G2J2K3B3D2R2F2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922075338P040138057073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHARP CORPORATION CAFETERIA PLAN","501","2008-08-11","SHARP CORPORATION",,,"23 CARLAND ROAD",,"CONSHOHOCKEN","PA","19428",,,,,,,,,,,,,,,,,,"231989163","6102396609","561900","SHARP CORPORATION",,"23 CARLAND ROAD",,"CONSHOHOCKEN","PA","19428",,,,,,,"231989163","6102396609",,,,"2011-09-22T07:53:30-0500","ROBERT D. COHEN","2011-09-22T07:53:30-0500","DAVID THOMSON",,,395,391,5,0,396,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923124125P030135488145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEGO SYSTEMS INC GROUP INSURANCE PLAN","501","1978-01-01","LEGO SYSTEMS INC",,,"555 TAYLOR ROAD",,"ENFIELD","CT","06082",,,,,,,,,,,,,,,,,,"060891387","8607492291","339900","LEGO SYSTEMS INC",,"555 TAYLOR ROAD",,"ENFIELD","CT","06082",,,,,,,"060891387","8607492291",,,,"2011-09-23T12:40:52-0500","GARY GORDON",,,,,765,1229,0,0,1229,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110920164300P040020405458001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COASTAL ADMINISTRATIVE SERVICES, LLC PREMIUM PAYMENT PLAN","501","1993-03-01","COASTAL ADMINISTRATIVE SERVICES",,,"303 PERIMETER CENTER N, SUITE 500",,"ATLANTA","GA","30346",,,,,,,,,,,,,,,,,,"201002338","7706989040","623000","COASTAL ADMINISTRATIVE SERVICES",,"303 PERIMETER CENTER N, SUITE 500",,"ATLANTA","GA","30346",,,,,,,"201002338","7706989040",,,,"2011-09-20T16:42:57-0500","MARK LINN",,,,,304,508,16,0,524,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-20","Filed with authorized/valid electronic signature",, "20110921143037P040003895204001","2010-05-01","2010-12-31","2",,"0","0","1","1","0","1","0","0","0",,"ZACK COOPER & ASSOCIATES, INC. DEFINED BENEFIT PENSION PLAN","001","2005-05-01","ZACK COOPER & ASSOCIATES, INC.",,,"6055 EAST WASHINGTON BLVD, STE 1090",,"COMMERCE","CA","900402438",,,,,,,,,,,,,,,,,,"201981416","3237220812","524210","ZACK COOPER & ASSOCIATES, INC.",,"6055 EAST WASHINGTON BLVD, STE 1090",,"COMMERCE","CA","900402438",,,,,,,"201981416","3237220812",,,,"2011-09-21T14:29:38-0500","ZACK COOPER",,,,,5,0,0,0,0,0,0,,0,,"1A1H3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922140830P040138240449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GLEN WEXLER STUDIO INC PROFIT SHARING PLAN","001","1996-01-01","GLEN WEXLER STUDIO INC",,,"3274 N KNOLL DR",,"LOS ANGELES","CA","900681518",,,,,,,,,,,,,,,,,,"954670186","3234650268","541920","GLEN WEXLER STUDIO INC",,"3274 N KNOLL DR",,"LOS ANGELES","CA","900681518",,,,,,,"954670186","3234650268",,,,"2011-09-22T14:08:29-0500","GLEN LOUIS WEXLER",,,,,9,8,0,0,8,0,8,7,0,,"2E2A3D","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922082540P030134732897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BROWN GRAHAM & CO., P.C. 401(K) PROFIT SHARING PLAN","001","1993-01-01","BROWN GRAHAM & CO., P.C.",,,"3232 HOBBS",,"AMARILLO","TX","791093224",,,,,,,,,,,,,,,,,,"751386677","8063558241","541211","BROWN GRAHAM & CO., P.C.",,"3232 HOBBS",,"AMARILLO","TX","791093224",,,,,,,"751386677","8063558241",,,,"2011-09-22T08:25:00-0500","LARRY WHITE",,,,,108,95,0,18,113,0,113,113,1,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922084324P040138080529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HYATT LEGAL PLANS, INC.","542","2006-04-01","TERADYNE, INC.",,,"700 RIVERPARK DRIVE","MAILSTOP NR-700-2-1","NORTH READING","MA","01864",,,,,,,,,,,,,,,,,,"042272148","9783702700","335900","TERADYNE, INC.",,"700 RIVERPARK DRIVE","MAILSTOP NR-700-2-1","NORTH READING","MA","01864",,,,,,,"042272148","9783702700",,,,"2011-09-22T08:42:57-0500","DAVID SHOREY",,,,,160,180,0,0,180,,,,,,,"4G","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110921204934P030134490897001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"PISTON ENGINE PARTS, INC. 401(K) PROFIT SHARING PENSION PLAN & TRUST","001","1997-01-01","PISTON ENGINE PARTS, INC.",,,"1951 E. 48TH STREET",,"VERNON","CA","90058",,,,,,,"1951 E. 48TH STREET",,"VERNON","CA","90058",,,,,,,"953784732","3235823440","423100","PISTON ENGINE PARTS, INC.",,"1951 E. 48TH STREET",,"VERNON","CA","90058",,,,,,,"953784732","3235823440",,,,"2011-09-21T20:49:07-0500","TIFFANY GROSS",,,,,35,32,0,9,41,1,42,42,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921163542P030134391265001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"DOSKOCIL FOOD SERVICE COMPANY - JEFFERSON RETIREMENT INCOME PLAN","001","1962-01-01","TYSON PREPARED FOODS, INC.","C/O TYSON FOODS, INC.",,"P.O. BOX 2020",,"SPRINGDALE","AR","72762",,,,,,,,,,,,,,,,,,"481175514","4792904000","112300","TYSON FOODS, INC.",,"P.O. BOX 2020",,"SPRINGDALE","AR","72762",,,,,,,"710225165","4792904000",,,,"2011-09-21T16:35:14-0500","LEE KIDD",,,,,505,133,98,251,482,20,502,,0,,"1B1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922152840P030019805410001","2010-08-01","2010-12-31","2",,"0","1","0","1","0","1","0","0","0",,"HUSCH & HUSCH, INC. PROFIT SHARING PLAN","001","1972-07-28","HUSCH & HUSCH, INC.",,,"PO BOX 22700",,"YAKIMA","WA","989072700",,,,,,,,,,,,,,,,,,"910787596","5099662684","115110","HUSCH & HUSCH, INC.",,"PO BOX 22700",,"YAKIMA","WA","989072700",,,,,,,"910787596","5099662684",,,,"2011-09-22T15:23:36-0500","DEANNA HUSCH","2011-09-22T15:23:36-0500","DEANNA HUSCH",,,24,22,1,0,23,1,24,20,0,,"2E2F2H2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923094359P030135395457001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"COMMUNITY FINANCIAL CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","005","1962-12-27","COMMUNITY FINANCIAL CORPORATION",,,"P O BOX 1209","38 NORTH CENTRAL AVENUE","STAUNTON","VA","244021209",,,,,,,,,,,,,,,,,,"541532044","5408860796","522110","COMMUNITY FINANCIAL CORPORATION",,"P O BOX 1209","38 NORTH CENTRAL AVENUE","STAUNTON","VA","244021209",,,,,,,"541532044","5408860796",,,,"2011-09-23T09:43:37-0500","R JERRY GILES","2011-09-23T09:43:37-0500","R JERRY GILES",,,28,24,0,4,28,0,28,28,0,,"2O2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921134107P040620345504001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"PETKUS BROTHERS 401(K) PLAN","001","1996-04-01","PBC ENTERPRISES, DBA PETKUS BROTHERS",,,"3600 SUNRISE BLVD",,"RANCHO CORDOVA","CA","95742",,,,,,,"3600 SUNRISE BLVD",,"RANCHO CORDOVA","CA","95742",,,,,,,"680293459","9166359966","236110","PBC ENTERPRISES, DBA PETKUS BROTHERS",,"3600 SUNRISE BLVD",,"RANCHO CORDOVA","CA","95742",,,,,,,"680293459","9166359966",,,,"2011-09-21T13:36:22-0500","DAN PETKUS",,,,,20,13,0,4,17,0,17,17,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921131317P040020486130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHWEST ORTHOPEDIC CONSULTANTS, INC. PROFIT SHARING PLAN AND TRUST","003","1998-01-01","NORTHWEST ORTHOPEDIC CONSULTANTS, INC.",,,"99 EAST 86TH AVENUE, SUITE C",,"MERRILLVILLE","IN","46410",,,,,,,,,,,,,,,,,,"351437128","2197694835","621111","NORTHWEST ORTHOPEDIC CONSULTANTS, INC.",,"99 EAST 86TH AVENUE, SUITE C",,"MERRILLVILLE","IN","46410",,,,,,,"351437128","2197694835",,,,"2011-09-21T13:12:59-0500","ALFRED L. BONJEAN",,,,,7,7,0,0,7,0,7,7,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922112208P040622837408001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"CATALYST PAPER (SNOWFLAKE) INC. HEALTH & WELFARE PLAN","503","2008-04-10","CATALYST PAPER SNOWFLAKE INC.",,,"277 SPUR NORTH","P.O. BOX 128","SNOWFLAKE","AZ","85937",,,,,,,,,,,,,,,,,,"753267015","9285369218","322100","CATALYST PAPER SNOWFLAKE INC.",,"277 SPUR NORTH","P.O. BOX 128","SNOWFLAKE","AZ","85937",,,,,,,"753267015","9285369218",,,,"2011-09-22T11:21:49-0500","AMBER STONESTREET",,,,,306,300,20,0,320,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110921101138P040137488545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACR ELECTRONICS, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1992-07-01","ACR ELECTRONICS, INC.",,,"5757 RAVENSWOOD ROAD",,"FORT LAUDERDALE","FL","33312",,,,,,,"5757 RAVENSWOOD ROAD",,"FORT LAUDERDALE","FL","33312",,,,,,,"650160389","9548622121","334200","ACR ELECTRONICS, INC.",,"5757 RAVENSWOOD ROAD",,"FORT LAUDERDALE","FL","33312",,,,,,,"650160389","9548622121",,,,"2011-09-21T10:10:42-0500","RICHARD HORN",,,,,173,152,0,16,168,0,168,168,5,,"2E2F2G2J2K3D3H2T2S",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921125337P030134292497001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DANA HALL SCHOOL PRE-TAX BENEFIT PLAN","505","1990-01-01","DANA HALL SCHOOL",,,"PO BOX 9010","45 DANA ROAD","WELLESLEY","MA","02482",,,,,,,"PO BOX 9010","45 DANA ROAD","WELLESLEY","MA","02482",,,,,,,"042103562","7812353010","611000","DANA HALL SCHOOL",,"PO BOX 9010","45 DANA ROAD","WELLESLEY","MA","02482",,,,,,,"042103562","7812353010",,,,"2011-09-21T10:14:38-0500","CHARLES BRESLIN",,,,,132,132,,,132,,132,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921071749P040020460866001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"DICK'S SPORTING GOODS, INC. HEALTH AND WELFARE PLAN","501","1991-10-01","DICK'S CLOTHING AND SPORTING GOODS, INC.",,,"345 COURT STREET",,"CORAOPOLIS","PA","15108",,,,,,,"345 COURT STREET",,"CORAOPOLIS","PA","15108",,,,,,,"161241537","7242733400","451110","DICK'S CLOTHING AND SPORTING GOODS, INC.",,"345 COURT STREET",,"CORAOPOLIS","PA","15108",,,,,,,"161241537","7242733400",,,,"2011-09-21T07:17:39-0500","KIMBERLY KAPFER",,,,,10297,12272,,,12272,,12272,,,,,"4A4B4D4E4F4H4L4Q","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921140405P040137601793001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"LOS TRES UNIDOS 401K PLAN","002","2004-01-01","LOS TRES UNIDOS",,,"15 WEST 39 STREET","7TH FLOOR","NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"133098456","2124263218","531110","LOS TRES UNIDOS",,"15 WEST 39 STREET","7TH FLOOR","NEW YORK","NY","10018",,,,,,,"133098456","2124263218",,,,"2011-09-21T09:29:30-0500","LINDA SORO",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922150211P030019803970001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"HANDI-FOIL CORPORATION 401(K) PLAN","002","1991-01-01","HANDI-FOIL CORPORATION",,,"135 E HINTZ RD",,"WHEELING","IL","60090",,,,,,,"135 E HINTZ RD",,"WHEELING","IL","60090",,,,,,,"363309158","8475201000","332900","HANDI-FOIL CORPORATION",,"135 E HINTZ RD",,"WHEELING","IL","60090",,,,,,,"363309158","8475201000",,,,"2011-09-22T14:13:34-0500","PETER PERKINS",,,,,134,109,0,26,135,0,135,114,0,,"2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922132525P040020585602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOODFELLOW BROS., INC. PROFIT SHARING RETIREMENT TRUST","001","1959-01-01","GOODFELLOW BROS., INC.",,,"P.O. BOX 598",,"WENATCHEE","WA","988070598",,,,,,,,,,,,,,,,,,"910236810","5096627111","237990","GOODFELLOW BROS., INC.",,"P.O. BOX 598",,"WENATCHEE","WA","988070598",,,,,,,"910236810","5096627111",,,,"2011-09-22T13:25:10-0500","DANIEL R. REISENAUER","2011-09-22T13:25:10-0500","DANIEL R. REISENAUER",,,208,144,1,54,199,1,200,200,21,,"2E2F2J3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922123404P030134863585001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"NATHEL & NATHEL, INC. 401(K) PLAN FOR UNION EMPLOYEES","001","1996-01-01","NATHEL & NATHEL, INC.",,,"357 NYC TERMINAL MARKET",,"BRONX","NY","10474",,,,,,,,,,,,,,,,,,"132685629","7189916050","445230","NATHEL & NATHEL, INC.",,"357 NYC TERMINAL MARKET",,"BRONX","NY","10474",,,,,,,"132685629","7189916050",,,,"2011-09-22T12:33:08-0500","RICHARD J. BYLLOTT","2011-09-22T12:33:08-0500","RICHARD J. BYLLOTT",,,128,113,1,11,125,,125,79,0,,"2E2F2G2J3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921090346P030019689346001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"BTC COLL EMP BENE INTERNATIONAL FUND NO 5","155","1967-01-19","BESSEMER TRUST COMPANY",,"C/O BART SHARP","100 WOODBRIDGE CENTER DRIVE",,"WOODBRIDGE","NJ","07095",,,,,,,,,,,,,,,,,,"223176754","7326945571",,"BESSEMER TRUST COMPANY","C/O BART SHARP","100 WOODBRIDGE CENTER DRIVE",,"WOODBRIDGE","NJ","07095",,,,,,,"223176754","7326945571",,,,"2011-09-21T09:03:04-0500","BARTHOLOMEW SHARP","2011-09-21T09:03:04-0500","BARTHOLOMEW SHARP","2011-09-21T09:03:04-0500","BARTHOLOMEW SHARP",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110921102036P030019693138001","2010-04-01","2011-03-31","2",,"1","0","0","0","0","0","0","0","0",,"LIBRARY ASSOCIATES, INC. DBA LAC GROUP CAFETERIA PLAN","501","2009-04-01","LIBRARY ASSOCIATES, INC.",,,"11820 PARKLAWN DRIVE, SUITE 400",,"ROCKVILLE","MD","20852",,,,,,,,,,,,,,,,,,"954208617","3012315990","541990","LIBRARY ASSOCIATES, INC.",,"11820 PARKLAWN DRIVE, SUITE 400",,"ROCKVILLE","MD","20852",,,,,,,"954208617","3012315990",,,,"2011-09-21T10:20:32-0500","KRISTEN KNEUSSL","2011-09-21T10:20:32-0500","KRISTEN KNEUSSL",,,160,212,6,0,218,,,,,,,"4A4L4D4E4B4H4F","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921145502P040020495266001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"NATIONWIDE GROUP RETIREMENT TRUST","001",,"NATIONWIDE MUTUAL INSURANCE COMPANY",,,"ONE NATIONWIDE PLAZA 1-04-403",,"COLUMBUS","OH","432152220",,,,,,,,,,,,,,,,,,"204850145","6142496184",,"ADMINISTRATIVE COMMITTEE",,"ONE NATIONWIDE PLAZA 1-04-403",,"COLUMBUS","OH","432152220",,,,,,,"310882712","6142496184",,,,"2011-09-21T14:54:07-0500","TERESA WIENCEK","2011-09-21T11:08:10-0500","JOANNA MCGOLDRICK",,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921145508P040020495282001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KENMODE TOOL & ENGINEERING, INC. PROFIT SHARING PLAN & TRUST","001","1987-01-01","KENMODE TOOL & ENGINEERING, INC.",,,"820 WEST ALGONQUIN ROAD",,"ALGONQUIN","IL","60102",,,,,,,,,,,,,,,,,,"362426263","8476585041","332110","KENMODE TOOL & ENGINEERING, INC.",,"820 WEST ALGONQUIN ROAD",,"ALGONQUIN","IL","60102",,,,,,,"362426263","8476585041",,,,"2011-09-21T14:54:10-0500","KURT GASCHO",,,,,151,118,14,,132,0,132,132,0,,"2E2J2G2F3D2R2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921151335P030134358897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHATHAM STEEL CORPORATION - GROUP HEALTH PLAN","501","1988-11-01","CHATHAM STEEL CORPORATION",,,"P.O. BOX 2567",,"SAVANNAH","GA","31402",,,,,,,"501 W BOUNDARY STREET",,"SAVANNAH","GA","31401",,,,,,,"580676715","9122384182","423500","CHATHAM STEEL CORPORATION","REBECCA KEITH","P.O. BOX 2567",,"SAVANNAH","GA","31402",,,,,,,"580676715","9122384182",,,,"2011-09-21T15:10:00-0500","VANESSA SUTLIVE",,,,,285,267,36,0,303,,303,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110923074736P030630453616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HERSHEY ENTERTAINMENT & RESORTS COMPANY SEVERANCE PLAN","506","1988-01-01","HERSHEY ENTERTAINMENT & RESORTS COMPANY",,"NATHAN DOUTY","27 WEST CHOCOLATE AVE",,"HERSHEY","PA","17033",,,,,,,,,,,,,,,,,,"230691815","7175343160","721110","HERSHEY ENTERTAINMENT & RESORTS COMPANY","KIM MANN","27 WEST CHOCOLATE AVE",,"HERSHEY","PA","17033",,,,,,,"230691815","7175343160",,,,"2011-09-20T16:36:48-0500","KIM MANN","2011-09-19T13:03:53-0500","NATHAN DOUTY",,,1660,1638,,,1638,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922084444P040138081713001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"NOVO 1 INSURANCE PLAN","508","2010-01-01","NOVO 1",,"DIANE SHAFFER","4301 CAMBRIDGE RD",,"FORT WORTH","TX","76155",,,,,,,,,,,,,,,,,,"752068892","8173558759","561420","NOVO 1","DIANE SHAFFER","4301 CAMBRIDGE RD",,"FORT WORTH","TX","76155",,,,,,,"752068892","8173558759",,,,"2011-09-22T08:43:57-0500","DIANE SHAFFER","2011-09-22T08:43:57-0500","DIANE SHAFFER",,,508,886,0,0,886,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922090913P030627819168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CROWLEY HOLDINGS INC WELFARE HEALTH LIFE AND ACCIDENTAL DEATH AND DISMEMBERMENT","501","1975-01-01","CROWLEY HOLDINGS, INC.",,"DAVID HOLDEN","9487 REGENCY SQUARE BLVD",,"JACKSONVILLE","FL","32225",,,,,,,"9487 REGENCY SQUARE BLVD",,"JACKSONVILLE","FL","32225",,,,,,,"510667862","9047272334","483000","CROWLEY HOLDINGS, INC.","DAVID HOLDEN","9487 REGENCY SQUARE BLVD",,"JACKSONVILLE","FL","32225",,,,,,,"510667862","9047272334",,,,"2011-09-22T08:00:27-0500","DAVID HOLDEN","2011-09-22T08:28:59-0500","DAVID HOLDEN",,,1727,1639,130,,1769,,1769,,,,,"4A4B4D4E4F4H4I","1",,,"1","1",,,"1",,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922103917P030134806161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANTHONY N. DICESARE DDS, P.A. 401(K) PLAN","003","2006-08-31","ANTHONY N. DICESARE, DDS, P.A.",,,"240 HALF MILE RD",,"RED BANK","NJ","07701",,,,,,,"240 HALF MILE RD",,"RED BANK","NJ","07701",,,,,,,"221830494","7327477901","621210","ANTHONY N. DICESARE, DDS, P.A.",,"240 HALF MILE RD",,"RED BANK","NJ","07701",,,,,,,"221830494","7327477901",,,,"2011-07-21T15:11:58-0500","ANTHONY N DI CESARE",,,,,11,11,0,2,13,0,13,12,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110921102231P040137495025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EDAC TECHNOLOGIES CORPORATION 401(K) RETIREMENT PLAN","005","1966-12-12","EDAC TECHNOLOGIES CORPORATION",,,"1806 NEW BRITAIN AVENUE",,"FARMINGTON","CT","060323114",,,,,,,,,,,,,,,,,,"391515599","8606797423","332900","EDAC TECHNOLOGIES CORPORATION",,"1806 NEW BRITAIN AVENUE",,"FARMINGTON","CT","060323114",,,,,,,"391515599","8606797423",,,,"2011-09-21T10:21:16-0500","GLENN L. PURPLE","2011-09-21T10:21:16-0500","GLENN L. PURPLE",,,404,342,0,74,416,0,416,308,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921115704P040620117120001","2010-01-01","2010-12-31","2",,"0",,"0","0",,"1",,,,,"LUSAMERICA 401(K) PLAN","001","1991-10-01","LUSAMERICA FOODS, INC.",,,"16480 RAILROAD AVENUE",,"MORGAN HILL","CA","95037",,,,,,,"16480 RAILROAD AVENUE",,"MORGAN HILL","CA","95037",,,,,,,"942349696","4087787200","424400","LUSAMERICA FOODS, INC.",,"16480 RAILROAD AVENUE",,"MORGAN HILL","CA","95037",,,,,,,"942349696","4087787200",,,,"2011-09-21T10:57:40-0500","ANA FREDERICO",,,,,140,201,0,10,211,0,211,46,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921143903P030625710576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OLYMPIC SOFTWARE INTERNATIONAL, INC. 401(K) PLAN","001","1999-01-01","OLYMPIC SORTWARE INTERNATIONAL, INC",,,"290 BROAD HOLLOW ROAD",,"MELVILLE","NY","11747",,,,,,,,,,,,,,,,,,"113442383","6313510655","541519","OLYMPIC SORTWARE INTERNATIONAL, INC",,"290 BROAD HOLLOW ROAD",,"MELVILLE","NY","11747",,,,,,,"113442383","6313510655",,,,"2011-09-21T07:48:50-0500","CHRIS MCLEAN",,,,,14,8,0,5,13,0,13,12,0,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921154508P030625856160002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RICES NURSERY & LANDSCAPING, INC. 401(K) PROFIT SHARING PLAN","001","1993-12-01","RICES NURSERY & LANDSCAPING, INC.",,"THOMAS RICE","1651 55TH STREET NE",,"CANTON","OH","44721",,,,,,,,,,,,,,,,,,"341345544","3304999857","444200","RICES NURSERY & LANDSCAPING, INC.","THOMAS RICE","1651 55TH STREET NE",,"CANTON","OH","44721",,,,,,,"341345544","3304999857",,,,"2011-09-21T15:55:18-0500","BRYAN RICE",,,,,28,28,0,0,28,0,28,62,,,"2E2G2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922155155P030134967121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MANATEE GLENS CORPORATION HEALTH BENEFIT PLAN","501","1988-07-01","MANATEE GLENS CORPORATION",,,"391 SIXTH AVENUE WEST",,"BRADENTON","FL","34205",,,,,,,,,,,,,,,,,,"591009537","9417824299","622000","MANATEE GLENS CORPORATION",,"391 SIXTH AVENUE WEST",,"BRADENTON","FL","34205",,,,,,,"591009537","9417824299",,,,"2011-09-22T15:51:16-0500","SEAN GINGRAS","2011-09-22T15:51:16-0500","SEAN GINGRAS",,,371,344,3,0,347,,,,,,,"4A4B4D4E4H","1","0","0","1","1","0","0","1","0","0","0","1","0","1","8","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922155301P030134967697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAX DEFERRED ANNUITY PLAN OF DYNAMIC YOUTH COMMUNITY INC","002","1990-01-01","KAREN CARLINI",,"DYNAMIC YOUTH COMMUNITY INC","1830 CONEY ISLAND AVENUE",,"BROOKLYN","NY","11230",,,,,,,"1830 CONEY ISLAND AVENUE",,"BROOKLYN","NY","11230",,,,,,,"112503506","7183767923","621420","KAREN CARLINI","DYNAMIC YOUTH COMMUNITY INC","1830 CONEY ISLAND AVENUE",,"BROOKLYN","NY","11230",,,,,,,"112503508","7183767923",,,,"2011-09-22T15:41:44-0500","KAREN CARLINI",,,,,24,16,,11,27,,27,27,0,,"2L",,"1",,,,"1",,,,,,,,"1","1","1","1","1",,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922102718P040138137953001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"SHASTA EYE MEDICAL GROUP RETIREMENT PLAN","002","2003-01-01","SHASTA EYE MEDICAL GROUP, INC.",,,"3190 CHURN CREEK RD",,"REDDING","CA","96002",,,,,,,"3190 CHURN CREEK RD",,"REDDING","CA","96002",,,,,,,"205756962","5302265966","621111","SHASTA EYE MEDICAL GROUP, INC.",,"3190 CHURN CREEK RD",,"REDDING","CA","96002",,,,,,,"205756962","5302265966",,,,"2011-09-21T23:06:20-0500","CHRISTOPHER LIN",,,,,53,46,0,8,54,0,54,51,1,,"2E2F2G2J2K2T3D3F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110921115801P040020480690001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUMITOMO MITSUI BANKING CORPORATION RETIREMENT PLAN","001","1979-04-01","SUMITOMO MITSUI BANKING CORPORATION",,,"277 PARK AVENUE",,"NEW YORK","NY","10172",,,,,,,,,,,,,,,,,,"135611820","2122244000","522120","SUMITOMO MITSUI BANKING CORPORATION",,"277 PARK AVENUE",,"NEW YORK","NY","10172",,,,,,,"135611820","2122244000",,,,"2011-09-21T11:57:29-0500","CHRISTINE CUTRONA",,,,,1261,655,93,526,1274,5,1279,,21,,"1A1C1G",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922221619P030019832482001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BITMAX, LLC 401(K) SAVINGS PLAN","001","2001-09-01","BITMAX, LLC",,,"6255 SUNSET BOULEVARD","SUITE 1515","HOLLYWOOD","CA","90028",,,,,,,"6255 SUNSET BOULEVARD","SUITE 1515","HOLLYWOOD","CA","90028",,,,,,,"954704565","3239579797","512100","BITMAX, LLC",,"6255 SUNSET BOULEVARD","SUITE 1515","HOLLYWOOD","CA","90028",,,,,,,"954704565","3239579797",,,,"2011-09-22T22:15:54-0500","NORMA TROKE",,,,,38,35,0,7,42,0,42,26,2,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922133513P030019797282002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"VANDERBILT MUSEUM TIAA-CREF SUPPLEMENTAL RET ANNUI","003","1990-08-01","SUFFOLK COUNTY VANDERBILT MUSEUM",,,"180 LITTLE NECK ROAD",,"CENTERPORT","NY","11721",,,,,,,,,,,,,,,,,,"116037002","6318545562","712100","BOARD OF TRUSTEES AS PLAN ADMIN.","SUFFOLK COUNTY VANDERBILT MUSEUM","180 LITTLE NECK ROAD",,"CENTERPORT","NY","117211145",,,,,,,"112557776","6318545562",,,,"2011-08-31T09:00:23-0500","LANCE REINHEIMER",,,,,22,19,,1,20,,20,13,,,"2L",,,,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922190206P030135037601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FOUNDATION SPECIALTIES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2001-01-01","FOUNDATION SPECIALTIES, INC.",,,"P.O. BOX 6233",,"SPRINGDALE","AR","727624840",,,,,,,"328 SOUTH 40TH STREET",,"SPRINGDALE","AR","727624840",,,,,,,"710683696","4797562930","238100","FOUNDATION SPECIALTIES, INC.",,"P.O. BOX 6233",,"SPRINGDALE","AR","727624840",,,,,,,"710683696","4797562930",,,,"2011-09-22T19:02:05-0500","GLEN CARTE",,,,,61,20,0,41,61,0,61,61,2,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110923111027P030135435537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THRIVENT FINANCIAL CORPORATE AND FIELD LONG TERM DISABILITY PLAN","507","1963-01-01","THRIVENT FINANCIAL FOR LUTHERANS",,,"625 FOURTH AVENUE SOUTH",,"MINNEAPOLIS","MN","554151624",,,,,,,,,,,,,,,,,,"390123480","6123407047","813000","THRIVENT FINANCIAL FOR LUTHERANS",,"625 FOURTH AVENUE SOUTH",,"MINNEAPOLIS","MN","554151624",,,,,,,"390123480","6123407047",,,,"2011-09-23T11:07:08-0500","STEVEN BAKK",,,,,7387,7195,0,0,7195,,,,,,,"4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923113605P040138789137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEORGETOWN LOOP RAILROAD, INC. PROFIT SHARING PLAN","001","1992-01-01","GEORGETOWN LOOP RAILROAD,INC.",,,"P.O. BOX 859",,"GEORGETOWN","CO","80444",,,,,,,,,,,,,,,,,,"841141672","7192764041","482110","GEORGETOWN LOOP RAILROAD,INC.",,"P.O. BOX 859",,"GEORGETOWN","CO","80444",,,,,,,"841141672","7192764041",,,,"2011-09-23T11:23:47-0500","LINDSEY ASHBY",,,,,22,19,0,2,21,0,21,21,1,,"2A2E3H3B3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","7","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110921090544P030625012624001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"NAVY-MARINE CORPS RELIEF SOCIETY LONG TERM DISABILITY PLAN","505","1991-07-01","NAVY-MARINE CORPS RELIEF SOCIETY",,,"875 NORTH RANDOLPH STREET","SUITE 225","ARLINGTON","VA","22203",,,,,,,"875 NORTH RANDOLPH STREET","SUITE 225","ARLINGTON","VA","22203",,,,,,,"530204618","7036964904","624200","NAVY-MARINE CORPS RELIEF SOCIETY",,"875 NORTH RANDOLPH STREET","SUITE 225","ARLINGTON","VA","22203",,,,,,,"530204618","7036964904",,,,"2011-09-21T08:58:30-0500","WESLEY SCHMIDT",,,,,159,157,0,0,157,,157,,,,,"4H",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921132955P030134311537001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"SHALEM INSTITUTE 403(B) RETIREMENT PLAN","001","2000-07-01","SHALEM INSTITUTE FOR SPIRITUAL FORMATION INC",,,"3025 FOURTH ST NE STE 22",,"WASHINGTON","DC","200171102",,,,,,,"3025 FOURTH ST NE STE 22",,"WASHINGTON","DC","200171102",,,,,,,"521130401","3018977334","624100","SHALEM INSTITUTE FOR SPIRITUAL FORMATION INC",,"3025 FOURTH ST NE STE 22",,"WASHINGTON","DC","200171102",,,,,,,,,,,,"2011-09-21T12:47:28-0500","LEAH RAMPY",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921133008P040137587329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE KANSAS CITY COUNTRY CLUB EMPLOYEE 401(K) PLAN","002","1996-01-01","THE KANSAS CITY COUNTRY CLUB",,,"6200 INDIAN LANE",,"MISSION HILLS","KS","66208",,,,,,,"6200 INDIAN LANE",,"MISSION HILLS","KS","66208",,,,,,,"480668424","9132362103","713900","THE KANSAS CITY COUNTRY CLUB",,"6200 INDIAN LANE",,"MISSION HILLS","KS","66208",,,,,,,"480668424","9132362103",,,,"2011-09-21T13:29:30-0500","MARK BADO",,,,,130,97,0,26,123,0,123,65,2,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921161728P030134386113001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"DARREN T LOVELAND DMD LTD 401 K PROFIT SHARING PLAN AND TRUST","001","2006-01-01","DARREN T LOVELAND DMD LTD","RHODES RANCH DENTAL",,"7345 SOUTH DURANGO DR","SUITE 112","LAS VEGAS","NV","89113",,,,,,,,,,,,,,,,,,"510481066","7022703095","541990","DARREN T LOVELAND DMD LTD",,"7345 SOUTH DURANGO DR","SUITE 112","LAS VEGAS","NV","89113",,,,,,,"510481066","7022703095",,,,"2011-09-21T16:16:32-0500","DARREN LOVELAND",,,,,5,3,0,1,4,,4,3,,0,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921161944P030134386737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"TRUEVANCE MANAGEMENT WELFARE PLAN","501","2003-01-01","TRUEVANCE MANAGEMENT INC",,,"P.O. BOX 440879",,"JACKSONVILLE","FL","32222",,,,,,,"7666 BLANDING BLVD",,"JACKSONVILLE","FL","32244",,,,,,,"743061278","9047779052","237100","TRUEVANCE MANAGEMENT INC",,"P.O. BOX 440879",,"JACKSONVILLE","FL","32222",,,,,,,"743061278","9047779052",,,,"2011-09-21T16:16:16-0500","JAMES TRUE",,,,,139,136,0,0,136,0,136,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","3","1",,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921140511P030134326145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SLF 401K PLAN","001","2002-01-01","MICHAEL C. SCRANTON A PROFESSIONAL",,,"2450 STANWELL DR",,"CONCORD","CA","94520",,,,,,,,,,,,,,,,,,"942220057","9252886863","541110","MICHAEL C. SCRANTON A PROFESSIONAL",,"2450 STANWELL DR",,"CONCORD","CA","94520",,,,,,,"942220057","9252886863",,,,"2011-09-21T14:04:02-0500","JOHN BUENFIL",,,,,35,29,0,0,29,0,29,12,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921140547P040137602833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NADEL, INC. 401(K) PROFIT SHARING PLAN","003","1981-10-31","NADEL, INC.",,,"1990 S. BUNDY DRIVE, 4TH FLOOR",,"LOS ANGELES","CA","90025",,,,,,,,,,,,,,,,,,"261389730","3108262100","541310","NADEL, INC.",,"1990 S. BUNDY DRIVE, 4TH FLOOR",,"LOS ANGELES","CA","90025",,,,,,,"261389730","3108262100",,,,"2011-09-21T14:04:38-0500","CHRISTINA TAYAG",,,,,134,84,2,45,131,0,131,120,6,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922144013P040138255521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HD&W SAVINGS PLAN","004","1984-01-01","HAWKINS, DELAFIELD & WOOD LLP",,,"1 CHASE MANHATTAN PLAZA",,"NEW YORK","NY","10005",,,,,,,,,,,,,,,,,,"135513990","2128209300","541110","HAWKINS, DELAFIELD & WOOD LLP",,"1 CHASE MANHATTAN PLAZA",,"NEW YORK","NY","10005",,,,,,,"135513990","2128209300",,,,"2011-09-22T14:37:32-0500","GREGORY SOMMA",,,,,66,29,0,33,62,0,62,60,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922144026P040623262992002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HUMANARC EMPLOYEE FLEXIBLE SPENDING PLAN","501","1989-08-01","HUMAN ARC",,,"1457 E 40TH ST",,"CLEVELAND","OH","44103",,,,,,,,,,,,,,,,,,"341458781","2164315200","561900","HUMAN ARC",,"1457 E 40TH ST",,"CLEVELAND","OH","44103",,,,,,,"341458781","2164315200",,,,"2011-09-22T03:40:20-0500","GLEN LAIR",,,,,301,281,2,,283,,283,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110923123757P030631074464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"METAL-MATIC, INC. BEDFORD PARK EMPLOYEES' 401(K) PLAN","003","1997-02-01","METAL-MATIC, INC.",,,"629 SECOND STREET S.E.",,"MINNEAPOLIS","MN","55414",,,,,,,,,,,,,,,,,,"410701032","6123923325","332900","METAL-MATIC, INC.",,"629 SECOND STREET S.E.",,"MINNEAPOLIS","MN","55414",,,,,,,"410701032","6123923325",,,,"2011-09-23T12:36:58-0500","THOMAS JACKSON",,,,,179,158,0,6,164,0,164,143,2,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923130252P040020681842001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"S. ROTHSCHILD & CO., INC. EMPLOYEE STOCK OWNERSHIP PLAN","005","2007-01-01","S. ROTHSCHILD & CO., INC.",,,"500 FASHION AVENUE",,"NEW YORK","NY","100184502",,,,,,,,,,,,,,,,,,"231539342","2123548550","315230","S. ROTHSCHILD & CO., INC.",,"500 FASHION AVENUE",,"NEW YORK","NY","100184502",,,,,,,"231539342","2123548550",,,,"2011-09-23T02:02:51-0500","DANIEL TORCZYNER",,,,,82,75,,10,85,,85,90,0,,"2P",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110922123931P040138195489001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"COASTAL CAROLINA OB-GYN, L.L.C. 401(K) PLAN","001","2008-01-01","COASTAL CAROLINA OB-GYN, L.L.C.",,,"620 SINGLETON RIDGE ROAD",,"CONWAY","SC","29526",,,,,,,"COASTAL CAROLINA OB-GYN, L.L.C.","620 SINGLETON RIDGE RD","CONWAY","SC","29526",,,,,,,"200737946","8433490100","621111","COASTAL CAROLINA OB-GYN, L.L.C.",,"620 SINGLETON RIDGE ROAD",,"CONWAY","SC","29526",,,,,,,"200737946","8433490100",,,,"2011-09-22T12:39:26-0500","DODE WASHINGTON","2011-09-22T12:39:26-0500","DODE WASHINGTON",,,11,8,,1,9,,9,9,0,,"2E2F2G2J2K3D",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921102631P030625184816001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEECORP GROUP, LLC DEFINED BENEFIT PLAN","001","1998-01-01","MEECORP GROUP, LLC",,,"2115 LINWOOD AVENUE, SUITE 301",,"FORT LEE","NJ","07024",,,,,,,"2115 LINWOOD AVENUE, SUITE 301",,"FORT LEE","NJ","07024",,,,,,,"223487721","2019441300","812990","MEECORP GROUP, LLC",,"2115 LINWOOD AVENUE, SUITE 301",,"FORT LEE","NJ","07024",,,,,,,"223487721","2019441300",,,,"2011-09-21T10:18:10-0500","JOHN BURY",,,,,4,4,0,0,4,0,4,,0,,"1A1G",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921144105P040620476720001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"RETIREMENT PLAN OF JEWISH REHABILITATION CENTERS FOR LIVING, INC.","001","1989-01-01","JEWISH REHABILITATION CENTERS FOR LIVING,",,,"330 PARADISE RD",,"SWAMPSCOTT","MA","01907",,,,,,,,,,,,,,,,,,"261244471","7815985310","813000","JEWISH REHABILITATION CENTERS FOR LIVING,",,"330 PARADISE RD",,"SWAMPSCOTT","MA","01907",,,,,,,"261244471","7815985310","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-09-21T14:41:00-0500","KIM RICHARDSON","2011-09-21T14:40:59-0500","KIM RICHARDSON",,,497,413,0,13,426,0,426,135,0,,"2F2G2L2M2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922135547P040623163904001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"DEROSSI AND SON COMPANY, INC. DEFINED BENEFIT PENSION PLAN FOR EMPLOYEES REPRESENTED BY WORKERS UNITED","004","1995-01-01","DEROSSI & SON COMPANY, INC.",,,"SIXTH AND QUINCE STREETS","P.O. BOX 1324","VINELAND","NJ","083621324",,,,,,,,,,,,,,,,,,"210693194","8566910061","315220","DEROSSI & SON COMPANY, INC.",,"SIXTH AND QUINCE STREETS","P.O. BOX 1324","VINELAND","NJ","083621324",,,,,,,"210693194","8566910061",,,,"2011-09-22T13:54:07-0500","DONALD DEROSSI",,,,,203,127,51,88,266,1,267,,,,"1B1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110923080452P040138684737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEORGE M. KEMP, M.D., P.C. 401(K) PROFIT SHARING PLAN","001","1997-01-01","GEORGE M. KEMP, M.D., P.C.",,,"1120 FIRST COLONIAL ROAD","SUITE 202","VIRGINIA BEACH","VA","23454",,,,,,,,,,,,,,,,,,"541826250","7574810327","621111","GEORGE M. KEMP, M.D., P.C.",,"1120 FIRST COLONIAL ROAD","SUITE 202","VIRGINIA BEACH","VA","23454",,,,,,,"541826250","7574810327",,,,"2011-09-23T08:03:52-0500","GEORGE M. KEMP, M.D.",,,,,3,3,0,0,3,0,3,3,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923083456P040625270752001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"BTECH INC PROFIT SHARING PLAN","001","1994-06-01","BTECH INC",,,"12746 SPRUCE POND DRIVE",,"ST LOUIS","MO","63131",,,,,,,,,,,,,,,,,,"431687909","3145676478","421400","RONALD BURKEMPER",,"12746 SPRUCE POND DRIVE",,"ST LOUIS","MO","63131",,,,,,,"431687909","3145676478",,,,"2011-09-22T20:34:13-0500","RONALD BURKEMPER",,,,,1,,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110922083243P040044701447003","2010-05-01","2011-04-30","1",,,,,,"1",,,,,,"MILWAUKEE HOTEL INDUSTRY HEALTH & WELFARE FUND","501","1962-03-01","MILWAUKEE HOTEL INDUSTRY HEALTH & WELFARE FUND",,,"N25 W23050 PAUL ROAD",,"PEWAUKEE","WI","53072",,,,,,,"N25 W23050 PAUL ROAD",,"PEWAUKEE","WI","53072",,,,,,,"396075836","2625215700","721110","MILWAUKEE HOTEL INDUSTRY HEALTH & WELFARE FUND",,"N25 W23050 PAUL ROAD",,"PEWAUKEE","WI","53072",,,,,,,"396075836","2625215700",,,,"2011-09-21T12:11:46-0500","JOAN OLSON","2011-09-21T12:11:46-0500","KAREN SPINDLER",,,358,359,,,359,,,,,20,,"4A4B4D4E4F4L4T","1",,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921122138P040137560065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DESIGNER FURNITURE GALLERIES, INC. PROFIT SHARING PLAN AND TRUST","001","1996-01-01","DESIGNER FURNITURE GALLERIES, INC.",,,"5701 SIXTH AVENUE SOUTH","NO. 238","SEATTLE","WA","98108",,,,,,,,,,,,,,,,,,"911584284","2067649222","423200","DESIGNER FURNITURE GALLERIES, INC.",,"5701 SIXTH AVENUE SOUTH","NO. 238","SEATTLE","WA","98108",,,,,,,"911584284","2067649222",,,,"2011-09-21T12:02:13-0500","JODI MORRIS",,,,,5,3,0,1,4,0,4,4,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921153240P040137646273001","2010-01-01","2010-12-31","4","C","1","0","0","0","0","0","0","0","0",,"HIGH YIELD BOND FUND","004",,"AON INVESTMENT CONSULTING, INC.",,"ATTN NICOLE ROBERTSON","3565 PIEDMONT RD. NE BUILDING ONE",,"ATLANTA","GA","30305",,,,,,,,,,,,,,,,,,"272436452","4042407614",,"AON INVESTMENT CONSULTING, INC.",,"3565 PIEDMONT RD. NE BUILDING ONE",,"ATLANTA","GA","30305",,,,,,,"592706923","4042407614",,,,,,,,"2011-09-21T15:17:51-0500","NICOLE ROBERTSON",,,,,0,,0,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-21",,"Filed with authorized/valid electronic signature", "20110921165752P040137688001001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BRIER REALTY INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-10-01","BRIER REALTY INC","BRIER REALTY INC",,"23711 BRIER RD",,"BRIER","WA","98036",,,,,,,"23711 BRIER RD",,"BRIER","WA","98036",,,,,,,"911340614","4258063800","531210","BRIER REALTY INC",,"23711 BRIER RD",,"BRIER","WV","98036",,,,,,,"911340614","4258063800",,,,"2011-09-21T16:52:25-0500","LARRY HINRICHS",,,,,4,4,,,4,,4,,,,,,,,"1","0",,,"1","0",,,,,"1",,,,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110921165756P040020506514002","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"WASHINGTON TRUST BANK - MEDICAL, HOSPITAL, AND MAJOR MEDICAL PLAN","502","1936-02-01","WASHINGTON TRUST BANK",,,"PO BOX 2127",,"SPOKANE","WA","992102127",,,,,,,"717 W. SPRAGUE AVE.",,"SPOKANE","WA","992102127",,,,,,,"910462347","5093533863","522110","WASHINGTON TRUST BANK",,"PO BOX 2127",,"SPOKANE","WA","992102127",,,,,,,"910462347","5093533863",,,,"2011-09-21T09:14:40-0500","KATHERINE SHIPMAN","2011-09-21T09:14:40-0500","KATHERINE SHIPMAN",,,646,626,31,,657,,,,,,,"4A4E","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922133820P030134896225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HIGGINS, CAVANAGH & COONEY 401(K) PLAN","002","2002-01-01","HIGGINS, CAVANAGH & COONEY",,,"123 DYER STREET",,"PROVIDENCE","RI","02903",,,,,,,,,,,,,,,,,,"050419306","4012723500","541110","HIGGINS, CAVANAGH & COONEY",,"123 DYER STREET",,"PROVIDENCE","RI","02903",,,,,,,"050419306","4012723500",,,,"2011-09-22T13:36:43-0500","GERALD DEMARIA",,,,,42,38,0,4,42,0,42,33,0,,"2F2G2J3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110923095117P030630710128001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOSEPH D. JOHNSON & COMPANY PROFIT SHARING PLAN","001","1977-07-01","JOSEPH D JOHNSON & COMPANY",,,"801 NORTH ORANGE AVENUE SUITE 510",,"ORLANDO","FL","32801",,,,,,,,,,,,,,,,,,"590563362","4078431120","524210","JOSEPH D JOHNSON & COMPANY",,"801 NORTH ORANGE AVENUE SUITE 510",,"ORLANDO","FL","32801",,,,,,,"590563362","4078431120",,,,"2011-09-23T09:50:33-0500","L. MITCHELL JOHNSON",,,,,12,9,0,1,10,0,10,10,0,,"3D2E2J2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110922101214P040138130385001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"COLONIA NATURAL PHARMACY, INC. 401(K) PLAN","001","2006-01-01","COLONIA NATURAL PHARMACY, INC.",,,"515 INMAN AVENUE",,"COLONIA","NJ","07067",,,,,,,,,,,,,,,,,,"223546809","7323813400","446110","COLONIA NATURAL PHARMACY, INC.",,"515 INMAN AVENUE",,"COLONIA","NJ","07067",,,,,,,"223546809","7323813400",,,,"2011-09-22T10:11:24-0500","SVETISLAV MILIC",,,,,8,9,0,1,10,0,10,7,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922160000P030134970433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PLACENTIA-LINDA FOOT & ANKLE GROUP DEFINED BENEFIT PENSION PLAN","003","2001-01-01","PLACENTIA-LINDA FOOT & ANKLE GROUP",,,"1275 N. ROSE DRIVE, SUITE 136",,"PLACENTIA","CA","92870",,,,,,,,,,,,,,,,,,"330432810","7145282252","621111","PLACENTIA-LINDA FOOT & ANKLE GROUP",,"1275 N. ROSE DRIVE, SUITE 136",,"PLACENTIA","CA","92870",,,,,,,"330432810","7145282252",,,,"2011-09-22T14:34:14-0500","MARK REED","2011-09-22T14:34:14-0500","MARK REED",,,3,3,0,0,3,0,3,,0,,"1A3B",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921130656P030134297825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROBERT A. BROWN O.D. PROFIT SHARING PLAN","002","1995-01-01","ROBERT A. BROWN",,,"880 LONG POND ROAD",,"ROCHESTER","NY","14626",,,,,,,"880 LONG POND ROAD",,"ROCHESTER","NY","14626",,,,,,,"161236117","5852279986","621111","ROBERT A. BROWN",,"880 LONG POND ROAD",,"ROCHESTER","NY","14626",,,,,,,"161236117","5852279986",,,,"2011-09-21T13:06:36-0500","ROBERT BROWN",,,,,4,3,1,0,4,,4,3,0,,"2E3B3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922133904P040138223713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEORGE E. BOOTH CO., INC. 401(K) EMPLOYEE SAVINGS PLAN","002","1989-01-01","GEORGE E. BOOTH CO., INC.",,,"8202 W 10TH ST",,"INDIANAPOLIS","IN","46214",,,,,,,,,,,,,,,,,,"351126665","3172470100","335900","GEORGE E. BOOTH CO., INC.",,"8202 W 10TH ST",,"INDIANAPOLIS","IN","46214",,,,,,,"351126665","3172470100",,,,"2011-09-22T13:33:37-0500","VIRGIL CROSS",,,,,35,35,0,0,35,0,35,33,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922170417P030019814738001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RICK CASE ENTERPRISES, INC. 401(K) PLAN","002","1994-01-01","RICK CASE ENTERPRISES, INC.",,,"18300 ROCKSIDE ROAD",,"BEDFORD","OH","44146",,,,,,,,,,,,,,,,,,"311172396","4407031241","441110","RICK CASE ENTERPRISES, INC.",,"18300 ROCKSIDE ROAD",,"BEDFORD","OH","44146",,,,,,,"311172396","4407031241",,,,"2011-09-22T15:52:02-0500","MARY BREWER",,,,,850,691,0,199,890,0,890,415,8,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110923105717P030630859024001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COPY TECH 401(K) P.S. PLAN","001","2007-05-01","COPY TECH",,,"6531 COTTONWOOD ST",,"MURRAY","UT","84107",,,,,,,,,,,,,,,,,,"870532045","8019043250","561430","COPY TECH",,"6531 COTTONWOOD ST",,"MURRAY","UT","84107",,,,,,,"870532045","8019043250",,,,"2011-09-23T10:57:00-0500","DEB CONOVER",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923114242P030135449457001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"MAMMOTH HOSPITAL VISION PLAN","503","2002-03-01","MAMMOTH HOSPITAL",,,"PO BOX 660","85 SIERRA LAKES ROAD","MAMMOTH LAKES","CA","935460660",,,,,,,"PO BOX 660","85 SIERRA LAKES ROAD","MAMMOTH LAKES","CA","935460660",,,,,,,"953154530","7609343311","622000","MAMMOTH HOSPITAL",,"PO BOX 660","85 SIERRA LAKES ROAD","MAMMOTH LAKES","CA","935460660",,,,,,,"953154530","7609343311",,,,"2011-09-23T11:11:01-0500","JEFFREY BYBERG",,,,,248,230,5,0,235,,235,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110922111027P030628072592001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATTORNEYS REAL ESTATE SERVICES, INC. 401(K) PLAN","001","2007-08-15","ATTORNEYS REAL ESTATE SERVICES,",,,"123A CENTER POINTE DRIVE",,"CLARKSVILLE","TN","37040",,,,,,,,,,,,,,,,,,"270018994","9319068400","541190","ATTORNEYS REAL ESTATE SERVICES,",,"123A CENTER POINTE DRIVE",,"CLARKSVILLE","TN","37040",,,,,,,"270018994","9319068400",,,,"2011-09-22T11:09:36-0500","MARK D BOLES SR",,,,,4,4,0,0,4,0,4,4,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922113307P040138163361001","2011-01-01","2011-08-15","2",,"0","0","1","1","0","0","0","0","0",,"SECORE & WALLER, L.L.P. 401K PLAN & TRUST","001","1996-07-01","SECORE & WALLER, L.L.P.",,,"12222 MERIT DRIVE, STE 1350",,"DALLAS","TX","75251",,,,,,,,,,,,,,,,,,"752572328","9727760200","541110","SECORE & WALLER, L.L.P.",,"12222 MERIT DRIVE, STE 1350",,"DALLAS","TX","75251",,,,,,,"752572328","9727760200",,,,"2011-09-22T11:19:24-0500","MR. DAN R. WALLER",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110921162336P030134388049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUNCREST HOMES, L.L.C. 401K PLAN","001","1999-01-01","SUNCREST HOMES, L.L.C.",,,"PO BOX 1313",,"TALENT","OR","975401313",,,,,,,"328 TALENT AVE.",,"TALENT","OR","975405617",,,,,,,"911758452","5415358641","236200","SUNCREST HOMES, L.L.C.",,"PO BOX 1313",,"TALENT","OR","975401313",,,,,,,"911758452","5415358641",,,,"2011-09-21T16:23:35-0500","CHARLIE HAMILTON",,,,,6,3,0,2,5,0,5,5,0,,"2E2F2G2J2K2R3B3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110922162010P030134978177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELECTRI-CORD MANUFACTURING RETIREMENT SAVINGS PLAN","001","1997-10-01","ELECTRI-CORD MANUFACTURING CO.",,,"312 EAST MAIN STREET",,"WESTFIELD","PA","169501609",,,,,,,,,,,,,,,,,,"232921706","8143672265","335900","ELECTRI-CORD MANUFACTURING CO.",,"312 EAST MAIN STREET",,"WESTFIELD","PA","169501609",,,,,,,"232921706","8143672265",,,,"2011-09-22T16:19:49-0500","RONALD E LEWIS","2011-09-22T16:19:49-0500","RONALD E LEWIS",,,121,118,0,0,118,0,118,118,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922125806P040138205441001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SOUTH LAKE HOSPITAL, INC. SAVINGS PLAN","001","1978-10-01","SOUTH LAKE HOSPITAL, INC.",,,"1900 DON WICKHAM DR",,"CLERMONT","FL","34711",,,,,,,,,,,,,,,,,,"593322533","3523944071","622000","SOUTH LAKE HOSPITAL, INC.",,"1900 DON WICKHAM DR",,"CLERMONT","FL","34711",,,,,,,"593322533","3523944071",,,,"2011-09-22T12:57:31-0500","SUZANNE C. BROWN","2011-09-22T12:57:31-0500","SUZANNE C. BROWN",,,807,845,56,0,901,0,901,552,19,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922122833P030134861537004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"403(B) THRIFT PLAN OF VISITING NURSE PLUS, INC.","001","1984-01-01","VISITING NURSE PLUS, INC.",,,"610 E. WALNUT STREET",,"EVANSVILLE","IN","47713",,,,,,,"610 E. WALNUT STREET",,"EVANSVILLE","IN","47713",,,,,,,"351558820","8124253561","621610","VISITING NURSE PLUS, INC.",,"610 E. WALNUT STREET",,"EVANSVILLE","IN","47713",,,,,,,"351558820","8124253561",,,,"2011-09-08T08:47:33-0500","GLORIA D HORTON","2011-09-08T08:47:33-0500","GLORIA D HORTON",,,139,,,5,5,1,6,6,,,"2G2L3D",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110922134147P040138225681001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SCHUYLKILL MEDICAL CENTER SOUTH JACKSON STREET MEDICAL RX PLAN FOR TECHS, LPNS, S AND M EMPLOYEES","508","1990-07-01","SCHUYLKILL MEDICAL CENTER SOUTH JACKSON STREET",,,"420 SOUTH JACKSON STREET",,"POTTSVILLE","PA","17901",,,,,,,,,,,,,,,,,,"231352202","5706215088","622000","SCHUYLKILL MEDICAL CENTER SOUTH JACKSON STREET",,"420 SOUTH JACKSON STREET",,"POTTSVILLE","PA","17901",,,,,,,"231352202","5706215088",,,,"2011-09-22T13:19:40-0500","MARTIN G. TREASURE","2011-09-22T13:41:35-0500","JOHN SIMODEJKA",,,422,312,5,0,317,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923081416P040138687265001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WHITEHOUSE CLINIC GROUP BENEFIT PLAN","502","1992-01-01","HEALTH HELP, INC. DBA WHITEHOUSE CL",,,"401 HIGHLAND PARK DRIVE",,"RICHMOND","KY","40475",,,,,,,,,,,,,,,,,,"610843731","8596267700","621111","HEALTH HELP, INC. DBA WHITEHOUSE CL",,"401 HIGHLAND PARK DRIVE",,"RICHMOND","KY","40475",,,,,,,"610843731","8596267700",,,,"2011-09-22T10:04:19-0500","CHUCK MORGAN",,,,,122,158,0,0,158,,,,,,,"4A4B4D4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110922083845P040622477472001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KNOXVILLE NEUROLOGY CLINIC PROFIT SHARING PLAN","002","1986-01-01","KNOXVILLE NEUROLOGY CLINIC",,,"2200 SUTHERLAND AVENUE",,"KNOXVILLE","TN","37919",,,,,,,,,,,,,,,,,,"621097474","8655216174","621111","KNOXVILLE NEUROLOGY CLINIC",,"2200 SUTHERLAND AVENUE",,"KNOXVILLE","TN","37919",,,,,,,"621097474","8655216174",,,,"2011-09-22T08:38:05-0500","JIM CAMPBELL",,,,,38,28,1,5,34,0,34,34,2,,"2A2E2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110922085428P040138088433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OCONNOR INVESTMENTS, INC. 401(K) PLAN","002","2005-01-01","OCONNOR INVESTMENTS, INC.",,,"THE CARRIAGE HOUSE-22C RIVERSIDE DR",,"BINGHAMTON","NY","13905",,,,,,,,,,,,,,,,,,"161466915","6077703800","523900","OCONNOR INVESTMENTS, INC.",,"THE CARRIAGE HOUSE-22C RIVERSIDE DR",,"BINGHAMTON","NY","13905",,,,,,,"161466915","6077703800",,,,"2011-09-22T08:54:21-0500","LEO O'CONNOR",,,,,9,8,0,0,8,0,8,8,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-22","Filed with authorized/valid electronic signature",, "20110916154318P030131353217001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"WAYNE AUTOMATIC FIRE SPRINKLERS, INC. 401(K) PLAN AND TRUST","002","1979-01-01","WAYNE AUTOMATIC FIRE SPRINKLERS INC.",,,"222 CAPITOL CT",,"OCOEE","FL","347613019",,,,,,,,,,,,,,,,,,"591824363","4078775519","238900","WAYNE AUTOMATIC FIRE SPRINKLERS INC.",,"222 CAPITOL CT",,"OCOEE","FL","347613019",,,,,,,"591824363","4078775519",,,,"2011-09-16T15:43:14-0500","JEANNE JEWETT","2011-09-16T15:43:14-0500","JEANNE JEWETT",,,472,356,0,128,484,1,485,449,35,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110916104628P030611816656001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAVID M. WOLFSON, M.D., PROFIT SHARING PLAN","003","1989-01-01","DAVID M. WOLFSON, M.D., P.C.",,,"801 AVENUE N",,"BROOKLYN","NY","11230",,,,,,,,,,,,,,,,,,"112745382","7186276800","621111","DAVID M. WOLFSON, M.D., P.C.",,"801 AVENUE N",,"BROOKLYN","NY","11230",,,,,,,"112745382","7186276800",,,,"2011-09-16T10:45:40-0500","DAVID M. WOLFSON, M.D.",,,,,6,6,0,0,6,0,6,6,0,,"2A2E2G",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916111311P030131227569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KOSICH INSURANCE AGENCY, INC. PROFIT SHARING PLAN","001","1987-01-01","KOSICH INSURANCE AGENCY, INC.",,,"3435 MT DIABLO BLVD STE 300",,"LAFAYETTE","CA","945497110",,,,,,,,,,,,,,,,,,"680103695","9252843911","524210","KOSICH INSURANCE AGENCY, INC.",,"3435 MT DIABLO BLVD STE 300",,"LAFAYETTE","CA","945497110",,,,,,,"680103695","9252843911",,,,"2011-09-16T11:10:52-0500","KENNETH KOSICH",,,,,11,9,0,4,13,0,13,11,0,,"2E",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916181905P030131406513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"L.J. LEASING, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1995-01-10","L.J. LEASING, INC.",,,"4600 W CAMELBACK RD",,"GLENDALE","AZ","85301",,,,,,,,,,,,,,,,,,"860900640","6022005500","485310","L.J. LEASING, INC.",,"4600 W CAMELBACK RD",,"GLENDALE","AZ","85301",,,,,,,"860900640","6022005500",,,,"2011-09-16T18:18:05-0500","LAWRENCE EISEL","2011-09-16T18:18:05-0500","LAWRENCE EISEL",,,159,159,1,9,169,0,169,99,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110916155307P030019284210001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"O'CONNOR & COMPANY PC PROFIT SHARING PLAN","001","2001-01-01","OCONNOR & COMPANY, PC PROFIT SHARING PLAN",,,"821 N STREET, SUITE 102",,"ANCHORAGE","AK","99501",,,,,,,,,,,,,,,,,,"510416616","9072721196","541211","B.J. OCONNOR","OCONNOR & COMPANY, P.C.","821 N STREET, # 102",,"ANCHORAGE","AK","99501",,,,,,,"920151644","9072721196",,,,"2011-09-16T07:33:53-0500","B.J. O'CONNOR",,,,,7,0,0,0,0,,0,0,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916084002P040020034978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAMSCREEN, INC. 401(K) PROFIT SHARING PLAN","001","2005-01-01","SAMSCREEN, INC.",,,"P. O. 1118",,"BINGHAMTON","NY","13902",,,,,,,"P. O. 1118",,"BINGHAMTON","NY","13902",,,,,,,"161473238","6077223979","332900","SAMSCREEN, INC.",,"P. O. 1118",,"BINGHAMTON","NY","13902",,,,,,,"161473238","6077223979",,,,"2011-09-16T08:21:35-0500","EILEEN FLEMING",,,,,37,22,0,15,37,0,37,19,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1",,"1",,"FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916092114P030611639744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VBT 401(K) PLAN","001","2005-08-01","OTAGO LLC",,,"614 MONKTON RD",,"BRISTOL","VT","05443",,,,,,,"614 MONKTON RD",,"BRISTOL","VT","05443",,,,,,,"320147018","8024534811","713900","OTAGO LLC",,"614 MONKTON RD",,"BRISTOL","VT","05443",,,,,,,"320147018","8024534811",,,,"2011-09-16T09:16:48-0500","GREGG MARSTON",,,,,32,34,0,9,43,0,43,33,1,,"2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916094654P030611693488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRANK GRAZIANO, DDS PROFIT SHARING PLAN","001","2009-01-01","FRANK GRAZIANO, DDS",,,"3 LABELLE ROAD",,"BRONXVILLE","NY","10708",,,,,,,,,,,,,,,,,,"264244078","9147932604","621210","FRANK GRAZIANO, DDS",,"3 LABELLE ROAD",,"BRONXVILLE","NY","10708",,,,,,,"264244078","9147932604",,,,"2011-09-16T09:46:19-0500","FRANK GRAZIANO",,,,,4,4,0,0,4,0,4,4,0,,"2A2E2J",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916105126P030131218897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AEGIS SECURITY, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1989-01-01","AEGIS SECURITY, INC.",,,"P.O. BOX 3153",,"HARRISBURG","PA","17105",,,,,,,"2407 PARK DR., SUITE 200",,"HARRISBURG","PA","17105",,,,,,,"232035495","7176579671","524150","AEGIS SECURITY, INC.",,"P.O. BOX 3153",,"HARRISBURG","PA","17105",,,,,,,"232035495","7176579671",,,,"2011-09-16T10:49:26-0500","GREGORY LANE","2011-09-16T10:51:19-0500","MARTIN G. LANE, JR",,,102,82,0,20,102,0,102,102,3,,"2I2O3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110916105239P040043344775001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HORTON EMERGENCY VEHICLES COMPANY LTD PLAN","505","1997-12-01","HALCORE GROUP, INC. DBA HORTON EMERGENCY VEHICLES",,,"3800 MCDOWELL ROAD",,"GROVE CITY","OH","431234022",,,,,,,,,,,,,,,,,,"352018529","6145398181","336210","HALCORE GROUP, INC. DBA HORTON EMERGENCY VEHICLES",,"3800 MCDOWELL ROAD",,"GROVE CITY","OH","431234022",,,,,,,"352018529","6145398181",,,,"2011-09-16T09:16:31-0500","DAVID LAMON","2011-09-16T09:16:31-0500","DAVID LAMON",,,340,374,,,374,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110916142108P040134648897001","2011-01-01","2011-03-31","2",,"0","1","1","1","0","0","0","0","0",,"SYNERGY INFORMATION SERVICES 401(K) PLAN","002","2007-07-01","SYNERGY INFORMATION SERVICES",,,"8662 CARRIAGE HILL RD",,"SAVAGE","MN","55378",,,,,,,,,,,,,,,,,,"411882253","6128404440","511210","SYNERGY INFORMATION SERVICES",,"8662 CARRIAGE HILL RD",,"SAVAGE","MN","55378",,,,,,,"411882253","6128404440",,,,"2011-09-16T14:17:31-0500","CRAIG WILSON",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916114405P040134576209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BASIN HOME HEALTH, INC. RETIREMENT PLAN","001","1994-01-01","BASIN HOME HEALTH, INC.",,,"200 NORTH ORCHARD AVENUE",,"FARMINGTON","NM","874016225",,,,,,,,,,,,,,,,,,"850404923","5053258231","621510","BASIN HOME HEALTH, INC.",,"200 NORTH ORCHARD AVENUE",,"FARMINGTON","NM","874016225",,,,,,,"850404923","5053258231",,,,"2011-09-16T11:43:41-0500","MARY MEIERS NELSON",,,,,482,385,0,17,402,1,403,139,8,,"2E2F2G2J2K3D3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110917183419P030131955553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAREMEDIC SYSTEMS, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","CAREMEDIC SYSTEMS, INC.",,"C/O UNITEDHEALTH GROUP INCORPORATED","9900 BREN ROAD EAST",,"MINNETONKA","MN","55343",,,,,,,,,,,,,,,,,,"421464363","7273297829","518210","CAREMEDIC SYSTEMS, INC.","C/O UNITEDHEALTH GROUP INCORPORATED","9900 BREN ROAD EAST",,"MINNETONKA","MN","55343",,,,,,,"421464363","7273297829",,,,"2011-09-17T18:33:14-0500","JAMES F COPPENS",,,,,387,327,0,60,387,0,387,238,4,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-17","Filed with authorized/valid electronic signature",, "20110916123305P040020047186001","2010-05-01","2011-04-30","2",,"0","1","0","0","0","0","1","0","0",,"THE JEFFRY KNIGHT INC PREMIUM ONLY PLAN","521","2007-05-01","JEFFRY KNIGHT INC","KNIGHT ENTERPRISES",,"6056 ULMERTON ROAD",,"CLEARWATER","FL","33760",,,,,,,"6056 ULMERTON ROAD",,"CLEARWATER","FL","33760",,,,,,,"593100430","7276246235","238900","JEFFRY KNIGHT INC",,"6056 ULMERTON ROAD",,"CLEARWATER","FL","33760",,,,,,,"593100430","7276246235",,,,"2011-09-16T12:32:08-0500","DONNA BENTLEY",,,,,166,170,0,0,170,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916090932P030131168065001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ADP/SSGA S&P MIDCAPR IDX NL FD ADPG","037",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"046680613","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-16T09:04:26-0500","MATTHEW A. BOYER",,,"2011-09-16T09:04:26-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110916092315P030611644336001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ADP/SSGA STABLE VALUE FD ZF1P1","052",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"046680613","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-16T09:19:04-0500","MATTHEW A. BOYER",,,"2011-09-16T09:19:04-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110916171715P040020067842001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAMSUNG 401(K) PLAN SAMSUNG AUSTIN SEMICONDUCTOR","001","1996-04-01","SAMSUNG AUSTIN SEMICONDUCTOR LLC",,,"12100 SAMSUNG BOULEVARD",,"AUSTIN","TX","78754",,,,,,,"12100 SAMSUNG BOULEVARD",,"AUSTIN","TX","78754",,,,,,,"742772066","5126721021","334410","SAMSUNG AUSTIN SEMICONDUCTOR LLC",,"12100 SAMSUNG BOULEVARD",,"AUSTIN","TX","78754",,,,,,,"742772066","5126721021",,,,"2011-09-13T08:00:58-0500","CHARMAINE WINTERS","2011-09-16T16:50:21-0500","JAMES SCOTT WOODLAND",,,1770,1815,1,503,2319,3,2322,1723,0,,"2F2G2J2K2R2T3F3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110921081855P040137438833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEES' PENSION PLAN OF RGC RESOURCES, INC","002","1982-01-01","RGC RESOURCES, INC.",,,"PO BOX 13007",,"ROANOKE","VA","240160000",,,,,,,,,,,,,,,,,,"541909697","5407774427","221210","RGC RESOURCES, INC.",,"PO BOX 13007",,"ROANOKE","VA","240160000",,,,,,,"541909697","5407774427",,,,"2011-09-21T08:18:22-0500","HOWARD LYON, VP, TREAS, CFO","2011-09-21T08:18:22-0500","HOWARD LYON, VP, TREAS, CFO",,,291,119,81,63,263,25,288,,4,,"1A1D1E1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110918124551P030132395169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SIMON WILLIAMSON CLINIC, P.C. 401(K) PROFIT SHARING PLAN","002","1999-09-01","SIMON WILLIAMSON CLINIC, P.C.",,,"832 PRINCETON AVENUE SW",,"BIRMINGHAM","AL","352111323",,,,,,,,,,,,,,,,,,"630693892","2052068435","621111","SIMON WILLIAMSON CLINIC, P.C.",,"832 PRINCETON AVENUE SW",,"BIRMINGHAM","AL","352111323",,,,,,,"630693892","2052068435",,,,"2011-09-18T12:45:39-0500","JOHN DUMAS",,,,,211,141,2,68,211,0,211,209,2,,"2E2F2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-18","Filed with authorized/valid electronic signature",, "20110916092351P030131175841001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ADP/SSGA STABLE VALUE FD ADPQ7","057",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"046680613","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-16T09:19:06-0500","MATTHEW A. BOYER",,,"2011-09-16T09:19:06-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110921120007P040137547537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BERCHTOLD EQUIPMENT COMPANY PROFIT-SHARING PLAN AND TRUST","001","1972-11-01","BERCHTOLD EQUIPMENT COMPANY",,,"330 EAST 19TH STREET",,"BAKERSFIELD","CA","93305",,,,,,,,,,,,,,,,,,"952566526","6613237818","423800","BERCHTOLD EQUIPMENT COMPANY",,"330 EAST 19TH STREET",,"BAKERSFIELD","CA","93305",,,,,,,"952566526","6613237818",,,,"2011-09-21T11:59:05-0500","MARK BERCHTOLD",,,,,78,53,0,18,71,0,71,57,1,,"2E2H2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110916133246P040134626929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SANDY ALEXANDER, INC. EMPLOYEE BENEFIT PLAN","505","1990-01-01","SANDY ALEXANDER, INC.",,,"200 ENTIN ROAD",,"CLIFTON","NJ","07014",,,,,,,,,,,,,,,,,,"750460390","9734708100","323100","SANDY ALEXANDER, INC.",,"200 ENTIN ROAD",,"CLIFTON","NJ","07014",,,,,,,"750460390","9734708100",,,,"2011-09-16T13:31:56-0500","NANCY ROYER",,,,,289,214,0,0,214,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110921083036P030134162289001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FAMILY HEALTH INTERNATIONAL HEALTH AND DENTAL PLAN","503","1985-04-01","FAMILY HEALTH INTERNATIONAL",,"ROBERT R. PRICE","PO BOX 13950",,"RESEARCH TRIANGLE PARK","NC","27709",,,,,,,"2224 EAST NC HWY 54",,"DURHAM","NC","27713",,,,,,,"237413005","9195447040","541700","FAMILY HEALTH INTERNATIONAL","STEWART COHEN","PO BOX 13950",,"RESEARCH TRIANGLE PARK","NC","27709",,,,,,,"237413005","9195447040",,,,"2011-09-20T16:43:55-0500","STEWART COHEN",,,,,601,493,12,,505,,505,,,,,"4A4D4E4Q","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110916104417P030019260178001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DR. GEORGE CHEN, SOLE PROPRIETOR, LLC 401(K) PROFIT SHARING PLAN","001","2000-01-01","MALONE MEDICAL ANESTHESIOLOGY",,,"5025 ANGEL RIDGE RD.",,"ATHENS","OH","45701",,,,,,,,,,,,,,,,,,"141816282","5184833000","621111","MALONE MEDICAL ANESTHESIOLOGY",,"5025 ANGEL RIDGE RD.",,"ATHENS","OH","45701",,,,,,,"141816282","5184833000",,,,"2011-09-16T10:37:14-0500","GEORGE CHEN",,,,,2,2,0,0,2,0,2,2,0,,"2E2J2K2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916135052P040606860080001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"WCM LEISURE, INC. 401K PLAN","001","2007-11-16","WCM LEISURE, INC.",,,"24787 LUCKEY ROAD",,"PERRYSBURG","OH","43551",,,,,,,"24787 LUCKEY ROAD",,"PERRYSBURG","OH","43551",,,,,,,"261421535","4198376848","721210","WCM LEISURE, INC.",,"24787 LUCKEY ROAD",,"PERRYSBURG","OH","43551",,,,,,,"261421535","4198376848",,,,"2011-09-16T13:50:19-0500","WILLIAM MILLER",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916163834P040134716753001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KNOLLWOOD ANIMAL HOSPITAL RETIREMENT SAVINGS PLAN","001","1996-01-01","KNOLLWOOD ANIMAL HOSPITAL, PC",,"J. ANTHONY DILLON","20 N. WAUKEGAN ROAD",,"LAKE BLUFF","IL","600441690",,,,,,,,,,,,,,,,,,"363882107","8472342002","541940","KNOLLWOOD ANIMAL HOSPITAL, PC","J. ANTHONY DILLON","20 N. WAUKEGAN ROAD",,"LAKE BLUFF","IL","600441690",,,,,,,"363882107","8472342002",,,,"2011-09-16T04:31:27-0500","J. ANTHONY DILLON",,,,,5,5,,,5,,5,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916124129P030612041328001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"TOTER INC. EMPLOYEE BENEFIT PLAN","503","1997-04-01","TOTER INCORPORATED",,,"P.O. BOX 5338",,"STATESVILLE","NC","286875338",,,,,,,,,,,,,,,,,,"561362422","7048728171","326100","TOTER INCORPORATED",,"P.O. BOX 5338",,"STATESVILLE","NC","286875338",,,,,,,"561362422","7048728171",,,,"2011-09-16T12:41:03-0500","JEFF GILLIAM",,,,,160,161,3,0,164,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110916090538P030042489111001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ADP/SSGA U.S. BOND IDX SL FD ADPI3","014",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"046680613","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-16T09:04:21-0500","MATTHEW A. BOYER",,,"2011-09-16T09:04:21-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110916092518P030131176785001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ADP/SSGA LIFE SOLUTIONS GROWTH IDX SL FD ADP","068",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"046680613","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-16T09:19:10-0500","MATTHEW A. BOYER",,,"2011-09-16T09:19:10-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110916223111P030131509153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHILDRENS CARE OF EASTERN KENTUCKY DEFINED BENEFIT PENSION PLAN","001","2003-01-01","CHILDRENS CARE OF EASTERN KENTUCKY",,,"5000 KY ROUTE 321",,"PRESTONSBURG","KY","41653",,,,,,,,,,,,,,,,,,"611288145","6068867635","621111","CHILDRENS CARE OF EASTERN KENTUCKY",,"5000 KY ROUTE 321",,"PRESTONSBURG","KY","41653",,,,,,,"611288145","6068867635",,,,"2011-09-16T22:30:47-0500","MAZEN JAAFAR","2011-09-16T22:30:47-0500","MAZEN JAAFAR",,,4,4,0,0,4,0,4,,0,,"1A3B3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110916135722P040606873936001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MILLER FOUNDATION RETIREMENT SAVINGS PLAN","001","2000-01-01","THE MILLER FOUNDATION",,,"310 WAHWAHTAYSEE WAY",,"BATTLE CREEK","MI","490154065",,,,,,,,,,,,,,,,,,"386064925","2699643542","813000","THE MILLER FOUNDATION",,"310 WAHWAHTAYSEE WAY",,"BATTLE CREEK","MI","490154065",,,,,,,"386064925","2699643542",,,,"2011-09-16T13:54:38-0500","DIANE THOMPSON",,,,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110921120350P040137550545001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DOLPHIN EMPLOYEE STOCK OWNERSHIP PLAN","003","2007-01-01","DOLPHIN ENTERPRISE SOLUTIONS CORPOR ATION",,,"17485 MONTEREY ROAD, SUITE 201",,"MORGAN HILL","CA","95037",,,,,,,,,,,,,,,,,,"943286870","6506553939","541600","DOLPHIN ENTERPRISE SOLUTIONS CORPOR ATION",,"17485 MONTEREY ROAD, SUITE 201",,"MORGAN HILL","CA","95037",,,,,,,"943286870","6506553939",,,,"2011-09-21T12:03:08-0500","ANN BUENO",,,,,40,35,0,1,36,0,36,36,2,,"2I2O3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-21","Filed with authorized/valid electronic signature",, "20110916094418P030019254466001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ADP/SSGA RUSSELL SMALL CAPR IDX SL FD ADQF7","113",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"046680613","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-16T09:36:55-0500","MATTHEW A. BOYER",,,"2011-09-16T09:36:55-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110916135943P040134637713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMS - CHEMIE (NORTH AMERICA) INC. RETIREMENT PLAN","001","1987-07-01","EMS - CHEMIE NORTH AMERICA INC",,,"2060 CORPORATE WAY",,"SUMTER","SC","29154",,,,,,,,,,,,,,,,,,"570703806","8034816112","325200","EMS - CHEMIE NORTH AMERICA INC",,"2060 CORPORATE WAY",,"SUMTER","SC","29154",,,,,,,"570703806","8034816112",,,,"2011-09-16T13:58:52-0500","PAULA EPPERSON",,,,,134,97,0,38,135,1,136,133,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-16","Filed with authorized/valid electronic signature",, "20110928143609P030138605073001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"THE GOODYEAR TIRE & RUBBER COMPANY COMMINGLED TRUST TARGET RETIREMENT 2035 FUND","019",,"THE GOODYEAR TIRE & RUBBER COMPANY",,,"1144 EAST MARKET STREET","DEPARTMENT 610","AKRON","OH","443160001",,,,,,,,,,,,,,,,,,"133227454","3307962701",,"THE GOODYEAR TIRE & RUBBER COMPANY",,"1144 EAST MARKET STREET","DEPARTMENT 610","AKRON","OH","443160001",,,,,,,"133227454","3307962701",,,,"2011-09-28T13:52:10-0500","RICHARD J NOECHEL, VP CONTROLLER","2011-09-28T13:52:10-0500","RICHARD J NOECHEL, VP CONTROLLER","2011-09-28T13:52:10-0500","RICHARD J NOECHEL, VP CONTROLLER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110928143627P030138605281001","2008-09-01","2009-08-31","2",,"0","1","0","0","0","0","0","0","0",,"BLUE WATER CABINETRY, LLC 401(K) PLAN","001","1998-09-01","BLUE WATER CABINETRY LLC",,,"5540-B KETCH ROAD",,"PRINCE FREDERICK","MD","20678",,,,,,,"5540-B KETCH ROAD",,"PRINCE FREDERICK","MD","20678",,,,,,,"522315825","3014943700","238300","BLUE WATER CABINETRY LLC",,"5540-B KETCH ROAD",,"PRINCE FREDERICK","MD","20678",,,,,,,"522315825","3014943700",,,,"2011-09-28T14:28:53-0500","KARL ALBERT",,,,,21,8,2,7,17,0,17,1,1,,"2E2J2K3D2G",,"1",,"1",,"1",,"1",,"1",,,,"1","1",,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928133504P040141987601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAROLINA UROLOGICAL ASSOCIATES, P.A. 401(K) PROFIT","002","2001-06-01","CAROLINA UROLOGICAL ASSOC.",,,"140 KIMEL PARK DRIVE",,"WINSTON-SALEM","NC","27103",,,,,,,,,,,,,,,,,,"562227628",,"621111","CAROLINA UROLOGICAL ASSOC.",,"140 KIMEL PARK DRIVE",,"WINSTON-SALEM","NC","27103",,,,,,,"562227628",,,,,"2011-09-28T13:34:45-0500","ELIZABETH ALBERTSON, MD","2011-09-28T13:34:45-0500","ELIZABETH ALBERTSON, MD",,,60,55,1,3,59,0,59,59,2,,"2E2J2A2F2G2T","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928151628P030020379826001","2010-02-01","2011-01-31","2",,"1","1","0","0","0","1","0","0","0",,"CBC (AMERICA) CORP. GROUP INSURANCE PLAN","501","2010-02-01","CBC AMERICA CORP.",,,"55 MALL DRIVE",,"COMMACK","NY","11725",,,,,,,"55 MALL DRIVE",,"COMMACK","NY","11725",,,,,,,"132978219","6318649700","423990","CBC AMERICA CORP.",,"55 MALL DRIVE",,"COMMACK","NY","11725",,,,,,,"132978219","6318649700",,,,"2011-09-28T15:12:29-0500","DIANE KALBERER",,,,,108,104,1,0,105,0,105,,,,,"4A4B4D4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928154543P040639876464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAKER CHEESE FACTORY, INC. HOSPITALIZATION WELFARE PLAN","501","2001-01-01","BAKER CHEESE FACTORY, INC.",,,"N5279 COUNTY ROAD G",,"ST. CLOUD","WI","53079",,,,,,,,,,,,,,,,,,"390889324","9204777871","311500","BAKER CHEESE FACTORY, INC.",,"N5279 COUNTY ROAD G",,"ST. CLOUD","WI","53079",,,,,,,"390889324","9204777871",,,,"2011-09-28T15:22:22-0500","KEVIN BAKER",,,,,154,161,3,0,164,,,,,,,"4A4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928200816P040142199809001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MERIDEN-WALLINGFORD ANESTHESIA GROUP, P.C.PROFIT SHARING PLAN","002","1974-07-01","MERIDEN-WALLINGFORD ANESTHESIA GROUP, P.C.",,,"391 BROAD STREET",,"MERIDEN","CT","064505418",,,,,,,,,,,,,,,,,,"060895874","2032381555","621111","MERIDEN-WALLINGFORD ANESTHESIA GROUP, P.C.",,"391 BROAD STREET",,"MERIDEN","CT","064505418",,,,,,,"060895874","2032381555",,,,"2011-09-28T09:07:58-0500","GUY ALIOTTA, MD",,,,,25,20,0,7,27,0,27,27,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110923120551P040003931300001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FRESNO HEART HOSPITAL, LLC DBA FRESNO HEART & SURGICAL HOSPITAL 401(K) RETIREMENT TRUST","001","2003-09-01","FRESNO HEART HOSPITAL, LLC DBA FRESNO HEART & SURGICAL HOSPITAL",,,"15 E. AUDUBON DR.",,"FRESNO","CA","93720",,,,,,,,,,,,,,,,,,"770513288","5594338000","622000","FRESNO HEART HOSPITAL, LLC DBA FRESNO HEART & SURGICAL HOSPITAL",,"15 E. AUDUBON DR.",,"FRESNO","CA","93720",,,,,,,"770513288","5594338000","FRESNO HEART HOSPITAL, LLC","770513288","001","2011-09-23T13:05:45-0500","LYNN HORTON",,,,,403,469,0,25,494,0,494,357,16,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923143815P030019895202001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"APPLETON COATED LLC GROUP LIFE INSURANCE PLAN","503","2000-07-01","APPLETON COATED LLC",,,"PO BOX 129",,"COMBINED LOCKS","WI","541130129",,,,,,,"540 PROSPECT STREET",,"COMBINED LOCKS","WI","541131120",,,,,,,"391976554","9209683989","322200","APPLETON COATED LLC",,"PO BOX 129",,"COMBINED LOCKS","WI","541130129",,,,,,,"391976554","9209683989",,,,"2011-09-23T13:41:46-0500","BONNIE MILLER","2011-09-23T14:37:59-0500","MARIANNE STERR",,,976,611,334,0,945,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928093234P030644592448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SACCO & FILLAS, LLP 401(K) PROFIT SHARING PLAN","001","2000-01-01","SACCO & FILLAS, LLP",,,"141-07 20TH AVENUE SUITE 506",,"WHITESTONE","NY","113573097",,,,,,,,,,,,,,,,,,"161706802","7187463440","541110","SACCO & FILLAS, LLP",,"141-07 20TH AVENUE SUITE 506",,"WHITESTONE","NY","113573097",,,,,,,"161706802","7187463440",,,,"2011-09-28T09:31:37-0500","TONINO SACCO",,,,,19,15,0,7,22,0,22,22,3,,"2A2E2J2K2H3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928143928P040142024481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELIZABETHTOWN COLLEGE DEFINED CONTRIBUTION PLAN","001","1946-11-08","ELIZABETHTOWN COLLEGE",,,"ONE ALPHA DRIVE",,"ELIZABETHTOWN","PA","17022",,,,,,,,,,,,,,,,,,"231352632","7173611000","611000","ELIZABETHTOWN COLLEGE",,"ONE ALPHA DRIVE",,"ELIZABETHTOWN","PA","17022",,,,,,,"231352632","7173611000",,,,"2011-09-28T14:38:26-0500","RICHARD L. BAILEY","2011-09-28T14:38:26-0500","RICHARD L. BAILEY",,,897,805,0,123,928,1,929,874,0,,"2L2M2T2F2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929111531P040142595905001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ST LUKES HOUSE CAFETERIA PLAN","501","1993-01-01","ST LUKES HOUSE",,,"6040 SOUTHPORT DRIVE",,"BETHESDA","MD","20814",,,,,,,"6040 SOUTHPORT DRIVE",,"BETHESDA","MD","20814",,,,,,,"520937199","3014934200","624100","ST LUKES HOUSE",,"6040 SOUTHPORT DRIVE",,"BETHESDA","MD","20814",,,,,,,"520937199","3014934200",,,,"2011-09-29T10:22:04-0500","ANDREA DANKO-KOENIG",,,,,142,145,,,145,,145,,,,,"4A4B4D4E4H","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110923172527P040020701874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEAUMONT COIN GROUP 401K PLAN","001","2003-01-01","UNIVERSAL COIN & BULLION LTD",,,"7410 PHELAN BLVD.",,"BEAUMONT","TX","77706",,,,,,,,,,,,,,,,,,"760622188","4098664112","541990","UNIVERSAL COIN & BULLION LTD",,"7410 PHELAN BLVD.",,"BEAUMONT","TX","77706",,,,,,,"760622188","4098664112",,,,"2011-09-23T17:22:52-0500","DIANE VERDE","2011-09-23T17:22:52-0500","DIANE VERDE",,,121,117,0,5,122,0,122,62,0,,"2A2E2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110924153646P030136185569001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JAMES ADLEBERG DPM PA RETIREMENT INCOME PLAN","001","1999-01-01","JAMES ADLEBERG DPM PA",,,"8114 SANDPIPER CIR SUITE 206",,"WHITE MARSH","MD","21236",,,,,,,,,,,,,,,,,,"522080403","4109333300","621391","JAMES ADLEBERG DPM PA",,"8114 SANDPIPER CIR SUITE 206",,"WHITE MARSH","MD","21236",,,,,,,"522080403","4109333300",,,,"2011-09-24T14:36:11-0500","JAMES ADLEBERG",,,,,7,7,,,7,,7,7,,,"2T2J2G2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-24","Filed with authorized/valid electronic signature",, "20110928070113P040046159047001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ZIMMER RETIREE MEDICAL & LIFE INSURANCE PLAN","511","2001-08-06","ZIMMER HOLDINGS, INC.",,,"P. O. BOX 708",,"WARSAW","IN","465810708",,,,,,,,,,,,,,,,,,"134151777","5743718081","325410","ZIMMER HOLDINGS, INC.",,"P. O. BOX 708",,"WARSAW","IN","465810708",,,,,,,"134151777","5743718081",,,,"2011-09-28T07:00:37-0500","DENNIS CULTICE","2011-09-28T07:00:37-0500","DENNIS CULTICE",,,47,0,76,0,76,,,,,,,"4A4B","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928100127P030020356050001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN FIRST CREDIT UNION EMPLOYEE BENEFITS PLAN","501","1989-10-01","AMERICAN FIRST CREDIT UNION",,,"700 N. HARBOR BLVD.",,"LA HABRA","CA","906314026",,,,,,,,,,,,,,,,,,"330358683","8002901112","522130","AMERICAN FIRST CREDIT UNION",,"700 N. HARBOR BLVD.",,"LA HABRA","CA","906314026",,,,,,,"330358683","8002901112",,,,"2011-09-27T19:12:18-0500","AREZU NOORBAKSH",,,,,166,112,8,0,120,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928100308P040141879489003","2010-01-01","2010-12-31","2",,,,"1",,,,"1",,,,"QUANDARY PROFIT SHARING PLAN","001","1997-01-01","QUANDARY, INC",,,"1011 GEZON PARKWAY",,"WYOMING","MI","49509",,,,,,,,,,,,,,,,,,"383386190","6165315561","443111","QUANDARY INC",,"1011 GEZON PARKWAY",,"WYOMING","MI","49509",,,,,,,"383386190","6165315561",,,,"2011-09-28T09:22:46-0500","BRIAN E COLLINS",,,,,7,,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110924163641P030136211409001","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"SILVERBELL DENTAL CARE PC 401K PROFIT SHARING PLAN AND TRUST AGREEMENT","001","2005-01-01","SILVERBELL DENTAL CARE PC",,,"1370 N SILVERBELL ROAD SUITE 190",,"TUCSON","AZ","85745",,,,,,,,,,,,,,,,,,"861014057","5206284222","621210","STANLEY P BAIRD",,"1370 N SILVERBELL ROAD SUITE 190",,"TUCSON","AZ","85745",,,,,,,"861014057","5206284222",,,,"2011-09-23T23:09:46-0500","STANLEY P BAIRD DDS",,,,,7,6,,,6,,6,6,,,"3D2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-24","Filed with authorized/valid electronic signature",, "20110928133647P030138574401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"U. S. HEALTHCARE, LLC 401(K) PLAN","002","2000-04-01","U. S. HEALTHCARE, LLC",,,"1945 DAVIS DRIVE",,"GADSDEN","AL","35904",,,,,,,,,,,,,,,,,,"412112187","2565474938","623000","U. S. HEALTHCARE, LLC",,"1945 DAVIS DRIVE",,"GADSDEN","AL","35904",,,,,,,"412112187","2565474938",,,,"2011-09-28T13:31:32-0500","WILLIAM R. LESTER, JR",,,,,345,285,0,137,422,1,423,270,8,,"2E2F2G2J2K2R3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928152004P040021202242001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BGC 401(K) PLAN","002","2007-01-01","BGC LP 1",,,"21 TECHNOLOGY DRIVE",,"WEST LEBANON","NH","03784",,,,,,,,,,,,,,,,,,"200519281","6032989999","531390","BGC LP 1",,"21 TECHNOLOGY DRIVE",,"WEST LEBANON","NH","03784",,,,,,,"200519281","6032989999",,,,"2011-09-28T15:19:54-0500","BUKK CARLETON","2011-09-28T15:19:54-0500","BUKK CARLETON",,,2,2,0,0,2,0,2,2,0,,"2A2E2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923102442P030135414145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COWLES & THOMPSON, P.C. WELFARE PLAN, GROUP LIFE & MEDICAL INS., LONG TERM DISABILITY","501","1978-08-01","COWLES & THOMPSON, P.C.",,,"901 MAIN STREET, SUITE 4000",,"DALLAS","TX","75202",,,,,,,"901 MAIN STREET, SUITE 4000",,"DALLAS","TX","75202",,,,,,,"751603601","2146722000","541110","COWLES & THOMPSON, P.C.",,"901 MAIN STREET, SUITE 4000",,"DALLAS","TX","75202",,,,,,,"751603601","2146722000",,,,"2011-09-23T09:54:26-0500","PRISCILLA RIKE",,,,,135,110,,,110,,110,,,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923114853P030135452033001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"JHT HOLDINGS, INC. BTA PLAN","508","2010-01-01","JHT HOLDINGS, INC.",,,"PO BOX 581025","10801 CORPORATE DRIVE","PLEASANT PRAIRIE","WI","53158",,,,,,,,,,,,,,,,,,"364329347","2625647192","551112","JHT HOLDINGS, INC.",,"PO BOX 581025","10801 CORPORATE DRIVE","PLEASANT PRAIRIE","WI","53158",,,,,,,"364329347","2625647192",,,,"2011-09-23T11:47:56-0500","MARK PORTMAN",,,,,178,124,0,0,124,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110924210559P030136323153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUMCO PHOENIX CORPORATION SAVINGS AND RETIREMENT PLAN","001","1998-04-01","SUMCO PHOENIX CORPORATION",,,"19801 N. TATUM BLVD",,"PHOENIX","AZ","85050",,,,,,,,,,,,,,,,,,"223014284","4804736000","334410","SUMCO PHOENIX CORPORATION",,"19801 N. TATUM BLVD",,"PHOENIX","AZ","85050",,,,,,,"223014384","4804736000",,,,"2011-09-24T21:05:12-0500","MISTY GILMORE",,,,,1349,757,0,472,1229,1,1230,1187,16,,"2E2F2G2J2K2T3D2A",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-24","Filed with authorized/valid electronic signature",, "20110928085807P040141844897001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MARY RUTAN HEALTH ASSOCIATION OF LOGAN COUNTY EMPLOYEES PENSION PLAN","003","1980-01-01","MARY RUTAN HEALTH ASSOCIATION OF LOGAN COUNTY",,,"205 PALMER AVE.",,"BELLEFONTAINE","OH","43311",,,,,,,,,,,,,,,,,,"346544675","9375924015","622000","MARY RUTAN HEALTH ASSOCIATION OF LOGAN COUNTY",,"205 PALMER AVE.",,"BELLEFONTAINE","OH","43311",,,,,,,"346544675","9375924015",,,,"2011-09-28T08:57:37-0500","RONALD H CARMIN","2011-09-28T08:57:37-0500","RONALD H CARMIN",,,1028,623,0,404,1027,0,1027,956,16,,"2C2F2G2K2T3H",,"1","0","0","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928150611P040142041393001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"UNION HOSPITAL, INC. TAX DEFERRED ANNUITY PLAN","006","1997-08-01","UNION HOSPITAL, INC.",,,"1606 NORTH SEVENTH STREET",,"TERRE HAUTE","IN","478042780",,,,,,,,,,,,,,,,,,"350876396","8122387654","622000","UNION HOSPITAL, INC.",,"1606 NORTH SEVENTH STREET",,"TERRE HAUTE","IN","478042780",,,,,,,"350876396","8122387654",,,,"2011-09-28T04:05:59-0500","WAYNE HUTSON",,,,,1304,2258,0,278,2536,1,2537,2537,8,,"2F2G2L2M2S2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","7","1","1",,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928121017P030644944160001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VANDIVER-MORGAN, INC. 401(K) PROFIT SHARING PLAN","001","2004-01-01","VANDIVER-MORGAN, INC.",,,"8828 RESEARCH BLVD.",,"AUSTIN","TX","78758",,,,,,,,,,,,,,,,,,"742541021","5124530900","531210","VANDIVER-MORGAN, INC.",,"8828 RESEARCH BLVD.",,"AUSTIN","TX","78758",,,,,,,"742541021","5124530900",,,,"2011-09-28T11:58:44-0500","LYNN MORGAN",,,,,7,4,0,3,7,0,7,7,0,,"2A2E2J2K2F",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928181452P030138717425001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"HERMES CONSOLIDATED, INC. DBA WYOMING REFINING COMPANY BENEFIT PLAN","501","2006-04-01","HERMES CONSOLIDATED, INC.","WYOMING REFINING COMPANY",,"1600 BROADWAY, SUITE 2300",,"DENVER","CO","80202",,,,,,,,,,,,,,,,,,"221724474","3038949966","324110","HERMES CONSOLIDATED, INC.",,"1600 BROADWAY, SUITE 2300",,"DENVER","CO","80202",,,,,,,"221724474","3038949966",,,,"2011-09-28T18:14:03-0500","TERRY PERARDI",,,,,127,118,10,0,128,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928164411P030138671585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEN MYERSON CANDY AND WINE WAREHOUSE PROFIT SHARING & EMPLOYEE SAVINGS PLAN","001","1967-10-01","BEN MYERSON CANDY/WINE WAREHOUSE",,,"6550 E. WASHINGTON BLVD",,"COMMERCE","CA","90040",,,,,,,"SHALA WEAVER","6550 E. WASHINGTON BLVD","CITY OF COMMERCE","CA","90040",,,,,,,"952460478","3237241700","311300","BEN MYERSON CANDY/WINE WAREHOUSE",,"6550 E. WASHINGTON BLVD",,"COMMERCE","CA","90040",,,,,,,"952460478","3237241700",,,,"2011-09-28T16:38:05-0500","SHALA WEAVER","2011-09-28T16:38:05-0500","SHALA WEAVER",,,535,457,59,,516,0,516,504,23,,"2E2F2G2J2T3D",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923153405P030011426165001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEWAUKEE VETERINARY SERVICE 401(K) PROFIT SHARING PLAN","001","2003-01-01","PEWAUKEE VETERINARY SERVICE, S.C.",,,"N29 23950 SCHUETT DRIVE",,"PEWAUKEE","WI","53072",,,,,,,,,,,,,,,,,,"391360188","2626912298","541940","PEWAUKEE VETERINARY SERVICE, S.C.",,"N29 23950 SCHUETT DRIVE",,"PEWAUKEE","WI","53072",,,,,,,"391360188","2626912298",,,,"2011-09-23T15:29:45-0500","CHERYL KUCHERA",,,,,47,43,4,0,47,0,47,47,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923153411P030019898914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MORRIS GROUP, INC. 401(K) PLAN","003","2004-07-01","MORRIS GROUP, INC.",,,"910 DAY HILL RD.",,"WINDSOR","CT","06095",,,,,,,,,,,,,,,,,,"060610609","8606873475","332900","MORRIS GROUP, INC.",,"910 DAY HILL RD.",,"WINDSOR","CT","06095",,,,,,,"060610609","8606873475",,,,"2011-09-23T15:33:03-0500","JOHN B. BOWEN",,,,,471,363,1,127,491,1,492,363,7,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923155910P040138926177001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ADVANCED POWER SERVICES 401(K) PLAN","001","2007-10-01","ADVANCED POWER SERVICES NA INC.",,,"31 MILK ST","STE 1001","BOSTON","MA","02109",,,,,,,"31 MILK ST","STE 1001","BOSTON","MA","02109",,,,,,,"205512633","6174562212","221100","ADVANCED POWER SERVICES NA INC.",,"31 MILK ST","STE 1001","BOSTON","MA","02109",,,,,,,"205512633","6174562212",,,,"2011-07-22T10:09:15-0500","JARED TAYLOR",,,,,15,13,0,2,15,0,15,13,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110924073102P040139321937001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"KANE FREIGHT LINES VISION AND DENTAL PLANS","502","2006-03-01","KANE FREIGHT LINES, INC",,,"3 STAUFFER INDUSTRIAL PARK",,"SCRANTON","PA","18501",,,,,,,,,,,,,,,,,,"240821296","5703433263","493100","KANE FREIGHT LINES, INC",,"3 STAUFFER INDUSTRIAL PARK",,"SCRANTON","PA","18501",,,,,,,"240821296","5703433263",,,,"2011-09-24T07:30:28-0500","DENNIS MERRIAM",,,,,920,898,0,0,898,,,,,,,"4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-24","Filed with authorized/valid electronic signature",, "20110928140904P040142008833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RENASANT BANK FLEXIBLE BENEFITS PLAN","503","1990-01-01","RENASANT BANK",,,"P. O. BOX 709",,"TUPELO","MS","388020709",,,,,,,"209 TROY STREET",,"TUPELO","MS","388044827",,,,,,,"640220550","6626801467","522110","RENASANT BANK",,"P. O. BOX 709",,"TUPELO","MS","388020709",,,,,,,"640220550","6626801467",,,,"2011-09-28T11:20:29-0500","PATSY BRANDON","2011-09-28T14:08:15-0500","RAY SMITH",,,226,217,0,0,217,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928123823P040141955537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE GRANITE SERVICES, INC. EMPLOYEE HEALTH BENEFIT PLAN","501","2005-01-02","GRANITE SERVICES, INC.",,,"1302 N. 19TH STREET",,"TAMPA","FL","33605",,,,,,,,,,,,,,,,,,"570861176","8006834748","561300","GRANITE SERVICES, INC.",,"1302 N. 19TH STREET",,"TAMPA","FL","33605",,,,,,,"570861176","8006834748",,,,"2011-09-28T12:37:51-0500","RANDY BAILEY",,,,,2814,2840,0,0,2840,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928164502P040004342515001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"OIL CAPITAL ELECTRIC, LLC, DENTAL PLAN","504","2006-03-01","OIL CAPITAL ELECTRIC, LLC",,,"3837 WEST VANCOUVER STREET",,"BROKEN ARROW","OK","74012",,,,,,,,,,,,,,,,,,"270012349","9183173255","238210","OIL CAPITAL ELECTRIC, LLC",,"3837 WEST VANCOUVER STREET",,"BROKEN ARROW","OK","74012",,,,,,,"270012349","9183173255",,,,"2011-09-28T16:43:51-0500","JAMES LEWIS",,,,,275,221,5,0,226,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110923071944P030135332017001","2010-03-03","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"JOHN CHRISTIAN S, INC. PROFIT SHARING PLAN","001","2010-03-03","JOHN CHRISTIAN S, INC.",,,"776 KING FREDERICK LN",,"CONCORD","NC","28027",,,,,,,,,,,,,,,,,,"272028944","7047966209","561490","JOHN CHRISTIAN S, INC.",,"776 KING FREDERICK LN",,"CONCORD","NC","28027",,,,,,,"272028944","7047966209",,,,"2011-09-22T20:28:16-0500","JOHN BECK",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D3H2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110928070350P040638759472001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ZIMMER RETIREE MEDICAL & LIFE INSURANCE PLAN","511","2001-08-06","ZIMMER HOLDINGS, INC.",,,"P. O. BOX 708",,"WARSAW","IN","465810708",,,,,,,,,,,,,,,,,,"134151777","5743718081","325410","ZIMMER HOLDINGS, INC.",,"P. O. BOX 708",,"WARSAW","IN","465810708",,,,,,,"134151777","5743718081",,,,"2011-09-28T07:03:30-0500","DENNIS CULTICE","2011-09-28T07:03:30-0500","DENNIS CULTICE",,,116,0,142,0,142,,,,,,,"4A4B","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928070601P040141790945001","2009-01-01","2009-12-31","2",,"0","0","1","0","0","0","0","1","0",,"ZIMMER RETIREE MEDICAL & LIFE INSURANCE PLAN","511","2001-08-06","ZIMMER HOLDINGS, INC.",,,"P.O. BOX 708",,"WARSAW","IN","465810708",,,,,,,,,,,,,,,,,,"134151777","5743718081","325410","ZIMMER HOLDINGS, INC.",,"P.O. BOX 708",,"WARSAW","IN","465810708",,,,,,,"134151777","5743718081",,,,"2011-09-28T07:05:31-0500","DENNIS CULTICE","2011-09-28T07:05:31-0500","DENNIS CULTICE",,,216,0,0,0,0,,,,,,,"4A4B","1","0","1","1","1","0","1","1","0","0","0","1","0","1","3","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928100616P040639118688001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARKWAY CONSTRUCTION & ASSOCIATES L.P. 401K SAVINGS PLAN","001","1985-02-01","PARKWAY CONSTRUCTION & ASSOCIATES L.P.",,,"1000 CIVIC CIRCLE",,"LEWISVILLE","TX","75067",,,,,,,,,,,,,,,,,,"752625348","4693223716","236200","PARKWAY CONSTRUCTION & ASSOCIATES L.P.",,"1000 CIVIC CIRCLE",,"LEWISVILLE","TX","75067",,,,,,,"752625348","4693223716",,,,"2011-09-28T10:05:28-0500","MELVIN M. CHADWICK",,,,,101,93,0,8,101,0,101,51,1,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928145629P040023375846001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BIOTECHLOGIC, INC. 401(K) PLAN","001","2004-01-01","BIOTECHLOGIC, INC.",,,"717 INDIAN ROAD",,"GLENVIEW","IL","60025",,,,,,,,,,,,,,,,,,"200470829","8477303475","541600","BIOTECHLOGIC, INC.",,"717 INDIAN ROAD",,"GLENVIEW","IL","60025",,,,,,,"200470829","8477303475",,,,"2011-09-28T14:55:57-0500","PETER DELLVA",,,,,12,10,0,2,12,0,12,12,1,,"2A2E2F2J2K2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928182045P030138720513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAST CALL PRODUCTIONS INC PROFIT SHARING PLAN","001","1994-07-29","LAST CALL PRODUCTIONS INC",,"C/O PALMER COMPANY BUS MGT","11150 W OLYMPIC BLVD STE 1020",,"LOS ANGELES","CA","900641827",,,,,,,,,,,,,,,,,,"954491150","3103125410","711510","LAST CALL PRODUCTIONS INC","C/O PALMER COMPANY BUS MGT","11150 W OLYMPIC BLVD STE 1020",,"LOS ANGELES","CA","900641827",,,,,,,"954491150","3103125410",,,,"2011-09-28T18:20:45-0500","NOAH S WYLE",,,,,3,4,0,0,4,0,4,2,0,,"2E2A3D","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928182409P030138722945001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"M AND A TECHNOLOGY, INC. HEALTH AND WELFARE PLAN","501","2005-01-01","M AND A TECHNOLOGY, INC.",,,"2045 CHENAULT DRIVE",,"CARROLLTON","TX","75006",,,,,,,,,,,,,,,,,,"752132118","9724905803","334110","M AND A TECHNOLOGY, INC.",,"2045 CHENAULT DRIVE",,"CARROLLTON","TX","75006",,,,,,,"752132118","9724905803",,,,"2011-09-28T18:23:23-0500","MAGDY ELWANY",,,,,101,95,0,0,95,,,,,,,"4A4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110929080826P040142494161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE RETIREMENT PLAN FOR EMPLOYEES OF NORTHWAY BANK","001","1968-01-01","NORTHWAY BANK",,,"9 MAIN STREET",,"BERLIN","NH","03570",,,,,,,,,,,,,,,,,,"020108854","6037521171","522110","NORTHWAY BANK",,"9 MAIN STREET",,"BERLIN","NH","03570",,,,,,,"020108854","6037521171",,,,"2011-09-29T07:21:45-0500","JENNIFER JOHN",,,,,349,190,59,107,356,5,361,,9,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110923092730P040138721233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARBELLA MUTUAL INSURANCE COMPANY LIFE INSURANCE","504","1988-10-03","ARBELLA MUTUAL INSURANCE COMPANY",,,"1100 CROWN COLONY DRIVE",,"QUINCY","MA","022699103",,,,,,,,,,,,,,,,,,"043022050","6173282458","525100","ARBELLA MUTUAL INSURANCE COMPANY",,"1100 CROWN COLONY DRIVE",,"QUINCY","MA","022699103",,,,,,,"043022050","6173282458",,,,"2011-09-23T09:13:45-0500","GAYLE O'CONNELL","2011-09-23T09:13:45-0500","GAYLE O'CONNELL",,,781,788,,,788,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923104941P030135425153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN ORTHOPEDIC & SPORTS MEDICINE, P.A. DEFINED BENEFIT PLAN","002","2009-01-01","AMERICAN ORTHOPEDIC AND SPORTS MEDICINE",,,"30 WEST CENTURY ROAD",,"PARAMUS","NJ","076521433",,,,,,,,,,,,,,,,,,"020603066","2012612000","621111","AMERICAN ORTHOPEDIC & SPORTS MEDICINE, P.A.",,"30 WEST CENTURY ROAD",,"PARAMUS","NJ","076521433",,,,,,,"020603066","2012612000",,,,"2011-09-23T10:46:08-0500","STEVEN STOLLER",,,,,13,10,0,3,13,0,13,,2,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923142702P030019894498001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BANKEAST 401(K) PROFIT SHARING PLAN","001","1984-01-01","BANKEAST",,,"PO BOX 24",,"KNOXVILLE","TN","37902",,,,,,,"607 MARKET STREET",,"KNOXVILLE","TN","37902",,,,,,,"620799005","8655405800","522110","BANKEAST",,"PO BOX 24",,"KNOXVILLE","TN","37902",,,,,,,"620799005","8655405800",,,,"2011-09-23T14:25:52-0500","C. SUZI RAY",,,,,128,84,4,20,108,0,108,89,11,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110928100622P030644668464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MFI ENTERPRISES, INC. PROFIT SHARING PLAN & TRUST","001","2008-04-24","MFI ENTERPRISES, INC.",,,"22585 WAKEFIELD",,"MISSION VIEJO","CA","92692",,,,,,,,,,,,,,,,,,"262483454","9493006300","541990","MFI ENTERPRISES, INC.",,"22585 WAKEFIELD",,"MISSION VIEJO","CA","92692",,,,,,,"262483454","9493006300",,,,"2011-09-28T10:02:18-0500","ALBERT THURMOND",,,,,1,2,,,2,,2,1,,,"2G3D2E2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928075803P030644400416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C. J. BURGESS & COMPANY, INC. PROFIT SHARING & RETIREMENT PLAN","001","1958-12-30","C, J, BURGESS & COMPANY, INC.",,,"309 EAST MAIN STREET",,"CANAJOHARIE","NY","13317",,,,,,,"309 EAST MAIN STREET",,"CANAJOHARIE","NY","13317",,,,,,,"141321566","5186733711","238900","C, J, BURGESS & COMPANY, INC.",,"309 EAST MAIN STREET",,"CANAJOHARIE","NY","13317",,,,,,,"141321566","5186733711",,,,"2011-09-28T07:39:17-0500","RICHARD BURGESS",,,,,3,2,0,1,3,0,3,3,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928171337P030138685521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHNSON, CHRISTOPHER, JAVORE & COCHRAN, INC. PROFIT SHARING PLAN","001","1988-01-01","JOHNSON, CHRISTOPHER, JAVORE & COCHRAN, INC.",,,"5802 N.W. EXPRESSWAY",,"SAN ANTONIO","TX","782012851",,,,,,,,,,,,,,,,,,"742468004","2107336235","541110","JOHNSON, CHRISTOPHER, JAVORE & COCHRAN, INC.",,"5802 N.W. EXPRESSWAY",,"SAN ANTONIO","TX","782012851",,,,,,,"742468004","2107336235",,,,"2011-09-28T17:13:10-0500","PENNE RADER",,,,,11,5,0,5,10,0,10,10,0,,"2E2F2H2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928183314P040142152401001","2001-01-01","2001-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PATRICK REILLY PROFIT SHARING PLAN","001","1993-01-01","PATRICK REILLY",,,"1314 MILVIA ST",,"BERKELEY","CA","94709",,,,,,,"1314 MILVIA ST",,"BERKELEY","CA","94709",,,,,,,"943376409","5105244934","541990","PATRICK REILLY",,"1314 MILVIA ST",,"BERKELEY","CA","94709",,,,,,,"943376409","5105244934",,,,"2011-09-21T18:29:38-0500","PENSION FILERS",,,,,1,1,0,0,1,0,1,1,0,,"2E3B3G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110929101736P040021274674001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MASTERS SCHOOL, INC. - CAFETERIA PLAN","501","1988-01-01","THE MASTERS SCHOOL",,,"49 CLINTON AVENUE",,"DOBBS FERRY","NY","10522",,,,,,,,,,,,,,,,,,"131740472","9144796400","611000","THE MASTERS SCHOOL",,"49 CLINTON AVENUE",,"DOBBS FERRY","NY","10522",,,,,,,"131740472","9144796400",,,,"2011-09-28T05:43:48-0500","LEW WYMAN",,,,,201,183,1,,184,,,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110923140505P030135527313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DANDON ENTERPRISES, INC., PROFIT SHARING PLAN","001","2003-10-07","DANDON ENTERPRISES, INC.",,,"476 ROUTE 35",,"RED BANK","NJ","07701",,,,,,,,,,,,,,,,,,"200288514","7329389242","561410","DANDON ENTERPRISES, INC.",,"476 ROUTE 35",,"RED BANK","NJ","07701",,,,,,,"200288514","7329389242",,,,"2011-09-23T14:01:55-0500","DANIEL HABER",,,,,2,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923151331P040022858118001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"K. KENNETH KOTLER, ATTORNEY AT LAW PROFIT SHARING KEOGH PLAN","003","1990-01-01","K. KENNETH KOTLER, ATTORNEY AT LAW",,,"1901 AVENUE OF THE STARS, STE 1100",,"LOS ANGELES","CA","900676002",,,,,,,,,,,,,,,,,,"954263137","3102010096","541110","K. KENNETH KOTLER, ATTORNEY AT LAW",,"1901 AVENUE OF THE STARS, STE 1100",,"LOS ANGELES","CA","900676002",,,,,,,"954263137","3102010096",,,,"2011-09-23T15:09:22-0500","K. KENNETH KOTLER",,,,,2,2,0,0,2,0,2,2,0,,"2E3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110928084617P030138444961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TANYA L. DESANTO, DDS, PC 401K PLAN","001","2005-01-01","TANYA L. DESANTO, DDS, PC",,,"2900 GREENBRIAR DRIVE",,"SPRINGFIELD","IL","62704",,,,,,,,,,,,,,,,,,"371399763","2175640412","621210","TANYA L. DESANTO, DDS, PC",,"2900 GREENBRIAR DR",,"SPRINGFIELD","IL","627046418",,,,,,,"371399763","2175460412",,,,"2011-09-28T08:41:10-0500","TANYA DESANTO",,,,,7,5,0,1,6,0,6,6,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928141727P040021197378001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PREMIUM WATERS INC. GROUP MEDICAL PLAN","501","1997-11-01","PREMIUM WATERS, INC.",,,"2100 SUMMER STREET NE, SUITE 200",,"MINNEAPOLIS","MN","55413",,,,,,,,,,,,,,,,,,"411797514","6123793514","423990","PREMIUM WATERS, INC.",,"2100 SUMMER STREET NE, SUITE 200",,"MINNEAPOLIS","MN","55413",,,,,,,"411797514","6123793514",,,,"2011-09-28T14:00:25-0500","DOUGLAS GRANT",,,,,627,1162,0,0,1162,,1162,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928134109P040141989361001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP INSURANCE PLAN FOR EMPLOYEES","502","1986-04-01","MORGANS FOODS, INC.",,,"4829 GALAXY PARKWAY, SUITE S",,"CLEVELAND","OH","44128",,,,,,,,,,,,,,,,,,"340562210","2163599000","722110","MORGANS FOODS, INC.",,"4829 GALAXY PARKWAY, SUITE S",,"CLEVELAND","OH","44128",,,,,,,"340562210","2163599000",,,,"2011-09-28T13:40:26-0500","KENNETH L HIGNETT",,,,,489,460,3,0,463,,,,,,,"4A4B4D4E4H4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110929101736P040021274674004","2010-06-01","2010-12-31","2",,,,,"1",,"1",,,,,"MEMORIAL HEALTH CARE SYSTEMS LIFE, AD&D, DISABILITY, DENTAL AND VISION PLAN","501","1994-06-01","MEMORIAL HEALTH CARE SYSTEMS",,,"300 NORTH COLUMBIA AVENUE",,"SEWARD","NE","68434",,,,,,,,,,,,,,,,,,"470375220","4026432971","622000","MEMORIAL HEALTH CARE SYSTEMS",,"300 NORTH COLUMBIA AVENUE",,"SEWARD","NE","68434",,,,,,,"470375220","4026432971",,,,"2011-08-26T14:52:14-0500","JAMES EASTMAN",,,,,83,151,,,151,,,,,,,"4B4D4E4F","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110923161937P040626230960001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CORPORATE SERVICES, LLC 401(K) RETIREMENT PLAN","001","2005-01-01","CORPORATE SERVICES, LLC",,,"4131 W. LOOMIS ROAD, SUITE 210",,"GREENFIELD","WI","53221",,,,,,,,,,,,,,,,,,"200841657","4143253330","541219","CORPORATE SERVICES, LLC",,"4131 W. LOOMIS ROAD, SUITE 210",,"GREENFIELD","WI","53221",,,,,,,"200841657","4143253330",,,,"2011-09-23T16:16:43-0500","SANJAY AZAD",,,,,4,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923174722P030631729792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EPIC INTEGRATED SERVICES, INC FLEXIBLE BENEFIT PLAN","502","2002-07-01","EPIC INTEGRATED SERVICES",,,"7110 WEST JEFFERSON AVENUE","SUITE 300","LAKEWOOD","CO","80235",,,,,,,,,,,,,,,,,,"943363969","3039848090","541600","EPIC INTEGRATED SERVICES",,"7110 WEST JEFFERSON AVENUE","SUITE 300","LAKEWOOD","CO","80235",,,,,,,"943363969","3039848090","PEARL DEVELOPMENT COMPANY, INC.","841365735","502","2011-09-23T17:46:37-0500","KATHY BOLLINGER",,,,,125,75,0,0,75,,,,,,,"4A4R","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110928110235P030020360018009","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"HOMES LOWRY HORN & JOHNSON LTD PROFIT SHARING PLAN","001","1981-01-01","HOMES, LOWRY, HORN & JOHNSON, LTD",,,"3998 FAIR RIDGE DRIVE, SUITE 360",,"FAIRFAX","VA","220332907",,,,,,,"3998 FAIR RIDGE DRIVE, SUITE 360",,"FAIRFAX","VA","220332907",,,,,,,"540975470","7032814880","541211","HOMES, LOWRY, HORN & JOHNSON, LTD",,"3998 FAIR RIDGE DRIVE, SUITE 360",,"FAIRFAX","VA","220332907",,,,,,,"540975470","7032814880",,,,"2011-09-28T03:35:28-0500","GAIL CHAMBERS","2011-09-28T03:35:28-0500","GAIL CHAMBERS",,,39,30,,7,37,,37,37,5,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928095436P030138475745001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"SAINT-GOBAIN CORPORATION DEFINED BENEFIT MASTER TRUST","001",,"SAINT-GOBAIN CORPORATION",,,"P.O. BOX 860",,"VALLEY FORGE","PA","194820101",,,,,,,"750 E. SWEDESFORD ROAD",,"VALLEY FORGE","PA","194820101",,,,,,,"232615170","6103417000",,"SAINT-GOBAIN CORPORATION",,"P.O. BOX 860",,"VALLEY FORGE","PA","194820101",,,,,,,"232615170","6103417000",,,,,,,,"2011-09-28T09:51:27-0500","JOHN J SWEENEY III",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-28",,"Filed with authorized/valid electronic signature", "20110928165538P040640039920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHILIP MORRIS INTERNATIONAL SURVIVOR INCOME BENEFIT PLAN","501","2008-01-01","PMI GLOBAL SERVICES, INC.",,,"120 PARK AVENUE",,"NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"030494952","9176632000","551112","ADMINISTRATOR",,"PHILIP MORRIS INTERNATIONAL, INC","120 PARK AVENUE","NEW YORK","NY","10017",,,,,,,"030494952","9176632000",,,,"2011-09-28T11:55:36-0500","GWEN GATHERS","2011-09-28T16:51:43-0500","THOMAS ALABASTER",,,375,255,0,87,342,12,,,,,,"4L","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929112418P030647654080001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MILES & STOCKBRIDGE RETIREMENT PLAN","001","1969-04-01","MILES & STOCKBRIDGE P.C.",,"EDWARD J. ADKINS","10 LIGHT STREET",,"BALTIMORE","MD","212021487",,,,,,,,,,,,,,,,,,"521852131","4103853500","541110","MILES & STOCKBRIDGE RETIREMENT COMMITTEE","EDWARD J. ADKINS","10 LIGHT ST",,"BALTIMORE","MD","212021487",,,,,,,"521086549","4103853500",,,,"2011-07-05T06:55:29-0500","EDWARD J. ADKINS",,,,,591,448,3,112,563,,563,528,16,,"2E2F2G2J2R2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110923210156P040139051025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NALIN PATEL, M.D. DEFINED BENEFIT PENSION PLAN","002","2000-01-01","NALIN PATEL, M.D.",,,"108 OAK POINTE CIRCLE",,"STATE COLLEGE","PA","16801",,,,,,,"108 OAK POINTE CIRCLE",,"STATE COLLEGE","PA","16801",,,,,,,"061406608","8143642161","621111","NALIN PATEL, M.D.",,"108 OAK POINTE CIRCLE",,"STATE COLLEGE","PA","16801",,,,,,,"061406608","8143642161",,,,"2011-09-23T21:01:45-0500","JOSHUA LEE",,,,,1,1,0,0,1,0,1,,0,,"3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923134141P030019891186001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOMFY SYSTEMS, INC. EMPLOYEES PROFIT SHARING PLAN","002","1982-01-01","SOMFY SYSTEMS, INC.",,,"121 HERROD BLVD",,"DAYTON","NJ","08810",,,,,,,,,,,,,,,,,,"222182262","6093951300","423600","SOMFY SYSTEMS, INC.",,"121 HERROD BLVD",,"DAYTON","NJ","08810",,,,,,,"222182262","6093951300",,,,"2011-09-23T13:41:07-0500","SCOTT IONIN","2011-09-23T13:41:07-0500","SCOTT IONIN",,,93,168,0,0,168,0,168,139,1,,"2E2J2A2F2G2K3D3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923170618P030135622353005","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"ENTERPRISE WELDING & FABRICATING INC DENTAL PLAN","502","1990-01-01","ENTERPRISE WELDING & FABRICATING, INC",,,"6257 HEISLEY ROAD",,"MENTOR","OH","44060",,,,,,,,,,,,,,,,,,"341242223","4403544128","332900","ENTERPRISE WELDING & FABRICATING INC",,"6257 HEISLEY ROAD",,"MENTOR","OH","44060",,,,,,,"341242223","4403544128",,,,"2011-09-23T16:52:54-0500","SLAVKO KATIC",,,,,104,121,,,121,,121,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923140516P030135527441003","2010-01-01","2010-12-31","2",,,,,,"1",,,,,,"SILGAN CONTAINERS MANUFACTURING CORPORATION SUPPLEMENTAL UNEMPLOYMENT BENEFITS USWA MASTER PLAN","505","1995-08-01","SILGAN CONTAINERS MANUFACTURING CORPORATION",,"ANTHONY COST","21800 OXNARD STREET SUITE 600",,"WOODLAND HILLS","CA","91367",,,,,,,,,,,,,,,,,,"061502009","8183483700","332900","SILGAN CONTAINERS MANUFACTURING CORPORATION","ANTHONY COST","21800 OXNARD STREET SUITE 600",,"WOODLAND HILLS","CA","91367",,,,,,,"061502009","8183483700",,,,"2011-09-23T13:08:34-0500","ANTHONY COST",,,,,119,110,,,110,,110,,,,,"4I4F4C",,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110928112126P030138518801001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"NORTHWAY BANK 401(K) AND PROFIT SHARING PLAN","002","1987-01-01","NORTHWAY BANK",,,"3424 WHITE MOUNTAIN HIGHWAY",,"NORTH CONWAY","NH","03860",,,,,,,,,,,,,,,,,,"020108854","8004426666","522110","NORTHWAY BANK",,"3424 WHITE MOUNTAIN HIGHWAY",,"NORTH CONWAY","NH","03860",,,,,,,"020108854","8004426666",,,,"2011-09-28T12:21:06-0500","JENNIFER JOHN",,,,,265,197,0,61,258,1,259,235,1,,"2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928100851P030138481265001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GALYEAN EQUIPMENT CO. 401(K) PLAN","001","2007-01-01","GALYEAN, LP",,,"1255 INDUSTRIAL DRIVE",,"HENDERSON","TX","756525021",,,,,,,,,,,,,,,,,,"752839801","9036577561","336990","GALYEAN, LP",,"1255 INDUSTRIAL DRIVE",,"HENDERSON","TX","756525021",,,,,,,"752839801","9036577561",,,,"2011-09-28T10:08:39-0500","ALLEN GALYEAN",,,,,72,49,0,26,75,0,75,75,2,,"2A2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928162223P030138662321001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"KANAWHA SCALES AND SYSTEMS INC GROUP MEDICAL PLAN","501","1992-12-01","KANAWHA SCALES AND SYSTEMS, INC.",,"ROBERT W. FOY, TREASURER","P.O. BOX 569",,"POCA","WV","25159",,,,,,,"303 JACOBSON DRIVE",,"POCA","WV","25159",,,,,,,"550516017","3047558321","423800","KANAWHA SCALES AND SYSTEMS, INC.","ROBERT W. FOY, TREASURER","P.O. BOX 569",,"POCA","WV","25159",,,,,,,"550516017","3047558321",,,,"2011-09-28T16:22:05-0500","ROBERT FOY",,,,,124,95,,,95,,95,,,,,"4A4B4D4F4S","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110923194332P030019922226001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PREGNANCY SPECIALISTS MEDICAL GROUP, INC. 401K PROFIT SHARING PLAN","002","2002-08-26","PREGNANCY SPECIALISTS MEDICAL GROUP, INC",,,"7910 FROST STREET, SUITE 425",,"SAN DIEGO","CA","92123",,,,,,,"7910 FROST STREET, SUITE 425",,"SAN DIEGO","CA","92123",,,,,,,"330951014",,"621111","PREGNANCY SPECIALISTS MEDICAL GROUP, INC",,"7910 FROST STREET, SUITE 425",,"SAN DIEGO","CA","92123",,,,,,,"330951014",,,,,"2011-09-20T08:30:39-0500","LORRAINE STANCO","2011-09-20T08:30:39-0500","LORRAINE STANCO",,,4,3,0,1,4,0,4,4,,,"2A2E2G2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928134136P040141989457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JEFFERSON CITY MEDICAL GROUP, P.C. PROFIT SHARING PLAN","001","1971-01-04","JEFFERSON CITY MEDICAL GROUP, PC",,,"1241 W STADIUM BLVD","SUITE 1941","JEFFERSON CITY","MO","65109",,,,,,,,,,,,,,,,,,"430954586","5735567769","621111","JEFFERSON CITY MEDICAL GROUP, PC",,"1241 W STADIUM BLVD","SUITE 1941","JEFFERSON CITY","MO","65109",,,,,,,"430954586","5735567769",,,,"2011-09-28T13:41:13-0500","KELLIE RICKE",,,,,508,443,0,36,479,1,480,464,20,,"2A2E2F2G2J2K3D2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928133019P040021194466001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIRALYN VENTURES CORP 401(K) PLAN","001","2007-10-23","MIRALYN VENTURES CORP",,,"5425 ASHBURY LANE",,"DAVIDSON","NC","28036",,,,,,,,,,,,,,,,,,"261299647","7048924992","541990","MIRALYN VENTURES CORP",,"5425 ASHBURY LANE",,"DAVIDSON","NC","28036",,,,,,,"261299647","7048924992",,,,"2011-09-28T13:29:43-0500","MICHAEL NORMAN","2011-09-28T13:29:43-0500","MICHAEL NORMAN",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928160012P040142073057001","2010-08-01","2011-07-31","2",,,,,,,,,,,,"CRAFT PLATING & FINISHING PROFIT SHARING PLAN","001","1970-05-31","CRAFT PLATING COMPANY INC.",,,"P. O. BOX 91","100 UTILITY AVENUE","ATTALLA","AL","35954",,,,,,,,,,,,,,,,,,"631012043","2565387154","332810","CRAFT PLATING COMPANY INC.",,"P. O. BOX 91",,"ATTALLA","AL","35954",,,,,,,"631012043","2565387154",,,,"2011-09-27T14:54:05-0500","CHARLES E. CRAFT","2011-09-27T14:54:13-0500","CHARLES E. CRAFT",,,2,2,0,0,2,0,2,2,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923145538P040138893937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOBRO MARINE 401(K) PLAN","002","1994-08-01","MOBRO MARINE, INC.",,,"PO BOX 986",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"606 STATE ROAD 16 E",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"593110463","9042849670","483000","MOBRO MARINE, INC.",,"PO BOX 986",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"593110463","9042849670",,,,"2011-09-23T14:50:18-0500","STEPHEN CUMELLA",,,,,141,91,0,39,130,0,130,129,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110923143127P040138879937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAKER BOTTS L.L.P. LONG-TERM DISABILITY PLAN","507","1977-10-01","BAKER BOTTS L.L.P",,,"ONE SHELL PLAZA","910 LOUISIANA STREET","HOUSTON","TX","770024995",,,,,,,"ONE SHELL PLAZA","910 LOUISIANA STREET","HOUSTON","TX","770024995",,,,,,,"741195457","7132291234","541110","BAKER BOTTS L.L.P. HEALTH CARE COMMITTEE","ROB FOWLER","ONE SHELL PLAZA","910 LOUISIANA STREET","HOUSTON","TX","770024995",,,,,,,"760489873","7132291234",,,,"2011-09-23T14:30:40-0500","ROB FOWLER","2011-09-23T14:30:40-0500","ROB FOWLER",,,1298,1226,0,0,1226,0,,,,,,"4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923144944P030135547073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIDELITY MORTGAGE LENDERS, INC. PROFIT SHARING PLAN","004","1991-01-01","FIDELITY MORTGAGE LENDERS, INC.",,,"11952 WILSHIRE BLVD.",,"LOS ANGELES","CA","900256608",,,,,,,,,,,,,,,,,,"952682899","3108204300","522292","FIDELITY MORTGAGE LENDERS, INC.",,"11952 WILSHIRE BLVD.",,"LOS ANGELES","CA","900256608",,,,,,,"952682899","3108204300",,,,"2011-09-23T14:49:41-0500","CHARLES HERSHSON",,,,,14,13,0,1,14,0,14,14,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110928122405P040141947217001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GABRIEL LABORATORIES, LTD. EMPLOYEES 401(K) PLAN","002","1988-01-01","GABRIEL LABORATORIES, LTD.",,,"1421 N. ELSTON AVENUE",,"CHICAGO","IL","60642",,,,,,,,,,,,,,,,,,"363002848","7734862123","541700","GABRIEL LABORATORIES, LTD.",,"1421 N. ELSTON AVENUE",,"CHICAGO","IL","60642",,,,,,,"363002848","7734862123",,,,"2011-09-27T17:36:44-0500","SARAH POLICH","2011-09-27T17:36:44-0500","SARAH POLICH",,,38,30,,11,41,0,41,41,2,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928173040P030138694929001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ZOOT ENTERPRISES CAFETERIA PLAN","501","2000-01-01","ZOOT ENTERPRISES, INC.",,,"555 ZOOT ENTERPRISES LANE",,"BOZEMAN","MT","59718",,,,,,,"555 ZOOT ENTERPRISES LANE",,"BOZEMAN","MT","59718",,,,,,,"810529856","4065865050","541511","ZOOT ENTERPRISES, INC.",,"555 ZOOT ENTERPRISES LANE",,"BOZEMAN","MT","59718",,,,,,,"810529856","4065865050",,,,"2011-09-28T17:27:47-0500","RUTH KRONFUSS","2011-09-28T17:30:16-0500","WILLIAM HANGAS",,,271,229,0,0,229,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928173317P030138696289001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"HORTA FINANCIAL SERVICES INC 401K PLAN","001","2008-07-03","HORTA FINANCIAL SERVICES INC",,,"2103 BRANCH PIKE",,"CINNAMINSON","NJ","08077",,,,,,,,,,,,,,,,,,"262973289","8563032230","524140","HORTA FINANCIAL SERVICES INC",,"2103 BRANCH PIKE",,"CINNAMINSON","NJ","08077",,,,,,,"262973289","8563032230",,,,"2011-09-28T17:32:53-0500","CHARLES HORTA","2011-09-28T17:32:53-0500","CHARLES HORTA",,,1,2,0,0,2,0,2,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110923162747P030135604209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MINERALS TECHNOLOGIES INC. GROUP LIFE","501","1993-01-01","MINERALS TECHNOLOGIES INC.",,,"622 THIRD AVENUE","38TH FLOOR","NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"251190717","2128781814","325900","MINERALS TECHNOLOGIES INC.",,"622 THIRD AVENUE","38TH FLOOR","NEW YORK","NY","10017",,,,,,,"251190717","2128781814",,,,"2011-09-23T16:26:28-0500","MICHAEL CIPOLLA","2011-09-23T16:26:28-0500","MICHAEL CIPOLLA",,,1380,1029,326,,1355,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928124616P040141959729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDICORP HEALTH SYSTEM WELFARE BENEFIT PLANS","508","2005-01-01","MARY WASHINGTON HEALTHCARE",,,"1001 SAM PERRY BOULEVARD",,"FREDERICKSBURG","VA","224014453",,,,,,,,,,,,,,,,,,"541240646","5407412500","622000","MARY WASHINGTON HEALTHCARE",,"1001 SAM PERRY BOULEVARD",,"FREDERICKSBURG","VA","224014453",,,,,,,"541240646","5407412500",,,,"2011-09-28T12:46:12-0500","KATHRYN WALL",,,,,3979,2802,32,0,2834,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110929112720P030139174385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BURKHARDT DISTRIBUTING COMPANY INC PROFIT SHARING PLAN AND TRUST","001","1975-04-01","BURKHARDT DISTRIBUTING COMPANY, INC",,,"3935 INMAN ROAD",,"ST AUGUSTINE","FL","320840534",,,,,,,,,,,,,,,,,,"591268710","9048293008","424800","BURKHARDT DISTRIBUTING COMPANY INC",,"3935 INMAN ROAD",,"ST AUGUSTINE","FL","320840534",,,,,,,"591268710","9048293008",,,,"2011-09-29T11:27:19-0500","T. BROOKES BURKHARDT",,,,,162,102,0,50,152,0,152,132,8,,"2E2F2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110923161424P030135597105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROTOCHOPPER 401(K) SAVINGS AND RETIREMENT PLAN","001","2002-01-01","ST. MARTINS INVESTMENTS, INC.",,,"217 WEST STREET",,"ST. MARTIN","MN","56376",,,,,,,,,,,,,,,,,,"392038403","3205483586","339900","ST. MARTINS INVESTMENTS, INC.",,"217 WEST STREET",,"ST. MARTIN","MN","56376",,,,,,,"392038403","3205483586",,,,"2011-09-23T16:14:20-0500","JEN PRESTON",,,,,69,68,0,5,73,0,73,51,2,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-23","Filed with authorized/valid electronic signature",, "20110928143012P040021198354005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JML INGREDIENTS, INC ROTH SAFE-HARBOR 401-K PROFIT SHARING PLAN","001","2007-01-01","JML INGREDIENTS, INC.",,,"2019A MILLER ROAD","P O BOX 324","EAST PETERSBURG","PA","17520",,,,,,,,,,,,,,,,,,"260647132","7175692141","424500","JML INGREDIENTS, INC.",,"2019A MILLER ROAD","P O BOX 324","EAST PETERSBURG","PA","17520",,,,,,,"260647132","7175692141",,,,"2011-09-28T15:25:43-0500","STEFANIE HELLER, TRUSTEE",,,,,1,2,0,0,2,0,2,2,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928132024P040141979329002","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"LSE HEALTH AND WELLNESS, LLC 401K AND PSP","001","2010-01-01","LSE HEALTH AND WELLNESS, LLC",,,"2602 PLEASANT RUN DRIVE",,"RICHMOND","VA","232332114",,,,,,,,,,,,,,,,,,"262606840",,"812990","GREGG & BAILEY, P.C.",,"15871 CITY VIEW DRIVE SUITE 302",,"MIDLOTHIAN","VA","23113",,,,,,,"541647040","8048974700",,,,"2011-09-28T08:55:41-0500","STEVEN R. NELSON",,,,,0,19,,,19,,19,19,,,"2E2G2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928162909P040142090289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PULTEGROUP, INC. EMPLOYEE OPTIONS PLAN","509","1989-01-01","PULTEGROUP, INC.",,,"100 BLOOMFIELD HILLS PKWY, STE 300",,"BLOOMFIELD HILLS","MI","483042950",,,,,,,,,,,,,,,,,,"382766606","2486447300","236110","PULTEGROUP, INC.",,"100 BLOOMFIELD HILLS PKWY, STE 300",,"BLOOMFIELD HILLS","MI","483042950",,,,,,,"382766606","2486447300",,,,"2011-09-28T16:21:46-0500","JAMES ELLINGHAUSEN","2011-09-28T16:22:30-0500","JAMES ELLINGHAUSEN",,,6251,3935,445,0,4380,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","11","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928162916P030020386274001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEES RETIREMENT PLAN OF ALCO SPRING INDUSTRIES, INC.","002","1968-12-20","ASIL FOXLEY, INC.",,,"5923 BENDER CT",,"BURLINGTON","WI","53105",,,,,,,,,,,,,,,,,,"362664412","2622480660","332610","ASIL FOXLEY, INC.",,"5923 BENDER CT",,"BURLINGTON","WI","53105",,,,,,,"362664412","2622480660",,,,"2011-09-28T11:33:26-0500","JOHN FOXLEY","2011-09-28T11:33:26-0500","JOHN FOXLEY",,,23,0,15,1,16,6,22,,0,,"1A1G1I",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928193003P030138760881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"OMNEX GROUP, INC. LONG TERM DISABILITY PLAN","503","2008-01-01","OMNEX GROUP, INC.",,,"580 SYLVAN AVENUE",,"ENGLEWOOD CLIFFS","NJ","07632",,,,,,,,,,,,,,,,,,"330422209","2015685239","332900","OMNEX GROUP, INC.",,"580 SYLVAN AVENUE",,"ENGLEWOOD CLIFFS","NJ","07632",,,,,,,"330422209","2015685239",,,,"2011-09-28T19:29:19-0500","CHRISTOPHER M. HOLMES",,,,,116,99,0,0,99,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110924111106P030019984162001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"WAREHOUSE EMPLOYEES' UNION LOCAL 730 HEALTH AND WELFARE TRUST","501","1963-06-01","BOARD OF TRUSTEES OF THE WAREHOUSE EMPL. 730 HEALTH & WELFARE TRUST FU",,,"911 RIDGEBROOK ROAD",,"SPARKS","MD","21152",,,,,,,"911 RIDGEBROOK ROAD",,"SPARKS","MD","21152",,,,,,,"526058419","4106837761","493100","BOARD OF TRUSTEES OF THE WAREHOUSE 730 HEALTH & WELFARE TRUST FUND",,"911 RIDGEBROOK ROAD",,"SPARKS","MD","21152",,,,,,,"526058419",,,,,"2011-09-14T04:42:48-0500","TYRONE RICHARDSON",,,,,1367,1039,358,,1397,,,,,6,,"4A4B4D4E",,,"1",,"1",,"1",,,,,"1",,"1","5","1",,,"FILING_RECEIVED","2011-09-24","Filed with authorized/valid electronic signature",, "20110924121453P040139448785001","2009-01-01","2009-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PROFESSIONAL ANESTHESIA SERVICE, INC. PROFIT SHARING PLAN","002","1962-10-01","PROFESSIONAL ANESTHESIA SERVICE, INC.",,,"190 NORTH UNION STREET, SUITE 104",,"AKRON","OH","443041327",,,,,,,,,,,,,,,,,,"340891295","3302539145","621111","PROFESSIONAL ANESTHESIA SERVICE, INC.",,"190 NORTH UNION STREET, SUITE 104",,"AKRON","OH","443041327",,,,,,,"340891295","3302539145",,,,"2011-09-24T12:13:54-0500","ROBERT J. DONAHUE, MD",,,,,99,86,0,14,100,0,100,100,1,,"2E2G2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-24","Filed with authorized/valid electronic signature",, "20110928083226P040046177719001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DRS MONSON MCNAMARA GARDNER & SASSE LLC 401(K) PROFIT SHARING PLAN","002","2003-01-01","DRS MONSON MCNAMARA GARDNER & SASSE LLC",,,"7710 MERCY RD SUITE 305",,"OMAHA","NE","681242372",,,,,,,,,,,,,,,,,,"911759125","4023931338","621111","DRS MONSON MCNAMARA GARDNER & SASSE LLC",,"7710 MERCY RD SUITE 305",,"OMAHA","NE","681242372",,,,,,,"911759125","4023931338",,,,"2011-09-28T08:31:52-0500","JOHN W MONSON, M.D.",,,,,10,11,0,0,11,0,11,11,0,,"2E2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928133328P040639587456001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JEFFREY L. FRANZ, OD, FAAO, LTD. 401(K) PLAN","001","2001-03-16","JEFFREY L. FRANZ, OD, FAAO, LTD.",,,"960 E. FRY BLVD.",,"SIERRA VISTA","AZ","85635",,,,,,,,,,,,,,,,,,"861022593","5205153937","621320","JEFFREY L. FRANZ, OD, FAAO, LTD.",,"960 E. FRY BLVD.",,"SIERRA VISTA","AZ","85635",,,,,,,"861022593","5205153937",,,,"2011-09-28T13:32:47-0500","JEFFREY L. FRANZ, OD, FAAO",,,,,5,5,0,0,5,0,5,5,0,,"2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928132119P040639559680001","2008-01-01","2008-12-31","2",,"1","1","0","0","0","0","0","0","0",,"JOERNS HEALTHCARE, INC. LIFE AND DISABILITY PLAN","504","2008-01-01","JOERNS HEALTHCARE, INC.",,,"5001 JOERNS DRIVE",,"STEVENS POINT","WI","544815040",,,,,,,,,,,,,,,,,,"205251510","7153413600","339110","JOERNS HEALTHCARE, INC.",,"5001 JOERNS DRIVE",,"STEVENS POINT","WI","544815040",,,,,,,"205251510","7153413600","JOERNS HEALTHCARE, INC.","391572880","504","2011-09-28T13:14:37-0500","DEBBIE DIEKELMAN",,,,,504,569,0,0,569,,,,,,,"4B4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928163122P030045445207001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHWEST ALLERGY & ASTHMA CENTER, P.A. PROFIT SHARING PLAN","001","1989-01-01","SOUTHWEST ALLERGY & ASTHMA CENTER, P.A.",,,"7711 LOUIS PASTEUR DRIVE","SUITE 905","SAN ANTONIO","TX","78229",,,,,,,,,,,,,,,,,,"742796322","2106160690","621111","SOUTHWEST ALLERGY & ASTHMA CENTER, P.A.",,"7711 LOUIS PASTEUR DRIVE","SUITE 905","SAN ANTONIO","TX","78229",,,,,,,"742796322","2106160690",,,,"2011-09-28T16:02:30-0500","SANDRA WENK","2011-09-28T16:02:30-0500","SANDRA WENK",,,10,10,0,0,10,0,10,8,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928174507P040640134368001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"HAZELTINE NURSERIES, INC","501","2007-04-01","HAZELTINE NURSERIES, INC.",,"MURIEL HOLSTEN","P.O. BOX 236",,"VENICE","FL","342840236",,,,,,,,,,,,,,,,,,"650300478","9414851272","111400","HAZELTINE NURSERIES, INC.","MURIEL HOLSTEN","P.O. BOX 236",,"VENICE","FL","342840236",,,,,,,"650300478","9414851272",,,,"2011-09-28T18:26:22-0500","MICHELLE HAZELTINE","2011-09-28T18:26:33-0500","MICHELLE HAZELTINE",,,146,152,,,152,,,,,,,"4D4B","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927104659P030020258802001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"HUSSMANN INTERNATIONAL, INC. WELFARE BENEFIT TRUST","503","1998-01-01","HUSSMANN INTERNATIONAL, INC.",,,"12999 ST. CHARLES ROCK ROAD",,"BRIDGETON","MO","630442483",,,,,,,,,,,,,,,,,,"431791715","3142912000","333410","BENEFITS ADMINISTRATION COMMITTEE OF INGERSOLL-RAND COMPANY",,"ONE CENTENNIAL AVENUE",,"PISCATAWAY","NJ","08854",,,,,,,"222116054","7326527000",,,,"2011-09-27T10:44:21-0500","SHEILA SAVAGEAU","2011-09-27T10:44:21-0500","RICHARD J. WELLER",,,589,527,,,527,,,,,,,"4A4B4C4D4F","1","0","1","0","1","0","1","0","0","0","0","1","0","1","3","1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927104709P030137909105001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CESAR H TRABANCO DE LA CRUZ, MD, PCS RETIREMENT PLAN","001","2004-01-01","CESAR H TRABANCO DE LA CRUZ , MD, PCS",,,"PO BOX 270010",,"SAN JUAN","PR","009270010",,,,,,,,,,,,,,,,,,"660557378","7873003777","621399","CESAR H TRABANCO DE LA CRUZ , MD, PCS",,"PO BOX 270010",,"SAN JUAN","PR","009270010",,,,,,,"660557378","7873003777",,,,"2011-07-21T11:16:16-0500","CESAR H. TRABANCO DE LA CRUZ",,,,,7,7,0,0,7,0,7,7,0,,"2B2A3B3C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927094330P040141212609001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"INTERNATIONAL UNION OF ELEVATOR CONSTRUCTORS LU 6","501","1972-09-01","INTERNATIONAL UNION OF ELEVATOR CONSTRUCTORS LU 6",,,"2945 BANKSVILLE ROAD, SUITE 208",,"PITTSBURGH","PA","152162749",,,,,,,,,,,,,,,,,,"250568544","4123416666","813930","INTERNATIONAL UNION OF ELEVATOR CONSTRUCTORS LU 6",,"2945 BANKSVILLE ROAD, SUITE 208",,"PITTSBURGH","PA","152162749",,,,,,,"250568544","4123416666",,,,"2011-09-27T05:39:01-0500","MICHAEL GARFOLD",,,"2011-09-27T05:40:08-0500","WILLIAM D. GRIFFITH III",520,506,,,506,,506,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature", "20110927094508P040141213281003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SYNERGY BUSINESS MANAGEMENT","501","2009-01-01","SYNERGY BUSINESS MANAGEMENT CORP.",,,"255 ROCHESTER STREET UNIT 4",,"SALAMANCA","NY","14779",,,,,,,,,,,,,,,,,,"203758628","7169458471","453990","SYNERGY BUSINESS MANAGEMENT CORP.",,"255 ROCHESTER STREET UNIT 4",,"SALAMANCA","NY","14779",,,,,,,"203758628","7169458471",,,,"2011-09-27T09:47:45-0500","SCOTT B. MAYBEE","2011-09-27T09:43:06-0500","SCOTT B. MAYBEE",,,133,46,,,46,,,,,,,"4B4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110927074506P030137819601001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"AGAPE PLASTICS, INC GROUP INSURANCE PLAN","503","2003-01-01","AGAPE PLASTICS INC",,,"11474 FIRST AVE NW",,"GRAND RAPIDS","MI","49534",,,,,,,,,,,,,,,,,,"382334512","6167354091","326100","AGAPE PLASTICS INC",,"11474 FIRST AVE NW",,"GRAND RAPIDS","MI","49534",,,,,,,"382334512","6167354091",,,,"2011-09-27T07:37:31-0500","DAVID M. CORNELIUS, PRESIDENT","2011-09-27T07:38:09-0500","DAVID M. CORNELIUS, PRESIDENT",,,369,416,,,416,,,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926143423P030639509424001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLGATE-PALMOLIVE EMPLOYEE SEVERANCE PROGRAM","522","1988-01-01","COLGATE-PALMOLIVE COMPANY",,,"300 PARK AVENUE",,"NEW YORK","NY","100227402",,,,,,,,,,,,,,,,,,"131815595","2123102000","325600","COLGATE-PALMOLIVE COMPANY",,"300 PARK AVENUE",,"NEW YORK","NY","100227402",,,,,,,"131815595","2123102000",,,,"2011-09-26T14:33:46-0500","MARTIN COLLINS","2011-09-26T08:16:49-0500","HECTOR EREZUMA",,,5724,5670,0,0,5670,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110926131747P040140683569001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SOLOMON TECHNOLOGY SOLUTIONS, INC. 401(K) PLAN","001","2006-01-01","SOLOMON TECHNOLOGY SOLUTIONS, INC.",,,"3317 S. HIGLEY ROAD, SUITE 114-621",,"GILBERT","AZ","85297",,,,,,,"3317 S. HIGLEY ROAD, SUITE 114-621",,"GILBERT","AZ","85297",,,,,,,"900013005","6027656666","541511","SOLOMON TECHNOLOGY SOLUTIONS, INC.",,"3317 S. HIGLEY ROAD, SUITE 114-621",,"GILBERT","AZ","85297",,,,,,,"900013005","6027656666",,,,"2011-09-26T13:17:15-0500","THERESA BURNS",,,,,5,4,0,0,4,0,4,4,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926132315P030639340400001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"HUGHESWATTERSASKANASE 401(K) PLAN","001","1989-01-01","HUGHES, WATTERS & ASKANASE, L.L.P.",,,"333 CLAY, 29TH FLOOR","THREE ALAN CENTER","HOUSTON","TX","77002",,,,,,,"333 CLAY, 29TH FLOOR","THREE ALAN CENTER","HOUSTON","TX","77002",,,,,,,"760249314","7133282837","541110","HUGHES, WATTERS & ASKANASE, L.L.P.",,"333 CLAY, 29TH FLOOR","THREE ALAN CENTER","HOUSTON","TX","77002",,,,,,,"760249314","7133282837",,,,"2011-09-26T13:20:26-0500","WAYNE KITCHENS",,,,,86,77,0,12,89,0,89,69,0,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926155707P030639686592001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"BANK FORWARD 401(K) PLAN AND TRUST","002","1988-01-01","BANK FORWARD",,,"1202 28TH ST S",,"FARGO","ND","581038700",,,,,,,,,,,,,,,,,,"450344357","7012939540","522110","BANK FORWARD",,"1202 28TH ST S",,"FARGO","ND","581038700",,,,,,,"450344357","7012939540","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-09-26T14:43:27-0500","NICOLE BAKKEGARD","2011-09-26T14:43:27-0500","NICOLE BAKKEGARD",,,246,197,0,23,220,0,220,197,18,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927104801P030137909585001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"WPSC NON-ADMIN EMPLOYEE HC PLAN","512","1986-01-01","WI PUBLIC SERVICE CORPORATION",,,"700 N ADAMS STREET","PO BOX 19001","GREEN BAY","WI","543079001",,,,,,,,,,,,,,,,,,"390715160","3122403753","221100","INTEGRYS ENERGY GROUP EMPLOYEE BENEFITS ADMINISTRATOR COMMITTEE",,"700 N ADAMS STREET","PO BOX 19001","GREEN BAY","WI","543079001",,,,,,,"260392491","3122403753",,,,"2011-09-27T10:39:54-0500","DIANE L. FORD","2011-09-27T10:39:54-0500","WILLIAM J. GUC",,,2287,1138,1023,103,2264,,,,,,,"4A4D4E","1","0","1","0","1","0","1","0","0","0","0","1","0","1","3","1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927075022P030137822033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CARTERIN, INC. PROFIT SHARING PLAN","001","2008-06-25","CARTERIN, INC.",,,"6125 FOX HAVEN CT",,"MIDLOTHIAN","VA","23112",,,,,,,,,,,,,,,,,,"262874475","8046393501","541990","CARTERIN, INC.",,"6125 FOX HAVEN CT",,"MIDLOTHIAN","VA","23112",,,,,,,"262874475","8046393501",,,,"2011-09-26T17:04:15-0500","GLENN HORTON",,,,,2,2,,,2,,2,2,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110926133351P030020175714005","2010-04-01","2011-03-31","2",,,,,,,,,,,,"LIFESPACE COMMUNITIES EMPLOYEE WELFARE BENEFIT PLAN","504","1988-01-01","LIFESPACE COMMUNITIES, INC.",,,"100 EAST GRAND AVENUE, SUITE 200",,"DES MOINES","IA","503091800",,,,,,,,,,,,,,,,,,"421068850","5152885805","623000","LIFESPACE COMMUNITIES, INC.",,"100 EAST GRAND AVENUE, SUITE 200",,"DES MOINES","IA","503091800",,,,,,,"421068850","5152885805",,,,"2011-08-03T04:51:05-0500","SCOTT HARRISON",,,,,1527,1523,,,1523,,,,,,,"4B4F4H4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926142543P030137398721001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KIDS ARE FIRST LLC 401K PLAN","001","2007-05-01","KIDS ARE FIRST LLC",,,"25 E CHURCH ST",,"SELLERSVILLE","PA","18960",,,,,,,"25 E CHURCH ST",,"SELLERSVILLE","PA","18960",,,,,,,"205910403","2152577344",,"KIDS ARE FIRST LLC",,"25 E CHURCH ST",,"SELLERSVILLE","PA","18960",,,,,,,"205910403","2152577344",,,,"2011-09-26T14:24:49-0500","YVONNE A WARD",,,,,15,14,0,0,14,0,14,40,,,"2E2F2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926162756P030020190978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEALTH INVENTURES, LLC 401(K) PLAN","001","2003-01-31","HEALTH INVENTURES, LLC",,,"10901 W 120TH AVE STE 400",,"BROOMFIELD","CO","800213433",,,,,,,"ELDORADO RIDGE III",,"BROOMFIELD","CO","800213433",,,,,,,"043723090","7203048940","621900","HEALTH INVENTURES, LLC",,"10901 W 120TH AVE STE 400",,"BROOMFIELD","CO","800213433",,,,,,,"043723090","7203048940",,,,"2011-09-26T16:26:51-0500","SUSANNE ROGERS",,,,,449,395,0,65,460,3,463,288,12,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926110044P040004290771002","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"VANGUARD PROTYPE DEFINED CONTRIBUTION PLAN PROFIT SHARING","001","1985-01-01","OHIO THERAPEUTIC HEALTH SERVICES,",,,"1470 RIVERVIEW DRIVE",,"LIMA","OH","45805",,,,,,,,,,,,,,,,,,"341316069","4199991105","621340","OHIO THERAPEUTIC HEALTH SERVICES,",,"1470 RIVERVIEW DRIVE",,"LIMA","OH","45805",,,,,,,"341316069","4199991105",,,,"2011-09-23T08:42:29-0500","LINDA ASCHETTINO",,,,,4,0,0,0,0,0,0,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926142758P030137399793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"U.S. BALLOON MANUFACTURING CO., INC. 401K PROFIT SHARING PLAN","002","1991-01-01","U.S. BALLOON MANUFACTURING CO., INC.",,,"140 58TH STREET","#4D","BROOKLYN","NY","112202521",,,,,,,"140 58TH STREET","#4D","BROOKLYN","NY","112202521",,,,,,,"112614023","7184929700","339900","U.S. BALLOON MANUFACTURING CO., INC.",,"140 58TH STREET","#4D","BROOKLYN","NY","112202521",,,,,,,"112614023","7184929700",,,,"2011-09-26T14:02:23-0500","MICHAEL ISAACS",,,,,73,51,0,14,65,0,65,44,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926165655P040140786721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOBRICK WASHROOM EQUIPMENT INC WELFARE BENEFIT PLAN","550","2010-03-01","BOBRICK WASHROOM EQUIPMENT, INC.","BOBRICK WASHROOM EQUIPMENT, INC.",,"11611 HART STREET",,"NORTH HOLLYWOD","CA","91605",,,,,,,"11611 HART STREET",,"NORTH HOLLYWOD","CA","91605",,,,,,,"951763946","8187641000","332900","BOBRICK WASHROOM EQUIPMENT INC.",,"11611 HART STREET",,"NORTH HOLLYWOOD","CA","91605",,,,,,,"951763946","8187641000",,,,"2011-09-26T16:53:45-0500","BELINDA PATTI",,,,,395,395,,,395,,395,,,,,"4A4B4D4E4F","1",,,,"1",,,,,,,,,"1","19",,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110927090919P030641628576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LERNER, DAVID, LITTENBERG, KRUMHOLZ & MENTLIK LTD PLAN","503","1995-01-01","LERNER, DAVID, LITTENBERG, KRUMHOLZ & MENTLIK",,,"600 SOUTH AVENUE WEST, 3RD FLOOR",,"WESTFIELD","NJ","07090",,,,,,,,,,,,,,,,,,"222269956","9086545000","541110","LERNER, DAVID, LITTENBERG, KRUMHOLZ & MENTLIK",,"600 SOUTH AVENUE WEST, 3RD FLOOR",,"WESTFIELD","NJ","07090",,,,,,,"222269956","9086545000",,,,"2011-09-27T09:03:35-0500","ARNOLD KRUMHOLZ","2011-09-27T09:03:35-0500","ARNOLD KRUMHOLZ",,,132,148,0,0,148,,,,,,,"4B4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927133253P030138002161007","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"SHEET METAL WORKERS LOCAL 7,ZONE 1 HEALTH & WELFARE PLAN","501","1954-01-01","SHEET METAL WORKERS, LOCAL 7,ZONE 1 HEALTH & WELFARE FUND",,,"700 TOWER DR, STE 300",,"TROY","MI","480982808",,,,,,,,,,,,,,,,,,"386099712","2488139800","813930","BENESYS",,"700 TOWER DR, STE 300",,"TROY","MI","480991218",,,,,,,"382383171","2488224200",,,,"2011-09-27T09:27:28-0500","MARVIN R. FOLLOWELL",,,,,771,431,290,,721,,,,,2,,"4A4B4D4E4F4H4L","1",,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927133304P030138002241001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"BLUESTEM 401(K) RETIREMENT SAVINGS PLAN","001","2006-01-01","BLUESTEM BRANDS INC.",,,"6509 FLYING CLOUD DRIVE",,"EDEN PRAIRIE","MN","55344",,,,,,,"6509 FLYING CLOUD DRIVE",,"EDEN PRAIRIE","MN","55344",,,,,,,"611425164","9526563950","454110","BLUESTEM BRANDS INC.",,"6509 FLYING CLOUD DRIVE",,"EDEN PRAIRIE","MN","55344",,,,,,,"611425164","9526563950",,,,"2011-09-27T13:28:22-0500","MARY ANDERSON",,,,,697,669,0,66,735,1,736,525,25,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110926110131P040633673168001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"THOMPSON MYERS & ASSOCIATES, P.C. 401(K) PROFIT SHARING PLAN","001","2002-01-01","THOMPSON MYERS & ASSOCIATES, P.C.",,,"9595 WHITLEY DRIVE, SUITE 102",,"INDIANAPOLIS","IN","46240",,,,,,,,,,,,,,,,,,"352109680","3175718080","541211","THOMPSON MYERS & ASSOCIATES, P.C.",,"9595 WHITLEY DRIVE, SUITE 102",,"INDIANAPOLIS","IN","46240",,,,,,,"352109680","3175718080",,,,"2011-09-25T09:57:33-0500","JULIE A MYERS CPA","2011-09-25T09:57:37-0500","JULIE A MYERS, CPA",,,6,6,0,1,7,0,7,7,,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926115807P030020169186001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ODYSSEY INDUSTRIES, INC. EMPLOYEE HEALTH & WELFARE PLAN","501","1987-01-01","ODYSSEY INDUSTRIES, INC.",,,"3020 INDIANWOOD ROAD",,"LAKE ORION","MI","48362",,,,,,,"3020 INDIANWOOD ROAD",,"LAKE ORION","MI","48362",,,,,,,"383214228","2488148800","332900","ODYSSEY INDUSTRIES, INC.",,"3020 INDIANWOOD ROAD",,"LAKE ORION","MI","48362",,,,,,,"383214228","2488148800",,,,"2011-09-23T14:58:51-0500","DANIELLE COURSE",,,,,238,199,8,0,207,,207,,,,,"4A4B4D4E4L","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926125018P030137351041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRAVEL ACCIDENT INSURANCE PLAN","505","1961-07-01","PILKINGTON NORTH AMERICA, INC.",,,"P.O. BOX 799","811 MADISON AVENUE","TOLEDO","OH","43604",,,,,,,"P.O. BOX 799","811 MADISON AVENUE","TOLEDO","OH","43604",,,,,,,"341506654","4192473731","327210","PILKINGTON NORTH AMERICA, INC.",,"P.O. BOX 799","811 MADISON AVENUE","TOLEDO","OH","43604",,,,,,,"341506654","4192473731",,,,"2011-09-26T12:31:44-0500","DAVID R. BARCHICK, VP HUMAN RES.","2011-09-26T12:31:44-0500","DAVID R. BARCHICK, VP HUMAN RES.",,,3027,3016,0,0,3016,0,,,,,,"4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926153920P030137448417006","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"IRON WORKERS LOCAL 498 HEALTH AND WELFARE FUND","501","1979-02-01","TRUSTEES OF THE IRON WORKERS LOCAL 498 HEALTH AND WELFARE FUND",,,"5640 SOCKNESS DRIVE",,"ROCKFORD","IL","61109",,,,,,,,,,,,,,,,,,"363005501","8158749996","525100","TRUSTEES OF THE IRON WORKERS LOCAL 498 HEALTH AND WELFARE FUND",,"5640 SOCKNESS DRIVE",,"ROCKFORD","IL","61109",,,,,,,"363005501","8158749996",,,,"2011-09-26T15:23:27-0500","DAVID WHITMORE",,,,,217,177,18,,195,,195,,,,,"4F4E4D4B4A",,,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926153309P030137441857001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"TUNNELL COMPANIES, LP. 401(K) PROFIT SHARING PLAN","001","1990-01-01","TUNNELL COMPANIES, LP.",,,"34026 ANNAS WAY UNIT 1",,"LONG NECK","DE","199663213",,,,,,,,,,,,,,,,,,"510262321","3029459300","531190","TUNNELL COMPANIES, LP.",,"34026 ANNAS WAY UNIT 1",,"LONG NECK","DE","199663213",,,,,,,"510262321","3029459300",,,,"2011-09-26T15:33:05-0500","ROBERT TUNNELL","2011-09-26T15:33:05-0500","ROBERT TUNNELL",,,226,188,0,9,197,0,197,185,27,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926153332P030020186114001","2010-01-01","2010-12-31","4","C","0","0","1","0","0","0","0","0","0",,"SOCIALLY RESPONSIBLE U.S. CREDIT INDX NL CTF","001",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"566640989","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-26T15:24:29-0500","MATTHEW A. BOYER",,,"2011-09-26T15:24:29-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110926153344P030639635408001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"3-10 YEAR U.S. AGENCY INDX SL QP CTF (CM2U)","001",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"616298336","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-26T15:24:29-0500","MATTHEW A. BOYER",,,"2011-09-26T15:24:29-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110926153345P030639635472001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MATSON & CUPRILL, LLC PROFIT SHARING 401(K)","001","2003-01-01","MATSON & CUPRILL, LLC",,,"7361 KEMPER ROAD, STE B",,"CINCINNATI","OH","45249",,,,,,,"7361 KEMPER ROAD STE B",,"CINCINNATI","OH","45249",,,,,,,"320034305","5135637526","524210","MATSON & CUPRILL, LLC",,"7361 KEMPER ROAD, STE B",,"CINCINNATI","OH","45249",,,,,,,"320034305","5135637526",,,,"2011-09-26T15:33:32-0500","DANIEL CUPRILL","2011-09-26T15:33:32-0500","DANIEL CUPRILL",,,4,4,0,,4,,4,4,0,,"2E2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927132546P030642201120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FORT WAYNE WIRE DIE CORPORATE 401(K) PLAN","001","1957-03-31","FORT WAYNE WIRE DIE, INC.",,,"2424 AMERICAN WAY",,"FORT WAYNE","IN","46809",,,,,,,,,,,,,,,,,,"350799416","2607471681","339900","FORT WAYNE WIRE DIE, INC.",,"2424 AMERICAN WAY",,"FORT WAYNE","IN","46809",,,,,,,"350799416","2607471681",,,,"2011-09-27T13:24:50-0500","DONALD E. BIEBERICH","2011-09-27T13:24:50-0500","DONALD E. BIEBERICH",,,126,110,0,13,123,0,123,107,0,,"2E2F2G2H2J2K2R2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926092633P030137243249001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"TRILLIUM TRADING, LLC 401(K) PLAN","001","1998-07-11","TRILLIUM TRADING, LLC",,,"417 5TH AVE FL 6",,"NEW YORK","NY","100162204",,,,,,,,,,,,,,,,,,"800503513","2125146700","523900","TRILLIUM TRADING, LLC",,"417 5TH AVE FL 6",,"NEW YORK","NY","100162204",,,,,,,"800503513","2125146700","TRILLIUM TRADING, LLC","900216489","001","2011-09-26T09:26:29-0500","DIANA CUCCINIELLO","2011-09-26T09:26:29-0500","DIANA CUCCINIELLO",,,143,88,0,55,143,0,143,103,0,,"2E2F2G2J2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926092822P030638820496001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DREYER, FOOTE, STREIT, FURGASON PROFIT SHARING PLAN","002","1971-01-04","DREYER, FOOTE, STREIT, FURGASON",,,"1999 W DOWNER PLACE",,"AURORA","IL","60506",,,,,,,,,,,,,,,,,,"362684541","6308978764","541110","DREYER, FOOTE, STREIT, FURGASON",,"1999 W DOWNER PLACE",,"AURORA","IL","60506",,,,,,,"362684541","6308978764",,,,"2011-09-26T09:27:43-0500","RICHARD M FURGASON","2011-09-26T09:27:43-0500","RICHARD M FURGASON",,,16,16,0,0,16,0,16,16,0,,"2T3D2E2G2J2R2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926110134P040020970466001","2010-01-01","2010-12-31","2",,,,"1",,,,"1",,,,"FLORIDA NEUROVASCULAR INSTITUTE PA PROFIT SHARING PLAN","001","1999-01-01","FLORIDA NEUROVASCULAR INSTITUTE PA PROFIT SHARING PLAN",,,"5 TAMPA GENERAL CIRCLE SUITE 200",,"TAMPA","FL","33606",,,,,,,,,,,,,,,,,,"593458987","8132509101","621111","FLORIDA NEUROVASCULAR INSTITUTE PA PROFIT SHARING PLAN",,"5 TAMPA GENERAL CIRCLE SUITE 200",,"TAMPA","FL","33606",,,,,,,"593458987","8132509101",,"593458987",,"2011-09-02T09:31:29-0500","ERFAN A ALBAKRI","2011-09-02T09:32:01-0500","ERFAN A ALBAKRI MD",,,2,0,0,0,0,0,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926144256P030020181922001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"MASTER TRUST AGREEMENT FOR CERTAIN TAX QUALIFIED RETIREMENT PLANS OF BECHTEL CORPORATION","002",,"BECHTEL CORPORATION",,,"50 BEALE STREET, SUITE 500",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"942681914","4157681688",,"BECHTEL TRUST & THRIFT COMMITTEE",,"50 BEALE STREET, SUITE 500",,"SAN FRANCISCO","CA","94105",,,,,,,"942503220","4157681688","MASTER TRUST OF CERTAIN TAX QUALIFIED RET PLANS OF BECHTEL CORP","942681914","002","2011-09-26T14:41:53-0500","P.S. KNOX","2011-09-26T14:41:53-0500","P.S. KNOX",,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926164941P040140784145006","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"THE CROSS GROUP, INC. EMPLOYEE BENEFIT PLAN & TRUST","501","2010-01-01","THE CROSS GROUP, INC.",,,"1950 SOUTH VAN AVENUE",,"HOUMA","LA","70361",,,,,,,,,,,,,,,,,,"721501611","9858683906","211110","THE CROSS GROUP, INC.",,"1950 SOUTH VAN AVENUE",,"HOUMA","LA","70361",,,,,,,"721501611","9858683906",,,,"2011-09-08T09:05:09-0500","TERRY BRAUD",,,,,137,148,,,148,,,,,,,"4A","1",,"1",,"1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926114617P030137317345001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE VARBROS, LLC LIFE INSURANCE PLAN","501","2002-10-01","VARBROS, LLC",,,"16025 BROOKPARK ROAD",,"BROOK PARK","OH","441421623",,,,,,,,,,,,,,,,,,"020642942","2162675200","332110","VARBROS, LLC",,"16025 BROOKPARK ROAD",,"BROOK PARK","OH","441421623",,,,,,,"020642942","2162675200",,,,"2011-09-12T06:16:46-0500","JAMES DERZON",,,,,114,118,,,118,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926133532P040633999168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PPFA RETIREMENT PLAN","003","1982-01-01","PLANNED PARENTHOOD OF SE IOWA",,,"620 NORTH 8TH AVE",,"BURLINGTON","IA","52601",,,,,,,,,,,,,,,,,,"426078290","3197536209","621410","VICE PRESIDENT-HUMAN RESOURCES PPFA, INC.",,"434 WEST 33RD STREET 12TH FLOOR",,"NEW YORK","NY","10001",,,,,,,"131644147","2122617800",,,,"2011-09-23T13:23:38-0500","GEORGENE RICHARDS","2011-08-31T13:07:05-0500","CHERRY KLEIN",,,25,15,0,9,24,0,24,24,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926133552P040140693313001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LYN LAD GROUP, LTD 401K PLAN","003","1987-01-01","LYN LAD GROUP, LTD",,,"20 BOSTON STREET","PO BOX 8096","LYNN","MA","01904",,,,,,,,,,,,,,,,,,"042741667","7815986010","339900","LYN LAD GROUP, LTD",,"20 BOSTON STREET","PO BOX 8096","LYNN","MA","01904",,,,,,,"042741667","7815986010",,,,"2011-09-26T02:35:33-0500","JOE SPINA",,,,,197,122,1,39,162,0,162,190,0,,"2E2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926134059P040140696353001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MICHAEL J. HATRAK, D.M.D., P.A. 401K PLAN","002","1979-01-01","MICHAEL J. HATRAK, D.M.D., P.A.",,,"313 BROAD ST.","P.O. BOX 318","FLORENCE","NJ","085181911",,,,,,,,,,,,,,,,,,"222233119","6094993800","621210","MICHAEL J. HATRAK, D.M.D., P.A.",,"313 BROAD ST.",,"FLORENCE","NJ","085181911",,,,,,,"222233119","6094993800",,,,"2011-09-26T13:40:58-0500","MICHAEL J. HATRAK, D.M.D.",,,,,4,4,0,0,4,0,4,4,0,,"2E2H2J2K3E",,"0","0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926062745P040045628167001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JUMPING EXTREME INC. 401(K) PLAN","001","2007-02-02","JUMPING EXTREME INC.",,,"305 CREEK RIDGE LN",,"ROUND ROCK","TX","78664",,,,,,,,,,,,,,,,,,"208376723","5122555992","713100","JUMPING EXTREME INC.",,"305 CREEK RIDGE LN",,"ROUND ROCK","TX","78664",,,,,,,"208376723","5122555992",,,,"2011-09-26T06:26:56-0500","JAMES SCHERER","2011-09-26T06:26:56-0500","JAMES SCHERER",,,4,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926121931P030044881015001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JVB ENTERPRISES, INC. 401(K) PLAN","001","2006-05-19","JVB ENTERPRISES, INC.",,,"4502 WILLIAMSBURG COURT",,"FORT WAYNE","IN","46804",,,,,,,,,,,,,,,,,,"204999821","2604360765","531390","JVB ENTERPRISES, INC.",,"4502 WILLIAMSBURG COURT",,"FORT WAYNE","IN","46804",,,,,,,"204999821","2604360765",,,,"2011-09-26T12:19:12-0500","JOHN BALL","2011-09-26T12:19:12-0500","JOHN BALL",,,2,2,0,0,2,0,2,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926170354P030639820128001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"AERA ENERGY SERVICES COMPANY MEDICAL BENEFITS PLAN","501","1997-08-01","AERA ENERGY SERVICES COMPANY",,,"10000 MING AVENUE",,"BAKERSFIELD","CA","933111301",,,,,,,,,,,,,,,,,,"770456453","6616655000","211110","AERA ENERGY SERVICES COMPANY",,"10000 MING AVENUE",,"BAKERSFIELD","CA","933111301",,,,,,,"770456453","6616655000",,,,"2011-09-26T16:37:40-0500","ROBERT C ALBERSTADT","2011-09-26T16:37:40-0500","ROBERT C. ALBERSTADT",,,1246,1135,128,128,1391,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926084737P040140522993005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE HITE COMPANY GROUP LIFE & AD&D","501","1986-08-01","THE HITE COMPANY",,,"P.O. BOX 1754",,"ALTOONA","PA","16603",,,,,,,,,,,,,,,,,,"231328562",,"423600","THE HITE COMPANY",,"P.O. BOX 1754",,"ALTOONA","PA","16603",,,,,,,"231328562",,,,,"2011-09-30T04:19:13-0500","R. LEE HITE",,,,,261,250,,,250,,,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","8",,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926091344P030137239121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STATE UTILITY CONTRACTORS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1996-01-01","STATE UTILITY CONTRACTORS, INC.",,,"P. O. BOX 5019","4417 OLD CHARLOTTE HIGHWAY 28210","MONROE","NC","281115019",,,,,,,"CHARLOTTE UTILITY CONTRACTORS, INC.","4417 OLD CHARLOTTE HIGHWAY","CHARLOTTE","NC","281115019",,,,,,,"561444827","7042896400","238900","STATE UTILITY CONTRACTORS, INC.",,"P. O. BOX 5019","4417 OLD CHARLOTTE HIGHWAY 28210","MONROE","NC","281115019",,,,,,,"561444827","7042896400",,,,"2011-09-26T09:09:46-0500","BILL NORWOOD",,,,,212,103,,103,206,,206,205,36,,"2P3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110927110648P030137920689001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","1","0",,"KENNEDYS LATIN AMERICA LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","KENNEDYS LATIN AMERICA LLC",,,"1395 BRICKELL AVENUE","SUITE 610","MIAMI","FL","33131",,,,,,,,,,,,,,,,,,"272864453","3053711111","524210","KENNEDYS LATIN AMERICA LLC",,"1395 BRICKELL AVENUE","SUITE 610","MIAMI","FL","33131",,,,,,,"272864453","3053711111",,,,"2011-09-27T11:06:46-0500","KENNEDYS LATIN AMERICA LLC",,,,,0,4,0,0,4,0,4,2,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927093833P030137875169001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"TARGET RETIREMENT 2050 SL SF CL I (CMAQ1)","084",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"900337987","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-27T09:31:53-0500","MATTHEW A. BOYER",,,"2011-09-27T09:31:53-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110927124415P030642118480001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NOVATEC, INC. DEFINED BENEFIT PENSION PLAN","001","1984-12-17","NOVATEC, INC.",,,"222 E. THOMAS AVENUE",,"BALTIMORE","MD","21225",,,,,,,,,,,,,,,,,,"520815915","4107894811","333900","NOVATEC, INC.",,"222 E. THOMAS AVENUE",,"BALTIMORE","MD","21225",,,,,,,"520815915","4107894811",,,,"2011-09-27T12:43:38-0500","CONRAD BESSEMER","2011-09-27T12:43:38-0500","CONRAD BESSEMER",,,56,35,2,16,53,1,54,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926093910P030044841463001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WESTFIELD EMERGENCY PHYSICIANS, INC. 401(K) PROFIT SHARING PLAN","002","2000-01-01","WESTFIELD EMERGENCY PHYSICIANS, INC",,,"9-POWERS DRIVE",,"WILBRAHAM","MA","01095",,,,,,,,,,,,,,,,,,"043466859","4135682811","621111","WESTFIELD EMERGENCY PHYSICIANS, INC",,"9-POWERS DRIVE",,"WILBRAHAM","MA","01095",,,,,,,"043466859","4135682811",,,,"2011-09-23T18:14:17-0500","DAVID PETERSON","2011-09-23T18:14:17-0500","DAVID PETERSON",,,13,12,0,1,13,0,13,13,0,,"2J2E2K2G2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926110728P030137298817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BIZZN 401K RETIREMENT PLAN AND TRUST","001","2007-04-06","BIZZN INC.",,,"2025 S. KIPLING STREET",,"LAKEWOOD","CO","80227",,,,,,,,,,,,,,,,,,"208778555","3038878695","561730","BIZZN INC.",,"2025 S. KIPLING STREET",,"LAKEWOOD","CO","80227",,,,,,,"208778555","3038878695",,,,"2011-09-26T11:00:40-0500","JENNIFER DINCOLA","2011-09-26T11:00:40-0500","JENNIFER DINCOLA",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926093940P040140550625006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CRAFT SERVICES LTD 401K PLAN","001","2008-09-01","CRAFT SERVICES, LTD",,,"900 FIRST FORK",,"BULVERDE","TX","78163",,,,,,,,,,,,,,,,,,"742985044","2102252515","238210","CRAFT SERVICES LTD",,"900 FIRST FORK",,"BULVERDE","TX","78163",,,,,,,"742985044","2102252515",,,,"2011-09-23T18:22:34-0500","KIM WILSON",,,,,5,5,,,5,,5,2,,,"2K2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926140411P030137388993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EDFINANCIAL SERVICES, LLC 401(K) PLAN","002","2006-07-01","EDFINANCIAL SERVICES, LLC",,,"298 N. SEVEN OAKS DRIVE",,"KNOXVILLE","TN","37922",,,,,,,,,,,,,,,,,,"205316278","8653425127","813000","EDFINANCIAL SERVICES, LLC",,"298 N. SEVEN OAKS DRIVE",,"KNOXVILLE","TN","37922",,,,,,,"205316278","8653425127",,,,"2011-09-26T12:54:41-0500","LEEANN B. FOSTER",,,,,412,284,0,89,373,0,373,319,35,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926130943P040140678561001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1",,,,,"THYSSENKRUPP SYSTEM ENGINEERING, INC. 401(K) PLAN","002","1985-07-01","THYSSENKRUPP SYSTEM ENGINEERING, INC.",,,"901 DORIS RD.",,"AUBURN HILLS","MI","48326",,,,,,,"901 DORIS RD.",,"AUBURN HILLS","MI","48326",,,,,,,"300018348","2483773424","333610","THYSSENKRUPP SYSTEM ENGINEERING, INC.",,"901 DORIS RD.",,"AUBURN HILLS","MI","48326",,,,,,,"300018348","2483773424",,,,"2011-09-26T13:07:37-0500","TERANCE FIEBELKORN",,,,,474,220,7,178,405,1,406,371,4,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,,"1",,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926131203P040140679825001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"CLIFFSTAR LLC LONG TERM DISABILITY","506","2001-07-01","CLIFFSTAR LLC",,,"ONE CLIFFSTAR AVENUE",,"DUNKIRK","NY","14048",,,,,,,,,,,,,,,,,,"371606117","7163666100","311400","CLIFFSTAR LLC",,"ONE CLIFFSTAR AVENUE",,"DUNKIRK","NY","14048",,,,,,,"160993402","7163666100","CLIFFSTAR CORPORATION","160993402","506","2011-09-26T13:11:51-0500","REESE REYNOLDS",,,,,138,118,0,0,118,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926132730P030639349456001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"CENVILL RECREATION, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1996-01-01","CENVILL RECREATION, INC",,,"1601 FORUM PLACE","SUITE 500","WEST PALM BEACH","FL","33401",,,,,,,"1601 FORUM PLACE","SUITE 500","WEST PALM BEACH","FL","33401",,,,,,,"592107653","5616403102","531310","CENVILL RECREATION, INC",,"1601 FORUM PLACE","SUITE 500","WEST PALM BEACH","FL","33401",,,,,,,"592107653","5616403102",,,,"2011-09-26T13:23:55-0500","MARK LEVY",,,,,211,192,5,15,212,0,212,195,10,,"2E2F2G2J2K2T3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110927111021P040636488576003","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"RICHARD E PHELAN DDS PROFIT SHARING PLAN","001","2001-01-01","RICHARD E PHELAN DDS",,,"1112 MILITARY ROAD",,"BENTON","AR","72015",,,,,,,,,,,,,,,,,,"710509609","5017787129","621210","RICHARD E PHELAN DDS",,"1112 MILITARY ROAD",,"BENTON","AR","72015",,,,,,,"710509609","5017787129",,,,"2011-09-27T10:04:25-0500","RICHARD E PHELAN DDS",,,,,10,9,,,9,,9,9,,,"3B2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927111021P040636488576002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"JAMES EUGENE GORMAN MONEY PURCHASE PLAN ISERP FBO","002","1985-01-01","JAMES EUGENE GORMAN",,,"10644 SOUTH WESTERN AVENUE",,"CHICAGO","IL","606433134",,,,,,,,,,,,,,,,,,"363303786","7732338961","541110","JAMES EUGENE GORMAN",,"10644 SOUTH WESTERN AVENUE",,"CHICAGO","IL","606433134",,,,,,,"363303786","7732338961",,,,"2011-09-27T10:54:45-0500","JAMES E GORMAN","2011-09-27T11:00:10-0500","JAMES E GORMAN",,,2,,,,0,,0,,,,"3B2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927125732P030020270754001","2011-01-01","2011-05-13","2",,"0","0","1","1","0","0","0","0","0",,"AMERICAN INTERNATIONAL ENGINEERING PROFIT SHARING PLAN AND TRUST","001","1991-01-01","AMERICAN INTERNATIONAL ENGINEERING INC",,,"860 ARROYO ST",,"SAN FERNANDO","CA","913401832",,,,,,,"860 ARROYO ST",,"SAN FERNANDO","CA","913401832",,,,,,,"953293851","8183658000","331500","AMERICAN INTERNATIONAL ENGINEERING INC",,"860 ARROYO ST",,"SAN FERNANDO","CA","913401832",,,,,,,"953293851","8183658000",,,,"2011-09-27T12:38:47-0500","WARD WHITE",,,,,1,0,0,0,0,0,0,0,0,,"2A2E2H3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927135054P040141339857001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"LANG ENVIRONMENTAL, INC. 401(K) PROFIT SHARING PLAN","001","1987-04-01","LANG ENVIRONMENTAL, INC",,,"6418 BADGER DRIVE",,"TAMPA","FL","33617",,,,,,,,,,,,,,,,,,"592802012","8136228311","562000","LANG ENVIRONMENTAL, INC",,"6418 BADGER DRIVE",,"TAMPA","FL","33617",,,,,,,"592802012","8136228311",,,,"2011-09-27T02:50:46-0500","CHARLES MOWAT",,,,,31,0,0,34,34,0,34,32,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110926141039P040634080608001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNLIMITED SERVICES, INC. RETIREMENT SAVINGS PLAN","001","1997-08-01","UNLIMITED SERVICES OF WISCONSIN, INC.",,,"170 EVERGREEN ROAD",,"OCONTO","WI","541531970",,,,,,,,,,,,,,,,,,"391417867","9208344418","335900","UNLIMITED SERVICES OF WISCONSIN, INC.",,"170 EVERGREEN ROAD",,"OCONTO","WI","541531970",,,,,,,"391417867","9208344418",,,,"2011-09-26T14:09:55-0500","WILLIAM D. KESSENICH",,,,,224,222,0,8,230,0,230,113,0,,"2E2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926145656P040140731313001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ACTIVE EMG MKTS SL QP CTF (ZV96)","001",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"046892139","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-26T14:56:06-0500","MATTHEW A. BOYER",,,"2011-09-26T14:56:06-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110926121009P040140639185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SILVER SWAN STUDIOS 401(K) PROFIT SHARING PLAN AND TRUST","001","2005-01-01","SILVER SWAN STUDIOS, LLC",,,"13210 PORTER WAY",,"WACONIA","MN","55387",,,,,,,,,,,,,,,,,,"201105250","9526572267","423990","SILVER SWAN STUDIOS, LLC",,"13210 PORTER WAY",,"WACONIA","MN","55387",,,,,,,"201105250","9526572267",,,,"2011-09-26T12:08:46-0500","MARYANN PORTER",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926170754P030137499617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BASALT TRADE ASSOCIATES LLC 401K PROFIT SHARING PLAN & TRUST","001","1989-01-01","BASALT TRADE ASSOCIATES, L.L.C.",,,"PO BOX 710",,"BASALT","CO","816210710",,,,,,,"400 WEST CODY LANE",,"BASALT","CO","81621",,,,,,,"840731270","9709274704","531210","BASALT TRADE ASSOCIATES, L.L.C.",,"PO BOX 710",,"BASALT","CO","816210710",,,,,,,"840731270","9709274704",,,,"2011-09-26T17:07:53-0500","CLAY CROSSLAND",,,,,6,6,0,0,6,0,6,5,0,,"2A2E2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110927091736P030137863345001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PEPSI-COLA BOTTLING COMPANY OF HICKORY, N.C., INC. PROFIT SHARING AND 401(K) PLAN","001","1976-12-07","PEPSI-COLA BOTTLING COMPANY OF HICKORY, N.C., INC.",,,"P. O. BOX 550","2401 14TH AVENUE CIRCLE NW","HICKORY","NC","28601",,,,,,,,,,,,,,,,,,"560585594","8283228090","424400","PEPSI-COLA BOTTLING COMPANY OF HICKORY, N.C., INC.",,"P. O. BOX 550","2401 14TH AVENUE CIRCLE NW","HICKORY","NC","28601",,,,,,,"560585594","8283228090",,,,"2011-09-27T09:17:29-0500","DAVID WINGLER",,,,,342,331,0,30,361,0,361,319,3,,"2E2F2H2J2T3D","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110926124018P030137345729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAVANT TECHNOLOGIES 401 (K) PLAN","001","2002-05-01","TAVANT TECHNOLOGIES, INC",,,"3101 JAY STREET, SUITE 101",,"SANTA CLARA","CA","95054",,,,,,,"3101 JAY STREET, SUITE 101",,"SANTA CLARA","CA","95054",,,,,,,"912027172","4085195365","541511","TAVANT TECHNOLOGIES, INC",,"3101 JAY STREET, SUITE 101",,"SANTA CLARA","CA","95054",,,,,,,"912027172","4085195365",,,,"2011-09-26T12:35:43-0500","SESHA DEVANA",,,,,59,87,0,36,123,,123,54,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926111456P030137303329001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"GABRIEL BROTHERS, INC. LONG-TERM DISABILITY PLAN","503","2003-03-01","GABRIEL BROTHERS, INC. LONG-TERM DISABILITY PLAN",,,"55 SCOTT AVENUE",,"MORGANTOWN","WV","26508",,,,,,,"55 SCOTT AVENUE",,"MORGANTOWN","WV","26508",,,,,,,"550514707","3042626965","448140","GABRIEL BROTHERS, INC. LONG-TERM DISABILITY PLAN",,"55 SCOTT AVENUE",,"MORGANTOWN","WV","26508",,,,,,,"550514707","3042626965",,,,"2011-09-26T11:14:36-0500","KAREN WILTROUT",,,,,386,348,,,348,,348,,,,,"4H","1",,,,"1",,,,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926094350P030137252945008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ATMOS ENERGY CORPORATION PENSION ACCOUNT PLAN","003","1947-01-01","ATMOS ENERGY CORPORATION",,,"5430 LBJ FREEWAY","THREE LINCOLN CENTRE, SUITE 160","DALLAS","TX","75240",,,,,,,,,,,,,,,,,,"751743247","9728554026","221210","ATMOS ENERGY CORPORATION",,"5430 LBJ FREEWAY","THREE LINCOLN CENTRE, SUITE 160","DALLAS","TX","75240",,,,,,,"751743247","9728554026",,,,"2011-09-26T04:14:33-0500","RYAN GINTY",,,,,6946,4368,1485,944,6797,279,7076,,47,,"1C1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926100105P030638888288001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BRC RUBBER GROUP, INC. 401(K) PLAN","001","1994-04-01","BRC RUBBER GROUP, INC.",,,"PO BOX 227",,"CHURUBUSCO","IN","46723",,,,,,,,,,,,,,,,,,"351636703","2606932171","326200","BRC RUBBER GROUP, INC.",,"PO BOX 227",,"CHURUBUSCO","IN","46723",,,,,,,"351636703","2606932171",,,,"2011-09-26T10:00:40-0500","THOM MAHER",,,,,479,474,6,11,491,0,491,170,3,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926183718P030020199746001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADVENT SOFTWARE, INC. GROUP AND WELFARE PLAN","503","1983-06-27","ADVENT SOFTWARE, INC.",,,"600 TOWNSEND STREET",,"SAN FRANCISCO","CA","94103",,,,,,,,,,,,,,,,,,"942901952","8006857688","541519","ADVENT SOFTWARE, INC.",,"600 TOWNSEND STREET",,"SAN FRANCISCO","CA","94103",,,,,,,"942901952","8006857688",,,,"2011-09-26T18:36:37-0500","JOHN BRENNAN",,,,,887,895,22,0,917,,,,,,,"4A4B4D4E4F4G4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926155539P040634322560001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"EASTERN SHAWNEE TRIBE OF OKLAHOMA 401(K) PLAN","001","1998-07-01","EASTERN SHAWNEE TRIBE OF OKLAHOMA",,,"127 WEST ONEIDA",,"WYANDOTTE","OK","74370",,,,,,,,,,,,,,,,,,"731024490","9186662435","813000","EASTERN SHAWNEE TRIBE OF OKLAHOMA",,"127 WEST ONEIDA",,"WYANDOTTE","OK","74370",,,,,,,"731024490","9186662435",,,,"2011-09-26T15:45:27-0500","MIKE WILKEY",,,,,537,433,0,31,464,0,464,160,7,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110927103727P030020258050007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SOUTH BARNES DEVELOPMENT COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","001","1987-06-01","SOUTH BARNES DEVELOPMENT COMPANY",,,"P.O. BOX 3378",,"SPRINGFIELD","MO","65804",,,,,,,,,,,,,,,,,,"431458281","4178814820","541330","SOUTH BARNES DEVELOPMENT COMPANY",,"P.O. BOX 3378",,"SPRINGFIELD","MO","65804",,,,,,,"431458281","4178814820",,,,"2011-09-27T04:59:39-0500","MARTIN MCGEHEE",,,,,26,19,,3,22,,22,22,,,"2Q3D3H3I",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110926150927P040020991794005","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"B&B INSTALLATIONS INC PROFIT SHARING PLAN","001","1987-02-11","B&B INSTALLATIONS, INC",,,"14401 S GLEN OAK RD",,"OREGON CITY","OR","970459006",,,,,,,,,,,,,,,,,,"930922663","5036356753","238900","B&B INSTALLATIONS INC",,"14401 S GLEN OAK RD",,"OREGON CITY","OR","970459006",,,,,,,"930922663","5036356753",,,,"2011-09-26T14:00:14-0500","JERRIANN BAILEY",,,,,12,9,,3,12,,12,9,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926151047P040634222000001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"NICKERSON LUMBER PRE-TAX MEDICAL-DENTAL PREMIUM CONVERSION PLAN FOR ALL EMPLOYEES","503","1990-03-20","NICKERSON LUMBER CO.","MID-CAPE HOME CENTERS","ROBERT J. LABRIE","P.O. BOX 1418","465 ROUTE 134","SOUTH DENNIS","MA","02660",,,,,,,"P.O. BOX 1418","465 ROUTE 134","SOUTH DENNIS","MA","02660",,,,,,,"041672760","5087604465","444110","NICKERSON LUMBER CO.","ROBERT J. LABRIE","P.O. BOX 1418","465 ROUTE 134","SOUTH DENNIS","MA","02660",,,,,,,"041672760","5087604465",,,,"2011-09-26T15:02:08-0500","DAVID BOTTING",,,,,130,124,,,124,,124,,,,,"4A4D","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110927081221P040141161697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAYBAR MANUFACTURING CO., INC. 401(K) PLAN","001","1964-12-31","MAYBAR MANUFACTURING CO., INC.",,,"4403 W BASSWOOD DR",,"FRANKLIN","WI","53132",,,,,,,,,,,,,,,,,,"390842841","4144215040","332900","MAYBAR MANUFACTURING CO., INC.",,"4403 W BASSWOOD DR",,"FRANKLIN","WI","53132",,,,,,,"390842841","4144215040",,,,"2011-09-27T08:10:26-0500","TIMOTHY BARTCZAK",,,,,21,14,0,6,20,0,20,20,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927085520P030137852305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROCHDALE VILLAGE, INC. MONEY PURCHASE PENSION PLAN","002","1986-01-01","ROCHDALE VILLAGE, INC.",,,"169-65 137 AVENUE",,"JAMAICA","NY","11434",,,,,,,,,,,,,,,,,,"131929042","7182765700","531110","ROCHDALE VILLAGE, INC.",,"169-65 137 AVENUE",,"JAMAICA","NY","11434",,,,,,,"131929042","7182765700",,,,"2011-09-27T08:52:54-0500","DARIUS GEORGE","2011-09-27T08:52:54-0500","DARIUS GEORGE",,,226,132,0,82,214,0,214,214,4,,"2C3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927081701P040021062706001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIRANDA'S CABLE SERVICE, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","2006-01-01","MIRANDA'S CABLE SERVICE, INC.",,,"P.O. BOX 2455",,"NEWBURGH","NY","12550",,,,,,,"P.O. BOX 2455",,"NEWBURGH","NY","12550",,,,,,,"141789057","8455660946","221100","MIRANDA'S CABLE SERVICE, INC.",,"P.O. BOX 2455",,"NEWBURGH","NY","12550",,,,,,,"141789057","8455660946",,,,"2011-09-27T08:16:51-0500","LUDWIG BACH",,,,,21,20,0,3,23,0,23,9,0,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110926112529P030020166706001","2008-01-01","2008-09-30","2",,"1","0","0","1","0","0","0","0","0",,"BROOKS INSTRUMENT HEALTH BENEFIT PLAN","502","2008-01-01","BROOKS INSTRUMENT, LLC",,,"407 WEST VINE ST.",,"HATFIELD","PA","194400903",,,,,,,,,,,,,,,,,,"261437983","2153623500","339900","BROOKS INSTRUMENT, LLC",,"407 WEST VINE ST.",,"HATFIELD","PA","194400903",,,,,,,"261437983","2153623500",,,,"2011-09-26T11:25:01-0500","MARK BLUM",,,,,173,170,13,0,183,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926075055P040140503793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEPHEN L. KUCHENBECKER, M.D.,F.A.C.S., A MED CO PROFIT SHARING PLAN.","002","1984-02-01","STEPHEN L. KUCHENBECKER, M.D.,F.A.C.S., A MED CO",,,"157 NORTH SALTAIR AVENUE",,"LOS ANGELES","CA","90049",,,,,,,,,,,,,,,,,,"953885283","3104765030","621111","STEPHEN L. KUCHENBECKER, M.D.,F.A.C.S., A MED CO",,"157 NORTH SALTAIR AVENUE",,"LOS ANGELES","CA","90049",,,,,,,"953885283","3104765030",,,,"2011-09-26T07:50:38-0500","S. L. KUCHENBECKER","2011-09-26T07:50:38-0500","S. L. KUCHENBECKER",,,3,3,0,0,3,0,3,2,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926124231P030137346705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORDLIE COMPANIES EMPLOYEES FRINGE BENEFIT PLAN","501","1982-12-03","NORDLIE, INC.",,,"25300 GUENTHER",,"WARREN","MI","48091",,,,,,,,,,,,,,,,,,"380546950","5867554200","424930","NORDLIE, INC.",,"25300 GUENTHER",,"WARREN","MI","48091",,,,,,,"380546950","5867554200",,,,"2011-09-26T12:42:18-0500","THOMAS ADDISON",,,,,82,85,0,0,85,,,,,,,"4A","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926123001P030020171186001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"R.J. ROBERTS, INC. 401(K) PLAN","001","1978-11-01","R.J. ROBERTS, INC.",,,"PO BOX 6204",,"CONCORD","CA","94524",,,,,,,,,,,,,,,,,,"942537243","9253638207","561300","R.J. ROBERTS, INC.",,"PO BOX 6204",,"CONCORD","CA","94524",,,,,,,"942537243","9253638207",,,,"2011-09-26T13:29:00-0500","KATHLEEN ROBERTS",,,,,106,67,2,20,89,0,89,76,,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110927085546P040141188737001","2010-01-01","2010-12-31","3",,"0","0","0","0",,"1",,,,,"WILLIAM A. HAZEL, INC. 401(K) INCENTIVE AND SAVINGS PLAN","001","1985-01-01","W. A. HAZEL, INC.",,,"P.O. BOX 600","4305 HAZEL PARK COURT","CHANTILLY","VA","20151",,,,,,,"P.O. BOX 600","4305 HAZEL PARK COURT","CHANTILLY","VA","20151",,,,,,,"540753932","7033788300","237990","W. A. HAZEL, INC.",,"P.O. BOX 600","4305 HAZEL PARK COURT","CHANTILLY","VA","20151",,,,,,,"540753932","7033788300",,,,"2011-09-27T08:55:08-0500","JAY KEYSER",,,,,826,560,7,146,713,3,716,644,15,,"2F2G2J2K2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927085657P030020251298001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1",,,,,"401(K) RETIREMENT SAVINGS PLAN","002","1943-10-31","TEXAS REFINERY CORP.",,,"840 NORTH MAIN",,"FORT WORTH","TX","76164",,,,,,,"840 NORTH MAIN",,"FORT WORTH","TX","76164",,,,,,,"750481530","8173321161","324190","TEXAS REFINERY CORP.",,"840 NORTH MAIN",,"FORT WORTH","TX","76164",,,,,,,"750481530","8173321161",,,,"2011-09-27T08:56:12-0500","CHARLES ADAMSON",,,,,159,126,2,27,155,3,158,144,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927104431P030020258658001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BACKENROTH FRANKEL & KRINSKY LLP PROFIT SHARING PLAN & TRUST","001","1991-01-01","BACKENROTH FRANKEL & KRINSKY LLP",,,"489 FIFTH AVENUE",,"NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"133591276","2125931100","541110","BACKENROTH FRANKEL & KRINSKY LLP",,"489 FIFTH AVENUE",,"NEW YORK","NY","10017",,,,,,,"133591276","2125931100",,,,"2011-09-27T10:43:14-0500","ABRAHAM BACKENROTH ESQ",,,,,12,5,0,6,11,0,11,11,0,,"2E2H3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927090520P040141192961001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PALMEN MOTORS, INC. PROFIT SHARING 401K PLAN & TRUST","001","1994-01-01","PALMEN MOTORS, INC.",,,"5431 75TH STREET",,"KENOSHA","WI","531423601",,,,,,,,,,,,,,,,,,"391156658","2626122738","441110","PALMEN MOTORS, INC.",,"5431 75TH STREET",,"KENOSHA","WI","531423601",,,,,,,"391156658","8002369697",,,,"2011-09-27T09:04:27-0500","ANDREW S. PALMEN",,,,,233,207,0,27,234,0,234,138,5,,"2E2F2G2J2K3D2T2S",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927092151P040141199345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRIO INVESTMENTS, INC. EMPLOYEES STOCK OWNERSHIP TRUST","001","1996-07-01","TRIO INVESTMENTS, INC.",,,"201 EAST MAIN STREET",,"GREENWOOD","MO","64034",,,,,,,,,,,,,,,,,,"431298578","8165376868","238100","TRIO INVESTMENTS, INC.",,"201 EAST MAIN STREET",,"GREENWOOD","MO","64034",,,,,,,"431298578","8165376868",,,,"2011-09-27T07:45:07-0500","JAMES OSBORNE",,,,,64,16,37,0,53,0,53,53,0,,"2Q2O3I",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927130752P040141315345001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"DRIVECAM INC RETIREMENT SAVINGS 401(K) PLAN","001","2004-01-01","DRIVECAM INC.",,,"8911 BALBOA AVENUE","SUITE 200","SAN DIEGO","CA","92123",,,,,,,"8911 BALBOA AVENUE","SUITE 200","SAN DIEGO","CA","92123",,,,,,,"330794096","8584304000","541519","DRIVECAM INC.",,"8911 BALBOA AVENUE","SUITE 200","SAN DIEGO","CA","92123",,,,,,,"330794096","8584304000",,,,"2011-09-27T13:03:06-0500","KATHERINE OSMIAN",,,,,122,96,0,23,119,0,119,79,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110926090854P030638778208003","2010-04-01","2011-03-31","2",,,,,,,,,,,,"PHD EMPLOYEE HEALTH PLAN","501","1989-04-01","INTERNATIONAL AUTOMATION, INC",,,"PO BOX 9070",,"FORT WAYNE","IN","46899",,,,,,,,,,,,,,,,,,"351682165","2607476151","333200","INTERNATIONAL AUTOMATION INC",,"PO BOX 9070",,"FORT WAYNE","IN","46899",,,,,,,"351682165","2607476151",,,,"2011-09-26T08:27:18-0500","MARISSA WHITESELL",,,,,241,251,,,251,,251,,,,,"4Q4H4B4A","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926151803P030137427425001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"PVS CHEMICALS, INC. 401(K) PROFIT SHARING PLAN","012","1988-11-22","PVS CHEMICALS, INC.",,,"10900 HARPER AVENUE",,"DETROIT","MI","482133364",,,,,,,"10900 HARPER AVENUE",,"DETROIT","MI","482133364",,,,,,,"381226669","3139211200","325900","PVS CHEMICALS, INC.",,"10900 HARPER AVENUE",,"DETROIT","MI","482133364",,,,,,,"381226669","3139211200",,,,"2011-09-26T11:00:01-0500","MILISAV BULATOVIC","2011-09-26T15:11:50-0500","GRACE BAYER",,,423,367,5,41,413,3,416,410,11,,"2E2F2G2J2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110926124603P030004055891001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BCBSVT SHORT TERM DISABILITY PLAN","506","1989-01-01","BLUE CROSS AND BLUE SHIELD OF VERMONT",,,"P.O. BOX 186",,"MONTPELIER","VT","05601",,,,,,,"445 INDUSTRIAL LANE",,"MONTPELIER","VT","05601",,,,,,,"030277307","8023713536","524140","BLUE CROSS AND BLUE SHIELD OF VERMONT",,"P.O. BOX 186",,"MONTPELIER","VT","05601",,,,,,,"030277307","8023713536",,,,"2011-09-26T09:56:30-0500","CHRISTOPHER GANNON",,,,,333,286,3,0,289,,,,,,,"4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110926153647P040140751137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LARRY BAKER, D.D.S., INC PROFIT SHARING PLAN AND TRUST","001","1989-09-01","LARRY BAKER, D.D.S., INC",,,"2616 N.W. 39TH",,"OKLAHOMA CITY","OK","73112",,,,,,,,,,,,,,,,,,"731195498","4059433575","621210","LARRY BAKER, D.D.S., INC",,"2616 N.W. 39TH",,"OKLAHOMA CITY","OK","73112",,,,,,,"731195498","4059433575",,,,"2011-09-26T15:34:14-0500","LARRY BAKER",,,,,6,5,0,1,6,0,6,6,0,,"2E3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-26","Filed with authorized/valid electronic signature",, "20110927143940P030138039281001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HENRY SCHEIN, INC. LIFE AND AD AND D PLAN","501","1977-12-25","HENRY SCHEIN, INC.",,,"135 DURYEA ROAD",,"MELVILLE","NY","11747",,,,,,,,,,,,,,,,,,"113136595","6318435913","446190","HENRY SCHEIN, INC.",,"135 DURYEA ROAD",,"MELVILLE","NY","11747",,,,,,,"113136595","6318435913",,,,"2011-09-27T14:36:36-0500","SUSAN WONG",,,,,6429,6258,0,0,6258,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927151412P030138058481001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"COGNIZANT HEALTH & WELFARE BENEFIT PLAN","510","2008-01-01","COGNIZANT TECHNOLOGY SOLUTIONS",,,"500 FRANK W BURR BLVD",,"TEANECK","NJ","07666",,,,,,,,,,,,,,,,,,"133924155","2016787121","541511","COGNIZANT TECHNOLOGY SOLUTIONS",,"500 FRANK W BURR BLVD",,"TEANECK","NJ","07666",,,,,,,"133924155","2016787121",,,,"2011-09-27T15:13:40-0500","ROBERT TELESMANIC",,,,,12492,16654,123,0,16777,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110928111505P040141913105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHN XXIII 401K PLAN","001","1997-01-01","JOHN XXIII HOME",,,"2250 SHENANGO VALLEY FWY",,"HERMITAGE","PA","161482549",,,,,,,,,,,,,,,,,,"251214797","7249813200","623000","JOHN XXIII HOME",,"2250 SHENANGO VALLEY FWY",,"HERMITAGE","PA","161482549",,,,,,,"251214797","7249813200",,,,"2011-09-28T11:13:48-0500","KIRK HAWTHORNE",,,,,175,136,0,39,175,2,177,165,11,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110927152420P040021099138001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HILL EYE CENTER MONEY PURCHASE PENSION PLAN","001","2000-01-01","HILL EYE CENTER",,,"838 N. HILL ST.",,"LOS ANGELES","CA","90012",,,,,,,"838 N. HILL ST.",,"LOS ANGELES","CA","90012",,,,,,,"954663228","2136268383","621111","HILL EYE CENTER",,"838 N. HILL ST.",,"LOS ANGELES","CA","90012",,,,,,,"954663228","2136268383",,,,"2011-09-27T15:24:11-0500","JOSHUA LEE",,,,,3,3,0,0,3,0,3,3,0,,"2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110928102741P040021176082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREENWAY AUTOMOTIVE DISTRIBUTORS, INC. PROFIT SHARING PLAN","001","2009-01-29","GREENWAY AUTOMOTIVE DISTRIBUTORS, INC.",,,"15851 DALLAS PKWY STE 540",,"ADDISON","TX","75001",,,,,,,,,,,,,,,,,,"264151987","9727705050","441300","GREENWAY AUTOMOTIVE DISTRIBUTORS, INC.",,"15851 DALLAS PKWY STE 540",,"ADDISON","TX","75001",,,,,,,"264151987","9727705050",,,,"2011-09-28T10:19:07-0500","DAVID SHEEDY",,,,,3,3,,,3,,3,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110927144219P030138040657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LONE STAR BAKERY, INC. 401K PLAN","001","1996-01-01","LONE STAR BAKERY, INC.",,,"PO BOX 201960",,"SAN ANTONIO","TX","782208960",,,,,,,,,,,,,,,,,,"741553300","2106486400","311800","LONE STAR BAKERY, INC.",,"PO BOX 201960",,"SAN ANTONIO","TX","782208960",,,,,,,"741553300","2106486400",,,,"2011-09-27T14:41:23-0500","JEROME NEUHOFF",,,,,490,432,0,22,454,0,454,153,0,,"2E2G2J2K2T3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927140910P040021092930001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IBM MEDICAL DISABILITY INCOME PLAN","506","1991-01-01","INTERNATIONAL BUSINESS MACHINES CORPORATION",,,"NEW ORCHARD ROAD, MD 261",,"ARMONK","NY","10504",,,,,,,,,,,,,,,,,,"130871985","8007969876","541519","INTERNATIONAL BUSINESS MACHINES CORPORATION",,"NEW ORCHARD ROAD, MD 261",,"ARMONK","NY","10504",,,,,,,"130871985","8007969876",,,,"2011-09-27T14:08:11-0500","RICHARD CARROLL",,,,,542,0,496,0,496,,,,,,,"4H","0","0","1","1","0","0","1","1","0","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110928103918P040141896593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AAA QUALITY SERVICES INC 401(K) PLAN","001","1995-09-01","AAA QUALITY SERVICES INC",,,"PO BOX 535",,"FARMERSVILLE","CA","93223",,,,,,,,,,,,,,,,,,"770133627","5595941128","812990","AAA QUALITY SERVICES INC",,"PO BOX 535",,"FARMERSVILLE","CA","93223",,,,,,,"770133627","5595941128",,,,"2011-09-28T10:38:25-0500","SANDY THEIS","2011-09-28T10:38:25-0500","SANDY THEIS",,,132,100,0,23,123,0,123,73,15,,"3D2E2J2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927123143P030137960049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DEMCO PROFIT SHARING RETIREMENT PLAN","333","1953-07-01","DEMCO, INC.",,,"PO BOX 7488",,"MADISON","WI","537077488",,,,,,,"4810 FOREST RUN ROAD",,"MADISON","WI","53704",,,,,,,"391311089","6082411201","454110","DEMCO, INC.",,"PO BOX 7488",,"MADISON","WI","537077488",,,,,,,"391311089","6082411201",,,,"2011-09-27T12:30:50-0500","DONALD ROGERS","2011-09-27T12:30:50-0500","DONALD J. ROGERS",,,496,343,0,113,456,0,456,445,22,,"2E2F2G2J2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927123146P030020268130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW YORK STATE CATHOLIC HEALTH PLAN, INC., GROUP HEALTH INSURANCE PLAN","501","1998-01-01","NEW YORK STATE CATHOLIC HEALTH PLAN, INC.","DBA FIDELIS CARE NEW YORK",,"95-25 QUEENS BLVD.",,"REGO PARK","NY","11374",,,,,,,,,,,,,,,,,,"113153422","7188966500","524140","NEW YORK STATE CATHOLIC HEALTH PLAN, INC.",,"95-25 QUEENS BLVD.",,"REGO PARK","NY","11374",,,,,,,"113153422","7188966500",,,,"2011-09-27T12:31:09-0500","MARGARET M. BRUBAKER",,,,,1432,1456,18,0,1474,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927161141P040141416977001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"JONATHAN CLUB 401(K) PLAN","002","1998-07-01","JONATHAN CLUB",,,"545 S FIGUEROA ST",,"LOS ANGELES","CA","900711704",,,,,,,,,,,,,,,,,,"950884320","2133125265","813000","JONATHAN CLUB",,"545 S FIGUEROA ST",,"LOS ANGELES","CA","900711704",,,,,,,"950884320","2133125265",,,,"2011-09-27T16:11:35-0500","KRISTINE CARROLL","2011-09-27T16:11:35-0500","KRISTINE CARROLL",,,300,252,0,37,289,0,289,227,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927181631P030020302290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FJ TORRES MD, PSC RETIREMENT PLAN","001","2006-01-01","FJ TORRES MD, PSC",,,"PO BOX 189",,"CAGUAS","PR","007260189",,,,,,,,,,,,,,,,,,"660669922","7877224025","622000","FJ TORRES MD, PSC",,"PO BOX 189",,"CAGUAS","PR","007260189",,,,,,,"660669922","7877224025",,,,"2011-09-27T18:08:46-0500","FRANCISCO J. TORRES SIERRA","2011-09-27T18:08:46-0500","FRANCISCO J. TORRES SIERRA",,,2,2,0,0,2,0,2,2,0,,"2E3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927142227P030020278242001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BIRCH TREE COMMUNITIES INC 401(K) PROFIT SHARING","001","2001-07-01","BIRCH TREE COMMUNITIES INC",,,"PO BOX 1589",,"BENTON","AR","72018",,,,,,,"1718 OLD HOT SPRINGS HWY",,"BENTON","AR","72019",,,,,,,"710680117","5013033111","623000","BIRCH TREE COMMUNITIES INC",,"PO BOX 1589",,"BENTON","AR","72018",,,,,,,"710680117","5013033111",,,,"2011-09-27T14:21:48-0500","MARCIA OGDEN","2011-09-27T14:21:48-0500","MARCIA OGDEN",,,320,266,15,25,306,0,306,190,18,,"2E2G2J2K3D2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927142406P030138028961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DEVELOPMENTAL DISABILITES INSTITUTE WELFARE BENEFITS PLAN","502","1984-07-01","DEVELOPMENT DISABILITIES INSTITUTE",,,"99 HOLLYWOOD DRIVE",,"SMITHTOWN","NY","11787",,,,,,,,,,,,,,,,,,"116077347","6313662908","611000","DEVELOPMENTAL DISABILITIES INSTITUTE","CYNTHIA DIEHL","99 HOLLYWOOD DRIVE",,"SMITHTOWN","NY","11787",,,,,,,"116077347","6313662908",,,,"2011-09-27T12:35:38-0500","CYNTHIA DIEHL","2011-09-27T14:23:42-0500","SOPHIA SAMUEL",,,2145,2179,,,2179,,,,,,,"4A4B4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927124807P040141304897001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"TARGET RETIRMENT 2035 NL SF CL A (CMDP1)","197",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"900337987","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-27T12:38:56-0500","MATTHEW A. BOYER",,,"2011-09-27T12:38:56-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110927155204P030138076177001","2010-01-01","2010-12-31","4","C","1","0","0","0","0","0","0","0","0",,"RUSSELL SMALL CAP INDX NL SF CL D (CM7I8)","263",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"900337987","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-27T15:49:25-0500","MATTHEW A. BOYER",,,"2011-09-27T15:49:25-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110927184525P030138149633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHAEL G. RASCH, P.C. 401(K) PROFIT SHARING PLAN AND TRUST","001","2002-01-01","MICHAEL G. RASCH, P.C.",,,"2180 EAST 4500 SOUTH #135",,"HOLLADAY","UT","84117",,,,,,,,,,,,,,,,,,"870645971","8012771916","621210","MICHAEL G. RASCH, P.C.",,"2180 EAST 4500 SOUTH #135",,"HOLLADAY","UT","84117",,,,,,,"870645971","8012771916",,,,"2011-09-26T21:24:48-0500","MICHAEL RASCH","2011-09-26T21:24:48-0500","MICHAEL RASCH",,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928112837P040141920657001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"SILVER OAKS RETIREMENT PLAN","001","1987-04-01","SILVER OAKS COMMUNICATIONS, INC.",,,"824 17TH STREET",,"MOLINE","IL","61266",,,,,,,,,,,,,,,,,,"363239778","3097979898","541400","SILVER OAKS COMMUNICATIONS, INC.",,"824 17TH STREET",,"MOLINE","IL","61266",,,,,,,"363239778","3097979898",,,,"2011-09-28T11:25:55-0500","GREGORY SCOTT",,,,,50,37,0,10,47,0,47,47,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928112934P040021181314001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BOSTON HERALD SAVINGS PLAN","028","1994-02-14","BOSTON HERALD, INC.",,,"300 HARRISON AVE",,"BOSTON","MA","02118",,,,,,,,,,,,,,,,,,"042775341","6174263000","511110","BOSTON HERALD, INC.",,"300 HARRISON AVE",,"BOSTON","MA","02118",,,,,,,"042775341","6174263000",,,,"2011-09-28T10:44:48-0500","CAROL BARTLETT","2011-09-28T10:48:37-0500","JOHN FLINN",,,278,112,6,143,261,0,261,260,1,,"2E2G2J2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927123406P040141297921001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"SMALL CAP INDX PLUS NL FUND (CM2YNON)","153",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"900337987","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-27T12:32:19-0500","MATTHEW A. BOYER",,,"2011-09-27T12:32:19-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110927165720P030138111489001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","1","0","0","0",,"CONDIES FOODS, INC. 401(K) RETIREMENT PLAN","001","1992-04-01","CONDIES FOODS, INC.",,,"5300 WEST 4800 SOUTH",,"KEARNS","UT","84118",,,,,,,,,,,,,,,,,,"870345628","8019691448","445110","CONDIES FOODS, INC.",,"5300 WEST 4800 SOUTH",,"KEARNS","UT","84118",,,,,,,"870345628","8019691448",,,,"2011-09-27T16:56:49-0500","CHAD WORKMAN","2011-09-27T16:56:49-0500","CHAD WORKMAN",,,128,112,0,6,118,0,118,50,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927163740P040021105154001","2010-04-01","2011-03-31","2",,"0","0","0","0",,,,,,,"KV PHARMACEUTICAL RETIREMENT SAVINGS PLAN","001","1959-03-01","KV PHARMACEUTICAL COMPANY",,,"1 CORPORATE WOODS",,"BRIDGETON","MO","63044",,,,,,,"1 CORPORATE WOODS",,"BRIDGETON","MO","63044",,,,,,,"430618919","3146456600","325410","KV PHARMACEUTICAL COMPANY",,"1 CORPORATE WOODS",,"BRIDGETON","MO","63044",,,,,,,"430618919","3146456600",,,,"2011-09-27T15:12:40-0500","CHRIS DUMM",,,,,1482,385,4,516,905,7,912,791,0,,"2E2F2G2J2K2T3D3H3I",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927183911P040141487793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONSOLIDATED GRAPHICS, INC. HEALTH BENEFIT PLAN","501","1996-01-01","CONSOLIDATED GRAPHICS, INC.",,,"5858 WESTHEIMER, SUITE 200",,"HOUSTON","TX","77057",,,,,,,,,,,,,,,,,,"760190827","7133395762","323100","CONSOLIDATED GRAPHICS, INC.",,"5858 WESTHEIMER, SUITE 200",,"HOUSTON","TX","77057",,,,,,,"760190827","7133395762",,,,"2011-09-27T18:38:11-0500","LORI NEAL",,,,,3237,3310,2,0,3312,,,,,,,"4A4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","18","0","0","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927143011P030138032865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRAHAM & SEGREST, LLP PROFIT SHARING PLAN","002","1974-12-01","GRAHAM & SEGREST, LLP",,,"P.O. BOX 1442","407 7TH ST N","COLUMBUS","MS","39703",,,,,,,,,,,,,,,,,,"640918561","6623281126","541110","GRAHAM & SEGREST, LLP",,"P.O. BOX 1442","407 7TH ST N","COLUMBUS","MS","39703",,,,,,,"640918561","6623281126",,,,"2011-09-27T14:29:49-0500","THOMAS L. SEGREST","2011-09-27T14:29:49-0500","THOMAS L. SEGREST",,,4,3,0,1,4,0,4,3,0,,"2T3D2E2G2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927155304P030138076657001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"TARGET RETIREMENT 2015 NL SF CL D (CMDL3)","267",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"900337987","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-27T15:49:24-0500","MATTHEW A. BOYER",,,"2011-09-27T15:49:24-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110927144523P030642384304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"3 BUSY DOGS, INC. PROFIT SHARING PLAN","001","2008-08-14","3 BUSY DOGS, INC.",,,"3734 E. EQUESTRIAN TRAIL",,"PHOENIX","AZ","85044",,,,,,,,,,,,,,,,,,"262407657","4802843390","812990","3 BUSY DOGS, INC.",,"12430 E CAYUSE CT",,"SCOTTSDALE","AZ","85259",,,,,,,"262407657","7038509995",,,,"2011-09-27T12:07:46-0500","JENNIFER BROWN",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110928110545P040141908913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRAY TELEVISION, INC. CAPITAL ACCUMULATION PLAN","003","1994-10-01","GRAY TELEVISION, INC.",,,"P. O. BOX 1867",,"ALBANY","GA","31702",,,,,,,,,,,,,,,,,,"580285030","2298889375","515100","PLAN BENEFITS COMMITTEE",,"P. O. BOX 1867",,"ALBANY","GA","31702",,,,,,,"580285030","2298889375",,,,"2011-09-28T11:04:54-0500","MARTHA E. GILBERT",,,,,2123,1650,5,321,1976,0,1976,1739,130,,"2E2J3H2K2F2H3D2R","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110928081906P040141824353001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"RESTAURANT MANAGEMENT OF S.C. 401(K) PLAN","001","1999-01-01","RESTAURANT MANAGEMENT OF S.C.",,,"205 EAST LIBERTY STREET",,"SUMTER","SC","29150",,,,,,,,,,,,,,,,,,"570819683","8037759742","722110","RESTAURANT MANAGEMENT OF S.C.",,"205 EAST LIBERTY STREET",,"SUMTER","SC","29150",,,,,,,"570819683","8037759742",,,,"2011-09-28T08:18:19-0500","MARLA TALLEY","2011-09-28T08:18:19-0500","MARLA TALLEY",,,173,0,0,0,0,0,0,0,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927150228P030642426032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HASENFELD-STEIN, INC. PROFIT SHARING RETIREMENT PLAN","001","1968-12-18","HASENFELD-STEIN, INC.",,,"444 MADISON AVE. SUITE 501",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"132587283","2125750290","423940","HASENFELD-STEIN, INC.",,"444 MADISON AVE. SUITE 501",,"NEW YORK","NY","10022",,,,,,,"132587283","2125750290",,,,"2011-09-27T15:02:24-0500","NACHUM STEIN","2011-09-27T15:02:24-0500","NACHUM STEIN",,,15,13,0,2,15,0,15,5,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110928105517P030138503937001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ZALE CORPORATION PUERTO RICO EMPLOYEES SAVINGS AND INVESTMENT PLAN","003","2008-01-01","ZALE CORPORATION",,,"901 W. WALNUT HILL LANE","M/S 6B-12","IRVING","TX","75038",,,,,,,,,,,,,,,,,,"750675400","9725804342","448310","ZALE CORPORATION",,"901 W. WALNUT HILL LANE","M/S 6B-12","IRVING","TX","75038",,,,,,,"750675400","9725804342",,,,"2011-09-28T10:57:26-0500","JAMES SULLIVAN",,,,,200,189,,62,251,,251,230,5,,"2E2F2G2J2K3C3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110927124546P040141303889001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"US INTERMED GOV/CREDIT BND INDX NL SF CL A (","184",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"900337987","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-27T12:38:53-0500","MATTHEW A. BOYER",,,"2011-09-27T12:38:53-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110927151911P030138060769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SME, INC. OF SEATTLE 401(K) SALARY REDUCTION PLAN & TRUST","001","1994-04-01","SME, INC. OF SEATTLE",,,"828 POPLAR PLACE S.",,"SEATTLE","WA","98144",,,,,,,,,,,,,,,,,,"911884341","2063292040","238210","SME, INC. OF SEATTLE",,"828 POPLAR PLACE S.",,"SEATTLE","WA","98144",,,,,,,"911884341","2063292040",,,,"2011-09-27T15:08:03-0500","ADAM PINSKY","2011-09-27T15:08:03-0500","ADAM PINSKY",,,166,104,13,45,162,0,162,156,19,,"2E2F2J2K3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110927170453P030004083219001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"POWER & TELEPHONE SUPPLY COMPANY 401(K) PLAN","003","1984-01-01","POWER & TELEPHONE SUPPLY COMPANY",,,"2673 YALE AVENUE",,"MEMPHIS","TN","38112",,,,,,,,,,,,,,,,,,"620694520","9018663269","423600","POWER & TELEPHONE SUPPLY COMPANY",,"2673 YALE AVENUE",,"MEMPHIS","TN","38112",,,,,,,"620694520","9018663269",,,,"2011-09-27T17:01:11-0500","JUDY A. WAKEFIELD",,,,,373,291,0,80,371,0,371,366,23,,"3D2E2J2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927155540P030138078177001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"EECU 401(K) PLAN","001","1968-06-01","EECU",,,"1617 WEST SEVENTH STREET",,"FORT WORTH","TX","761022503",,,,,,,,,,,,,,,,,,"750275915","8178820000","522130","EECU",,"1617 WEST SEVENTH STREET",,"FORT WORTH","TX","761022503",,,,,,,"750275915","8178820000",,,,"2011-09-27T15:03:06-0500","ROBERT SANGER",,,,,295,256,1,26,283,1,284,280,16,,"2E2J2G2F2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110928113807P040141924705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IMLER'S POULTRY 401(K) PROFIT SHARING PLAN","001","1988-01-01","IMLERS POULTRY",,,"1887 ROUTE 764","P.O. BOX 836","DUNCANSVILLE","PA","16635",,,,,,,,,,,,,,,,,,"251697302","8149435563","424500","IMLERS POULTRY",,"1887 ROUTE 764","P.O. BOX 836","DUNCANSVILLE","PA","16635",,,,,,,"251697302","8149435563",,,,"2011-09-28T11:37:40-0500","NANCY BOUCHER",,,,,131,116,1,3,120,0,120,62,2,,"2E2F2G2J2K3B3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-28","Filed with authorized/valid electronic signature",, "20110927113452P030137935281001","2010-01-01","2010-12-31","2",,"0","0","1","0","1","1","0","0","0",,"ALSTOM TRANSPORTATION MEDICAL INSURANCE PLAN","506","2002-01-01","ALSTOM TRANSPORTATION",,,"ONE TRANSIT DRIVE",,"HORNELL","NY","14843",,,,,,,,,,,,,,,,,,"112949993","6072812549","221100","ALSTOM TRANSPORTATION",,"ONE TRANSIT DRIVE",,"HORNELL","NY","14843",,,,,,,"112949993","6072812549",,,,"2011-09-27T10:33:07-0500","AMY CHAPMAN",,,,,345,0,,,0,,0,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature",, "20110927160431P030004082131001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"TUCKERMAN GLOBAL REAL EST SEC INDX NL SER FN","238",,"STATE STREET BANK AND TRUST COMPANY",,"ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,,,,,,,,,,,,"900337987","6176640533",,"STATE STREET BANK AND TRUST COMPANY","ATTN- MATTHEW A. BOYER","STATE STREET FINANCIAL CENTER","ONE LINCOLN STREET, 8TH FLOOR","BOSTON","MA","02111",,,,,,,"041867445","6176640533",,,,"2011-09-27T15:49:08-0500","MATTHEW A. BOYER",,,"2011-09-27T15:49:08-0500","MATTHEW A. BOYER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-27","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110929131516P040021294930003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CAMBRIDGE INFORMATION GROUP INC. WELFARE PLAN","510","2007-01-01","CAMBRIDGE INFORMATION GROUP INC.",,,"7200 WISCONSIN AVENUE, SUITE 601",,"BETHESDA","MD","20814",,,,,,,,,,,,,,,,,,"521088476","3019616700","511120","CAMBRIDGE INFORMATION GROUP INC.",,"7200 WISCONSIN AVENUE, SUITE 601",,"BETHESDA","MD","20814",,,,,,,"521088476","3019616700",,,,"2011-09-29T13:09:40-0500","DELORES SNOWDEN",,,,,1351,1260,,,1260,,,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","10","1",,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111003132401P030020825826001","2010-10-01","2011-09-30","2",,"0","1","1","0","0","0","0","0","0",,"MARIO Z. REYES, M.D., P.C. MONEY PURCHASE PLAN","002","1988-10-01","MARIO Z. REYES, M.D., P.C.",,,"85 WEHRLE DR",,"CHEEKTOWAGA","NY","142251061",,,,,,,,,,,,,,,,,,"161167650","7168360710","621111","MARIO Z. REYES, M.D., P.C.",,"85 WEHRLE DR",,"CHEEKTOWAGA","NY","142251061",,,,,,,"161167650","7168360710",,,,"2011-10-03T13:23:09-0500","MARIO REYES",,,,,5,0,0,0,0,0,0,0,0,,"2C3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003133311P040145134529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREEN ENGINEERING GROUP, P.S.C. RETIREMENT PLAN","001","2006-01-01","GREEN ENGINEERING GROUP, P.S.C.","SAME","JOSE M. GREEN RUIZ","PO BOX 195391",,"SAN JUAN","PR","009195391",,,,,,,,,,,,,,,,,,"660585178","7877677477","812990","JOSE M. GREEN RUIZ","SAME","PO BOX 195391",,"SAN JUAN","PR","009195391",,,,,,,"660585178","7877677477",,,,"2011-10-03T12:55:57-0500","JOSE M. GREEN RUIZ",,,,,4,4,0,0,4,0,4,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003142352P040145169409007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LIGHTHOUSE FOR THE BLIND, INC. EMPLOYEES RETIREMENT PLAN","001","1972-07-01","LIGHTHOUSE FOR THE BLIND, INC.",,,"10440 TRENTON AVE.",,"ST. LOUIS","MO","631321223",,,,,,,"10440 TRENTON AVE.",,"ST. LOUIS","MO","631321223",,,,,,,"430652639","3144234333","813000","LIGHTHOUSE FOR THE BLIND, INC.",,"10440 TRENTON AVE.",,"ST. LOUIS","MO","631321223",,,,,,,"430652639","3144234333",,,,"2011-07-30T08:26:22-0500","JOSEPH J. HULL",,,,,105,88,1,8,97,,97,97,1,,"2C2G3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929142404P030004120547001","2005-01-01","2005-12-31","2",,"1","0","0","0","0","0","0","1","0",,"CUNNINGHAM, INC. 401(K) PROFIT SHARING PLAN & TR","001","2005-03-10","MAJOR SECURITY HOLDINGS, LLC",,,"313 READ STREET",,"PORTLAND","ME","04103",,,,,,,,,,,,,,,,,,"010392926","2078785858","541990","MAJOR SECURITY HOLDINGS, LLC",,"313 READ STREET",,"PORTLAND","ME","04103",,,,,,,"010392926","2078785858",,,,"2011-09-29T14:19:52-0500","MICHELLE PERKINS","2011-09-29T14:19:52-0500","MICHELLE PERKINS",,,8,0,0,8,8,0,8,4,0,,"2E2G2J3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003084958P030141453201001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"RETIREMENT PLAN OF ECHOING HILLS VILLAGE, INC.","003","1991-06-01","ECHOING HILLS VILLAGE, INC.",,,"36272 COUNTY ROAD 79",,"WARSAW","OH","438449770",,,,,,,,,,,,,,,,,,"310735747","7403272311","623000","ECHOING HILLS VILLAGE, INC.",,"36272 COUNTY ROAD 79",,"WARSAW","OH","438449770",,,,,,,"310735747","7403272311",,,,"2011-10-03T08:49:52-0500","JOHN SWANSON","2011-10-03T08:49:52-0500","JOHN SWANSON",,,506,490,0,16,506,0,506,229,107,,"2F2G2L2M2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","3","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003085035P030011932357001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOWER AUTOMOTIVE RETIREMENT SAVINGS PLAN","001","2007-07-30","TOWER AUTOMOTIVE HOLDINGS USA, LLC",,,"17672 NORTH LAUREL PARK DRIVE","SUITE 400E","LIVONIA","MI","48152",,,,,,,,,,,,,,,,,,"260459108","2486756000","336300","TOWER AUTOMOTIVE HOLDINGS USA, LLC",,"17672 NORTH LAUREL PARK DRIVE","SUITE 400E","LIVONIA","MI","48152",,,,,,,"260459108","2486756000",,,,"2011-10-03T08:50:05-0500","DAWN E. WALKER","2011-10-03T08:50:05-0500","DAWN E. WALKER",,,1957,1588,0,136,1724,3,1727,1700,110,,"2F2G2J2K3H2E2S2T",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003085248P030141453905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLUE CROSS AND BLUE SHIELD OF FLORIDA, INC. GROUP BENEFIT PLAN","502","1954-09-01","BLUE CROSS AND BLUE SHIELD OF FLORIDA, INC.",,,"4800 DEERWOOD CAMPUS PARKWAY","DCC 100 DC1-4","JACKSONVILLE","FL","32246",,,,,,,,,,,,,,,,,,"592015694","9049050249","524140","BLUE CROSS AND BLUE SHIELD OF FLORIDA, INC.",,"4800 DEERWOOD CAMPUS PARKWAY","DCC 100 DC1-4","JACKSONVILLE","FL","32246",,,,,,,"592015694","9049050249",,,,"2011-10-03T08:51:52-0500","ROBERT E. WALL",,,,,5782,6195,68,0,6263,,,,,,,"4A4B4D4E4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003092616P030004193315001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHILLIPS SERVICES, INC. PROFIT SHARING PLAN","001","2004-06-02","PHILLIPS SERVICES, INC.",,,"2150 S. BELLAIRE STREET, UNIT 108",,"DENVER","CO","80222",,,,,,,,,,,,,,,,,,"364555514","3037599333","812990","PHILLIPS SERVICES, INC.",,"2150 S. BELLAIRE STREET, UNIT 108",,"DENVER","CO","80222",,,,,,,"364555514","3037599333",,,,"2011-10-01T20:07:40-0500","MARK PHILLIPS","2011-10-01T20:07:40-0500","MARK PHILLIPS",,,9,5,0,0,5,0,5,1,0,,"2E2F2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003132907P040145132193001","2000-09-01","2001-08-31","2",,"0","0","0","0","0","0","0","1","0",,"PERIAKARUPPA CHOCKALINGAM, M.D., P.A. DEFINED BENEFIT PLAN AND TRUST","001","1983-09-01","PERIAKARUPPA CHOCKALINGAM, M.D., P.A.",,,"3591 S. HIGHLAND AVENUE",,"SEBRING","FL","33870",,,,,,,"3591 S. HIGHLAND AVENUE",,"SEBRING","FL","33870",,,,,,,"592316052","8133822826","621111","PERIAKARUPPA CHOCKALINGAM, M.D., P.A.",,"3591 S. HIGHLAND AVENUE",,"SEBRING","FL","33870",,,,,,,"592316052","8133822826",,,,"2011-10-03T10:44:42-0500","JACQUELINE WILLIAMS",,,,,3,1,0,2,3,0,3,3,0,,"1C1I",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003133334P040145134721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LATHAM POOL PRODUCTS, INC. 401(K) SAVINGS PLAN","001","1983-04-01","LATHAM POOL PRODUCTS, INC.",,,"787 WATERVLIET SHAKER ROAD",,"LATHAM","NY","12110",,,,,,,"787 WATERVLIET SHAKER ROAD",,"LATHAM","NY","12110",,,,,,,"271694029","5189511000","326100","LATHAM POOL PRODUCTS, INC.",,"787 WATERVLIET SHAKER ROAD",,"LATHAM","NY","12110",,,,,,,"271694029","5189511000","LATHAM MANUFACTURING CORP.","201939130","001","2011-10-03T13:33:12-0500","JENNIFER LYONS",,,,,689,491,1,74,566,2,568,269,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003145136P030141646657001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TEST ENGINEERING, INC. 401(K) PLAN","001","2005-01-01","TURBO MASTERS DBA TEST ENGINEERING, INC.",,,"12718 CIMARRON PATH",,"SAN ANTONIO","TX","78249",,,,,,,,,,,,,,,,,,"742335899","2106901958","423800","TURBO MASTERS DBA TEST ENGINEERING, INC.",,"12718 CIMARRON PATH",,"SAN ANTONIO","TX","78249",,,,,,,"742335899","2106901958",,,,"2011-10-03T14:49:38-0500","SHIRLEY KNIGHT",,,,,14,13,0,1,14,0,14,10,0,,"2E2F2G2J2K3E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929113347P040642090256001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"KRACOR, INC. 401(K) SAVINGS PLAN","001","1987-03-01","KRACOR, INC.",,,"5625 W CLINTON AVE",,"MILWAUKEE","WI","53223",,,,,,,,,,,,,,,,,,"391103609","4143556335","326100","KRACOR, INC.",,"5625 W CLINTON AVE",,"MILWAUKEE","WI","53223",,,,,,,"391103609","4143556335",,,,"2011-09-29T11:33:32-0500","CAROLE KRAEMER",,,,,48,44,0,0,44,0,44,21,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929110017P030647607872003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SYLVIA KOKOLJ BURGESS DBA MONTBRETIA PSP DBA MONTBRETIA FLORAL PROFIT SHARING PLAN","001","2001-01-01","SYLVIA BURGESS","MONTBRETIA FLORAL",,"PO BOX 470725",,"SAN FRANCISCO","CA","941470725",,,,,,,,,,,,,,,,,,"943316561","4158221116","453110","SYLVIA BURGESS",,"PO BOX 470725",,"SAN FRANCISCO","CA","941470725",,,,,,,"943316561","4158221116",,,,"2011-09-28T23:29:59-0500","SYLVIA BURGESS",,,,,2,1,,1,2,,2,,,,"3D2G2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929133728P040021297442007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"VISITING NURSE ASSOCIATION OF THE MIDLANDS LONG TERM DISABILITY PLAN","502","1974-12-01","VISITING NURSE ASSOCIATION OF THE MIDLANDS",,,"12565 WEST CENTER ROAD, SUITE 100",,"OMAHA","NE","68144",,,,,,,,,,,,,,,,,,"470690207","4023425566","621610","VISITING NURSE ASSOCIATION OF THE MIDLANDS",,"12565 WEST CENTER ROAD, SUITE 100",,"OMAHA","NE","68144",,,,,,,"470690207","4023425566",,,,"2011-09-22T04:26:19-0500","DAVID VANLANDINGHAM",,,,,186,179,,,179,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929133900P030139235777001","2010-01-01","2010-12-31","3",,"0","0","0","0",,"1",,,,,"FORENSIC ANALYTICAL PROFIT SHARING & 401(K) PLAN","002","1992-01-01","FORENSIC ANALYTICAL SPECIALTIES, INC.",,,"3777 DEPOT ROAD","SUITE 413","HAYWARD","CA","94545",,,,,,,"3777 DEPOT ROAD","SUITE 413","HAYWARD","CA","94545",,,,,,,"943018588","5108878828","541600","FORENSIC ANALYTICAL SPECIALTIES, INC.",,"3777 DEPOT ROAD","SUITE 413","HAYWARD","CA","94545",,,,,,,"943018588","5108878828",,,,"2011-09-29T13:38:05-0500","FRED VINCIGUERRA",,,,,149,117,0,39,156,0,156,141,6,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111003105351P030046597191001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRAEF FLEXIBLE BENEFIT PLAN","501","1987-09-01","GRAEF-USA INC",,,"125 S 84TH STREET, SUITE 401",,"MILWAUKEE","WI","53214",,,,,,,,,,,,,,,,,,"391083592","4142669267","541330","GRAEF-USA INC",,"125 S 84TH STREET, SUITE 401",,"MILWAUKEE","WI","53214",,,,,,,"391083592","4142669267",,,,"2011-10-03T10:52:50-0500","RICH BUB",,,,,147,123,0,0,123,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003135146P030141613393001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1",,,,,"TEAM CLEAN, INC. 401(K) PLAN","001","2007-05-01","TEAM CLEAN, INC.",,,"1441 KAPIOLANI BLVD STE 202",,"HONOLULU","HI","968144400",,,,,,,,,,,,,,,,,,"990297935","8089448255","561720","TEAM CLEAN, INC.",,"1441 KAPIOLANI BLVD STE 202",,"HONOLULU","HI","968144400",,,,,,,"990297935","8089448255","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-09-29T13:25:03-0500","JENNY PETTINGILL","2011-10-03T13:51:39-0500","BRIAN BENZ",,,229,227,0,4,231,0,231,114,20,,"2E2F2G2J2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110929070731P040641564480001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"M&P TECHNOLOGIES GROUP, INC. PROFIT SHARING PLAN","001","2009-05-24","M&P TECHNOLOGIES GROUP, INC.",,,"13011 BUTLERS RD",,"AMELIA","VA","23002",,,,,,,,,,,,,,,,,,"270264060","8043147641","541519","M&P TECHNOLOGIES GROUP, INC.",,"13011 BUTLERS RD",,"AMELIA","VA","23002",,,,,,,"270264060","8043147641",,,,"2011-09-28T21:29:30-0500","MICKIE HODGES JR",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111002105858P030140956465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOCOOK ENGINEERING, INC. RETIREMENT PLAN","001","1987-01-01","BOCOOK ENGINEERING, INC.",,,"312 10TH ST",,"PAINTSVILLE","KY","412401226",,,,,,,,,,,,,,,,,,"610920649","6067895961","541330","BOCOOK ENGINEERING INC",,"312 10TH STREET",,"PAINTSVILLE","KY","41240",,,,,,,"610920649","6067895961",,,,"2011-10-02T10:55:36-0500","DEWEY L. BOCOOK JR.",,,,,45,30,0,10,40,0,40,33,0,,"2E2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-02","Filed with authorized/valid electronic signature",, "20111003134608P040021682290001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"ROCKEFELLER 401(K) SAVINGS AND RETIREMENT PLAN","333","1962-01-01","ROCKEFELLER & ROCKEFELLER ET AL",,,"10 ROCKEFELLER PLAZA, THIRD FLOOR",,"NEW YORK","NY","10020",,,,,,,,,,,,,,,,,,"133306788","2125495100","523900","PAULA J. MUELLER","ROCKEFELLER FINANCIAL","10 ROCKEFELLER PLAZA, THIRD FLOOR",,"NEW YORK","NY","10020",,,,,,,"133518409","2125495100",,,,"2011-10-03T13:37:11-0500","PAULA J. MUELLER","2011-10-03T13:37:11-0500","PAULA J. MUELLER",,,526,277,0,250,527,2,529,529,11,,"2E2F2G2J2K2T2S",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003130536P040145116609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TON VINH LEE, DDS., PROF. CORP. DEFINED CONTRIBUTION PROFIT SHARING PLAN AND TRUST","001","2007-01-01","TON VINH LEE, DDS., PROF. CORP.",,,"2425 E. HACIENDA AVENUE, SUITE 120",,"LAS VEGAS","NV","89120",,,,,,,"2425 E. HACIENDA AVENUE, SUITE 120",,"LAS VEGAS","NV","89120",,,,,,,"861069312","7024567621","621210","TON VINH LEE, DDS., PROF. CORP.",,"2425 E. HACIENDA AVENUE, SUITE 120",,"LAS VEGAS","NV","89120",,,,,,,"861069312","7024567621",,,,"2011-10-03T13:05:08-0500","DAVID EMRY",,,,,6,4,0,0,4,0,4,4,2,,"2A2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003124158P030141571329005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"EAT'N PARK HOSPITALITY GROUP,INC PROFIT SHARING PL","001","1958-03-01","EAT'N PARK HOSPITALITY GROUP,INC",,,"285 EAST WATERFRONT DRIVE",,"HOMESTEAD","PA","15120",,,,,,,,,,,,,,,,,,"251596974","4124612000","722110","EAT'N PARK HOSPITALITY GROUP,INC",,"285 EAST WATERFRONT DRIVE",,"HOMESTEAD","PA","15120",,,,,,,"251596974","4124612000",,,,"2011-10-03T08:12:03-0500","KAREN B BOLDEN","2011-10-03T08:12:03-0500","JOSEPH A SAWINKSI",,,8093,7194,6,688,7888,2,7890,5458,310,,"2E2H2J",,,,"1",,,,"1",,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929100903P040021274498001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SACHETTA & BALDINO 401(K) PROFIT SHARING PLAN","001","2009-01-01","SACHETTA & BALDINO",,,"308 E. 2ND STREET",,"MEDIA","PA","19063",,,,,,,,,,,,,,,,,,"232657255","6108919212","541110","SACHETTA & BALDINO",,"308 E. 2ND STREET",,"MEDIA","PA","19063",,,,,,,"232657255","6108919212",,,,"2011-09-29T10:09:02-0500","GERALD BALDINO JR.",,,,,13,13,0,0,13,0,13,0,0,,"2A2E2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111002154944P040144554673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIAM E. DEMPSEY, DDS PROFIT SHARING PLAN","001","1998-01-01","WILLIAM E. DEMPSEY, DDS",,,"390 WEST NAPA ST.",,"SONOMA","CA","954766517",,,,,,,,,,,,,,,,,,"942176758","7079388575","621210","WILLIAM E. DEMPSEY, DDS",,"390 WEST NAPA ST.",,"SONOMA","CA","954766517",,,,,,,"942176758","7079388575",,,,"2011-10-02T15:49:16-0500","WILLIAM DEMPSEY",,,,,7,7,0,0,7,0,7,7,0,,"2A2E2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-02","Filed with authorized/valid electronic signature",, "20111003085504P030141454337001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"DRCS EMPLOYEE 401(K) AND PROFIT SHARING PLAN","001","1995-01-01","DIRECT RESPONSE CONSULTING SERVICES",,,"6849 OLD DOMINION DR STE 320",,"MCLEAN","VA","221013791",,,,,,,"6849 OLD DOMINION DR STE 320",,"MCLEAN","VA","221013791",,,,,,,"541185637","7037493109","541800","DIRECT RESPONSE CONSULTING SERVICES",,"6849 OLD DOMINION DR STE 320",,"MCLEAN","VA","221013791",,,,,,,"541185637","7037493109",,,,"2011-10-03T08:28:11-0500","BYRON HUGHEY",,,,,109,71,0,35,106,0,106,83,12,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003134810P040021682818001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STROZ FRIEDBERG, LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","STROZ FRIEDBERG, LLC",,,"32 AVENUE OF THE AMERICAS, 4TH FL",,"NEW YORK","NY","10013",,,,,,,,,,,,,,,,,,"134103664","2129816540","518210","STROZ FRIEDBERG, LLC",,"32 AVENUE OF THE AMERICAS, 4TH FL",,"NEW YORK","NY","10013",,,,,,,"134103664","2129816540",,,,"2011-10-03T13:43:09-0500","MIMI CHEUNG",,,,,191,140,0,25,165,0,165,147,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003113521P030141539569002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"UNITED REGIONAL HEALTH CARE SYSTEM RETIREMENT SAVINGS PLAN","002","1990-01-20","UNITED REGIONAL HEALTH CARE SYSTEM",,,"1600 10TH STREET",,"WICHITA FALLS","TX","76301",,,,,,,,,,,,,,,,,,"751912147","9407231461","622000","UNITED REGIONAL HEALTH CARE SYSTEM",,"1600 10TH STREET",,"WICHITA FALLS","TX","76301",,,,,,,"751912147","9407231461",,,,"2011-10-03T12:34:54-0500","ROBERT M. PERT",,,,,1985,1762,6,214,1982,2,1984,1293,0,,"2E2F2L2M2T","4B","1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929103815P030139134689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CNO SERVICES LLC ENTERPRISE SEVERANCE PLAN","508","2009-05-01","CNO SERVICES LLC",,,"11825 N PENNSYLVANIA ST",,"CARMEL","IN","46032",,,,,,,"11825 N PENNSYLVANIA ST",,"CARMEL","IN","46032",,,,,,,"351965822","3178176100","524140","CNO SERVICES LLC",,"11825 N PENNSYLVANIA ST",,"CARMEL","IN","46032",,,,,,,"351965822","3178176100","CONSECO SERVICES LLC","351965822","508","2011-09-29T08:47:49-0500","GRACE BROTHERS","2011-09-29T10:02:07-0500","DAVID HUMM",,,3415,3653,104,0,3757,0,3757,,0,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929110854P040142591537010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JAMES HAMILTON CONSTRUCTION CO. 401(K) AND PROFIT SHARING PLAN","002","1998-01-01","JAMES HAMILTON CONSTRUCTION CO.",,,"P.O. BOX 1287",,"SILVER CITY","NM","88062",,,,,,,"17 RIDGE ROAD",,"SILVER CITY","NM","88062",,,,,,,"850139360","5753881546","237310","JAMES HAMILTON CONSTRUCTION CO.",,"P.O. BOX 1287",,"SILVER CITY","NM","88062",,,,,,,"850139360","5753881546",,,,"2011-09-26T04:16:27-0500","CHARLES E HAMILTON",,,,,223,117,,86,203,,203,203,0,,"2E2G2J2K3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929132709P030045675799001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"CHRISTIANIA BANK NEW YORK BRANCH MONEY PURCHASE PLAN","003","1987-10-01","NORDEA BANK FINLAND PLC, NEW YORKBRANCH",,,"437 MADISON AVENUE, 21ST FLOOR",,"NEW YORK","NY","10022",,,,,,,"437 MADISON AVENUE, 21ST FLOOR",,"NEW YORK","NY","10022",,,,,,,"980362508","2123189300","522110","NORDEA BANK FINLAND PLC, NEW YORKBRANCH",,"437 MADISON AVENUE, 21ST FLOOR",,"NEW YORK","NY","10022",,,,,,,"980362508","2123189300",,,,"2011-09-29T13:26:28-0500","DORETTA BLAKE",,,,,10,0,0,10,10,0,10,10,0,,"2C2F2G2T3F3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111002165032P030656524368001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE CARPENTER GROUP 401(K) PLAN","008","1996-01-01","THE CARPENTER GROUP",,,"222 NAPOLEON STREET",,"SAN FRANCISCO","CA","941241017",,,,,,,,,,,,,,,,,,"941167896","4152851954","332900","THE CARPENTER GROUP",,"222 NAPOLEON STREET",,"SAN FRANCISCO","CA","941241017",,,,,,,"941167896","4152851954",,,,"2011-10-02T16:50:11-0500","BERNARD MARTIN",,,,,82,73,0,3,76,0,76,22,0,,"2E2G2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-02","Filed with authorized/valid electronic signature",, "20111003135453P030658970544001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PALO ALTO COMMUNITY CHILD CARE 403B PLAN","001","1997-01-01","PALO ALTO COMMUNITY CHILD CARE",,,"3990 VENTURA CT",,"PALO ALTO","CA","943063464",,,,,,,,,,,,,,,,,,"942242823","6504932361","813000","PALO ALTO COMMUNITY CHILD CARE",,"3990 VENTURA CT",,"PALO ALTO","CA","943063464",,,,,,,"942242823","6504932361",,,,"2011-10-03T13:54:51-0500","HELENE S. WHEELER",,,,,147,123,0,21,144,0,144,80,2,,"2M2F2G2J2K2T2R",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003123446P030141568305001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PENSION PLAN FOR EMPLOYEES OF VILLA ST. JOSEPH OF BADEN, INC.","001","1997-02-01","THE VILLA ST. JOSEPH OF BADEN, INC.",,,"1030 STATE STREET",,"BADEN","PA","150051338",,,,,,,,,,,,,,,,,,"251753409","7248696310","623000","THE VILLA ST. JOSEPH OF BADEN, INC.",,"1030 STATE STREET",,"BADEN","PA","150051338",,,,,,,"251753409","7248696310",,,,"2011-10-03T12:34:40-0500","MARY M MURRAY","2011-10-03T12:34:40-0500","MARY M MURRAY",,,160,133,,27,160,0,160,159,14,,"2C",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929075929P030139048513005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN S PATERSON PROFIT SHARING PLAN","001","1984-01-01","JOHN S. PATERSON",,,"35 S. ELK STREET",,"SANDUSKY","MI","484711353",,,,,,,"35 S. ELK STREET",,"SANDUSKY","MI","484711353",,,,,,,"386288228","8106482414","541110","JOHN S. PATERSON",,"35 S. ELK STREET",,"SANDUSKY","MI","484711353",,,,,,,"386288228",,,,,"2011-09-26T03:26:14-0500","JOHN S. PATERSON",,,,,4,4,,,4,,4,1,,,"2E2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111003135507P040021683794001","2010-01-01","2010-12-31","4","E",,,,,,,,,,,"FUND F OF THE BARING INTERNATIONAL INVESTMENT LIMITED TRUST FOR EMPLOYEE BENEFIT PLANS","006",,"BARING ASSET MANAGEMENT LLC",,,"470 ATLANTIC AVENUE",,"BOSTON","MA","021102208",,,,,,,,,,,,,,,,,,"042429117","6179465200",,"BARING ASSET MANAGEMENT LLC",,"470 ATLANTIC AVENUE",,"BOSTON","MA","021102208",,,,,,,"042429117","6179465200",,,,,,,,"2011-10-03T14:19:23-0500","ROBERT M. CECERE",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-03",,"Filed with authorized/valid electronic signature", "20111003135537P040145155233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HERMAN/STEWART CONSTRUCTION & DEVELOPMENT, INC. RETIREMENT 401(K) PLAN","001","1994-07-01","HERMAN/STEWART CONSTRUCTION & DEVELOPMENT, INC.",,,"4550 FORBES BLVD.","SUITE 200","LANHAM","MD","20706",,,,,,,,,,,,,,,,,,"251631049","3017315555","236200","HERMAN/STEWART CONSTRUCTION & DEVELOPMENT, INC.",,"4550 FORBES BLVD.","SUITE 200","LANHAM","MD","20706",,,,,,,"251631049","3017315555",,,,"2011-10-03T13:54:44-0500","MATTHEW WHITNEY","2011-10-03T13:54:44-0500","MATTHEW WHITNEY",,,98,73,0,12,85,0,85,81,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003111938P030020816706004","2010-04-01","2011-03-31","2",,,,,,,,,,,,"HERKER INDUSTRIES, INC. LIFE INSURANCE PLAN","502","1999-05-01","HERKER INDUSTRIES, INC.",,,"N57 W13760 CARMEN AVE",,"MENOMONEE FALLS","WI","53051",,,,,,,,,,,,,,,,,,"390837496","2627818270","332700","HERKER INDUSTRIES, INC.",,"N57 W13760 CARMEN AVE",,"MENOMONEE FALLS","WI","53051",,,,,,,"390837496","2627818270",,,,"2011-09-26T05:43:22-0500","ROBERT M FANCHER",,,,,135,164,,,164,,,,,,,"4B4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111002071332P030020714562001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ESTIMATING SYSTEMS INC 401K PLAN AND TRUST","001","2005-01-01","ESTIMATING SYSTEMS, INC.",,"SUZANNE CUMMINGS","23 DICKMAN DRIVE",,"LAVALLETTE","NJ","08735",,,,,,,,,,,,,,,,,,"223379644","7328540500","541990","ESTIMATING SYSTEMS, INC.","SUZANNE CUMMINGS","23 DICKMAN DRIVE",,"LAVALLETTE","NJ","08735",,,,,,,"223379644","7328540500",,,,"2011-10-02T07:12:04-0500","SUZANNE CUMMINGS",,,,,4,2,0,0,2,0,2,2,0,,"2E2G2J2K3D2F2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-02","Filed with authorized/valid electronic signature",, "20111003080429P030020800162001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SALISBURY SCHOOL DC RETIREMENT PLAN","001","1970-01-01","SALISBURY SCHOOL",,,"251 CANAAN RD.",,"SALISBURY","CT","060681602",,,,,,,,,,,,,,,,,,"060646888","8604355700","611000","SALISBURY SCHOOL",,"251 CANAAN RD.",,"SALISBURY","CT","060681602",,,,,,,"060646888","8604355700",,,,"2011-10-03T08:01:51-0500","JOHN MAGIERA","2011-10-03T08:01:51-0500","JOHN MAGIERA",,,299,134,0,162,296,1,297,286,0,,"2L2T2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003133537P040145136097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JORGE FUERTES BACHMAN RETIREMENT PLAN SERIES 89-154","001","1989-01-01","JORGE FUERTES BACHMAN",,,"PO BOX 2604",,"SAN JUAN","PR","009192604",,,,,,,,,,,,,,,,,,"660320307","7877810460","812990","JORGE FUERTES BACHMAN",,"PO BOX 2604",,"SAN JUAN","PR","009192604",,,,,,,"660320307","7877810460",,,,"2011-10-03T13:02:00-0500","ALINA ALVAREZ MERCHAN",,,,,3,1,0,0,1,0,1,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003112110P030020816818001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MAT-SU REGIONAL MEDICAL CENTER 401(K) PLAN","001","1992-01-01","PALMER-WASILLA HEALTH SYSTEMS, LLC","MAT-SU REGIONAL MEDICAL CENTER",,"4000 MERIDIAN BLVD",,"FRANKLIN","TN","370676325",,,,,,,,,,,,,,,,,,"621762371","6154657000","622000","RETIREMENT COMMITTEE OF CHS/COMMUNITY HEALTH SYSTEMS, INC.",,"4000 MERIDIAN BLVD",,"FRANKLIN","TN","370676325",,,,,,,"621762371","6154653431",,,,"2011-09-30T13:20:10-0500","JAMES DOUCETTE",,,,,829,675,0,80,755,0,755,692,49,,"2E2F2G2J2K2S2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003132613P030141593313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VOCOLLECT, INC. EMPLOYEE RETIREMENT SAVINGS PLAN","001","1990-01-01","VOCOLLECT, INC.",,,"703 RODI ROAD",,"PITTSBURGH","PA","15235",,,,,,,,,,,,,,,,,,"251554121","4128298145","541990","VOCOLLECT, INC.",,"703 RODI ROAD",,"PITTSBURGH","PA","15235",,,,,,,"251554121","4128298145",,,,"2011-10-03T13:25:22-0500","HEATHERMARIE TUDOR",,,,,437,354,0,106,460,0,460,399,22,,"2E2G2J2K2T3D3H",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003131407P030020825074001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"NEW JERSEY BUILDING LABORERS STATEWIDE ANNUITY FUND","001","1983-05-01","BD OF TRUSTEES NJ BUILDING LABORERS STATEWIDE ANNUITY FUND",,,"3218 KENNEDY BLVD.",,"JERSEY CITY","NJ","07306",,,,,,,,,,,,,,,,,,"222450453","2019630633","525100","BD OF TRUSTEES NJ BUILDING LABORERS STATEWIDE ANNUITY FUND",,"3218 KENNEDY BLVD.",,"JERSEY CITY","NJ","07306",,,,,,,"222450453","2019630633",,,,"2011-10-03T13:13:41-0500","CAROL WESTFALL",,,,,9329,5307,66,3460,8833,0,8833,8833,0,887,"2E",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003144719P040145181169001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TALENT PARTNERS LIFE/AD & D/MEDICAL PLAN","501","1992-04-01","TALENT PARTNERS",,,"115 WEST 18TH STREET, 5TH FLOOR",,"NEW YORK","NY","10011",,,,,,,,,,,,,,,,,,"363800090","6469816883","561490","TALENT PARTNERS",,"115 WEST 18TH STREET, 5TH FLOOR",,"NEW YORK","NY","10011",,,,,,,"363800090","6469816883",,,,"2011-10-03T14:46:15-0500","MINDY BACKINOFF ROSS","2011-10-03T14:46:15-0500","WENDY KATZ",,,215,201,6,5,212,,,,,,,"4A4B4D4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003142748P030141629297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"OUTLAW PERFORMANCE, INC. RETIREMENT PLAN","001","2000-01-01","OUTLAW PERFORMANCE, INC.",,"JOHN L. DAVISON","136 NELSON ROAD",,"AVONMORE","PA","15618",,,,,,,"136 NELSON ROAD",,"AVONMORE","PA","15618",,,,,,,"251514255","7246974876","336300","OUTLAW PERFORMANCE, INC.","JOHN L. DAVISON","136 NELSON ROAD",,"AVONMORE","PA","15618",,,,,,,"251514255","7246974876",,,,"2011-10-03T14:21:14-0500","JOHN L DAVISON",,,,,10,6,,4,10,,10,10,0,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929083506P040142508321001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COHN FAMILY CORPORATE PROFIT SHARING PLAN","001","1972-07-01","ADVERTISING SPECIALTY INSTITUTE, INC.",,,"4800 STREET ROAD",,"TREVOSE","PA","19053",,,,,,,,,,,,,,,,,,"231608621","2159533421","561490","ADVERTISING SPECIALTY INSTITUTE, INC.",,"4800 STREET ROAD",,"TREVOSE","PA","19053",,,,,,,"231608621","2159533421",,,,"2011-09-29T09:34:12-0500","STEVE BRIGHT",,,,,608,416,1,188,605,1,606,606,2,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929083716P030139063297001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"APPLE VACATIONS 401K EMPLOYEE SAVINGS AND PROFIT SHARING PLAN","003","1990-01-01","ATKINSON & MULLEN TRAVEL II LLC",,,"7 CAMPUS BLVD.","ATTENTION - CFO","NEWTOWN SQUARE","PA","19073",,,,,,,,,,,,,,,,,,"743237025","6103596500","561500","ATKINSON & MULLEN TRAVEL II LLC",,"7 CAMPUS BLVD.","ATTENTION - CFO","NEWTOWN SQUARE","PA","19073",,,,,,,"743237025","6103596500",,,,"2011-09-29T08:36:47-0500","JULIA DAVIDSON","2011-09-29T08:36:47-0500","JEFFREY MULLEN",,,1323,581,3,264,848,0,848,840,26,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929143233P030045687175001","2010-01-02","2011-01-01","2",,,,,,,"1",,,,,"INSPERITY HEALTH CARE FLEXIBLE SPENDING ACCOUNT PLAN","505","2005-01-01","INSPERITY HOLDINGS, INC.",,,"19001 CRESCENT SPRINGS DRIVE",,"KINGWOOD","TX","773393802",,,,,,,,,,,,,,,,,,"760178498","2813588986","541990","INSPERITY HOLDINGS, INC.",,"19001 CRESCENT SPRINGS DRIVE",,"KINGWOOD","TX","773393802",,,,,,,"760178498","2813588986","ADMINISTAFF OF TEXAS, INC.","760178498","505","2011-09-29T03:32:18-0500","RICHARD RAWSON",,,,,15127,16702,127,0,16829,,16829,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929141508P040642506032001","2010-02-01","2011-01-31","1",,,,,,,"1",,,,,"MIDWEST BEDFORD FLEXIBLE BENEFIT PLAN","501","2005-01-01","MIDWEST WAREHOUSE & DISTRIBUTION SYSTEM, INC.",,,"2600 INTERNATIONALE PARKWAY",,"WOODRIDGE","IL","60517",,,,,,,,,,,,,,,,,,"363157121","6307396760","493100","MIDWEST WAREHOUSE & DISTRIBUTION SYSTEM, INC.",,"2600 INTERNATIONALE PARKWAY",,"WOODRIDGE","IL","60517",,,,,,,"363157121","6307396760",,,,"2011-09-29T14:55:10-0500","EDWARD BORKOWSKI","2011-09-29T14:55:13-0500","EDWARD BORKWSKI","2011-09-29T15:00:47-0500","RICHARD D WIRTH CPA",372,,,,0,,,,,,,"4A","1",,,,"1",,,,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111003083759P030141449457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEALTH & HOME MANAGEMENT 401(K) PLAN - EMPLOYEES","002","2000-01-01","HEALTH & HOME MANAGEMENT",,,"5454 W. FARGO",,"SKOKIE","IL","60077",,,,,,,,,,,,,,,,,,"363223168","8476745454","541600","HEALTH & HOME MANAGEMENT",,"5454 W. FARGO",,"SKOKIE","IL","60077",,,,,,,"363223168","8476745454",,,,"2011-10-03T08:37:38-0500","SIDNEY GLENNER","2011-10-03T08:37:38-0500","SIDNEY GLENNER",,,1028,667,0,303,970,0,970,492,9,,"2E2F2H2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003145607P030020832562001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YODLEE, INC. 401(K) PLAN","001","1999-01-01","YODLEE, INC.",,,"3600 BRIDGE PARKWAY, SUITE 200",,"REDWOOD SHORES","CA","94065",,,,,,,,,,,,,,,,,,"330843318","6509803600","541519","YODLEE, INC.",,"3600 BRIDGE PARKWAY, SUITE 200",,"REDWOOD SHORES","CA","94065",,,,,,,"330843318","6509803600",,,,"2011-10-03T14:54:55-0500","MARC BLOUIN","2011-10-03T14:54:55-0500","MARC BLOUIN",,,227,169,0,53,222,0,222,137,0,,"2E2F2G2J2K3D2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929103010P040142572833008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MID-MISSOURI BANCSHARES INC HEALTH CARE PLAN","501","1999-01-01","MID-MISSOURI BANCSHARES INC",,,"PO BOX 14740",,"SPRINGFIELD","MO","65814",,,,,,,,,,,,,,,,,,"431362091","4178770962","522110","MID-MISSOURI BANCSHARES INC",,"PO BOX 14740",,"SPRINGFIELD","MO","65814",,,,,,,"431362091","4178770962",,,,"2011-09-29T10:38:09-0500","BRIAN RIEDY","2011-09-29T10:38:59-0500","BRIAN RIEDY",,,160,136,,,136,,,,,,,"4A","1",,,"1","1",,,"1",,,,,"1","1","1",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929130254P030139222065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CENTRALCARE INCORPORATED 401(K) PLAN","001","2009-01-01","CENTRALCARE INCORPORATED",,,"7010 LITTLE RIVER TURNPIKE","SUITE 335","ANNANDALE","VA","22003",,,,,,,,,,,,,,,,,,"541939041","8886439700","621399","CENTRALCARE INCORPORATED",,"7010 LITTLE RIVER TURNPIKE","SUITE 335","ANNANDALE","VA","22003",,,,,,,"541939041","8886439700",,,,"2011-09-29T12:51:08-0500","BARBARA STEWART",,,,,200,183,0,53,236,0,236,116,0,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111003094817P030141482321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"G-TECH PROFESSIONAL STAFFING INC GROUP HEALTH PLAN","504","1996-05-01","G-TECH PROFESSIONAL STAFFING INC",,,"17101 MICHIGAN AVENUE",,"DEARBORN","MI","48126",,,,,,,,,,,,,,,,,,"382796874","3134413600","561300","G-TECH PROFESSIONAL STAFFING INC",,"17101 MICHIGAN AVENUE",,"DEARBORN","MI","48126",,,,,,,"382796874","3134413600",,,,"2011-10-03T09:47:28-0500","CHRISTINE MCDERMOTT","2011-10-03T09:47:28-0500","CHRISTINE MCDERMOTT",,,265,247,18,0,265,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003095551P030141487825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MONSANTO COMPANY SUPPLEMENTAL ACCIDENTAL DEATH & DISMEMBERMENT INSURANCE PLAN","507","1996-01-01","MONSANTO COMPANY",,,"800 NORTH LINDBERGH BLVD. G5EE",,"ST. LOUIS","MO","63167",,,,,,,,,,,,,,,,,,"431878297","3146941000","325900","MONSANTO COMPANY",,"800 NORTH LINDBERGH BLVD. G5EE",,"ST. LOUIS","MO","63167",,,,,,,"431878297","3146941000",,,,"2011-10-03T09:13:27-0500","KAREN P. WISHART","2011-09-30T15:11:33-0500","JOHN E. MIMLITZ",,,5838,5674,0,0,5674,,,,,,,"4L4R4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003120249P030658722720001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LATHAM MOFFATT PC MONEY PURCHASE PENSION PLAN","001","2003-01-01","LATHAM MOFFATT PC",,,"317 WEST MARKET STREET",,"ATHENS","AL","35611",,,,,,,"317 WEST MARKET STREET",,"ATHENS","AL","35611",,,,,,,"061677146","2562322510","541110","LATHAM MOFFATT PC",,"317 WEST MARKET STREET",,"ATHENS","AL","35611",,,,,,,"061677146","2562322510","LATHAM, MOFFATT & WISE PC","061677146","001","2011-10-03T11:48:10-0500","BYRD LATHAM",,,,,2,1,,,1,,1,1,,,"2C2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003120259P030020818754001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LATHAM MOFFATT PC PROFIT SHARING PLAN","002","2003-01-01","LATHAM MOFFATT PC",,,"317 WEST MARKET STREET",,"ATHENS","AL","35611",,,,,,,"317 WEST MARKET STREET",,"ATHENS","AL","35611",,,,,,,"061677146","2562322510","541110","LATHAM MOFFATT PC",,"317 WEST MARKET STREET",,"ATHENS","AL","35611",,,,,,,"061677146","2562322510","LATHAM, MOFFATT & WISE PC","061677146","002","2011-10-03T11:47:35-0500","BYRD LATHAM",,,,,6,6,,,6,,6,6,,,"2E2G",,"1",,"1",,"1",,,,,,,"0","1","1","1",,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929145438P030139270289005","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"WISCONSIN SHEET METAL WORKERS HEALTH AND BENEFIT FUND","501","1985-01-01","WISCONSIN SHEET METAL WORKERS",,,"2201 SPRINGDALE ROAD",,"WAUKESHA","WI","531862855",,,,,,,"2201 SPRINGDALE ROAD",,"WAUKESHA","WI","531862855",,,,,,,"351638874","4147780516","238100","WISCONSIN SHEET METAL WORKERS",,"2201 SPRINGDALE ROAD",,"WAUKESHA","WI","531862855",,,,,,,"351638874","4147780516",,,,"2011-09-29T09:17:09-0500","PATRICK LANDGRAF",,,,,3046,2080,690,,2770,,,,,226,,"4A4B4D4E4F4L","1",,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111003144733P040145181377001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TALENT PARTNERS LONG TERM DISABILITY PLAN","502","1992-04-01","TALENT PARTNERS",,,"115 WEST 18TH STREET, 5TH FLOOR",,"NEW YORK","NY","10011",,,,,,,,,,,,,,,,,,"363800090","6469816883","561490","TALENT PARTNERS",,"115 WEST 18TH STREET, 5TH FLOOR",,"NEW YORK","NY","10011",,,,,,,"363800090","6469816883",,,,"2011-10-03T14:47:06-0500","MINDY BACKINOFF ROSS","2011-10-03T14:47:06-0500","WENDY KATZ",,,211,201,0,0,201,,,,,,,"4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003140815P040021684850005","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"PRINCETON MEDICAL GROUP, P.A. GROUP DENTAL PLAN","503","2004-05-01","PRINCETON MEDICAL GROUP, P.A.",,,"419 NORTH HARRISON STREET","SUITE 203","PRINCETON","NJ","08540",,,,,,,,,,,,,,,,,,"222306123","6099249300","621111","PRINCETON MEDICAL GROUP, P.A.",,"419 NORTH HARRISON STREET","SUITE 203","PRINCETON","NJ","08540",,,,,,,"222306123","6099249300",,,,"2011-10-03T09:51:35-0500","JOAN HAGADORN",,,,,137,0,,,0,,,,,,,"4D","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929133015P030020462450004","2010-03-01","2011-02-28","2",,,,,,,,,,,,"TRINITY EMS INC","501","2000-03-01","TRINITY EMS, INC",,,"1221 WESTFORD STREET",,"LOWELL","MA","01853",,,,,,,,,,,,,,,,,,"043095475","9784419191","621900","TRINITY EMS INC",,"1221 WESTFORD STREET",,"LOWELL","MA","01853",,,,,,,"043095475","9784419191",,,,"2011-09-29T09:31:05-0500","JOHN CHEMALY",,,,,269,249,,,249,,249,,,,,"4Q4F4D4B4A",,,,"1","1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929145445P030004121107001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JAMES SQUARE NURSING HOME INC EMPLOYEES' PROFIT SHARING PLAN AND TRUST","001","1979-01-01","JAMES SQUARE NURSING HOME, INC.",,,"918 JAMES STREET",,"SYRACUSE","NY","13203",,,,,,,,,,,,,,,,,,"161236582","3154741561","623000","JAMES SQUARE NURSING HOME, INC.",,"918 JAMES STREET",,"SYRACUSE","NY","13203",,,,,,,"161236582","3154741561",,,,"2011-09-29T03:54:11-0500","MARK SQUIRE",,,,,558,457,,55,512,,512,178,0,,"2E2J2G2F",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929145652P040021306962001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEYBRO, INC. PROFIT SHARING PLAN","001","1991-01-01","MEYBRO, INC",,,"2339 BEVINGTON LANE",,"HAMILTON","OH","45013",,,,,,,,,,,,,,,,,,"311304000","5138639996","238100","MEYBRO, INC",,"2339 BEVINGTON LANE",,"HAMILTON","OH","45013",,,,,,,"311304000","5138639996",,,,"2011-09-29T14:56:56-0500","RICHARD MEYER","2011-09-29T14:56:56-0500","RICHARD MEYER",,,13,10,,3,13,,13,13,0,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003081611P040144968481001","2010-03-29","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"JASADAM CORPORATION PROFIT SHARING PLAN","001","2010-03-29","JASADAM CORPORATION",,,"4925 AVENIDA DE LAS ARBOLES",,"SANTA CLARA","CA","95054",,,,,,,,,,,,,,,,,,"272232502","4084836968","624100","JASADAM CORPORATION",,"4925 AVENIDA DE LAS ARBOLES",,"SANTA CLARA","CA","95054",,,,,,,"272232502","4084836968",,,,"2011-10-01T16:50:31-0500","SIXTO OROSA",,,,,9,9,,,9,,9,1,,,"2E2G2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003133644P030020826434006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HOSSAM MAKKAR, DMD, PROFIT SHARING PLAN","001","1999-12-25","HOSSAM MAKKAR, DMD",,,"314 ESSEX STREET",,"LAWRENCE","MA","01840",,,,,,,,,,,,,,,,,,"522208843","5087712265","621210","HOSSAM MAKKAR, DMD",,"314 ESSEX STREET",,"LAWRENCE","MA","01840",,,,,,,"522208843","5087712265",,,,"2011-10-03T09:12:30-0500","HOSSAM MAKKAR",,,,,3,1,,2,3,,3,3,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003133731P040653271808001","2011-01-01","2011-06-30","2",,"0","0","1","1","0","0","0","0","0",,"CAPITOL VALLEY SERVICES INC 401(K) PLAN","001","2008-03-25","CAPITOL VALLEY SERVICES INC.",,,"319 E. ANNAPOLIS ST",,"ST. PAUL","MN","55118",,,,,,,,,,,,,,,,,,"262141131","6512956794","532100","CAPITOL VALLEY SERVICES INC.",,"319 E. ANNAPOLIS ST",,"ST. PAUL","MN","55118",,,,,,,"262141131","6512956794",,,,"2011-10-03T13:06:51-0500","MATT SCHWARTZ","2011-10-03T13:06:51-0500","MATT SCHWARTZ",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003142925P040145172673001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"DANBOISE & THE LEARNING TREE CENTERS EMPLOYEES 401(K) RETIREMENT PLAN","003","1986-01-01","A. J. DANBOISE SON, INC.",,,"31015 GRAND RIVER AVE.",,"FARMINGTON HILLS","MI","483364227",,,,,,,,,,,,,,,,,,"381908358","2484749527","238220","A. J. DANBOISE SON",,"31015 GRAND RIVER AVENUE",,"FARMINGTON HILLS","MI","483364227",,,,,,,"383195400","2484749527",,,,"2011-10-03T14:28:27-0500","CAROL D. GATEWOOD",,,,,149,109,0,18,127,0,127,80,5,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929143648P030648057824001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN LITHO, INC. 401(K) PLAN","001","1997-01-01","AMERICAN LITHO, INC.",,,"160 E. ELK TRAIL",,"CAROL STREAM","IL","60188",,,,,,,,,,,,,,,,,,"363940569","6304621700","561410","AMERICAN LITHO, INC.",,"160 E. ELK TRAIL",,"CAROL STREAM","IL","60188",,,,,,,"363940569","6304621700",,,,"2011-09-29T14:32:18-0500","MICHAEL FONTANA","2011-09-29T14:32:18-0500","MICHAEL FONTANA",,,144,126,0,14,140,0,140,90,0,,"2E2G2J2K3D2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929143654P030020466898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LINDORA, LLC RETIREMENT SAVINGS PLAN","001","1996-01-01","LINDORA, LLC",,,"3505 CADILLAC AVE. SUITE N-2",,"COSTA MESA","CA","92626",,,,,,,,,,,,,,,,,,"352366316","7149795680","621498","LINDORA, LLC",,"3505 CADILLAC AVE. SUITE N-2",,"COSTA MESA","CA","92626",,,,,,,"352366316","7149795680",,,,"2011-09-29T14:34:57-0500","MIKE QUINN",,,,,286,211,0,53,264,0,264,152,1,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929135553P030647969680001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"AMERICAN SOCIETY OF NEURORADIOLOGY RETIREMENT PLAN","001","1990-07-30","AMERICAN SOCIETY OF NEURORADIOLOGY",,,"2210 MIDWEST ROAD STE 207",,"OAK BROOK","IL","60523",,,,,,,"2210 MIDWEST ROAD STE 207",,"OAK BROOK","IL","60523",,,,,,,"237122927","6305740220","621399","AMERICAN SOCIETY OF NEURORADIOLOGY",,"2210 MIDWEST ROAD STE 207",,"OAK BROOK","IL","60523",,,,,,,"237122927","6305740220",,,,"2011-09-29T13:54:46-0500","TINA CHENG",,,,,17,16,0,0,16,0,16,16,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111001125348P040021493554001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HANLEY SIGN COMPANY, INC. 401(K) RETIREMENT PLAN","001","1999-01-01","HANLEY SIGN COMPANY, INC.",,,"26 SICKER RD",,"LATHAM","NY","12110",,,,,,,,,,,,,,,,,,"141506154","5187836183","339900","HANLEY SIGN COMPANY, INC.",,"26 SICKER RD",,"LATHAM","NY","12110",,,,,,,"141506154","5187836183",,,,"2011-10-01T12:42:43-0500","LISA TYMCHYN",,,,,17,23,0,0,23,0,23,23,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-01","Filed with authorized/valid electronic signature",, "20111003133745P040021680562001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DR. ADALBERTO TOSADO AROCHO RETIREMENT PLAN SERIES 96-1363","001","1996-01-01","DR. ADALBERTO TOSADO AROCHO",,,"APARTADO 141298",,"ARECIBO","PR","006141298",,,,,,,,,,,,,,,,,,"223724438","7878806141","621111","DR. ADALBERTO TOSADO AROCHO",,"APARTADO 141298",,"ARECIBO","PR","006141298",,,,,,,"223724438","7878806141",,,,"2011-10-03T13:07:37-0500","ALINA ALVAREZ MERCHAN",,,,,3,3,0,0,3,0,3,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003130424P040021675746001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"OAK LEAF EQUITY, INC. 401(K) PLAN","001","2007-06-05","OAK LEAF EQUITY, INC.",,,"10175 FORTUNE PARKWAY, SUITE 904",,"JACKSONVILLE","FL","32256",,,,,,,,,,,,,,,,,,"260299921","9048384723","525990","OAK LEAF EQUITY, INC.",,"10175 FORTUNE PARKWAY, SUITE 904",,"JACKSONVILLE","FL","32256",,,,,,,"260299921","9048384723",,,,"2011-10-03T11:06:20-0500","LEON PANITZ JR","2011-10-03T11:06:20-0500","LEON PANITZ JR",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111003093357P030141470385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"403(B) THRIFT PLAN OF DONNA KLEIN JEWISH ACADEMY, INC.","003","2003-01-01","DONNA KLEIN JEWISH ACADEMY, INC.",,,"9701 DONNA KLEIN BLVD",,"BOCA RATON","FL","33428",,,,,,,,,,,,,,,,,,"651129890","5618523300","611000","DONNA KLEIN JEWISH ACADEMY, INC.",,"9701 DONNA KLEIN BLVD",,"BOCA RATON","FL","33428",,,,,,,"651129890","5618523300",,,,"2011-10-03T09:33:49-0500","MARK SHAFFER","2011-10-03T09:33:49-0500","MARK SHAFFER",,,122,131,0,16,147,1,148,147,6,,"2L2G2F2T",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003093624P030020807810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HERSHEY COMPANY PUERTO RICO 401K PLAN","011","2004-02-01","THE HERSHEY COMPANY",,,"100 CRYSTAL A DRIVE",,"HERSHEY","PA","17033",,,,,,,,,,,,,,,,,,"230691590","7175344000","311300","THE HERSHEY COMPANY",,"100 CRYSTAL A DRIVE",,"HERSHEY","PA","17033",,,,,,,"230691590","7175344000",,,,"2011-10-03T09:35:19-0500","DAVID R. MERKT, MGR., RET PLANS",,,,,69,43,1,26,70,0,70,70,0,,"2E2F2G2J2K2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003094948P030020809602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MONSANTO COMPANY FLEXIBLE SPENDING ACCOUNT PLAN","509","1986-05-01","MONSANTO COMPANY",,,"800 NORTH LINDBERGH BLVD. G5EE",,"ST. LOUIS","MO","63167",,,,,,,,,,,,,,,,,,"431878297","3146941000","325900","MONSANTO COMPANY",,"800 NORTH LINDBERGH BLVD. G5EE",,"ST. LOUIS","MO","63167",,,,,,,"431878297","3146941000",,,,"2011-10-03T09:14:16-0500","KAREN P. WISHART","2011-09-30T15:12:30-0500","JOHN E. MIMLITZ",,,2946,2839,0,0,2839,,,,,,,"4A4R","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003095825P040145024449001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"GREAT LAKES AVIATION, LTD. SAVINGS PLAN","001","1990-03-01","GREAT LAKES AVIATION, LTD.",,,"1022 AIRPORT PKWY",,"CHEYENNE","WY","820011551",,,,,,,,,,,,,,,,,,"421135319","3074327070","481000","GREAT LAKES AVIATION, LTD.",,"1022 AIRPORT PKWY",,"CHEYENNE","WY","820011551",,,,,,,"421135319","3074327070",,,,"2011-10-03T09:58:22-0500","JUDY FEDELL","2011-10-03T09:58:22-0500","JUDY FEDELL",,,1139,947,0,65,1012,1,1013,321,271,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003095852P030658449440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EASTMAN MEDICAL AND DENTAL ASSISTANCE PLAN","503","1994-01-01","EASTMAN CHEMICAL COMPANY",,,"P. O. BOX 1975",,"KINGSPORT","TN","376621975",,,,,,,"200 S. WILCOX DR.",,"KINGSPORT","TN","376621975",,,,,,,"621539359","4232292000","325100","EASTMAN CHEMICAL COMPANY",,"P. O. BOX 1975",,"KINGSPORT","TN","376621975",,,,,,,"621539359","4232292000",,,,"2011-10-03T09:57:22-0500","SHARON PUGH",,,,,13593,8218,3030,607,11855,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003095901P040145024705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRADFORD SCHOOLS 401K PROFIT SHARING PLAN","001","1989-01-01","BRADFORD SCHOOLS, INC.",,,"133 FREEPORT RD",,"PITTSBURGH","PA","152152943",,,,,,,,,,,,,,,,,,"251482719","4127817400","611000","BRADFORD SCHOOLS, INC.",,"133 FREEPORT RD",,"PITTSBURGH","PA","152152943",,,,,,,"251482719","4127817400",,,,"2011-10-03T09:51:51-0500","MARTIN CALIHAN",,,,,440,427,1,78,506,0,506,454,11,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003155516P040145214721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELLIE MAE EMPLOYEE 401(K) PLAN","001","2000-01-01","ELECTRONIC MORTGAGE AFFILIATES, INC. DBA ELLIE MAE",,,"4155 HOPYARD ROAD, SUITE 200",,"PLEASANTON","CA","94588",,,,,,,,,,,,,,,,,,"943288780","9252277007","339900","ELECTRONIC MORTGAGE AFFILIATES, INC. DBA ELLIE MAE",,"4155 HOPYARD ROAD, SUITE 200",,"PLEASANTON","CA","94588",,,,,,,"943288780","9252277007",,,,"2011-10-03T15:55:02-0500","LISA BRUUN",,,,,241,184,0,76,260,0,260,237,6,,"3D2E2J3H2K2F2G2S2R",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929135754P040142699777007","2010-05-01","2011-04-30","2",,,,,,,,,,,,"WELFARE PLAN FOR EMPLOYEES OF APPLE OF NORTH ALABAMA, INC. (QUALITY RESTAURANT CONCEPTS, L.L.C.)","501","1999-01-01","QUALITY RESTAURANT CONCEPTS, L.L.C.",,,"601 VESTAVIA PARKWAY, SUITE 1000",,"BIRMINGHAM","AL","35216",,,,,,,"601 VESTAVIA PARKWAY, SUITE 1000",,"BIRMINGHAM","AL","35216",,,,,,,"581829996","2058245060","722110","QUALITY RESTAURANT CONCEPTS, L.L.C.",,"601 VESTAVIA PARKWAY, SUITE 1000",,"BIRMINGHAM","AL","35216",,,,,,,"581829996","2058245060",,,,"2011-10-15T07:21:22-0500","FRED GUSTIN","2011-10-15T07:21:22-0500","FRED GUSTIN",,,700,680,,,680,,680,,,,,"4A4B4C4D4E4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003100640P030141492673005","2010-04-01","2011-03-31","2",,,,,,,,,,,,"GENTRY LOCKE RAKES & MOORE LLP INSURANCE PLAN","502","2009-04-01","GENTRY LOCKE RAKES & MOORE LLP",,,"P. O. BOX 40013",,"ROANOKE","VA","24038",,,,,,,,,,,,,,,,,,"540540718","5409839300","541110","GENTRY LOCKE RAKES & MOORE LLP",,"P. O. BOX 40013",,"ROANOKE","VA","24038",,,,,,,"540540718","5409839300",,,,"2011-09-27T05:34:47-0500","W. WILLIAM GUST",,,,,119,121,,,121,,121,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003171759P030020844034001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PROJECT INDEPENDENCE WELFARE BENEFITS PLAN","501","2007-01-01","PROJECT INDEPENDENCE",,,"3505 CADILLAC AVENUE SUITE O-103",,"COSTA MESA","CA","92626",,,,,,,,,,,,,,,,,,"953147421","7145493464","611000","PROJECT INDEPENDENCE",,"3505 CADILLAC AVENUE SUITE O-103",,"COSTA MESA","CA","92626",,,,,,,"953147421","7145493464",,,,"2011-09-29T11:20:07-0500","KRISTEN COOK","2011-10-03T17:17:22-0500","ROBERT WATSON",,,122,130,0,0,130,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111003200540P040145329377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VALLEY FRUIT 401K SALARY SAVINGS PLAN","331","1987-02-01","VALLEY FRUIT III, LLC",,,"PO BOX 22700",,"YAKIMA","WA","98907",,,,,,,"12 HOFFER ROAD",,"WAPATO","WA","98951",,,,,,,"911599348","5098774188","111300","VALLEY FRUIT III, LLC",,"PO BOX 22700",,"YAKIMA","WA","98907",,,,,,,"911599348","5098774188",,,,"2011-10-03T17:36:44-0500","BRUCE FRAZIER",,,,,267,246,0,3,249,2,251,118,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003180617P040145282145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WELLMAN DYNAMICS DENTAL PLAN","521","1999-01-01","FANSTEEL, INC.",,,"1746 COMMERCE ROAD",,"CRESTON","IA","50801",,,,,,,,,,,,,,,,,,"361058780","6417828521","332900","FANSTEEL, INC.",,"1746 COMMERCE ROAD",,"CRESTON","IA","50801",,,,,,,"361058780","6417828521","WELLMAN DYNAMICS CORPORATION","363198501","521","2011-10-03T18:05:57-0500","LINDA EBERLY",,,,,479,588,7,5,600,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110930144412P040645455264001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"NTGI-QM COMMON DAILY RUSSELL 1000 GROWTH EQUITY INDEX FUND - LENDING","001",,"NORTHERN TRUST GLOBAL INVESTMENTS",,,"50 SOUTH LASALLE STREET",,"CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"456138593","3126306000",,"NORTHERN TRUST GLOBAL INVESTMENTS",,"50 SOUTH LASALLE STREET",,"CHICAGO","IL","60603",,,,,,,"456138593","3126306000",,,,,,,,"2011-09-29T10:44:35-0500","RANDAL REIN",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-30",,"Filed with authorized/valid electronic signature", "20111003150956P030659143856001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MANZELLA KNITTING & COMPANY, LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-09-01","MANZELLA WORLDWIDE, LLC",,,"3345 N. BENZING ROAD",,"ORCHARD PARK","NY","14127",,,,,,,,,,,,,,,,,,"201028725","7168250808","315100","MANZELLA WORLDWIDE, LLC",,"3345 N. BENZING ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"201028725","7168250808",,,,"2011-10-03T15:02:23-0500","LAURA KAVANAUGH","2011-10-03T15:02:23-0500","LAURA KAVANAUGH",,,93,88,0,7,95,0,95,41,0,,"2E2G2J2K3D3H3B2F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003184637P040653959168001","2005-01-01","2005-12-31","2",,"0","1","0","0","0","0","0","0","0",,"OAK RIDGE CAPITAL GROUP, INC. 401(K) RETIREMENT PLAN","001","1999-01-01","OAK RIDGE CAPITAL GROUP, INC.",,,"130 CHESHIRE LANE","SUITE 260","HOPKINS","MN","55305",,,,,,,"130 CHESHIRE LANE","SUITE 260","HOPKINS","MN","55305",,,,,,,"850316176","9523036430","531390","OAK RIDGE CAPITAL GROUP, INC.",,"130 CHESHIRE LANE","SUITE 260","HOPKINS","MN","55305",,,,,,,"850316176","9523036430",,,,"2011-10-03T18:45:54-0500","JOE PUPEL","2011-10-03T18:46:26-0500","JOE PUPEL",,,0,0,0,0,0,0,0,0,0,0,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930090814P030139750961002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GTL GROUP INSURANCE PLAN (504) TERM LIFE GRNTTRUST 10096532","504","1978-04-01","GUARANTEE TRUST LIFE INSURANCE",,,"1275 MILWAUKEE AVENUE",,"GLENVIEW","IL","60025",,,,,,,"1275 MILWAUKEE AVENUE",,"GLENVIEW","IL","60025",,,,,,,"361174500","8476990600","524210","GUARANTEE TRUST LIFE INSURANCE",,"1275 MILWAUKEE AVENUE",,"GLENVIEW","IL","60025",,,,,,,"361174500","8476990600",,,,"2011-08-19T04:01:07-0500","BARBARA TAUBE",,,,,263,246,,,246,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","2","1",,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930093310P030020547106001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"BOND INDEX FUND G","001",,"WELLS FARGO BANK, N.A.",,,"608 2ND AVENUE S, 9TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"943226244","6126672126",,"WELLS FARGO BANK, N.A.",,"608 2ND AVENUE S, 9TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,"566288528","6126672126",,,,,,,,"2011-09-30T08:39:13-0500","JEFFREY KLETTI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-30",,"Filed with authorized/valid electronic signature", "20111003174209P040145270529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOOD SHEPHERD MEDICAL CENTER FLEXIBLE BENEFITS PLAN","501","1994-01-01","GOOD SHEPHERD MEDICAL CENTER",,,"700 E MARSHALL AVENUE",,"LONGVIEW","TX","75601",,,,,,,,,,,,,,,,,,"752497311","9033155130","622000","GOOD SHEPHERD MEDICAL CENTER",,"700 E MARSHALL AVENUE",,"LONGVIEW","TX","75601",,,,,,,"752497311","9033155130",,,,"2011-10-03T17:41:37-0500","SANDI FERRIGNO",,,,,1593,1610,0,0,1610,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003174213P040145270545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PERKINS COIE LLP HEALTH & WELFARE PLAN","501","1967-12-01","PERKINS COIE LLP",,,"1201 THIRD AVENUE, SUITE 4800",,"SEATTLE","WA","981013099",,,,,,,,,,,,,,,,,,"910591206","2063598000","541110","PERKINS COIE LLP",,"1201 THIRD AVENUE, SUITE 4800",,"SEATTLE","WA","981013099",,,,,,,"910591206","2063598000",,,,"2011-10-03T17:41:54-0500","KURT LINSENMAYER","2011-10-03T17:41:54-0500","KURT LINSENMAYER",,,1672,1719,25,0,1744,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","12","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003150313P040653486144001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"PRESENTATIONS PLUS OF AMERICA, INC. 401(K) PLAN","001","2009-10-15","PRESENTATIONS PLUS OF AMERICA, INC.",,,"2165 DANIELS STREET",,"LONG LAKE","MN","55356",,,,,,,,,,,,,,,,,,"271123301","9524735449","561900","PRESENTATIONS PLUS OF AMERICA, INC.",,"2165 DANIELS STREET",,"LONG LAKE","MN","55356",,,,,,,"271123301","9524735449",,,,"2011-10-03T15:02:22-0500","CARROLL SHIPMAN","2011-10-03T15:02:22-0500","CARROLL SHIPMAN",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930101011P040143236673001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PINNACLE PEAK DENTISTRY, P.C. DEFINED BENEFIT PLAN","004","2002-01-01","PINNACLE PEAK DENTISTRY, P.C.",,,"23425 NORTH SCOTTSDALE ROAD","SUITE A-3","SCOTTSDALE","AZ","852553469",,,,,,,,,,,,,,,,,,"860567824","4805853065","621210","PINNACLE PEAK DENTISTRY, P.C.",,"23425 NORTH SCOTTSDALE ROAD","SUITE A-3","SCOTTSDALE","AZ","852553469",,,,,,,"860567824","4805853065",,,,"2011-09-30T11:09:59-0500","DR. MARSHALL CLAYTON",,,,,6,5,0,1,6,0,6,,,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930134017P030020562802001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"GRAND FOODS CENTER 401(K) PROFIT SHARING PLAN","001","1990-01-01","D & D MANAGEMENT, INC.",,,"606 GREENBAY RD",,"WINNETKA","IL","600932220",,,,,,,,,,,,,,,,,,"363725836","8474466707","445110","D & D MANAGEMENT, INC.",,"606 GREENBAY RD",,"WINNETKA","IL","600932220",,,,,,,"363725836","8474466707",,,,"2011-08-24T09:42:02-0500","DONNA RICHTER","2011-09-30T13:40:14-0500","DONNA RICHTER",,,100,89,0,6,95,0,95,95,7,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930134026P030020562834001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NICKEY PETROLEUM CO., INC. 401(K) PROFIT SHARAING","001","1999-01-01","NICKEY PETROLEUM CO., INC.",,,"925 LAKEVIEW AVENUE",,"PLACENTIA","CA","92870",,,,,,,,,,,,,,,,,,"953552609","7145474123","812990","NICKEY PETROLEUM CO., INC.",,"925 LAKEVIEW AVENUE",,"PLACENTIA","CA","92870",,,,,,,"953552609","7145474123",,,,"2011-09-30T13:39:27-0500","DONNA MEISCH",,,,,72,70,0,1,71,0,71,10,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930110417P030139803617001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"LINDE PROCESS PLANTS, INC. 401K RETIREMENT SAVINGS PLAN","001","1989-01-01","LINDE PROCESS PLANTS, INC.",,,"6100 SOUTH YALE AVENUE","SUITE 1200","TULSA","OK","74136",,,,,,,"6100 SOUTH YALE AVENUE","SUITE 1200","TULSA","OK","74136",,,,,,,"730782819","9184771200","541330","LINDE PROCESS PLANTS, INC.",,"6100 SOUTH YALE AVENUE","SUITE 1200","TULSA","OK","74136",,,,,,,"730782819","9184771200",,,,"2011-09-30T11:02:36-0500","JEFF LONGACRE",,,,,582,363,1,96,460,5,465,389,6,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930153221P040645564640001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOUISIANA CRANE COMPANY, LLC 401K PROFIT SHARING PLAN AND TRUST","001","2002-04-01","LOUISIANA CRANE COMPANY, LLC",,,"PO BOX 1049",,"EUNICE","LA","705351049",,,,,,,,,,,,,,,,,,"721513447","3377080040","238900","LOUISIANA CRANE COMPANY, LLC",,"PO BOX 1049",,"EUNICE","LA","705351049",,,,,,,"721513447","3377080040",,,,"2011-09-30T15:32:20-0500","DOUGLAS MARCANTEL",,,,,445,339,0,63,402,0,402,130,5,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930153248P030004147459005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CMS FINACIAL GROUP, LTD. 401 (K) RETIREMENT PLAN","002","1999-06-01","CMS FINANCIAL GROUP, LTD",,,"303 W. MADISON SUITE 1100",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"364190383","3129840080","541219","CMS FINANCIAL GROUP, LTD",,"303 W. MADISON SUITE 1100",,"CHICAGO","IL","60606",,,,,,,"364190383","3129840080",,,,"2011-09-20T08:07:50-0500","JOHN SNIDER","2011-09-20T08:07:50-0500","JOHN SNIDER",,,11,10,,2,12,,12,12,,,"2A2E2H2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930175229P030140010513001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KATHLEEN M DUERKSEN MD PC PROFIT SHARING PLAN AND TRUST AGREEMENT","001","1996-06-06","KATHLEEN M DUERKSEN MD PC",,,"7604 N CAMINO SIN VACAS",,"TUCSON","AZ","857181298",,,,,,,"7604 N CAMINO SIN VACAS",,"TUCSON","AZ","857181298",,,,,,,"860828493","5207604764","621111","KATHLEEN M DUERKSEN MC PC",,"7604 N CAMINO SIN VACAS",,"TUCSON","AZ","857181298",,,,,,,"860828493",,,,,"2011-09-30T17:42:47-0500","KATHLEEN M DUERKSEN",,,,,5,5,0,0,5,0,5,0,0,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930102733P040143248625001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"QUINN & QUINN LLC PROFIT SHARING PLAN","001","2010-01-01","QUINN & QUINN LLC",,,"248 HUDSON ST",,"HARTFORD","CT","06106",,,,,,,,,,,,,,,,,,"271575077","8605272245","541110","QUINN & QUINN LLC",,"248 HUDSON ST",,"HARTFORD","CT","06106",,,,,,,"271575077","8605272245",,,,"2011-09-30T10:27:18-0500","JOHN QUINN",,,,,0,5,0,0,5,0,5,5,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930104508P030139795537005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KEVIN M. GALLAGHER, DC, P.A. PROFIT SHARING PLAN","001","1997-01-01","KEVIN M. GALLAGHER DC PA",,,"550 ALT 19 N",,"PALM HARBOR","FL","34683",,,,,,,,,,,,,,,,,,"593529971","7277890800","621310","KEVIN M. GALLAGHER DC PA",,"550 ALT 19 N",,"PALM HARBOR","FL","34683",,,,,,,"593529971","7277890800",,,,"2011-09-30T11:38:41-0500","KEVIN M. GALLAGHER, DC","2011-09-30T11:38:52-0500","KEVIN M. GALLAGHER, DC",,,4,4,0,2,6,0,6,4,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930151129P040143397761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"JONES MEDIA 401K PROFIT SHARING RETIREMENT PLAN","001","1986-01-01","JONES MEDIA, INC.",,"GREGG JONES","103 W. SUMMER STREET",,"GREENEVILLE","TN","37744",,,,,,,,,,,,,,,,,,"043650322","4236384181","511110","JONES MEDIA, INC.","GREGG JONES","103 W. SUMMER STREET",,"GREENEVILLE","TN","37744",,,,,,,"043650322","4236384181",,,,"2011-09-30T15:09:01-0500","GREGG JONES",,,,,392,294,0,118,412,0,412,338,13,,"3D2E2J2K2G3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930144733P040143386609001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"NTGI-QM COMMON DAILY CREDIT BOND INDEX FUND - NON LENDING","001",,"NORTHERN TRUST GLOBAL INVESTMENTS",,,"50 SOUTH LASALLE STREET",,"CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"367147064","3126306000",,"NORTHERN TRUST GLOBAL INVESTMENTS",,"50 SOUTH LASALLE STREET",,"CHICAGO","IL","60603",,,,,,,"367147064","3126306000",,,,,,,,"2011-09-29T10:30:18-0500","RANDAL REIN",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-30",,"Filed with authorized/valid electronic signature", "20110930190937P030140041137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARNHOLD AND S. BLEICHROEDER HOLDINGS, INC. LONG TERM DISABILITY PLAN","505","1996-11-01","ARNHOLD AND S. BLEICHROEDER HOLDINGS, INC.",,,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,,,,,,,,,,,,"134959915","2126983253","523120","ARNHOLD AND S. BLEICHROEDER HOLDINGS, INC.",,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,"134959915","2126983253",,,,"2011-09-30T19:08:42-0500","MELANIE DOW",,,,,135,148,0,0,148,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20111003144303P030141640929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"QUIOGUE WOODS BUILDING CO LLC DEFINED BENEFIT PLAN","001","2001-01-01","QUIOGUE WOODS BUILDING CO LLC",,,"PO BOX 815",,"QUOGUE","NY","119590000",,,,,,,,,,,,,,,,,,"113413047","6316535588","236200","QUIOGUE WOODS BUILDING CO LLC",,"PO BOX 815",,"QUOGUE","NY","119590000",,,,,,,"113413047","6316535588",,,,"2011-10-03T14:42:53-0500","PENSION FILERS",,,,,2,2,0,0,2,0,2,,0,,"1A1G3D",,"1",,"1",,"1",,"1",,"1",,"1",,"1","1","1",,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003164042P040145237425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAL-AM PROPERTIES 401(K) PLAN","001","2004-07-01","CAL-AM PROPERTIES",,,"385 CLINTON ST",,"COSTA MESA","CA","92626",,,,,,,,,,,,,,,,,,"954142711","7144329800","533110","CAL-AM PROPERTIES",,"385 CLINTON ST",,"COSTA MESA","CA","92626",,,,,,,"954142711","7144329800",,,,"2011-10-03T16:37:20-0500","STEVE GRIMES",,,,,509,481,0,0,481,0,481,72,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110930081544P040143179457001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"WILLIAMS ELECTRONICS GAMES, INC. 401(K) SAVINGS PLAN","004","1992-01-01","WMS INDUSTRIES, INC.",,,"800 SOUTH NORTHPOINT BOULEVARD",,"WAUKEGAN","IL","60085",,,,,,,"800 SOUTH NORTHPOINT BOULEVARD",,"WAUKEGAN","IL","60085",,,,,,,"363331124","8477853000","713200","WMS INDUSTRIES, INC.",,"800 SOUTH NORTHPOINT BOULEVARD",,"WAUKEGAN","IL","60085",,,,,,,"363331124","8477853000",,,,"2011-09-28T11:16:25-0500","SCOTT SCHWEINFURTH",,,,,288,262,3,12,277,2,279,181,0,,"2F2G2J2K2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930083723P040143187361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRUMAN MEDICAL CENTER SUPPLEMENTAL RETIREMENT AND SAVINGS PLAN","003","2003-05-01","TRUMAN MEDICAL CENTER",,,"2301 HOLMES STREET",,"KANSAS CITY","MO","64108",,,,,,,,,,,,,,,,,,"440661018","8164041000","622000","TRUMAN MEDICAL CENTER",,"2301 HOLMES STREET",,"KANSAS CITY","MO","64108",,,,,,,"440661018","8164041000",,,,"2011-09-30T08:36:40-0500","JACQUELINE MCKENZIE",,,,,4726,4212,0,212,4424,2,4426,1802,84,,"2K2M2G2T2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930112835P030139817553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IDEAL BOX COMPANY DENTAL PLAN","502","1990-01-01","IDEAL BOX COMPANY",,,"4800 S AUSTIN AVENUE",,"CHICAGO","IL","606381410",,,,,,,,,,,,,,,,,,"362251989","7085943100","322200","IDEAL BOX COMPANY",,"4800 S AUSTIN AVENUE",,"CHICAGO","IL","606381410",,,,,,,"362251989","7085943100",,,,"2011-09-30T11:28:08-0500","SCOTT M. CLARY",,,,,177,188,2,7,197,,,,,,,"4A4B4D4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930143024P040143374929001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TRIMARK USA, INC RETIREMENT SAVINGS PLAN","002","1964-12-31","TRIMARK USA, INC",,,"505 COLLINS STREET",,"SOUTH ATTLEBORO","MA","02703",,,,,,,,,,,,,,,,,,"050500881","5083992306","423400","TRIMARK USA, INC",,"505 COLLINS STREET",,"SOUTH ATTLEBORO","MA","02703",,,,,,,"050500881","5083992306",,,,"2011-09-30T14:29:57-0500","GEORGE COURTOT",,,,,963,835,0,120,955,3,958,817,0,,"2E2F2G2J2K2T3D2S3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930144857P040143387329001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"NTGI-QM COMMON DAILY AGGREGATE BOND INDEX FUND - LENDING","001",,"NORTHERN TRUST GLOBAL INVESTMENTS",,,"50 SOUTH LASALLE STREET",,"CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"367010255","3126306000",,"NORTHERN TRUST GLOBAL INVESTMENTS",,"50 SOUTH LASALLE STREET",,"CHICAGO","IL","60603",,,,,,,"367010255","3126306000",,,,,,,,"2011-09-29T10:29:25-0500","RANDAL REIN",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-30",,"Filed with authorized/valid electronic signature", "20110930193215P040646051904001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"S.K. MEDICAL GROUP, INC. 401 (K) PROFIT SHARING PLAN","002","2010-01-01","S.K. MEDICAL GROUP, INC.",,,"1418 S. SAN GABRIEL BLVD. UNIT C",,"SAN GABRIEL","CA","917763726",,,,,,,,,,,,,,,,,,"954553441","6262931988","621111","S.K. MEDICAL GROUP, INC.",,"1418 S. SAN GABRIEL BLVD. UNIT C",,"SAN GABRIEL","CA","91776",,,,,,,"954553441","6262931988",,,,"2011-09-30T19:30:28-0500","SU KIN LEE",,,,,4,4,0,0,4,0,4,4,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930161551P040143439697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AT2 COMMUNICATIONS 401(K) PROFIT SHARING PLAN","001","2006-01-01","AT2 COMMUNICATIONS, INC.",,,"4703 SHAVANO OAK DRIVE, SUITE 103",,"SAN ANTONIO","TX","78249",,,,,,,,,,,,,,,,,,"742869683","2104936050","423600","AT2 COMMUNICATIONS, INC.",,"4703 SHAVANO OAK DRIVE, SUITE 103",,"SAN ANTONIO","TX","78249",,,,,,,"742869683","2104936050",,,,"2011-09-30T16:15:03-0500","JOHN STEPHENSON",,,,,8,7,0,0,7,0,7,5,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20111003151508P040021690066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALL AMERICAN GLASS DISTRIBUTORS INC. EMPLOYEE SAVINGS PLAN","001","1997-03-01","ALL AMERICAN GLASS DISTRIBUTORS INC.",,,"PO BOX 7739",,"FORT WORTH","TX","76111",,,,,,,"404 RIVERSIDE DRIVE",,"FORT WORTH","TX","76111",,,,,,,"751397907","8173353273","327210","ALL AMERICAN GLASS DISTRIBUTORS INC.",,"PO BOX 7739",,"FORT WORTH","TX","76111",,,,,,,"751397907","8173353273",,,,"2011-10-03T15:15:04-0500","TRISH DABNEY","2011-10-03T15:15:04-0500","TRISH DABNEY",,,183,171,0,8,179,0,179,110,3,,"2E2F2G2J2K2T3D3H",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003154841P040004122212001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"21ST CENTURY HOLDING COMPANY 401(K) PLAN","001","1996-01-01","21ST CENTURY HOLDING COMPANY",,,"3661 WEST OAKLAND PARK BOULEVARD","SUITE 300","LAUDERDALE LAKES","FL","33311",,,,,,,,,,,,,,,,,,"650248866","9543081257","524290","21ST CENTURY HOLDING COMPANY",,"3661 WEST OAKLAND PARK BOULEVARD","SUITE 300","LAUDERDALE LAKES","FL","33311",,,,,,,"650248866","9543081257",,,,"2011-10-03T15:47:23-0500","PETER J. PRYGELSKI, III","2011-10-03T15:47:23-0500","PETER J. PRYGELSKI, III",,,138,119,1,22,142,0,142,108,6,,"2E2F2G2J2K2R2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930085811P030650243600001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUMBERT INSURANCE AGENCY, LTD. 401K PROFIT SHARING PLAN","001","2000-01-01","HUMBERT INSURANCE AGENCY, LTD.",,,"188 INDUSTRIAL DRIVE","SUITE 430","ELMHURST","IL","601261623",,,,,,,,,,,,,,,,,,"363924430","6302798300","524290","HUMBERT INSURANCE AGENCY, LTD.",,"188 INDUSTRIAL DRIVE","SUITE 430","ELMHURST","IL","601261623",,,,,,,"363924430","6302798300",,,,"2011-09-30T08:57:07-0500","DAVID THOMAS",,,,,15,13,0,2,15,0,15,8,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930090934P040143202977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J. B. WYBLE & ASSOCIATES, P.A. PROFIT SHARING PLAN","001","1976-08-01","J. B. WYBLE & ASSOCIATES, P.A.",,,"7950 NORFOLK AVENUE",,"BETHESDA","MD","20814",,,,,,,,,,,,,,,,,,"521064162","3016541410","541330","J. B. WYBLE & ASSOCIATES, P.A.",,"7950 NORFOLK AVENUE",,"BETHESDA","MD","20814",,,,,,,"521064162","3016541410",,,,"2011-09-30T09:09:14-0500","JAMES WYBLE",,,,,11,10,0,1,11,0,11,11,0,,"2E2G2J2K3D2F2T",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930122732P030139859441001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ING DIRECT 401(K) SAVINGS PLAN","001","2000-01-01","ING BANK, FSB",,,"1 SOUTH ORANGE STREET",,"WILMINGTON","DE","19801",,,,,,,,,,,,,,,,,,"510402191","3022553004","522120","ING BANK, FSB",,"1 SOUTH ORANGE STREET",,"WILMINGTON","DE","19801",,,,,,,"510402191","3022553004",,,,"2011-09-30T12:26:43-0500","MIRIAM RIZZO",,,,,2699,2423,0,499,2922,1,2923,2835,7,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930144910P040004068772001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CINCO RANCH ORTHODONTICS RETIREMENT PLAN & TRUST","001","2007-01-01","CINCO RANCH ORTHODONTICS, LP",,,"23922 CINCO VILLAGE CENTER BLVD.","SUITE 250","KATY","TX","77494",,,,,,,,,,,,,,,,,,"201481831","2813924571","621210","CINCO RANCH ORTHODONTICS, LP",,"23922 CINCO VILLAGE CENTER BLVD.","SUITE 250","KATY","TX","77494",,,,,,,"201481831","2813924571",,,,"2011-09-30T14:49:02-0500","KIM K. FORREST, D.D.S., M.S.",,,,,17,14,0,1,15,0,15,15,1,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930165316P040645731904001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEE GROUP LIFE AND ADD EMPLOYEE GROUP MEDICAL EMPLOYEE GROUP DENTAL","501","1986-01-01","LOUISVILLE BEDDING COMPANY",,,"10400 BUNSEN WAY",,"LOUISVILLE","KY","40299",,,,,,,"10400 BUNSEN WAY",,"LOUISVILLE","KY","40299",,,,,,,"610263630","5024913370","314000","LOUISVILLE BEDDING COMPANY",,"10400 BUNSEN WAY",,"LOUISVILLE","KY","40299",,,,,,,"610263630","5024913370",,,,"2011-09-24T09:47:57-0500","ALICE WALTER",,,,,564,551,,,551,,551,,,,,"4A4B4D","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20111003172308P040021700434001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIAM G. BOZALIS, D.D.S., M.S., P.C. PROFIT SHARING PLAN","001","1991-01-01","WILLIAM G. BOZALIS, D.D.S., M.S., P.C.",,,"3613 NW 56TH STREET","SUITE 105","OKALAHOMA","OK","73112",,,,,,,,,,,,,,,,,,"731511759","4059462455","621210","WILLIAM G. BOZALIS, D.D.S., M.S., P.C.",,"3613 NW 56TH STREET","SUITE 105","OKALAHOMA","OK","73112",,,,,,,"731511759","4059462455",,,,"2011-10-03T17:22:01-0500","WILLIAM G. BOZALIS, D.D.S.",,,,,8,6,0,3,9,0,9,9,2,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003213313P030659892656001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"UNION BANK, N.A. POOLED INVESTMENT FUND C.S. MCKEE SMALL CAP CORE EQUITY FUND","001",,"UNION BANK, N.A.",,,"350 CALIFORNIA STREET",,"SAN FRANCISCO","CA","94104",,,,,,,"H-1104",,"SAN FRANCISCO","CA","94104",,,,,,,"266096175","4152732503",,"UNION BANK, N.A.",,"350 CALIFORNIA STREET",,"SAN FRANCISCO","CA","94104",,,,,,,"266096175","4152732503",,,,"2011-10-03T21:32:43-0500","GREG KIRLAND",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110930200439P030140070849001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"GLOBAL BRASS AND COPPER, INC. RETIREMENT SAVINGS PLAN","001","2007-11-19","GLOBAL BRASS AND COPPER, INC.",,,"1901 N. ROSELLE ROAD, SUITE #800",,"SCHAUMBURG","IL","60195",,,,,,,,,,,,,,,,,,"061826564","8475176340","331400","GLOBAL BRASS AND COPPER, INC.",,"1901 N. ROSELLE ROAD, SUITE #800",,"SCHAUMBURG","IL","60195",,,,,,,"061826564","8475176340",,,,"2011-09-30T18:11:57-0500","MARK TANIS","2011-09-30T18:11:57-0500","MARK TANIS",,,2336,2048,0,300,2348,14,2362,2094,22,,"2E2F2H2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003144353P040021687618001","2010-03-24","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"VIE TECHNOLOGIES, INC. 401(K) PLAN","001","2010-03-24","VIE TECHNOLOGIES, INC.",,,"4304 OCEAN DRIVE",,"MANHATTAN BEACH","CA","90266",,,,,,,,,,,,,,,,,,"272339107","3106196212","339900","VIE TECHNOLOGIES, INC.",,"4304 OCEAN DRIVE",,"MANHATTAN BEACH","CA","90266",,,,,,,"272339107","3106196212",,,,"2011-10-03T14:43:38-0500","JOSHUA R. BARTEL","2011-10-03T14:43:38-0500","JOSHUA R. BARTEL",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930104226P040143257953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCFARLANE MANUFACTURING SAVINGS AND PROFIT SHARING PLAN","001","1976-01-01","MCFARLANE MANUFACTURING COMPANY, INC.",,,"1259 WATER STREET",,"SAUK CITY","WI","53583",,,,,,,,,,,,,,,,,,"391046249","6086433321","332900","MCFARLANE MANUFACTURING COMPANY, INC.",,"1259 WATER STREET",,"SAUK CITY","WI","53583",,,,,,,"391046249","6086433321",,,,"2011-09-30T10:41:43-0500","JOHN MCFARLANE","2011-09-30T10:41:43-0500","JOHN MCFARLANE",,,181,188,0,17,205,0,205,167,13,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930140413P040143352193001","2010-07-07","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"VAN LAAN INDUSTRIES, INC. PROFIT SHARING PLAN","001","2010-07-07","VAN LAAN INDUSTRIES, INC.",,,"6154 CLOVERMEADOWS AVE",,"SCOTTS","MI","49088",,,,,,,,,,,,,,,,,,"273000005","2695696464","621510","VAN LAAN INDUSTRIES, INC.",,"6154 CLOVERMEADOWS AVE",,"SCOTTS","MI","49088",,,,,,,"273000005","2695696464",,,,"2011-09-30T14:03:44-0500","RICK VAN LAAN",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930140528P040021411698001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCHNABEL, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1989-12-31","SCHNABEL, INC.",,,"1054 TECHNOLOGY PARK DRVE",,"GLEN ALLEN","VA","230590000",,,,,,,,,,,,,,,,,,"830342835","8042643222","541330","SCHNABEL, INC.",,"1054 TECHNOLOGY PARK DRVE",,"GLEN ALLEN","VA","230590000",,,,,,,"830342835","8042643222",,,,"2011-09-30T12:35:19-0500","SUSAN QUIROGA",,,,,442,307,0,81,388,0,388,387,30,,"2E2I2O",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20111003141302P030141623969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FULLERTON COMMUNITY BANK 401(K) SAVINGS AND RETIREMENT PLAN","003","1997-01-01","FULLERTON COMMUNITY BANK",,,"200 W. COMMONWEALTH AVE",,"FULLERTON","CA","92832",,,,,,,,,,,,,,,,,,"950756110","7145787500","522120","FULLERTON COMMUNITY BANK",,"200 W. COMMONWEALTH AVE",,"FULLERTON","CA","92832",,,,,,,"950756110","7145787500",,,,"2011-10-03T14:04:28-0500","KRISTEN FLYNN",,,,,191,133,0,48,181,0,181,177,6,,"3D2E2J3H2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003143414P040145175185003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CHAIN-G REACTIONS,INC.PROFIT SHARING","001","2001-01-01","CHAIN- G REACTIONS, INC.",,,"440 E 23RD STREET","APT 4E","NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"133850205","9175969278","812112","CHAIN- G REACTIONS, INC.",,"440 E 23RD STREET","APT 4E","NEW YORK","NY","10010",,,,,,,"133850205","9175969278",,,,"2011-09-27T07:12:57-0500","SHARI HARBINGER",,,,,1,1,0,0,1,0,1,1,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110930082628P040143183137001","2011-01-01","2011-06-30","2",,"0","0","1","1","0","0","0","0","0",,"STERLING CLEANING SERVICES, INC. 401(K) PLAN","001","2004-01-01","STERLING CLEANING SERVICES, INC.",,,"1080 NAUGHTON DRIVE",,"TROY","MI","48083",,,,,,,,,,,,,,,,,,"383480909","2484579300","561720","STERLING CLEANING SERVICES, INC.",,"1080 NAUGHTON DRIVE",,"TROY","MI","48083",,,,,,,"383480909","2484579300",,,,"2011-09-30T08:26:27-0500","DANIEL FITZGERALD","2011-09-30T08:26:27-0500","DANIEL FITZGERALD",,,117,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930202853P040004393475001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BURGESS INDUSTRIES, INC. 401(K) RETIREMENT SAVINGS","001","1983-01-01","BURGESS INDUSTRIES, INC.",,,"2700 CAMPUS DRIVE",,"PLYMOUTH","MN","55441",,,,,,,,,,,,,,,,,,"411304068","7633832303","541400","BURGESS INDUSTRIES, INC.",,"2700 CAMPUS DRIVE",,"PLYMOUTH","MN","55441",,,,,,,"411304068","7633832303",,,,"2011-09-30T20:28:36-0500","BRIAN SAEVIG",,,,,37,22,0,13,35,0,35,25,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20111003160942P030141692065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"H.W. FRAZEE & CO., RETIREMENT PLAN","001","2000-01-01","H.W. FRAZEE & CO.",,,"21800 OXNARD ST. #1160",,"WOODLAND HILLS","CA","91367",,,,,,,,,,,,,,,,,,"954729778","8188888500","524290","H.W. FRAZEE & CO.",,"21800 OXNARD ST. #1160",,"WOODLAND HILLS","CA","91367",,,,,,,"954729778","8188888500",,,,"2011-10-03T16:09:21-0500","HARRY W. FRAZEE","2011-10-03T16:09:21-0500","HARRY W. FRAZEE",,,3,3,0,0,3,0,3,,0,,"1A3D1G",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003175617P040004450291001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DIONEX 401(K) PLAN","001","1980-11-01","DIONEX CORPORATION",,,"501 MERCURY DRIVE",,"SUNNYVALE","CA","94085",,,,,,,"501 MERCURY DRIVE",,"SUNNYVALE","CA","94085",,,,,,,"942647429","4087370700","334500","DIONEX CORPORATION",,"501 MERCURY DRIVE",,"SUNNYVALE","CA","94085",,,,,,,"942647429","4087370700",,,,"2011-10-03T15:47:50-0500","CRAIG FAIRLEE",,,,,772,651,5,123,779,5,784,643,14,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110930091627P040021385618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PREMIER CATERING, INC. 401(K) PLAN","001","1998-01-01","PREMIER CATERING, INC.",,,"18 KILTON ROAD",,"BEDFORD","NH","03110",,,,,,,,,,,,,,,,,,"020414956","6036242433","722300","PREMIER CATERING, INC.",,"18 KILTON ROAD",,"BEDFORD","NH","03110",,,,,,,"020414956","6036242433",,,,"2011-09-30T09:14:57-0500","WILLIAM WEIGLE","2011-09-30T09:14:57-0500","WILLIAM WEIGLE",,,122,62,0,6,68,0,68,27,0,,"2E2G2J2K3D2T",,,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930092600P040143213265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEDIATRIC CARDIOLOGY OF LONG ISLAND, PC DEFINED BENEFIT PENSION PLAN","002","1999-01-01","PEDIATRIC CARDIOLOGY OF LONG ISLAND , P.C.",,,"100 PORT WASHINGTON BOULEVARD",,"ROSLYN","NY","115761353",,,,,,,,,,,,,,,,,,"113235233","5163653340","621111","PEDIATRIC CARDIOLOGY OF LONG ISLAND , P.C.",,"100 PORT WASHINGTON BOULEVARD",,"ROSLYN","NY","115761353",,,,,,,"113235233","5163653340",,,,"2011-09-30T09:25:30-0500","ANNE FERET",,,,,18,15,0,5,20,0,20,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930092842P040143214305004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GTL GROUP INSURANCE PLAN - AD&D","509","1997-05-01","GUARANTEE TRUST LIFE INSURANCE",,,"1275 MILWAUKEE AVENUE",,"GLENVIEW","IL","60025",,,,,,,"1275 MILWAUKEE AVENUE",,"GLENVIEW","IL","60025",,,,,,,"361174500","8476990600","524210","GUARANTEE TRUST LIFE INSURANCE",,"1275 MILWAUKEE AVENUE",,"GLENVIEW","IL","60025",,,,,,,"361174500","8476990600",,,,"2011-08-19T04:19:31-0500","BARBARA TAUBE",,,,,97,95,,,95,,,,,,,"4Q","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930124859P030139868001001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"MARION GENERAL HOSPITAL EMPLOYEE VISION CARE PLAN","511","1999-07-01","MARION GENERAL HOSPITAL",,,"1000 MCKINLEY PARK DRIVE",,"MARION","OH","43302",,,,,,,,,,,,,,,,,,"311070877","7403838400","622000","MARION GENERAL HOSPITAL",,"1000 MCKINLEY PARK DRIVE",,"MARION","OH","43302",,,,,,,"311070877","7403838400",,,,"2011-09-30T12:48:06-0500","LINDA ALESI",,,,,949,935,0,0,935,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930143619P040143378689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAYLOR FORD, INC DBA HARRIS FORD 401(K) PLAN","001","2004-08-01","TAYLOR FORD, INC DBA HARRIS FORD",,,"3201 HIGHWAY 67 NORTH","PO BOX 1089","NEWPORT","AR","72112",,,,,,,,,,,,,,,,,,"710648322","8705235559","441110","TAYLOR FORD, INC DBA HARRIS FORD",,"3201 HIGHWAY 67 NORTH","PO BOX 1089","NEWPORT","AR","72112",,,,,,,"710648322","8705235559",,,,"2011-09-30T14:35:52-0500","BENJY HARRIS",,,,,37,33,0,0,33,0,33,13,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930170447P030139987505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A & A QUALITY APPLIANCE, INC. 401(K) PLAN","001","2000-01-01","A & A QUALITY APPLIANCE, INC.",,,"6005 E EVANS AVENUE",,"DENVER","CO","80222",,,,,,,,,,,,,,,,,,"841085712","3033361527","443111","A & A QUALITY APPLIANCE, INC.",,"6005 E EVANS AVENUE",,"DENVER","CO","80222",,,,,,,"841085712","3033361527",,,,"2011-09-30T17:03:12-0500","LISA S. ROBERTS",,,,,223,190,0,6,196,0,196,25,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930214233P030140113313001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"FIXED INCOME FUND G","001",,"WELLS FARGO BANK, N.A.",,,"608 2ND AVENUE S, 9TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"522252205","6126672126",,"WELLS FARGO BANK, N.A.",,"608 2ND AVENUE S, 9TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,"566288528","6126672126",,,,,,,,"2011-09-30T13:54:38-0500","JEFFREY KLETTI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-30",,"Filed with authorized/valid electronic signature", "20111003150607P040145189585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RERBAC HOLDINGS, LLP RETIREMENT PLAN","001","2005-01-01","RERBAC HOLDINGS, LLP CANDELERO POINT PARTNERS, INC.",,"AGUSTIN CABRER ROIG","PO BOX 195537",,"SAN JUAN","PR","00919",,,,,,,"PO BOX 195537",,"SAN JUAN","PR","00919",,,,,,,"660636217","7877752121","812990","RERBAC HOLDINGS, LLP CANDELERO POINT PARTNERS, INC.","AGUSTIN CABRER ROIG","PO BOX 195537",,"SAN JUAN","PR","00919",,,,,,,"660636217","7877752121",,,,"2011-10-03T15:05:23-0500","AGUSTIN CABRER ROIG","2011-10-03T15:05:23-0500","AGUSTIN CABRER ROIG",,,5,5,0,0,5,0,5,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930095223P040143228369001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"CLIFFS & ASSOCIATED EMPLOYERS DEFINED CONTRIBUTION PLAN COLLECTIVE TRUST","001",,"CLIFFS & ASSOC ERS DEFINED CONTRIB PL COLLECTIVE TRUST",,,"200 PUBLIC SQUARE, SUITE 3300",,"CLEVELAND","OH","441142315",,,,,,,,,,,,,,,,,,"341935031","2166945505",,"EMPLOYEE BENEFITS ADMIN. DEPT.","ATTN KURT J. HOLLAND","200 PUBLIC SQUARE, SUITE 3300",,"CLEVELAND","OH","441142315",,,,,,,"341215677","2166945505",,,,,,,,"2011-09-30T09:47:24-0500","KURT J. HOLLAND DIRECTOR BENEFITS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-30",,"Filed with authorized/valid electronic signature", "20110930100430P040143234881008","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"SCOTT EQUIPMENT COMPANY, LLC MEDICAL PLAN","505","1993-01-01","SCOTT EQUIPMENT COMPANY, L.L.C.",,,"P.O. BOX 4948",,"MONROE","LA","71211",,,,,,,"P.O. BOX 4948",,"MONROE","LA","71211",,,,,,,"721436980","3183874160","423800","SCOTT EQUIPMENT COMPANY, L.L.C.",,"P.O. BOX 4948",,"MONROE","LA","71211",,,,,,,"721436980","3183874160",,,,"2011-09-30T04:13:37-0500","BOBBIE WILLIAMS","2011-09-30T04:13:37-0500","BOBBIE WILLIAMS",,,937,906,,,906,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930101637P030139782641001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ECKERD COLLEGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1959-07-01","ECKERD COLLEGE, INC.",,,"4200 54TH AVE SOUTH",,"ST. PETERSBURG","FL","33711",,,,,,,"4200 54TH AVE SOUTH",,"ST. PETERSBURG","FL","33711",,,,,,,"590859121","7278641166","611000","ECKERD COLLEGE, INC.",,"4200 54TH AVE SOUTH",,"ST. PETERSBURG","FL","33711",,,,,,,"590859121","7278648311",,,,"2011-09-30T10:10:53-0500","CHRISTOPHER BRENNAN",,,,,989,398,0,559,957,1,958,919,0,,"2L2M2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","3","1","1",,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930110832P040143276161001","2010-01-01","2010-12-31","3",,"0","0","0","0","1","1","0","0","0",,"SAVINGS PLAN FOR HOURLY EMPLOYEES OF EMPIRE IRON MINING PARTNERSHIP, TILDEN MINING COMPANY LC AND THE CLEVELAND-CLIFFS IRON COMPANY","020","1991-01-01","THE CLEVELAND-CLIFFS IRON COMPANY",,,"200 PUBLIC SQUARE, SUITE 3300",,"CLEVELAND","OH","441142315",,,,,,,"200 PUBLIC SQUARE, SUITE 3300",,"CLEVELAND","OH","441142315",,,,,,,"340677332","2166945505","212200","EMPLOYEE BENEFITS ADMIN. DEPT.","ATTN KURT J. HOLLAND","200 PUBLIC SQUARE",,"CLEVELAND","OH","441142315",,,,,,,"341215677","2166945505",,,,"2011-09-30T11:06:41-0500","K.J.HOLLAND, DIRECTOR-BENEFITS","2011-09-30T11:06:41-0500","K.J.HOLLAND, DIRECTOR-BENEFITS",,,1303,1369,0,111,1480,3,1483,920,0,,"2E2G2J3H",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930152009P040645536448001","2010-01-01","2010-12-31","2",,"1",,"0","0","0","0","0","0","0",,"THE PRESCOTT COMPANIES","507","2010-03-01","THE PRESCOTT COMPANIES",,,"5966 LA PLACE COURT","SUITE 170","CARLSBAD","CA","92008",,,,,,,"5966 LA PLACE COURT","SUITE 170","CARLSBAD","CA","92008",,,,,,,"330511943","7606344700","531310","THE PRESCOTT COMPANIES",,"5966 LA PLACE COURT","SUITE 170","CARLSBAD","CA","92008",,,,,,,"330511943","7606344700",,,,"2011-09-30T15:19:25-0500","ASHLEY HUBER",,,,,124,126,0,0,126,0,126,,,,,"4B4D4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20111003163046P030659307488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FLORISTS' MUTUAL INSURANCE COMPANY EMPLOYEES' PENSION PLAN","001","1971-01-01","FLORISTS MUTUAL INSURANCE COMPANY",,,"1 HORTICULTURAL LN",,"EDWARDSVILLE","IL","620256951",,,,,,,,,,,,,,,,,,"370277830","6186564240","524150","FLORISTS MUTUAL INSURANCE COMPANY",,"1 HORTICULTURAL LN",,"EDWARDSVILLE","IL","620256951",,,,,,,"370277830","6186564240",,,,"2011-10-03T16:30:44-0500","CONNIE TURNER",,,,,251,160,19,55,234,2,236,,0,,"1A1G1I",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003160235P030141689025001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"TANGENT RAIL EMPLOYEE BENEFIT PLAN","501","2005-11-01","TANGENT RAIL SERVICES, INC.",,,"11505 W 79TH STREET",,"LENEXA","KS","662141410",,,,,,,,,,,,,,,,,,"481065603","9133072201","336510","GLENN SNOWDEN",,"11505 W 79TH STREET",,"LENEXA","KS","662141410",,,,,,,"481065603","9133072201",,,,"2011-10-03T15:04:50-0500","GLENN SNOWDEN","2011-10-03T16:00:00-0500","JAMES KENNER",,,314,0,0,0,0,,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930103200P030045909655001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE XEROGRAPHIC CORPORATION 401(K) PROFIT SHARING PLAN & TRUST","001","1996-01-01","XEROGRAPHICS CORPORATION",,"TERRY GOLDMAN","1205 JOHNSON FERRY ROAD - SUITE 136",,"MARIETTA","GA","30068",,,,,,,,,,,,,,,,,,"582023795","7704572679","443130","XEROGRAPHICS CORPORATION","TERRY GOLDMAN","1205 JOHNSON FERRY ROAD - SUITE 136",,"MARIETTA","GA","30068",,,,,,,"582023795","7704572679",,,,"2011-09-29T14:54:02-0500","TERRY GOLDMAN",,,,,14,0,0,9,9,0,9,9,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930105811P030139801121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUZA ENTERPRISES, INC. 401(K) PLAN","001","2004-01-01","SOUZA ENTERPRISES, INC.",,,"P. O. BOX 10550",,"CASA GRANDE","AZ","851300079",,,,,,,,,,,,,,,,,,"860689716","5208364850","722210","SOUZA ENTERPRISES, INC.",,"P. O. BOX 10550",,"CASA GRANDE","AZ","851300079",,,,,,,"860689716","5208364850",,,,"2011-09-30T10:21:58-0500","ROBERT SOUZA","2011-09-30T10:21:58-0500","ROBERT SOUZA",,,157,139,0,1,140,0,140,29,0,,"2E2G2J2K3D2F2T",,"1",,"1",,,,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930145508P040143389617001","2010-01-01","2010-12-31","1",,,"1",,,,"1",,,,,"CPE HR, INC. SECTION 125 PLAN 9000 SUNSET BLVD., SUITE 900 WEST HOLLYWOOD, CA 90069","501","2003-01-01","CPE HR, INC SECTION 125 PLAN",,,"9000 SUNSET BLVD.","SUITE 900","WEST HOLLYWOOD","CA","90069",,,,,,,,,,,,,,,,,,"954091491","3102709800","561300","CPE HR, INC SECTION 125 PLAN",,"9000 SUNSET BLVD.","SUITE 900","WEST HOLLYWOOD","CA","90069",,,,,,,"954091491","3102709800",,,,"2011-09-30T04:40:49-0500","GRACE DRULIAS",,,,,3152,4359,,,4359,,4359,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","35",,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930145545P040021416514001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STANDARD OFFSET PRINTING CO., INC. 401K PROFIT SHARING PLAN","002","1997-01-01","STANDARD OFFSET PRINTING CO., INC.",,,"433 PEARL STREET",,"READING","PA","196022621",,,,,,,,,,,,,,,,,,"232247544","6103756174","323100","STANDARD OFFSET PRINTING CO., INC.",,"433 PEARL STREET",,"READING","PA","196022621",,,,,,,"232247544","6103756174",,,,"2011-09-30T14:55:25-0500","IAN HARING","2011-09-30T14:55:25-0500","IAN HARING",,,160,140,1,15,156,0,156,135,0,,"2A2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930080857P040143177281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARVIG ENTERPRISES, INC. CAFETERIA PLAN","504","1999-01-01","ARVIG ENTERPRISES, INC.",,,"150 2ND STREET SW, SUITE 100",,"PERHAM","MN","56573",,,,,,,,,,,,,,,,,,"411507358","2183455500","551112","ARVIG ENTERPRISES, INC.",,"150 2ND STREET SW, SUITE 100",,"PERHAM","MN","56573",,,,,,,"411507358","2183455500",,,,"2011-09-30T08:08:24-0500","DAVID ARVIG","2011-09-30T08:08:24-0500","DAVID ARVIG",,,321,328,6,,334,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930154507P040143418913002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JOHN JUDSON GRAVES DDS RETIREMENT PLAN","001","1982-01-01","JUDD GRAVES DDS",,,"PO BOX 791",,"KERMIT","TX","79745",,,,,,,,,,,,,,,,,,"751517336","4325862911","621210","JUDD GRAVES DDS",,"PO BOX 791",,"KERMIT","TX","79745",,,,,,,"751517336","4325862911",,,,"2011-09-30T16:36:13-0500","JOHN GRAVES",,,,,5,5,0,0,5,0,5,5,,,"2E2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930160236P030139963009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BARTON MEMORIAL HOSPITAL HEALTH PROTECTION AND VISION CARE PLAN","502","1987-06-01","BARTON MEMORIAL HOSPITAL",,,"2170 SOUTH AVENUE AND FOURTH STREET",,"SOUTH LAKE TAHOE","CA","96158",,,,,,,,,,,,,,,,,,"946050274","5305423000","622000","BARTON MEMORIAL HOSPITAL",,"2170 SOUTH AVENUE AND FOURTH STREET",,"SOUTH LAKE TAHOE","CA","96158",,,,,,,"946050274","5305423000",,,,"2011-09-30T15:56:19-0500","LEANNE KANKEL",,,,,675,659,17,0,676,,,,,,,"4A4B4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930184931P030020586994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEIL CUMMINGS ASSOCIATES PLC PROFIT SHARING PLAN","001","2000-01-01","NEIL CUMMINGS ASSOCIATES PLC",,,"11150 W OLYMPIC BLVD STE 1050",,"LOS ANGELES","CA","900641840",,,,,,,,,,,,,,,,,,"954757474","3109141849","541190","NEIL CUMMINGS ASSOCIATES PLC",,"11150 W OLYMPIC BLVD STE 1050",,"LOS ANGELES","CA","900641840",,,,,,,"954757474","3109141849",,,,"2011-09-30T18:48:11-0500","M NEIL CUMMINGS",,,,,2,2,0,0,2,0,2,2,0,,"2E2A3D","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930120015P030650634064001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"POST AND GROSSBARD INC RETIREMENT PLAN","001","1999-01-01","POST AND GROSSBARD INC",,,"814 PIERMONT AVE",,"PIERMONT","NY","10968",,,,,,,,,,,,,,,,,,"061133290","8453653200","541400","POST AND GROSSBARD INC",,"814 PIERMONT AVE",,"PIERMONT","NY","10968",,,,,,,"061133290","8453653200",,,,"2011-09-30T11:58:56-0500","WILLIAM FURDYNA",,,,,2,2,,,2,,2,,,,"2G",,,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930120119P030650636480001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALTEX ELECTRONICS, LTD. EMPLOYEES 401(K) PROFIT SHARING PLAN AND TRUST","001","1993-01-01","ALTEX ELECTRONICS, LTD.",,,"11342 I.H. 35 NORTH",,"SAN ANTONIO","TX","78233",,,,,,,,,,,,,,,,,,"742927185","2106558882","443120","ALTEX ELECTRONICS, LTD.",,"11342 I.H. 35 NORTH",,"SAN ANTONIO","TX","78233",,,,,,,"742927185","2106558882",,,,"2011-09-30T11:59:21-0500","SHARON HARRISON","2011-09-30T11:59:21-0500","SHARON HARRISON",,,175,136,0,30,166,0,166,121,2,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930120300P030022991382001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KIMBERLEY CARE, INC. 401(K) PROFIT SHARING PLAN","001","2009-02-19","KIMBERLEY CARE, INC.",,,"427 E. 17TH ST.","#302","COSTA MESA","CA","92627",,,,,,,,,,,,,,,,,,"264288720","9493079676","812990","KIMBERLEY CARE, INC.",,"427 E. 17TH ST.","#302","COSTA MESA","CA","92627",,,,,,,"264288720","9493079676",,,,"2011-09-30T11:58:34-0500","KIMBERLY HUTCHINSON",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930121629P040143309537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHYSICIAN S AUTOMATED LABORATORY, INC. 401(K) PROFIT SHARING PLAN","004","1991-01-01","PHYSICIAN S AUTOMATED LABORATORY, INC.",,,"2801 H STREET",,"BAKERSFIELD","CA","93301",,,,,,,,,,,,,,,,,,"952763276","6613250744","621510","PHYSICIAN S AUTOMATED LABORATORY, INC.",,"2801 H STREET",,"BAKERSFIELD","CA","93301",,,,,,,"952763276","6613250744",,,,"2011-09-30T11:04:24-0500","BRUCE SMITH","2011-09-30T11:04:24-0500","BRUCE SMITH",,,200,173,0,14,187,0,187,185,0,,"2A2E2F2G2J2K3D3H",,,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930150458P040645503040001","2010-01-01","2010-04-28","2",,"0","0","1","1",,"1",,,,,"COMMONWEALTH AUCTION ASSOCIATES, INC. 401(K) PLAN","001","1996-01-01","COMMONWEALTH AUCTION ASSOCIATES, INC.",,,"150 CALIFORNIA STREET",,"NEWTON","MA","02458",,,,,,,"150 CALIFORNIA STREET",,"NEWTON","MA","02458",,,,,,,"043264113","6175588421","541990","COMMONWEALTH AUCTION ASSOCIATES, INC.",,"150 CALIFORNIA STREET",,"NEWTON","MA","02458",,,,,,,"043264113","6175588421",,,,"2011-09-30T09:48:23-0500","MARK HARMON",,,,,10,0,0,0,0,0,0,0,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930155344P040021422514001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WILLOW CREEK TOOL SALES, INC. DEFINED BENEFIT PENSION PPLAN","001","2003-01-01","WILLOW CREEK TOOL SALES, INC.",,,"P.O. BOX 85",,"WILLOW CREEK","MT","59760",,,,,,,,,,,,,,,,,,"810455804","4062853247","444190","WILLOW CREEK TOOL SALES, INC.",,"P.O. BOX 85",,"WILLOW CREEK","MT","59760",,,,,,,"810455804","4062853247",,,,"2011-09-30T04:53:32-0500","PREPARER ON BEHALF OF ADMINISTRATOR",,,,,2,2,0,0,2,0,2,,0,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930160306P030139963281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HBMA SEVERANCE PLAN","555","2002-01-01","HANSON B M A",,,"300 E JOHN CARPENTER FRWY STE 1645",,"IRVING","TX","75062",,,,,,,,,,,,,,,,,,"542133605","9726535500","339900","HANSON B M A",,"300 E JOHN CARPENTER FRWY STE 1645",,"IRVING","TX","75062",,,,,,,"542133605","9726535500",,,,"2011-09-30T15:25:39-0500","JAMES GUERRIERO","2011-09-30T15:26:03-0500","JAMES GUERRIERO",,,4001,3487,435,0,3922,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003183106P040145293281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EL CAMINO UROLOGY MEDICAL GROUP, INC. PROFIT SHARING PLAN","002","1972-03-13","EL CAMINO UROLOGY MEDICAL GROUP, INC.",,,"2490 HOSPITAL DRIVE, SUITE 210",,"MOUNTAIN VIEW","CA","94040",,,,,,,,,,,,,,,,,,"941716068","6509624662","621111","EL CAMINO UROLOGY MEDICAL GROUP, INC.",,"2490 HOSPITAL DRIVE, SUITE 210",,"MOUNTAIN VIEW","CA","94040",,,,,,,"941716068","6509624662",,,,"2011-10-03T18:30:39-0500","LARRY KRETCHMAR",,,,,13,12,0,0,12,0,12,12,0,,"2E2G2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111003150757P030141655553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BARRY A. WAGNER, O.D., A PROFESSIONAL CORPORATION DEFINED BENEFIT PENSION PLAN","003","2002-01-01","BARRY A. WAGNER, O.D., A PROFESSIONAL CORPORATION",,,"12000 VICTORY BLVD",,"NORTH HOLLYWOOD","CA","916063319",,,,,,,,,,,,,,,,,,"953631277","8189852321","621320","BARRY A. WAGNER, O.D., A PROFESSIONAL CORPORATION",,"12000 VICTORY BLVD",,"NORTH HOLLYWOOD","CA","916063319",,,,,,,"953631277","8189852321",,,,"2011-10-03T14:40:28-0500","BARRY WAGNER",,,,,5,5,0,0,5,0,5,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110930100517P040143235089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"S. DONALD GARDNER, DMD DEFINED BENEFIT PENSION PLAN","001","2006-01-01","S. DONALD GARDNER, DMD, P.C.",,,"8169 SOUTH DEER CREEK ROAD",,"SALT LAKE CITY","UT","84121",,,,,,,,,,,,,,,,,,"262075644","8019434730","621210","S. DONALD GARDNER, DMD, P.C.",,"8169 SOUTH DEER CREEK ROAD",,"SALT LAKE CITY","UT","84121",,,,,,,"262075644","8019434730",,,,"2011-09-29T12:19:44-0500","S. DONALD GARDNER DMD","2011-09-29T12:19:44-0500","S. DONALD GARDNER DMD",,,5,1,0,0,1,0,1,,0,,"1A3D",,"1",,"1",,,,"1",,"1",,"1",,"1","1","2",,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930100526P040046728103001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BROWN, UDELL, POMERANTZ & DELRAHIM LTD. PROFIT SHARING & SAVINGS PLAN & TRUST","001","1978-02-06","BROWN, UDELL, POMERANTZ & DELRAHIM, LTD.",,,"1332 N. HALSTED, SUITE 100",,"CHICAGO","IL","60642",,,,,,,,,,,,,,,,,,"362977153","3124759900","541110","BROWN, UDELL, POMERANTZ & DELRAHIM, LTD.",,"1332 NORTH HALSTED","SUITE 100","CHICAGO","IL","60642",,,,,,,"362977153","3124759900",,,,"2011-09-30T10:04:40-0500","MICHAEL I. BROWN","2011-09-30T10:04:40-0500","MICHAEL I. BROWN",,,27,21,0,6,27,0,27,25,1,,"2A2E2F2H2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930100654P040021389970001","2010-04-13","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"DT CAPITAL INC 401(K) PLAN","001","2010-04-13","DT CAPITAL INC",,,"1350 EAST REDWOOD DRIVE",,"CHANDLER","AZ","85286",,,,,,,,,,,,,,,,,,"272378548","6028856249","561430","DT CAPITAL INC",,"1350 EAST REDWOOD DRIVE",,"CHANDLER","AZ","85286",,,,,,,"272378548","6028856249",,,,"2011-09-30T10:06:35-0500","RICHARD IRWIN","2011-09-30T10:06:35-0500","RICHARD IRWIN",,,2,3,0,0,3,0,3,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930101708P040143239697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TEAMSTERS LOCAL UNION NO. 160 401(K) PLAN","002","1989-01-01","JOINT BOARD OF TRUSTEES FOR THE TEAMSTERS LOCAL 160 401K PLAN",,,"14698 GALAXIE AVENUE",,"APPLE VALLEY","MN","55124",,,,,,,,,,,,,,,,,,"262999482","9524327132","327300","JOINT BOARD OF TRUSTEES FOR THE TEAMSTERS LOCAL 160 401K PLAN",,"14698 GALAXIE AVENUE",,"APPLE VALLEY","MN","55124",,,,,,,"262999482","9524327132",,,,"2011-09-30T10:01:02-0500","WAYNE PERLEBERG","2011-08-29T16:44:45-0500","LIZA A. ROBSON",,,107,83,0,7,90,0,90,81,0,,"2E2F2G2J2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930133659P030020562466001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELLIOTT-LEWIS CORPORATION 401(K) SAVINGS PLAN","001","2002-01-01","ELLIOTT-LEWIS CORPORATION",,,"2900 BLACK LAKE PLACE",,"PHILADELPHIA","PA","19154",,,,,,,,,,,,,,,,,,"232974096","2156984400","511120","ELLIOTT-LEWIS CORPORATION",,"2900 BLACK LAKE PLACE",,"PHILADELPHIA","PA","19154",,,,,,,"232974096","2156984400",,,,"2011-09-30T13:36:20-0500","KENNETH G MEEHAN","2011-09-30T13:36:20-0500","KENNETH G MEEHAN",,,326,292,1,29,322,0,322,287,26,,"2E2J2F2G2K3H2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003173854P040021701778001","2010-04-01","2010-12-31","2",,"0","0","0","1","0","1","0","0","0",,"MAVERICK TECHNOLOGIES LLC","501","2006-04-01","MAVERICK TECHNOLOGIES LLC",,,"265 ADMIRAL TROST ROAD",,"COLUMBIA","IL","62236",,,,,,,,,,,,,,,,,,"371389958","6182819100","541600","MAVERICK TECHNOLOGIES LLC",,"265 ADMIRAL TROST ROAD",,"COLUMBIA","IL","62236",,,,,,,"371389958","6182819100","MAVERICK TECHNOLOGIES, LLC","371389570","501","2011-10-03T17:38:46-0500","AMI K HALLORAN",,,,,306,259,0,0,259,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20110929230617P030649103248001","2003-01-01","2003-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ARTER & HADDEN LLP RETIREMENT SAVINGS PLAN","008","1992-01-01","ARTER & HADDEN LLP",,,"1100 HUNTINGTON BUILDING","925 EUCLID AVENUE","CLEVELAND","OH","441151475",,,,,,,,,,,,,,,,,,"340732888","2166965895","541110","ARTER & HADDEN LLP",,"1100 HUNTINGTON BUILDING","925 EUCLID AVENUE","CLEVELAND","OH","441151475",,,,,,,"340732888","2166965895",,,,"2011-09-29T15:30:52-0500","KIMFLETT",,,,,1027,0,0,634,634,0,634,634,0,,"2A2E2F2G2J2K2R3B",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930141512P040645394320001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"SANDHILLS PEDIATRIC DENTISTRY, LLC 401(K) PLAN","001","2010-10-01","SANDHILLS PEDIATRIC DENTISTRY, LLC",,,"321 EAST 3RD STREET",,"NORTH PLATTE","NE","69101",,,,,,,,,,,,,,,,,,"263612785","3085341332","621210","SANDHILLS PEDIATRIC DENTISTRY, LLC",,"321 EAST 3RD STREET",,"NORTH PLATTE","NE","69101",,,,,,,"263612785","3085341332",,,,"2011-09-30T14:14:55-0500","JONATHON SIMPSON","2011-09-30T14:14:55-0500","JONATHON SIMPSON",,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J2K2R2T3B",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110930141624P040021412946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BERWIND CORPORATION 401(K) SAVINGS PLAN","011","1984-09-01","BERWIND CORPORATION",,,"1500 MARKET STREET",,"PHILADELPHIA","PA","191022173",,,,,,,,,,,,,,,,,,"230406815","2155632800","523900","ADMINISTRATIVE COMMITTEE FOR THE BERWIND CORPORATION",,"3000 CENTRE SQ W 1500 MARKET STREET",,"PHILADELPHIA","PA","191022173",,,,,,,"222880608","2155632800",,,,"2011-09-30T14:15:59-0500","DENNIS PIZZICA",,,,,307,233,5,62,300,0,300,296,0,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930160813P030139965569001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"ACME CONSTRUCTION CO., INC. 401(K) PROFIT SHARING PLAN","001","1983-05-01","ACME CONSTRUCTION CO., INC.",,,"7695 BOND STREET",,"CLEVELAND","OH","44139",,,,,,,"7695 BOND STREET",,"CLEVELAND","OH","44139",,,,,,,"340974406","4402327474","237990","ACME CONSTRUCTION CO., INC.",,"7695 BOND STREET",,"CLEVELAND","OH","44139",,,,,,,"340974406","4402327474",,,,"2011-09-30T16:06:31-0500","LINDA ERTEL",,,,,98,49,0,45,94,0,94,73,0,,"2A2E2F2G2J2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-09-30","Filed with authorized/valid electronic signature",, "20110930173559P030140002753001","2010-02-24","2010-12-31","4","C","1","0","0","1","0","0","0","0","0",,"LIABILITY DRIVEN SOLUTION FUND I G","001",,"WELLS FARGO BANK, N.A.",,,"608 2ND AVENUE S, 9TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"306225619","6126672126",,"WELLS FARGO BANK, N.A.",,"608 2ND AVENUE S, 9TH FLOOR",,"MINNEAPOLIS","MN","55402",,,,,,,"566288528","6126672126",,,,,,,,"2011-09-30T13:48:51-0500","JEFFREY KLETTI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-30",,"Filed with authorized/valid electronic signature", "20110929205718P030139444737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANMED HEALTH PLAN, INC. RETIREMENT SAVINGS PLAN","001","1993-10-04","ANMED HEALTH PLAN, INC.",,,"800 NORTH FANT STREET",,"ANDERSON","SC","29621",,,,,,,,,,,,,,,,,,"570811053","8642611162","622000","ANMED HEALTH PLAN, INC.",,"800 NORTH FANT STREET",,"ANDERSON","SC","29621",,,,,,,"570811053","8642611162",,,,"2011-09-29T14:30:18-0500","TERESA THRELKELD",,,,,166,126,0,43,169,0,169,162,0,,"2E2G2J2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929191951P030139395617001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"403(B) THRIFT PLAN OF COMCOR, INC.","002","1994-01-01","COMCOR, INC.",,,"3615 ROBERTS ROAD",,"COLORADO SPRINGS","CO","80907",,,,,,,,,,,,,,,,,,"840928251","7194734460","624310","COMCOR, INC.",,"3615 ROBERTS ROAD",,"COLORADO SPRINGS","CO","80907",,,,,,,"840928251","7194734460",,,,"2011-09-23T12:43:01-0500","SHARON E. DETTER",,,,,112,86,,22,108,,108,108,8,,"2G2L",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111003165905P040653747952001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MILWAUKEE GEAR COMPANY RETIREMENT AND SAVINGS PLAN","003","1941-12-17","MILWAUKEE GEAR COMPANY",,,"5150 N. PORT WASHINGTON ROAD",,"MILWAUKEE","WI","53217",,,,,,,,,,,,,,,,,,"262865665","4149623532","333900","MILWAUKEE GEAR COMPANY",,"5150 N. PORT WASHINGTON ROAD",,"MILWAUKEE","WI","53217",,,,,,,"262865665","4149623532",,,,"2011-10-03T16:58:03-0500","JASON HASSEL","2011-10-03T16:58:03-0500","JASON HASSEL",,,211,153,0,81,234,0,234,201,1,,"2E2F2G2J2K2T3H3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003165933P030141713361001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"INNOVATIONS IN LEARNING, PC 401K DTD 1-1-07","001","2007-01-01","INNOVATIONS IN LEARNING, PC",,,"8200 GEORGIA STREET",,"MERRILLVILLE","IN","46410",,,,,,,"8200 GEORGIA STREET",,"MERRILLVILLE","IN","46410",,,,,,,"651269824",,"624100","INNOVATIONS IN LEARNING, PC",,"8200 GEORGIA STREET",,"MERRILLVILLE","IN","46410",,,,,,,"651269824",,,,,"2011-10-03T11:58:17-0500","BRIDGET HARRISON",,,,,9,10,0,0,10,0,10,10,0,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111004093956P030020905618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"QUALITY HEALTH CARE INC. OF FLORIDA DEFINED BENEFIT PLAN","001","2002-01-01","QUALITY HEALTH CARE INC. OF FLORIDA",,,"1840 BAYVIEW COURT",,"VERO BEACH","FL","32963",,,,,,,"1840 BAYVIEW COURT",,"VERO BEACH","FL","32963",,,,,,,"650907152","7725812373","621111","QUALITY HEALTH CARE INC. OF FLORIDA",,"1840 BAYVIEW COURT",,"VERO BEACH","FL","32963",,,,,,,"650907152","7725812373",,,,"2011-10-04T09:21:00-0500","STEPHEN OMALLEY",,,,,4,4,0,0,4,0,4,4,0,,"1A3D",,"0","1","0","0","0","1","0","0",,"0","0",,,"1","2",,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20110929210020P030139448257001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"ORCO/ORGULF 401(K) PLAN FOR REPRESENTED EMPLOYEES","004","2002-01-01","MIDLAND ENTERPRISES INC.",,,"4400 HARDING ROAD","ONE BELLE MEADE PLACE","NASHVILLE","TN","372052290",,,,,,,,,,,,,,,,,,"621870557","8664154015","483000","THE 401K COMMITTEE","INGRAM INDUSTRIES INC","4400 HARDING ROAD",,"NASHVILLE","TN","372052290",,,,,,,"626149483","8664154015",,,,"2011-09-29T14:42:18-0500","DENNIS T. DELANEY","2011-09-20T14:49:14-0500","DANIEL P. MECKLENBORG",,,18,0,0,12,12,1,13,13,0,,"2E2F2G2J2K3H",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111003160805P040021692994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEE LIFE INSURANCE PROGRAM","505","1990-04-01","UNITRIN, INC.",,,"1 E. WACKER DRIVE, FLOOR 8",,"CHICAGO","IL","606011802",,,,,,,,,,,,,,,,,,"954255452","3126614600","551112","UNITRIN, INC.",,"1 E. WACKER DRIVE, FLOOR 8",,"CHICAGO","IL","606011802",,,,,,,"954255452","3126614600",,,,"2011-10-03T16:07:35-0500","LISA KING","2011-10-03T16:07:35-0500","LISA KING",,,7461,6897,539,0,7436,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929205001P030139438545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOLDEN ARTIST COLORS, INC. 401(K) PROFIT SHARING PLAN","001","1987-06-01","GOLDEN ARTIST COLORS, INC.",,,"188 BELL ROAD",,"NEW BERLIN","NY","13411",,,,,,,,,,,,,,,,,,"222309658","6078476154","325500","GOLDEN ARTIST COLORS, INC.",,"188 BELL ROAD",,"NEW BERLIN","NY","13411",,,,,,,"222309658","6078476154",,,,"2011-09-29T14:04:50-0500","BARBARA J. SCHINDLER","2011-09-29T14:04:50-0500","BARBARA J. SCHINDLER",,,149,145,0,7,152,0,152,140,4,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929161443P040004365907001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"STARPATH STARTRACK 2020 FUND","170",,"TD AMERITRADE TRUST COMPANY",,,"717 17TH STREET SUITE 1700",,"DENVER","CO","802023331",,,,,,,,,,,,,,,,,,"200937408","3032945300",,"TD AMERITRADE TRUST COMPANY",,"717 17TH STREET SUITE 1700",,"DENVER","CO","802023331",,,,,,,"200937408","3032945300",,,,,,,,"2011-09-29T14:40:31-0500","JOHN NEWMAN",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-09-29",,"Filed with authorized/valid electronic signature", "20110929164157P030139318353001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"JOHN A. SPATAFORE, ATTORNEY AT LAW DEFINED BENEFIT PLAN","001","2010-01-01","JOHN A. SPATAFORE, ATTORNEY AT LAW",,,"753 PACIFIC STREET",,"SAN LUIS OBISPO","CA","93401",,,,,,,,,,,,,,,,,,"770213124","8055416166","541110","JOHN A. SPATAFORE, ATTORNEY AT LAW",,"753 PACIFIC STREET",,"SAN LUIS OBISPO","CA","93401",,,,,,,"770213124","8055416166",,,,"2011-09-29T16:41:36-0500","DOUGLAS S. HENDRY",,,,,2,2,0,0,2,0,2,2,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929210307P030648840864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RESTAURANT SERVICES, INC. PROFIT SHARING/401K PLAN","001","1982-01-01","RESTAURANT SERVICES, INC.",,,"5877 SW 29TH STREET",,"TOPEKA","KS","66614",,,,,,,,,,,,,,,,,,"480766883","7852731805","722110","RESTAURANT SERVICES, INC.",,"5877 SW 29TH STREET",,"TOPEKA","KS","66614",,,,,,,"480766883","7852731805",,,,"2011-09-29T14:51:33-0500","SHELDON HOCHULI","2011-09-29T14:51:33-0500","SHELDON HOCHULI",,,271,240,,9,249,0,249,98,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929210322P030020501074001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WESTON SOLUTIONS INC. COMPREHENSIVE WELFARE PLAN","501","1986-01-01","WESTON SOLUTIONS INC.",,,"1400 WESTON WAY",,"WEST CHESTER","PA","193801492",,,,,,,,,,,,,,,,,,"231501990","6107013000","541330","WESTON SOLUTIONS INC.",,"1400 WESTON WAY",,"WEST CHESTER","PA","193801492",,,,,,,"231501990","6107013000",,,,"2011-09-29T14:54:10-0500","JANE CRONIN","2011-09-29T14:54:10-0500","JANE CRONIN",,,1579,1514,48,0,1562,,,,,,,"4A4B4D4H4I4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","20","1","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004075353P040145615745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FANNIE MAE DISCRETIONARY SEVERANCE BENEFIT PLAN","507","1993-08-13","FEDERAL NATIONAL MORTGAGE ASSOCIATION",,,"3900 WISCONSIN AVE, NW",,"WASHINGTON","DC","20016",,,,,,,,,,,,,,,,,,"520883107","2027527000","522294","FANNIE MAE BENEFIT PLANS COMMITTEE",,"3900 WISCONSIN AVE, NW",,"WASHINGTON","DC","20016",,,,,,,"520883107","2027527000",,,,"2011-10-03T17:18:38-0500","DAVID HISEY","2011-10-03T17:42:39-0500","BRIAN MCQUAID",,,6087,6991,0,0,6991,0,6991,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929210618P030020501698001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"PIEDMONT CHEMICAL INDUSTRIES, INC. PROFIT SHARING","002","1984-06-01","PIEDMONT CHEMICAL INDUSTRIES",,,"P. O. BOX 2728",,"HIGH POINT","NC","27261",,,,,,,,,,,,,,,,,,"560668042","3368855131","325900","PIEDMONT CHEMICAL INDUSTRIES",,"P. O. BOX 2728",,"HIGH POINT","NC","27261",,,,,,,"560668042","3368855131",,,,"2011-09-29T15:10:11-0500","RAY SOYARS",,,,,304,294,0,10,304,0,304,293,5,,"2E2J2K3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111004091711P030020904194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COWLES & THOMPSON, P.C. EMPLOYEE 401 (K) PLAN","001","1979-02-01","COWLES & THOMPSON, P.C.",,,"901 MAIN STREET, SUITE 4000",,"DALLAS","TX","75202",,,,,,,"901 MAIN STREET, SUITE 4000",,"DALLAS","TX","75202",,,,,,,"751603601","2146722000","541110","COWLES & THOMPSON, P.C.",,"901 MAIN STREET, SUITE 4000",,"DALLAS","TX","75202",,,,,,,"751603601","2146722000",,,,"2011-10-04T09:13:29-0500","GLENDA ROBINSON",,,,,119,71,,37,108,,108,,3,,"2J",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004095727P030142143089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANALOG DEVICES, INC. THE INVESTMENT PARTNERSHIP PLAN","003","1983-07-01","ANALOG DEVICES, INC.",,"WILLIAM R. MATSON","ONE TECHNOLOGY WAY",,"NORWOOD","MA","020629106",,,,,,,,,,,,,,,,,,"042348234","7813294700","334410","ANALOG DEVICES, INC.","FRANK J. GRANATO","ONE TECHNOLOGY WAY",,"NORWOOD","MA","020629106",,,,,,,"042348234","7814614104",,,,"2011-10-04T09:57:03-0500","FRANK J. GRANATO",,,,,4746,3185,49,1297,4531,31,4562,4416,35,,"2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004094507P030142134481001","2010-06-01","2011-05-31","1",,,,,,,,,,,,"WERNER AFFILIATED COMPANIES HEALTH CARE PLAN","501","1968-04-01","WERNER AFFILIATED COMPANIES",,,"129 E 2ND STREET",,"HASTINGS","NE","68901",,,,,,,,,,,,,,,,,,"470461405","4024634545","237310","WERNER AFFILIATED COMPANIES",,"129 E 2ND STREET",,"HASTINGS","NE","68901",,,,,,,"470461405","4024634545",,,,"2011-10-04T10:28:46-0500","PHILIP F. WERNER, JR.","2011-10-04T10:28:53-0500","PHILIP F WERNER. JR.",,,263,242,,,242,,,,,5,,"4A4B4D","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929203612P040643286304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JULIE MOORE D.D.S., P.C. PROFIT SHARING PLAN","001","1997-01-01","JULIE MOORE D.D.S., P.C.",,,"3000 COMMUNICATIONS PARKWAY","SUITE 100","PLANO","TX","75093",,,,,,,,,,,,,,,,,,"752858625","9729391990","621210","JULIE MOORE D.D.S., P.C.",,"3000 COMMUNICATIONS PARKWAY","SUITE 100","PLANO","TX","75093",,,,,,,"752858625","9729391990",,,,"2011-09-29T20:35:05-0500","JULIE MOORE",,,,,3,2,0,2,4,0,4,4,0,,"2E2J3D2H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929204215P030139433633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NATIONAL LOUIS UNIVERSITY DEFINED CONTRIBUTION PLAN","001","1960-12-01","NATIONAL LOUIS UNIVERSITY",,,"1000 CAPITOL DRIVE",,"WHEELING","IL","60090",,,,,,,,,,,,,,,,,,"362167804","8479475519","611000","NATIONAL LOUIS UNIVERSITY",,"1000 CAPITOL DRIVE",,"WHEELING","IL","60090",,,,,,,"362167804","8479475519",,,,"2011-09-29T13:37:59-0500","HOLLY BATTAGLIA","2011-09-29T13:36:32-0500","THOMAS BERGMANN",,,1391,1082,0,316,1398,4,1402,1328,0,,"2A2G2L2M2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929204400P030139434833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAVINGS & INVESTMENT PLAN FOR EMPLOYEES OF DISABLED AMERICAN VETERANS","002","1972-03-15","DISABLED AMERICAN VETERANS",,,"3725 ALEXANDRIA PIKE",,"COLD SPRING","KY","41076",,,,,,,,,,,,,,,,,,"310263158","8594417300","813000","DISABLED AMERICAN VETERANS",,"3725 ALEXANDRIA PIKE",,"COLD SPRING","KY","41076",,,,,,,"310263158","8594417300",,,,"2011-09-29T13:41:59-0500","JOHN M. BURGESS",,,,,684,582,5,84,671,0,671,669,19,,"2E2F2G2J2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929204423P030139435105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEWART BUILDERS, INC. 401(K) SAVINGS PLAN","001","1997-11-01","STEWART BUILDERS, INC.",,,"16575 VILLAGE DRIVE",,"HOUSTON","TX","77040",,,,,,,,,,,,,,,,,,"760362047","7139838002","238900","STEWART BUILDERS, INC.",,"16575 VILLAGE DRIVE",,"HOUSTON","TX","77040",,,,,,,"760362047","7139838002",,,,"2011-09-29T13:43:35-0500","MAGGIE CARPENTER",,,,,170,158,0,26,184,0,184,139,58,,"2F2G2J2K3D2T2E",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929212242P030139463009001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"A.I. SOLUTIONS, INC. DENTAL PLAN","503","1997-02-01","A.I. SOLUTIONS, INC.",,,"10001 DEREKWOOD LANE, SUITE 219",,"LANHAM","MD","207064864",,,,,,,,,,,,,,,,,,"522005040","3013061756","541512","A.I. SOLUTIONS, INC.",,"10001 DEREKWOOD LANE, SUITE 219",,"LANHAM","MD","207064864",,,,,,,"522005040","3013061756",,,,"2011-09-29T16:12:53-0500","CHRISTY JEFFRIES","2011-09-29T16:12:53-0500","CHRISTY JEFFRIES",,,183,206,0,0,206,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929170516P040142802817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DEX ONE RETIREMENT ACCOUNT","001","1998-07-01","DEX ONE CORPORATION",,,"9380 STATION STREET",,"LONE TREE","CO","80214",,,,,,,,,,,,,,,,,,"132740040","3032971854","541800","DEX ONE CORPORATION",,"9380 STATION STREET",,"LONE TREE","CO","80214",,,,,,,"132740040","3032971854",,,,"2011-09-29T17:02:44-0500","DONNA TIKKANEN-DAVIS",,,,,2999,1160,398,1274,2832,35,2867,,28,,"1A1C1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929165022P030139323217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ST. MARY & ALL ANGELS CHRISTIAN CHURCH RETIREMENT PLAN","001","2004-01-01","ST. MARY & ALL ANGELS CHRISTIAN CHURCH",,,"7 PURSUIT",,"ALISO VIEJO","CA","92656",,,,,,,,,,,,,,,,,,"330771131","9494489027","611000","ST. MARY & ALL ANGELS CHRISTIAN CHURCH",,"7 PURSUIT",,"ALISO VIEJO","CA","92656",,,,,,,"330771131","9494489027",,,,"2011-09-29T16:47:38-0500","RICHARD MORTIMER",,,,,112,87,0,13,100,0,100,66,1,,"2E2F2G2J2T3D",,"1",,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111004001747P030141884737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHU-PEI FENG, M.D., INC. A MEDICAL CORP. DEFINED BENEFIT PENSION PLAN","001","2005-01-01","CHU-PEI FENG, M.D., INC. A MEDICAL CORP.",,,"1100 N TUSTIN AVE STE A",,"SANTA ANA","CA","927053509",,,,,,,,,,,,,,,,,,"202153797","7148358520","621111","CHU-PEI FENG, M.D., INC., A MEDICAL CORP.",,"1100 N TUSTIN AVE STE A",,"SANTA ANA","CA","92705",,,,,,,"202153797","7148358520",,,,"2011-10-04T00:12:45-0500","CHU PEI FENG",,,,,3,3,0,0,3,0,3,,0,,"1A3D3H",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004003453P040047557847001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MERLIN 401(K) COMPARABILITY PROFIT SHARING PLAN & TRUST","001","2000-01-01","MERLIN INFORMATION SERVICES, INC.",,,"215 SOUTH COMPLEX DRIVE",,"KALISPELL","MT","59901",,,,,,,"215 SOUTH COMPLEX DRIVE",,"KALISPELL","MT","59901",,,,,,,"770334679","4067558550","511210","MERLIN INFORMATION SERVICES, INC.",,"215 SOUTH COMPLEX DRIVE",,"KALISPELL","MT","59901",,,,,,,"770334679","4067558550",,,,"2011-10-03T16:37:08-0500","REBECCA TIMIS",,,,,39,33,0,0,33,0,33,33,4,,"2A2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20110929211404P030139459777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NETCARE CORPORATION EMPLOYEE RETIREMENT PROGRAM","001","1980-10-01","NETCARE CORPORATION",,,"199 SOUTH CENTRAL AVENUE",,"COLUMBUS","OH","432231399",,,,,,,,,,,,,,,,,,"310814079","6142780111","623000","NETCARE CORPORATION",,"199 SOUTH CENTRAL AVENUE",,"COLUMBUS","OH","432231399",,,,,,,"310814079","6142780111",,,,"2011-09-29T15:33:38-0500","ALLEN MOSSER","2011-09-29T15:33:38-0500","ALLEN MOSSER",,,263,167,0,69,236,0,236,169,4,,"2E2G2K2T",,"1","0","0","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929174322P030139347617004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ANALYTICAL BIO-CHEMISTRY LABORATORIES, INC. FLEXIBLE BENEFIT PLAN","501","1974-05-15","ANALYTICAL BIO-CHEMISTRY LABORATORIES, INC.",,,"4780 DISCOVERY DRIVE",,"COLUMBIA","MO","65201",,,,,,,,,,,,,,,,,,"430918770","5734439023","541700","ANALYTICAL BIO-CHEMISTRY LABORATORIES, INC.",,"4780 DISCOVERY DRIVE",,"COLUMBIA","MO","65201",,,,,,,"430918770","5734439023",,,,"2011-09-29T11:57:44-0500","NANCY ADRIAN",,,,,316,323,4,5,332,,,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929212547P030139464353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PACIFIC LIGHTING SYSTEMS RETIREMENT SAVINGS PLAN","002","2009-01-01","PACIFIC LIGHTING SYSTEMS, INC.",,,"6363 7TH AVENUE SOUTH, SUITE 100",,"SEATTLE","WA","98108",,,,,,,,,,,,,,,,,,"911370070","2064368830","423600","PACIFIC LIGHTING SYSTEMS, INC.",,"6363 7TH AVENUE SOUTH, SUITE 100",,"SEATTLE","WA","98108",,,,,,,"911370070","2064368830",,,,"2011-09-29T16:33:57-0500","KENNETH JONES",,,,,35,32,0,12,44,0,44,41,7,,"2A2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111004081105P040145623057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOWSON AUTOMOTIVE, INC. DBA BMW OF TOWSON EMPLOYEES SAVINGS TRUST","001","2001-01-01","TOWSON AUTOMOTIVE, INC.","BMW OF TOWSON",,"700 KENILWORTH DRIVE",,"TOWSON","MD","21204",,,,,,,,,,,,,,,,,,"522257616","4102967900","441110","TOWSON AUTOMOTIVE, INC.",,"700 KENILWORTH DRIVE",,"TOWSON","MD","21204",,,,,,,"522257616","4102967900",,,,"2011-10-03T16:44:18-0500","LOUIS COHEN",,,,,126,104,0,26,130,0,130,96,5,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004083418P030142088545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MTS SEATING 401K PLAN & TRUST","001","1976-01-01","MTS SEATING",,,"7100 INDUSTRIAL DRIVE",,"TEMPERANCE","MI","48182",,,,,,,,,,,,,,,,,,"381543409","7348473875","337000","MTS SEATING",,"7100 INDUSTRIAL DRIVE",,"TEMPERANCE","MI","48182",,,,,,,"381543409","7348473875",,,,"2011-10-04T08:15:49-0500","JOSEPH F. RESTIVO",,,,,398,338,11,19,368,1,369,350,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004093444P040021759842007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MCPHERSON OIL PRODUCTS LIFE AND DISABILITY INSURANCE PLAN","502","1989-12-01","THE MCPHERSON COMPANIES, INC. FORMALLY MCPHERSON OIL","FORMALLY MCPHERSON OIL",,"5051 CARDINAL STREET",,"TRUSSVILE","AL","35173",,,,,,,,,,,,,,,,,,"630657937","2056614400","424700","THE MCPHERSON COMPANIES, INC.",,"5051 CARDINAL STREET",,"TRUSSVILE","AL","35173",,,,,,,"630657937","2056614400",,,,"2011-10-17T04:02:34-0500","ANNA MARIE CHAPMAN",,,,,227,249,,,249,,,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004094602P040004137092001","2010-03-01","2011-02-28","2",,,,,,,,,,,,"FAIRWAY CONSUMER DISCOUNT COMPANY PROFIT SHARING PLAN","002","1976-03-01","FAIRWAY CONSUMER DISCOUNT COMPANY",,,"176 RIVERSIDE DRIVE",,"WILKES-BARRE","PA","18702",,,,,,,,,,,,,,,,,,"240831867","5702884535","522300","FAIRWAY CONSUMER DISCOUNT COMPANY",,"176 RIVERSIDE DRIVE",,"WILKES-BARRE","PA","18702",,,,,,,"240831867","5702884535",,,,"2011-10-04T10:45:49-0500","BELANGER AND CO., INC.",,,,,4,4,0,0,4,0,4,3,0,,"2E2R",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004094648P030661230768001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ORTHOPAEDIC CLINIC OF DAYTONA BEACH, P.A. 401(K) PROFIT SHARING PLAN","005","1993-01-01","ORTHOPAEDIC CLINIC OF DAYTONA BEACH , P.A.",,,"1075 MASON AVENUE",,"DAYTONA BEACH","FL","321174611",,,,,,,,,,,,,,,,,,"591281292","3862554596","621111","ORTHOPAEDIC CLINIC OF DAYTONA BEACH , P.A.",,"1075 MASON AVENUE",,"DAYTONA BEACH","FL","321174611",,,,,,,"591281292","3862554596",,,,"2011-10-04T09:45:47-0500","JOHN E. HECKERT",,,,,109,82,0,20,102,0,102,102,6,,"2A2E2F2H2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20110929205145P030139439409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEE BENEFIT PLAN OF GARDNER VISITING NURSING ASSOCIATION, INC.","001","1989-01-01","GARDNER VISITING NURSING ASSOCIATIO N, INC.",,,"34 PEARLY LN",,"GARDNER","MA","01440",,,,,,,,,,,,,,,,,,"042104246","9786321230","623000","GARDNER VISITING NURSING ASSOCIATIO N, INC.",,"34 PEARLY LN",,"GARDNER","MA","01440",,,,,,,"042104246","9786321230",,,,"2011-09-29T14:11:08-0500","ELAINE FLUET","2011-09-29T14:11:08-0500","ELAINE FLUET",,,154,101,0,38,139,1,140,140,9,,"2E2G2J",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929160830P030139303329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALWAYS BEST CARE DEVELOPMENT CORPORATION 401(K) PLAN","001","2009-10-16","ALWAYS BEST CARE DEVELOPMENT CORPORATION",,,"1093 69TH STREET",,"BOULDER","CO","80303",,,,,,,,,,,,,,,,,,"271128718","3038884166","621610","ALWAYS BEST CARE DEVELOPMENT CORPORATION",,"1093 69TH STREET",,"BOULDER","CO","80303",,,,,,,"271128718","3038884166",,,,"2011-09-29T16:05:54-0500","CHRISTIE SPENCER",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111004100035P040145668257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEWITT, COLEMAN & ASSOCIATES, INC. EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST AGREEMENT","002","2003-01-01","HEWITT, COLEMAN & ASSOCIATES, INC.",,,"PO BOX 5500",,"GREENVILLE","SC","29606",,,,,,,"850 SOUTH PLEASANTBURG DRIVE",,"GREENVILLE","SC","29607",,,,,,,"570297041","8642405800","524290","HEWITT, COLEMAN & ASSOCIATES, INC.",,"PO BOX 5500",,"GREENVILLE","SC","29606",,,,,,,"570297041","8642405800",,,,"2011-10-04T10:00:26-0500","JAMES JOYNER",,,,,69,41,20,9,70,0,70,70,2,,"2I2O3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20110929213210P030139467313001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"MANHATTAN'S PHYSICIAN GROUP HEALTH AND WELFARE PLANS","501","2008-05-01","LHHN MEDICAL, P.C.",,,"499 WASHINGTON BOULEVARD",,"JERSEY CITY","NJ","07310",,,,,,,,,,,,,,,,,,"134121055","9175102800","621111","LHHN MEDICAL, P.C.",,"499 WASHINGTON BOULEVARD",,"JERSEY CITY","NJ","07310",,,,,,,"134121055","9175102800",,,,"2011-09-29T18:07:08-0500","EMILE ONDRUS",,,,,155,134,14,0,148,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929175112P030139350593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIRION TECHNOLOGIES 401(K) PLAN","001","2004-01-01","MIRION TECHNOLOGIES, INC.",,,"3000 EXECUTIVE PARKWAY","SUITE 222","SAN RAMON","CA","94583",,,,,,,,,,,,,,,,,,"203979555","9255430800","541380","MIRION TECHNOLOGIES, INC.",,"3000 EXECUTIVE PARKWAY","SUITE 222","SAN RAMON","CA","94583",,,,,,,"203979555","9255430800",,,,"2011-09-29T17:43:27-0500","ALISON ULRICH",,,,,298,281,1,9,291,0,291,273,12,,"2E2F2G2J2K2S2T3F3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929213325P030139467889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KELLY AND PICERNE, INC. DISABILITY PLAN","503","1980-01-01","KELLY AND PICERNE, INC.",,,"75 LAMBERT LIND HIGHWAY",,"WARWICK","RI","02886",,,,,,,,,,,,,,,,,,"050243936","4017323700","531190","KELLY AND PICERNE, INC.",,"75 LAMBERT LIND HIGHWAY",,"WARWICK","RI","02886",,,,,,,"050243936","4017323700",,,,"2011-09-29T18:17:57-0500","CAROL MACARI",,,,,240,232,0,0,232,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929203136P030020497250001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCHLESINGER DEFINED BENEFIT PENSION PLAN","001","2000-01-01","STUART SCHLESINGER",,,"6 HEATHCOTE ROAD",,"SCARSDALE","NY","10583",,,,,,,,,,,,,,,,,,"134096729","9147251061","523900","STUART SCHLESINGER",,"6 HEATHCOTE ROAD",,"SCARSDALE","NY","10583",,,,,,,"134096729","9147251061",,,,"2011-09-29T20:19:10-0500","STUART J. SCHLESINGER",,,,,2,2,0,0,2,0,2,,0,,"1A3B",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929205444P030139441537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MLMI 401(K) PLAN","001","1999-01-01","MEDALLION LANDSCAPE MANAGEMENT",,,"10 SAN BRUNO AVE",,"MORGAN HILL","CA","95037",,,,,,,,,,,,,,,,,,"770399625","4087827500","541320","MEDALLION LANDSCAPE MANAGEMENT",,"10 SAN BRUNO AVE",,"MORGAN HILL","CA","95037",,,,,,,"770399625","4087827500",,,,"2011-09-29T14:20:06-0500","LILIAN CHEN",,,,,157,0,0,2,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929160944P030139303649001","2010-03-01","2011-02-28","2",,"1","0","0","0","0","0","0","0","0",,"HORIZON MOVING SYSTEMS INC EMPLOYEE BENEFIT PLAN","501","2004-03-01","HORIZON MOVING SYSTEMS INC",,,"3600 EAST 36TH STREET",,"TUCSON","AZ","85713",,,,,,,,,,,,,,,,,,"860105207","5207471400","484200","HORIZON MOVING SYSTEMS INC",,"3600 EAST 36TH STREET",,"TUCSON","AZ","85713",,,,,,,"860105207","5207471400",,,,"2011-09-29T15:04:08-0500","DOUGLAS ALLEN","2011-09-29T15:04:08-0500","DOUGLAS ALLEN",,,104,100,3,,103,,,,,,,"4A4B4F4H4Q","1",,,,"1",,,,,,,,,"1","2","1",,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110929203912P030045761143001","2003-01-01","2003-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHILD AND FAMILY SERVICE 403(B) PLAN","001","1996-04-01","CHILD AND FAMILY SERVICE",,,"91-1841 FORT WEAVER ROAD",,"EWA BEACH","HI","96706",,,,,,,,,,,,,,,,,,"990073483","8086811427","624100","CHILD AND FAMILY SERVICE",,"91-1841 FORT WEAVER ROAD",,"EWA BEACH","HI","96706",,,,,,,"990073483","8086811427",,,,"2011-09-29T13:24:40-0500","HOWARD S. GARVAL",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929203931P030139432257001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHILD AND FAMILY SERVICE 403(B) PLAN","001","1996-04-01","CHILD AND FAMILY SERVICE",,,"91-1841 FORT WEAVER ROAD",,"EWA BEACH","HI","96706",,,,,,,,,,,,,,,,,,"990073483","8086811427","624100","CHILD AND FAMILY SERVICE",,"91-1841 FORT WEAVER ROAD",,"EWA BEACH","HI","96706",,,,,,,"990073483","8086811427",,,,"2011-09-29T13:26:03-0500","HOWARD S. GARVAL",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929204725P030139437121001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN ROLLER BEARING EMPLOYEE HEALTH PLAN","502","1997-03-01","AMERICAN ROLLER BEARING CO.",,,"PO BOX 68",,"HICKORY","NC","28603",,,,,,,,,,,,,,,,,,"561238523","8286241460","332900","AMERICAN ROLLER BEARING CO.",,"PO BOX 68",,"HICKORY","NC","28603",,,,,,,"561238523","8286241460",,,,"2011-09-29T13:54:18-0500","MARSHALL KIM HARKINS",,,,,277,330,4,3,337,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111004103636P040004464499001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"VASCULAR HEALTH CENTER, P.C. DEFINED BENEFIT PLAN","002","2010-01-01","VASCULAR HEALTH CENTER, P.C.",,,"3790 CAPITAL AVENUE SW",,"BATTLE CREEK","MI","49015",,,,,,,,,,,,,,,,,,"383554179","2699796310","621399","VASCULAR HEALTH CENTER, P.C.",,"3790 CAPITAL AVENUE SW",,"BATTLE CREEK","MI","49015",,,,,,,"383554179","2699796310",,,,"2011-10-04T10:28:53-0500","MOHAMMAD RAHMAN",,,,,15,17,0,0,17,0,17,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004073308P030020895858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAMELLIA FOOD STORES, INC. RETIREMENT SAVINGS PLAN AND TRUST","003","1986-01-01","CAMELLIA FOOD STORES, INC.",,,"1300 DIAMOND SPRINGS RD, SUITE 500",,"VIRGINIA BEACH","VA","23455",,,,,,,,,,,,,,,,,,"541150292","7578553371","445110","CAMELLIA FOOD STORES, INC.",,"1300 DIAMOND SPRINGS RD, SUITE 500",,"VIRGINIA BEACH","VA","23455",,,,,,,"541150292","7578553371",,,,"2011-10-04T07:32:18-0500","DEBORAH SPENCE","2011-10-04T07:32:18-0500","RICHARD SAUNDERS",,,197,156,0,21,177,0,177,94,1,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004073316P030004211043001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"CEQUEL III 401(K) PLAN","001","2002-04-01","CEQUEL III MANAGEMENT COMPANY",,,"12444 POWERSCOURT DR.",,"ST. LOUIS","MO","63131",,,,,,,,,,,,,,,,,,"680495968","3143159379","517000","CEQUEL III MANAGEMENT COMPANY",,"12444 POWERSCOURT DR.",,"ST. LOUIS","MO","63131",,,,,,,"680495968","3143159379",,,,"2011-10-04T07:32:32-0500","RENETTA PATRICK",,,,,5173,5222,3,214,5439,0,5439,2838,1130,,"2E2J3H2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20110929173016P040142817505003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PROMOTIONAL MARKETING INC PROFIT SHARING PLAN","001","1982-06-01","UNIPRO, INC",,"HANSEN COCHRANE & REED, LTD","60 REVERE DRIVE SUITE 202",,"NORTHBROOK","IL","60062",,,,,,,,,,,,,,,,,,"363011957","8472726010","541800","UNIPRO INC","HANSEN COCHRANE & REED, LTD.","60 REVERE DRIVE SUITE 202",,"NORTHBROOK","IL","60062",,,,,,,"363011957","8472726010",,,,"2011-09-29T17:13:26-0500","ALAN SWIFT",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20110929163010P030648295312001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"LOCAL 670 WELFARE FUND","501","1973-06-12","LOCAL 670 WELFARE FUND JOINT BOARD OF TRUSTEES",,,"299 BROADWAY",,"NEW YORK","NY","10007",,,,,,,,,,,,,,,,,,"132828665","2122678650","525100","LOCAL 670 WELFARE FUND JOINT BOARD OF TRUSTEES",,"299 BROADWAY",,"NEW YORK","NY","10007",,,,,,,"132828665","2122678650",,,,"2011-09-29T17:15:28-0500","THELMA WINSTON",,,,,1345,1901,3,0,1904,,,,,634,,"4A4B4D4E",,,"1",,,,"1",,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-09-29","Filed with authorized/valid electronic signature",, "20111003165523P030141712433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J. J. HAINES & COMPANY, INC. STOCK BONUS PLAN AND TRUST","002","1976-04-25","J. J. HAINES & COMPANY, INC.",,"JOHN M. COAKLEY, VP, CFO","6950 AVIATION BLVD",,"GLEN BURNIE","MD","210612531",,,,,,,,,,,,,,,,,,"520565047","4107604040","423990","J. J. HAINES & COMPANY, INC.","STOCK BONUS PLAN COMMITTEE","6950 AVIATION BLVD",,"GLEN BURNIE","MD","210612531",,,,,,,"520565047","4107604040",,,,"2011-10-03T16:53:09-0500","JOHN COAKLEY",,,,,459,399,0,55,454,2,456,446,9,,"2I3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-03","Filed with authorized/valid electronic signature",, "20111005110745P030142849281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DEVINCENZI METAL PRODUCTS, INC. PROFIT SHARING PLAN","001","1983-11-01","DEVINCENZI METAL PRODUCTS, INC.",,,"15 CLARK DRIVE",,"SAN MATEO","CA","944013705",,,,,,,,,,,,,,,,,,"942526302","6506925800","332900","DEVINCENZI METAL PRODUCTS, INC.",,"15 CLARK DRIVE",,"SAN MATEO","CA","944013705",,,,,,,"942526302","6506925800",,,,"2011-10-04T19:20:08-0500","ROBERT DEVINCENZI",,,,,70,62,0,10,72,0,72,72,1,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004105542P030142180449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PM HOLDINGS, LLC DENTAL PLAN","503","1992-07-01","PM HOLDINGS, LLC",,,"2850 EAST HIGHWAY 60",,"WINDOM","MN","56101",,,,,,,,,,,,,,,,,,"541692384","5078312761","311610","PM HOLDINGS, LLC",,"2850 EAST HIGHWAY 60",,"WINDOM","MN","56101",,,,,,,"541692384","5078312761",,,,"2011-10-04T10:54:38-0500","KENNETH OLLWERTHER",,,,,255,289,0,0,289,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005095426P040146293665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"READING ROCK, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1988-01-01","READING ROCK, INC.",,,"4600 DEVITT DRIVE",,"CINCINNATI","OH","45246",,,,,,,,,,,,,,,,,,"310745681","5138742345","327300","READING ROCK, INC.",,"4600 DEVITT DRIVE",,"CINCINNATI","OH","45246",,,,,,,"310745681","5138742345",,,,"2011-10-05T09:53:40-0500","LISA HAEUFLE",,,,,234,189,0,18,207,0,207,114,8,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005081245P040004484659001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOME HEALTH FOUNDATION, INC. 403(B) RETIREMENT PLAN","001","1980-02-01","HOME HEALTH FOUNDATION, INC.",,,"360 MERRIMACK STREET","BUILDING 9","LAWRENCE","MA","01843",,,,,,,,,,,,,,,,,,"222587225","9785524194","621610","HOME HEALTH FOUNDATION, INC.",,"360 MERRIMACK STREET","BUILDING 9","LAWRENCE","MA","01843",,,,,,,"222587225","9785524194",,,,"2011-10-05T08:10:21-0500","RALPH R. SIMONE, JR.",,,,,1047,754,0,303,1057,0,1057,659,16,,"2F2G2L2M3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005081320P040021861346001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CPG INTERNATIONAL 401(K) PLAN","001","1998-01-01","CPG INTERNATIONAL, INC.",,,"801 E. COREY STREET",,"SCRANTON","PA","18505",,,,,,,,,,,,,,,,,,"233070648","5703468797","326100","CPG INTERNATIONAL, INC.",,"801 E. COREY STREET",,"SCRANTON","PA","18505",,,,,,,"233070648","5703468797",,,,"2011-10-05T08:12:34-0500","SCOTT HARRISON",,,,,569,465,0,49,514,0,514,488,18,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005081500P030142747681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONAGRA FOODS, INC. SEVERANCE PAY PLAN","534","2004-08-01","CONAGRA FOODS, INC.",,,"CONAGRA FOODS, INC.",,"OMAHA","NE","681025001",,,,,,,"ONE CONAGRA DRIVE",,"OMAHA","NE","681025001",,,,,,,"470248710","4022404000","311900","CONAGRA FOODS, INC. EMPLOYEE BENEFITS ADMIN COMMITTEE",,"ONE CONAGRA DRIVE",,"OMAHA","NE","681025001",,,,,,,"621756117","4022404000",,,,"2011-10-05T08:14:24-0500","CHARLES G. SALTER","2011-10-05T08:14:24-0500","CHARLES G. SALTER",,,150,371,,,371,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004111207P040145700145001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FAMILY MEDICAL SUPPLY 401(K) PLAN AND TRUST","001","1983-01-01","3-J ENTERPRISES, INC.","FAMILY MEDICAL SUPPLY",,"P.O. BOX 310",,"KINGSTON","OK","73439",,,,,,,,,,,,,,,,,,"731247577","5805644567","446110","3-J ENTERPRISES, INC.",,"P.O. BOX 310",,"KINGSTON","OK","73439",,,,,,,"731247577","5805644567",,,,"2011-10-04T11:11:16-0500","MARY POWELL",,,,,9,9,0,0,9,0,9,9,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004115644P040145725793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRESNO TRUCK CENTER 401(K) PLAN","002","2004-09-01","FRESNO TRUCK CENTER",,,"2727 E CENTRAL AVENUE",,"FRESNO","CA","93725",,,,,,,,,,,,,,,,,,"941450759","5594864310","441229","FRESNO TRUCK CENTER",,"2727 E CENTRAL AVENUE",,"FRESNO","CA","93725",,,,,,,"941450759","5594864310",,,,"2011-10-04T11:56:13-0500","BRIAN NICHOLSON",,,,,436,383,0,14,397,0,397,116,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004122812P040145744289001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"HAYES LEMMERZ INTERNATIONAL, INC. RETIREMENT SAVINGS PLAN","055","1993-01-01","HLI OPERATING COMPANY, INC.",,,"15300 CENTENNIAL DRIVE",,"NORTHVILLE","MI","48167",,,,,,,,,,,,,,,,,,"300167742","7347375000","336300","HLI OPERATING COMPANY, INC.",,"15300 CENTENNIAL DRIVE",,"NORTHVILLE","MI","48167",,,,,,,"300167742","7347375000",,,,"2011-10-04T12:27:03-0500","SANDRA LOLLO",,,,,3155,588,1130,766,2484,23,2507,2476,4,,"2E2F2G2J2K2R2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005092823P030142790129001","2010-04-01","2010-12-31","2",,"0","0","0","1","0","1","0","0","0",,"2 WIRE, INC. EMPLOYEE BENEFIT PLAN","501","1999-11-01","2WIRE, INC.","D/B/A PACE AMERICAS","JOAN G. PATINO","3701 FAU BLVD",,"BOCA RATON","FL","33431",,,,,,,"3701 FAU BLVD",,"BOCA RATON","FL","33431",,,,,,,"770489604","5619956000","541330","2 WIRE INC","JOAN G. PATINO","3701 FAU BLVD",,"BOCA RATON","FL","33431",,,,,,,"770489604","5619956000",,,,"2011-10-05T09:08:26-0500","JOAN PATINO",,,,,869,773,0,27,800,,800,,,,,"4A4B4D4E4F4H4L","1",,,"1","1",,,"1",,,,,,"1","7",,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005114441P040021880098001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KOLLSMAN, INC. 401(K) SAVINGS PLAN","001","1996-01-01","KOLLSMAN, INC.",,,"220 DANIEL WEBSTER HIGHWAY",,"MERRIMACK","NH","030544844",,,,,,,,,,,,,,,,,,"020485231","6038892500","333310","KOLLSMAN, INC.",,"220 DANIEL WEBSTER HIGHWAY",,"MERRIMACK","NH","030544844",,,,,,,"020485231","6038892500",,,,"2011-10-05T11:44:07-0500","JANIS POWELL","2011-10-05T11:44:07-0500","JANIS POWELL",,,650,516,6,117,639,3,642,599,81,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005093008P030142790737001","2010-01-01","2010-12-31","2",,,"1","1",,,"1",,,,,"WWH3, INC. PROFIT SHARING PLAN","001","1996-12-31","WWH3, INC.",,,"324 E. WASHINGTON AVENUE",,"VINTON","VA","24179",,,,,,,,,,,,,,,,,,"541775599","5409810293","524210","WWH3, INC.",,"324 E. WASHINGTON AVENUE",,"VINTON","VA","24179",,,,,,,"541775599","5409810293",,,,"2011-10-05T09:23:49-0500","WILLIAM HAYDEN","2011-10-05T09:24:00-0500","WILLIAM HAYDEN",,,2,0,0,0,0,0,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005100002P040146298145001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"THE WARREN WILSON COLLEGE TAX DEFERRED ANNUITY PLAN","004","1984-05-01","WARREN WILSON COLLEGE",,,"WWC-5082","PO BOX 9000","ASHEVILLE","NC","28815",,,,,,,,,,,,,,,,,,"560767736","8287712048","611000","WARREN WILSON COLLEGE",,"WWC-5082","PO BOX 9000","ASHEVILLE","NC","28815",,,,,,,"560767736","8287712048",,,,"2011-10-05T10:59:30-0500","JONATHAN ENRLICH",,,,,251,250,1,6,257,1,258,47,0,,"2F2G2L2M2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005100008P040146298177003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"NICHOLAS J. SVARNIAS, D.D.S., P.C.","001","2004-01-01","NICHOLAS J. SVARNIAS, D.D.S.,P.C. PROFIT SHARING PLAN AND TRUST",,,"5265 N. CENTRAL",,"CHICAGO","IL","60630",,,,,,,,,,,,,,,,,,"320100241","7735457744","621210","NICHOLAS J. SVARNIAS, D.D.S.,P.C. PROFIT SHARING PLAN AND TRUST",,"5265 N. CENTRAL",,"CHICAGO","IL","60630",,,,,,,"320100241","7735457744",,,,"2011-10-03T15:13:42-0500","NICHOLAS J. SVARNIAS",,,,,7,5,0,2,7,0,7,7,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005122853P040146396049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DRINKER BIDDLE & REATH LLP RETIREMENT SAVINGS PLAN I","005","2006-01-01","DRINKER BIDDLE & REATH LLP",,,"ONE LOGAN SQUARE, SUITE 2000",,"PHILADELPHIA","PA","19103",,,,,,,"ONE LOGAN SQUARE, SUITE 2000",,"PHILADELPHIA","PA","19103",,,,,,,"231423089","2159882700","541110","ADMINISTRATIVE COMMITTEE","DRINKER BIDDLE & REATH LLP","ONE LOGAN SQUARE","SUITE 2000","PHILADELPHIA","PA","19103",,,,,,,"232002443","2159882700",,,,"2011-10-05T12:23:34-0500","GARY AMMON",,,,,854,839,10,333,1182,2,1184,1181,9,,"2E2F2G2J2K2R3B3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004080008P040145618001001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"INDIANA PIPE TRADES DEFINED CONTRIBUTION PENSION PLAN","001","1996-05-01","BD OF TRUSTEES - INDIANA PIPE TRADES DFND CONT PENSION PLAN",,,"8778 EAST MILNER AVENUE",,"TERRE HAUTE","IN","47803",,,,,,,,,,,,,,,,,,"351983939","8128773588","238220","BD OF TRUSTEES - INDIANA PIPE TRADES DFND CONT PENSION PLAN",,"8778 EAST MILNER AVENUE",,"TERRE HAUTE","IN","47803",,,,,,,"351983939","8128773588",,,,"2011-10-04T08:55:30-0500","DONNIE R. RITTER","2011-10-04T08:56:19-0500","STEPHEN E. BUTWIN",,,1538,1529,0,0,1529,1,1530,,,97,"2E2G2J2T",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004123701P040655993728001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"LAKE SHORE INDUSTRIAL SERVICES RETIREMENT SAVINGS PLAN","001","1995-01-01","LAKE SHORE INDUSTRIAL SERVICES RETIREMENT SAVINGS PLAN",,,"2230 CAUGHEY ROAD",,"ERIE","PA","16506",,,,,,,,,,,,,,,,,,"251557617","8148383539","333900","LAKE SHORE INDUSTRIAL SERVICES RETIREMENT SAVINGS PLAN",,"2230 CAUGHEY ROAD",,"ERIE","PA","16506",,,,,,,"251557617","8148383539",,,,"2011-10-04T12:36:44-0500","JAMES B. CROSS",,,,,6,0,0,0,0,0,0,0,0,,"2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004105611P030142180705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PM HOLDINGS, LLC EMPLOYEE WELFARE BENEFIT PLAN","501","1998-11-01","PM HOLDINGS, LLC",,,"2850 EAST HIGHWAY 60",,"WINDOM","MN","56101",,,,,,,,,,,,,,,,,,"541692384","5078312761","311610","PM HOLDINGS, LLC",,"2850 EAST HIGHWAY 60",,"WINDOM","MN","56101",,,,,,,"541692384","5078312761",,,,"2011-10-04T10:54:05-0500","KENNETH OLLWERTHER",,,,,399,531,0,0,531,,,,,,,"4A4B4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004141210P040656218032001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"ALCHEMY EXECUTIVE INVESTMENTS 401(K) PLAN","001","2009-06-29","ALCHEMY EXECUTIVE INVESTMENTS",,,"1908 BENDER COURT",,"LAS VEGAS","NV","89128",,,,,,,,,,,,,,,,,,"262626949","7024487373","531390","ALCHEMY EXECUTIVE INVESTMENTS",,"1908 BENDER COURT",,"LAS VEGAS","NV","89128",,,,,,,"262626949","7024487373",,,,"2011-10-04T13:59:26-0500","CHARLES SPENCER","2011-10-04T13:59:26-0500","CHARLES SPENCER",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004141235P030142285057001","2001-01-01","2001-12-31","3",,"0","1","0","0","0","0","0","1","0",,"KLINGENSMITH DRUG, INC. WELFARE PLAN","501","1999-01-01","KLINGENSMITH DRUG, INC.",,,"P.O. BOX 151, 401 FORD STREET",,"FORD CITY","PA","16226",,,,,,,,,,,,,,,,,,"251258407","7247638889","446110","KLINGENSMITH DRUG, INC.",,"P.O. BOX 151, 401 FORD STREET",,"FORD CITY","PA","16226",,,,,,,"251258407","7247638889",,,,"2011-10-04T14:11:44-0500","JULIE ALLEN","2011-10-04T14:11:44-0500","JULIE ALLEN",,,141,159,0,,159,,,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004131933P030661720704001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"AMERICAN CENTURY - 20TH CENT HERITAGE FUND - SA55W","107",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-04T13:17:16-0500","JOHN G. PHARO","2011-10-04T13:17:16-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-04",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111004132001P040145781281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SENDIK'S FINE FOODS, INC. 401(K) PLAN","001","2001-01-01","SENDIKS FINE FOODS, INC.",,,"18985 W. CAPITOL DRIVE",,"BROOKFIELD","WI","53045",,,,,,,,,,,,,,,,,,"391981482","2627818200","445110","SENDIKS FINE FOODS, INC.",,"18985 W. CAPITOL DRIVE",,"BROOKFIELD","WI","53045",,,,,,,"391981482","2627818200",,,,"2011-10-04T13:19:29-0500","LORI B. BARCZAK",,,,,159,133,0,6,139,0,139,86,9,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005111258P040146362625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEART CLINICS NORTHWEST, P.S. 401K PROFIT SHARING PLAN","003","1990-06-27","HEART CLINICS NORTHWEST, P.S.",,,"122 W. 7TH AVENUE, SUITE 310",,"SPOKANE","WA","992042352",,,,,,,,,,,,,,,,,,"910998355","5098387711","621111","HEART CLINICS NORTHWEST, P.S.",,"122 W. 7TH AVENUE, SUITE 310",,"SPOKANE","WA","992042352",,,,,,,"910998355","5098387711",,,,"2011-10-05T11:08:20-0500","R. DEAN HILL",,,,,201,170,0,17,187,0,187,187,2,,"2E2G2J3D2R2F",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004121613P040021773810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DICKLER KAHN SLOWIKOWSKI & ZAVELL, LTD. CROSS-TESTED 401(K) PLAN","002","2000-01-01","DICKLER KAHN SLOWIKOWSKI & ZAVELL, LTD.",,,"85 WEST ALGONQUIN ROAD, SUITE 420",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,,,,,,,,,,,,"363139086","8475935595","541110","DICKLER KAHN SLOWIKOWSKI & ZAVELL, LTD.",,"85 WEST ALGONQUIN ROAD, SUITE 420",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,"363139086","8475935595",,,,"2011-10-04T12:14:06-0500","BARBARA DICKLER",,,,,12,10,0,1,11,0,11,11,0,,"2A2E2G2J2R",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004134047P030142267809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOYO TANSO USA, INC. SAVINGS AND PROFIT SHARING PLAN","001","1987-09-01","TOYO TANSO USA, INC.",,,"PO BOX 280",,"TROUTDALE","OR","97060",,,,,,,"2575 NW GRAHAM CIRCLE",,"TROUTDALE","OR","97060",,,,,,,"931074455","5036617700","327900","TOYO TANSO USA, INC.",,"PO BOX 280",,"TROUTDALE","OR","97060",,,,,,,"931074455","5036617700",,,,"2011-10-04T13:40:13-0500","JEFFREY RUZICH",,,,,166,161,0,26,187,0,187,175,0,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004134738P040021784354001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"THRIFT AND SAVINGS PLAN SPONSORED BY UNITED DAIRY ASSOCIATION","334","1978-01-01","UNITED DAIRY INDUSTRY ASSOCIATION",,,"10255 W. HIGGINS ROAD, SUITE 900",,"ROSEMONT","IL","600185616",,,,,,,,,,,,,,,,,,"362702849","8478032000","813000","UNITED DAIRY INDUSTRY ASSOCIATION",,"10255 W. HIGGINS ROAD, SUITE 900",,"ROSEMONT","IL","600185616",,,,,,,"362702849","8478032000",,,,"2011-10-04T13:47:07-0500","WILLIAM CUSICK",,,,,488,377,1,116,494,0,494,476,31,,"2E2G2J2K2T2F3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004135613P030020923474001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ALICE FREEMAN MONEY PURCHASE PLAN","002","1989-01-01","ALICE FREEMAN",,,"1214 VFW PARKWAY 37",,"WEST ROXBURY","MA","02132",,,,,,,,,,,,,,,,,,"043168820","7817625470","621112","ALICE FREEMAN",,"1214 VFW PARKWAY 37",,"WEST ROXBURY","MA","02132",,,,,,,"043168820","7817625470",,,,"2011-10-04T08:30:12-0500","ALICE FREEMAN",,,,,2,2,0,0,2,,2,2,0,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005082724P040021862770001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"LOCAL 276 SERVICE EMPLOYEES INT'L UNION AFL-CIO WELFARE FUND","502","1982-01-01","BD OF TRUSTEES LOCAL 276 SERVICE EMPLOYEES I.U. AFL-CIO WELFARE FUND",,,"2938 HEMPSTEAD TURNPIKE, SUITE 207",,"LEVITTOWN","NY","11756",,,,,,,,,,,,,,,,,,"112605664","5167964555","525100","BD OF TRUSTEES LOCAL 276 SERVICE EMPLOYEES I.U. AFL-CIO WELFARE FUND",,"2938 HEMPSTEAD TURNPIKE, SUITE 207",,"LEVITTOWN","NY","11756",,,,,,,"112605664","5167964555",,,,"2011-10-05T08:26:54-0500","CAROL WESTFALL",,,,,168,164,0,0,164,,,,,,,"4B","0","0","1","0","1","0","0","0","0","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005102115P030142816065001","2010-01-01","2010-12-31","4","E","0","1","0","0","0","0","0","0","0",,"ENHANCED CASH FUND","242",,"INVESCO ADVISERS, INC.",,,"1555 PEACHTREE STREET NE, STE 1800","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,,,,,,,,,,,,"510410657","4048920896",,"INVESCO ADVISERS, INC.",,"1555 PEACHTREE STREET NE, STE 1800","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,"581707262","4048920896",,,,,,,,"2011-10-05T07:50:16-0500","PAUL SPRIGGS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature", "20111005102212P030021000082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"LOGICAL CHOICE TECHNOLOGIES, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","LOGICAL CHOICE TECHNOLOGIES, INC.",,,"1045 PROGRESS CIRCLE",,"LAWRENCEVILLE","GA","30043",,,,,,,"1045 PROGRESS CIRCLE",,"LAWRENCEVILLE","GA","30043",,,,,,,"582158634","7705641044","541512","LOGICAL CHOICE TECHNOLOGIES, INC.",,"1045 PROGRESS CIRCLE",,"LAWRENCEVILLE","GA","30043",,,,,,,"582158634","7705641044",,,,"2011-10-05T10:21:38-0500","SHERI LOFGREN",,,,,226,234,0,22,256,0,256,115,0,,"2E2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005102225P030142816705001","2010-01-01","2010-12-31","4","E","0","1","0","0","0","0","0","0","0",,"US ENHANCED 1 PERCENT RISK FUND","243",,"INVESCO ADVISERS, INC.",,,"1555 PEACHTREE STREET NE, STE 1800","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,,,,,,,,,,,,"266000655","4048920896",,"INVESCO ADVISERS, INC.",,"1555 PEACHTREE STREET NE, STE 1800","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,"581707262","4048920896",,,,,,,,"2011-10-05T07:50:45-0500","PAUL SPRIGGS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature", "20111004142539P040656255760001","2010-07-01","2010-12-31","2",,"0","0","1","1","0","1","0","0","0",,"COMMUNITY SERVICES GROUP MEDICAL PLAN","506","1998-07-01","COMMUNITY SERVICES GROUP, INC.",,,"320 HIGHLAND DRIVE",,"MOUNTVILLE","PA","175540597",,,,,,,,,,,,,,,,,,"231934804","7172857121","624100","COMMUNITY SERVICES GROUP, INC.",,"320 HIGHLAND DRIVE",,"MOUNTVILLE","PA","175540597",,,,,,,"231934804","7172857121",,,,"2011-10-04T14:25:30-0500","SCOTT ALAN STYRING",,,,,797,0,0,0,0,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005093659P040146286769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEW PRODUCTS CORPORATION GROUP LIFE AND MEDICAL","501","1948-06-01","NEW PRODUCTS CORPORATION",,,"448 N. SHORE DRIVE",,"BENTON HARBOR","MI","490223644",,,,,,,,,,,,,,,,,,"380874260","2699252161","331310","NEW PRODUCTS CORPORATION",,"448 N. SHORE DRIVE",,"BENTON HARBOR","MI","490223644",,,,,,,"380874260","2699252161",,,,"2011-10-04T14:38:19-0500","CLYDE DANIEL","2011-10-05T09:29:13-0500","CLYDE DANIEL",,,105,104,,,104,,,,,,,"4A4B4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004124943P040145759825001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"INGRAM ENTERTAINMENT CASH BALANCE PLAN","002","1997-01-01","INGRAM ENTERTAINMENT, INC.",,,"TWO INGRAM BOULEVARD",,"LAVERGNE","TN","37089",,,,,,,,,,,,,,,,,,"621651556","6152874050","512100","INGRAM ENTERTAINMENT, INC.",,"TWO INGRAM BOULEVARD",,"LAVERGNE","TN","37089",,,,,,,"621651556","6152874050",,,,"2011-10-04T12:49:05-0500","BARBARA TUCKER","2011-10-04T12:49:05-0500","BARBARA TUCKER",,,533,0,0,0,0,0,0,,0,,"1A1C1G1I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005090938P030142778241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHYSICIAN STAFFING, INC. 401K PLAN","001","2006-01-01","PHYSICIAN STAFFING, INC.",,,"30680 BAINBRIDGE ROAD",,"SOLON","OH","441392282",,,,,,,,,,,,,,,,,,"341157377","4405425000","561300","PHYSICIAN STAFFING, INC.",,"30680 BAINBRIDGE ROAD",,"SOLON","OH","441392282",,,,,,,"341157377","4405425000",,,,"2011-10-05T09:09:03-0500","JENNIFER HAYES",,,,,122,83,0,31,114,0,114,114,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005091013P040146271521001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"FRANKCRUM RETIREMENT SAVINGS PLAN","333","2001-01-01","FRANKCRUM 11, INC.",,,"100 SOUTH MISSOURI AVE",,"CLEARWATER","FL","33756",,,,,,,,,,,,,,,,,,"592626531","7277991229","561300","FRANKCRUM 11, INC.",,"100 SOUTH MISSOURI AVE",,"CLEARWATER","FL","33756",,,,,,,"592626531","7277991229",,,,"2011-10-05T09:09:56-0500","FRANK CRUM JR.",,,,,1862,1630,0,384,2014,0,2014,895,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005023841P030142620769001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PS & TERMINALS, POV FACILITY 401(K) PLAN","002","2001-01-01","PASHA STEVEDORING & TERMINALS L.P.",,,"802 S. FRIES AVENUE",,"WILMINGTON","CA","90744",,,,,,,,,,,,,,,,,,"330525579","3102332011","483000","PASHA STEVEDORING & TERMINALS L.P.",,"802 S. FRIES AVENUE",,"WILMINGTON","CA","90744",,,,,,,"330525579","3102332011",,,,"2011-10-05T02:37:56-0500","HEATHER SPRUILL",,,,,10,8,0,2,10,0,10,8,0,,"2E2F2G2J2K3B3D3H2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004091204P030020903954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHALLENGE MFG COMPANY EMPLOYEE BENEFITS PLAN","501","1989-01-01","CHALLENGE MFG COMPANY",,,"3079 THREE MILE ROAD NW",,"WALKER","MI","49534",,,,,,,"3079 THREE MILE ROAD NW",,"WALKER","MI","49534",,,,,,,"382373161","6167356500","332110","CHALLENGE MFG COMPANY",,"3079 THREE MILE ROAD NW",,"WALKER","MI","49534",,,,,,,"382373161","6167356500",,,,"2011-10-04T09:09:05-0500","ANDREW WASHBURN","2011-10-04T09:10:27-0500","ANDREW WASHBURN",,,882,911,9,46,966,,966,,,,,"4A4B4D4F","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004110740P040021767090001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"OLDE MILL INN 401(K) SALARY SAVINGS PLAN","001","1996-01-01","OLDE MILL INN AT BERNARDS INC",,,"225 RT. 202",,"BASKING RIDGE","NJ","07920",,,,,,,,,,,,,,,,,,"223204833","9086962306","721110","OLDE MILL INN AT BERNARDS INC",,"225 RT. 202",,"BASKING RIDGE","NJ","07920",,,,,,,"223204833","9086962306",,,,"2011-10-04T11:01:03-0500","LAWRENCE WEISS",,,,,104,81,0,11,92,0,92,36,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005115234P030142868977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SELF CREATED INSURANCE SERVICES, INC. PROFIT SHARING PLAN","001","2004-01-01","SELF CREATED INSURANCE SERVICES, INC.",,,"PO BOX 27955",,"ANAHEIM HILLS","CA","928090131",,,,,,,"6200 E. CANYON RIM ROAD, SUITE 214F",,"ANAHEIM HILLS","CA","92809",,,,,,,"542137785","7149212496","524140","SELF CREATED INSURANCE SERVICES, INC.",,"PO BOX 27955",,"ANAHEIM HILLS","CA","928090131",,,,,,,"542137785","7149212496",,,,"2011-10-05T11:52:33-0500","DOUGLAS KOENCK",,,,,2,2,0,0,2,0,2,2,0,,"2A2E3D",,"1","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005111011P030664283248009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BARRIOS TECHNOLOGY, LTD. GROUP INS PLN","502","1997-01-01","BARRIOS TECHNOLOGY, LTD",,,"16441 SPACE CENTER BLVD STE B-100",,"HOUSTON","TX","770582015",,,,,,,"16441 SPACE CENTER BLVD STE B-100",,"HOUSTON","TX","770582015",,,,,,,"760404611","2812801930","541600","BARRIOS TECHNOLOGY, LTD",,"16441 SPACE CENTER BLVD STE B-100",,"HOUSTON","TX","770582015",,,,,,,"760404611","2812801930",,,,"2011-10-03T11:57:27-0500","JOHN K EDWARDS","2011-10-03T11:57:27-0500","JOHN K EDWARDS",,,478,492,,,492,,,,,,,"4A4B4D4E4F4H4L","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005111430P040146363089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEI CORPORATION OF OHIO 401(K) PLAN","001","1976-07-01","GEI CORP OF OHIO",,,"PO BOX 3460",,"YOUNGSTOWN","OH","44513",,,,,,,,,,,,,,,,,,"341879098","3307830270","561210","GEI CORP OF OHIO",,"PO BOX 3460",,"YOUNGSTOWN","OH","44513",,,,,,,"341879098","3307830270",,,,"2011-10-05T11:11:49-0500","ROSEMARY ATHEY",,,,,102,17,5,37,59,0,59,56,16,,"3D2E2J3H2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005111450P040146363185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOLCOMB BANCORP, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1996-01-01","HOLCOMB BANCORP, INC.",,,"108 WEST MAIN STREET",,"HOLCOMB","IL","61043",,,,,,,,,,,,,,,,,,"363275115","8153934413","522110","HOLCOMB BANCORP, INC.",,"108 WEST MAIN STREET",,"HOLCOMB","IL","61043",,,,,,,"363275115","8153934413",,,,"2011-10-05T11:13:11-0500","RICHARD J. HARMS",,,,,55,50,0,4,54,0,54,49,0,,"2I2O2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004122029P030020917314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C.L. YOUNG, INC. 401(K) PLAN","001","2007-08-01","C.L. YOUNG, INC.",,,"11144 N 5500 W",,"HIGHLAND","UT","84003",,,,,,,,,,,,,,,,,,"870531490","8017565166","484110","C.L. YOUNG, INC.",,"11144 N 5500 W",,"HIGHLAND","UT","84003",,,,,,,"870531490","8017565166",,,,"2011-10-03T17:29:42-0500","DIANA STUTZ",,,,,0,7,0,0,7,0,7,1,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004135722P040021785282001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RAHILL & SIMON PROFIT SHARING PLAN","001","2001-01-01","RAHILL & SIMON, L.L.C.",,,"8001 N. MACARTHUR",,"OKLAHOMA CITY","OK","731324714",,,,,,,,,,,,,,,,,,"731599935","4057201975","621210","RAHILL & SIMON, L.L.C.",,"8001 N. MACARTHUR",,"OKLAHOMA CITY","OK","731324714",,,,,,,"731599935","4057201975",,,,"2011-10-04T02:57:04-0500","DAVID A. SIMON, DDS",,,,,13,11,0,4,15,0,15,15,0,,"2A2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005101518P040146312305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IDAHO CENTRAL CREDIT UNION 401(K) PLAN AND TRUST","002","1997-04-01","IDAHO CENTRAL CREDIT UNION",,,"4400 CENTRAL WAY",,"CHUBBUCK","ID","83202",,,,,,,,,,,,,,,,,,"820217065","2082393000","522130","IDAHO CENTRAL CREDIT UNION",,"4400 CENTRAL WAY",,"CHUBBUCK","ID","83202",,,,,,,"820217065","2082393000",,,,"2011-10-05T10:12:22-0500","MICHELLE THOMAS-STOTTS",,,,,369,265,0,58,323,0,323,299,32,,"2E2F2G2J3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004141508P040145822241003","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"JOEL R TEMPLE MONEY PURCHASE PLAN","002","1987-02-24","JOEL R. TEMPLE, MD",,,"TREADWAY TOWERS, SUITE 303",,"DOVER","DE","19901",,,,,,,,,,,,,,,,,,"510216178","3026781343","621111","JOEL R. TEMPLE, MD",,"TREADWAY TOWERS, SUITE 303",,"DOVER","DE","19901",,,,,,,"510216178","3026781343",,,,"2011-10-04T15:13:17-0500","JOEL TEMPLE",,,,,3,3,0,0,3,0,3,3,,,"2C2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004141523P040145822417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIL-MOR EXPRESS, INC. 401K SALARY SAVINGS PLAN","001","1993-01-01","FIL-MOR EXPRESS, INC.",,,"32453 64TH AVENUE WAY",,"CANNON FALLS","MN","550094270",,,,,,,,,,,,,,,,,,"411453709","5072636022","484110","FIL-MOR EXPRESS, INC.",,"32453 64TH AVENUE WAY",,"CANNON FALLS","MN","550094270",,,,,,,"411453709","5072636022",,,,"2011-10-04T14:08:46-0500","RICHARD OLSON",,,,,245,55,1,58,114,0,114,59,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005085517P030663971808001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HALPIN PERSONNEL, INC. 401(K) PLAN","001","2008-01-01","HALPIN PERSONNEL, INC.",,,"900 STATE STREET",,"RACINE","WI","53404",,,,,,,,,,,,,,,,,,"391943565","2626342297","561300","HALPIN PERSONNEL, INC.",,"900 STATE STREET",,"RACINE","WI","53404",,,,,,,"391943565","2626342297",,,,"2011-10-05T08:47:55-0500","RYAN HALPIN",,,,,153,92,0,1,93,0,93,10,0,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005090419P040146267633001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HUTCHINS TRUCKING CO & ATLANTIC GREAT DANE, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1978-12-09","HUTCHINS TRUCKING COMPANY",,,"75 DARTMOUTH STREET",,"SO. PORTLAND","ME","04106",,,,,,,,,,,,,,,,,,"010271844","2077671692","484200","HUTCHINS TRUCKING COMPANY",,"75 DARTMOUTH STREET",,"SO. PORTLAND","ME","04106",,,,,,,"010271844","2077671692",,,,"2011-09-30T15:22:55-0500","REBECCA D GREENLEAF",,,,,122,96,2,18,116,0,116,105,7,,"3D2E2J3H2K2F2G2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005113023P040146370161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DENISON INDUSTRIES 401K PLAN","003","2001-01-01","DENISON INDUSTRIES",,,"22 FIELDER STREET",,"DENISON","TX","75021",,,,,,,,,,,,,,,,,,"752350819","9037864444","331500","DENISON INDUSTRIES 401K PLAN BENEFITS COMMITTEE",,"22 FIELDER STREET",,"DENISON","TX","75021",,,,,,,"753124024","9037864444",,,,"2011-10-05T11:09:46-0500","ANNETTE JOHNSON","2011-10-05T11:09:46-0500","ANNETTE JOHNSON",,,127,120,0,4,124,0,124,59,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004145556P030020929650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KINSTON MEDICAL SPECIALISTS, P.A. AMENDED AND RESTATED PSP & TRUST","001","1971-07-01","KINSTON MEDICAL SPECIALISTS, P.A.",,,"701 DOCTORS DR STE N",,"KINSTON","NC","285011584",,,,,,,,,,,,,,,,,,"560986098","2525592200","621111","KINSTON MEDICAL SPECIALISTS, P.A.",,"701 DOCTORS DR STE N",,"KINSTON","NC","285011584",,,,,,,"560986098","2525592200",,,,"2011-10-04T14:55:03-0500","PETER R. WATSON, M.D.",,,,,191,136,0,51,187,0,187,187,,,"3B2E2A2R",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005072951P040021857250001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"HULSEY SEED LABORATORY, INC. PROFIT SHARING PLAN","002","1978-04-01","HULSEY SEED LABORATORY, INC.",,,"105 N CLARENDON AVE",,"AVONDALE ESTATES","GA","300021100",,,,,,,,,,,,,,,,,,"581132951","4042945450","541990","HULSEY SEED LABORATORY, INC.",,"105 N CLARENDON AVE",,"AVONDALE ESTATES","GA","300021100",,,,,,,"581132951","4042945450",,,,"2011-10-05T07:29:51-0500","JERRY B. HULSEY",,,,,17,5,1,10,16,0,16,16,1,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005120728P030023500598001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LONG TERM DISABILITY","512","1991-02-01","THE MOORE COMPANY",,,"PO BOX 538",,"WESTERLY","RI","02891",,,,,,,,,,,,,,,,,,"050185270","4015962816","339900","THE MOORE COMPANY",,"PO BOX 538",,"WESTERLY","RI","02891",,,,,,,"050185270","4015962816",,,,"2011-10-05T06:04:25-0500","JANET WARD","2011-10-05T06:04:28-0500","JANET WARD",,,104,95,,,95,,0,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005121029P030142876209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAJESTIC SALES COMPANY, INC. PROFIT SHARING PLAN","004","1996-01-01","MAJESTIC SALES COMPANY, INC.",,,"PO BOX 112167",,"ANCHORAGE","AK","995112167",,,,,,,,,,,,,,,,,,"920038632","9073442616","423700","MAJESTIC SALES COMPANY, INC.",,"PO BOX 112167",,"ANCHORAGE","AK","995112167",,,,,,,"920038632","9073442616",,,,"2011-10-05T12:10:29-0500","JAMES H. BERGMAN",,,,,2,2,0,0,2,0,2,1,0,,"2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004113656P040145713393001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"INDEPENDENT COMMUNITY BANKERS OF AMERICA SAVINGS AND THRIFT PLAN","002","1984-01-01","INDEPENDENT COMMUNITY BANKERS OF AMERICA",,,"518 LINCOLN RD",,"SAUK CENTRE","MN","563782001",,,,,,,,,,,,,,,,,,"410327400","3203526546","813000","INDEPENDENT COMMUNITY BANKERS OF AMERICA",,"518 LINCOLN RD",,"SAUK CENTRE","MN","563782001",,,,,,,"410327400","3203526546",,,,"2011-10-04T11:36:52-0500","PATRICIA HOPKINS","2011-10-04T11:36:51-0500","PATRICIA HOPKINS",,,197,168,0,30,198,0,198,190,4,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004133413P040145790833002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ALL-TYPES ADVERTISING INC PROFIT SHARING PLAN","001","1985-12-31","ALL-TYPES ADVERTISING, INC",,,"12 CAROL COURT",,"POMONA","NY","10970",,,,,,,,,,,,,,,,,,"133251854","8453543373","541800","ALL-TYPES ADVERTISING INC",,"12 CAROL COURT",,"POMONA","NY","10970",,,,,,,"133251854","8453543373",,,,"2011-10-04T13:02:02-0500","LINDA ANN BLACK",,,,,3,3,,,3,,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004131656P030142254305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENDION HOSPITALIST OF WNY, PC 401(K)/PROFIT SHARING PLAN","001","2009-04-01","ENDION HOSPITALIST OF WNY, PC",,,"4201 N BUFFALO ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"4201 N BUFFALO ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"264591549","7166622544","621111","ENDION HOSPITALIST OF WNY, PC",,"4201 N BUFFALO ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"264591549","7166622544",,,,"2011-10-04T13:09:11-0500","JOHN A BRACH MD","2011-10-04T13:09:11-0500","JOHN A BRACH MD",,,9,9,0,0,9,,9,1,0,,"2E2G2J2K3D3H",,,,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004131759P030142254609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCIOTO PAINT VALLEY MENTAL HEALTH CENTER, INC. 403(B) PLAN","002","2009-01-01","SCIOTO PAINT VALLEY MENTAL HEALTH CENTER, INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"310720849","6207938473","621112","SCIOTO PAINT VALLEY MENTAL HEALTH CENTER, INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"310720849","6207938473",,,,"2011-10-04T13:06:03-0500","MADELINE DEAL",,,,,240,207,0,9,216,0,216,208,0,,"2F2G2M2L",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004133011P030142260033003","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"BENCHMARK CUSTOM HOMES PSP PARTICIPANT QRP","001","2003-01-01","BENCHMARK CUSTOM HOMES, INC.",,,"1422 KITTIWAKE DR",,"PUNTA GORDA","FL","33950",,,,,,,,,,,,,,,,,,"411774501","9413478368","236110","BENCHMARK CUSTOM HOMES, INC.",,"1422 KITTIWAKE DR",,"PUNTA GORDA","FL","33950",,,,,,,"411774501","9413478368",,,,"2011-10-04T14:18:11-0500","JOHN F. GARDNER",,,,,2,0,0,0,0,0,0,,,,"2C2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005091533P030664010832001","2008-01-01","2008-12-31","2",,"0","1","1","0","0","0","0","0","0",,"UNITED STATES CALIBRATION, INC. 401(K) PLAN","001","2005-11-01","UNITED STATES CALIBRATION, INC.",,,"3808 COUNTY LINE RD.",,"COCHRANTON","PA","16314",,,,,,,"3808 COUNTY LINE RD.",,"COCHRANTON","PA","16314",,,,,,,"251495189","8144252819","541990","UNITED STATES CALIBRATION, INC.",,"3808 COUNTY LINE RD.",,"COCHRANTON","PA","16314",,,,,,,"251495189","8144252819",,,,"2011-10-05T09:14:59-0500","AMY CAPE",,,,,2,0,,,0,,0,0,,,,,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005091539P030020993266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"POSTER PUBLICITY INC. 401(K) PROFIT SHARING PLAN","001","1998-07-01","POSTER PUBLICITY INC.",,,"10 EAST 40TH STREET","38TH FLOOR","NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"133928655","2126244200","812990","POSTER PUBLICITY INC.",,"10 EAST 40TH STREET","38TH FLOOR","NEW YORK","NY","10016",,,,,,,"133928655","2126244200",,,,"2011-10-05T09:14:52-0500","STEVEN RIDLEY","2011-10-05T09:14:52-0500","STEVEN RIDLEY",,,183,128,0,85,213,0,213,213,0,,"2A2E2G2J3D",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005091614P030142783361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE NEW WASHINGTON STATE BANK ESOP","002","1995-01-01","THE NEW WASHINGTON STATE BANK",,,"PO BOX 10","402 EAST MAIN STREET","NEW WASHINGTON","IN","471620010",,,,,,,,,,,,,,,,,,"350546040","8122933321","522110","THE NEW WASHINGTON STATE BANK",,"PO BOX 10","402 EAST MAIN STREET","NEW WASHINGTON","IN","471620010",,,,,,,"350546040","8122933321",,,,"2011-10-05T09:01:35-0500","SCOTT BENNER",,,,,90,84,0,6,90,0,90,84,0,,"2H2I2J2K2P2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005080549P040146241409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LINDEMANN BENTZON BOJACK ENGINEERING, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2002-01-01","LINDEMANN BENTZON BOJACK ENGINEERING, INC.",,,"P.0. BOX 122550","290 CITRUS TOWER BLVD., STE 200","CLERMONT","FL","34711",,,,,,,,,,,,,,,,,,"593216954","3522422174","541330","LINDEMANN BENTZON BOJACK ENGINEERING, INC.",,"P.0. BOX 122550","290 CITRUS TOWER BLVD., STE 200","CLERMONT","FL","34711",,,,,,,"593216954","3522422174",,,,"2011-10-05T08:05:19-0500","HANS J. BENTZON",,,,,36,16,0,17,33,0,33,33,3,,"2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005080637P040146241745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"W&P MANAGEMENT PROFIT SHARING AND 401K PLAN","001","2004-01-01","W&P MANAGEMENT",,,"46061 VAN DYKE",,"UTICA","MI","483175375",,,,,,,,,,,,,,,,,,"383639540","5867317240","561300","W&P MANAGEMENT",,"46061 VAN DYKE",,"UTICA","MI","483175375",,,,,,,"383639540","5867317240",,,,"2011-10-05T08:05:20-0500","EDWARD RADTKE",,,,,159,122,0,39,161,0,161,136,3,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005111121P030142851025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE WILLIAMS INVESTMENT PLUS PLAN","008","1987-07-01","THE WILLIAMS COMPANIES, INC.",,,"P. O. BOX 2400, MD 42",,"TULSA","OK","74102",,,,,,,"ONE WILLIAMS CENTER, 42ND FLOOR",,"TULSA","OK","74102",,,,,,,"730569878","9185732000","221210","THE WILLIAMS COMPANIES, INC. ADMINISTRATIVE COMMITTEE",,"P. O. BOX 2400, MD 42",,"TULSA","OK","74102",,,,,,,"731288043","9185732000",,,,"2011-10-04T16:09:58-0500","MAC H. HUMMEL","2011-10-04T16:09:58-0500","STEPHANIE CIPOLLA",,,8792,5024,2,2912,7938,76,8014,7700,87,,"2E2F2G2J2K2O2R",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005111534P030142853201002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"EASTERN BANK VOLUNTARY EMPLOYEES' BENEFICIARY ASSO","504","1983-09-15","EASTERN BANK",,,"605 BROADWAY, LF41",,"SAUGUS","MA","01906",,,,,,,,,,,,,,,,,,"043067724","7815814241","522110","EASTERN BANK",,"605 BROADWAY, LF41",,"SAUGUS","MA","01906",,,,,,,"043067724","7815814241",,,,"2011-09-26T07:07:35-0500","MAUREEN TREFRY",,,,,1157,967,,,967,,,,,,,"4D4E4Q",,,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004121319P040655934992001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAPITAL ACCUMULATION PLAN OF GOLDEN EAGLE DISTRIBUTORS, INC","001","1984-08-01","GOLDEN EAGLE DISTRIBUTORS, INC",,,"705 E AJO WAY",,"TUCSON","AZ","857135011",,,,,,,,,,,,,,,,,,"860081076","5208821513","424800","GOLDEN EAGLE DISTRIBUTORS, INC",,"705 E AJO WAY",,"TUCSON","AZ","857135011",,,,,,,"860081076","5208821513",,,,"2011-10-04T12:13:10-0500","MIKE ELLERSON",,,,,485,385,0,24,409,0,409,377,0,,"2E2G2J2K2T2F3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004121452P040021773458001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHOOTERS INC. 401(K) PLAN","001","1992-01-01","SHOOTERS, INC.",,,"THE CURTIS CENTER, SUITE 1050",,"PHILADELPHIA","PA","19106",,,,,,,,,,,,,,,,,,"232168233","2158600112","512100","SHOOTERS, INC.",,"THE CURTIS CENTER, SUITE 1050",,"PHILADELPHIA","PA","19106",,,,,,,"232168233","2158600112",,,,"2011-10-04T12:13:45-0500","THOMAS HILL, JR.",,,,,59,79,0,4,83,0,83,44,0,,"2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004122157P040021774674001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RICHARD MARCUS, DDS, PC PROFIT SHARING PLAN","001","1986-01-01","RICHARD MARCUS, DDS, PC",,,"23 SOUTHDOWN ROAD",,"HUNTINGTON","NY","117432538",,,,,,,,,,,,,,,,,,"112563576","6314278900","621210","RICHARD MARCUS, DDS, PC",,"23 SOUTHDOWN ROAD",,"HUNTINGTON","NY","117432538",,,,,,,"112563576","6314278900",,,,"2011-10-04T12:10:56-0500","RICHARD L. MARCUS",,,,,13,10,0,3,13,0,13,11,1,,"2A2E3B3D","4B","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004142917P030142295553001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MIDLAND STATES BANK 401(K) PROFIT SHARING PLAN","002","1969-01-01","MIDLAND STATES BANK",,,"133 W JEFFERSON",,"EFFINGHAM","IL","62401",,,,,,,,,,,,,,,,,,"370259550","2173427567","522110","MIDLAND STATES BANK",,"133 W JEFFERSON",,"EFFINGHAM","IL","62401",,,,,,,"370259550","2173427567",,,,"2011-10-04T03:29:02-0500","KYLE STONE",,,,,321,400,0,51,451,1,452,430,17,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005091745P040658467552002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HINTZ & CO., LLC 401(K) PROFIT SHARING PLAN","001","2007-06-01","HINTZ & COMPANY, LLC",,,"299 MARLBOROUGH ST.P.O. BOX 294",,"PORTLAND","CT","06480",,,,,,,,,,,,,,,,,,"204917467","8603423073","523900","HINTZ & COMPANY, LLC",,"299 MARLBOROUGH ST.P.O. BOX 294",,"PORTLAND","CT","06480",,,,,,,"204917467","8603423073",,,,"2011-10-05T10:17:27-0500","COLEEN DUFFY",,,,,6,5,0,0,5,0,5,3,0,,"2E2F2G2J2K3B3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005084758P030142760945001","2008-10-01","2009-09-30","2",,"0","0","0","0","0","0","0","1","0",,"F, G & P 401(K) PLAN","001","1984-10-01","FLACKMAN, GOODMAN AND POTTER, P.A.",,,"106 PROSPECT STREET",,"RIDGEWOOD","NJ","07450",,,,,,,,,,,,,,,,,,"221974849","2014450500","541211","FLACKMAN, GOODMAN AND POTTER",,"106 PROSPECT STREET",,"RIDGEWOOD","NJ","07450",,,,,,,"221974849","2014450500",,,,"2011-10-05T08:46:29-0500","SHERYL GUSS",,,,,33,27,0,8,35,0,35,35,0,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005113536P030664348512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHWEST RADIOLOGY CONSULTANTS PC PROFIT SHARING PLAN","002","1976-07-01","NORTHWEST RADIOLOGY CONSULTANTS PC",,,"P.O. BOX 250671",,"ATLANTA","GA","30325",,,,,,,"P.O. BOX 250671",,"ATLANTA","GA","30325",,,,,,,"205848595","4043557591","621111","NORTHWEST RADIOLOGY CONSULTANTS PC",,"P.O. BOX 250671",,"ATLANTA","GA","30325",,,,,,,"205848595","4043557591",,,,"2011-10-05T11:01:10-0500","ROYDEN DANIELS","2011-10-05T11:01:37-0500","ROYDEN DANIELS",,,7,6,0,1,7,0,7,7,0,,"2E2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005121428P040146388577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRANTLEY NURSERIES PROFIT SHARING PLAN","001","1997-01-01","BRANTLEY NURSERIES",,,"1931 W. LAKE BRANTLEY ROAD",,"LONGWOOD","FL","32779",,,,,,,,,,,,,,,,,,"592447641","4078696545","111400","BRANTLEY NURSERIES",,"1931 W. LAKE BRANTLEY ROAD",,"LONGWOOD","FL","32779",,,,,,,"592447641","4078696545",,,,"2011-10-05T12:03:03-0500","SERENA MORSE",,,,,137,57,0,80,137,0,137,137,9,,"2A2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005102555P040021872818001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"O.H. RIGSBEE D.D.S., M.S. P.C. PROFIT SHARING PLAN","001","1992-01-01","O.H. RIGSBEE D.D.S. M.S. P.C.",,,"13590 NORTH MERIDIAN ST, SUITE 204",,"CARMEL","IN","46032",,,,,,,,,,,,,,,,,,"351711923","3175740612","621210","O.H. RIGSBEE D.D.S. M.S. P.C.",,"13590 NORTH MERIDIAN ST, SUITE 204",,"CARMEL","IN","46032",,,,,,,"351711923","3175740612",,,,"2011-10-05T11:25:40-0500","ROGER W HILDEBRAND",,,,,9,8,,1,9,,9,9,0,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005102653P040146320577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROYAL OAK INDUSTRIES, INC. DEFERRED SAVINGS PLAN","002","2000-10-01","ROYAL OAK INDUSTRIES",,,"39533 WOODWARD AVE","SUITE 175","BLOOMFIELD HILLS","MI","48304",,,,,,,,,,,,,,,,,,"382388137","2483409200","332110","ROYAL OAK INDUSTRIES",,"39533 WOODWARD AVE","SUITE 175","BLOOMFIELD HILLS","MI","48304",,,,,,,"382388137","2483409200",,,,"2011-10-05T10:26:02-0500","ADRIENNE CRAWFORD","2011-10-05T10:26:02-0500","TERRY A FISCUS",,,362,992,5,55,1052,0,1052,965,57,,"2E2J2F2G2K3D2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004124543P030020918706007","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"ARIZONA AUTOMOBILE DEALERS ASSOCIATION GROUP INSURANCE TRUST","501","1949-02-10","ARIZONA AUTOMOBILE DEALERS ASSOCIATION",,,"4701 N 24TH STREET, B-3",,"PHOENIX","AZ","85016",,,,,,,,,,,,,,,,,,"860002064","6024680888","441110","ARIZONA AUTOMOBILE DEALERS ASSOCIATION",,"4701 N 24TH STREET, B-3",,"PHOENIX","AZ","85016",,,,,,,"860002064","6024680888",,,,"2011-09-30T06:57:55-0500","BOBBI SPARROW",,,,,0,0,,,0,,,,,,,"4A4B4F","1",,"1",,"1",,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004130102P040145766657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MACHINE TOOL & FAB CORP 401(K) PLAN","001","1993-01-01","MACHINE TOOL & FAB CORP",,,"1401 SANDUSKY STREET",,"FOSTORIA","OH","44830",,,,,,,,,,,,,,,,,,"205503365","4194357676","332700","MACHINE TOOL & FAB CORP",,"1401 SANDUSKY STREET",,"FOSTORIA","OH","44830",,,,,,,"205503365","4194357676",,,,"2011-10-04T13:04:06-0500","RICHARD J. KISER","2011-10-04T13:04:06-0500","RICHARD J. KISER",,,15,14,,2,16,,16,16,,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004143333P040145834353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UPM, INC. EMPLOYEES' 401(K) SAVINGS PLAN","001","2003-01-01","UPM, INC.",,,"13245 LOS ANGELES STREET",,"BALDWIN PARK","CA","91706",,,,,,,,,,,,,,,,,,"952623231","6269624001","326100","UPM, INC.",,"13245 LOS ANGELES STREET",,"BALDWIN PARK","CA","91706",,,,,,,"952623231","6269624001",,,,"2011-10-04T14:32:29-0500","JASON DOWLING",,,,,225,264,0,8,272,0,272,47,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004141700P040145823377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENDION MEDICAL SERVICES, PC 401(K)/PROFIT SHARING PLAN","001","2007-01-01","ENDION MEDICAL SERVICES, PC",,,"4201 N BUFFALO ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"4201 N BUFFALO ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"201993401","5853447269","621111","ENDION MEDICAL SERVICES, PC",,"4201 N BUFFALO ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"201993401","5853447269",,,,"2011-10-04T14:09:15-0500","JOHN A BRACH MD","2011-10-04T14:09:15-0500","JOHN A BRACH MD",,,13,14,0,0,14,0,14,2,0,,"2E2G2J2K3D3H",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004144949P040023996182001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TTT WEST COAST, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1999-09-01","TTT WEST COAST, INC.",,,"3500 W. OLIVE, SUITE 1000",,"BURBANK","CA","91505",,,,,,,,,,,,,,,,,,"954448498","8189720787","551112","TTT WEST COAST, INC.",,"3500 W. OLIVE, SUITE 1000",,"BURBANK","CA","91505",,,,,,,"954448498","8189720787",,,,"2011-10-04T14:49:11-0500","RICHARD INOYE",,,,,956,709,1,78,788,0,788,266,0,,"2J3D3H2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005095333P040146293361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DIAMOND MATERIALS TECH, INC. 401(K) PLAN","001","2008-10-01","DIAMOND MATERIALS TECH, INC.",,,"C/O RPS PLAN ADMINISTRATORS","2851 S. PARKER ROAD, STE. 230","AURORA","CO","80014",,,,,,,,,,,,,,,,,,"270728027","7195701150","541400","DIAMOND MATERIALS TECH, INC.",,"3505 N. STONE AVE.",,"COLORADO SPRINGS","CO","80907",,,,,,,"270728027","7195701150",,,,"2011-10-05T09:44:08-0500","DEREK TAYLOR","2011-10-05T09:44:08-0500","DEREK TAYLOR",,,114,212,0,12,224,0,224,105,0,,"3D2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005085727P030020992386001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SABIN METAL CORPORATION 401K SAVINGS PLAN","003","1993-10-01","SABIN METAL CORPORATION",,,"300 PANTIGO PL STE 102",,"EAST HAMPTON","NY","11937",,,,,,,,,,,,,,,,,,"111736129","6313291717","339900","SABIN METAL CORPORATION",,"300 PANTIGO PL STE 102",,"EAST HAMPTON","NY","11937",,,,,,,"111736129","6313291717",,,,"2011-10-05T09:57:23-0500","MARIE FEENEY",,,,,240,227,0,21,248,1,249,156,0,,"2E2F2G2J2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005085741P030663976304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAREPOINT RETIREMENT PLAN","001","2003-01-01","CAREPOINT, INC.",,,"215 E BAY ST STE 304",,"CHARLESTON","SC","29401",,,,,,,,,,,,,,,,,,"570992399","8438536999","446110","CAREPOINT, INC.",,"215 E BAY ST STE 304",,"CHARLESTON","SC","29401",,,,,,,"570992399","8438536999","CAREPOINT, INC.","570960429","001","2011-10-05T08:55:00-0500","JAMES H. WHITNEY",,,,,11,11,0,1,12,0,12,6,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005121520P040146389025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONTRACTORS AND EMPLOYEES RETIREMENT PLAN & TRUST","002","2006-01-01","THE MCCONNELL GROUP, INC.",,,"1901 RESEARCH BLVD., STE 501",,"ROCKVILLE","MD","20850",,,,,,,,,,,,,,,,,,"232885996","3013098310","541990","THE MCCONNELL GROUP, INC.",,"1901 RESEARCH BLVD., STE 501",,"ROCKVILLE","MD","20850",,,,,,,"232885996","3013098310",,,,"2011-10-05T12:14:22-0500","CHARLES A. O'CARROLL, JR.",,,,,327,43,0,239,282,0,282,282,0,,"2C3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005103837P030142827393001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"YORK AUTO GROUP, INC. SALARY SAVINGS PLAN","001","1994-12-01","YORK AUTO GROUP, INC.",,,"1885 WHITEFORD RD",,"YORK","PA","174022200",,,,,,,,,,,,,,,,,,"231698641","7177552961","441110","YORK AUTO GROUP, INC.",,"1885 WHITEFORD RD",,"YORK","PA","174022200",,,,,,,"231698641","7177552961",,,,"2011-10-05T10:38:25-0500","LISA DEGROFT","2011-10-05T10:38:25-0500","LISA DEGROFT",,,112,83,0,13,96,0,96,83,9,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005103840P030021001954001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"GREENHILL & CO., INC. 401(K) PROFIT SHARING PLAN","001","1996-03-01","GREENHILL & CO., INC.",,,"300 PARK AVE FL 23",,"NEW YORK","NY","100227405",,,,,,,,,,,,,,,,,,"510500737","2123891517","523900","GREENHILL & CO., INC.",,"300 PARK AVE FL 23",,"NEW YORK","NY","100227405",,,,,,,"510500737","2123891517",,,,"2011-10-05T10:38:32-0500","HAROLD RODRIGUEZ","2011-10-05T10:38:32-0500","HAROLD RODRIGUEZ",,,215,186,0,49,235,0,235,224,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004130138P040656052624001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"EAGLE DISTRIBUTING 401(K) PROFIT SHARING PLAN","001","1998-07-01","THOMAS GROUP, LLC DBA EAGLE DISTRIBUTING",,,"5463 SKYLANE BLVD.",,"SANTA ROSA","CA","95403",,,,,,,"5463 SKYLANE BLVD.",,"SANTA ROSA","CA","95403",,,,,,,"680401953","7075753121","424800","THOMAS GROUP, LLC DBA EAGLE DISTRIBUTING",,"5463 SKYLANE BLVD.",,"SANTA ROSA","CA","95403",,,,,,,"680401953","7075753121",,,,"2011-10-04T13:01:19-0500","LEE CLAYTON",,,,,117,92,0,8,100,0,100,54,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004110414P030020911906002","2010-04-01","2011-03-31","2",,,,,,,,,,,,"KARTSONAS AGENCY INC PROFIT SHARING PLAN","001","1974-05-01","KARTSONAS AGENCY, INC",,,"127 ANDERSON STREET SUITE 127",,"PITTSBURGH","PA","152125803",,,,,,,,,,,,,,,,,,"251256263","4125635900","524210","KARTSONAS AGENCY INC",,"127 ANDERSON STREET SUITE 127",,"PITTSBURGH","PA","152125803",,,,,,,"251256263","4125635900",,,,"2011-10-04T10:05:12-0500","THOMAS KARTSONAS",,,,,5,5,,,5,,5,5,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005092442P040047866535001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANGELICA CORPORATION ACCIDENTAL DEATH & DISMEMBERMENT PLAN","502","1964-04-01","ANGELICA CORPORATION",,,"1105 LAKEWOOD PARKWAY, SUITE 210",,"ALPHARETTA","GA","30009",,,,,,,,,,,,,,,,,,"430905260","6788234225","315990","ANGELICA CORPORATION",,"1105 LAKEWOOD PARKWAY, SUITE 210",,"ALPHARETTA","GA","30009",,,,,,,"430905260","6788234225",,,,"2011-10-05T09:24:09-0500","JOHN FRY",,,,,1170,1066,0,0,1066,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006104528P040147006289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENERGY DRILLING CO., INC. 401(K) PLAN","001","2000-01-01","ENERGY DRILLING COMPANY",,,"413 LIBERTY ROAD",,"NATCHEZ","MS","39120",,,,,,,,,,,,,,,,,,"742019219","6014465259","211110","ENERGY DRILLING COMPANY",,"413 LIBERTY ROAD",,"NATCHEZ","MS","39120",,,,,,,"742019219","6014465259",,,,"2011-10-06T10:42:04-0500","DAVID L. COTHREN","2011-10-06T10:42:04-0500","DAVID L. COTHREN",,,140,88,0,24,112,0,112,68,4,,"2E2G2J2K3D2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006124507P040147070657003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LEGGETTE LAW FIRM, PLC 401(K) RETIREMENT PLAN","001","2006-01-01","LEGGETTE LAW FIRM PLC",,,"P.O. BOX 20424",,"ROANOKE","VA","24018",,,,,,,,,,,,,,,,,,"202186147","5407771775","541110","LEGGETTE LAW FIRM PLC",,"P.O. BOX 20424",,"ROANOKE","VA","24018",,,,,,,"202186147","5407771775",,,,"2011-10-06T13:26:28-0500","THOMAS LEGGETTE",,,,,2,2,0,0,2,0,2,2,,,"2A2E2F2J2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005132521P030664620112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KEVIN F. POSTOL, D.D.S., LLC 401(K) PROFIT SHARING PLAN","001","2007-01-01","KEVIN F. POSTOL, D.D.S., LLC",,,"15208 MANCHESTER ROAD",,"BALLWIN","MO","63011",,,,,,,,,,,,,,,,,,"261959982","6363946044","621210","KEVIN F. POSTOL, D.D.S., LLC",,"15208 MANCHESTER ROAD",,"BALLWIN","MO","63011",,,,,,,"261959982","6363946044",,,,"2011-10-05T13:25:20-0500","DR. KEVIN POSTOL",,,,,7,5,1,1,7,0,7,6,0,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005153904P040146511809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRI-NATIONAL 401(K) PLAN","001","2006-01-01","TRI-NATIONAL, INC.",,,"13397 LAKEFRONT DRIVE, SUITE 200",,"EARTH CITY","MO","63045",,,,,,,,,,,,,,,,,,"201222154","3147395134","484120","TRI-NATIONAL, INC.",,"13397 LAKEFRONT DRIVE, SUITE 200",,"EARTH CITY","MO","63045",,,,,,,"201222154","3147395134",,,,"2011-10-05T15:38:52-0500","LARRY SCHNEIER","2011-10-05T15:38:52-0500","LARRY SCHNEIER",,,323,287,0,14,301,0,301,71,9,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006091419P030143405601001","2010-01-01","2010-12-31","4","C","0","0","1","0","0","0","0","0","0",,"FIFTH THIRD BANK MID CAP GROWTH FUND FOR EMPLOYEE BENEFIT PLANS","001",,"FIFTH THIRD BANK",,,"38 FOUNTAIN SQUARE PLAZA",,"CINCINNATI","OH","452023102",,,,,,,,,,,,,,,,,,"315249833","8775338637",,"FIFTH THIRD BANK",,"38 FOUNTAIN SQUARE PLAZA",,"CINCINNATI","OH","452023102",,,,,,,"315249833","8775338637",,,,,,,,"2011-10-06T09:13:23-0500","JENNIFER GODFREY",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06",,"Filed with authorized/valid electronic signature", "20111006094533P030021101762001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"USC PROFIT SHARING/401(K) RETIREMENT PLAN","002","1984-01-01","USC CONSULTING GROUP, LLC",,,"3000 BAYPORT DRIVE",,"TAMPA","FL","336078402",,,,,,,"SUITE 1010",,"TAMPA","FL","336078402",,,,,,,"231953580","8136364004","541600","USC CONSULTING GROUP, LLC",,"3000 BAYPORT DRIVE",,"TAMPA","FL","336078402",,,,,,,"231953580","8136364004",,,,"2011-10-06T09:44:42-0500","THOMAS KLEBECK",,,,,163,88,1,48,137,0,137,137,14,,"2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006092335P030667027552001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OWENSBORO GRAIN COMPANY 401(K) PROFIT SHARING PLAN","001","1955-12-01","OWENSBORO GRAIN COMPANY, LLC",,,"719 EAST SECOND STREET",,"OWENSBORO","KY","423021787",,,,,,,,,,,,,,,,,,"611394346","2709262032","111900","OWENSBORO GRAIN COMPANY, LLC",,"719 EAST SECOND STREET",,"OWENSBORO","KY","423021787",,,,,,,"611394346","2709262032",,,,"2011-10-06T09:22:43-0500","JEFF ERB",,,,,167,150,,10,160,0,160,160,3,,"2E2F2G2J2K2R2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006092338P030667027648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOOLS-N-MORE, INC. 401K BLUEPRINT","001","1998-01-01","TOOLS-N-MORE, INC.",,,"6537 SOUTHERN BLVD.",,"WEST PALM BEACH","FL","334130000",,,,,,,,,,,,,,,,,,"592474447","5616898349","444130","TOOLS-N-MORE, INC.",,"6537 SOUTHERN BLVD.",,"WEST PALM BEACH","FL","334130000",,,,,,,"592474447","5616898349",,,,"2011-10-06T09:22:44-0500","JUDENE HANSEN",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006092356P030667028624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"403(B) THRIFT PLAN OF ACHIEVEMENT CENTER, INC.","003","1989-01-01","ACHIEVEMENT CENTER, INC.",,,"PO BOX 1506",,"ERIE","PA","16507",,,,,,,,,,,,,,,,,,"250965336","8144592755","611000","ACHIEVEMENT CENTER, INC.",,"PO BOX 1506",,"ERIE","PA","16507",,,,,,,"250965336","8144592755",,,,"2011-10-06T09:23:24-0500","REBECCA BRUMAGIN","2011-10-06T09:23:24-0500","REBECCA BRUMAGIN",,,327,262,0,61,323,0,323,323,2,,"2E2F2G2L2T3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006062944P040146884929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RGS TITLE, LLC 401(K) PROFIT SHARING PLAN","001","1998-07-01","RGS TITLE, LLC",,,"1840 MICHAEL FARADAY DRIVE","SUITE 120","RESTON","VA","20190",,,,,,,,,,,,,,,,,,"541892251","7038345500","531390","RGS TITLE, LLC",,"1840 MICHAEL FARADAY DRIVE","SUITE 120","RESTON","VA","20190",,,,,,,"541892251","7038345500",,,,"2011-10-06T06:29:30-0500","DEE CARLSON",,,,,239,82,12,121,215,0,215,201,0,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006105324P030021108562001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INCREMEDICAL, LLC 401(K) PLAN","001","2002-07-01","INCREMEDICAL, LLC",,,"8259 WICKER AVENUE",,"ST. JOHN","IN","463730000",,,,,,,,,,,,,,,,,,"352070850","2193656560","621498","INCREMEDICAL, LLC",,"8259 WICKER AVENUE",,"ST. JOHN","IN","463730000",,,,,,,"352070850","2193656560",,,,"2011-10-06T10:52:21-0500","GREG COOPER",,,,,360,294,0,75,369,0,369,217,35,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006111316P040021980002001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"SAI GLOBAL US HOLDINGS, INC. 401(K) PLAN","001","1995-02-01","SAI GLOBAL",,,"101 MORGAN LANE","SUITE 301","PLAINSBORO","NJ","08536",,,,,,,"101 MORGAN LANE","SUITE 301","PLAINSBORO","NJ","08536",,,,,,,"202587413","6099555159","541600","SAI GLOBAL",,"101 MORGAN LANE","SUITE 301","PLAINSBORO","NJ","08536",,,,,,,"202587413","6099555159","SAI GLOBAL","061293806","001","2011-10-06T11:12:48-0500","PAM COHEN",,,,,229,166,0,102,268,0,268,243,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006100710P030143441617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BERNARD J. DURANTE, M.D. P.C. PROFIT SHARING PLAN","001","1990-01-01","BERNARD J. DURANTE, M.D. P.C.",,,"30 ALDRIN ROAD",,"PLYMOUTH","MA","02360",,,,,,,,,,,,,,,,,,"043585201","5087468979","621111","BERNARD J. DURANTE, M.D. P.C.",,"30 ALDRIN ROAD",,"PLYMOUTH","MA","02360",,,,,,,"043585201","5087468979",,,,"2011-10-06T10:06:44-0500","BERNARD J. DURANTE",,,,,15,13,0,3,16,0,16,15,1,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006100749P040146984977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATLANTA INTERNATIONAL SCHOOL DEFINED CONTRIBUTION PLAN","001","1991-06-01","ATLANTA INTERNATIONAL SCHOOL, INC.",,,"2890 N FULTON DR NE",,"ATLANTA","GA","303053155",,,,,,,,,,,,,,,,,,"581581116","4048413890","611000","ATLANTA INTERNATIONAL SCHOOL, INC.",,"2890 N FULTON DR NE",,"ATLANTA","GA","303053155",,,,,,,"581581116","4048413890",,,,"2011-10-06T10:05:04-0500","J. SCOTT MCDONALD",,,,,216,119,0,103,222,,222,210,0,,"2L3C3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006125758P030021121202005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"B.W. ROGERS CO. DENTAL PLAN","504","2008-01-01","B.W. ROGERS COMPANY",,,"P.O. BOX 1030",,"AKRON","OH","44309",,,,,,,"P.O. BOX 1030",,"AKRON","OH","44309",,,,,,,"340694061","3307620251","423990","B.W. ROGERS COMPANY",,"P.O. BOX 1030",,"AKRON","OH","44309",,,,,,,"340694061","3307620251",,,,"2011-10-06T07:43:33-0500","TAMMY MERDA",,,,,150,139,0,0,139,,139,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006125758P030021121202006","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"IRONWORKERS LOCAL UNION 16 ANNUITY PLAN","001","1971-06-15","TRUSTEES LOCAL UNION 16 ANNUITY PLAN",,,"650 NAAMANS ROAD, SUITE 303",,"CLAYMONT","DE","19703",,,,,,,"650 NAAMANS ROAD, SUITE 303",,"CLAYMONT","DE","19703",,,,,,,"526135151","3027986801","238900","TRUSTEES LOCAL UNION 16 ANNUITY PLAN",,"650 NAAMANS ROAD, SUITE 303",,"CLAYMONT","DE","19703",,,,,,,"526135151","3027986801",,,,"2011-10-06T08:49:56-0500","JOHN P CEFALU",,,,,1799,543,5,903,1451,,1451,1375,,69,"2E2G",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005135009P030142927457001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"NEUBERGER & BERMAN PARTNERS FUND - SA55NM","092",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-05T13:46:08-0500","JOHN G. PHARO","2011-10-05T13:46:08-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111005135019P030021016962001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"COLUMBIA INTERNATIONAL VALUE FUND-CLASS A - SA55NV","292",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-05T13:46:08-0500","JOHN G. PHARO","2011-10-05T13:46:08-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111005123549P030664496432001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"JANUS ADVISER FORTY FUND R SHARES - SA5F2","483",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-05T12:33:34-0500","JOHN G. PHARO","2011-10-05T12:33:34-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111005124942P040658951968001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"ELXSI MEDICAL PLAN","501","1991-11-01","ELXSI",,,"3600 RIO VISTA AVENUE SUITE A",,"ORLANDO","FL","32805",,,,,,,,,,,,,,,,,,"942691593","4078499800","335900","ELXSI",,"3600 RIO VISTA AVENUE SUITE A",,"ORLANDO","FL","32805",,,,,,,"942691593","4078499800",,,,"2011-10-05T12:48:59-0500","DAVID DOOLITTLE",,,,,188,159,,,159,,159,,,,,"4A4B4D4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005125111P040658955232001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CITADEL ENVIRONMENTAL SERVICES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2003-01-01","CITADEL ENVIRONMENTAL SERVICES,INC.",,,"1725 VICTORY BLVD",,"GLENDALE","CA","91201",,,,,,,,,,,,,,,,,,"954435612","8182462707","541600","CITADEL ENVIRONMENTAL SERVICES,INC.",,"1725 VICTORY BLVD",,"GLENDALE","CA","91201",,,,,,,"954435612","8182462707",,,,"2011-10-05T12:40:08-0500","LOREN WITKIN",,,,,49,36,0,12,48,0,48,48,2,,"2I2P3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005124025P040146401329001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"PET FOOD EXPERTS, INC. 401(K) AND PROFIT SHARING PLAN","002","1990-07-01","PET FOOD EXPERTS, INC.",,,"1 JOHN C DEAN MEMORIAL BLVD",,"CUMBERLAND","RI","02864",,,,,,,"1 JOHN C DEAN MEMORIAL BLVD",,"CUMBERLAND","RI","02864",,,,,,,"050444999","4013348380","424400","PET FOOD EXPERTS, INC.",,"1 JOHN C DEAN MEMORIAL BLVD",,"CUMBERLAND","RI","02864",,,,,,,"050444999","4013348380",,,,"2011-10-05T12:39:32-0500","KATHLEEN CAHILL",,,,,112,108,0,11,119,0,119,65,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005173353P030021040386001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GREENWALD LAW OFFICES, P.C. DEFINED BENEFIT PLAN","002","2003-01-01","GREENWALD LAW OFFICES, P.C.",,,"99 BROOKSIDE AVENUE",,"CHESTER","NY","10918",,,,,,,,,,,,,,,,,,"141594280","8454694900","541110","GREENWALD LAW OFFICES, P.C.",,"99 BROOKSIDE AVENUE",,"CHESTER","NY","10918",,,,,,,"141594280","8454694900",,,,"2011-10-05T13:30:51-0500","GARY GREENWALD, ESQ.",,,,,11,11,0,0,11,0,11,,,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005171032P040021910498001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN MACHINERY GROUP, INC. 401(K) PROFIT SHARING PLAN","001","1999-01-01","AMERICAN MACHINERY GROUP, INC.",,,"15701 CONTAINER LANE",,"HUNTINGTON BEACH","CA","92649",,,,,,,,,,,,,,,,,,"270264994","7148900618","333200","AMERICAN MACHINERY GROUP, INC.",,"15701 CONTAINER LANE",,"HUNTINGTON BEACH","CA","92649",,,,,,,"270264994","7148900618",,,,"2011-10-05T17:02:32-0500","KRISTI JENSEN",,,,,19,20,0,4,24,0,24,24,1,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005171049P040146561537001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FIRST ARKANSAS BANK & TRUST EMPLOYEES' SAVINGS PLAN","001","1974-06-01","FIRST ARKANSAS BANK & TRUST COMPANY",,,"TRUST DEPT. 600 WEST MAIN STREET",,"JACKSONVILLE","AR","72076",,,,,,,,,,,,,,,,,,"710231333","5019855388","522110","FIRST ARKANSAS BANK & TRUST COMPANY",,"TRUST DEPT. 600 WEST MAIN STREET",,"JACKSONVILLE","AR","72076",,,,,,,"710231333","5019855388",,,,"2011-10-05T17:03:49-0500","JOHN MCNEE","2011-10-05T17:03:49-0500","JOHN MCNEE",,,185,169,0,14,183,0,183,170,32,,"2E2F2G2J2K2S3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006094615P030021101874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OMNI GUIDE, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2001-01-01","OMNI GUIDE, INC.",,,"ONE KENDALL SQUARE","SUITE B 1301","CAMBRIDGE","MA","02139",,,,,,,,,,,,,,,,,,"043516477","6175518490","339110","OMNI GUIDE, INC.",,"ONE KENDALL SQUARE","SUITE B 1301","CAMBRIDGE","MA","02139",,,,,,,"043516477","6175518490",,,,"2011-10-06T09:44:48-0500","ALLISON SWARTZ",,,,,121,128,0,22,150,0,150,75,0,,"3D2E2J2K2F2G2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006101232P030667145712001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NATIONAL BOARD FOR PROFESSIONAL TEACHING STANDARDS DEFINED CONTRIBUTION PLAN","001","1988-09-01","NATIONAL BOARD FOR PROFESSIONAL TEACHING STANDARDS, INC.",,,"1525 WILSON BLVD, SUITE 500",,"ARLINGTON","VA","22209",,,,,,,,,,,,,,,,,,"521512323","7034652700","611000","NATIONAL BOARD FOR PROFESSIONAL TEACHING STANDARDS, INC.",,"1525 WILSON BLVD, SUITE 500",,"ARLINGTON","VA","22209",,,,,,,"521512323","7034652700",,,,"2011-10-06T10:12:08-0500","JOANNE MCKINNEY","2011-10-06T10:12:08-0500","NIESA BRATEMAN HALPERN",,,247,96,,150,246,0,246,246,0,,"2F2G2L2T",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111005103002P030142819809001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ASIAN NETWORK 401(K) PLAN","001","2004-01-01","ASIAN NETWORK PACIFIC HOME CARE",,,"212 9TH STREET","SUITE 205","OAKLAND","CA","94607",,,,,,,"212 9TH STREET","SUITE 205","OAKLAND","CA","94607",,,,,,,"943234443","5102681118","621399","ASIAN NETWORK PACIFIC HOME CARE",,"212 9TH STREET","SUITE 205","OAKLAND","CA","94607",,,,,,,"943234443","5102681118",,,,"2011-10-05T10:28:58-0500","IVY KWONG",,,,,44,45,0,3,48,0,48,42,1,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005204929P030143134721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRI ALPHA ENERGY, INC 401(K) PLAN","001","2006-03-15","TRI ALPHA ENERGY, INC",,,"19631 PAULING",,"FOOTHILL RANCH","CA","92610",,,,,,,"19631 PAULING",,"FOOTHILL RANCH","CA","92610",,,,,,,"460506342","9498302117","541700","TRI ALPHA ENERGY, INC",,"19631 PAULING",,"FOOTHILL RANCH","CA","92610",,,,,,,"460506342","9498302117",,,,"2011-10-04T20:16:08-0500","NANCY KELLY",,,,,82,64,0,7,71,0,71,71,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005210124P040146657921001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"SANGAMITRA KOTHAPA, M.D., INC. DEFINED BENEFIT PENSION PLAN","001","2007-01-01","SANGAMITRA KOTHAPA, M.D., INC.",,,"1226 N. BROADWAY",,"SANTA ANA","CA","92701",,,,,,,"1226 N. BROADWAY",,"SANTA ANA","CA","92701",,,,,,,"330784757","7148250940","621210","SANGAMITRA KOTHAPA, M.D., INC.",,"1226 N. BROADWAY",,"SANTA ANA","CA","92701",,,,,,,"330784757","7148250940",,,,"2011-10-05T21:01:14-0500","JOSHUA LEE",,,,,2,0,0,0,0,0,0,,0,,"3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006114155P030021114114001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"ENDURACARE THERAPY MANAGEMENT, INC. 401(K) PLAN","001","2001-03-15","ENDURACARE THERAPY MANAGEMENT, INC",,,"2500 N. BUFFALO DRIVE, SUITE 210",,"LAS VEGAS","NV","89128",,,,,,,,,,,,,,,,,,"030486133","7022482840","621340","ENDURACARE THERAPY MANAGEMENT, INC",,"2500 N. BUFFALO DRIVE, SUITE 210",,"LAS VEGAS","NV","89128",,,,,,,"030486133","7022482840",,,,"2011-10-06T11:41:01-0500","MARY ANN BLANCHARD",,,,,2731,2286,0,728,3014,0,3014,2316,166,,"2E2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006104750P030143463585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DIRECTIONS CREDIT UNION 401(K) PLAN AND TRUST","001","1989-01-01","DIRECTIONS CREDIT UNION",,,"5121 WHITEFORD RD",,"SYLVANIA","OH","43560",,,,,,,,,,,,,,,,,,"344475249","4198419838","522130","DIRECTIONS CREDIT UNION",,"5121 WHITEFORD RD",,"SYLVANIA","OH","43560",,,,,,,"344475249","4198419838",,,,"2011-10-06T10:46:44-0500","KIM DUBENDORFER",,,,,274,220,0,18,238,0,238,238,13,,"2E2F2G2J2K2S2T3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005135311P040021891570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RACE ENGINEERING, INC., PROFIT SHARING PLAN","001","1989-06-01","RACE ENGINEERING, INC.",,,"2602 PARK STREET",,"LAKE WORTH","FL","334606142",,,,,,,"RACE ENGINEERING, INC.","2602 PARK STREET","LAKE WORTH","FL","334606142",,,,,,,"592312645","5615335500","541330","RACE ENGINEERING, INC.",,"2602 PARK STREET",,"LAKE WORTH","FL","334606142",,,,,,,"592312645","5615335500",,,,"2011-10-05T13:53:02-0500","ROBERT F. KOCH","2011-10-05T13:53:02-0500","ROBERT F. KOCH",,,7,7,0,0,7,0,7,7,0,,"2A2E2F2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005131716P030021014770001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MAVENIR SYSTEMS, INC. 401K PLAN","001","2006-01-01","MAVENIR SYSTEMS, INC.",,,"1651 N. GLENVILLE, SUITE 216",,"RICHARDSON","TX","750811956",,,,,,,,,,,,,,,,,,"611489105","4699164393","541512","MAVENIR SYSTEMS, INC.",,"1651 N. GLENVILLE, SUITE 216",,"RICHARDSON","TX","750811956",,,,,,,"611489105","4699164393",,,,"2011-10-05T13:14:14-0500","TERRY HUNGLE",,,,,40,44,0,3,47,0,47,26,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005131800P040146420545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NAHRO DEFERRED COMPENSATION PLAN","002","1983-01-01","NATIONAL ASSOCIATION OF HOUSING & REDEVELOPMENT OFFICIALS",,,"630 EYE ST NW",,"WASHINGTON","DC","200013736",,,,,,,,,,,,,,,,,,"362167803","2022893500","813000","NATIONAL ASSOCIATION OF HOUSING & REDEVELOPMENT OFFICIALS",,"630 EYE ST NW",,"WASHINGTON","DC","200013736",,,,,,,"362167803","2022893500",,,,"2011-10-05T13:16:59-0500","REGINALD HART",,,,,49,39,0,8,47,0,47,47,0,,"2J2E2F2K2G2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005190048P040146602801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HAUSER & ASSOCIATES, P.S. 401(K) RETIREMENT SAVINGS PLAN","001","2000-01-01","HAUSER LONG P.S.",,,"10940 NE 33RD PLACE, SUITE 100",,"BELLEVUE","WA","98004",,,,,,,,,,,,,,,,,,"912006237","4258891778","541211","HAUSER LONG P.S.",,"10940 NE 33RD PLACE, SUITE 100",,"BELLEVUE","WA","98004",,,,,,,"912006237","4258891778",,,,"2011-10-05T19:00:09-0500","DOUGLAS HAUSER",,,,,16,8,0,9,17,0,17,17,0,,"2E2F2J2K3D2A",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006092942P040146962657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTH JERSEY LEGAL SERVICES, INC. 401K PLAN","001","1989-01-01","SOUTH JERSEY LEGAL SERVICES",,,"745 MARKET ST",,"CAMDEN","NJ","081021117",,,,,,,,,,,,,,,,,,"221843254","8569642010","624100","SOUTH JERSEY LEGAL SERVICES",,"745 MARKET ST",,"CAMDEN","NJ","081021117",,,,,,,"221843254","8569642010",,,,"2011-10-06T09:27:27-0500","DOUGLAS GERSHUNY",,,,,111,69,0,37,106,0,106,106,3,,"2E2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006092520P030143413537001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"LATITUDE GROUP, INC. PROFIT SHARING PLAN","001","2005-10-31","LATITUDE GROUP, INC.",,,"16800 MACNAUGHTON COURT",,"PURCELLVILLE","VA","20132",,,,,,,,,,,,,,,,,,"203778916","7035445602","522300","LATITUDE GROUP, INC.",,"16800 MACNAUGHTON COURT",,"PURCELLVILLE","VA","20132",,,,,,,"203778916","7035445602",,,,"2011-10-06T09:22:26-0500","MICHAEL DOWLING","2011-10-06T09:22:26-0500","MICHAEL DOWLING",,,4,0,0,0,0,0,0,0,0,,"2A2E2F2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006113236P030143487329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE KINSMAN GARDEN COMPANY, INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","1998-01-01","THE KINSMAN GARDEN COMPANY, INC",,,"6805 EASTON ROAD","PO BOX 428","PIPERSVILLE","PA","189479717",,,,,,,,,,,,,,,,,,"232183322","8007335613","454110","THE KINSMAN GARDEN COMPANY, INC",,"6805 EASTON ROAD","PO BOX 428","PIPERSVILLE","PA","189479717",,,,,,,"232183322","8007335613",,,,"2011-10-06T11:32:30-0500","JOANNE BOHRER",,,,,27,17,,7,24,0,24,24,1,,"2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006113349P030143487761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEABODY HOLDING COMPANY, LLC AND AFFILIATES WELFARE BENEFIT PLAN (FOR EMPLOYEES COVERED UNDER A COLLECTIVE BARGAINING AGREEMENT)","502","2003-01-01","PEABODY HOLDING COMPANY, LLC",,"LINDA ALBERT","701 MARKET STREET",,"ST. LOUIS","MO","631011876",,,,,,,,,,,,,,,,,,"132871045","3143423400","212110","PEABODY HOLDING COMPANY, LLC","LINDA ALBERT","701 MARKET STREET",,"ST. LOUIS","MO","631011876",,,,,,,"132871045","3143423400",,,,"2011-10-06T11:33:21-0500","LINDA H. ALBERT","2011-10-06T11:33:21-0500","LINDA H. ALBERT",,,751,322,425,0,747,,,,,,,"4A4B4D4E4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006114532P030667372736001","2011-01-01","2011-09-30","1",,"0","0","1","1","1","0","0","0","0",,"SOUTHWEST REG COUNCIL OF CARPENTERS/NM EMPLOYEE HEALTH BENEFIT SUPPLEMENTAL TRUST FUND","501","1921-01-01","BOARD OF TRUSTEES SW REG COUNCIL OF CARP/NM SUPPLEMENTAL",,,"1200 SAN PEDRO NE",,"ALBUQUERQUE","NM","87110",,,,,,,"1200 SAN PEDRO NE",,"ALBUQUERQUE","NM","87110",,,,,,,"856105599","5052621921","236200","BOARD OF TRUSTEES SW REG COUNCIL OF CARP/NM SUPPLEMENTAL",,"1200 SAN PEDRO NE",,"ALBUQUERQUE","NM","87110",,,,,,,"856105599","5052621921",,,,"2011-10-05T16:52:10-0500","DAVID BARBER","2011-10-06T10:58:39-0500","TONY THOMAS",,,501,0,,,0,,0,0,,,,"4Q",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006115502P040147047873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RICHARD G. BENNETT, M.D. DEFINED BENEFIT PENSION PLAN","001","1994-01-01","RICHARD G. BENNETT, M.D.",,,"1301 20TH STREET, SUITE 570",,"SANTA MONICA","CA","904042118",,,,,,,,,,,,,,,,,,"954166585","3103150171","621111","RICHARD G. BENNETT, M.D.",,"1301 20TH STREET, SUITE 570",,"SANTA MONICA","CA","904042118",,,,,,,"954166585","3103150171",,,,"2011-10-06T11:54:22-0500","RICHARD G. BENNETT",,,,,11,9,0,2,11,0,11,,0,,"1A1I3B3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006104826P030143463921001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TENNESSEE CANCER SPECIALISTS, PLLC 401(K) RETIREMENT PLAN","001","2004-07-01","TENNESSEE CANCER SPECIALISTS, PLLC",,,"900 HILL AVENUE, SUITE 230",,"KNOXVILLE","TN","37915",,,,,,,,,,,,,,,,,,"200677400","8656325122","621111","TENNESSEE CANCER SPECIALISTS, PLLC",,"900 HILL AVENUE, SUITE 230",,"KNOXVILLE","TN","37915",,,,,,,"200677400","8656325122",,,,"2011-10-06T10:47:26-0500","RONDA OELLIEN",,,,,160,124,7,17,148,0,148,135,0,,"2E2G2J2K2R2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005130030P040021886802001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"SOUTHEASTERN DATA COOPERATIVE SAVINGS PLAN","002","1984-04-01","SOUTHEASTERN DATA COOPERATIVE, INC.",,,"100 ASHFORD CENTER N SUITE 500",,"ATLANTA","GA","30338",,,,,,,,,,,,,,,,,,"581257418","7704148400","541512","SOUTHEASTERN DATA COOPERATIVE, INC.",,"100 ASHFORD CENTER N SUITE 500",,"ATLANTA","GA","30338",,,,,,,"581257418","7704148400",,,,"2011-10-05T12:59:21-0500","JAMES HAMALA",,,,,245,210,0,38,248,0,248,248,0,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005123643P030664498624001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"OLD MUTUAL GROWTH FUND CLASS Z SHARES - SA55FU","073",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-05T12:33:35-0500","JOHN G. PHARO","2011-10-05T12:33:35-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111005172954P030143054577007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MADISON RIDGELAND ACADEMY 403(B) TDA PLAN","002","1992-11-01","MADISON RIDGELAND ACADEMY",,"CHERYL HENDRIX","7601 OLD CANTON ROAD",,"MADISON","MS","39110",,,,,,,,,,,,,,,,,,"640478043","6018564455","611000","MADISON RIDGELAND ACADEMY",,"7601 OLD CANTON ROAD",,"MADISON","MS","39110",,,,,,,"640478043","6018564455",,,,"2011-10-05T11:45:49-0500","CHERYL HENDRIX",,,,,146,137,0,3,140,0,140,43,0,,"2L",,"1",,"1",,"1",,"1",,,,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006084507P040661296512001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WELFARE BENEFIT PLAN","501","1975-01-01","VORYS, SATER, SEYMOUR & PEASE, LLP ANTHONY C. CIRIACO, CO-TRUSTEE",,,"52 EAST GAY STREET, P.O. BOX 1008",,"COLUMBUS","OH","432161008",,,,,,,,,,,,,,,,,,"314333125","6144646400","541110","VORYS, SATER, SEYMOUR & PEASE, LLP","ANTHONY C. CIRIACO, CO-TRUSTEE","52 E. GAY STREET",,"COLUMBUS","OH","432153108",,,,,,,"314333125","6144648234",,,,"2011-10-06T08:29:06-0500","ANTHONY C. CIRIACO, PARTNER","2011-10-06T08:30:36-0500","ANTHONY C. CIRIACO, TRUSTEE",,,724,729,8,2,739,,,,,,,"4B4H4Q","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006113026P040147032193004","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"M.E. OSBORNE PROPERTIES EMPLOYEES PROFIT SHARING PLAN & TRUST","001","1980-07-01","M.E. OSBORNE PROPERTIES CORP.",,,"7670 TYLER BLVD",,"MENTOR","OH","44060",,,,,,,,,,,,,,,,,,"341038617","4409512977","531390","M.E. OSBORNE PROPERTIES CORP.",,"7670 TYLER BLVD",,"MENTOR","OH","44060",,,,,,,"341038617","4409512977",,,,"2011-10-03T13:52:57-0500","MICHAEL E. OSBORNE","2011-10-03T13:52:55-0500","MICHAEL E. OSBORNE",,,4,4,0,0,4,0,4,4,,,"2E",,"1",,,,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006100836P040146985201001","2010-01-01","2010-12-31","4","P",,,,,,,,,,,"PRINCIPAL LIFETIME 2045 SEPARATE ACCOUNT","113",,"PRINCIPAL LIFE INSURANCE COMPANY",,,"711 HIGH STREET",,"DES MOINES","IA","503920001000",,,,,,,,,,,,,,,,,,"420127290","5152480029",,"PRINCIPAL LIFE INSURANCE COMPANY",,"711 HIGH STREET",,"DES MOINES","IA","503920001000",,,,,,,"420127290","5152480029",,,,,,,,"2011-10-06T10:08:34-0500","AMY MARY ANDERSON",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-06",,"Filed with authorized/valid electronic signature", "20111005143852P030142961649001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"PREMIER MEDICAL ASSOCIATES, P.C. 401(K) PROFIT SHARING PLAN","002","1997-01-01","PREMIER MEDICAL ASSOCIATES, P.C.",,,"ONE MONROEVILLE CENTER","3824 NORTHERN PIKE, SUITE 200","MONROEVILLE","PA","15146",,,,,,,"ONE MONROEVILLE CENTER","3824 NORTHERN PIKE, SUITE 200","MONROEVILLE","PA","15146",,,,,,,"251742869","4124570060","621111","PREMIER MEDICAL ASSOCIATES, P.C.",,"ONE MONROEVILLE CENTER","3824 NORTHERN PIKE, SUITE 200","MONROEVILLE","PA","15146",,,,,,,"251742869","4124570060",,,,"2011-10-05T14:37:00-0500","JAMES SWINK",,,,,349,250,0,71,321,0,321,283,0,,"2A2E2F2G2J2K2R2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005132005P030142911889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEORGE HASSLER FUNERAL HOME DEFINED BENEFIT PLAN","001","2000-01-01","GEORGE HASSLER FUNERAL HOME",,,"980 BENNETTS MILL ROAD",,"JACKSON","NJ","08527",,,,,,,"980 BENNETTS MILL ROAD",,"JACKSON","NJ","08527",,,,,,,"223209455","7323646808","812210","GEORGE HASSLER FUNERAL HOME",,"980 BENNETTS MILL ROAD",,"JACKSON","NJ","08527",,,,,,,"223209455","7323646808",,,,"2011-10-05T13:20:00-0500","GEORGE HASSLER","2011-10-05T13:20:00-0500","GEORGE HASSLER",,,6,5,0,1,6,0,6,,0,,"1A1G3B3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005154223P030142998241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MSE POWER SYSTEMS, INC 401(K) PROFIT SHARING PLAN & TRUST","001","1997-01-01","MSE POWER SYSTEMS, INC.",,,"403 NEW KARNER ROAD",,"ALBANY","NY","12205",,,,,,,,,,,,,,,,,,"141799233","5184527718","221100","MSE POWER SYSTEMS, INC.",,"403 NEW KARNER ROAD",,"ALBANY","NY","12205",,,,,,,"141799233","5184527718",,,,"2011-10-05T15:42:13-0500","DAVID BROWNELL",,,,,136,167,0,43,210,1,211,168,6,,"2E2F2G2J2K3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005155820P040146521489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACE HARDWARE CORPORATION 401(K) SAVINGS AND RETIREMENT PLAN","001","1953-01-01","ACE HARDWARE CORPORATION",,,"2200 KESINGTON CT",,"OAK BROOK","IL","60523",,,,,,,"2200 KESINGTON CT",,"OAK BROOK","IL","60523",,,,,,,"360700810","6309907118","423700","ACE HARDWARE CORPORATION",,"2200 KESINGTON CT",,"OAK BROOK","IL","60523",,,,,,,"360700810","6309907118",,,,"2011-10-05T09:12:16-0500","LUCY LESNICKI","2011-10-05T15:23:37-0500","JIMMY ALEXANDER",,,5110,4085,12,907,5004,14,5018,4887,170,,"2E2H2J2K2S2T2F",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005155833P040146521617001","2007-01-01","2007-12-31","2",,,"0",,,,"0","0","1","0",,"COASTSIDE PHYSICIANS MED. GROUP PROFIT SHARING PLAN","001","2006-01-01","COASTSIDE PHYSICIANS MED GROUP",,,"ASSOCIATION SERVICES","PO BOX 4875","SYRACUSE","NY","13221",,,,,,,,,,,,,,,,,,"943405454","6507127330","621111","SAME",,"ASSOCIATION SERVICES","PO BOX 4875","SYRACUSE","NY","13221",,,,,,,"943405454","6507127330",,,,"2011-10-05T15:58:31-0500","BENJAMIN BOBLETT","2011-10-05T15:58:31-0500","BENJAMIN BOBLETT",,,6,1,0,5,6,0,6,6,0,,"3D2E2F2G2J2K2T",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006085539P030143396545001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","1","0","0","0",,"GROUP HEALTH PLAN FOR EMPLOYEES OF GEORGIAS OWN CREDIT UNION","501","1980-04-01","GEORGIAS OWN CREDIT UNION",,,"PO BOX 105025",,"ATLANTA","GA","303485205",,,,,,,"1155 PEACHTREE ST NE STE 400",,"ATLANTA","GA","303485205",,,,,,,"580147128","4048740777","522130","GEORGIAS OWN CREDIT UNION",,"PO BOX 105025",,"ATLANTA","GA","303485205",,,,,,,"580147128","4048740777",,,,"2011-10-06T08:55:14-0500","CINDY BOYLES",,,,,307,343,,,343,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006091626P040146957745001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"THE PLAIN DEALER PUBLISHING CO. 401(K) BARGAINING UNIT SAVINGS PLAN","011","1997-01-01","PLAIN DEALER PUBLISHING CO.",,,"1801 SUPERIOR AVENUE",,"CLEVELAND","OH","44114",,,,,,,,,,,,,,,,,,"340228575","2169994365","511110","PLAIN DEALER PUBLISHING CO.",,"1801 SUPERIOR AVENUE",,"CLEVELAND","OH","44114",,,,,,,"340228575","2169994365",,,,"2011-10-06T09:15:45-0500","ALYSON JOBLING",,,,,628,566,0,78,644,1,645,390,0,,"2F2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006105552P040021978370001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NATIONAL GLASS WORKS, INC. 401(K) PROFIT SHARING PLAN","001","1961-01-01","NATIONAL GLASS WORKS, INC.",,,"372 PARK AVE.",,"WORCESTER","MA","01610",,,,,,,"372 PARK AVE.",,"WORCESTER","MA","01610",,,,,,,"042151078","5087537209","811120","NATIONAL GLASS WORKS, INC.",,"372 PARK AVE.",,"WORCESTER","MA","01610",,,,,,,"042151078","5087537209",,,,"2011-10-06T10:41:14-0500","ALAN P. PANDIANI",,,,,32,30,0,0,30,0,30,23,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005133459P030664642432001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"REGIONAL ALLERGY ASTHMA & IMMUNOLOGY CTR, PC PROFIT SHARING PLAN","001","1992-01-01","REGIONAL ALLERGY ASTHMA & IMMUNOLOGY CTR, PC",,,"2995 FORT HENRY DRIVE, SUITE 100",,"KINGSPORT","TN","37664",,,,,,,,,,,,,,,,,,"621482794","4232466445","621111","REGIONAL ALLERGY ASTHMA & IMMUNOLOGY CTR, PC",,"2995 FORT HENRY DRIVE, SUITE 100",,"KINGSPORT","TN","37664",,,,,,,"621482794","4232466445",,,,"2011-10-05T12:19:37-0500","W. JAN KAZMIER",,,,,11,11,0,0,11,0,11,11,0,,"2E2G3D2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005155846P040146521825001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"R.A. KERLEY INK ENGINEERS, INC. EMPLOYEES PENSION PLAN","001","1967-06-30","R.A. KERLEY INK ENGINEERS, INC.",,,"PO BOX 6009",,"BROADVIEW","IL","60155",,,,,,,"2700 S. 12TH AVENUE",,"BROADVIEW","IL","60155",,,,,,,"362094259","7083441295","323100","R.A. KERLEY INK ENGINEERS, INC.",,"PO BOX 6009",,"BROADVIEW","IL","60155",,,,,,,"362094259","7083441295",,,,"2011-10-05T15:43:32-0500","JOHN WHALEN",,,,,22,19,0,4,23,0,23,,0,,"1A1G",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005183427P030143076833002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"MUSCULAR DYSTROPHY ASSOCIATION INC","501","1983-09-01","MUSCULAR DYSTROPHY ASSOCIATION, INC",,"STEPHEN P EVANS, CPA","3300 EAST SUNRISE DRIVE",,"TUCSON","AZ","857183299",,,,,,,,,,,,,,,,,,"131665552","5205292000","813000","MUSCULAR DYSTROPHY ASSOCIATION INC","STEPHEN P. EVANS, CPA","3300 EAST SUNRISE DRIVE",,"TUCSON","AZ","857183299",,,,,,,"131665552","5205292000",,,,"2011-10-05T17:47:48-0500","STEPHEN P EVANS CPA","2011-10-05T18:27:26-0500","JODI WALTERS",,,1377,1146,172,,1318,,1318,,,,,"4L4H4F4D4B4A","1",,,,"1",,,,,,,,,"1","8",,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005190649P030665404480001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"MANNING & NAPIER RTIRMNT TRGT 2030 - SAMN4","590",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-05T19:01:52-0500","JOHN G. PHARO","2011-10-05T19:01:52-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111006074439P030143350593004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DECATUR COUNTY MEMORIAL HOSPITAL BENEFIT PLAN","501","2007-01-01","DECATUR COUNTY MEMORIAL HOSPITAL",,,"720 N LINCOLN STREET",,"GREENSBURG","IN","47240",,,,,,,,,,,,,,,,,,"351141109","8126631137","622000","DECATUR COUNTY MEMORIAL HOSPITAL",,"720 N LINCOLN STREET",,"GREENSBURG","IN","47240",,,,,,,"351141109","8126631137",,,,"2011-10-05T11:09:18-0500","AMY WICKENS",,,,,361,358,4,,362,,,,,,,"4A4B4D4E4H4I","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006081137P030021093554001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MANAGEMENT TAX SAVINGS INVESTMENT PLAN FOR KNIGHTS OF COLUMBUS","004","1978-01-01","KNIGHTS OF COLUMBUS SUPREME COUNCIL",,,"ONE COLUMBUS PLAZA",,"NEW HAVEN","CT","065103326",,,,,,,,,,,,,,,,,,"060416470","2037722130","524140","KNIGHTS OF COLUMBUS SUPREME COUNCIL",,"ONE COLUMBUS PLAZA",,"NEW HAVEN","CT","065103326",,,,,,,"060416470","2037722130",,,,"2011-10-06T08:10:39-0500","EDWARD MULLEN","2011-10-06T08:10:39-0500","EDWARD MULLEN",,,512,468,22,69,559,2,561,542,6,,"2E2F2G2J2K2T2S3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006080322P040146919329001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"AGL RESOURCES, INC. WELFARE BENEFIT PLAN","501","1957-06-01","AGL RESOURCES, INC.",,,"10 PEACHTREE PLACE NE, SUITE 1000",,"ATLANTA","GA","30309",,,,,,,,,,,,,,,,,,"582210952","4045844266","221210","AGL RESOURCES, INC.",,"10 PEACHTREE PLACE, NE","SUITE 1000","ATLANTA","GA","30309",,,,,,,"582210952","4045844266",,,,"2011-10-06T08:03:12-0500","CHASITY MILLER",,,,,6357,1909,254,0,2163,,,,,,,"4A4D4E4F4Q4U","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006103820P030143459009001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"BALANCED ALLOCATION ACCOUNT X","032",,"SENTRY LIFE INSURANCE COMPANY OF NEW YORK",,,"P O BOX 4944",,"SYRACUSE","NY","132214944",,,,,,,"220 SALINA MEADOWS PKWY SUITE 225",,"SYRACUSE","NY","132214944",,,,,,,"160919109","3154536301",,"SENTRY LIFE INSURANCE COMPANY OF NEW YORK",,"P O BOX 4944",,"SYRACUSE","NY","132214944",,,,,,,"160919109","3154536301",,,,"2011-10-06T10:37:54-0500","KRISTIE GAGAS",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005151344P030142981105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHONETICS INC 401(K) PROFIT SHARING PLAN & TRUST","001","1985-06-01","PHONETICS",,,"901 TRYENS RD",,"ASTON","PA","19014",,,,,,,,,,,,,,,,,,"870361597","6105582700","561790","PHONETICS",,"901 TRYENS RD",,"ASTON","PA","19014",,,,,,,"870361597","6105582700",,,,"2011-10-05T03:13:43-0500","PHONETICS",,,,,47,38,0,0,38,0,38,23,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","1","1","0","0",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005133537P030021016226001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACME ENVIRONMENTAL, INC. PROFIT SHARING PLAN & TRUST","001","2005-09-22","ACME ENVIRONMENTAL, INC.",,,"2666 N. DARLINGTON",,"TULSA","OK","74115",,,,,,,,,,,,,,,,,,"203526713","9185132182","562000","ACME ENVIRONMENTAL, INC.",,"2666 N. DARLINGTON",,"TULSA","OK","74115",,,,,,,"203526713","9185132182",,,,"2011-10-05T13:32:17-0500","ANDREW ALTENDORF",,,,,12,12,0,0,12,0,12,12,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005190850P030143097601001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"REISS, KANG, BURKS, JAYANETTI & PEREDA M.D., P.A. PENSION PLAN","004","2010-01-01","REISS, KANG, BURKS, JAYANETTI & PEREDA M.D., P.A.",,,"6200 SUNSET DRIVE, SUITE 505",,"SOUTH MIAMI","FL","33143",,,,,,,,,,,,,,,,,,"591935045","3056681660","621111","REISS, KANG, BURKS, JAYANETTI & PEREDA M.D., P.A.",,"6200 SUNSET DRIVE, SUITE 505",,"SOUTH MIAMI","FL","33143",,,,,,,"591935045","3056681660",,,,"2011-10-05T19:07:45-0500","IAN REISS",,,,,18,16,0,0,16,0,16,,2,,"1B",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006083455P030143382481001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MEMO-OMEGA MANUFACTURING, INC. 401(K) PLAN","001","1992-10-01","MEMO-OMEGA MANUFACTURING, INC.",,,"722 S KIMBALL AVE",,"SOUTHLAKE","TX","76092",,,,,,,"722 S KIMBALL AVE",,"SOUTHLAKE","TX","76092",,,,,,,"752293491","8174884444","423100","MEMO-OMEGA MANUFACTURING, INC.",,"722 S KIMBALL AVE",,"SOUTHLAKE","TX","76092",,,,,,,"752293491","8174884444",,,,"2011-10-06T08:34:31-0500","AMR ELBORAI",,,,,18,12,0,0,12,0,12,12,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006094942P030143432385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","SEE ATTACHMENT RE EIN ON FORM 5558","UNIVERSAL PRINTING CO LLC 401K PLAN","001","2007-01-01","UNIVERSAL PRINTING CO LLC",,,"1205 ONEILL HWY",,"DUNMORE","PA","185121723",,,,,,,,,,,,,,,,,,"300609958","5703421243","323100","UNIVERSAL PRINTING CO LLC",,"1205 ONEILL HWY",,"DUNMORE","PA","185121723",,,,,,,"300609958","5703421243","UNIVERSAL PRINTING CO LLC","232809570","001","2011-10-06T09:48:23-0500","WILLIAM MCGRATH","2011-10-06T09:48:23-0500","WILLIAM MCGRATH",,,111,120,0,3,123,0,123,57,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006112110P030021111442001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUTCHINSON FINANCIAL, INC. 401(K) PLAN","001","2001-01-01","HUTCHINSON FINANCIAL, INC.",,,"12511 CANTRELL ROAD",,"LITTLE ROC","AR","72222",,,,,,,,,,,,,,,,,,"710666855","5012239190","523900","HUTCHINSON FINANCIAL, INC.",,"12511 CANTRELL ROAD",,"LITTLE ROC","AR","72222",,,,,,,"710666855","5012239190",,,,"2011-10-06T11:21:09-0500","ERIC HUTCHINSON","2011-10-06T11:21:09-0500","ERIC HUTCHINSON",,,9,7,0,2,9,,9,9,,,"2A2E2J2H3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005152810P030142989505001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"REDWOOD TRUST, INC. 401(K) PROFIT SHARING PLAN","001","1995-01-01","REDWOOD TRUST, INC.",,,"ONE BELVEDERE PLACE SUITE 300",,"MILL VALLEY","CA","94941",,,,,,,,,,,,,,,,,,"680329422","4153897373","525990","REDWOOD TRUST, INC.",,"ONE BELVEDERE PLACE SUITE 300",,"MILL VALLEY","CA","94941",,,,,,,"680329422","4153897373",,,,"2011-10-05T15:27:10-0500","MEI CHAN",,,,,112,66,2,37,105,0,105,99,7,,"3D2E2J2K2F2G2T2S",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005123049P040146396801001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GARALD E. PRICE, CPA, P.A DEFINED BENEFIT PENSION PLAN","006","1995-01-01","GARALD E. PRICE, CPA, P.A",,,"2058 OVERLAND AVENUE",,"BURLEY","ID","83318",,,,,,,,,,,,,,,,,,"820363932","2088789000","541211","GARALD E. PRICE, CPA, P.A",,"2058 OVERLAND AVENUE",,"BURLEY","ID","83318",,,,,,,"820363932","2088789000",,,,"2011-10-05T11:49:01-0500","GARALD PRICE","2011-10-05T11:49:01-0500","GARALD PRICE",,,10,5,0,4,9,0,9,,2,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005123202P030142888017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAN FRANCISCO PLUMBING COMPANY PROFIT SHARING PLAN","001","2000-01-01","SAN FRANCISCO PLUMBING COMPANY",,,"200 VALLEY DRIVE, SUITE #3",,"BRISBANE","CA","94005",,,,,,,,,,,,,,,,,,"943331537","4156642345","238220","SAN FRANCISCO PLUMBING COMPANY",,"200 VALLEY DRIVE, SUITE #3",,"BRISBANE","CA","94005",,,,,,,"943331537","4156642345",,,,"2011-10-05T12:01:06-0500","SEAN HOGAN",,,,,10,8,0,1,9,0,9,9,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005132841P030142917473001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHERN ILLINOIS SURGICAL CONSULTANTS, S.C. 401K PROFIT SHARING PLAN AND TRUST","002","1990-04-01","SOUTHERN ILLINOIS SURGICAL CONSULTANTS, S.C.",,,"2227 VADALABENE DR, STE. 300",,"MARYVILLE","IL","62062",,,,,,,,,,,,,,,,,,"371138753","6182887485","621111","SOUTHERN ILLINOIS SURGICAL CONSULTANTS,",,"2227 VADABALENE DRIVE, SUITE 300",,"MARYVILLE","IL","62062",,,,,,,"371138753","6182887485",,,,"2011-10-05T13:28:41-0500","MORRIS KUGLER",,,,,4,1,1,0,2,0,2,1,0,,"2E2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005171526P040047987863001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"POLYCOMP ADMINISTRATIVE SERVICES, INC CAFETERIA PL","501","1987-01-01","POLYCOMP ADMINISTRATIVE SERVICES, I",,,"3000 LAVA RIDGE CT.",,"ROSEVILLE","CA","95661",,,,,,,"3000 LAVA RIDGE CT.",,"ROSEVILLE","CA","95661",,,,,,,"952889854","9167733780","525990","POLYCOMP ADMINISTRATIVE SERVICES, I",,"3000 LAVA RIDGE CT.",,"ROSEVILLE","CA","95661",,,,,,,"952889854","9167733780",,,,"2011-10-05T17:08:03-0500","DONNA HARMON","2011-10-05T17:08:03-0500","DONNA HARMON",,,113,113,,,113,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006091842P040146958673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NATIONAL FOOD ENTERPRISES, INC. TAX DEFERRED SAVINGS PLAN AND TRUST","001","1989-01-01","NATIONAL FOOD ENTERPRISES, INC. T/A DESIGN CUISINE",,,"2659 S. SHIRLINGTON ROAD",,"ARLINGTON","VA","22206",,,,,,,,,,,,,,,,,,"621182244","7039799400","722300","NATIONAL FOOD ENTERPRISES, INC. T/A DESIGN CUISINE",,"2659 S. SHIRLINGTON ROAD",,"ARLINGTON","VA","22206",,,,,,,"621182244","7039799400",,,,"2011-10-06T09:16:28-0500","STAVROS VELETSIS",,,,,261,273,0,29,302,0,302,142,1,,"2E2H2J2K3D2R2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006104433P030143462129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FYFFE PHARMACY LLC SAFE HARBOR 401(K) PROFIT SHARING PLAN","001","2007-01-01","FYFFE PHARMACY LLC",,,"P.O. BOX 67",,"FYFFE","AL","359710067",,,,,,,"44 BLACKWELL STREET",,"FYFFE","AL","359713254",,,,,,,"208046135","2566233939","446110","FYFFE PHARMACY LLC",,"P.O. BOX 67",,"FYFFE","AL","359710067",,,,,,,"208046135","2566233939",,,,"2011-10-06T10:44:03-0500","BRANDON RAINS",,,,,7,6,0,1,7,0,7,5,0,,"2E2G2J2K2R3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006104440P030143462145001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"MID CAP GROWTH ACCOUNT N","014",,"SENTRY LIFE INSURANCE COMPANY OF NEW YORK",,,"PO BOX 4944",,"SYRACUSE","NY","13221",,,,,,,"220 SALINA MEADOWS PKWY SUITE 255",,"SYRACUSE","NY","13221",,,,,,,"160919109","3154536301",,"SENTRY LIFE INSURANCE COMPANY OF NEW YORK",,"PO BOX 4944",,"SYRACUSE","NY","13221",,,,,,,"160919109","3154536301",,,,"2011-10-06T10:44:10-0500","KRISTIE GAGAS",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005123236P030142888353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AUTUMN HOUSE 401(K) PLAN","001","2000-01-01","AUTUMN HOUSE, INC.",,,"1206 PREMIER RD",,"GRANITE FALLS","NC","28630",,,,,,,,,,,,,,,,,,"561073945","8287281121","423300","AUTUMN HOUSE, INC.",,"1206 PREMIER RD",,"GRANITE FALLS","NC","28630",,,,,,,"561073945","8287281121",,,,"2011-10-05T12:31:49-0500","RANDY HENDRIX",,,,,78,112,0,0,112,0,112,19,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005123825P030142891985001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"HENSSLER EQUITY FUND - SA55HE","313",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-05T12:33:36-0500","JOHN G. PHARO","2011-10-05T12:33:36-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111005160924P040146529457001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ABBEY SPANIER RODD & ABRAMS, LLP PROFIT SHARING PLAN","001","2003-01-01","ABBEY SPANIER RODD & ABRAMS, L",,,"212 EAST 39TH STREET",,"NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"133096115","2128893700","541110","ABBEY SPANIER RODD & ABRAMS, L",,"212 EAST 39TH STREET",,"NEW YORK","NY","10016",,,,,,,"133096115","2128893700",,,,"2011-10-05T16:09:14-0500","STEPHANIE M. MASSIE",,,,,32,30,0,2,32,0,32,25,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005161951P040146535233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAXICOLOGY, INC. 401(K) PLAN","001","2007-12-28","TAXICOLOGY, INC.",,,"524 WHEDBEE STREET",,"FORT COLLINS","CO","80524",,,,,,,,,,,,,,,,,,"261702600","9704200948","541213","TAXICOLOGY, INC.",,"524 WHEDBEE STREET",,"FORT COLLINS","CO","80524",,,,,,,"261702600","9704200948",,,,"2011-10-05T16:19:18-0500","ERIK MARTINSON","2011-10-05T16:19:18-0500","ERIK MARTINSON",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005174943P040146576865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OPENLANE 401(K) PROFIT SHARING PLAN AND TRUST","001","1999-01-01","OPENLANE",,,"2200 SUITE 100",,"MENLO PARK","CA","94025",,,,,,,,,,,,,,,,,,"860879572","6504124013","423990","OPENLANE",,"2200 SUITE 100",,"MENLO PARK","CA","94025",,,,,,,"860879572","6504124013",,,,"2011-10-05T17:49:25-0500","SCOTT CROSS",,,,,267,256,0,62,318,0,318,267,23,,"2E2F2G2J2K2S2T3D3H",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006093316P030667055376001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WAYNE RICHARD & HURWITZ LLP PROFIT SHARING PLAN","001","1993-01-01","WAYNE RICHARD & HURWITZ LLP",,,"ONE BOSTON PLACE",,"BOSTON","MA","02108",,,,,,,,,,,,,,,,,,"043057724","6177207870","541110","WAYNE RICHARD & HURWITZ LLP",,"ONE BOSTON PLACE",,"BOSTON","MA","02108",,,,,,,"043057724","6177207870",,,,"2011-10-06T09:32:26-0500","EUGENE RICHARD",,,,,5,12,0,0,12,0,12,12,0,,"2T3D2E2G2J2A2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006095116P040661442288001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CONTROL MICROSYSTEMS US, INC. 401(K) PLAN","001","2008-02-01","ADAPTIVE INSTRUMENTS CORP.",,,,,,,,"48 STEACIE DRIVE",,"KANATA","ONTARIO","AF","K2K 2A9",,,,,,,,,,,,"061838417","3034552022","423600","ADAPTIVE INSTRUMENTS CORP.",,,,,,,"48 STEACIE DRIVE",,"KANATA","ONTARIO","CA","K2K 2A9","061838417","3034552022",,,,"2011-10-06T09:51:06-0500","DAVID JEFFREY",,,,,0,13,0,0,13,0,13,5,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006074638P030666821264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IBS OF WESTERN OKLAHOMA PROFIT SHARING PLAN","001","1984-01-01","STEVE TERRY",,,"3108 S. 4TH STREET",,"CHICKASHA","OK","73018",,,,,,,,,,,,,,,,,,"270434108","4052220140","423100","STEVE TERRY",,"3108 S. 4TH STREET",,"CHICKASHA","OK","73018",,,,,,,"270434108","4052220140","TOM RICKEY","731047906","001","2011-10-06T07:43:08-0500","LARRY PACE",,,,,11,9,2,,11,,11,9,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005140900P030142941345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLONIAL METALS CO. 401(K) SAVINGS PLAN","003","1992-01-01","COLONIAL METALS CO.",,,"217 LINDEN ST",,"COLUMBIA","PA","17512",,,,,,,,,,,,,,,,,,"231350826","7176842311","331400","COLONIAL METALS CO.",,"217 LINDEN ST",,"COLUMBIA","PA","17512",,,,,,,"231350826","7176842311",,,,"2011-10-05T13:39:18-0500","JEANETTE FITZGERALD","2011-10-05T14:02:33-0500","CRAIG FRIEDMAN",,,35,38,0,0,38,0,38,26,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005141122P030664731072001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANVIL CORP. INSURANCE PLAN","503","2001-01-01","ANVIL CORPORATION",,,"1675 WEST BAKERVIEW ROAD",,"BELLINGHAM","WA","98226",,,,,,,,,,,,,,,,,,"910865773","3606711450","541330","ANVIL CORPORATION",,"1675 WEST BAKERVIEW ROAD",,"BELLINGHAM","WA","98226",,,,,,,"910865773","3606711450",,,,"2011-10-05T14:03:45-0500","ROB FARROW",,,,,426,405,0,0,405,,,,,,,"4B4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005175325P040146578641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NOBLE DRILLING CORPORATION SALARIED EMPLOYEES' RETIREMENT PLAN","001","1985-12-01","NOBLE DRILLING CORPORATION",,,"13135 SOUTH DAIRY ASHFORD","SUITE 800","SUGAR LAND","TX","77478",,,,,,,,,,,,,,,,,,"730374541","2812766100","211110","THE BENEFITS COMMITTEE OF NOBLE DRILLING CORPORATION",,"13135 SOUTH DAIRY ASHFORD, STE 800",,"SUGAR LAND","TX","77478",,,,,,,"730374541","2812766100",,,,"2011-10-05T17:53:00-0500","AMY M. CATE","2011-10-05T17:53:00-0500","MARSHA L. GALVAN",,,1328,740,149,401,1290,52,1342,,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006083008P030666908096001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCQUAIDE, BLASKO, FLEMING & FAULKNER, INC. PROFIT SHARING PLAN","002","1983-12-01","MCQUAIDE, BLASKO, FLEMING & FAULKNER, INC.",,,"811 UNIVERSITY DRIVE",,"STATE COLLEGE","PA","16801",,,,,,,,,,,,,,,,,,"251290285","8142384926","541110","MCQUAIDE, BLASKO, FLEMING & FAULKNER, INC.",,"811 UNIVERSITY DRIVE",,"STATE COLLEGE","PA","16801",,,,,,,"251290285","8142384926",,,,"2011-10-06T08:29:02-0500","THOMAS C. MILLER",,,,,76,69,0,7,76,0,76,76,0,,"2T3D2E2G2J2K2R2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006110500P040147019537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAM E. SATO, M.D., P.C. DEFINED BENEFIT PLAN","002","2006-01-01","SAM E. SATO, M.D., P.C.",,,"3910 N. CAMPBELL AVENUE",,"TUCSON","AZ","85719",,,,,,,,,,,,,,,,,,"860605761","5203232466","621111","SAM E. SATO, M.D., P.C.",,"3910 N. CAMPBELL AVENUE",,"TUCSON","AZ","85719",,,,,,,"860605761","5203232466",,,,"2011-10-06T10:58:32-0500","SAM SATO","2011-10-06T10:58:32-0500","SAM SATO",,,16,11,0,0,11,0,11,,0,,"1C",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005132114P030021015058001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HERMES ABRASIVES, LTD. RETIREMENT SAVINGS PLAN","003","1988-01-01","HERMES ABRASIVES, LTD.",,,"524 VIKING DRIVE",,"VIRGINIA BEACH","VA","23452",,,,,,,"524 VIKING DRIVE",,"VIRGINIA BEACH","VA","23452",,,,,,,"541121825","7574866623","339900","HERMES ABRASIVES, LTD.",,"524 VIKING DRIVE",,"VIRGINIA BEACH","VA","23452",,,,,,,"541121825","7574866623",,,,"2011-10-05T13:16:52-0500","ROBERT BISHOP",,,,,179,151,0,24,175,1,176,165,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005164551P040146551137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PENUMBRA, INC 401(K) PLAN","001","2007-01-01","PENUMBRA, INC",,,"1351 HARBOR BAY PKWY.",,"ALAMEDA","CA","94502",,,,,,,,,,,,,,,,,,"050605598","5107483200","339110","PENUMBRA, INC",,"1351 HARBOR BAY PKWY.",,"ALAMEDA","CA","94502",,,,,,,"050605598","5107483200",,,,"2011-10-05T16:44:51-0500","THOMAS R. KREBS",,,,,161,194,0,6,200,0,200,84,0,,"2E2F2G2J2K3D2T3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006090004P040146947473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NATIONAL LIFE GROUP PENSION PLAN FOR EMPLOYEES","001","1938-01-01","NATIONAL LIFE INSURANCE COMPANY",,,"ONE NATIONAL LIFE DRIVE",,"MONTPELIER","VT","05604",,,,,,,,,,,,,,,,,,"030144090","8022293607","525100","BENEFITS ADMINISTRATION COMMITTEE",,"ONE NATIONAL LIFE DRIVE",,"MONTPELIER","VT","05604",,,,,,,"030144090","8022293607",,,,"2011-10-06T08:57:35-0500","STEVEN SCHULTZ",,,,,1797,859,546,391,1796,0,1796,,49,,"1A1C1G3H",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005155424P030143004065001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"SAMARITAN HEALTH SERVICES RETIREMENT PLAN","002","2001-01-01","SAMARITAN HEALTH SERVICES",,,"C/O SHS ACCOUNTING","PO BOX 3000","CORVALLIS","OR","973393000",,,,,,,,,,,,,,,,,,"930951989","5417686316","622000","SAMARITAN HEALTH SERVICES",,"C/O SHS ACCOUNTING","PO BOX 3000","CORVALLIS","OR","973393000",,,,,,,"930951989","5417686316",,,,"2011-10-05T15:54:19-0500","RONALD STEVENS","2011-10-05T15:54:19-0500","RONALD STEVENS",,,4363,3940,0,296,4236,0,4236,4021,132,,"2C2F2G2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006095301P030143434321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WEAVER STREET MARKET RETIREMENT TRUST","001","2002-05-01","WEAVER STREET MARKET",,,"437 DIMMOCKS MILL ROAD",,"HILLSBOROUGH","NC","27278",,,,,,,,,,,,,,,,,,"561590492","9192411760","445110","WEAVER STREET MARKET",,"437 DIMMOCKS MILL ROAD",,"HILLSBOROUGH","NC","27278",,,,,,,"561590492","9192411760",,,,"2011-10-06T09:52:18-0500","LONNIE LEMPERT",,,,,246,229,0,23,252,0,252,85,46,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006101056P030143442993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCADAMS GRAPHICS, INC. 401(K) PROFIT SHARING PLAN","001","1991-10-01","MCADAMS GRAPHICS, INC.",,,"7200 SOUTH 1ST STREET",,"OAK CREEK","WI","53154",,,,,,,,,,,,,,,,,,"391454734","4147688080","323100","MCADAMS GRAPHICS, INC.",,"7200 SOUTH 1ST STREET",,"OAK CREEK","WI","53154",,,,,,,"391454734","4147688080",,,,"2011-10-06T10:09:50-0500","JESSICA ARMBRUSTER AS PRACTITIONER",,,,,132,116,0,10,126,0,126,119,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005134138P040146438465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UROLOGY OF CENTRAL PENNSYLVANIA RETIREMENT PLAN","002","2006-07-01","UROLOGY OF CENTRAL PENNSYLVANIA, INC.",,,"P.O. BOX 458",,"CAMP HILL","PA","170110458",,,,,,,,,,,,,,,,,,"231868767","7177244672","621111","UROLOGY OF CENTRAL PENNSYLVANIA, INC.",,"P.O. BOX 458",,"CAMP HILL","PA","170110458",,,,,,,"231868767","7177244672",,,,"2011-10-05T13:40:42-0500","MATTHEW NEISWENDER",,,,,117,100,0,10,110,0,110,100,8,,"2A2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005124922P030142898273001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"DELAWARE PARK MANAGEMENT COMPANY LLC DENTAL PLAN","505","1999-06-01","DELAWARE PARK MANAGEMENT COMPANY LLC",,,"777 DELAWARE PARK BOULEVARD",,"WILMINGTON","DE","19804",,,,,,,,,,,,,,,,,,"113790086","3029942521","561300","DELAWARE PARK MANAGEMENT COMPANY LLC",,"777 DELAWARE PARK BOULEVARD",,"WILMINGTON","DE","19804",,,,,,,"113790086","3029942521",,,,"2011-10-05T12:49:03-0500","KEVIN DELUCIA",,,,,783,1022,9,0,1031,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005172533P030665204720001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"UNITED ROOFING 401(K) AND PROFIT SHARING PLAN","002","1997-05-01","UNITED ROOFING MFG CO. INC.",,,"861 FINCHES FERRY ROAD",,"EUTAW","AL","35462",,,,,,,"861 FINCHES FERRY ROAD",,"EUTAW","AL","35462",,,,,,,"630888932","2053723394","324120","UNITED ROOFING MFG CO. INC.",,"861 FINCHES FERRY ROAD",,"EUTAW","AL","35462",,,,,,,"630888932","2053723394",,,,"2011-10-05T17:24:18-0500","LEE ANN LIVINGSTON",,,,,89,74,0,1,75,1,76,74,17,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005181023P030665298432001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"MCFARLAND CONSTRUCTION COMPANY 401(K) PLAN","001","1998-04-01","MCFARLAND CONSTRUCTION COMPANY",,,"9821 VALLEY VIEW ROAD",,"EDEN PRAIRIE","MN","55344",,,,,,,,,,,,,,,,,,"411897992","9529367662","236200","MCFARLAND CONSTRUCTION COMPANY",,"9821 VALLEY VIEW ROAD",,"EDEN PRAIRIE","MN","55344",,,,,,,"411897992","9529367662",,,,"2011-10-05T07:10:21-0500","TIMOTHY MCFARLAND",,,,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005181353P040659698896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE GREENBRIER COMPANIES, INC. HEALTH AND WELFARE PLAN","501","1996-01-01","THE GREENBRIER COMPANIES, INC.",,,"ONE CENTERPOINTE DRIVE, SUITE 200",,"LAKE OSWEGO","OR","97035",,,,,,,,,,,,,,,,,,"930816972","5036847000","336510","THE GREENBRIER COMPANIES, INC.",,"ONE CENTERPOINTE DRIVE, SUITE 200",,"LAKE OSWEGO","OR","97035",,,,,,,"930816972","5036847000",,,,"2011-10-05T18:13:19-0500","MAREN MALIK",,,,,3787,4376,76,0,4452,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006075056P040146914849001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"MYERS INDUSTRIES PROFIT SHARING AND 401(K) PLAN","001","1975-01-01","MYERS INDUSTRIES, INC.",,,"1293 S MAIN ST",,"AKRON","OH","443011302",,,,,,,,,,,,,,,,,,"340778636","3307616181","326100","MYERS INDUSTRIES, INC.",,"1293 S MAIN ST",,"AKRON","OH","443011302",,,,,,,"340778636","3307616181",,,,"2011-10-06T07:50:51-0500","MELISSA MORRISON","2011-10-06T07:50:51-0500","MELISSA MORRISON",,,2665,2275,0,242,2517,3,2520,2299,419,,"2E2G2J2K2S2T3H","4B","1",,"1",,"1",,"1",,"1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006115008P030143501617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOOTH FIRE AND SAFETY, INC. 401(K) PROFIT SHARING PLAN & TRU","001","2005-10-01","BOOTH FIRE AND SAFETY, INC.",,,"538 STATE STREET","PO BOX 3540","BOWLING GREEN","KY","42102",,,,,,,,,,,,,,,,,,"611241448","2707813330","453990","BOOTH FIRE AND SAFETY, INC.",,"538 STATE STREET","PO BOX 3540","BOWLING GREEN","KY","42102",,,,,,,"611241448","2707813330",,,,"2011-10-06T11:49:51-0500","DOUGLAS GORMAN",,,,,12,8,0,1,9,0,9,9,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006121139P030143518449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAC & FOX CASINO EMPLOYEES 401K PLAN","001","1999-01-01","SAC & FOX CASINO",,,"1322 U.S. HIGHWAY 75",,"POWHATTAN","KS","66527",,,,,,,,,,,,,,,,,,"481188951","7854678000","713200","SAC & FOX CASINO",,"1322 U.S. HIGHWAY 75",,"POWHATTAN","KS","66527",,,,,,,"481188951","7854678000",,,,"2011-10-06T12:11:02-0500","JEANNE STONE","2011-10-06T12:11:02-0500","BETH STRADER",,,382,359,0,16,375,2,377,60,1,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005125944P040658974832001","2010-01-01","2010-12-31","2",,"0",,"0","0",,"1",,,,,"DARUMA ASSET MANAGEMENT, INC. RETIREMENT PLAN","001","2000-12-15","DARUMA ASSET MANAGEMENT, INC.",,,"80 WEST 40TH STREET","9TH FLOOR","NEW YORK","NY","10018",,,,,,,"80 WEST 40TH STREET","9TH FLOOR","NEW YORK","NY","10018",,,,,,,"133831899","2128694000","523900","DARUMA ASSET MANAGEMENT, INC.",,"80 WEST 40TH STREET","9TH FLOOR","NEW YORK","NY","10018",,,,,,,"133831899","2128694000",,,,"2011-10-05T10:44:39-0500","DAVID GERBER",,,,,10,12,0,1,13,0,13,12,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111006113953P040147039537001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"CONSTRUCTION 70, INC EMPLOYEE STOCK OWNERSHIP PLAN","002","2000-01-01","CONSTRUCTION 70, INC",,,"P.O. BOX 62345",,"PHOENIX","AZ","85082",,,,,,,,,,,,,,,,,,"860456636","6024387070","238900","CONSTRUCTION 70, INC",,"P.O. BOX 62345",,"PHOENIX","AZ","85082",,,,,,,"860456636","6024387070",,,,"2011-10-06T11:39:50-0500","BRUCE VAIL","2011-10-06T11:39:50-0500","BRUCE VAIL",,,148,59,5,79,143,0,143,141,1,,"2I2P",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006101841P030021106098001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KATAHDIN TRUST COMPANY 401(K) PLAN","002","1990-01-01","KATAHDIN TRUST COMPANY",,,"PO BOX 36",,"HOULTON","ME","047300036",,,,,,,,,,,,,,,,,,"010099500","2075210455","522120","KATAHDIN TRUST COMPANY",,"PO BOX 36",,"HOULTON","ME","047300036",,,,,,,"010099500","2075210455",,,,"2011-10-06T11:18:36-0500","JON J. PRESCOTT",,,,,166,147,8,18,173,0,173,161,4,,"2E2G2J2K2F3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006122655P030143527585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"K-M INDUSTRIES HOLDING CO., INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1999-01-01","K-M INDUSTRIES HOLDING CO., INC.",,,"987 COMMERCIAL STREET",,"SAN CARLOS","CA","94070",,,,,,,,,,,,,,,,,,"941230192","6505928337","551112","K-M INDUSTRIES HOLDING CO., INC.",,"987 COMMERCIAL STREET",,"SAN CARLOS","CA","94070",,,,,,,"941230192","6505928337",,,,"2011-10-06T12:25:58-0500","DAN STRITMATTER",,,,,2791,1553,34,1778,3365,6,3371,3365,129,,"2P2I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111005155746P040146521009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIAM J BAIER, M.D. PLLC PROFIT SHARING & 401(K) PLAN","003","2002-01-01","WILLIAM J BAIER MD PLLC",,,"139 PROFESSIONAL PARKWAY",,"LOCKPORT","NY","14094",,,,,,,,,,,,,,,,,,"161161187","7164336711","621111","WILLIAM J BAIER MD PLLC",,"139 PROFESSIONAL PARKWAY",,"LOCKPORT","NY","14094",,,,,,,"161161187","7164336711",,,,"2011-10-05T15:44:03-0500","WILLIAM J BAIER MD",,,,,18,14,0,3,17,0,17,11,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005134608P040146442337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REGIONS FINANCIAL CORPORATION 401(K) PLAN","012","1973-01-01","REGIONS FINANCIAL CORPORATION",,,"ALBH11805B","1900 5TH AVENUE NORTH","BIRMINGHAM","AL","352030000",,,,,,,,,,,,,,,,,,"630589368","2055817920","522110","REGIONS FINANCIAL CORPORATION",,"ALBH11805B","1900 5TH AVENUE NORTH","BIRMINGHAM","AL","352030000",,,,,,,"630589368","2055817920",,,,"2011-10-05T13:45:50-0500","CHRISTOPHER A. GLAUB",,,,,33887,25109,210,7004,32323,57,32380,23402,0,,"2E2F2J2K2O2G2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005133125P040146430273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SWS GROUP INC. 401(K) PROFIT SHARING PLAN","002","1972-01-01","SWS GROUP, INC.",,,"1201 ELM STREET, SUITE 3500",,"DALLAS","TX","75270",,,,,,,,,,,,,,,,,,"752040825","2148591800","523110","SWS GROUP, INC.",,"1201 ELM STREET, SUITE 3500",,"DALLAS","TX","75270",,,,,,,"752040825","2148591800",,,,"2011-10-05T13:31:03-0500","JIM ZIMCOSKY","2011-09-29T15:47:32-0500","STACY HODGES",,,1423,1033,0,232,1265,0,1265,1260,40,,"2E2F2G2J2K2R3H2S3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006102800P040021975522001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR EMPLOYEES OF LORILLARD TOBACCO COMPANY","001","1997-01-01","LORILLARD TOBACCO COMPANY",,,"714 GREEN VALLEY ROAD",,"GREENSBORO","NC","274087018",,,,,,,,,,,,,,,,,,"133518571","3363357000","312200","RETIREMENT COMMITTEE",,"714 GREEN VALLEY ROAD",,"GREENSBORO","NC","274087018",,,,,,,"133518571","3363357000",,,,"2011-10-06T10:27:29-0500","PAUL DICKENS","2011-10-06T10:27:29-0500","PAUL DICKENS",,,3922,1634,1212,806,3652,273,3925,,14,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006103957P040147002993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CARPENTER LAW FIRM, P.C. DEFINED BENEFIT PENSION","001","2003-01-01","CARPENTER LAW FIRM, P.C.",,,"300 WALNUT STREET, SUITE 270",,"DES MOINES","IA","50309",,,,,,,,,,,,,,,,,,"421415462","5152447820","541110","CARPENTER LAW FIRM, P.C.",,"300 WALNUT STREET, SUITE 270",,"DES MOINES","IA","50309",,,,,,,"421415462","5152447820",,,,"2011-10-06T10:39:36-0500","PATRICK M. CARPENTER","2011-10-06T10:39:36-0500","PATRICK M. CARPENTER",,,7,2,0,4,6,0,6,,0,,"1A1I3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006111225P030143476737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARAMOUNT FOODS, INC. 401(K) PLAN","001","1980-01-01","PARAMOUNT FOODS, INC.",,,"332 NORTHEAST BOULEVARD",,"CLINTON","NC","283282424",,,,,,,,,,,,,,,,,,"561222458","9105927611","445110","PARAMOUNT FOODS, INC.",,"332 NORTHEAST BOULEVARD",,"CLINTON","NC","283282424",,,,,,,"561222458","9105927611",,,,"2011-10-06T11:06:57-0500","MICHAEL A. LINDSAY","2011-10-06T11:06:57-0500","MICHAEL A. LINDSAY",,,119,118,0,5,123,0,123,52,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005145436P040146485121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"COCA-COLA BOTTLING CO. CONSOLIDATED EMPLOYEE BENEFIT PLAN","503","1986-03-01","COCA-COLA BOTTLING CO. CONSOLIDATED",,,"P.O. BOX 31487",,"CHARLOTTE","NC","28231",,,,,,,"4100 COCA-COLA PLAZA",,"CHARLOTTE","NC","28211",,,,,,,"560950585","7045574400","312110","COCA-COLA BOTTLING CO. CONSOLIDATED",,"P.O. BOX 31487",,"CHARLOTTE","NC","28231",,,,,,,"560950585","7045574400",,,,"2011-10-05T14:53:59-0500","CLIFFORD M. DEAL III","2011-10-05T14:53:59-0500","CLIFFORD M. DEAL III",,,5430,5181,537,57,5775,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","1","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005145450P030142971793001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","1","0","0","0",,"IATSE LOCAL 8 ANNUITY FUND","001","1985-01-01","IATSE LOCAL 8 ANNUITY FUND",,"ONEILL CONSULTING INC","1560 OLD YORK RD",,"ABINGTON","PA","19001",,,,,,,"1560 OLD YORK RD",,"ABINGTON","PA","19001",,,,,,,"231719817","2156577400","711100","ONEILL CONSULTING CORP",,"1560 OLD YORK RD",,"ABINGTON","PA","19001",,,,,,,"232785557","2156577400",,,,"2011-10-05T14:54:38-0500","ANTHONY PONTARELLI",,,,,1579,1224,2,107,1333,,1333,1333,,33,"2C",,"1","0","1",,"1","0","1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004161635P030142355057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GLOBAL HEALTH ANALYTICS RESEARCH AND DEVELOPMENT CORPORATION DEFINED BENEFIT PLAN","001","2009-01-01","GLOBAL HEALTH ANALYTICS RESEARCH AND DEVELOPMENT CORPORATION",,,"1775 E SKYLINE DRIVE # 101",,"TUCSON","AZ","85718",,,,,,,,,,,,,,,,,,"271551632","5202993968","621111","GLOBAL HEALTH ANALYTICS RESEARCH AND DEVELOPMENT CORPORATION",,"1775 E SKYLINE DRIVE # 101",,"TUCSON","AZ","85718",,,,,,,"271551632","5202993968",,,,"2011-10-04T16:15:08-0500","RUSSELL J. SNOW, EA, CPC, MSPA",,,,,7,7,0,0,7,0,7,,0,,"1A3D",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004090447P040145646833001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","1","0","1","PAPER COPY RETURN","ARC SOUTHEASTERN MINNESOTA, INC.","001","1999-10-26","ARC SOUTHEASTERN MINNESOTA",,,"6301 BANDEL ROAD NW, SUITE 60",,"ROCHESTER","MN","55901",,,,,,,"6301 BANDEL ROAD NW, SUITE 60",,"ROCHESTER","MN","55901",,,,,,,"416042617","5072872032","624100","ARC SOUTHEASTERN MINNESOTA",,"6301 BANDEL ROAD NW, SUITE 60",,"ROCHESTER","MN","55901",,,,,,,"416042617","5072872032",,,,"2011-10-03T16:06:13-0500","MARTA BOLLESEN",,,,,5,6,,,6,,6,,,,"2L3D",,,,"1",,"1",,"1",,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004153421P030662034112009","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"HARRY AMARNICK INC 401K PROFIT SHARING PLAN","001","2002-01-01","HARRY AMARNICK, INC",,,"126 EAST CHURCH ROAD",,"ELKINS PARK","PA","19027",,,,,,,,,,,,,,,,,,"232542992","2157829064","238300","HARRY AMARNICK INC",,"126 EAST CHURCH ROAD",,"ELKINS PARK","PA","19027",,,,,,,"232542992","2157829064",,,,"2011-10-03T15:12:08-0500","HARRY AMARNICK",,,,,1,,,,0,,0,,,,"2K2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005144814P030142966801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MONTEREY BAY GI CONSULTANTS 401(K) PROFIT SHARING PLAN","001","1981-07-01","MONTEREY BAY GI CONSULTANTS MEDICAL GROUP, INC.",,,"23 UPPER RAGSDALE",,"MONTEREY","CA","93940",,,,,,,,,,,,,,,,,,"770139017","8313753577","621111","MONTEREY BAY GI CONSULTANTS MEDICAL GROUP, INC.",,"23 UPPER RAGSDALE",,"MONTEREY","CA","93940",,,,,,,"770139017","8313753577",,,,"2011-10-05T14:48:02-0500","DANIEL G. LUBA, M.D.",,,,,49,41,0,3,44,0,44,39,5,,"2A2E2F2G2J2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004173439P030662287280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C.E.S. MACHINE PRODUCTS, INC. 401(K) PROFIT SHARING PLAN","001","1982-11-01","C.E.S. MACHINE PRODUCTS, INC.",,,"8880 DOUBLE DIAMOND PARKWAY",,"RENO","NV","89521",,,,,,,,,,,,,,,,,,"880177609","7758525237","332700","C.E.S. MACHINE PRODUCTS, INC.",,"8880 DOUBLE DIAMOND PARKWAY",,"RENO","NV","89521",,,,,,,"880177609","7758525237",,,,"2011-10-04T17:30:30-0500","CHARLES SCHMIDT",,,,,67,40,0,14,54,0,54,37,0,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005140549P040021892994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEUROLOGY CONSULTANT, P.A. PROFIT SHARING PLAN","001","2003-01-01","NEUROLOGY CONSULTANT, P.A.",,,"235 MILL STREET SUITE # 1",,"HAGERSTOWN","MD","21740",,,,,,,,,,,,,,,,,,"050540625","3017395959","621111","NEUROLOGY CONSULTANT, P.A.",,"235 MILL STREET SUITE # 1",,"HAGERSTOWN","MD","21740",,,,,,,"050540625","3017395959",,,,"2011-10-05T14:05:38-0500","ANWAR H. QADRI","2011-10-05T14:05:38-0500","ANWAR H. QADRI",,,3,3,0,0,3,0,3,3,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004190145P030662451648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CPM TECHNICAL SOLUTIONS INC 401(K) PLAN","001","2001-10-01","CPM TECHNICAL SOLUTIONS INC",,,"3717 BAY CREEK DRIVE",,"BONITA SPRINGS","FL","341341911",,,,,,,,,,,,,,,,,,"311697474","4402568503","541600","CPM TECHNICAL SOLUTIONS INC",,"3717 BAY CREEK DRIVE",,"BONITA SPRINGS","FL","341341911",,,,,,,"311697474","4402568503",,,,"2011-10-04T19:01:29-0500","R. DAVID BOWERS",,,,,62,23,0,9,32,0,32,19,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005150127P030021025890001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LYNNVILLE NATIONAL BANK CASH OR DEFERRED PROFIT SHARING PLAN","001","1984-01-01","LYNNVILLE NATIONAL BANK",,,"PO BOX 126",,"LYNNVILLE","IN","47619",,,,,,,,,,,,,,,,,,"350482724","8129223231","522110","LYNNVILLE NATIONAL BANK",,"PO BOX 126",,"LYNNVILLE","IN","47619",,,,,,,"350482724","8129223231",,,,"2011-10-05T15:00:25-0500","JOHN HALEY",,,,,42,39,0,8,47,0,47,47,0,,"2C2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004155056P040145876129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CALIFORNIA HAND REHABILITATION, INC. PROFIT SHARING PLAN","002","1994-01-01","CALIFORNIA HAND REHABILITATION, INC",,,"3273 CLAREMONT WAY, SUITE 204",,"NAPA","CA","94558",,,,,,,,,,,,,,,,,,"680314282","7072591152","624310","CALIFORNIA HAND REHABILITATION, INC",,"3273 CLAREMONT WAY, SUITE 204",,"NAPA","CA","94558",,,,,,,"680314282","7072591152",,,,"2011-10-04T15:50:49-0500","MARGARET A. GOKEY",,,,,4,4,0,0,4,0,4,2,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004190607P030142434497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FOSS MARITIME COMPANY FLEXIBLE BENEFIT PLAN","505","1992-08-01","FOSS MARITIME COMPANY",,,"1151 FAIRVIEW AVENUE NORTH",,"SEATTLE","WA","98109",,,,,,,,,,,,,,,,,,"910859023","2062813800","483000","FOSS MARITIME COMPANY",,"1151 FAIRVIEW AVENUE NORTH",,"SEATTLE","WA","98109",,,,,,,"910859023","2062813800",,,,"2011-10-04T19:05:48-0500","ARTHUR J VOLKLE JR.",,,,,147,147,0,0,147,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005141250P030664734992001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"PEROT SYSTEMS CORPORATION BUSINESS TRAVEL ACCIDENT PLAN","503","1989-06-01","PEROT SYSTEMS CORPORATION",,,"C/O NICKI HUSCHKA","ONE DELL WAY, RR1-33","ROUND ROCK","TX","78682",,,,,,,,,,,,,,,,,,"752230700","9725776777","541519","PEROT SYSTEMS CORPORATION","C/O NICKI HUSCHKA","ONE DELL WAY","RR1-33","ROUND ROCK","TX","78682",,,,,,,"752230700","9725776777",,,,"2011-10-05T14:12:26-0500","JANET B. WRIGHT",,,,,9267,0,0,0,0,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004161639P030142355121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAMS DOLLAR DAZE, INC. PROFIT SHARING PLAN","001","2005-09-21","SAMS DOLLAR DAZE, INC.",,,"423 LAKE HAVASU DRIVE",,"VIRGINIA BEACH","VA","23454",,,,,,,,,,,,,,,,,,"203287929","7574983209","453990","SAMS DOLLAR DAZE, INC.",,"423 LAKE HAVASU DRIVE",,"VIRGINIA BEACH","VA","23454",,,,,,,"203287929","7574983209",,,,"2011-10-04T16:10:45-0500","SAMUEL DRISCOLL",,,,,3,4,,,4,,4,1,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004150510P030020930818001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DUNCAN FINANCIAL GROUP 401K PLAN","002","2002-03-01","DUNCAN FINANCIAL GROUP, LLC",,,"1200 E. RIDGEWOOD AVENUE, SUITE 330",,"RIDGEWOOD","NJ","07450",,,,,,,,,,,,,,,,,,"223753616","2016129572","523900","DUNCAN FINANCIAL GROUP, LLC",,"1200 E. RIDGEWOOD AVENUE, SUITE 330",,"RIDGEWOOD","NJ","07450",,,,,,,"223753616","2016129572",,,,"2011-10-04T15:05:03-0500","TIMOTHY DUNCAN","2011-10-04T15:05:03-0500","TIMOTHY DUNCAN",,,3,3,0,0,3,0,3,3,0,,"2J2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004191756P040145976561002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LLOYD L. STRODE, D.O. PROFIT SHARING","003","1993-01-01","LLOYD L. STRODE, D.O.",,,"6615 DELMONICO DRIVE",,"COLORADO SPRINGS","CO","80919",,,,,,,"6615 DELMONICO DRIVE",,"COLORADO SPRINGS","CO","80919",,,,,,,"840804472","7195909494","621111","LLOYD L. STRODE, D.O.",,"6615 DELMONICO DRIVE",,"COLORADO SPRINGS","CO","80919",,,,,,,"840804472","7195909494",,,,"2011-10-04T12:39:30-0500","LLOYD STRODE","2011-10-04T12:39:30-0500","LLOYD STRODE",,,16,2,,,2,,2,8,,,"2E2F2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004192204P040145977825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEGACY FOR YOU ENTERPRISES, INC. 401(K) PROFIT SHARING PLAN","001","2007-01-02","LEGACY FOR YOU ENTERPRISES, INC.",,,"8413 OLD HICKORY LANE",,"MCKINNEY","TX","75070",,,,,,,,,,,,,,,,,,"208083023","4696679535","812990","LEGACY FOR YOU ENTERPRISES, INC.",,"8413 OLD HICKORY LANE",,"MCKINNEY","TX","75070",,,,,,,"208083023","4696679535",,,,"2011-10-04T19:18:43-0500","GLEN BROWN",,,,,1,1,0,0,1,0,1,1,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004173123P030142391345001","2010-04-01","2011-03-31","2",,"0","1","0","0","0","0","0","0","0",,"WESTERN GARDEN CENTER, INC. EMPLOYEE PROFIT SHARING PLAN","001","1962-04-01","WESTERN GARDEN CENTER, INC.",,,"550 SOUTH 600 EAST",,"SALT LAKE CITY","UT","84102",,,,,,,"550 SOUTH 600 EAST",,"SALT LAKE CITY","UT","84102",,,,,,,"872033999","8013554391","444200","WESTERN GARDEN CENTER, INC.",,"550 SOUTH 600 EAST",,"SALT LAKE CITY","UT","84102",,,,,,,"872033999","8013554391",,,,"2011-10-04T17:31:03-0500","MARK HEAPS",,,,,25,14,0,7,21,0,21,16,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004171538P040021804290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ORTHOPAEDIC SERVICES INC MONEY PURCHASE PLAN","005","1992-09-01","ORTHOPAEDIC SERVICES INC",,,"12000 MCCRACKEN ROAD SUITE # 251",,"CLEVELAND","OH","44125",,,,,,,,,,,,,,,,,,"341104145","2165875050","621111","ORTHOPAEDIC SERVICES INC",,"12000 MCCRACKEN ROAD SUITE # 251",,"CLEVELAND","OH","44125",,,,,,,"341104145","2165875050",,,,"2011-10-04T17:15:27-0500","PAUL G. FORCIER","2011-10-04T17:15:27-0500","PAUL G. FORCIER",,,7,8,0,0,8,0,8,8,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005145152P030664838592001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOMAS CERIZO PROFIT SHARING PLAN","001","1999-02-01","THOMAS CERIZO INSURANCE AGENCY",,,"1740 KAMAMALU PLACE",,"WAILUKU","HI","96793",,,,,,,,,,,,,,,,,,"990340478","8082805295","524210","THOMAS CERIZO INSURANCE AGENCY",,"1740 KAMAMALU PLACE",,"WAILUKU","HI","96793",,,,,,,"990340478","8082805295","THOMAS CERIZO DBA ALLSTATE INSURANCE","990340478","001","2011-10-05T14:51:26-0500","THOMAS CERIZO",,,,,4,1,0,2,3,0,3,3,0,,"2A2E2H3B3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004155230P040145877249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY TREATMENT ALTERNATIVES RETIREMENT SAVINGS PLAN","001","2002-09-01","COMMUNITY TREATMENT ALTERNATIVES",,,"4444 SOUTH 700 EAST SUITE 203",,"SALT LAKE CITY","UT","84107",,,,,,,,,,,,,,,,,,"870424951","8012684887","624100","COMMUNITY TREATMENT ALTERNATIVES",,"4444 SOUTH 700 EAST SUITE 203",,"SALT LAKE CITY","UT","84107",,,,,,,"870424951","8012684887",,,,"2011-10-04T15:51:45-0500","DUSTIN EREKSON","2011-10-04T15:51:45-0500","DUSTIN EREKSON",,,280,215,0,15,230,0,230,58,2,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004161059P030142351665001","2010-01-01","2010-12-31","4","P",,,,,,,,,,,"PRINCIPAL MIDCAP VALUE III SEPARATE ACCOUNT","022",,"PRINCIPAL LIFE INSURANCE COMPANY",,,"711 HIGH STREET",,"DES MOINES","IA","503920001000",,,,,,,,,,,,,,,,,,"420127290","5152480029",,"PRINCIPAL LIFE INSURANCE COMPANY",,"711 HIGH STREET",,"DES MOINES","IA","503920001000",,,,,,,"420127290","5152480029",,,,,,,,"2011-10-04T16:10:55-0500","AMY MARY ANDERSON",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-04",,"Filed with authorized/valid electronic signature", "20111004194533P030662530208001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MY RICH UNCLE, INC. 401(K) PLAN","001","2005-05-06","MY RICH UNCLE, INC.",,,"12397 S 3240 WEST",,"RIVERTON","UT","840657230",,,,,,,,,,,,,,,,,,"202859081","8012541655","441221","MY RICH UNCLE, INC.",,"12397 S 3240 WEST",,"RIVERTON","UT","840657230",,,,,,,"202859081","8012541655",,,,"2011-10-04T19:44:10-0500","STEVEN BUTT","2011-10-04T19:44:10-0500","STEVEN BUTT",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005141034P030142942833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOLSON COORS HEALTH BENEFIT PLAN","530","2008-07-01","MOLSON COORS BREWING COMPANY",,,"1225 17TH STREET, SUITE 3200",,"DENVER","CO","80202",,,,,,,,,,,,,,,,,,"840178360","3039272337","312120","MOLSON COORS BREWING COMPANY",,"1225 17TH STREET, SUITE 3200",,"DENVER","CO","80202",,,,,,,"840178360","3039272337",,,,"2011-10-05T14:01:54-0500","GORDON BLASIUS","2011-10-05T14:01:54-0500","GORDON BLASIUS",,,187,189,3,0,192,,,,,,,"4A4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005141101P030664729856001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"SHAMROCK BUILDING SERVICES, INC.","001","2008-07-17","SHAMROCK BUILDING SERVICES, INC.",,,"8606 ALLISONVILLE ROAD, SUITE 215",,"INDIANAPOLIS","IN","46250",,,,,,,,,,,,,,,,,,"263017921","3175949170","561790","SHAMROCK BUILDING SERVICES, INC.",,"8606 ALLISONVILLE ROAD, SUITE 215",,"INDIANAPOLIS","IN","46250",,,,,,,"263017921","3175949170",,,,"2011-10-05T14:02:28-0500","KEVIN SPELLACY","2011-10-05T14:02:28-0500","KEVIN SPELLACY",,,3,3,0,0,3,0,3,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004201526P030020949634001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SKILLS, INC. 401(K) PLAN","001","1988-01-01","SKILLS, INC",,,"715 30TH STREET NE",,"AUBURN","WA","98002",,,,,,,,,,,,,,,,,,"910816065","2067826000","813000","SKILLS, INC",,"715 30TH STREET NE",,"AUBURN","WA","98002",,,,,,,"910816065","2067826000",,,,"2011-10-04T20:14:18-0500","ROBERT COPELAND",,,,,266,290,3,44,337,0,337,213,30,,"3D2E2J2K2F2G2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004173723P040145929345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SYMETRA LIFE INSURANCE HEALTH AND WELFARE PLAN","501","2004-08-01","SYMETRA LIFE INSURANCE COMPANY",,,"777 108TH AVENUE NE, SUITE 1200",,"BELLEVUE","WA","98004",,,,,,,,,,,,,,,,,,"910742147","4252568049","524140","SYMETRA LIFE INSURANCE COMPANY",,"777 108TH AVENUE NE, SUITE 1200",,"BELLEVUE","WA","98004",,,,,,,"910742147","4252568049",,,,"2011-10-04T17:37:11-0500","ELLEN STONE",,,,,1042,1053,0,0,1053,,,,,,,"4A4B4D4E4F4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004150014P040145847329002","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"EASTERN SHORE TEAMSTERS PENSION FUND","001","1969-03-07","BOARD OF TRUSTEES OF THE EASTERN",,,"9411 PHILADELPHIA RD., SUITE S",,"BALTIMORE","MD","21237",,,,,,,,,,,,,,,,,,"520904953","4104443750","484110","BOARD OF TRUSTEES OF THE EASTERN",,"9411 PHILADELPHIA RD., SUITE S",,"BALTIMORE","MD","21237",,,,,,,"520904953","4104443750",,,,"2011-10-04T15:54:09-0500","DAVID WHITE",,,,,568,235,217,82,534,25,559,,,5,"1B1G",,,,"1",,,,"1",,"1","1",,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004174119P030662299808007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MARYS RIVER LUMBER LIFE AND DISABILITY PLANS","502","1991-01-01","MARYS RIVER LUMBER COMPANY",,,"4515 NE ELLIOTT CIRCLE",,"CORVALLIS","OR","97330",,,,,,,,,,,,,,,,,,"930629302","5417520122","321110","MARYS RIVER LUMBER COMPANY",,"4515 NE ELLIOTT CIRCLE",,"CORVALLIS","OR","97330",,,,,,,"930629302","5417520122",,,,"2011-10-04T09:11:46-0500","SUSANNE BENSON","2011-10-04T09:11:46-0500","SUSANNE BENSON",,,219,221,,,221,,,,,,,"4B4H4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004174325P030020941602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLUMBIA PHARMACY EMPLOYEES PROFIT SHARING PLAN","001","1986-01-01","C. STUART, INC. DBA COLUMBIA PHARMACY",,,"2840 LONG BEACH BLVD.","SUITE 115","LONG BEACH","CA","908061516",,,,,,,,,,,,,,,,,,"953131887","5624260303","446110","C. STUART, INC. DBA COLUMBIA PHARMACY",,"2840 LONG BEACH BLVD.","SUITE 115","LONG BEACH","CA","908061516",,,,,,,"953131887","5624260303",,,,"2011-10-04T17:43:24-0500","CHARLES STUART",,,,,5,5,0,0,5,0,5,5,0,,"2A2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005144508P030664820832001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SONNYS ENTERPRISES, INC. FLEXIBLE BENEFIT PLAN","501","2006-01-01","SONNYS ENTERPRISES, INC.",,,"5605 HIATUS RD",,"TAMARAC","FL","33321",,,,,,,,,,,,,,,,,,"061312117","8003278723","333310","SONNYS ENTERPRISES, INC.",,"5605 HIATUS RD",,"TAMARAC","FL","33321",,,,,,,"061312117","8003278723",,,,"2011-10-05T14:40:23-0500","MICHAEL BAUER",,,,,115,122,0,0,122,,,,,,,"4A4B4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004152428P040145858337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASSOCIATION OF AMERICAN RAILROADS INCENTIVE THRIFT PLAN","002","1985-01-01","ASSOCIATION OF AMERICAN RAILROADS",,,"425 3RD STREET SW",,"WASHINGTON","DC","200243228",,,,,,,,,,,,,,,,,,"536000125","2026392542","488210","ASSOCIATION OF AMERICAN RAILROADS",,"425 3RD STREET SW",,"WASHINGTON","DC","200243228",,,,,,,"536000125","2026392542",,,,"2011-10-04T15:24:00-0500","CARLA GARCIA","2011-10-04T15:24:00-0500","CARLA GARCIA",,,462,468,0,103,571,0,571,459,0,,"2J2F2G2K2E2R2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005150302P030142976417001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"T. ROWE PRICE SMALL CAP STOCK-ADVISOR SHS - SA55T3","266",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-05T14:56:04-0500","JOHN G. PHARO","2011-10-05T14:56:04-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-05",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111005152500P030142986993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NESTOR SALES LLC - GROUP LIFE PLAN","503","1994-01-01","NESTOR SALES LLC",,"BARRY KATZ, CFO","7337 BRYAN DAIRY ROAD",,"LARGO","FL","33777",,,,,,,"7337 BRYAN DAIRY ROAD",,"LARGO","FL","33777",,,,,,,"582430752","7275446114","423400","NESTOR SALES LLC","BARRY KATZ, CFO","7337 BRYAN DAIRY ROAD",,"LARGO","FL","33777",,,,,,,"582430752","7275446114",,,,"2011-10-05T15:19:12-0500","BARRY KATZ",,,,,110,104,0,0,104,0,104,0,0,0,,"4B","1",,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005151729P030142982913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NOVUS VENTURES RETIREMENT PLAN & TRUST","003","2002-01-01","DT ASSOCIATES II, LLC DBA NOVUS VENTURES",,,"20111 STEVENS CREEK BLVD. SUITE 130",,"CUPERTINO","CA","950142399",,,,,,,,,,,,,,,,,,"770539324","4082523900","523900","DT ASSOCIATES II, LLC DBA NOVUS VENTURES",,"20111 STEVENS CREEK BLVD. SUITE 130",,"CUPERTINO","CA","950142399",,,,,,,"770539324","4082523900",,,,"2011-10-05T15:06:22-0500","DAN TOMPKINS","2011-10-05T15:06:22-0500","DAN TOMPKINS",,,9,5,0,2,7,0,7,7,0,,"2A2E2G2J2K3H3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111005151503P030142981761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHILD & FAMILY TENNESSEE 403(B) RETIREMENT PLAN","002","1977-07-01","CHILD & FAMILY TENNESSEE",,,"901 E SUMMIT HILL DR",,"KNOXVILLE","TN","379151200",,,,,,,,,,,,,,,,,,"620547289","8655247483","624100","CHILD & FAMILY TENNESSEE",,"901 E SUMMIT HILL DR",,"KNOXVILLE","TN","379151200",,,,,,,"620547289","8655247483",,,,"2011-10-05T15:14:39-0500","REBECCA REAGAN",,,,,205,183,0,9,192,0,192,73,0,,"2G2M2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111004151037P040145852161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DESIGN TEAMS, INC. AND SUBSIDIARIES EMPLOYEE STOCK OWNERSHIP PLAN","002","2005-01-01","DESIGN TEAMS, INC.",,,"20 RIDGELY AVENUE",,"ANNAPOLIS","MD","214011410",,,,,,,,,,,,,,,,,,"521329554","4102678621","561490","DESIGN TEAMS, INC.",,"20 RIDGELY AVENUE",,"ANNAPOLIS","MD","214011410",,,,,,,"521329554","4102678621",,,,"2011-10-04T15:09:43-0500","KIM GOMOLJAK",,,,,76,58,0,17,75,0,75,75,7,,"2I2P3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004154157P030142333425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HARRY J. LLOYD CHARITABLE TRUST 401K RETIREMENT PLAN","001","2002-07-01","THE HARRY J. LLOYD CHARITABLE TRUST",,,"7200 W 132ND ST",,"OVERLAND PARK","KS","662131145",,,,,,,,,,,,,,,,,,"436689416","9138512174","813000","THE HARRY J. LLOYD CHARITABLE TRUST",,"7200 W 132ND ST",,"OVERLAND PARK","KS","662131145",,,,,,,"436689416","9138512174",,,,"2011-10-04T15:40:57-0500","RUSSELL BROWN",,,,,5,5,0,0,5,0,5,5,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111004223814P040146051329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRIDGEWELL GROUP INSURANCE PLAN","503","1976-01-01","BRIDGEWELL",,,"471 BROADWAY",,"LYNNFIELD","MA","01940",,,,,,,,,,,,,,,,,,"042296940","7815931088","624100","BRIDGEWELL",,"471 BROADWAY",,"LYNNFIELD","MA","01940",,,,,,,"042296940","7815931088",,,,"2011-10-04T19:57:02-0500","ROBERT STEARNS",,,,,434,487,0,0,487,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111005143026P040146471073005","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"PARK FORD 401(K) PROFIT SHARING PLAN & TRUST","001","2000-01-01","PARK FORD ATTN BETH OLIVER",,"ATTN BETH OLIVER","400 WEST AVENUE",,"TALLMADGE","OH","44278",,,,,,,,,,,,,,,,,,"341899749","3306336222","441110","PARK FORD ATTN BETH OLIVER","ATTN BETH OLIVER","400 WEST AVENUE",,"TALLMADGE","OH","44278",,,,,,,"341899749","3306336222",,,,"2011-10-05T15:21:35-0500","BETH OLIVER",,,,,58,41,0,0,41,0,41,41,,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",, "20111005145413P030142971249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE GOTTSEGEN, TANNENBAUM & KARABIN EMPLOYEES RETIREMENT PLAN","002","1973-09-24","PAUL TANNENBAUM, D.D.S., SUSAN KARABIN, D.D.S. AND EDWARD",,,"218 EAST 61ST STREET",,"NEW YORK","NY","10065",,,,,,,,,,,,,,,,,,"132707350","2127568890","621210","PAUL TANNENBAUM, D.D.S., SUSAN KARABIN, D.D.S. AND EDWARD",,"218 EAST 61ST STREET",,"NEW YORK","NY","10065",,,,,,,"132707350","2127568890","PAUL TANNENBAUM, D.D.S. & SUSAN KARABIN, D.D.S., P.C.","132707350","002","2011-10-05T14:52:13-0500","SUSAN KARABIN","2011-10-05T14:52:13-0500","SUSAN KARABIN",,,14,9,1,4,14,0,14,14,0,,"2A2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111004170420P040021803138008","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"AMERICAN TARGET COMPANY PROFIT SHARING PLAN AND TRUST","001","1986-01-01","AMERICAN TARGET COMPANY",,,"1328 S JASON ST",,"DENVER","CO","80223",,,,,,,,,,,,,,,,,,"840486216","3037330433","323100","AMERICAN TARGET COMPANY",,"1328 S JASON ST",,"DENVER","CO","80223",,,,,,,"840486216","3037330433",,,,"2011-10-04T12:57:36-0500","DAVID SCHOOLEY",,,,,4,,4,,4,,4,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-04","Filed with authorized/valid electronic signature",, "20111007091323P030144079809010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ARAPAHOE MOTORS, INC. DBA RALPH SCHOMP AUTOMOTIVE MEDICAL PLAN","501","2002-01-01","ARAPAHOE MOTORS, INC.",,,"5700 S BROADWAY",,"LITTLETON","CO","80121",,,,,,,,,,,,,,,,,,"840007295","3037981500","441110","ARAPAHOE MOTORS, INC.",,"5700 S BROADWAY",,"LITTLETON","CO","80121",,,,,,,"840007295","3037981500",,,,"2011-10-07T12:34:28-0500","MARK A WALLACE",,,,,257,257,6,,263,,,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007110228P030021211618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PICKENS COUNTY MEDICAL CENTER INC CAFETERIA PLAN","501","1990-10-25","PICKENS COUNTY MEDICAL CENTER INC",,,"PO BOX 478",,"CARROLLTON","AL","35447",,,,,,,"241 ROBERT K WILSON DR.",,"CARROLLTON","AL","35447",,,,,,,"630920915","2053678111","622000","PICKENS COUNTY MEDICAL CENTER INC",,"PO BOX 478",,"CARROLLTON","AL","35447",,,,,,,"630920915","2053678111",,,,"2011-10-07T10:45:17-0500","WAYNE MCELROY",,,,,180,184,0,0,184,,,,,,,"4A4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007112550P040147700961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ONCOLOGY-HEMATOLOGY ASSOCIATES OF CENTRAL ILLINOIS, P.C. 401(K) PROFIT SHARING PLAN","001","1979-08-01","ONCOLOGY-HEMATOLOGY ASSOCIATES OF CENTRAL ILLINOIS, P. C.","ILLINOIS CANCERCARE, P.C.",,"8940 NORTH WOOD SAGE ROAD",,"PEORIA","IL","61615",,,,,,,,,,,,,,,,,,"371331017","3092433000","621111","ONCOLOGY-HEMATOLOGY ASSOCIATES OF CENTRAL ILLINOIS","ILLINOIS CANCERCARE, P.C.","8940 NORTH WOOD SAGE ROAD",,"PEORIA","IL","61615",,,,,,,"371331017","3092433000",,,,"2011-10-07T10:10:00-0500","MICHAEL VOELLER",,,,,240,213,0,25,238,0,238,224,4,,"2F2E2G2J2A2K2R3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006190442P030143749537002","2010-01-01","2010-12-31","4","C",,"1",,,,,,,,,"MET MASTER TRUST 28758","012",,"RELIANCE TRUST COMPANY",,,"1100 ABERNATHY ROAD",,"ATLANTA","GA","303285646",,,,,,,"500 NORTHPARK SUITE 400",,"ATLANTA","GA","303285646",,,,,,,"581428634","6787484582","525100","RELIANCE TRUST COMPANY",,"1100 ABERNATHY ROAD",,"ATLANTA","GA","303285646",,,,,,,"581428634","6787484582",,,,,,,,"2011-10-06T18:15:54-0500","JOE KITCHENS",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-06",,"Filed with authorized/valid electronic signature", "20111006195703P030143765553001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LINDSEY ENTERPRISES, INC. PROFIT SHARING PLAN","001","1997-01-01","LINDSEY ENTERPRISES, INC.",,,"3223 CALLIE STILL ROAD",,"LAWRENCEVILLE","GA","30045",,,,,,,,,,,,,,,,,,"582032320","7704667658","238100","LINDSEY ENTERPRISES, INC.",,"3223 CALLIE STILL ROAD",,"LAWRENCEVILLE","GA","30045",,,,,,,"582032320","7704667658",,,,"2011-10-01T08:02:06-0500","JOANNE LINDSEY",,,,,3,3,,,3,,3,3,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006163537P040147232833001","1977-07-01","1978-06-30","2",,"0","0","0","0","0","0","0","1","0",,"DEMOCRATIC NATIONAL COMMITTEE LIFE AND ADD PLAN","503","1976-07-01","DEMOCRATIC NATIONAL COMMITTEE",,,"430 SOUTH CAPITAL STREET, SE",,"WASHINGTON","DC","20003",,,,,,,,,,,,,,,,,,"520958906","2024795100","813000","DEMOCRATIC NATIONAL COMMITTEE",,"430 SOUTH CAPITAL STREET, SE",,"WASHINGTON","DC","20003",,,,,,,"520958906","2024795100",,,,"2011-10-06T16:35:14-0500","AMANDA HOWE",,,,,111,111,0,0,111,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006225810P040147383649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANJALI MONGA, M.D., INC. DEFINED BENEFIT PENSION PLAN","001","2001-01-01","ANJALI MONGA, M.D., INC.",,,"4050 BARRANCA PARKWAY., SUITE 260",,"IRVINE","CA","92604",,,,,,,,,,,,,,,,,,"330893127","9495528446","621399","ANJALI MONGA, M.D., INC.",,"4050 BARRANCA PARKWAY., SUITE 260",,"IRVINE","CA","92604",,,,,,,"330893127","9495528446",,,,"2011-10-06T22:56:53-0500","ANJALI MONGA","2011-10-06T22:56:53-0500","ANJALI MONGA",,,2,2,0,0,2,0,2,,0,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006195748P030021152770001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"DISCO PREMIER MFS BOND SERIES ACCOUNT","096",,"THE PRUDENTIAL INSURANCE COMPANY OF AMERICA",,"VALERIE WEBER","751 BROAD STREET",,"NEWARK","NJ","07102",,,,,,,,,,,,,,,,,,"221211670","9737161245",,"THE PRUDENTIAL INSURANCE COMPANY OF AMERICA","VALERIE WEBER","751 BROAD STREET",,"NEWARK","NJ","07102",,,,,,,"221211670","9737161245",,,,,,"2011-10-06T19:55:55-0500","VALERIE WEBER","2011-10-06T19:55:55-0500","VALERIE WEBER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111007112026P040147697953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN SCIENCE & ENGINEERING, INC. PRE-TAX PREMIUM PLAN","502","1994-01-01","AMERICAN SCIENCE & ENGINEERING, INC",,,"829 MIDDLESEX TURNPIKE",,"BILLERICA","MA","01821",,,,,,,,,,,,,,,,,,"042240991","9782628616","335900","AMERICAN SCIENCE & ENGINEERING, INC",,"829 MIDDLESEX TURNPIKE",,"BILLERICA","MA","01821",,,,,,,"042240991","9782628616",,,,"2011-10-07T11:15:45-0500","GEORGE PETERMAN",,,,,316,349,0,0,349,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007112103P030144151313001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MEIER-BADGER 401(K) RETIREMENT SAVINGS PLAN","001","1985-01-01","BADGER COACHES, INC.",,,"5501 FEMRITE DRIVE",,"MADISON","WI","53718",,,,,,,"5501 FEMRITE DRIVE",,"MADISON","WI","53718",,,,,,,"390749816","6082551511","485510","BADGER COACHES, INC.",,"5501 FEMRITE DRIVE",,"MADISON","WI","53718",,,,,,,"390749816","6082551511",,,,"2011-10-07T10:33:03-0500","DAVID MEIER",,,,,278,371,0,0,371,0,371,48,2,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006162829P040147228001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAVINGS PLAN FOR EMPLOYEES OF INSURANCE FACTORS","001","1994-04-01","INSURANCE FACTORS",,,"745 FORT ST STE 1000",,"HONOLULU","HI","96813",,,,,,,,,,,,,,,,,,"990034550","8084567417","524210","INSURANCE FACTORS",,"745 FORT ST STE 1000",,"HONOLULU","HI","96813",,,,,,,"990034550","8084567417",,,,"2011-10-06T16:27:46-0500","DORA SCHULZE-KURODA",,,,,20,16,0,3,19,0,19,19,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006162931P040662415632001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALL NIPPON AIRWAYS GROUP HEALTH PLANS","501","1989-01-01","ALL NIPPON AIRWAYS",,,"2050 WEST 190TH STREET, SUITE 100",,"TORRANCE","CA","90504",,,,,,,,,,,,,,,,,,"953991534","3107823000","481000","ALL NIPPON AIRWAYS",,"2050 WEST 190TH STREET, SUITE 100",,"TORRANCE","CA","90504",,,,,,,"953991534","3107823000",,,,"2011-10-06T16:29:12-0500","NORIKO M. YOSHIMURA","2011-10-06T16:29:12-0500","HIROTAKA HATTORI",,,203,190,6,0,196,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006123009P040147064865003","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"PELMAD CORPORATION PROFIT SHARING PLAN","001","1986-02-16","PELMAD CORPORATION",,,"10598 NW SOUTH RIVER DRIVE",,"MEDLEY","FL","33178",,,,,,,,,,,,,,,,,,"590941318","3058831920","531120","PELMAD CORPORATION",,"10598 NW SOUTH RIVER DRIVE",,"MEDLEY","FL","33178",,,,,,,"590941318","3058831920",,,,"2011-10-06T10:57:00-0500","HAROLD AIBEL","2011-10-06T10:56:54-0500","HAROLD AIBEL",,,11,1,1,3,5,3,8,8,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007103042P040022094162001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"KENNETH MALAMENT 401(K) PROFIT SHARING PLAN & TRUST","002","2005-01-01","KENNETH A. MALAMENT, DDS",,,"50 STANIFORD STREET",,"BOSTON","MA","02114",,,,,,,,,,,,,,,,,,"042670166","6175235451","621210","KENNETH A. MALAMENT, DDS",,"50 STANIFORD STREET",,"BOSTON","MA","02114",,,,,,,"042670166","6175235451",,,,"2011-10-07T10:29:35-0500","KENNETH MALAMENT",,,,,10,10,0,0,10,0,10,5,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007110810P040147691297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE BLOOMSBURG HOSPITAL HOSPITALIZATION PLAN","501","1963-09-01","THE BLOOMSBURG HOSPITAL",,,"549 FAIR ST",,"BLOOMSBURG","PA","178151419",,,,,,,,,,,,,,,,,,"232193572","5703872100","622000","THE BLOOMSBURG HOSPITAL",,"549 FAIR ST",,"BLOOMSBURG","PA","178151419",,,,,,,"232193572","5703872100",,,,"2011-10-07T11:03:55-0500","MARY HOWE",,,,,500,581,0,0,581,,,,,,,"4A4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007112945P040147703057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARYLAND & VIRGINIA MILK PRODUCERS COOPERATIVE ASSOCIATION, INC. RETIREMENT INCOME PLAN","001","1948-08-04","MARYLAND & VIRGINIA MILK PRODUCERS COOPERATIVE ASSOCIATION, INC.",,,"1985 ISAAC NEWTON SQUARE WEST",,"RESTON","VA","20190",,,,,,,,,,,,,,,,,,"540629090","7037426800","424500","MARYLAND & VIRGINIA MILK PRODUCERS COOPERATIVE ASSOCIATION, INC.",,"1985 ISAAC NEWTON SQUARE WEST",,"RESTON","VA","20190",,,,,,,"540629090","7037426800",,,,"2011-10-07T11:28:39-0500","MELODY LAWHORN","2011-10-07T11:28:39-0500","MELODY LAWHORN",,,461,125,34,282,441,11,452,,0,,"1A1G1I",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006171714P040147253249001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"BROKERS LOGISTICS LTD. 401(K) PLAN","001","1995-11-01","BROKERS LOGISTICS LTD.",,,"1000 HAWKINS BLVD",,"EL PASO","TX","79915",,,,,,,"1000 HAWKINS BLVD",,"EL PASO","TX","79915",,,,,,,"742983758","9157787751","493100","BROKERS LOGISTICS LTD.",,"1000 HAWKINS BLVD",,"EL PASO","TX","79915",,,,,,,"742983758","9157787751",,,,"2011-10-06T17:16:11-0500","JERRY WRIGHT",,,,,150,122,0,29,151,0,151,85,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006171924P040022019474001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PROVIDENCE ENGINEERING & ENVIRONMENTAL GROUP, LLC 401(K) PENSION PLAN","001","2002-01-01","PROVIDENCE ENGINEERING & ENVIRONMENTAL GROUP, LLC",,,"1201 MAIN STREET",,"BATON ROUGE","LA","70802",,,,,,,,,,,,,,,,,,"721471187","2257667400","541330","PROVIDENCE ENGINEERING & ENVIRONMENTAL GROUP, LLC",,"1201 MAIN STREET",,"BATON ROUGE","LA","70802",,,,,,,"721471187","2257667400",,,,"2011-10-06T17:18:16-0500","DAVID WINKLER",,,,,145,150,6,7,163,0,163,127,7,,"2A2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007084500P040664241456001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAMES A. DAVIS, JR., DDS, PA PROFIT SHARING PLAN","001","1982-07-01","JAMES A. DAVIS, JR., DDS, PA",,,"3330 CAPITAL OAKS DRIVE",,"TALLAHASSEE","FL","323084513",,,,,,,,,,,,,,,,,,"592101062","8508785141","621210","JAMES A. DAVIS, JR., DDS, PA",,"3330 CAPITAL OAKS DRIVE",,"TALLAHASSEE","FL","323084513",,,,,,,"592101062","8508785141",,,,"2011-10-07T08:46:51-0500","JAMES A. DAVIS, JR., DDS","2011-10-07T08:46:51-0500","JAMES A. DAVIS, JR., DDS",,,6,4,0,1,5,0,5,5,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007084605P030144066497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONTINENTAL ENVELOPE CORPORATION PROFIT SHARING PLAN AND TRUST","002","1972-03-27","CONTINENTAL ENVELOPE CORPORATION",,,"1700 AVERILL ROAD",,"GENEVA","IL","60134",,,,,,,,,,,,,,,,,,"362125308","6302577038","322200","CONTINENTAL ENVELOPE CORPORATION",,"1700 AVERILL ROAD",,"GENEVA","IL","60134",,,,,,,"362125308","6302577038",,,,"2011-10-07T08:45:14-0500","FRED MARGULIES",,,,,101,91,0,6,97,0,97,93,0,,"2E2F2G2J2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007095401P040147649057001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"BAY SHORE ANIMAL HOSPITAL CASH BALANCE PLAN","002","2005-01-01","BAY SHORE ANIMAL HOSPITAL",,,"202 EAST MAIN STREET",,"BAY SHORE","NY","11706",,,,,,,,,,,,,,,,,,"113261578","6316650004","541940","BAY SHORE ANIMAL HOSPITAL",,"202 EAST MAIN STREET",,"BAY SHORE","NY","11706",,,,,,,"113261578","6316650004",,,,"2011-10-07T09:52:42-0500","STEVEN DRATCH",,,,,9,0,0,0,0,0,0,,0,,"1A1C",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007093111P040664351648001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"PRIMUS ELECTRONICS CORP PROFIT SHARING PLAN AND TRUST","001","1986-01-01","PRIMUS ELECTRONICS, CORP.",,,"4180 SAND RIDGE RD",,"MORRIS","IL","60450",,,,,,,"4180 SAND RIDGE RD",,"MORRIS","IL","60450",,,,,,,"363132808",,"335900","MICHAEL GREENWALD","PRIMUS ELECTRONICS CORP","4180 SAND RIDGE RD",,"MORRIS","IL","60450",,,,,,,"363132808",,,,,"2011-10-06T09:29:25-0500","MICHAEL GREENWALD","2011-10-06T09:29:25-0500","MICHAEL GREENWALD","2011-10-06T09:29:25-0500","KENNETH S JASZCZAK",26,21,0,0,21,0,21,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111006125831P030667545808001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHN W. HERTZIG 401(K) PROFIT SHARING PLAN","001","1986-01-01","JOHN W. HERTZIG",,,"9267 EAST HIGHWAY 26",,"MOKELUMNE HILL","CA","95245",,,,,,,,,,,,,,,,,,"942889182","2092861234","238900","JOHN W. HERTZIG",,"9267 EAST HIGHWAY 26",,"MOKELUMNE HILL","CA","95245",,,,,,,"942889182","2092861234",,,,"2011-10-06T12:57:43-0500","WARREN HUTSON",,,,,10,7,0,2,9,0,9,8,0,,"2E2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007074513P030669750096002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KIRBY SERVICES,LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","KIRBY SERVICES, LLC",,,"950 STEPHENSON HWY, SUITE 208",,"TROY","MI","48083",,,,,,,,,,,,,,,,,,"200388983","2482900500","541330","KIRBY SERVICES, LLC",,"950 STEPHENSON HWY, SUITE 208",,"TROY","MI","48083",,,,,,,"200388983","2482900500",,,,"2011-10-03T12:01:00-0500","PATRICK KIRBY",,,,,102,136,0,1,137,0,137,15,,,"2E2G2J2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007101840P040147660081001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"VNA OF RHODE ISLAND 403(B) SAVINGS PLAN","001","2002-01-01","VNA OF RHODE ISLAND",,,"475 KILVERT STREET",,"WARWICK","RI","02886",,,,,,,,,,,,,,,,,,"222505801","4015744952","621610","VNA OF RHODE ISLAND",,"475 KILVERT STREET",,"WARWICK","RI","02886",,,,,,,"222505801","4015744952",,,,"2011-09-30T14:12:40-0500","JANE E CREAMER","2011-09-30T14:12:40-0500","JANE E CREAMER",,,201,141,0,51,192,0,192,141,0,,"2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006163856P030668083856001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAREFREE LANDSCAPING 401K RETIREMENT PLAN","001","2002-05-01","CAREFREE LANDSCAPING, INC.",,,"22049 SOUTH HOWELL DRIVE",,"NEW LENNOX","IL","60451",,,,,,,"22049 SOUTH HOWELL DRIVE",,"NEW LENNOX","IL","60451",,,,,,,"363791228","8154623300","561730","CAREFREE LANDSCAPING, INC.",,"22049 SOUTH HOWELL DRIVE",,"NEW LENNOX","IL","60451",,,,,,,"363791228","8154623300",,,,"2011-10-06T16:37:10-0500","MICHAEL STRICK",,,,,37,50,0,6,56,0,56,8,0,,"2E2F2G2J2K",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007094533P030021204290001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ACUSPHERE, INC. 401(K) PLAN","001","1996-01-01","ACUSPHERE, INC.",,,"99 HAYDEN AVENUE","SUITE 385","LEXINGTON","MA","02421",,,,,,,"99 HAYDEN AVENUE","SUITE 385","LEXINGTON","MA","02421",,,,,,,"043208947","6176488800","339900","ACUSPHERE, INC.",,"99 HAYDEN AVENUE","SUITE 385","LEXINGTON","MA","02421",,,,,,,"043208947","6176488800",,,,"2011-10-07T09:40:38-0500","KATHLEEN THERIAULT",,,,,74,4,0,32,36,0,36,36,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007081547P040147588865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAURICE H. ECKERT & SONS, INC. PROFIT SHARING PLAN","002","1973-12-28","MAURICE H. ECKERT & SONS, INC.",,,"700 EAST 4795 NORTH",,"BUHL","ID","83316",,,,,,,,,,,,,,,,,,"820245772","2085438904","112120","MAURICE H. ECKERT & SONS, INC.",,"700 EAST 4795 NORTH",,"BUHL","ID","83316",,,,,,,"820245772","2085438904",,,,"2011-10-07T08:11:11-0500","ARMAND ECKERT",,,,,8,7,0,1,8,0,8,8,0,,"2E3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006162241P030021141106001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"SPARTON MEDICAL SYSTEMS COLORADO LLC 401(K) PLAN","001","1996-04-01","SPARTON MEDICAL SYSTEMS COLORADO, LLC",,,"4300 GODDING HOLLOW PARKWAY",,"FREDERICK","CO","80504",,,,,,,,,,,,,,,,,,"272675861","8477625803","339110","SPARTON MEDICAL SYSTEMS COLORADO, LLC",,"4300 GODDING HOLLOW PARKWAY",,"FREDERICK","CO","80504",,,,,,,"272675861","8477625803","DELPHI MEDICAL SYSTEMS CORPORATION","270791552","001","2011-10-06T16:20:04-0500","LARRY BRAND",,,,,169,0,0,0,0,0,0,0,0,,"3D2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006163200P040147230257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALL NIPPON AIRWAYS GROUP EAP PLAN","503","2006-10-01","ALL NIPPON AIRWAYS",,,"2050 WEST 190TH STREET, SUITE 100",,"TORRANCE","CA","90504",,,,,,,,,,,,,,,,,,"953991534","3107823000","481000","ALL NIPPON AIRWAYS",,"2050 WEST 190TH STREET, SUITE 100",,"TORRANCE","CA","90504",,,,,,,"953991534","3107823000",,,,"2011-10-06T16:31:21-0500","NORIKO YOSHIMURA","2011-10-06T16:31:21-0500","HIROTAKA HATTORI",,,186,186,0,0,186,,,,,,,"4A4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007085049P030144068641001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"COMPLETERX VISION PLAN","502","2005-01-01","COMPLETE RX, LTD.",,,"3100 SOUTH GESSNER ROAD, SUITE 640",,"HOUSTON","TX","77063",,,,,,,,,,,,,,,,,,"760558688","7133551196","446110","COMPLETE RX, LTD.",,"3100 SOUTH GESSNER ROAD, SUITE 640",,"HOUSTON","TX","77063",,,,,,,"760558688","7133551196",,,,"2011-10-07T08:49:57-0500","NIKKI DEROCHE","2011-10-07T08:49:57-0500","TERRY ANDRUS",,,201,0,0,0,0,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007103904P030021209522001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"GEORGE F SHAW RETIREMENT PLAN","004","1976-12-31","GEORGE F SHAW","BRUSH SUPPLY",,"672 RIFORD ROAD",,"GLEN ELLYN","IL","60137",,,,,,,"672 RIFORD ROAD",,"GLEN ELLYN","IL","60137",,,,,,,"264705613","6304694273","423990","GEORGE F SHAW",,"672 RIFORD ROAD",,"GLEN ELLYN","IL","60137",,,,,,,"264705613","6304694273",,,,"2011-10-07T08:52:28-0500","GEORGE F. SHAW",,,,,1,0,0,,0,,0,0,0,,"2E3B",,"0",,"1",,"0",,"1",,"0",,,,"1","0",,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007103906P040147672161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOBILE PAINT MANUFACTURING COMPANY OF DELAWARE, IN","003","1966-12-31","MOBILE PAINT MANUFACTURING CO.",,,"PO BOX 717",,"THEODORE","AL","36590",,,,,,,,,,,,,,,,,,"630143090","2514436110","325500","MOBILE PAINT MANUFACTURING CO.",,"PO BOX 717",,"THEODORE","AL","36590",,,,,,,"630143090","2514436110",,,,"2011-10-06T15:50:19-0500","JOHN R. WILSON, JR.","2011-10-06T15:50:19-0500","JOHN R. WILSON, JR.",,,189,147,1,26,174,0,174,167,7,,"2E2J2F2G2K2R3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007110953P040147692225001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SPRECKELS SUGAR COMPANY CALIFORNIA UNION EMPLOYEES PENSION PLAN","003","1969-03-01","SPRECKELS SUGAR COMPANY",,,"P O BOX 500",,"RENVILLE","MN","56284",,,,,,,"ATTN JERRY BAHMA","83550 COUNTY ROAD 21","RENVILLE","MN","56284",,,,,,,"840228800","3203298305","311300","SOUTHERN MINNESOTA BEET SUGAR COOPERATIVE","CHAIRMAN, PENSION COMMITTEE","P O BOX 500, 83550 COUNTY ROAD 21",,"RENVILLE","MN","562840500",,,,,,,"840710689","3203298305",,,,"2011-10-07T09:35:25-0500","JERRY BAHMA ON BEHALF OF PLAN ADMIN",,,,,1230,71,504,549,1124,86,1210,,1,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006165627P030047452871001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"E. AND F. FINANCIAL SERVICES, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","E. AND F. FINANCIAL SERVICES, INC.",,,"655 MARINERS ISLAND BLVD, NO 302",,"SAN MATEO","CA","94404",,,,,,,,,,,,,,,,,,"943036795","6503410800","523900","E. AND F. FINANCIAL SERVICES, INC.",,"655 MARINERS ISLAND BLVD, NO 302",,"SAN MATEO","CA","94404",,,,,,,"943036795","6503410800",,,,"2011-10-06T05:56:07-0500","WILLIAM R. FELDBRILL",,,,,5,5,,,5,,5,4,0,,"2A2E2F2H2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006165648P040048244471001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THEODORE A. FLOOR, DDS, INC. 401K PROFIT SHARING PLAN","003","2005-01-01","THEODORE A. FLOOR, DDS, INC.",,,"10055 N PORTAL AVE",,"CUPERTINO","CA","950142371",,,,,,,,,,,,,,,,,,"770221544","4082554500","621210","THEODORE A. FLOOR, DDS, INC.",,"10055 N PORTAL AVE",,"CUPERTINO","CA","950142371",,,,,,,"770221544","4082554500",,,,"2011-10-06T16:54:19-0500","THEODORE A. FLOOR, D.D.S.",,,,,7,6,0,1,7,0,7,7,,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007092324P040147622353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MORNINGSIDE MINISTRIES 401(K) PLAN","001","1981-07-01","MORNINGSIDE MINISTRIES",,,"700 BABCOCK RD",,"SAN ANTONIO","TX","78201",,,,,,,,,,,,,,,,,,"741388420","2107341069","623000","MORNINGSIDE MINISTRIES",,"700 BABCOCK RD",,"SAN ANTONIO","TX","78201",,,,,,,"741388420","2107341069",,,,"2011-10-07T09:22:36-0500","JOAN DIXON",,,,,877,711,1,37,749,1,750,346,16,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006123842P030667497616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ERNIE F ANDERSON DDS INC 401(K) PROFIT SHARING PLAN","002","1979-10-01","ERNIE F ANDERSON DDS INC",,,"16411 SHELBY COURT",,"SPRING","TX","77379",,,,,,,,,,,,,,,,,,"741890516","2813792002","621210","ERNIE F ANDERSON DDS INC",,"16411 SHELBY COURT",,"SPRING","TX","77379",,,,,,,"741890516","2813792002",,,,"2011-10-06T12:37:39-0500","ERNIE ANDERSON DDS",,,,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007104250P040147674225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PACIFIC GAS TRANSMISSION RETIREE WELFARE PLAN FOR NON BARGAINING EMPLOYEES","528","1994-07-01","GAS TRANSMISSION NORTHWEST CORP",,,,,,,,"450-1ST STREET SW",,"CALGARY","ALBERTA","CA","T2P 5H1",,,,,,,,,,,,"941512922","4039202528","221210","GAS TRANSMISSION NORTHWEST CORP",,,,,,,"450-1ST STREET SW",,"CALGARY","ALBERTA","CA","T2P 5H1","941512922","4039202528",,,,"2011-10-07T10:41:40-0500","SEAN BRETT",,,,,113,12,92,,104,,,,,,,"4A4B","0","0","1","1","0","0","1","1","0","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006174356P040147265249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DONATO J ARGUELLES, M.D., P.A. 401(K) PROFIT SHARING PLAN","001","1999-01-01","DONATO J ARGUELLES, M.D., P.A",,,"2733 PONCE DE LEON BLVD",,"CORAL GABLES","FL","331340000",,,,,,,,,,,,,,,,,,"650048002","3054448007","621111","DONATO J ARGUELLES, M.D., P.A",,"2733 PONCE DE LEON BLVD",,"CORAL GABLES","FL","331340000",,,,,,,"650048002","3054448007",,,,"2011-10-06T17:42:46-0500","MARIA ARGUELLES",,,,,7,6,0,1,7,0,7,5,0,,"2E2G",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007094642P030144096241001","2010-02-01","2011-01-31","2",,,,,,,"1",,,,,"PREMIUM OIL COMPANY INC PROFIT SHARING PLAN & TRUST","001","1986-02-01","PREMIUM OIL COMPANY INC",,,"924 FAIRVIEW AVE",,"ROCKFORD","IL","611015952",,,,,,,"924 FAIRVIEW AVE",,"ROCKFORD","IL","611015952",,,,,,,"363363160","8159633800","424700","PREMIUM OIL COMPANY INC",,"924 FAIRVIEW AVE",,"ROCKFORD","IL","611015952",,,,,,,"363363160","8159633800",,,,"2011-06-08T03:21:01-0500","KEVIN FEDELI",,,,,9,9,,,9,,9,9,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006125507P040004512435001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PENNSYLVANIA AFL-CIO PENSION FUND MONEY PURCHASE PLAN","001","1982-01-01","PENNSYLVANIA AFL-CIO",,,"319 MARKET STREET, 3RD FLOOR",,"HARRISBURG","PA","17101",,,,,,,,,,,,,,,,,,"231575065","7172389351","813000","PENNSYLVANIA AFL-CIO",,"319 MARKET STREET, 3RD FLOOR",,"HARRISBURG","PA","17101",,,,,,,"231575065","7172389351",,,,"2011-10-06T11:38:52-0500","RICHARD W BLOOMINGDALE",,,,,11,11,,2,13,,13,,,,"2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006125612P030667539792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOMERSET CAPITAL GROUP, LTD. 401K PLAN","001","2003-01-01","SOMERSET CAPITAL GROUP, LTD",,,"612 WHEELERS FARMS ROAD",,"MILFORD","CT","064611673",,,,,,,,,,,,,,,,,,"061458929","2037015100","532400","SOMERSET CAPITAL GROUP, LTD",,"612 WHEELERS FARMS ROAD",,"MILFORD","CT","064611673",,,,,,,"061458929","2037015100",,,,"2011-10-06T12:55:46-0500","ADDIE P. WILLIAMS",,,,,113,89,0,15,104,1,105,80,7,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007074657P030021192690001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CEVA BIOMUNE MEDICAL PLAN","501","2008-01-01","CEVA BIOMUNE",,,"8906 ROSEHILL ROAD",,"LENEXA","KS","66215",,,,,,,,,,,,,,,,,,"651260160","9139454411","325410","CEVA BIOMUNE",,"8906 ROSEHILL ROAD",,"LENEXA","KS","66215",,,,,,,"651260160","9139454411",,,,"2011-10-04T22:15:11-0500","GREG FURSTNER",,,,,187,198,,,198,,,,,,,"4A4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007075122P040147579121005","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"KNIGHTS OF COLUMBUS SEVERANCE BENEFIT PLAN FOR BARGAINING UNIT EMPLOYEES","505","1988-01-01","KNIGHTS OF COLUMBUS SUPREME COUNCIL",,,"1 COLUMBUS PLAZA",,"NEW HAVEN","CT","065103326",,,,,,,"1 COLUMBUS PLAZA",,"NEW HAVEN","CT","065103326",,,,,,,"060416470","2037524000","524140","KNIGHTS OF COLUMBUS SUPREME COUNCIL",,"1 COLUMBUS PLAZA",,"NEW HAVEN","CT","065103326",,,,,,,"060416470","2037524000",,,,"2011-10-07T08:38:47-0500","CHARLES E. MAURER, JR.",,,,,336,347,,,347,,,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007101237P030144112401009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ROBERT F STAUFFER MD PC PROFIT SHARING PLAN","001","1998-01-01","ROBERT F. STAUFFER, MD, PC",,,"895 E EDGEWOOD DR",,"OGDEN","UT","84403",,,,,,,,,,,,,,,,,,"870483986","8014798876","621111","ROBERT F. STAUFFER, MD, PC",,"895 E EDGEWOOD DR",,"OGDEN","UT","84403",,,,,,,"870483986","8014798876",,,,"2011-09-06T08:47:04-0500","ROBERT F. STAUFFER",,,,,2,2,,,2,,2,2,,,"2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007123234P040147740737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRABHAM OIL COMPANY 401(K) PROFIT SHARING PLAN","001","1975-07-01","BRABHAM OIL COMPANY, INC.",,,"P.O. BOX 330",,"BAMBERG","SC","29003",,,,,,,"320 MIDWAY STREET",,"BAMBERG","SC","29003",,,,,,,"570834304","8032452471","424700","BRABHAM OIL COMPANY, INC.",,"P.O. BOX 330",,"BAMBERG","SC","29003",,,,,,,"570834304","8032452471",,,,"2011-10-07T12:31:25-0500","CLARENCE B. MCCULLY",,,,,516,366,,41,407,0,407,193,27,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006162253P040147223937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUPERIOR HARDWOODS OF OHIO, INC. EMPLOYEES PROFIT SHARING PLAN & TRUST","002","1989-08-01","SUPERIOR HARDWOODS OF OHIO, INC.",,,"134 WELLSTON INDUTRIAL PARK RD",,"WELLSTON","OH","45692",,,,,,,,,,,,,,,,,,"310956867","7403845677","812990","SUPERIOR HARDWOODS OF OHIO, INC.",,"134 WELLSTON INDUTRIAL PARK RD",,"WELLSTON","OH","45692",,,,,,,"310956867","7403845677",,,,"2011-10-06T16:22:29-0500","JUNE M WALDRON",,,,,129,102,0,23,125,0,125,99,5,,"2E2F2G2J2K3B3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006161249P040147217857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VOLUNTEERS OF LEGAL SERVICE RETIREMENT PLAN","001","1990-01-01","VOLUNTEERS OF LEGAL SERVICE, INC.",,,"289 PARK AVENUE SOUTH",,"NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"133234630","2129664400","541190","VOLUNTEERS OF LEGAL SERVICE, INC.",,"289 PARK AVENUE SOUTH",,"NEW YORK","NY","10010",,,,,,,"133234630","2129664400",,,,"2011-10-06T16:12:13-0500","WILLIAM LIENHARD",,,,,8,5,0,3,8,0,8,8,0,,"2A2E2F3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006121011P030143517249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRIDGELUX, INC. 401(K) PLAN","001","2005-01-01","BRIDGELUX, INC.",,,"101 PORTOLA AVE",,"LIVERMORE","CA","94551",,,,,,,,,,,,,,,,,,"710922356","9255838677","334410","BRIDGELUX, INC.",,"101 PORTOLA AVE",,"LIVERMORE","CA","94551",,,,,,,"710922356","9255838677",,,,"2011-10-06T12:09:52-0500","CHAZ DUMAS",,,,,121,181,0,15,196,0,196,85,16,,"3D2E2J2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007104432P040147675185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"U.S. INSPECT, INC 401K PROFIT SHARING PLAN AND TRUST","001","1990-01-01","U.S. INSPECT, INC.",,,"3650 CONCORDE PARKWAY, SUITE 100",,"CHANTILLY","VA","20151",,,,,,,,,,,,,,,,,,"541424909","7032931400","541990","U.S. INSPECT, INC.",,"3650 CONCORDE PARKWAY, SUITE 100",,"CHANTILLY","VA","20151",,,,,,,"541424909","7032931400",,,,"2011-10-07T10:43:38-0500","CATHERINE J TOMFOHRDE",,,,,243,200,0,0,200,0,200,193,0,,"2E2J2F2K2G3H3D2T3J",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007101347P040664454720001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","1","0",,"MEDICAL RECRUITERS INC. RETIREMENT PLAN","001","1994-05-15","MEDICAL RECRUITERS INC.",,,"7733 FORSYTH BLVD","SUITE 670","ST. LOUIS","MO","63105",,,,,,,,,,,,,,,,,,"431667488","3142224200","541990","MEDICAL RECRUITERS INC.",,"7733 FORSYTH BLVD","SUITE 670","ST. LOUIS","MO","63105",,,,,,,"431667488","3142224200",,,,"2011-10-07T10:13:03-0500","HEIDI OBERMAN-SILBERMAN",,,,,3,3,0,0,3,0,3,3,0,,"2E2J",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006161807P040147220545001","2003-12-01","2004-11-30","2",,"0","0","0","0","0","0","0","1","0",,"DEMOCRATIC NATIONAL COMMITTEE DENTAL PLAN","502","1976-12-01","DEMOCRATIC NATIONAL COMMITTEE",,,"430 SOUTH CAPITAL STREET, SE",,"WASHINGTON","DC","20003",,,,,,,,,,,,,,,,,,"520958906","2024795100","813000","DEMOCRATIC NATIONAL COMMITTEE",,"430 SOUTH CAPITAL STREET, SE",,"WASHINGTON","DC","20003",,,,,,,"520958906","2024795100",,,,"2011-10-06T16:17:39-0500","AMANDA HOWE",,,,,146,146,0,0,146,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006162440P040048238039001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A & B ELECTRIC COMPANY INC LIFE INSURANCE PLAN","505","1995-04-01","A & B ELECTRIC COMPANY INC",,,"P.O. BOX 1265",,"MERIDIAN","MS","39302",,,,,,,"P.O. BOX 1265",,"MERIDIAN","MS","39302",,,,,,,"640560393","6014830225","238210","A & B ELECTRIC COMPANY INC",,"P.O. BOX 1265",,"MERIDIAN","MS","39302",,,,,,,"640560393","6014830225",,,,"2011-10-06T16:19:38-0500","GINA SHARMAN",,,,,76,55,,,55,,55,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006164215P040147235857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BANYAN AIR SERVICES, INC. 401(K) PLAN","001","1998-01-01","BANYAN AIR SERVICES, INC.",,,"5360 N.W. 20TH TERRACE",,"FT. LAUDERDALE","FL","33309",,,,,,,,,,,,,,,,,,"591922446","9544913170","488100","BANYAN AIR SERVICES, INC.",,"5360 N.W. 20TH TERRACE",,"FT. LAUDERDALE","FL","33309",,,,,,,"591922446","9544913170",,,,"2011-10-06T16:41:31-0500","JAMES M. BARCEL",,,,,137,134,0,10,144,0,144,77,0,,"2J2E2F2K2G3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007072548P030144028561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AURORA FINANCIAL GROUP EMPLOYEE BENEFIT PLAN","501","2006-01-01","AURORA FINANCIAL GROUP INC",,,"9 EVES DRIVE SUITE 190",,"MARLTON","NJ","08053",,,,,,,,,,,,,,,,,,"222690691","8565966200","525100","AURORA FINANCIAL GROUP INC",,"9 EVES DRIVE SUITE 190",,"MARLTON","NJ","08053",,,,,,,"222690691","8565966200",,,,"2011-10-07T07:21:08-0500","DENNIS VOGT",,,,,102,101,0,0,101,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007075554P030144043185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CURRENT BUILDERS CONSTRUCTION SERVICES INC. 401(K) PLAN","001","1996-02-01","CURRENT BUILDERS CONSTRUCTION SERVICES, INC.",,,"2251 BLOUNT ROAD",,"POMPANO BEACH","FL","33069",,,,,,,,,,,,,,,,,,"260089639","9549774211","236110","CURRENT BUILDERS CONSTRUCTION SERVICES, INC.",,"2251 BLOUNT ROAD",,"POMPANO BEACH","FL","33069",,,,,,,"260089639","9549774211",,,,"2011-10-07T07:53:18-0500","FREDERICK A COLANDREO",,,,,133,27,0,35,62,0,62,58,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006124051P030143535345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEADWATERS INCORPORATED EMPLOYEE BENEFIT PLAN","501","1998-01-01","HEADWATERS INCORPORATED",,,"10653 S. RIVER FRONT PARKWAY",,"SOUTH JORDAN","UT","84095",,,,,,,,,,,,,,,,,,"870547337","8019849400","562000","HEADWATERS INCORPORATED",,"10653 S. RIVER FRONT PARKWAY",,"SOUTH JORDAN","UT","84095",,,,,,,"870547337","8019849400",,,,"2011-10-06T12:40:34-0500","HARVEY J. NORTH",,,,,1802,1131,21,11,1163,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007083514P040147598529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDVENTURE TECHNOLOGY CORPORATION EMPLOYEES SAVINGS TRUST","001","2000-01-01","MEDVENTURE TECHNOLOGY CORPORATION",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"611191162","6207938473","339110","MEDVENTURE TECHNOLOGY CORPORATION","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"611191162","6207938473",,,,"2011-10-07T08:12:26-0500","GARY WILLIAMS",,,,,258,202,2,42,246,0,246,188,12,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006170009P040147242641004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ROSTON LAW 401(K) PLAN","001","2006-01-01","LAW OFFICES OF PEGGY A. ROSTON",,,"4241 B STREET, STE 203",,"ANCHORAGE","AK","99503",,,,,,,,,,,,,,,,,,"204067008","9075614949","541110","LAW OFFICES OF PEGGY A. ROSTON",,"4241 B STREET, STE 203",,"ANCHORAGE","AK","99503",,,,,,,"204067008","9075614949",,,,"2011-10-06T16:58:04-0500","PEGGY ROSTON",,,,,4,1,0,2,3,0,3,3,,,"2A2E2G2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007082222P040147592257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAUL, WEISS, RIFKIND, WHARTON & GARRISON BEFORE TAX PR & HEALTH CARE FL SP","506","1990-07-01","PAUL, WEISS, RIFKIND, WHARTON & GARRISON LLP",,,"1285 AVENUE OF THE AMERICAS",,"NEW YORK","NY","100196064",,,,,,,,,,,,,,,,,,"131662105","2123733000","541110","COMMITTEE ON RETIREMENT INSURANCE AND PENSIONS C/O PAUL, WEISS, ET AL",,"1285 AVENUE OF THE AMERICAS",,"NEW YORK","NY","100196064",,,,,,,"510185229","2123733000",,,,"2011-10-05T15:14:15-0500","ALAN S. HALPERIN","2011-10-05T15:14:15-0500","ALAN S. HALPERIN",,,569,574,0,0,574,,,,,,,"4A4D4E4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007090856P030021199762001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"EVERYCHILD INC 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","EVERYCHILD INC.",,,"8400 N. MOPAC NBR 201",,"AUSTIN","TX","78759",,,,,,,,,,,,,,,,,,"742995059","5123428844","624100","EVERYCHILD INC.",,"8400 N. MOPAC NBR 201",,"AUSTIN","TX","78759",,,,,,,"742995059","5123428844",,,,"2011-10-07T09:08:54-0500","EVERYCHILD INC.",,,,,8,8,0,0,8,0,8,8,0,,"2E2G2J2M2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006123411P030143530865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAPA MURPHYS 401(K) SAVINGS PLAN","001","1998-01-01","PAPA MURPHYS INTERNATIONAL, INC., A DELAWARE CORPORATION",,,"8000 N.E. PARKWAY DRIVE, SUITE 350",,"VANCOUVER","WA","98662",,,,,,,,,,,,,,,,,,"201282063","3602607272","445299","PAPA MURPHYS INTERNATIONAL, INC., A DELAWARE CORPORATION",,"8000 N.E. PARKWAY DRIVE, SUITE 350",,"VANCOUVER","WA","98662",,,,,,,"201282063","3602607272",,,,"2011-10-06T12:02:12-0500","MARYELLEN MECH",,,,,210,180,0,20,200,0,200,142,6,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007103550P030144126049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DESALES UNIVERSITY RETIREMENT PLAN","001","1965-01-01","DESALES UNIVERSITY",,"ROBERT J SNYDER","2755 STATION AVENUE",,"CENTER VALLEY","PA","18034",,,,,,,"2755 STATION AVENUE",,"CENTER VALLEY","PA","18034",,,,,,,"231653718","6102821100","611000","DESALES UNIVERSITY","ROBERT J SNYDER","2755 STATION AVENUE",,"CENTER VALLEY","PA","18034",,,,,,,"231653718","6102821100",,,,"2011-10-07T10:15:03-0500","ROBERT SNYDER",,,,,670,276,76,314,666,1,667,667,,,"2L",,"1",,,"1","1",,,,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007100008P030144102177001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"AJ-HUTSON GROUP, INC. 401(K) PROFIT SHARING PLAN","001","2008-07-16","AJ-HUTSON GROUP, INC.",,,"2413 WYNTERBROOK DRIVE",,"HIGHLANDS RANCH","CO","80126",,,,,,,,,,,,,,,,,,"262909633","3039166651","454390","AJ-HUTSON GROUP, INC.",,"2413 WYNTERBROOK DRIVE",,"HIGHLANDS RANCH","CO","80126",,,,,,,"262909633","3039166651",,,,"2011-10-07T09:45:17-0500","SUSAN JONES","2011-10-07T09:45:38-0500","SUSAN JONES",,,1,1,0,0,1,0,1,1,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007120653P040048431815001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","0","0","0","0",,"INTEGRITY, INC. SALARY AND SAVINGS PLAN","001","1996-01-01","INTEGRITY, INC.",,,"113 ST. FRANCOIS PLAZA",,"LEADINGTON","MO","63601",,,,,,,,,,,,,,,,,,"431682804","5734315040","446110","INTEGRITY, INC.",,"113 ST. FRANCOIS PLAZA",,"LEADINGTON","MO","63601",,,,,,,"431682804","5734315040",,,,"2011-10-07T12:06:37-0500","LARRY T. MCINTOSH",,,,,67,57,0,6,63,0,63,27,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007120833P030670348576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"STATE TERMITE & PEST CONTROL, INC. PROFIT SHARING PLAN","001","1995-01-01","STATE TERMITE & PEST CONTROL, INC.",,"STEVE MCKISSACK","P.O. BOX 2274",,"COLUMBUS","MS","39704",,,,,,,"P.O. BOX 2274",,"COLUMBUS","MS","39704",,,,,,,"640501070","6623283571","812990","STATE TERMITE & PEST CONTROL, INC.","STEVE MCKISSACK","P.O. BOX 2274",,"COLUMBUS","MS","39704",,,,,,,"640501070","6623283571",,,,"2011-10-06T09:39:13-0500","STEVE MCKISSACK",,,,,18,12,6,,18,,18,18,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006174643P030021146786001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DUC M. PHAM, MD, PC 401(K) PROFIT SHARING PLAN","001","2009-01-01","DUC M. PHAM, MD, PC",,,"15215 SOUTH 48TH STREET","SUITE 113","PHOENIX","AZ","85044",,,,,,,,,,,,,,,,,,"352194831","4809619299","621210","DUC M. PHAM, MD, PC",,"15215 SOUTH 48TH STREET","SUITE 113","PHOENIX","AZ","85044",,,,,,,"352194831","4809619299",,,,"2011-10-06T06:46:34-0500","DUC PHAM",,,,,8,7,,1,8,,8,7,1,,"2A2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006175946P040147273521001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"AMERICAN WAGERING, INC 401(K) PLAN","001","1997-06-01","AMERICAN WAGERING, INC",,,"675 GRIER DRIVE",,"LAS VEGAS","NV","89119",,,,,,,,,,,,,,,,,,"880344658","7026978483","713200","AMERICAN WAGERING, INC",,"675 GRIER DRIVE",,"LAS VEGAS","NV","89119",,,,,,,"880344658","7026978483",,,,"2011-10-06T17:58:48-0500","VICTOR SALERNO",,,,,181,137,0,7,144,0,144,64,0,,"2E2F2J2K2G2T3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007105012P040022096210001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE BERGE GROUP RETIREMENT SAVINGS PLAN","001","1980-02-01","BELL FORD, INC.",,,"2401 W BELL RD",,"PHOENIX","AZ","850233203",,,,,,,,,,,,,,,,,,"860372486","6028661776","441110","BELL FORD, INC.",,"2401 W BELL RD",,"PHOENIX","AZ","850233203",,,,,,,"860372486","6028661776",,,,"2011-10-06T15:32:55-0500","DAVID POLLARD","2011-10-07T10:46:54-0500","JIM KRBEC",,,763,640,0,217,857,1,858,456,36,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007100052P040147651905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMTEC, LLC 401(K) PLAN","001","2006-01-01","AMTEC, LLC",,,"902 CLINT MOORE ROAD","SUITE 235","BOCA RATON","FL","33487",,,,,,,,,,,,,,,,,,"200070079","5619999181","238900","AMTEC, LLC",,"902 CLINT MOORE ROAD","SUITE 235","BOCA RATON","FL","33487",,,,,,,"200070079","5619999181",,,,"2011-10-07T10:00:31-0500","LINDA JOHNSON",,,,,441,439,0,34,473,0,473,67,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006193435P040147312385001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HITACHI DATA SYSTEMS CORPORATION SHORT TERM DISABILITY BENEFIT PLAN","504","1989-05-01","HITACHI DATA SYSTEMS CORPORATION",,,"750 CENTRAL EXPRESSWAY",,"SANTA CLARA","CA","95050",,,,,,,,,,,,,,,,,,"942603663","4089701000","425110","HITACHI DATA SYSTEMS CORPORATION",,"750 CENTRAL EXPRESSWAY",,"SANTA CLARA","CA","95050",,,,,,,"942603663","4089701000",,,,"2011-10-06T19:34:01-0500","MELISSA KULLANDER",,,,,659,795,,,795,,,,,,,"4F","0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007073008P040147572913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REDCATS USA, INC. LIFE INSURANCE PLAN","502","1997-01-01","REDCATS USA, INC.",,,"2300 SOUTHEASTERN AVENUE",,"INDIANAPOLIS","IN","46201",,,,,,,,,,,,,,,,,,"133794198","3172663300","454110","REDCATS USA, INC.",,"2300 SOUTHEASTERN AVENUE",,"INDIANAPOLIS","IN","46201",,,,,,,"133794198","3172663300",,,,"2011-10-07T06:38:11-0500","CHARLES BURTCH","2011-10-07T07:24:46-0500","JOHN HEANEY",,,1586,1815,0,0,1815,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007092713P040147624753001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","1","0",,"PDQ COMMUNICATIONS INC DEFINED BENEFIT PENSION PLAN","001","2004-01-01","PDQ COMMUNICATIONS, INC.",,,"105 STEWART AVE.",,"GARDEN CITY","NY","115302341",,,,,,,,,,,,,,,,,,"020663930","5163547469","541990","PDQ COMMUNICATIONS, INC.",,"105 STEWART AVE.",,"GARDEN CITY","NY","115302341",,,,,,,"020663930","5163547469",,,,"2011-10-06T09:34:36-0500","JOANNE ANDRE",,,,,4,4,0,0,4,0,4,,0,,"1A1G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007093612P040664362784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SENTRY PROFESSIONAL/TRAVEL ACCIDENT DEATH AND DISMEMBERMENT PLAN","505","1955-08-01","SENTRY INSURANCE A MUTUAL COMPANY",,,"PO BOX 8020",,"STEVENS POINT","WI","54481",,,,,,,"1800 NORTH POINT DRIVE",,"STEVENS POINT","WI","54481",,,,,,,"390333950","7153466000","524150","SENTRY INSURANCE A MUTUAL COMPANY",,"PO BOX 8020",,"STEVENS POINT","WI","54481",,,,,,,"390333950","7153466000",,,,"2011-10-07T09:35:21-0500","KRISTIE GAGAS",,,,,4214,4224,0,0,4224,,,,,,,"4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006120233P030021115490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OAKLAND NURSERY, INC. EMPLOYEE 401K RETIREMENT PLAN","002","2000-01-01","OAKLAND NURSERY, INC.",,,"1156 OAKLAND PARK AVENUE",,"COLUMBUS","OH","43224",,,,,,,,,,,,,,,,,,"310860843","6142683511","111400","OAKLAND NURSERY, INC.",,"1156 OAKLAND PARK AVENUE",,"COLUMBUS","OH","43224",,,,,,,"310860843","6142683511",,,,"2011-10-06T12:02:07-0500","PAUL REINER","2011-10-06T12:02:07-0500","PAUL REINER",,,288,277,1,13,291,0,291,153,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007080631P030144048497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHARLIES DODGE, INC. & AFFILIATES 401K PLAN","001","1968-12-16","CHARLIES DODGE, INC.",,,"725 ILLINOIS AVE.",,"MAUMEE","OH","43537",,,,,,,,,,,,,,,,,,"341208271","4198930241","441110","CHARLIES DODGE, INC.",,"725 ILLINOIS AVE.",,"MAUMEE","OH","43537",,,,,,,"341208271","4198930241",,,,"2011-10-07T08:04:44-0500","MARTHA ASH","2011-10-07T08:04:44-0500","MARTHA ASH",,,201,190,2,48,240,0,240,172,1,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007082157P040147592049006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JOHN D. RITROSKY, M.D., P.A. PROFIT SHARING PLAN","001","1999-01-01","JOHN D. RITROSKY, M.D., P.A.",,,"13981 MCGREGOR BLVD SUITE 101",,"FORT MYERS","FL","33919",,,,,,,"13981 MCGREGOR BLVD SUITE 101",,"FORT MYERS","FL","33919",,,,,,,"650732066","2392758898","621111","JOHN D. RITROSKY, M.D., P.A.",,"13981 MCGREGOR BLVD SUITE 101",,"FORT MYERS","FL","33919",,,,,,,"650732066","2392758898",,,,"2011-10-05T04:02:37-0500","JOHN D RITROSKY",,,,,6,7,,1,8,,8,8,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007111138P040147693201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLOOMSBURG HOSPITAL EMPLOYEES LIFE AND DISABILITY PLAN","502","2004-01-01","BLOOMSBURG HOSPITAL",,,"549 FAIR STREET",,"BLOOMSBURG","PA","178151419",,,,,,,,,,,,,,,,,,"232193572","5703872100","622000","BLOOMSBURG HOSPITAL",,"549 FAIR ST",,"BLOOMSBURG","PA","178151419",,,,,,,"232193572","5703872100",,,,"2011-10-07T11:08:01-0500","MARY HOWE",,,,,398,465,0,0,465,,,,,,,"4B4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006123504P030143531569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MALISH CORPORATION RETIREMENT PLAN","002","1988-01-01","THE MALISH CORPORATION",,,"4260 HAMANN PARKWAY",,"WILLOUGHBY","OH","44094",,,,,,,,,,,,,,,,,,"340690321","4405107126","339900","THE MALISH CORPORATION",,"4260 HAMANN PARKWAY",,"WILLOUGHBY","OH","44094",,,,,,,"340690321","4405107126",,,,"2011-10-06T12:33:46-0500","VICKI HOFFMAN",,,,,118,88,1,9,98,0,98,95,0,,"3D2E2J2F2G2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007082822P030021196226001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HENRY, BUCHANAN, HUDSON, SUBER & CARTER, PA PROFIT SHARING PLAN","001","1977-04-01","HENRY, BUCHANAN, HUDSON, SUBER & CARTER, PA",,,"2508 BARRINGTON CIRCLE",,"TALLAHASSEE","FL","32308",,,,,,,,,,,,,,,,,,"591519396","8502222920","541110","HENRY, BUCHANAN, HUDSON, SUBER & CARTER, PA",,"2508 BARRINGTON CIRCLE",,"TALLAHASSEE","FL","32308",,,,,,,"591519396","8502222920",,,,"2011-10-07T08:28:44-0500","J. STEVEN CARTER","2011-10-07T08:28:44-0500","J. STEVEN CARTER",,,26,15,,10,25,0,25,25,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007083647P030021196898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENVIRONMENTAL SYSTEMS PRODUCTS, INC. 401(K) PROFIT SHARING PLAN","001","1991-01-01","ENVIRONMENTAL SYSTEMS PRODUCTS HOLDINGS, INC.",,,"7 KRIPES ROAD",,"EAST GRANBY","CT","06026",,,,,,,,,,,,,,,,,,"522096698","8606532100","811190","ENVIRONMENTAL SYSTEMS PRODUCTS HOLDINGS, INC.",,"7 KRIPES ROAD",,"EAST GRANBY","CT","06026",,,,,,,"522096698","8606532100",,,,"2011-10-07T08:35:59-0500","CECILIA BATISTA","2011-10-07T08:35:59-0500","CECILIA BATISTA",,,1104,922,5,150,1077,0,1077,604,141,,"2E2J2F2G2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007114106P040147711105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KERGAN BROTHERS, INC. 401(K) RETIREMENT PLAN","001","2007-01-01","KERGAN BROTHERS, INC. AND SUBSIDIARIES",,,"#3 FLAGG PLACE STE. B3",,"LAFAYETTE","LA","70508",,,,,,,,,,,,,,,,,,"720991961","3379885301","445299","KERGAN BROTHERS, INC. AND SUBSIDIARIES",,"#3 FLAGG PLACE STE. B3",,"LAFAYETTE","LA","70508",,,,,,,"720991961","3379885301",,,,"2011-10-07T11:40:53-0500","JANET HEBERT",,,,,2219,725,1,1509,2235,0,2235,1997,783,,"3D2E2J2K2F2G2S",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006170549P040022018370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN INDEPENDENT COMPANIES, INC. 401(K) PLAN","001","1997-01-01","AMERICAN INDEPENDENT COMPANIES, INC.",,,"1000 RIVER ROAD","SUITE 300","CONSHOHOCKEN","PA","19428",,,,,,,,,,,,,,,,,,"201899751","6108324940","523900","AMERICAN INDEPENDENT COMPANIES, INC.",,"1000 RIVER ROAD","SUITE 300","CONSHOHOCKEN","PA","19428",,,,,,,"201899751","6108324940",,,,"2011-10-06T14:03:15-0500","EDWARD HOBBY","2011-10-06T14:03:15-0500","BRUCE ARNESON",,,482,233,1,207,441,0,441,385,29,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006171507P030143698609001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ELECTRODYNAMIC APPLICATIONS 401 (K) PLAN","001","2005-01-01","ELECTRODYNAMIC APPLICATIONS, INC.",,,"3600 GREEN COURT, SUITE 300",,"ANN ARBOR","MI","48105",,,,,,,,,,,,,,,,,,"383479349","7347861434","541700","ELECTRODYNAMIC APPLICATIONS, INC.",,"3600 GREEN COURT, SUITE 300",,"ANN ARBOR","MI","48105",,,,,,,"383479349","7347861434",,,,"2011-10-06T17:55:22-0500","PAULETTE R. MILLER, CPA",,,,,9,8,0,0,8,0,8,8,,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006212447P030023652886001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","1","0",,"DIAGNOSTIC PATHOLOGY MEDICAL GROUP LTD PLAN","504","1999-06-01","DIAGNOSTIC PATHOLOGY MEDICAL GROUP",,,"3301 C STREET, STE 200E",,"SACRAMENTO","CA","95816",,,,,,,"3301 C STREET, STE 200E",,"SACRAMENTO","CA","95816",,,,,,,"942227764","9164476832","621111","DIAGNOSTIC PATHOLOGY MEDICAL GROUP",,"3301 C STREET, STE 200E",,"SACRAMENTO","CA","95816",,,,,,,"942227764","9164476832",,,,"2011-10-06T13:34:32-0500","THOMAS AMOTT",,,,,136,139,0,0,139,,139,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007094157P030144093985001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SATAKE USA INC. 401(K) PLAN","001","1985-04-01","SATAKE USA, INC.",,,"10905 CASH ROAD",,"STAFFORD","TX","77477",,,,,,,"10905 CASH ROAD",,"STAFFORD","TX","77477",,,,,,,"510277211","2812763600","333100","SATAKE USA, INC.",,"10905 CASH ROAD",,"STAFFORD","TX","77477",,,,,,,"510277211","2812763600",,,,"2011-10-07T09:39:44-0500","CHARLENE KLEIN",,,,,142,121,0,22,143,0,143,134,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007105246P040147681153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UTILITIES, INC. 401K PLAN","003","1999-01-01","UTILITIES, INC.",,,"2335 SANDERS RD.",,"NORTHBROOK","IL","600626108",,,,,,,,,,,,,,,,,,"362588579","8474986440","221300","UTILITIES, INC.",,"2335 SANDERS RD.",,"NORTHBROOK","IL","600626108",,,,,,,"362588579","8474986440",,,,"2011-10-07T10:52:03-0500","JAMES P. DEVINE",,,,,585,419,1,159,579,1,580,527,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007100206P040147652273007","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"REDIGER & ASSOCIATES, INC MONEY PURCHASE PLAN","001","1985-01-12","REDIGER & ASSOCIATES, INC",,,"7132 SOUTH STREET",,"LINCOLN","NE","68506",,,,,,,,,,,,,,,,,,"470677897","4024848568","423300","REDIGER & ASSOCIATES, INC",,"7132 SOUTH STREET",,"LINCOLN","NE","68506",,,,,,,"470677897","4024848568",,,,"2011-09-30T04:46:54-0500","ROBERT C. REDIGER",,,,,2,2,,,2,,2,0,,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007100206P040147652273010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MARK SMITH DDS PC PROFIT SHARING/401(K) PLAN","001","2003-01-01","MARK SMITH DDS PC",,,"1819 61 AVENUE, #102",,"GREELEY","CO","80634",,,,,,,,,,,,,,,,,,"841333232","9703567474","621210","MARK SMITH DDS PC",,"1819 61 AVENUE, #102",,"GREELEY","CO","80634",,,,,,,"841333232","9703567474",,,,"2011-10-07T03:58:57-0500","MARK SMITH",,,,,13,13,,,13,,13,7,,,"2E2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007121042P040022102946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JENSEN TIRE CO. 401(K) PROFIT SHARING PLAN","002","1974-01-01","JENSEN TIRE CO.",,,"10609 I STREET",,"OMAHA","NE","68127",,,,,,,,,,,,,,,,,,"470552707","4023392917","441300","JENSEN TIRE CO.",,"10609 I STREET",,"OMAHA","NE","68127",,,,,,,"470552707","4023392917",,,,"2011-10-06T15:22:21-0500","MATTHEW D. JENSEN","2011-10-06T15:22:21-0500","MATTHEW D. JENSEN",,,145,116,3,27,146,0,146,110,12,,"2E2G2J2K3D3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006175149P040147269729001","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"PENN FURNITURE INC 401 (K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","PENN FURNITURE INC",,,"4014 N DUPONT HIGHWAY",,"NEW CASTLE","DE","19720",,,,,,,"4014 N DUPONT HIGHWAY",,"NEW CASTLE","DE","19720",,,,,,,"203515526",,"442110","PENN FURNITURE INC",,"4014 N DUPONT HIGHWAY",,"NEW CASTLE","DE","19720",,,,,,,"203515526",,,,,"2011-10-05T17:49:47-0500","JOHN TRAVIS",,,,,2,0,0,0,0,0,0,0,2,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006180443P040662621984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTH COAST REPERTORY 403B PLAN","001","2001-01-01","SOUTH COAST REPERTORY INC",,,"655 TOWN CENTER DR",,"COSTA MESA","CA","926261918",,,,,,,,,,,,,,,,,,"956122708","7147085500","711100","SOUTH COAST REPERTORY INC",,"655 TOWN CENTER DR",,"COSTA MESA","CA","926261918",,,,,,,"956122708","7147085500",,,,"2011-10-06T18:04:42-0500","LORI MONNIER",,,,,69,70,0,21,91,0,91,87,1,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006144203P040147158993001","2008-08-01","2009-07-31","2",,"0","0","0","0","0","0","0","1","0",,"DEMOCRATIC NATIONAL COMMITTEE HEALTH AND WELFARE PLAN","501","1976-08-01","DEMOCRATIC NATIONAL COMMITTEE",,,"430 SOUTH CAPITAL STREET, SE",,"WASHINGTON","DC","20003",,,,,,,,,,,,,,,,,,"520958906","2024795100","813000","DEMOCRATIC NATIONAL COMMITTEE",,"430 SOUTH CAPITAL STREET, SE",,"WASHINGTON","DC","20003",,,,,,,"520958906","2024795100",,,,"2011-10-06T14:33:08-0500","AMANDA HOWE",,,,,202,178,0,0,178,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007155547P030144307169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INTERNATIONAL CARS EMPLOYEE STOCK OWNERSHIP PLAN","002","2000-01-01","INTERNATIONAL CARS LTD., INC.",,,"382 NEWBURY STREET",,"DANVERS","MA","01923",,,,,,,,,,,,,,,,,,"042550058","9785395000","441110","INTERNATIONAL CARS LTD., INC.",,"382 NEWBURY STREET",,"DANVERS","MA","01923",,,,,,,"042550058","9785395000",,,,"2011-10-07T15:54:23-0500","MARSHALL JESPERSEN",,,,,273,155,11,94,260,0,260,260,19,,"2P3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007155557P040665358128001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCOR U.S. CORPORATION SHORT-TERM DISABILITY PLAN","517","1994-01-01","SCOR U.S. CORPORATION",,,"ONE SEAPORT PLAZA","199 WATER STREET","NEW YORK","NY","10038",,,,,,,,,,,,,,,,,,"751791342","2128849001","524290","SCOR U.S. CORPORATION",,"ONE SEAPORT PLAZA","199 WATER STREET","NEW YORK","NY","10038",,,,,,,"751791342","2128849001",,,,"2011-10-07T15:55:32-0500","DAISY HOLGUIN",,,,,211,227,0,0,227,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007171234P030144345265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WESTERN COMPANY, A PARTNERSHIP MONEY PURCHASE PENSION PLAN","002","1989-01-01","WESTERN COMPANY, A PARTNERSHIP",,,"6984 E. OVERLOOK TERRACE",,"ANAHEIM","CA","92807",,,,,,,"6984 E. OVERLOOK TERRACE",,"ANAHEIM","CA","92807",,,,,,,"330329917","7142818818","531390","WESTERN COMPANY, A PARTNERSHIP",,"6984 E. OVERLOOK TERRACE",,"ANAHEIM","CA","92807",,,,,,,"330329917","7142818818",,,,"2011-10-07T17:12:22-0500","JOSHUA LEE",,,,,2,2,0,0,2,0,2,2,0,,"2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006151835P040662233184001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KEN CARYL GLASS, INC. 401(K) PLAN","001","1995-01-01","KEN CARYL GLASS, INC.",,,"C/O RPS PLAN ADMINISTRATORS","2851 S. PARKER ROAD, STE. 230","AURORA","CO","80014",,,,,,,,,,,,,,,,,,"841036870","3037913122","238100","KEN CARYL GLASS, INC.",,"12450 N. MEAD WAY",,"LITTLETON","CO","80125",,,,,,,"841036870","3037913122",,,,"2011-10-06T15:08:20-0500","BETH CAVANAUGH","2011-10-06T15:08:20-0500","BETH CAVANAUGH",,,130,81,0,27,108,0,108,89,8,,"3D2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007171645P030004286003001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ISAGENIX INTERNATIONAL LLC 401K PROFIT SHARING PLAN AND TRUST","001","2004-09-10","ISAGENIX INTERNATIONAL LLC",,,"2225 SOUTH PRICE ROAD",,"CHANDLER","AZ","85286",,,,,,,,,,,,,,,,,,"721532513","4806365663","311900","ISAGENIX INTERNATIONAL LLC",,"2225 SOUTH PRICE ROAD",,"CHANDLER","AZ","85286",,,,,,,"721532513","4806365663",,,,"2011-10-07T17:15:59-0500","KEVIN ADAMS",,,,,277,283,0,41,324,0,324,285,0,,"2G2J2K3D2S2R",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006133538P030143576017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REDDY MEDICAL GROUP, INC. DEFINED BENEFIT PLAN","001","2003-01-01","REDDY MEDICAL GROUP, INC.",,,"11539 N SLOAN AVE",,"FRESNO","CA","93730",,,,,,,"11539 N SLOAN AVE",,"FRESNO","CA","93730",,,,,,,"770476968","5594460409","621111","REDDY MEDICAL GROUP, INC.",,"11539 N SLOAN AVE",,"FRESNO","CA","93730",,,,,,,"770476968","5594460409",,,,"2011-10-06T13:16:39-0500","STEPHEN OMALLEY",,,,,3,3,0,0,3,0,3,0,0,,"1A3D",,"0","1","0","0","0","1","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006134021P030143578401001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"LAZARD EQUITY ACCOUNT - SA55E1","066",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-06T13:26:19-0500","JOHN G. PHARO","2011-10-06T13:26:19-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111007172748P030144351377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VITAL NETWORK SERVICES, INC. 401(K) PLAN","001","2002-01-01","VITAL NETWORK SERVICES, INC.",,,"14520 MCCORMICK DRIVE",,"TAMPA","FL","33626",,,,,,,,,,,,,,,,,,"770578166","8138185134","541519","VITAL NETWORK SERVICES, INC.",,"14520 MCCORMICK DRIVE",,"TAMPA","FL","33626",,,,,,,"770578166","8138185134",,,,"2011-10-07T17:26:47-0500","JERREL KEE",,,,,126,135,0,22,157,0,157,121,0,,"2E2F2G2J2K2S2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111009074521P040148780753001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PENSION PLAN FOR EMPLOYEES OF TENNESSEE ELECTRO MINERALS ALUMINUM BRICK & GLASS AFL/CIO","002","1990-08-01","TENNESSEE ELECTRO MINERALS INC",,,"100 MANSELL COURT EAST","SUITE 615","ROSWELL","GA","30076",,,,,,,"100 MANSELL COURT EAST","SUITE 615","ROSWELL","GA","30076",,,,,,,"521692622","7702257917","327100","TENNESSEE ELECTRO MINERALS INC",,"100 MANSELL COURT EAST","SUITE 615","ROSWELL","GA","30076",,,,,,,"521692622","7702257917",,,,"2011-10-07T13:18:53-0500","DELTA MITCHUM",,,,,128,46,15,61,122,6,128,,,,"1B1G3H",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-09","Filed with authorized/valid electronic signature",, "20111006134405P030021127282001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRST BUSINESS FINANCIAL SERVICES 401(K) PLAN","002","1985-10-01","FIRST BUSINESS FINANCIAL SERVICES",,,"401 CHARMANY DRIVE",,"MADISON","WI","53719",,,,,,,,,,,,,,,,,,"391576570","6082388008","522110","FIRST BUSINESS FINANCIAL SERVICES",,"401 CHARMANY DRIVE",,"MADISON","WI","53719",,,,,,,"391576570","6082388008",,,,"2011-10-06T13:43:26-0500","KARIN CRETNEY","2011-10-06T13:43:26-0500","COREY CHAMBAS",,,171,132,0,39,171,0,171,152,9,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007145401P040147842897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DORMONT MANUFACTURING PROFIT SHARING PLAN AND TRUST","001","1959-06-15","DORMONT MANUFACTURING COMPANY",,,"6015 ENTERPRISE DRIVE",,"EXPORT","PA","15632",,,,,,,,,,,,,,,,,,"250925475","7247334800","331200","DORMONT MANUFACTURING COMPANY",,"6015 ENTERPRISE DRIVE",,"EXPORT","PA","15632",,,,,,,"250925475","7247334800",,,,"2011-10-07T14:53:26-0500","KAREN R. SARNESO","2011-10-07T14:53:26-0500","KAREN R. SARNESO",,,212,170,0,26,196,0,196,191,2,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007154716P040147877617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADVANCE/NEWHOUSE PARTNERSHIP LIFE INSURANCE PLAN","502","2003-01-01","ADVANCE/NEWHOUSE PARTNERSHIP",,,"5000 CAMPUSWOOD DRIVE",,"EAST SYRACUSE","NY","13057",,,,,,,"5000 CAMPUSWOOD DRIVE",,"EAST SYRACUSE","NY","13057",,,,,,,"161466735","3154384100","515210","ADVANCE/NEWHOUSE PARTNERSHIP",,"5000 CAMPUSWOOD DRIVE",,"EAST SYRACUSE","NY","13057",,,,,,,"161466735","3154384100",,,,"2011-10-05T08:53:05-0500","CHRISTINE CARRENO","2011-10-07T15:37:13-0500","WILLIAM FUTERA",,,8184,8129,0,0,8129,,8129,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007164007P030670995424001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ACE COMPANY, INC. 401K PLAN","001","1989-01-01","ACE COMPANY, INC.",,,"4095 GEKELER LANE",,"BOISE","ID","837165233",,,,,,,,,,,,,,,,,,"820252434","2083870465","333610","ACE COMPANY, INC.",,"4095 GEKELER LANE",,"BOISE","ID","837165233",,,,,,,"820252434","2083870465",,,,"2011-10-07T16:39:41-0500","SID SULLIVAN",,,,,106,96,0,11,107,0,107,72,5,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007165923P040147914545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHAM M. VENGURLEKAR, M.D., P.C. DEFINED BENEFIT PENSION PLAN","002","2003-01-01","SHAM M. VENGURLEKAR, M.D., P.C.",,,"10200 N. 92ND STREET, SUITE 200",,"SCOTTSDALE","AZ","852584543",,,,,,,,,,,,,,,,,,"860912274","4803142288","621111","SHAM M. VENGURLEKAR, M.D., P.C.",,"10200 N. 92ND STREET, SUITE 200",,"SCOTTSDALE","AZ","852584543",,,,,,,"860912274","4803142288",,,,"2011-10-07T16:57:50-0500","SHAM M. VENGURLEKAR",,,,,3,1,0,2,3,0,3,,0,,"1A1I3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006140017P040662016976001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRISTOL HOSPITAL INC PENSIONERS LIFE PLAN","506","1965-07-01","BRISTOL HOSPITAL AND HEALTH CARE GROUP",,"HUMAN RESOURCES","PO BOX 977",,"BRISTOL","CT","06011",,,,,,,,,,,,,,,,,,"060646559","8605853000","622000","BRISTOL HOSPITAL AND HEALTH CARE GROUP","HUMAN RESOURCES","PO BOX 977",,"BRISTOL","CT","06011",,,,,,,"060646559","8605853000",,,,"2011-10-06T14:00:04-0500","MEGHAN HOPPING",,,,,301,,308,,308,,,,,,,"4L","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006132025P030667597872001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PPFA RETIREMENT PLAN","003","2001-07-01","AFFILIATES RISK MANAGEMENT SERVICES, INC.",,,"434 WEST 33RD STREET 10TH FLOOR",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"134167849","2122614410","621410","VICE PRESIDENT-HUMAN RESOURCES PPFA, INC.",,"434 WEST 33RD STREET 12TH FLOOR",,"NEW YORK","NY","10001",,,,,,,"131644147","2122617800",,,,"2011-10-06T13:19:36-0500","GEORGENE RICHARDS","2011-10-06T13:17:47-0500","JOAN KOENIG",,,19,25,0,1,26,0,26,25,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006143434P040147153585009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"T STEVE JOYCE CHARTERED 401K PROFIT SHARING PLAN","002","2003-06-15","T STEVE JOYCE, CHARTERED",,,"PO BOX 168",,"BOISE","ID","83701",,,,,,,,,,,,,,,,,,"820425086","2083426898","541110","T STEVE JOYCE CHARTERED",,"PO BOX 168",,"BOISE","ID","83701",,,,,,,"820425086","2083426898",,,,"2011-10-06T14:31:31-0500","T STEVE JOYCE",,,,,2,,1,1,2,,2,2,,,"2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007160523P040022131298001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAMES D. MORRISSEY, INC. 401(K) PLAN","002","1996-01-01","JAMES D. MORRISSEY, INC.",,,"9119 FRANKFORD AVENUE",,"PHILADELPHIA","PA","19114",,,,,,,,,,,,,,,,,,"231268801","2153338000","236200","JAMES D. MORRISSEY, INC.",,"9119 FRANKFORD AVENUE",,"PHILADELPHIA","PA","19114",,,,,,,"231268801","2153338000",,,,"2011-10-07T16:05:03-0500","ALICE MEEHAN",,,,,139,122,0,19,141,0,141,95,0,,"2E2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111010085838P030677981008001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"CF LARGE CAP STOCK INDEX FUND","001",,"THE BANK OF NEW YORK MELLON",,,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,,,,,,,,,,,,"256380290","4122366165",,"THE BANK OF NEW YORK MELLON",,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,"256380290","4122366165",,,,,,,,"2011-10-10T08:58:29-0500","JEFFREY VAUGHN",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010085913P030145779681001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"W.R. GRACE & CO. RETIREMENT PLAN FOR CURTIS BAY PLANT","036","1972-01-01","W.R. GRACE & CO. -CT",,,"7500 GRACE DRIVE, BLDG. ONE",,"COLUMBIA","MD","21044",,,,,,,,,,,,,,,,,,"135114230","4105314000","325100","ADMINISTRATIVE COMMITTEE",,"7500 GRACE DRIVE, BLDG. ONE",,"COLUMBIA","MD","21044",,,,,,,"132880089","4105314000",,,,"2011-10-10T08:54:50-0500","PAMELA WAGONER","2011-10-10T08:54:50-0500","PAMELA WAGONER",,,643,353,195,43,591,49,640,,1,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006130647P030143556881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNION FRAMING, INC. PROFIT SHARING PLAN","001","1998-01-01","UNION FRAMING, INC.",,,"1150 BUSINESS PARK DR., #105",,"DIXON","CA","95620",,,,,,,,,,,,,,,,,,"943280189","7076788601","236110","UNION FRAMING, INC.",,"1150 BUSINESS PARK DR., #105",,"DIXON","CA","95620",,,,,,,"943280189","7076788601",,,,"2011-10-06T13:05:22-0500","WARREN HUTSON",,,,,3,3,0,0,3,0,3,3,0,,"2E2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006131508P040021992082004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SWETLAND ANESTHESIA ASSOCIATES, PC, 401K PROFIT SHARING PLAN & TRUST","001","1997-01-01","SWETLAND ANESTHESIA ASSOC., PC",,,"1703 LAKESHORE DRIVE",,"KLAMATH FALLS","OR","97601",,,,,,,,,,,,,,,,,,"911777788","5418915183","621111","SWETLAND ANESTHESIA ASSOC., PC",,"1703 LAKESHORE DRIVE",,"KLAMATH FALLS","OR","97601",,,,,,,"911777788","5418915183",,,,"2011-09-30T15:00:39-0500","ERIC SWETLAND","2011-09-30T15:00:45-0500","ERIC SWETLAND",,,2,2,0,0,2,0,2,2,,,"2G2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006132508P030021125074001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1",,,,,"AURORA MENTAL HEALTH RETIREMENT SAVINGS PLAN","001","1997-01-01","AURORA COMPREHENSIVE COMMUNITY MENTAL HEALTH",,,"11059 E BETHANY DR STE 200",,"AURORA","CO","800142637",,,,,,,,,,,,,,,,,,"840683346","3036172300","622000","AURORA COMPREHENSIVE COMMUNITY MENTAL HEALTH",,"11059 E BETHANY DR STE 200",,"AURORA","CO","800142637",,,,,,,"840683346","3036172300",,,,"2011-10-06T13:25:04-0500","DAN DAWSON","2011-10-06T13:25:04-0500","DAN DAWSON",,,309,313,0,26,339,0,339,179,0,,"2F2G2L2M2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006151515P030143636593007","2010-02-01","2011-01-31","2",,,,,,,,"1",,,,"COMMUNICATIONS INTL INC. FLEXIBLE BENEFITS PLAN","501","1995-02-01","COMMUNICATIONS INTERNATIONAL, INC.",,,"4450 HIGHWAY US 1",,"VERO BEACH","FL","32967",,,,,,,,,,,,,,,,,,"591885709","7725695355","811210","COMMUNICATIONS INTERNATIONAL, INC.",,"4450 HIGHWAY US 1",,"VERO BEACH","FL","32967",,,,,,,"591885709","7725695355",,,,"2011-10-06T16:10:20-0500","SUSAN ALMAREZ",,,,,133,130,,,130,,,,,,,"4D4A4B4H4Q",,,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006150007P040147172337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HERITAGE FINANCIAL GROUP EMPLOYEE STOCK OWNERSHIP PLAN","003","2005-01-01","HERITAGE FINANCIAL GROUP, INC.",,,"200 LOFTUS DRIVE",,"ALBANY","GA","31705",,,,,,,,,,,,,,,,,,"383814230","2298783303","522110","HERITAGE FINANCIAL GROUP, INC.",,"200 LOFTUS DRIVE",,"ALBANY","GA","31705",,,,,,,"383814230","2298783303","HERITAGE FINANCIAL GROUP","580679647","003","2011-10-06T14:54:20-0500","SANDRA F. DRIVER",,,,,169,153,0,3,156,0,156,152,4,,"2P",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006150445P040147175905001","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"KIVEL & HOWARD LLP 401K PROFIT SHARING PLAN","001","2006-01-01","KIVEL & HOWARD, LLP",,,"PO BOX 40044",,"PORTLAND","OR","97240",,,,,,,,,,,,,,,,,,"352268602","5033811634","541110","KIVEL & HOWARD LLP",,"PO BOX 40044",,"PORTLAND","OR","97240",,,,,,,"352268602","5033811634",,,,"2011-10-06T13:48:56-0500","LUCY KIVEL",,,,,21,23,,,23,,23,,,,"3E3B2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007150403P040665235168001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"LIBERTY GROUP RETIREMENT PLAN","001","1997-05-01","PEORIA PONTIAC - GMC, INC.",,,"8660 WEST BELL ROAD",,"PEORIA","AZ","853823709",,,,,,,,,,,,,,,,,,"860819236","6239335000","441110","PEORIA PONTIAC - GMC, INC.",,"8660 WEST BELL ROAD",,"PEORIA","AZ","853823709",,,,,,,"860819236","6239335000",,,,"2011-10-07T15:00:39-0500","DANA MOORE","2011-10-07T15:00:39-0500","DANA MOORE",,,238,220,0,5,225,0,225,62,0,,"2E2F2G2J2K3H2T",,"1",,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007162012P040022133330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OPTION III, INC. RETIREMENT PLAN","001","1989-01-01","OPTION III, INC.",,,"10430 J ST",,"OMAHA","NE","68127",,,,,,,,,,,,,,,,,,"470706148","4025937660","423800","OPTION III, INC.",,"10430 J ST",,"OMAHA","NE","68127",,,,,,,"470706148","4025937660",,,,"2011-10-07T16:16:18-0500","ROBERT CANN JR.",,,,,14,11,0,3,14,0,14,14,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007173041P030144353185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TMP WORLDWIDE ADVERTISING AND COMMUNICATIONS, LLC HEALTH AND WELFARE BENEFITS PLAN","501","2006-09-01","TMP WORLDWIDE ADVERTISING AND COMMUNICATIONS, LLC",,,"205 HUDSON STREET 5TH FLOOR",,"NEW YORK","NY","10013",,,,,,,,,,,,,,,,,,"205269871","6466132108","541800","TMP WORLDWIDE ADVERTISING AND COMMUNICATIONS, LLC",,"205 HUDSON STREET 5TH FLOOR",,"NEW YORK","NY","10013",,,,,,,"205269871","6466132108",,,,"2011-10-07T17:30:20-0500","EMERSON MOORE",,,,,458,498,0,0,498,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111010090016P040672487584001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"C R ENGLAND INC. PREMIUM ONLY PLAN","501","2009-01-01","C R ENGLAND",,,"4701 WEST 2100 SOUTH",,"SALT LAKE CITY","UT","84120",,,,,,,,,,,,,,,,,,"870257969","8019976755","484120","C R ENGLAND",,"4701 WEST 2100 SOUTH",,"SALT LAKE CITY","UT","84120",,,,,,,"870257969","8019976755",,,,"2011-10-10T09:59:59-0500","JOHN GOGO",,,,,4669,4669,0,0,4669,0,4669,0,,,,"4A4D","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111006135351P030143584785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE KAPLAN, INC. TAX DEFERRED SAVINGS PLAN","023","1969-01-15","THE WASHINGTON POST COMPANY",,,"1150 15TH STREET NW",,"WASHINGTON","DC","20071",,,,,,,,,,,,,,,,,,"530182885","2023346697","511110","THE SAVINGS PLAN COMMITTEE",,"1150 15TH STREET NW",,"WASHINGTON","DC","20071",,,,,,,"530182885","2023346697",,,,"2011-10-06T13:53:27-0500","DENISE DEMETER",,,,,13261,11242,1,1991,13234,2,13236,5022,0,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006153141P040662265760001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"GREENWASTE RECOVERY, INC. RETIREMENT PLAN","001","1991-11-01","GREENWASTE RECOVERY, INC.",,,"1500 BERGER DRIVE",,"SAN JOSE","CA","951121402",,,,,,,,,,,,,,,,,,"680249188","4082834800","562000","GREENWASTE RECOVERY, INC.",,"1500 BERGER DRIVE",,"SAN JOSE","CA","951121402",,,,,,,"680249188","4082834800",,,,"2011-10-06T15:31:19-0500","DONALD DEAN","2011-10-06T15:31:19-0500","DONALD DEAN",,,302,239,0,47,286,0,286,284,29,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006142232P040147140881001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"I.A.T.S.E. LOCAL NO. 31 RETIREMENT PLAN","001","1993-01-01","I.A.T.S.E. LOCAL NO. 31",,,"923A W. 17TH STREET",,"KANSAS CITY","MO","64108",,,,,,,,,,,,,,,,,,"440459340","8168425167","711100","TRUSTEES",,"923A W. 17TH STREET",,"KANSAS CITY","MO","64108",,,,,,,"440459340","8168425167",,,,"2011-10-06T12:29:32-0500","GARY THOMAS","2011-10-06T12:29:33-0500","GARY THOMAS",,,140,126,0,12,138,4,142,142,2,13,"2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007151814P030021234002010","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"GRP HEALTH/DENTAL/VISION PLANS","502","1994-11-01","HAWAIIAN HOUSEWARES, LTD.",,,"P.O. BOX 820",,"PEARL CITY","HI","967820820",,,,,,,,,,,,,,,,,,"990084964","8088453800","424400","HAWAIIAN HOUSEWARES, LTD.",,"P.O. BOX 820",,"PEARL CITY","HI","967820820",,,,,,,"990084964","8088453800",,,,"2011-09-28T05:14:30-0500","FAYE NISHIMURA","2011-10-07T05:14:30-0500","DIANA ALLEN",,,181,217,,,217,,,,,,,"4A4B4D4E","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007172406P040004206820001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANTOKOL REISMAN AND COFFIN SAFE HARBOR 401(K)/PROFIT SHARING PLAN","002","1985-01-01","ANTOKOL REISMAN AND COFFIN",,,"514 STATE STREET",,"SCHENECTADY","NY","12305",,,,,,,"514 STATE STREET",,"SCHENECTADY","NY","12305",,,,,,,"141607436","5183702500","541110","ANTOKOL REISMAN AND COFFIN",,"514 STATE STREET",,"SCHENECTADY","NY","12305",,,,,,,"141607436","5183702500",,,,"2011-10-07T17:15:43-0500","RICHARD M ANTOKOL","2011-10-07T17:15:43-0500","RICHARD M ANTOKOL",,,10,6,0,4,10,0,10,10,0,,"2E2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006142801P030143609937001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"LOCAL NO 731 EXCAVATORS AND PAVERS PENSION TRUST FUND","001","1963-01-01","TRUSTEES OF EXCV & PVRS LOCAL 731 PENSION TRUST FUND",,,"1000 BURR RIDGE PARKWAY",,"BURR RIDGE","IL","60527",,,,,,,,,,,,,,,,,,"366513565","6308874150","813000","TRUSTEES OF EXCV & PVRS LOCAL 731 PENSION TRUST FUND",,"1000 BURR RIDGE PARKWAY",,"BURR RIDGE","IL","60527",,,,,,,"366513565","6308874150",,,,"2011-10-06T14:24:01-0500","TERRENCE J. HANCOCK","2011-10-06T14:06:11-0500","WILLIAM COLLINS",,,1574,617,580,336,1533,,1533,,,162,"1B1G",,"1","0","1",,"0","0","1",,"1","1",,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007145615P040022123202001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"L.P.M. HOLDING COMPANY, INC. 401(K) SAVINGS PLAN","001","1989-07-01","L.P.M. HOLDING COMPANY, INC.",,,"24 MAIN STREET",,"MAYNARD","MA","01754",,,,,,,,,,,,,,,,,,"042273500","9788970660","541990","L.P.M. HOLDING COMPANY, INC.",,"24 MAIN STREET",,"MAYNARD","MA","01754",,,,,,,"042273500","9788970660",,,,"2011-10-07T14:55:52-0500","TIMOTHY SHEEHAN","2011-10-07T14:55:52-0500","TIMOTHY SHEEHAN",,,400,456,0,18,474,0,474,95,2,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007154130P030021235858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN MEDICAL ALERT CORP. 401K SAVINGS PLAN","001","1997-01-01","AMERICAN MEDICAL ALERT CORP.",,,"36-36 33RD STREET SUITE B 100",,"LONG ISLAND CITY","NY","111062329",,,,,,,,,,,,,,,,,,"112571221","5165692550","621610","RICHARD RALLO",,"36-36 33RD STREET",,"LONG ISLAND CITY","NY","11106",,,,,,,"112571221","6462929201",,,,"2011-10-07T15:20:16-0500","RICHARD RALLO",,,,,467,392,0,51,443,0,443,155,6,,"2E2J2G2K3D2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007180316P030144371041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GASTROENTEROLOGY ASSOCIATES, INC. EMPLOYEES PROFIT SHARING PLAN","002","1972-07-01","GASTROENTEROLOGY ASSOCIATES, INC.",,,"5200 CENTRE AVENUE, SUITE 312",,"PITTSBURGH","PA","15232",,,,,,,,,,,,,,,,,,"251230351","4126231613","621111","GASTROENTEROLOGY ASSOCIATES, INC.",,"5200 CENTRE AVENUE, SUITE 312",,"PITTSBURGH","PA","15232",,,,,,,"251230351","4126231613",,,,"2011-10-07T18:02:19-0500","DENISE BIGANTE",,,,,39,36,0,2,38,0,38,38,0,,"2E2J2K2T","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006141426P030021130114001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"MMG 401(K) RETIREMENT SAVINGS PLAN","001","1994-10-01","MMG 401K RETIREMENT SAVINGS PLAN",,,"5070 LAMME RD",,"MORAINE","OH","454393266",,,,,,,,,,,,,,,,,,"311445887","9372937703","623000","MMG 401K RETIREMENT SAVINGS PLAN",,"5070 LAMME RD",,"MORAINE","OH","454393266",,,,,,,"311445887","9372937703","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-10-06T14:14:21-0500","JOHN HOCHWALT","2011-10-06T14:14:21-0500","JOHN HOCHWALT",,,537,434,0,11,445,0,445,144,59,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006130417P030143555265001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"CORNERSTONE DENTAL RETIREMENT PLAN AND TRUST","001","2010-01-01","IDEAL DENTAL OF FLOWER MOUND, P.C.",,,"2616 LONG PRAIRIE RD","SUITE 105","FLOWER MOUND","TX","75022",,,,,,,,,,,,,,,,,,"263516092","9728993499","621210","IDEAL DENTAL OF FLOWER MOUND, P.C.",,"2616 LONG PRAIRIE RD","SUITE 105","FLOWER MOUND","TX","75022",,,,,,,"263516092","9728993499",,,,"2011-10-06T13:03:08-0500","RODNEY N. ALLES, JR., D.D.S.",,,,,4,7,0,0,7,0,7,7,0,,"2A2E2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006143143P040147150097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROUNDYS SUPERMARKETS, INC. RETIREMENT PLAN","001","1955-12-31","ROUNDYS SUPERMARKETS, INC.",,,"ROUNDYS SUPERMARKETS, INC.","875 EAST WISCONSIN AVENUE","MILWAUKEE","WI","53202",,,,,,,"875 EAST WISCONSIN AVENUE",,"MILWAUKEE","WI","53202",,,,,,,"390854535","4142315000","424400","ROUNDYS SUPERMARKETS, INC.",,"ROUNDYS SUPERMARKETS, INC.","875 EAST WISCONSIN AVENUE","MILWAUKEE","WI","53202",,,,,,,"390854535","4142315000",,,,"2011-10-06T14:14:50-0500","COLLEEN STENHOLT",,,,,4970,2071,973,1620,4664,131,4795,,15,,"1A1G1I",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007160000P040147885457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CELSIS HOLDINGS, INC. WELFARE BENEFITS PLAN","501","2007-04-01","CELSIS HOLDINGS, INC.",,,"600 WEST CHICAGO AVENUE","SUITE 625","CHICAGO","IL","606542822",,,,,,,"600 WEST CHICAGO AVENUE","SUITE 625","CHICAGO","IL","606542822",,,,,,,"526730464","3124761200","541380","CELSIS HOLDINGS, INC.",,"600 WEST CHICAGO AVENUE","SUITE 625","CHICAGO","IL","606542822",,,,,,,"526730464","3124761200",,,,"2011-10-07T15:27:59-0500","KELLY JAPCON",,,,,191,139,14,,153,,153,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","4","0",,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007160649P040022131410001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEW ENGLAND BANK EMPLOYEE STOCK OWNERSHIP PLAN","003","2002-01-01","NEW ENGLAND BANK",,,"PO BOX 1279","855 ENFIELD STREET","ENFIELD","CT","06082",,,,,,,,,,,,,,,,,,"061522403","8602535200","522120","NEW ENGLAND BANK",,"PO BOX 1279","855 ENFIELD STREET","ENFIELD","CT","06082",,,,,,,"061522403","8602535200",,,,"2011-10-07T16:06:27-0500","CYNTHIA G. GRAY","2011-10-07T16:06:27-0500","CYNTHIA G. GRAY",,,94,117,0,9,126,0,126,121,3,,"2I2P3I3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007173708P030144356465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TANGENT CONTEMPORARY VENTURES, INC. 401(K) PROFIT SHARING PLAN","001","2007-01-01","TANGENT CONTEMPORARY VENTURES, INC.","DBA SCOTT RICHARDS CONTEMPORARY ART",,"355 BRYANT ST., SUITE 307",,"SAN FRANCISCO","CA","94107",,,,,,,,,,,,,,,,,,"202706022","4157885588","453920","TANGENT CONTEMPORARY VENTURES, INC.",,"355 BRYANT ST., SUITE 307",,"SAN FRANCISCO","CA","94107",,,,,,,"202706022","4157885588",,,,"2011-10-07T17:37:07-0500","RUSSELL J. SNOW, EA, CPC, MSPA",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006133352P030667634928007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TANNER COMPANIES LLC HEALTH & DISABILITY PLAN","501","1978-02-01","TANNER COMPANIES LLC",,,"PO BOX 1139",,"RUTHERFORDTON","NC","28139",,,,,,,"581 ROCK ROAD",,"RUTHERFORDTON","NC","28139",,,,,,,"561831194","8282874205","454390","TANNER COMPANIES LLC",,"PO BOX 1139",,"RUTHERFORDTON","NC","28139",,,,,,,"561831194","8282874205",,,,"2011-10-04T11:42:04-0500","RICK MASON",,,,,131,116,,,116,,,,,,,"4A4B4D4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006145620P040662175216001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALLEN INDUSTRIES, INC. 401(K) PLAN","001","1977-11-01","ALLEN INDUSTRIES, INC.",,,"6434 BURNT POPLAR ROAD",,"GREENSBORO","NC","274099700",,,,,,,,,,,,,,,,,,"560486250","3366682791","339900","ALLEN INDUSTRIES, INC.",,"6434 BURNT POPLAR ROAD",,"GREENSBORO","NC","274099700",,,,,,,"560486250","3366682791",,,,"2011-10-06T14:55:46-0500","JOHN H. ALLEN",,,,,201,164,0,13,177,0,177,99,4,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006150552P040147176593001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"EMPIRE TODAY, LLC 401(K) PROFIT SHARING PLAN","001","1989-04-01","EMPIRE TODAY, LLC",,,"333 NORTHWEST AVE",,"NORTHLAKE","IL","60164",,,,,,,,,,,,,,,,,,"364281606","8475835241","442210","EMPIRE TODAY, LLC",,"333 NORTHWEST AVE",,"NORTHLAKE","IL","60164",,,,,,,"364281606","8475835241",,,,"2011-10-06T15:05:06-0500","GEOFFREY Q NUNEMAN","2011-10-06T14:56:58-0500","GEOFFREY Q NUNEMAN",,,588,514,0,79,593,0,593,593,3,,"2E2F2G2J2K3D3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010074714P030145745841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHERN OHIO MEDICAL CENTER RETIREMENT SAVINGS PROGRAM","002","1990-01-01","SOUTHERN OHIO MEDICAL CENTER",,,"1248 KINNEYS LANE",,"PORTSMOUTH","OH","45662",,,,,,,,,,,,,,,,,,"310678022","7403568118","622000","SOUTHERN OHIO MEDICAL CENTER",,"1248 KINNEYS LANE",,"PORTSMOUTH","OH","45662",,,,,,,"310678022","7403568118",,,,"2011-10-10T07:46:24-0500","VICKI A. NOEL",,,,,2725,2311,74,452,2837,0,2837,2405,103,,"3H2F2G2L",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010090904P030678004432005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SANA ABUMERI, MD, INC. PROFIT SHARING PLAN","002","2000-03-23","SANA ABUMERI, MD, INC.",,,"3148 SOUTH WINDSOR COURT",,"WESTLAKE","OH","44145",,,,,,,,,,,,,,,,,,"341919825","4402843800","621111","SANA ABUMERI, MD, INC.",,"3148 SOUTH WINDSOR COURT",,"WESTLAKE","OH","44145",,,,,,,"341919825","4402843800",,,,"2011-10-07T03:43:50-0500","SANA ABUMERI",,,,,1,1,,,1,,1,1,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111006151212P030047430663001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAREFREE LANDSCAPING 401(K) RETIREMENT PLAN","001","2002-05-01","CAREFREE LANDSCAPING, INC.",,,"22049 HOWELL DR",,"NEW LENOX","IL","60451",,,,,,,,,,,,,,,,,,"363791228","8154623300","561730","CAREFREE LANDSCAPING, INC.",,"22049 HOWELL DR",,"NEW LENOX","IL","60451",,,,,,,"363791228","8154623300",,,,"2011-10-06T15:11:52-0500","MICHAEL STRICK",,,,,39,33,0,0,33,0,33,8,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006152139P040662241312001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YOUNG & RUBICAM 401(K)/SAVINGS PLAN","002","1969-07-30","YOUNG & RUBICAM INC.",,,"285 MADISON AVENUE",,"NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"131493710","2122103273","541800","COMMITTEE UNDER THE YOUNG & RUBICAM 401K/SAVINGS PLAN",,"285 MADISON AVENUE, 18TH FLOOR",,"NEW YORK","NY","10017",,,,,,,"132863747","2122103273",,,,"2011-10-06T15:20:46-0500","ROBERT SALBERG","2011-10-06T15:20:46-0500","ROBERT SALBERG",,,5786,4335,46,2585,6966,7,6973,5621,373,,"2E2F2G2J2K2T3H3J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006152724P030667918288009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GEBA GROUP BENEFITS PLAN","501","1965-10-01","GOVERNMENT EMPLOYEES' BENEFIT ASSOCIATION",,,"PO BOX 206",,"ANNAPOLIS JUNCTION","MD","207010206",,,,,,,,,,,,,,,,,,"526051763","3016887912","525100","GOVERNMENT EMPLOYEES' BENEFIT ASSOCIATION",,"PO BOX 206",,"ANNAPOLIS JUNCTION","MD","207010206",,,,,,,"526051763","3016887912",,,,"2011-10-06T11:06:17-0500","MICHELE RACKEY","2011-10-06T11:06:17-0500","MICHELE RACKEY",,,10785,11116,,,11116,,,,,,,"4A4B4D4E4F4H4L","1",,"1","1","1",,"1","1",,,,"1",,"1","5",,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006142828P040021999314001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MOTOR COACH INDUSTRIES INTERNATIONAL, INC. RETIREMENT INCOME PLAN","002","1993-08-12","MCII HOLDINGS, INC.",,,"1700 E. GOLF ROAD, SUITE 300",,"SCHAUMBURG","IL","60173",,,,,,,,,,,,,,,,,,"860767238","8472852000","336100","MCII HOLDINGS, INC.",,"1700 E. GOLF ROAD, SUITE 300",,"SCHAUMBURG","IL","60173",,,,,,,"860767238","8472852000",,,,"2011-10-06T14:09:29-0500","JANE MACKAY",,,,,1191,178,379,549,1106,70,1176,,1,,"1A1H1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111010081507P030021452306001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADA TECHNOLOGIES 401(K) RETIREMENT SAVINGS PLAN","001","1999-01-01","ADA TECHNOLOGIES, INC.",,,"805 E NORTH AVE",,"ADA","OH","458101809",,,,,,,,,,,,,,,,,,"311454397","4196347000","339900","ADA TECHNOLOGIES, INC.",,"805 E NORTH AVE",,"ADA","OH","458101809",,,,,,,"311454397","4196347000",,,,"2011-10-10T08:14:55-0500","KELLY A. RICHARDS",,,,,222,193,0,9,202,0,202,178,10,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111007151850P040147855217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GROUP INSURANCE & HEALTH BENEFITS FOR SALARIED EMPLOYEES OF GENERAL DYNAMICS CORPORATION, FORT WORTH DIVISION","533","1961-05-04","GENERAL DYNAMICS CORPORATION",,,"2941 FAIRVIEW PARK DRIVE, SUITE 100",,"FALLS CHURCH","VA","220424513",,,,,,,,,,,,,,,,,,"131673581","7038763000","334200","GENERAL DYNAMICS CORPORATION",,"2941 FAIRVIEW PARK DRIVE, SUITE 100",,"FALLS CHURCH","VA","220424513",,,,,,,"131673581","7038763000",,,,"2011-10-07T15:18:09-0500","HENRY C. EICKELBERG",,,,,1362,0,1362,0,1362,,,,,,,"4A4B","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007152457P030144290801001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"VESCO, INC. 401(K) PROFIT SHARING PLAN","001","1961-01-01","VESCO, INC.",,,"840 ADDISON STREET",,"ELMHURST","IL","601261218",,,,,,,,,,,,,,,,,,"364191711","6308348600","423700","VESCO, INC.",,"840 ADDISON STREET",,"ELMHURST","IL","601261218",,,,,,,"364191711","6308348600",,,,"2011-10-07T15:22:48-0500","RICHARD FOSTER",,,,,14,10,1,3,14,0,14,13,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006134539P030143580481001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"PSA NO. 99UUUU (OPPENHEIMER MAIN ST SML CAP AC)","187",,"NEW YORK LIFE INSURANCE COMPANY","NEW YORK LIFE INVESTMENT MGMT.","ATTN B. KOSMAS","169 LACKAWANNA AVENUE",,"PARSIPPANY","NJ","070541057",,,,,,,,,,,,,,,,,,"135582869","2125767000",,"NEW YORK LIFE INSURANCE COMPANY","ATTN B. KOSMAS","169 LACKAWANNA AVENUE",,"PARSIPPANY","NJ","070541057",,,,,,,"135582869","2125767000",,,,,,,,"2011-10-06T13:44:22-0500","LINDSAY J. MALKIEWICH",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06",,"Filed with authorized/valid electronic signature", "20111006134546P030143580497001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CROWLEY RETIREMENT SYSTEM INCOME PLAN PUERTO RICO","009","1986-12-31","CROWLEY MARITIME CORPORATION",,"DAVID HOLDEN","9487 REGENCY SQUARE BLVD",,"JACKSONVILLE","FL","32225",,,,,,,"9487 REGENCY SQUARE BLVD",,"JACKSONVILLE","FL","32225",,,,,,,"660641717","9047272334","483000","CROWLEY MARITIME CORPORATION","DAVID HOLDEN","9487 REGENCY SQUARE BLVD",,"JACKSONVILLE","FL","32225",,,,,,,"660641717","9047272334",,,,"2011-10-06T12:24:10-0500","DAVID HOLDEN","2011-10-06T13:28:33-0500","DAVID HOLDEN",,,46,39,,8,47,,47,47,0,,"2E2G2J2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006135525P040662003264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE FLEXAUST COMPANY, INC 401K PROFIT SHARING PLAN","001","1995-07-01","THE FLEXAUST COMPANY, INC",,,"PO BOX 4275",,"WARSAW","IN","465814275",,,,,,,,,,,,,,,,,,"351950597","5742677909","339900","THE FLEXAUST COMPANY, INC.",,"PO BOX 4275",,"WARSAW","IN","46580",,,,,,,"351950597","5742677909",,,,"2011-10-06T13:53:18-0500","STEVEN HAGAN",,,,,189,189,0,17,206,0,206,147,2,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006130021P030047398327001","2010-04-01","2011-03-31","2",,"0","1","0","0","0","0","0","0","0",,"SEIU EMPLOYEES UNION LOCAL 252 EMPLOYEE PENSION PLAN","002","1975-04-01","SERVICE EMPLOYEES UNION LOCAL 252",,,"3E. WYNNEWOOD ROAD",,"WYNNEWOOD","PA","19096",,,,,,,"3E. WYNNEWOOD ROAD",,"WYNNEWOOD","PA","19096",,,,,,,"231936331","6106582300","561790","SERVICE EMPLOYEES UNION LOCAL 252",,"3E. WYNNEWOOD ROAD",,"WYNNEWOOD","PA","19096",,,,,,,"231936331","6106582300",,,,"2011-10-06T12:59:15-0500","ROCCO MASTROCOLA",,,,,2,2,,,2,,2,2,,,"2C3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111010083552P030145767745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHARLES J PETHTEL DEFINED BENEFIT PLAN","001","1998-01-01","CHARLES J PETHTEL",,,"1819 STRATHSHIRE HALL PLACE",,"POWELL","OH","43065",,,,,,,,,,,,,,,,,,"311401337","6148474445","541990","CHARLES J PETHTEL",,"1819 STRATHSHIRE HALL PLACE",,"POWELL","OH","43065",,,,,,,"311401337","6148474445",,,,"2011-10-10T08:35:10-0500","CHARLES PETHTEL",,,,,3,3,0,0,3,0,3,,0,,"1A3B",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111009161031P030145360769001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"BENEFIT STADION CONSERVATIVE ETF TRUST","012",,"BENEFIT TRUST COMPANY",,,"5901 COLLEGE BLVD","SUITE 100","OVERLAND PARK","KS","66211",,,,,,,,,,,,,,,,,,"430995254","9133190380",,"BENEFIT TRUST COMPANY",,"5901 COLLEGE BLVD, SUITE 100",,"OVERLAND PARK","KS","66211",,,,,,,"431971558","9133190380",,,,,,,,"2011-10-09T16:04:07-0500","CLIFFORD W. SHINSKI SR. VP",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-10-09",,"Filed with authorized/valid electronic signature", "20111009161451P030145362209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARK V. DAVIS, DMD DEFINED BENEFIT PLAN & TRUST","001","1997-01-01","MARK V. DAVIS, DMD",,,"1835 S KEENE RD",,"CLEARWATER","FL","337566421",,,,,,,,,,,,,,,,,,"591232402","7275319363","621210","MARK V. DAVIS, DMD",,"1835 S KEENE RD",,"CLEARWATER","FL","337566421",,,,,,,"591232402","7275319363",,,,"2011-10-09T16:13:45-0500","MARK V DAVIS",,,,,6,4,0,2,6,0,6,,1,,"1A3B3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-09","Filed with authorized/valid electronic signature",, "20111006140352P030143592081001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"US ONCOLOGY INC. 401(K) PLAN","001","1994-01-01","US ONCOLOGY CORPORATE INC.",,,"10101 WOODLOCH FOREST",,"THE WOODLANDS","TX","77380",,,,,,,"10101 WOODLOCH FOREST",,"THE WOODLANDS","TX","77380",,,,,,,"760473455","2818634942","621111","US ONCOLOGY CORPORATE INC.",,"10101 WOODLOCH FOREST",,"THE WOODLANDS","TX","77380",,,,,,,"760473455","2818634942",,,,"2011-10-06T13:36:32-0500","ANNE-MARIE LAW",,,,,6345,4947,0,900,5847,10,5857,3733,132,,"2A2E2F2G2J2K2R2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006130536P040147087441002","2010-07-01","2011-06-30","1",,,,,,"1",,,"1",,,"WAREHOUSE EMPLOYEES LOCAL 169 & PARTICIPATING EMPLOYERS JOINT SEVERANCE FUND","001","1991-08-22","WAREHOUSE EMPL LOCAL 169 & PARTICIP EMPLOYERS JOINT SEVERANCE FUND",,,"PO BOX 740 DAVIS AND OAKWOOD LANE",,"VALLEY FORGE","PA","19482",,,,,,,,,,,,,,,,,,"232661636","2154836000","525100","WAREHOUSE EMPL LOCAL 169 & PARTICIP EMPLOYERS JOINT SEVERANCE FUND",,"PO BOX 740 DAVIS AND OAKWOOD LANE",,"VALLEY FORGE","PA","19482",,,,,,,"232661636","2154836000",,,,"2011-10-06T10:45:50-0500","BRIAN REICE","2011-10-06T02:56:41-0500","FRED LEHMAN",,,316,1206,,,1206,,1206,,,9,"2F",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007155520P040004540771001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"SCHINDLER ELEVATOR CORP PUERTO RICO SAVINGS & INVESTMENT PLAN - MASTER TRUST","010",,"SCHINDLER ELEVATOR CORPORATION",,,"P.O. BOX 1935","20 WHIPPANY ROAD","MORRISTOWN","NJ","079621935",,,,,,,,,,,,,,,,,,"341270056","9733973696",,"SCHINDLER ELEVATOR CORPORATION",,"P.O. BOX 1935","20 WHIPPANY ROAD","MORRISTOWN","NJ","079621935",,,,,,,"341270056","9733973696",,,,"2011-10-07T15:54:32-0500","LISA SISTO",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007160028P030144308705001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BIG STATE ELECTRIC CO INC 401K PROFIT SHARING PLAN","001","1980-01-01","BIG STATE ELECTRIC CO , INC",,,"P O BOX 8237",,"SAN ANTONIO","TX","78208",,,,,,,,,,,,,,,,,,"741546606","2107351051","238210","BIG STATE ELECTRIC CO INC",,"P O BOX 8237",,"SAN ANTONIO","TX","78208",,,,,,,"741546606","2107351051",,,,"2011-10-07T15:31:28-0500","VINCENT C REAL",,,,,11,16,,,16,,16,16,,,"2K2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006132243P030143567185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NGM INSURANCE COMPANY 401(K) RETIREMENT PLAN","002","1986-01-01","NGM INSURANCE COMPANY",,,"P.O BOX 16000",,"JACKSONVILLE","FL","322456000",,,,,,,"4601 TOUCHTON ROAD EAST, SUITE 3400",,"JACKSONVILLE","FL","322464486",,,,,,,"020170490","8665742899","524150","NGM INSURANCE COMPANY",,"P.O BOX 16000",,"JACKSONVILLE","FL","322456000",,,,,,,"020170490","8665742899",,,,"2011-10-06T13:22:19-0500","ANTONIA PORTERFIELD",,,,,1044,733,26,244,1003,1,1004,995,0,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006144618P040147161457001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TRINET SYSTEMS, INC. 401(K) PLAN","001","1988-05-01","TRINET SYSTEMS, INC.",,,"800 TECHNOLOGY CENTER DR",,"STOUGHTON","MA","02072",,,,,,,,,,,,,,,,,,"043166411","7812343132","517000","TRINET SYSTEMS, INC.",,"800 TECHNOLOGY CENTER DR",,"STOUGHTON","MA","02072",,,,,,,"043166411","7812343132",,,,"2011-10-06T14:38:04-0500","RICHARD PARKER",,,,,207,0,0,86,86,0,86,86,26,,"2E2F2G2J2K2S2T3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006145212P040147165873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOM NEHL G.M.C. TRUCK COMPANY EMPLOYEES 401K SAVINGS & RETIREMENT PLAN","002","1995-01-01","TOM NEHL G.M.C. TRUCK COMPANY",,,"417 S. EDGEWOOD AVE.",,"JACKSONVILLE","FL","32254",,,,,,,,,,,,,,,,,,"590840355","9043893653","441229","TOM NEHL G.M.C. TRUCK COMPANY",,"417 S. EDGEWOOD AVE.",,"JACKSONVILLE","FL","32254",,,,,,,"590840355","9043893653",,,,"2011-10-06T14:48:17-0500","WANDA COTTER","2011-10-06T14:48:17-0500","STEVEN BACALIS",,,194,182,0,15,197,1,198,131,1,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006145752P030667843280001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"DISCOVERY PREMIER PRU CONSERVATIVE BALANCE","166",,"THE PRUDENTIAL INSURANCE COMPANY OF AMERICA",,"VALERIE WEBER","751 BROAD STREET",,"NEWARK","NJ","07102",,,,,,,,,,,,,,,,,,"221211670","9737161245",,"THE PRUDENTIAL INSURANCE COMPANY OF AMERICA","VALERIE WEBER","751 BROAD STREET",,"NEWARK","NJ","07102",,,,,,,"221211670","9737161245",,,,,,"2011-10-06T14:54:44-0500","VALERIE WEBER","2011-10-06T14:54:44-0500","VALERIE WEBER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111006150237P040147174577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REGISTRAR AND TRANSFER EMPLOYEE PROFIT SHARING PLAN","002","1983-07-01","REGISTRAR AND TRANSFER COMPANY",,,"10 COMMERCE DRIVE",,"CRANFORD","NJ","07016",,,,,,,,,,,,,,,,,,"222089174","9084972300","523900","REGISTRAR AND TRANSFER COMPANY",,"10 COMMERCE DRIVE",,"CRANFORD","NJ","07016",,,,,,,"222089174","9084972300",,,,"2011-10-06T14:37:56-0500","PATRICIA GILES LEWIS","2011-10-06T15:00:35-0500","THOMAS L. MONTRONE",,,223,178,0,32,210,0,210,178,3,,"2E2F2G2J2K3D2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007161308P040147892273001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"EVERGREEN SHIPPING AGENCY (AMERICA) CORPORATION EMPLOYEE BENEFIT PLAN","502","1992-12-01","EVERGREEN SHIPPING AGENCY AMERICA CORPORATION",,,"ONE EVERTRUST PLAZA",,"JERSEY CITY","NJ","073023051",,,,,,,,,,,,,,,,,,"133373601","2017613114","488300","EVERGREEN SHIPPING AGENCY AMERICA CORPORATION",,"ONE EVERTRUST PLAZA",,"JERSEY CITY","NJ","073023051",,,,,,,"133373601","2017613114",,,,"2011-10-07T08:59:34-0500","HSUNYEH CHAN",,,,,507,461,0,0,461,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007161456P030144314321001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RAFAEL REISFELD, M.D., INC. PROFIT SHARING PLAN AND TRUST","004","1988-01-01","RAFAEL REISFELD, M.D., INC.",,,"1125 S. BEVERLY DRIVE., SUITE 500",,"LOS ANGELES","CA","90035",,,,,,,"1125 S. BEVERLY DRIVE, SUITE 500",,"LOS ANGELES","CA","90035",,,,,,,"953546190","3105573037","621111","RAFAEL REISFELD, M.D., INC.",,"1125 S. BEVERLY DRIVE., SUITE 500",,"LOS ANGELES","CA","90035",,,,,,,"953546190","3105573037",,,,"2011-10-07T05:20:20-0500","RAFAEL REISFELD",,,,,3,3,0,0,3,0,3,3,0,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111009174657P040670822672001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"ABRAHAM WEIZENBERG, MD MONEY PURCHASE PENSION PLAN","001","1988-01-01","ABRAHAM WEIZENBERG, MD",,,"4315 WEST OKMULGEE STREET, #310",,"MUSKOGEE","OK","74401",,,,,,,"4315 WEST OKMULGEE STREET, #310",,"MUSKOGEE","OK","74401",,,,,,,"382791418","9183487404","621111","ABRAHAM WEIZENBERG, MD",,"4315 WEST OKMULGEE STREET, #310",,"MUSKOGEE","OK","74401",,,,,,,"382791418","9183487404",,,,"2011-10-09T17:46:41-0500","RICHARD MOLE",,,,,1,1,0,0,1,0,1,1,0,0,"2C2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-09","Filed with authorized/valid electronic signature",, "20111009174911P040670826752001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"CHESTNUT HEALTH SYSTEMS, INC. MONEY PURCHASE PLAN","001","1980-12-29","CHESTNUT HEALTH SYSTEMS, INC.",,,"1003 MARTIN LUTHER KING DR",,"BLOOMINGTON","IL","617011429",,,,,,,,,,,,,,,,,,"370964629","3098276026","813000","CHESTNUT HEALTH SYSTEMS, INC.",,"1003 MARTIN LUTHER KING DR",,"BLOOMINGTON","IL","617011429",,,,,,,"370964629","3098276026",,,,"2011-10-09T17:49:02-0500","ALAN SENDER","2011-10-09T17:49:02-0500","ALAN SENDER",,,626,550,0,49,599,0,599,458,67,,"2C2F2G2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006133204P040147104305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAP CARPET, INC. 401(K) PLAN","001","1995-01-01","CAP CARPET, INC.",,,"535 SOUTH EMERSON",,"WICHITA","KS","672092161",,,,,,,,,,,,,,,,,,"480758150","3168662150","442210","CAP CARPET, INC.",,"535 SOUTH EMERSON",,"WICHITA","KS","672092161",,,,,,,"480758150","3168662150",,,,"2011-10-06T08:29:27-0500","RICHARD BLOOMER","2011-10-06T08:29:27-0500","RICHARD BLOOMER",,,145,127,1,7,135,0,135,105,7,,"2E2J3D2G2K2F2T2S",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111006133225P030021125810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAND-TECH LANDSCAPE CONSTRUCTION, LLC 401K PLAN","001","2006-01-01","LAND-TECH LANDSCAPE CONSTRUCTION, L.L.C.",,,"7615 N. 75TH AVENUE","SUITE 101","GLENDALE","AZ","85303",,,,,,,"7615 N. 75TH AVENUE","SUITE 101","GLENDALE","AZ","85303",,,,,,,"721552604","6238159216","811410","LAND-TECH LANDSCAPE CONSTRUCTION, L.L.C.",,"7615 N. 75TH AVENUE","SUITE 101","GLENDALE","AZ","85303",,,,,,,"721552604","6238159216",,,,"2011-10-06T13:31:42-0500","KEVIN LOWREY",,,,,35,25,0,10,35,0,35,35,2,,"2A2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006134651P040021994626001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WALTON ELECTRIC MEMBERSHIP CORPORATION PENSION PLAN","003","2004-01-01","WALTON ELECTRIC MEMBERSHIP CORP.",,,"PO BOX 260","842 US HWY 78 NW","MONROE","GA","306550260",,,,,,,,,,,,,,,,,,"580477163","7702676253","221100","WALTON ELECTRIC MEMBERSHIP CORP.",,"PO BOX 260",,"MONROE","GA","306550260",,,,,,,"580477163","7702676253",,,,"2011-10-06T13:46:49-0500","RUSSELL DELONG",,,,,295,284,0,9,293,2,295,,0,,"1A1G",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111006133509P030143575809001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"STRATEGIC PORTFOLIO - CONSERVATIVE 2 - L14","156",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-06T13:26:15-0500","JOHN G. PHARO","2011-10-06T13:26:15-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-06",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111010091603P030145789697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SMART FINANCIAL CREDIT UNION PENSION PLAN","003","2004-01-01","SMART FINANCIAL CREDIT UNION",,,"P O BOX 920719",,"HOUSTON","TX","772920719",,,,,,,,,,,,,,,,,,"740695355","7134071880","522130","SMART FINANCIAL CREDIT UNION",,"P O BOX 920719",,"HOUSTON","TX","772920719",,,,,,,"740695355","7134071880",,,,"2011-10-10T09:15:40-0500","SUSIE SMITH",,,,,225,168,14,38,220,0,220,,29,,"1A1G",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111006150628P040022004290001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DARCARS EMPLOYEES 401K PLAN","001","1994-01-01","DARCARS",,,"2505 PROSPERITY TERRACE",,"SILVER SPRING","MD","209041651",,,,,,,,,,,,,,,,,,"521245481","3016800400","441229","DARCARS",,"2505 PROSPERITY TERRACE",,"SILVER SPRING","MD","209041651",,,,,,,"521245481","3016800400",,,,"2011-10-06T14:40:35-0500","MICHAEL HANCHERUK",,,,,1573,1207,0,253,1460,0,1460,761,17,,"2E2F2G2J2K2S2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111010091407P030021457474001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHAREL VENTURES, L.L.C. 401(K) PLAN","001","2004-08-01","SHAREL VENTURES, L.L.C.",,,"3300 MONROE AVE, BOX 14, STE 327",,"ROCHESTER","NY","14618",,,,,,,,,,,,,,,,,,"161512265","5852483330","722210","SHAREL VENTURES, L.L.C.",,"3300 MONROE AVE, BOX 14, STE 327",,"ROCHESTER","NY","14618",,,,,,,"161512265","5852483330",,,,"2011-10-10T09:13:48-0500","LAURIE A. CIECIERSKI",,,,,154,119,0,35,154,0,154,146,8,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111006140458P040021996354011","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"SONG & DANCE TOO INC RETIREMENT PLAN","001","1996-06-27","SONG & DANCE TOO, INC",,,"5041 DALLAS HWY STE 610",,"POWDER SPRINGS","GA","30127",,,,,,,,,,,,,,,,,,"582220087","7704209949","711510","SONG & DANCE TOO INC",,"5041 DALLAS HWY STE 610",,"POWDER SPRINGS","GA","30127",,,,,,,"582220087","7704209949",,,,"2011-10-06T13:56:05-0500","LISA E ALLEN",,,,,8,6,2,,8,,8,,,,"2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111008081827P040022188898005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PORTER APPLE COMPANY, INC 401K PLAN","001","1996-07-01","PORTER APPLE COMPANY, INC",,,"4101 CARNEGIE PLACE",,"SIOUX FALLS","SD","571062360",,,,,,,,,,,,,,,,,,"460414083","6053615301","722110","PORTER APPLE COMPANY, INC",,"4101 CARNEGIE PLACE",,"SIOUX FALLS","SD","571062360",,,,,,,"460414083","6053615301",,,,"2011-10-08T02:23:55-0500","LEANN ROBBINS",,,,,316,216,,8,224,,224,125,21,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-08","Filed with authorized/valid electronic signature",, "20111007185242P030144395537001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"LTD MANAGEMENT COMPANY, LLC GROUP DENTAL PLAN","502","2007-04-01","LTD MANAGEMENT COMPANY, LLC",,,"1564 CROSSWAYS BOULEVARD",,"CHESAPEAKE","VA","23320",,,,,,,,,,,,,,,,,,"870698993","7574200900","721110","LTD MANAGEMENT COMPANY, LLC",,"1564 CROSSWAYS BOULEVARD",,"CHESAPEAKE","VA","23320",,,,,,,"870698993","7574200900",,,,"2011-10-07T18:52:23-0500","TEJAL D DESAI",,,,,176,154,0,0,154,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007185346P030144395873001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"LTD MANAGEMENT COMPANY, LLC GROUP LIFE AND LONG TERM DISABILITY PLAN","503","2007-04-01","LTD MANAGEMENT COMPANY, LLC",,,"1564 CROSSWAYS BOULEVARD",,"CHESAPEAKE","VA","23320",,,,,,,,,,,,,,,,,,"870698993","7574200900","721110","LTD MANAGEMENT COMPANY, LLC",,"1564 CROSSWAYS BOULEVARD",,"CHESAPEAKE","VA","23320",,,,,,,"870698993","7574200900",,,,"2011-10-07T18:53:20-0500","TEJAL D DESAI",,,,,97,166,0,0,166,,,,,,,"4B4F4H4L4S","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111008155818P040022213506001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INDUS MEDICAL ASSOCIATES SAFE HARBOR 401K PLAN","001","2004-01-01","SYED F. AZAM MEDICAL ASSOCIATES, INC. DBA INDUS MEDICAL ASSOCIATES",,,"35400 BOB HOPE DRIVE, SUITE 210",,"RANCHO MIRAGE","CA","92270",,,,,,,,,,,,,,,,,,"810600022","7606749972","621111","SYED F. AZAM MEDICAL ASSOCIATES, INC. DBA INDUS MEDICAL ASSOCIATES",,"35400 BOB HOPE DRIVE, SUITE 210",,"RANCHO MIRAGE","CA","92270",,,,,,,"810600022","7606749972",,,,"2011-10-08T15:57:53-0500","SYED F. AZAM","2011-10-08T15:57:53-0500","SYED F. AZAM",,,8,8,0,0,8,0,8,8,0,,"2J2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007191401P040147966945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARBEL OF FLORIDA, INC. EMPLOYEE LIFE INSURANCE PLAN","503","1996-01-01","PARBEL OF FLORIDA, INC.",,,"5200 BLUE LAGOON DRIVE, SUITE 500",,"MIAMI","FL","33126",,,,,,,,,,,,,,,,,,"131247390","3052627500","424990","PARBEL OF FLORIDA, INC.",,"5200 BLUE LAGOON DRIVE, SUITE 500",,"MIAMI","FL","33126",,,,,,,"131247390","3052627500",,,,"2011-10-07T19:13:08-0500","RAYSA RIVADENEIRA",,,,,105,103,0,0,103,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111008105422P040148315153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROYAL MANAGEMENT, LLC 401(K) RETIREMENT PLAN","002","1998-01-01","ROYAL MANAGEMENT, LLC",,,"7240 7TH PLACE NORTH",,"WEST PALM BEACH","FL","33411",,,,,,,,,,,,,,,,,,"331032660","5617980901","236110","ROYAL MANAGEMENT, LLC",,"7240 7TH PLACE NORTH",,"WEST PALM BEACH","FL","33411",,,,,,,"331032660","5617980901",,,,"2011-10-08T10:53:48-0500","WALLACE D. SANGER",,,,,198,72,0,56,128,0,128,97,0,,"2E2F2G2J2K3B3D3H2T",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-08","Filed with authorized/valid electronic signature",, "20111007200408P030144426945001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PEN AGREEMENT ROCKFORD POWERTRAIN INC & UAW AND ITS LOCAL 803","001","1950-10-01","ROCKFORD POWERTRAIN, INC.",,"C/O GKN AMERICA CORP.","3300 UNIVERSITY DRIVE",,"AUBURN HILLS","MI","483260000",,,,,,,,,,,,,,,,,,"363585049","2483771200","333100","ROCKFORD POWERTRAIN, INC.","C/O GKN AMERICA CORP.","3300 UNIVERSITY DRIVE",,"AUBURN HILLS","MI","483260000",,,,,,,"363585049","2483771200","ROCKFORD POWERTRAIN, INC. C/O GKN AMERICA CORP.","363525238","032","2011-10-07T15:17:18-0500","JOHN GIANNANGELI",,,,,658,58,419,45,522,136,658,,0,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111006121152P030143518513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE ISABELLA STEWART GARDNER MUSEUM 403(B) PLAN","002","2006-07-01","THE ISABELLA STEWART GARDNER MUSEUM",,,"280 THE FENWAY",,"BOSTON","MA","02115",,,,,,,,,,,,,,,,,,"042104334","6172785302","712100","THE ISABELLA STEWART GARDNER MUSEUM",,"280 THE FENWAY",,"BOSTON","MA","02115",,,,,,,"042104334","6172785302",,,,"2011-10-06T12:11:13-0500","STACEY WHITNEY BROWN",,,,,211,155,0,57,212,0,212,149,0,,"2L2F2G2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-06","Filed with authorized/valid electronic signature",, "20111007203010P030671424080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VALLEY FINE FOODS 401K","001","2009-01-01","VALLEY FINE FOODS COMPANY, INC.",,,"3909 PARK ROAD",,"BENICIA","CA","94510",,,,,,,,,,,,,,,,,,"911848643","7077503542","311900","VALLEY FINE FOODS COMPANY, INC.",,"3909 PARK ROAD",,"BENICIA","CA","94510",,,,,,,"911848643","7077503542",,,,"2011-10-07T20:29:38-0500","MEIFAN TU",,,,,168,136,0,2,138,0,138,59,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111008182449P030144927345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PALO ALTO FOUNDATION MEDICAL GROUP, INC. CASH BALANCE PLAN","003","2008-01-01","PALO ALTO FOUNDATION MEDICAL GROUP, INC.",,,"2350 W. EL CAMINO REAL, 2ND FLOOR",,"MOUNTAIN VIEW","CA","94040",,,,,,,,,,,,,,,,,,"510656809","6506916151","621111","PALO ALTO FOUNDATION MEDICAL GROUP, INC.",,"2350 W. EL CAMINO REAL, 2ND FLOOR",,"MOUNTAIN VIEW","CA","94040",,,,,,,"510656809","6506916151",,,,"2011-10-08T17:55:28-0500","JOSEPH LACY",,,,,744,747,3,20,770,0,770,,0,,"1A1C1G3F",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-08","Filed with authorized/valid electronic signature",, "20111008000007P030144504593001","2010-06-10","2010-12-31","2",,"1",,,"1",,"1",,,,,"GSS CORPORATION 401(K) PROFIT SHARING PLAN","001","2010-06-10","GSS CORPORATION",,,"3760 E. JAGUAR AVENUE",,"GILBERT","AZ","85298",,,,,,,,,,,,,,,,,,"272759806","4806598029","423600","GSS CORPORATION",,"3760 E. JAGUAR AVENUE",,"GILBERT","AZ","85298",,,,,,,"272759806","4806598029",,,,"2011-10-07T23:55:38-0500","GERALD SAJOR","2011-10-07T23:56:53-0500","GERALD SAJOR",,,1,1,0,0,1,0,1,1,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007140702P030144246737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SACRED HEART UNIVERSITY DEFINED CONTRIBUTION RETIREMENT PLAN","002","1963-06-01","SACRED HEART UNIVERSITY INCORPORATED",,,"5151 PARK AVENUE",,"FAIRFIELD","CT","068251000",,,,,,,,,,,,,,,,,,"060776644","2033717921","611000","SACRED HEART UNIVERSITY",,"5151 PARK AVENUE",,"FAIRFIELD","CT","068251000",,,,,,,"060776644","2033717921",,,,"2011-10-07T14:07:01-0500","ROBERT M. HARDY",,,,,1361,751,0,689,1440,0,1440,1313,0,,"2F2G2L2M2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007130100P030144208273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DOUGLAS A GEDESTAD DMD INC MONEY PURCHASE PENSION PLAN","002","1995-01-01","DOUGLAS A GEDESTAD DMD INC",,,"2409 L STREET SUITE 1",,"SACRAMENTO","CA","958160000",,,,,,,,,,,,,,,,,,"911824987","9164481444","621210","DOUGLAS A GEDESTAD DMD INC",,"2409 L STREET SUITE 1",,"SACRAMENTO","CA","958160000",,,,,,,"911824987","9164481444",,,,"2011-10-07T13:00:48-0500","PENSION FILERS",,,,,6,6,0,0,6,0,6,5,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007132450P040147775457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHAWN MCGUIRE & ASSOCIATES INC DEFINED BENEFIT PENSION PLAN","001","2001-01-01","SHAWN MCGUIRE & ASSOCIATES INC",,,"320 STATE PLACE",,"ESCONDIDO","CA","920291362",,,,,,,,,,,,,,,,,,"953740110","7607458886","424990","SHAWN MCGUIRE & ASSOCIATES INC",,"320 STATE PLACE",,"ESCONDIDO","CA","920291362",,,,,,,"953740110","7607458886",,,,"2011-10-07T13:24:38-0500","SHAWN MCGUIRE",,,,,3,3,0,0,3,0,3,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007122442P030144188081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GULF WINDS CREDIT UNION 401(K) PLAN AND TRUST","002","1995-01-01","GULF WINDS FEDERAL CREDIT UNION",,,"220 E NINE MILE RD",,"PENSACOLA","FL","32534",,,,,,,,,,,,,,,,,,"596143861","8504799601","522130","GULF WINDS FEDERAL CREDIT UNION",,"220 E NINE MILE RD",,"PENSACOLA","FL","32534",,,,,,,"596143861","8504799601",,,,"2011-10-07T12:17:06-0500","TRACY MURPHY",,,,,132,124,0,0,124,0,124,122,0,,"2C2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007132008P040147772001001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SIGNATURE BRANDS, LLC 401(K) SAVINGS PLAN","001","1988-01-01","SIGNATURE BRANDS INC.",,,"808 SW 12TH STREET",,"OCALA","FL","34471",,,,,,,"808 SW 12TH STREET",,"OCALA","FL","34471",,,,,,,"593359107","3526223134","311300","SIGNATURE BRANDS INC.",,"808 SW 12TH STREET",,"OCALA","FL","34471",,,,,,,"593359107","3526223134","SIGNATURE BRANDS LLC","593359107","001","2011-10-07T13:19:50-0500","CONSTANCE LARSEN",,,,,432,322,0,102,424,2,426,417,35,,"2E2F2G2J2K2R2S2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007142936P040147826497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SODEXO, INC. DENTAL PLAN","514","1998-03-27","SODEXO, INC.",,,"9801 WASHINGTONIAN BLVD","11TH FLOOR SUITE 1131E","GAITHERSBURG","MD","208780000",,,,,,,,,,,,,,,,,,"520936594","3019874243","722300","SODEXO INC. DENTAL CARE PLAN",,"9801 WASHINGTONIAN BLVD. 11TH FLOOR",,"GAITHERSBURG","MD","208780000",,,,,,,"160812661","3019874243",,,,"2011-10-07T14:26:36-0500","JULIE PETERSON, VP, BENEFITS",,,,,35093,37922,435,0,38357,,,,,,,"4D","0","0","1","1","0","0","1","0","0","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143010P030144261329004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LOUIS R MALACRIDA VIP PLUS PROFIT SHARING PLAN HELD UNDER PROTOTYPE PLAN OF MSDW","001","1991-01-01","LOUIS MALACRIDA",,,"429 FARVIEW AVENUE",,"PARAMUS","NJ","07652",,,,,,,,,,,,,,,,,,"222419378","2019671881","541940","LOUIS MALACRIDA",,"429 FARVIEW AVENUE",,"PARAMUS","NJ","07652",,,,,,,"222419378","2019671881",,,,"2011-10-03T15:45:58-0500","LOUIS R MALACRIDA","2011-10-03T15:46:09-0500","LOUIS R MALACRIDA",,,4,4,0,0,4,0,4,4,,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007143018P040022118722007","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"JUNITH THOMPSON MD SC 401K PROFIT SHARING PLAN AND TRUST","001","1991-01-01","JUNITH THOMPSON MD SC",,,"5525 GREEN BAY ROAD",,"KENOSHA","WI","53144",,,,,,,,,,,,,,,,,,"391689307","2626572060","621111","JUNITH THOMPSON MD SC",,"5525 GREEN BAY ROAD",,"KENOSHA","WI","53144",,,,,,,"391689307","2626572060",,,,"2011-10-07T13:31:37-0500","HAROLD THOMPSON",,,,,7,9,,,9,,9,9,,,"3E2K2J2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007140901P040147808369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CANTEEN SERVICE COMPANY OF OWENSBORO, INC. PROFIT SHARING/401(K) PLAN","001","1978-12-16","CANTEEN SERVICE COMPANY OF OWENSBORO, INC.",,,"712 INDUSTRIAL DRIVE",,"OWENSBORO","KY","42301",,,,,,,,,,,,,,,,,,"610903567","2706832471","722300","CANTEEN SERVICE COMPANY OF OWENSBORO, INC.",,"712 INDUSTRIAL DRIVE",,"OWENSBORO","KY","42301",,,,,,,"610903567","2706832471",,,,"2011-10-07T14:01:51-0500","KEITH SHARBER",,,,,241,233,0,21,254,0,254,118,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007141222P030144250273001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"PROVIMI NORTH AMERICA, INC. RETIREMENT SAVINGS PLAN & TRUST","002","1988-01-01","PROVIMI NORTH AMERICA, INC.",,,"10 COLLECTIVE WAY",,"BROOKVILLE","OH","45309",,,,,,,"10 COLLECTIVE WAY",,"BROOKVILLE","OH","45309",,,,,,,"352042934","9377702400","311110","PROVIMI NORTH AMERICA, INC.",,"10 COLLECTIVE WAY",,"BROOKVILLE","OH","45309",,,,,,,"352042934","9377702400",,,,"2011-10-07T12:59:47-0500","ANGELA CREECH","2011-10-07T14:10:15-0500","BRETT HARTMAN",,,554,370,7,179,556,9,565,562,15,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007141903P040147817809006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RETIREMENT PLAN FOR EMPLOYEES OF NEW ENGLAND ORGAN BANK, INC.","001","1979-01-01","NEW ENGLAND ORGAN BANK, INC.",,,"60 FIRST AVENUE",,"WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"237024479","6172448000","621900","NEW ENGLAND ORGAN BANK, INC.",,"60 FIRST AVENUE",,"WALTHAM","MA","02451",,,,,,,"237024479","6172448000",,,,"2011-10-07T10:01:42-0500","DARA L. WASHBURN",,,,,190,152,32,,184,,184,,,,"2L",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","3","1","1",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007130153P040147759825001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"PSA NO. 99H5 (BARCLAYS GL. INV. LIFEPATH 2020)","190",,"NEW YORK LIFE INSURANCE COMPANY","NEW YORK LIFE INVESTMENT MGMT.","ATTN B. KOSMAS","169 LACKAWANNA AVENUE",,"PARSIPPANY","NJ","070541057",,,,,,,,,,,,,,,,,,"135582869","2125767000",,"NEW YORK LIFE INSURANCE COMPANY","ATTN B. KOSMAS","169 LACKAWANNA AVENUE",,"PARSIPPANY","NJ","070541057",,,,,,,"135582869","2125767000",,,,,,,,"2011-10-07T13:00:55-0500","LINDSAY J. MALKIEWICH",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-07",,"Filed with authorized/valid electronic signature", "20111007144308P040022120994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLEAN EARTH PLAN","002","1983-10-01","CLEAN EARTH, INC.",,,"334 SOUTH WARMINSTER ROAD",,"HATBORO","PA","19040",,,,,,,,,,,,,,,,,,"232650298","2157341400","562000","CLEAN EARTH, INC.",,"334 SOUTH WARMINSTER ROAD",,"HATBORO","PA","19040",,,,,,,"232650298","2157341400",,,,"2011-10-07T14:41:53-0500","PHYLLIS ONOFRIETTI",,,,,238,148,7,97,252,0,252,214,2,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143901P040147833649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"L.D. KICHLER COMPANY 401K PLAN AND TRUST","001","1989-01-01","L.D. KICHLER COMPANY, INC.",,,"7711 E PLEASANT VALLEY RD.",,"CLEVELAND","OH","441315532",,,,,,,,,,,,,,,,,,"340330095","2165731000","332900","L.D. KICHLER COMPANY, INC.",,"7711 E PLEASANT VALLEY RD.",,"CLEVELAND","OH","441315532",,,,,,,"340330095","2165731000",,,,"2011-10-07T14:36:38-0500","KATHLEEN PALMER",,,,,401,277,2,104,383,0,383,333,9,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007133905P040022113026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BUSH INDUSTRIES, INC. 401(K) RETIREMENT PLAN","001","1985-12-28","BUSH INDUSTRIES, INC.",,,"ONE MASON DRIVE",,"JAMESTOWN","NY","14701",,,,,,,,,,,,,,,,,,"160837346","7166652000","337000","BUSH INDUSTRIES, INC.",,"ONE MASON DRIVE",,"JAMESTOWN","NY","14701",,,,,,,"160837346","7166652000",,,,"2011-10-07T10:48:58-0500","NEIL FREDERICK",,,,,697,459,0,103,562,0,562,562,0,,"2E2T2F2H2J2K3F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007131355P040147768305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNDERWOOD FRUIT AND WAREHOUSE RETIREMENT SAVINGS PLAN","001","1996-01-01","UNDERWOOD FRUIT AND WAREHOUSE COMPANY, LLC",,,"PO BOX 1467",,"YAKIMA","WA","98907",,,,,,,"401 NORTH FIRST AVENUE",,"YAKIMA","WA","98902",,,,,,,"911179336","5094576177","111300","UNDERWOOD FRUIT AND WAREHOUSE COMPANY, LLC",,"PO BOX 1467",,"YAKIMA","WA","98907",,,,,,,"911179336","5094576177","UNDERWOOD FRUIT AND WAREHOUSE CO.","911179336","001","2011-10-07T13:13:31-0500","DON GIBSON",,,,,471,462,0,9,471,0,471,241,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143231P030144262017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORMAN KATZMAN, D.D.S. HR-10 PROFIT SHARING PLAN","001","1983-01-01","NORMAN KATZMAN, D.D.S.",,,"60 LEO BIRMINGHAM PARKWAY","SUITE 201","BRIGHTON","MA","02135",,,,,,,,,,,,,,,,,,"042593711","6177831822","621210","NORMAN KATZMAN, D.D.S.",,"60 LEO BIRMINGHAM PARKWAY","SUITE 201","BRIGHTON","MA","02135",,,,,,,"042593711","6177831822",,,,"2011-10-07T14:26:46-0500","NORMAN KATZMAN","2011-10-07T14:26:46-0500","NORMAN KATZMAN",,,3,3,0,0,3,0,3,4,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007134737P030021225602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WELLESLEY HILLS GROUP, LLC 401(K) PLAN","001","2005-01-01","WELLESLEY HILLS GROUP, LLC",,,"600 WORCESTER ROAD",,"FRAMINGHAM","MA","01702",,,,,,,,,,,,,,,,,,"542067722","5086269991","541990","WELLESLEY HILLS GROUP, LLC",,"600 WORCESTER ROAD",,"FRAMINGHAM","MA","01702",,,,,,,"542067722","5086269991",,,,"2011-10-07T13:37:17-0500","JOHN DOERR",,,,,22,12,3,5,20,0,20,19,2,,"2E2J2K2F2G3D2A3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007124252P040147746513001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"WHITE SPRINGS AGRICULTURAL CHEMICALS, INC. REPRESENTED WELFARE PROGRAM","502","1995-11-01","WHITE SPRINGS AGRICULTURAL CHEMICAL",,"POTASHCORP","COUNTRY ROAD 137",,"WHITE SPRINGS","FL","32096",,,,,,,"P.O. BOX 300",,"WHITE SPRINGS","FL","32096",,,,,,,"954471376","3863978101","325300","PCS ADMINISTRATION USA INC.","EMPLOYEE BENEFITS COMMITTEE","1101 SKOKIE BOULEVARD",,"NORTHBROOK","IL","600624118",,,,,,,"562111626","8478494200",,,,"2011-10-07T12:41:50-0500","DAVID R. HAVERICK","2011-10-07T12:41:50-0500","LEE KNAFELC",,,582,547,0,1,548,,,,,,,"4A4B4D4E4F4H4U","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007131454P030144215169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PSP ANESTHESIA SCHEDULING SERVICES INC FBO HORANI","001","1999-01-01","ANESTHESIA SCHEDULING SERVICES, INC",,,"1111 NORTH LEE AVENUE SUITE 236",,"OKLAHOMA CITY","OK","73103",,,,,,,,,,,,,,,,,,"731561331","4052729641","621111","ANESTHESIA SCHEDULING SERVICES INC. PROFIT SHARING PLAN",,"1111 NORTH LEE AVENUE SUITE 236",,"OKLAHOMA CITY","OK","73103",,,,,,,"271865140","4052729641",,,,"2011-10-07T13:14:32-0500","M. SAMIR HORANI","2011-10-07T13:14:32-0500","M. SAMIR HORANI",,,1,1,0,0,1,0,1,1,0,,"2E2F2R3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007141335P040147811665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HINES GROUP 401(K) RETIREMENT PLAN","002","1985-01-01","PREMIUM ALLIED TOOL, INC.",,,"5680 OLD KY 54",,"PHILPOT","KY","42366",,,,,,,,,,,,,,,,,,"610659560","2707294242","332900","PREMIUM ALLIED TOOL, INC.",,"5680 OLD KY 54",,"PHILPOT","KY","42366",,,,,,,"610659560","2707294242",,,,"2011-10-07T14:08:24-0500","BOB EPLING","2011-10-07T14:08:24-0500","WILLIAM E YOUNG",,,238,178,1,43,222,0,222,212,4,,"3D2E2J3H2K2F2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007141338P040147811713001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DAVIS, CEDILLO AND MENDOZA, INC. 401(K) RETIREMENT PLAN","001","1993-07-01","DAVIS, CEDILLO AND MENDOZA, INC.",,,"755 E MULBERRY AVE. STE, 500",,"SAN ANTONIO","TX","782123135",,,,,,,,,,,,,,,,,,"742437039","2108226666","541110","DAVIS, CEDILLO AND MENDOZA, INC.",,"755 E MULBERRY AVE. STE, 500",,"SAN ANTONIO","TX","782123135",,,,,,,"742437039","2108226666",,,,"2011-10-07T14:08:19-0500","J. RUSSELL DAVIS",,,,,81,51,0,25,76,0,76,59,1,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007123944P030023724470001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"GOLDEN SUN, INC. 401(K) PLAN","003","2008-09-01","GOLDEN SUN, INC.",,,"26529 RUETHER AVE",,"SANTA CLARITA","CA","91350",,,,,,,"26529 RUETHER AVE",,"SANTA CLARITA","CA","91350",,,,,,,"953024712","8183709800","325600","GOLDEN SUN, INC.",,"26529 RUETHER AVE",,"SANTA CLARITA","CA","91350",,,,,,,"953024712","8183709800",,,,"2011-10-07T12:39:07-0500","THAI NGO",,,,,18,18,0,0,18,0,18,17,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007133547P040022112450001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREATER MEDIA INC. MEDICAL PLAN","510","1984-01-01","GREATER MEDIA INC.",,,"35 BRAINTREE HILL OFFICE PARK","SUITE 300","BRAINTREE","MA","02184",,,,,,,,,,,,,,,,,,"221778442","7813488600","515100","GREATER MEDIA INC.",,"35 BRAINTREE HILL OFFICE PARK","SUITE 300","BRAINTREE","MA","02184",,,,,,,"221778442","7813488600",,,,"2011-10-07T13:35:07-0500","EDWARD NOLAN",,,,,587,490,13,0,503,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143324P030144262449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AREA AGENCY ON AGING DISTRICT 7 403B PLAN","001","1994-10-01","AREA AGENCY ON AGING DISTRICT 7",,,"160 DORSEY DRIVE","MSC/F-32/ UGR PO BOX 500","RIO GRANDE","OH","45674",,,,,,,,,,,,,,,,,,"310971399","7402455306","624100","AREA AGENCY ON AGING DISTRICT 7",,"160 DORSEY DRIVE","MSC/F-32/ UGR PO BOX 500","RIO GRANDE","OH","45674",,,,,,,"310971399","7402455306",,,,"2011-10-07T14:33:20-0500","PAMELA MATURA",,,,,145,141,0,14,155,0,155,148,0,,"2L2G2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143343P040147829665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACCIDENTAL DEATH & DISMEMBERMENT PLAN SODEXO, INC","535","1998-03-28","SODEXO, INC",,,"9801 WASHINGTONIAN BLVD. 11TH FLOOR","OFFICE 1132","GAITHERSBURG","MD","20878",,,,,,,,,,,,,,,,,,"520936594","3019874243","722300","SODEXO, INC",,"9801 WASHINGTONIAN BLVD. 11TH FLOOR","OFFICE 1132","GAITHERSBURG","MD","20878",,,,,,,"520936594","3019874243",,,,"2011-10-07T14:31:01-0500","JULIE PETERSON, VP, BENEFITS",,,,,18201,19554,0,0,19554,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007141006P040665079984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INFINITY PROPERTY AND CASUALTY CORPORATION FLEXIBLE SPENDING ACCOUNT PLAN","506","2003-04-01","INFINITY PROPERTY AND CASUALTY CORPORATION",,,"3700 COLONNADE PARKWAY, SUITE 600",,"BIRMINGHAM","AL","35243",,,,,,,,,,,,,,,,,,"030483872","8003336430","524150","INFINITY PROPERTY AND CASUALTY CORPORATION",,"3700 COLONNADE PARKWAY, SUITE 600",,"BIRMINGHAM","AL","35243",,,,,,,"030483872","8003336430",,,,"2011-10-07T13:57:52-0500","TROY BALLARD",,,,,369,360,0,0,360,0,360,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007130447P040147761905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AUTO CUSTOM CARPETS, INC. 401(K) PLAN","002","1992-01-01","AUTO CUSTOM CARPETS, INC.",,,"P.O. BOX 1350",,"ANNISTON","AL","36201",,,,,,,,,,,,,,,,,,"630740625","2562361118","314000","AUTO CUSTOM CARPETS, INC.",,"P.O. BOX 1350",,"ANNISTON","AL","36201",,,,,,,"630740625","2562361118",,,,"2011-10-07T13:03:43-0500","KEITH HOWELL",,,,,142,117,0,18,135,0,135,89,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007142444P040048485271001","2010-07-01","2011-06-30","2",,,,,,,,,,,,"H MCDONALD MD PC EMPLOYEE DEFINED CONTRIBUTION TRUST","004","1988-07-01","H MC DONALD MD PC",,,"910 N RIVERSIDE AVENUE",,"SAINT CLAIR","MI","480794265",,,,,,,"910 N RIVERSIDE AVENUE",,"SAINT CLAIR","MI","48079",,,,,,,"382363110","8103296072","621111","H MC DONALD MD PC",,"910 N RIVERSIDE AVENUE",,"SAINT CLAIR","MI","48079",,,,,,,"382363110","8103296072",,,,"2011-10-07T14:20:40-0500","STANLEY C MCDONALD","2011-10-07T14:20:40-0500","STANLEY C MCDONALD",,,5,3,0,0,3,0,3,3,0,,"2C3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007140450P030144245745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEPHEN NATELSON, ATTORNEY AT LAW PROFIT SHARING PLAN","001","1985-01-01","STEPHEN NATELSON, ATTORNEY AT LAW",,,"411 CAMINO DE LA PLACITA",,"TAOS","NM","875716192",,,,,,,,,,,,,,,,,,"742805336","5757584844","541110","STEPHEN NATELSON, ATTORNEY AT LAW",,"411 CAMINO DE LA PLACITA",,"TAOS","NM","875716192",,,,,,,"742805336","5757584844",,,,"2011-10-07T14:00:25-0500","STEPHEN NATELSON","2011-10-07T14:00:25-0500","STEPHEN NATELSON",,,4,3,0,0,3,0,3,3,0,,"2A2E2G3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007125931P030021222034001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HILLCREST AMBULANCE SERVICE, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2000-09-01","HILLCREST AMBULANCE SERVICE, INC.",,,"26420 LAKELAND BOULEVARD",,"CLEVELAND","OH","441322642",,,,,,,,,,,,,,,,,,"341202308","2167016684","621900","HILLCREST AMBULANCE SERVICE, INC.",,"26420 LAKELAND BOULEVARD",,"CLEVELAND","OH","441322642",,,,,,,"341202308","2167016684",,,,"2011-10-07T12:57:02-0500","ED PATRIARCA",,,,,116,116,0,0,116,0,116,48,1,,"2E2G2J2K3E3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007134739P040147791777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHERN ILLINOIS CLINICAL LABORATORIES 401(K) SAVINGS AND PROFIT SHARING PLAN","001","1981-10-01","NORTHERN ILLINOIS CLINICAL LABORATORIES",,,"306 ERA DRIVE",,"NORTHBROOK","IL","60062",,,,,,,,,,,,,,,,,,"363141391","8475099779","621510","NORTHERN ILLINOIS CLINICAL LABORATORIES",,"306 ERA DRIVE",,"NORTHBROOK","IL","60062",,,,,,,"363141391","8475099779",,,,"2011-10-07T13:46:46-0500","ANNA WELDER",,,,,227,186,0,41,227,0,227,140,9,,"2E2J2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007135257P040147794465006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MADISON GAS & ELECTRIC CO. 401K RETIREMENT ACCUMULATION PLAN","005","1985-12-31","MADISON GAS & ELECTRIC CO.",,,"P.O. BOX 1231","133 SOUTH BLAIR STREET","MADISON","WI","537011231",,,,,,,,,,,,,,,,,,"390444025","6082527101","221500","MADISON GAS & ELECTRIC CO.",,"P.O. BOX 1231","133 SOUTH BLAIR STREET","MADISON","WI","537011231",,,,,,,"390444025","6082527101",,,,"2011-10-07T06:22:33-0500","SANDRA L. DOLISTER, SENIOR DIRECTOR",,,,,467,317,21,109,447,8,455,440,1,,"2F2G2J2K2O3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007135257P040147794465010","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"JOHN S. MAISEL PROFIT SHARING PLAN","001","1990-12-01","JOHN S. MAISEL",,,"917 FRANKLIN STREET, SUITE 100",,"HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"760296630",,"541110","JOHN S. MAISEL",,"917 FRANKLIN STREET, SUITE 100",,"HOUSTON","TX","77002",,,,,,,"760296630",,,,,"2011-10-07T09:42:11-0500","JOHN MAISEL",,,,,2,2,,,2,,2,2,,,"2E2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143400P040665149872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SODEXO EMPLOYEE ASSISTANCE PLAN","543","1991-09-01","SODEXO, INC",,,"9801 WASHINGTONIAN BLVD. 11TH FLOOR","OFFICE 1125","GAITHERSBURG","MD","20878",,,,,,,,,,,,,,,,,,"520936594","3019874140","722300","SODEXO, INC",,"9801 WASHINGTONIAN BLVD. 11TH FLOOR","OFFICE 1125","GAITHERSBURG","MD","20878",,,,,,,"520936594","3019874140",,,,"2011-10-07T14:31:48-0500","JULIE PETERSON, VP, BENEFITS",,,,,64000,64000,,,64000,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143445P040147830177008","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"MORPHOTRAK INC PROFIT SHARING AND SAVINGS PLAN","001","1988-01-01","MORPHOTRAK INC",,,"33405 8TH AVENUE SOUTH",,"FEDERAL WAY","WA","98003",,,,,,,,,,,,,,,,,,"330154789","2533833617","541600","MORPHOTRAK INC",,"33405 8TH AVENUE SOUTH",,"FEDERAL WAY","WA","98003",,,,,,,"330154789","2533833617",,,,"2011-10-07T05:37:12-0500","ALLYSON THOMAS",,,,,565,0,0,0,0,0,0,0,,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143445P040147830177007","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"IBEW LOCAL 351 SURETY PLAN","002","1995-10-01","IBEW LOCAL 351 SURETY FUND TRUSTEES",,,"C/O IE SHAFFER CO., P O BOX 1028","830 BEAR TAVERN ROAD","WEST TRENTON","NJ","086280230",,,,,,,,,,,,,,,,,,"223431479","8007923666","238210","IBEW LOCAL 351 SURETY FUND TRUSTEES",,"C/O IE SHAFFER CO., P O BOX 1028","830 BEAR TAVERN ROAD","WEST TRENTON","NJ","086280230",,,,,,,"223431479","8007923666",,,,"2011-10-07T06:12:30-0500","EDWARD GANT, TRUSTEE","2011-10-07T06:12:30-0500","GEORGE BRESTLE, TRUSTEE",,,2278,1732,,602,2334,,2334,,,243,"2C2G",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007132402P040147774673001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"UNITED STATES ENDOSCOPY GROUP, INC. 401(K) SAVINGS PLAN & TRUST","001","1996-07-01","UNITED STATES ENDOSCOPY GROUP, INC.",,,"5976 HEISLEY RD",,"MENTOR","OH","440601873",,,,,,,,,,,,,,,,,,"341688145","4406394494","621111","UNITED STATES ENDOSCOPY GROUP, INC.",,"5976 HEISLEY RD",,"MENTOR","OH","440601873",,,,,,,"341688145","4406394494",,,,"2011-10-07T13:23:58-0500","PETER BRUMBERGS","2011-10-07T13:23:58-0500","PETER BRUMBERGS",,,308,336,0,15,351,0,351,310,9,,"2E2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111007123955P030047637591001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"THERMOGENESIS CORP 401(K) PROFIT SHARING PLAN","001","1996-01-01","THERMOGENESIS CORPORATION",,,"2711 CITRUS RD",,"RANCHO CORDOVA","CA","95742",,,,,,,"2711 CITRUS RD",,"RANCHO CORDOVA","CA","95742",,,,,,,"943018487","9168585100","339110","THERMOGENESIS CORPORATION",,"2711 CITRUS RD",,"RANCHO CORDOVA","CA","95742",,,,,,,"943018487","9168585100",,,,"2011-10-07T12:39:10-0500","VALERIE LEDDY",,,,,78,69,0,21,90,0,90,69,0,,"2E2F2G2J2K2S2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111007143447P030670697360001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEVEN J. KEND, D.D.S., INC. PROFIT SHARING PLAN","002","1981-09-28","STEVEN J. KEND, D.D.S, INC.",,,"1515 VIA LOPEZ",,"PALOS VERDES ESTATES","CA","902741961",,,,,,,,,,,,,,,,,,"953657048","3103738821","621210","STEVEN J. KEND, D.D.S, INC.",,"1515 VIA LOPEZ",,"PALOS VERDES ESTATES","CA","902741961",,,,,,,"953657048","3103738821",,,,"2011-10-07T14:27:50-0500","STEVEN KEND",,,,,7,8,1,0,9,0,9,7,0,,"2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-07","Filed with authorized/valid electronic signature",, "20111011103747P040049310935001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROCKEFELLER GROUP SALARIED EMPLOYEES TUITION REIMBURSMENT","510","1985-01-01","ROCKEFELLER GROUP INTERNATIONAL INC.",,,"1221 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10020",,,,,,,"1221 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10020",,,,,,,"133975924","2122822000","531390","ROCKEFELLER GROUP INTERNATIONAL INC.",,"1221 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10020",,,,,,,"133975924","2122822000",,,,"2011-10-11T09:05:58-0500","AMY CHOC",,,,,258,253,0,0,253,0,253,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011102817P040150142081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PENLAND & HARTWELL, LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-04-01","PENLAND & HARTWELL, LLC",,,"1 N. LASALLE","38TH FLOOR","CHICAGO","IL","60602",,,,,,,,,,,,,,,,,,"320131022","3125785610","541990","PENLAND & HARTWELL, LLC",,"1 N. LASALLE","38TH FLOOR","CHICAGO","IL","60602",,,,,,,"320131022","3125785610",,,,"2011-10-11T10:27:32-0500","DAVID C. HARTWELL","2011-10-11T10:27:32-0500","DAVID C. HARTWELL",,,8,5,0,2,7,0,7,7,2,,"2J2E2A3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011082548P040049281783001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NOLAND COMPANY VISION PLAN","511","1998-01-01","NOLAND COMPANY",,,"3110 KETTERING BLVD.",,"DAYTON","OH","45439",,,,,,,"3110 KETTERING BLVD.",,"DAYTON","OH","45439",,,,,,,"540320170","9375315250","423700","NOLAND COMPANY",,"3110 KETTERING BLVD.",,"DAYTON","OH","45439",,,,,,,"540320170","9375315250",,,,"2011-10-11T08:25:34-0500","MIKE KIRKLAND",,,,,345,316,,,316,,316,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111010150527P040673451776001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PREMIER SALONS, INC. PENSION PLAN","005","1976-01-01","PREMIER SALONS, INC.",,,"8341 10TH AVE N",,"GOLDEN VALLEY","MN","554274420",,,,,,,,,,,,,,,,,,"412007052","7635137200","812112","PREMIER SALONS, INC.",,"8341 10TH AVE N",,"GOLDEN VALLEY","MN","554274420",,,,,,,"412007052","7635137200",,,,"2011-10-10T13:08:39-0500","KRISTINE SPRINGER","2011-10-10T15:03:19-0500","SUE ANDERSON",,,421,55,143,203,401,10,411,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011084919P030048464151001","2010-05-14","2010-12-31","4","P","1","0","0","1","0","0","0","0","0",,"GE INSTITUTIONAL INTERNATIONAL EQUITY FUND","717",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-11T08:48:05-0500","JOHN G. PHARO","2011-10-11T08:48:05-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111011093429P030024112742001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1","0","0","0",,"THE GUARDIAN HIGH DEDUCTIBLE HEALTH PLAN THROUGH UNITED HEALTHCARE FIELD","516","2006-01-01","THE GUARDIAN LIFE INSURANCE COMPANY OF AMERICA",,,"7 HANOVER SQUARE",,"NEW YORK","NY","10004",,,,,,,"7 HANOVER SQUARE",,"NEW YORK","NY","10004",,,,,,,"135123390","2129193386","524140","THE GUARDIAN LIFE INSURANCE COMPANY OF AMERICA",,"7 HANOVER SQUARE",,"NEW YORK","NY","10004",,,,,,,"135123390","2129193386",,,,"2011-10-11T09:32:55-0500","HELEN SIMMONS",,,,,385,396,10,,406,,406,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011101421P030146560161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VANTAGE TRAVEL SERVICE, INC. 401(K) PLAN","001","1985-01-01","VANTAGE TRAVEL SERVICE, INC.",,,"90 CANAL STREET",,"BOSTON","MA","02114",,,,,,,,,,,,,,,,,,"042806344","6178786055","812990","VANTAGE TRAVEL SERVICE, INC.",,"90 CANAL STREET",,"BOSTON","MA","02114",,,,,,,"042806344","6178786055",,,,"2011-10-11T10:14:11-0500","HARRY S. MELIKIAN","2011-10-11T10:14:11-0500","HARRY S. MELIKIAN",,,164,101,0,39,140,0,140,103,4,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010151815P040004599363001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SITE SAFETY, LLC 401(K) PLAN","001","1999-01-01","SITE SAFETY, LLC",,,"21 WEST 38TH STREET - 12TH FLOOR",,"NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"134076510","2126837200","541380","SITE SAFETY, LLC",,"21 WEST 38TH STREET - 12TH FLOOR",,"NEW YORK","NY","10018",,,,,,,"134076510","2126837200","TESTWELL","133980536","001","2011-10-10T15:14:33-0500","PETER AMATO",,,,,129,46,0,47,93,0,93,57,0,,"2E2J2K2G3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010155542P040149655489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CENTER FOR WOMEN'S HEALTH 401(K) PROFIT SHARING PLAN","001","1987-01-01","CENTER FOR WOMEN'S HEALTH",,,"4140 W MEMORIAL STE 500",,"OKLAHOMA CITY","OK","73120",,,,,,,,,,,,,,,,,,"731140873","4057557430","621111","CENTER FOR WOMEN'S HEALTH",,"4140 W MEMORIAL STE 500",,"OKLAHOMA CITY","OK","73120",,,,,,,"731140873","4057557430",,,,"2011-10-10T15:55:29-0500","ALAN SIMPSON",,,,,28,24,0,5,29,0,29,29,2,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010153411P040149640337001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SHADY GROVE RADIOLOGICAL CONSULTANTS PA PROFIT SHARING PLAN AND TRUST AGREEMENT","005","1985-07-01","SHADY GROVE RADIOLOGICAL CONSULTANTS, P A",,,"20410 OBSERVATION DRIVE STE 104",,"GERMANTOWN","MD","20876",,,,,,,,,,,,,,,,,,"521148069","3019485700","621111","SHADY GROVE RADIOLOGICAL CONSULTANTS P A","LARRY W. BUSCHING, TRUSTEE","20410 OBSERVATION DRIVE STE 104",,"GERMANTOWN","MD","20876",,,,,,,"521148069","3019485700",,,,"2011-10-10T14:59:41-0500","LARRY BUSCHING",,,,,127,117,,3,120,,120,120,,,"3H2R2H2E",,,,"1",,"1",,"1",,,,,"1",,"1","5","1",,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111011090235P030146504049001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE INDAK EMPLOYEES' COMBINED PENSION PLAN AND TRUST","001","1959-07-15","INDAK MANUFACTURING CORPORATION",,,"1915 TECHNY ROAD",,"NORTHBROOK","IL","600625382",,,,,,,,,,,,,,,,,,"362101210","8472720343","335900","INDAK MANUFACTURING CORPORATION",,"1915 TECHNY ROAD",,"NORTHBROOK","IL","600625382",,,,,,,"362101210","8472720343",,,,"2011-10-11T09:01:08-0500","MARTIN COBB",,,,,243,53,88,93,234,6,240,,0,,"1A1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011094704P030146540193001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE BRIDGEWATER CLUB LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","THE BRIDGEWATER CLUB, LLC",,,"3535 EAST 161ST STREET",,"CARMEL","IN","46033",,,,,,,,,,,,,,,,,,"352065791","3178674653","713900","THE BRIDGEWATER CLUB, LLC",,"3535 EAST 161ST STREET",,"CARMEL","IN","46033",,,,,,,"352065791","3178674653",,,,"2011-10-11T09:46:08-0500","JON DEWITT",,,,,158,97,0,2,99,0,99,39,6,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","1","0",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011093511P030681192912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MANTYLA MCREYNOLDS AND ASSOCIATES RETIREMENT PLAN","001","1996-01-01","MANTYLA MCREYNOLDS AND ASSOCIATES CPAS",,,"178 S RIO GRANDE STREET, STE 200",,"SALT LAKE CITY","UT","84101",,,,,,,,,,,,,,,,,,"870466832","8012691818","541211","MANTYLA MCREYNOLDS AND ASSOCIATES CPAS",,"178 S RIO GRANDE STREET, STE 200",,"SALT LAKE CITY","UT","84101",,,,,,,"870466832","8012691818",,,,"2011-10-11T09:34:23-0500","SHANE GRANT","2011-10-11T09:34:23-0500","SHANE GRANT",,,44,28,2,9,39,0,39,39,1,,"2A2E2F2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011100956P040150131233001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"MCKECHNIE INVESTMENTS, INC 401(K) SAVINGS PLAN","001","1990-01-01","MCKECHNIE AEROSPACE INVESTMENTS INC",,,"900 S RICHFIELD RD",,"PLACENTIA","CA","92870",,,,,,,"900 S RICHFIELD RD",,"PLACENTIA","CA","92870",,,,,,,"582430801","7149934200","551112","MCKECHNIE AEROSPACE INVESTMENTS INC",,"900 S RICHFIELD RD",,"PLACENTIA","CA","92870",,,,,,,"582430801","7149934200",,,,"2011-10-11T10:09:43-0500","JEFFREY KELLER",,,,,1452,781,2,165,948,5,953,659,3,,"2F2G2J2K2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111010150058P040149613761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONSORTIUM HEALTH PLANS, INC. 401(K) PLAN","002","1994-01-01","CONSORTIUM HEALTH PLANS, INC.",,,"10490 LITTLE PATUXENT PARKWAY",,"COLUMBIA","MD","21044",,,,,,,"10490 LITTLE PATUXENT PARKWAY",,"COLUMBIA","MD","21044",,,,,,,"363963715","4107722909","524290","CONSORTIUM HEALTH PLANS, INC.",,"10490 LITTLE PATUXENT PARKWAY",,"COLUMBIA","MD","21044",,,,,,,"363963715","4107722909",,,,"2011-10-10T14:55:22-0500","MIRIAM LEONARD",,,,,49,35,0,14,49,0,49,42,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010155641P030146056145001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WELFARE BENEFIT PLAN FOR AGENTS","517","2008-03-01","AMERICAN UNITED LIFE INSURANCE CO.",,,"ONE AMERICAN SQUARE","P.O. BOX 368","INDIANAPOLIS","IN","462060368",,,,,,,,,,,,,,,,,,"350145825","3172851877","524140","AMERICAN UNITED LIFE INSURANCE CO.",,"ONE AMERICAN SQUARE","P.O. BOX 368","INDIANAPOLIS","IN","462060368",,,,,,,"350145825","3172851877",,,,"2011-10-10T15:22:57-0500","MARK ROLLER",,,,,1054,1022,178,,1200,,,,,,,"4A4B4D4E4H","1","0","1","0","1","0","1","0","0","0","0","1","0","1","5","1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111011080300P040150063601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIAM H. BURNHAM PROFIT SHARING PLAN","001","1998-01-01","WILLIAM H. BURNHAM",,,"59 STARK AVENUE",,"DOVER","NH","03820",,,,,,,,,,,,,,,,,,"020510354","6037427935","453220","WILLIAM H. BURNHAM",,"59 STARK AVENUE",,"DOVER","NH","03820",,,,,,,"020510354","6037427935",,,,"2011-10-11T08:02:38-0500","WILLIAM H BURNHAM","2011-10-11T08:02:38-0500","WILLIAM H BURNHAM",,,4,4,0,0,4,,4,4,,,"2E2G3B3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011100157P040675758928004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DISCOVERY CLOTHING 401(K) PLAN","001","2006-01-01","R & R GOLDMAN & ASSOC., INC.",,,"4300 N. KNOX AVENUE",,"CHICAGO","IL","60641",,,,,,,,,,,,,,,,,,"363013179","7737774494","448120","R & R GOLDMAN & ASSOC., INC.",,"4300 N. KNOX AVENUE",,"CHICAGO","IL","60641",,,,,,,"363013179","7737774494",,,,"2011-10-04T12:39:28-0500","JEFFREY GOLDMAN",,,,,50,45,,,45,,45,45,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,"1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011104508P040675871408010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HOWARD MILLER - HEKMAN DEFINED BENEFIT PENSION PLAN","001","1956-01-27","HOWARD MILLER COMPANY",,,"860 EAST MAIN STREET",,"ZEELAND","MI","49464",,,,,,,,,,,,,,,,,,"381258662","6167729131","337000","HOWARD MILLER COMPANY",,"860 EAST MAIN STREET",,"ZEELAND","MI","49464",,,,,,,"381258662","6167729131","HOWARD MILLER CLOCK COMPANY","381258662","001","2011-10-10T10:08:00-0500","MARK A. BLEEKER","2011-10-11T10:42:46-0500","DENNIS J. PALASEK",,,638,236,161,204,601,24,625,,1,,"1A1G3H",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010145045P040149605665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UCAR RETIREMENT PLAN","001","1960-07-18","UNIVERSITY CORPORATION FOR ATMOSPHERIC RESEARCH",,,"PO BOX 3000",,"BOULDER","CO","80307",,,,,,,,,,,,,,,,,,"840412668","3034978702","611000","UNIVERSITY CORPORATION FOR ATMOSPHERIC RESEARCH",,"PO BOX 3000",,"BOULDER","CO","80307",,,,,,,"840412668","3034978702",,,,"2011-10-10T14:49:22-0500","LAURIE CARR","2011-10-10T14:49:22-0500","LAURIE CARR",,,3541,1603,0,2050,3653,5,3658,3603,0,,"2F2G2L2M2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011084345P030146487361001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"RCDOLNER LLC 401(K) SAVINGS & INVESTMENT PLAN","001","1994-01-01","RCDOLNER LLC",,,"2 PENN PLAZA EAST","11TH FLOOR","NEWARK","NJ","07105",,,,,,,"2 PENN PLAZA EAST","11TH FLOOR","NEWARK","NJ","07105",,,,,,,"134091383","9738546428","236200","RCDOLNER LLC",,"2 PENN PLAZA EAST","11TH FLOOR","NEWARK","NJ","07105",,,,,,,"134091383","9738546428",,,,"2011-10-11T08:43:28-0500","PAUL SARCINELLA",,,,,121,58,0,47,105,0,105,110,22,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011084935P040150082801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PIPEJACKERS, INC. PROFIT SHARING PLAN","001","1990-01-01","PIPEJACKERS, INC.",,,"15 EAST BARTLETT ROAD",,"MIDDLE ISLAND","NY","11953",,,,,,,,,,,,,,,,,,"112209596","6319241010","238900","PIPEJACKERS, INC.",,"15 EAST BARTLETT ROAD",,"MIDDLE ISLAND","NY","11953",,,,,,,"112209596","6319241010",,,,"2011-10-11T08:49:35-0500","TIMOTHY DEOS",,,,,4,4,0,0,4,0,4,4,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011082821P030021561378001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BRYSON S. SMITH, M.D., P.C. 401K & PROFIT SHARING PLAN","001","1995-01-01","BRYSON S. SMITH, M.D., P.C.",,,"4403 HARRISON BLVD., STE 1815",,"OGDEN","UT","84403",,,,,,,,,,,,,,,,,,"870511278","8014799119","621111","BRYSON S. SMITH, M.D., P.C.",,"4403 HARRISON BLVD., STE 1815",,"OGDEN","UT","84403",,,,,,,"870511278","8014799119",,,,"2011-10-11T09:28:05-0500","BRYSON S SMITH",,,,,12,1,0,11,12,0,12,12,0,,"2A2E2F2G2J2K3D",,"1",,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011083505P040150077169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AQUA TURF COUNTRY CLUB SAVINGS AND RETIREMENT PLAN","001","1988-04-01","AQUA TURF COUNTRY CLUB",,,"MULBERRY STREET, P.O. BOX 23",,"PLANTSVILLE","CT","06479",,,,,,,,,,,,,,,,,,"060946965","8606219335","722300","AQUA TURF COUNTRY CLUB",,"MULBERRY STREET, P.O. BOX 23",,"PLANTSVILLE","CT","06479",,,,,,,"060946965","8606219335",,,,"2011-10-11T08:35:01-0500","JOSEPH CALVANESE","2011-10-11T08:35:01-0500","JOSEPH CALVANESE",,,112,122,,,122,,122,,,,"2E2J2K",,,,"1",,,,"1",,"1",,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011090914P030146508433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A. J. SILBERMAN & COMPANY 401(K) SAVINGS PLAN","001","1991-12-01","A. J. SILBERMAN & COMPANY",,,"267 BLUE RUN ROAD","PO BOX 730","INDIANOLA","PA","15051",,,,,,,,,,,,,,,,,,"250796585","4124551011","424400","A. J. SILBERMAN & COMPANY",,"267 BLUE RUN ROAD","PO BOX 730","INDIANOLA","PA","15051",,,,,,,"250796585","4124551011",,,,"2011-10-11T09:08:19-0500","LISA SILBERMAN",,,,,157,175,0,7,182,0,182,182,1,,"3D2J2F2G2K2E2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011092410P040150097425001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"CLEAR CHANNEL COMMUNICATIONS, INC. 401K SAVINGS PLAN FOR UNION EMPLOYEES","002","1999-04-01","CLEAR CHANNEL COMMUNICATIONS, INC.",,"RETIREMENT BENEFITS DEPARTMENT","200 EAST BASSE ROAD",,"SAN ANTONIO","TX","78209",,,,,,,,,,,,,,,,,,"741787539","2108222828","515100","CLEAR CHANNEL COMMUNICATIONS, INC.","RETIREMENT BENEFITS DEPARTMENT","200 EAST BASSE ROAD",,"SAN ANTONIO","TX","782098328",,,,,,,"741787539","2108222828",,,,"2011-10-11T09:17:37-0500","MARK HASLER",,,,,280,245,0,42,287,0,287,129,0,,"2E2F2G2J3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011101434P030146560353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UPDATE, INC. 401(K) SAVINGS AND RETIREMENT PLAN","001","1996-11-01","UPDATE, INC.",,,"1040 AVENUE OF THE AMERICAS","3RD FLOOR","NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"133695109","2129212200","561300","UPDATE, INC.",,"1040 AVENUE OF THE AMERICAS","3RD FLOOR","NEW YORK","NY","10018",,,,,,,"133695109","2129212200",,,,"2011-10-11T10:26:40-0500","HEATHER RICHARDSON","2011-10-11T10:26:40-0500","HEATHER RICHARDSON",,,956,803,0,116,919,0,919,204,1,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011070604P030146437873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"METRO ATLANTA AMBULANCE SERVICE, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","2002-01-01","METRO ATLANTA AMBULANCE SERVICE SERVICE, INC.",,,"595 ARMSTRONG STREET",,"MARIETTA","GA","30060",,,,,,,,,,,,,,,,,,"582612884","7706938439","621900","METRO ATLANTA AMBULANCE SERVICE SERVICE, INC.",,"595 ARMSTRONG STREET",,"MARIETTA","GA","30060",,,,,,,"582612884","7706938439",,,,"2011-10-11T07:05:30-0500","PETER QUINONES",,,,,295,224,20,37,281,1,282,281,36,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011093903P030021570370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCHWEGMAN, LUNDBERG & WOESSNER, P.A. 401(K) RETIREMENT PLAN","001","1994-01-01","SCHWEGMAN, LUNDBERG & WOESSNER, P.A.",,,"121 SOUTH 8TH ST, 1600 TCF TOWER",,"MINNEAPOLIS","MN","55402",,,,,,,,,,,,,,,,,,"411765559","6123736906","541110","SCHWEGMAN, LUNDBERG & WOESSNER, P.A.",,"121 SOUTH 8TH ST, 1600 TCF TOWER",,"MINNEAPOLIS","MN","55402",,,,,,,"411765559","6123736906",,,,"2011-10-11T09:38:39-0500","THOMAS BRENNAN","2011-10-11T09:38:39-0500","VICKY HAWES",,,245,166,0,74,240,0,240,237,8,,"2E2G2J2K3D2R2F3F2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011092816P030146522481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PROVEST LLC 401K PLAN","001","2007-01-01","PROVEST LLC",,,"4520 SEEDLING CIRCLE",,"TAMPA","FL","33614",,,,,,,,,,,,,,,,,,"204268980","8138772844","541190","PROVEST LLC",,"4520 SEEDLING CIRCLE",,"TAMPA","FL","33614",,,,,,,"204268980","8138772844",,,,"2011-10-11T09:26:21-0500","LORI LIBURDI",,,,,988,719,0,38,757,0,757,154,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011105139P040022482098006","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"EDW. C. LEVY CO. CAPITAL ACCUMULATION PLAN","335","1984-03-01","EDW. C. LEVY CO.",,,"8800 DIX AVENUE",,"DETROIT","MI","48209",,,,,,,"8800 DIX AVENUE",,"DETROIT","MI","48209",,,,,,,"381253012","3134292200","327300","ADMIN COMMITTEE OF THE EDW. C. LEVY CO. CAPITAL ACCUMULATION PLAN",,"8800 DIX AVENUE",,"DETROIT","MI","48209",,,,,,,"382531533","3134292200",,,,"2011-10-11T06:46:33-0500","ROBERT P. SCHOLZ","2011-10-11T06:46:33-0500","ROBERT P. SCHOLZ",,,1075,791,15,267,1073,3,1076,1076,0,,"2E2G2J2K2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011105151P030681410176001","2010-05-01","2011-04-30","2",,"0","1","0","0","0","0","0","0","0",,"COOPERATIVE OPTICAL SERVICES INC","503","2007-05-01","GOODWILL INDUSTRIES OF GREATER DETROIT",,,"3111 GRAND RIVER AVE",,"DETROIT","MI","482082962",,,,,,,"3111 GRAND RIVER AVE",,"DETROIT","MI","482082962",,,,,,,"381362823","3139643900","624310","GOODWILL INDUSTRIES OF GREATER DETROIT",,"3111 GRAND RIVER AVE",,"DETROIT","MI","482082962",,,,,,,"381362823","3139643900",,,,"2011-10-11T10:45:36-0500","KAREN SANFORD",,,,,59,57,,,57,,57,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111010150227P040022401938001","2008-09-01","2009-08-31","2",,"0","0","0","0","0","1","0","1","0",,"PROFESSIONAL CONSTRUCTION SERVICES INC. 401K PLAN","002","1991-01-01","PROFESSIONAL CONSTRUCTION SERVICES INC.",,,"8001 DOWNMAN ROAD",,"NEW ORLEANS","LA","70126",,,,,,,,,,,,,,,,,,"720743903","5042418001","238900","PROFESSIONAL CONSTRUCTION SERVICES INC.",,"8001 DOWNMAN ROAD",,"NEW ORLEANS","LA","70126",,,,,,,"720743903","5042418001",,,,"2011-10-10T15:00:45-0500","EDWARD J. ABATE","2011-10-10T15:00:45-0500","LEONARD B. HEBERT JR.",,,109,109,0,3,112,0,112,105,0,,"2E2F2G2J2K3E",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010155923P040149658481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HMSHOST CORPORATION BUSINESS TRAVEL ACCIDENT PLAN","580","1999-01-02","HMSHOST CORPORATION",,,"6905 ROCKLEDGE DR",,"BETHESDA","MD","20817",,,,,,,,,,,,,,,,,,"200077121","2406944100","722300","HMSHOST CORPORATION",,"6905 ROCKLEDGE DR",,"BETHESDA","MD","20817",,,,,,,"200077121","2406944100",,,,"2011-10-10T15:58:31-0500","BONNIE L. GRASSI, SR. DIRECTOR","2011-10-10T14:45:44-0500","CHUCK POWERS, EVP CHIEF HR OFFICER",,,2699,2679,0,0,2679,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011095741P030012342293001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUMMIT CARE 401(K) PLAN","001","2000-01-01","SUMMIT CARE II, INC.",,,"2851 REMINGTON GREEN CIRCLE","SUITE D","TALLAHASSEE","FL","32308",,,,,,,,,,,,,,,,,,"593734290","8503862522","623000","SUMMIT CARE II, INC.",,"2851 REMINGTON GREEN CIRCLE","SUITE D","TALLAHASSEE","FL","32308",,,,,,,"593734290","8503862522",,,,"2011-10-11T09:57:10-0500","C. GUY FARMER",,,,,1339,1143,0,105,1248,0,1248,366,1,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011101515P030146560849002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MLBA MUTUAL INSURANCE COMPANY EMPLOYEE RETIREMENT PLAN","001","1995-01-01","MLBA MUTUAL INSURANCE COMPANY",,,"920 NORTH FAIRVIEW",,"LANSING","MI","48912",,,,,,,,,,,,,,,,,,"382788542","5173749611","812990","MLBA MUTUAL INSURANCE COMPANY",,"920 NORTH FAIRVIEW",,"LANSING","MI","48912",,,,,,,"382788542",,,,,"2011-10-05T14:44:45-0500","LOUIS ADADO","2011-10-05T14:44:53-0500","LOUIS ADADO",,,15,10,0,5,15,0,15,13,,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010151511P040149623345003","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"STEFANI & STEFANI, P.C. RETIREMENT PLAN","001","2005-01-01","STEFANI & STEFANI, P.C.",,,"512 E. ELEVEN MILE ROAD",,"ROYAL OAK","MI","48067",,,,,,,,,,,,,,,,,,"200442417","2485443400","541110","STEFANI & STEFANI, P.C.",,"512 E. ELEVEN MILE ROAD",,"ROYAL OAK","MI","48067",,,,,,,"200442417","2485443400",,,,"2011-10-10T15:05:04-0500","MICHAEL STEFANI","2011-10-10T15:05:32-0500","MICHAEL STEFANI",,,6,5,0,1,6,0,6,6,,,"2E2J2H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010152536P040004599539001","2010-01-01","2010-12-31","3",,"0","0","0","0","1","1","0","0","0",,"GE JOB AND INCOME SECURITY PLAN FOR HOURLY EMPLOYEES","520","1982-06-28","GENERAL ELECTRIC COMPANY",,,"3135 EASTON TURNPIKE",,"FAIRFIELD","CT","068280001",,,,,,,,,,,,,,,,,,"140689340","8004323450","335900","GENERAL ELECTRIC COMPANY","US EMPLOYEE SERVICES","PO BOX 6024",,"SCHENECTADY","NY","123016024",,,,,,,"140689340","8004323450",,,,"2011-10-10T15:22:50-0500","BARBARA BECKMANN",,,,,28022,25246,94,0,25340,,,,,,,"4C4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111011082903P040675513408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARKANSAS SURGICAL HOSPITAL, LLC 401(K) PLAN","001","2005-01-01","ARKANSAS SURGICAL HOSPITAL",,,"5201 NORTHSHORE DR.",,"NORTH LITTLE ROCK","AR","72118",,,,,,,,,,,,,,,,,,"710858717","5017488000","622000","ARKANSAS SURGICAL HOSPITAL",,"5201 NORTHSHORE DR.",,"NORTH LITTLE ROCK","AR","72118",,,,,,,"710858717","5017488000",,,,"2011-10-11T08:28:09-0500","TINA ALBRIGHT",,,,,193,187,2,24,213,0,213,157,2,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011083007P040150074673002","2010-05-01","2011-04-30","2",,,,,,,,,,,,"DELAVAL INC. EMPLOYEE BENEFIT PLAN","502","1997-05-01","DELAVAL INC.",,,"11100 NORTH CONGRESS AVENUE",,"KANSAS CITY","MO","64153",,,,,,,,,,,,,,,,,,"222734539","8168917700","333100","DELAVAL INC.",,"11100 NORTH CONGRESS AVENUE",,"KANSAS CITY","MO","64153",,,,,,,"222734539","8168917700",,,,"2011-10-11T08:25:15-0500","DEBBIE FARRAR",,,,,466,465,,,465,,,,,,,"4A4B4D4E4F4H4L4Q","1",,,"1","1",,,"1",,,,,,"1","8","1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011085635P030146500113006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"S SENSE CO INC 401K PLAN","001","2006-03-01","S SENSE COMPANY, INC. C/O ARNOLD KRONICK",,,"524 WITTICH TERRACE",,"RIVERDALE","NJ","07675",,,,,,,"524 WITTICH TERRACE",,"RIVERVALE","NJ","07675",,,,,,,"391986732",,"424300","S SENSE COMPANY, INC. C/O ARNOLD KRONICK",,"524 WITTICH TERRACE",,"RIVERDALE","NJ","07675",,,,,,,"391986732",,,,,"2011-10-11T04:53:21-0500","ARNOLD KRONICK",,,,,2,2,0,0,2,,2,2,,,"2E2G2J2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011091906P040022473330009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GROUP PERSONAL ACCICENT INSURANCE","505","1975-12-01","TURNER INDUSTRIES GROUP, LLC",,,"8687 UNITED PLAZA BLVD",,"BATON ROUGE","LA","70809",,,,,,,"8687 UNITED PLAZA BLVD STE 101",,"BATON ROUGE","LA","70809",,,,,,,"721513047","2259225050","237990","TURNER INDUSTRIES GROUP, LLC",,"8687 UNITED PLAZA BLVD",,"BATON ROUGE","LA","70809",,,,,,,"721513047","2259225050",,,,"2011-10-11T04:15:02-0500","DANIEL BURKE","2011-10-11T04:15:02-0500","DANIEL BURKE",,,3869,2835,,,2835,,,,,,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011090719P030146507345001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"WTC-CTF GLOBAL GROWTH","001",,"WELLINGTON TRUST COMPANY, NA",,"JOSEPH A. PENTA","280 CONGRESS STREET",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"203879807","6177908964",,"WELLINGTON TRUST COMPANY, NA","JOSEPH A. PENTA","280 CONGRESS STREET",,"BOSTON","MA","02210",,,,,,,"203879807","6177908964",,,,,,,,"2011-10-11T08:56:58-0500","JOSEPH A. PENTA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111010144153P030146007009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RPM PROFESSIONAL & TECHNICAL MANAGEMENT GROUP, INC. RETIREMENT PLAN","001","2008-12-01","RPM PROFESSIONAL & TECHNICAL MANAGEMENT GROUP, INC.",,,"PO BOX 3027",,"YAUCO","PR","00698",,,,,,,,,,,,,,,,,,"660714592","7872673511","541990","RPM PROFESSIONAL & TECHNICAL MANAGEMENT GROUP, INC.",,"PO BOX 3027",,"YAUCO","PR","00698",,,,,,,"660714592","7872673511",,,,"2011-10-10T14:37:22-0500","LUIS ROIG","2011-10-10T14:37:22-0500","LUIS ROIG",,,3,3,0,0,3,0,3,3,0,,"2E3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010191858P030146160641001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"INVESCO US QUANTITATIVE CORE TRUST","001",,"INVESCO NATIONAL TRUST COMPANY",,,"1555 PEACHTREE STREET NE, STE 1800","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,,,,,,,,,,,,"912052098","4048920896",,"INVESCO NATIONAL TRUST COMPANY",,"1555 PEACHTREE STREET NE, STE 1800","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,"840591534","4048920896",,,,,,,,"2011-10-10T12:44:53-0500","PAUL SPRIGGS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010154820P030021500770001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHOENIX CHILDREN'S ACADEMY","001","2005-07-01","PHOENIX CHILDREN'S ACADEMY",,,"8767 E VIA DE VENTURA STE 200",,"SCOTTSDALE","AZ","85258",,,,,,,,,,,,,,,,,,"860793666","4086077552","624410","PHOENIX CHILDREN'S ACADEMY",,"8767 E VIA DE VENTURA STE 200",,"SCOTTSDALE","AZ","85258",,,,,,,"860793666","4086077552",,,,"2011-10-10T15:46:41-0500","SHARON MORAN",,,,,3758,1542,0,0,1542,0,1542,402,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010154830P030021500786001","2010-01-01","2010-12-27","2",,"0","0","1","1",,"1",,,,,"MH HEALTHCARE 401K PLAN","001","2004-01-01","MH HEALTHCARE",,,"950 N. MERIDIAN STREET","SUITE 140","INDIANAPOLIS","IN","46204",,,,,,,"950 N. MERIDIAN STREET","SUITE 140","INDIANAPOLIS","IN","46204",,,,,,,"351766531","3179633651","621399","MH HEALTHCARE",,"950 N. MERIDIAN STREET","SUITE 140","INDIANAPOLIS","IN","46204",,,,,,,"351766531","3179633651",,,,"2011-10-10T15:44:23-0500","BARBARA MAPLE",,,,,169,0,0,0,0,0,0,0,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010154857P030146051361001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"LEWIS & ELLIS, INC PROFIT SHARING PLAN","001","1969-06-30","LEWIS & ELLIS, INC",,"N. ADRIAN CLINTON","P O BOX 851857","2929 N CENTRAL EXPRESSWAY STE 200","RICHARDSON","TX","750851857",,,,,,,"P O BOX 851857","2929 N CENTRAL EXPRESSWAY STE 200","RICHARDSON","TX","750851857",,,,,,,"751281520","9728500850","541990","LEWIS & ELLIS, INC","N. ADRIAN CLINTON","P O BOX 851857","2929 N CENTRAL EXPRESSWAY STE 200","RICHARDSON","TX","750851857",,,,,,,"751281520","9728500850",,,,"2011-10-10T15:44:49-0500","ADRIAN CLINTON",,,,,71,54,,15,69,1,70,70,2,,"2E2G2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111011071333P030004349027001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMTEQ, INC. 401K PROFIT SHARING PLAN","001","1999-01-01","EMTEQ, INC.",,,"5349 S EMMER DR",,"NEW BERLIN","WI","531517302",,,,,,,,,,,,,,,,,,"391852495","2626796170","334200","EMTEQ, INC.",,"5349 S EMMER DR",,"NEW BERLIN","WI","531517302",,,,,,,"391852495","2626796170",,,,"2011-10-11T07:12:29-0500","ROGER NANIOT","2011-10-11T07:12:29-0500","ROGER NANIOT",,,305,241,0,62,303,0,303,267,20,,"2E2F2G2J2K3D3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011092532P030146520209001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"GREEN TREE SAVINGS & INVESTMENT PLAN","001","2003-08-01","GREEN TREE INVESTMENT HOLDINGS II LLC",,,"345 SAINT PETER STREET, #600",,"ST. PAUL","MN","55102",,,,,,,,,,,,,,,,,,"810611382","6512935701","522298","GREEN TREE INVESTMENT HOLDINGS II LLC",,"345 SAINT PETER STREET, #600",,"ST. PAUL","MN","55102",,,,,,,"810611382","6512935701",,,,"2011-10-11T09:24:27-0500","BARBARA DIDRIKSON",,,,,2268,1751,0,384,2135,0,2135,1948,278,,"2E2F2G2J2K2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011102546P030146566913001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"LNL SA1X LVIP BARON GROWTH OPPORTUNITIES","718",,"LINCOLN NATIONAL LIFE INSURANCE COMPANY",,"RANDALL J CROUCH 6H 04","1300 S CLINTON STREET SUITE 500",,"FORT WAYNE","IN","46802",,,,,,,,,,,,,,,,,,"350472300","2604552000",,"LINCOLN NATIONAL LIFE INSURANCE COMPANY","RANDALL J CROUCH 6H 04","1300 S CLINTON STREET SUITE 500",,"FORT WAYNE","IN","46802",,,,,,,"350472300","2604552000",,,,,,,,"2011-10-11T10:24:52-0500","RANDY CROUCH",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011090400P030681100064004","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"FREDRICK A ISAACS MD PC PROFIT SHARING PLAN","002","1996-01-01","FREDRICK A ISAACS MD PC",,"PIAKER & LYONS PC","PO BOX 1330",,"BINGHAMTON","NY","139021330",,,,,,,,,,,,,,,,,,"161205245","6077299373","621320","FREDRICK A ISAACS MD PC","PIAKER & LYONS PC","PO BOX 1330",,"BINGHAMTON","NY","139021330",,,,,,,"161205245","6077299373",,,,"2011-10-10T12:46:47-0500","FREDRICK A ISAACS MD",,,,,3,4,,,4,,4,4,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011090400P030681100064002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LOGOS EMER SPEC LLC PROFIT SHARING PLAN","002","2000-01-01","LOGOS EMERGENCY SPECIALISTS, LLC",,,"232 COUNTRY CREEK ROAD",,"MACON","GA","31220",,,,,,,,,,,,,,,,,,"582507636","4783614281","621111","LOGOS EMERGENCY SPECIALISTS LLC",,"232 COUNTRY CREEK ROAD",,"MACON","GA","31220",,,,,,,"582507636","4783614281",,,,"2011-10-10T15:50:57-0500","RALPH GRIFFIN",,,,,2,2,,,2,,2,,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011072723P030146447185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHI-CARGO, INC. PROFIT SHARING PLAN","001","1994-01-01","CHI-CARGO, INC.",,,"2311 WEST TOUHY AVENUE",,"ELK GROVE VILLAGE","IL","60007",,,,,,,,,,,,,,,,,,"363667671","8475939900","484110","CHI-CARGO, INC.",,"2311 WEST TOUHY AVENUE",,"ELK GROVE VILLAGE","IL","60007",,,,,,,"363667671","8475939900",,,,"2011-10-10T17:41:00-0500","JOSEPH O. FARIAS","2011-10-10T17:41:00-0500","JOSEPH O. FARIAS",,,35,19,2,12,33,0,33,25,0,,"2E3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011103639P030021578962001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TWO WAY RADIO, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1990-01-01","TWO WAY RADIO, INC.",,,"PO BOX 634",,"WYTHEVILLE","VA","24382",,,,,,,,,,,,,,,,,,"540926996","2762282791","811210","TWO WAY RADIO, INC.",,"PO BOX 634",,"WYTHEVILLE","VA","24382",,,,,,,"540926996","2762282791",,,,"2011-10-11T10:35:47-0500","DEBORAH STUART",,,,,32,26,0,0,26,0,26,26,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111010143110P040149592209001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CONSO INTERNATIONAL CORPORATION 401(K) SAVINGS AND RETIREMENT PLAN","003","1996-01-01","CONSO INTERNATIONAL CORPORATION",,,"6050 DANA WAY",,"ANTIOCH","TN","37013",,,,,,,,,,,,,,,,,,"570986680","6155016041","339900","CONSO INTERNATIONAL CORPORATION",,"6050 DANA WAY",,"ANTIOCH","TN","37013",,,,,,,"570986680","6155016041",,,,"2011-10-07T14:35:40-0500","JAMES DIVIZIO","2011-10-10T14:28:01-0500","JAMES DIVIZIO",,,481,295,4,151,450,0,450,309,9,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010155033P030146052081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"CCG INC 401-K PLAN","001","1994-01-11","CCG INC",,"GARY CASSELMAN","1500 PINECROFT ROAD, SUITE 119",,"GREENSBORO","NC","27407",,,,,,,"1500 PINECROFT ROAD, SUITE 119",,"GREENSBORO","NC","27407",,,,,,,"561250368","3362948793","561490","CCG INC","GARY CASSELMAN","1500 PINECROFT ROAD, SUITE 119",,"GREENSBORO","NC","27407",,,,,,,"561250368","3362948793",,,,"2011-10-10T15:50:01-0500","KEN SHAHBAZ",,,,,3,3,,,3,,3,,,,"2E2F2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111011100012P030146549105001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CBF TECHNOLOGIES, INC. EMPLOYEES PROFIT SHARING PLAN","001","1995-01-01","CBF TECHNOLOGIES, INC.",,,"440 WEST 194TH STREET",,"GLENWOOD","IL","604251541",,,,,,,,,,,,,,,,,,"364004738","7087561900","333510","CBF TECHNOLOGIES, INC.",,"440 WEST 194TH STREET",,"GLENWOOD","IL","604251541",,,,,,,"364004738","7087561900",,,,"2011-10-11T09:46:35-0500","EDWARD A. CAPODICE",,,,,2,2,0,0,2,0,2,2,,,"2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011105340P040150159649001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"COMPASS HEALTH RETIREMENT PLAN","006","1998-07-01","COMPASS HEALTH",,,"4526 FEDERAL AVENUE","BLDG. # 3","EVERETT","WA","98213",,,,,,,"4526 FEDERAL AVENUE","BLDG. # 3","EVERETT","WA","98213",,,,,,,"911180810","4253496200","621399","COMPASS HEALTH",,"4526 FEDERAL AVENUE","BLDG. # 3","EVERETT","WA","98213",,,,,,,"911180810","4253496200",,,,"2011-10-11T10:52:57-0500","DJ JOHNSON",,,,,592,306,7,251,564,2,566,566,0,,"2L2M2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011105418P040150160273001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","1","0","0","0",,"CLEAR CHANNEL COMMUNICATIONS, INC. 401K SAVINGS PLAN MASTER TRUST","001",,"FIDELITY MANAGEMENT TRUST COMPANY",,"RETIREMENT BENEFITS DEPARTMENT","200 EAST BASSE ROAD",,"SAN ANTONIO","TX","782098328",,,,,,,,,,,,,,,,,,"043491433","2108222828",,"FIDELITY MANAGEMENT TRUST COMPANY","RETIREMENT BENEFITS DEPARTMENT","200 EAST BASSE ROAD",,"SAN ANTONIO","TX","782098328",,,,,,,"043491433","2108222828",,,,,,,,"2011-10-11T10:50:32-0500","MARK HASLER",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011101249P030146558561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROSE CITY PRINTING AND PACKAGING 401K RETIREMENT PLAN","001","1992-01-01","ROSE CITY PRINTING AND PACKAGING, INC.",,,"900 SE TECH CENTER DRIVE, SUITE 100",,"VANCOUVER","WA","98683",,,,,,,,,,,,,,,,,,"930490760","3608966486","323100","ROSE CITY PRINTING AND PACKAGING, INC.",,"900 SE TECH CENTER DRIVE, SUITE 100",,"VANCOUVER","WA","98683",,,,,,,"930490760","3608966486",,,,"2011-10-10T17:54:36-0500","CYNTHIA NUTTBROCK","2011-10-10T17:54:36-0500","STEVE LOBIS",,,120,113,0,8,121,0,121,78,1,,"2E2F2J2K2G3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010151628P040022404450001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"GEO FOUNDATION 403(B) PLAN","001","2006-03-01","GREATER EDUCATIONAL OPPORTUNITIES FOUNDATION",,,"333 N. PENNSYLVANIA AVENUE","SUITE 1000","INDIANAPOLIS","IN","46204",,,,,,,,,,,,,,,,,,"954406881","3175361027","611000","GREATER EDUCATIONAL OPPORTUNITIES FOUNDATION",,"333 N. PENNSYLVANIA AVENUE","SUITE 1000","INDIANAPOLIS","IN","46204",,,,,,,"954406881","3175361027",,,,"2011-10-10T15:15:39-0500","CONNIE PULLIAM",,,,,154,162,1,18,181,0,181,58,0,,"2F2G2J2K2L2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010195930P030146174481001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE HEALTH KEY BEACON LIFE INSURANCE & AD&D INSURANCE PLAN","501","1986-07-01","AMERICAN MULTISPECIALTY GROUP, INC.","DBA ESSE HEALTH",,"12655 OLIVE BLVD., 4TH FLOOR",,"ST. LOUIS","MO","63141",,,,,,,,,,,,,,,,,,"431383893","3148511000","621111","AMERICAN MULTISPECIALTY GROUP, INC.",,"12655 OLIVE BLVD., 4TH FLOOR",,"ST. LOUIS","MO","63141",,,,,,,"431383893","3148511000",,,,"2011-10-10T13:52:44-0500","DAVID KEARNEY",,,,,432,441,,,441,,,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010143129P040004597683001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STRUCTURAL CONCEPTS CORPORATION 401(K) RETIREMENT SAVINGS PLAN","333","1991-01-01","STRUCTURAL CONCEPTS CORPORATION",,,"888 PORTER ROAD",,"MUSKEGON","MI","49441",,,,,,,,,,,,,,,,,,"382151875","6167986211","337000","STRUCTURAL CONCEPTS CORPORATION",,"888 PORTER ROAD",,"MUSKEGON","MI","49441",,,,,,,"382151875","6167986211",,,,"2011-10-10T13:55:21-0500","TAMMI MILEWSKI",,,,,312,264,0,28,292,1,293,293,1,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010144624P040673396688001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE REHMANN GROUP HEALTH AND WELFARE BENEFITS PLAN","502","1988-11-05","THE REHMANN GROUP",,,"5800 GRATIOT RD., SUITE 201",,"SAGINAW","MI","48638",,,,,,,,,,,,,,,,,,"383567911","9897999580","541211","THE REHMANN GROUP",,"5800 GRATIOT RD., SUITE 201",,"SAGINAW","MI","48638",,,,,,,"383567911","9897999580",,,,"2011-10-10T14:45:17-0500","JOAN PAYNE",,,,,438,438,10,0,448,,,,,,,"4A4B4D4E4F4H","1","0","1","1","1","0","1","1","0","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010155101P030679078336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRANKLIN CORPORATION EMPLOYEE & FLEXIBLE BENEFIT PLAN","501","1989-06-12","FRANKLIN CORPORATION",,,"600 FRANKLIN DRIVE","P. O. BOX 569","HOUSTON","MS","38851",,,,,,,,,,,,,,,,,,"640478766","6624564286","337000","FRANKLIN CORPORATION",,"600 FRANKLIN DRIVE","P. O. BOX 569","HOUSTON","MS","38851",,,,,,,"640478766","6624564286",,,,"2011-10-10T15:50:40-0500","JEFFRY COX","2011-10-10T15:50:40-0500","JEFFRY COX",,,980,1050,,,1050,,,,,,,"4A4B4D4H4L","1",,,,"1",,,,,,,,,"1","2","1",,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011082414P030146476385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EXPRESS-1 EXPEDITED SOLUTIONS, INC. 401(K) PLAN","001","2004-01-01","EXPRESS-1 EXPEDITED SOLUTIONS, INC.",,,"P.O. BOX 210",,"BUCHANAN","MI","491070210",,,,,,,"429 POST ROAD",,"BUCHANAN","MI","491071051",,,,,,,"030450326","2696952700","484120","EXPRESS-1 EXPEDITED SOLUTIONS, INC.",,"P.O. BOX 210",,"BUCHANAN","MI","491070210",,,,,,,"030450326","2696952700",,,,"2011-10-11T08:23:56-0500","JOHN WELCH",,,,,171,177,0,52,229,1,230,164,3,,"2E3D2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011090756P030146507665007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE JIM WHITE COMPANY SAVINGS AND RETIREMENT PLAN","001","1998-01-01","JIM WHITE COMPANY",,"STEVE JUSTINGER","P.O. BOX 296",,"SYLVANIA","OH","43560",,,,,,,"P.O. BOX 296",,"SYLVANIA","OH","43560",,,,,,,"341693375","4198854444","441110","JIM WHITE COMPANY","STEVE JUSTINGER","P.O. BOX 296",,"SYLVANIA","OH","43560",,,,,,,"341693375","4198854444",,,,"2011-10-10T09:08:54-0500","STEVE JUSTINGER",,,,,43,33,,,33,,33,44,2,,"2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011090808P040150090689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE DULUTH BETHEL SOCIETY, INC. 403(B) PLAN","001","2009-01-01","THE DULUTH BETHEL SOCIETY, INC.",,,"23 MESABA AVENUE",,"DULUTH","MN","55806",,,,,,,,,,,,,,,,,,"410694691","2187221724","813000","THE DULUTH BETHEL SOCIETY, INC.",,"23 MESABA AVENUE",,"DULUTH","MN","55806",,,,,,,"410694691","2187221724",,,,"2011-10-11T08:59:02-0500","THOMAS DAWSON",,,,,67,53,0,8,61,2,63,50,0,,"2E2F2G2J2M2T3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111010154143P040673551392001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRIME EQUITY CORPORATION 401(K) PLAN","001","2008-05-13","PRIME EQUITY CORPORATION",,,"4802 E. RAY RD., STE. 23-180",,"PHOENIX","AZ","85044",,,,,,,,,,,,,,,,,,"262616111","6025414122","541600","PRIME EQUITY CORPORATION",,"4802 E. RAY RD., STE. 23-180",,"PHOENIX","AZ","85044",,,,,,,"262616111","6025414122",,,,"2011-10-10T15:40:49-0500","STEVE RINKENBERGER","2011-10-10T15:40:49-0500","STEVE RINKENBERGER",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011084728P030146490385001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"CTAM COMPANY, DBA CHIPMATIC TOOL & MACHINE","001","1985-07-01","CTAM COMPANY, DBA CHIPMATIC TOOL & MACHINE",,,"PO BOX 87",,"ELMORE","OH","43416",,,,,,,"212 OTTAWA ST.",,"ELMORE","OH","43416",,,,,,,"271592440","4198622737","332700","CTAM COMPANY, DBA CHIPMATIC TOOL & MACHINE",,"PO BOX 87",,"ELMORE","OH","43416",,,,,,,"271592440","4198622737","CHIPMATIC TOOL & MACHINE INC","341366583","001","2011-10-11T08:43:05-0500","MIKE DETZEL",,,,,27,42,0,6,48,1,49,25,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011085925P030681087296001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SMALL CAP BLEND/WHV FUND - SASB1","254",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST. , H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-11T08:48:11-0500","JOHN G. PHARO","2011-10-11T08:48:11-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111011065123P030021553218001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MATHQUEUE INC PROFIT SHARING PLAN & TRUST","001","2000-01-01","MATHQUEUE INC",,,"6920 MAPLE CREEK DRIVE",,"LIBERTY TOWNSHIP","OH","450449233",,,,,,,,,,,,,,,,,,"311683108","5137599213","541600","MATHQUEUE INC",,"6920 MAPLE CREEK DRIVE",,"LIBERTY TOWNSHIP","OH","450449233",,,,,,,"311683108","5137599213",,,,"2011-10-11T06:47:21-0500","TAMARA S. JONES",,,,,8,5,0,1,6,0,6,6,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011094946P040150114273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MDL 926 SETTLEMENT FUND 401K PLAN","001","1996-10-15","MDL 926 SETTLEMENT FUND",,,"501 RIVERCHASE PKWY EAST, SUITE 100",,"HOOVER","AL","35244",,,,,,,"501 RIVERCHASE PKWY EAST, SUITE 100",,"HOOVER","AL","35244",,,,,,,"636186735","2057163000","812990","MDL 926 SETTLEMENT FUND",,"501 RIVERCHASE PKWY EAST, SUITE 100",,"HOOVER","AL","35244",,,,,,,"636186735","2057163000",,,,"2011-10-11T09:41:24-0500","EDGAR GENTLE",,,,,141,58,0,73,131,0,131,131,2,,"2E2J2K3D2G3H2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011092314P030021567954001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"UNITED FOOD & COMMERCIAL WORKERS LOCAL 1000 OKLAHOMA HEALTH AND WELFARE FUND","501","2002-09-08","TRUSTEES OF UFCW LOCAL 1000 OKLAHOMA HEALTH AND WELFARE FUND",,,"2010 NW 150TH AVENUE SUITE 100",,"PEMBROKE PINES","FL","33028",,,,,,,,,,,,,,,,,,"020642001","8008425899","445110","TRUSTEES OF UFCW LOCAL 1000 OKLAHOMA HEALTH AND WELFARE FUND",,"2010 NW 150TH AVENUE SUITE 100",,"PEMBROKE PINES","FL","33028",,,,,,,"020642001","8008425899",,,,"2011-10-10T04:26:34-0500","RICKY BURRIS",,,,,2592,2455,10,,2465,,2465,,,2,,"4A4B4D4E4F",,,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011093028P030681177872005","2010-01-01","2010-12-31","1",,,,,,,"1",,,,,"OHIO ASSOCIATION OF COUNTY BOARDS OF DD HEALTHCARE PLAN AND TRUST","501","1987-01-01","OHIO ASSOCIATION OF COUNTY BOARDS SERVING PEOPLE WITH DISABILITIES",,"DAN OHLER","73 EAST WILSON BRIDGE ROAD","SUITE B1","WORTHINGTON","OH","43085",,,,,,,,,,,,,,,,,,"311753038","6144310616","921000","OHIO ASSOCIATION OF COUNTY BOARDS SERVING PEOPLE WITH DISABILITIES","ALVIN WILLIS","20 EAST FIRST STREET",,"NEW BREMEN","OH","45869",,,,,,,"311753038",,"OHIO ASSOCIATION OF COUNTY BOARDS OF MRDD",,,"2011-10-11T09:21:35-0500","ALVIN WILLIS",,,,,5211,6946,,,6946,,,,,34,,"4A4D4E",,,"1",,"1",,,,,,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011101723P030048494135001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BALDWIN WALLACE COLLEGE MEDICAL REIMBURSEMENT PLAN","507","1990-01-01","BALDWIN WALLACE COLLEGE",,"HUMAN RESOURCES","BALDWIN WALLACE COLLEGE","275 EASTLAND ROAD","BEREA","OH","44017",,,,,,,"BALDWIN WALLACE COLLEGE","275 EASTLAND ROAD","BEREA","OH","44017",,,,,,,"340714629","4408262220","611000","WILLIAM RENIFF","BALDWIN WALLACE COLLEGE","BALDWIN WALLACE COLLEGE","275 EASTLAND ROAD","BEREA","OH","44017",,,,,,,"341540209","4408262220",,,,"2011-10-11T10:08:29-0500","WILLIAM RENIFF",,,,,281,291,,,291,,291,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011090538P030146506449001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WILLIAM GALLAGHER ASSOCIATES INSURANCE BROKERS, INC. 401(K) PLAN","003","1997-08-01","WILLIAM GALLAGHER ASSOCIATES INSURANCE BROKERS, INC.",,,"470 ATLANTIC AVE.",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"042787509","6176460253","524210","WILLIAM GALLAGHER ASSOCIATES INSURANCE BROKERS, INC.",,"470 ATLANTIC AVE.",,"BOSTON","MA","02210",,,,,,,"042787509","6176460253",,,,"2011-10-11T09:05:08-0500","MARIAN R IRWIN",,,,,248,193,2,60,255,0,255,246,14,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011100442P030021572962001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOURCE, INC. 401(K) PLAN","002","1980-12-28","SOURCE, INC.",,,"14060 PROTON ROAD",,"DALLAS","TX","75244",,,,,,,,,,,,,,,,,,"751369078","9723712604","517000","SOURCE, INC.",,"14060 PROTON ROAD",,"DALLAS","TX","75244",,,,,,,"751369078","9723712604",,,,"2011-10-11T10:03:24-0500","BERNARD ROHDE",,,,,173,119,0,28,147,0,147,140,2,,"2E2G2J2K3D2F2T2S",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011100531P030146552033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALLEGHENY & CHESAPEAKE PHYSICAL THERAPISTS, INC. 401(K) PLAN","001","1983-01-01","ALLEGHENY & CHESAPEAKE PHYSICAL THERAPISTS, INC.",,,"3053 NEW GERMANY ROAD",,"EBENSBURG","PA","15931",,,,,,,,,,,,,,,,,,"251325020","8144721100","621340","ALLEGHENY & CHESAPEAKE PHYSICAL THERAPISTS, INC.",,"3053 NEW GERMANY ROAD",,"EBENSBURG","PA","15931",,,,,,,"251325020","8144721100",,,,"2011-10-11T10:03:34-0500","STEVEN T. GOUGH",,,,,207,172,0,42,214,0,214,105,4,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011095016P030021571762001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"THE WORT HOTEL 401(K) RETIREMENT PLAN","001","2002-01-01","SILVER DOLLAR, INC DBA THE WORT HOTEL",,,"PO BOX 69",,"JACKSON","WY","83001",,,,,,,,,,,,,,,,,,"830272663","3077323930","721110","SILVER DOLLAR, INC DBA THE WORT HOTEL",,"PO BOX 69",,"JACKSON","WY","83001",,,,,,,"830272663","3077323930",,,,"2011-10-11T09:49:45-0500","JON BRADFORD",,,,,121,66,,12,78,,78,33,1,,"2E2F2G2J2K2H",,"1",,"1",,"1",,"1",,,,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011101323P030681296912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOWNE INC 401K PROFIT SHARING PLAN","001","1994-11-01","TOWNE INC",,,"3441 WEST MACARTHUR BOULEVARD",,"SANTA ANA","CA","92704",,,,,,,,,,,,,,,,,,"952819954","7145403095","561490","TOWNE INC",,"3441 WEST MACARTHUR BOULEVARD",,"SANTA ANA","CA","92704",,,,,,,"952819954","7145403095",,,,"2011-10-11T10:12:02-0500","DELIA RIVERO",,,,,174,110,0,52,162,0,162,137,9,,"2E2F2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011102756P030146568033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"APPLIED UNDERWRITERS, INC. RETIREMENT SAVINGS PLAN","333","1999-01-01","APPLIED UNDERWRITERS, INC.",,,"10805 OLD MILL ROAD",,"OMAHA","NE","68154",,,,,,,,,,,,,,,,,,"943252393","4023424900","551112","APPLIED UNDERWRITERS, INC.",,"10805 OLD MILL ROAD",,"OMAHA","NE","68154",,,,,,,"943252393","4023424900",,,,"2011-10-11T10:27:20-0500","ROBERT STAFFORD",,,,,593,440,0,187,627,0,627,529,62,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011115706P030146635041001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","1","0","0","0",,"RIVER VALLEY BANCORP, INC. LIFE, AD&D, STD AND LTD PLAN","502","2001-03-01","RIVER VALLEY BANCORP, INC.",,,"2020 EAST KIMBERLY ROAD",,"DAVENPORT","IA","52807",,,,,,,,,,,,,,,,,,"421406169","5638230575","551111","RIVER VALLEY BANCORP, INC.",,"2020 EAST KIMBERLY ROAD",,"DAVENPORT","IA","52807",,,,,,,"421406169","5638230575",,,,"2011-10-11T11:56:56-0500","KRISTEN L KRUGER",,,,,199,196,0,0,196,,,,,,,"4B4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111010154435P040149646257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FORREST EXTERMINATING SERVICE, INC. 401(K) PROFIT SHARING PLAN","001","1983-08-01","FORREST EXTERMINATING SERVICE, INC.",,,"P.O. BOX 1343",,"CHESAPEAKE","VA","23327",,,,,,,"829 PROFESSIONAL PLACE",,"CHESAPEAKE","VA","23327",,,,,,,"540911653","7574363388","561710","FORREST EXTERMINATING SERVICE, INC.",,"P.O. BOX 1343",,"CHESAPEAKE","VA","23327",,,,,,,"540911653","7574363388",,,,"2011-10-10T15:44:29-0500","GARY S. FORREST","2011-10-10T15:44:29-0500","GARY S. FORREST",,,29,19,1,2,22,0,22,0,0,,"2A2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011083243P030146480705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GLOBAL IMAGING SYSTEMS 401K RETIREMENT PLAN","001","1996-05-01","GLOBAL IMAGING SYSTEMS, INC.",,,"3820 NORTHDALE BLVD., SUITE 200A",,"TAMPA","FL","33624",,,,,,,,,,,,,,,,,,"593247752","8139605508","561490","GLOBAL IMAGING SYSTEMS, INC.",,"3820 NORTHDALE BLVD., SUITE 200A",,"TAMPA","FL","33624",,,,,,,"593247752","8139605508",,,,"2011-10-11T08:32:24-0500","KRISTY D SCHMIDT",,,,,5666,4989,0,1139,6128,0,6128,6128,447,,"2E2F2G2J2K3D2T2S2R",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111010123220P040149499249001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"FRIENDSHIP VILLAGE OF DUBLIN EMPLOYEES GROUP DENTAL INSURANCE PLAN","508","2001-07-01","FRIENDSHIP VILLAGE OF DUBLIN",,,"6000 RIVERSIDE DR",,"DUBLIN","OH","430171492",,,,,,,,,,,,,,,,,,"310986918","6147641600","623000","FRIENDSHIP VILLAGE OF DUBLIN",,"6000 RIVERSIDE DR",,"DUBLIN","OH","430171492",,,,,,,"310986918","6147641600",,,,"2011-10-10T12:31:39-0500","BETH PACK",,,,,129,126,0,0,126,,,,,,,"4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010123638P040022379698001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BELDEN PENSION PLAN","001","1993-08-01","BELDEN INC.",,,"7733 FORSYTH BOULEVARD, SUITE 800",,"ST. LOUIS","MO","63105",,,,,,,,,,,,,,,,,,"363601505","3148548000","335900","BELDEN INC.",,"7733 FORSYTH BOULEVARD, SUITE 800",,"ST. LOUIS","MO","63105",,,,,,,"363601505","3148548000",,,,"2011-10-10T12:36:25-0500","DARLA A. DELLES","2011-10-10T12:36:25-0500","DARLA A. DELLES",,,3207,1389,400,1435,3224,32,3256,,58,,"1C1G1A",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010123653P040149501841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOMAS W DUFFY UNIPLAN EZ","003","1982-01-01","THOMAS W DUFFY",,,"10594 MAIN PO BOX 965",,"HAYWARD","WI","54843",,,,,,,,,,,,,,,,,,"390989456","7156344891","541110","THOMAS W DUFFY",,"10594 MAIN PO BOX 965",,"HAYWARD","WI","54843",,,,,,,"390989456","7156344891",,,,"2011-10-10T12:36:29-0500","THOMAS W DUFFY",,,,,3,3,0,0,3,0,3,2,0,,"2E3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010141213P040022395858001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"LNL SA97 LVIP WILSHIRE MODERATELY AGGRESSIVE PROFILE","197",,"LINCOLN NATIONAL LIFE INSURANCE COMPANY",,"RANDALL J CROUCH 6H 04","1300 S CLINTON STREET SUITE 500",,"FORT WAYNE","IN","46802",,,,,,,,,,,,,,,,,,"350472300","2604552000",,"LINCOLN NATIONAL LIFE INSURANCE COMPANY","RANDALL J CROUCH 6H 04","1300 S CLINTON STREET SUITE 500",,"FORT WAYNE","IN","46802",,,,,,,"350472300","2604552000",,,,,,,,"2011-10-10T14:04:15-0500","RANDY CROUCH",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010133030P040022388194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RUIDOSO DOWNS RACING, INC. RETIREMENT SAVINGS PLAN","001","2005-01-01","RUIDOSO DOWNS RACING, INC",,,"PO BOX 449",,"RUIDOSO DOWNS","NM","88346",,,,,,,,,,,,,,,,,,"850264407","5753787299","711210","RUIDOSO DOWNS RACING, INC",,"PO BOX 449",,"RUIDOSO DOWNS","NM","88346",,,,,,,"850264407","5753787299",,,,"2011-10-10T13:29:50-0500","CURTIS HILLING",,,,,116,138,0,10,148,0,148,68,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010074005P040672301120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"CIGNA SEVERANCE PAY PLAN","516","1985-04-01","CIGNA CORPORATION",,,"1601 CHESTNUT STREET, TL05S",,"PHILADELPHIA","PA","19192",,,,,,,,,,,,,,,,,,"061059331","2157611000","524290","MARJORIE G. STEIN",,"1601 CHESTNUT STREET, TL05S",,"PHILADELPHIA","PA","19192",,,,,,,"232013913","2157611000",,,,"2011-10-10T07:35:42-0500","MARJORIE STEIN",,,,,27251,26558,1044,0,27602,0,27602,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010111556P040149452721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PALMETTO SMILES DEFINED BENEFIT PENSION PLAN & TRUST","002","2001-01-01","CROSS, RAINES AND GOMEZ DENTISTRY PARTNERSHIP",,,"139 WHITEFORD WAY",,"LEXINGTON","SC","29072",,,,,,,,,,,,,,,,,,"571112922","8039519100","621210","CROSS, RAINES AND GOMEZ DENTISTRY PARTNERSHIP",,"139 WHITEFORD WAY",,"LEXINGTON","SC","29072",,,,,,,"571112922","8039519100",,,,"2011-10-10T11:11:49-0500","KEVIN M. RAINES, D.M.D.",,,,,23,20,0,3,23,0,23,,1,,"1B1I3H1G",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010130138P030145941793001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"FIDELITY ADVISOR EQUITY GROWTH RET ACCT","326",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T12:37:41-0500","DARCY HATTON",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010101459P030021464722001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MTD PRODUCTS VARIABLE INVESTMENT PLAN","007","1985-01-01","MTD PRODUCTS INC",,,"5903 GRAFTON ROAD",,"VALLEY CITY","OH","44280",,,,,,,,,,,,,,,,,,"061650267","3302252600","333900","MTD PRODUCTS INC",,"5903 GRAFTON ROAD",,"VALLEY CITY","OH","44280",,,,,,,"061650267","3302252600",,,,"2011-10-10T09:47:40-0500","FRAN WALSH","2011-10-10T10:13:26-0500","PAUL CAJA",,,2657,1308,14,188,1510,1,1511,1444,79,,"2E2J2F2G2K3F3H2S2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010122426P040022376978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RES-CARE, INC. FLEX-CARE PLAN","504","1991-05-01","RES-CARE, INC.",,,"9901 LINN STATION ROAD",,"LOUISVILLE","KY","40223",,,,,,,,,,,,,,,,,,"610875371","5023942100","623000","RES-CARE, INC.",,"9901 LINN STATION ROAD",,"LOUISVILLE","KY","40223",,,,,,,"610875371","5023942100",,,,"2011-10-10T10:44:24-0500","NINA SEIGLE","2011-10-04T08:10:29-0500","DAVID MILES",,,1792,2091,4,0,2095,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010112648P040149459393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CARNIVAL CORPORATION GROUP LONG TERM DISABILITY INSURANCE PLAN","503","1994-01-01","CARNIVAL CORPORATION",,"C/O TAX DEPARTMENT","3655 87TH AVENUE",,"MIAMI","FL","33178",,,,,,,"3655 87TH AVENUE",,"MIAMI","FL","33178",,,,,,,"591562976","3055992600","483000","CARNIVAL CORPORATION","C/O TAX DEPARTMENT","3655 87TH AVENUE",,"MIAMI","FL","33178",,,,,,,"591562976","3055992600",,,,"2011-10-10T11:14:03-0500","SUSAN HERRMANN",,,,,3303,3031,4,,3035,,3035,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010115145P030021475890001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PINEWOOD PREPATORY SCHOOL 403(B) PLAN","001","2009-04-01","PINEWOOD PREPATORY SCHOOL",,,"1114 ORANGEBURG ROAD",,"SUMMERVILLE","SC","29483",,,,,,,,,,,,,,,,,,"570513825","8438731643","611000","PINEWOOD PREPATORY SCHOOL",,"1114 ORANGEBURG ROAD",,"SUMMERVILLE","SC","29483",,,,,,,"570513825","8438731643",,,,"2011-10-10T11:39:16-0500","JULIE LONDERGAN",,,,,172,154,0,5,159,0,159,76,6,,"2L3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010130429P040149524177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LINCOLN INDUSTRIAL CORPORATION WELFARE BENEFITS PLAN","510","2004-01-01","LINCOLN INDUSTRIAL CORPORATION",,,"ONE LINCOLN WAY",,"ST. LOUIS","MO","631201508",,,,,,,,,,,,,,,,,,"522361769","3146794494","325200","LINCOLN INDUSTRIAL CORPORATION",,"ONE LINCOLN WAY",,"ST. LOUIS","MO","631201508",,,,,,,"522361769","3146794494",,,,"2011-10-10T13:03:33-0500","PHILIP J CERNVTO",,,,,791,726,92,0,818,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","20","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010135501P040149569569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLING DENTAL RETIREMENT PLAN & TRUST","001","2002-01-01","RAYMOND L. FRYE, II, DMD, P.C.",,,"926 NW 13TH AVE","SUITE 150","PORTLAND","OR","97209",,,,,,,,,,,,,,,,,,"270152889","5032272444","621210","RAYMOND L. FRYE, II, DMD, P.C.",,"926 NW 13TH AVE","SUITE 150","PORTLAND","OR","97209",,,,,,,"270152889","5032272444","RAYMOND L. FRYE, II, D.M.D., P.S.","912009798","001","2011-10-10T13:53:29-0500","RAYMOND L. FRYE, II, D.M.D.",,,,,11,5,0,6,11,0,11,11,0,,"2A2E2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010091957P040149377169001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"ALLIED SECURITY PENSION FUND","001","1979-06-05","ALLIED INTERNATIONAL UNION",,,"332 WILLIS AVENUE",,"MINEOLA","NY","115011500",,,,,,,,,,,,,,,,,,"112528660","5167426320","561600","ALLIED INTERNATIONAL UNION",,"332 WILLIS AVENUE",,"MINEOLA","NY","115011500",,,,,,,"112528660","5167426320",,,,"2011-10-09T05:07:04-0500","MARGARET VANSON",,,,,245,170,33,33,236,,236,,,9,"1B3D1G",,,,"1",,,,"1",,"1","1",,"1",,,,"1",,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010082315P030021453154001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MHMG P.C. ASSOCIATES 401(K) PLAN","002","2002-01-01","MURRAY HILL MEDICAL GROUP, P.C.",,,"317 EAST 34TH STREET",,"NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"133651841","2127267490","621111","MURRAY HILL MEDICAL GROUP, P.C.",,"317 EAST 34TH STREET",,"NEW YORK","NY","10016",,,,,,,"133651841","2127267490",,,,"2011-10-10T08:22:16-0500","EDWARD BARNES, MD","2011-10-10T08:22:16-0500","EDWARD BARNES, MD",,,22,23,0,1,24,0,24,19,0,,"2F2G2J2T2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010084047P030145769921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VA HOME FOR BOYS 403(B) PLAN","002","2002-07-01","VIRGINIA HOME FOR BOYS AND GIRLS",,,"8716 WEST BROAD STREET",,"RICHMOND","VA","232946206",,,,,,,,,,,,,,,,,,"540506330","8042706566","813000","VIRGINIA HOME FOR BOYS AND GIRLS",,"8716 WEST BROAD STREET",,"RICHMOND","VA","232946206",,,,,,,"540506330","8042706566",,,,"2011-10-10T08:39:45-0500","JUDI KLASS",,,,,170,34,0,118,152,0,152,143,0,,"2L2G2F",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010083223P030145766465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SEI, INC. 401(K) PLAN","001","1997-09-23","SERVICE EXPRESS, INC.",,,"4845 CORPORATE EXCHANGE",,"GRAND RAPIDS","MI","49512",,,,,,,,,,,,,,,,,,"383368786","6166982221","541519","SERVICE EXPRESS, INC.",,"4845 CORPORATE EXCHANGE",,"GRAND RAPIDS","MI","49512",,,,,,,"383368786","6166982221",,,,"2011-10-10T08:32:03-0500","MICHAEL MCCULLOUGH",,,,,144,139,0,14,153,0,153,136,9,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010103704P030021467650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"T&T RECYCLING SAFE HARBOR 401 (K)","001","2008-07-01","T&T RECYCLING INC",,,"16917 STATE HIGHWAY 149",,"HURST","IL","62949",,,,,,,"16917 STATE HIGHWAY 149",,"HURST","IL","62949",,,,,,,"371372356","6189872088","423930","SARAH GIBBENS",,"15217 HARRIS SCHOOL RD",,"JOHNSTON CITY","IL","62951",,,,,,,"270510737","6189835929",,,,"2011-10-10T10:35:50-0500","SARAH GIBBENS",,,,,4,4,,,4,,4,4,,,"2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010111156P040149449265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE CHRISTIAN BENEVOLENT 403B RETIREMENT PROGRAM","002","2006-01-01","THE CHRISTIAN BENEVOLENT ASSOCIATION OF GREATER CINCINNATI",,,"8097 HAMILTON AVE",,"CINCINNATI","OH","452312321",,,,,,,,,,,,,,,,,,"310675610","5139315000","813000","THE CHRISTIAN BENEVOLENT ASSOCIATION OF GREATER CINCINNATI",,"8097 HAMILTON AVE",,"CINCINNATI","OH","452312321",,,,,,,"310675610","5139315000",,,,"2011-10-10T11:10:17-0500","ROGER H. SCHWARTZ",,,,,405,301,0,149,450,,450,426,0,,"2L",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010120445P040149480065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NATIONAL LABEL COMPANY DEFINED BENEFIT PENSION PLAN","002","1965-04-01","NATIONAL LABEL COMPANY",,,"2025 JOSHUA ROAD",,"LAFAYETTE HILL","PA","194442431",,,,,,,,,,,,,,,,,,"230907950","6108253250","326200","NATIONAL LABEL COMPANY",,"2025 JOSHUA ROAD",,"LAFAYETTE HILL","PA","194442431",,,,,,,"230907950","6108253250",,,,"2011-10-10T12:03:50-0500","JAMES H. SHACKLETT III",,,,,120,85,3,27,115,0,115,,0,,"1A1G1I3D",,"1","0","1","0","0","0","1","0","1","0","1","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010114507P030145893057001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SEABOARD CORPORATION LONG TERM DISABILITY PLAN","502","1967-08-28","SEABOARD CORPORATION",,,"9000 WEST 67TH STREET",,"SHAWNEE MISSION","KS","66202",,,,,,,,,,,,,,,,,,"042260388","9136768800","112210","SEABOARD CORPORATION",,"9000 WEST 67TH STREET",,"SHAWNEE MISSION","KS","66202",,,,,,,"042260388","9136768800",,,,"2011-10-10T11:31:36-0500","BOB STEER",,,,,1419,1416,,,1416,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010121513P030012293749003","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"BROMLEY, INC. EMPLOYEES' PROFIT SHARING PLAN","001","1991-01-01","BROMLEY, INCORPORATED",,,"6 BRIDLEWOOD RD.",,"NORTHBROOK","IL","60062",,,,,,,,,,,,,,,,,,"363670687","8475090240","339900","BROMLEY, INCORPORATED",,"6 BRIDLEWOOD RD.",,"NORTHBROOK","IL","60062",,,,,,,"363670687","8475090240",,,,"2011-10-10T13:05:13-0500","LAURAN BROMLEY",,,,,6,6,0,1,7,0,7,7,,1,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010131514P030678651536001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"BLACKROCK LARGE CAP GROWTH INV ACCT","047",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T12:09:57-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010131738P040149536721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MERCHANT & GOULD P.C. 401(K) RETIREMENT SAVINGS AND PROFIT SHARING PLAN","002","1973-01-01","MERCHANT & GOULD P.C.",,,"3200 IDS CENTER, 80 SOUTH EIGHTH ST",,"MINNEAPOLIS","MN","554022215",,,,,,,,,,,,,,,,,,"410991388","6123325300","541110","MERCHANT & GOULD P.C.",,"3200 IDS CENTER, 80 SOUTH EIGHTH ST",,"MINNEAPOLIS","MN","554022215",,,,,,,"410991388","6123325300",,,,"2011-10-10T13:16:40-0500","TRACEY R. SKJEVELAND",,,,,390,207,0,171,378,0,378,372,5,,"2E2F2G2J2K2R2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010131749P040673142608001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SMALL CAP VALUE/OPUS CAPITAL FUND - SASV6","541",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-10T13:08:33-0500","JOHN G. PHARO","2011-10-10T13:08:33-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111010140010P040149572497001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"IVAR'S, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1984-11-01","IVAR'S, INC.",,,"PIER 54",,"SEATTLE","WA","98104",,,,,,,"PIER 54",,"SEATTLE","WA","98104",,,,,,,"911349316","2065876500","722110","IVAR'S, INC.",,"PIER 54",,"SEATTLE","WA","98104",,,,,,,"911349316","2065876500",,,,"2011-10-03T16:37:55-0500","SABRIE EVANS","2011-10-05T11:58:33-0500","FRANK MADIGAN",,,613,494,0,129,623,3,626,325,11,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010140013P040149572513004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GREAT LAKES BAKING COMPANY 401(K) PROFIT","001","2005-07-01","GREAT LAKES BAKING COMPANY",,,"7622 SUGARBUSH TRAIL",,"HUDSON","OH","44236",,,,,,,,,,,,,,,,,,"341851251",,"445291","GREAT LAKES BAKING COMPANY",,"7622 SUGARBUSH TRAIL",,"HUDSON","OH","44236",,,,,,,"341851251",,,,,"2011-10-10T05:40:40-0500","JOHN MACMILLAN","2011-10-10T05:40:40-0500","JOHN MACMILLAN",,,4,1,0,3,4,,4,4,,,"2E2J2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010110844P040672793472001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"CANNOLES, CLASING & HOCK, CHTD., 401(K) PLAN","001","2010-01-01","CANNOLES, CLASING & HOCK, CHTD",,,"818 EASTERN BOULEVARD",,"BALTIMORE","MD","21221",,,,,,,,,,,,,,,,,,"521310561","4105741390","541110","CANNOLES, CLASING & HOCK, CHTD",,"818 EASTERN BOULEVARD",,"BALTIMORE","MD","21221",,,,,,,"521310561","4105741390",,,,"2011-10-10T11:06:47-0500","JAMES HOCK JR",,,,,4,4,0,0,4,0,4,0,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010132844P040149548113001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"HIGH YIELD BOND/CAYWOOD-SCHOLL FUND - SACSF","300",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY",,"JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,,,,,,,,,,,,"061050034","9737161923",,"PRUDENTIAL RETIREMENT INSURANCE AND ANNUITY COMPANY","JOHN G. PHARO","280 TRUMBULL ST., H19B",,"HARTFORD","CT","06103",,,,,,,"061050034","9737161923",,,,,,"2011-10-10T13:08:39-0500","JOHN G. PHARO","2011-10-10T13:08:39-0500","JOHN G. PHARO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111010095003P030145813489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"T. F. FARMER COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","003","1988-01-01","FARMER ELECTRICAL SALES, INC.",,,"P. O. BOX 14915",,"GREENSBORO","NC","27415",,,,,,,,,,,,,,,,,,"560960538","3363751122","423600","FARMER ELECTRICAL SALES, INC.",,"P. O. BOX 14915",,"GREENSBORO","NC","27415",,,,,,,"560960538","3363751122",,,,"2011-10-10T09:48:45-0500","W. LUTHER PIERCE",,,,,25,20,0,4,24,0,24,24,0,,"2E2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010095054P030678112352001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE 401(K) PROFIT SHARING PLAN OF JEWISH HEALTHCARE CENTER, INC.","004","1975-07-01","JEWISH HEALTHCARE CENTER, INC.",,,"629 SALISBURY STREET",,"WORCESTER","MA","01609",,,,,,,,,,,,,,,,,,"042103803","5087988653","623000","JEWISH HEALTHCARE CENTER, INC.",,"629 SALISBURY STREET",,"WORCESTER","MA","01609",,,,,,,"042103803","5087988653",,,,"2011-10-10T09:49:24-0500","CAROL HELANDER",,,,,508,427,1,99,527,0,527,388,35,,"3D2E2J3H2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010120026P040149477073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROCKWOOD SPECIALTIES INC. SEVERANCE PAY PLAN","601","1990-01-01","ROCKWOOD SPECIALTIES INC.",,,"100 OVERLOOK CENTER",,"PRINCETON","NJ","08540",,,,,,,,,,,,,,,,,,"222269008","6097346405","325200","ROCKWOOD SPECIALTIES INC.",,"100 OVERLOOK CENTER",,"PRINCETON","NJ","08540",,,,,,,"222269008","6097346405",,,,"2011-10-10T11:59:56-0500","DONNA M. ABRUNZO","2011-10-10T11:59:56-0500","DONNA M. ABRUNZO",,,1572,1553,10,0,1563,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010125208P030021479954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VERSANT VENTURE MANAGEMENT, LLC 401(K) RETIREMENT PLAN","001","2000-01-01","VERSANT VENTURE MANAGEMENT, LLC",,,"3000 SAND HILL ROAD, BLDG. 4","SUITE 210","MENLO PARK","CA","94025",,,,,,,"3000 SAND HILL ROAD, BLDG. 4","SUITE 210","MENLO PARK","CA","94025",,,,,,,"954767945","6502337451","523900","VERSANT VENTURE MANAGEMENT, LLC",,"3000 SAND HILL ROAD, BLDG. 4","SUITE 210","MENLO PARK","CA","94025",,,,,,,"954767945","6502337451",,,,"2011-10-10T10:57:53-0500","ROBIN PRAEGER",,,,,38,30,0,7,37,0,37,37,0,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010125646P040149517761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VISION-EASE LENS 401(K) PLAN","001","2004-11-01","VISION-EASE LENS",,,"7000 SUNWOOD DRIVE",,"RAMSEY","MN","55303",,,,,,,,,,,,,,,,,,"611472360","7635069004","331200","VISION-EASE LENS",,"7000 SUNWOOD DRIVE",,"RAMSEY","MN","55303",,,,,,,"611472360","7635069004",,,,"2011-10-10T12:55:32-0500","SUSAN LINZMEIER",,,,,367,324,0,38,362,0,362,319,0,,"2E2G2J2F2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010134328P040149559953001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"BULAB EMPLOYEE STOCK OWNERSHIP PLAN","002","1994-01-01","BULAB HOLDINGS, INC.",,,"1256 N MCLEAN BLVD",,"MEMPHIS","TN","381081241",,,,,,,,,,,,,,,,,,"620438397","9012780330","325900","BULAB HOLDINGS, INC.",,"1256 N MCLEAN BLVD",,"MEMPHIS","TN","381081241",,,,,,,"620438397","9012780330",,,,"2011-10-10T13:43:15-0500","CARLA BRADLEY","2011-10-10T13:41:16-0500","CARLA BRADLEY",,,641,455,94,77,626,5,631,627,13,,"2I2P",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010102137P030021465890001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J.L. WAUFORD, INC. 401(K) PLAN","001","1996-01-01","J.L. WAUFORD, INC.",,,"6700 COURTYARD ROAD",,"CHESTER","VA","23831",,,,,,,,,,,,,,,,,,"621450868","8047322986","339900","J.L. WAUFORD, INC.",,"6700 COURTYARD ROAD",,"CHESTER","VA","23831",,,,,,,"621450868","8047322986",,,,"2011-10-10T10:21:12-0500","LISA W. THARP",,,,,818,616,7,62,685,0,685,316,8,,"3D2E2J3H2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010125717P040022382674001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"XANTERRA PARKS & RESORTS LONG TERM DISABILITY INCOME PLAN","503","1971-01-01","XANTERRA PARKS & RESORTS, INC.",,,"6312 S FIDDLERS GREEN CIRCLE","SUITE 600N","GREENWOOD VILLAGE","CO","80111",,,,,,,,,,,,,,,,,,"132735034","3036003400","721110","XANTERRA PARKS & RESORTS, INC.",,"6312 S FIDDLERS GREEN CIRCLE","SUITE 600N","GREENWOOD VILLAGE","CO","80111",,,,,,,"132735034","3036003400",,,,"2011-10-10T12:56:15-0500","WILLIAM RAU",,,,,422,421,0,0,421,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010140100P040149572913001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"MARANDA E. FRITZ, PC MONEY PURCHASE PLAN","001","2001-01-01","MARANDA E. FRITZ",,"MARANDA E. FRITZ","HINSHAW AND CULBERTSON","780 THIRD AVENUE, 4TH FLOOR","NEW YORK","NY","10017",,,,,,,"HINSHAW AND CULBERTSON","780 THIRD AVENUE, 4TH FLOOR","NEW YORK","NY","10017",,,,,,,"134152513","2124716200","541110","MARANDA E. FRITZ","MARANDA E. FRITZ","HINSHAW AND CULBERTSON","780 THIRD AVENUE, 4TH FLOOR","NEW YORK","NY","10017",,,,,,,"134152513","2124716200",,,,"2011-10-10T14:00:14-0500","GEORGE FARLEY",,,,,1,0,,,0,,0,0,,,"2C2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010092426P040672541216001","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"TURNKEY COMPLIANCE SOLUTIONS, LLC 401(K) RETIREMENT PLAN","001","2007-03-01","TURNKEY COMPLIANCE SOLUTIONS, LLC",,,"PO BOX 243",,"COBALT","CT","06414",,,,,,,,,,,,,,,,,,"760814588","8604674465","541330","TURNKEY COMPLIANCE SOLUTIONS, LLC",,"PO BOX 243",,"COBALT","CT","06414",,,,,,,"760814588","8604674465",,,,"2011-10-10T10:24:05-0500","MARK MORGANO",,,,,2,5,0,0,5,0,5,5,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010093545P040672568240001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"JOHN ALAN SMITH, D.D.S., P.C. PROFIT SHARING 401(K) PLAN","001","2002-01-01","JOHN ALAN SMITH, D.D.S., P.C.",,,"1599 FORT HENRY DRIVE, SUITE 103",,"KINGSPORT","TN","37664",,,,,,,,,,,,,,,,,,"621791054","4232476441","621210","JOHN ALAN SMITH, D.D.S., P.C.",,"1599 FORT HENRY DRIVE, SUITE 103",,"KINGSPORT","TN","37664",,,,,,,"621791054","4232476441",,,,"2011-10-10T08:44:51-0500","JOHN SMITH",,,,,4,3,0,1,4,0,4,4,0,,"2E2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010131358P030145952817001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"MUTUAL SHARES INV ACCT","149",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T11:45:59-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010131540P030145954001001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"VANGUARD EUROPEAN STOCK INDEX RET OPT","096",,"TRANSAMERICA LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"390989781","2137423111",,"TRANSAMERICA LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"390989781","2137423111",,,,,,,,"2011-10-10T12:21:24-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010141507P030021489730001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"LACO VINYL PRODUCTS, INC. 401(K) PROFIT SHARING PLAN","001","2008-01-01","LACO VINYL PRODUCTS, INC",,,"P.O. BOX 23526",,"KNOXVILLE","TN","37933",,,,,,,,,,,,,,,,,,"205977511","8652880491","424990","LACO VINYL PRODUCTS, INC",,"P.O. BOX 23526",,"KNOXVILLE","TN","37933",,,,,,,"205977511","8652880491",,,,"2011-10-10T14:00:20-0500","ALVIN COHEN",,,,,2,2,0,0,2,0,2,2,,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010092646P040149380577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BANK INDEPENDENT STOCK BONUS PLAN","001","1976-01-01","BANK INDEPENDENT",,,"710 S MONTGOMERY AVE",,"SHEFFIELD","AL","35660",,,,,,,,,,,,,,,,,,"630260951","2563865000","522110","BANK INDEPENDENT",,"710 S MONTGOMERY AVE",,"SHEFFIELD","AL","35660",,,,,,,"630260951","2563865000",,,,"2011-10-10T09:26:42-0500","PAT BURNEY",,,,,329,288,3,16,307,0,307,72,0,,"2E2I2O3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010084307P030145770833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FEROTEC FRICTION, INC. EMPLOYEE SAVINGS & RETIREMENT PLAN","001","2000-02-14","FEROTEC FRICTION, INC.",,,"P.O. BOX 387",,"MOUNT JOY","PA","17552",,,,,,,,,,,,,,,,,,"870520764","7176290550","332510","FEROTEC FRICTION, INC.",,"P.O. BOX 387",,"MOUNT JOY","PA","17552",,,,,,,"870520764","7176290550",,,,"2011-10-10T08:41:17-0500","BRADLEY SMITH",,,,,14,13,0,0,13,0,13,11,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010084309P030677944704001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUND SHORE HEALTH AND PRESCRIPTION DRUG PLAN FOR ACTIVE STAFF NURSES REPRESENTED BY NYSNA","503","2006-01-01","SOUND SHORE MEDICAL CENTER OF WESTCHESTER",,,"16 GUION PLACE",,"NEW ROCHELLE","NY","10802",,,,,,,"16 GUION PLACE",,"NEW ROCHELLE","NY","10802",,,,,,,"131740117","9146325000","622000","SOUND SHORE MEDICAL CENTER OF WESTCHESTER",,"16 GUION PLACE",,"NEW ROCHELLE","NY","10802",,,,,,,"131740117","9146325000",,,,"2011-10-10T08:17:46-0500","JOHN LJULJIC",,,,,256,261,0,0,261,,261,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010071217P030145731697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"MINNEAPOLIS MEDICAL RESEARCH FOUNDATION TAX-SHELTERED SAVINGS PLAN","002","1992-01-01","MINNEAPOLIS MEDICAL RESEARCH FOUNDATION",,,"914 S. 8TH ST, SUITE 600",,"MINNEAPOLIS","MN","55404",,,,,,,"914 S. 8TH ST, SUITE 600",,"MINNEAPOLIS","MN","55404",,,,,,,"411677920","6123475000","541700","MINNEAPOLIS MEDICAL RESEARCH FOUNDATION",,"914 S. 8TH ST, SUITE 600",,"MINNEAPOLIS","MN","55404",,,,,,,"411677920","6123475000",,,,"2011-10-05T12:06:51-0500","MARY BERGAAS",,,,,132,95,0,32,127,0,127,118,0,,"2F2M2R",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010101448P030021464674001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALAN S. HANDLER, DDS PROFIT SHARING 401(K) PLAN","001","2002-01-01","ALAN S. HANDLER, DDS",,,"130 HILTOWN VILLAGE CENTER",,"CHESTERFIELD","MO","63017",,,,,,,,,,,,,,,,,,"431469382","6365323311","621210","ALAN S. HANDLER, DDS",,"130 HILTOWN VILLAGE CENTER",,"CHESTERFIELD","MO","63017",,,,,,,"431469382","6365323311",,,,"2011-10-10T10:14:33-0500","TAMARA SCHOCH",,,,,7,4,0,3,7,0,7,7,0,,"2E2G2J2K2A",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010093617P040149386001001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"RETIREMENT PLAN FOR COLLECTIVELY BARGAINED EMPLOYEES OF NEPERA, INC.","002","1981-12-07","CAMBREX CORPORATION",,,"ONE MEADOWLANDS PLAZA",,"EAST RUTHERFORD","NJ","07073",,,,,,,,,,,,,,,,,,"222476135","2018043000","325410","CAMBREX CORPORATION",,"ONE MEADOWLANDS PLAZA",,"EAST RUTHERFORD","NJ","07073",,,,,,,"222476135","2018043000",,,,"2011-10-10T09:34:53-0500","PAULA KRUTHOFF,DIR. HUMAN RESOURCES",,,,,122,0,0,0,0,0,0,0,0,,"1A1G3H1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010132506P030145961809001","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"SAINT LUKE'S HEALTH SYSTEM, INC. RETIREMENT PLAN","001","1973-01-01","SAINT LUKES HEALTH SYSTEM",,,"10920 ELM AVENUE",,"KANSAS CITY","MO","64134",,,,,,,,,,,,,,,,,,"431747502","8169322207","622000","SAINT LUKES HEALTH SYSTEM",,"10920 ELM AVENUE",,"KANSAS CITY","MO","64134",,,,,,,"431747502","8169322207",,,,"2011-10-10T02:23:16-0500","DAWN MURPHY","2011-10-10T02:23:57-0500","CHUCK ROBB",,,8949,6809,511,1596,8916,66,8982,,213,,"1A1C1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010133247P040149551681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRST FINANCIAL EQUITY CORP.","001","1994-01-01","FIRST FINANCIAL EQUITY CORP.",,,"7373 N SCOTTSDALE ROAD","SUITE D120","SCOTTSDALE","AZ","852533506",,,,,,,,,,,,,,,,,,"860511639","4807782016","523120","FIRST FINANCIAL EQUITY CORP.",,"7373 N SCOTTSDALE ROAD","SUITE D120","SCOTTSDALE","AZ","852533506",,,,,,,"860511639","4807782016",,,,"2011-10-10T13:32:21-0500","GEORGE E. FISCHER",,,,,124,131,0,3,134,0,134,61,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010141941P030145996577010","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"SOLANO/NAPA COUNTIES ELECTRICAL WORKERS PROFIT SHARING PLAN","002","2000-06-01","BOARD OF TRUSTEES OF SOLANO/NAPA COUNTIES ELECTRICAL WORKERS PENSION P",,,"2610 CROW CANYON ROAD, SUITE 200",,"SAN RAMON","CA","94583",,,,,,,,,,,,,,,,,,"946220673","9252089999","238210","BOARD OF TRUSTEES OF SOLANO/NAPA COUNTIES ELECTRICA",,"2610 CROW CANYON ROAD, SUITE 200",,"SAN RAMON","CA","94583",,,,,,,"946220673","9252089999",,,,"2011-09-29T08:16:09-0500","DAN R. BROADWATER","2011-10-07T08:16:09-0500","DONALD V. CAMPBELL",,,951,519,0,366,885,0,885,885,,78,"2C2H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010071823P040022344498001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"UNITED STATES STEEL CORPORATION SEVERANCE PAY PLAN","505","1979-12-31","UNITED STATES STEEL CORPORATION AND AFFILIATED COS.",,,"600 GRANT STREET - ROOM 2643",,"PITTSBURGH","PA","152192800",,,,,,,,,,,,,,,,,,"251897152","4124334892","331110","USS AND CARNEGIE PENSION FUND",,"600 GRANT STREET - ROOM 2687",,"PITTSBURGH","PA","152192800",,,,,,,"250851750","4124334880",,,,"2011-10-07T10:19:29-0500","RANDALL WYNKOOP",,,,,15904,15850,0,0,15850,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010071930P040149308609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY GUIDANCE CENTER PENSION PLAN","001","1991-01-01","COMMUNITY GUIDANCE CENTER",,,"793 OLD ROUTE 119 HIGHWAY NORTH",,"INDIANA","PA","157011372",,,,,,,,,,,,,,,,,,"251096780","7244655576","621399","COMMUNITY GUIDANCE CENTER",,"793 OLD ROUTE 119 HIGHWAY NORTH",,"INDIANA","PA","157011372",,,,,,,"251096780","7244655576",,,,"2011-10-10T07:15:43-0500","ANN WILLIAMS",,,,,170,113,0,37,150,0,150,135,38,,"2G2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010102555P030145842321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FAIRFAX NEONATAL ASSOCIATES, P.C. 401(K) PROFIT SHARING PLAN","001","1979-06-01","FAIRFAX NEONATAL ASSOCIATES, P.C.",,,"2730-B PROSPERITY AVENUE",,"FAIRFAX","VA","22031",,,,,,,,,,,,,,,,,,"541110106","7032891400","621111","FAIRFAX NEONATAL ASSOCIATES, P.C.",,"2730-B PROSPERITY AVENUE",,"FAIRFAX","VA","22031",,,,,,,"541110106","7032891400",,,,"2011-10-10T10:25:18-0500","MARGARET SNYDER",,,,,123,115,0,11,126,0,126,126,5,,"2A2E2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010104511P040149431009005","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"ELMWOOD SUPPLY PROFIT SHARING AND TRUST","001","1982-01-06","ELMWOOD SUPPLY COMPANY, INC.",,,"7306 W. GRAND AVENUE",,"ELMWOOD PARK","IL","607071905",,,,,,,,,,,,,,,,,,"363155316","7084538241","453990","ELMWOOD SUPPLY COMPANY, INC.",,"7306 W. GRAND AVENUE",,"ELMWOOD PARK","IL","607071905",,,,,,,"363155316","7084538241",,,,"2011-09-01T14:50:17-0500","ANDREW MCCANDLESS","2011-09-01T14:50:25-0500","ANDREW MCCANDLESS",,,10,6,1,1,8,0,8,8,1,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010095813P040149398609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALAN H KANTER, MD DBA VEIN CENTER OF ORANGE COUNTY MONEY PURCHASE PLAN & TRUST","001","1994-01-01","ALAN H KANTER, MD",,,"250 EAST YALE LOOP D",,"IRVINE","CA","926044697",,,,,,,,,,,,,,,,,,"330552806","9495518855","621111","ALAN H KANTER, MD","ALAN H KANTER, MD DBA VEIN CENTER OF ORANGE COUNTY MONEY PURCHASE PLAN","250 EAST YALE LOOP D",,"IRVINE","CA","926044697",,,,,,,"330552806","9495518855",,,,"2011-10-10T09:54:40-0500","ALAN H KANTER MD",,,,,3,3,0,0,3,0,3,3,0,,"2C2G3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010110333P040672780368003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DON E SECREST DDS INC PROFIT SHARING PLAN","001","1974-04-01","DON E SECREST DDS INC",,,"712 GRAHAM RD",,"CUYAHOGA FALLS","OH","44221",,,,,,,,,,,,,,,,,,"341140929","3309284422","621210","DON E SECREST DDS INC",,"712 GRAHAM RD",,"CUYAHOGA FALLS","OH","44221",,,,,,,"341140929","3309284422",,,,"2011-10-06T13:44:59-0500","DON E SECREST",,,,,4,4,,,4,,4,,,,"3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010124639P040022380706001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONSOLIDATED WELFARE PLAN OF THE CALIFORNIA INSTITUTE OF TECHNOLOGY","601","1994-01-01","CALIFORNIA INSTITUTE OF TECHNOLOGY",,,"MAIL CODE 161-84",,"LOS ANGELES","CA","911250001",,,,,,,"245 N. BEVERLY DRIVE",,"BEVERLY HILLS","CA","902105317",,,,,,,"951643307","6263953927","611000","CALIFORNIA INSTITUTE OF TECHNOLOGY",,"MAIL CODE 161-84",,"LOS ANGELES","CA","911250001",,,,,,,"951643307","6263953927",,,,"2011-10-10T12:01:23-0500","JULIA MCCALLIN","2011-10-10T12:12:29-0500","SHARON PATTERSON",,,9188,9161,3208,0,12369,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","12","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010102339P030021466274001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENDEX OF OKLAHOMA, INC. EMPLOYEES' 401(K) PLAN","001","1996-06-01","ENDEX OF OKLAHOMA, INC.",,,"812 S.E. 83RD STREET",,"OKLAHOMA CITY","OK","73149",,,,,,,,,,,,,,,,,,"731430698","4057873617","812990","ENDEX OF OKLAHOMA, INC.",,"812 S.E. 83RD STREET",,"OKLAHOMA CITY","OK","73149",,,,,,,"731430698","4057873617",,,,"2011-10-10T10:22:46-0500","KEITH JONES","2011-10-10T10:22:46-0500","KEITH JONES",,,19,19,0,1,20,0,20,18,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010130310P030021481122001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"MORGAN STANLEY GROWTH OPPORTUNITIES RET ACCT","306",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T11:58:27-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010130340P030145943057001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"COLUMBIA MID CAP VALUE INV OPT","397",,"TRANSAMERICA LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"390989781","2137423111",,"TRANSAMERICA LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"390989781","2137423111",,,,,,,,"2011-10-10T12:29:58-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010140937P040149578193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NAN YA PLASTICS CORPORATION, AMERICA, EMPLOYEES SAVINGS PLAN","001","1991-01-01","NAN YA PLASTICS CORPORATION, AMERICA",,"C/O MARTIN HASS","9 PEACH TREE HILL ROAD",,"LIVINGSTON","NJ","070390000",,,,,,,,,,,,,,,,,,"223009119","9739921775","325200","NAN YA PLASTICS CORPORATION, AMERICA","C/O MARTIN HASS","9 PEACH TREE HILL ROAD",,"LIVINGSTON","NJ","070390000",,,,,,,"223009119","9737167350",,,,"2011-10-10T14:09:37-0500","MARTIN HASS","2011-10-10T14:09:37-0500","GEORGE CHANG",,,1477,944,10,542,1496,14,1510,1421,0,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010134512P040149561313004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DO FAMILY ESTATE & EQUITIES, INC. 401(K) PROFIT SHARING PLAN","001","2009-07-20","DO FAMILY ESTATE & EQUITIES, INC.",,"THANG DO","3011 ROBIN RIDGE CT",,"FAIRFAX","VA","22031",,,,,,,,,,,,,,,,,,"270542352","5713144004","236110","DO FAMILY ESTATE & EQUITIES, INC.","THANG DO","3011 ROBIN RIDGE CT",,"FAIRFAX","VA","22031",,,,,,,"270542352","5713144004",,,,"2011-10-10T13:37:01-0500","THANG DO","2011-10-10T13:37:51-0500","THANG DO",,,2,2,0,0,2,0,2,2,,,"2E2F2J2G2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010092817P030145798353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JFM ENTERPRISES, INC. 401(K) PLAN","001","1984-07-01","JFM ENTERPRISES, INC.",,,"1301 W 22ND STREET, SUITE 900",,"OAK BROOK","IL","60523",,,,,,,,,,,,,,,,,,"363803463","6309904555","561500","JFM ENTERPRISES, INC.",,"1301 W 22ND STREET, SUITE 900",,"OAK BROOK","IL","60523",,,,,,,"363803463","6309904555",,,,"2011-10-10T09:27:30-0500","FRANK SILZER","2011-10-10T09:27:30-0500","FRANK SILZER",,,168,170,0,26,196,0,196,134,2,,"2J2E2F2K3D2G2T2S2R",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010082856P030145765089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A FEDERAL CREDIT UNION EMPLOYEES THRIFT AND PROFIT SHARING PLAN","002","1986-12-01","A FEDERAL CREDIT UNION",,,"6420 US HWY 290 EAST",,"AUSTIN","TX","787231030",,,,,,,,,,,,,,,,,,"741178648","5123026800","522130","A FEDERAL CREDIT UNION",,"6420 US HWY 290 EAST",,"AUSTIN","TX","787231030",,,,,,,"741178648","5123026800",,,,"2011-10-10T08:27:53-0500","KERRY PARKER",,,,,223,195,0,17,212,0,212,188,8,,"2E2J2F2G2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010093657P040149386241001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ALUMA-FORM, INC. PROFIT SHARING PLAN","001","1971-01-01","ALUMA-FORM, INC.",,,"3625 OLD GETWELL ROAD",,"MEMPHIS","TN","38118",,,,,,,,,,,,,,,,,,"620649170","9013753388","339900","ALUMA-FORM, INC.",,"3625 OLD GETWELL ROAD",,"MEMPHIS","TN","38118",,,,,,,"620649170","9013753388",,,,"2011-10-10T10:36:35-0500","ANGELA HALE",,,,,147,122,0,28,150,0,150,150,6,,"2E2F2G2J2K2R2S2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010132059P040022386306001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"M. J. H. S. AND PARTICIPATING AGENCIES & PROGRAMS BENEFIT PLAN","501","1996-01-01","METROPOLITAN JEWISH HEALTH SYSTEM",,,"6323 SEVENTH AVENUE",,"BROOKLYN","NY","11219",,,,,,,,,,,,,,,,,,"113538697","7186302555","623000","METROPOLITAN JEWISH HEALTH SYSTEM",,"6323 SEVENTH AVENUE",,"BROOKLYN","NY","11219",,,,,,,"113538697","7186302555",,,,"2011-10-10T13:18:21-0500","BARBARA PIGNATARO",,,,,1273,1285,39,0,1324,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010133926P040049090263001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALPHAFIVE CORPORATION 401K SAVINGS AND RETIREMENT PLAN","002","1981-01-01","ALPHAFIVE CORPORATION",,,"226 WEST LIBERTY STREET SUITE 100",,"ANN ARBOR","MI","48104",,,,,,,,,,,,,,,,,,"382317414","7347690530","541600","ALPHAFIVE CORPORATION",,"226 WEST LIBERTY STREET SUITE 100",,"ANN ARBOR","MI","48104",,,,,,,"382317414","7347690530",,,,"2011-10-10T13:38:58-0500","JEFFREY EVANS",,,,,215,174,0,46,220,0,220,181,0,,"2E2F2G2J2K2R2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010103241P030004331827001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RESTAURANT TECHNOLOGIES EMPLOYEE LIFE AND LTD PLAN","502","2001-01-01","RESTAURANT TECHNOLOGIES",,,"2250 PILOT KNOB ROAD, SUITE 100",,"MENDOTA HEIGHTS","MN","55120",,,,,,,,,,,,,,,,,,"411873256","6517961628","424400","RESTAURANT TECHNOLOGIES",,"2250 PILOT KNOB ROAD, SUITE 100",,"MENDOTA HEIGHTS","MN","55120",,,,,,,"411873256","6517961628",,,,"2011-10-10T10:31:58-0500","KATHY RASMUSSEN",,,,,551,523,22,0,545,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010120207P030048224407001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GERARDO M GACAD MD PROFIT SHARING PLAN","001","1988-03-01","GERARDO M GACAD M.D.",,,"6510 KENILWORTH AVENUE STE 2700",,"RIVERDALE","MD","20737",,,,,,,"6510 KENILWORTH AVENUE STE 2700",,"RIVERDALE","MD","20737",,,,,,,"521061650","3016995990","621111","GERARDO M GACAD M.D.",,"6510 KENILWORTH AVENUE STE 2700",,"RIVERDALE","MD","20737",,,,,,,"521061650","3016995990",,,,"2011-10-10T12:01:35-0500","ANN FURST",,,,,1,1,,,1,,1,1,,,"2E3B3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010132540P030145962273007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MARK/TRECE HEALTH & WELFARE BENEFIT TRUST","501","1982-11-03","MARK/TRECE, INC.",,,"2001 STOCKTON ROAD",,"JOPPA","MD","21085",,,,,,,,,,,,,,,,,,"520782923","4108790060","323100","MARK/TRECE, INC.",,"2001 STOCKTON ROAD",,"JOPPA","MD","21085",,,,,,,"520782923","4108790060",,,,"2011-09-27T08:29:18-0500","SANDRA L. GODFREY",,,,,129,135,0,,135,,,,,,,"4A4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010073303P030145740097001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LIBERTY KENWORTH 401(K) PROFIT SHARING PLAN","001","1994-09-01","LIBERTY KENWORTH-HINO",,,"2160 ROUTE 322",,"SWEDESBORO","NJ","08085",,,,,,,,,,,,,,,,,,"232622471","6102825101","441229","LIBERTY KENWORTH-HINO",,"2160 ROUTE 322",,"SWEDESBORO","NJ","08085",,,,,,,"232622471","6102825101",,,,"2011-10-10T08:32:40-0500","EDWARD GEORGE",,,,,127,124,0,4,128,0,128,78,3,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010122214P030145916321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARCADIA UNIVERSITY DEFINED CONTRIBUTION RETIREMENT PLAN","001","1957-09-01","ARCADIA UNIVERSITY",,,"450 S. EASTON ROAD",,"GLENSIDE","PA","19038",,,,,,,,,,,,,,,,,,"231352620","2155722900","611000","ARCADIA UNIVERSITY",,"450 S. EASTON ROAD",,"GLENSIDE","PA","19038",,,,,,,"231352620","2155722900",,,,"2011-10-10T11:51:45-0500","LYNETTE ALLEN-COLLINS",,,,,1370,436,0,513,949,2,951,873,0,,"2F2G2L2M2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010124719P040022380802001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WEST AMERICAN RUBBER CO., LLC 401(K) PLAN","001","2002-01-01","WEST AMERICAN RUBBER CO., LLC",,,"750 NORTH MAIN STREET",,"ORANGE","CA","92868",,,,,,,"750 NORTH MAIN ST",,"ORANGE","CA","92868",,,,,,,"330986524","7145323355","326200","WEST AMERICAN RUBBER CO., LLC",,"750 NORTH MAIN STREET",,"ORANGE","CA","92868",,,,,,,"330986524","7145323355",,,,"2011-10-10T12:44:27-0500","KELVIN BAKER",,,,,253,186,0,50,236,0,236,146,0,,"2E2F2G2J2K2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010082940P030677911408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WEEKLY DISABILITY INCOME INSURANCE FOR EMPLOYEES OF MCR LLC","511","2007-01-01","MCR LLC",,,"2010 CORPORATE RIDGE SUITE 350",,"MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"541038828","7035064600","541600","MCR LLC",,"2010 CORPORATE RIDGE SUITE 350",,"MCLEAN","VA","22102",,,,,,,"541038828","7035064600",,,,"2011-10-10T08:29:27-0500","J. CHRISTOPHER NEUBAUER",,,,,563,565,1,0,566,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010102906P030678214048001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COOPER & SCULLY, P.C. 401(K) PLAN","001","1993-07-01","COOPER & SCULLY, P.C.",,,"900 JACKSON STREET, SUITE 100",,"DALLAS","TX","75202",,,,,,,,,,,,,,,,,,"752478365","2147129500","541110","COOPER & SCULLY, P.C.",,"900 JACKSON STREET, SUITE 100",,"DALLAS","TX","75202",,,,,,,"752478365","2147129500",,,,"2011-10-10T10:28:47-0500","THERESE BAIRD","2011-10-10T10:28:47-0500","THERESE BAIRD",,,175,82,0,66,148,0,148,139,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010123007P030145923825001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"STIMSON ENTERPISES , INC. PROFIT SHARING PLAN","002","2004-01-01","STIMSON ENTERPRISES, INC.",,,"5623 WILLOW CREEK ROAD",,"NORTH LAS VEGAS","NV","89031",,,,,,,,,,,,,,,,,,"820253781","7026494011","531210","STIMSON ENTERPRISES, INC.",,"5623 WILLOW CREEK ROAD",,"NORTH LAS VEGAS","NV","89031",,,,,,,"820253781","7026494011",,,,"2011-10-10T10:25:19-0500","TERRY STIMSON, TRUSTEE",,,,,3,3,0,0,3,0,3,,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010111459P040149452353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN DENTAL ASSOCIATION EMPLOYEES SAVINGS AND RETIREMENT PLAN","002","1986-07-01","AMERICAN DENTAL ASSOCIATION",,,"211 EAST CHICAGO AVENUE",,"CHICAGO","IL","606112678",,,,,,,,,,,,,,,,,,"360724690","3124402538","813000","AMERICAN DENTAL ASSOCIATION",,"211 EAST CHICAGO AVENUE",,"CHICAGO","IL","606112678",,,,,,,"360724690","3124402538",,,,"2011-10-10T11:09:46-0500","PAM DISSELHORST","2011-10-10T11:09:46-0500","PAM DISSELHORST",,,571,464,0,100,564,1,565,552,0,,"2J2F2G2K3H2E2T2S",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010141127P040022395666001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"COOK BROTHERS COMPANIES 401(K) PLAN","002","2002-01-01","TRIPLE CITIES ACQUISITIONS, LLC",,,"76 FREDERICK STREET",,"BINGHAMTON","NY","13904",,,,,,,,,,,,,,,,,,"161611669","6077237481","811110","TRIPLE CITIES ACQUISITIONS, LLC",,"76 FREDERICK STREET",,"BINGHAMTON","NY","13904",,,,,,,"161611669","6077237481",,,,"2011-10-10T14:04:01-0500","MICHAEL VENUTI","2011-10-10T14:04:01-0500","MICHAEL VENUTI",,,143,124,0,9,133,0,133,82,0,,"2F2G2J2K3D2E",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010134115P040149558577001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"HRG NORTH AMERICA WELFARE PLAN","501","1999-05-05","HOGG ROBINSON USA LLC",,,"16 EAST 34TH STREET",,"NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"134053674","2124048800","561500","HOGG ROBINSON USA LLC",,"16 EAST 34TH STREET",,"NEW YORK","NY","10016",,,,,,,"134053674","2124048800",,,,"2011-10-10T13:40:52-0500","BIJAL MAHIDA","2011-10-10T13:40:52-0500","BIJAL MAHIDA",,,288,352,0,0,352,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010135829P040673256720001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANIMAL MEDICAL CLINICS OF QUINCY, LTD. 401K PROFIT SHARING PLAN","001","2003-01-01","ANIMAL MEDICAL CLINICS OF QUINCY, LTD.",,,"620 SPRING LAKE DR",,"QUINCY","IL","623056038",,,,,,,,,,,,,,,,,,"370992694","2172228383","541940","ANIMAL MEDICAL CLINICS OF QUINCY, LTD.",,"620 SPRING LAKE DR",,"QUINCY","IL","623056038",,,,,,,"370992694","2172228383",,,,"2011-10-10T13:58:28-0500","DR. ROBERT E. REICH",,,,,11,6,0,3,9,0,9,9,3,,"2A2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010135842P040149571569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHEAST AERO COMPRESSOR CORP P/S PLAN","001","1999-01-01","NORTHEAST AERO COMPRESSOR CORP",,,"60 KEYLAND CT",,"BOHEMIA","NY","117162656",,,,,,,,,,,,,,,,,,"112945028","6315899070","336410","NORTHEAST AERO COMPRESSOR CORP",,"60 KEYLAND CT",,"BOHEMIA","NY","117162656",,,,,,,"112945028","6315899070",,,,"2011-10-10T13:53:05-0500","MICHAEL GIBSON",,,,,23,23,0,1,24,0,24,22,0,,"2E3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010140336P030145983649012","2010-01-01","2010-12-31","2",,,,,,,,,,,,"R THOMAS BEADLES INC EMPLOYEE PROFIT SHARING PLAN","002","1983-06-13","R THOMAS BEADLES, INC",,,"2519 GRAYSON CIRCLE",,"SAN ANTONIO","TX","78232",,,,,,,,,,,,,,,,,,"731184464","4053592273","541110","L MYLES SMITH & COMPANY",,"3501 FRENCH PARK SUITE C",,"EDMOND","OK","73034",,,,,,,"731096510","4053592273",,,,"2011-10-10T13:52:34-0500","L MYLES SMITH",,,,,2,2,,,2,,2,2,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010083909P030677934384001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEALTH, PRESCRIPTION DRUG AND DENTAL PLAN FOR RETIRED PROFESSIONAL, MANAGERIAL AND CLERICAL STAFF OF SOUND SHORE","519","2008-01-01","SOUND SHORE MEDICAL CENTER OF WESTCHESTER",,,"16 GUION PLACE",,"NEW ROCHELLE","NY","10802",,,,,,,"16 GUION PLACE",,"NEW ROCHELLE","NY","10802",,,,,,,"131740117","9146325000","622000","SOUND SHORE MEDICAL CENTER OF WESTCHESTER",,"16 GUION PLACE",,"NEW ROCHELLE","NY","10802",,,,,,,"131740117","9146325000",,,,"2011-10-10T08:34:59-0500","JOHN LJULJIC",,,,,1,0,0,0,0,,0,,,,,"4A4D",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010131654P040022385522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENSTAR CORPORATION RETIREMENT PLAN","058","1969-01-01","BP CORPORATION NORTH AMERICA INC.",,"ATTN JANET SMOLINSKI","501 WESTLAKE PARK BLVD","WL1 24.182A","HOUSTON","TX","77079",,,,,,,,,,,,,,,,,,"361812780","2813668753","324110","EMPLOYEE BENEFITS PLAN ADMINISTRATOR","BP CORPORATION NORTH AMERICA INC","501 WESTLAKE PARK BLVD",,"HOUSTON","TX","77079",,,,,,,"743259348","2813661809",,,,"2011-10-10T08:03:43-0500","RICHARD DORAZIL",,,,,206,0,99,65,164,30,194,,0,,"1A1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010135319P040149567969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ONEIDA AIRPORT HOTEL CORPORATION 401(K) PLAN","001","1997-01-01","ONEIDA AIRPORT HOTEL CORPORATION",,,"2040 AIRPORT DR",,"GREEN BAY","WI","54313",,,,,,,,,,,,,,,,,,"391515130","9204947300","721120","ONEIDA AIRPORT HOTEL CORPORATION",,"2040 AIRPORT DR",,"GREEN BAY","WI","54313",,,,,,,"391515130","9204947300",,,,"2011-10-10T13:52:40-0500","MARGARET WALDO",,,,,180,305,0,0,305,0,305,206,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010084719P040149352625001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"COLLISION CARE OF KINGS 401(K) PLAN","001","1996-01-01","COLLISION CARE OF KINGS, INC.",,,"8849 COLUMBIA ROAD",,"MAINEVILLE","OH","45039",,,,,,,"8849 COLUMBIA ROAD",,"MAINEVILLE","OH","45039",,,,,,,"311283824","5132059867","811110","COLLISION CARE OF KINGS, INC.",,"8849 COLUMBIA ROAD",,"MAINEVILLE","OH","45039",,,,,,,"311283824","5132059867",,,,"2011-10-10T07:25:29-0500","JAMES WEST","2011-10-10T07:25:29-0500","JAMES WEST",,,149,120,0,23,143,0,143,83,22,,"2E2F2G2J2K3D2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010103324P040672705488001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"VECTOR SECURITY INC EDUCATION ASSISTANCE PLAN","510","1996-01-01","VECTOR SECURITY INC",,,"3400 MCKNIGHT EAST DRIVE",,"PITTSBURGH","PA","152376425",,,,,,,,,,,,,,,,,,"231734719","4123642600","561600","LESLIE BAKER","VECTOR SECURITY, INC.","3400 MCKNIGHT EAST DRIVE",,"PITTSBURGH","PA","15237",,,,,,,"231734719","4123642600",,,,"2011-10-10T10:30:50-0500","LESLIE BAKER",,,,,792,0,0,0,0,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010174601P030146116001001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"JPMORGAN U.S. EQUITY RET OPT","297",,"TRANSAMERICA LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"390989781","2137423111",,"TRANSAMERICA LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"390989781","2137423111",,,,,,,,"2011-10-10T13:29:42-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010174838P030146117153001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"COLUMBIA INTERMEDIATE BOND RET OPT","177",,"TRANSAMERICA LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"390989781","2137423111",,"TRANSAMERICA LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"390989781","2137423111",,,,,,,,"2011-10-10T13:21:19-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010180002P030024050358001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"VANGUARD TARGET RETIREMENT 2035 RET ACCT PX","192",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T15:02:22-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010174735P030146116737001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"JPMORGAN MID CAP GROWTH INV ACCT","062",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T12:59:37-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010142247P040149586721001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"LNL SA35 FIDELITY VIP II CONTRAFUND","135",,"LINCOLN NATIONAL LIFE INSURANCE COMPANY",,"RANDALL J CROUCH 6H 04","1300 S CLINTON STREET SUITE 500",,"FORT WAYNE","IN","46802",,,,,,,,,,,,,,,,,,"350472300","2604552000",,"LINCOLN NATIONAL LIFE INSURANCE COMPANY","RANDALL J CROUCH 6H 04","1300 S CLINTON STREET SUITE 500",,"FORT WAYNE","IN","46802",,,,,,,"350472300","2604552000",,,,,,,,"2011-10-10T14:15:48-0500","RANDY CROUCH",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010173450P040673833232001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"FOXMAR, INC. DBA EDUCATION AND TRAINING RESOURCES 401(K) PLAN","001","1998-01-01","FOXMAR, INC.","EDUCATION AND TRAINING RESOURCES, INC.",,"PO BOX 51865",,"BOWLING GREEN","KY","42102",,,,,,,,,,,,,,,,,,"611242482","2707930607","611000","FOXMAR, INC.",,"PO BOX 51865",,"BOWLING GREEN","KY","42102",,,,,,,"611242482","2707930607",,,,"2011-10-10T17:34:41-0500","RETT DALLAS",,,,,626,603,7,43,653,0,653,249,124,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010152625P040673510256001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"M-C INDUSTRIES EMPLOYEE HEALTH CARE PLAN","501","1983-11-01","M-C INDUSTRIES, INC.",,,"3601 W 29TH STREET",,"TOPEKA","KS","66614",,,,,,,,,,,,,,,,,,"480730742","7852733990","325900","M-C INDUSTRIES, INC.",,"3601 W 29TH STREET",,"TOPEKA","KS","66614",,,,,,,"480730742","7852733990",,,,"2011-10-10T15:25:07-0500","KENT LAMMERS",,,,,240,290,5,0,295,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010152635P040149632465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"APTUIT 401(K) RETIREMENT SAVINGS PLAN","001","2005-09-01","APTUIT KANSAS CITY LLC",,,"11440 TOMAHAWK CREEK PARKWAY",,"LEAWOOD","KS","66224",,,,,,,,,,,,,,,,,,"342044661","9132341000","541700","APTUIT KANSAS CITY LLC",,"11440 TOMAHAWK CREEK PARKWAY",,"LEAWOOD","KS","66224",,,,,,,"342044661","9132341000",,,,"2011-10-10T15:25:19-0500","RANDY SHELTON","2011-10-10T15:20:13-0500","JOHN FIKRE",,,1022,848,4,169,1021,0,1021,722,0,,"2E2J2F2G2K2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010171201P040149703409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAIR, BAIR, AND GARRITY LLP SAFE HARBOR EMPLOYEE 401(K) PROFIT SHARING PLAN","001","1974-01-01","BAIR, BAIR, AND GARRITY LLP",,,"PO BOX 100","210 1ST AVE NW","MANDAN","ND","58554",,,,,,,,,,,,,,,,,,"450439867","7016636568","541110","BAIR, BAIR, AND GARRITY LLP",,"PO BOX 100","210 1ST AVE NW","MANDAN","ND","58554",,,,,,,"450439867","7016636568",,,,"2011-10-10T17:11:34-0500","THOMAS B. BAIR",,,,,4,2,0,0,2,0,2,0,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010175245P030021511362001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"BLACKROCK LARGE CAP GROWTH RET OPT","212",,"TRANSAMERICA LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"390989781","2137423111",,"TRANSAMERICA LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"390989781","2137423111",,,,,,,,"2011-10-10T15:16:03-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010160936P040149666305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ODFJELL USA INC. DEFINED BENEFIT PLAN","002","1986-10-01","ODFJELL USA INC.",,,"12211 PORT ROAD",,"SEABROOK","TX","775861624",,,,,,,,,,,,,,,,,,"132732985","7138442200","483000","ODFJELL USA INC.",,"12211 PORT ROAD",,"SEABROOK","TX","775861624",,,,,,,"132732985","7138442200",,,,"2011-10-10T16:09:35-0500","REBECCA SNYDER",,,,,246,132,17,94,243,2,245,,,,"1A1G3H",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010134717P040673224048002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SOLOMON SCHECHTER DAY SCHOOL RETIREMENT PLAN RA","001","1983-09-01","SOLOMON SCHECHTER DAY SCHOOL OF NASSAU COUNTY",,,"BARBARA LANE",,"JERICHO","NY","11753",,,,,,,"BARBARA LANE",,"JERICHO","NY","11753",,,,,,,"112149235","5166565500","611000","SOLOMON SCHECHTER DAY SCHOOL OF NASSAU COUNTY",,"BARBARA LANE",,"JERICHO","NY","11753",,,,,,,"112149235","5166565500",,,,"2011-10-10T09:39:30-0500","LISA WALSH",,,,,75,78,,1,79,,79,78,,,"2G2L",,"1",,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010143534P040149595121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JORDEN BURT SAVINGS & INVESTMENT PLAN","001","1988-08-01","JORDEN BURT LLP",,,"777 BRICKELL AVENUE, SUITE 500",,"MIAMI","FL","331312801",,,,,,,,,,,,,,,,,,"650019093","3053712600","541110","JORDEN BURT LLP",,"777 BRICKELL AVENUE, SUITE 500",,"MIAMI","FL","331312801",,,,,,,"650019093","3053712600",,,,"2011-10-10T14:10:46-0500","STEPHEN KRAUS","2011-10-10T14:34:40-0500","STEVEN KASS",,,191,139,1,44,184,0,184,184,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010163600P030004338979001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J.A. STREET & ASSOCIATES WELFARE BENEFIT PLAN","505","2003-01-01","J.A. STREET & ASSOCIATES",,,"P.O. BOX 725",,"BLOUNTVILLE","TN","37617",,,,,,,"P.O. BOX 725",,"BLOUNTVILLE","TN","37617",,,,,,,"621260393","4233238017","236200","J.A. STREET & ASSOCIATES",,"P.O. BOX 725",,"BLOUNTVILLE","TN","37617",,,,,,,"621260393","4233238017",,,,"2011-10-10T16:29:18-0500","JIMMIE STREET",,,,,1,1,,,1,,1,,,,,"4B",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010175339P030146121569001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"VANGUARD TOTAL STOCK MARKET INDEX RET ACCT","166",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T13:44:08-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with incorrect/unrecognized electronic signature", "20111010143559P040149595537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEADER PRODUCTS, INC. EMPLOYEES' 401(K) PLAN","002","2000-01-01","HEADER PRODUCTS, INC.",,,"11850 WAYNE ROAD",,"ROMULUS","MI","48174",,,,,,,"P.O. BOX 74188",,"ROMULUS","MI","48174",,,,,,,"381716591","7349412220","332900","HEADER PRODUCTS, INC.",,"11850 WAYNE ROAD",,"ROMULUS","MI","48174",,,,,,,"381716591","7349412220",,,,"2011-10-10T14:35:15-0500","ROBERT POLZIN",,,,,200,103,0,75,178,0,178,147,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010165814P030146088913001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"EIDE FORD LINCOLN MERCURY, INC. SALARY DEFERRAL 401(K) PROFIT SHARING PLAN","001","1996-01-01","EIDE FORD LINCOLN MERCURY, INC.",,,"800 E BISMARCK EXWY","PO BOX 1117","BISMARCK","ND","58504",,,,,,,"800 E BISMARCK EXWY","PO BOX 1117","BISMARCK","ND","58504",,,,,,,"450364160","7012223500","441110","EIDE FORD LINCOLN MERCURY, INC.",,"800 E BISMARCK EXWY","PO BOX 1117","BISMARCK","ND","58504",,,,,,,"450364160","7012223500",,,,"2011-10-10T16:57:11-0500","SHELDON KAUK",,,,,64,58,0,2,60,0,60,34,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010170616P040149698769001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"THOMSON REUTERS GROUP PENSION PLAN","001","1971-04-01","THOMSON REUTERS HOLDINGS INC.",,,"METRO CENTER - 1 STATION PLACE",,"STAMFORD","CT","06902",,,,,,,,,,,,,,,,,,"061497995","2035398788","519100","THOMSON REUTERS HOLDINGS INC.",,"METRO CENTER - 1 STATION PLACE",,"STAMFORD","CT","06902",,,,,,,"061497995","2035398788",,,,"2011-10-10T16:00:09-0500","DIANE GASSER",,,,,32268,6915,7223,16198,30336,758,31094,,52,,"1A1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010161705P030146065105001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"CONAGRA FOODS MASTER PENSION TRUST","001",,"CONAGRA FOODS, INC.",,,"CONAGRA FOODS, INC.",,"OMAHA","NE","681025001",,,,,,,"ONE CONAGRA DRIVE",,"OMAHA","NE","681025001",,,,,,,"470248710","4022404000",,"CONAGRA FOODS, INC. EMPLOYEE BENEFITS ADMIN COMMITTEE",,"ONE CONAGRA DRIVE",,"OMAHA","NE","681025001",,,,,,,"621756117","4022404000",,,,"2011-10-10T16:15:51-0500","CHARLES G. SALTER","2011-10-10T16:15:51-0500","CHARLES G. SALTER","2011-10-10T16:15:51-0500","CHARLES G. SALTER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111010134854P040149564657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLUB ASSIST US LLC 401(K) PROFIT SHARING PLAN AND TRUST","001","2006-01-01","CLUB ASSIST US LLC",,,"3550 WILSHIRE BLVD, STE 650",,"LOS ANGELES","CA","90010",,,,,,,,,,,,,,,,,,"980361710","2133884333","423100","CLUB ASSIST US LLC",,"3550 WILSHIRE BLVD, STE 650",,"LOS ANGELES","CA","90010",,,,,,,"950361710","2133884333","CLUB ASSIST US LLC","950361710","001","2011-10-10T13:48:53-0500","KATHY FLORES",,,,,179,142,0,31,173,0,173,126,3,,"2E2G2J2K2T3D3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010180247P030146127233001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SSGA RUSSELL 2000 GROWTH INDEX RET OPT","121",,"TRANSAMERICA LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"390989781","2137423111",,"TRANSAMERICA LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"390989781","2137423111",,,,,,,,"2011-10-10T15:58:11-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010174314P030146114369001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SSGA RUSSELL 2000 VALUE INDEX RET OPT","046",,"TRANSAMERICA LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"390989781","2137423111",,"TRANSAMERICA LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"390989781","2137423111",,,,,,,,"2011-10-10T15:52:55-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010175427P040149724161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EL PASO CORPORATION RETIREE BENEFITS PLAN","516","1992-07-01","EL PASO CORPORATION",,"C/O CORPORATE ACCOUNTING","PO BOX 2511",,"HOUSTON","TX","77002",,,,,,,"1001 LOUISIANA STREET",,"HOUSTON","TX","77002",,,,,,,"760568816","7134202600","551112","THE COMMITTEE APPT UNDER THE EL PASO CORP RETIREE BENEFITS PLAN","C/O CORPORATE BENEFITS","PO BOX 2511",,"HOUSTON","TX","77002",,,,,,,"760568816","7134202600",,,,"2011-10-10T17:42:50-0500","WAYNE WILLIAMS","2011-10-10T17:47:52-0500","JEFF STANBERRY",,,15541,0,14916,23,14939,0,,,,,,"4A4B4D4E4H","1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010180920P040022421058001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARY ALEXANDER & ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","002","2002-01-01","MARY ALEXANDER & ASSOCIATES, INC.",,,"44 MONTGOMERY ST. SUITE 1303",,"SAN FRANCISCO","CA","94104",,,,,,,,,,,,,,,,,,"943410218","4154334440","541110","MARY ALEXANDER & ASSOCIATES, INC.",,"44 MONTGOMERY ST. SUITE 1303",,"SAN FRANCISCO","CA","94104",,,,,,,"943410218","4154334440",,,,"2011-10-10T18:06:36-0500","MARY ALEXANDER",,,,,10,4,0,6,10,0,10,9,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010180941P040149731761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ETHICUS HOSPITAL DFW 401K PROFIT SHARING PLAN","001","2005-01-01","ETHICUS HOSPITAL DFW",,,"4201 WILLIAM D. TATE DR.","SUITE 1810","GRAPEVINE","TX","760515736",,,,,,,,,,,,,,,,,,"263044485","8172881300","541600","ETHICUS HOSPITAL DFW",,"4201 WILLIAM D. TATE DR.",,"GRAPEVINE","TX","760515736",,,,,,,"263044485","8172881300",,,,"2011-10-10T18:02:05-0500","JOHN MASS",,,,,192,215,0,3,218,0,218,47,0,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010172733P040022417634001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASHERSON, KLEIN & DARBINIAN PROFIT SHARING PLAN","001","2001-01-01","ASHERSON, KLEIN & DARBINIAN",,,"9150 WILSHIRE BLVD STE 210",,"BEVERLY HILLS","CA","902123429",,,,,,,,,,,,,,,,,,"953481158","3102476070","541110","ASHERSON, KLEIN & DARBINIAN",,"9150 WILSHIRE BLVD STE 210",,"BEVERLY HILLS","CA","902123429",,,,,,,"953481158","3102476070",,,,"2011-10-10T17:27:32-0500","ANNA DARBINIAN",,,,,4,4,1,0,5,0,5,5,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010133152P030021485506001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"JANUS OVERSEAS RET OPT","083",,"TRANSAMERICA LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"390989781","2137423111",,"TRANSAMERICA LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"390989781","2137423111",,,,,,,,"2011-10-10T12:18:16-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010180335P030679392128001","2010-01-01","2010-12-31","4","P","1","0","0","0","0","0","0","0","0",,"AMERICAN CENTURY LIVESTRONG INCOME RET ACCT","364",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T13:21:55-0500","DARCY HATTON",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010163728P040149683137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GPM HOME OFFICE EMPLOYEES RETIREMENT PLAN","004","1976-05-01","GOVERNMENT PERSONNEL MUTUAL LIFE INSURANCE COMPANY",,,"2211 NE LOOP 410",,"SAN ANTONIO","TX","782174630",,,,,,,,,,,,,,,,,,"740651020","2103572222","524140","GPM HOME OFFICE EMPLOYEES RETIREMENT PLAN ADMINISTRATOR",,"2211 NE LOOP 410",,"SAN ANTONIO","TX","782174630",,,,,,,"621661665","2103572222",,,,"2011-10-05T17:19:49-0500","DATA CAMPBELL","2011-10-10T16:32:06-0500","WILLIAM HOFFMAN",,,125,107,7,16,130,0,130,129,12,,"2E2J2F2G2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010171525P030146100097012","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"DEFINED BENEFIT PENSION PLAN OF AGC-IUOE LOCAL 701 PENSION TRUST FUND","001","1960-03-31","BOARD OF TRUSTEES AGC-IUOE LOCAL 701 PENSION TRUST FUND",,,"PO BOX 34203",,"SEATTLE","WA","981240000",,,,,,,,,,,,,,,,,,"936075580","2064417574","238900","BOARD OF TRUSTEES AGC-IUOE LOCAL 701 PENSION TRUST FUND",,"PO BOX 34203",,"SEATTLE","WA","34203",,,,,,,"936075580","2064417574",,,,"2011-10-10T17:13:43-0500","MARK HOLLIDAY, TRUSTEE",,,,,5128,1497,2032,901,4430,571,5001,,,210,"1B1G",,"1",,"1",,"1",,"1",,"1","1",,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010134915P040149564865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KATZ AND RANZMAN, PC 401(K) PROFIT SHARING PLAN","001","1987-01-01","KATZ AND RANZMAN, PC",,,"4530 WISCONSIN AVENUE SUITE 250",,"WASHINGTON","DC","20016",,,,,,,,,,,,,,,,,,"521876246","2026594656","541110","KATZ AND RANZMAN, PC",,"4530 WISCONSIN AVENUE SUITE 250",,"WASHINGTON","DC","20016",,,,,,,"521876246","2026594656",,,,"2011-10-10T13:49:14-0500","ELLEN RANZMAN",,,,,5,6,0,0,6,0,6,6,0,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010143651P040149596225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALCANCORP LONG TERM DISABILITY PLAN","509","1970-05-01","ALCAN CORPORATION",,,"8770 WEST BRYN MAWR AVENUE",,"CHICAGO","IL","606313657",,,,,,,,,,,,,,,,,,"412098316","7733998000","331310","ALCANCORP EMPLOYEE BENEFITS COMMITTEE",,"8770 W. BRYN MAWR AVENUE",,"CHICAGO","IL","60631",,,,,,,"364325746","7733998000",,,,"2011-10-10T14:36:10-0500","PAUL WARNER","2011-10-10T14:36:10-0500","PAUL WARNER",,,733,660,0,0,660,,,,,,,"4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010165838P030146089201001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"EARNHARDT GANASSI RACING WITH FELIX SABATES 401(K) PLAN","001","1983-02-01","EARNHARDT GANASSI RACING WITH FELIX SABATES,",,,"2500 WESTMORELAND DR",,"CONCORD","NC","280277571",,,,,,,,,,,,,,,,,,"263778383","7046629642","711300","EARNHARDT GANASSI RACING WITH FELIX SABATES,",,"2500 WESTMORELAND DR",,"CONCORD","NC","280277571",,,,,,,"263778383","7046629642",,,,"2011-10-10T16:58:34-0500","KAREN CORSNITZ","2011-10-10T16:58:34-0500","KAREN CORSNITZ",,,192,146,0,20,166,0,166,135,4,,"2E2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010150923P040149619873002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TAX DEFERRED ANNUITY PLAN FOR EMPLOYEES OF INTERNATIONAL CHILD CARE","001","1999-09-01","INTERNATIONAL CHILD CARE USA INC.",,,"240 W. MICHIGAN AVENUE",,"KALAMAZOO","MI","49007",,,,,,,,,,,,,,,,,,"356059274","2693829960","813000","INTERNATIONAL CHILD CARE USA INC.",,"240 W. MICHIGAN AVENUE",,"KALAMAZOO","MI","49007",,,,,,,"356059274","2693829960",,,,"2011-10-10T09:30:01-0500","KEITH MUMMA","2011-10-10T09:30:01-0500","KEITH MUMMA",,,2,1,0,1,2,0,2,2,0,,"2L",,,,"1",,,,"1",,,,,,"1","1","1","1",,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010150932P040022402946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DONALD P. WORKMAN, MD, PA 401(K) PLAN","003","2002-01-01","DONALD P. WORKMAN, MD, PA",,,"3100 HEATHERWOOD",,"TWIN FALLS","ID","833018100",,,,,,,,,,,,,,,,,,"820499415","2087341614","621111","DONALD P. WORKMAN, MD, PA",,"3100 HEATHERWOOD",,"TWIN FALLS","ID","833018100",,,,,,,"820499415","2087341614",,,,"2011-10-10T15:05:02-0500","DONALD P. WORKMAN, MD",,,,,2,3,0,0,3,0,3,3,0,,"2E2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010160254P040022409202001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"CAMS PROFIT SHARING PLAN","002","2010-01-01","CONSOLIDATED ASSET MANAGEMENT SERVICES, LLC",,,"919 MILAM STREET, SUITE 2300",,"HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"412239010","7133589704","551112","CONSOLIDATED ASSET MANAGEMENT SERVICES, LLC",,"919 MILAM STREET, SUITE 2300",,"HOUSTON","TX","77002",,,,,,,"412239010","7133589704",,,,"2011-10-10T15:59:20-0500","LYNNE WAYMIRE",,,,,175,209,0,0,209,0,209,209,0,,"2A2E2F2G3D3H",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010162658P040149677425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRER 401K PLAN","001","1999-01-01","FLANIGAN REAL ESTATE RESOURCES, INC.",,,"312 PLUM STREET SUITE 1410",,"CINCINNATI","OH","45202",,,,,,,,,,,,,,,,,,"311754796","5134211900","531120","FLANIGAN REAL ESTATE RESOURCES, INC.",,"312 PLUM STREET SUITE 1410",,"CINCINNATI","OH","452022693",,,,,,,"311754796","5134211900",,,,"2011-10-10T16:26:04-0500","MICHAEL P. FLANIGAN",,,,,22,6,0,15,21,0,21,21,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010173102P030146106481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"L & M TIRE COMPANY YOURMONEY YOURCHOICE PLAN","501","1988-01-01","L & M TIRE COMPANY, INC.",,,"1148 INDUSTRIAL AVENUE",,"ESCONDIDO","CA","920291422",,,,,,,,,,,,,,,,,,"952681459","7607415514","441300","L & M TIRE COMPANY, INC.",,"1148 INDUSTRIAL AVENUE",,"ESCONDIDO","CA","920291422",,,,,,,"952681459","7607415514",,,,"2011-10-10T17:28:42-0500","GRETA WAGGONER",,,,,157,169,0,0,169,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010164609P040049151671001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COATES & LOGAN, LLC PROFIT SHARING PLAN","001","2004-01-01","COATES & LOGAN, LLC",,,"6804 W 107TH ST STE 250",,"OVERLAND PARK","KS","66212",,,,,,,,,,,,,,,,,,"331035014","9133814000","541110","COATES & LOGAN, LLC",,"6804 W 107TH ST STE 250",,"OVERLAND PARK","KS","66212",,,,,,,"331035014","9133814000",,,,"2011-10-10T16:44:29-0500","LEO L. LOGAN",,,,,8,8,0,0,8,0,8,7,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010164620P040022413218001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OXFORD DENTAL CLINIC RETIREMENT PLAN & TRUST","001","1986-01-01","WALKER SWANEY, D.D.S., P.A.",,,"2155 S. LAMAR BLVD.",,"OXFORD","MS","38655",,,,,,,,,,,,,,,,,,"640853788","6622345222","621210","WALKER SWANEY, D.D.S., P.A.",,"2155 S. LAMAR BLVD.",,"OXFORD","MS","38655",,,,,,,"640853788","6622345222",,,,"2011-10-10T16:45:15-0500","WALKER SWANEY, D.D.S.",,,,,23,19,0,3,22,0,22,22,1,,"2E2A2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010164637P030146080513001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"BENEFIT MERITAGE GROWTH EQUITY FUND","005",,"BENEFIT TRUST COMPANY",,"CLIFFORD SHINSKI","5901 COLLEGE BLVD","SUITE 100","OVERLAND PARK","KS","66211",,,,,,,"5901 COLLEGE BLVD","SUITE 100","OVERLAND PARK","KS","66211",,,,,,,"430995254","9133190300",,"BENEFIT TRUST COMPANY","CLIFFORD SHINSKI","5901 COLLEGE BLVD","SUITE 100","OVERLAND PARK","KS","66211",,,,,,,"431971558","9133190300",,,,,,,,"2011-10-10T16:26:59-0500","CLIFFORD SHINSKI",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010162315P040149674161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"M & W DISTRIBUTION SERVICES, INC. TAX-FAVORED SAVINGS PLAN","001","1982-01-01","M & W DISTRIBUTION SERVICES, INC.",,,"POST OFFICE BOX 43004",,"ATLANTA","GA","303360004",,,,,,,"1775 WESTGATE PARKWAY",,"ATLANTA","GA","303360004",,,,,,,"581164068","4043448902","561490","M & W DISTRIBUTION SERVICES, INC.",,"POST OFFICE BOX 43004",,"ATLANTA","GA","303360004",,,,,,,"581164068","4043448902",,,,"2011-10-10T16:23:06-0500","JUDY SHORE",,,,,109,91,1,13,105,1,106,106,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010163845P040149683793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FINELITE, INC. 401(K) PLAN","001","1998-01-01","FINELITE, INC.",,,"30500 WHIPPLE ROAD",,"UNION CITY","CA","94587",,,,,,,,,,,,,,,,,,"943139357","5104411100","335900","FINELITE, INC.",,"30500 WHIPPLE ROAD",,"UNION CITY","CA","94587",,,,,,,"943139357","5104411100",,,,"2011-10-10T16:38:34-0500","MARGARET FENTON",,,,,128,114,0,25,139,0,139,122,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010163848P040673700384001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"WEINSTEIN TIPPETTS & LITTLE PROFIT SHARING PLAN","001","2010-01-01","WEINSTEIN TIPPETTS & LITTLE",,,"7660 WOODWAY STE 500",,"HOUSTON","TX","77063",,,,,,,,,,,,,,,,,,"262022982","7132440800","541110","WEINSTEIN TIPPETTS & LITTLE",,"7660 WOODWAY STE 500",,"HOUSTON","TX","77063",,,,,,,"262022982","7132440800",,,,"2011-10-10T16:38:42-0500","KATHLEEN STALLWORTH",,,,,0,7,0,0,7,0,7,7,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010161912P040149671345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RADIOLOGY ASSOCIATES, LLC 401(K) PLAN","002","1958-01-01","RADIOLOGY ASSOCIATES, LLC",,,"3330 NW 56TH STREET STE 206",,"OKLAHOMA CITY","OK","73112",,,,,,,,,,,,,,,,,,"201209403","4059454740","621111","RADIOLOGY ASSOCIATES, LLC",,"3330 NW 56TH STREET STE 206",,"OKLAHOMA CITY","OK","73112",,,,,,,"201209403","4059454740",,,,"2011-10-10T16:18:31-0500","ALAN SIMPSON",,,,,66,56,1,8,65,0,65,65,1,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010182234P040149740769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARY LANNING MEMORIAL HOSPITAL 403(B) PLAN","003","2009-01-01","MARY LANNING MEMORIAL HOSPITAL ASSOCIATION",,,"715 NORTH ST. JOSEPH S AVENUE",,"HASTINGS","NE","68901",,,,,,,,,,,,,,,,,,"470378779","4024605879","622000","MARY LANNING MEMORIAL HOSPITAL ASSOCIATION",,"715 NORTH ST. JOSEPH S AVENUE",,"HASTINGS","NE","68901",,,,,,,"470378779","4024605879",,,,"2011-10-07T13:51:15-0500","BETH SCHLICHTMAN","2011-10-07T13:51:15-0500","BETH SCHLICHTMAN",,,100,1112,0,4,1116,0,1116,42,0,,"2L",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111010174702P030146116449001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"JPMORGAN INTREPID MID CAP INV ACCT","065",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,,,,,,,,,,,,"366071399","2137423111",,"TRANSAMERICA FINANCIAL LIFE INSURANCE COMPANY",,"1150 SOUTH OLIVE STREET",,"LOS ANGELES","CA","90015",,,,,,,"366071399","2137423111",,,,,,,,"2011-10-10T13:02:56-0500","DARCY HATTON",,,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-10",,"Filed with authorized/valid electronic signature", "20111010160401P040022409282011","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"TAX DEFERRED ANNUITY PLAN FOR EMPLOYEES OF THE ARCMORRIS COUNTY CHAPTER NJ INC","002","1985-07-01","THE ARC/MORRIS COUNTY CHAPTER, NJ",,,"PO BOX 123",,"MORRIS PLAINS","NJ","07950",,,,,,,,,,,,,,,,,,"221629144","9733269750","813000","THE ARC/MORRIS COUNTY CHAPTER NJ",,"PO BOX 123",,"MORRIS PLAINS","NJ","07950",,,,,,,"221629144","9733269750",,,,"2011-10-10T10:53:54-0500","PETER MURPHY",,,,,309,165,,120,285,2,287,286,,,"3D2M2L",,"1",,,,"1",,,,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",, "20111010160646P040149664689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHOENIX-MESA GATEWAY AIRPORT AUTHORITY EMPLOYEE HEALTH BENEFIT PLAN","501","1994-01-01","PHOENIX-MESA GATEWAY AIRPORT AUTHORITY",,,"5835 S. SOSSAMAN RD",,"MESA","AZ","85212",,,,,,,,,,,,,,,,,,"742712930","4809887600","481000","PHOENIX-MESA GATEWAY AIRPORT AUTHORITY",,"5835 S. SOSSAMAN RD",,"MESA","AZ","85212",,,,,,,"742712930","4809887600",,,,"2011-10-10T13:49:49-0500","JANICE LAVALLEE","2011-10-10T16:06:03-0500","LOTUS WILLIAMS",,,100,99,0,0,99,,,,,,,"4A4D4E4Q4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011114519P030021591906001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HELENA CHEMICAL COMPANY SAVINGS PLAN","004","1985-04-01","HELENA CHEMICAL COMPANY",,,"225 SCHILLING BOULEVARD, SUITE 300",,"COLLIERVILLE","TN","38017",,,,,,,,,,,,,,,,,,"710293688","9017610050","424600","HELENA CHEMICAL BENEFITS COMMITTEE",,"225 SCHILLING BOULEVARD, SUITE 300",,"COLLIERVILLE","TN","38017",,,,,,,"710293688","9017610050",,,,"2011-10-11T11:42:14-0500","JENNIFER WILLIAMS","2011-10-11T11:42:14-0500","JENNIFER WILLIAMS",,,3727,3366,12,468,3846,72,3918,3717,60,,"2E2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011120510P030021594370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STRATHAM TIRE, INC. EMPLOYEES 401(K) RETIREMENT PLAN","002","2000-01-01","STRATHAM TIRE, INC.",,,"355 ROUTE 125",,"BRENTWOOD","NH","03833",,,,,,,,,,,,,,,,,,"020269457","6036792232","441300","STRATHAM TIRE, INC.",,"355 ROUTE 125",,"BRENTWOOD","NH","03833",,,,,,,"020269457","6036792232",,,,"2011-10-11T12:03:35-0500","RENEE BUZZELL","2011-10-11T12:03:35-0500","LIONEL LABONTE",,,110,114,0,9,123,0,123,43,0,,"3D2E2J2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011130117P030681800048001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"BEST FRIENDS ANIMAL HOSPITAL 401(K) AND PROFIT SHA","001","1995-03-20","BEST FRIENDS ANIMAL HOSPITAL",,,"3301 SOUTH WOODLAWN",,"DENISON","TX","75020",,,,,,,,,,,,,,,,,,"752255779","9034636980","541940","BEST FRIENDS ANIMAL HOSPITAL",,"3301 SOUTH WOODLAWN",,"DENISON","TX","75020",,,,,,,"752255779","9034636980",,,,"2011-10-11T11:34:53-0500","DALE BUTLER",,,,,7,0,0,0,0,0,0,0,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011161338P030048638663001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","1","0","0",,"GUNITE CORPORATION SAVINGS PLAN","004","1987-09-04","GUNITE CORPORATION",,,"7140 OFFICE CIRCLE","P.O. BOX 15600","EVANSVILLE","IN","47716",,,,,,,,,,,,,,,,,,"133369803","8129625000","336300","GUNITE CORPORATION",,"7140 OFFICE CIRCLE","P.O. BOX 15600","EVANSVILLE","IN","47716",,,,,,,"133369803","8129625000","GUNITE CORPORATION","133369803",,"2011-10-11T15:55:12-0500","JACKIE SANNER","2011-10-11T15:55:12-0500","JACKIE SANNER",,,49,64,0,0,64,0,64,14,0,,"2E2J2F2G2K3H2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011111918P030146603697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOWLES RICE MCDAVID GRAFF & LOVE SHORT-TERM AND LONG-TERM DISABILITY PLAN","502","1989-01-01","BOWLES RICE MCDAVID GRAFF & LOVE LLP",,"LESLEY A. RUSSO, PARTNER","P.O. BOX 1386",,"CHARLESTON","WV","25325",,,,,,,"600 QUARRIER STREET",,"CHARLESTON","WV","25301",,,,,,,"550394186","3043471100","541110","BOWLES RICE MCDAVID GRAFF & LOVE LLP","LESLEY A. RUSSO, PARTNER","P.O. BOX 1386",,"CHARLESTON","WV","25325",,,,,,,"550394186","3043471100",,,,"2011-10-11T11:17:46-0500","LESLEY RUSSO",,,,,242,247,0,0,247,0,247,,0,,,"4F4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011120653P040150209793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARKWAY PLASTIC SURGERY, P.C. PROFIT SHARING 401(K) PLAN","001","2000-01-01","PARKWAY PLASTIC SURGERY, P.C.",,,"575 WEST CROSSTOWN PARKWAY",,"KALAMAZOO","MI","49008",,,,,,,,,,,,,,,,,,"383500368","2693435750","621111","PARKWAY PLASTIC SURGERY, P.C.",,"575 WEST CROSSTOWN PARKWAY",,"KALAMAZOO","MI","49008",,,,,,,"383500368","2693435750",,,,"2011-10-11T12:06:50-0500","STEVEN M. NITCH, MD","2011-10-11T12:06:50-0500","STEVEN M. NITCH, MD",,,6,5,0,2,7,0,7,7,0,,"2E2K2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011120655P030146640737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EXCELLENCE IN MOTIVATION, INC. 401(K) PLAN","001","1994-01-01","EXCELLENCE IN MOTIVATION, INC.",,,"6 NORTH MAIN STREET",,"DAYTON","OH","45402",,,,,,,,,,,,,,,,,,"311387432","9378248190","541990","EXCELLENCE IN MOTIVATION, INC.",,"6 NORTH MAIN STREET",,"DAYTON","OH","45402",,,,,,,"311387432","9378248190",,,,"2011-10-11T12:05:57-0500","JOHN E. KERNAN III",,,,,241,171,0,58,229,0,229,192,5,,"2E2F2G2J2K2S2T3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011164805P030146841233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNITED STATES COLD STORAGE, INC. RETIREMENT PLAN","003","1985-01-01","UNITED STATES COLD STORAGE, INC.",,,"201 LAUREL ROAD, SUITE 400",,"VOORHEES","NJ","08043",,,,,,,,,,,,,,,,,,"111618557","8563548181","493100","AMINISTRATIVE COMMITTEE","C/O US COLD STORAGE, INC.","201 LAUREL ROAD, SUITE 400",,"VOORHEES","NJ","08043",,,,,,,"232487192","8563548181",,,,"2011-10-11T16:47:11-0500","ALLISON BELKO",,,,,1337,1202,257,0,1459,0,1459,1459,0,,"2E2F2G2J3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011164807P030146841249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GALASSO'S BAKERY 401(K) PROFIT SHARING PLAN","001","1981-10-01","CAJOLEBEN, INC.",,,"10820 SAN SEVAINE WAY",,"MIRA LOMA","CA","917521116",,,,,,,,,,,,,,,,,,"952780618","9513601211","311800","CAJOLEBEN, INC.",,"10820 SAN SEVAINE WAY",,"MIRA LOMA","CA","917521116",,,,,,,"952780618","9513601211",,,,"2011-10-11T16:47:18-0500","ERIC ROBINSON",,,,,282,252,0,16,268,0,268,142,2,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011122002P030146653473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE IHA RETIREMENT PLAN","001","1995-01-01","INTEGRATED HEALTH ASSOCIATES, INC.",,,"24 FRANK LLOYD WRIGHT DRIVE","P.O. BOX 446","ANN ARBOR","MI","481060446",,,,,,,,,,,,,,,,,,"383126920","7347476766","621111","INTEGRATED HEALTH ASSOCIATES, INC.",,"24 FRANK LLOYD WRIGHT DRIVE","P.O. BOX 446","ANN ARBOR","MI","481060446",,,,,,,"383126920","7347476766",,,,"2011-10-11T12:19:22-0500","LOWELL M. SPRAGUE","2011-10-11T12:19:22-0500","LOWELL M. SPRAGUE",,,1028,48,1019,0,1067,0,1067,1025,404,,"2E2F2G2J2K3H2R2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011151931P040004283700001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HERTRICH FAMILY OF AUTOMOBILE DEALERS 401(K) PLAN","001","1998-01-01","HERTRICH FAMILY OF AUTOMOBILE DEALERS",,,"P.O. BOX 1420",,"SEAFORD","DE","19973",,,,,,,,,,,,,,,,,,"510302019","3026294553","441110","HERTRICH FAMILY OF AUTOMOBILE DEALERS",,"P.O. BOX 1420",,"SEAFORD","DE","19973",,,,,,,"510302019","3026294553",,,,"2011-10-11T15:15:06-0500","FRED HERTRICH",,,,,507,428,0,36,464,0,464,222,8,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011155042P040676699488001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"MOTORCARS GROUP 401(K) PLAN","001","2008-06-05","FAR MORE PROPERTIES INC","MOTORCARS ACURA-VOLVO",,"8305 EAGLE RIDGE DRIVE",,"PAINESVILLE","OH","44077",,,,,,,,,,,,,,,,,,"341136523","4403521600","441110","FAR MORE PROPERTIES INC",,"8305 EAGLE RIDGE DRIVE",,"PAINESVILLE","OH","44077",,,,,,,"341136523","4403521600",,,,"2011-10-11T15:43:32-0500","JONATHAN L. HOYT",,,,,139,112,0,11,123,0,123,90,11,,"2E2F2G2J2K2S3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011113257P030681536704001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEOPLES, INC. MEDICAL BENEFIT PLAN","501","2001-03-01","PEOPLES, INC.",,,"13180 METCALF AVENUE",,"OVERLAND PARK","KS","66213",,,,,,,,,,,,,,,,,,"840728120","9136813030","522110","PEOPLES, INC.",,"13180 METCALF AVENUE",,"OVERLAND PARK","KS","66213",,,,,,,"840728120","9136813030",,,,"2011-10-11T11:24:00-0500","SARA DULICE SMITH",,,,,331,513,0,0,513,,,,,,,"4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011125307P030146674385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RU-LI TEXTILES CORPORATE PROFIT-SHARING PLAN","001","1976-01-01","RU-LI TEXTILES CORPORATION",,,"40-11 OSER AVENUE",,"HAUPPAUGE","NY","11788",,,,,,,,,,,,,,,,,,"112293772","6312734017","424300","RU-LI TEXTILES CORPORATION",,"40-11 OSER AVENUE",,"HAUPPAUGE","NY","11788",,,,,,,"112293772","6312734017",,,,"2011-10-11T12:52:39-0500","DENNIS ROSCHNOTTI","2011-10-11T12:52:39-0500","DENNIS ROSCHNOTTI",,,3,1,0,2,3,0,3,3,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011160619P040150379777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HALLIBURTON ENERGY SERVICES, INC. WELFARE BENEFITS PLAN","526","1993-01-01","HALLIBURTON COMPANY",,,"3000 N. SAM HOUSTON PKWY E.",,"HOUSTON","TX","770323219",,,,,,,,,,,,,,,,,,"752677995","2815753000","211110","HALLIBURTON CO. BENEFITS COMMITTEE",,"2107 CITYWEST BLVD., BLDG. 2","SUITE 2.601A","HOUSTON","TX","770423051",,,,,,,"752677995","2815753000",,,,"2011-10-11T13:17:38-0500","GILBERT CHAVEZ",,,,,25765,27735,1698,1124,30557,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011163011P030146830913001","2010-05-01","2011-04-30","2",,,,,,,,,,,,"FRANK KENT CADILLAC/MOTOR CO EMPLOYEE HEALTH PLAN","501","1993-05-01","FRANK KENT CADILLAC, LTD. FRANK KENT MOTOR CO.",,,"P. O. BOX 121219",,"FORT WORTH","TX","761211219",,,,,,,,,,,,,,,,,,"751235317","8177635000","441110","FRANK KENT CADILLAC, LTD. FRANK KENT MOTOR CO.",,"P. O. BOX 121219",,"FORT WORTH","TX","761211219",,,,,,,"751235317","8177635000",,,,"2011-10-11T16:15:26-0500","WILL CHURCHILL",,,,,516,462,0,0,462,,,,,,,"4A4D4B4F4Q4H4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011114046P030146619169001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"TEAM JD SQUARED, INC. 401K PLAN","001","2009-07-13","TEAM JD SQUARED, INC.",,,"3001 OCEAN DRIVE #108",,"VERO BEACH","FL","32963",,,,,,,,,,,,,,,,,,"270536619","5615963355","445299","TEAM JD SQUARED, INC.",,"3001 OCEAN DRIVE #108",,"VERO BEACH","FL","32963",,,,,,,"270536619","5615963355",,,,"2011-10-11T11:36:50-0500","JULIE DENNING","2011-10-11T11:36:50-0500","JULIE DENNING",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011115041P030146630625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONCRETE INDUSTRIES, INC. AND RELATED COMPANIES RETIREMENT PLAN","001","1976-07-01","B & B CONCRETE CO., INC.",,,"P. O. BOX 407",,"TUPELO","MS","38802",,,,,,,,,,,,,,,,,,"640340868","6628426312","444190","B & B CONCRETE CO., INC.",,"P. O. BOX 407",,"TUPELO","MS","38802",,,,,,,"640340868","6628426312",,,,"2011-10-11T11:50:03-0500","DAVID BREVARD","2011-10-11T11:50:03-0500","DAVID BREVARD",,,167,125,,29,154,,154,130,1,,"2A2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011110501P030021584354001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MALLOYS CASH REGISTER PROFIT SHARING/401(K) PLAN","001","1970-07-01","MALLOYS CASH REGISTER COMPANY",,,"2219 PINE VALLEY",,"HOUSTON","TX","77019",,,,,,,"2219 PINE VALLEY",,"HOUSTON","TX","77019",,,,,,,"741548020","7133207939","453990","MALLOYS CASH REGISTER COMPANY",,"2219 PINE VALLEY",,"HOUSTON","TX","77019",,,,,,,"741548020","7133207939",,,,"2011-10-11T11:04:15-0500","DENNIS MALLOY",,,,,0,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011125309P030146674401001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"FELCO 401(K) PLAN","001","1994-01-01","FRANKLIN EQUITY LEASING COMPANY",,,"3411 SILVERSIDE ROAD","HAGLEY BUILDING, SUITE 100","WILMINGTON","DE","19810",,,,,,,"3411 SILVERSIDE ROAD","HAGLEY BUILDING, SUITE 100","WILMINGTON","DE","19810",,,,,,,"431179083","2128188417","532100","FRANKLIN EQUITY LEASING COMPANY",,"3411 SILVERSIDE ROAD","HAGLEY BUILDING, SUITE 100","WILMINGTON","DE","19810",,,,,,,"431179083","2128188417",,,,"2011-10-11T12:52:44-0500","DONATUS ANWUZIA",,,,,11,2,0,9,11,0,11,9,0,,"2F2G2J2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011121228P040150213217001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RITA SOLANKI, D.D.S., L.L.C. PROFIT SHARING PLAN","001","2002-01-01","RITA SOLANKI, D.D.S., L.L.C.",,,"1024 PARK AVENUE SUITE 1",,"PLAINFIELD","NJ","07060",,,,,,,,,,,,,,,,,,"223786834","9087574303","621210","RITA SOLANKI, D.D.S., L.L.C.",,"1024 PARK AVENUE SUITE 1",,"PLAINFIELD","NJ","07060",,,,,,,"223786834","9087574303",,,,"2011-10-11T08:08:31-0500","RITA SOLANKI, D.D.S.",,,,,1,3,0,0,3,0,3,1,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011154507P030146786433001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"I U ANESTHESIOLOGY ASSOCIATES MONEY PURCHASE PENSION PLAN","001","1989-01-01","I U ANESTHESIOLOGY ASSOCIATES, LLC",,,"1120 S DR FESLER HALL NO 204",,"INDIANAPOLIS","IN","46202",,,,,,,,,,,,,,,,,,"351728855","3172740269","621111","I U ANESTHESIOLOGY ASSOCIATES, LLC",,"1120 S DR FESLER HALL NO 204",,"INDIANAPOLIS","IN","46202",,,,,,,"351728855","3172740269",,,,"2011-10-11T16:31:30-0500","ROBERT G. PRESSON, JR MD",,,,,49,46,0,5,51,0,51,51,,,"2C2G3B3F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011165011P030146842161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INSITEWORKS, P.C. 401(K) PROFIT SHARING PLAN","001","1993-01-01","INSITEWORKS",,,"57 ROCK POINT PLACE NE",,"ALBUQUERQUE","NM","87122",,,,,,,,,,,,,,,,,,"850338049","5059750500","541310","INSITEWORKS",,"57 ROCK POINT PLACE NE",,"ALBUQUERQUE","NM","87122",,,,,,,"850338049","5059750500",,,,"2011-10-11T16:16:56-0500","KNIGHT SEAVEY","2011-10-11T16:16:56-0500","KNIGHT SEAVEY",,,4,2,,2,4,,4,4,0,,"2E3D2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012092741P030684500576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRUMBULL CAMPBELL ASSOCIATES, INC. 401(K) PLAN","001","2007-01-01","TRUMBULL CAMPBELL ASSOCIATES, INC.",,,"39 STATE STREET, UNIT #4",,"NEWBURYPORT","MA","01950",,,,,,,,,,,,,,,,,,"205874044","9782252045","333410","TRUMBULL CAMPBELL ASSOCIATES, INC.",,"39 STATE STREET, UNIT #4",,"NEWBURYPORT","MA","01950",,,,,,,"205874044","9782252045",,,,"2011-10-12T09:26:58-0500","CRAIG CAMPBELL",,,,,10,8,0,1,9,0,9,7,0,,"2E2J2K2F2G3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012092742P040049580055001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DELTA COMPUTEC LLC 401(K) PLAN","001","2005-11-28","DELTA COMPUTEC LLC",,,"140 LITTLETON ROAD","SUITE 210","PARSIPPANY","NJ","07054",,,,,,,"140 LITTLETON ROAD","SUITE 210","PARSIPPANY","NJ","07054",,,,,,,"203758521","2124531034","541519","DELTA COMPUTEC LLC",,"140 LITTLETON ROAD","SUITE 210","PARSIPPANY","NJ","07054",,,,,,,"203758521","2124531034",,,,"2011-10-12T09:26:38-0500","MARYSOL GAVAGHAN",,,,,68,78,0,21,99,0,99,30,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011120007P040150205265003","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"SHABBIR LAKDAWALA MD KEOGH PLAN","003","1983-01-01","SHABBIR LAKDAWALA MD",,,"2912 GLENMORE AVENUE",,"PITTSBURGH","PA","152162070",,,,,,,,,,,,,,,,,,"251405940","4125631132","621111","SHABBIR LAKDAWALA MD",,"2912 GLENMORE AVENUE",,"PITTSBURGH","PA","152162070",,,,,,,"251405940","4125631132",,,,"2011-10-11T11:45:25-0500","SHABBIR LAKDAWALA","2011-10-11T11:46:17-0500","SHABBIR LAKDAWALA MD",,,1,1,0,0,1,0,1,,,,"2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011120251P040676066736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NIETO AG RETIREMENT PLAN AND TRUST","003","2003-01-01","NIETO AG",,,"8454 N THIRD STREET",,"FRESNO","CA","93820",,,,,,,"8454 N THIRD STREET",,"FRESNO","CA","93820",,,,,,,"770466046","5596968785","115110","NIETO AG",,"8454 N THIRD STREET",,"FRESNO","CA","93820",,,,,,,"770466046","5596968785",,,,"2011-10-10T19:42:29-0500","RONALD NIETO",,,,,1,1,0,0,1,,1,,0,,"1A3B3D",,,"1",,,,"1",,,"1",,,,,"1","2",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011110559P040150165617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOLLY BLOOM PRODUCTIONS, INC. PROFIT SHARING PLAN","001","1994-01-01","MOLLY BLOOM PRODUCTIONS, INC.",,"C/O ALAN B. KIMMEL, CPA","16255 VENTURA BLVD STE 509",,"ENCINO","CA","914362310",,,,,,,,,,,,,,,,,,"954460157","8189059075","711510","MOLLY BLOOM PRODUCTIONS, INC.","C/O ALAN B. KIMMEL, CPA","16255 VENTURA BLVD STE 509",,"ENCINO","CA","914362310",,,,,,,"954460157","8189059075",,,,"2011-10-11T11:05:32-0500","ALAN B. KIMMEL",,,,,5,3,0,2,5,0,5,5,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011123012P030146658801001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WEST KNOXVILLE HEART, PC 401(K) PROFIT SHARING PLAN","001","1980-02-01","WEST KNOXVILLE HEART, PC",,,"9314 PARKWEST BLVD., SUITE 300",,"KNOXVILLE","TN","37923",,,,,,,,,,,,,,,,,,"621068633","8656909475","621111","WEST KNOXVILLE HEART, PC",,"9314 PARKWEST BLVD., SUITE 300",,"KNOXVILLE","TN","37923",,,,,,,"621068633","8656909475",,,,"2011-10-11T12:18:50-0500","MICHAEL D. UNDERWOOD, M.D.",,,,,11,8,0,1,9,0,9,9,,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011123012P030146658801005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HIGHLAND PARK MOTORS, INC. EMPLOYEES' PROFIT SHARING AND SAVINGS PLAN","001","1980-01-01","HIGHLAND PARK MOTORS, INC.",,,"550 SKOKIE VALLEY ROAD",,"HIGHLAND PARK","IL","60035",,,,,,,,,,,,,,,,,,"362727015","8478314200","441110","HIGHLAND PARK MOTORS, INC.",,"550 SKOKIE VALLEY ROAD",,"HIGHLAND PARK","IL","60035",,,,,,,"362727015","8478314200",,,,"2011-10-11T13:22:41-0500","MICHAEL MULLER",,,,,254,141,0,115,256,0,256,235,6,,"2E2F2G2J2T3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011154820P030682309024001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GASTROENTEROLOGY & ONCOLOGY ASSOCIATES, P.A. PROFIT SHARING PLAN","003","1984-08-01","GASTROENTEROLOGY AND ONCOLOGY ASSOCIATES, P.A.",,,"5767 49TH STREET NORTH",,"ST. PETERSBURG","FL","337092107",,,,,,,,,,,,,,,,,,"592114530","7275220558","621111","GASTROENTEROLOGY AND ONCOLOGY ASSOCIATES, P.A.",,"5767 49TH STREET NORTH",,"ST. PETERSBURG","FL","337092107",,,,,,,"592114530","7275220558",,,,"2011-10-11T04:48:19-0500","JAYAPRAKASH K. KAMATH",,,,,36,23,,7,30,0,30,30,0,,"2A2E2F2G2R2T",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011154209P030146783937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE SANGAMON COMPANY PENSION PLAN","001","1948-04-01","THE SANGAMON COMPANY",,"ATTN THOMAS WESTRICK","P.O. BOX 378",,"TAYLORVILLE","IL","62568",,,,,,,,,,,,,,,,,,"370500050","2178242261","531190","THOMAS WESTRICK","THE SANGAMON COMPANY","P.O. BOX 378",,"TAYLORVILLE","IL","62568",,,,,,,"621656911","2178242261",,,,"2011-10-11T15:13:37-0500","THOMAS WESTRICK","2011-10-11T15:13:37-0500","THOMAS WESTRICK",,,303,0,129,153,282,16,298,,0,,"1A1G1I",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011162213P030146823265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FISCHBEIN LLC 401(K) PLAN","020","2005-01-01","FISCHBEIN LLC",,,"151 WALKER ROAD",,"STATESVILLE","NC","28625",,,,,,,,,,,,,,,,,,"870752826","7048384608","333900","FISCHBEIN LLC",,"151 WALKER ROAD",,"STATESVILLE","NC","28625",,,,,,,"870752826","7048384608",,,,"2011-10-11T16:15:10-0500","MARTHA HEARN","2011-10-11T16:15:10-0500","MARTHA HEARN",,,166,126,0,29,155,0,155,140,2,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012103520P040049609335001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","1","0","0","0",,"CBS WELFARE PLAN FOR THE NON-GOVERNMENTAL PERCENTAGE OF CERTAIN FORMER GESCO EMPLOYEES WHO RETIRE FROM WGES","546","1999-04-01","CBS CORPORATION",,"RETIREMENT COMMITTEE","51 W. 52 STREET",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"042949533","2129754665","515100","CBS CORPORATION RETIREMENT COMMITTEE",,"51 WEST 52 STREET",,"NEW YORK","NY","10019",,,,,,,"042949533","2129755220",,,,"2011-10-12T10:34:36-0500","STEPHEN D. MIRANTE, RETIREMENT CTE",,,,,580,,580,,580,,,,,,,"4A4B4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011110915P030146597073001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"THE KEFFER COMPANY RETIREMENT SAVINGS PLAN","004","1988-09-01","THE KEFFER COMPANY",,,"8200 E INDEPENDENCE BLVD",,"CHARLOTTE","NC","282277777",,,,,,,,,,,,,,,,,,"561325811","7045635966","441110","THE KEFFER COMPANY",,"8200 E INDEPENDENCE BLVD",,"CHARLOTTE","NC","282277777",,,,,,,"561325811","7045635966",,,,"2011-10-11T11:09:11-0500","BRENDA JOHNSON","2011-10-11T11:09:11-0500","BRENDA JOHNSON",,,748,611,0,67,678,0,678,404,290,,"2E2F2G2J2K2S2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011123728P030146664641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C.M. HOLTZINGER FRUIT CO., LLC 401(K) PROFIT SHARING PLAN & TRUST","002","1982-11-01","C.M. HOLTZINGER FRUIT CO. LLC",,,"1312 NORTH 6TH AVENUE","PO BOX 169","YAKIMA","WA","98907",,,,,,,,,,,,,,,,,,"201344003","5094577847","424500","C.M. HOLTZINGER FRUIT CO. LLC",,"1312 NORTH 6TH AVENUE","PO BOX 169","YAKIMA","WA","98907",,,,,,,"201344003","5094577847",,,,"2011-10-11T12:34:54-0500","ANNA MONTELONGO",,,,,104,111,1,7,119,0,119,40,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011123744P030146664929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EXPRESS PERSONNEL SERVICES 401(K) RETIREMENT SAVINGS PLAN","003","1996-07-01","EXPRESS SERVICES, INC.",,,"8516 N.W. EXPRESSWAY",,"OKLAHOMA CITY","OK","73162",,,,,,,,,,,,,,,,,,"840909680","4058405000","541990","EXPRESS SERVICES, INC.",,"8516 N.W. EXPRESSWAY",,"OKLAHOMA CITY","OK","73162",,,,,,,"840909680","4058405000",,,,"2011-10-11T12:31:23-0500","SAM FOX",,,,,40207,59946,0,20,59966,0,59966,55,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011161852P040676782416001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BRAXTON ENGINEERING, P.C. 401 (K) PROFIT SHARING PLAN & TRUST","001","1999-01-01","BRAXTON ENGINEERING, P.C.",,,"149 WEST 12TH STREET",,"NEW YORK","NY","10011",,,,,,,,,,,,,,,,,,"133120884","2126452600","541330","BRAXTON ENGINEERING, P.C.",,"149 WEST 12TH STREET",,"NEW YORK","NY","10011",,,,,,,"133120884","2126452600",,,,"2011-10-11T08:33:34-0500","MICHELLE J. DORIN",,,,,2,3,0,0,3,0,3,,,,"2J2E2Q2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011153431P030004363619001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLERMONT SENIOR SERVICES RETIREMENT PLAN","001","1996-01-01","CLERMONT SENIOR SERVICES, INC",,,"2085 JAMES E. SAULS SR. DRIVE",,"BATAVIA","OH","45103",,,,,,,,,,,,,,,,,,"310832354","5135364009","812990","CLERMONT SENIOR SERVICES, INC",,"2085 JAMES E. SAULS SR. DRIVE",,"BATAVIA","OH","45103",,,,,,,"310832354","5135364009",,,,"2011-10-11T15:06:32-0500","GEORGE R. BROWN","2011-10-11T15:06:32-0500","GEORGE R. BROWN",,,130,103,0,6,109,0,109,109,0,,"2C2F2G2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011165146P040150414081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAW OFFICES OF RONALD M. PAPELL, A PROFESSIONAL CORPORATION 401(K) PROFIT SHARING PLAN","004","2007-01-01","LAW OFFICES OF RONALD M. PAPELL, A PROFESSIONAL CORPORATION",,,"11111 SANTA MONICA BLVD.","SUITE 1000","LOS ANGELES","CA","90025",,,,,,,,,,,,,,,,,,"954247951","3104774775","541110","LAW OFFICES OF RONALD M. PAPELL, A PROFESSIONAL CORPORATION",,"11111 SANTA MONICA BLVD.","SUITE 1000","LOS ANGELES","CA","90025",,,,,,,"954247951","3104774775",,,,"2011-10-11T16:51:03-0500","RONALD PAPELL",,,,,3,2,0,0,2,0,2,2,0,,"2A2D2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111012103556P040150931329001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"FREEMAN WEBB COMPANY, REALTORS 401(K) SALARY REDUCTION PLAN","001","1995-02-01","FREEMAN WEBB COMPANY, REALTORS",,,"3810 BEDFORD AVE.","SUITE 300","NASHVILLE","TN","37215",,,,,,,"3810 BEDFORD AVE.","SUITE 300","NASHVILLE","TN","37215",,,,,,,"621060236","6152712709","531310","FREEMAN WEBB COMPANY, REALTORS",,"3810 BEDFORD AVE.","SUITE 300","NASHVILLE","TN","37215",,,,,,,"621060236","6152712709",,,,"2011-10-12T10:22:35-0500","PAULETTE WASSEL","2011-10-12T10:30:55-0500","JAMES WEBB",,,279,264,0,8,272,0,272,136,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011120052P030146637313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DENTSPLY INTERNATIONAL, INC. ASSOCIATES BENEFIT PLAN","566","2003-01-01","DENTSPLY INTERNATIONAL, INC.",,,"221 W PHILADELPHIA STREET",,"YORK","PA","174012991",,,,,,,,,,,,,,,,,,"391434669","7178457511","339900","DENTSPLY INTERNATIONAL, INC.",,"221 W PHILADELPHIA STREET",,"YORK","PA","174012991",,,,,,,"391434669","7178457511",,,,"2011-10-11T12:00:17-0500","WILLIAM REARDON",,,,,3762,3115,341,59,3515,,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011110931P030146597185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNIVERSALPEGASUS INTERNATIONAL, INC. RETIREMENT PLAN","001","1994-10-01","UNIVERSALPEGASUS INTERNATIONAL, INC",,,"4848 LOOP CENTRAL, SUITE 137",,"HOUSTON","TX","77081",,,,,,,,,,,,,,,,,,"261809795","7133546384","541370","UNIVERSALPEGASUS INTERNATIONAL, INC",,"4848 LOOP CENTRAL, SUITE 137",,"HOUSTON","TX","77081",,,,,,,"261809795","7133546384",,,,"2011-10-11T10:57:10-0500","WENDY L. DONAHUE","2011-10-11T10:57:10-0500","WENDY L. DONAHUE",,,2051,1334,0,462,1796,1,1797,1262,202,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011121707P030146650033001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FIRST STATE BANK SAVINGS INCENTIVE PLAN","001","1990-01-01","FIRST STATE BANK OF FAIRFAX",,,"301 N. MAIN","P.O. BOX 427","FAIRFAX","OK","74637",,,,,,,,,,,,,,,,,,"730242080","9186423221","522110","FIRST STATE BANK OF FAIRFAX",,"301 N. MAIN","P.O. BOX 427","FAIRFAX","OK","74637",,,,,,,"730242080","9186423221",,,,"2011-10-11T13:16:44-0500","MAX ELSBERRY",,,,,25,22,0,2,24,0,24,20,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011113032P030146611025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHRISTIAN SCHOOLS, INC. DBA GOODPASTURE CHRISTIAN SCHOOL 401(K) PLAN","001","1974-10-01","CHRISTIAN SCHOOLS, INC. DBA GOODPASTURE CHRISTIAN SCHOOL",,,"619 DUE WEST AVENUE",,"MADISON","TN","37115",,,,,,,,,,,,,,,,,,"620725510","6158682600","611000","CHRISTIAN SCHOOLS, INC. DBA GOODPASTURE CHRISTIAN SCHOOL",,"619 DUE WEST AVENUE",,"MADISON","TN","37115",,,,,,,"620725510","6158682600",,,,"2011-10-11T11:21:01-0500","VICKI CULBREATH",,,,,145,110,9,26,145,0,145,136,8,,"2E2F2G2J2K2S3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011113046P040150183985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE WESTERVELT COMPANY RETIREMENT PLAN","002","1957-01-01","THE WESTERVELT COMPANY",,,"1400 JACK WARNER PKWY NE",,"TUSCALOOSA","AK","35404",,,,,,,"1400 JACK WARNER PKWY NE",,"TUSCALOOSA","AK","35404",,,,,,,"631158654","2055625000","322100","THE WESTERVELT COMPANY",,"1400 JACK WARNER PKWY NE",,"TUSCALOOSA","AK","35404",,,,,,,"631158654","2055625000",,,,"2011-10-10T17:16:47-0500","MARC HAMILTON",,,,,2603,212,1108,1049,2369,180,2549,0,0,,"1A1G1I",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011113435P030021589442001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CENTRAL UTAH RADIOLOGY PROFIT SHARING PLAN","002","1993-01-01","CENTRAL UTAH RADIOLOGY, PC",,,"PO BOX 21120",,"AXTELL","UT","84621",,,,,,,,,,,,,,,,,,"870517201","8015287246","621111","CENTRAL UTAH RADIOLOGY, PC",,"PO BOX 21120",,"AXTELL","UT","84621",,,,,,,"870517201","8015287246",,,,"2011-10-11T12:34:31-0500","BEVAN BASTIAN",,,,,2,2,,,2,,2,2,,,"2E2F2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011122257P030021596258001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"O'CHARLEY'S INC. 401(K) PLAN","001","1992-01-01","O'CHARLEY'S INC.",,,"3038 SIDCO DRIVE",,"NASHVILLE","TN","37204",,,,,,,,,,,,,,,,,,"621192475","6152568500","722110","O'CHARLEY'S INC.",,"3038 SIDCO DRIVE",,"NASHVILLE","TN","37204",,,,,,,"621192475","6152568500",,,,"2011-10-11T12:22:23-0500","ROBERT J WILLIAMS","2011-10-11T12:22:23-0500","ROBERT J WILLIAMS",,,14815,14834,0,342,15176,0,15176,2251,93,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011124327P030146668241001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"C.A.P.E. 401K EMPLOYEE SAVINGS PLAN","001","1998-07-15","COMMUNITY ACTION PROGRAM OF EVANSVILLE & VANDERBURGH CTY INC.",,,"27 PASCO AVENUE",,"EVANSVILLE","IN","47713",,,,,,,,,,,,,,,,,,"351176665","8124254241","624100","COMMUNITY ACTION PROGRAM OF EVANSVILLE & VANDERBURGH CTY INC.",,"27 PASCO AVENUE",,"EVANSVILLE","IN","47713",,,,,,,"351176665","8124254241",,,,"2011-10-11T12:42:16-0500","ALICE WEATHERS","2011-10-11T12:42:16-0500","ALICE WEATHERS",,,266,218,0,38,256,0,256,255,29,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011121450P030146648401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE TIMBERLAND RETIREMENT EARNINGS 401(K) PLAN","001","1991-02-01","THE TIMBERLAND COMPANY",,,"200 DOMAIN DRIVE",,"STRATHAM","NH","03885",,,,,,,,,,,,,,,,,,"020312554","6037729500","315220","THE TIMBERLAND COMPANY",,"200 DOMAIN DRIVE",,"STRATHAM","NH","03885",,,,,,,"020312554","6037729500",,,,"2011-10-11T12:14:07-0500","ANDREW PFEIFER",,,,,1435,1042,0,321,1363,1,1364,1309,46,,"2E2F2G2J2K2R2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011151800P030146763649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEW ORANGE HILLS, INC. 401K PLAN","001","2002-06-01","NEW ORANGE HILLS, INC.",,,"5017 EAST CHAPMAN AVENUE",,"ORANGE","CA","92869",,,,,,,,,,,,,,,,,,"721522835","7149977090","623000","NEW ORANGE HILLS, INC.",,"5017 EAST CHAPMAN AVENUE",,"ORANGE","CA","92869",,,,,,,"721522835","7149977090",,,,"2011-10-11T14:50:49-0500","RICHARD SARZYNSKI",,,,,314,290,0,17,307,0,307,40,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011151809P030146763681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIDATLANTIC CARDIOVASCULAR ASSOC., P.A. LIFE & AD&D INSURANCE PLAN","502","1996-01-01","MIDATLANTIC CARDIOVASCULAR ASSOC., P.A.",,,"1838 GREENE TREE ROAD, SUITE 350",,"BALTIMORE","MD","21208",,,,,,,,,,,,,,,,,,"521881206","4104849520","621111","MIDATLANTIC CARDIOVASCULAR ASSOC., P.A.",,"1838 GREENE TREE ROAD, SUITE 350",,"BALTIMORE","MD","21208",,,,,,,"521881206","4104849520",,,,"2011-10-11T14:51:06-0500","RUSS STROUGH",,,,,295,237,0,0,237,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011155256P030004364275005","2011-01-01","2011-03-31","2",,,,"1","1",,,,,,,"KARCO, INC. 401(K) PLAN","001","2000-01-01","KARCO, INC.",,,"1405 SALEM ROAD",,"MT. VERNON","IL","62864",,,,,,,"1405 SALEM ROAD",,"MT. VERNON","IL","62864",,,,,,,"371112832","6182427867","447100","KARCO, INC.",,"1405 SALEM ROAD",,"MT. VERNON","IL","62864",,,,,,,"371112832","6182427867",,,,"2011-10-07T05:40:55-0500","RONALD J KRUEP",,,,,83,0,,0,0,,0,0,0,,"2E2F2G2J2K3D3H",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011155302P030146794833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BATON ROUGE CARDIOLOGY CENTER, LLC PROFIT SHARING PLAN","005","1989-01-01","BATON ROUGE CARDIOLOGY CENTER, LLC",,,"5231 BRITTANY DRIVE",,"BATON ROUGE","LA","70808",,,,,,,,,,,,,,,,,,"710916908","2257690933","621111","BATON ROUGE CARDIOLOGY CENTER, LLC",,"5231 BRITTANY DRIVE",,"BATON ROUGE","LA","70808",,,,,,,"710916908","2257690933",,,,"2011-10-11T15:51:39-0500","CHERYL OPPERMAN",,,,,123,96,0,21,117,0,117,106,13,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011161139P030146810225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WH COMPANIES, INC. AND SUBSIDIARIES AND AFFILIATED","003","1993-01-01","WH COMPANIES, INC.",,,"10805 BUSINESS HIGHWAY 51 SOUTH",,"ROTHCHILD","WI","54474",,,,,,,,,,,,,,,,,,"390752646","7153597272","339900","WH COMPANIES, INC.",,"10805 BUSINESS HIGHWAY 51 SOUTH",,"ROTHCHILD","WI","54474",,,,,,,"390752646","7153597272",,,,"2011-10-11T15:50:32-0500","JUDY PINGEL","2011-10-11T15:50:32-0500","JULIE MELLINGER",,,317,144,4,100,248,0,248,238,11,,"2E2J2F2G2K3D3H2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012095458P040150900449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRST FINANCIAL CREDIT UNION 401(K) PLAN AND TRUST","002","1999-01-01","FIRST FINANCIAL CREDIT UNION",,,"1600 WEST CAMERON AVENUE",,"WEST COVINA","CA","91790",,,,,,,,,,,,,,,,,,"952653867","6269393184","522130","FIRST FINANCIAL CREDIT UNION",,"1600 WEST CAMERON AVENUE",,"WEST COVINA","CA","91790",,,,,,,"952653867","6269393184",,,,"2011-10-12T09:54:22-0500","VALERIE WILKINS",,,,,189,131,0,39,170,0,170,132,13,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011114312P030146622817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRESTIGE SERVICES, INC. PROFIT SHARING AND SAVINGS PLAN","001","1996-04-26","PRESTIGE SERVICES, INC.",,,"743 PIERCE RD",,"CLIFTON PARK","NY","12065",,,,,,,,,,,,,,,,,,"141788480","5188777426","722300","PRESTIGE SERVICES, INC.",,"743 PIERCE RD",,"CLIFTON PARK","NY","12065",,,,,,,"141788480","5188777426",,,,"2011-10-11T11:39:42-0500","PAUL GARRISON","2011-10-11T11:41:53-0500","MICHAEL JANCZAK",,,153,206,0,0,206,0,206,70,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011114356P040022486834001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE BURKE GROUP WELFARE PLAN TRUST","501","1996-05-01","THE BURKE GROUP",,,"9575 W. HIGGINS ROAD, SUITE 9575",,"ROSEMONT","IL","60018",,,,,,,,,,,,,,,,,,"363747083","8478230500","541330","THE BURKE GROUP",,"9575 W. HIGGINS ROAD, SUITE 9575",,"ROSEMONT","IL","60018",,,,,,,"363747083","8478230500",,,,"2011-10-11T11:43:32-0500","CAROLE BUDYAK",,,,,306,277,,,277,,,,,,,"4A4B","1","0","1","0","1","0","1","0","0","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011113458P030021589602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COGENCE GROUP PC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","COGENCE GROUP PC",,,"733 SW 2ND AVE., STE 215",,"PORTLAND","OR","97204",,,,,,,,,,,,,,,,,,"205643353","5034677900","541190","COGENCE GROUP PC",,"733 SW 2ND AVE., STE 215",,"PORTLAND","OR","97204",,,,,,,"205643353","5034677900",,,,"2011-10-11T11:34:56-0500","COGENCE GROUP PC",,,,,7,5,0,3,8,0,8,8,0,,"2A2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011115157P030146631761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE DOMINION GOLF GROUP 401K RETIREMENT PLAN","001","2008-01-01","THE DOMINION GOLF GROUP",,,"ONE DOMINION DRIVE",,"SAN ANTONIO","TX","78257",,,,,,,,,,,,,,,,,,"204373834","2106984867","713900","THE DOMINION GOLF GROUP",,"ONE DOMINION DRIVE",,"SAN ANTONIO","TX","78257",,,,,,,"204373834","2106984867",,,,"2011-10-11T11:51:07-0500","KATHY JAFARIAN","2011-10-11T11:51:07-0500","KATHY JAFARIAN",,,240,221,0,20,241,0,241,100,16,,"2E2F2G2J2K2S2T3D3H",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011115203P040150199905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEW BRUNSWICK SCIENTIFIC CO., INC. WELFARE BENEFIT PLAN","503","1996-12-01","NEW BRUNSWICK SCIENTIFIC CO., INC.",,,"44 TALMADGE ROAD",,"EDISON","NJ","088184005",,,,,,,,,,,,,,,,,,"221630072","7322871200","339900","NEW BRUNSWICK SCIENTIFIC CO., INC.",,"44 TALMADGE ROAD",,"EDISON","NJ","088184005",,,,,,,"221630072","7322871200",,,,"2011-10-11T11:32:26-0500","KIM TUPY",,,,,219,209,8,0,217,,,,,,,"4A4B4D4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011153238P030021621074001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLERMONT SENIOR SERVICES INC 403B RETIREMENT PLAN","002","2008-07-01","CLERMONT SENIOR SERVICES, INC",,,"2085 JAMES E. SAULS SR. DRIVE",,"BATAVIA","OH","45103",,,,,,,,,,,,,,,,,,"310832354","5135364009","812990","CLERMONT SENIOR SERVICES, INC",,"2085 JAMES E. SAULS SR. DRIVE",,"BATAVIA","OH","45103",,,,,,,"310832354","5135364009",,,,"2011-10-11T15:04:37-0500","GEORGE R. BROWN","2011-10-11T15:04:37-0500","GEORGE R. BROWN",,,130,106,0,3,109,0,109,96,0,,"2F2G2L2T2D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011160417P040022516690009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FRED SUESS MD PROFIT SHARING PLAN AND TRUST","003","1984-01-01","FRED SUESS MD",,,"157 COMMONWEALTH",,"SAN FRANCISCO","CA","94118",,,,,,,,,,,,,,,,,,"942678005","4155671791","621111","FRED SUESS MD",,"157 COMMONWEALTH",,"SAN FRANCISCO","CA","94118",,,,,,,"942678005","4155671791",,,,"2011-10-10T21:29:19-0500","FRED SUESS MD",,,,,5,4,1,,5,,5,5,,,"3B2R2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011105708P030146587617001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"UNITED INDEPENDENT UNION WELFARE FUND","501","1962-10-01","UNITED INDEPENDENT UNION WELFARE FUND",,,"1166 S 11TH STREET",,"PHILADELPHIA","PA","19147",,,,,,,,,,,,,,,,,,"231746532","2153363300","485990","BENEFIT PROCESSING INC",,"20 BRACE ROAD",,"CHERRY HILL","NJ","080342635",,,,,,,"232204388","8566162090",,,,"2011-10-11T10:50:25-0500","RONALD FERGUSON","2011-10-11T10:50:25-0500","GUY GIORDANO",,,388,390,3,0,393,,,,,,,"4A4B4D4F4G","0","0","1","0","1","0","1","0","0","0","0","1","0","1","4","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011154721P030146789537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHILADELPHIA STOCK EXCHANGE, INC. EMPLOYEES PENSION PLAN","001","1963-01-01","NASDAQ OMX PHLX, INC.",,,"1900 MARKET STREET",,"PHILADELPHIA","PA","19103",,,,,,,,,,,,,,,,,,"230973670","2124018726","523140","THE NASDAQ OMX GROUP, INC.",,"805 KING FARM BLVD",,"ROCKVILLE","MD","20850",,,,,,,"230973670","2124018726",,,,"2011-10-11T15:17:38-0500","RON HASSEN",,,,,581,98,116,347,561,13,574,,1,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011164039P040676839712005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RHO, INC. WELFARE BENEFIT PLAN","501","2004-03-01","RHO, INC.",,,"6330 QUADRANGLE DRIVE, SUITE 500",,"CHAPEL HILL","NC","27517",,,,,,,"6330 QUADRANGLE DRIVE, SUITE 500",,"CHAPEL HILL","NC","27517",,,,,,,"561442655","9194088000","541600","RHO, INC.","ASILA CALHOUN, HUMAN RESOURCE MGR","6330 QUADRANGLE DRIVE, SUITE 500",,"CHAPEL HILL","NC","27517",,,,,,,"561442655","9194088000",,,,"2011-10-11T10:55:23-0500","RUSSELL W HELMS","2011-10-11T10:55:23-0500","RUSSELL W HELMS",,,317,328,,,328,,,,,,,"4A4B4D4E4F4H4L","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012093006P030147259761001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"MERGE HEALTHCARE INCORPORATED 401K RETIREMENT PLAN","001","1992-09-01","MERGE TECHNOLOGIES INCORPORATED",,,"6737 W WASHINGTON ST STE 2250",,"MILWAUKEE","WI","532145650",,,,,,,,,,,,,,,,,,"391600938","4149774000","541512","MERGE TECHNOLOGIES INCORPORATED",,"6737 W WASHINGTON ST STE 2250",,"MILWAUKEE","WI","532145650",,,,,,,"391600938","4149774000","MERGE TECHNOLOGIES INCORPORATED",,,"2011-10-12T09:29:56-0500","TODD SCOTT","2011-10-12T09:29:56-0500","TODD SCOTT",,,592,587,0,119,706,0,706,291,40,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012105007P030684741136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLETTE PHILLIPS COMMUNICATIONS, INC. 401K PLAN","001","1998-01-01","COLETTE PHILLIPS COMMUNICATIONS, INC.",,,"ONE MCKINLEY SQUARE","6TH FLOOR","BOSTON","MA","02109",,,,,,,,,,,,,,,,,,"042925694","6173575777","541990","COLETTE PHILLIPS COMMUNICATIONS, INC.",,"ONE MCKINLEY SQUARE","6TH FLOOR","BOSTON","MA","02109",,,,,,,"042925694","6173575777",,,,"2011-10-12T10:43:15-0500","COLETTE PHILLIPS",,,,,4,2,0,0,2,0,2,2,0,,"2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011160025P030146801217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BREMEN-BOWDON INVESTMENT COMPANY RETIREMENT PLAN","002","2004-01-01","BREMEN-BOWDON INVESTMENT COMPANY",,,"141 COMMERCE ST",,"BOWDON","GA","30108",,,,,,,,,,,,,,,,,,"580533925","7702583315","315290","BREMEN-BOWDON INVESTMENT COMPANY",,"141 COMMERCE ST",,"BOWDON","GA","30108",,,,,,,"580533925","7702583315",,,,"2011-10-11T15:28:23-0500","DEBORAH BRADY",,,,,882,581,3,392,976,0,976,846,93,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011153938P040676671904001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEONARDO A. ARELLANO, D.D.S., P.C. PROFIT SHARING 401K PLAN","080","1988-01-01","LEONARDO A. ARELLANO, D.D.S.",,,"3030 GEARY BLVD",,"SAN FRANCISCO","CA","941183315",,,,,,,,,,,,,,,,,,"942953143","4157528311","621210","LEONARDO A. ARELLANO, D.D.S.",,"3030 GEARY BLVD",,"SAN FRANCISCO","CA","941183315",,,,,,,"942953143","4157528311",,,,"2011-10-11T15:37:14-0500","LEONARDO A. ARELLANO, D.D.S.",,,,,8,5,0,2,7,0,7,7,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011113536P030146614529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WELFARE BENEFIT PLAN FOR EMPLOYEES OF BCD TRAVEL USA LLC","501","1993-04-01","BCD TRAVEL USA LLC",,,"SIX CONCOURSE PARKWAY, SUITE 2400",,"ATLANTA","GA","30328",,,,,,,,,,,,,,,,,,"582308827","6784411262","485990","BCD TRAVEL USA LLC",,"SIX CONCOURSE PARKWAY, SUITE 2400",,"ATLANTA","GA","30328",,,,,,,"582308827","6784411262",,,,"2011-10-11T11:29:26-0500","GRETCHEN G SHRADER",,,,,3298,3355,62,0,3417,,,,,,,"4A4B4D4E4F4G4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011122525P040150220001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WINKING LIZARD TAVERN, INC. 401K PROFIT SHARING PLAN","001","1996-01-01","WINKING LIZARD TAVERN, INC.",,,"25380 MILES ROAD",,"BEDFORD HEIGHTS","OH","441461322",,,,,,,,,,,,,,,,,,"341675347","2168210505","722110","WINKING LIZARD TAVERN, INC.",,"25380 MILES ROAD",,"BEDFORD HEIGHTS","OH","441461322",,,,,,,"341675347","2168210505",,,,"2011-10-11T12:06:24-0500","JAMES CALLAM","2011-10-11T12:23:42-0500","JOHN LANE",,,717,559,0,188,747,0,747,625,74,,"2A2E2F2G2J2K2S2T3D",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011151544P040022510978001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"GOODYEAR DUNLOP TIRES NORTH AMERICA, LTD RETIREMENT SAVINGS PLANS TRUST LARGE CAP VALUE FUND","003",,"GOODYEAR DUNLOP TIRES NORTH AMERICA LTD",,,"PO BOX 1109",,"BUFFALO","NY","142401109",,,,,,,,,,,,,,,,,,"367392856","7168798200",,"GOODYEAR DUNLOP TIRES NORTH AMERICA LTD",,"PO BOX 1109",,"BUFFALO","NY","142401109",,,,,,,"367392856","7168798200",,,,,,,,"2011-10-11T15:14:10-0500","MARY L KASPRZAK, ASST TREASURER",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011151846P030021618130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOUNTAINONE FINANCIAL PARTNERS, INC 401(K) PLAN","002","1993-01-01","MOUNTAINONE FINANCIAL PARTNERS, INC",,,"93 MAIN STREET",,"NORTH ADAMS","MA","01247",,,,,,,,,,,,,,,,,,"043413060","4136635353","522120","MOUNTAINONE FINANCIAL PARTNERS, INC",,"93 MAIN STREET",,"NORTH ADAMS","MA","01247",,,,,,,"043413060","4136635353",,,,"2011-10-11T14:51:45-0500","EVA SHERIDAN",,,,,235,192,0,44,236,0,236,217,1,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011160337P030048629975001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAX INVESTMENTS, INC. 401(K) PLAN","001","2008-02-01","DAX INVESTMENTS, INC.",,,"74 HORSESHOE DR",,"JOPLIN","MO","64804",,,,,,,,,,,,,,,,,,"208351784","4176234661","441221","DAX INVESTMENTS, INC.",,"74 HORSESHOE DR",,"JOPLIN","MO","64804",,,,,,,"208351784","4176234661",,,,"2011-10-11T15:32:27-0500","GARRETT PAULL","2011-10-11T15:32:27-0500","GARRETT PAULL",,,14,8,0,0,8,0,8,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011155311P030146794961001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HERSCHEND FAMILY ENTERTAINMENT CORPORATION PROFIT SHARING AND 401(K) PLAN","001","1966-10-31","HERSCHEND FAMILY ENTERTAINMENT CORPORATION",,,"2800 W 76 COUNTRY BLVD",,"BRANSON","MO","65616",,,,,,,,,,,,,,,,,,"440663043","4173367084","713100","HERSCHEND FAMILY ENTERTAINMENT CORPORATION",,"2800 W 76 COUNTRY BLVD",,"BRANSON","MO","65616",,,,,,,"440663043","4173367084",,,,"2011-10-11T04:52:48-0500","DIANE BITTLE","2011-10-10T04:41:58-0500","RHONDA YOUNGBLOOD",,,3415,2841,8,299,3148,23,3171,3151,27,,"2E2F2G2J2K2R3H2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","4","1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011155344P030146795505001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SEPARATE ACCOUNT A","005",,"STANDARD INSURANCE COMPANY",,,"1100 SW SIXTH AVENUE",,"PORTLAND","OR","972041093",,,,,,,,,,,,,,,,,,"930242990","5033217000",,"STANDARD INSURANCE COMPANY",,"1100 SW SIXTH AVENUE",,"PORTLAND","OR","972041093",,,,,,,"930242990","5033217000",,,,,,,,"2011-10-11T15:22:42-0500","HARLEY SPRING",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111012105029P040679063792001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"ARENA BRANDS, INC. SURVIVOR BENEFIT PROGRAM","505","1994-01-01","ARENA BRANDS, INC.",,,"40 WALTER JONES BLVD",,"EL PASO","TX","79906",,,,,,,,,,,,,,,,,,"541289243","9157783066","315990","ARENA BRANDS, INC.",,"40 WALTER JONES BLVD",,"EL PASO","TX","79906",,,,,,,"541289243","9157783066",,,,"2011-10-12T10:49:20-0500","TOM HOUGH","2011-10-12T10:49:20-0500","TOM HOUGH",,,1134,0,,,0,,,,,,,"4B4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011114807P030146628977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GROUP TOTAL DISABILITY BENEFITS LIFE AND AD & D INSURANCE PLANS OF BALDWIN WALLACE COLLEGE","503","1967-05-01","BALDWIN WALLACE COLLEGE",,"HUMAN RESOURCES","BALDWIN WALLACE COLLEGE","275 EASTLAND ROAD","BEREA","OH","44017",,,,,,,"BALDWIN WALLACE COLLEGE","275 EASTLAND ROAD","BEREA","OH","44017",,,,,,,"340714629","4408262220","611000","WILLIAM RENIFF","BALDWIN WALLACE COLLEGE","BALDWIN WALLACE COLLEGE","275 EASTLAND ROAD","BEREA","OH","44017",,,,,,,"340235640","4408262220",,,,"2011-10-11T11:39:16-0500","WILLIAM RENIFF",,,,,625,549,,,549,,549,,,,,"4B4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011144925P040150326913001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"INEOS NOVA PENSION PLAN","001","1988-01-01","INEOS NOVA, LLC",,,"2600 SOUTH SHORE BLVD SUITE 500",,"LEAGUE CITY","TX","775732944",,,,,,,,,,,,,,,,,,"260768059","2815354229","325900","INEOS NOVA, LLC",,"2600 SOUTH SHORE BLVD SUITE 500",,"LEAGUE CITY","TX","775732944",,,,,,,"260768059","2815354229",,,,"2011-10-11T14:49:13-0500","PETER TRAIN","2011-10-11T14:49:13-0500","PETER TRAIN",,,246,190,4,50,244,0,244,0,0,,"1A1G",,"1",,"1",,"1",,"1",,"1",,"1","1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012073309P040150808945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRANSOCEAN GROUP WELFARE BENEFITS PLAN","501","2009-01-01","TRANSOCEAN INC.",,,,,,,,"70 HARBOUR DRIVE 4TH FLOOR",,"GEORGE TOWN","GRAND CAYMAN","CJ","KY1-1003 CJ",,,,,,"70 HARBOUR DRIVE 4TH FLOOR",,"GEORGE TOWN","GRAND CAYMAN","CJ","KY1-1003 CJ","660582307","7132327500","211110","TRANSOCEAN INC.",,,,,,,"70 HARBOUR DRIVE 4TH FLOOR",,"GEORGE TOWN","GRAND CAYMAN","CJ","KY1-1003 CJ","660582307","7132327500",,,,"2011-10-11T14:23:50-0500","PAULA SHELTON","2011-10-11T20:15:06-0500","AMY SMITH",,,7803,6415,765,,7180,1,7181,,0,,,"4A4D4E4B4L4H4Q4I",,,,"1",,,,"1",,,,,,"1","8","1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011170503P030146850257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MULTI PACKAGING SOLUTIONS RETIREMENT PLAN","003","1993-07-01","MULTI PACKAGING SOLUTIONS",,,"5800 WEST GRAND RIVER AVE",,"LANSING","MI","489069111",,,,,,,,,,,,,,,,,,"202019820","5173239000","323100","MULTI PACKAGING SOLUTIONS",,"5800 WEST GRAND RIVER AVE",,"LANSING","MI","489069111",,,,,,,"202019820","5173239000",,,,"2011-10-11T15:51:27-0500","EDWARD GASPER","2011-10-11T15:51:27-0500","EDWARD GASPER",,,2119,1865,0,230,2095,0,2095,1588,21,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011170529P030146850449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRST NATIONAL BANK OF THE ROCKIES 401K PLAN","001","1994-01-01","FIRST NATIONAL BANK OF THE ROCKIES",,,"2452 HIGHWAY 6 50",,"GRAND JUNCTION","CO","81505",,,,,,,,,,,,,,,,,,"840264235","9702422255","522110","FIRST NATIONAL BANK OF THE ROCKIES",,"2452 HIGHWAY 6 50",,"GRAND JUNCTION","CO","81505",,,,,,,"840264235","9702422255",,,,"2011-10-11T16:39:07-0500","PATTI ROBERTS",,,,,144,104,0,39,143,0,143,121,7,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011171026P030021632834001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COASTAL HOBBIES CORPORATION 401(K) PLAN","001","2007-05-22","COASTAL HOBBIES CORPORATION",,,"723 GLYNN ISLES",,"BRUNSWICK","GA","31525",,,,,,,,,,,,,,,,,,"260224508","9122222881","451120","COASTAL HOBBIES CORPORATION",,"723 GLYNN ISLES",,"BRUNSWICK","GA","31525",,,,,,,"260224508","9122222881",,,,"2011-10-11T17:10:01-0500","SHARON DYER","2011-10-11T17:10:01-0500","SHARON DYER",,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011145627P030146753009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANTIMITE 401(K) PLAN","002","1991-01-01","ANTIMITE ASSOCIATES, INC.",,,"5867 PINE AVE",,"CHINO HILLS","CA","917096531",,,,,,,,,,,,,,,,,,"952035500","9094835300","561710","ANTIMITE ASSOCIATES, INC.",,"5867 PINE AVE",,"CHINO HILLS","CA","917096531",,,,,,,"952035500","9094835300",,,,"2011-10-11T14:34:20-0500","LYNN SCOTT","2011-10-11T14:34:20-0500","LYNN SCOTT",,,185,245,0,8,253,0,253,157,5,,"2E2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011181516P040677066704001","2010-01-01","2010-12-31","4","C","0","0","1","0","0","0","0","0","0",,"FLOAT-ADJUSTED EMU EX-GREECE FUND B","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943398356","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:57:08-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011182111P040150463665001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ALPHACREDIT INVESTMENT GRADE FUND","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"371440902","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:57:46-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111012082752P030684347520006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ND INDUSTRIES, INC. CAFETERIA PLAN","511","1992-01-01","ND INDUSTRIES, INC.",,,"1000 N. CROOKS ROAD",,"CLAWSON","MI","48017",,,,,,,,,,,,,,,,,,"386077454","2482880000","332810","ND INDUSTRIES, INC.",,"1000 N. CROOKS ROAD",,"CLAWSON","MI","48017",,,,,,,"386077454","2482880000",,,,"2011-10-12T03:57:29-0500","JEANETTE L SOCIA",,,,,197,218,,,218,,,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","4","1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012085318P030147232097001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"OLIMPIO FINANCIAL GROUP DEFINED BENEFIT PLAN & TRUST","001","2010-01-01","OLIMPIO FINANCIAL GROUP",,,"15660 N. DALLAS PARKWAY","SUITE 950","DALLAS","TX","75248",,,,,,,,,,,,,,,,,,"450479199","9723921344","541211","OLIMPIO FINANCIAL GROUP",,"15660 N. DALLAS PARKWAY","SUITE 950","DALLAS","TX","75248",,,,,,,"450479199","9723921344",,,,"2011-10-12T08:53:17-0500","SALVATORE J. OLIMPIO",,,,,2,2,0,0,2,0,2,,0,,"1A3D",,"0","0","1","0","0","0","1","0","0","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012085319P040150856033001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MEDEGEN CBU 401(K) PLAN","002","2000-01-01","MEDEGEN MEDICAL PRODUCTS, LLC",,,"500 EXPRESSWAY DRIVE SOUTH",,"BRENTWOOD","NY","11717",,,,,,,,,,,,,,,,,,"860946323","6312314600","326100","MEDEGEN MEDICAL PRODUCTS, LLC",,"500 EXPRESSWAY DRIVE SOUTH",,"BRENTWOOD","NY","11717",,,,,,,"860946323","6312314600",,,,"2011-10-12T08:52:58-0500","CHARLES L. KELLY, JR.","2011-10-12T08:52:58-0500","CHARLES L. KELLY, JR.",,,212,231,0,7,238,0,238,64,1,,"2E2F2G2J2K3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012093639P040150885601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SARAMAX APPAREL GROUP, INC 401(K) PLAN PROFIT SHARING PLAN","001","1994-01-01","SARAMAX APPAREL GROUP, INC",,,"1372 BROADWAY 7TH FLOOR",,"NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"133689746","2128424000","424300","SARAMAX APPAREL GROUP, INC",,"1372 BROADWAY 7TH FLOOR",,"NEW YORK","NY","10018",,,,,,,"133689746","2128424000",,,,"2011-10-12T09:35:30-0500","DAVID ANTEBY",,,,,153,114,0,40,154,0,154,94,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011182549P040150465569001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ALPHACREDIT HIGH YIELD BOND FUND B","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"830377924","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:58:12-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011174150P030021636242001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AIR FRANCE 401(K) PLAN","002","1970-10-01","AIR FRANCE",,,"125 WEST 55TH STREET",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"131595913","2128304089","481000","AIR FRANCE",,"125 WEST 55TH STREET",,"NEW YORK","NY","10019",,,,,,,"131595913","2128304089",,,,"2011-10-11T17:41:09-0500","LILIANA RIOS",,,,,1298,945,35,277,1257,1,1258,1258,0,,"2E2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011185211P040150477873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CARDON HOMES CORPORATION, AMENDED & RESTATED EMPLOYEES PROFIT SHARING PLAN","001","1979-01-01","CARDON HOMES CORPORATION",,,"1819 EAST SOUTHERN AVE., STE. B-10",,"MESA","AZ","85204",,,,,,,"1819 EAST SOUTHERN AVE., STE. B-10",,"MESA","AZ","85204",,,,,,,"860345461","4805059500","236110","CARDON HOMES CORPORATION",,"1819 EAST SOUTHERN AVE., STE. B-10",,"MESA","AZ","85204",,,,,,,"860345461","4805059500",,,,"2011-10-06T16:01:55-0500","WILFORD CARDON",,,,,1,1,,,1,,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111012093351P040150883809001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"DENTAL PROGRAM FITCHBURG HOURLY","507","1991-06-01","SIMONDS INTERNATIONAL CORPORATION",,,"135 INTERVALE ROAD",,"FITCHBURG","MA","01420",,,,,,,,,,,,,,,,,,"132759891","9784240120","332900","SIMONDS INTERNATIONAL CORPORATION",,"135 INTERVALE ROAD",,"FITCHBURG","MA","01420",,,,,,,"132759891","9784240120",,,,"2011-10-12T09:33:12-0500","HENRY BOTTICELLO",,,,,263,247,0,0,247,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012094952P030684569008001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J.D. NEWMAN, INC. 401(K) PLAN","001","1994-08-01","J D NEWMAN, INC.",,"ATTN MICKEY NEWMAN","P.O. BOX 299",,"BEALETON","VA","22712",,,,,,,,,,,,,,,,,,"541480434","5404392700","484120","J D NEWMAN, INC.","ATTN MICKEY NEWMAN","P.O. BOX 299",,"BEALETON","VA","22712",,,,,,,"541480434","5404392700",,,,"2011-10-12T09:49:29-0500","DAVID NEWMAN",,,,,41,35,0,3,38,0,38,38,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011174439P040150440641001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"US DEBT INDEX FUND B","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943138366","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:54:18-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011190006P040150480225008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MARK S MCCOY DDS PA EMPLOYEES' 401(K) PROFIT SHARING PLAN","001","1991-01-01","MARK S MCCOY DDS PA",,,"234 WEST MAIN STREET",,"WASHINGTON","NC","27889",,,,,,,,,,,,,,,,,,"561538090","2529464403","621210","MARK S MCCOY DDS PA",,"234 WEST MAIN ST",,"WASHINGTON","NC","27889",,,,,,,"561538090","2529464403",,,,"2011-10-11T16:10:41-0500","MARK S MCCOY","2011-10-11T16:10:46-0500","MARK S MCCOY",,,6,5,0,1,6,0,6,6,,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012095018P040150896833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CUNNINGHAM-MOUNTCASTLE FUNERAL HOME, INC. 401(K) PROFIT SHARING PLAN","002","1979-01-01","CUNNINGHAM-MOUNTCASTLE FUNERAL HOME, INC.",,,"4143 DALE BOULEVARD",,"DALE CITY","VA","22193",,,,,,,,,,,,,,,,,,"546038819","7036801234","812210","CUNNINGHAM-MOUNTCASTLE FUNERAL HOME, INC.",,"4143 DALE BOULEVARD",,"DALE CITY","VA","22193",,,,,,,"546038819","7036801234",,,,"2011-10-12T09:45:35-0500","MICHAEL TURCH",,,,,21,15,0,5,20,0,20,16,3,,"2A2E2F2H2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011170558P030146850881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUPPLIER LINK SERVICES, INC. PROFIT SHARING PLAN","001","2002-01-01","SUPPLIER LINK SERVICES, INC.",,,"3527 MT. DIABLO BLVD. #204",,"LAFAYETTE","CA","94549",,,,,,,,,,,,,,,,,,"943371664","5106730773","541990","SUPPLIER LINK SERVICES, INC.",,"3527 MT. DIABLO BLVD. #204",,"LAFAYETTE","CA","94549",,,,,,,"943371664","5106730773",,,,"2011-10-11T17:02:07-0500","DEBORAH ANDERSON","2011-10-11T17:02:07-0500","DEBORAH ANDERSON",,,28,5,0,20,25,0,25,25,0,,"2A2E3D3F3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012080623P040024801414001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BARR & BARR, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2005-07-01","BARR & BARR, INC.",,,"460 WEST 34TH STREET",,"NEW YORK","NY","100012342",,,,,,,,,,,,,,,,,,"130469970","2125632330","236200","BARR & BARR, INC.",,"460 WEST 34TH STREET",,"NEW YORK","NY","100012342",,,,,,,"130469970","2125632330",,,,"2011-10-12T08:05:40-0500","THOMAS D. BARR","2011-10-12T08:05:40-0500","THOMAS D. BARR",,,161,100,14,44,158,0,158,157,16,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012100953P040022593426001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAX DEFERRED ANNUITY PLAN FOR VINFEN CORPORATION","002","1979-01-01","VINFEN CORPORATION",,,"950 CAMBRIDGE STREET",,"CAMBRIDGE","MA","02141",,,,,,,,,,,,,,,,,,"042632219","6174411800","624100","VINFEN CORPORATION",,"950 CAMBRIDGE STREET",,"CAMBRIDGE","MA","02141",,,,,,,"042632219","6174411800",,,,"2011-10-12T10:09:43-0500","GLEN MATTERA","2011-10-12T10:09:43-0500","GLEN MATTERA",,,2085,2191,0,70,2261,0,2261,463,0,,"2L2F2G3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011204846P030146961857001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TAX DEFERRED ANNUITY PLAN OF COMMUNITY ACTION SW","002","1998-04-01","COMMUNITY ACTION SOUTHWEST",,,"150 WEST BEAU STREET",,"WASHINGTON","PA","15301",,,,,,,,,,,,,,,,,,"251153028","7242259550","624100","COMMUNITY ACTION SOUTHWEST",,"150 WEST BEAU STREET",,"WASHINGTON","PA","15301",,,,,,,"251153028","7242259550",,,,"2011-10-11T15:12:21-0500","JAMES A KRIVANEK, JR.",,,,,166,110,0,40,150,0,150,134,0,,"2G2L",,"1",,,,"1",,,,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011172742P030146866321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOSEPH SAVY, P.C. PENSION PLAN","003","1999-01-01","JOSEPH SAVY, P.C.",,,"33 BROAD STREET, SUITE 1001",,"BOSTON","MA","02109",,,,,,,,,,,,,,,,,,"043091380","8573503731","541211","JOSEPH SAVY, P.C.",,"33 BROAD STREET, SUITE 1001",,"BOSTON","MA","02109",,,,,,,"043091380","8573503731",,,,"2011-10-11T17:26:58-0500","PAUL J. BRENNAN",,,,,2,2,0,0,2,0,2,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011181704P040150461953001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"RUSSELL 1000 GROWTH FUND T","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943405567","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:57:16-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011191322P030682829584001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"K.C. COMPANY, INC. 401(K) PROFIT SHARING PLAN","002","1987-09-01","K.C. COMPANY, INC.",,,"12100 BALTIMORE AVE STE #1",,"BETLSVILLE","MD","207051399",,,,,,,,,,,,,,,,,,"522199575","3019577000","444190","K.C. COMPANY, INC.",,"12100 BALTIMORE AVE STE #1",,"BETLSVILLE","MD","207051399",,,,,,,"522199575","3019577000",,,,"2011-10-11T19:12:20-0500","TERRENCE SHEEHAN",,,,,159,127,0,26,153,0,153,153,0,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011173441P040049423783001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"MSCI EQUITY INDEX FUND-SWEDEN","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"946603962","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:53:34-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011151351P030146761089001","2010-11-01","2010-12-31","2",,"0","0","0","1","0","1","0","0","0",,"THOMAS AND LUCAS FAMILY DENTISTRY, LLC PROFIT SHARING PLAN","001","1973-11-01","THOMAS AND LUCAS FAMILY DENTISTRY, LLC",,,"1600 ALICE STREET",,"WAYCROSS","GA","315014533",,,,,,,,,,,,,,,,,,"300632706","9122853140","621210","THOMAS AND LUCAS FAMILY DENTISTRY, LLC",,"1600 ALICE STREET",,"WAYCROSS","GA","315014533",,,,,,,"300632706","9122853140",,,,"2011-10-11T14:46:35-0500","GEORGE W. THOMAS, DDS",,,,,10,8,0,2,10,0,10,10,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111012064531P030147163665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUTNAM TRANSPORTATION INSURANCE INC PROFIT SHARING PLAN","001","1986-01-01","PUTNAM TRANSPORTATION INSURANCE INC",,,"325 CRAMER CREEK CT., SUITE 200",,"DUBLIN","OH","43017",,,,,,,,,,,,,,,,,,"311158055","6147931557","524290","PUTNAM TRANSPORTATION INSURANCE INC",,"325 CRAMER CREEK CT., SUITE 200",,"DUBLIN","OH","43017",,,,,,,"311158055","6147931557",,,,"2011-10-12T06:45:00-0500","CHARLES PUTNAM",,,,,5,1,0,2,3,0,3,3,0,,"2E2G3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012084914P040150853777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PENSION PLAN FOR THE EMPLOYEES OF SHENANDOAH MEMORIAL HOSPITAL, INC.","001","1972-01-01","SHENANDOAH MEMORIAL HOSPITAL, INC.",,,"759 SOUTH MAIN STREET",,"WOODSTOCK","VA","22664",,,,,,,,,,,,,,,,,,"540490687","5404591181","622000","CHAIRMAN OF THE PENSION COMMITTEE SHENANDOAH MEMORIAL HOSPITAL, INC.",,"759 SOUTH MAIN STREET",,"WOODSTOCK","VA","22664",,,,,,,"540149910","5404591181",,,,"2011-10-12T08:48:09-0500","CHARLES E. WALTON","2011-10-12T08:48:09-0500","FLOYD R. HEATER",,,388,148,120,105,373,12,385,,1,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012093411P040150883937001","2010-01-01","2010-12-31","1",,"0","1","0","0","1","1","0","0","0",,"PAPER PRODUCTS, MISC. CHAUFFEURS, WAREHOUSEMEN, HELPERS, MESSENGERS, PRODUCTION & OFFICE WORKERS PENSION FUND","001","1950-09-01","BD OF TRUSTEES OF PAPER PRODUCTS, MISC. CHAUFFEURS, WAREHOUSEMEN, HEL",,,"45-18 COURT SQUARE, 6TH FLOOR",,"LONG ISLAND CITY","NY","111014347",,,,,,,,,,,,,,,,,,"136567546","7189377150","484110","BD OF TRUSTEES OF PAPER PRODUCTS, MISC. CHAUFFEURS, WAREHOUSEMEN, HEL",,"45-18 COURT SQUARE, 6TH FLOOR",,"LONG ISLAND CITY","NY","111014347",,,,,,,"136567546","7189377150",,,,"2011-10-12T09:18:50-0500","ANTHONY MARINO","2011-10-06T12:56:25-0500","STEPHEN J. KORNREICH",,,2188,462,1068,606,2136,196,2332,,,29,"1B1G",,"0","0","1","0","0","0","1","0","1","1","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012093414P040150883953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOMAS W. HUNTER, ATTORNEY AT LAW CROSS-TESTED PROFIT SHARING PLAN","001","1989-01-01","THE LAW OFFICE OF THOMAS W. HUNTER, P.C.",,,"421 NORTH HOUGH STREET",,"BARRINGTON","IL","600103028",,,,,,,,,,,,,,,,,,"263953283","8473823666","541110","THE LAW OFFICE OF THOMAS W. HUNTER, P.C.",,"421 NORTH HOUGH STREET",,"BARRINGTON","IL","600103028",,,,,,,"263953283","8473823666",,,,"2011-10-12T09:29:09-0500","THOMAS W. HUNTER",,,,,8,6,0,2,8,0,8,8,0,,"2A2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011174652P040677001328001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"EQUITY VALUE FUND E","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943164230","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:54:25-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011175133P030146882769001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"BLUE CROSS BLUE SHIELD OF MISSISSIPPI","541","2007-01-01","JACOBS TECHNOLOGY INC",,,"P.O. BOX 884","600 WILLIAM NORTHERN BLVD","TULLAHOMA","TN","37388",,,,,,,"P.O. BOX 884","600 WILLIAM NORTHERN BLVD","TULLAHOMA","TN","37388",,,,,,,"620510412","9314556400","541330","JACOBS TECHNOLOGY INC",,"P.O. BOX 884","600 WILLIAM NORTHERN BLVD","TULLAHOMA","TN","37388",,,,,,,"620510412","9314556400",,,,"2011-10-11T15:43:23-0500","LEE WHITHAM",,,,,551,563,7,,570,,570,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011175709P040677025760001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"MSCI EQUITY INDEX FUND-MEXICO","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943279217","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:55:19-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011180244P030146888225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EJ BROOKS COMPANY GROUP HEALTH LIFE INSURANCE PLAN","501","1972-01-01","EJ BROOKS COMPANY",,,"227 NORTH ROUTE 303, UNIT 101",,"CONGERS","NY","10920",,,,,,,,,,,,,,,,,,"220793310","8453533800","326100","EJ BROOKS COMPANY",,"227 NORTH ROUTE 303, UNIT 101",,"CONGERS","NY","10920",,,,,,,"220793310","8453533800",,,,"2011-10-11T18:02:38-0500","MIGUEL A. COMPANIONI",,,,,253,103,2,0,105,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011193031P030146930353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"XCEL ENERGY INC. EMPLOYEE WELFARE BENEFIT PLAN","550","2002-01-01","XCEL ENERGY INC",,"JEFFREY S. SAVAGE","414 NICOLLET MALL",,"MINNEAPOLIS","MN","554011927",,,,,,,,,,,,,,,,,,"410448030","6123305500","221100","XCEL ENERGY INC","JEFFREY S. SAVAGE","414 NICOLLET MALL",,"MINNEAPOLIS","MN","554011927",,,,,,,"410448030","6123305500",,,,"2011-10-11T19:29:38-0500","BARBARA L. HARTWICK",,,,,17725,11207,6059,0,17266,1850,,,,,,"4A4B4D4E4F4H4I4L","1","0","1","0","1","0","1","0","0","0","0","1","0","1","9","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011145913P030682163312001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KANSAS CITY LIFE EMPLOYEE MEDICAL PLAN","503","1959-01-01","KANSAS CITY LIFE INSURANCE COMPANY",,,"3520 BROADWAY",,"KANSAS CITY","MO","64111",,,,,,,,,,,,,,,,,,"440308260","8167537000","524140","KANSAS CITY LIFE INSURANCE COMPANY",,"3520 BROADWAY",,"KANSAS CITY","MO","64111",,,,,,,"440308260","8167537000",,,,"2011-10-11T14:36:47-0500","JILL M. WORSTELL",,,,,649,388,239,0,627,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011145919P030146754273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"USA BOUQUET LLC 401(K) PLAN","001","2001-03-08","USA BOUQUET LLC",,,"1500 NW 95TH AVE.",,"MIAMI","FL","33172",,,,,,,,,,,,,,,,,,"208068971","7864376402","424930","USA BOUQUET LLC",,"1500 NW 95TH AVE.",,"MIAMI","FL","33172",,,,,,,"208068971","7864376402",,,,"2011-10-11T14:36:47-0500","LIVETTE FERNANDEZ","2011-10-11T14:36:47-0500","MARTHA HASWELL",,,340,354,1,16,371,0,371,138,52,,"3D2E2J2K3B2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012074017P030147192065001","2000-01-01","2000-12-31","2",,"0","0","0","0","0","0","0","1","0",,"EMPLOYEE ASSISTANCE PROGRAM","507","1997-01-01","AEGIS INSURANCE SERVICES, INC.",,,"1 MEADOWLANDS PLAZA",,"EAST RUTHERFORD","NJ","07073",,,,,,,"1 MEADOWLANDS PLAZA",,"EAST RUTHERFORD","NJ","07073",,,,,,,"222466904","2015082669","524290","AEGIS INSURANCE SERVICES, INC.",,"1 MEADOWLANDS PLAZA",,"EAST RUTHERFORD","NJ","07073",,,,,,,"222466904","2015082669",,,,"2011-10-12T07:23:19-0500","JEFFREY SCHUPACK",,,,,163,170,,,170,,170,,,,,"4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012074615P030147197201004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MOLDING CONCEPTS, INC. PROFIT SHARING PLAN","001","1995-05-01","MOLDING CONCEPTS, INC.",,,"6700 SIMS",,"STERLING HEIGHTS","MI","483133727",,,,,,,"6700 SIMS",,"STERLING HEIGHTS","MI","483133727",,,,,,,"382767913","5862646990","326100","MOLDING CONCEPTS, INC.",,"6700 SIMS",,"STERLING HEIGHTS","MI","483133727",,,,,,,"382767913","5862646990",,,,"2011-10-11T11:50:29-0500","MARK MIES",,,,,14,12,,,12,,12,8,,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012094658P040678862016004","2010-04-01","2011-03-31","2",,"1",,,,,,,,,,"HOCKING ATHENS PERRY COMMUNITY ACTION AGENCY, INC. VISION CARE PLAN","504","2010-04-01","HOCKING ATHENS PERRY COMMUNITY ACTION AGENCY, INC.",,,"3 CARDARAS DRIVE","P.O. BOX 220","GLOUSTER","OH","45732",,,,,,,,,,,,,,,,,,"310718322","7407674500","624200","HOCKING ATHENS PERRY COMMUNITY ACTION AGENCY, INC.",,"3 CARDARAS DRIVE","P.O. BOX 220","GLOUSTER","OH","45732",,,,,,,"310718322","7407674500",,,,"2011-10-12T04:53:30-0500","MARY ANNE KIELISZEWSKI",,,,,0,171,,,171,,,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012094713P040150894017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRACCO RETIREMENT INCOME PLAN","002","1995-01-01","BRACCO DIAGNOSTICS, INC.",,,"107 COLLEGE ROAD EAST",,"PRINCETON","NJ","08540",,,,,,,,,,,,,,,,,,"223303691","6095142306","325410","BRACCO DIAGNOSTICS, INC.","BRACCO DIAGNOSTICS, INC.","107 COLLEGE ROAD EAST",,"PRINCETON","NJ","08540",,,,,,,"223303691","6095142306",,,,"2011-10-12T08:43:27-0500","MARCIA D'ARCY","2011-10-12T09:46:54-0500","JOE VAUGHN",,,609,342,40,254,636,0,636,,28,,"1A1G3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012095941P040150904033001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"GL BUS LINES 401(K) PLAN","001","2001-01-01","GL BUS LINES",,,"1430 BROADWAY, 5TH FLOOR",,"NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"112712079","8006690051","485210","GL BUS LINES",,"1430 BROADWAY, 5TH FLOOR",,"NEW YORK","NY","10018",,,,,,,"112712079","8006690051",,,,"2011-10-12T09:58:57-0500","THOMAS LEWIS",,,,,383,337,0,13,350,1,351,133,1,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012100223P030684604048001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EPILOG CORPORATION PROFIT SHARING PLAN","001","1996-01-01","EPILOG CORPORATION",,,"16371 TABLE MOUNTAIN PARKWAY",,"GOLDEN","CO","80403",,,,,,,"16371 TABLE MOUNTAIN PARKWAY",,"GOLDEN","CO","80403",,,,,,,"841095620","3032771188","323100","EPILOG CORPORATION",,"16371 TABLE MOUNTAIN PARKWAY",,"GOLDEN","CO","80403",,,,,,,"841095620","3032771188",,,,"2011-10-12T09:59:36-0500","VICKI SCHWARZ",,,,,78,74,0,8,82,0,82,75,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012075631P040150823265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEOMET OPERATING COMPANY, INC. 401 (K) PLAN","001","1999-03-15","GEOMET OPERATING COMPANY, INC.",,,"5336 STADIUM TRACE PARKWAY","SUITE 206","BURMINGHAM","AL","352444580",,,,,,,,,,,,,,,,,,"631037257","2054253855","211110","GEOMET OPERATING COMPANY, INC.",,"5336 STADIUM TRACE PARKWAY","SUITE 206","BURMINGHAM","AL","352444580",,,,,,,"631037257","2054253855",,,,"2011-10-12T07:56:02-0500","NICOLE THURMOND","2011-10-12T07:56:02-0500","NICOLE THURMOND",,,121,58,0,25,83,0,83,79,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011170617P030146851153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY ACTION AGENCY OF BUTTE COUNTY, INC. 403B PLAN","001","1994-07-01","COMMUNITY ACTION AGENCY OF BUTTE COUNTY, INC.",,,"2255 DEL ORO AVENUE",,"OROVILLE","CA","95965",,,,,,,"2255 DEL ORO AVENUE",,"OROVILLE","CA","95965",,,,,,,"941640546","5305387559","624200","COMMUNITY ACTION AGENCY OF BUTTE COUNTY, INC.",,"2255 DEL ORO AVENUE",,"OROVILLE","CA","95965",,,,,,,"941640546","5305387559",,,,"2011-10-11T17:05:58-0500","DANA CAMPBELL",,,,,96,119,99,0,218,2,220,125,0,,"2G2L",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1","1","0",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011170646P040022523314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YESTECH, INC. DEFINED BENEFIT PENSION PLAN","002","2004-01-01","YESTECH, INC.",,,"2762 LOKER AVENUE W.",,"CARLSBAD","CA","92010",,,,,,,,,,,,,,,,,,"810587488","9493612714","541990","YESTECH, INC.",,"2762 LOKER AVENUE W.",,"CARLSBAD","CA","92010",,,,,,,"810587488","9493612714",,,,"2011-10-11T17:06:43-0500","DONALD MILLER",,,,,7,0,0,6,6,0,6,,0,,"1A1G1I3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011144552P030146747281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEALTH AND DENTAL CARE BENEFIT PLAN OF WAKE FOREST UNIVERSITY HEALTH SCIENCES","506","1980-07-01","WAKE FOREST UNIVERSITY HEALTH SCIENCES",,,"MEDICAL CENTER BOULEVARD",,"WINSTON-SALEM","NC","271571017",,,,,,,,,,,,,,,,,,"223849199","3367166267","611000","WAKE FOREST UNIVERSITY HEALTH SCIENCES",,"MEDICAL CENTER BOULEVARD",,"WINSTON-SALEM","NC","271571017",,,,,,,"223849199","3367166267",,,,"2011-10-11T14:25:52-0500","MARC SEARS","2011-10-11T14:25:52-0500","MARC SEARS",,,4442,3888,691,45,4624,,,,,,,"4A4D","1","0","1","0","1","0","1","0","0","0","0","1","0","1","3","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012090545P040022584130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RED LAKE COMPREHENSIVE HEALTH SERVICES RETIREMENT PLAN","001","1981-01-01","RED LAKE COMPREHENSIVE HEALTH SVCS",,,"HIGHWAY ONE","PO BOX 249","RED LAKE","MN","56671",,,,,,,,,,,,,,,,,,"410991295","2186793316","621493","RED LAKE COMPREHENSIVE HEALTH SVCS",,"HIGHWAY ONE","PO BOX 249","RED LAKE","MN","56671",,,,,,,"410991295","2186793316",,,,"2011-10-12T09:03:57-0500","ORAN D. BEAULIEU",,,,,134,123,0,12,135,0,135,130,2,,"2C3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012092315P040049578455001","2010-09-28","2010-12-31","2",,"1","1","0","1","0","1","0","0","0",,"J. J. LYNCH & ASSOCIATES INC. PROFIT SHARING PLAN","001","2010-09-28","J. J. LYNCH & ASSOCIATES INC.",,,"417 SERGEANT DR",,"LAMBERTVILLE","NJ","08530",,,,,,,,,,,,,,,,,,"273560939","2677333677","541513","J. J. LYNCH & ASSOCIATES INC.",,"417 SERGEANT DR",,"LAMBERTVILLE","NJ","08530",,,,,,,"273560939","2677333677",,,,"2011-10-11T16:43:21-0500","JOHN LYNCH",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011180500P030146889185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDIA RECOVERY, INCORPORATED EMPLOYEE SAVINGS PLAN","002","1991-10-01","MEDIA RECOVERY, INCORPORATED",,,"510 CORPORATE DRIVE",,"GRAHAM","TX","76450",,,,,,,,,,,,,,,,,,"751842481","2146309625","541513","MEDIA RECOVERY, INCORPORATED",,"510 CORPORATE DRIVE",,"GRAHAM","TX","76450",,,,,,,"751842481","2146309625",,,,"2011-10-11T18:04:21-0500","LEANNA HARDING",,,,,324,268,0,69,337,1,338,307,19,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011150004P040150332193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANDERSON CONCRETE CORP. RETIREMENT PLAN","001","1964-01-01","ANDERSON CONCRETE CORP.",,,"P.O. BOX 398",,"COLUMBUS","OH","432160398",,,,,,,"400 FRANK ROAD",,"COLUMBUS","OH","432160398",,,,,,,"314356835","6144430123","327300","ANDERSON CONCRETE CORP.",,"P.O. BOX 398",,"COLUMBUS","OH","432160398",,,,,,,"314356835","6144430123",,,,"2011-10-11T14:59:23-0500","JOHN MYNES",,,,,355,93,100,146,339,8,347,,1,,"1A1B1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111012082518P040678628304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUSQUE-VIEW HOME, INC. 403(B) PLAN","001","1990-01-01","SUSQUE-VIEW HOME, INC.",,,"22 CREE DRIVE",,"LOCK HAVEN","PA","17745",,,,,,,,,,,,,,,,,,"251313958","5707481784","623000","SUSQUE-VIEW HOME, INC.",,"22 CREE DRIVE",,"LOCK HAVEN","PA","17745",,,,,,,"251313958","5707481784",,,,"2011-10-12T08:24:18-0500","DENNIS STAUFFER",,,,,174,134,0,22,156,0,156,114,1,,"2L2G2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012085928P040150859681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"METLIFE LONG TERM CARE INSURANCE PLAN FOR RAYTHEON COMPANY","590","2001-08-01","RAYTHEON COMPANY",,,"870 WINTER STREET",,"WALTHAM","MA","024511449",,,,,,,,,,,,,,,,,,"951778500","7815223000","335900","DEBORAH A. TULLY RAYTHEON COMPANY",,"870 WINTER STREET",,"WALTHAM","MA","024511449",,,,,,,"951778500","7815225080",,,,"2011-10-12T08:59:23-0500","DEBORAH A. TULLY","2011-10-12T08:59:23-0500","DEBORAH A. TULLY",,,3002,2263,551,0,2814,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012093436P030684522608001","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"COMMERCIAL WAREHOUSE & CARTAGE INC VOLUNTARY EMPLOYEES BENEFICIARY ASSOC","501","1988-07-01","COMMERCIAL WAREHOUSE & CARTAGE, INC",,,"3402 MEYER ROAD",,"FORT WAYNE","IN","46803",,,,,,,,,,,,,,,,,,"351184892","2604267825","493100","COMMERCIAL WAREHOUSE & CARTAGE INC",,"3402 MEYER ROAD",,"FORT WAYNE","IN","46803",,,,,,,"351184892","2604267825",,,,"2011-10-12T09:00:19-0500","GREGORY PARRISH",,,,,234,258,,,258,,258,,,,,"4L4H4E4D4B4A","1",,"1",,"1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011215007P040150554049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRITZKER DERMATOLOGY, PC RETIREMENT PLAN","001","1974-01-10","PRITZKER DERMATOLOGY, PC",,,"712 EAST 70TH STREET",,"SAVANNAH","GA","31405",,,,,,,,,,,,,,,,,,"582633689","9123528974","621111","PRITZKER DERMATOLOGY, PC",,"712 EAST 70TH STREET",,"SAVANNAH","GA","31405",,,,,,,"582633689","9123528974",,,,"2011-10-11T21:49:38-0500","ADAM S. PRITZKER","2011-10-11T21:49:38-0500","ADAM S. PRITZKER",,,7,5,0,2,7,0,7,7,1,,"2A2E2F2R",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012084226P040150849697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEMBER ONE FEDERAL CREDIT UNION DEFINED BENEFIT PLAN AND TRUST","001","1975-01-01","MEMBER ONE FEDERAL CU",,,"PO BOX 12288",,"ROANOKE","VA","24024",,,,,,,,,,,,,,,,,,"540526784","5409828811","522130","MEMBER ONE FEDERAL CU",,"PO BOX 12288",,"ROANOKE","VA","24024",,,,,,,"540526784","5409828811",,,,"2011-10-12T08:41:36-0500","KIMBERLEY V. BRASWELL","2011-10-12T08:41:36-0500","KIMBERLEY V. BRASWELL",,,152,90,0,63,153,1,154,0,0,,"1A1G1I3E",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012084245P040150849889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WALSH COLLEGE TAX-SHELTERED ANNUITY PLAN","002","1995-07-01","WALSH COLLEGE",,,"3838 LIVERNOIS ROAD",,"TROY","MI","480077006",,,,,,,,,,,,,,,,,,"381308480","2486898282","611000","WALSH COLLEGE",,"3838 LIVERNOIS ROAD",,"TROY","MI","480077006",,,,,,,"381308480","2486898282",,,,"2011-10-12T08:42:13-0500","ELIZABETH A. BARNES","2011-10-12T08:42:13-0500","ELIZABETH A. BARNES",,,157,278,0,6,284,0,284,198,0,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","3","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012065724P040049541047001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DR. KENNETH CESA PROFIT SHARING PLAN","001","1990-01-01","DR. KENNETH CESA",,,"290 ESSEX STREET",,"BEVERLY","MA","01915",,,,,,,,,,,,,,,,,,"042753845","9789270600","621111","DR. KENNETH CESA",,"290 ESSEX STREET",,"BEVERLY","MA","01915",,,,,,,"042753845","9789270600",,,,"2011-10-11T16:24:32-0500","KENNETH G CESA","2011-10-11T16:24:32-0500","KENNETH G CESA",,,4,3,0,0,3,0,3,4,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012090608P040150863585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAILEY INDUSTRIES, INC. 401K PLAN & TRUST","001","1996-01-01","BAILEY INDUSTRIES, INC.",,,"1107 NORTH THOMAS AVENUE",,"LEESBURG","FL","347483631",,,,,,,,,,,,,,,,,,"593127322","3523262898","423200","BAILEY INDUSTRIES, INC.",,"1107 NORTH THOMAS AVENUE",,"LEESBURG","FL","347483631",,,,,,,"593127322","3523262898",,,,"2011-10-12T09:05:31-0500","ELIJAH BAILEY",,,,,140,31,0,29,60,1,61,56,2,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","1","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012094422P030147269585001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JACQUELYNNE P LANHAM DESIGNS INC PROFIT SHARING PLAN AND TRUST","002","1988-01-01","JACQUELYNNE P. LANHAM DESIGNS, INC",,,"472 EAST PACES FERRY ROAD, NE",,"ATLANTA","GA","30305",,,,,,,,,,,,,,,,,,"581764080","4043640472","442299","JACQUELYNNE P. LANHAM DESIGNS, INC",,"472 EAST PACES FERRY ROAD, NE",,"ATLANTA","GA","30305",,,,,,,"581764080","4043640472",,,,"2011-10-12T05:42:46-0500","JACQUELYNNE P LANAHM",,,,,7,1,,0,1,0,1,0,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011175233P040677015792001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WESTWIND SCHOOL OF AERONAUTICS, PHOENIX, LLC 401(K) PLAN","001","2003-01-01","WESTWIND SCHOOL OF AERONAUTICS, PHOENIX, LLC",,,"732 W. DEER VALLEY ROAD",,"PHOENIX","AZ","85027",,,,,,,,,,,,,,,,,,"860950184","4809915557","488990","WESTWIND SCHOOL OF AERONAUTICS, PHOENIX, LLC",,"732 W. DEER VALLEY ROAD",,"PHOENIX","AZ","85027",,,,,,,"860950184","4809915557",,,,"2011-10-11T06:52:30-0500","PREPARER ON BEHALF OF ADMINISTRATOR",,,,,5,2,0,3,5,0,5,5,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011175244P040004622755001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JMAPC 401(K) PLAN","001","1999-01-01","JAMES MAYOCK & ASSOCIATES, P.C.",,,"220 SANSOME STREET, 12TH FLOOR",,"SAN FRANCISCO","CA","94104",,,,,,,"220 SANSOME STREET, 12TH FLOOR",,"SAN FRANCISCO","CA","94104",,,,,,,"943234536","4157655111","541110","JAMES MAYOCK & ASSOCIATES, P.C.",,"220 SANSOME STREET, 12TH FLOOR",,"SAN FRANCISCO","CA","94104",,,,,,,"943234536","4157655111",,,,"2011-10-11T17:52:00-0500","JAMES MAYOCK",,,,,25,17,0,11,28,0,28,17,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011175252P040677016640001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"US DEBT INDEX FUND F","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943291425","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:54:59-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011175311P040022528946001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"LIFEPATH RETIREMENT FUND N","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943263102","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:55:00-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111011175901P040022529458001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"LONG TERM GOVERNMENT-CREDIT BOND INDEX FUND","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943289737","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:55:31-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-11",,"Filed with authorized/valid electronic signature", "20111012073008P040004633395004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RAFIK KASHLAN MD PC PROFIT SHARING PLAN","002","1982-08-02","RAFIK KASHLAN MD PC",,,"242 ARROWHEAD BLVD",,"JONESBORO","GA","30236",,,,,,,,,,,,,,,,,,"581479337","7704720472","621111","RAFIK KASHLAN MD PC",,"242 ARROWHEAD BLVD",,"JONESBORO","GA","30236",,,,,,,"581479337","7704720472",,,,"2011-10-05T13:39:43-0500","RAFIK KASHLAN MD",,,,,1,1,0,0,1,0,1,1,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012090010P030021698546001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"MNGT RECRUITERS OF FAY EMP BEN PLAN","001","1989-01-01","MANAGEMENT RECRUITERS OF FAYETTEVILLE INC",,,"951 S MCPHERSON CH RD STE 105",,"FAYETTEVILLE","NC","28303",,,,,,,,,,,,,,,,,,"561573875","9104832555","561300","MANAGEMENT RECRUITERS OF FAYETTEVILLE INC",,"951 S MCPHERSON CH RD STE 105",,"FAYETTEVILLE","NC","28303",,,,,,,"561573875","9108684985",,,,"2011-10-11T10:28:28-0500","JOHN SEMMES","2011-10-11T10:28:40-0500","JOHN SEMMES",,,6,6,0,0,6,0,6,,,,"2E2J3D",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012080356P040004633923005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WAVERLY CLINIC PC EMPLOYEES RETIREMENT PLAN TRUST","001","1976-12-01","WAVERLY CLINIC","WAVERLY CLINIC, PC",,"806 E MAIN ST",,"WAVERLY","TN","371851814",,,,,,,,,,,,,,,,,,"620988456","9312967788","621111","WAVERLY CLINIC",,"806 E MAIN ST",,"WAVERLY","TN","371851814",,,,,,,"620988456","9312967788",,,,"2011-10-11T15:46:02-0500","SUBHI D ALI MD",,,,,11,5,,1,6,,6,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012081001P040150828337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOODY/NOLAN, LTD., INC. SALARY SAVINGS PLAN","001","1984-01-01","MOODY/NOLAN, LTD., INC.",,,"300 SPRUCE ST. STE. 300",,"COLUMBUS","OH","432151175",,,,,,,,,,,,,,,,,,"311256984","6144614664","541310","MOODY/NOLAN, LTD., INC.",,"300 SPRUCE ST. STE. 300",,"COLUMBUS","OH","432151175",,,,,,,"311256984","6144614664",,,,"2011-10-12T08:09:16-0500","DAVE KING",,,,,172,146,2,23,171,0,171,154,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012092451P030147257105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDELA, INC. LONG TERM CARE PLAN","503","2008-04-01","MEDELA, INC.",,,"1101 CORPORATE DRIVE",,"MCHENRY","IL","600507006",,,,,,,,,,,,,,,,,,"363098932","8153631166","339900","MEDELA, INC.",,"1101 CORPORATE DRIVE",,"MCHENRY","IL","600507006",,,,,,,"363098932","8153631166",,,,"2011-10-12T09:24:50-0500","JODI L. REICH",,,,,378,411,0,0,411,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011222349P030146994689001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"HEALTH MAINTENANCE PLAN FOR EMPLOYEES OF THE SHERWIN-WILLIAMS COMPANY - CALIFORNIA","579","1991-01-01","THE SHERWIN-WILLIAMS COMPANY",,"C/O TAX DEPT., 1220 GH","101 PROSPECT AVENUE, N.W.",,"CLEVELAND","OH","441151075",,,,,,,"101 PROSPECT AVENUE, N.W.",,"CLEVELAND","OH","441151075",,,,,,,"340526850","2165662000","325500","THE SHERWIN-WILLIAMS COMPANY","C/O TAX DEPT., 1220 GH","101 PROSPECT AVENUE, N.W.",,"CLEVELAND","OH","441151075",,,,,,,"340526850","2165662000",,,,"2011-10-11T22:04:40-0500","MICHAEL T. CUMMINS","2011-10-11T22:04:40-0500","MICHAEL T. CUMMINS",,,149,141,4,0,145,0,145,0,0,,,"4A4E4U","1","0","0","1","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011182024P040150463233001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"DELI MANAGEMENT INC HEALTH AND WELFARE PLAN","501","1992-05-01","DELI MANAGEMENT INC",,,"2400 BROADWAY",,"BEAUMONT","TX","77702",,,,,,,,,,,,,,,,,,"760075660","4098381976","722110","DELI MANAGEMENT INC",,"2400 BROADWAY",,"BEAUMONT","TX","77702",,,,,,,"760075660","4098381976",,,,"2011-10-11T18:16:53-0500","JOE TORTORICE","2011-10-11T18:16:53-0500","JOE TORTORICE",,,1450,1555,0,0,1555,,,,,,,"4A4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011173930P040676984064001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"GLANBIA COMPANIES 401(K) PLAN","002","1987-07-01","GLANBIA FOODS, INC.",,,"1373 FILLMORE STREET",,"TWIN FALLS","ID","833013380",,,,,,,,,,,,,,,,,,"820264195","2087337555","311500","GLANBIA FOODS, INC.",,"1373 FILLMORE STREET",,"TWIN FALLS","ID","833013380",,,,,,,"820264195","2087337555",,,,"2011-10-11T17:39:13-0500","SHAWN R. ATHAY","2011-10-11T17:39:13-0500","SHAWN R. ATHAY",,,1214,1370,0,67,1437,0,1437,1028,0,,"2E2F2G2J2K3D2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012082651P040150840913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MATTHEWS 401(K) PLAN","002","1997-01-01","MATTHEWS INTERNATIONAL CORP",,,"TWO NORTH SHORE CENTER",,"PITTSBURGH","PA","152125851",,,,,,,,,,,,,,,,,,"250644320","4124428220","331500","MATTHEWS INTERNATIONAL CORP",,"TWO NORTH SHORE CENTER",,"PITTSBURGH","PA","152125851",,,,,,,"250644320","4124428220",,,,"2011-10-12T08:24:09-0500","JENNIFER CICCONE",,,,,2715,2597,2,323,2922,0,2922,2400,63,,"2E2F2G2J2K2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012093227P040022587570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MORTON GROVE PHARMACEUTICAL, INC. 401(K) PLAN","001","1994-01-01","MORTON GROVE PHARMACEUTICAL, INC",,,"6451 WEST MAIN STREET",,"MORTON GROVE","IL","60053",,,,,,,,,,,,,,,,,,"364049160","8474106769","325410","MORTON GROVE PHARMACEUTICAL, INC",,"6451 WEST MAIN STREET",,"MORTON GROVE","IL","60053",,,,,,,"364049160","8474106769",,,,"2011-10-12T09:32:03-0500","MERRY KRUSCHKE",,,,,291,137,0,147,284,1,285,260,10,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111011173052P030146869249001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BRUNO SCHEIDT, INC. RETIREMENT BENEFIT PLAN","002","1975-04-01","BRUNO SCHEIDT, INC.",,,"71 WEST 23RD STREET",,"NEW YORK","NY","100104189",,,,,,,,,,,,,,,,,,"135371294","2127418290","311900","BRUNO SCHEIDT, INC.",,"71 WEST 23RD STREET",,"NEW YORK","NY","100104189",,,,,,,"135371294","2127418290",,,,"2011-10-11T17:30:19-0500","RICHARD FRAME",,,,,170,129,0,48,177,1,178,165,3,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011175331P040150444929001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HUNTINGTON ORTHOPEDIC SURGICAL MEDICAL GROUP 401(K) PLAN","002","2002-01-01","HUNTINGTON ORTHOPEDIC SURGICAL MEDICAL GROUP",,,"10 CONGRESS ST., SUITE 103",,"PASADENA","CA","91115",,,,,,,,,,,,,,,,,,"432013469","6267950282","621111","HUNTINGTON ORTHOPEDIC SURGICAL MEDICAL GROUP",,"10 CONGRESS ST., SUITE 103",,"PASADENA","CA","91115",,,,,,,"432013469","6267950282",,,,"2011-10-11T06:53:26-0500","PREPARER ON BEHALF OF ADMINISTRATOR",,,,,29,30,0,2,32,0,32,18,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011150205P040150333857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RALPH D. GOLDEN PROFIT SHARING PLAN","001","1985-01-01","RALPH D. GOLDEN, ATTORNEY",,,"6389 QUAIL HOLLOW, SUITE 201",,"MEMPHIS","TN","38120",,,,,,,,,,,,,,,,,,"621248862","9016825668","541110","RALPH D. GOLDEN, ATTORNEY",,"6389 QUAIL HOLLOW, SUITE 201",,"MEMPHIS","TN","38120",,,,,,,"621248862","9016825668",,,,"2011-10-11T15:00:32-0500","RALPH D. GOLDEN","2011-10-11T15:00:32-0500","RALPH D. GOLDEN",,,2,2,0,0,2,0,2,2,0,,"2E2G3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012050251P040150739281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HANSEL DEALERSHIPS' GROUP SALARY SAVINGS PLAN","001","1984-10-01","HANSEL ENTERPRISES, INC.",,,"1125 AUTO CENTER DRIVE",,"PETALUMA","CA","949520000",,,,,,,,,,,,,,,,,,"942876864","7077692369","441110","HANSEL ENTERPRISES, INC.",,"1125 AUTO CENTER DRIVE",,"PETALUMA","CA","949520000",,,,,,,"942876864","7077692369",,,,"2011-10-11T13:12:23-0500","ROBIN HELMS","2011-10-11T13:12:23-0500","ROBIN HELMS",,,417,379,0,37,416,1,417,240,6,,"2E2F2G2J2K2R2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012092036P040150874689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COAL COMPANY EMPLOYEES COMPREHENSIVE BENEFIT PLAN","516","1994-01-01","APPALACHIA HOLDING COMPANY",,,"PO BOX 26765",,"RICHMOND","VA","23261",,,,,,,,,,,,,,,,,,"540295165","8047881800","212110","APPALACHIA HOLDING COMPANY",,"PO BOX 26765",,"RICHMOND","VA","23261",,,,,,,"540295165","8047881800","A T MASSEY COAL COMPANY INC.","540295165","516","2011-10-12T09:20:02-0500","DORA N. JUDY",,,,,6710,6011,839,0,6850,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012094040P040022588226001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPIRE STATE HIGHWAY CONTRACTORS ASSOCIATION, INC RETIRMENT PLAN FOR THE EMPLOYEES OF HANSON AGGREGATES NEW YORK, INC.","001","1977-04-04","HANSON AGGREGATES NEW YORK, LLC",,,"P.O. BOX 513",,"JAMESVILLE","NY","13078",,,,,,,,,,,,,,,,,,"160928494","3154695501","237310","HANSON AGGREGATES NEW YORK, LLC",,"P.O. BOX 513",,"JAMESVILLE","NY","13078",,,,,,,"160928494","3154695501",,,,"2011-10-12T09:39:40-0500","DANIEL MEEHAN","2011-10-12T09:39:40-0500","DANIEL MEEHAN",,,111,72,0,48,120,0,120,120,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011171551P030021633490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORCRAFT COMPANIES 401(K) RETIREMENT PLAN","001","2003-09-15","NORCRAFT COMPANIES, LP",,,"3020 DENMARK AVENUE, SUITE 100",,"EAGAN","MN","55121",,,,,,,,,,,,,,,,,,"364231718","6512343352","321900","NORCRAFT COMPANIES, LP",,"3020 DENMARK AVENUE, SUITE 100",,"EAGAN","MN","55121",,,,,,,"364231718","6512343352",,,,"2011-10-11T17:15:09-0500","ERIC J TANQUIST","2011-10-11T17:15:09-0500","ERIC J TANQUIST",,,1599,1398,1,152,1551,1,1552,787,0,,"2E2F2G2J2K3D2T3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011184250P040150474401003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CITIZEN AUTO STAGE COMPANY EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","002","1994-01-01","CITIZEN AUTO STAGE COMPANY",,,"67 E. BAFFERT DR",,"NOGALES","AZ","85621",,,,,,,,,,,,,,,,,,"860012070","5202810400","485510","CITIZEN AUTO STAGE COMPANY",,"67 E. BAFFERT DR",,"NOGALES","AZ","85621",,,,,,,"860012070","5202810400",,,,"2011-10-11T07:42:24-0500","RICHARD BRENNAN",,,,,153,104,0,62,166,0,166,166,0,,"2O2Q",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011140504P040676406032001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREAT CHIROPRACTIC PROFIT SHARING PLAN","001","2001-01-01","GREAT CHIROPRACTIC",,,"1031 WEST LANCASTER BLVD",,"LANCASTER","CA","93534",,,,,,,,,,,,,,,,,,"954400511","6617262000","621310","GREAT CHIROPRACTIC",,"1031 WEST LANCASTER BLVD",,"LANCASTER","CA","93534",,,,,,,"954400511","6617262000",,,,"2011-10-11T14:02:40-0500","DEBRA S. OLSON",,,,,3,2,0,1,3,0,3,2,0,,"2A2E3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011140459P030146717169004","2010-08-01","2011-07-31","2",,,,,,,,,,,,"JOLLEY PRECAST INC PROFIT SHARING PLAN","001","1967-08-01","JOLLEY PRECAST, INC",,,"463 PUTNAM ROAD",,"DANIELSON","CT","06239",,,,,,,,,,,,,,,,,,"061176513","8607749066","327300","JOLLEY PRECAST INC",,"463 PUTNAM ROAD",,"DANIELSON","CT","06239",,,,,,,"061176513","8607749066",,,,"2011-10-11T13:46:36-0500","ELEANOR JOLLEY",,,,,24,18,,7,25,,25,,,,"2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011140459P030146717169005","2010-01-01","2010-12-31","2",,,,"1",,,"1","1",,,,"RASHAD ANSARI MD PROFIT SHARING PLAN","001","1985-07-01","RASHAD ANSARI, M D",,,"2023 W VISTA WAY SUITE J",,"VISTA","CA","92083",,,,,,,,,,,,,,,,,,"330102413","7607246100","621111","RASHAD ANSARI M D",,"2023 W VISTA WAY SUITE J",,"VISTA","CA","92083",,,,,,,"330102413","7607246100",,,,"2011-10-11T13:48:13-0500","RASHAD ANSARI",,,,,6,,,,0,,0,,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011131513P040022495826010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"OSCO 401K PLAN","001","2001-01-01","MENTOR INSTALLED FRAMING, INC.",,,"7180 N. CENTER STREET",,"MENTOR","OH","44060",,,,,,,,,,,,,,,,,,"341814581","4402558814","238900","MENTOR INSTALLED FRAMING, INC.",,"7180 N. CENTER STREET",,"MENTOR","OH","44060",,,,,,,"341814581","4402558814",,,,"2011-10-11T13:05:45-0500","REED H. MARTIN",,,,,2,1,0,0,1,0,1,1,,,"2E2H2K2J3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011131749P040022496418004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GROUP LONG-TERM DISABILITY PLAN OF PARSONS CHILD AND FAMILY CENTER","502","1989-10-01","PARSONS CHILD AND FAMILY CENTER",,,"60 ACADEMY ROAD",,"ALBANY","NY","12208",,,,,,,,,,,,,,,,,,"141347440","5184262600","624100","PARSONS CHILD AND FAMILY CENTER",,"60 ACADEMY ROAD",,"ALBANY","NY","12208",,,,,,,"141347440","5184262600",,,,"2011-10-11T07:10:11-0500","ROBERT ALBANESE",,,,,508,527,,,527,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011131152P040049347015001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASSOCIATED BANC-CORP TRAVEL ACCIDENT PLAN","522","1988-01-01","ASSOCIATED BANC-CORP",,,"1200 HANSEN ROAD","MS 8007","GREEN BAY","WI","543045448",,,,,,,,,,,,,,,,,,"391098068","9204917000","522110","ASSOCIATED BANC-CORP",,"1200 HANSEN ROAD","MS 8007","GREEN BAY","WI","543045448",,,,,,,"391098068","9204917000",,,,"2011-10-11T13:09:41-0500","KATEY SMITH",,,,,5023,5091,0,0,5091,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011133355P040150269857010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LAWRENCE M CADKIN MD PLLC 401K PLAN","001","2008-01-01","LAWRENCE M CADKIN MD PLLC",,,"120 DOGWOOD COURT",,"ENDWELL","NY","13760",,,,,,,,,,,,,,,,,,"208312653","6077299373","621510","LAWRENCE M CADKIN MD PLLC",,"120 DOGWOOD COURT",,"ENDWELL","NY","13760",,,,,,,"208312653","6077299373",,,,"2011-10-11T13:07:14-0500","LAWRENCE M CADKIN",,,,,6,5,,,5,,5,,,,"2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011133355P040150269857009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MANOJ H DESAI RETIREMENT PLAN","001","1987-01-01","MANOJ H DESAI",,,"4000 RICHVIEW ROAD",,"MT VERNON","IL","62864",,,,,,,,,,,,,,,,,,"371204598","6182443200","621111","MANOJ H DESAI",,"4000 RICHVIEW ROAD",,"MT VERNON","IL","62864",,,,,,,"371204598","6182443200",,,,"2011-10-11T12:19:35-0500","MANOJ H DESAI",,,,,2,2,,1,3,,3,3,,,"3D3B2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011134240P030021606642001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MCDONOUGH CORPORATION SAVINGS AND PROFIT SHARING PLAN","002","1985-01-01","MCDONOUGH CORPORATION",,,"21050 NORTH PIMA ROAD","SUITE 100","SCOTTSDALE","AZ","85255",,,,,,,,,,,,,,,,,,"550757366","6025445901","488300","MCDONOUGH CORPORATION",,"21050 NORTH PIMA ROAD","SUITE 100","SCOTTSDALE","AZ","85255",,,,,,,"550757366","6025445901",,,,"2011-10-11T02:42:34-0500","LARRY HILLWIG",,,,,437,326,0,92,418,2,420,310,5,,"2F2G2J2K2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011143049P030146734465002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SENTINEL REAL ESTATE CORPORATION GROUP LIFE PLAN","503","2001-01-01","SENTINEL REAL ESTATE CORPORATION",,,"1251 AVE. OF THE AMERICAS, 35FL",,"NEW YORK","NY","10020",,,,,,,,,,,,,,,,,,"132957368","2124082900","531390","SENTINEL REAL ESTATE CORPORATION",,"1251 AVE. OF THE AMERICAS, 35FL",,"NEW YORK","NY","10020",,,,,,,"132957368","2124082900",,,,"2011-10-15T06:42:01-0500","LELAND ROTH","2011-10-15T06:42:01-0500","LELAND ROTH",,,1091,1044,,,1044,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011144002P030146742017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLIENT SERVICES, INC. RETIREMENT SAVINGS PLAN","001","1991-01-01","CLIENT SERVICES, INC.",,,"3420 HARRY S. TRUMAN BLVD.",,"ST. CHARLES","MO","63301",,,,,,,,,,,,,,,,,,"431444502","6369472321","522298","CLIENT SERVICES, INC.",,"3420 HARRY S. TRUMAN BLVD.",,"ST. CHARLES","MO","63301",,,,,,,"431444502","6369472321",,,,"2011-10-11T14:39:11-0500","KIM MCCLANAHAN",,,,,466,485,0,62,547,1,548,488,115,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011135628P040150288641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AGRIUM U.S., INC. GROUP BENEFITS","501","1996-01-01","AGRIUM U.S., INC.",,,"4582 SOUTH ULSTER ST, STE 1700",,"DENVER","CO","80237",,,,,,,,,,,,,,,,,,"911589568","3038044400","325300","AGRIUM U.S., INC.",,"4582 SOUTH ULSTER ST, STE 1700",,"DENVER","CO","80237",,,,,,,"911589568","3038044400",,,,"2011-10-11T13:46:36-0500","BETTY TIDBALL",,,,,8724,8804,715,0,9519,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","20","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011134507P030146707153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STADING T&T, INC. PENSION PLAN","001","2000-01-01","STADING T&T, INC.",,,"5845 ONIX, SUITE 400",,"EL PASO","TX","79912",,,,,,,,,,,,,,,,,,"742982050","9155812211","541990","STADING T&T, INC.",,"5845 ONIX, SUITE 400",,"EL PASO","TX","79912",,,,,,,"742982050","9155812211",,,,"2011-10-11T13:40:19-0500","D MARK TYLER",,,,,4,4,0,0,4,0,4,,0,,"1A3D1I",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011134515P030024146326005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DENNIS YEE, D.O. PROFIT SHARING PLAN","001","1987-12-01","DENNIS YEE, D.O.",,,"3688 MANCHESTER ROAD",,"AKRON","OH","443191419",,,,,,,,,,,,,,,,,,"341339531","3306446604","621111","DENNIS YEE",,"3388 MANCHESTER ROAD",,"AKRON","OH","443191419",,,,,,,"341339531","3306446604",,,,"2011-10-05T09:46:07-0500","DENNIS YEE","2011-10-05T09:46:15-0500","DENNIS YEE",,,2,2,0,0,2,0,2,2,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011133553P030146701841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MURPHY FAMILY VENTURES, LLC 401(K) RETIREMENT SAVINGS PLAN","001","2000-01-01","MURPHY FAMILY VENTURES, LLC",,,"5752 SOUTH US HWY 117",,"WALLACE","NC","28466",,,,,,,,,,,,,,,,,,"030542650","9102851035","551112","MURPHY FAMILY VENTURES, LLC",,"5752 SOUTH US HWY 117",,"WALLACE","NC","28466",,,,,,,"030542650","9102851035",,,,"2011-10-11T13:31:59-0500","CHARLES HULBERT","2011-10-11T13:31:59-0500","CHARLES HULBERT",,,929,782,0,57,839,0,839,323,21,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011133627P040049354423001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLARK EQUIPMENT CO., BOBCAT SALARIED EMPLOYEES REDUCTION IN FORCE PLAN","582","1987-10-01","CLARK EQUIPMENT COMPANY C/O DOOSAN INFRACORE INTL., INC.",,,"400 PERIMETER CENTER TERRACE",,"ATLANTA","GA","30346",,,,,,,"SUITE 750",,"ATLANTA","GA","30346",,,,,,,"380425350","7703533800","333200","BENEFIT OVERSIGHT COMMITTEE OF DOOSAN INFRACORE INTERNATIONAL",,"400 PERIMETER CENTER TERR. STE 750",,"ATLANTA","GA","30346",,,,,,,"331183569","7703533800",,,,"2011-10-11T13:34:08-0500","MONTY GARRETT","2011-10-11T13:36:06-0500","PATRICK WILLS",,,643,914,,,914,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011130309P030146679825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALAN SAMUEL COIT, M.D., INC. PROFIT SHARING PLAN","002","1979-12-07","ALAN SAMUEL COIT, M.D., INC.",,,"39300 BOB HOPE DR, BANNAN 1108",,"RANCHO MIRAGE","CA","92270",,,,,,,,,,,,,,,,,,"953437087","7603404621","621111","ALAN SAMUEL COIT, M.D., INC.",,"39300 BOB HOPE DR, BANNAN 1108",,"RANCHO MIRAGE","CA","92270",,,,,,,"953437087","7603404621",,,,"2011-10-11T13:01:00-0500","ALAN SAMUEL COIT, M.D.","2011-10-11T13:01:00-0500","ALAN SAMUEL COIT, M.D.",,,3,3,0,0,3,0,3,1,0,,"2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011134649P030146707969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VASANTH M. VISHWANATH, M.D., INC. RETIREMENT PLAN","001","2003-01-01","VASANTH M. VISHWANATH, M.D., INC.",,,"7075 N. MAPLE, STE. 102",,"FRESNO","CA","93720",,,,,,,,,,,,,,,,,,"841717053","5592998800","621111","VASANTH M. VISHWANATH, M.D., INC.",,"7075 N. MAPLE, STE. 102",,"FRESNO","CA","93720",,,,,,,"841717053","5592998800",,,,"2011-10-11T13:47:23-0500","POORNIMA VISHWANATH","2011-10-11T13:47:23-0500","POORNIMA VISHWANATH",,,14,11,0,4,15,0,15,15,2,,"2E2G2J3B3D2A2F",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011134721P030146708369001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"BCTGM LOCAL 334 401(K) DEFERRED SAVINGS PLAN","001","1995-04-01","BCTGM LOCAL 334",,,"94 AUBURN STREET",,"PORTLAND","ME","04103",,,,,,,,,,,,,,,,,,"010229553","2077978397","424400","BCTGM LOCAL 334",,"94 AUBURN STREET",,"PORTLAND","ME","04103",,,,,,,"010229553","2077978397",,,,"2011-10-11T13:46:39-0500","JIM ANDERSCHAT","2011-10-11T13:46:39-0500","JIM ANDERSCHAT",,,366,306,0,51,357,0,357,338,0,,"2E2J2G3D2A",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011131812P030146689105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RIVERSIDE MFG., LLC. 401K PLAN","001","1993-01-01","RIVERSIDE MFG., LLC",,,"14510 LIMA ROAD",,"FORT WAYNE","IN","46818",,,,,,,,,,,,,,,,,,"260332652","2606374470","335900","RIVERSIDE MFG., LLC",,"14510 LIMA ROAD",,"FORT WAYNE","IN","46818",,,,,,,"260332652","2606374470",,,,"2011-10-11T13:17:36-0500","PAMELA MEISSNER",,,,,359,212,0,83,295,0,295,179,1,,"2E2F2G2J2K2S2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011131822P030146689201001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"WESTERN MESSENGER SERVICES, INC. 401(K) PLAN","001","1998-07-01","WESTERN MESSENGER SERVICES",,,"75 COLUMBIA SQUARE",,"SAN FRANCISCO","CA","94103",,,,,,,"75 COLUMBIA SQUARE",,"SAN FRANCISCO","CA","94103",,,,,,,"942598676","4154874100","492210","WESTERN MESSENGER SERVICES",,"75 COLUMBIA SQUARE",,"SAN FRANCISCO","CA","94103",,,,,,,"942598676","4154874100",,,,"2011-10-11T13:17:38-0500","BARBARA DRISCOLL",,,,,37,78,0,4,82,1,83,37,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011132901P040676301840001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"APTARGROUP, INC. EMPLOYEE BENEFITS PLAN","501","1993-04-22","APTARGROUP, INC.",,,"475 W. TERRA COTTA AVENUE, SUITE E",,"CRYSTAL LAKE","IL","600149695",,,,,,,,,,,,,,,,,,"363853103","8154770424","326100","APTARGROUP, INC.",,"475 W. TERRA COTTA AVENUE, SUITE E",,"CRYSTAL LAKE","IL","600149695",,,,,,,"363853103","8154770424",,,,"2011-10-11T12:04:48-0500","BRENDA DEMING","2011-10-11T09:21:08-0500","RALPH POLTERMANN",,,1678,1738,25,0,1763,,,,,,,"4A4B4D4E4F4H4L","1","0","1","0","1","0","1","0","0","0","0","1","0","1","5","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011132234P040022497682001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MACRO-PRO, INC. 401K PLAN","001","1999-05-01","MACRO-PRO, INC.",,,"PO BOX 90459",,"LONG BEACH","CA","908090459",,,,,,,,,,,,,,,,,,"330387596","8885540900","541190","MACRO-PRO, INC.",,"PO BOX 90459",,"LONG BEACH","CA","908090459",,,,,,,"330387596","8885540900",,,,"2011-10-11T13:19:22-0500","PATRICIA L WALDECK",,,,,135,119,0,9,128,0,128,111,9,,"3D2E2G2J2K2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011132239P030146692369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDICAL EDUCATION TECHNOLOGIES, INC. SAVINGS PLAN","001","1997-01-01","MEDICAL EDUCATION TECHNOLOGIES, INC",,,"6300 EDGELAKE DRIVE",,"SARASOTA","FL","34240",,,,,,,,,,,,,,,,,,"223437089","9415362841","339900","MEDICAL EDUCATION TECHNOLOGIES, INC",,"6300 EDGELAKE DRIVE",,"SARASOTA","FL","34240",,,,,,,"223437089","9415362841",,,,"2011-10-11T13:20:34-0500","THOMAS E. WHYTAS, CFO",,,,,204,183,0,32,215,0,215,157,2,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011143049P030146734465003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SENTINEL REAL ESTATE CORPORATION GROUP BENEFITS PLAN","504","1988-05-01","SENTINEL REAL ESTATE CORPORATION",,,"1251 AVE. OF THE AMERICAS","35FL","NEW YORK","NY","10020",,,,,,,,,,,,,,,,,,"132957368","2124082900","531390","SENTINEL REAL ESTATE CORPORATION",,"1251 AVE. OF THE AMERICAS","35FL","NEW YORK","NY","10020",,,,,,,"132957368","2124082900",,,,"2011-10-15T04:26:51-0500","LELAND ROTH","2011-10-15T04:26:51-0500","LELAND ROTH",,,821,748,,,748,,,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011112319P040150178305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ST. ANNS HOME, INC. RETIREMENT PLAN TRUST","001","1984-01-01","ST. ANNS HOME, INC.",,,"100A HAVERHILL STREET",,"METHUEN","MA","018444251",,,,,,,,,,,,,,,,,,"042104866","9786825276","624100","ST. ANNS HOME, INC.",,"100A HAVERHILL STREET",,"METHUEN","MA","018444251",,,,,,,"042104866","9786825276",,,,"2011-10-11T11:20:28-0500","DENIS GRANDBOIS",,,,,229,209,0,60,269,0,269,269,0,,"2E3D2G2J2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011134043P030048578391001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPENCER SAVINGS LIFE AND DISABILITY PLAN","590","2003-07-01","SPENCER SAVINGS BANK",,,"611 RIVER DRIVE",,"ELMWOOD PARK","NJ","074071325",,,,,,,,,,,,,,,,,,"221296609","2017033800","522120","SPENCER SAVINGS BANK",,"611 RIVER DRIVE",,"ELMWOOD PARK","NJ","074071325",,,,,,,"221296609","2017033800",,,,"2011-10-11T13:36:22-0500","MARIZEL COLLAZO",,,,,200,232,0,0,232,,,,,,,"4B4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011134051P030681923104001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"LAFAYETTE VENTURES, INC. 401(K) PLAN","001","2010-01-01","LAFAYETTE VENTURES, INC.",,,"1617 LAFAYETTE STREET",,"ALAMEDA","CA","94501",,,,,,,,,,,,,,,,,,"271688003","5108641373","624100","LAFAYETTE VENTURES, INC.",,"1617 LAFAYETTE STREET",,"ALAMEDA","CA","94501",,,,,,,"271688003","5108641373",,,,"2011-10-11T13:36:29-0500","CLIFF OILAR JR",,,,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011142255P040150307425001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PALISADES ASSOCIATES WELFARE BENEFIT PLAN","502","2005-01-01","PALISADES ASSOCIATES, INC.",,,"247 EMPIRE DRIVE",,"MIFFLINTOWN","PA","17059",,,,,,,,,,,,,,,,,,"521644200","7174367009","541600","PALISADES ASSOCIATES, INC.",,"247 EMPIRE DRIVE",,"MIFFLINTOWN","PA","17059",,,,,,,"521644200","7174367009",,,,"2011-10-11T14:22:54-0500","GREG ROSENBAUM",,,,,441,419,3,0,422,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011143105P030146734657001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"COVIDIEN DEFINED BENEFIT PLANS MASTER TRUST","001",,"TYCO HEALTHCARE GROUP LP",,,"15 HAMPSHIRE STREET",,"MANSFIELD","MA","02048",,,,,,,,,,,,,,,,,,"262342895","5082618000",,"COVIDIEN RETIREMENT ADMINISTRATIVE COMMITTEE",,"15 HAMPSHIRE STREET",,"MANSFIELD","MA","02048",,,,,,,"020502162","5082618000",,,,"2011-10-11T14:12:32-0500","JOSEPH MONGELLI","2011-10-11T14:12:32-0500","JOSEPH MONGELLI",,,,,,,,,,,,,,,"1","0","0","0","1","0","0","0","0","0","0","1","0","1","2","0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011133355P040150269857020","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FRANK S SCIABICA DDS PS 401K PROFIT SHARING PLAN","001","2005-09-01","FRANK S SCIABICA DDS PS",,,"1418 112TH AVE NE SUITE 200",,"BELLEVUE","WA","980043718",,,,,,,,,,,,,,,,,,"770638024","4254534353","621210","FRANK S SCIABICA DDS PS",,"1418 112TH AVE NE SUITE 200",,"BELLEVUE","WA","980043718",,,,,,,"770638024","4254534353",,,,"2011-10-11T12:29:42-0500","FRANKS S SCIABICA DDS",,,,,12,,,11,11,,11,11,,,"2G2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011140154P040150292065010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SAM T. HAMRA, M.D., P.A. 2000-401(K) PROFIT SHARIN","005","2000-01-01","HAMRA AND CHOUCAIR, P.A. FKA SAM T. HAMRA, M.D., P.A.",,,"9301 N CENTRAL EXPRESSWAY, STE 551",,"DALLAS","TX","752310805",,,,,,,,,,,,,,,,,,"751784905","2147549001","621111","HAMRA AND CHOUCAIR, P.A. FKA SAM T. HAMRA, M.D., P.",,"9301 N CENTRAL EXPRESSWAY, STE 551",,"DALLAS","TX","752310805",,,,,,,"751784905","2147549001",,,,"2011-10-11T08:46:36-0500","SAM HAMRA",,,,,10,10,,,10,,10,10,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011135402P030021608354001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BUCHER AND CHRISTIAN CONSULTING, INC. 401(K) PLAN","001","2000-10-01","BUCHER AND CHRISTIAN CONSULTING INC",,,"10 W MARKET ST","SUITE 1300","INDIANAPOLIS","IN","46204",,,,,,,,,,,,,,,,,,"352049936","3174238980","541512","BUCHER AND CHRISTIAN CONSULTING INC",,"10 W MARKET ST","SUITE 1300","INDIANAPOLIS","IN","46204",,,,,,,"352049936","3174238980",,,,"2011-10-11T13:49:10-0500","TIM HASELEY",,,,,305,357,29,11,397,0,397,103,7,,"2E2F2G2J2K2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011150844P030024155206001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OPTIONAL HEALTH CARE PLAN FOR FORMER INGRAM ASSOCIATES","554","1998-01-01","INGRAM INDUSTRIES INC.",,,"P. O. BOX 23049","4400 HARDING ROAD","NASHVILLE","TN","372023049",,,,,,,,,,,,,,,,,,"620673043","6152988200","483000","INGRAM INDUSTRIES INC.",,"P. O. BOX 23049","4400 HARDING ROAD","NASHVILLE","TN","372023049",,,,,,,"620673043","6152988200",,,,"2011-10-11T14:41:43-0500","CAROL R. GREER","2011-10-11T14:41:43-0500","CAROL R. GREER",,,91,0,100,0,100,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011131647P040022496226001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"FIRST TEXAS BHC, INC. EMPLOYEE STOCK 0WNERSHIP PLAN","002","2009-01-01","FIRST TEXAS BHC, INC.",,,"4100 INTERNATIONAL PLZ","SUITE 900, TOWER 2","FORT WORTH","TX","761094820",,,,,,,,,,,,,,,,,,"205757645","8172985647","522110","FIRST TEXAS BHC, INC.",,"4100 INTERNATIONAL PLZ","SUITE 900, TOWER 2","FORT WORTH","TX","761094820",,,,,,,"205757645","8172985647",,,,"2011-10-11T13:16:42-0500","CAROL ANDERSON","2011-10-11T13:16:42-0500","CAROL ANDERSON",,,177,179,0,5,184,0,184,184,12,,"2I2O",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011131849P040150258769001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"GLEN RAVEN, INC. EMPLOYEES' 401(K) RETIREMENT SAVINGS PLAN","003","1988-01-01","GLEN RAVEN, INC.",,,"1831 N PARK AVE",,"BURLINGTON","NC","272171137",,,,,,,,,,,,,,,,,,"560481507","3362276211","313000","GLEN RAVEN, INC.",,"1831 N PARK AVE",,"BURLINGTON","NC","272171137",,,,,,,"560481507","3362276211",,,,"2011-10-11T13:18:46-0500","CHRISTOPHER ROACH","2011-10-11T13:18:46-0500","CHRISTOPHER ROACH",,,1886,1577,0,140,1717,6,1723,1575,0,,"2E2F2G2J2K2S2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011131053P040022494722001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EHS-ALASKA, INC. 401(K) PLAN & TRUST","002","2004-01-01","ENVIRONMENTAL HEALTH SCIENCES- ALASKA, INC.",,,"11901 BUSINESS BLVD., SUITE 208",,"EAGLE RIVER","AK","99577",,,,,,,,,,,,,,,,,,"920120819","8003403022","541330","ENVIRONMENTAL HEALTH SCIENCES- ALASKA, INC.",,"11901 BUSINESS BLVD., SUITE 208",,"EAGLE RIVER","AK","99577",,,,,,,"920120819","8003403022",,,,"2011-10-11T13:10:52-0500","ELLEN M CLOUDY",,,,,10,14,1,0,15,0,15,10,0,,"2E2G2J",,"1","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011132335P040022497874007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"OLD DOMINION EMPLOYEE BENEFIT PLAN","501","1984-10-01","OLD DOMINION FREIGHT LINE, INC.",,,"500 OLD DOMINION WAY",,"THOMASVILLE","NC","27360",,,,,,,,,,,,,,,,,,"560751714","3368895000","484110","OLD DOMINION FREIGHT LINE, INC.",,"500 OLD DOMINION WAY",,"THOMASVILLE","NC","27360",,,,,,,"560751714","3368895000",,,,"2011-10-10T06:10:55-0500","KENNETH LUDWIG",,,,,9723,10595,,,10595,,,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011142711P030146732321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUEBLO OF SANDIA COMMERCIAL ENTERPRISES 401(K) PLAN AND TRUST","003","2007-01-01","PUEBLO OF SANDIA",,,"481 SANDIA LOOP",,"BERNALILLO","NM","87004",,,,,,,,,,,,,,,,,,"850223706","5058673317","921000","PUEBLO OF SANDIA",,"481 SANDIA LOOP",,"BERNALILLO","NM","87004",,,,,,,"850223706","5058673317",,,,"2011-10-11T13:31:07-0500","CONNIE TRUJILLO","2011-10-11T13:31:07-0500","CONNIE TRUJILLO",,,2181,1711,0,273,1984,0,1984,1166,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011142717P040150309761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GEORGE W. TRAPP COMPANY DEFINED BENEFIT PLAN AND TRUST","002","1985-01-01","GEORGE W. TRAPP COMPANY",,,"26015 GLENDALE",,"REDFORD","MI","482392759",,,,,,,,,,,,,,,,,,"381961359","3135317180","332900","GEORGE W. TRAPP COMPANY",,"26015 GLENDALE",,"REDFORD","MI","482392759",,,,,,,"381961359","3135317180",,,,"2011-10-11T14:27:19-0500","DARBY ELAND","2011-10-11T14:27:19-0500","DARBY ELAND",,,17,12,0,7,19,0,19,,0,,"1A1G",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011142006P030146727665003","2009-08-01","2010-07-31","2",,,,,,,,,"1",,,"NORTHERN ENTERPRISES FLEXIBLE BENEFIT PLAN","501","1994-09-01","NORTHERN ENTERPRISES, INC",,"DARRELL PATTERSON","8600 NORTH HIGH STREET",,"COLUMBUS","OH","43235",,,,,,,"8600 NORTH HIGH STREET",,"COLUMBUS","OH","43235",,,,,,,"311237700","6144362001","441110","NORTHERNENTERPRISES,INC.","DARRELL PATTERSON","8600 NORTH HIGH STREET",,"COLUMBUS","OH","43235",,,,,,,"311237700","6144362001",,,,"2011-10-11T09:55:31-0500","DARRELL PATTERSON","2011-10-11T09:55:31-0500","DARRELL PATTERSON","2011-10-11T09:55:31-0500","DARRELL PATTERSON",200,183,1,,184,,,,,,,"4A4B4F4H4Q",,,,"1","1",,,,,,,"1",,"1","6",,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111011144504P030021614146001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROTO-MIX, LLC RETIREMENT PLAN","001","1987-08-01","ROTO-MIX, LLC",,,"2205 EAST WYATT EARP BLVD.",,"DODGE CITY","KS","67801",,,,,,,,,,,,,,,,,,"203977759","6202251142","333100","ROTO-MIX, LLC",,"2205 EAST WYATT EARP BLVD.",,"DODGE CITY","KS","67801",,,,,,,"203977759","6202251142",,,,"2011-10-11T14:24:55-0500","RODNEY R. NEIER",,,,,123,77,0,25,102,0,102,102,10,,"2E2J2G2K2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011135100P030146709521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AQUA HOTELS & RESORTS LLC MEDICAL PLAN","501","2003-10-01","AQUA HOTELS & RESORTS LLC",,,"1850 ALA MOANA BOULEVARD",,"HONOLULU","HI","96815",,,,,,,,,,,,,,,,,,"651163911","8087482202","721110","AQUA HOTELS & RESORTS LLC",,"1850 ALA MOANA BOULEVARD",,"HONOLULU","HI","96815",,,,,,,"651163911","8087482202",,,,"2011-10-11T13:45:24-0500","WILLIAM FARNSWORTH","2011-10-11T13:45:24-0500","WILLIAM FARNSWORTH",,,597,608,5,0,613,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011133436P030146700929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KELLSTROM COMMERCIAL & DEFENSE AEROSPACE 401(K) PLAN","001","2002-07-29","KELLSTROM COMMERCIAL AEROSPACE, INC","DBA KELLSTROM INDUSTRIES",,"3701 FLAMINGO RD",,"MIRAMAR","FL","33027",,,,,,,,,,,,,,,,,,"020617973","9545382603","811310","KELLSTROM COMMERCIAL AEROSPACE, INC",,"3701 FLAMINGO RD",,"MIRAMAR","FL","33027",,,,,,,"020617973","9545382603",,,,"2011-10-11T13:27:10-0500","SONJA UPCHURCH",,,,,264,214,0,37,251,0,251,226,10,,"2E2F2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011133825P030146703729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FREY-MOSS STRUCTURES INC. 401K PLAN","001","2002-01-01","FREY-MOSS STRUCTURES INC.",,,"1801 ROCKDALE INDUSTRIAL BOULEVARD",,"CONYERS","GA","30012",,,,,,,,,,,,,,,,,,"581994101","7704837543","332900","FREY-MOSS STRUCTURES INC.",,"1801 ROCKDALE INDUSTRIAL BOULEVARD",,"CONYERS","GA","30012",,,,,,,"581994101","7704837543",,,,"2011-10-11T13:34:20-0500","WILL ATKINSON","2011-10-11T13:34:20-0500","STEVEN FREY",,,111,111,0,50,161,0,161,122,37,,"2E2F2G2J2K2S2T3B3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011131735P030146688577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KINPLEX 401K PLAN","003","1994-01-01","KINPLEX CORPORATION",,,"200 HEARTLAND BLVD.",,"EDGEWOOD","NY","11717",,,,,,,,,,,,,,,,,,"112667922","6312424800","332900","KINPLEX CORPORATION",,"200 HEARTLAND BLVD.",,"EDGEWOOD","NY","11717",,,,,,,"112667922","6312424800",,,,"2011-10-11T13:16:49-0500","DANIEL SCHWARTZ",,,,,283,242,0,26,268,0,268,128,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011131738P040150257377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUDSON VALLEY BONE & JOINT SURGEONS RETIREMENT PLAN","001","1985-12-19","HUDSON VALLEY BONE & JOINT SURGEONS",,,"24 SAW MILL RIVER ROAD, SUITE 204",,"HAWTHORNE","NY","10532",,,,,,,,,,,,,,,,,,"133252106","9146317777","621111","HUDSON VALLEY BONE & JOINT SURGEONS",,"24 SAW MILL RIVER ROAD, SUITE 204",,"HAWTHORNE","NY","10532",,,,,,,"133252106","9146317777",,,,"2011-10-11T13:16:43-0500","ANTHONY MADDALO","2011-10-11T13:16:43-0500","ANTHONY MADDALO",,,24,21,0,3,24,0,24,24,0,,"2A2E2G2R3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011131743P040150257473001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"PUBLIC HEALTH FOUNDATION MONEY PURCHASE PENSION PLAN","001","1981-04-01","PUBLIC HEALTH FOUNDATION",,,"1300 L ST NW STE 800",,"WASHINGTON","DC","200054208",,,,,,,,,,,,,,,,,,"521237297","2022184400","611000","PUBLIC HEALTH FOUNDATION",,"1300 L ST NW STE 800",,"WASHINGTON","DC","200054208",,,,,,,"521237297","2022184400",,,,"2011-10-11T12:48:43-0500","SUE MADDEN",,,,,28,15,0,12,27,0,27,27,1,,"2C2F2G3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011131748P030146688721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUNGO DISTRICT HOSPITAL CORPORATION 401(K) RETIREMENT PLAN","002","1984-09-01","PUNGO DISTRICT HOSPITAL CORPORATION",,,"202 E WATER STREET",,"BELHAVEN","NC","27810",,,,,,,,,,,,,,,,,,"560518757","2529432111","622000","PUNGO DISTRICT HOSPITAL CORPORATION",,"202 E WATER STREET",,"BELHAVEN","NC","27810",,,,,,,"560518757","2529432111",,,,"2011-10-11T13:16:59-0500","JANET ALLEN",,,,,234,172,,92,264,0,264,208,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011135847P030021609058001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACE HARDWARE OF CHATTANOOGA 401(K) PROFIT SHARING PLAN","001","1993-01-01","ACE HARDWARE OF CHATTANOOGA, INC",,,"4921 HIGHWAY 58",,"CHATTANOOGA","TN","37416",,,,,,,,,,,,,,,,,,"620803002","4238996306","444130","ACE HARDWARE OF CHATTANOOGA, INC",,"4921 HIGHWAY 58",,"CHATTANOOGA","TN","37416",,,,,,,"620803002","4238996306",,,,"2011-10-11T13:43:26-0500","EUGENIA CLARKSON","2011-10-11T13:54:35-0500","GRIF GLENN",,,199,191,0,5,196,0,196,112,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111011140432P040022502850001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOON'S PHARMACY, INC. RETIREMENT SAVINGS PLAN","001","2001-05-01","MOONS PHARMACY, INC.",,,"717 2ND ST W",,"TIFTON","GA","317944201",,,,,,,,,,,,,,,,,,"581112641","2293823711","541990","MOONS PHARMACY, INC.",,"717 2ND ST W",,"TIFTON","GA","317944201",,,,,,,"581112641","2293823711",,,,"2011-10-11T14:03:51-0500","CYNTHIA K MOON",,,,,13,12,0,6,18,0,18,17,0,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011140454P040150293601001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SCHILLI GROUP RETIREMENT AND SAVINGS PLAN","001","1993-09-01","SCHILLI CORPORATION",,,"887 BOLGER",,"FENTON","MO","63026",,,,,,,"887 BOLGER",,"FENTON","MO","63026",,,,,,,"431274570","6363431877","484200","SCHILLI CORPORATION",,"887 BOLGER",,"FENTON","MO","63026",,,,,,,"431274570","6363431877",,,,"2011-10-11T14:04:07-0500","KELLY EATON",,,,,483,416,0,20,436,0,436,113,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011140453P040150293537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MORETRENCH AMERICAN CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","006","1999-01-01","MORETRENCH AMERICAN CORPORATION",,,"100 STICKLE AVENUE",,"ROCKAWAY","NJ","078663146",,,,,,,,,,,,,,,,,,"221126840","9736272100","339900","MORETRENCH AMERICAN CORPORATION",,"100 STICKLE AVENUE",,"ROCKAWAY","NJ","078663146",,,,,,,"221126840","9736272100",,,,"2011-10-11T13:10:05-0500","RICHARD TELESMANICH",,,,,403,301,11,92,404,0,404,402,22,,"2E2I2O2P2Q3H",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011141244P030682020448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCDOWELL AND WALKER, INC. 401(K) PROFIT SHARING PLAN","001","1993-01-01","MCDOWELL AND WALKER, INC.",,,"11 MILL STREET","PO BOX 388","AFTON","NY","13730",,,,,,,,,,,,,,,,,,"150569385","6076392331","311200","MCDOWELL AND WALKER, INC.",,"11 MILL STREET","PO BOX 388","AFTON","NY","13730",,,,,,,"150569385","6076392331",,,,"2011-10-11T13:57:07-0500","ROBERT G EVANS",,,,,34,26,0,3,29,0,29,28,1,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011142050P040150306321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CVT SURGICAL CENTER, AMC MONEY PURCHASE PENSION PLAN AND TRUST","001","1971-07-01","CVT SURGICAL CENTER, AMC",,,"7777 HENNESSY BLVD, SUITE 1008",,"BATON ROUGE","LA","70808",,,,,,,,,,,,,,,,,,"720712271","2257660416","621111","CVT SURGICAL CENTER, AMC",,"7777 HENNESSY BLVD, SUITE 1008",,"BATON ROUGE","LA","70808",,,,,,,"720712271","2257660416",,,,"2011-10-11T14:18:36-0500","LANDON JORDAN",,,,,1,1,0,0,1,0,1,1,0,,"2C2F2G2R3B3D3F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011131952P040676276624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASSOCIATED BANC-CORP LONG-TERM DISABILITY BENEFIT PLAN","504","1999-01-01","ASSOCIATED BANC-CORP",,,"1200 HANSEN ROAD","MS 8007","GREEN BAY","WI","543045448",,,,,,,,,,,,,,,,,,"391098068","9204917000","522110","ASSOCIATED BANC-CORP",,"1200 HANSEN ROAD","MS 8007","GREEN BAY","WI","543045448",,,,,,,"391098068","9204917000",,,,"2011-10-11T13:19:23-0500","KATEY SMITH",,,,,4841,4862,0,0,4862,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011131401P040150253537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAVENDER'S BOOT CITY 401(K) RETIREMENT PLAN","002","1992-01-01","CAVENDER STORES, LTD.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"742648471","6207938473","448140","CAVENDER STORES, LTD.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"742648471","6207938473",,,,"2011-10-11T13:10:10-0500","MIKE CAVENDER",,,,,500,402,1,53,456,1,457,205,1,,"2E2F2G2J2K3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011132447P030146693953002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TOSCANA INC 401K PLAN","001","2006-01-01","TOSCANA INC",,,"10 WIND MILL LANE",,"SOUTHAMPTON","NY","11968",,,,,,,,,,,,,,,,,,"201888058","6312878703","722110","TOSCANA INC",,"10 WIND MILL LANE",,"SOUTHAMPTON","NY","11968",,,,,,,"201888058","6312878703",,,,"2011-10-11T02:24:31-0500","WILLIAM OSTER",,,,,8,8,0,0,8,0,8,8,0,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011143534P040676492336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PPHB, LP PENSION PLAN","002","2006-01-01","PPHB, LP",,,"1900 SAINT JAMES PL STE 125",,"HOUSTON","TX","770564147",,,,,,,,,,,,,,,,,,"731664458","7136218100","522298","PPHB, LP",,"1900 SAINT JAMES PL STE 125",,"HOUSTON","TX","770564147",,,,,,,"731664458","7136218100",,,,"2011-10-11T14:25:57-0500","JOE HOEPFL",,,,,8,5,0,3,8,0,8,,0,,"1A1G1I3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011144137P030048597831001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ANESTHESIOLOGY SERVICES, LTD. PROFIT-SHARING PLAN","001","1986-04-01","ANESTHESIOLOGY SERVICES, LTD.",,,"3805 MCCAIN PARK DRIVE, SUITE 105",,"NORTH LITTLE ROCK","AR","72116",,,,,,,,,,,,,,,,,,"710462332","5017714693","621111","MARK MCLEANE, MD, PA",,"3805 MCCAIN PARK DRIVE, SUITE 105",,"NORTH LITTLE ROCK","AR","72116",,,,,,,"710615556","5017714693",,,,"2011-10-11T14:41:14-0500","JEFF ROPER",,,,,31,29,3,0,32,,32,,,,"2E2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111011135528P040150287953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DENTALCARE PARTNERS, INC. FLEXIBLE BENEFITS PLAN","501","1999-01-01","DENTALCARE PARTNERS, INC.",,,"5900 LANDERBROOK DRIVE, SUITE 100",,"MAYFIELD HEIGHTS","OH","44124",,,,,,,,,,,,,,,,,,"341362531","4406846940","621210","DENTALCARE PARTNERS, INC.",,"5900 LANDERBROOK DRIVE, SUITE 100",,"MAYFIELD HEIGHTS","OH","44124",,,,,,,"341362531","4406846940",,,,"2011-10-10T17:54:37-0500","CHRISTINE TSICHLIS",,,,,141,251,0,0,251,,,,,,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-11","Filed with authorized/valid electronic signature",, "20111012153237P030147546081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"NORMAND S BOUCHER DDS PROFIT SAHRING PLAN","001","1992-01-01","NORMAND S BOUCHER DDS",,,"333 WEST LANCASTER AVE",,"WAYNE","PA","19087",,,,,,,,,,,,,,,,,,"270434349","6106883355","621210","NORMAND S BOUCHER DDS",,"333 WEST LANCASTER AVE",,"WAYNE","PA","19087",,,,,,,"270434349","6106883355","NORMAND S BOUCHER DDS","232563117","001","2011-10-12T14:35:06-0500","NORMAND BOUCHER","2011-10-12T14:35:06-0500","NORMAND BOUCHER",,,12,10,0,0,10,0,10,10,0,,"2E2F2G2J2K3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012163046P040680153872001","2010-10-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"FISKER AUTOMOTIVE, INC. RETIREMENT PLAN","001","2010-10-01","FISKER AUTOMOTIVE, INC.",,,"5515 E. LA PALMA",,"ANAHEIM","CA","92807",,,,,,,"5515 E. LA PALMA",,"ANAHEIM","CA","92807",,,,,,,"260689075","7144851287","336100","FISKER AUTOMOTIVE, INC.",,"5515 E. LA PALMA",,"ANAHEIM","CA","92807",,,,,,,"260689075","7144851287",,,,"2011-10-12T16:29:56-0500","SCOTT TRUMAN",,,,,88,98,0,1,99,0,99,88,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012155604P030004392947001","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"GENOVESE & WONNEBERGER, LLC 401(K) PROFIT SHARING PLAN","001","2010-01-01","GENOVESE & WONNEBERGER, LLC",,,"1157 HIGHLAND AVENUE",,"CHESHIRE","CT","06410",,,,,,,,,,,,,,,,,,"061403865","2032502075","541211","GENOVESE & WONNEBERGER, LLC",,"1157 HIGHLAND AVENUE",,"CHESHIRE","CT","06410",,,,,,,"061403865","2032502075",,,,"2011-10-12T04:56:03-0500","JOHN L. WONNEBERGER",,,,,0,6,0,0,6,0,6,4,0,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012171434P040151265265001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"NICOR GAS THRIFT PLAN","008","1978-01-01","NORTHERN ILLINOIS GAS COMPANY DBA NICOR GAS COMPANY",,,"P.O.BOX 190",,"AURORA","IL","605070190",,,,,,,,,,,,,,,,,,"362863847","6309838888","221210","NORTHERN ILLINOIS GAS COMPANY DBA NICOR GAS COMPANY",,"P.O.BOX 190",,"AURORA","IL","605070190",,,,,,,"362863847","6309838888",,,,"2011-10-12T16:52:21-0500","REBECCA C. MEGGESIN","2011-10-12T16:52:21-0500","REBECCA C. MEGGESIN",,,1741,1369,153,288,1810,56,1866,1739,17,,"2E2F2G2J2K2O2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012102842P040678997824001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CARROLLWOOD DAY SCHOOL 401K PROFIT SHARING PLAN","001","1999-03-01","CARROLLWOOD DAY SCHOOL",,,"1515 WEST BEARSS AVE",,"TAMPA","FL","33613",,,,,,,,,,,,,,,,,,"311581952","8139202288","611000","CARROLLWOOD DAY SCHOOL",,"1515 WEST BEARSS AVE",,"TAMPA","FL","33613",,,,,,,"311581952","8139202288",,,,"2011-10-12T10:27:37-0500","MAUREEN CLEMENT",,,,,128,123,0,7,130,0,130,85,4,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012104602P040150940241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PPR2, INC. DEFINED BENEFIT PLAN","001","2005-01-01","PPR2, INC.",,,"5722 I-55 NORTH FRONTAGE ROAD",,"JACKSON","MS","392112638",,,,,,,,,,,,,,,,,,"640916822","6019562028","524210","PPR2, INC.",,"5722 I-55 NORTH FRONTAGE ROAD",,"JACKSON","MS","392112638",,,,,,,"640916822","6019562028",,,,"2011-10-12T10:45:10-0500","RICK EATON",,,,,8,9,0,0,9,0,9,,0,,"1A1G3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012172554P040151272273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INTERNATIONAL PAPER COMPANY NON-UNION SEVERANCE PLAN","961","1991-01-01","INTERNATIONAL PAPER COMPANY",,,"6400 POPLAR AVENUE",,"MEMPHIS","TN","38197",,,,,,,,,,,,,,,,,,"130872805","9014199000","322100","SENIOR VP OF HUMAN RESOURCES C/O EMPLOYEE BENEFITS","INTERNATIONAL PAPER","6400 POPLAR AVENUE",,"MEMPHIS","TN","38197",,,,,,,"132912565","9014199000",,,,"2011-10-12T17:18:12-0500","MARK LEHMAN",,,,,15929,12797,0,0,12797,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012104236P040022597650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AAA NORTH PENN 401K PLAN","002","1984-04-01","AAA NORTH PENN",,,"1035 N. WASHINGTON AVE.",,"SCRANTON","PA","185092917",,,,,,,,,,,,,,,,,,"240637695","5703482567","812990","AAA NORTH PENN",,"1035 N. WASHINGTON AVE.",,"SCRANTON","PA","185092917",,,,,,,"240637695","5703482567",,,,"2011-10-12T10:42:14-0500","MARGARET MCCORMICK",,,,,127,122,0,6,128,0,128,128,0,,"2E2F2G2J2K3H2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012101626P030147292001001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PENSION TRUST PLAN FOR EMPLOYEES OF TUCSON ELECTRIC POWER COMPANY REPRESENTED BY IBEW LOCAL 1116","002","1955-01-01","TUCSON ELECTRIC POWER COMPANY",,,"ONE SOUTH CHURCH AVE, SUITE 200",,"TUCSON","AZ","85701",,,,,,,,,,,,,,,,,,"860062700","5209176603","221100","TUCSON ELECTRIC POWER COMPANY",,"ONE SOUTH CHURCH AVENUE, SUITE 200",,"TUCSON","AZ","85701",,,,,,,"860062700","5209176603",,,,"2011-10-12T10:16:01-0500","STEVE BRACAMONTE",,,,,1353,926,219,201,1346,21,1367,,8,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012102048P040150918209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARNIES, INC. 401(K) PLAN","001","1986-08-01","ARNIES, INC.",,,"815 LEONARD, N.W.",,"GRAND RAPIDS","MI","49504",,,,,,,,,,,,,,,,,,"381781960","6164581107","722110","ARNIES, INC.",,"815 LEONARD, N.W.",,"GRAND RAPIDS","MI","49504",,,,,,,"381781960","6164581107",,,,"2011-10-12T10:18:59-0500","NANCY ZINGER",,,,,249,205,0,7,212,0,212,48,,,"2E2F2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012102057P030147295041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WEIR FLOWAY, INC. PENSION PLAN DBPP","002","1992-01-17","WEIR FLOWAY, INC.",,,"2494 SOUTH RAILROAD AVENUE",,"FRESNO","CA","937065109",,,,,,,,,,,,,,,,,,"770298303","5594424000","333200","WEIR FLOWAY, INC.",,"2494 SOUTH RAILROAD AVENUE",,"FRESNO","CA","937065109",,,,,,,"770298303","5594424000",,,,"2011-10-12T10:18:34-0500","ROBERT MARLOR",,,,,240,45,72,112,229,10,239,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012155612P030147564401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDELA, INC. HEALTH INSURANCE","501","1993-09-01","MEDELA, INC.",,,"1101 CORPORATE DRIVE",,"MCHENRY","IL","600507006",,,,,,,,,,,,,,,,,,"363098932","8153631166","339900","MEDELA, INC.",,"1101 CORPORATE DRIVE",,"MCHENRY","IL","600507006",,,,,,,"363098932","8153631166",,,,"2011-10-12T15:56:11-0500","JODI L. REICH",,,,,232,859,0,0,859,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012170011P040022651602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNFUNDED SEVERANCE PAY SCHEDULE FOR SALARIED EMPLOYEES","507","1987-11-17","PEPSICO, INC.",,,"BRUCE MONTE, JR. 2/2","700 ANDERSON HILL ROAD","PURCHASE","NY","105771444",,,,,,,,,,,,,,,,,,"131584302","9142532000","312110","PEPSICO, INC.",,"700 ANDERSON HILL ROAD",,"PURCHASE","NY","105771444",,,,,,,"131584302","9142532000",,,,"2011-10-12T16:05:16-0500","BRUCE MONTE",,,,,6621,6169,,,6169,,6169,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012151141P030147527009005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PROFESSIONAL STAFF MANAGEMENT, INC. VISION PLAN","506","1992-06-01","PROFESSIONAL STAFF MANAGEMENT, INC.",,,"224 S 5TH ST",,"RICHMOND","IN","47374",,,,,,,,,,,,,,,,,,"351803461","7659351515","812990","PROFESSIONAL STAFF MANAGEMENT, INC.",,"224 S 5TH ST",,"RICHMOND","IN","47374",,,,,,,"351803461","7659351515",,,,"2011-10-12T09:14:32-0500","STACEY WARE",,,,,626,593,0,0,593,,,,,,,"4E","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012151529P030685550400001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PEDIATRIC ASSOCIATES, INC.,EMPLOYEE'S 401-K PLAN","001","1995-01-01","PEDIATRIC ASSOCIATES, INC.",,,"30 MEDICAL CENTER BOULEVARD","SUITE 103","UPLAND","PA","19013",,,,,,,"30 MEDICAL CENTER BOULEVARD","SUITE 103","UPLAND","PA","19013",,,,,,,"231857134","6108745661","621111","NICHOLAS J. CHRISTOS, M.D.",,"30 MEDICAL CENTER BOULEVARD","SUITE 103","UPLAND","PA","19013",,,,,,,"231857134","6108745661",,,,"2011-10-12T14:56:19-0500","NICHOLAS J. CHRISTOS, M.D.",,,,,12,12,0,0,12,0,12,12,0,,"2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012150607P030021742498001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TABORS CARAMANIS & ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","002","2000-01-01","ACROSS THE CHARLES",,"RICHARD TABORS","6 IRVING TERRACE",,"CAMBRIDGE","MA","02138",,,,,,,,,,,,,,,,,,"043036184","6173545304","541990","ACROSS THE CHARLES","RICHARD TABORS","6 IRVING TERRACE",,"CAMBRIDGE","MA","02138",,,,,,,"043036184","6173545304",,,,"2011-10-12T14:53:52-0500","PAUL J. BRENNAN",,,,,9,0,0,9,9,0,9,9,0,,"2A2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012103355P030147303985016","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BENNETT L DUBINER PROFIT SHARING PLAN","001","1978-02-04","BENNETT L DUBINER D D S",,,"450 SUTTER STREET SUITE 2522",,"SAN FRANCISCO","CA","94108",,,,,,,,,,,,,,,,,,"941621370","4154213708","621210","BENNETT L DUBINER D D S",,"450 SUTTER STREET SUITE 2522",,"SAN FRANCISCO","CA","94108",,,,,,,"941621370","4154213708",,,,"2011-10-10T11:51:51-0500","BENNETT L DUBINER DDS",,,,,2,2,,,2,,2,,,,"2G2E2B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012153639P030147549745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDICAL WEIGHT LOSS OF NY PLLC","001","2007-01-01","MEDICAL WEIGHT LOSS OF NY PLLC",,,"8112 CAZENOVIA ROAD",,"MANILUS","NY","131049780",,,,,,,,,,,,,,,,,,"208542739","3156821689","621111","MEDICAL WEIGHT LOSS OF NY PLLC",,"8113 CAZENOVIA ROAD",,"MANILUS","NY","13104",,,,,,,"208542739","3156821689",,,,"2011-10-12T15:29:42-0500","BRYAN WENDEL",,,,,8,6,1,0,7,0,7,7,0,,"2E2F2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012153916P030147551569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRANCES M. JONES, D.D.S., PROFIT SHARING PLAN","001","1984-12-31","FRANCES M. JONES, D.D.S., M.A.G.D.",,,"919 MILAM STREET, STE 110",,"HOUSTON","TX","770025349",,,,,,,,,,,,,,,,,,"760666926","7136551633","621210","FRANCES M. JONES, D.D.S., M.A.G.D.",,"910 TRAVIS ST STE 110",,"HOUSTON","TX","770025813",,,,,,,"760666926","7136551633",,,,"2011-10-12T15:38:06-0500","FRANCES JONES",,,,,8,4,0,5,9,0,9,9,0,,"2E2H2J2K2A2F",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012155646P030685682800001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"BNN HOLDINGS CORPORATION","510","2010-01-01","BNN HOLDINGS CORPORATION",,,"812 AVIS DRIVE",,"ANN ARBOR","MI","48108",,,,,,,"812 AVIS DRIVE",,"ANN ARBOR","MI","48108",,,,,,,"263069941","7342133920","621510","BNN HOLDINGS CORPORATION",,"812 AVIS DRIVE",,"ANN ARBOR","MI","48108",,,,,,,"263069941","7342133920","CALDER DEVELOPMENT ASSOCIATES","382243374","510","2011-10-12T15:47:56-0500","DIPALI CHANG",,,,,141,139,,,139,,139,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012151155P040151162833001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"LABELLE MANAGEMENT 401(K) PROFIT SHARING PLAN","001","1997-05-31","LABELLE MANAGEMENT, INC.",,,"405 SOUTH MISSION",,"MT. PLEASANT","MI","48858",,,,,,,,,,,,,,,,,,"382722014","9897722902","531390","LABELLE MANAGEMENT, INC.",,"405 SOUTH MISSION",,"MT. PLEASANT","MI","48858",,,,,,,"382722014","9897722902",,,,"2011-10-12T14:59:13-0500","THOMAS BINDER",,,,,159,109,0,27,136,0,136,98,3,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012151202P030147527313001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ICEBERG ENTERPRISES, LLC 401K PROFIT SHARING PLAN","001","2001-01-01","ICEBERG ENTERPRISES, LLC",,,"6250 N. RIVER ROAD","SUITE 4040","ROSEMONT","IL","60018",,,,,,,,,,,,,,,,,,"364328546","8476859500","337000","ICEBERG ENTERPRISES, LLC",,"6250 N. RIVER ROAD","SUITE 4040","ROSEMONT","IL","60018",,,,,,,"364328546","8476859500",,,,"2011-10-12T15:10:38-0500","DAVID PARZYNSKI",,,,,34,24,0,4,28,0,28,25,0,,"2E3D2T2J2K3H",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012155144P040151195825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CJ DENTAL, PC 401(K) PLAN","001","2002-01-01","CJ DENTAL, PC",,,"5653 N. CLASSEN",,"OKLAHOMA CITY","OK","73118",,,,,,,,,,,,,,,,,,"731590230","4052329721","621210","CJ DENTAL, PC",,"5653 N. CLASSEN",,"OKLAHOMA CITY","OK","73118",,,,,,,"731590230","4052329721",,,,"2011-10-12T15:51:24-0500","MARY KELLY","2011-10-12T15:51:24-0500","MARY KELLY",,,6,6,0,0,6,0,6,4,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012153932P040151185185001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"REXAM INC. RETIREMENT SAVINGS PLAN","021","1977-01-01","REXAM INC.",,,"4201 CONGRESS STREET, SUITE 340",,"CHARLOTTE","NC","28209",,,,,,,,,,,,,,,,,,"061122239","7045511500","339900","REXAM PENSION & BENEFITS COMMITTEE","C/O REXAM INC.","4201 CONGRESS STREET, SUITE 340",,"CHARLOTTE","NC","28209",,,,,,,"561457480","7045511500",,,,"2011-10-12T15:38:25-0500","CHARLOTTE REILLY","2011-10-12T15:38:25-0500","CHARLOTTE REILLY",,,2423,1396,46,831,2273,4,2277,2269,57,,"2E2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012154528P040011211749001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WAYNE MEMORIAL HOSPITAL, INC. RETIREMENT SAVINGS PLAN","005","2005-01-01","WAYNE MEMORIAL HOSPITAL, INC.",,,"POST OFFICE BOX 8001",,"GOLDSBORO","NC","275338001",,,,,,,"2700 WAYNE MEMORIAL DRIVE",,"GOLDSBORO","NC","275338001",,,,,,,"561484844","9197316142","622000","VICE PRESIDENT - HUMAN RESOURCES","WAYNE MEMORIAL HOSPITAL, INC.","2700 WAYNE MEM DR, PO BOX 8001",,"GOLDSBORO","NC","275338001",,,,,,,"566001545","9197316142",,,,"2011-10-12T15:45:06-0500","RICHARD K. ROGERS",,,,,1454,881,430,215,1526,27,1553,1553,3,,"2A2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012160841P030147574065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BROADWAY FORD TRUCK NADART SALARY DEF 401K PLAN","001","1985-01-01","BROADWAY FORD TRUCK",,,"1501 S 7TH ST.",,"SAINT LOUIS","MO","63104",,,,,,,,,,,,,,,,,,"381774901","3142419140","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T15:59:56-0500","ALAN B. SVEDLOW",,,,,39,29,3,5,37,0,37,34,4,,"2E2J3D2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012160517P040151206433011","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LARRY ROSENTHAL PROFIT SHARING PLAN","001","1985-12-26","LARRY ROSENTHAL",,,"623 N WOOD AVENUE",,"LINDEN","NJ","07036",,,,,,,,,,,,,,,,,,"222561101","9084865278","621210","LARRY ROSENTHAL",,"623 N WOOD AVENUE",,"LINDEN","NJ","07036",,,,,,,"222561101","9084865278",,,,"2011-10-12T15:45:11-0500","LARRY ROSENTHAL",,,,,3,3,,,3,,3,3,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012151210P040151162961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIDCOM CORPORATION 401(K) PROFIT SHARING PLAN","001","1987-01-01","MIDCOM CORPORATION",,,"3995 E LA PALMA AVENUE",,"ANAHEIM","CA","92807",,,,,,,,,,,,,,,,,,"953664813","7149485976","541990","MIDCOM CORPORATION",,"3995 E LA PALMA AVENUE",,"ANAHEIM","CA","92807",,,,,,,"953664813","7149485976",,,,"2011-10-12T15:11:29-0500","PAUL LEONE",,,,,806,1009,0,327,1336,2,1338,452,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012144915P030147510721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PROFESSIONAL SOLUTIONS LLC 401 (K) PLAN","001","2003-05-01","PROFESSIONAL SOLUTIONS LLC",,,"4807 B EISENHOWER AVE.",,"ALEXANDRIA","VA","22304",,,,,,,"4807 B EISENHOWER AVE.",,"ALEXANDRIA","VA","22304",,,,,,,"710866205","7038232696","541990","PROFESSIONAL SOLUTIONS LLC",,"4807 B EISENHOWER AVE.",,"ALEXANDRIA","VA","22304",,,,,,,"710866205","7038232696",,,,"2011-10-12T14:30:04-0500","JAMES CONSOLATI",,,,,121,230,0,43,273,0,273,158,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012103850P030684712096001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"INDATA II, INC. 401(K) PLAN","002","2003-07-01","INDATA II, INC.",,,"169 SOUTH MAIN ST P.M.B 311",,"NEW CITY","NY","10956",,,,,,,,,,,,,,,,,,"205163944","9145526003","541990","INDATA II, INC.",,"169 SOUTH MAIN ST P.M.B 311",,"NEW CITY","NY","10956",,,,,,,"205163944","9145526003",,,,"2011-10-11T05:27:04-0500","STEPHANIE COHEN",,,,,4,4,0,,4,0,4,4,,,"2J2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012152918P030147542801004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JOHN H SEIFERT DMD AND JAY M WYLAM DMD PROFIT SHARING PLAN","002","1988-01-01","JOHN H SEIFERT DMD",,,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,,,,,,,,,,,,"930952133","5035854281","621210","JOHN H SEIFERT DMD",,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"930952133","5035854281",,,,"2011-10-12T15:01:24-0500","JOHN H SEIFERT",,,,,17,19,,2,21,,21,21,,,"2J2F2E",,"1",,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012162541P030147583697001","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"UNITED FOUNDRIES INC. RETIREMENT PLAN INTERNATIONAL ASSOCIATION OF MACHINISTS, LODGE 1019","005","1980-10-01","UNITED FOUNDRIES, INC.",,,"1400 GRACE AVENUE, NE",,"CANTON","OH","44705",,,,,,,,,,,,,,,,,,"251524946","3304562761","331500","UNITED FOUNDRIES, INC.",,"1400 GRACE AVENUE, NE",,"CANTON","OH","44705",,,,,,,"251524946","3304562761",,,,"2011-10-12T16:46:00-0500","MARK REMILLARD",,,,,128,9,93,26,128,,128,,,,"1A1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012164455P030147597761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FARRIS MOTORS, INC. NADART SALARY DEF 401K PLAN","001","1994-01-01","FARRIS MOTORS, INC.",,,"1340 SOUTH WESLEYAN BLVD.",,"ROCKY MOUNT","NC","27803",,,,,,,,,,,,,,,,,,"560488963","2529771340","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T16:40:43-0500","ALAN B. SVEDLOW",,,,,23,18,0,2,20,0,20,15,1,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012163648P040151230097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HARCUM COLLEGE DEFINED CONTRIBUTION 403(B) RETIREMENT PLAN","001","1965-07-01","HARCUM COLLEGE",,,"750 MONTGOMERY AVENUE",,"BRYN MAWR","PA","190103405",,,,,,,,,,,,,,,,,,"231424055","6105266012","611000","HARCUM COLLEGE",,"750 MONTGOMERY AVENUE",,"BRYN MAWR","PA","190103405",,,,,,,"231424055","6105266012",,,,"2011-10-12T14:39:47-0500","JON DETEMPLE",,,,,710,582,0,200,782,0,782,293,0,,"2F2G2L2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012164804P030147599809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACKIE COOPER BMW MINI NADART SALARY DEF 401K PLAN","001","1979-02-01","JACKIE COOPER BMW MINI",,,"6601 SE 29TH ST.",,"MIDWEST CITY","OK","73110",,,,,,,,,,,,,,,,,,"730801003","4057537080","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T16:40:45-0500","ALAN B. SVEDLOW",,,,,70,71,0,2,73,0,73,59,0,,"2E2J3D2K2F2G2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012153403P040151180465001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"RETIREMENT PLAN FOR HOURLY EMPLOYEES OF RAYTHEON NCS-FLORIDA","037","1963-01-01","RAYTHEON COMPANY",,,"870 WINTER STREET",,"WALTHAM","MA","024511449",,,,,,,,,,,,,,,,,,"951778500","7815223000","335900","DEBORAH A. TULLY RAYTHEON COMPANY",,"870 WINTER STREET",,"WALTHAM","MA","024511449",,,,,,,"951778500","7815225080",,,,"2011-10-12T15:33:18-0500","DEBORAH A. TULLY","2011-10-12T15:33:18-0500","DEBORAH A. TULLY",,,964,421,270,227,918,31,949,,0,,"1G1B",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012164109P030685815376001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LUCAS CHEVROLET, INC. NADART SALARY DEF 401K PLAN","001","1998-04-01","LUCAS CHEVROLET, INC.",,,"1622 ROUTE 38",,"LUMBERTON","NJ","08048",,,,,,,,,,,,,,,,,,"223325587","6092670200","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T16:40:41-0500","ALAN B. SVEDLOW",,,,,2,2,0,0,2,0,2,1,0,,"2E2J3D2K2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012164821P040022650898001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"DOWDING INDUSTRIES INC. WELFARE BENEFIT PLAN","501","1997-07-01","DOWDING INDUSTRIES INC.",,,"449 MARILIN STREET",,"EATON RAPIDS","MI","48827",,,,,,,,,,,,,,,,,,"381959120","5176635455","332110","DOWDING INDUSTRIES INC.",,"449 MARILIN STREET",,"EATON RAPIDS","MI","48827",,,,,,,"381959120","5176635455",,,,"2011-10-12T16:45:58-0500","PAULA METTS",,,,,210,263,0,0,263,,,,,,,"4A4B4E4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012150021P040151151937001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"TOXSCAN INC 401K PLAN AND TRUST","001","1992-01-01","TOXSCAN INC",,"M. CARPENTER","P.O. BOX 1040",,"SANTA CRUZ","CA","95061",,,,,,,"344 WASHINGTON STREET",,"SANTA CRUZ","CA","95060",,,,,,,"770094909","8314573950","541990","TOXSCAN INC","MARGARET CARPENTER","P.O. BOX 1040",,"SANTA CRUZ","CA","95061",,,,,,,"770094909","8314573950",,,,"2011-10-11T19:24:51-0500","MARGARET CARPENTER",,,,,5,,,2,2,,2,2,,,"2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012150303P030147518913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENGART AMERICA, INC. 401K PLAN","001","2001-01-01","ENGLO, INC.",,,"PO BOX 1124",,"BECKLEY","WV","258021124",,,,,,,,,,,,,,,,,,"383669735","3042530777","213110","ENGLO, INC.",,"P O BOX 1124",,"BECKLEY","WV","25802",,,,,,,"383669735","3042530777",,,,"2011-10-12T09:09:25-0500","TIM WARDEN",,,,,12,10,0,1,11,0,11,9,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012153653P030147549905001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"KOMYO AMERICA 401(K) RETIREMENT SAVINGS PLAN","001","2006-01-01","KOMYO AMERICA CO., INC.",,,"1765 W PENHALL WAY",,"ANAHEIM","CA","928016728",,,,,,,,,,,,,,,,,,"680510136","7148292300","493100","KOMYO AMERICA CO., INC.",,"1765 W PENHALL WAY",,"ANAHEIM","CA","928016728",,,,,,,"680510136","7148292300",,,,"2011-10-12T15:36:42-0500","BERTHA CALDERA","2011-10-12T15:36:42-0500","BERTHA CALDERA",,,517,454,0,20,474,0,474,421,28,,"2E2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012163513P030147590529002","2010-01-01","2010-12-31","4","M",,,"1",,,,,,,,"SHORT DURATION BOND FUND","313",,"COOPER US INC MASTER TRUST FOR DEFINED BENEFIT PLANS",,,"PO BOX 4446","600 TRAVIS STE 5600","HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"742202805","7132098844",,"COOPER US INC MASTER TRUST FOR DEFINED BENEFIT PLANS",,"PO BOX 4446","600 TRAVIS STE 5600","HOUSTON","TX","77002",,,,,,,"742202805","7132098844",,,,,,,,"2011-10-12T05:35:01-0500","GEORGE MORIARTY",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012160105P030021751314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DUTCH ISHMAEL CHEVROLET NADART SALARY DEF 401K PLAN","001","1997-12-01","DUTCH ISHMAEL CHEVROLET",,,"751 INDIAN MOUND DRIVE",,"MT. STERLING","KY","40353",,,,,,,,,,,,,,,,,,"610429309","8594980424","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T15:59:51-0500","ALAN B. SVEDLOW",,,,,26,24,0,0,24,0,24,24,0,,"2E2J3D2K2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012155449P040022644258001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"MIAMI CORPORATION RETIREMENT PLAN","002","1955-05-01","MIAMI CORPORATION",,"BARBRA GOERING","410 N MICHIGAN AVE","ROOM 590","CHICAGO","IL","60611",,,,,,,"410 N MICHIGAN AVE","ROOM 590","CHICAGO","IL","60611",,,,,,,"361472840","3126446720","523900","MIAMI CORPORATION","BARBRA GOERING","410 N MICHIGAN AVE","ROOM 590","CHICAGO","IL","60611",,,,,,,"361472840","3126446720",,,,"2011-10-12T15:53:18-0500","JOHN RAU",,,,,57,47,8,1,56,1,57,,0,,"1A1G",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012164131P040680183408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPECIAL APPLICATIONS TECHNOLOGY, INC 401(K) PLAN","001","2006-01-01","SPECIAL APPLICATIONS TECHNOLOGY,",,,"3985 S LINCOLN AVENUE STE 100",,"LOVELAND","CO","80537",,,,,,,,,,,,,,,,,,"841215209","9706631431","562000","SPECIAL APPLICATIONS TECHNOLOGY,",,"3985 S LINCOLN AVENUE STE 100",,"LOVELAND","CO","80537",,,,,,,"841215209","9706631431","SPECIAL APPLICATION ROBOTICS INC","841215209","001","2011-10-12T16:40:40-0500","SUZANNE COONS",,,,,154,117,0,26,143,0,143,93,6,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012171629P030685906320001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"PTC THERAPEUTICS INC. 401(K) RETIREMENT SAVINGS PLAN","002","2004-10-31","PTC THERAPEUTICS, INC.",,,"100 CORPORATE COURT",,"SOUTH PLAINFIELD","NJ","07080",,,,,,,"100 CORPORATE COURT",,"SOUTH PLAINFIELD","NJ","07080",,,,,,,"043416587","9082227000","339110","PTC THERAPEUTICS, INC.",,"100 CORPORATE COURT",,"SOUTH PLAINFIELD","NJ","07080",,,,,,,"043416587","9082227000",,,,"2011-10-05T13:19:00-0500","KURT ANDREWS","2011-10-12T14:15:47-0500","MARK BOULDING",,,224,179,0,44,223,0,223,211,10,,"2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012102701P040150924993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCNAUGHTON MCKAY ELECTRIC CO. 401(K) & PROFIT SHARING PLAN","002","1959-12-31","MCNAUGHTON MCKAY ELECTRIC COMPANY",,,"1357 E. LINCOLN AVENUE",,"MADISON HEIGHTS","MI","48071",,,,,,,,,,,,,,,,,,"380812640","2483997500","423600","DONALD D. SLOMINSKI, JR.",,"1357 E. LINCOLN AVENUE",,"MADISON HEIGHTS","MI","48071",,,,,,,"382603463","2485822316",,,,"2011-10-12T10:25:52-0500","DONALD D. SLOMINSKI, JR.","2011-10-12T10:25:52-0500","DONALD D. SLOMINSKI, JR.",,,746,653,0,78,731,1,732,713,13,,"2E2G2J2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012102707P040022595570001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"DST SYSTEMS, INC. MASTER TRUST","005",,"DST SYSTEMS, INC.",,,"333 WEST 11TH STREET, 1ST FLOOR",,"KANSAS CITY","MO","64105",,,,,,,,,,,,,,,,,,"431581814","8164351000",,"DST SYSTEMS, INC.",,"333 WEST 11TH STREET, 1ST FLOOR",,"KANSAS CITY","MO","64105",,,,,,,"431581814","8164351000",,,,,,,,"2011-10-12T10:26:24-0500","GREGG WM. GIVENS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012154625P040022643298001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MENARD, INC. 401(K) PLAN","002","1997-01-01","MENARD, INC.",,,"4777 MENARD DRIVE",,"EAU CLAIRE","WI","54703",,,,,,,,,,,,,,,,,,"390989248","7158762222","444110","MENARD, INC.",,"4777 MENARD DRIVE",,"EAU CLAIRE","WI","54703",,,,,,,"390989248","7158762222",,,,"2011-10-12T15:46:04-0500","JEFF SACIA",,,,,23204,24202,1,167,24370,1,24371,2424,0,,"3D2J2F2G2E3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012154621P040022643282003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SEWICKLEY ACADEMY TAX DEFERRED ANNUITY PLAN","002","1948-02-13","SEWICKLEY ACADEMY",,,"315 ACADEMY AVENUE",,"SEWICKLEY","PA","151431200",,,,,,,,,,,,,,,,,,"250965558","4127412230","611000","JOHN F. DILLON",,"315 ACADEMY AVENUE",,"SEWICKLEY","PA","15143",,,,,,,"250965558","4127412230",,,,"2011-10-12T11:29:17-0500","JOHN F. DILLON",,,,,237,234,,9,243,,243,217,,,"2A2G2L",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012155415P040151198209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHILLIP LEVINE, M.D., A MEDICAL CORPORATION CASH BALANCE PENSION PLAN","001","2001-01-01","PHILLIP LEVINE, M.D., A MEDICAL CORPORATION",,,"8631 WEST THIRD STREET, SUITE 815-E",,"LOS ANGELES","CA","900485901",,,,,,,,,,,,,,,,,,"954150658","3106573145","621111","PHILLIP LEVINE, M.D., A MEDICAL CORPORATION",,"8631 WEST THIRD STREET, SUITE 815-E",,"LOS ANGELES","CA","900485901",,,,,,,"954150658","3106573145",,,,"2011-10-12T15:41:51-0500","PHILLIP LEVINE, MD",,,,,3,2,0,1,3,0,3,,0,,"1B1C1I",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012153959P030021748162001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GHM PROFIT SHARING PLAN","001","1984-01-18","GREENWALD, HOFFMAN, MEYER & MONTES, LLP",,,"500 N. BRAND BLVD, SUITE 920",,"GLENDALE","CA","912033940",,,,,,,,,,,,,,,,,,"951971128","8185078100","541110","GREENWALD, HOFFMAN, MEYER & MONTES, LLP",,"500 N. BRAND BLVD, SUITE 920",,"GLENDALE","CA","912033940",,,,,,,"951971128","8185078100",,,,"2011-10-12T15:32:49-0500","LAWRENCE MEYER",,,,,7,6,0,0,6,0,6,6,0,,"2A2E2G2J2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012155921P030685691168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NAPLETON'S RIVER OAKS NADART PROFIT SHARING PLAN","001","1994-01-01","NAPLETON'S RIVER OAKS",,,"6131 HOHMAN AVE",,"HAMMOND","IN","46320",,,,,,,,,,,,,,,,,,"351854586","2199330600","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T15:59:49-0500","ALAN B. SVEDLOW",,,,,6,0,0,2,2,0,2,2,0,,"2E2K3D2F2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012171028P030685891344007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TRADEWEST BROKERAGE COMPANY PROFIT SHARING PLAN","003","1992-10-01","TRADEWEST BROKERAGE COMPANY",,"JOHN T CRABB","12311 NW JACKSON QUARRY ROAD",,"HILLSBORO","OR","97124",,,,,,,,,,,,,,,,,,"930839695","5035743344","523120","TRADEWEST BROKERAGE COMPANY","JOHN T CRABB","12311 NW JACKSON QUARRY ROAD",,"HILLSBORO","OR","97124",,,,,,,"930839695","5035743344",,,,"2011-10-12T06:58:48-0500","JOHN CRABB",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012150833P030685528320001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERTS TRUCK CENTER DENTAL AND VISION PLAN","502","2007-04-01","ROBERTS TRUCK CENTER HOLDING COMPANY, LLC",,,"4354 CANYON DRIVE",,"AMARILLO","TX","79109",,,,,,,,,,,,,,,,,,"752474834","8063559771","441229","ROBERTS TRUCK CENTER HOLDING COMPANY, LLC",,"4354 CANYON DRIVE",,"AMARILLO","TX","79109",,,,,,,"752474834","8063559771",,,,"2011-10-12T15:08:07-0500","DAVID PARK",,,,,261,300,3,0,303,,,,,,,"4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012152008P040151170033001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","1","0","0","0",,"FIRST WINTHROP CORPORATION 401(K) PLAN","002","1979-01-01","FIRST WINTHROP CORPORATION",,,"P. O. BOX 9507","7 BULFINCH PLACE, SUITE 500","BOSTON","MA","02114",,,,,,,,,,,,,,,,,,"042563478","6175704600","531390","FIRST WINTHROP CORPORATION",,"P. O. BOX 9507","7 BULFINCH PLACE, SUITE 500","BOSTON","MA","02114",,,,,,,"042563478","6175704600",,,,"2011-10-12T15:19:45-0500","TRACEY MARTENSEN","2011-10-11T13:06:07-0500","THOMAS C. STAPLES",,,394,202,0,107,309,0,309,231,0,,"2E2F2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012164152P030685817424001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTH JERSEY TRUCK CENTER, INC. NADART SALARY DEF 401K PLAN","001","1970-10-01","NORTH JERSEY TRUCK CENTER, INC.",,,"236 US HIGHWAY ROUTE 46 EAST",,"SADDLE BROOK","NJ","07663",,,,,,,,,,,,,,,,,,"221588810","9734788802","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T16:40:42-0500","ALAN B. SVEDLOW",,,,,40,31,7,7,45,0,45,32,5,,"2E2J3D2K2F2S",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012163746P030147591553001","2010-04-01","2011-03-31","2",,"0","1","0","0","0","0","0","0","0",,"PAC PAPER HEALTH PLAN","501","2001-04-01","PAC PAPER, INC.",,,"6416 NW WHITNEY ROAD",,"VANCOUVER","WA","98665",,,,,,,,,,,,,,,,,,"910962521","3606957771","333310","PAC PAPER, INC.",,"6416 NW WHITNEY ROAD",,"VANCOUVER","WA","98665",,,,,,,"910962521","3606957771",,,,"2011-10-12T16:37:10-0500","STEVEN MARKS",,,,,104,104,0,0,104,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012145909P030147516193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SILCO OIL CO. 401K PROFIT SHARING PLAN AND TRUST","001","1983-06-01","SILCO OIL COMPANY",,,"181 E. 56TH AVENUE","SUITE 600","DENVER","CO","802161766",,,,,,,,,,,,,,,,,,"840913149","3032920500","447100","SILCO OIL COMPANY",,"181 E. 56TH AVENUE",,"DENVER","CO","802161766",,,,,,,"840913149","3032920500",,,,"2011-10-12T14:51:18-0500","SUSAN VANDERBERG",,,,,163,99,0,33,132,0,132,89,1,,"2E2F2G2J2K3H2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012105345P030147324305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOROUGHBRED RETIREMENT INVESTMENT PLAN OF NORFOLK SOUTHERN CORPORATION & PART. SUBSID. COMPANIES","003","1995-04-01","NORFOLK SOUTHERN CORPORATION",,,"THREE COMMERCIAL PLACE",,"NORFOLK","VA","235102108",,,,,,,,,,,,,,,,,,"521188014","7576642004","551112","BOARD OF MANAGERS THOROUGHBRED RETIREMENT INVESTMENT PLAN",,"THREE COMMERCIAL PLACE",,"NORFOLK","VA","235102108",,,,,,,"521188014","7576642004",,,,"2011-10-12T10:08:39-0500","G. W. DANA, AVP HUMAN RESOURCE SVCS",,,"2011-10-12T10:08:39-0500","G. W. DANA, AVP HUMAN RESOURCE SVCS",18542,17123,0,937,18060,5,18065,13534,0,,"2F2G2I2J2K2O3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20111012105433P030021711442001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORFOLK & WESTERN RAILWAY CO RELIEF FUND","501","1917-07-01","NORFOLK SOUTHERN RAILWAY CO.",,,"THREE COMMERCIAL PLACE",,"NORFOLK","VA","23510",,,,,,,,,,,,,,,,,,"536002016","7576642004","551112","ADVISORY COMMITTEE OF THE NW RELIEF FUND",,"THREE COMMERCIAL PLACE",,"NORFOLK","VA","23510",,,,,,,"536002016","7576642004",,,,"2011-10-12T10:03:19-0500","C. WILLIAMS, DIRECTOR - BENEFITS",,,,,686,0,638,0,638,,,,,,,"4L4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012152303P030147536033007","2010-07-01","2011-06-30","2",,,,,,,,,,,,"PROFIT SHARING PLAN AND TRUST FOR EMPLOYEES OF JOE'S TRUCK PARTS, INC.","001","1977-07-08","JOE'S TRUCK PARTS, INC.",,,"PO BOX 536521",,"ORLANDO","FL","328536521",,,,,,,"PO BOX 536521",,"ORLANDO","FL","328536521",,,,,,,"591745757","4075682148","441300","JOE'S TRUCK PARTS, INC.",,"PO BOX 536521",,"ORLANDO","FL","328536521",,,,,,,"591745757","4075682148",,,,"2011-09-23T11:15:29-0500","JOSEPH DENBERG",,,,,11,6,,5,11,,11,11,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012162359P040151217521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MASTERS SCHOOL 403(B) DC PLAN","001","1924-01-01","MASTERS SCHOOL",,,"49 CLINTON AVENUE",,"DOBBS FERRY","NY","10522",,,,,,,,,,,,,,,,,,"131740472","9144796431","611000","MASTERS SCHOOL",,"49 CLINTON AVENUE",,"DOBBS FERRY","NY","10522",,,,,,,"131740472","9144796431",,,,"2011-10-12T16:22:50-0500","LEWIS WYMAN","2011-10-12T16:22:50-0500","LEWIS WYMAN",,,412,153,0,274,427,0,427,427,0,,"2F2G2L2T",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012155455P030685677072001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"CARSON CITY TOYOTA/CAPITAL FORD, INC. 401(K) PROFIT SHARING PLAN","001","1993-01-01","CAMPAGNI AUTOMOTIVE RESOURCES, INC.",,,"2590 SOUTH CARSON STREET",,"CARSON CITY","NV","89701",,,,,,,"2590 SOUTH CARSON STREET",,"CARSON CITY","NV","89701",,,,,,,"880163011","7758828211","441110","CAMPAGNI AUTOMOTIVE RESOURCES, INC.",,"2590 SOUTH CARSON STREET",,"CARSON CITY","NV","89701",,,,,,,"880163011","7758828211",,,,"2011-10-12T15:54:00-0500","CHERYL KNOX",,,,,114,123,0,11,134,0,134,107,5,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012155458P030147563137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COBLE PENSION GROUP, LLC 401K PROFIT SHARING PLAN","001","1998-01-01","COBLE PENSION GROUP, L.L.C.",,,"4835 E. CACTUS ROAD, SUITE 260",,"SCOTTSDALE","AZ","852544198",,,,,,,,,,,,,,,,,,"860805040","6023075500","561490","COBLE PENSION GROUP, L.L.C.",,"4835 E. CACTUS ROAD, SUITE 260",,"SCOTTSDALE","AZ","852544198",,,,,,,"860805040","6023075500",,,,"2011-10-12T15:54:57-0500","M. RANDY COBLE, JR.",,,,,13,13,0,2,15,0,15,15,0,,"2A2E2F2G2J2K2T3B3D3H",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012165827P040151253361001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SERIOUS MATERIALS, INC. 401(K) PLAN","001","2005-02-04","SERIOUS MATERIAL, INC.",,,"1250 ELKO DRIVE",,"SUNNYVALE","CA","94089",,,,,,,,,,,,,,,,,,"300450655","4085418094","339900","SERIOUS MATERIAL, INC.",,"1250 ELKO DRIVE",,"SUNNYVALE","CA","94089",,,,,,,"300450655","4085418094","SERIOUS MATERIAL INC","300450655","001","2011-10-12T16:56:24-0500","CINDY PHAN",,,,,286,329,0,5,334,0,334,46,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012101948P030147294225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SMP INVESTMENTS 401(K) PLAN","001","2005-05-01","SMP INVESTMENTS",,,"P.O. BOX 2009",,"WAYNE","NJ","07470",,,,,,,,,,,,,,,,,,"223568589","9736960440","523900","SMP INVESTMENTS",,"P.O. BOX 2009",,"WAYNE","NJ","07470",,,,,,,"223568589","9736960440",,,,"2011-10-12T10:19:18-0500","CHRISTINE REICH","2011-10-12T10:19:18-0500","STUART POLEVOV",,,115,120,0,0,120,0,120,120,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012154058P030021748258001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOLINA SALARY SAVINGS PLAN","001","1990-01-01","MOLINA HEALTHCARE, INC.",,,"200 OCEANGATE STE 100",,"LONG BEACH","CA","90802",,,,,,,"200 OCEANGATE STE 100",,"LONG BEACH","CA","90802",,,,,,,"134204626","5624353666","621491","MOLINA HEALTHCARE, INC.",,"200 OCEANGATE STE 100",,"LONG BEACH","CA","90802",,,,,,,"134204626","5624353666",,,,"2011-10-12T15:40:31-0500","CHRISTINE SOTO",,,,,3165,3214,5,389,3608,3,3611,2455,0,,"2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012153158P040022640946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DUBUQUE PODIATRY, INC. PROFIT SHARING PLAN & TRUST","001","1985-01-01","DUBUQUE PODIATRY, INC.",,,"1500 DELHI STREET SUITE 2200",,"DUBUQUE","IA","52001",,,,,,,,,,,,,,,,,,"421448736","5635571430","621391","DUBUQUE PODIATRY, INC.",,"1500 DELHI STREET SUITE 2200",,"DUBUQUE","IA","52001",,,,,,,"421448736","5635571430",,,,"2011-10-12T15:31:07-0500","MICHAEL W. WARD D.P.M.",,,,,23,22,0,0,22,0,22,22,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012153210P040022641010001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAREER STRATEGIES, INC. 401(K) PLAN","001","1995-01-01","CAREER STRATEGIES INCORPORATED",,,"21031 VENTURA BLVD SUITE 1005",,"WOODLAND HILLS","CA","91364",,,,,,,,,,,,,,,,,,"954230596","8188830440","561300","CAREER STRATEGIES INCORPORATED",,"21031 VENTURA BLVD SUITE 1005",,"WOODLAND HILLS","CA","91364",,,,,,,"954230596","8188830440",,,,"2011-10-12T15:31:05-0500","SHELLEY SHUMWAY",,,,,278,211,0,3,214,0,214,26,0,,"3D2E2J3H2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012162744P040680146368001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PETE'S ROAD SERVICE, INC. 401(K) PROFIT SHARING PLAN","001","1985-01-01","PETE'S ROAD SERVICE, INC.",,,"2230 E. ORANGETHORPE AVENUE",,"FULLERTON","CA","92831",,,,,,,,,,,,,,,,,,"952591159","7144461207","441300","PETE'S ROAD SERVICE, INC.",,"2230 E. ORANGETHORPE AVENUE",,"FULLERTON","CA","92831",,,,,,,"952591159","7144461207","PETES ROAD SERVICE, INC.","952591159","001","2011-10-12T16:26:48-0500","KEITH HOLLAND",,,,,210,130,0,76,206,0,206,196,4,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012165307P040022651234001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"MARSHFIELD CLINIC MASTER TRUST","003",,"MARSHFIELD CLINIC",,,"1000 NORTH OAK AVENUE",,"MARSHFIELD","WI","54449",,,,,,,,,,,,,,,,,,"390452970","7153875711",,"MARSHFIELD CLINIC",,"1000 NORTH OAK AVENUE",,"MARSHFIELD","WI","54449",,,,,,,"390452970","7153875711",,,,,,,,"2011-10-12T09:43:25-0500","GARY JANKOWSKI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012171805P040151267585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHCOTT HOSPITALITY INTERNATIONAL 401(K) PROFIT SHARING PLAN","001","1998-01-01","NORTHCOTT HSOPITALITY INTERNATIONAL , LLC",,,"250 LAKE DRIVE E.",,"CHANHASSEN","MN","55317",,,,,,,,,,,,,,,,,,"411988479","9522945203","722110","NORTHCOTT HSOPITALITY INTERNATIONAL , LLC",,"250 LAKE DRIVE E.",,"CHANHASSEN","MN","55317",,,,,,,"411988479","9522945203",,,,"2011-10-12T17:06:20-0500","BRIAN SCHWEN","2011-10-12T17:06:20-0500","BRIAN SCHWEN",,,939,700,2,90,792,0,792,229,100,,"3D2E2J3H2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012172357P030021762034001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHELSEN PACKAGING COMPANY 401K PLAN","001","1969-11-01","MICHELSEN PACKAGING COMPANY",,,"202 NORTH 2ND AVENUE",,"YAKIMA","WA","989020000",,,,,,,,,,,,,,,,,,"910598777","5092486270","322200","MICHELSEN PACKAGING COMPANY",,"202 NORTH 2ND AVENUE",,"YAKIMA","WA","989020000",,,,,,,"910598777","5092486270",,,,"2011-10-12T17:23:33-0500","PENSION FILERS",,,,,194,162,0,25,187,0,187,187,7,,"2A2E2H2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012154648P040151192369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VIJAY K. GARG M.D., INC. PROFIT SHARING PLAN","002","1985-07-01","VIJAY K. GARG M.D., INC.",,,"1687 ERRINGER ROAD 211",,"SIMI VALLEY","CA","93065",,,,,,,"1687 ERRINGER ROAD 211",,"SIMI VALLEY","CA","93065",,,,,,,"953726922","8055223811","621111","VIJAY K. GARG M.D., INC.",,"1687 ERRINGER ROAD 211",,"SIMI VALLEY","CA","93065",,,,,,,"953726922","8055223811",,,,"2011-10-12T15:44:55-0500","VIJAY GARG",,,,,5,5,0,0,5,0,5,5,0,,"2E2F2G2J2T",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012154423P030147556049001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"SW OH REGIONAL COUNCIL OF CARPENTERS PENSION PLAN","001","1964-05-01","SW OH REGIONAL COUNCIL OF CARPENTERS",,,"33 FITCH BOULEVARD",,"AUSTINTOWN","OH","44515",,,,,,,,,,,,,,,,,,"316127287","3302700453","238100","SW OH REGIONAL COUNCIL OF CARPENTERS",,"33 FITCH BOULEVARD",,"AUSTINTOWN","OH","44515",,,,,,,"316127287","3302700453",,,,"2011-10-12T15:43:43-0500","HERB ADAMS","2011-10-12T15:43:43-0500","RANDALL FOX",,,5704,1583,2140,1193,4916,620,5536,,,220,"1B1G",,"1","0","1","0","0","0","1","0","1","1","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012160935P030147574705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BISON MOTOR COMPANY NADART SALARY DEF 401K PLAN","001","1965-02-08","BISON MOTOR COMPANY",,,"500 10TH AVE SOUTH",,"GREAT FALLS","MT","59405",,,,,,,,,,,,,,,,,,"810155710","4067315240","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T15:59:56-0500","ALAN B. SVEDLOW",,,,,47,38,2,4,44,0,44,38,2,,"2E2J3D2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012160420P030147570657001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"LAW OFFICES OF DONALD MOOERS,LLC NADART SALARY DEF 401K PLAN","002","2010-01-01","LAW OFFICES OF DONALD MOOERS,LLC",,,"4630 MONTGOMERY AVE. STE. 510",,"BETHESDA","MD","20814",,,,,,,,,,,,,,,,,,"571146755","3016524488","541110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T15:59:53-0500","ALAN B. SVEDLOW",,,,,5,5,0,0,5,0,5,5,0,,"2E2J3D2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012150906P030147524433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE CENTER FOR HOSPICE & PALLIATIVE CARE, INC.","002","1991-05-01","THE CENTER FOR HOSPICE & PALLIATIVE CARE, INC.",,,"225 COMO PARK BLVD",,"CHEEKTOWAGA","NY","142271480",,,,,,,,,,,,,,,,,,"223141532","7166861900","623000","THE CENTER FOR HOSPICE & PALLIATIVE CARE, INC.",,"225 COMO PARK BLVD",,"CHEEKTOWAGA","NY","142271480",,,,,,,"223141532","7166861900",,,,"2011-10-12T15:08:27-0500","MOLLY STOCK",,,,,619,615,80,0,695,0,695,586,35,,"2E2F2G2J2K3H3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012150926P030685530848001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"THE LANGUAGE CONNECTION LLC RETIREMENT SAVINGS PLAN","003","2010-01-01","THE LANGUAGE CONNECTION LLC",,,"16436 SE 128TH STREET",,"RENTON","WA","98059",,,,,,,,,,,,,,,,,,"911826865","4254131274","611000","THE LANGUAGE CONNECTION LLC",,"16436 SE 128TH STREET",,"RENTON","WA","98059",,,,,,,"911826865","4254131274",,,,"2011-10-12T15:09:00-0500","ALFONSO BENITEZ",,,,,0,5,0,6,11,0,11,11,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012145048P040151145265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MORETRENCH AMERICAN CORPORATION 401(K) PLAN","005","1987-01-01","MORETRENCH AMERICAN CORPORATION",,,"100 STICKLE AVENUE",,"ROCKAWAY","NJ","078663146",,,,,,,,,,,,,,,,,,"221126840","9736272100","238900","MORETRENCH AMERICAN CORPORATION",,"100 STICKLE AVENUE",,"ROCKAWAY","NJ","078663146",,,,,,,"221126840","9736272100",,,,"2011-10-11T09:53:52-0500","RICH TELESMANICH","2011-10-11T09:53:52-0500","RICH TELESMANICH",,,384,356,0,36,392,0,392,261,18,,"2E2F2G2J2K2R2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012154713P040004650515001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"LUCENT TECHNOLOGIES INC. VISION CARE PLAN","507","1996-10-01","ALCATEL-LUCENT USA INC.",,,"600 MOUNTAIN AVENUE, RM 7C-406",,"MURRAY HILL","NJ","07974",,,,,,,,,,,,,,,,,,"223408857","9085827140","334200","ALCATEL-LUCENT USA INC.",,"600 MOUNTAIN AVENUE, RM 7C-406",,"MURRAY HILL","NJ","07974",,,,,,,"223408857","9085827140",,,,"2011-10-12T13:01:49-0500","CASSANDRA LAMMERS",,,,,1742,1346,6,0,1352,,,,,,,"4E","0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012165324P030147603985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NUON, INC. 401(K) PLAN","001","2008-03-19","NUON, INC.",,,"15104 E. RIDGEWAY DR.",,"FOUNTAIN HILLS","AZ","85268",,,,,,,,,,,,,,,,,,"208846154","4808369351","541990","NUON, INC.",,"15104 E. RIDGEWAY DR.",,"FOUNTAIN HILLS","AZ","85268",,,,,,,"208846154","4808369351",,,,"2011-10-12T16:53:23-0500","YU NGAI HUI",,,,,2,7,0,0,7,0,7,2,0,,"2E2G2J2K3D3H2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012151738P030021743730001","2010-04-01","2010-12-31","2",,,,"1","1",,"1",,,,,"FRONTIER DRILLING GROUP HEALTH AND WELFARE PLAN","501","2007-04-01","FRONTIER DRILLING USA, INC.",,,"13135 S. DAIRY ASHFORD, SUITE 800",,"SUGAR LAND","TX","77478",,,,,,,,,,,,,,,,,,"204169717","2812766100","213110","FRONTIER DRILLING USA, INC.",,"13135 S. DAIRY ASHFORD, SUITE 800",,"SUGAR LAND","TX","77478",,,,,,,"204169717","2812766100",,,,"2011-10-12T10:09:59-0500","AMY CATE",,,,,550,0,0,,0,,,,,,,"4A4B4D4E4H4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012151801P040151168225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STANDARDAERO 401K SAVINGS PLAN","001","2004-10-01","STANDARDAERO",,,"1524 WEST 14TH STREET, SUITE 110",,"TEMPE","AZ","85281",,,,,,,,,,,,,,,,,,"521956503","4803773148","488100","STANDARDAERO",,"1524 WEST 14TH STREET, SUITE 110",,"TEMPE","AZ","85281",,,,,,,"521956503","4803773148",,,,"2011-10-12T15:17:24-0500","LOIS LORENTZEN",,,,,2907,2279,5,516,2800,4,2804,2554,71,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012151806P030147531553001","2010-01-01","2010-12-02","2",,"0","0","1","1",,"1",,,,,"CATAWISSA LUMBER & SPECIALTY CO., INC. RETIREMENT SAVINGS PLAN","003","1991-01-01","CATAWISSA LUMBER & SPECIALTY CO., INC.",,,"P.O. BOX 123",,"HUNTINGTON MILLS","PA","18622",,,,,,,"224 PINECREST LANE",,"HUNTINGTON MILLS","PA","18622",,,,,,,"240831816","5708642368","321900","CATAWISSA LUMBER & SPECIALTY CO., INC.",,"P.O. BOX 123",,"HUNTINGTON MILLS","PA","18622",,,,,,,"240831816","5708642368",,,,"2011-10-12T15:16:34-0500","WILLIAM GITTLER JR",,,,,172,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012145753P040151150161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLUE BEACON MINOR MEDICAL PLAN","503","1997-03-31","BLUE BEACON INTERNATIONAL, INC.",,,"500 GRAVES BLVD., P.O. BOX 856",,"SALINA","KS","67402",,,,,,,"MR. MORRIE SODERBERG","P.O. BOX 856","SALINA","KS","67402",,,,,,,"480843137","7858252221","811190","BLUE BEACON INTERNATIONAL, INC.",,"500 GRAVES BLVD., P.O. BOX 856",,"SALINA","KS","67402",,,,,,,"480843137","7858252221",,,,"2011-10-12T14:57:16-0500","MORRIE SODERBERG","2011-10-12T14:57:16-0500","MORRIE SODERBERG",,,1700,1812,,,1812,,,,,,,"4A4B","1",,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012101513P030147291201001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","1","0","0","0",,"COMMUNICATIONS MEDIA, INC. 401K PROFIT SHARING PLAN","001","1996-01-01","COMMUNICATIONS MEDIA, INC.",,,"2200 RENAISSANCE BLVD., SUITE 160",,"KING OF PRUSSIA","PA","19406",,,,,,,,,,,,,,,,,,"521650394","4843220880","541800","COMMUNICATIONS MEDIA, INC.",,"2200 RENAISSANCE BLVD., SUITE 160",,"KING OF PRUSSIA","PA","19406",,,,,,,"521650394","4843220880",,,,"2011-10-12T10:14:13-0500","STANLEY WOODLAND",,,,,137,108,0,28,136,0,136,107,6,,"2A2E2F2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012154733P030685650640001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LYDIG COMPANY RETIREMENT PLAN","001","2007-10-01","LYDIG AVENUE PHARMACY CORP.",,,"742 LYDIG AVENUE",,"BRONX","NY","104622104",,,,,,,,,,,,,,,,,,"412090522","7186788700","446110","LYDIG AVENUE PHARMACY CORP.",,"742 LYDIG AVENUE",,"BRONX","NY","104622104",,,,,,,"412090522","7186788700",,,,"2011-10-12T15:44:40-0500","SIMON GEROV",,,,,4,4,0,0,4,0,4,4,0,,"2E2G2J3D","4B","0","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012152644P040151174913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHNSTON-MCLAMB CASE SOLUTIONS 401(K) PLAN","001","1992-01-01","JOHNSTON-MCLAMB CASE SOLUTIONS, INC",,,"4840 WESTFIELDS BOULEVARD","SUITE 200","CHANTILLY","VA","20151",,,,,,,,,,,,,,,,,,"541593646","7035020901","541511","JOHNSTON-MCLAMB CASE SOLUTIONS, INC",,"4840 WESTFIELDS BOULEVARD","SUITE 200","CHANTILLY","VA","20151",,,,,,,"541593646","7035020901",,,,"2011-10-12T15:25:54-0500","RAFAEL DOMINGUEZ",,,,,218,121,12,81,214,0,214,189,49,,"3D2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012162100P040151215585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CONVATEC INC. SEVERANCE PLAN","502","2008-08-01","CONVATEC INC.",,,"200 HEADQUARTERS PARK DRIVE",,"SKILLMAN","NJ","08558",,,,,,,,,,,,,,,,,,"262734330","9089042436","339110","CONVATEC INC.",,"200 HEADQUARTERS PARK DRIVE",,"SKILLMAN","NJ","08558",,,,,,,"262734330","9089042436",,,,"2011-10-12T16:20:25-0500","STACY CLARK","2011-10-12T16:20:25-0500","STACY CLARK",,,1007,892,17,0,909,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012151038P030147526257001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BRANDON WILDE RETIREMENT SAVINGS PLAN","001","1990-10-01","AUGUSTA RESOURCE CENTER ON AGING, INC.",,,"4275 OWENS RD",,"EVANS","GA","30809",,,,,,,,,,,,,,,,,,"581728812","7068683557","622000","AUGUSTA RESOURCE CENTER ON AGING, INC.",,"4275 OWENS RD",,"EVANS","GA","30809",,,,,,,"581728812","7068683557",,,,"2011-10-12T04:10:25-0500","RICHARD KISNER",,,,,408,166,1,235,402,0,402,234,16,,"2F2G2L2M2T3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012152140P030685570576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MACYS, INC. COMPANY-PAID LIFE INS. PLAN","970","1961-02-01","MACYS, INC.",,,"C/O MACYS CORPORATE SERVICES, INC.","7 WEST SEVENTH STREET","CINCINNATI","OH","45202",,,,,,,,,,,,,,,,,,"133324058","5135797000","452110","MACYS, INC.",,"C/O MACYS CORPORATE SERVICES, INC.","7 WEST SEVENTH STREET","CINCINNATI","OH","45202",,,,,,,"133324058","5135797000",,,,"2011-10-12T15:17:21-0500","STEPHEN J. O'BRYAN, VICE PRESIDENT","2011-10-12T15:17:21-0500","STEPHEN J. O'BRYAN, VICE PRESIDENT",,,40843,34029,0,0,34029,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012144831P030147510257002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PEPPERDINE UNIVERSITY RETIREMENT PLAN","001","1946-09-01","PEPPERDINE UNIVERSITY",,,"24255 PACIFIC COAST HWY",,"MALIBU","CA","90263",,,,,,,,,,,,,,,,,,"951644037","3105064194","611000","PEPPERDINE UNIVERSITY",,"24255 PACIFIC COAST HWY",,"MALIBU","CA","90263",,,,,,,"951644037","3105064194",,,,"2011-10-12T03:48:00-0500","EDNA POWELL",,,,,3039,1311,3,1024,2338,6,2344,2344,0,,"2F2G2L2M2R2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","3","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012112529P030684851360001","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"SAPUTO CHEESE USA INC. BENEFIT PLAN","503","1988-09-03","SAPUTO CHEESE USA INC.",,,"25 TRI-STATE INTERNATIONAL CENTTER","SUITE 250","LINCOLNSHIRE","IL","60069",,,,,,,,,,,,,,,,,,"391629977","8472671100","311500","SAPUTO CHEESE USA INC.",,"25 TRI-STATE INTERNATIONAL CENTTER","SUITE 250","LINCOLNSHIRE","IL","60069",,,,,,,"391629977","8472671100",,,,"2011-10-04T15:43:41-0500","BRUCE UNTERBRUNNER",,,,,2701,2593,39,,2632,,2632,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","8","1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012122749P040151030001008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MATTHEW J. MARKEY, P.A., PROFIT SHARING PLAN AND TRUST","001","1979-04-06","MATTHEW J. MARKEY, M.D., P.A.",,,"1140 TURNER ROAD",,"CUMMING","GA","30041",,,,,,,,,,,,,,,,,,"581370892","7708875521","621111","MATTHEW J. MARKEY, M.D., P.A.",,"1140 TURNER ROAD",,"CUMMING","GA","30041",,,,,,,"581370892","7708875521",,,,"2011-10-07T09:44:18-0500","MATTHEW MARKEY",,,,,3,3,,,3,,3,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012141545P040151115617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMPREHENSIVE DISABILTY PLAN","504","1958-01-19","SOUTHERN CALIFORNIA EDISON CO",,,"P O BOX 800","2244 WALNUT GROVE AVE","ROSEMEAD","CA","917703714",,,,,,,,,,,,,,,,,,"951240335","6263022547","221100","SOUTHERN CALIFORNIA EDISON CO PATRICIA MILLER",,"2244 WALNUT GROVE AVE",,"ROSEMEAD","CA","917703714",,,,,,,"953225971","6263022547",,,,"2011-10-12T13:33:05-0500","PATRICIA MILLER",,,,,18979,20122,,,20122,,,,,,,"4F","0","0","1","1","0","0","1","1","0","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012142957P040151127601001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"PROTOTRON, INC. WELFARE BENEFITS PLAN","508","2002-04-01","PROTOTRON, INC.",,,"15225 NE 95TH STREET",,"REDMOND","WA","98052",,,,,,,,,,,,,,,,,,"911374474","4258237000","334410","PROTOTRON, INC.",,"15225 NE 95TH STREET",,"REDMOND","WA","98052",,,,,,,"911374474","4258237000",,,,"2011-10-12T14:29:07-0500","DAVID A RYDER",,,,,110,116,0,0,116,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012142820P040151126609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EASTER SEAL REHABILITATION CENTER OF GREATER WATERBURY, INC. RETIREMENT PLAN","003","1992-01-01","REHABILITATION CENTER OF GREATER WATERBURY, INC.",,,"22 TOMPKINS STREET",,"WATERBURY","CT","06708",,,,,,,,,,,,,,,,,,"060737391","2037545141","624100","REHABILITATION CENTER OF GREATER WATERBURY, INC.",,"22 TOMPKINS STREET",,"WATERBURY","CT","06708",,,,,,,"060737391","2037545141",,,,"2011-10-12T14:07:42-0500","GARY NIELSEN",,,,,232,119,0,117,236,0,236,235,3,,"2E2G2J2K3D",,"1",,"1",,,,"1",,,,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013082048P030148003425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BARTELS LUTHERAN RETIREMENT COMMUNITY 401(K) PLAN","002","2004-06-01","BARTELS LUTHERAN RETIREMENT COMMUNITY",,,"ATSB, BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"895 MAIN STREET",,"DUBUQUE","IA","520040938",,,,,,,"420752685","8005482995","623000","BARTELS LUTHERAN RETIREMENT COMMUNITY",,"ATSB, BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"420752685","8005482995",,,,"2011-10-13T08:20:38-0500","DEBRA SCHROEDER","2011-10-13T08:20:38-0500","DEBRA SCHROEDER",,,176,157,0,11,168,0,168,87,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012105821P040022599810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNIVERSAL SPC, INC. 401(K) SAVINGS PLAN","001","1996-01-01","GENERAL TECHNOLOGIES, INC.","UNIVERSAL SPC, INC.",,"412 NORTH STATE ST",,"ELGIN","IL","60123",,,,,,,,,,,,,,,,,,"363623123","8478424400","331200","GENERAL TECHNOLOGIES, INC.",,"412 NORTH STATE ST",,"ELGIN","IL","60123",,,,,,,"363623123","8478424400",,,,"2011-10-12T10:57:13-0500","AMARNATH NUGGEHALLI","2011-10-12T10:57:13-0500","AMARNATH NUGGEHALLI",,,101,92,1,2,95,0,95,36,0,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012134959P040022625826001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"LOCAL 553 SCHOLARSHIP FUND","502","1986-12-16","BOARD OF TRUSTEES OF LOCAL 553 SCHOLARSHIP FUND",,,"265 WEST 14TH STREET",,"NEW YORK","NY","10011",,,,,,,,,,,,,,,,,,"133445075","2126275553","454311","BOARD OF TRUSTEES OF LOCAL 553 SCHOLARSHIP FUND",,"265 WEST 14TH STREET",,"NEW YORK","NY","10011",,,,,,,"133445075","2126275553",,,,"2011-10-12T11:28:15-0500","DEMOS DEMOPOULOS","2011-10-12T13:48:05-0500","MICHAEL ROMITA",,,878,808,,,808,,,,,,,"4K","0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013060611P040049885895001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MACE AVENUE MEDICAL, PC 401(K) PROFIT SHARING PLAN AND TRUST","001","2009-01-01","MACE AVENUE MEDICAL, PC",,,"2138 CONTINENTAL AVENUE",,"BRONX","NY","10461",,,,,,,,,,,,,,,,,,"261527454","7188245525","621510","MACE AVENUE MEDICAL, PC",,"2138 CONTINENTAL AVENUE",,"BRONX","NY","10461",,,,,,,"261527454","7188245525",,,,"2011-10-13T07:06:00-0500","ROBERT PINTAURO",,,,,8,7,0,1,8,0,8,8,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012114942P030147366129002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"AIM SERVICES, INC. TSA","001","1988-02-01","AIM SERVICES, INC.",,,"3257 ROUTE 9",,"SARATOGA SPRINGS","NY","12866",,,,,,,,,,,,,,,,,,"141609398","5185873208","623000","AIM SERVICES, INC.",,"3257 ROUTE 9",,"SARATOGA SPRINGS","NY","12866",,,,,,,"141609398","5185873208",,,,"2011-10-12T06:07:54-0500","SANDRA REGAN",,,,,205,131,65,,196,,196,196,,,"2F2G2M3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012115220P030147368465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE OTTERY GROUP SAFE HARBOR 401K PLAN","001","2002-01-01","THE OTTERY GROUP",,,"1810 AUGUST DRIVE",,"SILVER SPRING","MD","20902",,,,,,,,,,,,,,,,,,"522147623","3015621975","541990","THE OTTERY GROUP",,"1810 AUGUST DRIVE",,"SILVER SPRING","MD","20902",,,,,,,"522147623","3015621975",,,,"2011-10-12T11:49:48-0500","ELIZABETH TORP",,,,,8,6,0,1,7,0,7,6,,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012115222P030147368513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHORT-TERM DISABILITY INCOME FOR CERIDIAN EMPLOYEES","514","1977-01-01","CERIDIAN CORPORATION",,,"3311 E. OLD SHAKOPEE ROAD",,"MINNEAPOLIS","MN","554251640",,,,,,,,,,,,,,,,,,"411981625","9528538100","541214","CERIDIAN CORPORATION",,"3311 E. OLD SHAKOPEE ROAD",,"MINNEAPOLIS","MN","554251640",,,,,,,"411981625","9528538100",,,,"2011-10-12T11:51:43-0500","JENNIFER BICHSEL","2011-10-12T11:51:43-0500","JENNIFER BICHSEL",,,5526,4870,0,0,4870,,,,,,,"4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012122545P040151028065001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"ZOOLOGICAL SOCIETY OF SAN DIEGO 403(B) PLAN FOR NON-UNION EMPLOYEES","003","2001-07-01","ZOOLOGICAL SOCIETY OF SAN DIEGO",,,"2920 ZOO DR",,"SAN DIEGO","CA","921011646",,,,,,,,,,,,,,,,,,"951648219","6197443323","712100","ZOOLOGICAL SOCIETY OF SAN DIEGO",,"2920 ZOO DR",,"SAN DIEGO","CA","921011646",,,,,,,"951648219","6197443323","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-10-12T12:25:28-0500","PAULA BROCK","2011-10-12T12:25:28-0500","PAULA BROCK",,,936,864,0,130,994,1,995,569,149,,"2F2G2L2M2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012135419P040022626898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAMB VENTURES, LP 401(K) PROFIT SHARING SAVINGS PLAN","001","1997-10-01","LAMB VENTURES, LP",,,"2100 KRAMER LANE, SUITE 150",,"AUSTIN","TX","78758",,,,,,,,,,,,,,,,,,"320098334","5122572350","441300","LAMB VENTURES, LP",,"2100 KRAMER LANE, SUITE 150",,"AUSTIN","TX","78758",,,,,,,"320098334","5122572350",,,,"2011-10-12T13:53:22-0500","GREGG MURPHY",,,,,205,142,0,52,194,0,194,117,1,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012111503P040150963329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SYSTEM CONTROLS, INC. 401(K) PLAN","001","1996-01-01","SYSTEM CONTROLS, INC.",,,"4901 FIRST AVENUE SOUTH",,"BIRMINGHAM","AL","35222",,,,,,,,,,,,,,,,,,"721372457","2055918655","335900","SYSTEM CONTROLS, INC.",,"4901 FIRST AVENUE SOUTH",,"BIRMINGHAM","AL","35222",,,,,,,"721372457","2055918655",,,,"2011-10-12T11:14:07-0500","WILLIAM B. REED",,,,,33,33,0,2,35,0,35,33,1,,"2G2J2K2E3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012111508P040150963361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAMES MARINE, INC./PADUCAH RIVER SERVICE 401(K) RETIREMENT PLAN","001","1979-01-01","JAMES MARINE, INC.",,,"4500 CLARKS RIVER DRIVE",,"PADUCAH","KY","42003",,,,,,,,,,,,,,,,,,"610526973","2708987392","483000","JAMES MARINE, INC.",,"4500 CLARKS RIVER DRIVE",,"PADUCAH","KY","42003",,,,,,,"610526973","2708987392",,,,"2011-10-12T11:14:08-0500","BRANDON G BUCHANAN",,,,,780,610,2,73,685,0,685,382,121,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012112143P030147343345001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"LIFEPATH 2050 FUND D","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"336370132","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T17:00:00-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012115545P030147371089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALTA GENETICS USA INC. PROFIT SHARING PLAN","001","1989-01-01","ALTA GENETICS USA, INC.",,,"N8350 HIGH ROAD","P.O. BOX 437","WATERTOWN","WI","53094",,,,,,,"N8350 HIGH ROAD","P.O. BOX 437","WATERTOWN","WI","53094",,,,,,,"980169230","4032264293","115210","ALTA GENETICS USA, INC.",,"N8350 HIGH ROAD","P.O. BOX 437","WATERTOWN","WI","53094",,,,,,,"980169230","4032264293",,,,"2011-10-11T17:54:17-0500","MICHELLE KIMBER","2011-10-12T11:51:00-0500","HANS HANNEMA",,,109,91,0,13,104,0,104,82,2,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012143507P040151132465001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CASA PACIFICA 401(K) PLAN","003","2000-07-01","CASA PACIFICA CENTERS FOR CHILDREN AND FAMILIES",,,"1722 SOUTH LEWIS RD",,"CAMARILLO","CA","93012",,,,,,,,,,,,,,,,,,"770195022","8059141227","624100","CASA PACIFICA CENTERS FOR CHILDREN AND FAMILIES",,"1722 SOUTH LEWIS RD",,"CAMARILLO","CA","93012",,,,,,,"770195022","8059141227",,,,"2011-10-12T14:34:57-0500","FELICE GINSBERG",,,,,403,355,6,55,416,0,416,192,23,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012144542P030021739890001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"JOHN H MONTGOMERY, ATTORNEY AT LAW DEFINED BENEFIT PENSION PLAN","003","1997-01-01","JOHN H MONTGOMERY, ATTORNEY AT LAW",,,"101 CONSTITUTION AVENUE, NW","SUITE 900","WASHINGTON","DC","20001",,,,,,,,,,,,,,,,,,"521673928","2029554555","541110","JOHN H MONTGOMERY, ATTORNEY AT LAW",,"101 CONSTITUTION AVENUE, NW","SUITE 900","WASHINGTON","DC","20001",,,,,,,"521673928","2029554555",,,,"2011-10-12T14:44:00-0500","JOHN MONTGOMERY",,,,,5,0,0,0,0,0,0,,0,,"1A3D3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012144603P030021739906001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"THE FRED JONES GROUP SAVINGS AND PROFIT SHARING PLAN","001","1996-01-01","HALL CAPITAL LLC",,,"9225 LAKE HEFNER PKWY SUITE 200",,"OKLAHOMA CITY","OK","73120",,,,,,,"9225 LAKE HEFNER PKWY SUITE 200",,"OKLAHOMA CITY","OK","73120",,,,,,,"760077620","4052312400","336300","HALL CAPITAL LLC",,"9225 LAKE HEFNER PKWY SUITE 200",,"OKLAHOMA CITY","OK","73120",,,,,,,"760077620","4052312400","THE FRED JONES COMPANIES, INC.","760077620","001","2011-10-12T14:41:50-0500","VICKI SCHILLING","2011-10-12T14:44:14-0500","VICKI SCHILLING",,,267,139,10,92,241,3,244,242,5,,"2E2F2G2J2K2T3D3F3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013082131P030148003777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIKART, INC. 401(K) PROFIT SHARING PLAN","002","2000-09-01","MIKART, INC.",,,"1750 CHATTAHOOCHEE AVENUE, NW",,"ATLANTA","GA","30318",,,,,,,,,,,,,,,,,,"581241459","4043514510","325410","MIKART, INC.",,"1750 CHATTAHOOCHEE AVENUE, NW",,"ATLANTA","GA","30318",,,,,,,"581241459","4043514510",,,,"2011-10-13T08:21:25-0500","MIGUEL ARTECHE","2011-10-13T08:21:25-0500","MIGUEL ARTECHE",,,212,180,,17,197,,197,194,14,,"2E2G2J2K3D2F",,"1",,"1",,,,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012121612P040151017473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THERACARE OF NEW YORK, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2003-09-30","THERACARE OF NEW YORK, INC.",,,"1767-22 VETERANS HIGHWAY",,"ISLANDIA","NY","11749",,,,,,,,,,,,,,,,,,"133599274","6318519473","621111","THERACARE OF NEW YORK, INC.",,"1767-22 VETERANS HIGHWAY",,"ISLANDIA","NY","11749",,,,,,,"133599274","6318519473",,,,"2011-10-12T12:15:35-0500","LAUREL LOCASTRO",,,,,597,517,0,53,570,0,570,526,46,,"2P2I3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012113726P040022605250001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OMAHA WORLD-HERALD COMPANY 401(K) PLAN","003","1973-10-01","OMAHA WORLD-HERALD COMPANY",,,"1314 DOUGLAS STREET, SUITE 800",,"OMAHA","NE","68102",,,,,,,,,,,,,,,,,,"470469050","4024441139","511110","OMAHA WORLD-HERALD COMPANY",,"1314 DOUGLAS STREET, SUITE 800",,"OMAHA","NE","68102",,,,,,,"470469050","4024441139",,,,"2011-10-12T11:37:11-0500","JOANNE SLADER",,,,,2504,1914,0,369,2283,6,2289,1616,33,,"2E2G2J2K2F3D3H2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012141202P040151112737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HAMRICKS CORPORATION 401(K) RETIREMENT PLAN FKA HAMRICKS CORPORATION CONSOLIDATED RETIREMENT PLAN","001","1984-01-01","HAMRICKS, INC.",,,"742 PEACHOID ROAD",,"GAFFNEY","SC","29341",,,,,,,,,,,,,,,,,,"570513561","8644877505","448140","HAMRICKS, INC.",,"742 PEACHOID ROAD",,"GAFFNEY","SC","29341",,,,,,,"570513561","8644877505",,,,"2011-10-12T14:07:18-0500","BARRY L. HAMRICK",,,,,905,810,8,148,966,3,969,839,36,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012141207P040679695872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARTIN MARIETTA MATERIALS, INC. GROUP INSURANCE PLAN FOR RETIRED EMPLOYEES","512","1993-01-01","MARTIN MARIETTA MATERIALS",,,"2710 WYCLIFF ROAD",,"RALEIGH","NC","27607",,,,,,,,,,,,,,,,,,"561848578","9197834508","212320","MARTIN MARIETTA MATERIALS",,"2710 WYCLIFF ROAD",,"RALEIGH","NC","27607",,,,,,,"561848578","9197834508",,,,"2011-10-12T14:07:29-0500","THOMAS M. SPANGLER","2011-10-12T14:07:29-0500","THOMAS M. SPANGLER",,,435,0,476,0,476,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012144637P030147508897001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","1","0","0","0",,"INTERCO PRINT GROUP BENEFIT PLAN","501","2006-09-01","INTERCO PRINT",,,"150 GRANBY STREET",,"NORFOLK","VA","23510",,,,,,,"150 GRANBY STREET",,"NORFOLK","VA","23510",,,,,,,"205299565","7573518000","511110","INTERCO PRINT",,"150 GRANBY STREET",,"NORFOLK","VA","23510",,,,,,,"205299565","7573518000",,,,"2011-10-12T10:38:24-0500","TERESA BLEVINS",,,,,246,0,0,,0,,0,,,,,"4A4B4D4E4H4I4L",,,,"1","1",,,"1",,,,,,"0",,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012142545P040151125185006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LUMIS C. BROWN, DDS 401(K) PROFIT SHARING PLAN","001","1990-01-01","LUMIS C. BROWN, DDS",,,"240 SOUTH BROAD STREET",,"CAIRO","GA","39828",,,,,,,"240 SOUTH BROAD STREET",,"CAIRO","GA","39828",,,,,,,"581621825","2293776125","621210","LUMIS C. BROWN, DDS",,"240 SOUTH BROAD STREET",,"CAIRO","GA","39828",,,,,,,"581621825","2293776125",,,,"2011-10-12T10:01:07-0500","LUMIS C BROWN",,,,,9,7,,2,9,,9,9,,,"2E2F2G2J2K2T3B3D",,"1",,"1",,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012105643P040150948177001","2010-04-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"PREFERRED DISTRIBUTORS, LLC 401K PS PLAN","001","2010-04-01","PREFERRED DISTRIBUTORS, LLC",,,"ATSB, PO BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"895 MAIN STREET",,"DUBUQUE","IA","520040938",,,,,,,"271025090","8005482995","424800","PREFERRED DISTRIBUTORS, LLC",,"ATSB, PO BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"271025090","8005482995",,,,"2011-10-12T10:55:51-0500","SCOTT THOMPSON","2011-10-12T10:55:51-0500","SCOTT THOMPSON",,,130,123,6,0,129,0,129,107,0,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012110123P030684774512001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"COREALPHA BOND FUND K","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"680600578","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:58:25-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012110155P030147330513001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"LIFEPATH 2040 FUND T","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"716221459","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:58:27-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012143108P040151128849004","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"INTERACTIVE RETIREMENT PLANS INC. PROFIT SHARING PLAN","001","1992-02-01","INTERACTIVE RETIREMENT PLANS INC.",,,"3026 CREEK WAY CT., SE",,"KENTWOOD","MI","49512",,,,,,,,,,,,,,,,,,"341698191","4198937300","523900","INTERACTIVE RETIREMENT PLANS INC.",,"3026 CREEK WAY CT., SE",,"KENTWOOD","MI","49512",,,,,,,"341698191","4198937300",,,,"2011-10-12T05:25:40-0500","PAMELA A. BEHRENDT",,,,,3,0,,,0,,0,,,,"2E2F2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012142545P040151125185004","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"DICKEN PA PROFIT SHARING","001","1991-12-31","DICKEN PA",,,"1225 EDGEWOOD DRIVE",,"THIEF RIVER FALLS","MN","56701",,,,,,,,,,,,,,,,,,"411599527","2186812020","621320","DICKEN PA",,"1225 EDGEWOOD DRIVE",,"THIEF RIVER FALLS","MN","56701",,,,,,,"411599527","2186812020",,,,"2011-10-12T04:52:51-0500","ROBERT DICKEN",,,,,3,0,,,0,,0,0,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013073731P040151640961009","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"RCCAA RETIREMENT PLAN","001","1995-01-01","RALEIGH COUNTY COMMUNITY ACTION ASSOCIATION, INC.",,,"111 WILLOW LANE",,"BECKLEY","WV","25801",,,,,,,"111 WILLOW LANE",,"BECKLEY","WV","25801",,,,,,,"550480001","3042526396","813000","RALEIGH COUNTY COMMUNITY ACTION ASSOCIATION, INC.",,"111 WILLOW LANE",,"BECKLEY","WV","25801",,,,,,,"550480001","3042526396",,,,"2011-10-11T06:33:54-0500","MARK S. MILLER",,,,,147,127,,23,150,,150,130,14,,"2E2F2G2J2K2T3D",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012110710P030147333937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VIACOM HEALTH PLAN","502","2006-01-01","VIACOM INC.",,,"1515 BROADWAY",,"NEW YORK","NY","10036",,,,,,,,,,,,,,,,,,"203515052","2122586000","515100","RETIREMENT COMMITTEE",,"1515 BROADWAY",,"NEW YORK","NY","10036",,,,,,,"203515052","2128466000",,,,"2011-10-12T10:59:13-0500","JOHN R. JACOBS","2011-10-12T10:59:13-0500","JOHN R. JACOBS",,,7569,7364,155,0,7519,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012111206P030147337905001","2010-01-14","2010-12-31","4","M","1","0","0","1","0","0","0","0","0",,"DODGE AND COX MANAGED FUND","335",,"ABBOTT LABORATORIES",,,"CORPORATE BENEFITS, D-589, AP51","200 ABBOTT PARK ROAD","ABBOTT PARK","IL","600646222",,,,,,,,,,,,,,,,,,"360698440","8479373830",,"ABBOTT LABORATORIES",,"CORPORATE BENEFITS, D-589, AP51","200 ABBOTT PARK ROAD","ABBOTT PARK","IL","600646222",,,,,,,"360698440","8479373830",,,,,,,,"2011-10-12T11:08:42-0500","TIM RICHMOND",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012115017P040150999985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AXXIS CORPORATION 401(K) RETIREMENT PLAN","001","1998-01-01","AXXIS CORPORATION",,,"7375 COMMERCE BOULEVARD",,"CANTON","MI","48187",,,,,,,,,,,,,,,,,,"383314743","7344519730","326100","AXXIS CORPORATION",,"7375 COMMERCE BOULEVARD",,"CANTON","MI","48187",,,,,,,"383314743","7344519730",,,,"2011-10-12T11:48:53-0500","NORMAN R. POINDEXTER",,,,,253,204,0,41,245,5,250,177,120,,"2F2G2J2K3D2T2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012135503P040022627250001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ABTCO, INC. RETIREMENT PLAN","043","1993-01-01","LOUISIANA-PACIFIC CORPORATION",,,"414 UNION STREET, SUITE 2000",,"NASHVILLE","TN","37219",,,,,,,,,,,,,,,,,,"930609074","6159865600","321210","ABTCO, INC. RETIREMENT PLAN ADMINISTRATOR",,"805 SW BROADWAY",,"PORTLAND","OR","972053303",,,,,,,"930670270","5038215100",,,,"2011-10-12T13:54:18-0500","BECKY BARCKLEY","2011-10-12T13:06:54-0500","C. ANN HARRIS",,,1563,425,579,384,1388,125,1513,,0,,"1A1C1G3H1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012111523P040022602066001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"COOPER-STANDARD AUTOMOTIVE INC. PRE-TAX SAVINGS PLAN - GAYLORD","202","1991-01-01","COOPER-STANDARD AUTOMOTIVE INC.",,,"39550 ORCHARD HILL PLACE",,"NOVI","MI","48375",,,,,,,,,,,,,,,,,,"340549970","2485965900","326200","COOPER-STANDARD AUTOMOTIVE INC.",,"39550 ORCHARD HILL PLACE",,"NOVI","MI","48375",,,,,,,"340549970","2485965900",,,,"2011-10-12T11:14:17-0500","THOMAS A. JANDA","2011-10-10T09:39:14-0500","BRAD M. CHAR",,,110,120,0,6,126,0,126,72,0,,"2F2G2J2K2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012111912P030147342097015","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"JORDAN RIVER WOMEN'S HEALTH P.C. 401(K) PROFIT SHARING PLAN","001","2002-02-01","JORDAN RIVER WOMEN'S HEALTH, PC",,,"3584 WEST 9000 SOUTH, SUITE 206",,"WEST JORDAN","UT","84088",,,,,,,,,,,,,,,,,,"870686529","8015612227","621340","JORDAN RIVER WOMEN'S HEALTH, PC",,"3584 WEST 9000 SOUTH, SUITE 206",,"WEST JORDAN","UT","84088",,,,,,,"870686529","8015612227",,,,"2011-10-12T10:21:29-0500","SPENCER COLBY",,,,,9,10,0,0,10,0,10,10,,,"2E2J2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012112201P030012397909001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"SOLOWAY, GOLDSTEIN, SILVERSTEIN & CO., P.C. 401(K) PROFIT SHARING PLAN","001","1993-01-01","SOLOWAY, GOLDSTEIN, SILVERSTEIN & CO., P.C.",,,"275 MADISON AVE, SUITE 1305",,"NEW YORK","NY","100161101",,,,,,,,,,,,,,,,,,"133920818","2126610945","541211","SOLOWAY, GOLDSTEIN, SILVERSTEIN & CO., P.C.",,"275 MADISON AVE, SUITE 1305",,"NEW YORK","NY","100161101",,,,,,,"133920818","2126610945",,,,"2011-10-12T11:16:27-0500","ALAN SILVERSTEIN",,,,,9,0,0,0,0,0,0,0,0,,"2E2J2K2F2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012140822P030021734290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE JENNINGS MCCALL 401K RETIREMENT PLAN","002","1987-05-01","MASONIC & EASTERN STAR HOME OF OREGON",,,"2150 MASONIC WAY",,"FOREST GROVE","OR","971162020",,,,,,,,,,,,,,,,,,"930391591","5033573158","623000","MASONIC & EASTERN STAR HOME OF OREGON",,"2150 MASONIC WAY",,"FOREST GROVE","OR","97116",,,,,,,"930391591","5033573158",,,,"2011-10-12T14:07:36-0500","PAUL TEMPLE",,,,,127,98,0,16,114,0,114,86,3,,"2F2G2J2K2E",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012140823P040151109745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADHESIVES RESEARCH, INC. DEFERRED SAVINGS PLAN","001","1999-07-01","ADHESIVES RESEARCH, INC.",,,"400 SEAKS RUN ROAD",,"GLEN ROCK","PA","17327",,,,,,,,,,,,,,,,,,"231603865","7172357979","323100","ADHESIVES RESEARCH, INC.",,"400 SEAKS RUN ROAD",,"GLEN ROCK","PA","17327",,,,,,,"231603865","7172357979",,,,"2011-10-12T14:01:30-0500","ROBERT VALENTI",,,,,419,357,1,45,403,0,403,327,7,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012144655P030147509057001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"DBT DEVELOPMENT GROUP, LLC 401K PSP","001","2007-05-01","DBT DEVELOPMENT GROUP, LLC",,,"16 8TH ST SE",,"WASHINGTON","DC","200031326",,,,,,,,,,,,,,,,,,"522074039","2025462053","531390","DBT DEVELOPMENT GROUP, LLC",,"16 8TH ST SE",,"WASHINGTON","DC","200031326",,,,,,,"522074039","2025462053",,,,"2011-10-12T14:46:54-0500","DAVID TOLMAN",,,,,11,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012142553P040151125233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RPS/RPH EMPLOYEE SAVINGS PLAN","333","1991-09-01","REAL PROPERTY SERVICES CORP.",,,"818 WEST BROOKS AVENUE",,"N. LAS VEGAS","NV","89030",,,,,,,,,,,,,,,,,,"953562968","7023133700","531390","REAL PROPERTY SERVICES CORP.",,"818 WEST BROOKS AVENUE",,"N. LAS VEGAS","NV","89030",,,,,,,"953562968","7023133700",,,,"2011-10-12T14:25:29-0500","PATRICIA M. GREEN",,,,,860,875,0,23,898,0,898,249,7,,"2E2F2G2J2K3D3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012112743P040150975313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUTCHINSON TECHNOLOGY INCORPORATED SEVERANCE PAY PLAN","506","2000-04-17","HUTCHINSON TECHNOLOGY INCORPORATED",,,"40 WEST HIGHLAND PARK DR. NE",,"HUTCHINSON","MN","55350",,,,,,,"40 WEST HIGHLAND PARK DR. NE",,"HUTCHINSON","MN","55350",,,,,,,"410901840","3205873797","334110","HUTCHINSON TECHNOLOGY INCORPORATED",,"40 WEST HIGHLAND PARK DR. NE",,"HUTCHINSON","MN","55350",,,,,,,"410901840","3205873797",,,,"2011-10-12T11:24:50-0500","CONNIE PAUTZ",,,,,2501,2540,,,2540,,2540,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,"1","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012112806P030684861024001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"INTERNATIONAL SUDAN DIVESTMENT INDEX FUND","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"336379489","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T17:00:21-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012122008P030147386801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"S.S.T. OIL STOCK BONUS E.S.O.P.","001","1994-01-01","S.S.T. OIL","C/O THE PRICE COMPANY",,"5151 N PALM AVENUE, SUITE 920",,"FRESNO","CA","93704",,,,,,,,,,,,,,,,,,"941648583","5592247656","324110","S.S.T. OIL",,"5151 N PALM AVENUE, SUITE 920",,"FRESNO","CA","93704",,,,,,,"941648583","5592247656",,,,"2011-10-12T12:20:01-0500","PAUL F. WELLINGTON","2011-10-12T12:20:01-0500","PAUL F. WELLINGTON",,,53,33,0,14,47,0,47,34,0,,"2I2O3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012141305P040022630098001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONSULTNET VENTURES LLC 401(K) PLAN","001","2005-10-01","CONSULTNET VENTURES LLC",,,"4500 S. LAKESHORE DR.",,"TEMPE","AZ","85282",,,,,,,,,,,,,,,,,,"870657305",,"541519","CONSULTNET VENTURES LLC",,"4500 S. LAKESHORE DR.",,"TEMPE","AZ","85282",,,,,,,"870657305",,,,,"2011-10-12T14:07:57-0500","STEVE BYAS",,,,,184,111,0,55,166,0,166,85,109,,"3D2J2K3B2F2G2E",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012134833P040151093153001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","1","0","0","0",,"LINCOLN BANK EMPLOYEE STOCK OWNERSHIP AND 401(K) SAVINGS PLAN","003","1998-07-01","FIRST MERCHANTS BANK",,,"10333 N. MERIDIAN ST ., STE. 350",,"INDIANAPOLIS","IN","46290",,,,,,,,,,,,,,,,,,"351544218","3178442726","522110","FIRST MERCHANTS BANK",,"10333 N. MERIDIAN ST ., STE. 350",,"INDIANAPOLIS","IN","46290",,,,,,,"351544218","3178442726",,,,"2011-10-12T13:48:15-0500","JENNIFER DAWSON",,,,,153,0,0,0,0,0,0,0,0,,"2E2H2J2K2P3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012134836P030147456353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SILVER CROSS HEALTH SYSTEM, INC. SALARY CONVERSION CAFETERIA PLAN","504","1985-08-01","SILVER CROSS HEALTH SYSTEM, INC.",,,"1200 MAPLE ROAD",,"JOLIET","IL","60432",,,,,,,"1200 MAPLE ROAD",,"JOLIET","IL","60432",,,,,,,"363185353","8157401100","622000","SILVER CROSS HEALTH SYSTEM, INC.",,"1200 MAPLE ROAD",,"JOLIET","IL","60432",,,,,,,"363185353","8157401100",,,,"2011-10-12T13:48:13-0500","DENNIS MINICH",,,,,1372,1354,12,,1366,,1366,,,,,"4A4B4D4L","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012105648P030147326817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUPPLEMENTAL UNEMPLOYMENT BENEFIT PLAN FOR FORMER CONRAIL MAINTENANCE OF WAY EMPLOYEES","515","1999-06-01","NORFOLK SOUTHERN CORPORATION",,,"THREE COMMERCIAL PLACE",,"NORFOLK","VA","23510",,,,,,,,,,,,,,,,,,"521188014","7576642004","551112","EVP - ADMINISTRATION","NORFOLK SOUTHERN CORP","THREE COMMERCIAL PLACE",,"NORFOLK","VA","23510",,,,,,,"521188014","7576642004",,,,"2011-10-12T10:06:04-0500","G. W. DANA, AVP HUMAN RESOURCE SVCS",,,,,861,751,0,0,751,,,,,,,"4C","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012110000P040150950321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SETTOON TOWING, L.L.C. 401(K) PLAN","002","2001-03-01","SETTOON TOWING, L.L.C.",,,"1073 HIGHWAY 70","P.O. BOX 279","PIERRE PART","LA","70339",,,,,,,,,,,,,,,,,,"205696733","9852524499","483000","SETTOON TOWING, L.L.C.",,"1073 HIGHWAY 70","P.O. BOX 279","PIERRE PART","LA","70339",,,,,,,"205696733","9852524499",,,,"2011-10-12T10:59:33-0500","STEPHANIE AUCOIN",,,,,283,220,0,0,220,0,220,0,54,,"3D2J2K3B2F2G2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012113615P030147356145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENVIRONMENTAL COST CONTROL, INC. 401 K PLAN","001","2002-04-01","ENVIRONMENTAL COST CONTROL, INC.",,,"17260 BEAR VALLEY ROAD, SUITE 106",,"VICTORVILLE","CA","92395",,,,,,,,,,,,,,,,,,"330100807","7602415750","561720","ENVIRONMENTAL COST CONTROL, INC.",,"17260 BEAR VALLEY ROAD, SUITE 106",,"VICTORVILLE","CA","92395",,,,,,,"330100807","7602415750",,,,"2011-10-12T11:30:45-0500","STEPHEN HANEY",,,,,48,47,0,5,52,0,52,18,0,,"2E2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012142113P040151120849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PLASKOLITE, INC. & SUBSIDIARIES AMENDED AND RESTATED PROFIT SHARING PLAN","001","1966-04-01","PLASKOLITE, INC.",,,"1770 JOYCE AVENUE",,"COLUMBUS","OH","432191026",,,,,,,,,,,,,,,,,,"314376110","6142943281","326100","PLASKOLITE, INC.",,"1770 JOYCE AVENUE",,"COLUMBUS","OH","432191026",,,,,,,"314376110","6142943281",,,,"2011-10-12T14:19:18-0500","RICHARD LARKIN","2011-10-12T14:19:18-0500","RICHARD LARKIN",,,588,526,1,95,622,2,624,525,19,,"2E2F2H2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012142246P030147488657001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MIDDLESEX WATER COMPANY 401(K) PLAN","003","1982-11-01","MIDDLESEX WATER COMPANY",,,"1500 RONSON ROAD",,"ISELIN","NJ","08830",,,,,,,,,,,,,,,,,,"221114430","7326387502","221300","MIDDLESEX WATER COMPANY",,"1500 RONSON ROAD",,"ISELIN","NJ","08830",,,,,,,"221114430","7326387502",,,,"2011-10-12T14:18:29-0500","A BRUCE OCONNOR",,,,,312,290,0,24,314,0,314,285,7,,"2E2F2G2J2K2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012134854P040151093521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STK VENTURES, INC. PROFIT SHARING PLAN","001","2004-12-01","STK VENTURES, INC.",,,"1982 W. DANBY ROAD",,"NEWFIELD","NY","14867",,,,,,,,,,,,,,,,,,"201946594","6073300300","541990","STK VENTURES, INC.",,"1982 W. DANBY ROAD",,"NEWFIELD","NY","14867",,,,,,,"201946594","6073300300",,,,"2011-10-12T13:37:33-0500","STEVEN KIMMICH",,,,,4,4,,,4,,4,3,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012135633P040151101825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR EMPLOYEES OF ALLIANCEBERNSTEIN L.P.","002","1980-01-01","ALLIANCEBERNSTEIN L.P.",,,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,,,,,,,,,,,,"134064930","2129691000","523900","ALLIANCEBERNSTEIN L.P.",,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,"134064930","2129691000",,,,"2011-10-12T13:55:58-0500","EDWARD J. FARRELL",,,,,1666,438,70,1127,1635,12,1647,,2,,"1A1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012144302P040022633618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MID-SOUTH LUMBER COMPANY OF GEORGIA, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2007-01-01","MID-SOUTH LUMBER COMPANY OF GEORGIA, INC.",,,"6595 MARSHALL BOULEVARD",,"LITHONIA","GA","30058",,,,,,,,,,,,,,,,,,"581580666","7704824800","423300","MID-SOUTH LUMBER COMPANY OF GEORGIA, INC.",,"6595 MARSHALL BOULEVARD",,"LITHONIA","GA","30058",,,,,,,"581580666","7704824800",,,,"2011-10-12T14:27:27-0500","RICHMOND E. PERRY","2011-10-12T14:27:27-0500","RICHMOND E PERRY",,,47,13,0,27,40,1,41,41,2,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013041639P040151557905001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"NOVARTIS PENSION PLANS MASTER TRUST","300",,"NOVARTIS CORPORATION",,,"230 PARK AVENUE, 21ST FLOOR",,"NEW YORK","NY","10169",,,,,,,,,,,,,,,,,,"131834433","2123071122",,"NOVARTIS CORPORATION",,"230 PARK AVENUE, 21ST FLOOR",,"NEW YORK","NY","10169",,,,,,,"131834433","2123071122",,,,,,,,"2011-10-13T04:15:38-0500","WILLIAM A. FLANNERY, EXEC DIRECTOR",,,,,,,,,,,,,"1","0","0","0","1","0","0","0","0","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13",,"Filed with authorized/valid electronic signature", "20111013073844P030049085351001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TIAA-CREF RETIREMENT PLAN","002","1992-01-01","THE GARDEN SCHOOL, INC.",,,"33-16 79TH STREET",,"JACKSON HEIGHTS","NY","113722130",,,,,,,,,,,,,,,,,,"111631783","7183356363","611000","THE GARDEN SCHOOL, INC.",,"33-16 79TH STREET",,"JACKSON HEIGHTS","NY","113722130",,,,,,,"111631783","7183356363",,,,"2011-10-12T15:16:16-0500","RICHARD MAROTTA","2011-10-12T15:16:16-0500","RICHARD MAROTTA",,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013073904P030147976817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TIAA-CREF RETIREMENT PLAN FOR EMPLOYEES OF LENOIR-RHYNE UNIVERSITY","004","1958-03-20","LENOIR-RHYNE UNIVERSITY",,,"PO BOX 7164",,"HICKORY","NC","286037164",,,,,,,,,,,,,,,,,,"560556753","8283281741","611000","LENOIR-RHYNE UNIVERSITY",,"PO BOX 7164",,"HICKORY","NC","286037164",,,,,,,"560556753","8283281741",,,,"2011-10-13T07:38:08-0500","PETER KENDALL",,,,,743,410,0,272,682,0,682,634,0,,"2G2L2M2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","5","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012110759P040022600706001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SHELTERED SAVINGS PLAN OF BANK LEUMI USA","002","1985-01-01","BANK LEUMI USA",,,"420 LEXINGTON AVE., 10TH FLOOR",,"NEW YORK","NY","10170",,,,,,,,,,,,,,,,,,"132614394","9175422345","522190","ADMIN. COMMITTEE OF THE SHELTERED SAVINGS PLAN OF BANK LEUMI",,"420 LEXINGTON AVE.",,"NEW YORK","NY","10170",,,,,,,"133248650","9175422345",,,,"2011-10-12T11:02:25-0500","JOHN MCGANN","2011-10-12T07:42:50-0500","JOHN MCGANN",,,759,441,0,305,746,0,746,737,27,,"2E2F2G2J2K2R2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012111229P040150960577001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"KEIL CHEMICAL PENSION PLAN FOR LOCAL 7-209 EMPLOYEES","019","1975-01-01","DOVER CHEMICAL CORPORATION",,,"3676 DAVIS ROAD NW",,"DOVER","OH","446229771",,,,,,,,,,,,,,,,,,"391205755","8003218805","325100","DOVER CHEMICAL CORPORATION",,"3676 DAVIS ROAD NW",,"DOVER","OH","446229771",,,,,,,"391205755","8003218805",,,,"2011-10-12T11:09:08-0500","BLAISE SARCONE",,,,,160,46,47,61,154,6,160,,1,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012114634P030147364145001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"LIFEPATH INDEX 2055 NON-LENDABLE FUND F","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"271620812","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T17:02:32-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012114903P030021717650001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"KOMAR APPAREL EMPLOYEE'S SAVINGS AND 401(K) PLAN","001","2001-08-01","KOMAR APPAREL",,,"1200 ARTHUR AVE",,"ELK GROVE VILLAGE","IL","60007",,,,,,,"1200 ARTHUR AVE",,"ELK GROVE VILLAGE","IL","60007",,,,,,,"364360503","8474374000","424300","KOMAR APPAREL",,"1200 ARTHUR AVE",,"ELK GROVE VILLAGE","IL","60007",,,,,,,"364360503","8474374000",,,,"2011-10-12T11:48:36-0500","ALBERT ROTHSCHILD",,,,,100,73,0,19,92,0,92,63,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012115122P030147367457001","2010-12-06","2010-12-31","4","C","1","0","0","1","0","0","0","0","0",,"GOVERNMENT/CREDIT BOND INDEX NON-LENDABLE FUND F","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"273432186","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T17:03:47-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012135311P030147459553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILTON RE US HOLDINGS, INC. & AFFILIATES 401(K) RETIREMENT PLAN","001","2005-01-01","WILTON RE US HOLDINGS, INC.",,,"187 DANBURY ROAD","RIVERVIEW BUILDING, 3RD FLOOR","WILTON","CT","06897",,,,,,,,,,,,,,,,,,"320132101","2037624438","524290","WILTON RE US HOLDINGS, INC.",,"187 DANBURY ROAD","RIVERVIEW BUILDING, 3RD FLOOR","WILTON","CT","06897",,,,,,,"320132101","2037624438",,,,"2011-10-12T13:51:48-0500","ENRICO TREGLIA",,,,,273,175,0,90,265,0,265,263,7,,"2E2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013072827P040151637041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"PENSION PLAN OF HARLEYSVILLE GROUP INC AND ASSOCIATED EMPLOYERS","001","1953-01-01","HARLEYSVILLE GROUP INC",,,"355 MAPLE AVENUE",,"HARLEYSVILLE","PA","194382297",,,,,,,"355 MAPLE AVENUE",,"HARLEYSVILLE","PA","194382297",,,,,,,"510241172","2152565076","524150","HARLEYSVILLE GROUP INC",,"355 MAPLE AVENUE",,"HARLEYSVILLE","PA","194382297",,,,,,,"510241172","2152565076",,,,"2011-10-13T07:27:18-0500","ARTHUR E CHANDLER",,,,,4026,1118,1085,1686,3889,87,3976,0,1,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013080156P030687616192001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EAGLE FINANCIAL SERVICES, INC. EMPLOYEE BENEFIT PLAN","501","2010-01-01","EAGLE FINANCIAL SERVICES, INC.",,,"225 MAIN STREET","SUITE I","FLORENCE","KY","41042",,,,,,,"225 MAIN STREET","SUITE I","FLORENCE","KY","41042",,,,,,,"611260290","8595253070","522291","EAGLE FINANCIAL SERVICES, INC.",,"225 MAIN STREET","SUITE I","FLORENCE","KY","41042",,,,,,,"611260290","8595253070",,,,"2011-10-13T07:48:12-0500","EDWARD REYNOLDS","2011-10-13T07:48:48-0500","EDWARD REYNOLDS","2011-10-13T07:43:32-0500","BILLIE ROTERT",84,83,0,0,83,,83,,,,,"4A","1",,,"1","1",,,"1",,,,,"1","1","1","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111012112050P030147342881001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"LIFEPATH 2050 FUND F","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"336370133","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T16:59:58-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012140635P030147470897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAR-PAK","501","1995-06-30","MAR-PAK",,,"519 FORT STREET",,"MARIETTA","OH","45750",,,,,,,"519 FORT STREET",,"MARIETTA","OH","45750",,,,,,,"311108022","7403745893","424100","TERRY O'BRIEN",,"519 FORT STREET",,"MARIETTA","OH","45750",,,,,,,"311108022","7403745893",,,,"2011-10-12T14:06:02-0500","TERRY OBRIEN",,,,,8,8,0,0,8,0,8,0,0,,,"4A","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012141514P040151115153008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"YOUNG RHOADES II, INC. 401(K) PROFIT SHARING PLAN","001","2009-05-13","YOUNG RHOADES, INC.",,,"220 QUINN DRIVE",,"DRIPPING SPRINGS","TX","78620",,,,,,,,,,,,,,,,,,"200076855","5122822341","624410","YOUNG RHOADES, INC.",,"220 QUINN DRIVE",,"DRIPPING SPRINGS","TX","78620",,,,,,,"200076855","5122822341",,,,"2011-10-12T14:07:16-0500","DUFF YOUNG","2011-10-12T14:08:31-0500","DUFF YOUNG",,,16,10,0,0,10,0,10,10,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012141743P030685368128001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ARGUS SOFTWARE, INC. 401(K) PLAN","001","1997-01-01","ARGUS SOFTWARE, INC.",,,"3050 POST OAK BOULEVARD","SUITE 900","HOUSTON","TX","77056",,,,,,,"3050 POST OAK BOULEVARD","SUITE 900","HOUSTON","TX","77056",,,,,,,"752963817","7133413581","541512","ARGUS SOFTWARE, INC.",,"3050 POST OAK BOULEVARD","SUITE 900","HOUSTON","TX","77056",,,,,,,"752963817","7133413581",,,,"2011-10-12T14:16:58-0500","KIM HONG",,,,,168,84,0,66,150,0,150,125,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012143238P030685413168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MISOURCE INC. 401K PLAN","001","2007-01-01","MISOURCE, INC. ATTN MARTY GALLENSTEIN",,,"11940 SHELDON RD",,"TAMPA","FL","33626",,,,,,,,,,,,,,,,,,"593552276","8132869888","541990","MISOURCE, INC. ATTN MARTY GALLENSTEIN",,"11940 SHELDON RD",,"TAMPA","FL","33626",,,,,,,"593552276","8132869888",,,,"2011-10-12T14:31:24-0500","MARK SCHLEIN",,,,,92,309,0,0,309,0,309,40,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012113017P040679192576002","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"PENSION PLAN OF RMI TITANIUM COMPANY","001","1956-09-08","RMI TITANIUM COMPANY",,,"1000 WARREN AVENUE",,"NILES","OH","44446",,,,,,,,,,,,,,,,,,"341913054","3305441005","331400","RMI TITANIUM COMPANY",,"1000 WARREN AVENUE",,"NILES","OH","44446",,,,,,,"341913054","3305441005",,,,"2011-10-12T07:55:37-0500","MICHAEL B. SHAUGHNESSY","2011-10-12T11:22:57-0500","JOHN ROWLAND",,,786,254,272,78,604,153,757,,,,"1A1G3H",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012141754P040151117473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BARRETT & GILMAN PROFIT SHARING PLAN","001","1987-04-01","BARRETT & GILMAN",,,"1000 SECOND AVE STE 3500",,"SEATTLE","WA","98104",,,,,,,,,,,,,,,,,,"911362616","2064641900","541110","BARRETT & GILMAN",,"1000 SECOND AVE STE 3500",,"SEATTLE","WA","98104",,,,,,,"911362616","2064641900",,,,"2011-10-12T14:14:27-0500","THOMAS L. GILMAN",,,,,5,3,0,0,3,0,3,3,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012134856P040151093553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NAP TOOLS, LLC PROFIT SHARING & RETIREMENT PLAN","001","1977-04-01","NAP TOOLS, LLC",,,"1180 WERNSING ROAD, P.O. BOX 647",,"JASPER","IN","475470647",,,,,,,,,,,,,,,,,,"202129737","8124822000","332900","NAP TOOLS, LLC",,"1180 WERNSING ROAD, P.O. BOX 647",,"JASPER","IN","475470647",,,,,,,"202129737","8124822000",,,,"2011-10-12T13:47:46-0500","DAVID SMITH",,,,,266,233,0,38,271,2,273,175,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012135120P030147458353001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"HORIZON FOREST PRODUCTS / LONG FLOORING 401(K) PLAN","002","2008-01-06","HORIZON FOREST PRODUCTS, L.P.",,,"4115 COMMODITY PKWY",,"RALEIGH","NC","27610",,,,,,,"4115 COMMODITY PKWY",,"RALEIGH","NC","27610",,,,,,,"621534131","7166492850","444190","HORIZON FOREST PRODUCTS, L.P.",,"4115 COMMODITY PKWY",,"RALEIGH","NC","27610",,,,,,,"621534131","7166492850",,,,"2011-10-12T13:50:55-0500","DAVID WILLIAMS",,,,,104,103,0,5,108,0,108,60,4,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013063218P030004406755001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OMNI CABLE CORPORATION RETIREMENT SAVINGS PLAN","001","1992-01-01","OMNI CABLE CORPORATION",,,"2 HAGERTY BLVD",,"WEST CHESTER","PA","19382",,,,,,,,,,,,,,,,,,"232110530","6107010100","423600","OMNI CABLE CORPORATION",,"2 HAGERTY BLVD",,"WEST CHESTER","PA","19382",,,,,,,"232110530","6107010100",,,,"2011-10-12T16:01:33-0500","SEAN P. MOONEY",,,,,247,217,0,56,273,0,273,188,4,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012113917P030147358369001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"BLACKROCK MSCI EAFE SMALL CAP EQUITY INDEX NON-LENDABLE FUND","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"270306770","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T17:01:28-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012114327P030147361025001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"EMERGING MARKETS SMALL CAPITALIZATION EQUITY INDEX NON-LENDABLE FUND B","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"300577764","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T17:02:09-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012114337P040150992241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHAEL BEST & FRIEDRICH EMPLOYEES' PENSION PLAN","003","1986-01-01","MICHAEL BEST & FRIEDRICH",,,"100 EAST WISCONSIN AVENUE",,"MILWAUKEE","WI","53202",,,,,,,,,,,,,,,,,,"390934985","4142716560","541110","MICHAEL BEST & FRIEDRICH",,"100 EAST WISCONSIN AVENUE",,"MILWAUKEE","WI","53202",,,,,,,"390934985","4142716560",,,,"2011-10-12T11:43:06-0500","BRIAN J. AMMERMAN",,,,,764,386,81,269,736,8,744,,31,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012114338P040150992257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SEITLIN 401(K) SALARY REDUCTION PLAN AND TRUST","002","1992-01-01","SEITLIN & COMPANY",,,"6700 N. ANDREWS AVENUE, SUITE 300",,"FT. LAUDERDALE","FL","33309",,,,,,,,,,,,,,,,,,"592231013","9542678600","524210","SEITLIN & COMPANY",,"6700 N. ANDREWS AVENUE, SUITE 300",,"FT. LAUDERDALE","FL","33309",,,,,,,"592231013","9542678600",,,,"2011-10-12T11:42:52-0500","KELLY BLEEKER",,,,,151,109,0,30,139,0,139,115,9,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012114342P040022606178001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"FERRO CORPORATION MASTER TRUST","039",,"FERRO CORPORATION",,,"1000 LAKESIDE AVENUE",,"CLEVELAND","OH","441141183",,,,,,,,,,,,,,,,,,"340217820","2166418580",,"FERRO CORPORATION",,"1000 LAKESIDE AVENUE",,"CLEVELAND","OH","441141183",,,,,,,"340217820","2166418580",,,,"2011-10-12T11:43:17-0500","RAND HAIMES",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012135712P040049691239001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EBANKS TAYLOR HORNE LLP PROFIT SHARING PLAN","001","2004-01-01","EBANKS TAYLOR HORNE LLP",,,"1301 MCKINNEY STE2700",,"HOUSTON","TX","77010",,,,,,,,,,,,,,,,,,"200123950","7133334500","541110","EBANKS TAYLOR HORNE LLP",,"1301 MCKINNEY STE2700",,"HOUSTON","TX","77010",,,,,,,"200123950","7133334500",,,,"2011-10-12T13:57:08-0500","KEVIN J. BARR",,,,,23,18,0,4,22,0,22,22,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013074300P040151645169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SEVERANCE PAY PLAN OF MICHIGAN TEAMSTERS JOINT COUNCIL 43 FLAT B","333","1974-01-01","MICHIGAN TEAMSTERS JOINT COUNCIL 43",,,"2741 TRUMBULL AVENUE",,"DETROIT","MI","482161270",,,,,,,,,,,,,,,,,,"386304341","3139652025","813000","MICHIGAN TEAMSTERS JOINT COUNCIL 43",,"2741 TRUMBULL AVENUE",,"DETROIT","MI","482161270",,,,,,,"386304341","3139652025",,,,"2011-10-13T07:42:55-0500","DAVID ROBINSON",,,,,123,77,36,10,123,0,123,,,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012110825P040150956369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACKMONT HOSPITALITY 401(K)","001","2001-01-01","JACKMONT HOSPITALITY, INC",,,"100 PEACHTREE STREET NORTHWEST","SUITE 2200","ATLANTA","GA","30303",,,,,,,,,,,,,,,,,,"421561435","4045235744","722110","JACKMONT HOSPITALITY, INC",,"100 PEACHTREE STREET NORTHWEST","SUITE 2200","ATLANTA","GA","30303",,,,,,,"421561435","4045235744",,,,"2011-10-12T11:02:52-0500","SHAWN CRENSHAW","2011-10-12T11:02:52-0500","SHAWN CRENSHAW",,,1456,478,0,22,500,0,500,71,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012114427P030684912560001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"J.R. GROUP, INC. 401(K) PLAN","002","1994-07-01","J.R. GROUP, INC.",,,"1230 ROUTE 73 S.",,"MT. LAUREL","NJ","08054",,,,,,,"1230 ROUTE 73 S.",,"MT. LAUREL","NJ","08054",,,,,,,"223478814","8566382304","441110","J.R. GROUP, INC.",,"1230 ROUTE 73 S.",,"MT. LAUREL","NJ","08054",,,,,,,"223478814","8566382304",,,,"2011-10-12T11:40:16-0500","CHRISTINE BASILE",,,,,341,351,0,31,382,2,384,196,3,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012114659P030147364321001","2010-04-22","2010-12-31","4","C","1","0","0","1","0","0","0","0","0",,"BLACKROCK MSCI ACWI EQUITY INDEX FUND","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"271709876","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-11T17:02:37-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012114715P040150995889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VIRACOR MANAGEMENT, LLC 401(K) PLAN","001","2000-01-01","VIRACOR-IBT LABORATORIES, INC.",,,"1001 NW TECHNOLOGY DRIVE",,"LEES SUMMIT","MO","64086",,,,,,,,,,,,,,,,,,"270218809","8163470113","621510","VIRACOR-IBT LABORATORIES, INC.",,"1001 NW TECHNOLOGY DRIVE",,"LEES SUMMIT","MO","64086",,,,,,,"270218809","8163470113",,,,"2011-10-12T11:46:12-0500","MATTHEW URBANEK",,,,,131,124,0,9,133,0,133,126,7,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012114720P030147364625001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"COMMUNITY PARTNERSHIP OF SOUTHERN ARIZONA 401(K) PLAN","001","1996-07-01","COMMUNITY PARTNERSHIP OF SOUTHERN ARIZONA",,,"535 N WILMOT ROAD, SUITE 201",,"TUCSON","AZ","85711",,,,,,,,,,,,,,,,,,"860792518","5203186904","813000","COMMUNITY PARTNERSHIP OF SOUTHERN ARIZONA",,"535 N WILMOT ROAD, SUITE 201",,"TUCSON","AZ","85711",,,,,,,"860792518","5203186904",,,,"2011-10-12T11:42:42-0500","CHARLES ANDRADE",,,,,336,231,46,0,277,0,277,274,11,,"2A2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012135331P040022626690001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BCF SOLUTIONS 401(K) PLAN","001","2004-01-01","BCF SOLUTIONS, INC",,,"14325 WILLIARD ROAD, SUITE 107",,"CHANTILLY","VA","20151",,,,,,,,,,,,,,,,,,"043768223","7038179490","541330","BCF SOLUTIONS, INC",,"14325 WILLIARD ROAD, SUITE 107",,"CHANTILLY","VA","20151",,,,,,,"043768223","7038179490",,,,"2011-10-12T13:53:12-0500","JANICE KI",,,,,134,84,0,36,120,0,120,98,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012140327P040151106625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARAMARK CORPORATION DENTAL PLAN","545","2009-09-01","ARAMARK CORPORATION",,,"1101 MARKET STREET",,"PHILADELPHIA","PA","191072988",,,,,,,,,,,,,,,,,,"952051630","2152383230","722300","BENEFITS COMPLIANCE REVIEW COMMITTEE OF ARAMARK CORPORATION",,"1101 MARKET STREET",,"PHILADELPHIA","PA","191072988",,,,,,,"952051630","2152387197",,,,"2011-10-12T13:42:53-0500","VALERIE WANDLER",,,,,31245,33718,393,,34111,,,,,,,"4D","1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012141134P040151112385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IMPERIAL PLASTICS, INC. SAVINGS INCENTIVE PROFIT S","001","1985-09-01","IMPERIAL PLASTICS, INC.",,,"21320 HAMBURG AVENUE WEST",,"LAKEVILLE","MN","55044",,,,,,,,,,,,,,,,,,"411857952","6124694951","326100","IMPERIAL PLASTICS, INC.",,"21320 HAMBURG AVENUE WEST",,"LAKEVILLE","MN","55044",,,,,,,"411857952","6124694951",,,,"2011-10-12T14:06:46-0500","NORMAN V. OBERTO","2011-10-12T14:06:46-0500","NORMAN V OBERTO",,,118,105,0,6,111,0,111,110,5,,"2E2J2F2G2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012111636P040150964641001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NEWSBANK RETIREMENT SAVINGS PLAN","001","1990-01-01","NEWSBANK, INC.",,,"5801 PELICAN BAY BOULEVARD","SUITE 600","NAPLES","FL","34108",,,,,,,"5801 PELICAN BAY BOULEVARD","SUITE 600","NAPLES","FL","34108",,,,,,,"061084869","2392636004","519100","NEWSBANK, INC.",,"5801 PELICAN BAY BOULEVARD","SUITE 600","NAPLES","FL","34108",,,,,,,"061084869","2392636004",,,,"2011-10-12T11:12:26-0500","DALE WILLIAMSON",,,,,349,300,0,44,344,1,345,265,11,,"2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012115507P040022607906001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"NEW JERSEY BUILDING LABORERS STATEWIDE WELFARE FUND","501","1965-01-01","BOARD OF TRUSTEES, NEW JERSEY BLDG STATEWIDE WELFARE FD",,,"3218 KENNEDY BLVD.",,"JERSEY CITY","NJ","073063416",,,,,,,,,,,,,,,,,,"221764453","2019630633","525100","BOARD OF TRUSTEES, NEW JERSEY BLDG STATEWIDE WELFARE FD",,"3218 KENNEDY BLVD.",,"JERSEY CITY","NJ","073063416",,,,,,,"221764453","2019630633",,,,"2011-10-12T11:54:33-0500","CAROL WESTFALL",,,,,4155,2309,1150,0,3459,0,,,,887,,"4A4B4D4E4U","0","0","1","0","1","0","1","0","0","0","0","1","0","1","3","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012120240P040151009665001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"THE CAMELOT GROUP 401(K) SAVINGS PLAN","001","2004-01-01","SPEARS HOLDING COMPANY, INC.",,,"2 WASHINGTON STREET","7TH FLOOR","NEW YORK","NY","10004",,,,,,,"2 WASHINGTON STREET","7TH FLOOR","NEW YORK","NY","10004",,,,,,,"200668794","2126352770","517000","SPEARS HOLDING COMPANY, INC.",,"2 WASHINGTON STREET","7TH FLOOR","NEW YORK","NY","10004",,,,,,,"200668794","2126352770",,,,"2011-10-12T11:03:31-0500","CATHERINE CAMMARANO",,,,,80,75,0,8,83,0,83,59,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012120323P030147376801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOLDMAN, MAGDALIN & KRIKES, LLP 401(K) PROFIT SHARING PLAN","001","2000-04-01","GOLDMAN, MAGDALIN & KRIKES, LLP",,,"500 E. ESPLANADE DRIVE, #400",,"OXNARD","CA","93036",,,,,,,,,,,,,,,,,,"770523476","8057777008","541110","GOLDMAN, MAGDALIN & KRIKES, LLP",,"500 E. ESPLANADE DRIVE, #400",,"OXNARD","CA","93036",,,,,,,"770523476","8057777008",,,,"2011-10-12T11:58:59-0500","RICHARD GOLDMAN",,,,,137,126,0,25,151,0,151,125,0,,"2E2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012141142P040151112449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOTAL SAFETY U. S., INC. 401K RETIREMENT PLAN","001","2004-01-01","TOTAL SAFETY U. S., INC.",,,"11111 WILCREST GREEN, SUITE 300",,"HOUSTON","TX","77042",,,,,,,,,,,,,,,,,,"371478877","7133537100","339900","TOTAL SAFETY U. S., INC.",,"11111 WILCREST GREEN, SUITE 300",,"HOUSTON","TX","77042",,,,,,,"371478877","7133537100",,,,"2011-10-12T14:06:57-0500","TONI WATSON","2011-10-12T14:06:57-0500","TONI WATSON",,,1106,819,0,190,1009,0,1009,622,82,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013082853P030687687776001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNITED MINERALS COMPANY 401K RETIREMENT PLAN","001","1997-08-01","UNITED MINERALS COMPANY LLC",,,"P.O. BOX 400",,"HUNTINGBURG","IN","47542",,,,,,,,,,,,,,,,,,"351922432","8126834644","212110","UNITED MINERALS COMPANY LLC",,"P.O. BOX 400",,"HUNTINGBURG","IN","47542",,,,,,,"351922432","8126834644",,,,"2011-10-13T08:28:08-0500","GREGORY OLINGER","2011-10-13T08:28:08-0500","GREGORY OLINGER",,,232,208,0,21,229,0,229,195,3,,"2E2F2G2J2K2T3D3H",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012165107P030685844352001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JIM SATCHER, INC NADART SALARY DEF 401K PLAN","001","1999-01-01","JIM SATCHER, INC",,,"511 CALHOUN STREET",,"JOHNSTON","SC","29832",,,,,,,,,,,,,,,,,,"570443765","8032752576","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T16:40:47-0500","ALAN B. SVEDLOW",,,,,9,4,0,3,7,0,7,7,2,,"2E2J3D2K2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012174410P040151281793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RESEARCH FINANCIAL STRATEGIES, INC. DB PLAN","002","2000-01-01","RESEARCH FINANCIAL STRATEGIES, INC.",,,"9600 BLACKWELL ROAD, SUITE 101",,"ROCKVILLE","MD","20850",,,,,,,,,,,,,,,,,,"521783490","3012947500","541990","RESEARCH FINANCIAL STRATEGIES, INC.",,"9600 BLACKWELL ROAD, SUITE 101",,"ROCKVILLE","MD","20850",,,,,,,"521783490","3012947500",,,,"2011-10-12T17:43:11-0500","PATTI RAWLINGS",,,,,14,10,,4,14,0,14,,0,,"1A3D1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012184954P040151325345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DEARTH MOTORS, INC NADART PENSION PLAN","001","1974-01-01","DEARTH MOTORS, INC",,,"520 8TH ST.",,"MONROE","WI","53566",,,,,,,,,,,,,,,,,,"390884530","6083253181","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T18:44:48-0500","ALAN B. SVEDLOW",,,,,27,21,7,1,29,0,29,24,0,,"2C2K3D2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012190158P040151330401001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","1","0","0",,"AURIONPRO SOLUTIONS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","AURIONPRO SOLUTIONS INC",,,"2410 CAMINO RAMON STE 339",,"SAN RAMON","CA","94583",,,,,,,,,,,,,,,,,,"421684127","9252422345","511210","AURIONPRO SOLUTIONS INC",,"2410 CAMINO RAMON STE 339",,"SAN RAMON","CA","94583",,,,,,,"421684127","9252422345",,,,"2011-10-12T19:01:42-0500","KADY COOPER",,,,,117,136,0,3,139,0,139,23,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","0","0",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012175120P040151289409001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"COLT S MANUFACTURING COMPANY, LLC BARGAINING UNIT EMPLOYEES' PENSION PLAN","003","1990-03-01","COLTS MANUFACTURING COMPANY, LLC",,,"P.O. BOX 1868, HARTFORD, CT 06144",,"WEST HARTFORD","CT","061101336",,,,,,,"545 NEW PARK AVENUE",,"WEST HARTFORD","CT","061101336",,,,,,,"421589139","8602441466","332900","COLTS MANUFACTURING COMPANY, LLC",,"P.O. BOX 1868, HARTFORD, CT 06144",,"WEST HARTFORD","CT","061101336",,,,,,,"421589139","8602441466",,,,"2011-10-12T17:50:17-0500","JIMMY A. TIPTON","2011-10-12T17:50:17-0500","JIMMY A. TIPTON",,,273,116,126,69,311,12,323,,0,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012175123P040680355840001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NORTHERN CALIFORNIA IMAGING ASSOCIATES MEDICAL GROUP, INC. PROFIT SHARING PLAN","001","2004-01-01","NORTHERN CALIFORNIA IMAGING ASSOCIATES MEDICAL GROUP, INC.",,,"P. O. BOX 3194",,"NAPA","CA","94558",,,,,,,,,,,,,,,,,,"510476249","7072563800","621111","NORTHERN CALIFORNIA IMAGING ASSOCIATES MEDICAL GROUP, INC.",,"P. O. BOX 3194",,"NAPA","CA","94558",,,,,,,"510476249","7072563800",,,,"2011-10-12T17:50:35-0500","INGO O. RENCKEN, M.D.","2011-10-12T17:50:35-0500","INGO O. RENCKEN, M.D.",,,9,9,0,0,9,0,9,9,0,,"2A2E2F2G2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012180650P040151297905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOULDER COMMUNITY HOSPITAL 403(B) PLAN","002","1991-04-01","BOULDER COMMUNITY HOSPITAL",,,"NORTH BROADWAY AT BALSAM","PO BOX 9019","BOULDER","CO","803019019",,,,,,,,,,,,,,,,,,"840175870","3034402158","622000","BOULDER COMMUNITY HOSPITAL",,"NORTH BROADWAY AT BALSAM","PO BOX 9019","BOULDER","CO","803019019",,,,,,,"840175870","3034402158",,,,"2011-10-12T18:06:06-0500","LAURIE P. GLASSCOCK",,,,,2465,1216,0,301,1517,0,1517,1461,0,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012200520P040151356145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"W. T. WAGGONER ESTATE EMPLOYEES RETIREMENT PLAN","001","1948-01-31","W. T. WAGGONER ESTATE",,,"1700 DEAF SMITH",,"VERNON","TX","763844629",,,,,,,,,,,,,,,,,,"750634500","9405522521","112111","W. T. WAGGONER ESTATE",,"1700 DEAF SMITH",,"VERNON","TX","763844629",,,,,,,"750634500","9405522521",,,,"2011-10-12T17:05:09-0500","JOEL R. LOVELADY",,,,,111,105,2,0,107,1,108,,1,,"1A1G3D",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013080018P040151654625004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KARMAN RUBBER CO. RETIREMENT PLAN/HOURLY EMPLOYEES","001","1977-12-30","KARMAN RUBBER COMPANY",,,"2331 COPLEY ROAD",,"AKRON","OH","44320",,,,,,,,,,,,,,,,,,"340668027","3308642161","326200","KARMAN RUBBER COMPANY",,"2331 COPLEY ROAD",,"AKRON","OH","44320",,,,,,,"340668027","3308642161",,,,"2011-10-03T16:30:38-0500","DAVID MANN",,,,,62,21,8,37,66,1,67,,,,"1G",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012170948P040151263105001","2010-12-31","2010-12-31","2",,"0","0","0","1","0","1","0","0","0",,"YESHIVA UNIVERSITY AFTER TAX ANNUITY PLAN","005","1994-12-31","YESHIVA UNIVERSITY",,,"1300 MORRIS PARK AVE RM 1203",,"BRONX","NY","104611900",,,,,,,,,,,,,,,,,,"131624225","7184302457","611000","YESHIVA UNIVERSITY",,"1300 MORRIS PARK AVE RM 1203",,"BRONX","NY","104611900",,,,,,,"131624225","7184302457",,,,"2011-10-12T15:00:11-0500","MICHAEL BLOOM",,,,,1186,734,1,451,1186,0,1186,1186,0,,"2E2F2G3C",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012180428P030147646865015","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"HANKS CONSTRUCTION LLC 401K PLAN & TRUST","001","2004-01-01","HANKS CONSTRUCTION, LLC",,,"P O BOX 132",,"WHITEHOUSE","TX","75791",,,,,,,,,,,,,,,,,,"752576226","9038392564","236110","HANKS CONSTRUCTION LLC",,"P O BOX 132",,"WHITEHOUSE","TX","75791",,,,,,,"752576226","9038392564",,,,"2011-10-12T17:48:33-0500","DILLON HANKS",,,,,4,3,,1,4,,4,4,,,"3D2R2J2G2E",,,,"1",,,,"1",,"1",,,,"1",,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012182502P040151311057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FAULKNER CADILLAC, INC. NADART SALARY DEF 401K PLAN","001","1981-04-01","FAULKNER CADILLAC, INC.",,,"4447 E. STREET ROAD",,"TREVOSE","PA","19053",,,,,,,,,,,,,,,,,,"232139345","2156399700","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T18:18:06-0500","ALAN B. SVEDLOW",,,,,65,66,0,5,71,0,71,62,1,,"2E2J3D2K2F2G2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013081339P040022713154001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HICKMAN FOODS, INC. EMPLOYEE RETIREMENT PLAN","001","1994-07-01","HICKMAN FOODS, INC.",,,"500 W. JACKSON","P. O. BOX 497","MEXICO","MO","652650497",,,,,,,,,,,,,,,,,,"430976635","5735815520","445110","HICKMAN FOODS, INC.",,"500 W. JACKSON","P. O. BOX 497","MEXICO","MO","652650497",,,,,,,"430976635","5735815520",,,,"2011-10-13T08:07:27-0500","JIM HICKMAN",,,,,137,128,0,9,137,0,137,60,3,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012191758P030147677809001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1","0","0","0",,"NORTH COAST MEDICAL, INC. SAVINGS AND RETIREMENT PLAN","002","1990-01-01","NORTH COAST MEDICAL, INC.",,,"8100 CAMINO ARROYO",,"GILROY","CA","95020",,,,,,,,,,,,,,,,,,"942910749","8008219319","446190","NORTH COAST MEDICAL, INC.",,"8100 CAMINO ARROYO",,"GILROY","CA","95020",,,,,,,"942910749","8008219319",,,,"2011-10-12T19:14:27-0500","CHERI KOEHLER",,,,,119,82,,32,114,,114,84,0,,"2E2F2G2K",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012175826P040151294369001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"USMD INC. 401(K) PLAN","001","2004-06-01","USMD INC.",,,"6333 N. STATE HWY 161 SUITE 200",,"IRVING","TX","75038",,,,,,,,,,,,,,,,,,"208050318","2144934030","622000","USMD INC.",,"6333 N. STATE HWY 161 SUITE 200",,"IRVING","TX","75038",,,,,,,"208050318","2144934030",,,,"2011-10-12T17:07:21-0500","ALEX STEFANOWICZ",,,,,570,530,0,50,580,0,580,453,59,,"2E2F2G2J2K2S2T3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012184319P040022662866001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"STABLE VALUE FUND","001",,"UNION BOND & TRUST COMPANY",,,"1300 SW FIFTH AVE SUITE 3300",,"PORTLAND","OR","97201",,,,,,,,,,,,,,,,,,"936274329","5034849300",,"UNION BOND & TRUST COMPANY",,"1300 SW FIFTH AVE SUITE 3300",,"PORTLAND","OR","97201",,,,,,,"936274329","5034849300",,,,,,,,"2011-10-12T15:41:53-0500","JOANN YATES",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012173907P030147630657001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"VISION CENTER OPTICIANS PROFIT SHARING TRUST","001","1991-01-01","VISION CENTER OPTICIANS",,,"13808 GEORGIA AVENUE",,"SILVER SPRING","MD","20906",,,,,,,"13808 GEORGIA AVENUE",,"SILVER SPRING","MD","20906",,,,,,,"526180677","3018716454","621320","SAME",,"13808 GEORGIA AVENUE",,"SILVER SPRING","MD","20906",,,,,,,"526180677","3018716454",,,,"2011-10-08T17:37:34-0500","KENNETH J WATTER CPA CFP","2011-10-08T17:37:34-0500","KENNETH J WATTER CPA CFP","2011-10-08T17:37:34-0500","KENNETH J WATTER CPA CFP",4,4,0,0,4,0,4,4,0,,"2E3F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111012105151P030147322897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MALLICK PLUMBING & HEATING, INC. PREVAILING WAGE PLAN","002","2009-01-01","MALLICK PLUMBING & HEATING, INC.",,,"8010 CESSNA DRIVE",,"GAITHERSBURG","MD","20879",,,,,,,,,,,,,,,,,,"521964567","3018405860","238220","MALLICK PLUMBING & HEATING, INC.",,"8010 CESSNA DRIVE",,"GAITHERSBURG","MD","20879",,,,,,,"521964567","3018405860",,,,"2011-10-12T10:51:25-0500","KENNETH MALLICK JR.",,,,,26,41,0,0,41,0,41,41,0,,"2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012183825P040022662546001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOTEL VALLEY HO 401(K) PLAN","001","2006-10-01","MSR PROPERTIES, LLC",,,"6850 E. MAIN STREET",,"SCOTTSDALE","AZ","85251",,,,,,,,,,,,,,,,,,"043674031","4802482020","721110","MSR PROPERTIES, LLC",,"6850 E. MAIN STREET",,"SCOTTSDALE","AZ","85251",,,,,,,"043674031","4802482020",,,,"2011-10-12T18:38:07-0500","LAURA CAMARILLO","2011-10-12T18:38:07-0500","STEPHEN BYRUM",,,207,179,0,19,198,0,198,72,37,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012182104P040151309249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHEAST ORTHOPAEDICS & SPORTS MEDICINE LLP 401K","001","2000-01-01","NORTHEAST ORTHOPAEDICS & SPORTS MEDICINE, LLP",,,"12709 TOEPPERWEIN RD 101",,"SAN ANTONIO","TX","78233",,,,,,,,,,,,,,,,,,"743025288","2104775151","621111","NORTHEAST ORTHOPAEDICS & SPORTS MEDICINE, LLP",,"12709 TOEPPERWEIN RD 101",,"SAN ANTONIO","TX","78233",,,,,,,"743025288","2104775151",,,,"2011-10-12T18:20:16-0500","MARSHALL O'DOWD",,,,,44,31,0,7,38,0,38,31,19,,"2E2G2J2K2F3D2A",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012180443P030147646993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MERCED AUTO CARS, INC. DBA MERCED TOYOTA NADART SALARY DEF 401K PLAN","001","2009-01-01","MERCED AUTO CARS, INC. DBA MERCED T",,,"1400 AUTO CENTER DRIVE",,"MERCED","CA","95341",,,,,,,,,,,,,,,,,,"770585754","2094447422","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T17:56:15-0500","ALAN B. SVEDLOW",,,,,74,55,1,1,57,0,57,30,5,,"2E2J3D2K2G3H2S",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012181128P030147649377001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ACTIVELY MANAGED FUND","001",,"UNION BOND & TRUST COMPANY",,,"1300 SW FIFTH AVE. SUITE 300",,"PORTLAND","OR","97201",,,,,,,,,,,,,,,,,,"931187980","5034849300",,"UNION BOND & TRUST COMPANY",,"1300 SW FIFTH AVE. SUITE 300",,"PORTLAND","OR","97201",,,,,,,"931187980","5034849300",,,,,,,,"2011-10-12T15:23:25-0500","JOANN YATES",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111012204342P030686363200001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"3D CAPITAL FUND LTD.","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"980608924","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-12T20:38:49-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111013074508P040151645905005","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"BURKE DENTAL CARE PROFIT SHARING PLAN","001","2007-01-01","DIEU MIA PHAM DDS PC",,,"8989 FERN PARK DRIVE",,"BURKE","VA","22015",,,,,,,,,,,,,,,,,,"204002127","7039386660","621210","DIEU MIA PHAM DDS PC",,"8989 FERN PARK DRIVE",,"BURKE","VA","22015",,,,,,,"204002127","7039386660",,,,"2011-10-13T07:42:56-0500","DIEU MIA PHAM",,,,,2,0,0,0,0,0,0,,,,"2E",,,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012230405P030147765601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FARMINGTON COUNTRY CLUB RETIREMENT PLAN","003","1991-01-01","FARMINGTON COUNTRY CLUB",,,"1625 COUNTRY CLUB CIRCLE",,"CHARLOTTESVILLE","VA","22901",,,,,,,,,,,,,,,,,,"540540028","4342450677","713900","FARMINGTON COUNTRY CLUB",,"1625 COUNTRY CLUB CIRCLE",,"CHARLOTTESVILLE","VA","22901",,,,,,,"540540028","4342450677",,,,"2011-10-12T14:06:41-0500","ROY BREWER",,,,,390,155,0,79,234,0,234,225,6,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012182122P040022661010001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AAA OREGON/IDAHO RETIREMENT PLAN","001","1962-04-01","AAA OREGON/IDAHO",,,"600 SW MARKET ST",,"PORTLAND","OR","97201",,,,,,,,,,,,,,,,,,"930243420","5032226916","524290","AAA OREGON/IDAHO",,"600 SW MARKET ST",,"PORTLAND","OR","97201",,,,,,,"930243420","5032226916",,,,"2011-10-12T18:21:01-0500","TIMOTHY MORGAN",,,,,522,347,1,164,512,0,512,,0,,"1A1G1I",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013081015P030147994177001","2008-07-01","2009-06-30","2",,"0","1","0","0","0","1","0","0","0",,"AFP IMAGING CORP RETIREMENT PLAN","001","2009-07-01","AFP IMAGING CORP",,,"250 CLEARBROOK RD",,"ELMSFORD","NY","105231305",,,,,,,,,,,,,,,,,,"132956272","9145926100","339100","SAME",,,,,,,,,,,,,"132956272","9145926100",,,,"2011-10-13T08:09:31-0500","ELISE NISSEN",,,,,90,81,0,0,81,0,81,81,0,,"2E2J",,,,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013071329P040681839712001","2010-01-07","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"PERFORMANCE IMPROVEMENT SERVICES INC. PROFIT SHARING PLAN","001","2010-01-07","PERFORMANCE IMPROVEMENT SERVICES INC.",,,"209 BRIARBEND BLVD",,"POWELL","OH","43065",,,,,,,,,,,,,,,,,,"271637246","6145623667","541519","PERFORMANCE IMPROVEMENT SERVICES INC.",,"209 BRIARBEND BLVD",,"POWELL","OH","43065",,,,,,,"271637246","6145623667",,,,"2011-10-12T17:21:13-0500","THOMAS BALDRICK",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012184658P040680490800001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MURRAYS FORD, INC. NADART PROFIT SHARING PLAN","002","1974-07-01","MURRAYS FORD, INC.",,,"3007 BLINKER PARKWAY",,"DU BOIS","PA","15801",,,,,,,,,,,,,,,,,,"251191385","8143716600","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T18:44:47-0500","ALAN B. SVEDLOW",,,,,92,74,5,16,95,0,95,91,10,,"2E2K3D2F3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013071500P040022707138001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRI-ED DISTRIBUTION 401(K) PLAN","001","2005-06-01","TRI-ED DISTRIBTION INC.",,,"135 CROSSWAYS PARK DRIVE","SUITE 101","WOODBURY","NY","11797",,,,,,,,,,,,,,,,,,"954524403","5169412800","423400","TRI-ED DISTRIBTION INC.",,"135 CROSSWAYS PARK WEST, SUITE 100",,"WOODBURY","NY","11797",,,,,,,"954524403","5169412800",,,,"2011-10-12T15:03:39-0500","SUSAN GERSTEN","2011-10-13T07:14:30-0500","PATSY COMUNALE",,,184,334,0,18,352,0,352,155,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111013071550P040681845088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WASTE GAS FABRICATING CO., INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","2007-01-01","WASTE GAS FABRICATING CO., INC.",,,"450 NEW BOLD ROAD",,"FAIRLESS HILLS","PA","19030",,,,,,,,,,,,,,,,,,"232061847","2157369240","331200","WASTE GAS FABRICATING CO., INC.",,"450 NEW BOLD ROAD",,"FAIRLESS HILLS","PA","19030",,,,,,,"232061847","2157369240",,,,"2011-10-12T12:52:53-0500","RUTHANN CLOMAN",,,,,62,47,0,0,47,0,47,47,0,,"2I2P3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012193345P030147683393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEPSIAMERICAS, INC. CHANGE IN CONTROL SEVERANCE PLAN FOR EMPLOYEES","591","2009-06-19","PEPSICO, INC.",,,"BRUCE MONTE, JR. 2/2","700 ANDERSON HILL ROAD","PURCHASE","NY","105771444",,,,,,,,,,,,,,,,,,"131584302","9142532000","312110","PEPSICO, INC.",,"BRUCE MONTE, JR. 2/2","700 ANDERSON HILL ROAD","PURCHASE","NY","105771444",,,,,,,"131584302","9142532000",,,,"2011-10-12T17:25:40-0500","BRUCE MONTE",,,,,3921,6265,,,6265,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012183945P040151320417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHERWIN ALUMINA SAVINGS PLAN FOR SALARIED EMPLOYEES","003","2001-01-01","SHERWIN ALUMINA COMPANY",,,"PO BOX 9911",,"CORPUS CHRISTI","TX","78469",,,,,,,,,,,,,,,,,,"742979536","3617772226","331310","SHERWIN ALUMINA COMPANY","SHERWIN ALUMINA COMPANY","PO BOX 9911",,"CORPUS CHRISTI","TX","78469",,,,,,,"742979536","3617772226",,,,"2011-10-12T18:39:05-0500","STEPHEN CATHRINER",,,,,145,142,,37,179,,179,155,,,"2E2F2G2J2K2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012182220P040151309841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RUSS MILNE FORD INC NADART SALARY DEF 401K PLAN","001","1964-03-01","RUSS MILNE FORD INC",,,"24777 HALL RD",,"MACOMB","MI","48042",,,,,,,,,,,,,,,,,,"381612335","5869482559","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-12T18:18:04-0500","ALAN B. SVEDLOW",,,,,80,73,0,3,76,0,76,45,1,,"2E2J3D2K2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012181240P030147649761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPOKANE NEIGHBORHOOD ACTION PARTNERS 403B RETIREMENT PLAN","003","2004-01-01","SPOKANE NEIGHBORHOOD ACTION PARTNERS",,,"3102 W. FT. GEORGE WRIGHT DRIVE",,"SPOKANE","WA","99224",,,,,,,,,,,,,,,,,,"911311127","5094567111","813000","SPOKANE NEIGHBORHOOD ACTION PARTNERS",,"3102 W. FT. GEORGE WRIGHT DRIVE",,"SPOKANE","WA","99224",,,,,,,"911311127","5094567111",,,,"2011-10-12T18:10:57-0500","JULIE HONEKAMP",,,,,179,130,0,54,184,0,184,179,,,"2E2L2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012181251P030147649825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAREN M BURNS - BOOKS AND PEOPLE MP KEOUGH","002","2000-01-01","KAREN M BURNS DBA BOOKS AND PEOPLE","BOOKS AND PEOPLE","C/O KAREN BURNS","4 FIRST STREET","UNIT 8207","SALEM","MA","01970",,,,,,,"4 FIRST STREET","UNIT 8207","SALEM","MA","01970",,,,,,,"043218347","6172856539","541600","KAREN M BURNS DBA BOOKS AND PEOPLE","C/O KAREN BURNS","4 FIRST STREET","UNIT 8207","SALEM","MA","01970",,,,,,,"043218347","6172856539",,,,"2011-10-12T18:02:03-0500","KAREN BURNS",,,,,2,1,0,1,2,0,2,2,0,0,"2C2G",,"1",,,,"1",,,,,,,,"1","1",,,"1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012193701P040151344481001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"SCHWAB MANAGED RETIREMENT TRUST FUND 2010","001",,"CHARLES SCHWAB BANK",,,"211 MAIN STREET","14TH FLOOR","SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"810625169","8007724922",,"CHARLES SCHWAB BANK",,"211 MAIN STREET","14TH FLOOR","SAN FRANCISCO","CA","94105",,,,,,,"810625169","8007724922","THE CHARLES SCHWAB TRUST COMPANY","810625169","001",,,,,"2011-10-12T19:35:57-0500","DAREN FREE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111013074755P030147980673001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"LHOIST NORTH AMERICA RETIREMENT PLAN FOR BARGAINING UNIT EMPLOYEES","002","1986-12-04","LHOIST NORTH AMERICA, INC.",,,"PO BOX 985004",,"FORT WORTH","TX","761075004",,,,,,,,,,,,,,,,,,"752060363","8003656724","327400","LHOIST NORTH AMERICA, INC.",,"PO BOX 985004",,"FORT WORTH","TX","761075004",,,,,,,"752060363","8003656724",,,,"2011-10-13T07:47:16-0500","LESLIE R. WADE","2011-10-13T07:47:16-0500","LESLIE R. WADE",,,839,392,135,267,794,38,832,,26,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012194103P040151345953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEFFERNAN INSURANCE BROKERS 401(K) PROFIT SHARING PLAN","001","1988-01-01","HEFFERNAN INSURANCE BROKERS",,,"1350 CARLBACK AVENUE, 2ND FLOOR",,"WALNUT CREEK","CA","94596",,,,,,,,,,,,,,,,,,"942506099","9259348500","524210","HEFFERNAN INSURANCE BROKERS",,"1350 CARLBACK AVENUE, 2ND FLOOR",,"WALNUT CREEK","CA","94596",,,,,,,"942506099","9259348500",,,,"2011-10-12T19:39:45-0500","DANIELE SEBASTIANI",,,,,511,397,0,102,499,0,499,411,16,,"2A2E2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","3","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013081131P040004665923001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MONEYGRAM INTERNATIONAL, INC. AD&D PLAN","507","2004-07-01","MONEYGRAM INTERNATIONAL, INC.",,,"1550 UTICA AVENUE SOUTH",,"MINNEAPOLIS","MN","554160000",,,,,,,,,,,,,,,,,,"161690064","9525913107","812990","MONEYGRAM INTERNATIONAL, INC.",,"1550 UTICA AVENUE SOUTH",,"MINNEAPOLIS","MN","554160000",,,,,,,"161690064","9525913107",,,,"2011-10-13T08:10:08-0500","ROBIN SWANSON, DIRECTOR, BENEFITS",,,,,829,720,4,0,724,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012195232P030147690273001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CALIFORNIA INSTITUTE OF THE ARTS RETIREMENT PLAN","001","1970-09-01","CALIFORNIA INSTITUTE OF THE ARTS",,,"24700 MCBEAN PARKWAY",,"VALENCIA","CA","91355",,,,,,,,,,,,,,,,,,"956102146","6612537837","611000","CALIFORNIA INSTITUTE OF THE ARTS",,"24700 MCBEAN PARKWAY",,"VALENCIA","CA","91355",,,,,,,"956102146","6612537837",,,,"2011-10-12T08:52:26-0500","KARLA TALAVERA",,,,,599,411,0,3,414,0,414,370,0,,"2G2L2M2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","3","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012222508P030147753825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIAM BLAIR & COMPANY GROUP LONG-TERM DISABILITY INSURANCE PROGRAM","502","1980-10-01","WILLIAM BLAIR & COMPANY, LLC",,,"222 WEST ADAMS STREET",,"CHICAGO","IL","606065307",,,,,,,,,,,,,,,,,,"362214610","3122361600","523110","WILLIAM BLAIR & COMPANY, LLC BENEFITS COMMITEE",,"222 WEST ADAMS STREET",,"CHICAGO","IL","606065307",,,,,,,"362214610","3122361600",,,,"2011-10-12T22:24:56-0500","TIMOTHY L. BURKE",,,,,836,929,0,0,929,0,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013072012P040151633825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MATCON CONSTRUCTION SERVICES 401(K) AND PROFIT SHARING PLAN","001","2008-05-01","MATCON CONSTRUCTION SERVICES",,,"1717 E. BUSCH BLVD","STE 601","TAMPA","FL","33612",,,,,,,,,,,,,,,,,,"030411631","8136005555","236200","MATCON CONSTRUCTION SERVICES",,"1717 E. BUSCH BLVD","STE 601","TAMPA","FL","33612",,,,,,,"030411631","8136005555",,,,"2011-10-12T14:22:10-0500","DEREK MATEOS",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012165050P030147601745001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHROME HEARTS LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","CHROME HEARTS LLC",,,"915 N MANSFIELD AVENUE",,"HOLLYWOOD","CA","90038",,,,,,,,,,,,,,,,,,"562501506","3236064108","339900","CHROME HEARTS LLC",,"915 N MANSFIELD AVENUE",,"HOLLYWOOD","CA","90038",,,,,,,"562501506","3236064108",,,,"2011-10-12T16:50:25-0500","ROSE-MARIE RICHMOND",,,,,252,277,0,2,279,0,279,101,1,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","0",,,"1","0","0","0","0","0",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012181450P040022660178001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRANKLIN ELECTRIC CO., INC. LONG TERM DISABILITY PLAN","506","1990-04-01","FRANKLIN ELECTRIC CO., INC.",,,"400 E. SPRING STREET",,"BLUFFTON","IN","467143737",,,,,,,,,,,,,,,,,,"350827455","2608242900","335310","FRANKLIN ELECTRIC CO., INC.",,"400 E. SPRING STREET",,"BLUFFTON","IN","467143737",,,,,,,"350827455","2608242900",,,,"2011-10-12T18:14:17-0500","KAY SCHUMM","2011-10-12T18:14:17-0500","KAY SCHUMM",,,990,948,,,948,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012183207P030147658129001","2010-08-01","2011-07-31","2",,"0","0","0","0","0","0","0","0","0",,"QUESTAR CORPORATION CATASTROPHE ACCIDENT INSURANCE","506","1966-11-01","QUESTAR CORPORATION",,,"P.O. BOX 45433",,"SALT LAKE CITY","UT","841450433",,,,,,,,,,,,,,,,,,"870407509","8013245664","211110","EMPLOYEE BENEFITS COMMITTEE",,"P.O. BOX 45433",,"SALT LAKE CITY","UT","841450433",,,,,,,"942518903","8013245664",,,,"2011-10-12T18:27:11-0500","RONALD JIBSON","2011-10-12T11:15:02-0500","KEVIN HADLOCK",,,1598,1205,0,0,1205,,1205,,,,,"4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012203353P030147706081001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MEDICAL ASSOCIATES OF NORTHWEST ARKANSAS PA HEALTH TRUST","503","2001-01-01","MEDICAL ASSOCIATES OF NORTHWEST ARKANSAS PA",,"PAULA STORMENT","3383 N MANA COURT SUITE 201",,"FAYETTEVILLE","AR","72703",,,,,,,"3383 N MANA COURT SUITE 201",,"FAYETTEVILLE","AR","72703",,,,,,,"621692966","4795716780","621111","MEDICAL ASSOCIATES OF NORTHWEST ARKANSAS PA","PAULA STORMENT","3383 N MANA COURT SUITE 201",,"FAYETTEVILLE","AR","72703",,,,,,,"621692966","4795716780",,,,"2011-10-12T20:24:37-0500","JASON WILSON",,,,,296,295,1,,296,,296,,,,,"4A4D4E","1",,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013081617P030004408883001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRUNSWICK COMPANIES THRIFT INCENTIVE PLAN","002","1978-08-01","TR. BRUNSWICK COS. THRIFT INCE",,,"2857 RIVIERA DR",,"AKRON","OH","44333",,,,,,,,,,,,,,,,,,"341116861","3308648800","524290","MR. TODD STEIN",,"2857 RIVIERA DR",,"AKRON","OH","44333",,,,,,,"341116861","3308648800",,,,"2011-10-11T13:14:00-0500","TODD STEIN","2011-10-11T13:14:00-0500","TODD STEIN",,,76,50,0,8,58,0,58,38,4,,"2E2J2F2G2K2R3H2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012172754P040022654946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHAKLEE 401K RETIREMENT SAVINGS PLAN","001","2004-07-01","SHAKLEE CORPORATION",,,"4747 WILLOW ROAD",,"PLEASANTON","CA","94588",,,,,,,,,,,,,,,,,,"943389365","9259242558","311900","SHAKLEE CORPORATION",,"4747 WILLOW ROAD",,"PLEASANTON","CA","94588",,,,,,,"943389365","9259242558",,,,"2011-10-12T17:22:19-0500","MICHAEL BATESOLE","2011-10-12T17:22:19-0500","MICHAEL BATESOLE",,,352,331,0,35,366,0,366,311,12,,"2E2F2G2J2K2T2S3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012204219P030686361248001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"32 CAPITAL FUND LTD","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"980623362","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N.A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000",,,,,,,,"2011-10-12T20:38:46-0500","JASON HOM",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12",,"Filed with authorized/valid electronic signature", "20111013100756P040151722481005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WASKER, DORR, WIMMER & MARCOUILLER, P.C. 401(K) PROFIT SHARING PLAN","001","1992-07-01","WASKER, DORR, WIMMER & MARCOUILLER, P.C.",,,"4201 WESTOWN PARKWAY, SUITE 250",,"WEST DES MOINES","IA","502666720",,,,,,,,,,,,,,,,,,"421388229","5152831801","541110","WASKER, DORR, WIMMER & MARCOUILLER, P.C.",,"4201 WESTOWN PARKWAY, SUITE 250",,"WEST DES MOINES","IA","502666720",,,,,,,"421388229","5152831801",,,,"2011-10-13T04:34:20-0500","FRED DORR","2011-10-13T04:34:20-0500","FRED DORR",,,24,21,1,2,24,,24,24,,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013124956P030148208721001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"BORMAN MOTOR COMPANY LLC SALARY DEFERRED 401(K) PLAN","001","1993-02-01","BORMAN MOTOR COMPANY LLC",,,"PO BOX 70",,"LAS CRUCES","NM","88005",,,,,,,"470 WEST BOUTZ STREET",,"LAS CRUCES","NM","88005",,,,,,,"850405111","5055254534","441110","BORMAN MOTOR COMPANY LLC",,"PO BOX 70",,"LAS CRUCES","NM","88005",,,,,,,"850405111","5055254534",,,,"2011-10-13T12:48:23-0500","KEVIN CONNOLE",,,,,180,167,0,11,178,0,178,84,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013133511P030148243217001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PENNELL CONSTRUCTION CO INC. 401(K) SIMPLE PLAN","001","1999-01-01","PENNELL CONSTRUCTION CO INC.",,,"104 MANAQUA ROAD",,"FREEHOLD","NJ","07728",,,,,,,"104 MANAQUA ROAD",,"FREEHOLD","NJ","07728",,,,,,,"223307386","7328660250","541990","PENNELL CONSTRUCTION CO INC.",,"104 MANAQUA ROAD",,"FREEHOLD","NJ","07728",,,,,,,"223307386","7328660250",,,,"2011-10-13T13:34:43-0500","KEVIN PENNELL",,,,,5,5,0,0,5,0,5,0,0,0,"2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013175222P040683736480001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARCHITECTURAL OFFICE ENVIRONMENTS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","2000-01-01","ARCHITECTURAL OFFICE ENVIRONMENTS, INC.",,,"365 EAST NORTH AVENUE",,"CAROL STREAM","IL","60188",,,,,,,,,,,,,,,,,,"362700812","6307737777","423200","ARCHITECTURAL OFFICE ENVIRONMENTS, INC.",,"365 EAST NORTH AVENUE",,"CAROL STREAM","IL","60188",,,,,,,"362700812","6307737777",,,,"2011-10-13T14:35:47-0500","JEFF WARNER",,,,,80,58,0,30,88,0,88,81,0,,"2I2O3H3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013095244P030049131543001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FLEXIBLE SPENDING ACCOUNT FOR TROPICAL EMPLOYEES","502","1988-01-01","BIRDSALL, INC.",,,"5 EAST 11TH STREET",,"RIVIERA BEACH","FL","33404",,,,,,,,,,,,,,,,,,"590715051","5618402906","483000","BIRDSALL, INC.",,"5 EAST 11TH STREET",,"RIVIERA BEACH","FL","33404",,,,,,,"590715051","5618402906",,,,"2011-10-13T09:26:40-0500","VAN KENT",,,,,773,694,,,694,,,,,,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013095259P030021838146001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RAYTHEON RETIREE HEALTH BENEFITS PLAN","565","1996-01-01","RAYTHEON COMPANY",,,"870 WINTER STREET",,"WALTHAM","MA","024511449",,,,,,,,,,,,,,,,,,"951778500","7815223000","335900","DEBORAH A. TULLY RAYTHEON COMPANY",,"870 WINTER STREET",,"WALTHAM","MA","024511449",,,,,,,"951778500","7815225080",,,,"2011-10-13T09:40:08-0500","DEBORAH A. TULLY","2011-10-13T09:40:08-0500","DEBORAH A. TULLY",,,22586,38,20721,0,20759,,,,,,,"4A4D","1","0","1","1","1","0","1","1","0","0","0","1","0","1","13","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013101525P030688045248012","2010-01-01","2010-12-31","1",,,,,,,"1",,,,,"PROVIA DOOR, INC. CAFETERIA PLAN","520","1996-07-01","PROVIA DOOR, INC.",,,"2150 SR 39",,"SUGARCREEK","OH","44681",,,,,,,,,,,,,,,,,,"341519660","3308524711","321900","PROVIA DOOR, INC.",,"2150 SR 39",,"SUGARCREEK","OH","44681",,,,,,,"341519660","3308524711",,,,"2011-10-04T14:22:28-0500","LARRY TROYER","2011-10-04T14:22:36-0500","LARRY TROYER",,,863,697,,,697,,,,,,,"4D4F4A4B4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013133101P030004315812001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AXA EQUITABLE HEALTH REIMBURSEMENT ARRANGEMENT","511","2005-07-01","AXA EQUITABLE LIFE INSURANCE COMPANY",,,"525 WASHINGTON BLVD",,"JERSEY CITY","NJ","07310",,,,,,,"36TH FL",,"JERSEY CITY","NJ","07310",,,,,,,"135570651","2017435490","524140","THE BENEFITS ADMINISTRATIVE COMMITTEE",,"525 WASHINGTON BLVD",,"JERSEY CITY","NJ","07310",,,,,,,"135570651","2017435490",,,,"2011-10-13T13:28:12-0500","STEVEN VIGNERON","2011-10-13T13:28:12-0500","ERIC GOFF",,,354,0,332,0,332,0,,0,0,0,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013133545P040151867393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST OF LAWRENCE TRANSPORTATION SYSTEMS, INC.","002","1997-01-01","LAWRENCE TRANSPORTATION SYSTEMS, INC.",,,"872 LEE HIGHWAY",,"ROANOKE","VA","24019",,,,,,,,,,,,,,,,,,"540618709","5409664000","484120","LAWRENCE TRANSPORTATION SYSTEMS, INC.",,"872 LEE HIGHWAY",,"ROANOKE","VA","24019",,,,,,,"540618709","5409664000",,,,"2011-10-13T13:20:38-0500","RONALD SPANGLER",,,,,271,200,12,54,266,1,267,264,19,,"2I2P2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013093034P040151701697009","2010-01-01","2010-12-31","2",,,,"1",,,,"1",,,,"THE CAPPY LAW FIRM, P.A. PROFIT SHARING PLAN","001","1982-07-01","THE CAPPY LAW FIRM",,,"900 W. PLATT STREET",,"TAMPA","FL","33606",,,,,,,,,,,,,,,,,,"592206342","8132515145","541110","THE CAPPY LAW FIRM",,"900 W. PLATT ST. SUITE 200",,"TAMPA","FL","33606",,,,,,,"592206342","8132515145",,,,"2011-10-13T10:19:04-0500","GEORGE B. CAPPY","2011-10-13T10:19:11-0500","GEORGE B. CAPPY",,,3,0,0,0,0,0,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013103025P040682351440019","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DARBY, PEELE, BOWDOIN & PAYNE PROFIT SHARING PLAN","001","1996-01-01","DARBY, PEELE, BOWDOIN & PAYNE",,,"P. O. DRAWER 1707",,"LAKE CITY","FL","32056",,,,,,,,,,,,,,,,,,"592135453","3867524120","541110","DARBY, PEELE, BOWDOIN & PAYNE",,"P. O. DRAWER 1707",,"LAKE CITY","FL","32056",,,,,,,"592135453","3867524120",,,,"2011-10-13T11:26:37-0500","HERBERT DARBY","2011-10-13T11:26:42-0500","HERBERT DARBY",,,1,1,0,0,1,0,1,1,,,"2E2G2R2F3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013104423P030148120977010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CATLIN GABEL SCHOOL 403(B) DEFINED CONTRIBUTION PL","002","1993-09-01","CATLIN GABEL SCHOOL",,,"8825 SW BARNES ROAD",,"PORTLAND","OR","972256599",,,,,,,,,,,,,,,,,,"930386804","5032971894","611000","CATLIN GABEL SCHOOL",,"8825 SW BARNES ROAD",,"PORTLAND","OR","972256599",,,,,,,"930386804","5032971894",,,,"2011-10-12T02:44:47-0500","TERRY MURPHY",,,,,386,281,,116,397,1,398,381,0,,"2F2G2L2S2T",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013122933P030021861570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNITED DAIRY FARMERS, INC. HEALTH BENEFIT PLAN","501","1982-12-25","UNITED DAIRY FARMERS, INC.",,"STEVE FIORA","3955 MONTGOMERY ROAD",,"CINCINNATI","OH","45212",,,,,,,"3955 MONTGOMERY ROAD",,"CINCINNATI","OH","45212",,,,,,,"311361170","5133968700","445120","UNITED DAIRY FARMERS, INC.",,"3955 MONTGOMERY ROAD",,"CINCINNATI","OH","45212",,,,,,,"311361170","5133968700",,,,"2011-10-12T12:19:20-0500","DARRYL NELTNER","2011-10-12T10:08:15-0500","MARILYN COLEMAN",,,718,688,,,688,,688,,,,,"4A4E","1",,,,"1",,,,,,,,,"1","2","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013173314P040022794514001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HOMECARE PRODUCTS RETIREMENT PLAN","001","2009-01-01","HOMECARE PRODUCTS, INC.",,,"700 MILWAUKEE AVE. N.",,"ALGONA","WA","98001",,,,,,,,,,,,,,,,,,"911489412","2532491108","332900","HOMECARE PRODUCTS, INC.",,"700 MILWAUKEE AVE. N.",,"ALGONA","WA","98001",,,,,,,"911489412","2532491108",,,,"2011-10-13T06:32:24-0500","CARL SARVELA",,,,,129,126,,6,132,,132,54,5,,"2E2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013100756P040151722481006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TRINITY SCHOOL DEFINED CONTRIBUTION PLAN","001","1985-09-01","TRINITY SCHOOL, INC.",,,"4301 NORTHSIDE PARKWAY, NW",,"ATLANTA","GA","303272245",,,,,,,,,,,,,,,,,,"581197585","4042318100","611000","TRINITY SCHOOL, INC.",,"4301 NORTHSIDE PARKWAY, NW",,"ATLANTA","GA","303272245",,,,,,,"581197585","4042318100",,,,"2011-10-13T05:52:19-0500","KENNETH W BOMAR",,,,,123,197,,28,225,,225,216,,,"2L",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013100807P030004411811001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SAVINGS PLAN FOR EMPLOYEES OF PERNOD RICARD USA, LLC","004","1981-07-01","PERNOD RICARD USA, LLC",,,"100 MANHATTANVILLE ROAD",,"PURCHASE","NY","10577",,,,,,,"100 MANHATTANVILLE ROAD",,"PURCHASE","NY","10577",,,,,,,"522318616","9148484794","424800","PERNOD RICARD USA, LLC",,"100 MANHATTANVILLE ROAD",,"PURCHASE","NY","10577",,,,,,,"522318616","9148484794",,,,"2011-10-13T09:54:44-0500","JAMES CASSIDY",,,,,1407,998,15,447,1460,5,1465,1188,30,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013123125P040151818689001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ALFRED ANGELO, INC 401(K) PROFIT SHARING PLAN","001","1957-02-15","ALFRED ANGELO, INC.",,,"1301 VIRGINIA DRIVE, STE 110",,"FORT WASHINGTON","PA","19034",,,,,,,,,,,,,,,,,,"231290653","2156595300","315990","ALFRED ANGELO, INC.",,"1301 VIRGINIA DRIVE, STE 110",,"FORT WASHINGTON","PA","19034",,,,,,,"231290653","2156595300",,,,"2011-10-13T13:31:03-0500","JOSEPH WELTZ",,,,,484,57,,36,93,,93,91,1,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013124303P030148202689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REYNOLDS AMERICAN SALARY AND BENEFITS CONTINUATION PROGRAM","503","1986-01-01","REYNOLDS AMERICAN INC.",,"C/O JENNIE BEASLEY","P. O. BOX 2990",,"WINSTON-SALEM","NC","271022990",,,,,,,"401 N. MAIN STREET",,"WINSTON-SALEM","NC","271022990",,,,,,,"200546644","3367412000","312200","RAI EMPLOYEE BENEFITS COMMITTEE REYNOLDS AMERICAN INC.","C/O JENNIE BEASLEY","P. O. BOX 2990",,"WINSTON-SALEM","NC","271022990",,,,,,,"320159359","3367414858",,,,"2011-10-13T12:32:57-0500","MCDARA FOLAN",,,,,4505,468,,,468,,468,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013124111P040022745778001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"INNOVATIVE SERVICES NW MONEY PURCHASE AND PREVAILING WAGE PLAN","001","1992-07-01","INNOVATIVE SERVICES NW",,,"10401 NE FOURTH PLAIN RD STE 101",,"VANCOUVER","WA","986626308",,,,,,,"10401 NE FOURTH PLAIN RD. STE 101",,"VANCOUVER","WA","986626308",,,,,,,"910782136","3602564141","624100","SAME",,"10401 NE FOURTH PLAIN RD. STE 101",,"VANCOUVER","WA","986626308",,,,,,,"910782136","3602564141",,,,"2011-10-13T12:35:01-0500","SUSAN HEFTA",,,,,102,97,0,57,154,0,154,154,3,,"2C3E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013132756P040151862705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRST FEDERAL BANK 401(K) PROFIT SHARING PLAN","001","1993-03-01","FIRST FEDERAL BANK",,,"611 EAST COLLEGE STREET",,"DICKSON","TN","37055",,,,,,,,,,,,,,,,,,"620181465","6154462822","522110","FIRST FEDERAL BANK",,"611 EAST COLLEGE STREET",,"DICKSON","TN","37055",,,,,,,"620181465","6154462822",,,,"2011-10-13T13:23:16-0500","JEANNIE CHRISTY",,,,,128,119,0,11,130,0,130,112,4,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013093617P030148061585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRADITION FINANCIAL SERVICES, INC. TAX DEFERRED SAVINGS PLAN","001","1990-01-01","TRADITION FINANCIAL SERVICES, INC.",,,"32 OLD SLIP",,"NEW YORK","NY","10005",,,,,,,,,,,,,,,,,,"222596917","2129436916","523140","TRADITION FINANCIAL SERVICES, INC.",,"32 OLD SLIP",,"NEW YORK","NY","10005",,,,,,,"222596917","2129436916",,,,"2011-10-13T09:26:56-0500","CAMILLE SLEPIAN",,,,,283,199,0,60,259,0,259,226,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013094458P030148068241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE RESTATED THRIFT/PROFIT SHARING PLAN FOR COOPERATIVES","030","1981-05-01","MAXYIELD COOPERATIVE",,,"PO BOX 49",,"WEST BEND","IA","505970049",,,,,,,,,,,,,,,,,,"420592800","5158877211","115110","ASSOCIATED BENEFITS CORPORATION",,"2929 WESTOWN PARKWAY SUITE 220",,"WEST DES MOINES","IA","502661349",,,,,,,"421279416","5152260303",,,,"2011-10-12T17:08:18-0500","KELLY HAYERTZ","2011-10-13T09:40:30-0500","ROBERT BURKHARDT",,,203,167,1,40,208,0,208,199,14,,"2F2G2J2K2E2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013102237P040151732769001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"LEGAL AID OF WESTERN MISSOURI PROFIT SHARING PLAN","002","1989-01-01","LEGAL AID OF WESTERN MISSOURI",,,"1125 GRAND BLVD STE 1900",,"KANSAS CITY","MO","641062500",,,,,,,,,,,,,,,,,,"430824638","8164746750","541190","LEGAL AID OF WESTERN MISSOURI",,"1125 GRAND BLVD STE 1900",,"KANSAS CITY","MO","641062500",,,,,,,"430824638","8164746750",,,,"2011-10-13T10:22:31-0500","MARY DENZER","2011-10-13T10:22:31-0500","MARY DENZER",,,132,107,0,17,124,0,124,120,10,,"2E2F2G2J2S2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013100821P040022728050001","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"PERRI-PRICE, INC. DEFINED BENEFIT PENSION PLAN","001","2003-03-15","PERRI-PRICE, INC.",,,"79895 DE SOL A SOL",,"LA QUINTA","CA","92253",,,,,,,,,,,,,,,,,,"710931714","7607716560","425120","PERRI-PRICE, INC.",,"79895 DE SOL A SOL",,"LA QUINTA","CA","92253",,,,,,,"710931714","7607716560",,,,"2011-10-13T11:07:54-0500","JACK PRICE",,,,,3,0,0,0,0,0,0,,0,,"1A1G1I3D3H",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013125350P040151836065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CRISTINA ASERON, M.D. PROFIT SHARING PLAN","001","2005-01-01","CRISTINA ASERON, M.D.",,,"1788 HIGHWAY 157 N SUITE 102",,"MANSFIELD","TX","760633929",,,,,,,,,,,,,,,,,,"752898819","8174731151","621111","CRISTINA ASERON, M.D.",,"1788 HIGHWAY 157 N SUITE 102",,"MANSFIELD","TX","760633929",,,,,,,"752898819","8174731151",,,,"2011-10-13T12:53:50-0500","CRISTINA ASERON, M.D.",,,,,6,5,0,0,5,0,5,5,0,,"2A2E2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013133651P040682888912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALTIRA, INC. PROFIT SHARING PLAN","001","1994-01-01","ALTIRA, INC.",,,"3225 NW 112 ST",,"MIAMI","FL","331673310",,,,,,,,,,,,,,,,,,"592472239","3056878074","325900","ALTIRA, INC.",,"3225 NW 112 ST",,"MIAMI","FL","331673310",,,,,,,"592472239","3056878074",,,,"2011-10-13T13:36:50-0500","RAMON E. POO, SR.",,,,,187,146,0,38,184,1,185,179,7,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013103417P030148113297001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","1","0","0",,"RAAB, STRUM & GANCHROW PROFIT SHARING PLAN","001","1970-03-30","RAAB, STRUM & GANCHROW",,,"317 MADISON AVE STE 1708",,"NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"131566077","2126836699","541110","RAAB, STRUM & GANCHROW",,"317 MADISON AVE STE 1708",,"NEW YORK","NY","10017",,,,,,,"131566077","2126836699","SAME",,,"2011-10-12T14:09:48-0500","RONALD RAAB","2011-10-12T14:59:37-0500","RONALD RAAB",,,13,9,0,5,14,0,14,14,0,,"2T3D2E2G2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013101618P030004412035001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STAFF ONE, INC. HEALTH BENEFIT PLAN","501","2000-01-01","STAFF ONE, INC",,,"1100 WEST MAIN STREET",,"DURANT","OK","74701",,,,,,,"1100 WEST MAIN STREET",,"DURANT","OK","74701",,,,,,,"731332142","5809201212","541990","STAFF ONE, INC",,"1100 WEST MAIN STREET",,"DURANT","OK","74701",,,,,,,"731332142","5809201212",,,,"2011-10-13T10:13:55-0500","MARCY SCOTT",,,,,2029,1457,44,0,1501,,1501,,,,,"4A4B4D4E4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013101831P030148099873009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KAFOURY, ARMSTRONG AND CO PROFIT SHARING PLAN AND TRUST","001","1973-01-01","KAFOURY, ARMSTRONG AND CO",,,"6140 PLUMAS STREET",,"RENO","NV","89519",,,,,,,,,,,,,,,,,,"880116396","7756899100","541211","KAFOURY, ARMSTRONG AND CO",,"6140 PLUMAS STREET",,"RENO","NV","89519",,,,,,,"880116396","7756899100",,,,"2011-10-11T12:25:25-0500","KRISTEN BURGESS","2011-10-11T12:25:25-0500","KRISTEN BURGESS",,,196,109,10,61,180,2,182,178,7,,"2E2G2J2K2R",,,,"1",,,,"1",,,,,"1",,,,"1",,"1","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013104527P030148122417007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PINKSTAFF, SIMPSON, HALL & HEADRICK, PC 401(K) PROFIT SHARING PLAN","002","1995-01-01","PINKSTAFF, SIMPSON, HALL & HEADRIC",,,"8858 CEDAR SPRINGS LANE SUITE 5000",,"KNOXVILLE","TN","37923",,,,,,,,,,,,,,,,,,"621719416","8656907010","541213","PINKSTAFF, SIMPSON, HALL & HEADRIC",,"8858 CEDAR SPRINGS LANE SUITE 5000",,"KNOXVILLE","TN","37923",,,,,,,"621719416","8656907010",,,,"2011-10-13T10:39:30-0500","JACKIE L. SIMPSON, CPA",,,,,24,21,0,1,22,0,22,22,,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013104548P030148122865001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"HGA 401(K) PLAN AND TRUST","001","2002-01-01","HUNT, GUILLOT & ASSOCIATES, LLC",,,"603 E REYNOLDS DR",,"RUSTON","LA","712702822",,,,,,,,,,,,,,,,,,"721354146","3182556825","541330","HUNT, GUILLOT & ASSOCIATES, LLC",,"603 E REYNOLDS DR",,"RUSTON","LA","712702822",,,,,,,"721354146","3182556825",,,,"2011-10-13T10:43:46-0500","GLEN MITCHELL","2011-10-13T10:43:46-0500","GLEN MITCHELL",,,143,142,0,18,160,0,160,109,2,,"2E2F2G2J2K3B2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013125625P040022748258001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JACKSON MEDICAL MALL FOUNDATION 403(B) PLAN","001","2009-01-01","JACKSON MEDICAL MALL FOUNDATION",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"640865274","6207938473","621399","JACKSON MEDICAL MALL FOUNDATION",,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,"640865274","6207938473",,,,"2011-10-13T12:55:14-0500","LORI GREER",,,,,132,120,5,7,132,0,132,57,0,,"2F2G2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013130425P030688578176007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HNR CLARK PROFIT SHARING PLAN","001","1995-12-01","HNR CLARK",,,"4444 RIVERSIDE DR 304",,"BURBANK","CA","91505",,,,,,,,,,,,,,,,,,"043604416","8188485858","541213","KEITH CLARK",,"4444 RIVERSIDE DR 304",,"BURBANK","CA","91505",,,,,,,"043604416","8188485858",,,,"2011-10-13T12:44:35-0500","KEITH CLARK",,,,,3,,,,0,,0,,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013131557P040151852337002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"P & K CONTRACTING INC DEFINED BENEFIT PLAN","001","2006-01-01","P & K CONTRACTING INC DEFINED BENEFIT PLAN",,,"199 ZABRISKIE STREET",,"JERSEY CITY","NJ","07307",,,,,,,,,,,,,,,,,,"760846971","2013860470","238900","P & K CONTRACTING INC DEFINED BENEFIT PLAN",,"199 ZABRISKIE STREET",,"JERSEY CITY","NJ","07307",,,,,,,"760846971","2013860470",,,,"2011-10-13T02:15:46-0500","ROHIT SHAH",,,,,8,8,0,0,8,0,8,,0,,"1A3D",,"1",,"1",,"1",,"1",,"1",,"1",,"1","1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013091605P030148045521001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"CENTRAL NEW YORK HEALTH SYSTEMS AGENCY, INC. RETIREMENT PLAN","004","1975-09-01","CENTRAL NEW YORK HEALTH SYSTEMS AGENCY, INC.","CNYHSA",,"5700 COMMONS PARK DRIVE",,"EAST SYRACUSE","NY","13057",,,,,,,"5700 COMMONS PARK DRIVE",,"EAST SYRACUSE","NY","13057",,,,,,,"161064267","3154728099","813000","DEBBIE BROWN","CENTRAL NEW YORK HEALTH SYSTEMS AGENCY, INC.","5700 COMMONS PARK DRIVE",,"EAST SYRACUSE","NY","13057",,,,,,,"161064267","3154728099",,,,"2011-10-13T09:15:15-0500","DEBBIE BROWN",,,,,10,4,6,,10,,10,,,,"2L",,"1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013091606P030021832130001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"BOU BANCORP, INC. EMPLOYEE STOCK OWNERSHIP PLAN WITH 401(K) PROVISIONS","001","1958-01-01","BOU BANCORP, INC.",,,"2605 WASHINGTON BLVD",,"OGDEN","UT","84401",,,,,,,,,,,,,,,,,,"870661662","8014095157","522110","BOU BANCORP, INC.",,"2605 WASHINGTON BLVD",,"OGDEN","UT","84401",,,,,,,"870661662","8014095157",,,,"2011-10-13T09:16:02-0500","DARREL MAY","2011-10-13T09:16:02-0500","DARREL MAY",,,344,270,1,77,348,2,350,337,27,,"2E2I2O",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013095935P030021839394001","2010-09-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"KEITH'S TRUCK SERVICE, INC. 401(K) PLAN","001","2010-09-01","KEITH'S TRUCK SERVICE, INC",,,"124 REPAIR RD",,"DUNCANSVILLE","PA","16635",,,,,,,,,,,,,,,,,,"208414583","8146966008","811110","KEITH'S TRUCK SERVICE, INC",,"124 REPAIR RD",,"DUNCANSVILLE","PA","16635",,,,,,,"208414583","8146966008",,,,"2011-10-13T09:45:10-0500","LYNEA DAVIS",,,,,9,9,0,0,9,0,9,9,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013104047P040022731218001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RAUSCH COLEMAN DEVELOPMENT GROUP, INC. RETIREMENT PLAN AND TRUST","001","2007-04-01","RAUSCH COLEMAN DEVELOPMENT GROUP, INC.",,,"4119 MASSARD RD.",,"FORT SMITH","AR","72903",,,,,,,,,,,,,,,,,,"710578355","4794789090","236110","RAUSCH COLEMAN DEVELOPMENT GROUP, INC.",,"4119 MASSARD RD.",,"FORT SMITH","AR","72903",,,,,,,"710578355","4794789090",,,,"2011-10-13T10:31:39-0500","NORA LEONARD","2011-10-13T10:31:39-0500","NORA LEONARD",,,131,82,15,25,122,0,122,71,8,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013102829P030148108289001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"SERVICE MEDICAL EQUIPMENT RETIREMENT PLAN","001","2010-01-01","SERVICE MEDICAL EQUIPMENT, INC",,,"2848 HITCHCOCK",,"DOWNERS GROVE","IL","60515",,,,,,,"2848 HITCHCOCK",,"DOWNERS GROVE","IL","60515",,,,,,,"274244747","6306992900","624310","SERVICE MEDICAL EQUIPMENT, INC",,"2848 HITCHCOCK",,"DOWNERS GROVE","IL","60515",,,,,,,"274244747","6306992900",,,,"2011-10-13T10:06:21-0500","WILLIAM BRONEC",,,,,0,4,0,0,4,0,4,4,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013103109P030024366534001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"SUPER DAVES PRINT AND MAIL INC. 401(K) PLAN","001","2004-09-01","SUPER DAVES PRINT AND MAIL INC.",,,"1665 TAHITI AVE",,"LAGUNA BEACH","CA","92651",,,,,,,,,,,,,,,,,,"203131559","9498631100","323100","SUPER DAVES PRINT AND MAIL INC.",,"1665 TAHITI AVE",,"LAGUNA BEACH","CA","92651",,,,,,,"203131559","9498631100",,,,"2011-10-13T09:28:58-0500","DAVE SANFORD",,,,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013095639P030021838770001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HEALTH AND WELFARE BENEFIT PLAN","514","2009-12-31","HALLMARK CARDS, INC.",,,"2501 MCGEE",,"KANSAS CITY","MO","64108",,,,,,,,,,,,,,,,,,"440272180","8162745582","322200","HALLMARK CARDS WELFARE COMMITTEE",,"2501 MCGEE",,"KANSAS CITY","MO","64108",,,,,,,"431722352","8162745582",,,,"2011-10-13T09:35:52-0500","TRACY HIESBERGER","2011-10-13T09:35:52-0500","COLLEEN MEURER","2011-10-13T09:35:52-0500","COLLEEN MEURER",27785,26357,,,26357,,,,,,,"4A4B4D4E4H4L4Q","1","0","1","1","1","0","1","1","0","0","0","1","0","1","4","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111013104601P030148123137001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE GOOD SAMARITAN HOSPITAL WELFARE AND FLEXIBLE BENEFIT PLAN","511","1993-01-01","THE GOOD SAMARITAN HOSPITAL",,,"4TH AND WALNUT STREETS",,"LEBANON","PA","170421281",,,,,,,,,,,,,,,,,,"230794160","7172707500","622000","THE GOOD SAMARITAN HOSPITAL",,"4TH AND WALNUT STREETS",,"LEBANON","PA","170421281",,,,,,,"230794160","7172707500",,,,"2011-10-13T10:24:22-0500","KIMBERLY FEEMAN",,,,,1362,1256,131,0,1387,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013131425P040151851281001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RED BULL NORTH AMERICA, INC. RETIREMENT INCOME PLAN","001","1996-01-01","RED BULL NORTH AMERICA, INC.",,,"1740 STEWART ST",,"SANTA MONICA","CA","90404",,,,,,,,,,,,,,,,,,"954552870","3104605072","424990","RED BULL NORTH AMERICA, INC.",,"1740 STEWART ST",,"SANTA MONICA","CA","90404",,,,,,,"954552870","3104605072",,,,"2011-10-13T02:14:20-0500","DAVID ALLEN",,,,,1410,1263,0,385,1648,0,1648,1614,0,,"2E2F2G2J2K2R2S2T3F3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013131618P030148229457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RIVERSIDE MEDICAL CENTER EMPLOYEE DENTAL PLAN","509","1987-09-01","RIVERSIDE MEDICAL CENTER",,"C/O MR. DICK DIEPEVEEN","350 N. WALL STREET",,"KANKAKEE","IL","60901",,,,,,,,,,,,,,,,,,"362414944","8159331671","622000","RIVERSIDE MEDICAL CENTER","C/O MR. DICK DIEPEVEEN","350 N. WALL SREET",,"KANKAKEE","IL","60901",,,,,,,"362414944","8159331671",,,,"2011-10-13T12:45:58-0500","DICK DIEPEVEEN",,,,,1345,1308,1,0,1309,0,1309,,,,,"4D","1",,"1",,"1",,"1",,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013133721P030148245265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE SOUTHBORO MEDICAL GROUP, INC. SAVINGS AND RETIREMENT PLAN","001","1982-07-01","THE SOUTHBORO MEDICAL GROUP, INC.",,,"24 NEWTON STREET",,"SOUTHBORO","MA","01772",,,,,,,,,,,,,,,,,,"042487729","5084603111","621111","THE SOUTHBORO MEDICAL GROUP, INC.",,"24 NEWTON STREET",,"SOUTHBORO","MA","01772",,,,,,,"042487729","5084603111",,,,"2011-10-13T10:51:39-0500","KATHRYN TOMASHUNAS",,,,,632,497,0,139,636,0,636,500,14,,"2E2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013092621P030148053505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRANSOLUTIONS 401K PLAN 002","002","1997-01-01","TRANSOLUTIONS INC",,,"1541 S WAUKEGAN RD",,"WAUKEGAN","IL","60085",,,,,,,,,,,,,,,,,,"201442355","8475742129","561490","TRANSOLUTIONS INC",,"1541 S WAUKEGAN RD",,"WAUKEGAN","IL","60085",,,,,,,"201442355","8475742129",,,,"2011-10-13T09:19:17-0500","JOE ARNOLD","2011-10-13T09:19:18-0500","JOE ARNOLD",,,163,85,0,3,88,0,88,34,0,,"2E2F2G2J2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013092629P030687862704001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PA CONSULTING GROUP, INC. SALARY SAVINGS PLAN","002","1983-01-06","PA CONSULTING GROUP, INC.",,,"4601 N. FAIRFAX DRIVE, SUITE 600",,"ARLINGTON","VA","22203",,,,,,,,,,,,,,,,,,"222287449","5712279000","541600","PA CONSULTING GROUP, INC.",,"4601 N. FAIRFAX DRIVE, SUITE 600",,"ARLINGTON","VA","22203",,,,,,,"222287449","5712279000",,,,"2011-10-13T09:19:18-0500","COLLEEN BOSWORTH","2011-10-13T09:19:18-0500","COLLEEN BOSWORTH",,,826,258,3,514,775,1,776,774,26,,"2E2F2G2J2S2T3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013093122P030021835650001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1",,,,,"MOLD MASTERS, INC. SAVINGS PLAN","001","1988-06-01","MOLD MASTERS, INC.",,,"7500 CLOVER AVE",,"MENTOR","OH","440605214",,,,,,,,,,,,,,,,,,"340894486","4409530220","336410","MOLD MASTERS, INC.",,"7500 CLOVER AVE",,"MENTOR","OH","440605214",,,,,,,"340894486","4409530220",,,,"2011-10-13T09:12:31-0500","ANNA GENNERT","2011-10-13T09:10:06-0500","JAMES ALLEN",,,133,117,0,11,128,0,128,41,0,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013094212P040151708929001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"FIDELITY TECHNOLOGIES CORPORATION EMPLOYEES SAVINGS AND PROTECTION PLAN","001","1991-01-01","FIDELITY TECHNOLOGIES CORPORATION",,,"2501 KUTZTOWN RD",,"READING","PA","196052961",,,,,,,,,,,,,,,,,,"232492166","6109293330","335900","FIDELITY TECHNOLOGIES CORPORATION",,"2501 KUTZTOWN RD",,"READING","PA","196052961",,,,,,,"232492166","6109293330",,,,"2011-10-13T09:42:07-0500","GLEN DOUGLAS","2011-10-13T09:42:07-0500","GLEN DOUGLAS",,,735,579,0,48,627,0,627,352,57,,"2A2E2F2G2J2K2T3F",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013093441P030148060145002","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"LORI BIEBER DVM SOUTH RUSSELL VETERINARY HOSPITAL PROFIT SHARING PLAN","001","2005-01-01","LORI BIEBER DVM SOUTH RUSSELL VETERINARY HOSPITAL",,,"5210 C CHILLICOTHE ROAD",,"SOUTH RUSSELL","OH","44022",,,,,,,,,,,,,,,,,,"341878133","4403386320","621399","LORI BIEBER DVM SOUTH RUSSELL VETERINARY HOSPITAL",,"5210 C CHILLICOTHE ROAD",,"SOUTH RUSSELL","OH","44022",,,,,,,"341878133","4403386320",,,,"2011-10-13T09:04:55-0500","LORI C BIEBER",,,,,6,6,,,6,,6,6,,,"3D3B2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013095711P030021838962009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JAMES C. PRITCHARD ASSOCIATES, INC. 401(K) PLAN","002","2002-01-01","PRITCHARD ASSOCIATES, INC., 401K",,,"2500 ROUTH STREET",,"DALLAS","TX","75201",,,,,,,,,,,,,,,,,,"752556965","9727230182","531390","PRITCHARD ASSOCIATES, INC., 401K",,"2500 ROUTH STREET",,"DALLAS","TX","75201",,,,,,,"752556965","9727230182",,,,"2011-10-09T04:51:22-0500","JAMES C. PRITCHARD",,,,,7,5,,3,8,,8,8,,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013104715P040151752977001","2010-01-01","2010-12-31","2",,,"1",,,,"1","0","0","0",,"KAY W. O'LEARY, DDS PA PROFIT SHARING PLAN","002","1994-03-01","KAY W OLEARY, DDS PA",,,"2286 TAMIAMI TRAIL",,"PORT CHARLOTTE","FL","33952",,,,,,,,,,,,,,,,,,"650243825","9416272011","621210","SAME",,"2286 TAMIAMI TRAIL",,"PORT CHARLOTTE","FL","33952",,,,,,,"650243825","9416272011",,,,"2011-10-13T10:47:10-0500","KAY W. O'LEARY DDS","2011-10-13T10:47:10-0500","KAY W. O'LEARY DDS",,,19,13,0,5,18,0,18,18,1,,"3D2E2F2G2J2T",,"1",,,,"1",,,,"1",,,,"1","1","4",,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013104717P040151753025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOLTON CONSTRUCTION & SERVICE, LLC PROFIT SHARING PLAN","001","2003-01-01","BOLTON CONSTRUCTION & SERVICE, LLC",,,"1623 OLD LOUISBURG ROAD",,"RALEIGH","NC","27604",,,,,,,,,,,,,,,,,,"600000708","9198347933","238220","BOLTON CONSTRUCTION & SERVICE, LLC",,"1623 OLD LOUISBURG ROAD",,"RALEIGH","NC","27604",,,,,,,"600000708","9198347933","W.E. BOLTON CONSTRUCTION & SERVICE, LLC",,,"2011-10-13T10:47:15-0500","WILLIAM E. BOLTON, III",,,,,141,97,0,43,140,0,140,135,1,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013123426P040022745218001","2010-01-01","2010-12-31","2",,"0","0","1","0","1","1","0","0","0",,"THOMAS J. LIPTON COMPANY AND AFFILIATES GROUP LIFE PLAN, CONTRIBUTORY","702","1971-01-01","CONOPCO, INC.","D/B/A LIPTON","C/O NANCY LAMB","800 SYLVAN AVE",,"ENGLEWOOD CLIFFS","NJ","07632",,,,,,,,,,,,,,,,,,"131840427","2018942779","325600","CONOPCO, INC.","BENEFITS ADMINISTRATION COMMITTEE","800 SYLVAN AVE",,"ENGLEWOOD CLIFFS","NJ","07632",,,,,,,"010916810","2018942779",,,,"2011-10-13T12:34:16-0500","PASCALE THOMAS",,,,,63,0,0,0,0,,,,,,,"4B4R4S","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013124156P030004416531001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUERTO RICO SAVINGS & INVESTMENT PLAN","003","1989-07-01","REYNOLDS AMERICAN INC.",,"C/O JENNIE BEASLEY","P.O. BOX 2990",,"WINSTON-SALEM","NC","271022990",,,,,,,"401 N. MAIN STREET",,"WINSTON-SALEM","NC","271022990",,,,,,,"200546644","3367412000","312200","RAI EMPLOYEE BENEFITS COMMITTEE REYNOLDS AMERICAN INC.","C/O JENNIE BEASLEY","P.O. BOX 2990",,"WINSTON-SALEM","NC","271022990",,,,,,,"320159359","3367414858",,,,"2011-10-13T12:34:30-0500","MCDARA FOLAN",,,,,179,72,5,43,120,0,120,119,0,,"2E2F2G2J2K3H3C",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013132410P030148235137001","2010-07-01","2011-06-30","2",,,,,,,,,,,,"RAJESH SHAH, MD, SC EMPLOYEE PROFIT SHARING PLAN AND TRUST","002","1982-07-01","RAJESH SHAH, M.D., S.C.",,,"10404 ROUTE 31",,"ALGONQUIN","IL","60102",,,,,,,,,,,,,,,,,,"363145934","8478853471","621111","RAJESH SHAH, M.D., S.C.",,"10404 ROUTE 31",,"ALGONQUIN","IL","60102",,,,,,,"363145934","8478853471",,,,"2011-10-07T05:18:27-0500","RAJESH SHAH","2011-10-07T05:20:49-0500","RAJESH SHAH",,,4,4,,,4,,4,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013133759P030148245857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOTOR COMPONENTS, LLC 401(K) PLAN","006","2002-03-01","MOTOR COMPONENTS, LLC",,,"2243 CORNING ROAD",,"ELMIRA","NY","14903",,,,,,,,,,,,,,,,,,"161562815","6077378011","441300","MOTOR COMPONENTS, LLC",,"2243 CORNING ROAD",,"ELMIRA","NY","14903",,,,,,,"161562815","6077378011",,,,"2011-10-13T13:37:39-0500","MARY JO HARTMAN",,,,,106,63,0,38,101,0,101,86,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013174020P040022796594001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BILL ROBERTSON & SONS, INC. 401(K) PROFIT SHARING PLAN","001","1963-10-01","BILL ROBERTSON & SONS, INC.",,,"6525 SANTA MONICA BLVD.",,"HOLLYWOOD","CA","90038",,,,,,,,,,,,,,,,,,"952282585","3234667191","441221","BILL ROBERTSON & SONS, INC.",,"6525 SANTA MONICA BLVD.",,"HOLLYWOOD","CA","90038",,,,,,,"952282585","3234667191",,,,"2011-10-13T14:16:36-0500","TOM TALKINGTON",,,,,130,135,0,9,144,1,145,103,1,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013094003P040151707729001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"LARGE CAP VALUE EQUITY FUND HALLIBURTON COMPANY EMPLOYEE BENEFIT MASTER TRUST","108","1999-04-01","HALLIBURTON COMPANY",,,"10200 BELLAIRE BLVD",,"HOUSTON","TX","77072",,,,,,,,,,,,,,,,,,"806176426","2815753316","211110","HALLIBURTON COMPANY",,"10200 BELLAIRE BLVD",,"HOUSTON","TX","77072",,,,,,,"806176426","2815753316",,,,"2011-10-12T17:22:03-0500","SHARON PARKES",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013102336P030148103985003","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCKINSEY AND COMPANY, INC. (MPPP) MONEY PURCHASE PENSION PLAN","015","1994-01-01","MCKINSEY AND COMPANY, INC.",,,"55 EAST 52ND STREET 26FL",,"NEW YORK","NY","10055",,,,,,,"55 EAST 52ND STREET 26FL",,"NEW YORK","NY","10055",,,,,,,"131826332","2124151601","541600","MCKINSEY AND COMPANY, INC.",,"55 EAST 52ND STREET 26FL",,"NEW YORK","NY","10055",,,,,,,"131826332","2124151601",,,,"2011-10-13T10:04:15-0500","JAMES E. FARRELL, JR.","2011-10-13T10:04:15-0500","STEPHEN PICCININNI",,,11442,4406,15,7236,11657,26,11683,11635,0,,"2C2H",,"0","0","1","0","0","0","1","0","1","0","0","1","0",,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013103426P030148113377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIAM J. SOMERS MD INC. PENSION PLAN","002","2001-01-01","WILLIAM J. SOMERS MD INC.",,,"3555 OLENTANGY RIVER RD. #3080",,"COLUMBUS","OH","43214",,,,,,,"3555 OLENTANGY RIVER RD. #3080",,"COLUMBUS","OH","43214",,,,,,,"311541081","6145388430","621111","WILLIAM J. SOMERS MD INC.",,"3555 OLENTANGY RIVER RD. #3080",,"COLUMBUS","OH","43214",,,,,,,"311541081","6145388430",,,,"2011-10-13T10:34:14-0500","MARK SNELL",,,,,8,7,,1,8,,8,8,,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013125646P030148214209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAUTMAN, MASKA, NEILL & CO. 401(K) PLAN","001","1995-01-01","LAUTMAN, MASKA, NEILL & CO.",,,"1730 RHODE ISLAND AVE NW STE 301",,"WASHINGTON","DC","20036",,,,,,,,,,,,,,,,,,"521778593","2022969660","541990","LAUTMAN, MASKA, NEILL & CO.",,"1730 RHODE ISLAND AVE NW STE 301",,"WASHINGTON","DC","20036",,,,,,,"521778593","2022969660",,,,"2011-10-13T12:55:25-0500","MIKKI JEFFERSON","2011-10-13T12:56:15-0500","MIKKI JEFFERSON",,,21,19,0,6,25,0,25,25,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013133300P040151866321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNITED FEEDS, INC. AND ADOPTING ENTITIES 401(K) PLAN","002","2002-01-01","JBS UNITED, INC.",,,"322 SOUTH MAIN STREET, SUITE 200",,"SHERIDAN","IN","46069",,,,,,,"322 SOUTH MAIN ST., SUITE 200",,"SHERIDAN","IN","46069",,,,,,,"350990425","3177584495","115210","JBS UNITED, INC.",,"322 SOUTH MAIN STREET, SUITE 200",,"SHERIDAN","IN","46069",,,,,,,"350990425","3177584495",,,,"2011-10-13T13:32:59-0500","HOWARD THOMAS",,,,,508,361,51,54,466,2,468,421,19,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013132850P040682862560007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DEPARTMENT OF LABOR FITNESS 401(K) PLAN","001","1999-09-02","DEPARTMENT OF LABOR FITNESS ASSOCIATION, INC.",,,"200 CONSTITUTION AVE",,"WASHINGTON","DC","20210",,,,,,,,,,,,,,,,,,"521568668","2026933966","713900","GREGG & BAILEY, P.C.",,"15871 CITY VIEW DR SUITE 302",,"MIDLOTHIAN","VA","23113",,,,,,,"541647040","8048974700",,,,"2011-10-13T09:14:13-0500","SAMUEL CLARK",,,,,2,3,,,3,,3,4,,,"2G2J3D",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013175113P040152089937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SECTION 403(B) RETIREMENT PLAN FOR STEIN HOSPICE SERVICE, INC. 403(B) PLAN","001","1996-01-01","STEIN HOSPICE SERVICES INC.",,,"1200 SYCAMORE LINE",,"SANDUSKY","OH","44870",,,,,,,,,,,,,,,,,,"341411008","4196255269","813000","STEIN HOSPICE SERVICES INC.",,"1200 SYCAMORE LINE",,"SANDUSKY","OH","44870",,,,,,,"341411008","4196255269",,,,"2011-10-13T14:33:37-0500","TAMARA ZUILHOF","2011-10-13T14:33:37-0500","TAMARA ZUILHOF",,,295,322,0,7,329,0,329,128,27,,"2F2G2L",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013091349P030148044497001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"RIVERGATE CORPORATION EMPLOYEES SAVINGS INCENTIVE PLAN","001","1984-09-20","RIVERGATE CORPORATION",,,"6475 ROSWELL ROAD",,"SANDY SPRINGS","GA","30328",,,,,,,,,,,,,,,,,,"581350597","4042361922","441110","RIVERGATE CORPORATION",,"6475 ROSWELL ROAD",,"SANDY SPRINGS","GA","30328",,,,,,,"581350597","4042361922",,,,"2011-10-13T09:09:34-0500","BRAD JACKSON",,,,,199,147,2,22,171,0,171,135,0,,"2E2J2K2F2G2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013091416P030148044721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YES NETWORK 401(K) PLAN","001","2002-01-01","YANKEES ENTERTAINMENT & SPORTS NETWORK, LLC",,,"405 LEXINGTON AVENUE","CHRYSLER BUILDING, 36TH FLOOR","NEW YORK","NY","10174",,,,,,,,,,,,,,,,,,"134189175","6464873660","515210","YANKEES ENTERTAINMENT & SPORTS NETWORK, LLC",,"405 LEXINGTON AVENUE","CHRYSLER BUILDING, 36TH FLOOR","NEW YORK","NY","10174",,,,,,,"134189175","6464873660",,,,"2011-10-13T09:10:06-0500","NICOLE ZUSSMAN","2011-10-13T09:10:06-0500","NICOLE ZUSSMAN",,,298,365,1,19,385,1,386,231,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013101918P040151730529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"401K PROFIT SHARING PLAN FOR EMPLOYEES OF THE MICRONESIAN TELECOMMUNICATIONS CORPORATION","002","1989-01-01","THE MICRONESIAN TELECOMMUNICATIONS CORPORATION",,,"PO BOX 500306 CK",,"SAIPAN","MP","969500306",,,,,,,,,,,,,,,,,,"986018563","6702342027","517000","THE MICRONESIAN TELECOMMUNICATIONS CORPORATION",,"PO BOX 500306 CK",,"SAIPAN","MP","969500306",,,,,,,"986018563","6702342027",,,,"2011-10-13T10:19:17-0500","SHIRLEY DOTTS",,,,,179,72,0,11,83,0,83,66,0,,"2E2F2G2J2K2T3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013130025P040151841377002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LAKESIDE SYSTEMS, INC. 401(K) PROFIT SHARING PLAN","001","1994-01-01","LAKESIDE SYSTEMS, INC.",,,"777-A FLOWER STREET",,"GLENDALE","CA","91201",,,,,,,,,,,,,,,,,,"954343520","8186372000","621111","LAKESIDE SYSTEMS, INC.",,"777-A FLOWER STREET",,"GLENDALE","CA","91201",,,,,,,"954343520","8186372000",,,,"2011-10-13T02:00:15-0500","JAYA KURIAN",,,,,874,461,0,275,736,0,736,652,0,,"2A2E2F2G2J2S2T3D3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013092218P030148050145001","2010-01-01","2010-12-31","3",,"0","1","0","0",,"1",,,,,"HILLYARD REVISED PROFIT SHARING PLAN","333","1952-12-01","HILLYARD INDUSTRIES",,,"302 N 4TH ST",,"SAINT JOSEPH","MO","64501",,,,,,,"302 N 4TH ST",,"SAINT JOSEPH","MO","64501",,,,,,,"440284100","8162331321","325600","HILLYARD INDUSTRIES",,"302 N 4TH ST",,"SAINT JOSEPH","MO","64501",,,,,,,"440284100","8162331321",,,,"2011-10-13T09:21:29-0500","GREGG ROBERTS","2011-10-13T09:22:05-0500","GREGG ROBERTS",,,719,539,18,89,646,6,652,571,7,,"2E2F2G2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013104902P030148126497001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"CASE CORPORATION SUPPLEMENTAL UNEMPLOYMENT PLAN","805","1965-01-01","CASE NEW HOLLAND INC.",,,"700 STATE STREET",,"RACINE","WI","534040000",,,,,,,,,,,,,,,,,,"391982756","2626366004","333100","CASE NEW HOLLAND INC.",,"700 STATE STREET",,"RACINE","WI","534040000",,,,,,,"391982756","2626366004",,,,"2011-10-13T10:39:12-0500","RICK AIDE",,,,,1200,2041,,,2041,,2041,,,,,"4C","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013131135P030688599184001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAWSON & ASSOCIATES ARCHITECTS LLC PROFIT SHARING PLAN","001","2005-01-01","LAWSON & ASSOCIATES ARCHITECTS LLC",,,"7939 NORFOLK AVE.","SUITE 200","BETHESDA","MD","20814",,,,,,,"7939 NORFOLK AVE.","SUITE 200","BETHESDA","MD","20814",,,,,,,"311506866","3016541600","541310","LAWSON & ASSOCIATES ARCHITECTS LLC",,"7939 NORFOLK AVE.","SUITE 200","BETHESDA","MD","20814",,,,,,,"311506866","3016541600",,,,"2011-10-13T13:06:46-0500","RICHARD POWER",,,,,4,3,,,3,,3,3,0,,"2E2J2R3B3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013123836P030148198609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHEA EDUCATIONAL GROUP, INC., 401(K) PROFIT SHARING PLAN","001","2005-01-01","SHEA EDUCATIONAL GROUP, INC.",,,"13878 OLEANDER AVENUE",,"JUNO BEACH","FL","33408",,,,,,,"SHEA EDUCATIONAL GROUP, INC.","13878 OLEANDER AVE.","JUNO BEACH","FL","33408",,,,,,,"650016872","5614938080","624100","SHEA EDUCATIONAL GROUP, INC.",,"13878 OLEANDER AVENUE",,"JUNO BEACH","FL","33408",,,,,,,"650016872","5614938080",,,,"2011-10-13T12:38:12-0500","MICHAEL SHEA","2011-10-13T12:38:12-0500","MICHAEL SHEA",,,3,3,0,0,3,0,3,3,0,,"2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013133320P030148241873001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"MASSTRAN 401(K) RETIREMENT PLAN","001","2010-01-01","MASSTRAN CORP.",,,"150 A ANDOVER STREET","SUITE #5","DANVERS","MA","01923",,,,,,,,,,,,,,,,,,"043413333","9782234019","485990","MASSTRAN CORP.",,"150 A ANDOVER STREET","SUITE #5","DANVERS","MA","01923",,,,,,,"043413333","9782234019",,,,"2011-09-29T14:25:33-0500","ELENA UMANTSEVA","2011-10-13T10:48:49-0500","MARK FRIDMAR",,,118,117,,5,122,0,122,48,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111013133826P030148246289001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"JIM'S FORMAL WEAR CO, 401(K) PROFIT SHARING PLAN","001","1972-04-01","JIM'S FORMAL WEAR CO.",,,"804 EAST BROADWAY","P.O. BOX 125","TRENTON","IL","62293",,,,,,,,,,,,,,,,,,"370906581","6182249211","532220","JIM'S FORMAL WEAR CO.",,"804 EAST BROADWAY","P.O. BOX 125","TRENTON","IL","62293",,,,,,,"370906581","6182249211",,,,"2011-10-13T10:51:54-0500","JIMS FORMAL WEAR CO",,,,,673,923,1,34,958,0,958,576,7,,"2E2G2J2K2F3D2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013173200P040152071313001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","1","0","0","0",,"MCELWAIN, INC. PROFIT SHARING PLAN","002","1978-01-01","MCELWAIN MOTOR CAR COMPANY",,,"900 BELL AVENUE",,"ELLWOOD CITY","PA","161175802",,,,,,,,,,,,,,,,,,"250982336","7247584588","441110","MCELWAIN MOTOR CAR COMPANY",,"900 BELL AVENUE",,"ELLWOOD CITY","PA","161175802",,,,,,,"250982336","7247584588",,,,"2011-10-13T14:03:46-0500","H. FRANK MCELWAIN",,,,,118,106,0,13,119,0,119,103,1,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013092740P030687866112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDICAL CENTER ANESTHESIOLOGISTS, P.C. PROFIT SHARING PLAN AND TRUST","002","1972-02-01","MEDICAL CENTER ANESTHESIOLOGISTS, P.C.",,,"411 LAUREL, SUITE 3170",,"DES MOINES","IA","50314",,,,,,,,,,,,,,,,,,"420990669","5152830463","621111","MEDICAL CENTER ANESTHESIOLOGISTS, P.C.",,"411 LAUREL, SUITE 3170",,"DES MOINES","IA","50314",,,,,,,"420990669","5152830463",,,,"2011-10-13T09:20:18-0500","TIMOTHY TOPE",,,,,66,84,,13,97,0,97,70,0,,"2A2E2F2G2J2K2R3B3H2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013101317P030148095761001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"INTERNATIONAL EQUIPMENT TRADING LTD PROFIT SHARING PLAN & TRUST","002","1988-01-01","INTERNATIONAL EQUIPMENT TRADING LTD",,,"960 WOODLANDS PARKWAY",,"VERNON HILLS","IL","600613103",,,,,,,"960 WOODLANDS PARKWAY",,"VERNON HILLS","IL","600613103",,,,,,,"363067486","8479130777","452900","INTERNATIONAL EQUIPMENT TRADING LTD",,"960 WOODLANDS PARKWAY",,"VERNON HILLS","IL","600613103",,,,,,,"363067486","8479130777",,,,"2011-10-12T10:48:58-0500","TURGAY KAYA",,,,,7,8,,,8,,8,10,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013100259P030148085601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARK J. PASCUZZI, MD 401(K) PROFIT SHARING PLAN","001","1991-01-01","MARK J. PASCUZZI, MD",,,"1122 MCCANN DRIVE, STE. 1",,"WINCHESTER","KY","40391",,,,,,,,,,,,,,,,,,"611181301","8597442623","621111","MARK J. PASCUZZI, MD",,"1122 MCCANN DRIVE, STE. 1",,"WINCHESTER","KY","40391",,,,,,,"611181301","8597442623",,,,"2011-10-13T09:48:17-0500","EMILY E. HELMING",,,,,6,4,1,0,5,0,5,5,0,,"3D2J2G2E3B2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013123236P040022744994007","2010-05-01","2011-04-30","2",,,,,,,,,,,,"KUPPER CHEVROLET INC BENEFIT PLAN","501","2008-05-01","KUPPER CHEVROLET INC, BENEFIT PLAN",,,"1500 2ND ST NE",,"MANDAN","ND","58554",,,,,,,,,,,,,,,,,,"450407702","7016639851","441110","KUPPER CHEVROLET INC, BENEFIT PLAN",,"1500 2ND ST NE",,"MANDAN","ND","58554",,,,,,,"450407702","7016639851","RESSLER CHEVROLET INC. BENEFIT PLAN","450407702","501","2011-10-13T05:29:12-0500","ROBERT KUPPER","2011-10-13T05:29:12-0500","ROBERT KUPPER",,,131,131,,,131,,,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013174121P040022796818001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GERBER LIFE INSURANCE COMPANY RETIREMENT PLAN","114","1973-01-01","NESTLE USA, INC.",,,"30003 BAINBRIDGE RD",,"SOLON","OH","441392205",,,,,,,,,,,,,,,,,,"951572209","4403495757","311900","NESTLE USA, INC.",,"30003 BAINBRIDGE RD",,"SOLON","OH","441392205",,,,,,,"951572209","4403495757",,,,"2011-10-13T14:18:17-0500","SHARON M. STRASSHOFER","2011-10-13T13:07:19-0500","RUSSELL W. NISWANDER, F.S.A.",,,200,130,9,51,190,0,190,,0,,"1A1C1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013094028P040151707969001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"DEFINED BENEFIT FUND HALLIBURTON COMPANY EMPLOYEE BENEFIT MASTER TRUST","112","1999-05-01","HALLIBURTON COMPANY",,,"10200 BELLAIRE BLVD.",,"HOUSTON","TX","77072",,,,,,,,,,,,,,,,,,"806176426","2815753316","211110","HALLIBURTON COMPANY",,"10200 BELLAIRE BLVD.",,"HOUSTON","TX","77072",,,,,,,"806176426","2815753316",,,,"2011-10-12T17:22:04-0500","SHARON PARKES",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013101506P030148097137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"403(B) THRIFT PLAN OF UNITED DISABILITY SERVICES, INC.","002","1987-07-01","UNITED DISABILITY SERVICES, INC.",,,"701 S MAIN ST",,"AKRON","OH","44311",,,,,,,,,,,,,,,,,,"341374195","3307629755","624100","UNITED DISABILITY SERVICES, INC.",,"701 S MAIN ST",,"AKRON","OH","44311",,,,,,,"341374195","3307629755",,,,"2011-10-13T09:59:21-0500","HOWARD TAYLOR, VICE-PRESIDENT","2011-10-13T09:59:21-0500","HOWARD TAYLOR, VICE-PRESIDENT",,,168,136,0,8,144,0,144,110,4,,"2L",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013100636P040151722065001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"II-VI, INCORPORATED EMPLOYEES' PROFIT SHARING PLAN","001","1974-06-30","II-VI INCORPORATED",,,"375 SAXONBURG BLVD",,"SAXONBURG","PA","160569430",,,,,,,,,,,,,,,,,,"251214948","4123524455","339900","II-VI INCORPORATED",,"375 SAXONBURG BLVD",,"SAXONBURG","PA","160569430",,,,,,,"251214948","4123524455",,,,"2011-10-13T10:06:30-0500","CRAIG CREATURO","2011-10-13T10:06:30-0500","CRAIG CREATURO",,,1302,1092,1,242,1335,2,1337,1266,43,,"2E2F2G2J2K2S2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013125226P030148210417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE LOBSTER PROFIT SHARING PLAN","001","1997-01-01","SORRENTO LOBSTER, INC.",,,"OCEAN AVENUE",,"SORRENTO","ME","04677",,,,,,,"OCEAN AVENUE",,"SORRENTO","ME","04677",,,,,,,"043340761","6176280707","445220","SORRENTO LOBSTER, INC.",,"OCEAN AVENUE",,"SORRENTO","ME","04677",,,,,,,"043340761","6176280707",,,,"2011-10-13T12:52:08-0500","JOSEPH MACKESY",,,,,14,14,0,0,14,0,14,14,0,,"2E3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013125231P030148210545001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ISTAR FINANCIAL INC. BENEFITS AND WELFARE PLANS","501","1998-01-01","ISTAR FINANCIAL INC.",,,"1114 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10036",,,,,,,,,,,,,,,,,,"956881527","4153914300","525990","ISTAR FINANCIAL INC.",,"1114 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10036",,,,,,,"956881527","4153914300",,,,"2011-10-13T10:37:35-0500","GEOFFREY M. DUGAN",,,,,664,611,0,0,611,,,,,,,"4A4B4D4H4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","10","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013132539P030148236065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOME HEALTH CARE OF EAST TENNESSEE 401(K) PLAN","001","1992-07-01","HOME HEALTH CARE OF EAST TENNESSEE, INC.",,,"770 STUART ROAD NE",,"CLEVELAND","TN","37312",,,,,,,,,,,,,,,,,,"621185141","4234792757","621610","HOME HEALTH CARE OF EAST TENNESSEE, INC.",,"770 STUART ROAD NE",,"CLEVELAND","TN","37312",,,,,,,"621185141","4234792757",,,,"2011-10-13T10:42:45-0500","SCOTT RUTH","2011-10-13T10:42:45-0500","SCOTT RUTH",,,857,818,0,133,951,2,953,472,18,,"2E2F2G2J2K3D3H",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013133408P030148242449005","2010-01-01","2010-12-31","3",,,,,,"1","1",,,,,"OREGON TEAMSTERS GROUP LEGAL TRUST FUND","501","1979-05-31","OREGON TEAMSTERS GROUP LEGAL TRUST",,,"1500 SW FIRST AVENUE 1015",,"PORTLAND","OR","97201",,,,,,,,,,,,,,,,,,"930713781","5032210611","484110","OREGON TEAMSTERS GROUP LEGAL TRUST",,"1500 SW FIRST AVENUE 1015",,"PORTLAND","OR","97201",,,,,,,"930713781","5032210611",,,,"2011-10-13T13:28:31-0500","LAURIE TURNER TRUSTEE","2011-10-13T11:11:04-0500","CHRIS CAMPBELL TRUSTEE",,,303,256,,,256,,256,,,,,"4G",,,"1",,"1",,,,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013132931P030148238945001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"RIVER PARISH CONTRACTORS, INC. 401(K) PLAN","001","2001-10-15","RIVER PARISH CONTRACTORS, INC.",,,"PO BOX 2650",,"RESERVE","LA","70084",,,,,,,"4007 WEST AIRLINE HWY",,"RESERVE","LA","70084",,,,,,,"721514355","9855361425","238900","RIVER PARISH CONTRACTORS, INC.",,"PO BOX 2650",,"RESERVE","LA","70084",,,,,,,"721514355","9855361425",,,,"2011-10-13T10:01:20-0500","FRANCIS GUIDRY JR",,,,,111,69,0,12,81,0,81,47,8,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013175206P030148437633001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LANDMARK EDUCATION ENTERPRISES INC. 401(K) PROFIT SHARING RETIREMENT PLAN","001","1976-07-01","LANDMARK EDUCATION CORPORATION",,,"353 SACRAMENTO STREET, STE. 200",,"SAN FRANCISCO","CA","94111",,,,,,,"353 SACRAMENTO STREET, STE. 200",,"SAN FRANCISCO","CA","94111",,,,,,,"270033035","4159818850","611000","LANDMARK EDUCATION CORPORATION",,"353 SACRAMENTO STREET, STE. 200",,"SAN FRANCISCO","CA","94111",,,,,,,"270033035","4159818850",,,,"2011-10-13T10:38:37-0500","STEVEN ALLAN",,,,,303,306,1,51,358,2,360,236,6,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013094800P040151712241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"B.P.C. CORPORATION 401K PLAN","001","1993-01-01","B.P.C. CORPORATION",,,"140 S JEFFERSON AVE",,"COOKEVILLE","TN","385013425",,,,,,,,,,,,,,,,,,"621086271","9315285441","522110","B.P.C. CORPORATION",,"140 S JEFFERSON AVE",,"COOKEVILLE","TN","385013425",,,,,,,"621086271","9315285441",,,,"2011-10-13T09:46:56-0500","DAVID WILLIAMSON",,,,,208,172,11,15,198,2,200,198,11,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013091448P040022720594001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAUBERAN & COMPANY LTD PROFIT SHARING PLAN & TRUST","002","1999-01-01","SAUBERAN & COMPANY LLC",,"CHARLES K SAUBERAN","ULRICH CITY CENTRE SUITE 6",,"LOCKPORT","NY","140945366",,,,,,,,,,,,,,,,,,"263925585","7164391265","523900","SAUBERAN & COMPANY LLC","CHARLES K SAUBERAN","ULRICH CITY CENTRE SUITE 6",,"LOCKPORT","NY","140945366",,,,,,,"263925585","7164391265",,,,"2011-10-13T09:14:15-0500","CHARLES K SAUBERAN",,,,,3,5,0,0,5,0,5,5,0,,"2E2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013103204P030148111585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WARREN INDUSTRIES, INC. 401(K) RETIREMENT PLAN","002","1994-01-01","WARREN INDUSTRIES, INC.",,,"3100 MT. PLEASANT STREET",,"RACINE","WI","53404",,,,,,,,,,,,,,,,,,"391180002","2626397800","323100","WARREN INDUSTRIES, INC.",,"3100 MT. PLEASANT STREET",,"RACINE","WI","53404",,,,,,,"391180002","2626397800",,,,"2011-10-13T10:13:26-0500","PHILIP PAUL",,,,,301,264,0,12,276,0,276,166,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013103236P030148112017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ESBENSHADE FARMS PROFIT SHARING PLAN","001","1987-01-01","ESBENSHADE, INC.",,,"220 EBY CHIQUES ROAD",,"MOUNT JOY","PA","175528800",,,,,,,,,,,,,,,,,,"263835385","7176538061","112300","ESBENSHADE, INC.",,"220 EBY CHIQUES ROAD",,"MOUNT JOY","PA","175528800",,,,,,,"263835385","7176538061",,,,"2011-10-13T10:14:04-0500","H. GLENN ESBENSHADE",,,,,142,123,0,7,130,0,130,103,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013173232P040152071521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LUCKY 8 HOLDINGS INC. 401(K) PLAN","001","2006-03-21","LUCKY 8 HOLDINGS INC.",,,"16730 COUNTY RD. 40",,"CARVER","MN","553154608",,,,,,,,,,,,,,,,,,"204593188","9528078661","531390","LUCKY 8 HOLDINGS INC.",,"16730 COUNTY RD. 40",,"CARVER","MN","553154608",,,,,,,"204593188","9528078661",,,,"2011-10-13T14:04:16-0500","CHARLES KAPPES","2011-10-13T14:04:16-0500","CHARLES KAPPES",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013092807P030148055329001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MIKASA/AMERICAN COMMERCIAL INCORPORATED PROFIT SHARING/401(K) PLAN","002","1961-07-31","MIKASA, INC.",,,"601 SOUTH WADE BLVD",,"MILLVILLE","NJ","08332",,,,,,,"601 SOUTH WADE BLVD",,"MILLVILLE","NJ","08332",,,,,,,"330099679","8568255620","453220","MIKASA, INC.",,"601 SOUTH WADE BLVD",,"MILLVILLE","NJ","08332",,,,,,,"330099679","8568255620",,,,"2011-10-13T09:27:29-0500","TOM REED",,,,,554,0,22,333,355,4,359,366,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013101337P040022728626001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COLE PAPERS, INC. 401(K) PLAN","003","1996-01-01","COLE PAPERS, INC.",,,"1300 38TH STREET NORTH",,"FARGO","ND","58102",,,,,,,,,,,,,,,,,,"450129830","7012825311","525100","COLE PAPERS, INC.",,"1300 38TH STREET NORTH",,"FARGO","ND","58102",,,,,,,"450129830","7012825311",,,,"2011-10-13T11:13:25-0500","COLE PERKINS",,,,,163,158,1,8,167,,167,131,1,,"2E2F2G2J2K2R2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013100353P030148087105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEACHTREE PROTECTIVE COVERS 401(K) PLAN","001","1998-04-01","PEACHTREE PROTECTIVE COVERS, INC.",,,"1477 ROSEDALE DRIVE",,"HIRAM","GA","30141",,,,,,,"1477 ROSEDALE DRIVE",,"HIRAM","GA","30141",,,,,,,"582024157","8003413325","238900","PEACHTREE PROTECTIVE COVERS, INC.",,"1477 ROSEDALE DRIVE",,"HIRAM","GA","30141",,,,,,,"582024157","8003413325",,,,"2011-10-13T09:58:51-0500","DIANA CURLEE",,,,,62,57,0,6,63,0,63,38,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013095747P030148079889022","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CLEARFIELD COUNTY PUBLIC LIBRARY FEDERATION DEFINED CONTRIBUTION RETIREMENT PLAN","001","1995-07-01","CLEARFIELD COUNTY PUBLIC LIBRARY",,,"601 BEECH STREET",,"CURWENSVILLE","PA","16833",,,,,,,,,,,,,,,,,,"251299000","8142360589","611000","CLEARFIELD COUNTY PUBLIC LIBRARY",,"601 BEECH STREET",,"CURWENSVILLE","PA","16833",,,,,,,"251299000","8142360589",,,,"2011-10-13T09:35:28-0500","DANIEL P BOGEY",,,,,8,7,,1,8,,8,8,,,"2L",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013101052P030148093697001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"NACHI MACHINING TECHNOLOGY COMPANY USW EMPLOYEES PENSION FUND","019","1951-01-01","NACHI AMERICA INC.",,,"715 PUSHVILLE ROAD",,"GREENWOOD","IN","46143",,,,,,,,,,,,,,,,,,"131968862","3175351001","333200","NACHI AMERICA INC.",,"715 PUSHVILLE ROAD",,"GREENWOOD","IN","46143",,,,,,,"131968862","3175351001",,,,"2011-10-13T10:10:16-0500","SUE DEATON",,,,,255,1,124,70,195,54,249,,0,,"1B1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013133500P030148243105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GARVER RETIREMENT PLAN","002","1973-12-21","GARVER, LLC",,,"4701 NORTHSHORE DRIVE",,"NORTH LITTLE ROCK","AR","72118",,,,,,,,,,,,,,,,,,"010733400","5013763633","541330","GARVER, LLC",,"4701 NORTHSHORE DRIVE",,"NORTH LITTLE ROCK","AR","72118",,,,,,,"010733400","5013763633",,,,"2011-10-13T10:50:46-0500","HERBERT J. PARKER",,,,,414,294,0,86,380,0,380,380,5,,"2E2F2G2J2S2K3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013093851P030148063393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WALSH BISHOP ASSOCIATES, INCOPORATED EMPLOYEE STOCK OWNERSHIP PLAN","002","2007-01-01","WALSH BISHOP ASSOCIATES, INCORPORATED",,,"900 NORTH THIRD STREET",,"MINNEAPOLIS","MN","55401",,,,,,,,,,,,,,,,,,"411499451","6123388799","541310","WALSH BISHOP ASSOCIATES, INCORPORATED",,"900 NORTH THIRD STREET",,"MINNEAPOLIS","MN","55401",,,,,,,"411499451","6123388799",,,,"2011-10-13T09:28:32-0500","TINA BROWN","2011-10-13T09:28:32-0500","TINA BROWN",,,50,18,0,12,30,0,30,30,0,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013094106P030148065313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PHARMEDIUM SERVICES, L. L. C. WELFARE PLAN (DEATH & AD&D)","503","2008-09-01","PHARMEDIUM SERVICES, L. L. C.",,,"150 NORTH FIELD DRIVE","SUITE 350","LAKE FOREST","IL","600452506",,,,,,,,,,,,,,,,,,"861073233","8474572300","424210","PHARMEDIUM SERVICES, L. L. C.",,"150 NORTH FIELD DRIVE","SUITE 350","LAKE FOREST","IL","600452506",,,,,,,"861073233","8474572300",,,,"2011-10-13T09:30:32-0500","JAMES G. MCMAHON",,,,,420,474,,,474,,0,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013084055P030021826866001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LARRY A. DAVIS, LTD. 401K PLAN","002","2004-01-01","DAVIS & LASCOLA, LTD.",,,"960 RAND ROAD, SUITE 210",,"DES PLAINES","IL","60016",,,,,,,,,,,,,,,,,,"364299393","8473908500","541110","DAVIS & LASCOLA, LTD.",,"960 RAND ROAD, SUITE 210",,"DES PLAINES","IL","60016",,,,,,,"364299393","8473908500","LARRY A. DAVIS, LTD","364299393","002","2011-10-13T05:32:06-0500","LARRY A. DAVIS","2011-10-13T05:32:06-0500","LARRY A. DAVIS",,,3,3,0,0,3,0,3,2,0,,"2E2J",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013153947P040022773554001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DENALI FOODS, INC. 401(K) PROFIT SHARING PLAN","001","1990-01-01","DENALI FOODS, INC.",,,"3301 DENALI ST., NO. 200",,"ANCHORAGE","AK","995034051",,,,,,,,,,,,,,,,,,"920097345","9073343105","722300","DENALI FOODS, INC.",,"3301 DENALI ST., NO. 200",,"ANCHORAGE","AK","995034051",,,,,,,"920097345","9073343105",,,,"2011-10-13T15:36:41-0500","DALE MARTENS",,,,,121,93,7,0,100,0,100,24,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013175525P040152093601001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SOUTHWEST MISSOURI BANK HEALTH CARE PLAN","501","1997-01-01","SOUTHWEST MISSOURI BANK",,,"P O BOX 814",,"CARTHAGE","MO","64836",,,,,,,,,,,,,,,,,,"431161740","4173589331","522110","SOUTHWEST MISSOURI BANK",,"P O BOX 814",,"CARTHAGE","MO","64836",,,,,,,"431161740","4173589331",,,,"2011-10-13T18:24:35-0500","MICHAEL GRAY",,,,,192,180,2,1,183,,183,,,,,"4A4B4H4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013142728P030148280593001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"UNITED LAUNCH ALLIANCE PENSION PLAN FOR HOURLY EMP EMPLOYEES OF THE SPACE SYSTEMS GROUP AT HARLINGEN","004","1994-05-02","UNITED LAUNCH ALLIANCE",,,"9100 E. MINERAL CIR.",,"CENTENNIAL","CO","80112",,,,,,,,,,,,,,,,,,"810673845","7209227100","336410","UNITED LAUNCH ALLIANCE",,"9100 E. MINERAL CIR.",,"CENTENNIAL","CO","80112",,,,,,,"810673845","7209227100",,,,"2011-10-13T10:20:23-0500","MICHAEL COOPER",,,,,145,71,17,56,144,2,146,,0,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","1","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013143846P040022762626001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"TONY'S MEATS 401(K) PLAN","001","1997-07-01","TONYS MEATS, INC.",,,"12001 E CALEY AVE UNIT A",,"CENTENNIAL","CO","801116846",,,,,,,,,,,,,,,,,,"840763330","3039911350","445299","TONYS MEATS, INC.",,"12001 E CALEY AVE UNIT A",,"CENTENNIAL","CO","801116846",,,,,,,"840763330","3039911350",,,,"2011-10-13T14:38:41-0500","LYNNEA LOUISON","2011-10-13T14:38:41-0500","LYNNEA LOUISON",,,167,159,0,6,165,0,165,99,21,,"2E2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013083600P040151673841001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"INTEGKRAL DESIGN & CONSTRUCTION, LLC PROFIT SHARING PLAN","001","1997-01-01","INTEGKRAL DESIGN & CONSTRUCTION, LLC",,,"24 SODOM LANE",,"DERBY","CT","064182608",,,,,,,,,,,,,,,,,,"061449841","2037352798","238300","INTEGKRAL DESIGN & CONSTRUCTION, LLC",,"24 SODOM LANE",,"DERBY","CT","064182608",,,,,,,"061449841","2037352798",,,,"2011-10-13T09:35:32-0500","ALISON KRAL",,,,,4,2,0,2,4,0,4,4,0,,"2E2G2R3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013085447P030148026881001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"COTS 401(K) PLAN","001","1996-05-01","COMPUTING TECHNOLOGIES, INC.",,,"3028 JAVIER ROAD","SUITE 400","FAIRFAX","VA","22031",,,,,,,"3028 JAVIER ROAD","SUITE 400","FAIRFAX","VA","22031",,,,,,,"521779415","7032808800","541519","COMPUTING TECHNOLOGIES, INC.",,"3028 JAVIER ROAD","SUITE 400","FAIRFAX","VA","22031",,,,,,,"521779415","7032808800",,,,"2011-10-13T08:29:49-0500","MARY SOSA","2011-10-13T08:51:32-0500","MANUEL SOSA",,,572,445,0,110,555,1,556,437,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013143038P030148283729013","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SHOALS ORTHOPEDICS, PC 401K P/S PLAN","001","2003-01-01","SHOALS ORTHOPEDICS, P.C.",,"R. LEE NICHOLS","426 W COLLEGE ST",,"FLORENCE","AL","35630",,,,,,,,,,,,,,,,,,"753040383","2567184041","621111","SHOALS ORTHOPEDICS, P.C.","R. LEE NICHOLS","426 W COLLEGE ST",,"FLORENCE","AL","35630",,,,,,,"753040383","2567184041",,,,"2011-10-13T15:02:04-0500","R. LEE NICHOLS","2011-10-13T15:02:22-0500","R. LEE NICHOLS",,,15,12,4,0,16,0,16,16,,,"2A2E2G2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013150202P030148311841008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BAYHEALTH MEDICAL CENTER INC PENSION PLAN","001","1971-07-01","BAYHEALTH MEDICAL CENTER, INC",,,"640 SOUTH STATE STREET",,"DOVER","DE","19901",,,,,,,,,,,,,,,,,,"510064318","3027447019","622000","BAYHEALTH MEDICAL CENTER INC",,"640 SOUTH STATE STREET",,"DOVER","DE","19901",,,,,,,"510064318","3027447019",,,,"2011-10-13T14:43:22-0500","RUTH WARNER",,,,,3336,1713,599,895,3207,51,3258,,,,"1G1A",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013090214P030148034337001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"R.C. MOORE, INC. FLEXIBLE BENEFIT PLAN","501","1990-04-01","R.C. MOORE, INC.",,,"8 GINN ROAD",,"SCARBOROUGH","ME","04074",,,,,,,,,,,,,,,,,,"010278035","2078835184","484120","R.C. MOORE, INC.",,"8 GINN ROAD",,"SCARBOROUGH","ME","04074",,,,,,,"010278035","2078835184",,,,"2011-10-13T03:17:46-0500","SHAWN R MOORE",,,,,207,226,,,226,,,,,,,"4A4B4D4F4H4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013151553P040683217664001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARCHITECTURAL RESOURCES CAMBRIDGE, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1989-01-01","ARCHITECTURAL RESOURCES CAMBRIDGE, INC.",,,"5 CAMBRIDGE CENTER, 12TH FLOOR",,"CAMBRIDGE","MA","02142",,,,,,,,,,,,,,,,,,"042453189","6175472200","541310","ARCHITECTURAL RESOURCES CAMBRIDGE, INC.",,"FIVE CAMBRIDGE CENTER - 12TH FLOOR",,"CAMBRIDGE","MA","02142",,,,,,,"042453189","6175472200",,,,"2011-10-13T15:08:18-0500","OLGA KOZA",,,,,66,56,0,1,57,0,57,50,2,,"2O3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013151841P030148321153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COOPERATIVE PENSION PLAN","336","1999-01-01","COOPERATIVE PENSION / SAVINGS BOARD",,"C/O GORDON WILLIAMS, NYHART","8415 ALLISON POINTE BLVD SUITE 300",,"INDIANAPOLIS","IN","462504159",,,,,,,,,,,,,,,,,,"311257147","8884006661","115110","COOPERATIVE PENSION / SAVINGS BOARD","C/O GORDON WILLIAMS, NYHART","8415 ALLISON POINTE BLVD SUITE 300",,"INDIANAPOLIS","IN","462504159",,,,,,,"311257147","8884006661",,,,"2011-10-13T15:10:57-0500","JEFFREY TROIKE",,,,,366,235,58,25,318,37,355,,0,,"1A1C1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013151854P040050047671001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY LEGAL AID SERVICES,INC PROFIT SHARING PLAN","003","2002-10-01","COMMUNITY LEGAL AID SERVICES,INC",,,"50 S MAIN ST STE 800",,"AKRON","OH","44308",,,,,,,,,,,,,,,,,,"340753560","3305354191","541110","COMMUNITY LEGAL AID SERVICES,INC",,"50 S MAIN ST STE 800",,"AKRON","OH","44308",,,,,,,"340753560","3305354191",,,,"2011-10-11T14:11:58-0500","ANDREA SANDEJ","2011-10-13T11:26:49-0500","SARA E. STRATTAN",,,94,74,0,11,85,0,85,85,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013135432P030688742336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LONG TERM DISABILITY PLAN FOR SALARIED EMPLOYEES","505","1969-03-01","CRETEX COMPANIES, INC.",,,"311 LOWELL AVE.",,"ELK RIVER","MN","55330",,,,,,,"311 LOWELL AVE.",,"ELK RIVER","MN","55330",,,,,,,"410207645","7634412121","327300","CRETEX COMPANIES, INC.",,"311 LOWELL AVE.",,"ELK RIVER","MN","55330",,,,,,,"410207645","7634412121",,,,"2011-10-12T13:06:59-0500","STEVEN RAGALLER",,,,,378,371,2,,373,,373,,,,,"4H",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013083613P030148014113001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"ENERGY MANUFACTURING COMPANY COLLECTIVELY BARGAINED PROFIT SHARING PLAN","001","1971-11-28","ENERGY MANUFACTURING COMPANY, INC.",,,"OHNWARD FINANCIAL ADVISOR SERVICES",,"MAQUOKETA","IA","52060",,,,,,,"203 NORTH MAIN STREET",,"MAQUOKETA","IA","52060",,,,,,,"391910790","5636522491","332900","ENERGY MANUFACTURING COMPANY, INC.",,"OHNWARD FINANCIAL ADVISOR SERVICES",,"MAQUOKETA","IA","52060",,,,,,,"391910790","5636522491",,,,"2011-10-13T08:35:29-0500","PAT KOPF","2011-10-13T08:35:29-0500","PAT KOPF",,,147,105,1,24,130,0,130,123,5,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013143117P040683071984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACCIDENTAL DEATH AND DISMEMBERMENT PLAN OF MCKINSEY & COMPANY, INC.","504","1963-11-01","MCKINSEY & COMPANY INC",,,"55 EAST 52ND STREET - 27TH FLR.",,"NEW YORK","NY","100550028",,,,,,,,,,,,,,,,,,"131826332","2124467000","541600","MCKINSEY & COMPANY, INC.",,"55 EAST 52ND STREET - 27TH FLR.",,"NEW YORK","NY","100550028",,,,,,,"131826332","2124467000",,,,"2011-10-13T11:25:19-0500","JAMES E. FARRELL JR.","2011-10-13T14:31:04-0500","VIRGINIA L. MOLINO",,,5486,4161,0,0,4161,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013152347P040151957553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WAYNE MEMORIAL HOSPITAL NON-BARGAINING PENSION PROGRAM","002","2007-01-01","WAYNE MEMORIAL HEALTH SYSTEM",,,"601 PARK STREET",,"HONESDALE","PA","18431",,,,,,,,,,,,,,,,,,"232221292","5702538101","622000","WAYNE MEMORIAL HEALTH SYSTEM",,"601 PARK STREET",,"HONESDALE","PA","18431",,,,,,,"232221292","5702538101",,,,"2011-10-13T15:21:53-0500","DAVID HOFF",,,,,814,806,0,40,846,0,846,452,7,,"2M2G2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013145931P030148310001007","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"ATLANTA FOOT & LEG CLINIC, PA 401(K) PROFIT SHARIN","001","2010-01-01","ATLANTA FOOT & LEG CLINIC, PA",,,"6911 TARA BOULEVARD",,"JONESBORO","GA","30236",,,,,,,,,,,,,,,,,,"581268728","7704779535","621111","ATLANTA FOOT & LEG CLINIC, PA",,"6911 TARA BOULEVARD",,"JONESBORO","GA","30236",,,,,,,"581268728","7704779535",,,,"2011-10-11T10:50:12-0500","STANLEY KALISH, MD",,,,,8,7,0,0,7,0,7,7,0,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013153645P040022772642001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CRAY VALLEY USA, LLC RETIREMENT & SAVINGS PLAN","001","1988-11-04","CRAY VALLEY USA, LLC",,,"468 THOMAS JONES WAY",,"EXTON","PA","19341",,,,,,,,,,,,,,,,,,"133489295","6103634150","325100","CRAY VALLEY USA, LLC",,"468 THOMAS JONES WAY",,"EXTON","PA","19341",,,,,,,"133489295","6103634150",,,,"2011-10-13T11:40:51-0500","JEAN FOLLIS",,,,,387,220,0,7,227,0,227,227,5,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013155056P030148346737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AK-CHIN INDIAN COMMUNITY 401(K) RETIREMENT SAVINGS PLAN","001","2000-01-01","AK-CHIN INDIAN COMMUNITY",,,"42507 WEST PETERS AND NALL ROAD",,"MARICOPA","AZ","85239",,,,,,,,,,,,,,,,,,"860148433","5205681000","115110","AK-CHIN INDIAN COMMUNITY",,"42507 WEST PETERS AND NALL ROAD",,"MARICOPA","AZ","85239",,,,,,,"860148433","5205681000",,,,"2011-10-13T15:48:46-0500","STEVE TIEMANN","2011-10-13T15:48:46-0500","STEVE TIEMANN",,,423,402,0,38,440,0,440,337,25,,"2A2E2G2J2K3D2F2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013153152P030148330945001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"FORETHOUGHT 401(K) RETIREMENT PLAN","001","2004-07-01","FORETHOUGHT FINANCIAL SERVICES, INC.",,,"ONE FORETHOUGHT CENTER",,"BATESVILLE","IN","470060216",,,,,,,"ONE FORETHOUGHT CENTER",,"BATESVILLE","IN","470060216",,,,,,,"351642997","8129336600","524140","FORETHOUGHT FINANCIAL SERVICES, INC.",,"ONE FORETHOUGHT CENTER",,"BATESVILLE","IN","470060216",,,,,,,"351642997","8129336600",,,,"2011-10-13T15:31:00-0500","JUDY SINCLAIR",,,,,251,256,0,71,327,0,327,300,7,,"2F2G2J2K2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013175319P040152092129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MTD PRODUCTS INC HEALTH AND WELFARE BENEFIT PLAN","525","2005-01-01","MTD PRODUCTS INC",,,"P. O. BOX 368022",,"CLEVELAND","OH","441369722",,,,,,,,,,,,,,,,,,"061650267","3302252600","333900","MTD PRODUCTS INC",,"P. O. BOX 368022",,"CLEVELAND","OH","441369722",,,,,,,"061650267","3302252600",,,,"2011-10-12T15:35:27-0500","FRAN M. WALSH","2011-10-13T14:37:10-0500","PAUL R. CAJA",,,4091,4089,42,0,4131,,,,,,,"4A4B4D4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013175539P030689464448001","2010-01-01","2010-12-31","2",,"0","0","1","0","1","1","0","0","0",,"NATIONAL FRICTION PRODUCTS HOURLY EMPLOYEES' RETIREMENT INCOME PLAN","031","1976-01-01","MOTION CONTROL INDUSTRIES",,,"13925 BALLANTYNE CORP PLACE","SUITE 400","CHARLOTTE","NC","28277",,,,,,,"13925 BALLANTYNE CORP PLACE","SUITE 400","CHARLOTTE","NC","28277",,,,,,,"251539808","7045011143","326200","MOTION CONTROL INDUSTRIES",,"13925 BALLANTYNE CORP PLACE","SUITE 400","CHARLOTTE","NC","28277",,,,,,,"251539808","7045011143",,,,"2011-10-13T17:21:41-0500","JULIA CHANDLER",,,,,174,0,0,0,0,0,0,,,,"1B1G3H",,,,"1",,,,"1",,"1",,"1","1",,,,,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013142812P030148281361001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"JOSEPH HUGHES CONSTRUCTION 401(K) PLAN","001","2005-07-01","JHC COMMERCIAL LLC",,,"11125 SW BARBUR BLVD.",,"PORTLAND","OR","97219",,,,,,,"11125 SW BARBUR BLVD.",,"PORTLAND","OR","97219",,,,,,,"200493795","5036247100","236200","JHC COMMERCIAL LLC",,"11125 SW BARBUR BLVD.",,"PORTLAND","OR","97219",,,,,,,"200493795","5036247100","JHC COMMERCIAL LLC","200493795","002","2011-10-13T14:25:25-0500","APRIL CASSEDAY",,,,,39,15,0,20,35,0,35,33,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013143551P040022761810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOMAS BRADY & ASSOCIATES INSURANCE SERVICES, INC. DEFINED BENEFIT PLAN","002","2006-01-01","THOMAS BRADY & ASSOCIATES INSURANCE SERVICES, INC.",,,"477 NINTH AVENUE, STE 105",,"SAN MATEO","CA","944021854",,,,,,,,,,,,,,,,,,"943347364","6503470276","524210","THOMAS BRADY & ASSOCIATES INSURANCE SERVICES, INC.",,"477 NINTH AVENUE, STE 105",,"SAN MATEO","CA","944021854",,,,,,,"943347364","6503470276",,,,"2011-10-13T14:35:48-0500","THOMAS E. BRADY",,,,,3,3,0,0,3,0,3,,0,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013085553P030148028113001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"GRACE UNIONIZED EMPLOYEE RETIREMENT PLAN","002","2007-08-13","MAPLE LEAF FOODS",,,"1011 E. TOUHY AVENUE, STE. 500",,"DES PLAINES","IL","60018",,,,,,,"1011 E. TOUHY AVENUE, STE. 500",,"DES PLAINES","IL","60018",,,,,,,"223391799","8476558115","311900","MAPLE LEAF FOODS",,"1011 E. TOUHY AVENUE, STE. 500",,"DES PLAINES","IL","60018",,,,,,,"223391799","8476558115",,,,"2011-10-13T08:49:48-0500","CHARLES STANLEY",,,,,109,114,0,0,114,0,114,4,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013085128P030021828242001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WYSER-PRATTE MANAGEMENT CO. INC. 401(K) PROFIT SHARING PLAN","001","1993-01-01","WYSER-PRATTE MANAGEMENT CO., INC.",,,"410 PARK AVENUE, SUITE 510",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"133648519","6467355000","523120","WYSER-PRATTE MANAGEMENT CO., INC.",,"410 PARK AVENUE, SUITE 510",,"NEW YORK","NY","10022",,,,,,,"133648519","6467355000",,,,"2011-10-13T08:50:38-0500","GUY WYSER-PRATTE",,,,,16,9,0,4,13,0,13,9,0,,"2A2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013150447P030148313665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILSON LINES OF MINNESOTA, INC. EMPLOYEES' 401(K) PLAN","001","1988-01-01","WILSON LINES OF MINNESOTA, INC.",,,"2131 2ND AVE",,"NEWPORT","MN","55055",,,,,,,,,,,,,,,,,,"411431851","6514592384","484120","WILSON LINES OF MINNESOTA, INC.",,"2131 2ND AVE",,"NEWPORT","MN","55055",,,,,,,"411431851","6514592384",,,,"2011-10-13T15:00:32-0500","LARRY HOFSTAD",,,,,49,38,0,0,38,0,38,28,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013150748P030148315137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEW FACES CABINETRY, INC. 401(K) PROFIT SHARING PLAN","001","2000-01-01","NEW FACES CABINETRY, INC.",,,"7930 SUGAR PINE COURT",,"RENO","NV","89523",,,,,,,,,,,,,,,,,,"880256878","7757876688","811490","NEW FACES CABINETRY, INC.",,"7930 SUGAR PINE COURT",,"RENO","NV","89523",,,,,,,"880256878","7757876688",,,,"2011-10-13T13:43:41-0500","EDUARDO ARIAS",,,,,22,21,0,0,21,0,21,12,0,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013153156P030021885330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C & K HOLDINGS 401(K) PLAN","001","2001-01-01","C & K HOLDINGS, LLC",,,"6205 WEST 101ST STREET",,"CHICAGO RIDGE","IL","60415",,,,,,,,,,,,,,,,,,"861058579","7732292246","541600","C & K HOLDINGS, LLC",,"6205 WEST 101ST STREET",,"CHICAGO RIDGE","IL","60415",,,,,,,"861058579","7732292246",,,,"2011-10-13T15:30:52-0500","JAMES HARDY",,,,,211,236,0,15,251,0,251,91,3,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013144729P040151926769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SWIFT ROOFING OF E-TOWN, INC. RETIREMENT SAVINGS PLAN","002","1997-11-01","SWIFT ROOFING OF E-TOWN, INC.",,,"P. O. BOX 502",,"ELIZABETHTOWN","KY","42702",,,,,,,"108 SOUTH PARK CIRCLE",,"ELIZABETHTOWN","KY","42702",,,,,,,"611070245","2707535976","238100","SWIFT ROOFING OF E-TOWN, INC.",,"P. O. BOX 502",,"ELIZABETHTOWN","KY","42702",,,,,,,"611070245","2707535976",,,,"2011-10-13T14:47:27-0500","GREG SWIFT",,,,,225,110,0,124,234,0,234,221,8,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013144737P030688907472001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HICKS PENSION SERVICES FLEXIBLE BENEFITS PLAN","501","1997-01-01","HICKS PENSION SERVICES",,,"1218 WAIMANU STREET, SECOND FLOOR",,"HONOLULU","HI","968144304",,,,,,,,,,,,,,,,,,"900178392","8085219494","561110","HICKS PENSION GROUP",,"1218 WAIMANU STREET, SECOND FLOOR",,"HONOLULU","HI","968144304",,,,,,,"990178392",,,,,"2011-10-12T21:39:24-0500","MICHAEL HICKS",,,,,9,8,,,8,,,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013143432P030004420675006","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"RICHARD A LITT DDS MS PC PROFIT SHARING PLAN","001","1997-01-01","RICHARD A LITT, D D S , M S , P C",,,"55 W MAPLE SUITE 200",,"BIRMINGHAM","MI","48009",,,,,,,,,,,,,,,,,,"383297874","2486465220","621210","RICHARD A LITT D D S M S P C",,"55 W MAPLE SUITE 200",,"BIRMINGHAM","MI","48009",,,,,,,"383297874","2486465220",,,,"2011-10-13T14:11:12-0500","DR RICHARD A LITT DDS",,,,,4,4,,1,5,,5,5,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013150226P030148312289001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","1","0","0",,"U.S. HEALTHCARE HOLDINGS 401(K) RETIREMENT PLAN","001","2003-01-01","U.S. HEALTHCARE HOLDINGS, LLC",,,"101 SE THIRD STREET",,"EVANSVILLE","IN","47708",,,,,,,"101 SE THIRD STREET",,"EVANSVILLE","IN","47708",,,,,,,"161684061","3174077164","524290","U.S. HEALTHCARE HOLDINGS, LLC",,"101 SE THIRD STREET",,"EVANSVILLE","IN","47708",,,,,,,"161684061","3174077164",,,,"2011-10-13T15:02:08-0500","NICHOLAS KNAB",,,,,47,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013151923P030021883586001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAUFMAN BORGEEST & RYAN LLP WELFARE PLAN","501","2004-01-01","KAUFMAN BORGEEST & RYAN LLP",,,"120 BROADWAY, 14TH FLOOR",,"NYC","NY","10271",,,,,,,"120 BROADWAY, 14TH FLOOR",,"NYC","NY","10271",,,,,,,"133951065","2129809600","541110","KAUFMAN BORGEEST & RYAN LLP",,"120 BROADWAY, 14TH FLOOR",,"NYC","NY","10271",,,,,,,"133951065","2129809600",,,,"2011-10-13T15:00:11-0500","BOBBY MA",,,,,187,180,7,5,192,0,192,0,0,,,"4A4B4D4H4Q","1","0","0","0","1","0","0","0",,"0","0",,,"1","3",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013153006P030148329121019","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"BRUCE SNYDER PROFIT SHARING PLAN","001","1987-01-01","BRUCE RICHARD SNYDER",,,"3321 TOLEDO TERRACE SUITE 201",,"HYATTSVILLE","MD","20782",,,,,,,,,,,,,,,,,,"521517738","3018535200","524210","BRUCE RICHARD SNYDER",,"3321 TOLEDO TERRACE SUITE 201",,"HYATTSVILLE","MD","20782",,,,,,,"521517738","3018535200",,,,"2011-10-13T15:20:29-0500","BRUCE SNYDER",,,,,3,5,,,5,,5,5,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013153006P030148329121013","2010-01-01","2010-12-31","1",,,"1",,,"1","1",,,,,"THE RAILROAD EMPLOYEES NATIONAL HEALTH & WELFARE PLAN","501","1955-03-01","JOINT PLAN COMMITTEE",,,"1901 L STREET NW SUITE 500",,"WASHINGTON","DC","20036",,,,,,,,,,,,,,,,,,"521118310","2028627200","482110","JOINT PLAN COMMITTEE",,"1901 L STREET NW SUITE 500",,"WASHINGTON","DC","20036",,,,,,,"521118310","2028627200",,,,"2011-10-13T15:18:04-0500","R A SCARDELLETTI",,,,,300000,98240,201760,,300000,,300000,,,52,,"4Q4B4A","1",,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013153014P030021885090001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"R.P.I. DIVISION OF RIBLET PRODUCTS CORPORATION PENSION PLAN","002","1969-01-01","COLEMAN CABLE, INC.",,,"1530 SHIELDS DRIVE",,"WAUKEGAN","IL","60085",,,,,,,,,,,,,,,,,,"364410887","8476722300","335900","COLEMAN CABLE, INC.",,"1530 SHIELDS DRIVE",,"WAUKEGAN","IL","60085",,,,,,,"364410887","8476722300",,,,"2011-10-13T14:42:12-0500","CLIFF SANDERSON",,,,,85,0,31,44,75,4,79,,0,,"1B1G1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013144111P030012468789001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEE INJURIES PLAN","502","1932-01-01","CONSTELLATION ENERGY GROUP, INC. C/O BENEFITS UNIT",,,"100 CONSTELLATION WAY, SUITE 500P",,"BALTIMORE","MD","21202",,,,,,,,,,,,,,,,,,"521964611","4102345000","221100","MARCIA BEHLERT EXEC DIRECTOR - BENEFITS STRATEGY",,"100 CONSTELLATION WAY, SUITE 520P",,"BALTIMORE","MD","21202",,,,,,,"521964611","4104703724",,,,"2011-10-13T14:22:48-0500","MARCIA BEHLERT","2011-10-13T14:09:51-0500","THOMAS RUSZIN JR.",,,9354,7576,0,0,7576,,,,,,,"4A4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013152811P030148327361008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WISE ALLOYS LLC FLEXIBLE BENEFITS PLAN","501","1999-04-01","WISE ALLOYS LLC",,,"4805 SECOND STREET",,"MUSCLE SHOALS","AL","356611282",,,,,,,,,,,,,,,,,,"522139172","2563866354","331310","WISE ALLOYS LLC",,"4805 SECOND STREET",,"MUSCLE SHOALS","AL","356611282",,,,,,,"522139172","2563866354",,,,"2011-10-13T09:36:12-0500","SANDRA K. SCARBOROUGH","2011-10-13T09:36:12-0500","SANDRA K. SCARBOROUGH",,,678,761,4,7,772,,,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013090000P030148032321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAMPBELL & COMPANY, INC. 401K PLAN","002","1979-04-01","CAMPBELL & COMPANY, INC.",,,"2850 QUARRY LAKE DRIVE",,"BALTIMORE","MD","21209",,,,,,,,,,,,,,,,,,"521114143","4104132600","525990","CAMPBELL & COMPANY, INC.",,"2850 QUARRY LAKE DRIVE",,"BALTIMORE","MD","21209",,,,,,,"521114143","4104132600",,,,"2011-10-13T08:57:51-0500","GREGORY T. DONOVAN",,,,,198,146,0,50,196,0,196,195,12,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013154153P040022774402006","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"UNITED ASSN FULL-TIME SAL OFF & EMP OF LOCL UNIONS COUNCILS, ST & PROV PEN PLAN","333","1966-12-28","U A LOCAL UNION OFFICERS & EMPLOYEES PENSION FUND",,,"103 ORONOCO STREET",,"ALEXANDRIA","VA","22314",,,,,,,"103 ORONOCO STREET",,"ALEXANDRIA","VA","22314",,,,,,,"521178032","7035194484","525100","U A LOCAL UNION OFFICERS & EMPLOYEES PENSION FUND",,"103 ORONOCO STREET",,"ALEXANDRIA","VA","22314",,,,,,,"521178032","7035194484",,,,"2011-10-12T11:24:22-0500","WILLIAM HITE",,,,,4773,1607,2251,697,4555,339,4894,,39,462,"1A1G",,,,"1",,,,"1",,"1","1",,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013152913P030021884850003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"VERNAY LABORATORIES RETIREMENT INCOME PLAN","003","1964-12-01","VERNAY LABORATORIES, INC.",,,"120 E. SOUTH COLLEGE STREET",,"YELLOW SPRINGS","OH","453871623",,,,,,,,,,,,,,,,,,"310511814","9377679505","326100","VERNAY LABORATORIES, INC.",,"120 E. SOUTH COLLEGE STREET",,"YELLOW SPRINGS","OH","453871623",,,,,,,"310511814","9377679505",,,,"2011-10-10T11:02:53-0500","ROBIN C THOMPSON",,,,,580,35,344,201,580,52,632,,,,"1A1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013153535P040151968129001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"AVENTINE RENEWABLE ENERGY INC 401(K) PLAN","001","2003-06-01","AVENTINE RENEWABLE ENERGY, INC.",,,"5400 LBJ FREEWAY, SUITE 450",,"DALLAS","TX","75240",,,,,,,,,,,,,,,,,,"753108352","2144516753","325900","AVENTINE RENEWABLE ENERGY, INC.",,"5400 LBJ FREEWAY, SUITE 450",,"DALLAS","TX","75240",,,,,,,"753108352","2144516753",,,,"2011-10-13T15:35:31-0500","RUSSELL EDEN","2011-10-13T15:35:31-0500","RUSSELL EDEN",,,309,283,0,20,303,1,304,250,7,,"2E2F2G2J2K2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013174319P040683707280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"Q DENTAL GROUP, PC SECT. 401(K)/ PROFIT SHARING PLAN","001","1992-01-01","Q DENTAL GROUP, P.C.",,,"2300 BUFFALO ROAD BLDG 300",,"ROCHESTER","NY","14624",,,,,,,,,,,,,,,,,,"161238134","5854295351","621210","Q DENTAL GROUP, P.C.",,"2300 BUFFALO ROAD BLDG 300",,"ROCHESTER","NY","14624",,,,,,,"161238134","5854295351",,,,"2011-10-13T14:21:25-0500","DONNA MATTERN",,,,,125,108,0,17,125,0,125,116,2,,"2A2E2F2G2J2K2R2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013145649P040022766738001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"MPEC 401(K) PLAN","001","1993-01-01","MOTOR PARTS & EQUIPMENT CORPORATION",,,"310 S WINNEBAGO ST",,"ROCKFORD","IL","611022232",,,,,,,,,,,,,,,,,,"361508055","8159637609","441300","MOTOR PARTS & EQUIPMENT CORPORATION",,"310 S WINNEBAGO ST",,"ROCKFORD","IL","611022232",,,,,,,"361508055","8159637609","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-10-13T14:56:46-0500","JOSEPH HANSBERRY","2011-10-13T14:56:46-0500","JOSEPH HANSBERRY",,,216,213,0,6,219,0,219,144,22,,"2E2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013175649P030148442641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SVTC TECHNOLOGIES, LLC 401(K) PLAN","001","2007-04-01","SVTC TECHNOLOGIES, LLC",,,"3901 N. FIRST STREET",,"SAN JOSE","CA","95134",,,,,,,"3901 N. FIRST STREET",,"SAN JOSE","CA","95134",,,,,,,"680642790","4082407097","334410","SVTC TECHNOLOGIES, LLC",,"3901 N. FIRST STREET",,"SAN JOSE","CA","95134",,,,,,,"680642790","4082407097",,,,"2011-10-13T17:56:04-0500","ANTHONY GALLO",,,,,284,239,1,60,300,1,301,270,1,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013140310P030021874226001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BIRLASOFT, INC. 401K PLAN","001","1998-06-01","BIRLASOFT, INC.",,,"2035 LINCOLN HIGHWAY",,"EDISON","NJ","088173351",,,,,,,"2035 LINCOLN HIGHWAY",,"EDISON","NJ","088173351",,,,,,,"223394773","7322875000","541511","BIRLASOFT, INC.",,"2035 LINCOLN HIGHWAY",,"EDISON","NJ","088173351",,,,,,,"223394773","7322875000",,,,"2011-10-13T10:17:40-0500","MANEESH AGARWAL",,,,,302,249,0,76,325,0,325,121,2,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","6","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013140520P030148264689001","2010-01-01","2010-12-31","3",,"1","0","0","0","0","1","0","0","0",,"AP PROFESSIONALS/CONSILIUM1 WELFARE PLAN","501","2010-01-01","AP PROFESSIONALS/CONSILIUM1",,,"PO BOX 490",,"WILLIAMSVILLE","NY","14231",,,,,,,"PO BOX 490",,"WILLIAMSVILLE","NY","14231",,,,,,,"161510964","5853814409","561300","AP PROFESSIONALS/CONSILIUM1",,"PO BOX 490",,"WILLIAMSVILLE","NY","14231",,,,,,,"161510964","5853814409",,,,"2011-10-13T14:04:45-0500","TOM THOMSON",,,,,559,559,,,559,,559,,,0,,"4A4B4D4F4H","0",,,"1","1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013140552P040022755522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TREHAB 401(K) PROFIT SHARING PLAN","001","1976-07-01","TREHAB",,,"10 PUBLIC AVENUE",,"MONTROSE","PA","188011220",,,,,,,,,,,,,,,,,,"231729514","5702783338","921000","TREHAB",,"10 PUBLIC AVENUE",,"MONTROSE","PA","188011220",,,,,,,"231729514","5702783338",,,,"2011-10-13T14:02:07-0500","DENNIS PHELPS",,,,,117,91,11,34,136,0,136,124,5,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013141828P040022757314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"POMPEII 3, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","POMPEII 3, INC.",,,"514 N. MILWAUKEE AVENUE",,"LIBERTYVILLE","IL","600482019",,,,,,,,,,,,,,,,,,"202147782","8473677022","448310","POMPEII 3, INC.",,"514 N. MILWAUKEE AVENUE",,"LIBERTYVILLE","IL","600482019",,,,,,,"202147782","8473677022",,,,"2011-10-13T14:13:37-0500","ROBERT TAGLIAFERRO","2011-10-13T14:13:37-0500","ROBERT TAGLIAFERRO",,,4,5,,,5,,5,4,,,"2A2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013152913P030021884850002","2010-01-01","2010-12-31","4","C",,,,,,,,,,,"AEW REAL ESTATE SECURITIES DIVERSIFIED TRUST","022",,"SEI TRUST COMPANY",,,"1 FREEDOM VALLEY DRIVE",,"OAKS","PA","194569989",,,,,,,,,,,,,,,,,,"261726524","6106762369",,"SEI TRUST COMPANY",,"1 FREEDOM VALLEY DRIVE",,"OAKS","PA","194569989",,,,,,,"261726524","6106762369",,,,"2011-10-13T04:49:22-0500","ROBERT G. MUSE",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013180420P030049297159001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"NATHAN G FINK ESQ PA EMPLOYEES MONEY PURCHASE PLAN","001","1982-07-11","NATHAN G FINK ESQ PA",,,"470 NEW MILFORD AVENUE",,"ORADELL","NJ","07649",,,,,,,"470 NEW MILFORD AVENUE",,"ORADELL","NJ","07649",,,,,,,"222384548","2019679116","541110","NATHAN G FINK ESQ PA",,"470 NEW MILFORD AVENUE",,"ORADELL","NJ","07649",,,,,,,"222384548","2019679116",,,,"2011-10-13T18:03:59-0500","NATHAN FINK",,,,,3,3,0,0,3,0,3,3,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013142418P040022758946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRAEF RETIREMENT SAVINGS PLAN","001","1968-04-01","GRAEF-USA INC.",,,"125 SOUTH 84TH STREET","SUITE 401","MILWAUKEE","WI","53214",,,,,,,,,,,,,,,,,,"391083592","4142591500","541330","GRAEF-USA INC.",,"125 SOUTH 84TH STREET","SUITE 401","MILWAUKEE","WI","53214",,,,,,,"391083592","4142591500",,,,"2011-10-13T11:06:01-0500","RICHARD M. BUB","2011-10-13T11:06:01-0500","RICHARD M. BUB",,,387,244,0,113,357,0,357,332,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013150049P040151938385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEATTY & WOZNIAK, P.C. 401(K) PROFIT SHARING PLAN","001","1998-01-01","BEATTY & WOZNIAK, P.C.",,,"216 16TH STREET, SUITE 1100",,"DENVER","CO","802025115",,,,,,,,,,,,,,,,,,"841472293","3034074499","541110","BEATTY & WOZNIAK, P.C.",,"216 16TH STREET, SUITE 1100",,"DENVER","CO","802025115",,,,,,,"841472293","3034074499",,,,"2011-10-13T11:16:33-0500","WANDA WADE",,,,,66,64,0,13,77,0,77,67,7,,"2A2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013150054P040683171120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"SATISH C SINGLA MD PC PROFIT SHARING PLAN","001","2006-01-01","SATISH C. SINGLA",,,"1717 TANGLEWOOD RD",,"ORWIGSBURG","PA","17961",,,,,,,"1717 TANGLEWOOD RD",,"ORWIGSBURG","PA","17961",,,,,,,"200792761","9999999999","621111","SATISH C. SINGLA",,"1717 TANGLEWOOD RD",,"ORWIGSBURG","PA","17961",,,,,,,"200792761","9999999999",,,,"2011-10-13T14:41:39-0500","QIMAT GOYAL",,,,,5,5,0,0,5,0,5,5,0,,"2E3B",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013151331P040151950113001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"CREDITORS INTERCHANGE 401K RETIREMENT PLAN","001","1995-09-01","CREDITORS INTERCHANGE RECEIVABLE MANAGEMENT",,,"80 HOLTZ DRIVE",,"BUFFALO","NY","142251470",,,,,,,,,,,,,,,,,,"200230151","7166147500","541990","CREDITORS INTERCHANGE RECEIVABLE MANAGEMENT",,"80 HOLTZ DRIVE",,"BUFFALO","NY","142251470",,,,,,,"200230151","7166147500",,,,"2011-10-13T15:13:18-0500","BARBARA WAGNER","2011-10-13T15:13:18-0500","BARBARA WAGNER",,,563,414,0,68,482,1,483,378,188,,"2E2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013151333P040151950161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPECTRACELL LABORATORIES, INC. 401K PLAN","001","2001-02-01","SPECTRACELL LABORATORIES, INC.",,,"10401 TOWN PARK DRIVE",,"HOUSTON","TX","77072",,,,,,,,,,,,,,,,,,"760353012","7136213101","541380","SPECTRACELL LABORATORIES, INC.",,"10401 TOWN PARK DRIVE",,"HOUSTON","TX","77072",,,,,,,"760353012","7136213101",,,,"2011-10-13T11:23:56-0500","WILLIAM R. PREECE","2011-10-13T11:23:56-0500","WILLIAM R. PREECE",,,163,131,1,34,166,0,166,102,12,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013084319P030148019169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MORNINGSIDE MANAGEMENT LLC 401(K) PLAN","001","1998-01-01","MORNINGSIDE MANAGEMENT, LLC",,,"PO BOX 1314",,"LEESBURG","VA","20177",,,,,,,,,,,,,,,,,,"542027278","7036691804","623000","MORNINGSIDE MANAGEMENT, LLC",,"PO BOX 1314",,"LEESBURG","VA","20177",,,,,,,"542027278","7036691804",,,,"2011-10-13T08:42:44-0500","ELIZABETH E. SHOCKLEY",,,,,650,560,0,80,640,0,640,528,0,,"2E2F2G2J2K3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013152007P030148321985001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THIRD AVENUE HOLDINGS DELAWARE LLC PROFIT SHARING PLAN","003","1990-01-01","THIRD AVENUE HOLDINGS DELAWARE LLC",,,"622 3RD AVE FL 32",,"NEW YORK","NY","10017",,,,,,,"622 3RD AVE FL 32",,"NEW YORK","NY","10017",,,,,,,"010690881","2128885222","523900","THIRD AVENUE HOLDINGS DELAWARE LLC",,"622 3RD AVE FL 32",,"NEW YORK","NY","10017",,,,,,,"010690881","2128885222",,,,"2011-10-13T15:19:26-0500","VINCENT DUGAN",,,,,125,108,0,17,125,0,125,106,2,,"2E2F2G2J2T3B3H2R",,,,"1",,,,"1",,"1",,,"1",,,,"1",,"1","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013144938P040151928497001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PAUL I. MELI, III, M.D., P.A. 401(K) PROFIT SHARING PLAN","001","1991-01-01","PAUL I. MELI, III, M.D., P.A.",,,"4701 N. FEDERAL HIGHWAY","SUITE A39","FT. LAUDERDALE","FL","333084608",,,,,,,,,,,,,,,,,,"650213201","9547718177","621111","PAUL I. MELI, III, M.D., P.A.",,"4701 N. FEDERAL HIGHWAY","SUITE A39","FT. LAUDERDALE","FL","333084608",,,,,,,"650213201","9547718177",,,,"2011-10-13T03:49:18-0500","PAUL I. MELI, III",,,,,13,8,0,3,11,0,11,11,1,,"2A2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013153614P040022772386008","2010-01-01","2010-12-31","4","M",,,,,,"1",,,,,"TRINITY INDUSTRIES, INC. PLAN MASTER TRUST","105",,"TRINITY INDUSTRIES, INC.",,,"2525 STEMMONS FREEWAY",,"DALLAS","TX","752072400",,,,,,,,,,,,,,,,,,"750225040","2145898403",,"401K COMMITTEE OF TRINITY INDUSTRIES, INC.","C/O JUDY SCHWEIKERT","2525 STEMMONS FREEWAY",,"DALLAS","TX","75207",,,,,,,"750225040","2145898403",,,,"2011-10-13T10:34:02-0500","JUDY SCHWEIKERT","2011-10-13T10:34:02-0500","JUDY SCHWEIKERT",,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013173618P030689414224001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"CHILDRENS HEART CENTER 401(K) RETIREMENT PLAN","001","1999-01-01","WM N EVANS M D LTD DBA CHILDRENS HEART CENTER",,,"3006 S MARYLAND PKWY STE 690",,"LAS VEGAS","NV","891092297",,,,,,,,,,,,,,,,,,"880176637","7027321290","621111","WM N EVANS M D LTD DBA CHILDRENS HEART CENTER",,"3006 S MARYLAND PKWY STE 690",,"LAS VEGAS","NV","891092297",,,,,,,"880176637","7027321290",,,,"2011-10-13T17:36:15-0500","LYDIA MORSE","2011-10-13T17:36:15-0500","LYDIA MORSE",,,113,98,0,7,105,0,105,103,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013135226P030148256609001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"TEXAS AIR COMPOSITES CORPORATE BENEFIT PLAN","501","2010-01-01","TEXA AIR COMPOSITES INC",,"STEPHEN NOVAKOVICH","15050 TRINITY BLVD",,"FORT WORTH","TX","76155",,,,,,,"15050 TRINITY BLVD",,"FORT WORTH","TX","76155",,,,,,,"752880655","9727092866","336410","TEXA AIR COMPOSITES","STEPHEN NOVAKOVICH","15050 TRINITY BLVD",,"FORT WORTH","TX","76155",,,,,,,"752880655","9727092866",,,,"2011-10-13T13:51:12-0500","STEPHEN NOVAKOVICH",,,,,252,194,,,194,,194,,,,,"4A4B4D","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013135230P040151882497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHER SOLE PROPRIETOR PROFIT SHARING PLAN","001","1988-01-01","CHER SOLE PROPRIETOR",,"C/O GRANT TANI BARASH ALTMAN LLC","PO BOX 5623",,"BEVERLY HILLS","CA","902095623",,,,,,,,,,,,,,,,,,"953120001","3102886200","711510","CHER SOLE PROPRIETOR","C/O GRANT TANI BARASH ALTMAN LLC","PO BOX 5623",,"BEVERLY HILLS","CA","902095623",,,,,,,"953120001","3102886200",,,,"2011-10-13T13:52:29-0500","CHER",,,,,5,5,0,0,5,0,5,2,0,,"2A2E3B3D3H","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013144217P030148293825001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PAKO, INC 401K PROFIT SHARING PLAN","001","2002-01-01","PAKO, INC.",,,"7615 JENTHER DRIVE",,"MENTOR","OH","44060",,,,,,,,,,,,,,,,,,"341123019","4409468030","336410","PAKO, INC.",,"7615 JENTHER DRIVE",,"MENTOR","OH","44060",,,,,,,"341123019","4409468030",,,,"2011-10-13T14:41:35-0500","MARTHA J. STANKEWICZ","2011-10-13T14:41:35-0500","MARTHA J. STANKEWICZ",,,162,151,0,3,154,0,154,136,2,,"2G2E2J2K2F2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013085241P030148024545001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NETJETS INC. 401(K) PLAN","001","1984-01-01","NETJETS INC.",,,"4111 BRIDGEWAY AVE",,"COLUMBUS","OH","432191882",,,,,,,"4111 BRIDGEWAY AVE",,"COLUMBUS","OH","432191882",,,,,,,"510383060","6142395508","481000","NETJETS INC.",,"4111 BRIDGEWAY AVE",,"COLUMBUS","OH","432191882",,,,,,,"510383060","6142395508",,,,"2011-10-13T08:51:23-0500","LISA CARPENTER",,,,,2993,2156,0,463,2619,2,2621,2053,83,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013090444P030148036449001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PENSION PLAN FOR HOURLY EMPLOYEES OF GORDON, GEORGIA FACILITY","001","1985-03-01","BASF CATALYSTS, LLC",,,"100 CAMPUS DR",,"FLORHAM PARK","NJ","079321020",,,,,,,,,,,,,,,,,,"221586002","9732456000","325100","BASF CATALYSTS, LLC",,"100 CAMPUS DR",,"FLORHAM PARK","NJ","079321020",,,,,,,"221586002","9732456000",,,,"2011-10-13T09:02:10-0500","GEORGE H. MUSKAL, EMPLOYEE BENEFITS",,,,,373,164,93,80,337,29,366,,4,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013174626P040683717392001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"RAINBOW TREE COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","002","2008-01-01","RAINBOW TREE COMPANY",,,"11571 K TEL DRIVE",,"MINNETONKA","MN","55343",,,,,,,,,,,,,,,,,,"411463241","6129223810","561730","RAINBOW TREE COMPANY",,"11571 K TEL DRIVE",,"MINNETONKA","MN","55343",,,,,,,"411463241","6129223810",,,,"2011-10-13T14:25:33-0500","TODD SCHWARZROCK",,,,,86,81,0,7,88,0,88,88,8,,"2P2I2Q3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013084843P030148021953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUDSON GROUP (HG), INC. EMPLOYEE BENEFITS PLAN","501","2008-07-01","HUDSON GROUP HG, INC.",,,"ONE MEADOWLANDS PLAZA, 11TH FLOOR",,"EAST RUTHERFORD","NJ","07073",,,,,,,,,,,,,,,,,,"261776066","2019395050","424920","HUDSON GROUP HG, INC.",,"ONE MEADOWLANDS PLAZA, 11TH FLOOR",,"EAST RUTHERFORD","NJ","07073",,,,,,,"261776066","2019395050",,,,"2011-10-13T08:48:02-0500","WILLIAM WOLF",,,,,2319,2319,0,0,2319,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013083956P030148017265001","2010-01-01","2010-12-31","1",,"0","1","0","0","1","0","0","0","0",,"PLUMBERS & PIPEFITTERS LOCAL 104 PENSION PLAN","001","1986-01-01","PLUMBERS & PIPEFITTERS LOCAL 104 PENSION PLAN",,,"PO BOX 268",,"CHICOPEE","MA","01014",,,,,,,"PO BOX 268",,"CHICOPEE","MA","01014",,,,,,,"042746381","4135923397","525100","PLUMBERS & PIPEFITTERS LOCAL 104 PENSION PLAN",,"PO BOX 268",,"CHICOPEE","MA","01014",,,,,,,"042746381","4135923397",,,,"2011-10-13T08:32:54-0500","MAUREEN SPEIGHT","2011-10-13T08:37:11-0500","MARK DALEY",,,761,231,365,160,756,,756,,,34,"1B1G",,"1",,,,,"1",,,"1","1",,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013145718P030148308257001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LAIRD PLASTICS, INC. PROFIT SHARING AND RETIREMENT SAVINGS PLAN","001","1963-08-31","LAIRD PLASTICS, INC.",,,"6800 BROKEN SOUND PARKWAY","SUITE 150","BOCA RATON","FL","33487",,,,,,,"6800 BROKEN SOUND PARKWAY","SUITE 150","BOCA RATON","FL","33487",,,,,,,"112578749","5614439144","424600","LAIRD PLASTICS, INC.",,"6800 BROKEN SOUND PARKWAY","SUITE 150","BOCA RATON","FL","33487",,,,,,,"112578749","5614439144",,,,"2011-10-13T14:56:57-0500","DOLORES WILLIS",,,,,482,315,3,96,414,0,414,317,7,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013153849P040683298800001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COATS NORTH AMERICA GROUP INSURANCE","501","1938-01-01","COATS & CLARK, INC.",,,"3430 TORINGDON WAY, SUITE 301",,"CHARLOTTE","NC","28277",,,,,,,,,,,,,,,,,,"050267426","7043295800","313000","COATS & CLARK, INC.",,"3430 TORINGDON WAY, SUITE 301",,"CHARLOTTE","NC","28277",,,,,,,"050267426","7043295800",,,,"2011-10-13T11:43:35-0500","DANI CRANE","2011-10-13T11:16:30-0500","WILLIAM F. OSTMANN",,,1984,1182,719,0,1901,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013141619P040683015936001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"PACIFIC BELLS, INC. EMPLOYEE BENEFIT PLAN","001","1998-01-01","PACIFIC BELLS, INC.",,,"243 NORTH BROADWAY",,"MEDINA","OH","44256",,,,,,,,,,,,,,,,,,"911806191","3307255671","722210","PACIFIC BELLS, INC.",,"243 NORTH BROADWAY",,"MEDINA","OH","44256",,,,,,,"911806191","3307255671",,,,"2011-10-13T09:55:43-0500","WARD R MILLER",,,,,1005,868,0,26,894,0,894,87,2,,"2E2J3H2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013175827P040152096641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BURNDY LLC RETIREE BENEFITS PLAN","507","2009-11-01","BURNDY LLC RETIREE BENEFITS PLAN",,,"40 WATERVIEW DRIVE","PO BOX 1000","SHELTON","CT","064841000",,,,,,,,,,,,,,,,,,"270697100","4758824000","335900","BURNDY LLC RETIREE BENEFITS PLAN",,"40 WATERVIEW DRIVE","PO BOX 1000","SHELTON","CT","064841000",,,,,,,"270697100","4758824000",,,,"2011-10-13T14:44:50-0500","STEPHEN M. MAIS, VP HUMAN RESOURCES","2011-10-13T14:44:50-0500","STEPHEN M. MAIS, VP HUMAN RESOURCES",,,240,0,241,0,241,,,,,,,"4A","1","0","0","1","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013143756P040022762466001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE CAROL WOODS RETIREMENT PLAN","001","1986-07-01","CAROL WOODS RETIREMENT CENTER",,,"750 WEAVER DAIRY ROAD",,"CHAPEL HILL","NC","27514",,,,,,,,,,,,,,,,,,"237271041","9199684511","623000","CAROL WOODS RETIREMENT CENTER",,"750 WEAVER DAIRY ROAD",,"CHAPEL HILL","NC","27514",,,,,,,"237271041","9199684511",,,,"2011-10-13T10:50:16-0500","LIZ SCHMITT","2011-10-13T11:14:55-0500","PATRICIA SPRIGG",,,343,334,0,23,357,0,357,171,0,,"2F2G2L2M2T3D","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013084518P030021827506002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JOHN M. LANE, D.M.D. 401(K) PROFIT SHARING PLAN","001","1991-01-01","JOHN M. LANE, D.M.D",,,"1912 BRUIN LANE",,"FLORENCE","AL","35630",,,,,,,,,,,,,,,,,,"631024772","2567608000","621210","JOHN M. LANE, D.M.D",,"1912 BRUIN LANE",,"FLORENCE","AL","35630",,,,,,,"631024772","2567608000",,,,"2011-10-13T09:20:23-0500","JOHN M. LANE, DMD","2011-10-13T09:20:35-0500","JOHN M. LANE, DMD",,,4,,,,0,,0,,,,"2A2E2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013152022P040151955185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAUL ANKA PRODUCTIONS, INC. DEFINED BENEFIT PENSION PLAN","001","1990-01-01","PAUL ANKA PRODUCTIONS, INC.",,"C/O NKS & F, LLP","10960 WILSHIRE BLVD., 5TH FLOOR",,"LOS ANGELES","CA","900674114",,,,,,,,,,,,,,,,,,"131946214","3102274657","711510","PAUL ANKA PRODUCTIONS, INC.","C/O NKS & F, LLP","10960 WILSHIRE BLVD., 5TH FLOOR",,"LOS ANGELES","CA","900674114",,,,,,,"131946214","3102274657",,,,"2011-10-13T11:28:03-0500","PAUL ANKA",,,,,33,21,0,10,31,0,31,,0,,"1A1G1I3D3H",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013152036P040022770338001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY LEGAL AID SERVICES,INC PENSION PLAN","004","2004-01-01","COMMUNITY LEGAL AID SERVICES,INC",,,"50 S MAIN ST STE 800",,"AKRON","OH","44308",,,,,,,,,,,,,,,,,,"340753560","3305354191","541110","COMMUNITY LEGAL AID SERVICES,INC",,"50 S MAIN ST STE 800",,"AKRON","OH","44308",,,,,,,"340753560","3305354191",,,,"2011-10-11T14:12:33-0500","ANDREA SANDEJ","2011-10-13T11:28:10-0500","SARA E. STRATTAN",,,18,16,0,2,18,0,18,18,0,,"2T2C3D2G2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013143438P030148286993007","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"OFFICE & PROFESSIONAL EMPLOYEES RETIREMENT PLAN","001","1980-04-01","BOARD OF TRUSTEES OFFICE & PROFESSIONAL EMPLOYEES",,"BENEFIT ADMINISTRATION CO","1200 FIFTH AVENUE SUITE 1100",,"SEATTLE","WA","98101",,,,,,,,,,,,,,,,,,"911337614","2066251800","561110","BOARD OF TRUSTEES OFFICE & PROFESSIONAL EMPLOYEES","BENEFIT ADMINISTRATION CO","1200 FIFTH AVENUE SUITE 1100",,"SEATTLE","WA","98101",,,,,,,"911337614","2066251800",,,,"2011-10-13T10:57:02-0500","NORMAN ANDERSON","2011-10-13T10:56:26-0500","NORMAN ANDERSON",,,501,320,209,0,529,0,529,529,,28,"2G2J2K2E2F2T",,"1",,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013143022P040151913073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALLIED PILOTS ASSOCIATION PILOT OCCUPATIONAL DISABILITY PLAN","504","1993-06-01","ALLIED PILOTS ASSOCIATION","DIRECTOR OF BENEFITS",,"O CONNELL BLDG, 14600 TRINITY BLVD","SUITE 500","FORT WORTH","TX","761552512",,,,,,,,,,,,,,,,,,"131982245","8173022147","813930","ALLIED PILOTS ASSOCIATION",,"O CONNELL BLDG, 14600 TRINITY BLVD","SUITE 500","FORT WORTH","TX","761552512",,,,,,,"131982245","8173022147",,,,"2011-10-13T14:28:19-0500","TARA SILVER-MALYSKA","2011-10-13T14:28:19-0500","TARA SILVER-MALYSKA",,,4835,4079,177,40,4296,,,,,,,"4H4L","0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013091057P030148042081001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ROBERT HALF INTERNATIONAL INC. 401(K) PLAN","002","1992-07-01","ROBERT HALF INTERNATIONAL INC.",,,"2613 CAMINO RAMON",,"SAN RAMON","CA","94583",,,,,,,"2613 CAMINO RAMON",,"SAN RAMON","CA","94583",,,,,,,"941648752","9259131000","561300","ROBERT HALF INTERNATIONAL INC.",,"2613 CAMINO RAMON",,"SAN RAMON","CA","94583",,,,,,,"941648752","9259131000",,,,"2011-10-12T15:00:10-0500","KATHRYN KREBS",,,,,8962,7739,2,1733,9474,5,9479,4964,325,,"2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013090148P030148034097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"T L FULLEN PROFIT SHARING PLAN","001","1986-01-01","TOMMY L FULLEN, TRUSTEE","TOMMY L FULLEN, ESQ.","SAME","5104 STAGE ROAD",,"MEMPHIS","TN","38134",,,,,,,"5104 STAGE ROAD",,"MEMPHIS","TN","38134",,,,,,,"621294085","9013861647","541110","TOMMY L FULLEN, TRUSTEE","SAME","5104 STAGE ROAD",,"MEMPHIS","TN","38134",,,,,,,"621294085","9013861647",,,,"2011-10-13T08:59:36-0500","TOMMY L FULLEN",,,,,5,5,0,0,5,0,5,5,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013145113P040151929777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUMITOMO METAL MINING POGO LLC VISION","504","2009-08-01","SUMITOMO METAL MINING POGO LLC",,,"701 5TH AVENUE",,"SEATTLE","WA","981047004",,,,,,,,,,,,,,,,,,"920173618","2064052800","212200","SUMITOMO METAL MINING POGO LLC",,"701 5TH AVENUE",,"SEATTLE","WA","981047004",,,,,,,"920173618","2064052800",,,,"2011-10-13T14:47:36-0500","DEAN MENGE",,,,,191,197,0,0,197,,,,,,,"4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013150016P040022767618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN OF SARATOGA CARE, INC.","001","1989-03-01","SARATOGA CARE, INC.",,,"211 CHURCH ST",,"SARATOGA SPRINGS","NY","128661046",,,,,,,,,,,,,,,,,,"141338547","5185838435","622000","SARATOGA CARE, INC.",,"211 CHURCH ST",,"SARATOGA SPRINGS","NY","128661046",,,,,,,"141338547","5185838435",,,,"2011-10-13T14:56:47-0500","MARCY DREIMILLER",,,,,1905,1780,0,159,1939,0,1939,1850,70,,"2H2L2M2F2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013154446P040022775410002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HIGH STREET ADVISORS, L.P. DEFINED BENEFIT PENSION PLAN","001","2006-01-01","HIGH STREET ADVISORS, L.P.",,,"86 LARCH ROW",,"WENHAM","MA","01984",,,,,,,,,,,,,,,,,,"043492641","9785267600","523900","HIGH STREET ADVISORS, L.P.",,"86 LARCH ROW",,"WENHAM","MA","01984",,,,,,,"043492641","9785267600",,,,"2011-10-13T04:44:18-0500","WILLIAM L. FURBER",,,,,1,1,0,0,1,0,1,,0,,"1A1I3B3D3H",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013172930P030148424033001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"DEAN G. WATANABE PROFIT SHARING PLAN","001","1996-04-16","DEAN G. WATANABE","SAN MARINO VETERINARY CLINIC",,"2453 S. OAK KNOLL AVENUE",,"SAN MARINO","CA","91108",,,,,,,,,,,,,,,,,,"954178602","6262821010","541940","DEAN G. WATANABE",,"2453 S. OAK KNOLL AVENUE",,"SAN MARINO","CA","91108",,,,,,,"954178602","6262821010",,,,"2011-10-11T16:23:06-0500","DEAN WATANABE",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2R3B3D",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013174631P040022798290001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NESTLE USA HOURLY PENSION PLAN","047","1988-12-01","NESTLE USA, INC.",,,"30003 BAINBRIDGE RD",,"SOLON","OH","441392205",,,,,,,,,,,,,,,,,,"951572209","4403495757","311900","NESTLE USA, INC.",,"30003 BAINBRIDGE RD",,"SOLON","OH","441392205",,,,,,,"951572209","4403495757",,,,"2011-10-13T14:26:48-0500","SHARON M. STRASSHOFER","2011-10-13T13:12:05-0500","RUSSELL W. NISWANDER, F.S.A.",,,1962,1093,218,707,2018,24,2042,,18,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013135742P030688751808001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STANADYNE CORPORATION PENSION PLAN","021","1989-02-01","STANADYNE CORPORATION","SAME",,"92 DEERFIELD ROAD",,"WINDSOR","CT","06095",,,,,,,"92 DEERFIELD ROAD",,"WINDSOR","CT","06095",,,,,,,"222940378","8605250821","333610","STANADYNE CORPORATION",,"92 DEERFIELD ROAD",,"WINDSOR","CT","06095",,,,,,,"222940378","8605250821",,,,"2011-10-12T10:37:52-0500","STEPHEN RODGERS",,,,,2401,612,799,820,2231,91,2322,,3,,"1A1B1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013141359P030049239687001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ADVANCED CONCEPTS, INC. HEALTH & WELFARE PLAN","502","2001-01-01","ADVANCED CONCEPTS, INC.",,,"9861 BROKEN LAND PARKWAY, SUITE 150",,"COLUMBIA","MD","21046",,,,,,,,,,,,,,,,,,"521573536","3015962712","541519","ADVANCED CONCEPTS, INC.",,"9861 BROKEN LAND PARKWAY, SUITE 150",,"COLUMBIA","MD","21046",,,,,,,"521573536","3015962712",,,,"2011-10-13T14:12:21-0500","JANEEN VAUGHT",,,,,228,194,0,0,194,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013105446P030024370070001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"WELLDYNAMICS 401(K) RETIREMENT PLAN","001","2001-06-01","WELLDYNAMICS INC",,,"2107 CITYWEST BLVD.,","BLDG. 2, SUITE 2.601A","HOUSTON","TX","77042",,,,,,,"2107 CITYWEST BLVD.,","BLDG. 2, SUITE 2.601A","HOUSTON","TX","77042",,,,,,,"760452224","7138394069","213110","WELLDYNAMICS INC",,"2107 CITYWEST BLVD.,","BLDG. 2, SUITE 2.601A","HOUSTON","TX","77042",,,,,,,"760452224","7138394069",,,,"2011-10-13T10:45:54-0500","JOSEPH ANDOLINO",,,,,274,2,0,5,7,1,8,6,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013142409P040151907073001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","1","0",,"INTERNATIONAL RELIEF & DEVELOPMENT INC BASIC ACCIDENTAL DEATH AND DISMEMBERMENT PLAN","507","2009-12-01","INTERNATIONAL RELIEF & DEVELOPMENT INC",,,"1621 N KENT STREET 4TH FLOOR",,"ARLINGTON","VA","222092132",,,,,,,,,,,,,,,,,,"541889077","7032480161","624200","INTERNATIONAL RELIEF & DEVELOPMENT INC",,"1621 N KENT STREET 4TH FLOOR",,"ARLINGTON","VA","222092132",,,,,,,"511889077","7032480161",,,,"2011-10-13T14:22:28-0500","BEVERLY ARMSTRONG",,,,,153,0,0,0,0,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013111845P030148147297005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KAMAX LP 401K SAVINGS PLAN","001","1996-03-01","KAMAX LP",,,"500 WEST LONG LAKE",,"TROY","MI","480984540",,,,,,,,,,,,,,,,,,"383247509","2488790200","332900","KAMAX LP",,"500 WEST LONG LAKE",,"TROY","MI","480984540",,,,,,,"383247509","2488790200",,,,"2011-09-27T02:49:52-0500","ELIZABETH ZURAWSKI",,,,,282,230,,33,263,,263,262,2,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013112730P030148152129001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1",,,,,"W. T. WAGGONER ESTATE 401(K) PLAN","002","1993-03-01","W T WAGGONER ESTATE",,,"1700 DEAF SMITH ST",,"VERNON","TX","763844629",,,,,,,,,,,,,,,,,,"750634500","9405522521","112111","W T WAGGONER ESTATE",,"1700 DEAF SMITH ST",,"VERNON","TX","763844629",,,,,,,"750634500","9405522521",,,,"2011-10-13T11:26:52-0500","JOEL LOVELADY",,,,,111,106,0,2,108,0,108,103,0,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013105700P030148133393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STANDARD CHARTERED BANK RETIREMENT ACCOUNT PLAN","001","1988-10-31","STANDARD CHARTERED BANK",,,"2 GATEWAY CENTER","13TH FLOOR","NEWARK","NJ","07102",,,,,,,,,,,,,,,,,,"941595409","2126670244","522110","STANDARD CHARTERED BANK",,"2 GATEWAY CENTER","13TH FLOOR","NEWARK","NJ","07102",,,,,,,"941595409","2126670244",,,,"2011-10-13T10:34:05-0500","SRIRAM S RAMKUMAR","2011-10-13T10:34:05-0500","SRIRAM S RAMKUMAR",,,1873,731,231,971,1933,22,1955,,0,,"1A1C1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013114353P030148161569001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"GOLDEN STATE DRILLING, INC. 401(K) PROFIT SHARING PLAN","002","1979-12-01","GOLDEN STATE DRILLING, INC.",,,"3500 FRUITVALE AVENUE",,"BAKERSFIELD","CA","93308",,,,,,,"3500 FRUITVALE AVENUE",,"BAKERSFIELD","CA","93308",,,,,,,"953152814","6615890730","211110","GOLDEN STATE DRILLING, INC.",,"3500 FRUITVALE AVENUE",,"BAKERSFIELD","CA","93308",,,,,,,"953152814","6615890730",,,,"2011-10-13T11:43:24-0500","MELANIE DAY",,,,,300,295,0,41,336,4,340,288,14,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013121616P030148180273001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"JUAN GONZALEZ DIAZ PROFIT SHARING PLAN","002","1991-01-01","JUAN GONZALEZ DIAZ","DR JUAN GONZALEZ DIAZ MEDICAL OFFICE",,"497 AVE EMILIANO POL","PMB 330","SAN JUAN","PR","00926",,,,,,,"497 AVE EMILIANO POL","PMB 330","SAN JUAN","PR","00926",,,,,,,"660476783","7877659595","621111","JUAN GONZALEZ DIAZ",,"497 AVE EMILIANO POL","PMB 330","SAN JUAN","PR","00926",,,,,,,"660476783","7877659595",,,,"2011-10-13T10:48:17-0500","JUAN GONZALEZ",,,,,1,1,0,0,1,0,1,1,0,,"3E",,"1",,"1",,"1",,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013141920P040151903761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SULLIVAN & COGLIANO DESIGNERS, INC. 401(K) PLAN","001","1990-07-01","SULLIVAN & COGLIANO DESIGNERS, INC.",,,"230 SECOND AVENUE",,"WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"042391962","7818907890","812990","SULLIVAN & COGLIANO DESIGNERS, INC.",,"230 SECOND AVENUE",,"WALTHAM","MA","02451",,,,,,,"042391962","7818907890",,,,"2011-10-13T11:03:20-0500","HERBERT COGLIANO","2011-10-13T11:03:20-0500","HERBERT COGLIANO",,,133,79,0,67,146,0,146,128,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013141930P030148273889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DOWN EAST COMMUNITY HOSPITAL 401(K) RETIREMENT PLAN","002","2006-10-01","DOWN EAST COMMUNITY HOSPITAL",,,"11 HOSPITAL DRIVE",,"MACHIAS","ME","04654",,,,,,,,,,,,,,,,,,"010263198","2072553356","622000","DOWN EAST COMMUNITY HOSPITAL",,"11 HOSPITAL DRIVE",,"MACHIAS","ME","04654",,,,,,,"010263198","2072553356",,,,"2011-10-13T13:54:06-0500","LYNNETTE PARR","2011-10-13T13:54:06-0500","LYNNETTE PARR",,,214,205,0,20,225,0,225,225,19,,"2A2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013141052P030148268609001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"SEGWAY INC. 401(K) PLAN","001","2005-01-01","SEGWAY INC.",,,"14 TECHNOLOGY DRIVE",,"BEDFORD","NH","03110",,,,,,,"14 TECHNOLOGY DRIVE",,"BEDFORD","NH","03110",,,,,,,"020518878","6032226442","336990","SEGWAY INC.",,"14 TECHNOLOGY DRIVE",,"BEDFORD","NH","03110",,,,,,,"020518878","6032226442",,,,"2011-10-13T13:42:20-0500","CHERYL GEORGE","2011-10-13T13:49:37-0500","ROBERT SIMKEVICH",,,135,75,0,50,125,0,125,113,1,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013141057P030004317060001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KEY PLASTICS L.L.C. GROUP BENEFIT PLAN","507","1987-08-01","KEY PLASTICS L.L.C.",,"BEVERLY MRAK","21700 HAGGERTY ROAD, SUITE 150",,"NORTHVILLE","MI","48167",,,,,,,"21700 HAGGERTY ROAD, SUITE 150",,"NORTHVILLE","MI","48167",,,,,,,"351997449","2484496100","326100","KEY PLASTICS L.L.C.","BEVERLY MRAK","21700 HAGGERTY ROAD, SUITE 150",,"NORTHVILLE","MI","48167",,,,,,,"351997449","2484496100",,,,"2011-10-13T14:09:17-0500","BEVERLY MRAK","2011-10-13T14:10:40-0500","BEVERLY MRAK",,,549,687,9,0,696,,696,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013142227P040050022583001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","HURRICANE IRENE","MAGNACARE ADMINISTRATIVE SERVICES LLC 401K MONEY PURCHASE PLAN","001","1994-01-01","MAGNACARE ADMINISTRATIVE SERVICES. LLC",,,"825 EAST GATE BLVD.",,"GARDEN CITY","NY","11530",,,,,,,"825 EAST GATE BLVD.",,"GARDEN CITY","NY","11530",,,,,,,"113410766","5162276900","621491","MAGNACARE ADMINISTRATIVE SERVICES. LLC",,"825 EAST GATE BLVD.",,"GARDEN CITY","NY","11530",,,,,,,"113410766","5162276900",,,,"2011-10-13T14:03:14-0500","JAMES CUSUMANO",,,,,146,153,0,23,176,0,176,160,6,,"2E2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013105514P030049174087001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WISE EL SANTO COMPANIES RETIREMENT PLAN","002","1997-04-01","WISE EL SANTO COMPANY",,,"11000 LINPAGE PLACE","P.O. BOX 8360","ST. LOUIS","MO","63132",,,,,,,,,,,,,,,,,,"430894853","3144283100","423800","WISE EL SANTO COMPANY",,"11000 LINPAGE PLACE","P.O. BOX 8360","ST. LOUIS","MO","63132",,,,,,,"430894853","3144283100",,,,"2011-10-12T08:22:46-0500","SANDRA MAAS","2011-10-13T10:32:11-0500","MICHAEL MILNE",,,129,121,0,13,134,1,135,127,3,,"2E2F2G2J2K3H3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013122603P030021861026001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"EAST VALLEY DIAGNOSTIC IMAGING, LLC 401(K) PROFIT SHARING PLAN & TRUST","017","1992-01-01","EAST VALLEY DIAGNOSTIC IMAGING, L.L.C.",,,"1125 EAST SOUTHERN AVE","SUITE 200","MESA","AZ","85204",,,,,,,"1125 EAST SOUTHERN AVE","SUITE 200","MESA","AZ","85204",,,,,,,"860716499","4805458119","621510","EAST VALLEY DIAGNOSTIC IMAGING, L.L.C.",,"1125 EAST SOUTHERN AVE","SUITE 200","MESA","AZ","85204",,,,,,,"860716499","4805458119",,,,"2011-10-13T12:24:21-0500","WENDI CHILDRESS",,,,,329,251,1,50,302,5,307,273,6,,"2E2F2G2J2K2S2T3D3H2R",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013085513P030148027505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LMS NORTH AMERICA 401(K) PROFIT SHARING PLAN","001","1990-01-01","LMS NORTH AMERICA",,,"2425 OAKDALE BLVD",,"CORALVILLE","IA","52241",,,,,,,,,,,,,,,,,,"382854611","3196266700","541511","LMS NORTH AMERICA",,"2425 OAKDALE BLVD",,"CORALVILLE","IA","52241",,,,,,,"382854611","3196266700",,,,"2011-10-13T08:50:04-0500","MARC BOONEN",,,,,145,116,,26,142,0,142,122,6,,"2E2F2G2J2K2R3D3H","4B","1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013135111P040151881537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SURGICAL ARTS OF ST. LOUIS EMPLOYEES 401K PROFIT SHARING PLAN AND TRUST","001","1976-07-01","SURGICAL ARTS OF ST. LOUIS LTD",,,"12266 DEPAUL DR. SUITE 305E",,"BRIDGETON","MO","63044",,,,,,,,,,,,,,,,,,"431080335","3147416941","621111","SURGICAL ARTS OF ST. LOUIS LTD",,"12266 DEPAUL DR. SUITE 305E",,"BRIDGETON","MO","63044",,,,,,,"431080335","3147416941",,,,"2011-10-13T11:44:56-0500","DARLENE BELYEW","2011-10-13T11:44:56-0500","DARLENE BELYEW",,,30,28,0,,28,,28,28,,,"2J2E2G2T3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013113141P030148154705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STONE-MANNER AGENCY PROFIT SHARING PLAN","001","1996-01-01","STONE-MANNER AGENCY",,"C/O SAVITSKY SATIN BACON","10880 WILSHIRE BLVD., STE 2100",,"LOS ANGELES","CA","90024",,,,,,,"SAVITSKY, SATIN AND BACON",,"LOS ANGELES","CA","90024",,,,,,,"953768255","3103156200","812990","STONE-MANNER AGENCY","C/O SAVITSKY SATIN BACON","10880 WILSHIRE BLVD., STE 2100",,"LOS ANGELES","CA","90024",,,,,,,"953768255","3103156200",,,,"2011-10-13T11:31:29-0500","VRUNDA SONTHALIA",,,,,15,12,0,0,12,0,12,12,1,,"2A2E3B3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013112853P040682518128001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RONALD MCDONALD HOUSE CHARITIES OF SOUTHERN CALIFORNIA 401K PLAN","001","1998-01-01","RONALD MCDONALD HOUSE CHARITIES OF SOUTHERN CALIFORNIA, INC.",,,"765 S. PASADENA AVE.",,"PASADENA","CA","911053019",,,,,,,,,,,,,,,,,,"953167869","6267449559","813000","RONALD MCDONALD HOUSE CHARITIES OF SOUTHERN CALIFORNIA, INC.",,"765 S. PASADENA AVE.",,"PASADENA","CA","911053019",,,,,,,"953167869","6267449559",,,,"2011-10-13T11:12:29-0500","ROBERT PARKER",,,,,121,109,0,17,126,0,126,54,0,,"2G2J2K3D2F",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013114251P030148161201002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BOSTON UNIVERSITY RETIREMENT PLAN","002","1965-01-01","TRUSTEES OF BOSTON UNIVERSITY",,"C/O OFFICE OF HUMAN RESOURCES","25 BUICK STREET",,"BOSTON","MA","02215",,,,,,,,,,,,,,,,,,"042103547","6173534489","611000","TRUSTEES OF BOSTON UNIVERSITY","C/O OFFICE OF HUMAN RESOURCES","25 BUICK STREET",,"BOSTON","MA","02215",,,,,,,"042103547","6173534489",,,,"2011-10-13T06:27:12-0500","NIMET GUNDOGAN",,,,,5692,6832,37,242,7111,32,7143,7207,0,,"2F2G2L2M",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013120128P030148171585001","2010-08-01","2010-12-31","2",,"0","1","1","1","0","1","0","0","0",,"HINKLE CONTRACTING CORPORATION AND SUBSIDIARIES LONG TERM DISABILITY PLAN","508","1995-08-01","HINKLE CONTRACTING CORPORATION",,,"PO BOX 200",,"PARIS","KY","40362",,,,,,,,,,,,,,,,,,"610725598","8599873670","237310","HINKLE CONTRACTING CORPORATION",,"PO BOX 200",,"PARIS","KY","40362",,,,,,,"610725598","8599873670",,,,"2011-10-13T12:00:19-0500","KATHY JAEGER",,,,,149,0,,,0,,0,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013105310P030148129409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AG PROCESSING INC MEDICAL PLAN","501","1984-01-01","AG PROCESSING INC",,,"PO BOX 2047",,"OMAHA","NE","681032047",,,,,,,,,,,,,,,,,,"420615016","4024967809","115110","ASSOCIATED BENEFITS CORPORATION",,"2929 WESTOWN PARKWAY, SUITE 220",,"WEST DES MOINES","IA","502661349",,,,,,,"421279416","5152260303",,,,"2011-10-12T13:30:01-0500","KELLY HAYERTZ","2011-10-13T10:47:20-0500","DUKE VAIR",,,981,1078,53,0,1131,,,,,,,"4A4B4D4E4H","1","0","1","0","1","0","1","0","0","0","0","1","0","1","5","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013120225P030021857682001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SNYDER CORPORATION 401(K) PROFIT SHARING PLAN","001","2006-03-01","SNYDER CORP.",,,"SIX FOUNTAIN PLAZA",,"BUFFALO","NY","14202",,,,,,,,,,,,,,,,,,"161120738","7163324227","551112","SNYDER CORP.",,"SIX FOUNTAIN PLAZA",,"BUFFALO","NY","14202",,,,,,,"161120738","7163324227",,,,"2011-10-13T11:04:44-0500","PAUL SNYDER","2011-10-13T11:04:44-0500","PAUL SNYDER",,,151,138,0,33,171,,171,108,0,,"2E2F2G2J3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013141950P030049241175001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SELECTRIGHT, INC. PROFIT SHARING PLAN","001","2009-05-07","SELECTRIGHT, INC.",,,"2394 PETERS RD",,"ANN ARBOR","MI","48103",,,,,,,,,,,,,,,,,,"264834119","7346620314","812990","SELECTRIGHT, INC.",,"2394 PETERS RD",,"ANN ARBOR","MI","48103",,,,,,,"264834119","7346620314",,,,"2011-10-13T14:15:33-0500","JITENDRA MEHTA",,,,,2,2,,,2,,2,2,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013121952P030688439248001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"SDS LUMBER CO. PROFIT SHARING PLAN AND TRUST","001","1960-02-26","SDS LUMBER CO.",,,"P. O. BOX 266",,"BINGEN","WA","98605",,,,,,,"123 INDUSTRIAL RD",,"BINGEN","WA","98605",,,,,,,"910695263","5094932155","321110","SDS LUMBER CO.",,"P. O. BOX 266",,"BINGEN","WA","98605",,,,,,,"910695263","5094932155",,,,"2011-10-13T12:19:19-0500","CRAIG FERGUSON",,,,,298,239,8,47,294,2,296,265,5,,"2E2F2G2J2K2R2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013113602P030021854738001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"RENEW DATA CORP. 401(K) PLAN","001","2003-01-01","RENEW DATA CORP.",,,"9500 ARBORETUM BLVD","SUITE L2-120","AUSTIN","TX","78759",,,,,,,"9500 ARBORETUM BLVD","SUITE L2-120","AUSTIN","TX","78759",,,,,,,"743025024","5122765500","518210","RENEW DATA CORP.",,"9500 ARBORETUM BLVD","SUITE L2-120","AUSTIN","TX","78759",,,,,,,"743025024","5122765500",,,,"2011-10-13T11:30:03-0500","ROBERT SCHAEFER",,,,,156,121,0,38,159,0,159,109,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013114158P030148160801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHEERWINE 401(K) PROFIT SHARING PLAN","001","1973-01-01","CHEERWINE BOTTLING COMPANY",,,"PO BOX 697",,"SALISBURY","NC","28145",,,,,,,"1413 JAKE ALEXANDER BLVD",,"SALISBURY","NC","28146",,,,,,,"560887444","7046362191","312110","CHEERWINE BOTTLING COMPANY",,"PO BOX 697",,"SALISBURY","NC","28145",,,,,,,"560887444","7046362191",,,,"2011-10-13T11:36:17-0500","MICHAEL S. BAUK","2011-10-13T11:36:17-0500","MICHAEL S. BAUK",,,357,257,0,80,337,0,337,296,17,,"3D2E2G2J2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013115005P030021856498001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SQUAR, MILNER, PETERSON, MIRANDA & WILLIAMSON, LLP 401(K) PROFIT SHARING PLAN","001","1991-05-01","SQUAR, MILNER, PETERSON, MIRANDA & WILLIAMSON, LLP",,,"4100 NEWPORT PLACE, SUITE 300",,"NEWPORT BEACH","CA","92660",,,,,,,,,,,,,,,,,,"330835986","9492222989","541211","SQUAR, MILNER, PETERSON, MIRANDA & WILLIAMSON, LLP",,"4100 NEWPORT PLACE, SUITE 300",,"NEWPORT BEACH","CA","92660",,,,,,,"330835986","9492222989",,,,"2011-10-13T11:49:52-0500","ALEXANDER DEL MUNDO",,,,,205,127,0,71,198,0,198,176,8,,"2A2E2F2G2J3B",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013122010P030021860482001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOBIN LUCKS, LLP 401(K) PROFIT SHARING PLAN","006","1990-07-01","TOBIN LUCKS, LLP",,,"21300 VICTORY BOULEVARD","3RD FLOOR","WOODLAND HILLS","CA","913654502",,,,,,,,,,,,,,,,,,"431983451","8182263400","541110","TOBIN LUCKS, LLP",,"21300 VICTORY BOULEVARD","3RD FLOOR","WOODLAND HILLS","CA","913654502",,,,,,,"431983451","8182263400",,,,"2011-10-13T12:18:16-0500","WAYNE MYERS",,,,,186,123,0,41,164,0,164,153,4,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013142012P040151904593001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"CONTRACTORS AND EMPLOYEES RETIREMENT PLAN MASTER TRUST","001",,"PLAN BENEFIT SERVICES, INC.",,,"11910 VOLENTE ROAD",,"AUSTIN","TX","787261113",,,,,,,,,,,,,,,,,,"742485507","5123494760",,"PLAN BENEFIT SERVICES, INC.",,"11910 VOLENTE ROAD",,"AUSTIN","TX","787261113",,,,,,,"742485507","5123494760",,,,,,,,"2011-10-13T11:03:44-0500","TERE MCCANN, TREASURER OF RK",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13",,"Filed with authorized/valid electronic signature", "20111013110429P040049956135001","2010-04-01","2011-03-31","2",,"1","0","0","0","0","0","0","0","0",,"LISCR LLC DENTAL PLAN","506","2010-04-01","LISCR LLC",,,"8619 WESTWOOD CENTER DR 300",,"VIENNA","VA","22182",,,,,,,,,,,,,,,,,,"522138904","7032512481","519100","LISCR LLC",,"8619 WESTWOOD CENTER DR 300",,"VIENNA","VA","22182",,,,,,,"522138904","7032512481",,,,"2011-10-13T10:59:02-0500","JOHN LEBARTON",,,,,101,100,1,0,101,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013110839P040151767841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MENTAL HEALTH & RECOVERY CENTER 401(K) PLAN","003","2002-01-01","MENTAL HEALTH & RECOVERY CENTER OF CLINTON COUNTY, INC.",,,"953 S. SOUTH STREET",,"WILMINGTON","OH","45177",,,,,,,,,,,,,,,,,,"311169337","9373834441","813000","MENTAL HEALTH & RECOVERY CENTER OF CLINTON COUNTY, INC.",,"953 S. SOUTH STREET",,"WILMINGTON","OH","45177",,,,,,,"311169337","9373834441",,,,"2011-10-13T11:08:37-0500","BRAD MCMONIGLE",,,,,137,128,0,4,132,0,132,43,2,,"2E2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013112555P030148151169001","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"DISIERE HOLDINGS, L.P. EMPLOYEE BENEFIT PLAN & TRUST","501","2008-01-01","DISIERE HOLDINGS, LP",,,"P.O. BOX 202",,"SHREVEPORT","LA","71162",,,,,,,,,,,,,,,,,,"020657846","3182273636","524210","DISIERE HOLDINGS, LP",,"P.O. BOX 202",,"SHREVEPORT","LA","71162",,,,,,,"020657846","3182273636",,,,"2011-10-13T06:13:59-0500","MICHAEL TROTTER",,,,,45,33,,,33,,,,,,,"4A4D","1",,"1",,"1",,"1",,,,,,"1","1","5",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013113050P040151782897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FREUDENBERG PENSION PLAN","001","1959-06-01","FREUDENBERG NONWOVENS LTD. PARTNERSHIP",,,"FREUDENBERG NORTH AMERICA CORP CTR","100 COMMERCIAL ST., FIRST FLR NORTH","MANCHESTER","NH","03101",,,,,,,,,,,,,,,,,,"042811288","6036694050","314000","FREUDENBERG NONWOVENS LTD. PARTNERSHIP",,"FREUDENBERG NORTH AMERICA CORP CTR","100 COMMERCIAL ST., FIRST FLR NORTH","MANCHESTER","NH","03101",,,,,,,"042811288","6036694050",,,,"2011-10-13T11:30:37-0500","LEESA A SMITH",,,,,1454,418,337,622,1377,63,1440,,2,,"1A1G3H1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013113106P030021854370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VNA CARE NETWORK FOUNDATION AND SUBSIDIARIES HEALTH AND WELFARE BENEFIT PLAN","501","2000-01-01","VNA CARE NETWORK FOUNDATION AND SUBSIDIARIES",,,"120 THOMAS STREET",,"WORCESTER","MA","01608",,,,,,,"120 THOMAS STREET",,"WORCESTER","MA","01608",,,,,,,"042794849","5087516804","621610","VNA CARE NETWORK FOUNDATION AND SUBSIDIARIES",,"120 THOMAS STREET",,"WORCESTER","MA","01608",,,,,,,"042794849","5087516804",,,,"2011-10-13T11:30:19-0500","DAVID ROSE",,,,,509,480,11,0,491,0,491,0,0,,,"4A4B4D4H4E","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013193110P030148496881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MANAGED CARE SYSTEMS 401(K) PLAN","001","2001-05-01","MANAGED CARE SYSTEMS",,,"4550 CALIFORNIA AVENUE","SUITE 500","BAKERSFIELD","CA","93309",,,,,,,"4550 CALIFORNIA AVENUE","SUITE 500","BAKERSFIELD","CA","93309",,,,,,,"030412082","6617167125","524140","MANAGED CARE SYSTEMS",,"4550 CALIFORNIA AVENUE","SUITE 500","BAKERSFIELD","CA","93309",,,,,,,"030412082","6617167125",,,,"2011-10-13T19:19:55-0500","LISA HOCKERSMITH",,,,,211,192,0,66,258,0,258,254,15,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013183947P040152139681001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CHICAGO MERCANTILE EXCHANGE INC. EMPLOYEE BENEFIT PLAN","501","1983-01-01","CHICAGO MERCANTILE EXCHANGE INC.",,,"20 S WACKER DRIVE",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"364340266","3129301000","523210","CHICAGO MERCANTILE EXCHANGE INC.",,"20 S WACKER DRIVE",,"CHICAGO","IL","60606",,,,,,,"364340266","3129301000",,,,"2011-10-13T15:50:54-0500","ROSS WILKEN",,,,,2110,2177,115,0,2292,,,,,,,"4A4B4E4F4H4D4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013192422P040152170881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HISKEY LAW FIRM, APC PROFIT SHARING PLAN","002","1989-01-01","HISKEY LAW FIRM, APC",,,"414 N. PLACENTIA AVE",,"PLACENTIA","CA","92870",,,,,,,,,,,,,,,,,,"330373579","7149611198","541110","HISKEY LAW FIRM, APC",,"414 N. PLACENTIA AVE",,"PLACENTIA","CA","92870",,,,,,,"330373579","7149611198",,,,"2011-10-13T17:28:45-0500","DAVID D. HISKEY",,,,,5,5,0,0,5,0,5,5,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013193919P040152183553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MURAD, INC. 401(K) SAVINGS PLAN","001","1994-01-01","MURAD SKIN RESEARCH LABORATORIES, INC.",,,"2121 ROSECRANS AVENUE, 5TH FLOOR",,"EL SEGUNDO","CA","902454745",,,,,,,,,,,,,,,,,,"954299353","3107260600","446190","MURAD SKIN RESEARCH LABORATORIES, INC.",,"2121 ROSECRANS AVENUE, 5TH FLOOR",,"EL SEGUNDO","CA","902454745",,,,,,,"954299353","3107260600",,,,"2011-10-13T18:33:13-0500","MARGARETT GAAL",,,,,348,338,0,53,391,0,391,243,8,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014082235P030691229632001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"TOTAL BENEFIT MANAGEMENT, INC. RETIREMENT SAVINGS PLAN","333","1998-01-01","TOTAL BENEFIT MANAGEMENT, INC.",,,"1 LAWRENCE STREET, 2ND FLOOR",,"GLENS FALLS","NY","12801",,,,,,,,,,,,,,,,,,"141759683","8777660859","541219","TOTAL BENEFIT MANAGEMENT, INC.",,"1 LAWRENCE STREET, 2ND FLOOR",,"GLENS FALLS","NY","12801",,,,,,,"141759683","8777660859",,,,"2011-10-14T08:06:17-0500","ROBERT LEFEBVRE","2011-10-14T08:06:17-0500","ROBERT LEFEBVRE",,,274,199,0,66,265,0,265,147,4,,"2E2F2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014083522P040152520609003","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"SHEET METAL WORKERS LOCAL 98 WELFARE FUND","501","1954-01-01","BOARD OF TRUSTEES-SHEET METAL WORKERS LOCAL 98 WELFARE FUND",,"MICHAEL R KELLER","3033 LAMB AVENUE",,"COLUMBUS","OH","43219",,,,,,,,,,,,,,,,,,"314397633","6144717892","525100","BOARD OF TRUSTEES-SHEET METAL WORKERS LOCAL 98 WELFARE FUND","MICHAEL R. KELLER","3033 LAMB AVENUE",,"COLUMBUS","OH","43219",,,,,,,"314397633","6144717892",,,,"2011-10-14T07:08:14-0500","MICHAEL R KELLER",,,,,714,568,63,,631,,631,,,38,,"4F4E4D4B4A",,,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014092029P030004440451001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOUNTAIN STATES EMPLOYERS COUNCIL, INC. THRIFT PLAN AND TRUST","002","1984-01-01","MOUNTAIN STATES EMPLOYERS COUNCIL, INC.",,,"1799 PENNSYLVANIA STREET",,"DENVER","CO","80203",,,,,,,,,,,,,,,,,,"840172643","3038395177","541600","MOUNTAIN STATES EMPLOYERS COUNCIL, INC.",,"1799 PENNSYLVANIA STREET",,"DENVER","CO","80203",,,,,,,"840172643","3038395177",,,,"2011-10-14T08:35:36-0500","JULIE MCLAUGHLIN","2011-10-14T08:35:36-0500","JULIE MCLAUGHLIN",,,190,136,0,58,194,1,195,177,6,,"2E2J2K2G2F2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014092256P040152556737001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SCIENTIFIC PROTEIN LABORATORIES LLC 401(K) PLAN","001","2004-02-10","SCIENTIFIC PROTEIN LABORATORIES LLC",,,"700 E. MAIN STREET",,"WAUNAKEE","WI","53597",,,,,,,"700 E. MAIN STREET",,"WAUNAKEE","WI","53597",,,,,,,"200642931","6088495944","325410","SCIENTIFIC PROTEIN LABORATORIES LLC",,"700 E. MAIN STREET",,"WAUNAKEE","WI","53597",,,,,,,"200642931","6088495944",,,,"2011-10-14T09:21:00-0500","KATHY LYNCH",,,,,222,208,0,16,224,0,224,174,3,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014092312P040152556897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GAILEY EYE CLINIC, LTD. 401K RETIREMENT SAVINGS PLAN","002","2002-01-01","GAILEY EYE CLINIC, LTD.",,,"PO BOX 757","1008 MAIN STREET","BLOOMINGTON","IL","617020757",,,,,,,,,,,,,,,,,,"370924192","3098295311","621320","GAILEY EYE CLINIC, LTD.",,"PO BOX 757","1008 MAIN STREET","BLOOMINGTON","IL","617020757",,,,,,,"370924192","3098295311",,,,"2011-10-14T09:16:15-0500","THOMAS RESTIVO","2011-10-14T09:22:51-0500","ROBERT LEE",,,198,161,0,32,193,0,193,176,23,,"2A2E2G2J3H2F2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014092320P030148890753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GATEWAY DISTRIBUTION, INC. 401K PLAN","001","2009-01-01","GATEWAY DISTRIBUTION, INC.",,,"720 WEST MCALLISTER ST.",,"LEBANON","IL","62254",,,,,,,,,,,,,,,,,,"263697993","6185376121","493100","GATEWAY DISTRIBUTION, INC.",,"720 WEST MCALLISTER ST.",,"LEBANON","IL","62254",,,,,,,"263697993","6185376121",,,,"2011-10-14T08:37:35-0500","KRISTA MILLER",,,,,145,153,0,15,168,0,168,159,0,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013181805P040152117089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FLORIDA INSURANCE, INC. 401(K) PROFIT-SHARING PLAN & TRUST","001","2000-07-15","FLORIDA INSURANCE, INC.",,,"1460 BELTREES STREET, SUITE 11",,"DUNEDIN","FL","34698",,,,,,,,,,,,,,,,,,"650418043","7274480909","524210","FLORIDA INSURANCE, INC.",,"1460 BELTREES STREET, SUITE 11",,"DUNEDIN","FL","34698",,,,,,,"650418043","7274480909",,,,"2011-10-13T15:15:32-0500","CONSTANCE MAGO",,,,,31,19,2,2,23,0,23,18,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013203417P030148523073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENTERLINE AND RUSSELL BUILDERS INC 401K PLAN AND TRUST","001","1991-01-01","ENTERLINE AND RUSSELL BULDERS INC",,,"156 CORNISH ROAD","PO BOX 1492","BLOWING ROCK","NC","28605",,,,,,,"156 CORNISH ROAD","PO BOX 1492","BLOWING ROCK","NC","28605",,,,,,,"561692740","8282959568","236200","ENTERLINE AND RUSSELL BULDERS INC",,"156 CORNISH ROAD","PO BOX 1492","BLOWING ROCK","NC","28605",,,,,,,"561692740","8282959568",,,,"2011-10-13T20:34:02-0500","DEBORAH GREENE",,,,,62,36,0,21,57,,57,57,4,,"2E2H2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013183434P030148466977003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FRESNO POLICE OFFICERS ASSOCIATION LEGAL DEFENSE PROGRAM","502","1984-10-01","FRESNO POLICE OFFICERS ASSOCIATION LEGAL DEFENSE PROGRAM",,,"994 N VAN NESS",,"FRESNO","CA","937283428",,,,,,,,,,,,,,,,,,"776132047","5594423762","813000","FRESNO POLICE OFFICERS ASSOCIATION LEGAL DEFENSE PROGRAM",,"994 N VAN NESS",,"FRESNO","CA","937283428",,,,,,,"776132047","5594423762",,,,"2011-10-13T16:38:47-0500","KARI STONE",,,,,817,784,,,784,,784,,,,,"4G",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013191438P040152163457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JULIAN ELECTRIC INC EMPLOYEES SAVINGS AND RETIREMENT PLAN","001","1997-07-01","JULIAN ELECTRIC INC",,,"406 PLAZA DR",,"WESTMONT","IL","605595525",,,,,,,,,,,,,,,,,,"362592808","6309208951","335900","JULIAN ELECTRIC INC",,"406 PLAZA DR",,"WESTMONT","IL","605595525",,,,,,,"362592808","6309208951",,,,"2011-10-13T16:52:42-0500","KENNY E JULIAN","2011-10-13T16:52:42-0500","KENNY E JULIAN",,,165,146,0,11,157,0,157,71,1,,"2E2F2G2J2K2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013215111P040684352880001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RIO ALGOM MINING LLC EMPLOYEES' SAVINGS PLAN","001","1985-11-01","RIO ALGOM MINING LLC",,,"BHP BILLITON C/O CLARE STAUB","1360 POST OAK BLVD. SUITE 150","HOUSTON","TX","770563020",,,,,,,"BHP BILLITON C/O CLARE STAUB","1360 POST OAK BLVD. SUITE 150","HOUSTON","TX","770563020",,,,,,,"731623282","7139618500","212390","RIO ALGOM MINING LLC",,"BHP BILLITON C/O CLARE STAUB","1360 POST OAK BLVD. SUITE 150","HOUSTON","TX","770563020",,,,,,,"731623282","7139618500",,,,"2011-10-13T21:45:47-0500","DEAN WOOLDRIDGE",,,,,54,12,6,15,33,0,33,25,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014085656P030148871313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATLANTIC SHORES COOPERATIVE ASSOCIATION 401(K) PLAN","001","2000-08-01","ATLANTIC SHORES COOPERATIVE ASSOCIATION",,,"1200 ATLANTIC SHORES DRIVE",,"VIRGINIA BEACH","VA","234547311",,,,,,,,,,,,,,,,,,"541801794","7577162000","623000","ATLANTIC SHORES COOPERATIVE ASSOCIATION",,"1200 ATLANTIC SHORES DRIVE",,"VIRGINIA BEACH","VA","234547311",,,,,,,"541801794","7577162000",,,,"2011-10-14T08:56:32-0500","EDEN JONES","2011-10-14T08:56:32-0500","EDEN JONES",,,296,294,0,0,294,0,294,183,,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014085703P040152537745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHEASTERN MINNESOTA CENTER FOR INDEPENDENT LIVING, INC. 403(B) PLAN","001","2004-01-01","SOUTHEASTERN MINNESOTA CENTER FOR INDEPENDENT LIVING, INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"411387414","6207938473","621610","SOUTHEASTERN MINNESOTA CENTER FOR INDEPENDENT LIVING, INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"411387414","6207938473",,,,"2011-10-14T08:54:35-0500","VICTORIA DALLE-MOLLE",,,,,375,407,0,3,410,0,410,36,2,,"2F2G2M2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014081934P030004439091001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INDIANA FARM BUREAU COMPANIES EMPLOYEES SAVINGS PLAN","106","1991-01-01","UNITED FARM FAMILY LIFE INSURANCE COMPANY",,,"225 SOUTH EAST STREET",,"INDIANAPOLIS","IN","46202",,,,,,,,,,,,,,,,,,"351097117","3176927200","524140","UNITED FARM FAMILY LIFE INSURANCE COMPANY",,"225 SOUTH EAST STREET",,"INDIANAPOLIS","IN","46202",,,,,,,"351097117","3176927200",,,,"2011-10-14T08:03:48-0500","LYNN JONGLEUX",,,,,1730,1566,11,160,1737,0,1737,1577,26,,"2A2E2G2J2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014090035P030691334496002","2002-01-01","2002-12-31","2",,,,,,,,,"1",,,"ASSOCIATED COMMUNITY SERVICES INC HEALTH & WELFARE","501","2000-01-01","ASSOCIATED COMMUNITY SERVICES INC",,,"29777 TELEGRAPH ROAD, SUITE 3000",,"SOUTHFIELD","MI","48034",,,,,,,,,,,,,,,,,,"383457359","2483522600","561420","ASSOCIATED COMMUNITY SERVICES INC",,"29777 TELEGRAPH ROAD, SUITE 3000",,"SOUTHFIELD","MI","48034",,,,,,,"383457359","2483522600",,,,"2011-10-12T10:12:09-0500","WILLIAM BURLAND",,,,,,,,,,,,,,,,"4A4D4E",,,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014090847P030021962162001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMPREHENSIVE HEALTH MANAGEMENT INC. EMPLOYEE BENEFIT WELFARE PLANS","550","2004-01-01","COMPREHENSIVE HEALTH MANAGEMENT",,,"8735 HENDERSON ROAD",,"TAMPA","FL","336341143",,,,,,,,,,,,,,,,,,"593547616","8138651283","524140","COMPREHENSIVE HEALTH MANAGEMENT",,"8735 HENDERSON ROAD",,"TAMPA","FL","336341143",,,,,,,"593547616","8138651283",,,,"2011-10-14T08:30:03-0500","HENRY TOLEDO","2011-10-14T08:30:03-0500","HENRY TOLEDO",,,3454,3400,36,250,3686,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013183743P040152138097001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"CHS INC. 401(K) PLAN","014","1979-09-01","CHS INC.",,,"P.O. BOX 64089 MS-664",,"ST. PAUL","MN","551640089",,,,,,,,,,,,,,,,,,"410251095","6514515067","424990","CHS INC.",,"P.O. BOX 64089 MS-664",,"ST. PAUL","MN","551640089",,,,,,,"410251095","6514515067",,,,"2011-10-11T15:10:03-0500","THOMAS L. TRAUB, VP HUMAN RESOURCES",,,,,7917,6376,74,1933,8383,32,8415,8278,683,,"2E2G2J2F2R2T3H2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013192716P040152173889001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"EAST BAY RESTAURANT SUPPLY, INC. HEALTH AND WELFARE PLAN","501","2008-04-01","EAST BAY RESTAURANT SUPPLY, INC.",,,"49 4TH STREET",,"OAKLAND","CA","94607",,,,,,,,,,,,,,,,,,"941284745","5102674760","452900","EAST BAY RESTAURANT SUPPLY, INC.",,"49 4TH STREET",,"OAKLAND","CA","94607",,,,,,,"941284745","5102674760",,,,"2011-10-13T17:40:20-0500","MEY CHAD",,,,,106,99,0,0,99,,,,,,,"4A4B4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013184311P040152142977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROEBBELEN MANAGEMENT, INC. 401(K) PROFIT SHARING PLAN","001","1987-06-01","ROEBBELEN MANAGEMENT, INC.",,,"1241 HAWKS FLIGHT COURT",,"EL DORADO HILLS","CA","95762",,,,,,,,,,,,,,,,,,"680421620","9169391100","541330","ROEBBELEN MANAGEMENT, INC.",,"1241 HAWKS FLIGHT COURT",,"EL DORADO HILLS","CA","95762",,,,,,,"680421620","9169391100",,,,"2011-10-13T15:57:56-0500","JUDY CURVA",,,,,143,102,3,31,136,0,136,130,1,,"2E2G2J2K2R3D3H2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013194052P040152184529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR PARTNERS OF QUINN EMANUEL URQUHART & SULLIVAN, LLP","003","1999-01-01","QUINN EMANUEL URQUHART & SULLIVAN, LLP",,,"865 SOUTH FIGUEROS ST. 10TH FLOOR",,"LOS ANGELES","CA","90017",,,,,,,,,,,,,,,,,,"954004138","2136247707","541110","QUINN EMANUEL URQUHART & SULLIVAN, LLP",,"865 SOUTH FIGUEROS ST. 10TH FLOOR",,"LOS ANGELES","CA","90017",,,,,,,"954004138","2136247707",,,,"2011-10-13T18:44:46-0500","RICHARD SCHIRTZER","2011-10-13T18:44:46-0500","RICHARD SCHIRTZER",,,256,182,0,83,265,0,265,,0,,"1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014083249P040152518273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AAA FLEXIBLE BENEFITS PLAN","520","2010-01-01","AAA WESTERN AND CENTRAL NEW YORK, INC.",,,"100 INTERNATIONAL DRIVE",,"WILLIAMSVILLE","NY","14221",,,,,,,"100 INTERNATIONAL DRIVE",,"WILLIAMSVILLE","NY","14221",,,,,,,"160338340","7166263235","721199","AAA WESTERN AND CENTRAL NEW YORK, INC.",,"100 INTERNATIONAL DRIVE",,"WILLIAMSVILLE","NY","14221",,,,,,,"160338340","7166263235",,,,"2011-10-14T08:32:05-0500","DOUGLAS SCHWALLIE",,,,,516,542,16,24,582,,582,,,,,"4A4B4D4H","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014090043P040152539793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LIVING RESOURCES CORPORATION RETIREMENT PLAN","002","1994-08-01","LIVING RESOURCES CORPORATION",,,"300 WASHINGTON AVE EXT.",,"ALBANY","NY","122037303",,,,,,,,,,,,,,,,,,"141564208","5182180000","623000","LIVING RESOURCES CORPORATION",,"300 WASHINGTON AVE EXT.",,"ALBANY","NY","122037303",,,,,,,"141564208","5182180000",,,,"2011-10-14T08:58:36-0500","EILEEN MARTEL",,,,,599,492,0,63,555,0,555,555,12,,"2E2F2G3D2A",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014082659P030148849697010","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"TRI STATE PULMONARY ASSOCIATES PSC PROFIT SHARING PLAN","002","1985-03-01","TRI STATE PULMONARY ASSOCIATES PSC",,,"P.O. BOX 1380","2301 LEXINGTON AVENUE","ASHLAND","KY","411051380",,,,,,,"2301 LEXINGTON AVENUE",,"ASHLAND","KY","41101",,,,,,,"611069549",,"621111","TRI STATE PULMONARY ASSOCIATES PSC",,"P.O. BOX 1380","2301 LEXINGTON AVENUE","ASHLAND","KY","411051380",,,,,,,"611069549",,,,,"2011-10-07T03:56:50-0500","SCOTT R NELSON","2011-10-07T03:56:50-0500","SCOTT R NELSON",,,19,12,,7,19,,19,19,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014081711P040152508129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE AMERIHEALTH MERCY FAMILY OF COMPANIES 401(K) PLAN","001","1996-07-01","KEYSTONE MERCY HEALTH PLAN","THE AMERIHEALTH MERCY FAMILY OF COMPANIES",,"200 STEVENS DRIVE",,"PHILADELPHIA","PA","19113",,,,,,,,,,,,,,,,,,"232842344","2159378500","524290","KEYSTONE MERCY HEALTH PLAN",,"200 STEVENS DRIVE",,"PHILADELPHIA","PA","19113",,,,,,,"232842344","2159378500",,,,"2011-10-14T08:13:19-0500","KAREN SCHLENNER",,,,,2882,2491,0,433,2924,3,2927,2869,203,,"2E2F2G2J2K2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013173023P040022793650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"R.S. AUDLEY, INC. 401(K) SAVINGS PLAN","003","1994-07-18","R.S. AUDLEY, INC.",,,"609 ROUTE 3A",,"BOW","NH","03304",,,,,,,,,,,,,,,,,,"020237185","6032247724","237310","R.S. AUDLEY, INC.",,"609 ROUTE 3A",,"BOW","NH","03304",,,,,,,"020237185","6032247724",,,,"2011-10-13T14:00:49-0500","PAULA N ANDERSON",,,,,111,101,1,20,122,0,122,86,1,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013181356P040152113361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARKER POE ADAMS & BERNSTEIN LLP 401(K) PROFIT SHARING PLAN AND TRUST","001","1968-01-01","PARKER POE ADAMS & BERNSTEIN LLP",,,"THREE WELLS FARGO CENTER","401 SOUTH TRYON STREET SUITE 3000","CHARLOTTE","NC","282021942",,,,,,,,,,,,,,,,,,"560928467","7043729000","541110","THE PERSONNEL AND BENEFITS COMMITTEE",,"401 SOUTH TRYON STREET, SUITE 3000",,"CHARLOTTE","NC","282021942",,,,,,,"561492016","7043729000",,,,"2011-10-13T15:09:04-0500","JONATHAN M. CROTTY",,,,,572,421,0,128,549,1,550,525,0,,"2E2F2G2J2K2R3B3F3H2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013184052P040152140625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"L.I.F.E., INC. 401K PLAN","001","2008-01-01","L.I.F.E., INC.",,,"2822 HOLLINS FERRY ROAD",,"BALTIMORE","MD","21230",,,,,,,,,,,,,,,,,,"521297022","4107355433","623000","L.I.F.E., INC.",,"2822 HOLLINS FERRY ROAD",,"BALTIMORE","MD","21230",,,,,,,"521297022","4107355433",,,,"2011-10-13T15:53:31-0500","THOMAS C NOTO",,,,,165,130,0,28,158,0,158,148,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013201331P030148512017001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ALLIANCEBERNSTEIN US SHORT DURATION PLUS COLLECTIVE TRUST","019",,"ALLIANCEBERNSTEIN LP",,,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,,,,,,,,,,,,"046948485","9142597788",,"ALLIANCEBERNSTEIN LP",,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,"134064930","9142597788",,,,,,,,"2011-10-13T15:36:41-0500","EDWARD FARRELL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13",,"Filed with authorized/valid electronic signature", "20111014083310P040685585440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHOE STATION, INC. 401(K) PLAN","002","2008-01-01","SHOE STATION, INC.",,,"720 EXECUTIVE PARK DR",,"MOBILE","AL","366062800",,,,,,,,,,,,,,,,,,"630879160","2514767472","448210","SHOE STATION, INC.",,"720 EXECUTIVE PARK DR",,"MOBILE","AL","366062800",,,,,,,"630879160","2514767472",,,,"2011-10-14T08:31:24-0500","TERRY BARKIN",,,,,202,216,0,59,275,0,275,218,9,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014082348P040152511729001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"OPEN TEXT, INC. 401(K) PLAN","001","1992-05-01","OPEN TEXT, INC.",,,"100 TRI STATE INTL","STE 300","LINCOLNSHIRE","IL","60069",,,,,,,"100 TRI STATE INTL","STE 300","LINCOLNSHIRE","IL","60069",,,,,,,"460525483","8472679330","541512","OPEN TEXT, INC.",,"100 TRI STATE INTL","STE 300","LINCOLNSHIRE","IL","60069",,,,,,,"460525483","8472679330","OPEN TEXT, INC.","363811517","001","2011-10-14T08:23:04-0500","PAMELA MCMEEKIN",,,,,1159,987,0,1082,2069,3,2072,1774,33,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013173032P040152070417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREENWALD & HOFFMAN, L.L.P. PROFIT SHARING PLAN","001","2002-01-01","GREENWALD & HOFFMAN, L.L.P.",,,"1851 E. FIRST STREET, SUITE 860",,"SANTA ANA","CA","92705",,,,,,,,,,,,,,,,,,"953666669","7142850025","541110","GREENWALD & HOFFMAN, L.L.P.",,"1851 E. FIRST STREET, SUITE 860",,"SANTA ANA","CA","92705",,,,,,,"953666669","7142850025",,,,"2011-10-13T14:01:05-0500","PAUL E. GREENWALD",,,,,5,5,0,0,5,0,5,5,0,,"2A2E2G2F3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013173920P040152078129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SEATAC PRIMARY CARE PHYSICIANS, INC. 401K PROFIT SHARING PLAN","001","2008-01-01","SEATAC PRIMARY CARE PHYSICIANS, INC","UNIBE CARE FAMILY PRACTICE CLINIC",,"13100 MILITARY ROAD S., 2",,"TUKWILA","WA","981683086",,,,,,,,,,,,,,,,,,"800067197","2062427333","621111","SEATAC PRIMARY CARE PHYSICIANS, INC",,"13100 MILITARY ROAD S., 2",,"TUKWILA","WA","981683086",,,,,,,"800067197","2062427333",,,,"2011-10-13T17:36:36-0500","ANDY LINH VU",,,,,12,10,0,2,12,0,12,8,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013190934P040152159761001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DEKALB COMMUNITY AND STONES RIVER HOSPITALS RETIREMENT SAVINGS PLAN","001","2000-01-01","CANNON CNTY HOSPITAL LLC DBA STONES RIVER HOSP & DEKALB COMMUNITY HOSP",,,"324 DOOLITTLE RD.",,"WOODBURY","TN","37190",,,,,,,,,,,,,,,,,,"621783763","6155637202","622000","CANNON CNTY HOSPITAL LLC DBA STONES RIVER HOSP & DEKALB COMMUNITY HOSP",,"324 DOOLITTLE RD.",,"WOODBURY","TN","37190",,,,,,,"621783763","6155637202",,,,"2011-10-13T16:38:23-0500","SARAH CLARK",,,,,435,401,0,54,455,0,455,204,57,,"3D2E2J2K3B2F2G2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013190949P040152160001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDIANEWS GROUP DEFINED BENEFIT PLAN FOR CERTAIN EMPLOYEES","002","1958-01-01","MEDIANEWS GROUP, INC.",,,"101 W. COLFAX AVENUE, SUITE 1100",,"DENVER","CO","80202",,,,,,,,,,,,,,,,,,"760425553","3039546446","511110","MEDIANEWS GROUP, INC.",,"101 W. COLFAX AVENUE, SUITE 1100",,"DENVER","CO","80202",,,,,,,"760425553","3039546446",,,,"2011-10-13T16:39:04-0500","STEVEN E. EISENBERG","2011-10-13T16:39:04-0500","STEVEN E. EISENBERG",,,2307,295,658,1234,2187,95,2282,,6,,"1A1G1I",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013200021P040152200193001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ALLIANCE US LARGE CAP GROWTH COLLECTIVE TRUST","007",,"ALLIANCEBERNSTEIN LP",,,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,,,,,,,,,,,,"046948485","9142597788",,"ALLIANCEBERNSTEIN LP",,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,"134064930","9142597788",,,,,,,,"2011-10-13T15:31:02-0500","EDWARD FARRELL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13",,"Filed with authorized/valid electronic signature", "20111014084815P040004698275001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","1","1","0","0",,"SHEET METAL WORKERS INTL ASSOCIATION LOCAL UNION 21 WELFARE TRUST FUND","501","1961-05-15","SHEET METAL WORKERS INTL ASSOC LOCAL 21 WELFARE TRUST FUND",,,"2061 BEAUMONT DRIVE",,"BATON ROUGE","LA","70806",,,,,,,"2061 BEAUMONT DRIVE",,"BATON ROUGE","LA","70806",,,,,,,"726027578","2259273930","525100","BD OF TRUSTEES SHEET METAL WORKERS LOCAL UNION 21 WELFARE TRUST FUND",,"2061 BEAUMONT DRIVE",,"BATON ROUGE","LA","70808",,,,,,,"720849720","2259273930",,,,"2011-10-14T08:47:55-0500","TED SOILEAU",,,,,394,282,76,6,364,,364,,,22,,"4A4B4D4F4T4U","0",,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013175003P040152088769001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"GERBER-FREMONT HOURLY PENSION PLAN","112","1950-01-01","NESTLE USA, INC.",,,"30003 BAINBRIDGE RD",,"SOLON","OH","441392205",,,,,,,,,,,,,,,,,,"951572209","4403495757","311900","NESTLE USA, INC.",,"30003 BAINBRIDGE RD",,"SOLON","OH","441392205",,,,,,,"951572209","4403495757",,,,"2011-10-13T14:32:01-0500","SHARON M. STRASSHOFER","2011-10-13T13:23:18-0500","RUSSELL W. NISWANDER, F.S.A.",,,971,531,248,138,917,44,961,,0,,"1B1G",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013180848P030148452417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAPITAL INSTITUTIONAL SERVICES, INC.","501","1991-06-01","CAPITAL INSTITUTIONAL SERVICES, INC.",,,"1601 ELM STREET, SUITE 3900",,"DALLAS","TX","75201",,,,,,,"1601 ELM STREET, SUITE 3900",,"DALLAS","TX","75201",,,,,,,"751565705","2147200055","523120","CAPITAL INSTITUTIONAL SERVICES, INC.","ANN SEBERT","1601 ELM STREET, SUITE 3900",,"DALLAS","TX","75201",,,,,,,"751565705","2149223256",,,,"2011-10-13T18:08:22-0500","ANN SEBERT",,,,,102,85,,,85,,85,,,,,"4A4B4D4F4H4L4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013191514P040022815474001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"CUSTOM VIDEO MEMORIES 401K PLAN","001","2008-06-06","CUSTOM VIDEO MEMORIES",,,"53 JESSICA LANE",,"DEPEW","NY","14043",,,,,,,,,,,,,,,,,,"262785190","7166688308","541920","CUSTOM VIDEO MEMORIES",,"53 JESSICA LANE",,"DEPEW","NY","14043",,,,,,,"262785190","7166688308",,,,"2011-10-13T16:54:00-0500","JEFF GOODRIDGE","2011-10-13T16:54:00-0500","JEFF GOODRIDGE",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013190710P040152157793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PCE TECHNOLOGY, INC. 401(K) PLAN","001","2003-01-01","PCE TECHNOLOGY, INC.",,,"2525 BROCKTON DRIVE","SUITE 300","AUSTIN","TX","78758",,,,,,,,,,,,,,,,,,"742907627","5126702638","561110","PCE TECHNOLOGY, INC.",,"2525 BROCKTON DRIVE","SUITE 300","AUSTIN","TX","78758",,,,,,,"742907627","5126702638",,,,"2011-10-13T16:30:24-0500","WINLING TU",,,,,178,143,0,32,175,0,175,131,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013190718P040152157873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FAISEL M ZAMAN, MD PC DEFINED BENEFIT PLAN","002","2007-01-01","FAISEL M ZAMAN, MD PC",,,"2430 PROMONTORY DRIVE",,"SALT LAKE CITY","UT","84109",,,,,,,,,,,,,,,,,,"202921074","8017165165","621111","FAISEL M ZAMAN, MD PC",,"2430 PROMONTORY DRIVE",,"SALT LAKE CITY","UT","84109",,,,,,,"202921074","8017165165",,,,"2011-10-13T16:27:49-0500","FAISEL M. ZAMAN","2011-10-13T16:27:49-0500","FAISEL M. ZAMAN",,,3,4,0,0,4,0,4,,0,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013194851P040152191089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEVI, RAY & SHOUP, INC. CAFETERIA PLAN","502","1994-01-01","LEVI, RAY & SHOUP, INC.",,,"2401 WEST MONROE STREET",,"SPRINGFIELD","IL","62704",,,,,,,"2401 WEST MONROE STREET",,"SPRINGFIELD","IL","62704",,,,,,,"371073724","2177933800","541519","LEVI, RAY & SHOUP, INC.",,"2401 WEST MONROE STREET",,"SPRINGFIELD","IL","62704",,,,,,,"371073724","2177933800",,,,"2011-10-13T16:38:36-0500","PAMELA BENAD",,,,,414,391,,,391,,391,,,,,"4A4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013211422P040152236449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUNTRUST BANKS, INC. RETIREMENT PLAN","001","1989-01-01","SUNTRUST BANKS, INC.",,,"PO BOX 4418 MAIL CODE GA ATL 0636-G","303 PEACHTREE CENTER AVE., STE 200","ATLANTA","GA","30302",,,,,,,,,,,,,,,,,,"581575035","4048137155","522110","SUNTRUST BANKS, INC.",,"PO BOX 4418 MAIL CODE GA ATL 0636-G","303 PEACHTREE CENTER AVE., STE 200","ATLANTA","GA","30302",,,,,,,"581575035","4048137155",,,,"2011-10-13T16:33:07-0500","DONNA LANGE",,,,,52832,25337,7412,19828,52577,500,53077,,1195,,"1A1C1G3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014084815P030148867201006","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"STARFISH FAMILY SERVICES, INC. TAX DEFERRED ANNUITY PLAN","001","2001-05-27","STARFISH FAMILY SERVICES, INC.",,,"30000 HIVELEY ROAD",,"INKSTER","MI","48141",,,,,,,,,,,,,,,,,,"382230416","7347283400","624100","STARFISH FAMILY SERVICES, INC.",,"30000 HIVELEY ROAD",,"INKSTER","MI","48141",,,,,,,"382230416","7347283400",,,,"2011-10-13T11:51:53-0500","ELIZABETH C. MITROPOULOS","2011-10-13T11:51:53-0500","ELIZABETH C. MITROPOULOS",,,265,0,,,0,,0,0,,,"2F2G2L2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014085120P030148868961001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"CARMEN CAMPISI PROFIT SHARING PLAN","001","1986-01-01","CARMEN A. CAMPISI","HOWARD BEACH CHIROPRACTIC",,"160-55 CROSSBAY BOULEVARD",,"HOWARD BEACH","NY","11414",,,,,,,,,,,,,,,,,,"112716295","7188437300","621310","CARMEN A. CAMPISI",,"160-55 CROSSBAY BOULEVARD",,"HOWARD BEACH","NY","11414",,,,,,,"112716295","7188437300",,,,"2011-10-14T08:23:21-0500","CARMEN CAMPISI, TRUSTEE","2011-10-14T08:23:21-0500","CARMEN CAMPISI",,,2,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014085408P040022875122001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EPHRATA COMMUNITY HOSPITAL PENSION PLAN","001","1966-09-01","EPHRATA COMMUNITY HOSPITAL",,"C/O BARBARA A. MUMMA","PO BOX 1002","169 MARTIN AVENUE","EPHRATA","PA","175221002",,,,,,,,,,,,,,,,,,"231370484","7177386449","622000","EPHRATA COMMUNITY HOSPITAL","C/O BARBARA A. MUMMA","PO BOX 1002",,"EPHRATA","PA","175221002",,,,,,,"231370484","7177386449",,,,"2011-10-14T08:51:33-0500","BARBARA A. MUMMA",,,,,1703,1053,231,371,1655,17,1672,,18,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014091837P040022878434001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"CHARLES KOMAR & SONS, INC. 401(K) PLAN","001","1974-06-30","CHARLES KOMAR & SONS, INC.",,,"16 EAST 34TH STREET","10TH FLOOR","NEW YORK","NY","10016",,,,,,,"16 EAST 34TH STREET","10TH FLOOR","NEW YORK","NY","10016",,,,,,,"135661752","2124006418","812990","CHARLES KOMAR & SONS, INC.",,"16 EAST 34TH STREET","10TH FLOOR","NEW YORK","NY","10016",,,,,,,"135661752","2124006418",,,,"2011-10-14T09:17:00-0500","SUSAN GRAVERSON",,,,,368,322,0,55,377,2,379,302,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014090953P040152546833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SYSTEMS CONNECTION OF MARYLAND, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1997-01-01","SYSTEMS CONNECTION OF MARYLAND, INC.",,,"8839 GREENWOOD PLACE",,"SAVAGE","MD","20763",,,,,,,,,,,,,,,,,,"521544972","4108803161","519100","SYSTEMS CONNECTION OF MARYLAND, INC.",,"8839 GREENWOOD PLACE",,"SAVAGE","MD","20763",,,,,,,"521544972","4108803161",,,,"2011-10-14T08:50:51-0500","DANIEL MASKELL",,,,,220,148,0,82,230,0,230,230,2,,"2O3I2I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013183142P030148465233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE NATIONAL FOOTBALL LEAGUE CAPITAL ACCUMULATION PLAN","011","1990-01-01","PRO-FOOTBALL, INC. CORPORATION",,,"21300 REDSKIN PARK DRIVE",,"ASHBURN","VA","20147",,,,,,,,,,,,,,,,,,"530129045","7037267000","711210","PRO-FOOTBALL, INC. CORPORATION",,"21300 REDSKIN PARK DRIVE",,"ASHBURN","VA","20147",,,,,,,"530129045","7037267000",,,,"2011-10-13T13:43:29-0500","NICO FORIS",,,,,280,165,0,97,262,0,262,206,0,,"2E2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013192232P040022816818001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SANDISK 401(K) PLAN","001","1992-01-01","SANDISK CORPORATION",,,"601 MCCARTHY BLVD",,"MILPITAS","CA","950357932",,,,,,,,,,,,,,,,,,"770191793","4088011000","335900","SANDISK CORPORATION",,"601 MCCARTHY BLVD",,"MILPITAS","CA","950357932",,,,,,,"770191793","4088011000",,,,"2011-10-07T13:13:53-0500","AMY KUNYCKY","2011-10-13T17:22:04-0500","TOM BAKER",,,1579,1336,0,340,1676,0,1676,1534,33,,"2E2F2G2J2K3D2T2S",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013204301P040152224561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE M/A/R/C GROUP PENSION PLAN","001","1982-01-01","THE M/A/R/C GROUP",,,"IN CARE OF OMNICOM CAPITAL INC.","ONE EAST WEAVER STREET","GREENWICH","CT","06831",,,,,,,,,,,,,,,,,,"751781525","2036253041","541800","THE M/A/R/C GROUP",,"IN CARE OF OMNICOM CAPITAL INC.","ONE EAST WEAVER STREET","GREENWICH","CT","06831",,,,,,,"751781525","2036253041",,,,"2011-10-13T20:42:21-0500","ERIC HUTTNER",,,,,645,129,17,482,628,0,628,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013204911P040152226369001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"ALASKA NATIVE INDUSTRIES EMPLOYEE DEFINED BENEFIT PENSION PLAN","001","1970-12-01","ALASKA NATIVE INDUSTRIES CO-OP ASSOCIATION, INC.",,,"4634 EAST MARGINAL WAY SO., STE 200",,"SEATTLE","WA","98134",,,,,,,,,,,,,,,,,,"910851574","2067670333","423990","ALASKA NATIVE INDUSTRIES CO-OP ASSOCIATION, INC.",,"4634 EAST MARGINAL WAY SO., STE 200",,"SEATTLE","WA","98134",,,,,,,"910851574","2067670333",,,,"2011-10-13T20:41:36-0500","WILLIAM KUHR",,,,,115,83,8,13,104,0,104,,15,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014082742P030148850049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASSOCIATES IN OTOLARYNGOLOGY OF NEW JERSEY, P.A. CASH BALANCE PLAN","004","2006-01-01","ASSOCIATES IN OTOLARYNGOLOGY OF NEW JERSEY, P.A.",,,"741 NORTHFIELD AVENUE, SUITE 104",,"WEST ORANGE","NJ","07052",,,,,,,,,,,,,,,,,,"223327664","9732430600","621111","ASSOCIATES IN OTOLARYNGOLOGY OF NEW JERSEY, P.A.",,"741 NORTHFIELD AVENUE, SUITE 104",,"WEST ORANGE","NJ","07052",,,,,,,"223327664","9732430600",,,,"2011-10-14T08:09:56-0500","ROBERT FIELDMAN",,,,,29,24,0,4,28,0,28,,1,,"1C1G",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014083054P030021957810008","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"THE TOLEDO NEWSPAPER UNIONS BLADE SAVINGS PLAN AND TRUST","002","1993-01-01","THE TOLEDO NEWSPAPER UNIONS BLADE SAVINGS TRUST",,,"522 ORANGE STREET",,"TOLEDO","OH","43604",,,,,,,,,,,,,,,,,,"311571353","4192437521","511110","THE TOLEDO NEWSPAPER UNIONS BLADE SAVINGS TRUST",,"522 ORANGE STREET",,"TOLEDO","OH","43604",,,,,,,"311571353","4192437521","BLOCK COMMUNICATIONS INC","344374555","002","2011-10-13T16:28:39-0500","DEBORAH RILEY-JACKSON","2011-10-14T08:22:52-0500","SARA LABUDDA",,,486,384,0,183,567,1,568,323,,,"2E2F2G2J3H",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014092147P040152555697001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"WASTE MANAGEMENT HEALTH AND WELFARE BENEFITS PLAN","516","1992-06-15","WASTE MANAGEMENT, INC.",,,"1001 FANNIN STREET, SUITE 4000",,"HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"731309529","7135126200","562000","WASTE MANAGEMENT, INC.",,"1001 FANNIN STREET, SUITE 4000",,"HOUSTON","TX","77002",,,,,,,"731309529","7135126200",,,,"2011-10-14T09:21:36-0500","DAVID KASPER",,,,,40921,38705,1344,0,40049,,,,,,,"4A4B4D4E4F4G4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","18","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013192844P030021908194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE BOSTWICK-BRAUN COMPANY EMPLOYEE MEDICAL PLAN","501","1990-02-01","THE BOSTWICK-BRAUN COMPANY",,"B.SMITH","7349 CROSSLEIGH COURT",,"TOLEDO","OH","43617",,,,,,,"7349 CROSSLEIGH COURT",,"TOLEDO","OH","43617",,,,,,,"341298592","4192593904","423700","THE BOSTWICK-BRAUN COMPANY","B.SMITH","7349 CROSSLEIGH COURT",,"TOLEDO","OH","43617",,,,,,,"341298592","4192593904",,,,"2011-10-13T19:28:26-0500","B SMITH",,,,,152,163,,,163,,163,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013193054P040050161447001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"POSTRETIREMENT HEALTH INSURANCE FOR REPRESENTED EMPLOYEES TRANSFERRED FROM LUCENT POWER SYSTEMS","530","2001-07-31","TYCO ELECTRONICS CORPORATION",,,"1050 WESTLAKES DRIVE",,"BERWYN","PA","19312",,,,,,,,,,,,,,,,,,"230332575","7178102373","335900","TYCO ELECTRONICS CORPORATION",,"1050 WESTLAKES DRIVE",,"BERWYN","PA","19312",,,,,,,"230332575","7178102373",,,,"2011-10-13T17:51:51-0500","ERIN FELTER",,,,,75,0,48,0,48,,,,,,,"4A4D","0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013223232P040152268497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOHAMMAD H. OSMANI, M.D. PROFIT SHARING PLAN","001","2004-01-01","MOHAMMAD H. OSMANI, M.D.",,,"1805 W. REDLANDS BLVD.",,"REDLANDS","CA","92373",,,,,,,,,,,,,,,,,,"330864727","9093072636","621111","MOHAMMAD H. OSMANI, M.D.",,"1805 W. REDLANDS BLVD.",,"REDLANDS","CA","92373",,,,,,,"330864727","9093072636",,,,"2011-10-13T22:31:59-0500","MOHAMMAD OSMANI","2011-10-13T22:31:59-0500","MOHAMMAD OSMANI",,,3,2,0,2,4,0,4,4,0,,"2A2E3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013211604P030148537105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOVETT MANAGEMENT PROFIT SHARING PLAN","001","1999-07-01","LOVETT MANAGEMENT",,,"1327 BRINKLEY AVENUE",,"LOS ANGELES","CA","900493619",,,,,,,,,,,,,,,,,,"954421254","3104512536","711410","LOVETT MANAGEMENT",,"1327 BRINKLEY AVENUE",,"LOS ANGELES","CA","900493619",,,,,,,"954421254","3104512536",,,,"2011-10-13T21:16:04-0500","STEVEN LOVETT",,,,,4,4,0,0,4,0,4,4,0,,"2A2E3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014093813P040685794368001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"EMERGENT SPACE TECHNOLOGIES, INC. 401(K) PLAN","001","2005-05-20","EMERGENT SPACE TECHNOLOGIES, INC.",,,"6411 IVY LANE","SUITE 303","GREENBELT","MD","20770",,,,,,,"6411 IVY LANE","SUITE 303","GREENBELT","MD","20770",,,,,,,"200264426","3013451535","541700","EMERGENT SPACE TECHNOLOGIES, INC.",,"6411 IVY LANE","SUITE 303","GREENBELT","MD","20770",,,,,,,"200264426","3013451535",,,,"2011-10-14T09:37:53-0500","KATIE BAMFORD",,,,,24,24,0,6,30,0,30,25,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014090711P040152544305001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LINDSEY CONTRACTORS RETIREMENT SAVINGS PLAN","001","2000-01-01","LINDSEY CONTRACTORS, INC.",,,"701 S. LOOP 340",,"WACO","TX","76706",,,,,,,,,,,,,,,,,,"742392999","2547527557","237990","LINDSEY CONTRACTORS, INC.",,"701 S. LOOP 340",,"WACO","TX","76706",,,,,,,"742392999","2547527557",,,,"2011-10-14T09:00:38-0500","MARGARET MUNRO",,,,,178,131,1,7,139,0,139,28,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014093104P040152563985001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"HOFFMASTER GROUP CONSOLIDATED PENSION PLAN","009","1996-05-06","HOFFMASTER GROUP, INC.",,,"2920 NORTH MAIN STREET",,"OSHKOSH","WI","54903",,,,,,,,,,,,,,,,,,"203642844","7158233104","322200","HOFFMASTER GROUP, INC.",,"2920 NORTH MAIN STREET",,"OSHKOSH","WI","54903",,,,,,,"203642844","7158233104",,,,"2011-10-14T09:29:30-0500","DAVID F. VIERTHALER","2011-10-14T09:29:30-0500","LYLE H. RICHTER",,,397,116,72,196,384,13,397,,,,"1B1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013190408P040683951568001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"B.B.B. INCORPORATED DEFINED BENEFIT PENSION PLAN","002","1995-07-01","B.B.B. INCORPORATED",,,"9250 RESEDA BLVD., SUITE 664",,"NORTHRIDGE","CA","91324",,,,,,,,,,,,,,,,,,"202029452","3103128000","711510","B.B.B. INCORPORATED",,"9250 RESEDA BLVD., SUITE 664",,"NORTHRIDGE","CA","91324",,,,,,,"202029452","3103128000",,,,"2011-10-13T19:04:06-0500","JAMES CROMWELL",,,,,2,2,0,0,2,0,2,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013190412P040152155809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STRADLING, YOCCA, CARLSON & RAUTH CASH BALANCE PENSION PLAN","002","1998-01-01","STRADLING, YOCCA, CARLSON & RAUTH",,,"660 NEWPORT CENTER DRIVE, STE 1600",,"NEWPORT BEACH","CA","926606441",,,,,,,,,,,,,,,,,,"953347002","9497254000","541110","STRADLING, YOCCA, CARLSON & RAUTH",,"660 NEWPORT CENTER DRIVE, STE 1600",,"NEWPORT BEACH","CA","926606441",,,,,,,"953347002","9497254000",,,,"2011-10-13T16:25:46-0500","DAVID R. MCEWEN",,,,,78,48,1,23,72,0,72,,0,,"1C1F1G1I2H3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013190416P040152155857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STOCK EQUIPMENT COMPANY, INC HEALTH AND WELFARE PLAN","501","2004-01-01","STOCK EQUIPMENT COMPANY",,,"16490 CHILLICOTHE RD",,"CHAGRIN FALLS","OH","44023",,,,,,,,,,,,,,,,,,"200277834","4405436000","333200","STOCK EQUIPMENT COMPANY",,"16490 CHILLICOTHE RD",,"CHAGRIN FALLS","OH","44023",,,,,,,"200277834","4405436000",,,,"2011-10-13T15:48:02-0500","SUZANNE SOUCY",,,,,175,155,0,0,155,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014084114P040152524001001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CAPITAL INSTITUTIONAL SERVICES, INC EMPLOYEES' SAVINGS PLAN","003","1991-01-01","CAPITAL INSTITUTIONAL SERVICES, INC.",,,"1601 ELM","SUITE 3900","DALLAS","TX","75201",,,,,,,"1601 ELM","SUITE 3900","DALLAS","TX","75201",,,,,,,"751565705","2147200055","523120","CAPITAL INSTITUTIONAL SERVICES, INC.",,"1601 ELM","SUITE 3900","DALLAS","TX","75201",,,,,,,"751565705","2147200055",,,,"2011-10-14T08:40:54-0500","ANN SEBERT",,,,,135,89,1,41,131,0,131,109,9,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014090737P040152544785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLARK PATTERSON LEE EMPLOYEE SAVINGS PLAN","001","1988-01-01","CLARK PATTERSON ENGINEERS, SURVEYORS AND ARCHITECTS, P.C. D/B/A CLARK",,,"205 ST. PAUL STREET",,"ROCHESTER","NY","146041122",,,,,,,,,,,,,,,,,,"161283651","5854544570","541310","CLARK PATTERSON ENGINEERS, SURVEYORS AND ARCHITECTS, P.C. D/B/A CLARK",,"205 ST. PAUL STREET",,"ROCHESTER","NY","146041122",,,,,,,"161283651","5854544570",,,,"2011-10-14T09:05:07-0500","DAVID PENDER",,,,,269,200,0,48,248,0,248,199,9,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013190420P040152155889014","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"I MARK BLEDSTEIN A LAW CORP","002","1977-12-31","I MARK BLEDSTEIN, A LAW CORPORATION",,,"15915 VENTURA BOULEVARD",,"ENCINO","CA","91436",,,,,,,"SUITE 201",,"ENCINO","CA","91436",,,,,,,"954445623","8189950801","541110","IRWIN BLEDSTEIN",,"15915 VENTURA BOULEVARD SUITE 201",,"ENCINO","CA","914364434",,,,,,,"954445623","8185291155",,,,"2011-10-13T18:58:54-0500","IRWIN MARK BLEDSTEIN",,,,,1,,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013190819P030021906146010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SALVATORE A. LEONE, PROFIT SHARING PLAN","002","1987-01-01","SALVATORE A LEONE DDS",,,"10814 19TH AVE SE",,"EVERETT","WA","982082435",,,,,,,"10814 19TH AVE SE",,"EVERETT","WA","982082435",,,,,,,"911289876","4253374734","621210","SALVATORE A LEONE DDS",,"10814 19TH AVE SE",,"EVERETT","WA","982082435",,,,,,,"911289876","4253374734",,,,"2011-10-11T11:58:08-0500","SALVATORE LEONE",,,,,3,3,,,3,,3,3,,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013191044P040152160497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCLEOD HEALTH 403(B) PLAN","003","2001-04-01","MCLEOD HEALTH",,,"555 EAST CHEVES STREET",,"FLORENCE","SC","295062617",,,,,,,,,,,,,,,,,,"510473500","8437775514","622000","MCLEOD HEALTH",,"555 EAST CHEVES STREET",,"FLORENCE","SC","295062617",,,,,,,"510473500","8437775514",,,,"2011-10-13T16:41:35-0500","TIMOTHY HESS",,,,,4319,5047,0,53,5100,0,5100,382,0,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013202116P030148515553001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ALLIANCEBERNSTEIN TAFT-HARTLEY INTERNATIONAL STYLE BLEND COLLECTIVE TRUST","028",,"ALLIANCEBERNSTEIN LP",,,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,,,,,,,,,,,,"046948485","9142597788",,"ALLIANCEBERNSTEIN LP",,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,"134064930","9142597788",,,,,,,,"2011-10-13T15:40:50-0500","EDWARD FARRELL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13",,"Filed with authorized/valid electronic signature", "20111013202201P040152215169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WENDY'S OF WESTERN VA. INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1996-03-01","WENDYS OF WESTERN VIRGINIA, INC",,,"3959 ELECTRIC ROAD",,"ROANOKE","VA","24018",,,,,,,"SUITE 206",,"ROANOKE","VA","24018",,,,,,,"540991440","5407749521","326100","WENDYS OF WESTERN VIRGINIA, INC",,"3959 ELECTRIC ROAD",,"ROANOKE","VA","24018",,,,,,,"540991440","5407749521",,,,"2011-10-13T20:21:06-0500","PAUL QUESINBERRY","2011-10-13T20:21:06-0500","PAUL QUESINBERRY",,,227,157,6,48,211,0,211,199,0,,"2E2I2O",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013193744P040152182609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NCC, INC. RETIREMENT PLAN","001","2000-01-04","NICOLAS CARRILLO CORREA, INC.",,,"PO BOX 190836",,"SAN JUAN","PR","009190836",,,,,,,,,,,,,,,,,,"660222725","7877657660","541990","NICOLAS CARRILLO CORREA, INC.",,"PO BOX 190836",,"SAN JUAN","PR","009190836",,,,,,,"660222725","7877657660",,,,"2011-10-13T19:35:49-0500","HECTOR J. MEDINA MARRERO","2011-10-13T19:35:49-0500","HECTOR J. MEDINA MARRERO",,,12,13,0,0,13,0,13,13,0,,"2F3C",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013181542P040152115633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN OF SUN HOME HEALTH SERVICES, INC.","003","1981-01-27","SUN HOME HEALTH SERVICES, INC.",,,"PO BOX 232",,"NORTHUMBERLAND","PA","17857",,,,,,,,,,,,,,,,,,"231736912","5704737633","621610","SUN HOME HEALTH SERVICES, INC.",,"PO BOX 232",,"NORTHUMBERLAND","PA","17857",,,,,,,"231736912","5704737633",,,,"2011-10-13T15:11:15-0500","DONALD N WILVER JR",,,,,190,183,0,14,197,0,197,74,0,,"2F2G2L2M","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","4","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013180946P040152109249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHAPMAN AND CUTLER LLP RETIREMENT PLAN","003","1982-01-01","CHAPMAN AND CUTLER LLP",,,"111 WEST MONROE STREET",,"CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"362153731","3128453000","541110","CHAPMAN AND CUTLER LLP",,"111 WEST MONROE STREET",,"CHICAGO","IL","60603",,,,,,,"362153731","3128453000",,,,"2011-10-13T15:00:26-0500","GARY R. POLEGA",,,,,363,312,0,45,357,0,357,357,0,,"2E2F2G3B2R2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013193206P040684038752001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DEPAUL INDUSTRIES 401(K) PENSION PLAN","002","1991-10-01","DEPAUL INDUSTRIES",,,"4950 NE MARTIN LUTHER KING BLVD",,"PORTLAND","OR","972113351",,,,,,,,,,,,,,,,,,"930607857","5032811289","624310","DEPAUL INDUSTRIES",,"4950 NE MARTIN LUTHER KING BLVD",,"PORTLAND","OR","972113351",,,,,,,"930607857","5032811289",,,,"2011-10-13T17:58:02-0500","DAVID SHAFFER",,,,,1856,1824,0,19,1843,3,1846,88,3,,"2E2F2G2J2K3D2T3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013184456P030148474129001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"WELFARE & PENSION ADMINISTRATION SERVICE, INC. 401(K) PLAN FOR BARGAINING EMPLOYEES","003","1994-09-01","WELFARE & PENSION ADM. SERVICES",,,"2815 2ND AVE STE 300",,"SEATTLE","WA","981211261",,,,,,,,,,,,,,,,,,"911363171","2064417574","541990","WELFARE & PENSION ADM. SERVICES",,"2815 2ND AVE STE 300",,"SEATTLE","WA","981211261",,,,,,,"911363171","2064417574",,,,"2011-10-13T18:44:53-0500","TONY IBRAHIM","2011-10-13T18:44:53-0500","TONY IBRAHIM",,,123,117,0,2,119,0,119,65,0,,"2E2F2G2J2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013220340P040152255953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEVADA CANCER INSTITUTE TAX DEFERRED ANNUITY PLAN","001","2004-01-01","NEVADA CANCER INSTITUTE",,,"ONE BREAKTHROUGH WAY, SUITE 296",,"LAS VEGAS","NV","89135",,,,,,,,,,,,,,,,,,"043632553","7028225310","621111","NEVADA CANCER INSTITUTE",,"ONE BREAKTHROUGH WAY, SUITE 296",,"LAS VEGAS","NV","89135",,,,,,,"043632553","7028225310",,,,"2011-10-13T22:03:08-0500","JULIE KESTNER","2011-10-13T22:03:08-0500","JULIE KESTNER",,,120,87,0,50,137,1,138,115,0,,"2L2M",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013194417P040152186833001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"EVANITE FIBER SALARIED & NON-UNION 401K","006","1990-05-01","EVANITE FIBER CORPORATION",,,"1115 SE CRYSTAL LAKE DRIVE",,"CORVALLIS","OR","97333",,,,,,,"1115 SE CRYSTAL LAKE DRIVE",,"CORVALLIS","OR","97333",,,,,,,"592401723","5417385307","327210","EVANITE FIBER CORPORATION",,"1115 SE CRYSTAL LAKE DRIVE",,"CORVALLIS","OR","97333",,,,,,,"592401723","5417385307",,,,"2011-10-13T18:43:15-0500","DORI RATZLAFF",,,,,45,33,0,11,44,1,45,44,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014083439P030021958130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOENNING & SCATTERGOOD, INC. SALARY DEFERRAL PSP","001","1987-01-01","BOENNING & SCATTERGOOD, INC.",,,"200 BARR HARBOR DR., 4 TOWER BRIDGE",,"WEST CONSHOHOCKEN","PA","194282979",,,,,,,,,,,,,,,,,,"231720062","6108325240","523120","BOENNING & SCATTERGOOD, INC.",,"200 BARR HARBOR DR., 4 TOWER BRIDGE",,"WEST CONSHOHOCKEN","PA","194282979",,,,,,,"231720062","6108325240",,,,"2011-10-14T08:15:03-0500","HAROLD F. SCATTERGOOD",,,,,229,177,0,51,228,0,228,218,20,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014090348P040022876722001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"F. L. ROBERTS PENSION PLAN","002","1967-10-09","F. L. ROBERTS & COMPANY, INC.",,,"93 W. BROAD STREET",,"SPRINGFIELD","MA","011052525",,,,,,,,,,,,,,,,,,"042460375","4137817444","424700","PENSION COMMITTEE OF F. L. ROBERTS & COMPANY, INC.",,"93 W. BROAD STREET",,"SPRINGFIELD","MA","011052525",,,,,,,"042605762","4137817444",,,,"2011-10-14T08:48:45-0500","A. SETH ROBERTS",,,,,123,64,4,51,119,2,121,,0,,"1A1D1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014092239P040152556481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STREAMLITE, INC. EMPLOYEE SAVINGS PLAN","001","2007-04-15","STREAMLITE, INC.",,,"3000 CENTRE PARKWAY, SUITE 100",,"ATLANTA","GA","303448137",,,,,,,,,,,,,,,,,,"203419013","4046244091","812990","STREAMLITE, INC.",,"3000 CENTRE PARKWAY, SUITE 100",,"ATLANTA","GA","303448137",,,,,,,"203419013","4046244091","GLOBAL MAILEXPRESS, INC.","203419013","001","2011-10-14T09:08:24-0500","BRAD VAN ETTEN",,,,,226,177,0,84,261,0,261,218,31,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013181009P040152109521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PERMIAN MUD SERVICE, INC. 401(K) SAVINGS PLAN","002","1989-01-01","PERMIAN MUD SERVICE, INC.",,,"3200 S.W. FREEWAY, SUITE 2700",,"HOUSTON","TX","77027",,,,,,,,,,,,,,,,,,"750721008","7136273303","211110","PERMIAN MUD SERVICE, INC.",,"3200 S.W. FREEWAY, SUITE 2700",,"HOUSTON","TX","77027",,,,,,,"750721008","7136273303",,,,"2011-10-13T15:01:11-0500","JOHN A. RYDER","2011-10-13T15:01:11-0500","JOHN A. RYDER",,,1908,1675,0,415,2090,3,2093,1935,0,,"2E2F2G2J2K2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013184207P040152141921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GLENDALE COUNTRY CLUB 401K THRIFT & SAVINGS PLAN","001","1986-01-01","GLENDALE COUNTRY CLUB",,,"13440 MAIN STREET",,"BELLEVUE","WA","98005",,,,,,,"13440 MAIN STREET",,"BELLEVUE","WA","98005",,,,,,,"910234910","4257467944","713900","GLENDALE COUNTRY CLUB",,"13440 MAIN STREET",,"BELLEVUE","WA","98005",,,,,,,"910234910","4257467944",,,,"2011-10-13T18:41:36-0500","KATHY GRIFFITH",,,,,56,46,0,8,54,0,54,38,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013224333P030024434726001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FORWARD ENTERTAINMENT, LLC 401K PROFIT SHARING PLAN","002","1998-10-01","FORWARD ENTERTAINMENT, LLC.",,"HOLTHOUSE CARLIN VAN TRIGHT, LLP.","11444 WEST OLYMPIC BLVD, 11TH FLOOR",,"LOS ANGELES","CA","90064",,,,,,,,,,,,,,,,,,"954344882","3105661900","512100","FORWARD ENTERTAINMENT, LLC.","HOLTHOUSE CARLIN VAN TRIGHT, LLP.","11444 WEST OLYMPIC BLVD, 11TH FLOOR",,"LOS ANGELES","CA","90064",,,,,,,"954344882","3105661900",,,,"2011-10-13T22:41:49-0500","CONNIE TAVEL",,,,,5,4,0,1,5,0,5,5,,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014083519P030021958306001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"C.B. FLEET COMPANY, INC. 401(K)/THRIFT PLAN","002","1974-01-01","C.B. FLEET COMPANY, INC.",,,"4615 MURRAY PL",,"LYNCHBURG","VA","245022235",,,,,,,,,,,,,,,,,,"540212370","4345284000","325410","C.B. FLEET COMPANY, INC.",,"4615 MURRAY PL",,"LYNCHBURG","VA","245022235",,,,,,,"540212370","4345284000",,,,"2011-10-14T08:35:14-0500","JOSEPH CARROLL","2011-10-14T08:35:14-0500","JOSEPH CARROLL",,,387,316,0,36,352,2,354,316,20,,"2E2F2G2J2K2S2T3F3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013181636P040152116177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SECTION 403(B) RETIREMENT PLAN FOR RAINBOW HOSPICE, INC.","001","1993-04-01","RAINBOW HOSPICE, INC.",,,"444 NORTH NORTHWEST HIGHWAY","SUITE 145","PARK RIDGE","IL","60068",,,,,,,,,,,,,,,,,,"363296367","8476859900","621610","RAINBOW HOSPICE, INC.",,"444 NORTH NORTHWEST HIGHWAY","SUITE 145","PARK RIDGE","IL","60068",,,,,,,"363296367","8476859900",,,,"2011-10-13T15:12:43-0500","BARBARA ALLEN",,,,,205,217,0,0,217,0,217,182,13,,"2F2G2L",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013185150P040683915712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INGRES CORPORATION 401K PLAN","001","2006-01-01","INGRES CORPORATION",,,"500 ARGUELLO STREET #200",,"REDWOOD CITY","CA","94063",,,,,,,,,,,,,,,,,,"203162700","6505875502","541519","INGRES CORPORATION",,"500 ARGUELLO STREET #200",,"REDWOOD CITY","CA","94063",,,,,,,"203162700","6505875502",,,,"2011-10-13T16:10:57-0500","DIANE RIGATUSO",,,,,126,68,1,33,102,0,102,98,10,,"3D2E2J2K2F2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013190819P030021906146004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CONNECTICUT CHILDRENS MEDICAL CENTER GROUP LIFE INSURANCE","510","1987-03-01","CONNECTICUT CHILDRENS MEDICAL CENTER",,"C/O HUMAN RESOURCES","282 WASHINGTON STREET",,"HARTFORD","CT","06106",,,,,,,"282 WASHINGTON STREET",,"HARTFORD","CT","06106",,,,,,,"060646755","8605459000","622000","CONNECTICUT CHILDRENS MEDICAL CENTER","C/O HUMAN RESOURCES","282 WASHINGTON STREET",,"HARTFORD","CT","06106",,,,,,,"060646755","8605459000",,,,"2011-10-11T08:33:04-0500","STEVEN STRANIERI",,,,,3280,3498,,,3498,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013185510P040152151841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE UNION EMPLOYEES BENEFIT PLAN","003","2009-12-31","FLORENCE CRITTENTON SERVICES",,,"840 BRODERICK ST.",,"SAN FRANCISCO","CA","94115",,,,,,,"840 BRODERICK ST.",,"SAN FRANCISCO","CA","94115",,,,,,,"941156331","4155672357","611000","FLORENCE CRITTENTON SERVICES",,"840 BRODERICK ST.",,"SAN FRANCISCO","CA","94115",,,,,,,"941156331","4155672357",,,,"2011-10-13T18:52:52-0500","MIM CARLSON",,,,,16,9,0,7,16,0,16,16,0,,"2C2F2G2K2E",,"1",,,,"1",,,,"1",,,,"1","1",,,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013200927P030148511185001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"ALLIANCEBERNSTEIN US CORE FIXED INCOME COLLECTIVE TRUST","014",,"ALLIANCEBERNSTEIN LP",,,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,,,,,,,,,,,,"046948485","9142597788",,"ALLIANCEBERNSTEIN LP",,"1345 AVENUE OF THE AMERICAS",,"NEW YORK","NY","10105",,,,,,,"134064930","9142597788",,,,,,,,"2011-10-13T15:34:24-0500","EDWARD FARRELL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13",,"Filed with authorized/valid electronic signature", "20111013202938P040152220065001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"THE BELLEVUE MANUFACTURING COMPANY UAW RETIREMENT INCOME PLAN","002","1950-10-01","THE BELLEVUE MANUFACTURING COMPANY UAW RETIREMENT INCOME PLAN",,,"520 GOODRICH AVE",,"BELLEVUE","OH","448111139",,,,,,,,,,,,,,,,,,"344186030","4194837690","332900","THE BELLEVUE MANUFACTURING COMPANY UAW RETIREMENT INCOME PLAN",,"520 GOODRICH AVE",,"BELLEVUE","OH","448111139",,,,,,,"344186030","4194837690",,,,"2011-10-13T20:29:15-0500","ARTHUR WOLFE",,,,,218,73,59,68,200,18,218,,5,1,"1B1G1I",,"0","0","1","0","0","0","1","0","1","1","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014083845P030004439667001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SWETS INFORMATION SERVICES, INC. 401(K) PLAN","001","1968-02-29","SWETS INFORMATION SERVICES, INC.",,,"160 EAST 9TH AVENUE",,"RUNNEMEDE","NJ","08078",,,,,,,,,,,,,,,,,,"223740953","8563122403","519100","SWETS INFORMATION SERVICES, INC.",,"160 EAST 9TH AVENUE",,"RUNNEMEDE","NJ","08078",,,,,,,"223740953","8563122403",,,,"2011-10-14T08:17:07-0500","HEATHER N BANMILLER",,,,,173,76,2,66,144,0,144,126,24,,"3D2E2J2K2F2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014090805P040152545249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE CLEVELAND MUSEUM OF ART GROUP HEALTH PLAN PPO","502","1934-12-01","THE CLEVELAND MUSEUM OF ART",,,"11150 EAST BLVD.",,"CLEVELAND","OH","44106",,,,,,,"11150 EAST BLVD.",,"CLEVELAND","OH","44106",,,,,,,"340714336","2164217340","712100","THE CLEVELAND MUSEUM OF ART",,"11150 EAST BLVD.",,"CLEVELAND","OH","44106",,,,,,,"340714336","2164217340",,,,"2011-10-13T17:05:01-0500","SHARON REAVES","2011-10-12T10:27:35-0500","EDWARD BAUER",,,265,195,62,,257,,257,,,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014093948P040152570657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RALEIGH HEMATOLOGY ONCOLOGY ASSOCIATES, P.C. 401(K) PLAN","001","1995-11-01","RALEIGH HEMATOLOGY ONCOLOGY ASSOCIATES, P.C.",,,"4000 WESTCHASE BLVD",,"RALEIGH","NC","27607",,,,,,,"4000 WESTCHASE BLVD",,"RALEIGH","NC","27607",,,,,,,"561938316","9198294487","621111","RALEIGH HEMATOLOGY ONCOLOGY ASSOCIATES, P.C.",,"4000 WESTCHASE BLVD",,"RALEIGH","NC","27607",,,,,,,"561938316","9198294487",,,,"2011-10-13T21:16:41-0500","ALAN KRITZ",,,,,141,80,0,48,128,0,128,121,8,,"2A2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013183359P040152134337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COGENTRIX ENERGY, LLC RETIREMENT SAVINGS PLAN","001","1985-10-01","COGENTRIX ENERGY, LLC",,,"9405 ARROWPOINT BOULEVARD",,"CHARLOTTE","NC","282738110",,,,,,,,,,,,,,,,,,"561853081","7046722703","221100","COGENTRIX ENERGY, LLC",,"9405 ARROWPOINT BOULEVARD",,"CHARLOTTE","NC","282738110",,,,,,,"561853081","7046722703",,,,"2011-10-13T15:41:15-0500","LINDA OKOWITA","2011-10-13T15:41:15-0500","LINDA OKOWITA",,,1013,234,0,380,614,0,614,613,0,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013191133P040152161057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENGINEERED PLASTIC COMPONENTS INC 401K PLAN","001","1999-03-01","ENGINEERED PLASTIC COMPONENTS INC",,,"1408 ZIMMERMAN DRIVE S",,"GRINNELL","IA","50112",,,,,,,,,,,,,,,,,,"421423727","6412363100","326100","ENGINEERED PLASTIC COMPONENTS INC",,"1408 ZIMMERMAN DRIVE S",,"GRINNELL","IA","50112",,,,,,,"421423727","6412363100",,,,"2011-10-13T16:44:53-0500","NICK SUTHEIMER",,,,,130,233,0,8,241,0,241,51,8,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014085923P030691331072010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FOWLER, RODRIGUEZ, VALDES-FAULI, LLP DENTAL PLAN","503","2009-01-01","FOWLER, RODRIGUEZ, VALDES-FAULI, LLP",,,"400 POYDRAS STREET, 30TH FL",,"NEW ORLEANS","LA","70130",,,,,,,"400 POYDRAS STREET, 30TH FL",,"NEW ORLEANS","LA","70130",,,,,,,"721113170","5045232600","541110","FOWLER, RODRIGUEZ, VALDES-FAULI, LLP",,"400 POYDRAS STREET, 30TH FL",,"NEW ORLEANS","LA","70130",,,,,,,"721113170","5045232600",,,,"2011-10-13T10:15:20-0500","NORMAN C. SULLIVAN, JR.","2011-10-13T10:15:20-0500","NORMAN C. SULLIVAN, JR.",,,109,106,3,,109,,109,,,,,"4D","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014090113P040685666928001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SANKEL, SKURMAN & MCCARTIN, LLP 401(K) PLAN","001","1996-01-01","SANKEL, SKURMAN & MCCARTIN, LLP",,,"750 THIRD AVENUE, 29TH FLOOR",,"NEW YORK","NY","10017",,,,,,,"750 THIRD AVENUE, 29TH FLOOR",,"NEW YORK","NY","10017",,,,,,,"133527345","2126822288","541110","SANKEL, SKURMAN & MCCARTIN, LLP",,"750 THIRD AVENUE, 29TH FLOOR",,"NEW YORK","NY","10017",,,,,,,"133527345","2126822288",,,,"2011-10-14T09:00:50-0500","TERESA KATTENHORN",,,,,12,9,0,2,11,0,11,11,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013172612P030004320676001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"DEAN G. WATANABE MONEY PURCHASE PENSION PLAN","002","1996-04-16","DEAN G. WATANABE","SAN MARINO VETERINARY CLINIC",,"2453 S. OAK KNOLL AVENUE",,"SAN MARINO","CA","91108",,,,,,,"2374 HUNTINGTON DRIVE",,"SAN MARINO","CA","91108",,,,,,,"954178602","6262821010","541940","DEAN G. WATANABE",,"2453 S. OAK KNOLL AVENUE",,"SAN MARINO","CA","91108",,,,,,,"954178602","6262821010",,,,"2011-10-11T16:30:15-0500","DEAN WATANABE",,,,,4,3,,1,4,,4,4,0,,"2C2F2G2R3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014093442P040022880690001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUBLIC SERVICE CREDIT UNION HEALTH AND WELFARE BENEFIT PLAN","501","1996-01-01","PUBLIC SERVICE CREDIT UNION",,,"7055 EAST EVANS AVE",,"DENVER","CO","80224",,,,,,,,,,,,,,,,,,"846023137","3036392171","522130","PUBLIC SERVICE CREDIT UNION",,"7055 EAST EVANS AVE",,"DENVER","CO","80224",,,,,,,"846023137","3036392171",,,,"2011-10-13T16:54:47-0500","KIM FLEMING",,,,,340,462,,,462,,462,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014093452P040022880722001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"WWRD US, LLC","502","2010-01-01","WWRD US, LLC",,,"1330 CAMPUS PARKWAY",,"NEPTUNE","NJ","07753",,,,,,,"1330 CAMPUS PARKWAY",,"NEPTUNE","NJ","07753",,,,,,,"264378452","7329385800","423990","WWRD US, LLC",,"1330 CAMPUS PARKWAY",,"NEPTUNE","NJ","07753",,,,,,,"264378452","7329385800",,,,"2011-10-12T15:58:43-0500","ROBERT CARROLL",,,,,292,292,,,292,,292,,,,,"4B4A4D4E4H4L",,,,"1","1",,,,,,,,,"1","5","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014094805P040152577105001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"EMPLOYEE'S DENTAL PLAN","505","1979-04-15","UNICREDIT BANK AG, NEW YORK BRANCH",,,"150 EAST 42ND STREET",,"NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"132774123","2126725336","522110","UNICREDIT BANK AG, NEW YORK BRANCH",,"150 EAST 42ND STREET",,"NEW YORK","NY","10017",,,,,,,"132774123","2126725336",,,,"2011-10-14T09:47:49-0500","SUSAN RYAN",,,,,624,624,10,,634,,634,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014072007P030021949826001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GARDEN STATE UROLOGY, P.A.PROFIT SHARING PLAN","002","1971-06-01","GARDEN STATE UROLOGY, LLC",,,"16 EDEN LANE",,"WHIPPANY","NJ","07981",,,,,,,,,,,,,,,,,,"262127659","9732402170","621111","GARDEN STATE UROLOGY, LLC",,"16 EDEN LANE",,"WHIPPANY","NJ","07981",,,,,,,"262127659","9732402170",,,,"2011-10-14T07:19:26-0500","JEANMARIE FALCO",,,,,125,121,0,22,143,0,143,110,2,,"2E2F2G2J2K2T3D2R3B",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014075259P040152490497001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NETSHAPE TECHNOLOGIES, INC. 401(K) PLAN","001","2007-02-04","PRECISION COMPONENTS GROUP",,,"8751 OLD ST ROAD 60",,"SELLERSBURG","IN","47172",,,,,,,"8751 OLD ST ROAD 60",,"SELLERSBURG","IN","47172",,,,,,,"300018123","8129234057","332900","PRECISION COMPONENTS GROUP",,"8751 OLD ST ROAD 60",,"SELLERSBURG","IN","47172",,,,,,,"300018123","8129234057","NETSHAPE TECHNOLOGIES, INC.","300018123","001","2011-10-14T07:52:26-0500","SHARON ROBERTS",,,,,505,497,0,78,575,2,577,358,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013160644P040151993121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BA HOLDINGS, INC. DEFINED BENEFIT PENSION PLAN","002","1996-03-01","BA HOLDINGS, INC.",,,"3016 KANSAS AVENUE, BUILDING 1",,"RIVERSIDE","CA","92507",,,,,,,,,,,,,,,,,,"330712701","9516845110","332400","BA HOLDINGS, INC.",,"3016 KANSAS AVENUE, BUILDING 1",,"RIVERSIDE","CA","92507",,,,,,,"330712701","9516845110",,,,"2011-10-13T12:13:44-0500","J. MICHAEL EDWARDS",,,,,808,307,87,296,690,14,704,,0,,"1A1G3H1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013164949P040152031841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MILLAT INDUSTRIES CORPORATION 401K PROFIT SHARING PLAN","001","1972-06-22","MILLAT INDUSTRIES",,,"4901 CROFTSHIRE DRIVE",,"DAYTON","OH","45440",,,,,,,,,,,,,,,,,,"310780542","9374346666","332700","MILLAT INDUSTRIES",,"4901 CROFTSHIRE DRIVE",,"DAYTON","OH","45440",,,,,,,"310780542","9374346666",,,,"2011-10-13T12:15:30-0500","JONI DUNCAN","2011-10-13T12:51:13-0500","GREG MILLAT",,,202,123,0,73,196,0,196,190,8,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013165951P030021895282001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"W. RANDAL BAUDIN PROFIT SHARING PLAN","003","1999-01-01","W. RANDAL BAUDIN",,,"730 WEDGEWOOD DRIVE",,"CRYSTAL LAKE","IL","600146979",,,,,,,,,,,,,,,,,,"363529479","8474265295","541110","W. RANDAL BAUDIN",,"730 WEDGEWOOD DRIVE",,"CRYSTAL LAKE","IL","600146979",,,,,,,"363529479","8474265295",,,,"2011-10-13T16:59:21-0500","W RANDAL BAUDIN",,,,,6,5,1,0,6,0,6,6,0,,"2A2E2G3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014074234P030148817633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WOLVERINE BRASS, INC. EMPLOYEES' 401(K) RETIREMENT PLAN","001","1989-01-01","WOLVERINE BRASS, INC.",,,"2951 HIGHWAY 501 EAST",,"CONWAY","SC","295269515",,,,,,,,,,,,,,,,,,"570878865","8434442999","332510","WOLVERINE BRASS, INC.",,"2951 HIGHWAY 501 EAST",,"CONWAY","SC","295269515",,,,,,,"570878865","8434442999",,,,"2011-10-14T07:42:06-0500","L. STEVEN DAVID","2011-10-14T07:42:06-0500","L. STEVEN DAVID",,,169,149,1,13,163,0,163,148,2,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014080420P030148830513002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ACCORD CORPORATION TAX DEFERRED ANNUITY PLAN","001","1991-01-01","ACCORD CORPORATION, INC",,,"84 SCHUYLER STREET",,"BELMONT","NY","14813",,,,,,,,,,,,,,,,,,"222218884","5852687605","624200","ACCORD CORPORATION INC",,"84 SCHUYLER STREET",,"BELMONT","NY","14813",,,,,,,"222218884","5852687605",,,,"2011-10-14T07:26:27-0500","TIM MAHONEY",,,,,184,177,,,177,,177,,,,"2L",,,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014080420P030148830513003","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"THE LAW OFFICES OF LESLIE L COHN PC PROFIT SHARING PLAN","001","2008-01-01","THE LAW OFFICE OF LESLIE L COHN PC",,,"PO BOX 1564",,"COLUMBUS","GA","319021564",,,,,,,,,,,,,,,,,,"205604717","7063277434","541110","THE LAW OFFICE OF LESLIE L COHN PC",,"PO BOX 1564",,"COLUMBUS","GA","319021564",,,,,,,"205604717","7063277434",,,,"2011-10-12T13:00:15-0500","LESLIE L COHN",,,,,4,2,,2,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014075834P040152493921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELLIS HOSPITAL EMPLOYEE MEDICAL PLAN","501","1984-01-01","ELLIS HOSPITAL",,,"1101 NOTT STREET",,"SCHENECTADY","NY","12308",,,,,,,"1101 NOTT STREET",,"SCHENECTADY","NY","12308",,,,,,,"141338428","5183822000","622000","ELLIS HOSPITAL",,"1101 NOTT STREET",,"SCHENECTADY","NY","12308",,,,,,,"141338428","5183822000",,,,"2011-10-12T10:15:09-0500","JOSEPH GIANSANTE",,,,,2369,3140,,,3140,,3140,,,,,"4A4E","1",,,"1","1",,,"1",,,,,,"1","1","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013170103P040152041873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FCP, INC. 401(K) PLAN","002","2004-09-01","FCP, INC.",,,"360 MERRIMACK ST, BLDG 9, 3RD FL",,"LAWRENCE","MA","01843",,,,,,,,,,,,,,,,,,"042367023","9786871617","624100","FCP, INC.",,"360 MERRIMACK ST, BLDG 9, 3RD FL",,"LAWRENCE","MA","01843",,,,,,,"042367023","9786871617",,,,"2011-10-13T17:00:58-0500","FRANK SORACCO",,,,,318,154,0,87,241,0,241,176,5,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013170144P030148403745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MJC - A WORLD OF QUALITY, INC. 401K PLAN","002","1997-01-01","MJC - A WORLD OF QUALITY, INC.",,,"PO BOX 1703",,"TUALATIN","OR","97062",,,,,,,"PO BOX 1703",,"TUALATIN","OR","97062",,,,,,,"931086330","5036910173","423920","MJC - A WORLD OF QUALITY, INC.",,"PO BOX 1703",,"TUALATIN","OR","97062",,,,,,,"931086330","5036910173",,,,"2011-10-13T15:44:34-0500","MARTIN CASTRO",,,,,7,7,,,7,,7,7,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013170554P040022788322001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR EMPLOYEES OF TERADYNE, INC.","002","1980-01-01","TERADYNE, INC. & SUBSIDIARIES",,,"700 RIVERPARK DRIVE","MAILSTOP 700-2-1","NORTH READING","MA","01864",,,,,,,,,,,,,,,,,,"042272148","9783702700","335900","RETIREMENT PLAN COMMITTEE FOR EMPLOYEES OF TERADYNE, INC.","TERADYNE, INC.","700 RIVERPARK DRIVE",,"NORTH READING","MA","01864",,,,,,,"042688220","9783702700",,,,"2011-10-13T12:44:41-0500","DAVID SHOREY",,,,,6082,683,1445,3752,5880,148,6028,,0,,"1A1G3D",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013170603P030148405953001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ROBIN T DANIEL DDS PROFIT SHARING PLAN","002","1987-01-01","ROBIN T DANIEL DDS",,"REVELS AND COMPANY CPAS PA","PO BOX 271",,"DE QUEEN","AR","71832",,,,,,,"PO BOX 271",,"DE QUEEN","AR","71832",,,,,,,"710583498","8706425034","621210","ROBIN T DANIEL DDS","REVELS AND COMPANY CPAS PA","PO BOX 271",,"DE QUEEN","AR","71832",,,,,,,"710583498","8706425034",,,,"2011-10-13T17:00:39-0500","GREG REVELS",,,,,3,3,,,3,,3,3,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014101525P030691565392001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TURNER WELDING, INC. SAVINGS INCENTIVE PLAN","001","2007-01-01","TURNER WELDING, INC.",,"TINA GUY","1496 CR 1280",,"AMBER","OK","73004",,,,,,,,,,,,,,,,,,"731542918","4052243867","238900","TURNER WELDING, INC.","TINA GUY","1496 CR 1280",,"AMBER","OK","73004",,,,,,,"731542918","4052243867",,,,"2011-10-14T11:15:20-0500","TINA GUY",,,,,20,9,0,10,19,0,19,13,1,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014055741P030148754593001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"NATIONAL KIDNEY FOUNDATION RETIREMENT/SAVINGS PLAN","003","2000-04-01","NATIONAL KIDNEY FOUNDATION",,,"30 EAST 33RD STREET",,"NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"131673104","8006229010","813000","NATIONAL KIDNEY FOUNDATION",,"30 EAST 33RD STREET",,"NEW YORK","NY","10016",,,,,,,"131673104","8006229010",,,,"2011-10-14T05:57:02-0500","DONNA GIANNONE",,,,,498,339,0,156,495,0,495,388,52,,"2G2J2K2M2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014075927P030148827665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RONALD D. COCKRELL, D.D.S., P.C. PROFIT SHARING PLAN","002","2006-01-01","RONALD D. COCKRELL, D.D.S., P.C.",,,"8770 NORTH UNION BLVD.",,"US COLORADO SPRINGS","CO","80920",,,,,,,,,,,,,,,,,,"840691649","7195975748","621210","RONALD D. COCKRELL, D.D.S., P.C.",,"8770 NORTH UNION BLVD.",,"US COLORADO SPRINGS","CO","80920",,,,,,,"840691649","7195975748",,,,"2011-10-14T07:58:31-0500","RONALD D. COCKRELL",,,,,7,12,0,0,12,0,12,9,0,,"2A2E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013171250P040050099271001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHAEL E. JASIN, MD, PA 401(K) PLAN","002","2007-01-01","MICHAEL E. JASIN, MD, PA",,,"8935 BLOOMFIELD BLVD.",,"SARASOTA","FL","34238",,,,,,,,,,,,,,,,,,"592679152","8139773273","621112","MICHAEL E. JASIN, MD, PA",,"8935 BLOOMFIELD BLVD.",,"SARASOTA","FL","34238",,,,,,,"592679152","8139773273",,,,"2011-10-13T13:21:24-0500","MICHAEL E. JASIN, MD",,,,,10,4,0,1,5,0,5,5,1,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014092403P030004440611006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RETIREMENT PLAN FOR EMPLOYEES/FIELD REPRESENTATIVE","001","1961-01-01","WOODMEN OF THE WORLD LIFE INSURANCE SOCIETY",,,"1700 FARNAM STREET",,"OMAHA","NE","68102",,,,,,,"1700 FARNAM STREET",,"OMAHA","NE","68102",,,,,,,"470339250","4023421890","524140","WOODMEN OF THE WORLD LIFE INSURANCE SOCIETY",,"1700 FARNAM STREET",,"OMAHA","NE","68102",,,,,,,"470339250","4023421890",,,,"2011-10-13T04:00:00-0500","JORDAN MAWSON TAX COMPLIANCE SUPV",,,,,3086,747,1262,1008,3017,23,3040,,11,,"1G",,"1",,,,"1",,,,"1",,"1","1",,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014065150P030690988752001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREENBRIER VALLEY UROLOGY ASSOC INC 401(K) PROFIT SHARING PLAN","002","1994-04-01","GREENBRIER VALLEY UROLOGY ASSOC INC",,,"119 MAPLEWOOD AVE",,"RONCEVERTE","WV","24970",,,,,,,,,,,,,,,,,,"550732003","3046475642","621111","GREENBRIER VALLEY UROLOGY ASSOC INC",,"119 MAPLEWOOD AVE",,"RONCEVERTE","WV","24970",,,,,,,"550732003","3046475642",,,,"2011-10-14T06:48:50-0500","DONNA STATEN",,,,,42,26,0,3,29,0,29,29,1,,"2A2E2H2J2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014075808P030021953794001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DREW UNIVERSITY EMPLOYEE ASSISTANCE PLAN","504","2002-01-01","DREW UNIVERSITY",,,"36 MADISON AVENUE",,"MADISON","NJ","079401434",,,,,,,,,,,,,,,,,,"221487164","9734083212","611000","DREW UNIVERSITY",,"36 MADISON AVENUE",,"MADISON","NJ","079401434",,,,,,,"221487164","9734083212",,,,"2011-10-14T07:57:26-0500","DEBORAH RAIKES-COLBERT",,,,,450,459,0,0,459,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013165552P030148400913001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FEDERAL COMPRESS & WAREHOUSE COMPANY, INC. & AFFILIATED GROUP LIFE & HEALTH","501","1969-07-31","FEDERAL COMPRESS & WAREHOUSE COMPANY, INC.",,,"6060 PRIMACY PARKWAY","SUITE 400","MEMPHIS","TN","38119",,,,,,,"6060 PRIMACY PARKWAY","SUITE 400","MEMPHIS","TN","38119",,,,,,,"621167633","9015244040","493100","FEDERAL COMPRESS & WAREHOUSE COMPANY, INC.",,"6060 PRIMACY PARKWAY","SUITE 400","MEMPHIS","TN","38119",,,,,,,"621167633","9015244040",,,,"2011-10-13T16:55:25-0500","VICKIE CORTESE",,,,,198,129,83,0,212,0,212,,,,,"4A4B","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013155501P030148351041001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"LEXINGTON SQUARE, LLC 401(K) PLAN","001","2007-01-01","LEXINGTON SQUARE, LLC",,,"500 MESSENGER ROAD",,"KEOKUK","IA","52632",,,,,,,,,,,,,,,,,,"200473448","3195245321","623000","LEXINGTON SQUARE, LLC",,"500 MESSENGER ROAD",,"KEOKUK","IA","52632",,,,,,,"200473448","3195245321",,,,"2011-10-13T15:53:40-0500","ALAN ISRAEL",,,,,122,156,2,4,162,0,162,29,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013170930P040152048545001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"HECTOR L. HERNANDEZ MORALES RETIREMENT PLAN","001","2007-01-01","HECTOR L. HERNANDEZ MORALES","SAME",,"1688 C/SEGRE","RIO PIEDRAS HEIGHTS","SAN JUAN","PR","00926",,,,,,,"1688 C/SEGRE","RIO PIEDRAS","SAN JUAN","PR","00926",,,,,,,"660607066","7876469297","812990","HECTOR L. HERNANDEZ MORALES","SAME","1688 C/SEGRE","RIO PIEDRAS HEIGHTS","SAN JUAN","PR","00926",,,,,,,"660607066","7876469297",,,,"2011-10-13T13:14:39-0500","ALINA ALVAREZ MERCHAN",,,,,1,0,0,0,0,0,0,0,0,,"2C2E3B3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013171910P040152059969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IDAHO TIMBER, LLC PROFIT SHARING AND 401K PLAN","001","1988-04-01","IDAHO TIMBER, LLC",,,"PO BOX 67",,"BOISE","ID","837070067",,,,,,,,,,,,,,,,,,"820347870","2083773000","321900","IDAHO TIMBER, LLC",,"PO BOX 67",,"BOISE","ID","837070067",,,,,,,"820347870","2083773000",,,,"2011-10-13T17:15:40-0500","SCOTT BEECHIE",,,,,51,283,0,290,573,0,573,521,24,,"2A2E2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014094133P040152572641006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE ESTATE AT CARPENTER'S","501","1994-02-01","CARPENTER'S HOME ESTATES, INC. WELFARE PLAN",,,"1001 CARPENTER'S WAY",,"LAKELAND","FL","33809",,,,,,,,,,,,,,,,,,"592347336","8638583847","623000","CARPENTER'S HOME ESTATES, INC. WELFARE PLAN",,"1001 CARPENTER'S WAY",,"LAKELAND","FL","33809",,,,,,,"592347336","8638583847",,,,"2011-10-07T04:24:43-0500","JOHN THOMPSON",,,,,204,217,,,217,,,,,,,"4A4B4D","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014094133P040152572641004","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"GARY H. DITTO PROFIT SHARING PLAN","003","1996-01-01","GARY H. DITTO",,,"9701 OLD SPRING ROAD",,"KENSINGTON","MD","20895",,,,,,,"9701 OLD SPRING ROAD",,"KENSINGTON","MD","20895",,,,,,,"521426249","3019077600","531210","GARY H. DITTO",,"9701 OLD SPRING ROAD",,"KENSINGTON","MD","20895",,,,,,,"521426249","3019077600",,,,"2011-10-13T05:30:45-0500","GARY H. DITTO",,,,,2,2,,,2,,2,0,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014095124P040152579489001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"DREW MORTGAGE ASSOCIATES, INC. 401(K) PLAN","001","1996-07-01","DREW MORTGAGE ASSOCIATES, INC.",,,"196 BOSTON TURNPIKE ROAD",,"SHREWSBURY","MA","01545",,,,,,,"196 BOSTON TURNPIKE ROAD",,"SHREWSBURY","MA","01545",,,,,,,"043128200","5084218115","522292","DREW MORTGAGE ASSOCIATES, INC.",,"196 BOSTON TURNPIKE ROAD",,"SHREWSBURY","MA","01545",,,,,,,"043128200","5084218115",,,,"2011-10-14T09:50:17-0500","CHRISTINE RAWAN",,,,,66,50,0,12,62,0,62,35,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013161757P030148366897001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LHP HOSPITAL GROUP, INC. RETIREMENT SAVINGS PLAN","001","2008-05-01","LHP HOSPITAL GROUP, INC.",,,"2800 N. DALLAS PARKWAY","SUITE 200","PLANO","TX","75093",,,,,,,,,,,,,,,,,,"261338856","8664659222","622000","LHP HOSPITAL GROUP, INC.",,"2800 N. DALLAS PARKWAY","SUITE 200","PLANO","TX","75093",,,,,,,"261338856","8664659222",,,,"2011-10-13T16:13:39-0500","TOM FRAZIER",,,,,1092,1820,0,248,2068,3,2071,1998,129,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013170625P030148406193001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"H5 401(K) PLAN","001","2001-01-01","H5",,,"71 STEVENSON ST.","SUITE 1200","SAN FRANCISCO","CA","94105",,,,,,,"71 STEVENSON ST.","SUITE 1200","SAN FRANCISCO","CA","94105",,,,,,,"943339333","4156256729","541990","H5",,"71 STEVENSON ST.","SUITE 1200","SAN FRANCISCO","CA","94105",,,,,,,"943339333","4156256729",,,,"2011-10-13T17:05:59-0500","KATIE ROMWEBER",,,,,139,49,0,67,116,0,116,104,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014091616P040152551569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEXT DOOR SAVINGS & RETIREMENT PLAN","002","2008-09-01","NEXT DOOR",,,"2545 NORTH 29TH STREET",,"MILWAUKEE","WI","53210",,,,,,,,,,,,,,,,,,"391162969","4145622929","611000","NEXT DOOR",,"2545 NORTH 29TH STREET",,"MILWAUKEE","WI","53210",,,,,,,"391162969","4145622929",,,,"2011-10-14T09:11:46-0500","LUCRETIA DILLON",,,,,133,156,0,11,167,0,167,64,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014040324P040152387633001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ARIESO, INC. 401(K) PLAN","001","2008-03-01","ARIESO, INC.",,,"3495 PIEDMONT RD NE STE 11-550",,"ATLANTA","GA","30305",,,,,,,,,,,,,,,,,,"980506627","8606247069","561900","ARIESO, INC.",,"3495 PIEDMONT RD NE STE 11-550",,"ATLANTA","GA","30305",,,,,,,"980506627","8606247069",,,,"2011-10-14T04:02:13-0500","CLAIRE WHITE",,,,,9,8,0,2,10,0,10,10,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014061029P030690904544001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KWAJALEIN SUPPORT SERVICES 401(K) PLAN AND TRUST","002","2003-10-25","CHUGACH MANAGEMENT SERVICES, INC.",,,"3800 CENTERPOINT DRIVE, SUITE 601",,"ANCHORAGE","AK","995035826",,,,,,,,,,,,,,,,,,"920142654","9075638866","551112","CHUGACH MANAGEMENT SERVICES, INC.",,"3800 CENTERPOINT DRIVE, SUITE 601",,"ANCHORAGE","AK","995035826",,,,,,,"920142654","9075638866",,,,"2011-10-14T06:09:35-0500","RENEE REYNOLDS","2011-10-14T06:09:35-0500","RENEE REYNOLDS",,,498,282,0,153,435,0,435,346,0,,"2E2F2G2J2K3D3H",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013171129P030148409009001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"GROUP DENTAL PLAN FOR UNION EMPLOYEES OF MURPHY OIL CORPORATION AT SUPERIOR, WI","511","1992-07-01","MURPHY OIL CORPORATION",,"RON SMITH","200 PEACH STREET",,"EL DORADO","AR","71730",,,,,,,,,,,,,,,,,,"710361522","8708626411","324110","MURPHY OIL CORPORATION","RON SMITH","200 PEACH STREET",,"EL DORADO","AR","71730",,,,,,,"710361522","8708626411",,,,"2011-10-13T17:10:51-0500","PHYLLIS LYNN BREWER","2011-10-13T17:10:51-0500","RON SMITH",,,98,99,,,99,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013170404P040022787746003","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"WINE RACKS AMERICA WELFARE BENEFIT FUND","501","2006-01-01","WINE RACKS AMERICA",,,"PO BOX 17695",,"HOLLADAY","UT","84117",,,,,,,,,,,,,,,,,,"207029663","8015980988","424800","WINE RACKS AMERICA",,"PO BOX 17695",,"HOLLADAY","UT","84117",,,,,,,"207029663","8015980988",,,,"2011-10-13T16:53:01-0500","LAURA CARRERA",,,,,1,1,,,1,,1,,,,,"4Q4L4B","1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014095259P030148913441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"W.J. YOUNG & ASSOCIATES 401(K) PLAN","002","1997-01-01","W.J. YOUNG & ASSOCIATES",,,"2625 BUTTERFIELD ROAD, SUITE 216 S",,"OAK BROOK","IL","605231234",,,,,,,,,,,,,,,,,,"363500955","6305732500","812990","W.J. YOUNG & ASSOCIATES",,"2625 BUTTERFIELD ROAD, SUITE 216 S",,"OAK BROOK","IL","605231234",,,,,,,"363500955","6305732500",,,,"2011-10-14T08:51:04-0500","WILLIAM YOUNG",,,,,5,5,0,0,5,0,5,5,0,,"2A2E2G2J2R3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014003007P040684652144001","2010-02-01","2011-01-31","2",,,,,,,,"1",,,,"RICHARD F. WOLVEN DDS PROFESSIONAL CORPORATION PENSION PLAN","002","1974-06-01","RICHARD F. WOLVEN, D.D.S. PROFESSIONAL CORPORATION",,,"2750 HARRISON AVENUE",,"EUREKA","CA","95501",,,,,,,,,,,,,,,,,,"942241296","7074439413","621210","RICHARD F. WOLVEN, D.D.S. PROFESSIONAL CORPORATION",,"2750 HARRISON AVENUE",,"EUREKA","CA","95501",,,,,,,"942241296","7074439413",,,,"2011-10-14T00:20:02-0500","RICHARD F. WOLVEN",,,,,9,8,0,1,9,0,9,9,,,"2C",,,,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014013113P040004340500001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SES AMERICOM RETIREMENT AND SAVINGS PLAN","001","2001-11-12","SES AMERICOM INC.",,,"4 RESEARCH WAY",,"PRINCETON","NJ","08540",,,,,,,,,,,,,,,,,,"132849985","6099874137","512200","SES AMERICOM INC.",,"4 RESEARCH WAY",,"PRINCETON","NJ","08540",,,,,,,"132849985","6099874137",,,,"2011-10-13T14:57:45-0500","DOUGLAS CLAYTON","2011-10-13T14:57:45-0500","DOUGLAS CLAYTON",,,544,443,1,225,669,2,671,665,0,,"2A2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014070453P030691018272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOLTZ, KING, DUVALL, ANDERSON AND ASSOCIATES, INCORPORATED HEALTH CARE PLAN","501","1967-04-01","TOLTZ, KING, DUVALL, ANDERSON AND ASSOCIATES, INCORPORATED",,,"444 CEDAR STREET, SUITE 1500",,"ST. PAUL","MN","551012140",,,,,,,,,,,,,,,,,,"410579540","6512924400","541330","TOLTZ, KING, DUVALL, ANDERSON AND ASSOCIATES, INCORPORATED",,"444 CEDAR STREET, SUITE 1500",,"ST. PAUL","MN","551012140",,,,,,,"410579540","6512924400",,,,"2011-10-14T07:00:43-0500","DEAN GRATZ",,,,,176,159,8,8,175,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014081032P040022870610001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DOWN EAST COMMUNITY HOSPITAL EMPLOYEE BENEFIT PLAN","501","1987-07-01","DOWN EAST COMMUNITY HOSPITAL",,,"11 HOSPITAL DR",,"MACHIAS","ME","04654",,,,,,,,,,,,,,,,,,"010263198","2072553356","622000","DOWN EAST COMMUNITY HOSPITAL",,"11 HOSPITAL DR",,"MACHIAS","ME","04654",,,,,,,"010263198","2072553356",,,,"2011-10-14T04:01:57-0500","LYNNETTE PARR","2011-10-14T04:01:57-0500","LYNNETTE PARR",,,224,228,,,228,,,,,,,"4A4B","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013164449P040022784754001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"USIBELLI COAL MINE, INC. THRIFT SAVINGS AND 401(K) PLAN I","002","1982-01-01","USIBELLI COAL MINE, INC.",,,"PO BOX 1000",,"HEALY","AK","99743",,,,,,,"100 RIVER ROAD",,"HEALY","AK","99743",,,,,,,"920014216","9076832226","212110","USIBELLI COAL MINE, INC.",,"PO BOX 1000",,"HEALY","AK","99743",,,,,,,"920014216","9076832226",,,,"2011-10-13T12:52:18-0500","GLEN WEAVER","2011-10-13T12:52:18-0500","GLEN WEAVER",,,114,80,0,34,114,0,114,107,1,,"2E2G2J2K2T3D2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013164531P040152028049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MILLS GROUP, INC MEDICAL PLAN","501","2004-09-01","MILLS GROUP, INC",,,"2650 S HANLEY","STE 200","ST LOUIS","MO","63144",,,,,,,,,,,,,,,,,,"431166720","3147218000","531210","MILLS GROUP, INC",,"2650 S HANLEY","STE 200","ST LOUIS","MO","63144",,,,,,,"431166720","3147218000",,,,"2011-10-13T12:53:00-0500","STEPHANIE SIMMONS","2011-10-13T12:53:00-0500","HANK PIEPER",,,163,183,0,0,183,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013163414P030689244352014","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"SCOTT MYERS A SOLE PROPRIETORSHIP 401K PROFIT SHARING PLAN & TRUST AGREEMENT","001","2003-01-01","LAW OFFICES OF SCOTT E MYERS",,,"3180 E GRANT ROAD",,"TUCSON","AZ","85716",,,,,,,,,,,,,,,,,,"860591634","5203276041","541110","SCOTT E MYERS",,"3180 E GRANT ROAD",,"TUCSON","AZ","85716",,,,,,,"860591634","5203276041",,,,"2011-10-13T15:03:03-0500","SCOTT E MYERS",,,,,2,2,,,2,,2,2,,,"3D2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013163421P030148382017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUNDMANN MOTOR COMPANY EMPLOYEES HEALTH AND WELFARE PLAN","501","1986-01-01","PUNDMANN MOTOR COMPANY",,,"2727 WEST CLAY",,"ST. CHARLES","MO","63301",,,,,,,,,,,,,,,,,,"430467300","6369466611","441110","PUNDMANN MOTOR COMPANY",,"2727 WEST CLAY",,"ST. CHARLES","MO","63301",,,,,,,"430467300","6369466611",,,,"2011-10-13T16:34:10-0500","THOMAS PUNDMANN","2011-10-13T16:34:10-0500","THOMAS PUNDMANN",,,164,151,,,151,,,,,,,"4A4D4B4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014095355P030021969202001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENSAFE 401K PROFIT SHARING PLAN","001","1986-08-01","ENSAFE INC.",,,"5724 SUMMER TREES DRIVE",,"MEMPHIS","TN","38134",,,,,,,,,,,,,,,,,,"581402235","9013727962","541800","ENSAFE INC.",,"5724 SUMMER TREES DRIVE",,"MEMPHIS","TN","38134",,,,,,,"581402235","9013727962",,,,"2011-10-14T08:55:01-0500","MICHAEL WOOD","2011-10-14T08:55:01-0500","MICHAEL WOOD",,,284,239,0,107,346,0,346,303,16,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014073051P030148810337001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"ABX AIR, INC PILOTS MINIMUM MONTHLY RETIREMENT INCOME PLAN","003","1981-01-01","ABX AIR, INC.",,,"145 HUNTER DRIVE",,"WILMINGTON","OH","451779390",,,,,,,,,,,,,,,,,,"911091619","9373825591","481000","ADVISORY COMMITTEE FOR THE PLAN OF ABX AIR, INC.",,"145 HUNTER DRIVE",,"WILMINGTON","OH","451779390",,,,,,,"911091619","9373825591",,,,"2011-10-14T07:30:40-0500","QUINT TURNER","2011-10-14T07:30:40-0500","QUINT TURNER",,,849,250,263,334,847,14,861,,0,,"1A1D1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014073605P040152482209001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"CINCINNATI INCORPORATED EMPLOYEES' RETIREMENT PENSION PLAN","001","1949-12-15","CINCINNATI INCORPORATED",,,"P O BOX 11111",,"CINCINNATI","OH","45211",,,,,,,"7420 KILBY ROAD",,"HARRISON","OH","45030",,,,,,,"310241180","5133677100","333510","CINCINNATI INCORPORATED",,"P O BOX 11111",,"CINCINNATI","OH","45211",,,,,,,"310241180","5133677100",,,,"2011-10-14T07:35:42-0500","VALERIE WEBSTER",,,,,641,218,43,370,631,10,641,641,,,"1A1G",,,,"1",,"1",,"1",,"1",,"1","1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013161356P040152001793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE AME GROUP EMPLOYEE STOCK OWNERSHIP PLAN","002","1998-01-01","THE AME GROUP",,,"6001 EAST OLD HIGHWAY 50",,"VINCENNES","IN","475919712",,,,,,,,,,,,,,,,,,"351630314","8127262029","541519","THE AME GROUP",,"6001 EAST OLD HIGHWAY 50",,"VINCENNES","IN","475919712",,,,,,,"351630314","8127262029",,,,"2011-10-13T12:19:31-0500","MARK GERKIN",,,,,159,80,21,42,143,0,143,143,5,,"2O2I2Q",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013165859P040152040065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HARBER COMPANIES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2008-01-01","HARBER COMPANIES, INC.",,,"1880 EAST RIVERVIEW DRIVE",,"SAN BERNARDINO","CA","924083031",,,,,,,,,,,,,,,,,,"330108597","9094781957","238900","HARBER COMPANIES, INC.",,"1880 EAST RIVERVIEW DRIVE",,"SAN BERNARDINO","CA","924083031",,,,,,,"330108597","9094781957",,,,"2011-10-13T16:58:58-0500","BRIAN HARBER",,,,,35,33,0,4,37,0,37,37,4,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013163131P040152017169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LIMA MEMORIAL HOSPITAL COLONIAL LIFE-ACCIDENT-SICKNESS","507","1995-01-01","LIMA MEMORIAL HOSPITAL",,,"1001 BELLEFONTAINE AVENUE",,"LIMA","OH","458042800",,,,,,,,,,,,,,,,,,"344434676","4192265089","622000","LIMA MEMORIAL HOSPITAL",,"1001 BELLEFONTAINE AVENUE",,"LIMA","OH","458042800",,,,,,,"344434676","4192265089",,,,"2011-10-13T12:39:40-0500","ERIC POHJALA","2011-10-13T12:39:40-0500","ERIC POHJALA",,,238,266,0,0,266,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013171000P040152049057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCNAIR LAW FIRM, P.A. RETIREMENT SAVINGS PLAN","002","1988-10-01","MCNAIR LAW FIRM, P.A.",,,"1221 MAIN STREET, SUITE 1800",,"COLUMBIA","SC","29201",,,,,,,,,,,,,,,,,,"570703244","8037999800","541110","MCNAIR LAW FIRM, P.A.",,"1221 MAIN STREET, SUITE 1800",,"COLUMBIA","SC","29201",,,,,,,"570703244","8037999800",,,,"2011-10-13T13:15:42-0500","MELISSA SCHUMPERT",,,,,432,293,0,129,422,0,422,407,5,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013171010P030148407905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REPUBLIC AIRWAYS HOLDINGS HEALTH AND WELFARE PLAN","501","1993-05-01","REPUBLIC AIRWAYS HOLDINGS, INC.",,,"8909 PURDUE ROAD, SUITE 300",,"INDIANAPOLIS","IN","46268",,,,,,,,,,,,,,,,,,"061449146","3174846003","481000","REPUBLIC AIRWAYS HOLDINGS, INC.",,"8909 PURDUE ROAD, SUITE 300",,"INDIANAPOLIS","IN","46268",,,,,,,"061449146","3174846003",,,,"2011-10-13T16:28:01-0500","LISA WURSTER",,,,,5485,5765,310,0,6075,,,,,,,"4A4B4D4E4F4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014074534P040050278391001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIELD ADJUSTMENT PLAN","516","1991-01-01","PENN MUTUAL LIFE INSURANCE COMPANY",,,"600 DRESHER ROAD",,"HORSHAM","PA","190442204",,,,,,,,,,,,,,,,,,"230952300","2159568383","524140","PENN MUTUAL LIFE INSURANCE COMPANY",,"600 DRESHER ROAD",,"HORSHAM","PA","190442204",,,,,,,"230952300","2159568383",,,,"2011-10-13T13:34:16-0500","EDWARD CLEMONS","2011-10-14T07:35:27-0500","DAVID OMALLEY",,,48,0,41,0,41,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013161428P040152002257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NU-TEC ROOFING CONTRACTORS 401K PLAN","003","2003-02-01","NU-TEC ROOFING CONTRACTORS",,,"5025 EMCO DR",,"INDIANAPOLIS","IN","462204846",,,,,,,,,,,,,,,,,,"352114307","3172554464","238100","NU-TEC ROOFING CONTRACTORS",,"5025 EMCO DR",,"INDIANAPOLIS","IN","462204846",,,,,,,"352114307","3172554464",,,,"2011-10-13T15:49:51-0500","EDWARD CHOWNING",,,,,211,139,7,51,197,0,197,118,0,,"3D2E2F2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013163751P040152023505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE TAUBMAN COMPANY AND RELATED ENTITIES EMPLOYEE RETIREMENT SAVINGS PLAN","001","1957-01-01","THE TAUBMAN COMPANY, LLC",,,"200 E. LONG LAKE ROAD, SUITE 300",,"BLOOMFIELD HILLS","MI","483042324",,,,,,,,,,,,,,,,,,"383081510","2482586800","531310","THE TAUBMAN COMPANY, LLC",,"200 E. LONG LAKE ROAD, SUITE 300",,"BLOOMFIELD HILLS","MI","483042324",,,,,,,"383081510","2482586800",,,,"2011-10-13T12:34:31-0500","MICHAEL T. GORNY","2011-10-13T12:45:21-0500","ESTHER R. BLUM",,,896,637,10,222,869,0,869,869,39,,"2E2F2G2J2K2S2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014065617P030690999248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DURKIN & POLERA, P.C. PROFIT SHARING PLAN","002","1999-01-01","DURKIN & POLERA, P.C.",,,"1111 SUMMER STREET, 5TH FLOOR",,"STAMFORD","CT","06905",,,,,,,,,,,,,,,,,,"061358952","2033270044","541110","DURKIN & POLERA, P.C.",,"1111 SUMMER STREET, 5TH FLOOR",,"STAMFORD","CT","06905",,,,,,,"061358952","2033270044",,,,"2011-10-14T06:55:47-0500","JOHN C. POLERA, ESQ., TRUSTEE","2011-10-14T06:55:47-0500","JOHN C. POLERA, ESQ.",,,4,5,0,0,5,0,5,5,0,,"2E2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014063918P030148776865001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"HOUGHTON INT. INC TAX ADVANTAGED CAPITAL ACCU M PLAN","014","1984-11-01","HOUGHTON INTERNATIONAL INC.",,,"PO BOX 930",,"VALLEY FORGE","PA","194820930",,,,,,,,,,,,,,,,,,"230712270","6106664000","325900","HOUGHTON INTERNATIONAL INC.",,"PO BOX 930",,"VALLEY FORGE","PA","194820930",,,,,,,"230712270","6106664000",,,,"2011-10-14T06:39:13-0500","JAY ROHR","2011-10-14T06:39:13-0500","JAY ROHR",,,472,380,0,76,456,3,459,446,30,,"2E2G2J2K2S2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013155930P040151985569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY ACTION PARTNERSHIP OF SAN LUIS OBISPO COUNTY, INC. 403(B)PLAN","001","1998-01-01","COMMUNITY ACTION PARTNERSHIP OF SAN LUIS OBISPO COUNTY, INC.",,,"1030 SOUTHWOOD DR.",,"SAN LUIS OBISPO","CA","934015813",,,,,,,,,,,,,,,,,,"952410253","8055444355","813000","COMMUNITY ACTION PARTNERSHIP OF SAN LUIS OBISPO COUNTY, INC.",,"1030 SOUTHWOOD DR.",,"SAN LUIS OBISPO","CA","934015813",,,,,,,"952410253","8055444355",,,,"2011-10-13T15:59:22-0500","THOMAS ALVAREZ",,,,,891,874,0,53,927,0,927,525,0,,"2M2L3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013171201P040152051857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOGAN OIL TOOLS, INC. 401 K PROFIT SHARING & RETIREMENT PLAN","002","1990-04-01","LOGAN OIL TOOLS, INC.",,,"10603 W. SAM HOUSTON PKWY N","SUITE 200","HOUSTON","TX","77064",,,,,,,,,,,,,,,,,,"760610259","2812196613","333510","LOGAN OIL TOOLS, INC.",,"10603 W. SAM HOUSTON PKWY N","SUITE 200","HOUSTON","TX","77064",,,,,,,"760610259","2812196613",,,,"2011-10-13T13:20:18-0500","LAWRENCE D KEISTER",,,,,377,365,0,81,446,0,446,424,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013164256P030004424083001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"403(B) THRIFT PLAN OF RESOURCES FOR SENIORS","003","1991-07-01","RESOURCES FOR SENIORS",,"KRISTEN BRANNOCK","1110 NAVAHO DRIVE","SUITE 400","RALEIGH","NC","27609",,,,,,,,,,,,,,,,,,"561035065","9198727933","621610","RESOURCES FOR SENIORS","KRISTEN BRANNOCK","1110 NAVAHO DRIVE","SUITE 400","RALEIGH","NC","27609",,,,,,,"561035065","9198727933",,,,"2011-10-13T16:41:11-0500","KRISTEN BRANNOCK",,,,,154,108,0,43,151,2,153,153,1,,"2L",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013165421P040683544512008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DRS. WELCH & UYEMURA, LLC PROFIT SHARING/401(K)","001","1978-05-01","DRS. WELCH & UYEMURA, LLC",,,"1616 15TH ST",,"GREELEY","CO","80631",,,,,,,,,,,,,,,,,,"841606227","9703526688","621111","DRS. WELCH & UYEMURA, LLC",,"1616 15TH ST",,"GREELEY","CO","80631",,,,,,,"841606227","9703526688",,,,"2011-10-13T09:46:34-0500","JOHN WELCH",,,,,19,15,,3,18,,18,18,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111014092655P030021965122001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ASTRAZENECA RETIREMENT PLAN","006","1989-01-01","ASTRAZENECA PHARMACEUTICALS LP",,,"PO BOX 15437",,"WILMINGTON","DE","198505437",,,,,,,,,,,,,,,,,,"232967016","3028863000","325410","ASTRAZENECA PHARMACEUTICALS LP",,"PO BOX 15437",,"WILMINGTON","DE","198505437",,,,,,,"232967016","3028863000",,,,"2011-10-14T07:50:50-0500","MICHAEL WARREN","2011-10-14T08:39:24-0500","ROBERT BUSCH",,,10926,9154,12,1792,10958,34,10992,9989,1,,"2C2T3H3F2G2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014070936P030691026704001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRICE, EDWARDS & COMPANY SAVINGS AND RETIREMENT PLAN","001","1991-01-01","PRICE, EDWARDS & COMPANY",,,"210 PARK AVENUE, SUITE 1000",,"OKLAHOMA CITY","OK","73102",,,,,,,,,,,,,,,,,,"731322410","4058437474","531310","PRICE, EDWARDS & COMPANY",,"210 PARK AVENUE, SUITE 1000",,"OKLAHOMA CITY","OK","73102",,,,,,,"731322410","4058437474",,,,"2011-10-14T07:09:04-0500","DALE HAGEMAN",,,,,205,128,0,73,201,0,201,174,0,,"2E2F2G2J2K3D2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013165441P040683545680001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","1","0","0",,"BARNEY BELLECI AGE-WEIGHTED PROFIT SHARING PLAN","001","1987-01-01","BARNEY J. BELLECI",,,"26555 CARMEL RANCHO BLVD.","SUITE 1","CARMEL","CA","93923",,,,,,,,,,,,,,,,,,"941743876","8316246466","524210","BARNEY J. BELLECI",,"26555 CARMEL RANCHO BLVD.","SUITE 1","CARMEL","CA","93923",,,,,,,"941743876","8316246466",,,,"2011-10-13T16:54:02-0500","BARNEY BELLECI","2011-10-13T16:54:02-0500","BARNEY BELLECI",,,9,8,0,2,10,0,10,10,0,,"2A2E3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014075507P040152491665001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ROSE-HULMAN INSTITUTE OF TECHNOLOGY RA (FORMERLY ROSE-HULMAN INSTITUTE OF TECHNOLOGY DEFINED CONTRIBUTION RETIREMENT PLAN)","001","1919-12-14","ROSE-HULMAN INSTITUTE OF TECHNOLOGY","ATTN ROB COONS",,"5500 WABASH AVE., CM21",,"TERRE HAUTE","IN","478033920",,,,,,,,,,,,,,,,,,"350868149","8128771511","611000","ROSE-HULMAN INSTITUTE OF TECHNOLOGY","ATTN ROB COONS","5500 WABASH AVE., CM21",,"TERRE HAUTE","IN","478033920",,,,,,,"350868149","8128771511",,,,"2011-10-13T23:19:19-0500","STEVEN J. KRITZMIRE","2011-10-13T23:19:33-0500","STEVEN J. KRITZMIRE",,,857,558,,320,878,2,880,826,,,"2G2L2M",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014093352P040685779456001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BUSINESS TRAVEL ACCIDENT INSURANCE PLAN","501","1962-01-03","ALTRIA CLIENT SERVICES INC.",,,"P. O. BOX 85088",,"RICHMOND","VA","232855088",,,,,,,"6601 WEST BROAD STREET",,"RICHMOND","VA","232301723",,,,,,,"133379805","8042742200","312200","PETER C. FAUST, PLAN ADMINISTRATOR","ALTRIA CLIENT SERVICES INC.","P. O. BOX 85088",,"RICHMOND","VA","232855088",,,,,,,"263336082","8042742200",,,,"2011-10-14T08:00:34-0500","SIDNEY SPENCER",,,,,7975,8438,0,0,8438,0,8438,,,,,"4L","1",,,"0","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014093357P040152566097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRST ASSEMBLY/CHRISTIAN LIFE 401(K) PLAN","002","1997-01-01","FIRST ASSEMBLY OF GOD CHURCH, ROCKFORD, ILLINOIS",,,"5950 SPRING CREEK ROAD",,"ROCKFORD","IL","61114",,,,,,,,,,,,,,,,,,"366008626","8158778000","813000","FIRST ASSEMBLY OF GOD CHURCH, ROCKFORD, ILLINOIS",,"5950 SPRING CREEK ROAD",,"ROCKFORD","IL","61114",,,,,,,"366008626","8158778000",,,,"2011-10-14T09:29:34-0500","GARY MASSEY",,,,,168,125,0,33,158,0,158,111,3,,"2A2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014071728P040022865858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VENTURE LOGISTICS, INC. 401K PLAN","001","2001-03-01","VENTURE LOGISTICS, INC.",,,"1101 SOUTH HARDING COURT",,"INDIANAPOLIS","IN","46217",,,,,,,,,,,,,,,,,,"352118928","8003334463","541990","VENTURE LOGISTICS, INC.",,"1101 SOUTH HARDING COURT",,"INDIANAPOLIS","IN","46217",,,,,,,"352118928","3173371478",,,,"2011-10-14T07:12:57-0500","ERNEST KREBS",,,,,374,346,11,29,386,1,387,136,4,,"3D2E2F2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014073158P040152480737001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"LESLIE EQUIPMENT COMPANY BENEFIT PLAN","501","2010-01-01","LESLIE EQUIPMENT CO.",,,"105 TENNIS CENTER DRIVE",,"MARIETTA","OH","45750",,,,,,,"105 TENNIS CENTER DRIVE",,"MARIETTA","OH","45750",,,,,,,"550493180","7403735255","441229","LESLIE EQUIPMENT CO.",,"105 TENNIS CENTER DRIVE",,"MARIETTA","OH","45750",,,,,,,"550493180","7403735255",,,,"2011-10-14T07:17:13-0500","TEENA DUNN",,,,,0,211,,,211,,211,,,,,"4A4B","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014073223P030148810833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VADEN HOLDING, INC. 401(K) PROFIT SHARING PLAN","001","1993-07-01","VADEN HOLDING, INC.",,,"P.O. BOX 14217",,"SAVANNAH","GA","31416",,,,,,,,,,,,,,,,,,"581032937","9129259393","441110","VADEN HOLDING, INC.",,"P.O. BOX 14217",,"SAVANNAH","GA","31416",,,,,,,"581032937","9129259393",,,,"2011-10-14T07:31:52-0500","WEST BEAVER",,,,,317,231,1,115,347,0,347,283,6,,"2A2G2J2K3D2F2E3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014073656P030148814225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NYRSTAR CLARKSVILLE INC. SALARIED EMPLOYEES' RETIREMENT PLAN","001","1984-04-30","NYRSTAR CLARKSVILLE INC.",,,"1800 ZINC PLANT ROAD",,"CLARKSVILLE","TN","37040",,,,,,,,,,,,,,,,,,"521056429","9315524200","212200","NYRSTAR CLARKSVILLE INC.",,"1800 ZINC PLANT ROAD",,"CLARKSVILLE","TN","37040",,,,,,,"521056429","9315524200",,,,"2011-10-14T07:36:43-0500","KATHY SPICELAND",,,,,280,75,82,104,261,17,278,,1,,"1A1G3H1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014081410P030691205952001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FIRST FINANCIAL INSURANCE COMPANY EMPLOYEE BENEFITS PLAN","501","1992-02-16","FIRST FINANCIAL INSURANCE COMPANY",,,"238 INTERNATIONAL ROAD",,"BURLINGTON","NC","27215",,,,,,,,,,,,,,,,,,"362694846","3365862500","524150","FIRST FINANCIAL INSURANCE COMPANY",,"238 INTERNATIONAL ROAD",,"BURLINGTON","NC","27215",,,,,,,"362694846","3365862500",,,,"2011-10-13T13:00:23-0500","CAROL HENNRIKUS",,,,,235,231,2,0,233,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013160542P030148357873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLUE CHIP MACHINING, INC. 401(K) PLAN","001","2008-01-01","BLUE CHIP MACHINING",,,"31584 REDFIELD ST",,"NILES","MI","49120",,,,,,,,,,,,,,,,,,"352013121","2696840467","332700","BLUE CHIP MACHINING",,"31584 REDFIELD ST",,"NILES","MI","49120",,,,,,,"352013121","2696840467",,,,"2011-10-13T16:05:00-0500","DONALD KRONEWITTER",,,,,1,0,0,1,1,0,1,1,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013155109P030148347057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEITER'S INC. 401(K) PLAN","001","1998-01-01","BEITER'S INC.",,,"560 MONTGOMERY PIKE",,"S WILLIAMSPRT","PA","17702",,,,,,,,,,,,,,,,,,"232755017","5703262076","442110","BEITER'S INC.",,"560 MONTGOMERY PIKE",,"S WILLIAMSPRT","PA","17702",,,,,,,"232755017","5703262076",,,,"2011-10-13T15:49:29-0500","ROBERT BEITER",,,,,141,132,0,0,132,0,132,114,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013155129P040151978977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TREASURY WINE ESTATES RETIREMENT SAVINGS PLAN","001","1996-01-01","TREASURY WINE ESTATES AMERICAS COMPANY",,,"P O BOX 4500","600 AIRPARK ROAD","NAPA","CA","94558",,,,,,,,,,,,,,,,,,"942227626","7072594500","312130","TREASURY WINE ESTATES AMERICAS COMPANY",,"P O BOX 4500","600 AIRPARK ROAD","NAPA","CA","94558",,,,,,,"942227626","7072594500",,,,"2011-10-13T11:57:14-0500","KATHRYN TIBEREND","2011-10-13T11:57:14-0500","KATHRYN TIBEREND",,,1465,959,2,478,1439,0,1439,1439,10,,"2E2F2G2J2K2R2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013165914P040152040321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PENTAIR, INC. ACTIVE EMPLOYEE WELFARE PLAN","502","1975-01-03","PENTAIR, INC.",,,"5500 WAYZATA BLVD, SUITE 800",,"GOLDEN VALLEY","MN","554161259",,,,,,,,,,,,,,,,,,"410907434","7635451730","551112","PENTAIR, INC.",,"5500 WAYZATA BLVD, SUITE 800",,"GOLDEN VALLEY","MN","554161259",,,,,,,"410907434","7635451730",,,,"2011-10-13T16:58:07-0500","DIANA SOLOMON, DIRECTOR BENEFITS","2011-10-13T16:58:07-0500","MICHAEL G. MEYER, VP TREASURY TAX",,,5875,6291,195,0,6486,,,,,,,"4A4B4D4F4H4I4Q4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013165920P030148402593001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TLC PLUMBING & UTILITY, INC. HEALTH BENEFIT PLAN","501","2005-01-01","TLC PLUMBING & UTILITY, INC.",,,"5000 EDITH BLVD NE",,"ALBUQUERQUE","NM","87107",,,,,,,"5000 EDITH BLVD NE",,"ALBUQUERQUE","NM","87107",,,,,,,"850410487","5059449504","238220","TLC PLUMBING & UTILITY, INC.",,"5000 EDITH BLVD NE",,"ALBUQUERQUE","NM","87107",,,,,,,"850410487","5059449504",,,,"2011-10-13T16:50:06-0500","SCOT THURGOOD",,,,,497,227,,,227,,227,,,,,"4A4D4E",,,,"1",,,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013165923P040152040577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PENTAIR, INC. RETIREE WELFARE BENEFIT PLAN","523","1994-01-01","PENTAIR, INC.",,,"5500 WAYZATA BLVD., SUITE 800",,"GOLDEN VALLEY","MN","554161259",,,,,,,,,,,,,,,,,,"410907434","7635451730","551112","PENTAIR, INC.",,"5500 WAYZATA BLVD., SUITE 800",,"GOLDEN VALLEY","MN","554161259",,,,,,,"410907434","7635451730",,,,"2011-10-13T16:58:07-0500","DIANA SOLOMON, DIRECTOR BENEFITS","2011-10-13T16:58:07-0500","MICHAEL G. MEYER, VP TREASURY TAX",,,2620,,2636,,2636,,,,,,,"4A4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013171614P030021896210001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MOUNTAIN NEWS 401K RETIREMENT PLAN","001","2007-01-01","ALL MEDIA, INC. DBA MOUNTAIN NEWS CORPORATION",,,"50 VASHELL WAY, #400",,"ORINDA","CA","94563",,,,,,,,,,,,,,,,,,"942791918","9252544456","519100","ALL MEDIA, INC. DBA MOUNTAIN NEWS CORPORATION",,"50 VASHELL WAY, #400",,"ORINDA","CA","94563",,,,,,,"942791918","9252544456",,,,"2011-10-13T17:15:50-0500","CHAD DYER","2011-10-13T17:15:50-0500","CHAD DYER",,,10,10,0,0,10,0,10,10,,,"2A2E2G2J2F2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014090426P030148875537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAKER NEWMAN & NOYES LONG TERM DISABILITY PLAN","503","1995-01-01","BAKER NEWMAN & NOYES, LLC",,,"P.O. BOX 507","280 FORE STREET","PORTLAND","ME","041120507",,,,,,,,,,,,,,,,,,"010494526","2078792100","541211","BAKER NEWMAN & NOYES, LLC",,"P.O. BOX 507","280 FORE STREET","PORTLAND","ME","041120507",,,,,,,"010494526","2078792100",,,,"2011-10-14T08:28:10-0500","E. DREW CHENEY","2011-10-14T08:28:10-0500","E. DREW CHENEY",,,177,180,,,180,,,,,,,"4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014090442P030148875681002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROYAL TEN CATE USA INC EMPLOYEE BENEFIT PLAN","501","1990-01-01","ROYAL TEN CATE USA, INC",,,"365 S HOLLAND DR",,"PENDERGRASS","GA","30567",,,,,,,,,,,,,,,,,,"581648983","7066932226","314000","ROYAL TEN CATE USA INC",,"365 S HOLLAND DR",,"PENDERGRASS","GA","30567",,,,,,,"581648983","7066932226",,,,"2011-10-14T07:49:08-0500","DAN TRIPP",,,,,631,565,,,565,,565,,,,,"4Q4E4D4A","1",,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014073951P040152483713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOWN & COUNTRY BANK & TRUST WELFARE PLAN","503","2009-01-01","TOWN & COUNTRY BANK AND TRUST CO.",,,"PO BOX 305",,"BARDSTOWN","KY","40004",,,,,,,,,,,,,,,,,,"610188980","5023376907","522110","TOWN & COUNTRY BANK AND TRUST CO.",,"PO BOX 305",,"BARDSTOWN","KY","40004",,,,,,,"610188980","5023376907",,,,"2011-10-14T07:36:08-0500","LAUREN PILE",,,,,128,128,0,0,128,,,,,,,"4B4D4E4H4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014075249P030024473814001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"IATSE , MPT, A & AC OF THE U.S. AND CANADA LOCAL NO. 46 PENSION PLAN","001","1978-01-01","JOINT BOARD OF ADMINISTRATION IATSE , MPT, A & AC, LOCAL NO. 46",,,"SUITE 202, 211 DONELSON PIKE",,"NASHVILLE","TN","372142932",,,,,,,,,,,,,,,,,,"621081087","6158851058","713900","JOINT BOARD OF ADMINISTRATION IATSE , MPT, A & AC, LOCAL NO. 46",,"SUITE 202, 211 DONELSON PIKE",,"NASHVILLE","TN","372142932",,,,,,,"621081087","6158851058",,,,"2011-10-14T07:52:04-0500","GEORGE FLEMING","2011-10-14T07:52:04-0500","RANDY MCRAE",,,328,99,61,159,319,2,321,,4,79,"1G1B",,"0","0","1","0","0","0","1","0","1","1","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014074812P030021953106001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MIRROR LAKE INN 401(K) PROFIT SHARING PLAN","002","2006-01-01","THE COTTAGE CORPORATION",,,"77 MIRROR LAKE DRIVE",,"LAKE PLACID","NY","12946",,,,,,,,,,,,,,,,,,"141681546","5185232544","721110","THE COTTAGE CORPORATION",,"77 MIRROR LAKE DRIVE",,"LAKE PLACID","NY","12946",,,,,,,"141681546","5185232544",,,,"2011-10-14T07:47:33-0500","EDWIN H. WEIBRECHT, JR.",,,,,205,179,0,18,197,1,198,145,6,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014081456P040152506737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALLIANCE HEALTHCARE INFORMATION LLC 401K PLAN","001","2005-07-01","ALLIANCE HEALTHCARE INFORMATION LLC",,,"SUITE 100, ONE IVYBROOK BOULEVARD",,"IVYLAND","PA","18974",,,,,,,,,,,,,,,,,,"980552463","2153474017","621399","ALLIANCE HEALTHCARE INFORMATION LLC",,"SUITE 100, ONE IVYBROOK BOULEVARD",,"IVYLAND","PA","18974",,,,,,,"980552463","2153474017",,,,"2011-10-14T08:10:37-0500","HOLLY FORRISTALL",,,,,210,226,28,0,254,0,254,118,14,,"2F2G2I2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013162011P040152006177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PATHFINDER BANK EMPLOYEE STOCK OWNERSHIP PLAN","003","1995-01-01","PATHFINDER BANK",,,"214 WEST FIRST STREET",,"OSWEGO","NY","131262547",,,,,,,,,,,,,,,,,,"150408130","3153430057","522120","PATHFINDER BANK",,"214 WEST FIRST STREET",,"OSWEGO","NY","131262547",,,,,,,"150408130","3153430057",,,,"2011-10-13T12:27:05-0500","LAURIE LOCKWOOD","2011-10-13T12:27:05-0500","LAURIE LOCKWOOD",,,117,91,0,25,116,1,117,115,0,,"2I2O3H3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014094707P040050315719001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"VALERO ENERGY CORPORATION LONG TERM CARE PLAN","526","2004-01-01","VALERO ENERGY CORPORATION",,,"P.O. BOX 796000",,"SAN ANTONIO","TX","782696000",,,,,,,"P.O. BOX 796000",,"SAN ANTONIO","TX","782696000",,,,,,,"741828067","2103452000","324110","VALERO ENERGY CORPORATION",,"P.O. BOX 796000",,"SAN ANTONIO","TX","782696000",,,,,,,"741828067","2103452000",,,,"2011-10-14T09:00:05-0500","PAT HAYNES",,,,,658,0,,,0,,0,,,,,"4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014055326P030690874528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GASTROENTEROLOGY ASSOCIATES, P.A. 401(K) PROFIT SHARING PLAN","002","1973-10-01","GASTROENTEROLOGY ASSOCIATES, P.A.",,,"4745 OGLETOWN-STANTON RD","SUITE 134","NEWARK","DE","19713",,,,,,,,,,,,,,,,,,"510119346","3022833300","621111","GASTROENTEROLOGY ASSOCIATES, P.A.",,"4745 OGLETOWN-STANTON RD","SUITE 134","NEWARK","DE","19713",,,,,,,"510119346","3022833300",,,,"2011-10-14T05:53:05-0500","JEAN MARIE TAYLOR",,,,,124,95,0,18,113,0,113,102,10,,"2E2F2G2J2K2T3D3H","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013162041P040152006609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE DINERSTEIN COMPANIES 401K EMPLOYEE SAVINGS PLAN","001","1994-01-01","DMC-MANAGEMENT CO., LTD",,,"3411 RICHMOND AVENUE, SUITE 200",,"HOUSTON","TX","770463412",,,,,,,,,,,,,,,,,,"760364240","8322091201","531210","DMC-MANAGEMENT CO., LTD",,"3411 RICHMOND AVENUE, SUITE 200",,"HOUSTON","TX","770463412",,,,,,,"760364240","8322091201",,,,"2011-10-13T16:16:01-0500","MIKE BROWN",,,,,169,177,0,5,182,0,182,21,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013171410P040022790386001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE RAINMAKER FINANCIAL SERVICES COMPANIES DEFINED BENEFIT PENSION PLAN","001","1998-01-01","THE RAINMAKER FINANCIAL COMPANIES",,,"5743 CORSA AVE #122",,"WESTLAKE VILLAGE","CA","91362",,,,,,,,,,,,,,,,,,"770413794","8188654100","522292","THE RAINMAKER FINANCIAL COMPANIES",,"5743 CORSA AVE #122",,"WESTLAKE VILLAGE","CA","91362",,,,,,,"770413794","8188654100",,,,"2011-10-13T06:13:50-0500","THE RAINMAKER FINANCIAL COMPANIES",,,,,3,2,0,1,3,0,3,,0,,"1A3D",,"1",,"1",,"1",,"1",,"1",,"1",,"1","1","1",,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013164002P040022783954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN INDUSTRIAL MANUFACTURING SERVICES, INC. DB PENSION PLAN","001","1992-07-01","AMERICAN INDUSTRIAL MANUFACTURING SERVICES, INC",,,"41673 CORNING PLACE",,"MURRIETA","CA","92562",,,,,,,,,,,,,,,,,,"330212828","9516983379","333610","AMERICAN INDUSTRIAL MANUFACTURING SERVICES, INC",,"41673 CORNING PLACE",,"MURRIETA","CA","92562",,,,,,,"330212828","9516983379",,,,"2011-10-13T12:46:50-0500","ANITA L. ROSEMIER",,,,,143,90,17,35,142,0,142,,0,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013171652P040152057201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FILTER SPECIALISTS, INC. 401K SAVINGS & PROFIT SHARING PLAN","001","1981-05-31","FILTER SPECIALISTS, INC.",,,"P.O. BOX 735",,"MICHIGAN CITY","IN","46360",,,,,,,"100 ANCHOR ROAD",,"MICHIGAN CITY","IN","46360",,,,,,,"351277186","2198793307","339900","FILTER SPECIALISTS, INC.",,"P.O. BOX 735",,"MICHIGAN CITY","IN","46360",,,,,,,"351277186","2198793307",,,,"2011-10-13T13:28:58-0500","BERNARD FAULKNER","2011-10-13T13:28:58-0500","BERNARD FAULKNER",,,232,190,3,32,225,0,225,166,3,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013171659P040152057233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PROMEDICA HEALTH SYSTEM, INC. RETIREE MEDICAL PLAN","503","1993-01-01","PROMEDICA HEALTH SYSTEM, INC.",,,"1801 RICHARDS ROAD",,"TOLEDO","OH","43607",,,,,,,,,,,,,,,,,,"341517671","4194693618","622000","PROMEDICA HEALTH SYSTEM, INC.",,"1801 RICHARDS ROAD",,"TOLEDO","OH","43607",,,,,,,"341517671","4194693618",,,,"2011-10-13T13:29:29-0500","KATHLEEN HANLEY","2011-10-13T13:29:29-0500","KATHLEEN HANLEY",,,531,0,444,181,625,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014092408P040022879490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REED SMITH LLP ASSOCIATE 401(K) PLAN","004","1969-01-01","REED SMITH LLP",,"SUSAN M. WEBER","20 STANWIX STREET","SUITE 1200","PITTSBURGH","PA","15222",,,,,,,"20 STANWIX STREET","SUITE 1200","PITTSBURGH","PA","15222",,,,,,,"250749630","4122883217","541110","CHIEF HUMAN RESOURCES OFFICER","SUSAN M. WEBER","20 STANWIX STREET","SUITE 1200","PITTSBURGH","PA","15222",,,,,,,"251607360","4122883217",,,,"2011-10-14T09:17:55-0500","SUSAN WEBER",,,,,675,348,0,309,657,0,657,657,0,,"2E2J2G",,,,"1",,,,"1",,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014092411P030691403744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TLC MANAGEMENT, INC. 401(K) PLAN","001","1991-01-01","TLC MANAGEMENT, INC.",,,"1800 N. WABASH AVE., SUITE 300",,"MARION","IN","46952",,,,,,,,,,,,,,,,,,"351765894","7656645400","561110","TLC MANAGEMENT, INC.",,"1800 N. WABASH AVE., SUITE 300",,"MARION","IN","46952",,,,,,,"351765894","7656645400",,,,"2011-10-14T08:38:10-0500","DWIGHT OTT",,,,,1352,1089,451,0,1540,0,1540,880,451,,"2A2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014095607P040152582961001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"DIVERSIFIED MANUFACTURING INC DEFINED BENEFIT PENSION PLAN AND TRUST","004","1990-01-01","DIVERSIFIED MANUFACTURING INC",,"WALTER E KEMPA JR","410 OHIO ST",,"LOCKPORT","NY","140944220",,,,,,,,,,,,,,,,,,"161478631","7164345885","332700","DIVERSIFIED MANUFACTURING INC","WALTER E KEMPA JR","410 OHIO ST",,"LOCKPORT","NY","140944220",,,,,,,"161478631","7164345885",,,,"2011-10-14T09:55:44-0500","WALTER KEMPA",,,,,7,0,0,0,0,0,0,,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111013160013P030148354481005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DLORAH INC. FLEXIBLE 125 PLAN","507","1989-10-01","NATIONAL AMERICAN UNIVERSITY DIVISION OF DLORAH, INC.",,,"5301 S HWY 16 STE 200",,"RAPID CITY","SD","57701",,,,,,,,,,,,,,,,,,"460276203","6057215200","611000","NATIONAL AMERICAN UNIVERSITY DIVISION OF DLORAH, INC.",,"5301 S HWY 16 STE 200",,"RAPID CITY","SD","57701",,,,,,,"460276203","6057215200",,,,"2011-10-13T15:07:44-0500","SAM KERR","2011-10-13T15:07:53-0500","SAM KERR",,,361,427,,,427,,,,,,,"4A4B","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013165210P040683537872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE POST COMPANY 401K PLAN","001","1990-03-01","THE POST COMPANY",,,"POB 1800",,"IDAHO FALLS","ID","834031800",,,,,,,,,,,,,,,,,,"820220642","2085221800","511110","THE POST COMPANY",,"POB 1800",,"IDAHO FALLS","ID","834031800",,,,,,,"820220642","2085221800",,,,"2011-10-13T16:52:09-0500","IVY BERRY",,,,,169,145,0,15,160,0,160,76,0,,"3D2E2J2H2F2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013165259P040152034593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DR. ANGEL RODRIGUEZ SANTIAGO CSP RETIREMENT PLAN","001","2000-01-01","DR. ANGEL RODRIGUEZ SANTIAGO, CSP",,,"PO BOX 364587",,"SAN JUAN","PR","009364587",,,,,,,"PO BOX 364587",,"SAN JUAN","PR","009364587",,,,,,,"660592379","7877713030","621111","DR. ANGEL RODRIGUEZ SANTIAGO, CSP",,"PO BOX 364587",,"SAN JUAN","PR","009364587",,,,,,,"660592379","7877713030",,,,"2011-10-13T16:33:46-0500","ANGEL RODRIGUEZ",,,,,2,2,0,0,2,0,2,2,0,,"2C3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013160157P040683378416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WYANDOTTE NEUROLOGY PC PROFIT SHARING PENSION PLAN","002","1994-08-01","WYANDOTTE NEUROLGY PC",,,"2121 BIDDLE ST STE 101",,"WYANDOTTE","MI","481924064",,,,,,,,,,,,,,,,,,"383191957","7342842600","621111","WYANDOTTE NEUROLGY PC",,"2121 BIDDLE ST STE 101",,"WYANDOTTE","MI","481924064",,,,,,,"383191957","7342842600",,,,"2011-10-13T16:01:57-0500","BHAARATH REDDY",,,,,3,4,0,0,4,0,4,,,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111013160351P030148356641008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GILKER & JONES 401K PROFIT SHARING PLAN","001","1994-10-11","GILKER & JONES PC",,,"9222 N HWY 71",,"MOUNTAINBURG","AR","72946",,,,,,,,,,,,,,,,,,"710737863","4793694294","541110","GILKER & JONES PC",,"9222 N HWY 71",,"MOUNTAINBURG","AR","72946",,,,,,,"710737863","4793694294",,,,"2011-10-13T14:53:31-0500","JOSEPH GILKER",,,,,7,7,,,7,,7,,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012130459P030147421041001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE QUADRIGA ART, INC 401 (K) PLAN","002","1984-04-30","QA DIRECT HOLDINGS LLC",,,"19 STONEY BROOK DRIVE",,"WILTON","NH","03086",,,,,,,,,,,,,,,,,,"264418511","6036546141","323100","QA DIRECT HOLDINGS LLC",,"19 STONEY BROOK DRIVE",,"WILTON","NH","03086",,,,,,,"264418511","6036546141",,,,"2011-10-12T02:04:41-0500","BETTY VAINE",,,,,478,289,2,164,455,3,458,382,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012124351P030021723426001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LASER & DERMATOLOGIC SURGERY CENTER, INC. 401K PROFIT SHARING PLAN","004","2004-01-01","LASER & DERMATOLOGIC SURGERY CENTER, INC.",,,"1001 CHESTERFIELD PARKWAY EAST",,"CHESTERFIELD","MO","63017",,,,,,,,,,,,,,,,,,"431842885","3148783839","621111","LASER & DERMATOLOGIC SURGERY CENTER, INC.",,"1001 CHESTERFIELD PARKWAY EAST",,"CHESTERFIELD","MO","63017",,,,,,,"431842885","3148783839",,,,"2011-10-12T12:43:30-0500","GEORGE HRUZA",,,,,12,15,0,1,16,0,16,14,,,"2E2G2J2K3E",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012134520P040022625090001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SYNOVA, INC. 401(K) PLAN","001","2001-09-01","SYNOVA, INC.",,,"1000 TOWN CENTER, SUITE 700",,"SOUTHFIELD","MI","48075",,,,,,,,,,,,,,,,,,"383456423","2482812500","541600","SYNOVA, INC.",,"1000 TOWN CENTER, SUITE 700",,"SOUTHFIELD","MI","48075",,,,,,,"383456423","2482812500",,,,"2011-10-12T13:45:08-0500","TIM MANNEY","2011-10-12T13:45:08-0500","TIM MANNEY",,,583,328,1,178,507,6,513,370,35,,"2F2G2J2K2T2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012134638P030147455217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOSIERY CORPORATION OF AMERICA MEDICAL PLAN","505","1995-01-01","SCULPTZ, INC",,,"1150 NORTHBROOK DRIVE","SUITE 200","TREVOSE","PA","19053",,,,,,,"1150 NORTHBROOK DRIVE","SUITE 200","TREVOSE","PA","19053",,,,,,,"232819341","2154942900","454110","SCULPTZ, INC",,"1150 NORTHBROOK DRIVE","SUITE 200","TREVOSE","PA","19053",,,,,,,"232819341","2154942900",,,,"2011-10-12T13:45:27-0500","DEIRDRE MISTRI","2011-10-12T13:44:21-0500","MARK SHAPIRO",,,49,41,0,0,41,0,41,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012133910P040679589424010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KENNEDY FARM SERVICES, PRM HEALTH PLAN","510","2005-01-01","KENNEDY FARM SERVICES",,,"P.O.BOX 950",,"GONZALES","CA","93926",,,,,,,,,,,,,,,,,,"770493623","8316750168","111210","KENNEDY FARM SERVICES",,"P.O.BOX 950",,"GONZALES","CA","93926",,,,,,,"770493623","8316750168",,,,"2011-10-11T06:28:41-0500","JAMES STRACHAN",,,,,6,6,,,6,,,,,,,"4A4B4D4E",,,"1",,"1",,"1",,,,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013161045P040004678963001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BREMEN CASTINGS, INC 401(K) PLAN","001","1967-11-27","BREMEN CASTINGS, INC",,,"500 N. BALTIMORE STREET","P.O. BOX 129","BREMEN","IN","46506",,,,,,,,,,,,,,,,,,"350194634","5745462411","331500","BREMEN CASTINGS, INC",,"500 N. BALTIMORE STREET","P.O. BOX 129","BREMEN","IN","46506",,,,,,,"350194634","5745462411",,,,"2011-10-13T12:17:54-0500","CSENOUR","2011-10-13T12:17:54-0500","CSENOUR",,,192,186,0,15,201,0,201,156,3,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012131941P040679525392002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RTN MIDLANTIC GROUP, LLC PROFIT SHARING PLAN","002","2008-08-01","RTN MIDLANTIC GROUP, LLC",,,"1615 MEADOW LANE",,"GLEN MILLS","PA","19342",,,,,,,"1615 MEADOW LANE",,"GLEN MILLS","PA","19342",,,,,,,"232985744","6103619055","423300","RTN MIDLANTIC GROUP, LLC",,"1615 MEADOW LANE",,"GLEN MILLS","PA","19342",,,,,,,"232985744","6103619055",,,,"2011-10-12T06:55:35-0500","DAVID NOLAN",,,,,2,2,,,2,,2,2,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013161105P040683404000001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AUTOFAIR FORD, L.P. 401(K) RETIREMENT SAVINGS PLAN","005","1994-05-01","AUTOFAIR FORD, L.P.",,,"1477 SOUTH WILLOW STREET",,"MANCHESTER","NH","03103",,,,,,,,,,,,,,,,,,"208075622","6036341702","441110","AUTOFAIR FORD, L.P.",,"1477 SOUTH WILLOW STREET",,"MANCHESTER","NH","03103",,,,,,,"208075622","6036341702",,,,"2011-10-13T12:18:27-0500","DAVID HAMEL",,,,,316,231,3,51,285,0,285,137,11,,"3D2E2J3H2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012123615P030021722178001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"MICHAEL C. DONALDSON DEFINED BENEFIT PENSION PLAN","001","1999-01-01","MICHAEL C. DONALDSON",,,"400 S. BEVERLY DR., STE. 400",,"BEVERLY HILLS","CA","90212",,,,,,,,,,,,,,,,,,"954469845","3102778394","541110","MICHAEL C. DONALDSON",,"400 S. BEVERLY DR., STE. 400",,"BEVERLY HILLS","CA","902124123",,,,,,,"954469845","3102778394",,,,"2011-10-12T12:36:06-0500","MICHAEL DONALDSON",,,,,3,0,0,0,0,0,0,,0,,"1A3B1I3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012133445P040151083185001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"WEST COAST ARBORISTS, INC. 401(K) SALARY SAVINGS AND PROFIT SHARING PLAN","001","1990-01-01","WEST COAST ARBORISTS, INC.",,,"2200 E VIA BURTON",,"ANAHEIM","CA","928061221",,,,,,,,,,,,,,,,,,"953250682","7149911900","561730","WEST COAST ARBORISTS, INC.",,"2200 E VIA BURTON",,"ANAHEIM","CA","928061221",,,,,,,"953250682","7149911900",,,,"2011-10-12T13:34:41-0500","ROSE EPPERSON","2011-10-12T13:34:41-0500","ROSE EPPERSON",,,192,168,0,11,179,1,180,168,2,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012124743P030147411409001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"KAI USA, LTD. 401(K) PLAN","001","1989-04-01","KAI USA LTD",,,"18600 SW TETON AVE.",,"TUALATIN","OR","97062",,,,,,,"18600 SW TETON AVE.",,"TUALATIN","OR","97062",,,,,,,"930687500","5036821966","332210","KAI USA LTD",,"18600 SW TETON AVE.",,"TUALATIN","OR","97062",,,,,,,"930687500","5036821966",,,,"2011-10-12T12:47:06-0500","KRIS KOSIK",,,,,120,108,0,10,118,0,118,66,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012125524P040151049489001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"RET. PLAN FOR DES. BARGAINING EE'S OF CRANE CARRIER CO.","002","1984-02-01","CRANE CARRIER COMPANY",,,"1925 N. SHERIDAN RD.",,"TULSA","OK","741153602",,,,,,,,,,,,,,,,,,"730942104","9188361651","336210","CRANE CARRIER COMPANY",,"1925 N. SHERIDAN RD.",,"TULSA","OK","741153602",,,,,,,"730942104","9188361651",,,,"2011-10-12T12:28:20-0500","ROBERT SIMITZ",,,,,386,74,148,115,337,44,381,,0,,"1B1G",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012132753P040022623266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KOFFMAN COMPANIES 401 K SAVINGS PLAN","001","1995-01-01","PUBLIC LOAN CO., INC.",,,"300 PLAZA DR",,"VESTAL","NY","138503647",,,,,,,,,,,,,,,,,,"351693932","6077299331","541600","PUBLIC LOAN CO., INC.",,"300 PLAZA DR",,"VESTAL","NY","138503647",,,,,,,"351693932","6077299331",,,,"2011-10-12T13:26:27-0500","HALINA MINOIA","2011-10-12T13:26:27-0500","HALINA MINOIA",,,135,72,0,63,135,0,135,106,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012130234P040151055377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE WHITE OAK GROUP, INC. 401(K) PLAN","001","2005-10-28","THE WHITE OAK GROUP, INC.",,,"600 GALLERIA PARKWAY","SUITE 1400","ATLANTA","GA","30339",,,,,,,"600 GALLERIA PARKWAY","SUITE 1400","ATLANTA","GA","30339",,,,,,,"571213392","4048759994","525990","THE WHITE OAK GROUP, INC.",,"600 GALLERIA PARKWAY","SUITE 1400","ATLANTA","GA","30339",,,,,,,"571213392","4048759994",,,,"2011-10-12T12:58:52-0500","CHRIS MELTON",,,,,13,10,0,1,11,0,11,7,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012123023P030147394945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OKLAHOMA PHYSICAL MEDICINE AND REHABILITATION SAFE HARBOR","001","2003-01-01","OKLAHOMA PHYSICAL MEDICINE AND REHABILITATION",,,"1621 S EUCALYPTUS AVE STE 204",,"BROKEN ARROW","OK","740125950",,,,,,,,,,,,,,,,,,"731607252","9182527952","621111","OKLAHOMA PHYSICAL MEDICINE AND REHABILITATION",,"1621 S EUCALYPTUS AVE STE 204",,"BROKEN ARROW","OH","740125950",,,,,,,"731607252","9182527952",,,,"2011-10-12T12:29:41-0500","TIMOTHY PETTINGELL",,,,,5,3,1,0,4,0,4,4,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012123025P030147395025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANCCA CORPORATION PREVAILING WAGE PROFIT SHARING PLAN","001","2006-01-01","ANCCA CORPORATION",,,"17401 ARMSTRONG AVENUE",,"IRVINE","CA","926145723",,,,,,,,,,,,,,,,,,"204215986","9495539102","238900","ANCCA CORPORATION",,"17401 ARMSTRONG AVENUE",,"IRVINE","CA","926145723",,,,,,,"204215986","9495539102",,,,"2011-10-12T12:17:43-0500","MICHELLE JAIME",,,,,188,122,0,18,140,0,140,50,0,,"2E2G2T3D",,"1",,"1",,"1",,"1",,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012132308P030147435809001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FLEXCON COMPANY INC PROFIT SHARING PLAN","001","1973-03-31","FLEXCON COMPANY, INC",,,"1 FLEXCON INDUSTRIAL PARK",,"SPENCER","MA","01562",,,,,,,,,,,,,,,,,,"042266945","5088858200","322200","FLEXCON COMPANY, INC",,"1 FLEXCON INDUSTRIAL PARK",,"SPENCER","MA","01562",,,,,,,"042266945","5088858200",,,,"2011-10-12T02:22:32-0500","CHRISTINE LAPALME",,,,,1083,938,6,105,1049,6,1055,1042,1,,"2E2F2G2J2K2S2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012134055P040151087073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MULTI-CHEM GROUP, LLC 401(K) PROFIT SHARING PLAN & TRUST","001","1995-06-01","MULTI-CHEM GROUP, LLC",,,"2905 SOUTHWEST BLVD",,"SAN ANGELO","TX","769040000",,,,,,,,,,,,,,,,,,"752731727","3252236200","325100","MULTI-CHEM GROUP, LLC",,"2905 SOUTHWEST BLVD",,"SAN ANGELO","TX","769040000",,,,,,,"752731727","3252236200",,,,"2011-10-12T13:39:53-0500","JAMES ARCHER",,,,,679,539,0,226,765,3,768,738,11,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013173833P040683692784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE BANK OF AMERICA PENSION PLAN","001","1973-01-01","BANK OF AMERICA CORPORATION",,,"111 WESTMINSTER ST, RI1-102-04-05",,"PROVIDENCE","RI","02903",,,,,,,,,,,,,,,,,,"560906609","8005566044","551111","BANK OF AMERICA CORPORATION CORPORATE BENEFITS COMMITTEE",,"201 N. TRYON STREET, NC1-022-08-10",,"CHARLOTTE","NC","28255",,,,,,,"562215036","8005566044",,,,"2011-10-13T14:12:15-0500","SUSAN E. KELLY","2011-10-13T14:12:15-0500","SUSAN E. KELLY",,,244330,146008,32974,65204,244186,3573,247759,,6184,,"1A1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012133513P030147447105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEDICAL AND DISABILITY BENEFIT PLAN","501","1986-01-01","DANA-FARBER CANCER INSTITUTE, INC.",,,"450 BROOKLINE AVE., BP372",,"BOSTON","MA","02215",,,,,,,"450 BROOKLINE AVE.",,"BOSTON","MA","02215",,,,,,,"042263040","6176323000","622000","DEBORAH HICKS","DANA-FARBER CANCER INSTITUTE, INC.","450 BROOKLINE AVE.",,"BOSTON","MA","02215",,,,,,,"042263040","6176323000",,,,"2011-10-12T13:28:06-0500","DEBORAH HICKS",,,,,5917,6084,49,,6133,,6133,,,,,"4D4A4H4Q","1",,,"1","1",,,"1",,,,,,"1","12","0",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012131648P040151067553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HARRISON INTERESTS, LTD. RETIREMENT PLAN","001","1980-01-01","HARRISON INTERESTS, LTD.",,,"712 MAIN STREET, SUITE 1900",,"HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"742062734","7132285911","211110","BENEFITS COMMITTEE",,"712 MAIN STREET, SUITE 1900",,"HOUSTON","TX","77002",,,,,,,"742195227","7132285911",,,,"2011-10-12T13:16:23-0500","BRENDA STRAUBE",,,,,74,35,23,7,65,7,72,,0,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012124146P030147407793001","2010-01-01","2010-12-31","4","M",,,,,,"1",,,,,"CHEMTURA CORPORATION MASTER RETIREMENT TRUST","002",,"CHEMTURA CORPORATION",,,"199 BENSON ROAD",,"MIDDLEBURY","CT","06749",,,,,,,,,,,,,,,,,,"061148490","8005733070",,"CHEMTURA CORPORATION",,"199 BENSON ROAD",,"MIDDLEBURY","CT","06749",,,,,,,"061148490","8005733070",,,,"2011-10-12T13:41:33-0500","RUTH CUSACK",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012124156P030147407985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"METALS MARKETING INC 401(K) PROFIT SHARING PLAN & TRUST","001","1996-01-01","METALS MARKETING, INC.",,,"1082 GOLDEN OAKS DRIVE",,"HUDSON","WI","54016",,,,,,,,,,,,,,,,,,"411647596","7155310634","423990","METALS MARKETING, INC.",,"1082 GOLDEN OAKS DRIVE",,"HUDSON","WI","54016",,,,,,,"411647596","7155310634","NO",,,"2011-10-12T00:41:54-0500","METALS MARKETING, INC.",,,,,10,4,0,0,4,0,4,3,0,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012124512P030147409777002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"KINETICS NOISE CONTROL, INC. EMPLOYEE INVESTMENT PLAN","001","1990-01-01","KINETICS NOISE CONTROL CO.",,"HOLBROOK & MANTER, CPAS","1111 DUBLIN ROAD",,"COLUMBUS","OH","43215",,,,,,,,,,,,,,,,,,"311288024","6143403400","339900","KINETICS NOISE CONTROL, INC.",,"6300 IRELAN PLACE, P.O. BOX 655",,"DUBLIN","OH","430170655",,,,,,,"311288024","6148890480",,,,"2011-10-10T11:56:17-0500","LARRY RUMSEY",,,,,151,143,0,6,149,1,150,146,,,"2E2G2J2F2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012132907P030021729410001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TIAA-CREF RETIREMENT PLAN","002","1992-01-01","THE GARDEN SCHOOL, INC.",,,"33-16 79TH STREET",,"JACKSON HEIGHTS","NY","113722130",,,,,,,,,,,,,,,,,,"111631783","7183356363","611000","THE GARDEN SCHOOL, INC.",,"33-16 79TH STREET",,"JACKSON HEIGHTS","NY","113722130",,,,,,,"111631783","7183356363",,,,"2011-10-12T13:25:51-0500","RICHARD MAROTTA","2011-10-12T13:25:51-0500","RICHARD MAROTTA",,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012133256P030048889879001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUNTINGTON TOBACCO CO., INC. MONEY PURCHASE PLAN","001","1975-04-01","HUNTINGTON TOBACCO CO., INC.",,,"BOX 470",,"HUNTINGTON","NY","11743",,,,,,,,,,,,,,,,,,"112005218","5166505460","424990","HUNTINGTON TOBACCO CO., INC.",,"BOX 470",,"HUNTINGTON","NY","11743",,,,,,,"112005218","5166505460",,,,"2011-10-12T13:30:15-0500","HOWARD NOVICK","2011-10-12T13:30:15-0500","HOWARD NOVICK",,,2,2,,,2,,2,2,0,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012134506P030147454129004","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"COCHRAN HEAD AND COMPANY EMPLOYEES STOCK OWNERSHIP","002","2004-01-01","COCHRAN HEAD VICK & CO., P.A.",,,"1333 MEADOWLARK LN STE 204",,"KANSAS CITY","KS","66102",,,,,,,,,,,,,,,,,,"481028532","9132874433","541211","COCHRAN HEAD VICK & CO., P.A.",,"1333 MEADOWLARK LN STE 204",,"KANSAS CITY","KS","66102",,,,,,,"481028532","9132874433",,,,"2011-10-12T13:07:02-0500","JERRY DUNN","2011-10-12T13:07:14-0500","JERRY DUNN",,,33,28,0,7,35,0,35,35,1,,"2E2O",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012130628P030147421969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THERAPEUTIC PATHWAYS 401K PLAN","001","2008-01-15","THERAPEUTIC PATHWAYS, INC. DBA THE KENDALL",,,"1115 14TH STREET",,"MODESTO","CA","953541003",,,,,,,,,,,,,,,,,,"770576678","2095722589","611000","THERAPEUTIC PATHWAYS, INC. DBA THE KENDALL",,"1115 14TH STREET",,"MODESTO","CA","953541003",,,,,,,"770576678","2095722589",,,,"2011-10-12T13:04:17-0500","COLEEN SPARKMAN",,,,,169,96,0,11,107,0,107,43,2,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012132420P040151074913001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"JR ENGINEERING, INC. DEFINED CONTRIBUTION PLAN","001","1997-01-01","JR ENGINEERING. INC.",,,"5208 WOOSTER RD, WEST",,"NORTON","OH","44203",,,,,,,"5208 WOOSTER RD, WEST",,"NORTON","OH","44203",,,,,,,"341292078","3308251565","336300","JR ENGINEERING. INC.",,"5208 WOOSTER RD, WEST",,"NORTON","OH","44203",,,,,,,"341292078","3308251565","B AND C CORPORATION","341292078","001","2011-10-12T13:21:32-0500","THOMAS BLASKO",,,,,187,181,0,31,212,0,212,77,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012132033P040004644835002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TRUE TRAC, PRM HEALTH","510","2009-01-01","TRUE TRAC, PRM HEALTH",,,"P.O. BPX 2357",,"SALINAS","CA","93902",,,,,,,,,,,,,,,,,,"263033970","8317511800","111210","TRUE TRAC, PRM HEALTH",,"P.O. BPX 2357",,"SALINAS","CA","93902",,,,,,,"263033970","8317511800",,,,"2011-10-11T10:00:58-0500","JAMES STRACHAN",,,,,1,4,,,4,,,,,,,"4A4B4D4E",,,"1",,"1",,"1",,,,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012130404P040151056161001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SELMAN CHEVROLET'S 401(K) SAVINGS PLAN","001","1986-07-01","SELMAN CHEVROLET COMPANY",,,"1800 EAST CHAPMAN",,"ORANGE","CA","928677704",,,,,,,,,,,,,,,,,,"952218460","7146333521","441110","SELMAN CHEVROLET COMPANY",,"1800 EAST CHAPMAN",,"ORANGE","CA","928677704",,,,,,,"952218460","7146333521",,,,"2011-10-12T11:58:36-0500","DAISY KAN",,,,,132,118,0,12,130,0,130,82,3,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012131002P030685156096001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IPSCO TUBULARS, INC.","501","2008-08-01","IPSCO TUBULARS, INC.",,,"2650 WARRENVILLE ROAD SUITE 700",,"DOWNERS GROVE","IL","60515",,,,,,,"2650 WARRENVILLE ROAD SUITE 700",,"DOWNERS GROVE","IL","60515",,,,,,,"841016860","6308746447","331110","IPSCO TUBULARS, INC.",,"2650 WARRENVILLE ROAD SUITE 700",,"DOWNERS GROVE","IL","60515",,,,,,,"841016860","6308746447",,,,"2011-10-12T12:01:24-0500","SCOTT TAYLOR",,,,,2116,1832,2,0,1834,,1834,,,,,"4A4B4D4E4H4Q","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012133614P040679578912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRED F. SOEPRONO, M.D., INC. DEFINED BENEFIT PENSION PLAN","003","2001-01-01","FRED F. SOEPRONO, M.D., INC.",,,"255 TERRACINA BOULEVARD, SUITE 206",,"REDLANDS","CA","923734870",,,,,,,,,,,,,,,,,,"330542140","9097928600","621111","FRED F. SOEPRONO, M.D., INC.",,"255 TERRACINA BOULEVARD, SUITE 206",,"REDLANDS","CA","923734870",,,,,,,"330542140","9097928600",,,,"2011-10-12T13:31:59-0500","FRED SOEPRONO",,,,,6,7,0,0,7,0,7,,0,,"1A1I",,"1",,"1",,,,"1",,"1",,"1",,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012131828P040151068337001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ALKERMES INC WELFARE BENEFIT PLAN","501","1994-01-01","ALKERMES INC.",,,"852 WINTER STREET",,"WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"232472830","6174940171","541990","ALKERMES INC.",,"852 WINTER STREET",,"WALTHAM","MA","02451",,,,,,,"232472830","6174940171",,,,"2011-10-12T13:17:29-0500","JENNIFER BAPTISTE","2011-10-12T13:17:29-0500","JENNIFER BAPTISTE",,,584,587,9,0,596,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012133321P040151082353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GLENWOOD SPRINGS FORD LM, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1998-01-01","GLENWOOD SPRINGS FORD LM, INC.",,,"55 STORM KING ROAD",,"GLENWOOD SPRINGS","CO","81601",,,,,,,,,,,,,,,,,,"840763474","9709452317","441110","GLENWOOD SPRINGS FORD LM, INC.",,"55 STORM KING ROAD",,"GLENWOOD SPRINGS","CO","81601",,,,,,,"840763474","9709452317",,,,"2011-10-12T13:33:15-0500","RYAN WHITE",,,,,74,33,0,27,60,0,60,60,4,,"2I2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012131458P040151066049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAW COMPANIES GROUP, INC. PENSION PLAN","006","1962-01-01","AMEC E&I HOLDINGS, INC.",,,"1105 LAKEWOOD PARKWAY","SUITE 300","ALPHARETTA","GA","30009",,,,,,,,,,,,,,,,,,"953139094","7703600600","541330","AMEC E&I HOLDINGS, INC.",,"1105 LAKEWOOD PARKWAY","SUITE 300","ALPHARETTA","GA","30009",,,,,,,"953139094","7703600600",,,,"2011-10-12T13:14:36-0500","JAYNE M. DINAN","2011-10-12T13:14:36-0500","JAYNE M. DINAN",,,2074,247,322,1457,2026,47,2073,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012132442P040679539104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MENARD, INC. DENTAL INSURANCE PLAN","502","2000-08-01","MENARD, INC.",,,"PO BOX 599",,"EAU CLAIRE","WI","54702",,,,,,,,,,,,,,,,,,"390989248","7158762222","444110","MENARD, INC.",,"PO BOX 599",,"EAU CLAIRE","WI","54702",,,,,,,"390989248","7158762222",,,,"2011-10-12T13:23:52-0500","JEFF SACIA",,,,,6669,10874,81,0,10955,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013155607P040151982465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SDI RETIRMENT PLAN OF MIXED TRANSFERS","003","1964-06-24","STEEL DYNAMICS, INC",,,"7575 WEST JEFFERSON BLVD.",,"FORT WAYNE","IN","46804",,,,,,,,,,,,,,,,,,"351929476","2604593553","331110","STEEL DYNAMICS, INC",,"7575 WEST JEFFERSON BLVD.",,"FORT WAYNE","IN","46804",,,,,,,"351929476","2604593553",,,,"2011-10-13T12:02:07-0500","RICHARD POINSATTE","2011-10-13T12:02:07-0500","RICHARD POINSATTE",,,21,69,0,33,102,0,102,102,102,,"2A2E2J3H2T",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012124230P040151039185001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"AASTRA RETIREMENT SAVINGS PLAN","001","1990-10-01","AASTRA USA INC.",,,"2811 INTERNET BLVD.",,"FRISCO","TX","75034",,,,,,,"2811 INTERNET BLVD.",,"FRISCO","TX","75034",,,,,,,"042892472","4693653763","334200","AASTRA USA INC.",,"2811 INTERNET BLVD.",,"FRISCO","TX","75034",,,,,,,"042892472","4693653763",,,,"2011-10-12T12:35:21-0500","TAMMY LARGE",,,,,382,190,1,160,351,2,353,346,7,,"2E2F2G2J2K2S2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012124249P030021723106001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"LA JOLLA COUNTRY CLUB 401(K) PLAN","001","2001-02-01","LA JOLLA COUNTRY CLUB, INC.",,,"7301 HIGH AVE",,"LA JOLLA","CA","920375210",,,,,,,,,,,,,,,,,,"950915380","8585511537","713900","LA JOLLA COUNTRY CLUB, INC.",,"7301 HIGH AVE",,"LA JOLLA","CA","920375210",,,,,,,"950915380","8585511537","LA JOLLA COUNTRY CLUB, INC",,,"2011-10-12T12:42:45-0500","DOREEN SCARDINO","2011-10-12T12:42:45-0500","DOREEN SCARDINO",,,136,107,0,14,121,0,121,100,9,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111012133637P030147448129001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"ADAMS STREET PARTNERSHIP FUND 2009 NON-U.S. DEVELOPED MARKETS FUND, L.P.","001",,"ADAMS STREET PARTNERS LLC",,,"ONE NORTH WACKER DRIVE",,"CHICAGO","IL","60606",,,,,,,"ONE NORTH WACKER DRIVE",,"CHICAGO","IL","60606",,,,,,,"263338089","3125537890",,"ADAMS STREET PARTNERS LLC",,"ONE NORTH WACKER DRIVE",,"CHICAGO","IL","60606",,,,,,,"263338089","3125537890",,,,"2011-10-12T13:36:12-0500","DENNIS MINICH",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012125954P040679463648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HARRISBURG HOTEL CORPORATION SECTION 125","504","1997-05-01","HARRISBURG HOTEL CORPORATION",,,"11 NORTH THIRD STREET",,"HARRISBURG","PA","171011702",,,,,,,"11 NORTH THIRD STREET",,"HARRISBURG","PA","171011702",,,,,,,"251580951","7172363399","721110","HARRISBURG HOTEL CORPORATION",,"11 NORTH THIRD STREET",,"HARRISBURG","PA","171011702",,,,,,,"251580951","7172363399",,,,"2011-10-12T12:59:42-0500","ANDREW MCCLEAF",,,,,33,65,,,65,,65,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012130010P040151053953004","2010-01-01","2010-12-31","1",,,"1",,,"1","1",,,,,"ACRA LOCAL 725 DEFINED CONTRIBUTION RETIREMENT PLAN","003","1999-07-01","ACRA LOCAL 725 DEFINED CONTRIBUTIO RETIREMENT TRUST FUND",,,"515 MULBERRY STREET, STE 300",,"MACON","GA","31201",,,,,,,,,,,,,,,,,,"582490173","9127413521","525100","ACRA LOCAL 725 DEFINED CONTRIBUTIO RETIREMENT TRUST FUND",,"515 MULBERRY STREET, STE 300",,"MACON","GA","31201",,,,,,,"582490173","9127413521",,,,"2011-10-12T13:45:35-0500","KEN SCOTT","2011-10-12T13:45:47-0500","WAYNE MASUR",,,1102,746,0,397,1143,0,1143,1143,,70,"2J",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111013160101P030148354785001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WOODCREEK HEALTHCARE 401(K) PLAN","001","2006-01-01","WOODCREEK PEDIATRICS, PLLC",,,"11102 SUNRISE BLVD E","SUITE 103","PUYALLUP","WA","98374",,,,,,,"11102 SUNRISE BLVD E","SUITE 103","PUYALLUP","WA","98374",,,,,,,"911876332","2538488797","621111","WOODCREEK PEDIATRICS, PLLC",,"11102 SUNRISE BLVD E","SUITE 103","PUYALLUP","WA","98374",,,,,,,"911876332","2538488797",,,,"2011-10-13T15:55:02-0500","TIMOTHY TURNER",,,,,133,123,0,12,135,0,135,105,2,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012130139P040679469104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AIR-SERV WELFARE PLAN","501","1999-12-01","AIR-SERV GROUP, LLC",,,"1370 MENDOTA HEIGHTS ROAD",,"MENDOTA HEIGHTS","MN","551201281",,,,,,,,,,,,,,,,,,"411912023","6519944237","423400","AIR-SERV GROUP, LLC",,"1370 MENDOTA HEIGHTS ROAD",,"MENDOTA HEIGHTS","MN","551201281",,,,,,,"411912023","6519944237",,,,"2011-10-12T13:01:26-0500","MARY ELLEN MOE",,,,,323,317,5,,322,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012130404P030147420417021","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHIZUKO HAMADA KEOGH PLAN","001","1985-01-01","CHIZUKO HAMADA",,,"1803 - 4TH STREET",,"BERKELEY","CA","94710",,,,,,,,,,,,,,,,,,"942913067","5108490501","337000","CHIZUKO HAMADA",,"1803 - 4TH STREET",,"BERKELEY","CA","94710",,,,,,,"942913067","5108490501",,,,"2011-10-11T22:35:11-0500","CHIZUKO HAMADA",,,,,2,2,,,2,,2,,,,"3B2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111013161247P030024405878001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"KAISER PERMANENTE CAFETERIA PLAN FOR EMPLOYEES COVERED BY COLLECTIVE BARGAINING AGREEMENT FOR PARTNER UNIONS","543","2008-01-01","KAISER FOUNDATION HEALTH PLAN, INC.",,,"ONE KAISER PLAZA, 20B",,"OAKLAND","CA","94612",,,,,,,,,,,,,,,,,,"941340523","5102715940","621491","KAISER FOUNDATION HEALTH PLAN, INC.",,"ONE KAISER PLAZA, 20B",,"OAKLAND","CA","94612",,,,,,,"941340523","5102715940",,,,"2011-10-11T16:53:50-0500","HARRIET GUBERMAN",,,,,1390,1238,0,0,1238,,1238,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-13","Filed with authorized/valid electronic signature",, "20111012131425P040679508352001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RAKESH MARWAHA, M.D., S.C. DEFINED BENEFIT PLAN","003","2006-01-01","RAKESH MARWAHA, M.D., S.C.",,,"620 GREEN RD.",,"WOODRIDGE","IL","60517",,,,,,,,,,,,,,,,,,"510445763","6305276390","621399","RAKESH MARWAHA, M.D., S.C.",,"620 GREEN RD.",,"WOODRIDGE","IL","60517",,,,,,,"510445763","6305276390",,,,"2011-10-12T10:59:44-0500","RAKESH MARWAHA",,,,,4,4,0,0,4,0,4,,0,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012132558P040151076529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNIVAR USA INC. EMPLOYEE WELFARE BENEFIT PLAN","501","1969-10-01","UNIVAR USA INC.",,,"17425 NE UNION HILL ROAD",,"REDMOND","WA","98052",,,,,,,,,,,,,,,,,,"911347935",,"424600","UNIVAR USA INC.",,"17425 NE UNION HILL ROAD",,"REDMOND","WA","98052",,,,,,,"911347935",,,,,"2011-10-12T13:25:27-0500","MELENIE BLOCH",,,,,3432,3304,88,,3392,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012124959P030021724370001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RECOVERY NETWORK OF PROGRAMS, INC. FIXED ANNUITY RETIREMENT PLAN","001","1972-07-01","RECOVERY NETWORK OF PROGRAMS, INC.",,,"2 TRAP FALLS RD","SUITE 405","SHELTON","CT","06484",,,,,,,,,,,,,,,,,,"060910080","2039291954","624310","RECOVERY NETWORK OF PROGRAMS, INC.",,"2 TRAP FALLS RD","SUITE 405","SHELTON","CT","06484",,,,,,,"060910080","2039291954","REGINAL NETWORK OF PROGRAMS, INC.","060910080","001","2011-10-12T13:49:55-0500","PAUL KELLY",,,,,134,227,0,22,249,3,252,150,0,,"2L2G2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111012125811P040151052369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEELER, INC. 401(K) PLAN","001","1981-08-01","STEELER, INC.",,,"10023 MARTIN LUTHER KING JR. WAY S.",,"SEATTLE","WA","98178",,,,,,,,,,,,,,,,,,"911005310","2067252500","332300","STEELER, INC.",,"10023 MARTIN LUTHER KING JR. WAY S.",,"SEATTLE","WA","98178",,,,,,,"911005310","2067252500",,,,"2011-10-12T12:57:24-0500","MICHAEL DOLLARD",,,,,250,98,0,61,159,0,159,125,21,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-12","Filed with authorized/valid electronic signature",, "20111014104731P040152630625001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SENIOR CARE 401K PLAN","001","1997-07-01","DAYTON SENIOR CARE, LLC",,,"5790 DENLINGER ROAD",,"DAYTON","OH","45426",,,,,,,"5790 DENLINGER ROAD",,"DAYTON","OH","45426",,,,,,,"205347202","4232385736","623000","DAYTON SENIOR CARE, LLC",,"5790 DENLINGER ROAD",,"DAYTON","OH","45426",,,,,,,"205347202","4232385736",,,,"2011-10-14T10:46:10-0500","KAREN MARSHALL",,,,,794,781,0,25,806,1,807,104,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014110413P040022896946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BANK RI 401(K) PLAN","001","1996-05-01","BANK RHODE ISLAND",,,"ONE TURKS HEAD PLACE",,"PROVIDENCE","RI","02903",,,,,,,"ONE TURKS HEAD PLACE",,"PROVIDENCE","RI","02903",,,,,,,"050488784","4014565000","522110","BANK RHODE ISLAND",,"ONE TURKS HEAD PLACE",,"PROVIDENCE","RI","02903",,,,,,,"050488784","4014565000",,,,"2011-10-12T19:51:31-0500","LORI SEARLES",,,,,301,302,0,40,342,0,342,242,0,,"2E2F2G2J2K2T3H2R",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014111512P030148974801022","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DOLLYWOOD FAMILY HEALTHCARE CENTER PLAN","532","2006-01-01","THE DOLLYWOOD COMPANY",,,"2700 DOLLYWOOD PARKS BOULEVARD",,"PIGEON FORGE","TN","34863",,,,,,,,,,,,,,,,,,"621335708","8654289414","713100","THE DOLLYWOOD COMPANY",,"2700 DOLLYWOOD PARKS BOULEVARD",,"PIGEON FORGE","TN","34863",,,,,,,"621335708","8654289414",,,,"2011-10-14T11:13:05-0500","DIANE BITTLE",,,,,1911,2175,,,2175,,,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014105738P040022895474001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GAS TECHNOLOGY INSTITUTE WELFARE BENEFIT PLAN","510","1978-01-01","GAS TECHNOLOGY INSTITUTE",,,"1700 SOUTH MOUNT PROSPECT ROAD",,"DES PLAINES","IL","600181804",,,,,,,,,,,,,,,,,,"362170137","8477680500","541700","GAS TECHNOLOGY INSTITUTE",,"1700 SOUTH MOUNT PROSPECT ROAD",,"DES PLAINES","IL","600181804",,,,,,,"362170137","8477680500",,,,"2011-10-14T05:47:18-0500","MICHAEL A. MOMOT",,,,,339,225,106,0,331,1,332,,,,,"4A4B4D4F4H4L4E","1",,"1","1","1",,"1","1",,,,"1",,"1","4","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014112708P040022901570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KANSAS STATE UNIVERSITY FOUNDATION DEFINED CONTRIBUTION RETIREMENT PLAN","001","1989-10-01","KANSAS STATE UNIVERSITY FOUNDATION",,,"2323 ANDERSON AVENUE, SUITE 500",,"MANHATTAN","KS","665022912",,,,,,,,,,,,,,,,,,"480667209","7855326266","813000","KANSAS STATE UNIVERSITY FOUNDATION",,"2323 ANDERSON AVENUE, SUITE 500",,"MANHATTAN","KS","665022912",,,,,,,"480667209","7855326266",,,,"2011-10-14T11:24:59-0500","ALAN KLUG",,,,,201,122,,83,205,,205,182,0,,"2O2G2F",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014113022P030148986689013","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LAKE SHORE MEDICAL CONSULTANTS, S.C RETIREMENT PLAN AND TRUST","002","1993-01-01","LAKE SHORE MEDICAL CONSULTANTS, S.",,,"2650 N. LAKEVIEW, 2202",,"CHICAGO","IL","60614",,,,,,,,,,,,,,,,,,"363681111","7739755263","541990","LAKE SHORE MEDICAL CONSULTANTS, S.",,"2650 N. LAKEVIEW, 2202",,"CHICAGO","IL","60614",,,,,,,"363681111","7739755263",,,,"2011-10-14T12:20:08-0500","LYNDA LANE, MD",,,,,2,3,0,0,3,0,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014130650P040022921042001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"NEWSMAX MEDIA, INC. GROUP HEALTH PLAN","501","2009-01-01","NEWSMAX MEDIA, INC.",,,"560 VILLAGE BLVD, STE 120",,"WEST PALM BEACH","FL","33409",,,,,,,,,,,,,,,,,,"650855199","5616861165","519100","NEWSMAX MEDIA, INC.",,"560 VILLAGE BLVD, STE 120",,"WEST PALM BEACH","FL","33409",,,,,,,"650855199","5616861165",,,,"2011-10-14T12:58:59-0500","DARRYLE BURNHAM",,,,,119,111,2,0,113,,,,,,,"4A4B4D4E4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014130832P040152769729001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SANTA CRUZ BIOTECHNOLOGY, INC. 401(K) SAVINGS AND PROFIT SHARING PLAN","001","1998-01-01","SANTA CRUZ BIOTECHNOLOGY, INC.",,,"2145 DELAWARE AVE",,"SANTA CRUZ","CA","95060",,,,,,,"2145 DELAWARE AVE",,"SANTA CRUZ","CA","95060",,,,,,,"770289144","8314573800","339900","SANTA CRUZ BIOTECHNOLOGY, INC.",,"2145 DELAWARE AVE",,"SANTA CRUZ","CA","95060",,,,,,,"770289144","8314573800",,,,"2011-10-14T13:05:51-0500","BRENDA STEPHENSON",,,,,357,295,1,99,395,0,395,310,2,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014130834P040152769777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMONWEALTH BANK EMPLOYEE MEDICAL BENEFIT PLAN","502","2000-04-01","COMMONWEALTH BANK & TRUST COMPANY",,,"4350 BROWNSBORO ROAD, SUITE 310",,"LOUISVILLE","KY","40207",,,,,,,,,,,,,,,,,,"610337590","5022592389","522110","COMMONWEALTH BANK & TRUST COMPANY",,"4350 BROWNSBORO ROAD, SUITE 310",,"LOUISVILLE","KY","40207",,,,,,,"610337590","5022592389",,,,"2011-10-14T13:03:58-0500","VICKIE CAREY",,,,,197,195,4,0,199,,,,,,,"4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014101914P040152602929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SIBEAU HANDBAGS, INC. PENSION PLAN AND TRUST","001","1989-02-01","SIBEAU HANDBAGS, INC.",,,"33 EAST 33RD STREET",,"NEW YORK","NY","100165335",,,,,,,,,,,,,,,,,,"132674160","2126860210","315990","SIBEAU HANDBAGS, INC.",,"33 EAST 33RD STREET",,"NEW YORK","NY","100165335",,,,,,,"132674160","2126860210",,,,"2011-10-14T10:16:12-0500","DAVID WEBER",,,,,3,3,0,0,3,,3,,0,,"1A1G3D","4B","1","0","1","0","0","0","1","0","1","0","1","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014104426P030021976370002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"STATEN ISLAND UNIVERSITY HOSPITAL RETIREMENT SAVINGS PLAN","002","1985-12-15","STATEN ISLAND UNIVERSITY HOSPITAL",,,"500 SEAVIEW AVE.",,"STATEN ISLAND","NY","10305",,,,,,,,,,,,,,,,,,"112868878","7182268377","622000","STATEN ISLAND UNIVERSITY HOSPITAL",,"500 SEAVIEW AVE.",,"STATEN ISLAND","NY","10305",,,,,,,"112868878","7182268377",,,,"2011-10-14T11:44:08-0500","DONNA DEKOWSKI",,,,,5122,5979,57,1257,7293,23,7316,4291,0,,"2L2M2F2G2R3H2S2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","8","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014115120P040152690385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STARK & ROTH, INC. WELFARE BENEFIT PLAN","502","2000-01-01","STARK & ROTH, INC",,,"3600 S. LAKE DR.",,"ST. FRANCIS","WI","53235",,,,,,,,,,,,,,,,,,"391766206","4142947000","523900","STARK & ROTH, INC",,"3600 S. LAKE DR.",,"ST. FRANCIS","WI","53235",,,,,,,"391766206","4142947000",,,,"2011-10-14T11:51:07-0500","JEFFREY BUTH",,,,,753,626,0,0,626,,,,,,,"4A4B4D4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014131454P040152774657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NIFCO AMERICA CORPORATION MEDICAL INSURANCE PLAN","502","1995-01-01","NIFCO AMERICA CORPORATION",,"M. ANTHONY PARRETT","8015 DOVE PARKWAY",,"CANAL WINCHESTER","OH","43110",,,,,,,"8015 DOVE PARKWAY",,"CANAL WINCHESTER","OH","43110",,,,,,,"311464402","6148368689","326100","NIFCO AMERICA CORPORATION","M. ANTHONY PARRETT","8015 DOVE PARKWAY",,"CANAL WINCHESTER","OH","43110",,,,,,,"311464402","6148368689",,,,"2011-10-14T13:14:42-0500","M ANTHONY PARRETT",,,,,258,308,,,308,,308,,,,,"4A4B","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014131455P040004708035001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOTION INTERNATIONAL, INC. 401K PLAN","001","1998-01-01","MOTION INTERNATIONAL, INC.",,,"3800 AMERICAN BLVD W STE 425",,"MINNEAPOLIS","MN","554314451",,,,,,,,,,,,,,,,,,"411891908","9527465630","541600","MOTION INTERNATIONAL, INC.",,"3800 AMERICAN BLVD W STE 425",,"MINNEAPOLIS","MN","554314451",,,,,,,"411891908","9527465630",,,,"2011-10-14T13:14:43-0500","GLEN BRYNTESON",,,,,36,19,1,11,31,0,31,31,1,,"2E2G2J2K2T2S3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014100018P030148918353006","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"HABERSHAM OB/GYN ASSOCIATES PC PROFIT SHARING PLAN","001","1998-01-01","HABERSHAM OB/GYN ASSOCIATES INC",,,"P O BOX 638",,"DEMOREST","GA","305350013",,,,,,,,,,,,,,,,,,"582051743","7067543997","621111","HABERSHAM OB/GYN ASSOCIATES INC",,"P O BOX 638",,"DEMOREST","GA","305350013",,,,,,,"582051743","7067543997",,,,"2011-10-14T09:51:18-0500","THOMAS L HATCHETT JR","2011-10-14T09:51:39-0500","THOMAS L HATCHETT JR",,,10,9,0,0,9,0,9,9,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014100438P040152591249006","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"HERITAGE GROUP RETIREMENT SAVINGS PLAN II","001","1978-06-26","HERITAGE ENVIRONMENTAL SERVICES, LLC",,,"5400 WEST 86TH STREET",,"INDIANAPOLIS","IN","46268",,,,,,,,,,,,,,,,,,"352044218","3178726010","488300","THE HERITAGE GROUP RETIREMENT COMMITTEE",,"5400 WEST 86TH STREET",,"INDIANAPOLIS","IN","46268",,,,,,,"351994696","3178726010",,,,"2011-10-14T08:39:37-0500","DAVID FRANZ",,,,,864,786,1,109,896,2,898,816,57,,"2K2J2G2F2E",,,,"1",,,,"1",,"1",,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014101249P030021972338001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHICKEN OUT INC","001","1995-09-01","CHICKEN OUT INC",,,"15952 SHADY GROVE ROAD",,"GAITHERSBURG","MD","20877",,,,,,,,,,,,,,,,,,"521637375","3019210600","722210","CHICKEN OUT INC",,"15952 SHADY GROVE ROAD",,"GAITHERSBURG","MD","20877",,,,,,,"521637375","3019210600",,,,"2011-10-14T09:03:04-0500","TERRI KERN",,,,,135,106,0,7,113,0,113,15,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014103838P040022891458001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRIDE MOBILITY EMPLOYEE STOCK OWNERSHIP RETIREMENT PLAN","003","1998-01-01","PRIDE MOBILITY PRODUCTS CORPORATION",,"SCOTT MEUSER, CHAIRMAN & CEO","182 SUSQUEHANNA AVE",,"EXETER","PA","186432653",,,,,,,,,,,,,,,,,,"232443538","5706555574","339110","PRIDE MOBILITY PRODUCTS CORPORATION","SCOTT MEUSER, CHAIRMAN & CEO","182 SUSQUEHANNA AVE",,"EXETER","PA","186432653",,,,,,,"232443538","5706555574",,,,"2011-10-14T10:38:14-0500","SCOTT MEUSER",,,,,1126,1006,0,41,1047,6,1053,1041,68,,"2O2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014111121P030148972865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MB VENTURES 401(K) PLAN","001","2006-01-01","FLOOR DESIGNS OF NEVADA, LLC",,,"4565 WEST POST ROAD",,"LAS VEGAS","NV","891183926",,,,,,,,,,,,,,,,,,"270124136","7028539337","442110","FLOOR DESIGNS OF NEVADA, LLC",,"4565 WEST POST ROAD",,"LAS VEGAS","NV","891183926",,,,,,,"270124136","7028539337",,,,"2011-10-14T08:36:41-0500","ANDREA GOULD",,,,,451,0,0,12,12,0,12,12,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014100608P040152592545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"USI 401(K) PLAN","001","2000-01-01","U.S. IMAGING, INC.",,,"4411 BLUEBONNET","SUITE 109","STAFFORD","TX","774772912",,,,,,,,,,,,,,,,,,"650683144","7136642800","621498","U.S. IMAGING INC.",,"4411 BLUEBONNET SUITE 109",,"STAFFORD","TX","774772912",,,,,,,"650683144","7136641330",,,,"2011-10-14T09:46:26-0500","ERICCA WASIAK LEE",,,,,232,249,1,13,263,0,263,188,22,,"2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014101258P030021972354001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RIPPE & KINGSTON CO. 401K PLAN","001","1987-11-01","RIPPE & KINGSTON CO.",,,"1077 CELESTIAL STREET",,"CINCINNATI","OH","45202",,,,,,,,,,,,,,,,,,"311192250","5132411375","541211","RIPPE & KINGSTON CO.",,"1077 CELESTIAL STREET",,"CINCINNATI","OH","45202",,,,,,,"311192250","5132411375",,,,"2011-10-14T09:03:21-0500","MARK H. ANDERSON","2011-10-14T09:03:21-0500","RICHARD DAESCHNER",,,128,95,0,31,126,1,127,116,9,,"2E2G2J2K3D2R2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014101326P040152598673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ZIN TECHNOLOGIES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","1991-01-01","ZIN TECHNOLOGIES, INC.",,,"6745 ENGLE ROAD",,"MIDDLEBURG HEIGHTS","OH","44130",,,,,,,,,,,,,,,,,,"341603383","4406252270","541330","ZIN TECHNOLOGIES, INC.",,"6745 ENGLE ROAD",,"MIDDLEBURG HEIGHTS","OH","44130",,,,,,,"341603383","4406252270",,,,"2011-10-14T10:02:02-0500","GARY MYNCHENBERG",,,,,9,9,,,9,,9,9,,,"3D2O",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014104500P040152628113001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"BROCK GRAIN SYSTEMS RETIREMENT SAVINGS PLAN FOR KANSAS CITY HOURLY EMPLOYEES","003","1999-01-01","CTB, INC.",,,"611 N HIGBEE ST",,"MILFORD","IN","465429752",,,,,,,,,,,,,,,,,,"351970753","5746585135","333100","CTB, INC.",,"611 N HIGBEE ST",,"MILFORD","IN","465429752",,,,,,,"351970753","5746585135",,,,"2011-10-14T10:44:52-0500","JEFFREY CRAWFORD","2011-10-14T10:44:52-0500","JEFFREY CRAWFORD",,,126,100,0,9,109,0,109,75,17,,"2E2F2G2J2K2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014111422P040152655969004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WHEELING MACHINE PRODUCTS RETIREMENT SAVINGS PLAN","038","2002-10-01","UNITED STATES STEEL CORPORATION AND AFFILIATED COMPANIES",,,"600 GRANT STREET","SUITE 2643","PITTSBURGH","PA","152192822",,,,,,,"600 GRANT STREET","SUITE 2643","PITTSBURGH","PA","152192822",,,,,,,"251897152","4124334880","332900","USS AND CARNEGIE PENSION FUND",,"600 GRANT STREET, RM 2687",,"PITTSBURGH","PA","152192702",,,,,,,"250851750","4124334880",,,,"2011-10-14T05:06:04-0500","RANDALL L. WYNKOOP","2011-10-14T05:06:04-0500","RANDALL L. WYNKOOP",,,156,107,,34,141,,141,97,1,,"2E2F2G2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014111422P040152655969010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"INDUSTRIAL DESIGN & CONSTRUCTION, INC. 401(K) PROFIT SHARING PLAN","001","1993-11-01","INDUSTRIAL DESIGN & CONSTRUCTION, INC.",,,"14061 HIGHWAY 73",,"PRAIRIEVILLE","LA","70769",,,,,,,,,,,,,,,,,,"721128898","2253431145","236200","INDUSTRIAL DESIGN & CONSTRUCTION, INC.",,"14061 HIGHWAY 73",,"PRAIRIEVILLE","LA","70769",,,,,,,"721128898","2253431145",,,,"2011-10-14T06:17:00-0500","DONALD BARDEN",,,,,252,252,3,18,273,,273,139,16,,"2E2J3F",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014111550P030148975313001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SEARLE-MONSANTO PR EMPLOYEES' RETIREMENT PLAN","008","1976-01-01","PFIZER PHARMACEUTICALS LLC",,"ATTENTION BENEFITS OPERATIONS","100 ROUTE 206 NORTH MS 125",,"PEAPACK","NJ","079770000",,,,,,,,,,,,,,,,,,"660577291","9089011135","325410","RETIREMENT COMMITTEE","PFIZER INC","100 ROUTE 206 NORTH MS 125",,"PEAPACK","NJ","07977",,,,,,,"132785255","9089018000",,,,"2011-10-14T09:25:39-0500","ROXANNE LAGANO","2011-10-14T09:25:39-0500","ROXANNE LAGANO",,,1094,494,126,394,1014,11,1025,,0,,"1A3C",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014114641P040686241632001","2010-09-24","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"TAG TEAM SOLUTIONS, INC. PROFIT SHARING PLAN","001","2010-09-24","TAG TEAM SOLUTIONS, INC.",,,"4541 CAVALLON WAY",,"ACWORTH","GA","30101",,,,,,,,,,,,,,,,,,"273528635","7704261716","812990","TAG TEAM SOLUTIONS, INC.",,"4541 CAVALLON WAY",,"ACWORTH","GA","30101",,,,,,,"273528635","7704261716",,,,"2011-10-14T11:46:28-0500","TIMOTHY GERKE",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014133034P030149096689007","2010-01-01","2010-12-31","2",,,"1",,,"1","1",,,,,"THE TOLEDO NEWSPAPER UNIONS BLADE PENSION PLAN","001","1967-01-01","TOLEDO NEWSPAPER UNIONS BLADE PENSION TRUST",,,"522 ORANGE ST",,"TOLEDO","OH","43604",,,,,,,,,,,,,,,,,,"346074138","4192437521","511110","TOLEDO NEWSPAPER UNIONS BLADE PENSION TRUST",,"522 ORANGE ST",,"TOLEDO","OH","43604",,,,,,,"346074138","4192437521","BLOCK COMMUNICATIONS INC","344374555","001","2011-10-14T13:32:47-0500","DEBORAH L RILEY-JACKSON","2011-10-14T13:26:04-0500","SARA LABUDDA",,,1240,330,501,305,1136,89,1225,,,,"1G1A3H",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014102001P040022887570001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEVEN J. KARVELLAS & CO., INC. RETIREMENT PLAN","003","2001-01-01","STEVEN J. KARVELLAS & CO., INC.",,,"26 JOURNAL SQUARE PLAZA, SUITE 700",,"JERSEY CITY","NJ","07306",,,,,,,,,,,,,,,,,,"222813819","2125870177","523140","STEVEN J. KARVELLAS & CO., INC.",,"26 JOURNAL SQUARE PLAZA, SUITE 700",,"JERSEY CITY","NJ","07306",,,,,,,"222813819","2125870177",,,,"2011-10-14T10:07:44-0500","STEVEN KARVELLAS",,,,,7,4,0,4,8,0,8,7,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014103200P030148945393001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"SENTRYCARE, INC. 401K PLAN","002","2010-01-01","SENTRYCARE, INC.",,,"106A OFFICE PARK DRIVE",,"BRANDON","MS","39042",,,,,,,,,,,,,,,,,,"640830770","6018249010","623000","SENTRYCARE, INC.",,"106A OFFICE PARK DRIVE",,"BRANDON","MS","39042",,,,,,,"640830770","6018249010",,,,"2011-10-14T09:12:09-0500","SONJA WATKINS",,,,,176,188,0,3,191,0,191,60,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014110459P040152647057001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MINDEX TECHNOLOGIES, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","MINDEX TECHNOLOGIES, INC.",,,"3495 WINTON PLACE","BLDG E SUITE 4","ROCHESTER","NY","14623",,,,,,,"3495 WINTON PLACE","BLDG E SUITE 4","ROCHESTER","NY","14623",,,,,,,"161458084","5854243590","541519","MINDEX TECHNOLOGIES, INC.",,"3495 WINTON PLACE","BLDG E SUITE 4","ROCHESTER","NY","14623",,,,,,,"161458084","5854243590",,,,"2011-10-14T11:04:33-0500","ANDREA FIORE",,,,,198,153,0,62,215,0,215,153,18,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014113142P030021983170001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEALTH SERVICES RETIREMENT PLAN","003","1971-01-01","NEW YORK HOSPITAL MEDICAL CENTER OF QUEENS",,"HEALTH SERVICES RETIREMENT PLAN","555 WEST 57TH STREET - SUITE 1532",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"111839362","2129568340","622000","BOARD OF TRUSTEES HEALTH SERVICES RETIREMENT PLAN",,"555 WEST 57TH STREET - SUITE 1532",,"NEW YORK","NY","10019",,,,,,,"516114318","2129568340",,,,"2011-10-14T09:32:39-0500","ANNA GUTSIN",,,,,3522,1507,745,1190,3442,70,3512,0,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014114859P040152688721001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"JCDECAUX NORTH AMERICA 401(K) PROFIT SHARING PLAN","001","1990-01-01","JCDECAUX NORTH AMERICA, INC.",,,"3 PARK AVE FL 33",,"NEW YORK","NY","10016",,,,,,,"3 PARK AVE FL 33",,"NEW YORK","NY","10016",,,,,,,"133385989","2125919122","541800","JCDECAUX NORTH AMERICA, INC.",,"3 PARK AVE FL 33",,"NEW YORK","NY","10016",,,,,,,"133385989","2125919122",,,,"2011-10-14T11:48:13-0500","THOMAS MASON",,,,,175,185,0,67,252,0,252,237,9,,"2E2F2G2J2K2S2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014112831P030021982418001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCDERMOTT LONG-TERM DISABILITY PLAN","510","1995-04-01","MCDERMOTT INVESTMENTS, LLC",,,"757 N ELDRIDGE PKWY",,"HOUSTON","TX","77079",,,,,,,,,,,,,,,,,,"741032246","2818705833","237990","MCDERMOTT INVESTMENTS, LLC",,"757 N ELDRIDGE PKWY",,"HOUSTON","TX","77079",,,,,,,"741032246","2818705833",,,,"2011-10-14T09:30:44-0500","GARY CARLSON",,,,,1833,785,0,0,785,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014113033P040022902642001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","1","FORM 7004","AIG GROUP TRAVEL","513","1987-01-01","ECOWATER SYSTEMS, LLC",,,"1890 WOODLANE DRIVE",,"WOODBURY","MN","55125",,,,,,,,,,,,,,,,,,"363586532","6517395330","326100","ECOWATER SYSTEMS, LLC",,"1890 WOODLANE DRIVE",,"WOODBURY","MN","55125",,,,,,,"363586532","6517395330",,,,"2011-10-14T09:04:50-0500","MARK STRUVE","2011-10-14T09:04:50-0500","MARK STRUVE",,,371,373,0,0,373,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014104113P040025083494001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"SUNTRUST RETIREMENT LARGE CAP GROWTH STOCK FUND","001",,"SUNTRUST BANKS, INC.",,,"200 SOUTH ORANGE AVENUE, SOAB-10","MAIL CODE FL-ORLANDO-2102","ORLANDO","FL","32801",,,,,,,,,,,,,,,,,,"596476538","4072376934",,"SUNTRUST BANKS, INC.",,"200 SOUTH ORANGE AVENUE, SOAB-10","MAIL CODE FL-ORLANDO-2102","ORLANDO","FL","32801",,,,,,,"596476538","4072376934",,,,,,,,"2011-10-14T08:40:53-0500","RACHEL ROQUEL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14",,"Filed with authorized/valid electronic signature", "20111014112145P040152663505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASHLEY FURNITURE HOMESTORE 401(K) PLAN","001","2007-01-01","RBLS, INC. D/B/A ASHLEY FURNITURE HOMESTORE",,,"502 FOUNTAIN PARKWAY",,"GRAND PRAIRIE","TX","75050",,,,,,,"502 FOUNTAIN PARKWAY",,"GRAND PRAIRIE","TX","75050",,,,,,,"752799013","8176336838","442110","WAKE FINANCIAL GROUP, INC.",,"P.O. BOX 536029",,"GRAND PRAIRIE","TX","75053",,,,,,,"751961778","9726416636",,,,"2011-10-13T16:21:44-0500","SHARON WAKE","2011-10-14T10:48:47-0500","SHELLEY LEVITZ",,,514,455,0,23,478,0,478,98,8,,"2F2G2J2K2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014112446P040152666145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TEXAS DESIGN INTERESTS LLC 401(K) PLAN","001","2007-07-01","TEXAS DESIGN INTERESTS, LLC",,,"6001 W WILLIAM CANNON DR STE 203C B",,"AUSTIN","TX","78749",,,,,,,,,,,,,,,,,,"550891512","5123013389","541330","TEXAS DESIGN INTERESTS, LLC",,"6001 W WILLIAM CANNON DR STE 203C B",,"AUSTIN","TX","78749",,,,,,,"550891512","5123013389",,,,"2011-10-14T11:21:57-0500","JEFF SHINDLER",,,,,8,7,0,0,7,0,7,7,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014113419P040686200896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ABINGTON MEMORIAL HOSPITAL HEALTH PLAN","506","1986-01-01","ABINGTON MEMORIAL HOSPITAL",,,"1200 OLD YORK ROAD",,"ABINGTON","PA","19001",,,,,,,"1200 OLD YORK ROAD",,"ABINGTON","PA","19001",,,,,,,"231352152","2154812844","622000","ABINGTON MEMORIAL HOSPITAL",,"1200 OLD YORK ROAD",,"ABINGTON","PA","19001",,,,,,,"231352152","2154812844",,,,"2011-10-14T11:22:41-0500","MICHAEL WALSH",,,,,3874,3870,,,3870,,3870,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014100028P040152587649001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","1","0","0","0",,"KALEMERIS CONSTRUCTION INC. 401K PROFIT SHARING PLAN","001","1966-05-01","KALEMERIS CONSTRUCTION INC.",,,"PO BOX 15422",,"TAMPA","FL","33684",,,,,,,,,,,,,,,,,,"590967791","8139245130","236200","KALEMERIS CONSTRUCTION INC.",,"PO BOX 15422",,"TAMPA","FL","33684",,,,,,,"590967791","8139245130",,,,"2011-10-14T09:41:39-0500","CELESTE VALDEZ",,,,,5,1,,,1,,1,,,,"2E2J2K",,,,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014103517P040152618065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"BANK OF OKLAHOMA FINANCIAL FLEXIBLE BENEFITS PLAN","502","1982-10-01","BANK OF OKLAHOMA, N.A.",,,"PO BOX 2300",,"TULSA","OK","74192",,,,,,,"ONE WILLIAMS CENTER",,"TULSA","OK","74192",,,,,,,"730780382","9185886000","522110","BANK OF OKLAHOMA, N.A.",,"PO BOX 2300",,"TULSA","OK","74192",,,,,,,"730780382","9185886000",,,,"2011-10-14T10:27:03-0500","ANN REINECKE",,,,,4475,4443,136,0,4579,,,,,,,"4A4B4D4E4H","1","0","1","1","1","0","1","1","0","0","0","1","0","1","4","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014111147P040152653873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DUQUESNE LIGHT HOLDINGS, INC. DENTAL BENEFITS PLAN","517","2000-01-01","DUQUESNE LIGHT HOLDINGS, INC. C/O DUQUESNE LIGHT BENEFITS CENTRAL",,,"P.O. BOX 1930, 16-6",,"PITTSBURGH","PA","15230",,,,,,,,,,,,,,,,,,"251598483","4123936039","221100","DUQUESNE LIGHT HOLDINGS, INC. C/O DUQUESNE LIGHT BENEFITS CENTRAL",,"P.O. BOX 1930, 16-6",,"PITTSBURGH","PA","15230",,,,,,,"251598483","4123936039",,,,"2011-10-14T11:03:53-0500","MAUREEN MEEHAN","2011-10-14T11:03:53-0500","MAUREEN MEEHAN",,,399,286,94,3,383,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014113642P040152678065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STERLING BANCORP BANK OWNED LIFE INSURANCE","506","2002-01-02","STERLING BANCORP & SUBSIDIARIES",,,"145 E 40TH STREET",,"NEW YORK","NY","10016",,,,,,,"145 E 40TH STREET",,"NEW YORK","NY","10016",,,,,,,"132565216","2124909836","522110","STERLING BANCORP & SUBSIDIARIES",,"145 E 40TH STREET",,"NEW YORK","NY","10016",,,,,,,"132565216","2124909836",,,,"2011-10-14T11:36:24-0500","ELIZABETH DEBARO",,,,,109,55,0,53,108,,108,,,,,"4B","1",,,,"1",,,,,,,,,"1","9",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014132247P030692170400001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADI MANAGEMENT, INC. 401(K)/PROFIT SHARING PLAN","001","1977-03-01","ADI MANAGEMENT, INC.",,,"172-90 HIGHLAND AVENUE",,"JAMAICA ESTATES","NY","114322869",,,,,,,,,,,,,,,,,,"112353823","7187394262","531110","ADI MANAGEMENT, INC.",,"172-90 HIGHLAND AVENUE",,"JAMAICA ESTATES","NY","114322869",,,,,,,"112353823","7187394262",,,,"2011-10-14T10:23:18-0500","HERBERT DONNER, PRESIDENT",,,,,12,10,0,2,12,0,12,12,0,,"2E2F2H2J",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014101043P040152597089001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"ADIRONDACK TRANSIT LINES UNION EMPLOYEE'S RETIREMENT PLAN","003","1985-01-01","ADIRONDACK TRANSIT LINES, INC.",,,"499 HURLEY AVENUE",,"HURLEY","NY","12443",,,,,,,"499 HURLEY AVENUE",,"HURLEY","NY","12443",,,,,,,"140458760","8453394230","485990","ADIRONDACK TRANSIT LINES, INC.",,"499 HURLEY AVENUE",,"HURLEY","NY","12443",,,,,,,"140458760","8453394230",,,,"2011-10-14T10:07:47-0500","MARK BOUNGARD",,,,,165,148,2,12,162,2,164,112,2,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014104559P040152628561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INDIAN HEAD INDUSTRIES, INC. EMPLOYEES' RETIREMENT PLAN","001","1984-04-08","INDIAN HEAD INDUSTRIES, INC.",,,"8530 CLIFF CAMERON DRIVE",,"CHARLOTTE","NC","282695906",,,,,,,,,,,,,,,,,,"382511555","7045477411","336300","INDIAN HEAD INDUSTRIES, INC.",,"8530 CLIFF CAMERON DRIVE",,"CHARLOTTE","NC","282695906",,,,,,,"382511555","7045477411",,,,"2011-10-14T09:15:43-0500","JEFFREY PARKER","2011-10-14T10:09:53-0500","SUSAN PFEIFFER",,,411,93,136,161,390,21,411,,1,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014105453P030148962497007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARK B KLAPHOLZ MD PROFIT SHARING PLAN","001","1985-01-01","MARK B KLAPHOLZ",,,"444 LAKEVILLE RD",,"LAKE SUCCESS","NY","11042",,,,,,,,,,,,,,,,,,"112726770","5163547660","621111","MARK B KLAPHOLZ",,"444 LAKEVILLE RD",,"LAKE SUCCESS","NY","11042",,,,,,,"112726770","5163547660",,,,"2011-07-17T09:18:48-0500","MARK B KLAPHOLZ",,,,,3,3,,,3,,3,,,,"3B2G2E2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014111615P030024498182001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNITED ORTHOPEDIC GROUP, INC. 401(K) PLAN","001","1993-01-01","UNITED ORTHOPEDIC GROUP, INC.",,,"5796 ARMADA DRIVE SUITE 250",,"CARLSBAD","CA","92008",,,,,,,,,,,,,,,,,,"261224051","7607298585","339110","UNITED ORTHOPEDIC GROUP, INC.",,"5796 ARMADA DRIVE SUITE 250",,"CARLSBAD","CA","92008",,,,,,,"261224051","7607298585",,,,"2011-10-14T09:25:45-0500","DRUE POUNDS",,,,,338,368,0,36,404,0,404,181,57,,"3D2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014113808P030691833136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLANCHARD CONTRACTORS, INC. 401(K) PLAN","001","2003-06-01","BLANCHARD CONTRACTORS, INC.",,,"15444 HWY 3235","P.O. BOX 884","CUT OFF","LA","70345",,,,,,,,,,,,,,,,,,"721448982","9853253941","332900","BLANCHARD CONTRACTORS, INC.",,"15444 HWY 3235","P.O. BOX 884","CUT OFF","LA","70345",,,,,,,"721448982","9853253941",,,,"2011-10-14T09:35:39-0500","JILL LEBLANC",,,,,180,115,0,14,129,0,129,56,61,,"3D2E2J3H2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014114705P040152687521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WICKER SMITH 401(K) PLAN II","002","2001-01-01","WICKER, SMITH, OHARA, MCCOY & FORD, P.A.",,,"2800 PONCE DE LEON BLVD","SUITE 800","CORAL GABLES","FL","33134",,,,,,,,,,,,,,,,,,"650089075","3054483939","531110","WICKER, SMITH, OHARA, MCCOY & FORD, P.A.",,"2800 PONCE DE LEON BLVD","SUITE 800","CORAL GABLES","FL","33134",,,,,,,"650089075","3054483939",,,,"2011-10-14T11:29:42-0500","NICHOLAS CHRISTIN",,,,,218,148,0,50,198,0,198,185,0,,"2A2E2F2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014113557P030148991473001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"KARL KNAUZ MOTORS, INC. GROUP 401K PROFIT SHARING PLAN","001","1999-10-01","KARL KNAUZ MOTORS INC.",,,"409 SKOKIE HIGHWAY",,"LAKE BLUFF","IL","60044",,,,,,,,,,,,,,,,,,"362469176","8472836635","441110","KARL KNAUZ MOTORS INC.",,"409 SKOKIE HIGHWAY",,"LAKE BLUFF","IL","60044",,,,,,,"362469176","8472836635",,,,"2011-10-14T09:34:54-0500","RONALD LOFCHIE","2011-10-14T09:34:54-0500","RONALD LOFCHIE",,,336,241,0,95,336,0,336,331,12,,"2E2F2G2J2K2T2S3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014132932P040152789153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OUTREACH HEALTH SERVICES 401(K) PLAN","002","1993-09-01","HEALTH CARE GROUP MANAGEMENT, INC. DBA OUTREACH HEALTH SERVICES, INC.",,,"2441 FOREST LANE","SUITE 101","GARLAND","TX","75042",,,,,,,"2441 FOREST LANE","SUITE 101","GARLAND","TX","75042",,,,,,,"752346957","9728407362","621610","HEALTH CARE GROUP MANAGEMENT, INC. DBA OUTREACH HEALTH SERVICES, INC.",,"2441 FOREST LANE","SUITE 101","GARLAND","TX","75042",,,,,,,"752346957","9728407362",,,,"2011-10-14T13:20:54-0500","BRIAN PARTIN",,,,,6353,6476,0,66,6542,0,6542,770,0,,"2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014100928P030148926017008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DRYWALL SYSTEMS PLUS, INC. 401(K) PLAN","001","1996-11-01","MURRAY LAND & LEASING, INC.",,,"PO BOX 149",,"MURRAY","KY","42071",,,,,,,"614 NORTH 4TH STREET",,"MURRAY","KY","42071",,,,,,,"610571444","2707535370","238900","MURRAY LAND & LEASING, INC.",,"PO BOX 149",,"MURRAY","KY","42071",,,,,,,"610571444","2707535370",,,,"2011-10-13T11:17:40-0500","GREGG TRAVIS",,,,,115,60,,27,87,,87,86,3,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014101728P030148934817001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","1","0","0","0",,"TISHMAN REALTY AND CONSTRUCTION COMPREHENSIVE MEDICAL PLAN","503","1976-10-01","TISHMAN REALTY AND CONSTRUCTION CO. ,INC",,,"666 FIFTH AVENUE",,"NY","NY","101030256",,,,,,,,,,,,,,,,,,"132874078","2123993656","531310","TISHMAN REALTY AND CONSTRUCTION CO. INC.",,"666 FIFTH AVENUE",,"NY","NY","10103",,,,,,,"132874078","2123993656",,,,"2011-10-14T09:05:28-0500","SONJA GLATZHOFER","2011-10-14T09:05:28-0500","SONJA GLATZHOFER",,,1072,,,,0,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014103548P040022890994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SIGMA-ALDRICH CORPORATION RETIREMENT SECURITY VALUE PLAN","001","1983-12-31","SIGMA-ALDRICH CORPORATION",,,"3050 SPRUCE STREET",,"ST. LOUIS","MO","631032530",,,,,,,,,,,,,,,,,,"431050617","3147715765","325900","SIGMA-ALDRICH CORPORATION",,"3050 SPRUCE STREET",,"ST. LOUIS","MO","631032530",,,,,,,"431050617","3147715765",,,,"2011-10-14T10:33:05-0500","MIKE HOLLENKAMP","2011-10-14T10:33:05-0500","MIKE HOLLENKAMP",,,4989,3691,197,1110,4998,26,5024,,89,,"1C",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014115224P040686263120001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"BWB PROPERTIES 401K PLAN","001","1999-01-01","BWB PROPERTIES",,,"PO BOX 755",,"OREM","UT","84059",,,,,,,"1384 N 450 EAST",,"OREM","UT","84059",,,,,,,"870452419","8012252455","531310","BWB PROPERTIES",,"PO BOX 755",,"OREM","UT","84059",,,,,,,"870452419","8012252455",,,,"2011-10-14T11:51:54-0500","MCKAY MATTHEWS",,,,,13,12,0,0,12,0,12,10,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014115229P040686263728001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARFD, LLP 401K PLAN","005","2002-01-01","AARONSON RAPPAPORT FEINSTEIN & DEUTSCH, LLP",,,"600 THIRD AVENUE",,"NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"133690958","2125936700","541110","AARONSON RAPPAPORT FEINSTEIN & DEUTSCH, LLP",,"600 THIRD AVENUE",,"NEW YORK","NY","10016",,,,,,,"133690958","2125936700",,,,"2011-10-14T11:51:34-0500","MARK FEINSTEIN",,,,,152,134,0,18,152,0,152,107,0,,"2E2H2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","3","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014102805P040152610801001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"CFCU COMMUNITY CREDIT UNION 401(K) PLAN","002","1998-01-01","CFCU COMMUNITY CREDIT UNION",,,"1030 CRAFT RD",,"ITHACA","NY","148501016",,,,,,,,,,,,,,,,,,"150574036","6072573282","522130","CFCU COMMUNITY CREDIT UNION",,"1030 CRAFT RD",,"ITHACA","NY","148501016",,,,,,,"150574036","6072573282",,,,"2011-10-14T10:27:56-0500","JILL CICCONE","2011-10-14T10:27:56-0500","JILL CICCONE",,,163,140,0,7,147,0,147,147,12,,"2E2F2G2J2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014105758P030691708608001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JULIA DYCKMAN ANDRUS MEMORIAL, INC. RETIREMENT INCOME PLAN","003","2007-10-01","JULIA DYCKMAN ANDRUS MEMORIAL, INC.",,,"1156 NORTH BROADWAY",,"YONKERS","NY","10701",,,,,,,,,,,,,,,,,,"132793295","9149653700","611000","JULIA DYCKMAN ANDRUS MEMORIAL, INC.",,"1156 NORTH BROADWAY",,"YONKERS","NY","10701",,,,,,,"132793295","9149653700",,,,"2011-10-14T11:57:23-0500","RAUL E. DEL PILAR",,,,,295,197,5,61,263,0,263,,10,,"1A1C1G1I",,"1",,"1",,,,"1",,"1",,"1","1",,"1","1","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014112645P040022901394001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"KOHLER CO. GROUP INSURANCE PLANS (LIFE & MED) FOR RETIREES (EXCL WI MFG MED)","501","1924-09-01","KOHLER CO. & SUBSIDIARIES","KOHLER CO.",,"444 HIGHLAND DRIVE",,"KOHLER","WI","530441515",,,,,,,"MAIL STOP 007",,"KOHLER","WI","530441515",,,,,,,"390402810","9204574441","339900","KOHLER CO. & SUBSIDIARIES",,"444 HIGHLAND DRIVE",,"KOHLER","WI","530441515",,,,,,,"390402810","9204574441",,,,"2011-10-14T11:26:27-0500","ANNA SLIMMER",,,,,2503,0,2507,,2507,,,,,,,"4A4B","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014112257P040152664577001","2010-02-22","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"ROCK SOLID INVESTMENTS, INC. PROFIT SHARING PLAN","001","2010-02-22","ROCK SOLID INVESTMENTS, INC.",,,"DOYLESTOWN POINTE PLAZA","1661 EASTON ROAD B-4","WARRINGTON","PA","18976",,,,,,,,,,,,,,,,,,"272019867","2152832566","812990","ROCK SOLID INVESTMENTS, INC.",,"DOYLESTOWN POINTE PLAZA","1661 EASTON ROAD B-4","WARRINGTON","PA","18976",,,,,,,"272019867","2152832566",,,,"2011-10-14T11:10:40-0500","MARY MOWRY",,,,,1,1,,,1,,1,1,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014112545P040152667201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FARM BUREAU CAFETERIA PLAN","510","1997-01-01","UNITED FARM FAMILY LIFE INSURANCE COMPANY",,,"PO BOX 1250",,"INDIANAPOLIS","IN","46202",,,,,,,,,,,,,,,,,,"351097117","3176927200","524140","UNITED FARM FAMILY LIFE INSURANCE COMPANY",,"PO BOX 1250",,"INDIANAPOLIS","IN","46202",,,,,,,"351097117","3176927200",,,,"2011-10-14T11:22:43-0500","LYNN JONGLEUX",,,,,291,291,,,291,,291,,,,,"4A4B4D4E4H","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014113452P040022904082001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"BEVERLY HILLS HOTEL 401K PLAN FOR NON-UNION EMPLOYEES","001","1988-01-01","SAJAHTERA, INC. DBA THE BEVERLY HILLS HOTEL",,,"9641 SUNSET BOULEVARD",,"BEVERLY HILLS","CA","90210",,,,,,,"9641 SUNSET BOULEVARD",,"BEVERLY HILLS","CA","90210",,,,,,,"954126938","3102762251","721110","SAJAHTERA, INC. DBA THE BEVERLY HILLS HOTEL",,"9641 SUNSET BOULEVARD",,"BEVERLY HILLS","CA","90210",,,,,,,"954126938","3102762251",,,,"2011-10-14T11:34:30-0500","TODD LABHART",,,,,525,408,2,117,527,1,528,469,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014114510P040686236896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNICATION WORKERS OF AMERICA AFL-CIO LOCAL 1111","002","1959-01-01","ARNOT OGDEN MEDICAL CENTER",,"ARNOT OGDEN MEDICAL CENTER","600 ROE AVE",,"ELMIRA","NY","14905",,,,,,,,,,,,,,,,,,"160743905","6077374142","622000","ARNOT OGDEN MEDICAL CENTER",,"600 ROE AVE",,"ELMIRA","NY","14905",,,,,,,"160743905","6077374142",,,,"2011-10-14T11:44:45-0500","RONALD KINTZ",,,,,571,409,104,55,568,11,579,0,40,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014103314P030148946481021","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"LOCAL 743 SEVERANCE AND RETIREMENT PLAN","001","1972-09-01","TRUSTEES OF LOCAL 743 IB OF T SEVERANCE AND RETIREMENT PLAN",,,"2015 S ARLINGTON HTS RD STE 114",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,,,,,,,,,,,,"366523353","3128298350","484110","TRUSTEES OF LOCAL 743 IB OF T SEVERANCE AND RETIREMENT PLAN",,"2015 S ARLINGTON HTS RD STE 114",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,"366523353","3128298350",,,,"2011-10-14T10:24:20-0500","DONNIE VON MOORE",,,,,6527,1137,434,4940,6511,,6511,6511,,190,"2A",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014103314P030148946481002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THOMAS ENERGY SYSTEMS INC PROFIT SHARING PLAN","001","1992-01-01","THOMAS ENERGY SYSTEMS, INC , PROFIT SHARING PLAN",,,"8525 EAST 46TH STREET",,"TULSA","OK","74145",,,,,,,,,,,,,,,,,,"731305375","9186650031","333310","THOMAS ENERGY SYSTEMS INC PROFIT SHARING PLAN",,"8525 EAST 46TH STREET",,"TULSA","OK","74145",,,,,,,"731305375","9186650031",,,,"2011-10-14T09:54:44-0500","VINCENT A THOMAS",,,,,25,20,,4,24,1,25,25,,,"2K2J2H2F2E",,,"1","1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014105319P040152635873001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TIAA-CREF RETIREMENT PLAN.","003","1992-01-01","THE GARDEN SCHOOL, INC.",,,"33-16 79TH STREET",,"JACKSON HEIGHTS","NY","113722130",,,,,,,,,,,,,,,,,,"111631783","7183356363","611000","THE GARDEN SCHOOL, INC.",,"33-16 79TH STREET",,"JACKSON HEIGHTS","NY","113722130",,,,,,,"111631783","7183356363",,,,"2011-10-14T10:42:21-0500","RICHARD MAROTTA","2011-10-14T10:42:21-0500","RICHARD MAROTTA",,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014114512P030021985298015","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"INSULATORS LOCAL NO. 37 RETIREMENT PLAN","001","1989-04-01","BOARD OF TRUSTEES - INSULATORS LOCAL NO. 37 RETIREMENT PLAN",,,"P.O. BOX 1449",,"GOODLETTSVILLE","TN","370701449",,,,,,,,,,,,,,,,,,"581912950","6158590131","238900","BOARD OF TRUSTEES - INSULATORS LOCAL NO. 37 RETIREMENT PLAN",,"P.O. BOX 1449",,"GOODLETTSVILLE","TN","370701449",,,,,,,"581912950","6158590131",,,,"2011-10-14T12:43:42-0500","DOUG IRWIN",,,,,1063,1049,1,29,1079,0,1079,821,,29,"2C2G",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014132341P040152782817001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MANSFIELD BRASS & ALUMINUM CORPORATION RESTATED PENSION PLAN","001","1967-01-01","MANSFIELD BRASS & ALUMINUM CORP.",,,"636 S. CENTER STREET",,"NEW WASHINGTON","OH","44854",,,,,,,,,,,,,,,,,,"340375801","4194922154","331400","MANSFIELD BRASS & ALUMINUM CORP.",,"636 S. CENTER STREET",,"NEW WASHINGTON","OH","44854",,,,,,,"340375801","4194922154",,,,"2011-10-14T13:11:00-0500","LYNN BIERLY",,,,,168,44,58,63,165,0,165,,3,,"1A1G1I",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","3","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014100726P040004701235001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"GOODRICH CORPORATION WAGE EMPLOYEES PENSION PLAN","005","1986-03-14","GOODRICH CORPORATION",,,"FOUR COLISEUM CTR, 2730 W TYVOLA RD",,"CHARLOTTE","NC","28217",,,,,,,,,,,,,,,,,,"340252680","7044237000","336410","GOODRICH CORPORATION",,"FOUR COLISEUM CTR, 2730 W TYVOLA RD",,"CHARLOTTE","NC","28217",,,,,,,"340252680","7044237000",,,,"2011-10-14T09:05:27-0500","KENNETH LEVINE","2011-10-14T10:07:11-0500","KEVIN HESLIN",,,12675,2081,5365,3861,11307,1125,12432,,17,,"1B1G3F3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014101139P030148929121001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE POTOMAC CENTER, INC. RETIREMENT SAVINGS PLAN","003","1996-07-01","THE POTOMAC CENTER, INC.",,,"ONE BLUE ST",,"ROMNEY","WV","26757",,,,,,,,,,,,,,,,,,"550601422","3048223861","621399","THE POTOMAC CENTER, INC.",,"ONE BLUE ST",,"ROMNEY","WV","26757",,,,,,,"550601422","3048223861",,,,"2011-10-14T11:11:17-0500","PATRICIA PLUMMER",,,,,221,173,0,51,224,0,224,170,,,"2E2G2K2M2T",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014104252P040152626577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAVID R. MOYER, DDS, APC, EMPLOYEES' PROFIT SHARING PLAN AND TRUST","001","1998-01-01","DAVID R. MOYER, DDS, APC",,"GARY MOYER","401 WEST A STREET, SUITE 2550",,"SAN DIEGO","CA","92101",,,,,,,"10920 N. TATUM BLVD, SUITE 103",,"PHOENIX","AZ","85028",,,,,,,"860591613","6025950715","621210","DAVID R. MOYER, DDS, APC","GARY MOYER","401 WEST A STREET, SUITE 2550",,"SAN DIEGO","CA","92101",,,,,,,"860591613","6025950715",,,,"2011-10-14T10:42:25-0500","DAVID MOYER",,,,,3,2,1,,3,,3,3,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014105455P040152637361001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ENVISORS, LLC 401(K) PLAN","001","2000-07-01","ENVISORS, LLC",,,"2105 DUNDEE ROAD","PO BOX 9309","WINTER HAVEN","FL","33883",,,,,,,,,,,,,,,,,,"860008736","8633241112","541330","ENVISORS, LLC",,"2105 DUNDEE ROAD","PO BOX 9309","WINTER HAVEN","FL","33883",,,,,,,"860008736","8633241112",,,,"2011-10-14T10:53:52-0500","BETH EVANS",,,,,1,18,0,8,26,0,26,26,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014113735P030148992177001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"KAGTIG, INC. PROFIT SHARING PLAN","001","1988-01-14","KAGTIG, INC.",,,"315 SOUTH BEVERLY DRIVE","SUITE 415","BEVERLY HILLS","CA","90212",,,,,,,,,,,,,,,,,,"954142821","3102785060","541990","KAGTIG, INC.",,"315 SOUTH BEVERLY DRIVE","SUITE 415","BEVERLY HILLS","CA","90212",,,,,,,"954142821","3102785060",,,,"2011-10-14T12:37:21-0500","MICHAEL A. GRAYSON",,,,,2,2,0,0,2,0,2,2,0,,"2E2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014112922P040152669505001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","1","0","0",,"KIEF INDUSTRIES INC 401K PROFIT SHARING PLAN","001","1988-01-01","KIEF INDUSTRIES INC",,,"PO BOX 140","331 JUNE AVE","BLANDON","PA","195100140",,,,,,,"PO BOX 140","331 JUNE AVE","BLANDON","PA","195100140",,,,,,,"232244314","6109262126","331500","KIEF INDUSTRIES INC",,"PO BOX 140","331 JUNE AVE","BLANDON","PA","195100140",,,,,,,"232244314","6109262126",,,,"2011-10-14T11:28:12-0500","RONALD BOKOVOY",,,,,38,17,0,19,36,2,38,36,1,,"2E3E",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014133029P040152790225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELITE INSULATION SAFE HARBOR 401(K) PLAN","001","2008-07-01","ELITE INSULATION",,,"105 HARTZ BOULEVARD",,"BROADWAY","VA","22815",,,,,,,,,,,,,,,,,,"208953585","5408961311","238100","ELITE INSULATION",,"105 HARTZ BOULEVARD",,"BROADWAY","VA","22815",,,,,,,"208953585","5408961311",,,,"2011-10-14T13:29:54-0500","CHRISTOPHER WELLS",,,,,4,4,0,1,5,0,5,5,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014133156P030149097489003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GIANT EAGLE, INC. EMPLOYEE SAVINGS PLAN","004","1986-07-01","GIANT EAGLE, INC",,,"701 ALPHA DRIVE",,"PITTSBURGH","PA","15238",,,,,,,,,,,,,,,,,,"250698270","4129636200","445110","GIANT EAGLE, INC",,"701 ALPHA DRIVE",,"PITTSBURGH","PA","15238",,,,,,,"250698270","4129636200",,,,"2011-10-10T03:48:28-0500","MARK WEINBRENNER",,,,,10904,11701,,352,12053,1,12054,4589,,,"2F2G2J2K",,,,"1",,,,"1",,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014133156P030149097489002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GIANT EAGLE, INC. INCOME SECURITY PLAN","002","1958-12-31","GIANT EAGLE, INC.",,,"101 KAPPA DRIVE",,"PITTSBURGH","PA","15238",,,,,,,"701 ALPHA DRIVE",,"PITTSBURGH","PA","15238",,,,,,,"250698270","4129636200","445110","GIANT EAGLE, INC.",,"101 KAPPA DRIVE",,"PITTSBURGH","PA","15238",,,,,,,"250698270","4129636200",,,,"2011-10-10T02:59:23-0500","MARK WEINBRENNER",,,,,8938,7629,314,1220,9163,59,9222,,563,,"1A1C1G",,"1",,"1",,"1",,"1",,"1",,"1","1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014104945P040152633073001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"SOUTH CAROLINA MEDICAL PLAN","596","2009-01-01","HBD INDUSTRIES, INC.",,,"5200 UPPER METRO PLACE","SUITE 110","DUBLIN","OH","43017",,,,,,,"5200 UPPER METRO PLACE","SUITE 110","DUBLIN","OH","43017",,,,,,,"251555749","6145267000","326200","HBD INDUSTRIES, INC.",,"5200 UPPER METRO PLACE","SUITE 110","DUBLIN","OH","43017",,,,,,,"251555749","6145267000",,,,"2011-09-29T13:31:31-0500","DAVID MILLER","2011-10-14T10:48:42-0500","MARK DYLL",,,80,0,0,0,0,0,0,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014105246P030021978066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASMO EMPLOYEES' SAVINGS AND RETIREMENT PLAN","001","2001-07-01","ASMO NORTH AMERICA, LLC.",,,"470 CRAWFORD ROAD",,"STATESVILLE","NC","286258545",,,,,,,,,,,,,,,,,,"562121229","7048786663","336300","ASMO NORTH AMERICA, LLC.",,"470 CRAWFORD ROAD",,"STATESVILLE","NC","286258545",,,,,,,"562121229","7048786663",,,,"2011-10-14T09:21:23-0500","BRENDA ELLIOTT","2011-10-14T09:21:23-0500","BRENDA ELLIOTT",,,1196,899,0,301,1200,0,1200,1189,20,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014115630P040686278368017","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"ALL ANIMALS EXOTIC OR SMALL","001","1993-01-01","THOMAS E VAN CISE",,,"1560 HAMNER AVE",,"NORCO","CA","92860",,,,,,,"1560 HAMNER AVE",,"NORCO","CA","92860",,,,,,,"953551783","9517371242","541940","THOMAS E VAN CISE",,"1560 HAMNER AVE",,"NORCO","CA","92860",,,,,,,"953551783","9517371242",,,,"2011-10-14T11:40:58-0500","MICHELLE SKOK",,,,,2,1,,,1,1,2,2,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014103057P030021974514001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"QUORUM FEDERAL CREDIT UNION HEALTH AND WELFARE PLAN","501","2006-01-01","QUORUM FEDERAL CREDIT UNION",,,"2 MANHATTANVILLE RD STE 401",,"PURCHASE","NY","105772118",,,,,,,,,,,,,,,,,,"131517541","9146413700","522130","QUORUM FEDERAL CREDIT UNION",,"2 MANHATTANVILLE RD STE 401",,"PURCHASE","NY","105772118",,,,,,,"131517541","9146413700",,,,"2011-10-14T09:11:37-0500","ANNE COLUCCI","2011-10-14T09:11:37-0500","GLENN SHUSTER",,,103,126,,,126,,,,,,,"4A4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014112236P040152664225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAGNUM FOODS 401(K) PLAN","001","1993-01-01","MAGNUM FOODS, INC.",,,"7205 N. ROBINSON",,"OKLAHOMA CITY","OK","73116",,,,,,,,,,,,,,,,,,"311080067","4057673313","722210","MAGNUM FOODS, INC.",,"7205 N. ROBINSON",,"OKLAHOMA CITY","OK","73116",,,,,,,"311080067","4057673313",,,,"2011-10-13T10:03:50-0500","TERESA COFFMAN","2011-10-14T11:20:52-0500","STEVE PRICE",,,164,123,0,20,143,0,143,47,4,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014114050P040152681793001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"SHIRE PHARMACEUTICALS INC. 401(K) SAVINGS PLAN","001","1996-06-01","SHIRE PHARMACEUTICALS INC.",,,"725 CHESTERBROOK BLVD",,"WAYNE","PA","19087",,,,,,,"725 CHESTERBROOK BLVD",,"WAYNE","PA","19087",,,,,,,"222429994","4845958800","424210","SHIRE PHARMACEUTICALS INC.",,"725 CHESTERBROOK BLVD",,"WAYNE","PA","19087",,,,,,,"222429994","4845958800",,,,"2011-10-14T11:31:08-0500","ELLEN ROSENBERG",,,,,3586,2993,3,802,3798,6,3804,3718,0,,"2E2F2G2J2K2S2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014114751P040004704787001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VORNADO REALTY TRUST SEVERANCE PLAN","510","2005-01-01","VORNADO REALTY TRUST",,,"210 ROUTE 4 EAST",,"PARAMUS","NJ","07652",,,,,,,"210 ROUTE 4 EAST",,"PARAMUS","NJ","07652",,,,,,,"221657560","2015871000","531390","VORNADO REALTY TRUST",,"210 ROUTE 4 EAST",,"PARAMUS","NJ","07652",,,,,,,"221657560","2015871000",,,,"2011-10-14T09:40:23-0500","STEVEN SANTORA",,,,,1376,1302,,0,1302,,1302,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014131830P030021996754001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"CROUNSE CORPORATION MARINE & MAINTENANCE EMPLOYEES' PENSION PLAN","002","1958-11-16","CROUNSE CORPORATION",,,"PO BOX 360",,"PADUCAH","KY","42002",,,,,,,,,,,,,,,,,,"610426923","2704449611","483000","CROUNSE CORPORATION",,"PO BOX 360",,"PADUCAH","KY","42002",,,,,,,"610426923","2704449611",,,,"2011-10-14T10:20:59-0500","SANDRA C.HOLT","2011-10-14T10:20:59-0500","SANDRA C.HOLT",,,472,288,92,78,458,22,480,,7,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014104956P040022893842001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"AVATECH SOLUTIONS, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","AVATECH SOLUTIONS, INC",,,"10715 RED RUN BLVD, SUITE 101",,"OWINGS MILLS","MD","21117",,,,,,,,,,,,,,,,,,"522023997","4105818088","541519","AVATECH SOLUTIONS, INC",,"10715 RED RUN BLVD, SUITE 101",,"OWINGS MILLS","MD","21117",,,,,,,"522023997","4105818088",,,,"2011-10-14T10:49:53-0500","LAWRENCE RYCHLAK",,,,,181,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014110051P030024496662001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"UNION HOSPITAL OF CECIL COUNTY, INC. RETIREMENT PLAN","003","1990-06-30","UNION HOSPITAL OF CECIL COUNTY, INC",,,"106 BOW STREET",,"ELKTON","MD","219215544",,,,,,,,,,,,,,,,,,"520607945","4106203715","622000","UNION HOSPITAL OF CECIL COUNTY, INC",,"106 BOW STREET",,"ELKTON","MD","219215544",,,,,,,"520607945","4106203715",,,,"2011-10-14T12:00:32-0500","MICHELLE TWUM-DANSO",,,,,255,187,0,56,243,0,243,243,0,,"2C2F2G3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014105932P040050347015001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"SLOSBURG COMPANY GROUP LTD PLAN","503","2009-05-01","SLOSBURG COMPANY",,"PAM COVEY","10040 REGENCY CIRCLE #200",,"OMAHA","NE","68114",,,,,,,"10040 REGENCY CIRCLE #200",,"OMAHA","NE","68114",,,,,,,"470721027","4023905142","531310","SLOSBURG COMPANY","PAM COVEY","10040 REGENCY CIRCLE #200",,"OMAHA","NE","68114",,,,,,,"470721027","4023905142",,,,"2011-10-14T10:54:29-0500","PAM COVEY",,,,,102,105,,,105,,105,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014132603P030149093521009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GHD INC. 401(K) EMPLOYEES' SAVINGS PLAN","002","1994-01-01","GHD INC.",,,"ONE REMINGTON PARK DRIVE",,"CAZENOVIA","NY","13035",,,,,,,,,,,,,,,,,,"980425935","3156558161","541330","GHD INC.",,"ONE REMINGTON PARK DRIVE",,"CAZENOVIA","NY","13035",,,,,,,"980425935","3156558161",,,,"2011-10-15T05:50:38-0500","MICHELLE L. BENNETT","2011-10-15T05:50:38-0500","MICHELLE L. BENNETT",,,423,309,0,115,424,0,424,424,,,"2E2F2G2J2K3H",,"1",,"1",,"1",,"1",,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014101215P030691555648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WOODSBORO BANK ESOP","001","2000-01-01","WOODSBORO BANK",,,"P. O. BOX 387","5 NORTH MAIN STREET","WOODSBORO","MD","21798",,,,,,,,,,,,,,,,,,"520535830","3018984000","522110","WOODSBORO BANK",,"P. O. BOX 387","5 NORTH MAIN STREET","WOODSBORO","MD","21798",,,,,,,"520535830","3018984000",,,,"2011-10-14T09:03:04-0500","DALE T. SUMMERS","2011-10-14T09:03:04-0500","DALE T. SUMMERS",,,91,67,0,5,72,0,72,72,1,,"2E2O3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014101223P030021972306001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STRATA PRODUCTS WORLDWIDE 401(K) RETIREMENT PLAN","001","1992-10-01","STRATA PRODUCTS WORLDWIDE LLC",,,"8995 ROSWELL RD STE 200",,"SANDY SPRINGS","GA","303501885",,,,,,,,,,,,,,,,,,"261736531","7703212504","551112","STRATA PRODUCTS WORLDWIDE LLC",,"8995 ROSWELL RD STE 200",,"SANDY SPRINGS","GA","303501885",,,,,,,"261736531","7703212504",,,,"2011-10-14T09:02:55-0500","PETER IRBY","2011-10-14T09:02:55-0500","PETER IRBY",,,138,84,0,9,93,0,93,50,0,,"3D2E2G2J2K3H2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014105024P040022893890001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"LIBBEY INC. HOURLY RETIREMENT PLAN","004","1993-06-24","LIBBEY INC.",,,"300 MADISON AVENUE","P.O. BOX 10060","TOLEDO","OH","436990060",,,,,,,"PATRICIA S. HANNA","300 MADISON AVE.","TOLEDO","OH","436990060",,,,,,,"341559357","4193252100","327210","LIBBEY INC. EMPLOYEE BENEFITS COMMITTEE","300 MADISON AVENUE","P. O. BOX 10060",,"TOLEDO","OH","436990060",,,,,,,"341559357","4193252100",,,,"2011-10-14T06:33:55-0500","TIMOTHY PAIGE","2011-10-14T10:33:23-0500","SUSAN KOVACH",,,3399,1573,1103,557,3233,114,3347,,55,,"1H",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014103329P040152615905001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RAVAGO AMERICAS 401 (K) SAVINGS AND PROFIT SHARING","003","1997-01-01","RAVAGO SHARED SERVICES, LLC.",,,"1900 SUMMIT TOWER BLVD","SUITE 900","ORLANDO","FL","32810",,,,,,,"1900 SUMMIT TOWER BLVD","SUITE 900","ORLANDO","FL","32810",,,,,,,"841652221","4078759595","424700","RAVAGO SHARED SERVICES, LLC.",,"1900 SUMMIT TOWER BLVD","SUITE 900","ORLANDO","FL","32810",,,,,,,"841652221","4078759595","RAVAGO AMERICAS LLC","841652221","003","2011-10-14T10:33:06-0500","DONNA COMEY",,,,,773,678,0,109,787,2,789,535,0,,"2E2F2G2J2K2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014111359P030021980498001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PFIZER CONSOLIDATED PENSION PLAN","001","1943-01-01","PFIZER INC",,"ATTENTION BENEFITS OPERATIONS","100 ROUTE 206 NORTH","MAILSTOP 125","PEAPACK","NJ","079770000",,,,,,,,,,,,,,,,,,"135315170","9089011135","325410","THE RETIREMENT COMMITTEE","PFIZER INC","100 ROUTE 206 NORTH",,"PEAPACK","NJ","07977",,,,,,,"132875255","9089018000",,,,"2011-10-14T09:24:46-0500","ROXANNE LAGANO","2011-10-14T09:24:46-0500","ROXANNE LAGANO",,,87677,34300,34801,65527,134628,9064,143692,,444,,"1A1G3F",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014111512P030148974801020","2010-04-01","2010-12-31","2",,,,,"1",,,,,,,"MARY'S WELL HOUSE - SILVER DOLLAR CITY ATTRACTIONS EMPLOYEES' HEALTH CENTER","512","2007-04-01","HERSCHEND FAMILY ENTERTAINMENT CORPORATION",,,"2800 WEST 76 COUNTRY BOULEVARD",,"BRANSON","MO","65616",,,,,,,,,,,,,,,,,,"440663043","4173367084","713100","HERSCHEND FAMILY ENTERTAINMENT CORPORATION",,"2800 WEST 76 COUNTRY BOULEVARD",,"BRANSON","MO","65616",,,,,,,"440663043","4173367084",,,,"2011-10-14T11:12:24-0500","DIANE BITTLE",,,,,1821,1788,39,,1827,,,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014114152P040152682641001","2010-01-01","2010-12-31","2",,"0","0","1","0","1","1","0","0","0",,"ECOWATER SYSTEMS HOURLY RETIREMENT PLAN","002","1985-04-01","ECOWATER SYSTEMS LLC",,,"PO BOX 64420",,"SAINT PAUL","MN","551640420",,,,,,,,,,,,,,,,,,"363586532","6517395330","326100","MARMON RETIREMENT ADMINISTRATIVE COMMITTEE",,"181 W MADISON STREET, 26TH FLOOR",,"CHICAGO","IL","60602",,,,,,,"363257463","3123729500",,,,"2011-10-14T11:21:11-0500","MARK STRUVE",,,,,201,0,0,0,0,0,0,0,2,,"2A2E2F2J3H2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014114155P030148996225001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GENTLE GIANT MOVING CO., INC. 401K PROFIT SHARING PLAN","001","1993-06-01","GENTLE GIANT MOVING COMPANY, INC.",,,"29 HARDING ST",,"SOMERVILLE","MA","02143",,,,,,,,,,,,,,,,,,"042855927","6176613333","484110","GENTLE GIANT MOVING COMPANY, INC.",,"29 HARDING ST",,"SOMERVILLE","MA","02143",,,,,,,"042855927","6176613333",,,,"2011-10-14T12:41:15-0500","ADRIAN FARRELL",,,,,482,453,,29,482,0,482,105,0,,"2E2F2G2J3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014115434P040152694337006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SHELDON INVESTMENT COMPANY PROFIT SHARING PLAN AND TRUST","001","1989-01-01","SHELDON INVESTMENT COMPANY",,,"21700 NORTHWESTERN HWY, #854",,"SOUTHFIELD","MI","48075",,,,,,,,,,,,,,,,,,"382843130","2485597220","531390","SHELDON INVESTMENT COMPANY",,"21700 NORTHWESTERN HWY, #854",,"SOUTHFIELD","MI","48075",,,,,,,"382843130","2485597220",,,,"2011-10-14T06:55:29-0500","SHELDON SANDWEISS",,,,,2,2,,,2,,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014115630P040686278368015","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"LOCAL 888 HEALTH FUND","501","1958-04-10","BOARD OF TRUSTEES LOCAL 888 HEALTH FUND",,,"160 EAST UNION AVENUE",,"EAST RUTHERFORD","NJ","07073",,,,,,,,,,,,,,,,,,"131564856","9146688881","813930","BOARD OF TRUSTEES LOCAL 888 HEALTH FUND",,"160 EAST UNION AVENUE",,"EAST RUTHERFORD","NJ","07073",,,,,,,"131564856","9146688881","SAME",,,"2011-10-14T11:50:26-0500","JEAN - JOSEPH BRUNY",,,,,3759,3967,,,3967,,3967,,,59,,"4L4F4E4D4B4A","1",,"1",,"1",,"1",,,,,"1",,"1","13","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014133133P040152791249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEE GROUP LIFE","503","1973-01-01","BLUE CROSS AND BLUE SHIELD OF KANSAS, INC.",,,"1133 SW TOPEKA BLVD",,"TOPEKA","KS","666290001",,,,,,,,,,,,,,,,,,"480952857","7852917205","524140","BLUE CROSS AND BLUE SHIELD OF KANSAS, INC.",,"1133 SW TOPEKA BLVD",,"TOPEKA","KS","666290001",,,,,,,"480952857","7852917205",,,,"2011-10-14T13:31:16-0500","MATTHEW D. ALL",,,,,1966,1416,553,0,1969,,,,,,,"4B","0","0","0","1","0","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014130313P030149068289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WITHERS BROADCASTING COMPANIES 401K PLAN","001","1995-01-01","WITHERS BROADCASTING COMPANIES",,,"3501 BROADWAY",,"MT. VERNON","IL","62864",,,,,,,,,,,,,,,,,,"431309324","6182423500","515100","WITHERS BROADCASTING COMPANIES",,"3501 BROADWAY",,"MT. VERNON","IL","62864",,,,,,,"431309324","6182423500",,,,"2011-10-14T10:13:23-0500","SHEILA JOLLY-SCRIVNER","2011-10-14T10:13:23-0500","W. RUSSELL WITHERS JR.",,,240,202,0,21,223,3,226,67,0,,"2E2F2G2J2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014131049P030149077585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"403(B) SAVINGS PLAN","002","2001-01-01","MARTHA JEFFERSON HOSPITAL",,,"500 MARTHA JEFFERSON DRIVE",,"CHARLOTTESVILLE","VA","22911",,,,,,,"SAME",,"CHARLOTTESVILLE","VA","22911",,,,,,,"540261840","4346547000","622000","MARTHA JEFFERSON HOSPITAL",,"500 MARTHA JEFFERSON DRIVE",,"CHARLOTTESVILLE","VA","22911",,,,,,,"540261840","4346547000",,,,"2011-10-14T10:17:01-0500","SUSAN CABELL MAINS",,,,,1729,1546,0,227,1773,0,1773,1129,0,,"2F2G2M2R2S2T3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","3","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014100810P040685891520001","2011-01-01","2011-02-28","2",,"0","0","0","1","0","1","0","0","0",,"HEALTHCARE UNIFORM COMPANY, INC MEDICAL AND DENTAL BENEFIT PLAN","501","2005-01-01","HEALTHCARE UNIFORM COMPANY, INC",,,"2132 KRATKY ROAD",,"SAINT LOUIS","MO","63114",,,,,,,,,,,,,,,,,,"201190640","3148242931","448190","HEALTHCARE UNIFORM COMPANY, INC",,"2132 KRATKY ROAD",,"SAINT LOUIS","MO","63114",,,,,,,"201190640","3148242931",,,,"2011-10-14T10:04:46-0500","CINDY BAUMANN",,,,,270,277,0,0,277,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014130139P040152763489001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"HYDRANAUTICS 401(K) PROFIT SHARING PLAN","003","1987-10-01","HYDRANAUTICS",,,"401 JONES ROAD",,"OCEANSIDE","CA","92058",,,,,,,"401 JONES ROAD",,"OCEANSIDE","CA","92058",,,,,,,"952949422","7609012518","339900","HYDRANAUTICS",,"401 JONES ROAD",,"OCEANSIDE","CA","92058",,,,,,,"952949422","7609012518",,,,"2011-10-14T12:55:46-0500","GREG BYERS",,,,,478,427,4,59,490,3,493,441,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014123744P040152738993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TURTLE MOUNTAIN COMMUNITY COLLEGE 401K RETIREMENT PLAN","003","1997-10-01","TURTLE MOUNTAIN COMMUNITY COLLEGE",,,"PO BOX 340",,"BELCOURT","ND","583160340",,,,,,,,,,,,,,,,,,"450323401","7014777811","611000","TURTLE MTN COMMUNITY COLLEGE",,"PO BOX 340",,"BELCOURT","ND","583160340",,,,,,,"450323401","7014777811",,,,"2011-10-14T12:32:26-0500","TRACY AZURE",,,,,152,143,1,20,164,0,164,163,15,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014120016P040152699873015","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"PROGRAM OF INSURANCE BENEFITS FOR EMPLOYEES OF RMI TITANIUM CO HOURLY EMPLOYEES-NILES & EXTRUSION","504","1968-01-01","RMI TITANIUM COMPANY",,,"1000 WARREN AVE",,"NILES","OH","444461168",,,,,,,,,,,,,,,,,,"341913054","3305441005","331400","RMI TITANIUM COMPANY",,"1000 WARREN AVE",,"NILES","OH","444461168",,,,,,,"341913054","3305441005",,,,"2011-10-14T11:58:20-0500","MICHAEL B. SHAUGHNESSY","2011-10-12T11:03:10-0500","JOHN ROWLAND",,,658,340,293,0,633,,,,,,,"4A4B4D4E","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014140020P040152821233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAMCO SUPPLY CORP. 401K SAVINGS AND PROFIT SHARING PLAN","004","1988-01-01","KAMCO SUPPLY CORP.",,,"80 21ST STREET",,"BROOKLYN","NY","112321138",,,,,,,,,,,,,,,,,,"110941695","7187681234","444190","KAMCO SUPPLY CORP.",,"80 21ST STREET",,"BROOKLYN","NY","112321138",,,,,,,"110941695","7187681234",,,,"2011-10-14T13:58:50-0500","RAY BARTER",,,,,112,102,0,5,107,0,107,103,4,,"2E2J2K2F2A2G3D","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143743P030149152753001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ATKINSON, ANDELSON, LOYA, RUUD & ROMO, A.P.C. 401(K) PROFIT SHARING PLAN","001","1980-01-01","ATKINSON, ANDELSON, LOYA, RUUD & ROMO, A.P.C.",,,"12800 CENTER COURT DRIVE","SUITE 300","CERRITOS","CA","90703",,,,,,,,,,,,,,,,,,"953378600","5626533200","541110","ATKINSON, ANDELSON, LOYA, RUUD & ROMO, A.P.C.",,"12800 CENTER COURT DRIVE","SUITE 300","CERRITOS","CA","90703",,,,,,,"953378600","5626533200",,,,"2011-10-14T10:48:13-0500","PAT STEVENS",,,,,281,227,0,54,281,0,281,249,14,,"2E2H2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014133955P030149103217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAKER & HOSTETLER LLP ACCIDENTAL DEATH AND DISMEMBERMENT PLAN","503","1982-09-01","BAKER & HOSTETLER LLP",,,"PNC CENTER","1900 EAST 9TH STREET, SUITE 3200","CLEVELAND","OH","441143482",,,,,,,,,,,,,,,,,,"340082025","2166210200","541110","BAKER & HOSTETLER LLP",,"PNC CENTER","1900 EAST 9TH STREET, SUITE 3200","CLEVELAND","OH","441143482",,,,,,,"340082025","2166210200",,,,"2011-10-14T10:30:44-0500","RICHARD H. BAMBERGER",,,,,626,658,0,0,658,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014132626P030692181312009","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"RETAIL, WHOLESALE & DEPARTMENT STORE INTERNATIONAL UNION AND INDUSTRY HEALTH AND BENEFIT FUND","501","1956-11-21","BOARD OF TRUSTEES OF RWDSIUI HEALTH AND BENEFIT FUND",,,"1901 10TH AVENUE SOUTH",,"BIRMINGHAM","AL","352052601",,,,,,,"1901 10TH AVENUE SOUTH",,"BIRMINGHAM","AL","352052601",,,,,,,"630708443","2052523586","311610","BOARD OF TRUSTEES OF RWDSIUI HEALTH AND BENEFIT FUN",,"1901 10TH AVENUE SOUTH",,"BIRMINGHAM","AL","352052601",,,,,,,"630708443","2052523586",,,,"2011-08-31T04:36:26-0500","STUART APPLEBAUM, CHAIRMAN","2011-08-31T04:36:26-0500","DONALD R. HOPKINS, SECRETARY",,,3740,3538,8,,3546,,,,,72,,"4A4B4D4E4F",,,"1",,"1",,"1",,,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014133645P040152796289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DUTCHLAND PLASTICS CORP. EMPLOYEE 401K PLAN AND TRUST","001","1995-08-01","DUTCHLAND PLASTICS CORP.",,,"PO BOX 700619",,"OOSTBURG","WI","530700619",,,,,,,"1026 SOUTH AVENUE",,"OOSTBURG","WI","530700619",,,,,,,"391083727","9205642356","326100","DUTCHLAND PLASTICS CORP.",,"PO BOX 700619",,"OOSTBURG","WI","530700619",,,,,,,"391083727","9205642356",,,,"2011-10-14T13:36:30-0500","CARL CLAERBOUT",,,,,203,164,17,0,181,0,181,121,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014134742P040152809345001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"GS PRIVATE EQUITY PARTNERS 2005 MANAGER FUND, L.P.","001",,"GS PEP 2005 MANAGER ADVISORS, LLC",,,"200 WEST STREET","TAX DEPARTMENT FEDERAL","NEW YORK","NY","10282",,,,,,,,,,,,,,,,,,"203684992","2129025825",,"GS PEP 2005 MANAGER ADVISORS, LLC",,"200 WEST STREET","TAX DEPARTMENT FEDERAL","NEW YORK","NY","10282",,,,,,,"203684992","2129025825",,,,,,,,"2011-10-14T13:45:12-0500","PHILIP GIUCA",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-14",,"Filed with authorized/valid electronic signature", "20111014121458P040152719201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"ROYAL WINDSOR INVESTMENTS 401K PROFIT SHARING PLAN","001","2007-03-20","ROYAL WINDSOR INVESTMENTS INC",,,"283 SENTRY MAPLE PLACE",,"THE WOODLANDS","TX","77382",,,,,,,"283 SENTRY MAPLE PLACE",,"THE WOODLANDS","TX","77382",,,,,,,"208666685","2813505256","236110","ROYAL WINDSOR INVESTMENTS INC",,"283 SENTRY MAPLE PLACE",,"THE WOODLANDS","TX","77382",,,,,,,"208666685","2813505256",,,,"2011-10-14T12:14:24-0500","JILL MCCUTCHEN",,,,,1,1,,,1,,1,,,,"2A2J3D",,,,"1",,,"0","1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014121636P040686346848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE SAVINGS BANK LIFE INSURANCE COMPANY OF MASSACHUSETTS 401K PLAN","002","1993-01-01","THE SAVINGS BANK LIFE INSURANCE COMPANY OF MASSACHUSETTS",,,"ONE LINSCOTT ROAD",,"WOBURN","MA","01801",,,,,,,,,,,,,,,,,,"043117253","7819383500","524140","JAMES A. MORGAN",,"ONE LINSCOTT ROAD",,"WOBURN","MA","01801",,,,,,,"223244787","7819945412",,,,"2011-10-14T12:15:12-0500","SANDRA WILLIAMS",,,,,252,212,6,39,257,2,259,253,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014124148P040152743825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AEP KENTUCKY COAL LLC EMPLOYEE SAVINGS PLAN","001","1979-01-01","AEP KENTUCKY COAL LLC",,,"1 RIVERSIDE PLAZA",,"COLUMBUS","OH","43215",,,,,,,,,,,,,,,,,,"611399133","6147161000","212110","AEP KENTUCKY COAL LLC",,"1 RIVERSIDE PLAZA",,"COLUMBUS","OH","43215",,,,,,,"611399133","6147161000",,,,"2011-10-14T12:41:05-0500","MARK A. PYLE","2011-10-14T12:41:05-0500","MARK A. PYLE",,,26,0,16,0,16,1,17,0,0,,"2G2J2K2F3H2E",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014140148P030149125825001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"ENDO PHARMACEUTICALS SAVINGS AND INVESTMENT PLAN","001","1997-09-01","ENDO PHARMACEUTICALS INC.",,,"100 ENDO BLVD",,"CHADDS FORD","PA","193179666",,,,,,,,,,,,,,,,,,"522035829","6105589800","541700","ENDO PHARMACEUTICALS INC.",,"100 ENDO BLVD",,"CHADDS FORD","PA","193179666",,,,,,,"522035829","6105589800",,,,"2011-10-14T14:01:44-0500","KATHRYN CARPENTER","2011-10-14T12:52:50-0500","DANIEL RUDIO",,,1745,1270,0,340,1610,0,1610,1583,17,,"2E2F2G2J2K2S2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014140626P040152827425001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"TRADESTATION GROUP, INC. EMPLOYEE SAVINGS RETIREMENT PLAN","001","1994-05-01","TRADESTATION GROUP, INC.",,,"8050 S.W. 10TH STREET","SUITE 4000","PLANTATION","FL","33324",,,,,,,"8050 S.W. 10TH STREET","SUITE 4000","PLANTATION","FL","33324",,,,,,,"650977576","9546527000","523120","TRADESTATION GROUP, INC.",,"8050 S.W. 10TH STREET","SUITE 4000","PLANTATION","FL","33324",,,,,,,"650977576","9546527000",,,,"2011-10-14T12:45:17-0500","LENIA ECHEMENDIA","2011-10-14T13:45:44-0500","EDWARD CODISPOTI",,,442,366,0,78,444,0,444,351,16,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014124218P040152744257001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SUMMIT EDUCATIONAL RESOURCES, INC. HEALTH INSURANCE","502","1995-01-01","SUMMIT EDUCATIONAL RESOURCES, INC.",,,"150 STAHL ROAD",,"GETZVILLE","NY","14068",,,,,,,"150 STAHL ROAD",,"GETZVILLE","NY","14068",,,,,,,"161095750","7166293400","611000","SUMMIT EDUCATIONAL RESOURCES, INC.",,"150 STAHL ROAD",,"GETZVILLE","NY","14068",,,,,,,"161095750","7166293400",,,,"2011-10-14T12:39:38-0500","STEPHEN ANDERSON",,,,,451,506,,,506,,506,,,,,"4A4D","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014141048P040022932242001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BULL HN INFORMATION SYSTEMS INC. INVESTMENT PLUS PLAN","002","1987-07-01","BULL HN INFORMATION SYSTEMS INC.",,,"285 BILLERICA ROAD, SUITE 200",,"CHELMSFORD","MA","01824",,,,,,,"285 BILLERICA ROAD, SUITE 200",,"CHELMSFORD","MA","01824",,,,,,,"410962923","9782946000","334110","BULL HN INFORMATION SYSTEMS INC.",,"285 BILLERICA ROAD, SUITE 200",,"CHELMSFORD","MA","01824",,,,,,,"410962923","9782946000",,,,"2011-10-14T14:08:42-0500","STEVEN KUEHL",,,,,1423,199,208,885,1292,14,1306,1280,0,,"2E2F2G2K3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014141225P030149132577001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BLUEGRASS BREAST IMAGING, PLLC PROFIT SHARING PLAN","001","2002-07-01","BLUEGRASS BREAST IMAGING, PLLC",,,"160 N. EAGLE CREEK DRIVE",,"LEXINGTON","KY","405092121",,,,,,,,,,,,,,,,,,"043672671","8599675613","621510","BLUEGRASS BREAST IMAGING, PLLC",,"160 N. EAGLE CREEK DRIVE",,"LEXINGTON","KY","405092121",,,,,,,"043672671",,,,,"2011-10-15T09:57:49-0500","DR. MARTA KENNEY",,,,,2,2,,,2,,2,2,,,"2E2G2R",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014141410P040022932626001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"TIDELANDS OIL PRODUCTION COMPANY EMPLOYEES' DEFERRED COMPENSATION SAVINGS & INVESTMENT PLAN","002","1964-09-01","TIDELANDS OIL PRODUCTION COMPANY",,,"10889 WILSHIRE BLVD",,"LOS ANGELES","CA","90024",,,,,,,,,,,,,,,,,,"330335764","3102088800","211110","TIDELANDS OIL PRODUCTION COMPANY",,"10889 WILSHIRE BLVD",,"LOS ANGELES","CA","90024",,,,,,,"330335764","3102088800",,,,"2011-10-14T14:12:02-0500","LINDA R. RITTS",,,,,216,138,12,132,282,0,282,282,,,"2E2G2J2K3H2T",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014131343P040152773633001","2010-01-01","2010-12-31","3",,"0","0","0","0","1","1","0","0","0",,"EDW. C. LEVY CO. MEDICAL BENEFIT PLAN","503","1989-01-01","EDW. C.LEVY CO.",,,"9300 DIX AVENUE",,"DEARBORN","MI","48120",,,,,,,"9300 DIX AVENUE",,"DEARBORN","MI","48120",,,,,,,"381253012","3134292200","238900","EDW. C.LEVY CO.",,"9300 DIX AVENUE",,"DEARBORN","MI","48120",,,,,,,"381253012","3134292200",,,,"2011-10-14T13:11:08-0500","LINDA WYATT",,,,,1010,970,83,,1053,,1053,,,,,"4A4D4E4F",,,,"1",,,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014115817P040022908994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YUCCA MOUNTAIN SALARIED PENSION PLAN","002","1992-01-01","USA REPOSITORY SERVICES LLC",,,"2131 S. CENTENNIAL AVENUE",,"AIKEN","SC","29803",,,,,,,,,,,,,,,,,,"262875791","8035025732","541330","USA REPOSITORY SERVICES LLC",,"2131 S. CENTENNIAL AVENUE",,"AIKEN","SC","29803",,,,,,,"262875791","8035025732",,,,"2011-10-14T11:55:40-0500","DELOYD CAZIER",,,,,320,2,74,234,310,7,317,0,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014125109P040152753249001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"RETIREMENT PLAN FOR NON-EXEMPT EMPLOYEES OF AMAX GOLD, INC.","006","1997-01-01","KINAM GOLD, INC.",,,"5370 KIETZKE LANE, SUITE 102",,"RENO","NV","895114037",,,,,,,,,,,,,,,,,,"061199974","7758291000","212200","KINAM GOLD, INC.",,"5370 KIETZKE LANE, SUITE 102",,"RENO","NV","895114037",,,,,,,"061199974","7758291000","AMAX GOLD - NON EXEMPT, INC.",,,"2011-10-14T12:50:58-0500","CAROLINE SANDEL","2011-10-14T12:50:58-0500","CAROLINE SANDEL",,,204,34,8,160,202,0,202,0,0,,"1G1I3H",,"1",,"1",,"1",,"1",,"1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014135035P030149113809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NATIONAL TUBE HOLDING COMPANY, INC. EMPLOYEES' 401(K) RETIREMENT PLAN AND TRUST","001","1990-08-01","NATIONAL TUBE HOLDING COMPANY, INC.",,,"3333 STANWOOD BOULEVARD",,"HUNTSVILLE","AL","35811",,,,,,,,,,,,,,,,,,"631032429","2568594510","332900","NATIONAL TUBE HOLDING COMPANY, INC.",,"3333 STANWOOD BOULEVARD",,"HUNTSVILLE","AL","35811",,,,,,,"631032429","2568594510",,,,"2011-10-14T10:34:40-0500","PATRICIA L. MAXWELL",,,,,251,218,0,35,253,0,253,202,5,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014135233P040152813921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LUXURY CATALOGS.COM, INC. 401K PLAN AND TRUST","002","2003-01-01","LUXURY CATALOGS.COM, INC.",,,"446 KENT AVE","UNIT PH A","BROOKLYN","NY","11211",,,,,,,"446 KENT AVE.","UNIT PH A","BROOKLYN","NY","11211",,,,,,,"300132445","9178562943","451211","LUXURY CATALOGS.COM, INC.",,"446 KENT AVE","UNIT PH A","BROOKLYN","NY","11211",,,,,,,"300132445","9178562943",,,,"2011-10-14T13:52:32-0500","STEPHAN LOWENTHEIL",,,,,4,4,0,0,4,0,4,4,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014122714P040152729665001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","1","0","0","0",,"THE PERMANENTE MEDICAL GROUP, INC. MASTER TRUST","050",,"THE PERMANENTE MEDICAL GROUP, INC.",,"PHYSICIAN BENEFITS DEPARTMENT","1800 HARRISON STREET, 7TH FLOOR",,"OAKLAND","CA","946125103",,,,,,,,,,,,,,,,,,"942728480","5106256221",,"THE PERMANENTE MEDICAL GROUP, INC.","PHYSICIAN BENEFITS DEPARTMENT","1800 HARRISON STREET, 7TH FLOOR",,"OAKLAND","CA","946125103",,,,,,,"942728480","5106256221",,,,"2011-10-14T12:26:40-0500","CONNIE WILSON","2011-10-14T12:26:40-0500","CONNIE WILSON","2011-10-14T12:26:40-0500","CONNIE WILSON",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111014134759P040686691632001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FREDERIC J MRUGALA DDS RETIREMENT SAVINGS PLAN","002","1994-01-01","FREDERIC J MRUGALA DDS",,,"6305 W 92ND STREET",,"OAK LAWN","IL","60453",,,,,,,"6305 W 92ND STREET",,"OAK LAWN","IL","60453",,,,,,,"363063056","7083978300","621210","FREDERIC J MRUGALA DDS",,"6305 W 92ND STREET",,"OAK LAWN","IL","60453",,,,,,,"363063056","7083978300",,,,"2011-10-14T13:47:15-0500","MAUREEN MRUGALA",,,,,6,6,,,6,,6,,,,"2E2J3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014121509P040152719457003","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"IBEW LOCAL UNION NO. 237 ANNUITY PLAN","002","1990-06-01","INTL. BROTHERHOOD OF IBEW LOCAL UNION NO. 237 ANNUITY FUND",,,"8803 NIAGARA FALLS BLVD.","PO BOX 120","NIAGARA FALLS","NY","14304",,,,,,,,,,,,,,,,,,"161378286","7162973899","525100","INTL. BROTHERHOOD OF IBEW LOCAL UNION NO. 237 ANNUITY FUND",,"8803 NIAGARA FALLS BLVD.",,"NIAGARA FALLS","NY","14304",,,,,,,"161378286","7162973899",,,,"2011-10-14T12:02:17-0500","RUSSELL QUARANTELLO","2011-10-14T07:44:55-0500","ROSE M. HAENSLY",,,293,226,20,39,285,2,287,287,,28,"2E",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014120949P040152712753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LYONS DENTAL ASSOCIATES, DMD, P.C. 410(K) PLAN","001","2001-01-01","LYONS DENTAL ASSOCIATES, DMD, P.C.",,,"348 BOSTON ROAD",,"BILLERICA","MA","01821",,,,,,,,,,,,,,,,,,"043413823","9786675807","621210","LYONS DENTAL ASSOCIATES, DMD, P.C.",,"348 BOSTON ROAD",,"BILLERICA","MA","01821",,,,,,,"043413823","9786675807",,,,"2011-10-14T12:09:00-0500","BRYAN LYONS",,,,,6,6,0,0,6,0,6,6,0,,"2E2J2K2F2G3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014125502P040152757985001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PG&E CORP. RETIREMENT SAVINGS PLAN FOR UNION REPRESENTED EMPLOYEES","002","2000-04-01","PG&E CORPORATION",,,"1850 GATEWAY BLVD, RM 7025",,"CONCORD","CA","94520",,,,,,,"1850 GATEWAY BLVD, RM 7025",,"CONCORD","CA","94520",,,,,,,"943234914","9252702771","221100","EBC, PG&E CORPORATION",,"1850 GATEWAY BLVD, RM 7025",,"CONCORD","CA","94520",,,,,,,"953040078","9252702771",,,,"2011-10-14T12:45:05-0500","KENT HARVEY","2011-10-14T11:59:36-0500","JOHN SIMON",,,15748,15127,30,44,15201,3,15204,12581,0,,"2F2H2J2K2O2R2T3I",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014135739P040152818577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAFETERIA PLAN","512","1998-07-01","MAIDENFORM, INC.",,"HR DEPARTMENT","485F US HIGHWAY 1 SOUTH",,"ISELIN","NJ","08830",,,,,,,"485F US HIGHWAY 1 SOUTH",,"ISELIN","NJ","08830",,,,,,,"660201882","7326212500","424300","MAIDENFORM, INC.","HR DEPARTMENT","485F US HIGHWAY 1 SOUTH",,"ISELIN","NJ","08830",,,,,,,"660201882","7326212500",,,,"2011-10-14T12:35:09-0500","SETH BOYARSKY","2011-10-14T13:52:04-0500","MATT ARGANO",,,542,507,37,15,559,,559,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014120242P040022909458001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HEINTZ ELECTRIC COMPANY 401K PROFIT SHARING PLAN","001","1985-11-01","HEINTZ ELECTRIC COMPANY",,,"225 S 10TH ST","P.O. BOX 210","QUINCY","IL","623060210",,,,,,,,,,,,,,,,,,"370888023","2172220113","423600","HEINTZ ELECTRIC COMPANY",,"225 S 10TH ST","P.O. BOX 210","QUINCY","IL","623060210",,,,,,,"370888023","2172220113",,,,"2011-10-14T12:02:42-0500","CHARLES CRAVEN",,,,,66,47,0,12,59,0,59,49,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014120500P030149014449007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LUBBOCK DIAGNOSTIC RADIOLOGY LLP PENSION PLAN","014","1998-12-31","LUBBOCK DIAGNOSTIC RADIOLOGY LLP",,,"4005 24TH ST",,"LUBBOCK","TX","79410",,,,,,,,,,,,,,,,,,"752857758","8067922767","621111","LUBBOCK DIAGNOSTIC RADIOLOGY LLP",,"4005 24TH ST",,"LUBBOCK","TX","79410",,,,,,,"752857758","8067922767",,,,"2011-10-14T11:31:07-0500","BARBARA GILLIAM",,,,,123,105,2,15,122,,122,120,3,,"3H3B2G2F2E",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014120509P040152706513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASSOCIATED RESTAURANTS SERVICING, INC. 401K RETIREMENT PLAN","333","1994-01-01","ASSOCIATED RESTAURANTS SERVICING, INC.",,,"2 MELGROVE LN",,"HANNIBAL","MO","634012200",,,,,,,,,,,,,,,,,,"431634914","5732212340","722210","ASSOCIATED RESTAURANTS SERVICING, INC.",,"2 MELGROVE LN",,"HANNIBAL","MO","634012200",,,,,,,"431634914","5732212340",,,,"2011-10-14T12:05:08-0500","ALVIN E EHRHARDT",,,,,141,143,0,7,150,0,150,82,0,,"2E2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014132755P040152787329001","2001-01-01","2001-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SHORT TERM DISABILITY","514","1998-01-01","ROLEX INDUSTRIES, INC.",,,"665 FIFTH AVENUE",,"NEW YORK","NY","100225305",,,,,,,,,,,,,,,,,,"132904945","2127587700","423940","ROLEX INDUSTRIES, INC.",,"665 FIFTH AVENUE",,"NEW YORK","NY","100225305",,,,,,,"132904945","2127587700",,,,"2011-10-14T13:27:55-0500","MARK GOLDBERG",,,,,245,251,0,0,251,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014121509P040152719457016","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MONEY PURCHASE PLAN WALTERS MECHANICAL SERIVICES, INC","002","1986-01-01","WALTERS MECHANICAL SERVICES, INC",,,"516 CHESTNUT MOUNTAIN DRIVE",,"VINTON","VA","24179",,,,,,,,,,,,,,,,,,"541324735","5408905659","238220","WALTERS MECHANICAL SERVICES, INC",,"516 CHESTNUT MOUNTAIN DRIVE",,"VINTON","VA","24179",,,,,,,"541324735","5408905659",,,,"2011-10-12T14:10:31-0500","RONALD WALTERS",,,,,1,1,0,0,1,0,1,1,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014122547P030149036961001","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"LORD BALTIMORE EMPLOYEE SAVINGS PLAN","002","1999-01-01","LORD BALTIMORE CAPITAL CORPORATION",,,"6225 SMITH AVENUE, SUITE B100",,"BALTIMORE","MD","21209",,,,,,,,,,,,,,,,,,"520941790","4104157628","531120","LORD BALTIMORE CAPITAL CORPORATION",,"6225 SMITH AVENUE, SUITE B100",,"BALTIMORE","MD","21209",,,,,,,"520941790","4104157628",,,,"2011-10-14T12:13:40-0500","RUSSELL W. BELL","2011-10-14T12:13:46-0500","RUSSELL W. BELL",,,36,30,,5,35,,35,35,,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014122551P030149037089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FOOD INGREDIENTS, INC. 401(K) PLAN","001","2001-01-01","FOOD INGREDIENTS, INC.",,,"2100 AIRPORT ROAD",,"WAUKESHA","WI","53188",,,,,,,,,,,,,,,,,,"391551165","2625218118","424400","FOOD INGREDIENTS, INC.",,"2100 AIRPORT ROAD",,"WAUKESHA","WI","53188",,,,,,,"391551165","2625218118",,,,"2011-10-14T12:10:31-0500","TAMMA BARKER","2011-10-14T12:10:31-0500","TAMMA BARKER",,,18,18,,0,18,0,18,18,0,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014125334P040152756097001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"PACIFIC GAS AND ELECTRIC COMPANY RETIREMENT PLAN MASTER TRUST","002",,"PACIFIC GAS AND ELECTRIC COMPANY",,,"1850 GATEWAY BOULEVARD, ROOM 7025",,"CONCORD","CA","94520",,,,,,,"1850 GATEWAY BOULEVARD, ROOM 7025",,"CONCORD","CA","94520",,,,,,,"940742640","9252702771",,"EMPLOYEE BENEFIT COMMITTEE","PACIFIC GAS AND ELECTRIC COMPANY","1850 GATEWAY BOULEVARD, ROOM 7025",,"CONCORD","CA","94520",,,,,,,"953040078","9252702772",,,,"2011-10-14T12:43:44-0500","KENT HARVEY","2011-10-14T11:58:19-0500","JOHN SIMON","2011-10-14T12:52:15-0500","PETER CORIPPO",,,,,,,,,,,,,,,,,,,,,,,,"1",,"1","2","1","1","1","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111014140944P040152831697001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"RETIREMENT PLAN FOR HOURLY EMPLOYEES OF BUSCH PROPERTIES, INC.","002","1977-01-01","BUSCH PROPERTIES, INC.",,,"ONE BUSCH PLACE, 181-1N",,"ST. LOUIS","MO","631181852",,,,,,,,,,,,,,,,,,"430957036","3145772000","531390","BUSCH PROPERTIES, INC.",,"ONE BUSCH PLACE, 181-1N",,"ST. LOUIS","MO","631181852",,,,,,,"430957036","3145772000",,,,"2011-10-14T12:52:02-0500","ROBERT ZIMMER","2011-10-14T12:52:02-0500","ROBERT ZIMMER",,,679,0,0,0,0,0,0,,,,"1B1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014115841P030149008881001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HARVARD UNIVERSITY MEDICAL REIMBURSEMENT PLAN","506","1985-01-01","PRESIDENT & FELLOWS OF HARVARD COLLEGE",,,"HARVARD HUMAN RESOURCES, BENEFITS",,"CAMBRIDGE","MA","02138",,,,,,,"1350 MASSACHUSETTS AVE,","HOLYOKE CENTER, SUITE 668","CAMBRIDGE","MA","02138",,,,,,,"042103580","6174961542","611000","PRESIDENT & FELLOWS OF HARVARD COLLEGE",,"HARVARD HUMAN RESOURCES, BENEFITS",,"CAMBRIDGE","MA","02138",,,,,,,"042103580","6174961542",,,,"2011-10-13T09:22:52-0500","LYNN CORDARO",,,,,13149,13485,,,13485,,13485,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014123917P040686427056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAYLOR MADE HOMES, L.L.C. EMPLOYEES' SAVINGS PLAN","002","2007-01-01","TAYLOR MADE HOMES, L.L.C.",,,"1045 MORRISON ROAD",,"NORTHBROOK","IL","600622725",,,,,,,,,,,,,,,,,,"364228718","8472050507","236110","TAYLOR MADE HOMES, L.L.C.",,"1045 MORRISON ROAD",,"NORTHBROOK","IL","600622725",,,,,,,"364228718","8472050507",,,,"2011-10-14T12:30:08-0500","NANCY TAYLOR",,,,,2,2,0,0,2,0,2,2,0,,"2E2J3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014141105P040004710467001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KOLBE & KOLBE MILLWORK CO., INC. RETIREMENT SAVINGS PLAN","002","1993-01-01","KOLBE & KOLBE MILLWORK CO., INC.",,"VP-FINANCE","1323 SOUTH 11TH AVENUE",,"WAUSAU","WI","544015980",,,,,,,,,,,,,,,,,,"391193314","7158425666","321900","KOLBE & KOLBE MILLWORK CO., INC.","VP-FINANCE","1323 SOUTH 11TH AVENUE",,"WAUSAU","WI","544015980",,,,,,,"391193314","7158425666",,,,"2011-10-14T14:10:47-0500","MICHAEL TOMSYCK","2011-10-14T14:07:42-0500","MICHAEL TOMSYCK",,,1859,1181,,192,1373,19,1392,1392,282,,"2E2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014141109P040152833393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HI-MAC THRIFT PLAN","003","1985-01-01","MCCORMICK-ARMSTRONG CO., INCORPORATED",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"480326300","6207938473","323100","MCCORMICK-ARMSTRONG CO., INCORPORATED","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"480326300","6207938473",,,,"2011-10-14T13:53:03-0500","JACOB W. SHAFFER",,,,,135,104,0,22,126,0,126,121,7,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014141123P030692332784001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"DERICHEBOURG RECYCLING USA 401(K) SAVINGS PLAN","001","1987-10-01","DERICHEBOURG RECYCLING USA",,,"7501 WALLISVILLE RD",,"HOUSTON","TX","770203543",,,,,,,,,,,,,,,,,,"020324449","7136752281","423990","DERICHEBOURG RECYCLING USA",,"7501 WALLISVILLE RD",,"HOUSTON","TX","770203543",,,,,,,"020324449","7136752281",,,,"2011-10-14T14:11:20-0500","ROSY LUNA","2011-10-14T14:11:20-0500","ROSY LUNA",,,146,134,0,7,141,0,141,81,4,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014121829P030149030929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOODWIN S CHEVROLET COMPANY 401(K) PROFIT SHARING PLAN","001","1969-01-31","GOODWINS CHEVROLET COMPANY",,,"195 PLEASANT STREET","PO BOX 160","BRUNSWICK","ME","04011",,,,,,,,,,,,,,,,,,"010270455","2077291611","441110","GOODWINS CHEVROLET COMPANY",,"195 PLEASANT STREET","PO BOX 160","BRUNSWICK","ME","04011",,,,,,,"010270455","2077291611",,,,"2011-10-14T12:15:35-0500","FRANK R GOODWIN","2011-10-14T12:15:35-0500","FRANK R GOODWIN",,,142,104,0,13,117,1,118,118,3,,"2E2G2F2J3H2A2T3D","4B","1",,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014131159P040152772321001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"HAVERFORD COLLEGE BUSINESS TRAVEL AND ACCIDENT","511","1998-01-01","CORPORATION OF HAVERFORD COLLEGE",,"HAVERFORD COLLEGE","370 LANCASTER AVENUE",,"HAVERFORD","PA","190411392",,,,,,,"370 LANCASTER AVENUE",,"HAVERFORD","PA","190411392",,,,,,,"236002304","6108961219","611000","G.RICHARD WYNN","HAVERFORD COLLEGE","370 LANCASTER AVENUE",,"HAVERFORD","PA","190411392",,,,,,,"232387474","6108961219",,,,"2011-10-14T09:12:12-0500","G. RICHARD WYNN",,,,,572,572,0,0,572,0,572,,,,,"4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014131430P030692144032009","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"SOUTHERN CALIFORNIA PIPE TRADES DEFINED CONTRIBUTION PLAN","001","1991-07-01","SOUTHERN CALIFORNIA PIPE TRADES DEFINED","CONTRIBUTION PLAN",,"501 SHATTO PLACE 5TH FLOOR",,"LOS ANGELES","CA","900201713",,,,,,,,,,,,,,,,,,"954388338","2133856161","238220","SOUTHERN CALIFORNIA PIPE TRADES DEFINED",,"501 SHATTO PLACE 5TH FLOOR",,"LOS ANGELES","CA","900201713",,,,,,,"954388338","2133856161",,,,"2011-10-12T11:09:59-0500","SID STOLPER",,,,,8378,7445,,42,7487,12,7499,4826,,169,"2C2G2J2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014115905P030149009041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NIMNICHT CHEVROLET COMPANY 401(K) PLAN","001","1967-04-01","NIMNICHT CHEVROLET COMPANY",,,"1550 CASSAT AVE.",,"JACKSONVILLE","FL","32210",,,,,,,,,,,,,,,,,,"591205071","9043874041","441110","NIMNICHT CHEVROLET COMPANY",,"1550 CASSAT AVE.",,"JACKSONVILLE","FL","32210",,,,,,,"591205071","9043874041",,,,"2011-10-14T09:44:50-0500","LEE A NIMNICHT","2011-10-14T09:44:50-0500","LEE A NIMNICHT",,,196,139,,37,176,0,176,151,1,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014120126P030149010657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AAON, INC. SAVINGS AND INVESTMENT PLAN","001","1988-09-30","AAON, INC.",,,"2425 SOUTH YUKON AVENUE",,"TULSA","OK","741072728",,,,,,,,,,,,,,,,,,"731328149","9185832266","333410","RETIREMENT PLAN COMMITTEE","AAON, INC.","2425 SOUTH YUKON AVENUE",,"TULSA","OK","741072728",,,,,,,"205692401","9185832266",,,,"2011-10-14T09:43:28-0500","KATHY I SHEFFIELD",,,,,1202,1523,0,265,1788,0,1788,1638,432,,"3D2H2J2K2E2F3H3I2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014120131P040152701329001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"ESSEX AND OPTIMA 401(K) RETIREMENT PLAN","004","1995-01-01","ESSEX ORTHOPAEDICS & OPTIMA SPORTS MEDICINE",,,"16 PELHAM ROAD","SUITE 1","SALEM","NH","03079",,,,,,,"16 PELHAM ROAD","SUITE 1","SALEM","NH","03079",,,,,,,"261205937","6038982244","621111","ESSEX ORTHOPAEDICS & OPTIMA SPORTS MEDICINE",,"16 PELHAM ROAD","SUITE 1","SALEM","NH","03079",,,,,,,"261205937","6038982244",,,,"2011-10-14T12:00:37-0500","ERIC ARVIDSON",,,,,32,30,0,3,33,0,33,26,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014124715P040686459904001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"HALLMARK CARDS INCORPORATED MASTER TRUST DIVERSIFIED BOND FUND","001",,"HALLMARK CARDS, INC. MASTER TRUST, STATE STREET BANK & TRUST, TRUSTEE",,,"2501 MCGEE ST., MD 387",,"KANSAS CITY","MO","64108",,,,,,,,,,,,,,,,,,"043328262","8162743042",,"HALLLMARK BENEFIT PLANS ADVISORY COMMITTEE",,"2501 MCGEE ST.",,"KANSAS CITY","MO","64108",,,,,,,"431669047","8162743042","STATE STREET BANK & TRUST CO.","043328262","001","2011-10-14T12:46:08-0500","EMILY LAY","2011-10-14T12:46:08-0500","JEFF MCMILLEN",,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014133435P030149099377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ORACLE FINANCIAL SERVICES SOFTWARE INC. 401(K) PROFIT SHARING PLAN","001","2003-01-01","ORACLE FINANCIAL SERVICES SOFTWARE, INC.",,,"399 THORNHALL STREET, 6TH FLOOR",,"EDISON","NJ","08837",,,,,,,,,,,,,,,,,,"134200183","6466195315","443120","ORACLE FINANCIAL SERVICES SOFTWARE, INC.",,"399 THORNHALL STREET, 6TH FLOOR",,"EDISON","NJ","08837",,,,,,,"134200183","6466195315",,,,"2011-10-14T10:28:26-0500","SHAHEEN KAUSER",,,,,446,468,0,0,468,0,468,468,0,,"2E3D2J2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014121027P040050373799001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COEUR DALENE GROUP LIFE, AD&D, SHORT TERM, LONG TERM DISABILITY","501","1983-08-01","COEUR DALENE MINES CORPORATION",,,"505 FRONT AVE.",,"COEUR DALENE","ID","83816",,,,,,,,,,,,,,,,,,"820109423","2086673511","212200","COEUR DALENE MINES CORPORATION",,"505 FRONT AVE.",,"COEUR DALENE","ID","83816",,,,,,,"820109423","2086673511",,,,"2011-10-14T12:10:26-0500","LARRY NELSON",,,,,147,272,0,0,272,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014124509P030149054001004","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"HOME HEALTH SERVICES, INC., 401(K) SAVINGS PLAN","002","1991-01-01","HOME HEALTH SERVICES, INC.",,"BRADLEY LAST","2166 EAST 430 NORTH CIR.",,"ST. GEORGE","UT","84790",,,,,,,,,,,,,,,,,,"870494759","4356738666","623000","HOME HEALTH SERVICES, INC.","BRADLEY LAST","2166 EAST 430 NORTH CIR.",,"ST. GEORGE","UT","84790",,,,,,,"870494759","4356738666",,,,"2011-10-10T15:22:13-0500","BRADLEY LAST","2011-10-10T15:21:50-0500","BRADLEY LAST",,,200,0,0,0,0,0,0,,,,"2E2G2J2K",,"1",,"1",,,,"1",,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014120324P030149012721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAULSON & CO., INC. 401(K) PLAN","001","1999-01-01","PAULSON & CO., INC.",,,"1251 AVENUE OF THE AMERICAS FL 50",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"133796759","2129562221","523210","PAULSON & CO., INC.",,"1251 AVENUE OF THE AMERICAS FL 50",,"NEW YORK","NY","10022",,,,,,,"133796759","2129562221",,,,"2011-10-14T09:46:43-0500","CHRIS BODAK",,,,,107,97,0,19,116,0,116,116,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014120534P040152707233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LATOUCHE PEDIATRICS, LLC 401(K) PLAN AND TRUST","001","2004-01-01","LATOUCHE PEDIATRICS, LLC",,,"3340 PROVIDENCE DRIVE, SUITE 452",,"ANCHORAGE","AK","99508",,,,,,,,,,,,,,,,,,"920174571","9075622120","621111","LATOUCHE PEDIATRICS, LLC",,"3340 PROVIDENCE DRIVE, SUITE 452",,"ANCHORAGE","AK","99508",,,,,,,"920174571","9075622120",,,,"2011-10-14T12:05:33-0500","LAURA JONES",,,,,63,46,0,20,66,0,66,56,0,,"2E2F2G2J2K3B3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014132646P030149093985007","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"ALLIANT ENERGY HEALTH & WELFARE BENEFIT PLAN","501","2005-01-01","ALLIANT ENERGY CORPORATE SERV.INC.",,"ATTENTION MARCIA WHELAN","4902 N. BILTMORE LANE","SUITE 1000","MADISON","WI","537182148",,,,,,,,,,,,,,,,,,"391914946","6084583680","221100","ALLIANT ENERGY CORPORATE SERV.INC.","ATTENTION MARCIA WHELAN","4902 N. BILTMORE LANE","SUITE 1000","MADISON","WI","537182148",,,,,,,"391914946","6084583680",,,,"2011-10-12T08:21:23-0500","WAYNE RESCHKE","2011-10-12T08:21:23-0500","WAYNE RESCHKE",,,7521,4177,3145,,7322,,,,,,,"4A4B4D4F4H4L4Q","1",,"1","1","1",,"1","1",,,,"1",,"1","5","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014125358P040152756657019","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"GENE STRINGFIELD BUILDINGF MATERIALS COMPANY PROFIT SHARING PLAN","001","1974-09-16","GENE STRINGFIELD BUILDING MATERIALS COMPANY",,,"PO BOX 2707",,"EUGENE","OR","97402",,,,,,,,,,,,,,,,,,"930587843","5416898014","444190","GENE STRINGFIELD BUILDING MATERIALS COMPANY",,"PO BOX 2707",,"EUGENE","OR","97402",,,,,,,"930587843","5416898014",,,,"2011-10-14T12:39:42-0500","MARK STRINGFIELD",,,,,15,14,,,14,1,15,15,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014140334P040686749520001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE DETROIT NEWS HEALTH PLAN","502","1950-09-01","THE DETROIT NEWS",,,"615 W. LAFAYETTE",,"DETROIT","MI","48226",,,,,,,"615 W. LAFAYETTE",,"DETROIT","MI","48226",,,,,,,"380525150","3132228846","511110","THE DETROIT NEWS",,"615 W. LAFAYETTE",,"DETROIT","MI","48226",,,,,,,"380525150","3132228846",,,,"2011-10-14T14:02:27-0500","MICHAEL JOHNSON",,,,,415,149,239,,388,,388,,,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014140523P040152826545001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"GEMINI VENETIAN BLINDS PENSION AND PROFIT SHARING PLAN","001","1995-01-01","HOWARD SKLAR",,,"145 DEER RUN",,"CHAPPAQUA","NY","10514",,,,,,,"145 DEER RUN",,"CHAPPAQUA","NY","10514",,,,,,,"133405723","9145237882","442299","HOWARD SKLAR",,"145 DEER RUN",,"CHAPPAQUA","NY","10514",,,,,,,"133405723","9145237882",,,,"2011-10-14T14:04:56-0500","HOWARD SKLAR",,,,,1,1,,,1,,1,,,,"2E2H",,,,"1","1",,,"1","1",,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143639P040152858257001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"HOD CARRIERS LOCAL NO. 166 WEST BAY PENSION PLAN","002","1970-10-19","BOARD OF TRUSTEES, HOD CARRIERS LOCAL NO. 166 WEST BAY PENSION PLAN",,,"PO BOX 2500",,"SAN FRANCISCO","CA","94126",,,,,,,,,,,,,,,,,,"946208548","4159866276","238900","BOARD OF TRUSTEES, HOD CARRIERS LOCAL NO. 166 WEST BAY PENSION PLAN",,"PO BOX 2500",,"SAN FRANCISCO","CA","94126",,,,,,,"946208548","4159866276",,,,"2011-10-14T06:08:39-0500","SAMUEL ROBINSON FOR BOARD OF DIRECT",,,,,262,54,81,87,222,26,248,,,79,"1A1G",,,,"1",,,,"1",,"1","1",,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143655P040011316693001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"G.P. PLASTICS CORPORATION EMPLOYEES SAVINGS TRUST","001","1999-01-01","G.P. PLASTICS CORPORATION",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"751303564","6207938473","326100","G.P. PLASTICS CORPORATION","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"751303564","6207938473",,,,"2011-10-14T14:27:23-0500","DAN TILLERY",,,,,258,173,0,120,293,0,293,236,5,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014130429P040152766081008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BEAUTY MANAGEMENTINC EMPLOYEE STOCK OWNERSHIP PLAN","001","1995-01-01","BEAUTY MANAGEMENT, INC",,,"270 BEAVERCREEK RD SUITE 100",,"OREGON CITY","OR","97045",,,,,,,,,,,,,,,,,,"930559561","5037233200","812112","BEAUTY MANAGEMENT INC",,"270 BEAVERCREEK RD SUITE 100",,"OREGON CITY","OR","97045",,,,,,,"930559561","5037233200",,,,"2011-10-14T12:29:40-0500","MICHAEL CLARK",,,,,366,371,,225,596,1,597,597,34,,"2Q2P",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014134845P040004709443001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"AVIDYNE CORPORATION 401(K) RETIREMENT PLAN","001","1998-01-01","AVIDYNE CORPORATION",,,"5 OLD BEDFORD RD",,"LINCOLN","MA","017731125",,,,,,,"5 OLD BEDFORD RD",,"LINCOLN","MA","017731125",,,,,,,"043213876","7814027416","335900","AVIDYNE CORPORATION",,"5 OLD BEDFORD RD",,"LINCOLN","MA","017731125",,,,,,,"043213876","7814027416",,,,"2011-10-14T13:48:10-0500","FRANCIS SINGLETON",,,,,228,115,0,90,205,1,206,147,8,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014115915P030149009121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASTRUP DRUG, INC. RETIREMENT PLAN","001","1961-12-31","ASTRUP DRUG, INC.",,,"PO BOX 658","905 NORTH MAIN","AUSTIN","MN","55912",,,,,,,,,,,,,,,,,,"410780900","5074337447","446110","ASTRUP DRUG, INC.",,"PO BOX 658","905 NORTH MAIN","AUSTIN","MN","55912",,,,,,,"410780900","5074337447","ASTRUP DRUG, INC. PROFIT SHARING PLAN","410780900","001","2011-10-14T09:44:53-0500","ERIK LUNDQUIST",,,,,430,334,0,21,355,1,356,145,2,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014122642P030691984880001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHARIF & MUNIR CUSTOM HOMES, INC. 401(K) PLAN","001","2000-01-01","SHARIF & MUNIR CUSTOM HOMES, INC.",,,"6009 BELTLINE ROAD, SUITE 200",,"DALLAS","TX","75240",,,,,,,,,,,,,,,,,,"261459411","9727209111","236110","SHARIF & MUNIR CUSTOM HOMES, INC.",,"6009 BELTLINE ROAD, SUITE 200",,"DALLAS","TX","75240",,,,,,,"261459411","9727209111",,,,"2011-10-14T09:55:57-0500","RAMSEY MUNIR","2011-10-14T09:55:57-0500","RAMSEY MUNIR",,,15,13,0,1,14,0,14,11,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014124252P030692038096001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MULTI-PLASTICS, INC. SAVINGS & RETIREMENT PLAN","001","1985-01-01","MULTI-PLASTICS, INC.",,,"7770 NORTH CENTRAL AVENUE",,"LEWIS CENTER","OH","43035",,,,,,,,,,,,,,,,,,"310965449","7405484894","326100","MULTI-PLASTICS, INC.",,"7770 NORTH CENTRAL AVENUE",,"LEWIS CENTER","OH","43035",,,,,,,"310965449","7405484894",,,,"2011-10-14T10:03:52-0500","MICHAEL HICKEY","2011-10-14T10:03:52-0500","MICHAEL HICKEY",,,215,290,0,0,290,0,290,259,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014141149P040152834161001","2010-03-30","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"WHETYO INC. PROFIT SHARING PLAN","001","2010-03-30","WHETYO INC.",,,"22 BODDINGTON CT",,"ASHEVILLE","NC","28803",,,,,,,,,,,,,,,,,,"272250188","8282749601","812112","WHETYO INC.",,"22 BODDINGTON CT",,"ASHEVILLE","NC","28803",,,,,,,"272250188","8282749601",,,,"2011-10-14T14:09:48-0500","ROBERT SPRAGINS",,,,,2,2,,,2,,2,2,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014141454P030149134801001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"DOMINION EAST OHIO GAS UNION FLEXIBLE BENEFITS PLAN","510","1973-06-16","DOMINION RESOURCES, INC.","C/O DOMINION RESOURCES SERVICES, INC.","ATTENTION BENEFITS REPORTING","701 EAST CARY STREET",,"RICHMOND","VA","232193927",,,,,,,,,,,,,,,,,,"541229715","8007307230","551112","DOMINION RESOURCES SERVICES, INC.","ATTENTION BENEFITS REPORTING","701 EAST CARY STREET",,"RICHMOND","VA","232193927",,,,,,,"541962730","8007307230",,,,"2011-10-14T13:42:49-0500","MARK LINDLEY, MANAGER ACCTG","2011-10-14T13:42:49-0500","JOSH BLAKENEY, DIRECTOR ACCTG",,,1219,1175,,,1175,,,,,,,"4H4U4A4B4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014121905P040152723009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SETH B. CUTLER, M.D., P.A. 401K PROFIT SHARING PLAN","001","1988-01-01","SETH B. CUTLER, M.D., P.A.",,,"2500 N. UNIVERSITY DR., STE. 14",,"SUNRISE","FL","333223003",,,,,,,,,,,,,,,,,,"592213789","9547487755","621111","SETH B. CUTLER, M.D., P.A.",,"2500 N. UNIVERSITY DR., STE. 14",,"SUNRISE","FL","333223003",,,,,,,"592213789","9547487755",,,,"2011-10-14T12:19:05-0500","SETH B. CUTLER",,,,,3,1,2,0,3,0,3,1,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014131304P040004353540001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOXLEY MATERIALS COMPANY HEALTH INSURANCE PLAN","501","2002-08-01","BOXLEY.MATERIALS.COMPANY",,,"PO BOX 13527",,"ROANOKE","VA","240353527",,,,,,,,,,,,,,,,,,"540144200","5407777600","212310","BOXLEY.MATERIALS.COMPANY",,"PO BOX 13527",,"ROANOKE","VA","240353527",,,,,,,"540144200","5407777600",,,,"2011-10-14T13:13:03-0500","TERRY R. WOOD",,,,,375,398,21,0,419,,,,,,,"4A4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014141736P030149136753001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"AMALGAMATED TRANSIT UNION NATIONAL 401(K) PENSION PLAN","001","1997-08-01","BOARD OF TRUSTEES OF THE AMALGAMATED TRANSIT UNION",,,"5025 WISCONSIN AVENUE, N.W.",,"WASHINGTON","DC","20016",,,,,,,,,,,,,,,,,,"522059290","2025371645","813000","BOARD OF TRUSTEES OF THE AMALGAMATED TRANSIT UNION",,"5025 WISCONSIN AVENUE, N.W.",,"WASHINGTON","DC","20016",,,,,,,"522059290","2025371645",,,,"2011-10-14T10:39:45-0500","OSCAR OWENS",,,,,16875,16945,,,16945,,16945,4979,,44,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014132028P030021996994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TREADWAY ELECTRIC COMPANY, INC. 401(K) PLAN","003","2006-08-01","TREADWAY ELECTRIC COMPANY, INC.",,,"3300 WEST 65TH STREET",,"LITTLE ROCK","AR","72209",,,,,,,,,,,,,,,,,,"710180320","5015622111","423600","TREADWAY ELECTRIC COMPANY, INC.",,"3300 WEST 65TH STREET",,"LITTLE ROCK","AR","72209",,,,,,,"710180320","5015622111",,,,"2011-10-14T10:22:15-0500","TERRY L. ROGERS","2011-10-14T10:22:15-0500","TERRY L. ROGERS",,,171,117,0,29,146,0,146,50,1,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014134354P040152805105001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"IOWA TELECOM SAVINGS PLAN","001","2000-07-01","WINDSTREAM IOWA COMMUNICATIONS INC",,,"4001 RODNEY PARHAM ROAD","MS 1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"4001 RODNEY PARHAM ROAD","MS 1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"271635465","5017487000","517000","WINDSTREAM BENEFITS COMMITTEE",,"4001 RODNEY PARHAM ROAD","MS 1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"200792300","5017487000","IOWA TELECOMMUNICATIONS SERVICES INC","421490040",,"2011-10-14T12:58:32-0500","CAMI MARTIN",,,,,659,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T",,,,"1","0",,,"1","0","1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014134354P030022000418001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ELK HAVEN NURSING HOME ASSOCIATION, INC. 403(B) PL","001","2009-01-01","ELK HAVEN NURSING HOME ASSOCIATION",,"THOMAS DAVIDO","785 JOHNSONBURG RD.",,"ST. MARYS","PA","158573499",,,,,,,,,,,,,,,,,,"231945075","8148342618","623000","ELK HAVEN NURSING HOME ASSOCIATION","THOMAS DAVIDO","785 JOHNSONBURG RD.",,"ST. MARYS","PA","158573499",,,,,,,"231945075","8148342618",,,,"2011-10-14T08:11:22-0500","TOM DAVIDO","2011-10-14T08:11:22-0500","TOM DAVIDO",,,173,178,,,178,,178,79,20,,"2F2G2L",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014134216P040152803105001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SIOUXLAND RADIOLOGY PARTNERS, LLP 401K PROFIT SHARING PLAN","002","2003-01-01","SIOUXLAND RADIOLOGY PARTNERS, LLP",,,"801 5TH ST",,"SIOUX CITY","IA","511011326",,,,,,,,,,,,,,,,,,"421113906","7122795613","621399","SIOUXLAND RADIOLOGY PARTNERS, LLP",,"801 5TH ST",,"SIOUX CITY","IA","511011326",,,,,,,"421113906","7122795613",,,,"2011-10-14T13:42:14-0500","MARWIN JARMAKANI",,,,,6,5,0,1,6,0,6,6,0,,"2A2E2F2G2J3B3E",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014120849P030021988226001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SILGAN CONTAINERS PENSION PLAN FOR OCONOMOWOC, WISCONSIN CAN PLANT EMPLOYEES","004","1987-09-01","SILGAN CONTAINERS MANUFACTURING CORPORATION",,,"21800 OXNARD STREET, SUITE 600",,"WOODLAND HILLS","CA","913673654",,,,,,,,,,,,,,,,,,"061502009","8183483700","332900","SILGAN CONTAINERS MANUFACTURING CORPORATION",,"21800 OXNARD STREET, SUITE 600",,"WOODLAND HILLS","CA","913673654",,,,,,,"061502009","8183483700",,,,"2011-10-14T09:48:37-0500","TONY COST","2011-10-14T09:48:37-0500","TONY COST",,,178,88,71,22,181,4,185,0,2,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014124324P040025099702001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE CIANBRO COMPANIES FLEXIBLE BENEFITS PLAN MEDICAL BENEFITS","507","1993-01-01","THE CIANBRO COMPANIES",,,"PO BOX 1000",,"PITTSFIELD","ME","04967",,,,,,,"1 CIANBRO SQUARE",,"PITTSFIELD","ME","04967",,,,,,,"100000909","2076792140","237990","THE CIANBRO COMPANIES",,"PO BOX 1000",,"PITTSFIELD","ME","04967",,,,,,,"100000909","2076792140",,,,"2011-10-14T12:03:31-0500","PETER VIGUE",,,,,1658,1513,,,1513,,1513,,,,,"4A",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014124544P040152747681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALCOA SAVINGS PLAN FOR NON-BARGAINING EMPLOYEES","007","1958-05-01","ALCOA INC.",,,"201 ISABELLA STREET",,"PITTSBURGH","PA","152125858",,,,,,,,,,,,,,,,,,"250317820","4125534545","331310","ALCOA INC.",,"201 ISABELLA STREET",,"PITTSBURGH","PA","152125858",,,,,,,"250317820","4125534545",,,,"2011-10-07T08:21:04-0500","JOHN KENNA",,,,,12851,6741,0,5324,12065,47,12112,11128,94,,"2F2H2J2K3H2O2R3I2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014120400P040152705041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RONALD G. BECK PROFIT SHARING PLAN","002","1974-12-01","BECK INSURANCE AGENCY",,,"PO BOX 287",,"MENDON","IL","623510287",,,,,,,,,,,,,,,,,,"376130451","2179362468","524210","BECK INSURANCE AGENCY",,"PO BOX 287",,"MENDON","ID","623510287",,,,,,,"376130451","2179362468",,,,"2011-10-14T12:04:00-0500","RONALD G. BECK",,,,,6,4,0,1,5,0,5,5,0,,"2E2G3B3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014120606P040152707921001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"JOHNSON BROTHERS FORD 401(K) SALARY REDUCTION PLAN AND TRUST","001","1991-05-01","JOHNSON BROTHERS FORD II, LTD. - LP",,,"503 NORTH GENERAL DRIVE",,"TEMPLE","TX","76504",,,,,,,"503 NORTH GENERAL DRIVE",,"TEMPLE","TX","76504",,,,,,,"742919144","2547735257","441110","JOHNSON BROTHERS FORD II, LTD. - LP",,"503 NORTH GENERAL DRIVE",,"TEMPLE","TX","76504",,,,,,,"742919144","2547735257",,,,"2011-10-12T16:43:03-0500","JAMES WILSON",,,,,56,69,2,25,96,0,96,58,0,,"2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014140101P040022930658001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NNDS 401(K) PLAN","001","2006-01-01","NATIONAL NETWORK OF DIGITAL SCHOOLS MANAGEMENT FOUNDATION",,,"1000 THIRD STREET, SUITE 2",,"BEAVER","PA","15009",,,,,,,,,,,,,,,,,,"260125828","7247745759","611000","NATIONAL NETWORK OF DIGITAL SCHOOLS MANAGEMENT FOUNDATION",,"1000 THIRD STREET, SUITE 2",,"BEAVER","PA","15009",,,,,,,"260125828","7247745759",,,,"2011-10-14T13:57:59-0500","MARK ELDER",,,,,281,315,0,29,344,0,344,215,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014140119P040686742432001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEILL & GUNTER, INC. SAVINGS AND PROFIT SHARING PLAN","001","1979-01-01","NEILL & GUNTER, INC.",,,"482 PAYNE ROAD",,"SCARBOROUGH","ME","04074",,,,,,,,,,,,,,,,,,"010333227","2078833355","541330","NEILL & GUNTER, INC.",,"482 PAYNE ROAD",,"SCARBOROUGH","ME","04074",,,,,,,"010333227","2078833355",,,,"2011-10-14T14:00:16-0500","DEANN CLARK",,,,,80,0,0,43,43,0,43,43,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014140601P040152827153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DEL MAR CHIROPRACTIC CENTRE PROFIT SHARING PLAN","002","1987-01-01","DEL MAR CHIROPRACTIC CENTRE",,,"634 STEVENS AVENUE",,"SOLANA BEACH","CA","920752422",,,,,,,,,,,,,,,,,,"330082952","8584813793","621310","DEL MAR CHIROPRACTIC CENTRE",,"634 STEVENS AVENUE",,"SOLANA BEACH","CA","920752422",,,,,,,"330082952","8584813793",,,,"2011-10-14T14:06:01-0500","KENNY R. SHEPPARD, D.C.",,,,,4,4,0,0,4,0,4,4,0,,"2E3B3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014121427P030149024945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GROUP WELFARE PLAN FOR EMPLOYEES OF BAYER CORP.","501","1959-01-01","BAYER CORPORATION",,,"100 BAYER ROAD",,"PITTSBURGH","PA","152059741",,,,,,,,,,,,,,,,,,"251339219","4127772000","325410","BAYER BUSINESS AND TECHNOLOGY SERVICES LLC",,"100 BAYER ROAD",,"PITTSBURGH","PA","152059741",,,,,,,"061653779","4127772000",,,,"2011-10-14T09:51:10-0500","KEITH ABRAMS",,,,,24007,13992,9969,0,23961,,,,,,,"4A4B4D4E4F4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","29","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014133513P030149099697002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CC & R GUNLUND FARMS PROFIT SHARING PLAN PLAN","002","1997-01-01","C C & R GUNLUND FARMS",,"CHRIS GUNLUND","10616 S WEST AVENUE",,"FRESNO","CA","93706",,,,,,,,,,,,,,,,,,"942569029","5592667965","111300","C C & R GUNLUND FARMS","CHRIS GUNLUND","10616 S WEST AVENUE",,"FRESNO","CA","93706",,,,,,,"942569029","5592667965",,,,"2011-10-14T12:56:45-0500","CARL C GUNLUND",,,,,3,3,,,3,,3,,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014125159P040022918050001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"FANN CONTRACTING, INC. WELFARE BENEFIT PLAN","501","2005-04-01","FANN CONTRACTING, INC.",,,"1403 INDUSTRIAL WAY",,"PRESCOTT","AZ","86301",,,,,,,,,,,,,,,,,,"860213861","9287780170","237310","FANN CONTRACTING, INC.",,"1403 INDUSTRIAL WAY",,"PRESCOTT","AZ","86301",,,,,,,"860213861","9287780170",,,,"2011-10-14T12:28:25-0500","LINDA OBRIEN",,,,,203,292,0,0,292,,,,,,,"4A4B4D4E4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014125955P040152761825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WILLIS NORTH AMERICA INC. PENSION PLAN","001","1965-10-01","WILLIS NORTH AMERICA INC.",,,"26 CENTURY BLVD.",,"NASHVILLE","TN","372143695",,,,,,,,,,,,,,,,,,"135654526","6158726421","524210","WILLIS NORTH AMERICA INC.",,"26 CENTURY BLVD.",,"NASHVILLE","TN","372143695",,,,,,,"135654526","6158726421",,,,"2011-10-14T12:57:37-0500","JENNIFER NEIHOFF",,,,,8050,2386,2054,3233,7673,292,7965,,62,,"1A1D1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014150255P040152883089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HAMPDEN COUNTY PHYSICIAN ASSOCIATES, LLC. PROFIT SHARING PLAN","001","1987-07-01","HAMPDEN COUNTY PHYSICIAN ASSOCIATES, LLC.",,,"354 BIRNIE AVENUE, SUITE 202",,"SPRINGFIELD","MA","011071109",,,,,,,,,,,,,,,,,,"043435859","4137333470","621111","HAMPDEN COUNTY PHYSICIAN ASSOCIATES, LLC.",,"354 BIRNIE AVENUE, SUITE 202",,"SPRINGFIELD","MA","011071109",,,,,,,"043435859","4137333470",,,,"2011-10-14T14:56:44-0500","MARC GOLDMAN",,,,,352,317,0,34,351,0,351,306,0,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014150308P030022013122001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","1","0",,"SCHUYLER HOSPITAL EMPLOYEE RETIREMENT SAVINGS PLAN","002","2005-01-01","SCHUYLER HOSPITAL",,,"220 STEUBEN STREET",,"MONTOUR FALLS","NY","14865",,,,,,,,,,,,,,,,,,"150533564","6075358639","622000","SCHUYLER HOSPITAL",,"220 STEUBEN STREET",,"MONTOUR FALLS","NY","14865",,,,,,,"150533564","6075358639",,,,"2011-10-14T11:00:05-0500","TROY PRESTON","2011-10-14T11:00:05-0500","TROY PRESTON",,,499,526,11,0,537,0,537,526,0,,"2E2F2G2J3D2A",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014144801P030022010418001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RET. PLN AND TRUST AGREEMENT OF CHADBOURNE & PARKE","002","1968-01-01","CHADBOURNE & PARKE LLP",,,"30 ROCKEFELLER PLAZA",,"NEW YORK","NY","101120194",,,,,,,"30 ROCKEFELLER PLAZA",,"NEW YORK","NY","101120194",,,,,,,"134990295","2124085100","541110","CHADBOURNE & PARKE LLP",,"30 ROCKEFELLER PLAZA",,"NEW YORK","NY","101120194",,,,,,,"134990295","2124085100",,,,"2011-10-14T14:47:45-0500","TERRY WANG","2011-10-14T14:47:45-0500","GEORGE E. ZEITLIN, PARTNER",,,179,158,8,28,194,1,195,171,0,,"2A2E2F2G2R2T3B",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014144559P030022010082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAPITAL CONTRACTORS INC 401(K) PLAN","001","1998-01-01","CAPITAL CONTRACTORS INC",,,"88 DURYEA ROAD",,"MELVILLE","NY","11747",,,,,,,,,,,,,,,,,,"113411936","6314235748","561720","CAPITAL CONTRACTORS INC",,"88 DURYEA ROAD",,"MELVILLE","NY","11747",,,,,,,"113411936","6314235748","CAPITAL CONTRACTORS, INC.","113411936","001","2011-10-14T10:52:00-0500","SONYA PINTO",,,,,127,169,0,7,176,0,176,72,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014151712P030149183409007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ZENAR CORPORATION PROFIT SHARING PLAN AND TRUST","001","1978-12-08","ZENAR CORPORATION",,,"7301 SOUTH SIXTH STREET",,"OAK CREEK","WI","53154",,,,,,,,,,,,,,,,,,"391175385","2627641800","333100","ZENAR CORPORATION",,"7301 SOUTH SIXTH STREET",,"OAK CREEK","WI","53154",,,,,,,"391175385","2627641800",,,,"2011-10-14T10:03:54-0500","JOHN MAIWALD",,,,,163,98,12,38,148,0,148,144,3,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014142048P040004710979001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"ORBITEX FINANCIAL SERVICES GROUP, INC. 401K PLAN ORPHANED PLAN","001","2001-01-01","ORBITEX FINANCIAL SERVICES GROUP, INC.",,"JM PENSION ADVISORY, INC.","15807 CRABBS BRANCH WAY STE B",,"DERWOOD","MD","208556643",,,,,,,,,,,,,,,,,,"134088004","3014170099","523110","JACQUELINE M. CARMICHAEL","JM PENSION ADVISORY, INC.","15807 CRABBS BRANCH WAY STE B",,"DERWOOD","MD","208556643",,,,,,,"412069408","3014170099",,,,"2011-10-14T14:20:47-0500","JACQUELINE M CARMICHAEL",,,,,15,0,0,0,0,0,0,0,0,,"3D2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014142058P040022934674001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"DEFINITIVE HOMECARE 401(K) PLAN","001","2006-01-01","DEFINITIVE HOMECARE SOLUTIONS, LTD.",,,"707 PARK MEADOW ROAD",,"WESTERVILLE","OH","43081",,,,,,,"707 PARK MEADOW ROAD",,"WESTERVILLE","OH","43081",,,,,,,"311367426","8662774876","541519","DEFINITIVE HOMECARE SOLUTIONS, LTD.",,"707 PARK MEADOW ROAD",,"WESTERVILLE","OH","43081",,,,,,,"311367426","8662774876",,,,"2011-10-14T14:20:36-0500","STEVE SCHOLL",,,,,55,54,0,6,60,0,60,44,0,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143521P040686872624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CORDOVA/DICKERSON 401(K) PROFIT SHARING PLAN","001","1987-01-01","NATHAN C. DICKERSON, DDS",,,"2918 HILLRISE DRIVE",,"LAS CRUCES","NM","880114702",,,,,,,,,,,,,,,,,,"850428176","5755220821","621210","NATHAN C. DICKERSON, DDS",,"2918 HILLRISE DRIVE",,"LAS CRUCES","NM","880114702",,,,,,,"850428176","5755220821",,,,"2011-10-14T10:59:06-0500","NATHAN DICKERSON","2011-10-14T10:59:06-0500","NATHAN DICKERSON",,,7,4,0,2,6,0,6,6,0,,"2E2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014151344P040152894145001","2011-01-01","2011-01-03","4","M","0","0","1","1","0","0","0","0","0",,"BERWIND MASTER TRUST","003",,"BERWIND CORPORATION",,,"1500 MARKET STREET,",,"PHILADELPHIA","PA","191022173",,,,,,,"3000 CENTRE SQUARE WEST",,"PHILADELPHIA","PA","191022173",,,,,,,"230406815","2155632800",,"BERWIND CORPORATION",,"1500 MARKET STREET,",,"PHILADELPHIA","PA","191022173",,,,,,,"230406815","2155632800",,,,,,,,"2011-10-14T14:11:33-0500","DENNIS PIZZICA",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14",,"Filed with authorized/valid electronic signature", "20111014151850P030149184881001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SUPERIOR SUPPLY & STEEL 401K PLAN","001","1995-01-01","SENTRY SUPPLY INC.","SUPERIOR SUPPLY & STEEL",,"P.O. BOX 2388",,"SULPHUR","LA","70664",,,,,,,,,,,,,,,,,,"720890122","3376252300","423990","SENTRY SUPPLY INC.",,"P.O. BOX 2388",,"SULPHUR","LA","70664",,,,,,,"720890122","3376252300",,,,"2011-10-14T11:06:36-0500","WAYNE LEBERT","2011-10-14T08:33:34-0500","WAYNE LEBERT",,,194,156,0,24,180,0,180,90,11,,"2E2F2G2J2K2T3D3H",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014143210P040152854913001","2010-01-01","2010-12-31","2",,"0",,"0","0",,"1",,,,,"ROYAL BANCSHARES OF PENNSYLVANIA, INC. 401(K) PLAN","001","1984-10-01","ROYAL BANCSHARES OF PENNSYLVANIA, INC.",,,"732 MONTGOMERY AVENUE",,"NARBERTH","PA","19072",,,,,,,"732 MONTGOMERY AVENUE",,"NARBERTH","PA","19072",,,,,,,"231627866","6106684700","522110","ROYAL BANCSHARES OF PENNSYLVANIA, INC.",,"732 MONTGOMERY AVENUE",,"NARBERTH","PA","19072",,,,,,,"231627866","6106684700",,,,"2011-10-14T14:31:57-0500","NICHOLAS DEMEDIO",,,,,241,166,0,96,262,3,265,241,23,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143210P030149148673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MURRAY & TRETTEL, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","1969-08-01","MURRAY & TRETTEL, INC.",,,"600 FIRST BANK DRIVE, SUITE A",,"PALATINE","IL","60067",,,,,,,,,,,,,,,,,,"362540914","8479639000","541990","MURRAY & TRETTEL, INC.",,"600 FIRST BANK DRIVE, SUITE A",,"PALATINE","IL","60067",,,,,,,"362540914","8479639000",,,,"2011-10-14T10:45:02-0500","THOMAS R. PIAZZA",,,,,20,19,0,1,20,0,20,19,0,,"2E2G2J2K2O3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143537P040152857313003","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"GROUP LIFE, ACCIDENTAL DEATH AND DISBURSEMENT AND L.T. DISABILITY INSURANCE FOR THE EMPLOYEES OF CHESTNUT RIDGE COUNSELING SERVICES, INC.","501","2007-01-01","CHESTNUT RIDGE COUNSELING SERVICES,",,,"100 NEW SALEM ROAD, SUITE 116",,"UNIONTOWN","PA","15401",,,,,,,,,,,,,,,,,,"251196948","7244370729","624100","CHESTNUT RIDGE COUNSELING SERVICES,",,"100 NEW SALEM ROAD, SUITE 116",,"UNIONTOWN","PA","15401",,,,,,,"251196948","7244370729",,,,"2011-10-14T10:24:15-0500","MICHAEL QUINN",,,,,172,180,,,180,,,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014151407P030149180273001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ADVANCED H20, LLC 401(K) PLAN","001","2003-04-01","ADVANCED H20, LLC",,,"7853 SE 27TH ST.,SUITE 283",,"MERCER ISLAND","WA","98040",,,,,,,,,,,,,,,,,,"202855018","4258181365","424990","ADVANCED H20, LLC",,"7853 SE 27TH ST.,SUITE 283",,"MERCER ISLAND","WA","98040",,,,,,,"202855018","4258181365",,,,"2011-10-14T04:14:01-0500","DAVID BORGES",,,,,142,202,0,7,209,0,209,104,7,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014150103P040152881537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PLASTIC SURGERY ASSOCIATES, PC PROFIT SHARING PLAN","001","2002-01-01","PLASTIC SURGERY ASSOCIATES, PC",,,"1701 TILDEN AVE.",,"UTICA","NY","13413",,,,,,,,,,,,,,,,,,"830330321","3156015868","621111","PLASTIC SURGERY ASSOCIATES, PC",,"1701 TILDEN AVE.",,"UTICA","NY","13413",,,,,,,"830330321","3156015868",,,,"2011-10-14T15:00:19-0500","JANET MACKENZIE","2011-10-14T15:00:19-0500","JANET MACKENZIE",,,2,1,0,1,2,0,2,2,0,,"2E2F2G2J2K2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014141915P040152842001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPRINGFIELD COLLEGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1950-06-01","SPRINGFIELD COLLEGE",,,"263 ALDEN STREET",,"SPRINGFIELD","MA","011093797",,,,,,,,,,,,,,,,,,"042104329","4137483672","611000","SPRINGFIELD COLLEGE",,"263 ALDEN STREET",,"SPRINGFIELD","MA","011093788",,,,,,,"042104329","4137483672",,,,"2011-10-14T14:19:14-0500","ANN M. REILLY",,,,,2203,922,0,728,1650,0,1650,1272,0,,"2E2F2G2L2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014151546P040152896561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FULBRIGHT & JAWORSKI L.L.P. GROUP LONG TERM DISABILITY PLAN","509","1979-06-07","FULBRIGHT & JAWORSKI, L.L.P.",,,"1301 MCKINNEY SUITE 5100",,"HOUSTON","TX","770103095",,,,,,,,,,,,,,,,,,"741201087","7136515151","541110","FULBRIGHT & JAWORSKI, L.L.P.",,"1301 MCKINNEY SUITE 5100",,"HOUSTON","TX","770103095",,,,,,,"741201087","7136515151",,,,"2011-10-14T15:05:12-0500","MARK MILLER",,,,,1745,1614,0,4,1618,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014144650P040022939362001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RUNNERS DIVERSIFIED, INC. 401(K)PLAN","001","1984-01-01","RUNNERS DIVERSIFIED, INC.",,,"P. O. BOX 447 HIGHWAY 297 NORTH",,"VIDALIA","GA","304750447",,,,,,,,,,,,,,,,,,"581390913","9125373016","339900","RUNNERS DIVERSIFIED, INC.",,"P. O. BOX 447 HIGHWAY 297 NORTH",,"VIDALIA","GA","304750447",,,,,,,"581390913","9125373016",,,,"2011-10-14T14:46:48-0500","ALLEN RICE",,,,,628,306,0,94,400,0,400,298,7,,"2E2H2G2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014144704P040152866929001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"AUGUSTA COUNTRY CLUB 401(K) PLAN","003","1998-01-01","AUGUSTA COUNTRY CLUB",,,"655 MILLEDGE ROAD",,"AUGUSTA","GA","30904",,,,,,,"655 MILLEDGE ROAD",,"AUGUSTA","GA","30904",,,,,,,"580148720","7067339426","713900","AUGUSTA COUNTRY CLUB",,"655 MILLEDGE ROAD",,"AUGUSTA","GA","30904",,,,,,,"580148720","7067339426",,,,"2011-10-14T14:46:30-0500","KATHLEEN HANKINSON",,,,,142,98,0,33,131,0,131,121,12,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014152301P030149188465001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"THE ALBAN TRACTOR 401(K) PLAN","001","1957-01-01","ALBAN TRACTOR CO. INC.",,,"8531 PULASKI HWY",,"BALTIMORE","MD","212373005",,,,,,,,,,,,,,,,,,"521249063","4106867777","441229","ALBAN TRACTOR CO. INC.",,"8531 PULASKI HWY",,"BALTIMORE","MD","212373005",,,,,,,"521249063","4106867777",,,,"2011-10-14T15:22:51-0500","JOHN RYAN","2011-10-14T15:22:51-0500","JOHN RYAN",,,950,841,7,61,909,1,910,894,21,,"2E2F2G2J2K2S2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014143911P040152860497001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"DOW EMPLOYEES' PENSION PLAN","001","1947-06-01","THE DOW CHEMICAL COMPANY",,,"2030 DOW CENTER",,"MIDLAND","MI","48674",,,,,,,,,,,,,,,,,,"381285128","9896389157","325100","THE DOW CHEMICAL COMPANY U.S. PENSION LEADER",,"U.S. BENEFITS CENTER",,"MIDLAND","MI","48674",,,,,,,"381285128","9896389157",,,,"2011-10-13T21:31:03-0500","ANDREW FLOOD","2011-10-14T14:04:22-0500","DIANE DITTENHAFER",,,47223,15712,19243,7097,42052,5149,47201,,78,,"1C1E1G1A3F3H1B",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014145212P030024528374001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ICD-INTERNATIONAL CENTER FOR THE DISABLED PENSION PLAN","001","1957-01-01","ICD-INTERNATIONAL CENTER FOR THE DISABLED",,,"340 EAST 24TH ST",,"NEW YORK","NY","100104019",,,,,,,"340 EAST 24TH ST",,"NEW YORK","NY","100104019",,,,,,,"135562990","2125856009","621498","LES HALPERT",,"340 EAST 24TH ST",,"NEW YORK","NY","100104019",,,,,,,"135562990","2125856009",,,,"2011-10-14T10:55:00-0500","LES HALPERT",,,,,245,55,92,93,240,1,241,,1,,"1G1I3H",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014142702P040152849169001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"LENAWEE STAMPING CORPORATION RETIREMENT SAVINGS PLAN","001","1990-01-01","LENAWEE STAMPING CORPORATION",,,"1200 E CHICAGO BLVD",,"TECUMSEH","MI","49286",,,,,,,"1200 E CHICAGO BLVD",,"TECUMSEH","MI","49286",,,,,,,"382773746","5174232400","332110","LENAWEE STAMPING CORPORATION",,"1200 E CHICAGO BLVD",,"TECUMSEH","MI","49286",,,,,,,"382773746","5174232400",,,,"2011-10-14T14:26:13-0500","ROYDON STROM",,,,,367,534,1,43,578,0,578,345,2,,"2E2F2G2J2K2S2T3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014144941P030022010962001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BELCO COMMUNITY CR UN CAPITAL ACCUMULATION PLAN","033","1983-01-01","BELCO COMMUNITY CR UN",,,"449 EISENHOWER BLVD",,"HARRISBURG","PA","17111",,,,,,,,,,,,,,,,,,"231445884","7172323526","522130","BELCO COMMUNITY CR UN",,"449 EISENHOWER BLVD",,"HARRISBURG","PA","17111",,,,,,,"231445884","7172323526",,,,"2011-10-14T10:53:37-0500","LONNY J. MAURER","2011-10-14T10:53:37-0500","LONNY J. MAURER",,,181,149,0,45,194,1,195,172,5,,"2E2G2J2T3D2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014151514P040152896017007","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"BODY3 FITNESS CLUBS, INC. 401(K)PROFIT SHARING PLAN","001","2008-05-22","BODY3 FITNESS CLUBS, INC.",,"THOMAS JACKOBS","1987 W TC JESTER BLVD.",,"HOUSTON","TX","77008",,,,,,,,,,,,,,,,,,"262620041","7132401529","713900","BODY3 FITNESS CLUBS, INC.","THOMAS JACKOBS","1987 W TC JESTER BLVD.",,"HOUSTON","TX","77008",,,,,,,"262620041","7132401529",,,,"2011-10-14T15:11:13-0500","THOMAS JACKOBS","2011-10-14T15:11:29-0500","THOMAS JACKOBS",,,1,3,0,0,3,0,3,1,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014143550P040152857537010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WAIKIKI TRADER CORP. RETIREMENT SAVING PLAN","001","1994-01-01","WAIKIKI TRADER CORP",,,"99-061 KOAHA WAY",,"AIEA","HI","967013268",,,,,,,"99-061 KOAHA WAY",,"AIEA","HI","967013268",,,,,,,"990187289","8084837600","453220","WAIKIKI TRADER CORP",,"99-061 KOAHA WAY",,"AIEA","HI","967013268",,,,,,,"990187289","8084837600",,,,"2011-10-15T11:07:14-0500","DEBRA A. MEDEIROS",,,,,227,137,,22,159,,159,88,,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","4","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014142131P040022934882001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONSUL-TECH ENTERPRISES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2005-01-01","CONSUL-TECH ENTERPRISES, INC.",,,"3141 COMMERCE PARKWAY",,"MIRIMAR","FL","33025",,,,,,,,,,,,,,,,,,"651123417","9544384300","541330","CONSUL-TECH ENTERPRISES, INC.",,"3141 COMMERCE PARKWAY",,"MIRIMAR","FL","33025",,,,,,,"651123417","9544384300",,,,"2011-10-14T14:19:30-0500","CARLOS MALLOL","2011-10-14T14:20:21-0500","CARLOS MALLOL",,,341,61,102,178,341,0,341,341,0,,"2I3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014144133P040152862577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACCURATE INVENTORY AND CALCULATING SERVICES, INC. 401(K) PROFIT SHARING PLAN","001","2002-04-01","ACCURATE INVENTORY AND CALCULATING SERVICES, INC.",,,"4284 NORTH HIGH STREET",,"COLUMBUS","OH","43214",,,,,,,,,,,,,,,,,,"310802227","6142611190","561490","ACCURATE INVENTORY AND CALCULATING SERVICES, INC.",,"4284 NORTH HIGH STREET",,"COLUMBUS","OH","43214",,,,,,,"310802227","6142611190",,,,"2011-10-14T14:34:44-0500","PAMELA HOYT",,,,,197,137,0,28,165,0,165,158,0,,"2E2F2G2T2J2K2S3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014152430P040152903857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JG MANAGEMENT SERVICES, INC. 401(K) PLAN","001","1994-01-01","JG MANAGEMENT SERVICES, INC.",,,"235 PEACHTREE STREET NE","SUITE 1400","ATLANTA","GA","30303",,,,,,,"235 PEACHTREE STREET NE","SUITE 1400","ATLANTA","GA","30303",,,,,,,"208604523","4042531300","541519","JG MANAGEMENT SERVICES, INC.",,"235 PEACHTREE STREET NE","SUITE 1400","ATLANTA","GA","30303",,,,,,,"208604523","4042531300","G.T. SOFTWARE, INC.","208604523","001","2011-10-14T15:23:47-0500","ERIC NELSON",,,,,61,69,0,0,69,1,70,52,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014144218P040022938322001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"B. BRAUN MEDICAL, INC. PENSION PLAN","002","1981-09-01","B. BRAUN MEDICAL, INC.",,,"824 TWELFTH AVENUE",,"BETHLEHEM","PA","18018",,,,,,,,,,,,,,,,,,"232116774","6106915400","339110","B. BRAUN MEDICAL, INC.",,"824 TWELFTH AVENUE",,"BETHLEHEM","PA","18018",,,,,,,"232116774","6106915400",,,,"2011-10-14T14:40:35-0500","ALEXIS TORRES",,,,,5981,3946,618,1308,5872,56,5928,,129,,"1A1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014150424P040050452439001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAIN AND HAIL INSURANCE SERVICE INC HEALTH REIMBURSEMENT ARRANGEMENT","502","1984-01-01","RAIN AND HAIL INSURANCE SERVICE, INC.",,,"9200 NORTHPARK DRIVE","SUITE 300","JOHNSTON","IA","501313006",,,,,,,"9200 NORTHPARK DRIVE","SUITE 300","JOHNSTON","IA","501313006",,,,,,,"421143506","5155591000","524290","RAIN AND HAIL INSURANCE SERVICE, INC.",,"9200 NORTHPARK DRIVE","SUITE 300","JOHNSTON","IA","501313006",,,,,,,"421143506","5155591000",,,,"2011-10-14T14:31:29-0500","ROBERT HANEY",,,,,385,390,,31,421,,421,,,,,"4A4D4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014150427P030149172625002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"NEW FRONTIER ADVISORS, LLC 401(K) PROFIT SHARING PLAN","001","2005-01-01","NEW FRONTIER ADVISORS, LLC",,,"10 HIGH STREET","SUITE 802","BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"043480499","6174821433","523900","NEW FRONTIER ADVISORS, LLC",,"10 HIGH STREET","SUITE 802","BOSTON","MA","02110",,,,,,,"043480499","6174821433",,,,"2011-10-14T04:04:10-0500","SHEVAWN HARDESTY",,,,,15,12,0,3,15,0,15,15,0,,"2A2E2F2J2K2R3D3H2G",,,,"1",,,"1",,,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014150427P030149172625001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"NORTHWEST RESTORATION 401(K) RETIREMENT PLAN","001","2007-01-01","NORTHWEST RESTORATION, INC.",,,"1380 N. OAK GROVE ROAD",,"SPRINGDALE","AR","72762",,,,,,,,,,,,,,,,,,"710822298","4057507821","811310","NORTHWEST RESTORATION, INC.",,"1380 N. OAK GROVE ROAD",,"SPRINGDALE","AR","72762",,,,,,,"710822298","4057507821",,,,"2011-10-14T04:04:11-0500","LYNDA DAVIS",,,,,22,23,0,0,23,,23,18,2,,"2E2F2G2J2K3D2T",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143026P030022007410016","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"FAGELSON SCHONBERGER PAYNE & DEICHMEISTER MONEY PURCHASE PLAN","001","1977-01-01","FAGELSON SCHONBERGER PAYNE & DEICHMEISTER",,,"407 CHURCH ST NE SUITE A",,"VIENNA","VA","22180",,,,,,,,,,,,,,,,,,"540525725","7036212334","541110","FAGELSON SCHONBERGER PAYNE & DEICH MONEY PURCHASE PLAN","ROBERT PAYNE","407 CHURCH ST NE SUITE A",,"VIENNA","VA","22180",,,,,,,"540525725","7036212334",,,,"2011-10-13T10:21:59-0500","ROBERT A PAYNE","2011-10-14T14:26:47-0500","ROBERT A PAYNE",,,1,0,1,0,1,0,1,1,,,"2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014145916P040152879745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHICO COFFMAN TANK TRUCKS 401K PLAN","001","2008-01-01","CHICO COFFMAN TANK TRUCKS INC",,,"PO BOX 9",,"CHICO","TX","76431",,,,,,,,,,,,,,,,,,"030506739","9406442664","484120","CHICO COFFMAN TANK TRUCKS INC",,"PO BOX 9",,"CHICO","TX","76431",,,,,,,"030506739","9406442664",,,,"2011-10-14T14:59:03-0500","D MARK TYLER",,,,,162,139,0,4,143,0,143,34,0,,"2E2F2G2J2K3E",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143846P030149153585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ORIX FINANCIAL SERVICES, INC. RETIREMENT PLAN","002","1989-09-18","ORIX USA CORPORATION",,,"1717 MAIN STREET, SUITE 800",,"DALLAS","TX","75201",,,,,,,,,,,,,,,,,,"132507476","2142372233","522220","ORIX USA CORPORATION",,"1717 MAIN STREET, SUITE 800",,"DALLAS","TX","75201",,,,,,,"132507476","2142372233",,,,"2011-10-14T08:44:32-0500","SUE RHODES","2011-10-14T10:41:35-0500","DEBBIE DOUGLASS",,,627,3,191,432,626,0,626,,0,,"1A1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014143948P040152861121001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MCLANAHAN CORPORATION EMPLOYEES' PROFIT SHARING RETIREMENT PLAN","001","1951-01-01","MCLANAHAN CORPORATION",,,"200 WALL STREET",,"HOLLIDAYSBURG","PA","16648",,,,,,,"200 WALL STREET",,"HOLLIDAYSBURG","PA","16648",,,,,,,"230861150","8146959807","333100","MCLANAHAN CORPORATION",,"200 WALL STREET",,"HOLLIDAYSBURG","PA","16648",,,,,,,"230861150","8146959807",,,,"2011-10-14T13:49:03-0500","DIANE MCLANAHAN","2011-10-14T14:29:46-0500","GEORGE SIDNEY",,,277,235,1,30,266,0,266,253,13,,"2E2F2G2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014145251P030692480512001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"HIUGA, GREGG & FINEGAN 401(K) PROFIT SHARING PLAN","002","1988-01-01","HIUGA, GREGG & FINEGAN",,,"2277 FAIR OAKS BLVD., STE 355",,"SACRAMENTO","CA","95825",,,,,,,,,,,,,,,,,,"942184950","9169273120","621111","HIUGA, GREGG & FINEGAN",,"2277 FAIR OAKS BLVD., STE 355",,"SACRAMENTO","CA","95825",,,,,,,"942184950","9169273120",,,,"2011-10-14T03:52:25-0500","MARY FINEGAN",,,,,18,12,0,5,17,0,17,17,0,,"2A2E2H2J2K2R3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014145323P040152874209001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PSYOP, INC. 401(K) PLAN","001","2001-01-01","PSYOP, INC.",,,"124 RIVINGTON ST",,"NEW YORK","NY","10002",,,,,,,"124 RIVINGTON ST",,"NEW YORK","NY","10002",,,,,,,"134108103","2125339055","541800","PSYOP, INC.",,"124 RIVINGTON ST",,"NEW YORK","NY","10002",,,,,,,"134108103","2125339055",,,,"2011-10-14T14:53:05-0500","THOMAS BOYLE",,,,,130,96,0,34,130,0,130,104,0,,"2E2F2G2J2K2T3H3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014143846P030149153569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YOUNG WILLIAMS, P.C. 401 (K) PROFIT SHARING PLAN","001","1994-07-01","YOUNG WILLIAMS, P.C.",,,"P.O. BOX 23458",,"JACKSON","MS","392253458",,,,,,,"2000 REGIONS BANK BUILDING",,"JACKSON","MS","39201",,,,,,,"640847009","6019486100","541110","YOUNG WILLIAMS, P.C.",,"P.O. BOX 23458",,"JACKSON","MS","392253458",,,,,,,"640847009","6019486100",,,,"2011-10-14T13:42:31-0500","JAMES R. LEWIS","2011-10-14T13:42:31-0500","JAMES R. LEWIS",,,612,601,1,84,686,0,686,338,49,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014152504P040022947362001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"KINGS DAUGHTERS HOSPITAL PROFIT SHARING PLAN","001","1989-03-01","KINGS DAUGHTERS HOSPITAL",,,"823 GRAND AVE",,"YAZOO CITY","MS","391943233",,,,,,,,,,,,,,,,,,"640844470","6627462261","622000","KINGS DAUGHTERS HOSPITAL",,"823 GRAND AVE",,"YAZOO CITY","MS","391943233",,,,,,,"640844470","6017462261",,,,"2011-10-14T15:23:25-0500","DARYL WEAVER",,,,,134,79,0,30,109,0,109,103,0,,"2E2G3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014145739P040152878337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DATACERT INC. HEALTH AND WELFARE PLAN","501","1998-06-01","DATACERT, INC.",,,"3040 POST OAK BLVD., SUITE 1900",,"HOUSTON","TX","770566528",,,,,,,"3040 POST OAK BLVD., SUITE 1900",,"HOUSTON","TX","770566528",,,,,,,"760566875","8323696010","518210","DATACERT, INC.",,"3040 POST OAK BLVD., SUITE 1900",,"HOUSTON","TX","770566528",,,,,,,"760566875","8323696010",,,,"2011-10-14T08:41:12-0500","D. MARK POAG",,,,,116,129,1,0,130,,130,,,,,"4A4B4D4E4F4H4L","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014150714P040686994512001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"KANSAS LEGAL SERVICES INC. EMPLOYEE LIFE PLAN","504","1992-06-01","KANSAS LEGAL SERVICES, INC.",,,"712 S KANSAS AVE., SUITE 200",,"TOPEKA","KS","66603",,,,,,,,,,,,,,,,,,"480872528","7852705627","541110","KANSAS LEGAL SERVICES, INC.",,"712 S KANSAS AVE., SUITE 200",,"TOPEKA","KS","66603",,,,,,,"480872528","7852705627",,,,"2011-10-14T14:50:47-0500","MARILYN HARP",,,,,127,126,0,0,126,0,126,0,0,0,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014151622P040152897217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARKET STRATEGIES, INC. EMPLOYEE GROUP TERM HEALTH, LIFE AND DISABILITY INSURANCE PLAN","501","1989-08-03","MARKET STRATEGIES, INC.",,,"17430 COLLEGE PARKWAY",,"LIVONIA","MI","481522363",,,,,,,"17430 COLLEGE PARKWAY",,"LIVONIA","MI","481522363",,,,,,,"382882316","7345427600","541990","MARKET STRATEGIES, INC.",,"17430 COLLEGE PARKWAY",,"LIVONIA","MI","481522363",,,,,,,"382882316","7345427600",,,,"2011-10-14T14:54:31-0500","MICHAEL PETERS",,,,,535,247,1,,248,,248,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014144245P040022938482001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"HILTON HEAD HOSPITALITY 401(K) PLAN","001","2004-01-01","HILTON HEAD HOSPITALITY",,,"1014C WILLIAM HILTON PARKWAY",,"HILTON HEAD","SC","29928",,,,,,,"1014C WILLIAM HILTON PARKWAY",,"HILTON HEAD","SC","29928",,,,,,,"010700933","8438425583","561420","HILTON HEAD HOSPITALITY",,"1014C WILLIAM HILTON PARKWAY",,"HILTON HEAD","SC","29928",,,,,,,"010700933","8438425583",,,,"2011-10-14T14:42:05-0500","JOCELYN BLACK",,,,,112,113,0,10,123,1,124,45,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014150437P040152884689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WELLSCO FIELD SERVICES, LLC 401(K) PROFIT SHARING PLAN","001","2008-08-01","WELLSCO FIELD SERVICES, LLC",,,"7670 WOODWAY DRIVE, SUITE 210",,"HOUSTON","TX","77063",,,,,,,,,,,,,,,,,,"261469187","7137891650","211110","WELLSCO FIELD SERVICES, LLC",,"7670 WOODWAY DRIVE, SUITE 210",,"HOUSTON","TX","77063",,,,,,,"261469187","7137891650",,,,"2011-10-14T15:06:28-0500","BRIAN TANNER","2011-10-14T15:06:28-0500","BRIAN TANNER",,,132,271,1,8,280,0,280,14,2,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014151639P040687027040001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PACKAGING TECHNOLOGIES PENSION PLAN FOR HOURLY EMPLOYEES","002","1976-01-01","PACKAGING TECHNOLOGIES INC.",,,"807 WEST KIMBERLY ROAD",,"DAVENPORT","IA","52808",,,,,,,,,,,,,,,,,,"362236243","5633911100","339900","PACKAGING TECHNOLOGIES INC.",,"807 WEST KIMBERLY ROAD",,"DAVENPORT","IA","52808",,,,,,,"362236243","5633911100",,,,"2011-10-14T15:15:16-0500","SUZANNE ZEITLER",,,,,145,56,50,23,129,15,144,,0,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014144518P040152865585013","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"IBEW NO 743 HEALTH & WELFARE","501","1962-07-11","IBEW NO 743 HEALTH & WELFARE NO 743 HEALTH & WELFARE",,"BOARD OF TRUSTEES","20 MORGAN DRIVE",,"READING","PA","19608",,,,,,,,,,,,,,,,,,"236299525","6107773150","238210","IBEW NO 743 HEALTH & WELFARE NO 743 HEALTH & WELFARE","BOARD OF TRUSTEES","20 MORGAN DRIVE",,"READING","PA","19608",,,,,,,"236299525","6107773150",,,,"2011-10-14T14:39:24-0500","MELVIN FISHBURN","2011-10-14T14:40:33-0500","DAVID PASKOWSKI",,,583,574,100,0,674,,,,,68,,"4A4B4D4F4L4E",,,"1",,"1",,"1",,,,,"1",,"1","7","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014172734P030149312417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAISER PERMANENTE SUPPLEMENTAL SAVINGS AND RETIREMENT PLAN","003","1968-01-01","KAISER FOUNDATION HEALTH PLAN, INC.",,,"ONE KAISER PLAZA","SUITE 2001","OAKLAND","CA","94612",,,,,,,,,,,,,,,,,,"941340523","5102715940","621491","KAISER FOUNDATION HEALTH PLAN, INC.",,"ONE KAISER PLAZA","SUITE 2001","OAKLAND","CA","94612",,,,,,,"941340523","5102715940",,,,"2011-10-14T13:03:47-0500","HARRIET GUBERMAN",,,,,36990,32360,158,6441,38959,21,38980,38180,0,,"2C2F2G2K2R2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014191239P030022058626001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ST. BENEDICT HEALTH CENTER TAX DEFERRED ANNUITY PLAN","004","2009-01-01","ST. BENEDICT HEALTH CENTER",,,"401 W GLYNN DR",,"PARKSTON","SD","57366",,,,,,,,,,,,,,,,,,"460226738","6059283311","622000","ST. BENEDICT HEALTH CENTER",,"401 W GLYNN DR",,"PARKSTON","SD","57366",,,,,,,"460226738","6059283311",,,,"2011-10-14T15:00:44-0500","GALE N. WALKER","2011-10-14T15:00:44-0500","GALE N. WALKER",,,234,229,0,10,239,0,239,158,0,,"2F2G2L2T2S",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014192307P030149437745001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"NISC HOLDINGS, LLC 401(K) PROFIT SHARING PLAN","001","2009-12-31","CLAUDIUS MAXIMUS, LLC",,"DC CAPITAL PARTNERS, LLC","975 F STREET NW",,"WASHINGTON","DC","20004",,,,,,,,,,,,,,,,,,"260420616","2027375366","519100","CLAUDIUS MAXIMUS, LLC","DC CAPITAL PARTNERS, LLC","975 F STREET NW",,"WASHINGTON","DC","20004",,,,,,,"260420616","2027375366",,,,"2011-10-14T15:13:28-0500","CHARLOTTE CLARK","2011-10-14T15:13:28-0500","CHARLOTTE CLARK",,,1192,913,0,292,1205,0,1205,964,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014155451P030149219297001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ANDERSEN CORPORATION EMPLOYEES' PENSION AND RETIREMENT PLAN","001","1950-11-01","ANDERSEN CORPORATION",,"ESC MN-126-0117","100 4TH AVE N",,"BAYPORT","MN","550031096",,,,,,,,,,,,,,,,,,"410123208","6512645548","321900","ANDERSEN CORPORATION","ESC MN-126-0117","100 4TH AVE N",,"BAYPORT","MN","550031096",,,,,,,"410123208","6512645548",,,,"2011-10-14T15:38:26-0500","KATHY PRONDZINSKI","2011-10-14T15:38:26-0500","KATHY PRONDZINSKI",,,9756,4203,2088,3010,9301,304,9605,,48,,"1A1B1G3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","4","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014160030P030149225409019","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"NATIONAL LIFT TRUCK COMPANIES PROFIT SHARING 401K PLAN AND TRUST","003","1998-02-01","NATIONAL LIFT TRUCK, INC.",,,"3333 MT. PROSPECT ROAD",,"FRANKLIN PARK","IL","60131",,,,,,,,,,,,,,,,,,"362960004","6307821000","423800","NATIONAL LIFT TRUCK, INC.",,"3333 MT. PROSPECT ROAD",,"FRANKLIN PARK","IL","60131",,,,,,,"362960004","6307821000",,,,"2011-10-14T15:53:55-0500","JOHN SHAHINIAN","2011-10-14T15:54:26-0500","JOHN SHAHINIAN",,,160,65,0,79,144,1,145,145,5,,"2A2E2G2J2K2R",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014160014P030692716160001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BMPC - BETTIS INVOLUNTARY SEPARATION PLAN","515","2000-01-01","BECHTEL MARINE PROPULSION CORP. - BETTIS",,,"814 PITTSBURGH - MCKEESPORT BLVD.",,"WEST MIFFLIN","PA","15122",,,,,,,,,,,,,,,,,,"262569722","4124766000","541700","BECHTEL MARINE PROPULSION CORP. - BETTIS",,"814 PITTSBURGH - MCKEESPORT BLVD.",,"WEST MIFFLIN","PA","15122",,,,,,,"262569722","4124766000",,,,"2011-10-14T11:36:24-0500","JANEY DYGERT","2011-10-14T11:36:24-0500","JANEY DYGERT",,,3092,3127,0,0,3127,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014160608P030692735168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RED BELL REAL ESTATE, LLC 401(K) PLAN","001","2007-04-01","RED BELL REAL ESTATE, LLC",,,"1415 SOUTH MAIN STREET",,"SALT LAKE CITY","UT","84115",,,,,,,,,,,,,,,,,,"260888688","8014834316","541219","RED BELL REAL ESTATE, LLC",,"1415 SOUTH MAIN STREET",,"SALT LAKE CITY","UT","84115",,,,,,,"260888688","8014834316","406 MANAGEMENT, LLC","870747377","001","2011-10-14T11:36:22-0500","JEFFREY J. JONAS","2011-10-14T11:36:22-0500","JEFFREY J. JONAS",,,137,125,1,28,154,0,154,86,4,,"2J2K2E2F2G3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014185858P030149410433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE BELDEN BRICK 401(K) PLAN","006","1990-01-01","THE BELDEN BRICK COMPANY",,,"700 WEST TUSCARAWAS STREET",,"CANTON","OH","44702",,,,,,,,,,,,,,,,,,"203803246","3304560031","327100","THE BELDEN BRICK COMPANY",,"700 WEST TUSCARAWAS STREET",,"CANTON","OH","44702",,,,,,,"203803246","3304560031",,,,"2011-10-14T14:44:11-0500","JAMES M LEAHY",,,,,586,488,,59,547,5,552,522,2,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014191655P030149430385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WOODLAND VILLAGE NURSING HOME 401(K) PLAN","001","1993-01-01","WOODLAND VILLAGE NURSING HOME",,,"430 MANOR DRIVE",,"SURING","WI","54174",,,,,,,,,,,,,,,,,,"391396228","9208422141","623000","WOODLAND VILLAGE NURSING HOME",,"430 MANOR DRIVE",,"SURING","WI","54174",,,,,,,"391396228","9208422141",,,,"2011-10-14T15:06:34-0500","STEVE TADISCH","2011-10-14T15:06:34-0500","STEVE TADISCH",,,222,172,0,29,201,0,201,176,26,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014154911P040152930145001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"UNO-VEN SAVINGS AND INVESTMENT PLAN","002","1989-12-01","PDV MIDWEST REFINING L.L.C.",,"CITGO PETROLEUM CORPORATION","PO BOX 4689",,"HOUSTON","TX","772104689",,,,,,,,,,,,,,,,,,"364138789","8324864000","324110","BENEFIT PLANS COMMITTEE","CITGO PETROLEUM CORPORATION","PO BOX 4689",,"HOUSTON","TX","772104689",,,,,,,"731195676","8324864000",,,,"2011-10-14T15:44:44-0500","ALBERTO RAMIREZ","2011-10-14T13:37:47-0500","JOHN BUTTS",,,418,308,0,53,361,0,361,339,,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014155032P040152931217001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"REI SYSTEMS, INC. 401(K) PLAN","001","2000-07-01","REI SYSTEMS, INC",,,"14325 WILLARD RD","SUITE 200","CHANTILLY","VA","20151",,,,,,,"14325 WILLARD RD","SUITE 200","CHANTILLY","VA","20151",,,,,,,"541650603","7032300011","541511","REI SYSTEMS, INC",,"14325 WILLARD RD","SUITE 200","CHANTILLY","VA","20151",,,,,,,"541650603","7032300011",,,,"2011-10-14T13:54:13-0500","LISA CHABOUDY","2011-10-14T15:42:56-0500","VEER BHARTIYA",,,302,385,0,72,457,0,457,426,31,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014172332P030693006288001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPLOYEE BENEFIT PLAN OF CHUCK-A-RAMA BUFFET, INC.","001","1996-01-01","CHUCK-A-RAMA BUFFET, INC.",,,"744 E 400 S",,"SALT LAKE CITY","UT","84102",,,,,,,,,,,,,,,,,,"870274330","8014333663","722210","CHUCK-A-RAMA BUFFET, INC.",,"744 E 400 S",,"SALT LAKE CITY","UT","84102",,,,,,,"870274330","8014333663",,,,"2011-10-14T12:58:38-0500","DUANE MOSS","2011-10-14T12:58:38-0500","DUANE MOSS",,,153,126,0,20,146,0,146,146,1,,"2E",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014172341P030693006640001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOSPEL LIGHT PUBLICATIONS EMPLOYEE STOCK OWNERSHIP PLAN","004","1994-07-01","GOSPEL LIGHT PUBLICATIONS",,,"1957 EASTMAN",,"VENTURA","CA","93003",,,,,,,,,,,,,,,,,,"952136097","8056449720","511130","GOSPEL LIGHT PUBLICATIONS",,"1957 EASTMAN",,"VENTURA","CA","93003",,,,,,,"952136097","8056449720",,,,"2011-10-14T12:25:03-0500","MIKE HAWKS",,,,,218,74,13,111,198,0,198,198,6,,"2I2O",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014173349P030022037074001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"403(B) THRIFT PLAN OF FLORENCE CRITTENTON AGENCY","002","1992-01-01","FLORENCE CRITTENTON AGENCY",,,"1531 DICK LONAS RD",,"KNOXVILLE","TN","37909",,,,,,,,,,,,,,,,,,"626044288","8656022021","624100","FLORENCE CRITTENTON AGENCY",,"1531 DICK LONAS RD",,"KNOXVILLE","TN","37909",,,,,,,"626044288","8656022021",,,,"2011-10-14T13:08:54-0500","KAREN BROWN","2011-10-14T13:08:54-0500","KAREN BROWN",,,82,50,0,37,87,1,88,88,0,,"2L",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014191021P030149421057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MGH HEALTHCARE SYSTEM, INC. 401(K) PS PLAN","002","2002-03-01","MONTGOMERY GENERAL HOSPITAL",,,"401 6TH AVENUE",,"MONTGOMERY","WV","251360270",,,,,,,,,,,,,,,,,,"550372580","3044427437","622000","MONTGOMERY GENERAL HOSPITAL",,"401 6TH AVENUE",,"MONTGOMERY","WV","251360270",,,,,,,"550372580","3044427437",,,,"2011-10-14T14:57:18-0500","KELLY FRYE",,,,,420,280,0,148,428,0,428,386,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014190225P030149414273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARCELORMITTAL TUBULAR PRODUCTS SAVINGS PLAN","006","1984-01-01","ARCELORMITTAL TUBULAR PRODUCTS USA CORPORATION",,,"FOUR GATEWAY CENTER","SUITE 600","PITTSBURGH","PA","152221211",,,,,,,,,,,,,,,,,,"980467860","4193421200","331110","ARCELORMITTAL TUBULAR PRODUCTS USA CORPORATION",,"FOUR GATEWAY CENTER","SUITE 600","PITTSBURGH","PA","152221211",,,,,,,"980467860","4193421200",,,,"2011-10-14T14:48:21-0500","JEANNE B. CLARK","2011-10-14T14:48:21-0500","JEANNE B. CLARK",,,250,176,0,65,241,0,241,241,1,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014152321P040687053072001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NORTHWEST CENTER FOR REPRODUCTIVE SCIENCES 401K PLAN","001","2005-01-01","NORTHWEST CENTER FOR REPRODUCTIVE SCIENCES, LLC",,,"1730 MINOR AVE.","SUITE150","SEATTLE","WA","98101",,,,,,,"1730 MINOR AVE.","SUITE150","SEATTLE","WA","98101",,,,,,,"201252257","2062621101","621510","JAMES G. SCHRANK",,"12333 NE 130TH LANE, SUITE 220",,"KIRKLAND","WA","98034",,,,,,,"422809401","4252843536",,,,"2011-10-14T15:22:57-0500","CLAUDE WHITE",,,,,33,30,0,8,38,0,38,25,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014152932P030149195473006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SAMBREEL HOLDINGS LLC 401(K) PROFIT SHARING PLAN AND TRUST","001","2009-01-01","SAMBREEL HOLDINGS LLC",,,"2701 LOKER AVENUE WEST, SUITE 200",,"CARLSBAD","CA","92010",,,,,,,"2701 LOKER AVENUE WEST, SUITE 200",,"CARLSBAD","CA","92010",,,,,,,"273774308",,"541511","SAMBREEL HOLDINGS LLC",,"2701 LOKER AVENUE WEST, SUITE 200",,"CARLSBAD","CA","92010",,,,,,,"273774308",,"YONTOO TECHNOLOGY, INC.","262332668","001","2011-10-14T08:26:12-0500","KAI HANKINSON","2011-10-14T08:26:12-0500","KAI HANKINSON",,,8,32,0,3,35,0,35,35,,,"2A2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014152932P030149195473004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SONESTA INTERNATIONAL HOTELS CORP & SUBS 401K PLAN","016","1993-07-01","SONESTA INTERNATIONAL HOTELS CORPORATION",,,"116 HUNTINGTON AVENUE, SUITE #9",,"BOSTON","MA","021165746",,,,,,,,,,,,,,,,,,"135648107","6174215400","721110","SONESTA INTERNATIONAL HOTELS CORPORATION",,"116 HUNTINGTON AVENUE, SUITE #9",,"BOSTON","MA","021165746",,,,,,,"135648107","6174215400",,,,"2011-10-14T11:23:30-0500","BOY VAN RIEL",,,,,763,661,,92,753,3,756,448,,,"2G2K2T3D3H",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014154111P040004714403001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"FINZER ROLLER, INC. SALARY SAVINGS PLAN","001","1969-07-01","FRC HOLDING CORP.",,,"129 RAWLS RD.",,"DES PLAINES","IL","60018",,,,,,,"129 RAWLS RD.",,"DES PLAINES","IL","60018",,,,,,,"362674349","8473906200","326200","FRC HOLDING CORP.",,"129 RAWLS RD.",,"DES PLAINES","IL","60018",,,,,,,"362674349","8473906200",,,,"2011-10-14T15:40:39-0500","DAVID FINZER",,,,,213,190,0,19,209,2,211,204,4,,"2E2F2G2J2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014155221P040152932561001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"THE MIZUHO SECURITIES USA INC SEVERANCE PLAN","502","2007-01-01","MIZUHO SECURITIES USA INC",,,"111 RIVER STREET","SUITE 1100","HOBOKEN","NJ","07030",,,,,,,"111 RIVER STREET","SUITE 1100","HOBOKEN","NJ","07030",,,,,,,"362880742","2016261248","523120","MIZUHO SECURITIES USA INC",,"111 RIVER STREET","SUITE 1100","HOBOKEN","NJ","07030",,,,,,,"362880742","2016261248",,,,"2011-10-14T15:50:02-0500","DAVID KRONENBERG",,,,,251,295,,,295,,295,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014155234P040152932705001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FAUST DISTRIBUTING CO. EMPLOYEE BENEFIT PLAN","501","1988-02-01","FAUST DISTRIBUTING CO. INC.",,,"10040 I 10 EAST",,"HOUSTON","TX","77029",,,,,,,,,,,,,,,,,,"760239462","7136715111","424800","FAUST DISTRIBUTING CO. INC.",,"10040 I 10 EAST",,"HOUSTON","TX","77029",,,,,,,"760239462","7136715111",,,,"2011-10-14T10:50:29-0500","DONALD CHANCELLOR",,,,,207,,210,,210,,210,,,,,"4A4B4D4E4F4H4Q",,,"1",,"1",,"1",,,,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014165813P030149283905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CATELLI BROTHERS, INC 401(K) PROFIT SHARING PLAN","001","1984-12-31","CATELLI BROTHERS, INC",,,"50 FERRY AVENUE",,"COLLINGSWOOD","NJ","08103",,,,,,,,,,,,,,,,,,"232175736","8568699293","311610","CATELLI BROTHERS, INC",,"50 FERRY AVENUE",,"COLLINGSWOOD","NJ","08103",,,,,,,"232175736","8568699293",,,,"2011-10-14T12:39:07-0500","NANCY C. GATTIS","2011-10-14T12:39:07-0500","ANTHONY P CATELLI JR.",,,306,218,0,53,271,0,271,186,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014192226P030149437121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J. CHOO- USA, INC. 401(K) PROFIT SHARING PLAN","001","2002-01-01","J. CHOO- USA, INC.",,,"750 LEXINGTON AVE",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"421529385","2123191111","448210","J. CHOO- USA, INC.",,"750 LEXINGTON AVE",,"NEW YORK","NY","10022",,,,,,,"421529385","2123191111",,,,"2011-10-14T15:12:35-0500","STELLA M. IETTA",,,,,162,168,0,30,198,0,198,82,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014173704P040687534256001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MDO 401(K) PLAN","001","2001-01-01","MEHER DER OHANESSIAN, INC.",,,"1932 HILLHURST AVE., SUITE A",,"LOS ANGELES","CA","90027",,,,,,,,,,,,,,,,,,"954814401","3236679070","541213","MEHER DER OHANESSIAN, INC.",,"1932 HILLHURST AVE., SUITE A",,"LOS ANGELES","CA","90027",,,,,,,"954814401","3236679070",,,,"2011-10-14T17:36:45-0500","MARY MARANAN",,,,,8,9,0,0,9,0,9,8,0,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014173716P030149320913001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PENSION PLAN FOR DISCONTINUED OPERATIONS OF ROBERT BOSCH","010","1988-05-01","ROBERT BOSCH LLC",,,"2800 SOUTH 25TH AVENUE",,"BROADVIEW","IL","601554594",,,,,,,,,,,,,,,,,,"362903176","7088655200","423100","ROBERT BOSCH LLC",,"2800 SOUTH 25TH AVENUE",,"BROADVIEW","IL","601554594",,,,,,,"362903176","7088655200",,,,"2011-10-14T09:54:24-0500","GARY D. GRABARCZYK, FOR BEN COMM","2011-10-14T09:54:24-0500","GARY D. GRABARCZYK, FOR BEN COMM",,,2277,336,1522,1261,3119,172,3291,,0,,"1B1G1I3H1A",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014192633P030022061490001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"T.D. WILLIAMSON, INC. THRIFT PLAN","003","1976-01-01","T.D. WILLIAMSON, INC.",,,"5727 SOUTH LEWIS AVENUE, SUITE 300",,"TULSA","OK","74105",,,,,,,,,,,,,,,,,,"730399110","9184475001","332900","T.D. WILLIAMSON, INC.",,"5727 SOUTH LEWIS AVENUE, SUITE 300",,"TULSA","OK","74105",,,,,,,"730399110","9184475001",,,,"2011-10-14T09:56:31-0500","STANNA BRAZEEL",,,,,900,802,4,120,926,1,927,795,46,,"2E2F2G2J2K2T2S3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014154520P030149210737013","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"FLOYD HEALTHCARE MANAGEMENT, INC. LIFE INSURANCE PLAN","502","1998-01-01","FLOYD HEALTHCARE MANAGEMENT, INC.",,,"304 TURNER MCCALL BLVD","TURNER MCCALL BOULEVARD","ROME","GA","301620233",,,,,,,,,,,,,,,,,,"581973570","7065095774","622000","FLOYD HEALTHCARE MANAGEMENT, INC.",,"304 TURNER MCCALL BLVD",,"ROME","GA","301620233",,,,,,,"581973570","7065095774",,,,"2011-10-14T15:38:00-0500","RICHARD T. SHEERIN",,,,,1256,1961,,,1961,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014154520P030149210737006","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"WHITLEY INVESTMENTS, INC. 401(K) PROFIT SHARING PLAN","001","2009-11-16","RENAISSANCE WINDOWS & DOORS, INC.",,"CRAIG PERKINS","7026 OLD KATY RD., STE. 158",,"HOUSTON","TX","77024",,,,,,,,,,,,,,,,,,"760547996","7138639988","238900","RENAISSANCE WINDOWS & DOORS, INC.","CRAIG PERKINS","7026 OLD KATY RD., STE. 158",,"HOUSTON","TX","77024",,,,,,,"760547996","7138639988",,,,"2011-10-14T15:34:09-0500","PATRICIA PERKINS","2011-10-14T15:35:07-0500","PATRICIA PERKINS",,,7,5,0,0,5,0,5,7,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014152834P040022948194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RON NORRIS LLC NADART SALARY DEF 401K PLAN","002","1995-07-01","RON NORRIS LLC",,,"3000 CHENEY HWY",,"TITUSVILLE","FL","32783",,,,,,,,,,,,,,,,,,"270609486","3212672112","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-14T15:29:02-0500","ALAN B. SVEDLOW",,,,,23,35,0,7,42,0,42,21,4,,"2E2J3D2K2F2G3H2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014160131P040022954082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BERKELEY PREPARATORY SCHOOL DEFINED CONTRIBUTION RETIREMENT PLAN","002","1981-09-14","BERKELEY PREPARATORY SCHOOL, INC.",,,"4811 KELLY ROAD",,"TAMPA","FL","336155020",,,,,,,,,,,,,,,,,,"591292802","8138851673","611000","BERKELEY PREPARATORY SCHOOL, INC.",,"4811 KELLY ROAD",,"TAMPA","FL","336155020",,,,,,,"591292802","8138851673",,,,"2011-10-14T15:58:46-0500","CHARLES SIMPSON",,,,,332,290,0,48,338,0,338,312,0,,"2F2G2L2M",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014165358P030022029650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ZERBE SISTERS NURSING CENTER, INC. 401K PLAN","001","1996-11-01","ZERBE SISTERS NURSING CENTER, INC.",,,"2499 ZERBE ROAD",,"NARVON","PA","17555",,,,,,,,,,,,,,,,,,"231954725","7174458735","623000","ZERBE SISTERS NURSING CENTER, INC.",,"2499 ZERBE ROAD",,"NARVON","PA","17555",,,,,,,"231954725","7174458735",,,,"2011-10-14T12:33:17-0500","CRAIG SHELLY","2011-10-14T12:33:17-0500","CRAIG SHELLY",,,151,147,0,6,153,0,153,36,0,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014172251P030149306929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEXTIER BANK 401(K) PLAN","003","1995-01-01","NEXTIER BANK",,,"101 EAST DIAMOND STREET",,"BUTLER","PA","16003",,,,,,,,,,,,,,,,,,"250404600","7242145836","522110","NEXTIER BANK",,"101 EAST DIAMOND STREET",,"BUTLER","PA","16003",,,,,,,"250404600","7242145836",,,,"2011-10-14T12:57:33-0500","TRACY L. MILLER",,,,,354,253,0,30,283,0,283,136,0,,"2E2F2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014172955P040153026625001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"V-S INDUSTRIES, INC. RETIREMENT PLAN","001","1954-01-01","V-S INDUSTRIES, INC.",,,"900 S CHADDICK DRIVE",,"WHEELING","IL","60090",,,,,,,"900 S CHADDICK DRIVE",,"WHEELING","IL","60090",,,,,,,"362478811","8475201800","332700","V-S INDUSTRIES, INC.",,"900 S CHADDICK DRIVE",,"WHEELING","IL","60090",,,,,,,"362478811","8475201800",,,,"2011-10-14T17:29:13-0500","MICHELLE SIMON",,,,,111,77,5,21,103,1,104,93,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014184636P030022051858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FOREST CORPORATION 401(K) PLAN","002","1994-01-01","FOREST CORPORATION",,,"1665 ENTERPRISE PARKWAY",,"TWINSBURG","OH","44087",,,,,,,,,,,,,,,,,,"340697747","3304253805","323100","FOREST CORPORATION",,"1665 ENTERPRISE PARKWAY",,"TWINSBURG","OH","44087",,,,,,,"340697747","3304253805",,,,"2011-10-14T14:29:46-0500","MICHAEL ALBANESE",,,,,120,86,0,10,96,1,97,71,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014185728P030012555733001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RENASANT BANK 401(K) PLAN","004","1997-01-01","RENASANT BANK",,,"209 TROY STREET",,"TUPELO","MS","38804",,,,,,,,,,,,,,,,,,"640220550","6626801387","522110","RENASANT BANK",,"209 TROY STREET",,"TUPELO","MS","38804",,,,,,,"640220550","6626801387",,,,"2011-10-14T14:34:32-0500","PATSY BRANDON","2011-10-14T14:42:19-0500","HOLLIS RAY SMITH",,,1217,1061,0,181,1242,0,1242,1124,89,,"2E2J3H2K2H2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014151955P030022014946001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CSG CONSULTANTS, INC. 401K SAVINGS PLAN","001","1994-01-01","CSG CONSULTANTS, INC.",,,"1700 S AMPHLETT BLVD, 3RD FLOOR",,"SAN MATEO","CA","94402",,,,,,,,,,,,,,,,,,"912053749","6505222582","541330","CSG CONSULTANTS, INC.",,"1700 S AMPHLETT BLVD, 3RD FLOOR",,"SAN MATEO","CA","94402",,,,,,,"912053749","6505222582",,,,"2011-10-14T11:08:15-0500","CYRUS KIANPOUR",,,,,122,89,0,15,104,0,104,87,4,,"2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014153051P030149196577013","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"J MICHAEL FITE M.D., P.A. PROFIT SHARING PLAN AND TRUST","001","1980-04-01","J. MICHAEL FITE, M.D., P.A.",,,"1125 S. HENDERSON",,"FORT WORTH","TX","76104",,,,,,,,,,,,,,,,,,"751691396","8178701056","621111","J. MICHAEL FITE, M.D., P.A.",,"1125 S. HENDERSON",,"FORT WORTH","TX","76104",,,,,,,"751691396","8178701056",,,,"2011-10-14T16:12:54-0500","J MICHAEL FITE","2011-10-14T16:13:01-0500","J MICHAEL FITE","2011-10-14T16:08:39-0500","SUSIE S. FRANCIS, C.P.A.",4,4,0,0,4,0,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111014155630P030012540197001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WIS INTERNATIONAL/WASHINGTON INVENTORY SERVICE LIFE AND DISABILITY PLAN","502","2004-01-01","WASHINGTON INVENTORY SERVICE",,,"9265 SKY PARK COURT, SUITE 100",,"SAN DIEGO","CA","921234312",,,,,,,,,,,,,,,,,,"952081851","8585658111","561490","WASHINGTON INVENTORY SERVICE",,"9265 SKY PARK COURT, SUITE 100",,"SAN DIEGO","CA","921234312",,,,,,,"952081851","8585658111",,,,"2011-10-14T11:32:05-0500","RITA CHANEY",,,,,545,527,21,0,548,,,,,,,"4B4F4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014155247P040687167056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOEL Q. VELASQUEZ, M.D., INC. 401(K) PROFIT SHARING PLAN","002","2009-01-01","JOEL Q. VELASQUEZ, M.D., INC.",,,"12677 HESPERIA RD. 130",,"VICTORVILLE","CA","92392",,,,,,,,,,,,,,,,,,"330694037","7602417763","621111","JOEL Q. VELASQUEZ, M.D., INC.",,"12677 HESPERIA RD. 130",,"VICTORVILLE","CA","923957735",,,,,,,"330694037","7602417763",,,,"2011-10-14T15:52:40-0500","JOEL QUIJANO VELASQUEZ",,,,,6,5,0,3,8,0,8,8,0,,"2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014170415P040153005185006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RIVERSIDE INDUSTRIAL SUPPLY INC EMPLOYEES PROFIT SHARING PLAN","001","1991-01-01","RIVERSIDE INDUSTRIAL SUPPLY, INC",,,"PO BOX 14726",,"PORTLAND","OR","972930726",,,,,,,,,,,,,,,,,,"930983360","5032327333","423800","RIVERSIDE INDUSTRIAL SUPPLY INC",,"PO BOX 14726",,"PORTLAND","OR","972930726",,,,,,,"930983360","5032327333",,,,"2011-10-14T16:57:37-0500","PHILIP G REES",,,,,3,3,,,3,,3,3,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014185450P030149405665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MILLER MANAGEMENT, LLC 401(K) PLAN","001","1993-01-01","MILLER MANAGEMENT, LLC",,,"165 SOUTH PAINT STREET",,"CHILLICOTHE","OH","45601",,,,,,,,,,,,,,,,,,"341882297","7407721040","541214","MILLER MANAGEMENT, LLC",,"165 SOUTH PAINT STREET",,"CHILLICOTHE","OH","45601",,,,,,,"341882297","7407721040",,,,"2011-10-14T14:37:11-0500","TIMOTHY NEFF",,,,,231,155,0,81,236,0,236,112,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014171243P040004717875001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"THE ROBERT M. SIEGEL, M.D., P.C. PREMIUM ONLY PLAN","555","1995-05-01","ADVANCED CARDIAC SPECIALISTS CHARTERED",,,"4838 E BASELINE RD, STE 122",,"MESA","AZ","85206",,,,,,,"4838 E BASELINE RD, STE 122",,"MESA","AZ","85206",,,,,,,"860629520","4805451808","621111","ADVANCED CARDIAC SPECIALISTS CHARTERED",,"4838 E BASELINE RD, STE 122",,"MESA","AZ","85206",,,,,,,"860629520","4805451808",,,,"2011-10-14T17:11:17-0500","SHARON LARKIN",,,,,82,87,1,1,89,,89,,,,,"4A4B4D4F","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014173007P030149314593011","2010-01-01","2010-12-31","2",,"1",,"1",,,"1",,,,,"NOLAN ENTERPRISES INC. - OWNER 401K PLAN","001","2006-03-02","NOLAN ENTERPRISES, INC",,,"PO BOX 2184",,"RED LODGE","MT","59068",,,,,,,,,,,,,,,,,,"541741692","4064461291","541519","NOLAN ENTERPRISES, INC",,"PO BOX 2184",,"RED LODGE","MT","59068",,,,,,,"541741692","4064461291",,,,"2011-10-14T10:31:26-0500","RICHARD NOLAN","2011-10-14T17:22:33-0500","RICHARD NOLAN",,,2,0,0,0,0,0,0,,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014192523P040687818688001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"MAGNA ENERGY SERVICE WELFARE BENEFIT PLAN","501","2007-06-15","MAGNA ENERGY SERVICES, LLC",,,"11001 WEST 120TH AVENUE, SUITE 310",,"BROOMFIELD","CO","800213493",,,,,,,,,,,,,,,,,,"208784624","3034102531","213110","MAGNA ENERGY SERVICES, LLC",,"11001 WEST 120TH AVENUE, SUITE 310",,"BROOMFIELD","CO","800213493",,,,,,,"208784624","3034102531",,,,"2011-10-14T11:33:13-0500","DENNIS A. PEARCE",,,,,145,146,4,,150,,150,,,,,"4A4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014193018P030149445169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNITED NATIONS FEDERAL CREDIT UNION RETIREMENT PENSION PLAN","022","1998-01-01","UNITED NATIONS FEDERAL CREDIT UNION",,,"2401 44TH RD",,"LONG ISLAND CITY","NY","11101",,,,,,,,,,,,,,,,,,"131628594","3476866000","522130","UNITED NATIONS FEDERAL CREDIT UNION",,"2401 44TH RD",,"LONG ISLAND CITY","NY","11101",,,,,,,"131628594","3476866000",,,,"2011-10-14T15:22:29-0500","ADAM GUTTMAN",,,,,395,265,3,101,369,1,370,,21,,"1A1G3D3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014194039P030149458705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROSETTA STONE LTD. 401(K) PLAN","001","2004-01-01","ROSETTA STONE, LTD.",,,"135 W. MARKET STREET",,"HARRISONBURG","VA","22801",,,,,,,,,,,,,,,,,,"541629211","5404326166","511210","ROSETTA STONE, LTD.",,"135 W. MARKET STREET",,"HARRISONBURG","VA","22801",,,,,,,"541629211","5404326166",,,,"2011-10-14T15:34:09-0500","MELISSA YATES-MAY","2011-10-14T15:34:09-0500","MELISSA YATES-MAY",,,1459,1561,0,61,1622,0,1622,592,0,,"2E2F2G2J2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014153633P030149203409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OHIO FARM BUREAU PENSION PLAN FOR SALARIED EMPLOYEES","002","1984-06-30","OHIO FARM BUREAU FEDERATION, INC.",,,"2 NATIONWIDE PLAZA P.O. BOX 182383",,"COLUMBUS","OH","432182383",,,,,,,,,,,,,,,,,,"314369470","6142492400","115110","OHIO FARM BUREAU FEDERATION, INC.",,"2 NATIONWIDE PLAZA P.O. BOX 182383",,"COLUMBUS","OH","432182383",,,,,,,"314369470","6142492400",,,,"2011-10-14T11:10:05-0500","DAVID RULE","2011-10-14T11:10:05-0500","DAVID RULE",,,143,74,11,57,142,0,142,,3,,"1A1G",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014153820P030149204817001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ACCESS WORLDWIDE COMMUNICATIONS, INC. 401(K) PLAN","003","1998-10-01","ACCESS WORLDWIDE COMMUNICATIONS, INC.",,,"301 YAMATO ROAD, SUITE 3190",,"BOCA RATON","FL","33431",,,,,,,,,,,,,,,,,,"521309227","5713847403","561420","ACCESS WORLDWIDE COMMUNICATIONS, INC.",,"301 YAMATO ROAD, SUITE 3190",,"BOCA RATON","FL","33431",,,,,,,"521309227","5713847403",,,,"2011-10-14T04:38:12-0500","RICHARD A. LYEW",,,,,316,117,9,64,190,0,190,130,22,,"2E2F2G2J2K2T3D",,,,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014154016P030149206081002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"UNIVERSITY OF TOLEDO PHYSICIANS LLC PENSION PLAN AND TRUST","002","1973-12-21","UNIVERSITY OF TOLEDO PHYSICIANS LLC",,,"3355 GLENDALE AVE 3RD FL",,"TOLEDO","OH","43614",,,,,,,,,,,,,,,,,,"341127097","4193837105","621111","UNIVERSITY OF TOLEDO PHYSICIANS LLC",,"3355 GLENDALE AVE 3RD FL",,"TOLEDO","OH","43614",,,,,,,"341127097","4193837105",,,,"2011-10-14T04:39:59-0500","SHERI CALDWELL",,,,,484,367,4,205,576,1,577,555,8,,"2C2F2G2J2R2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014172102P030149305169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AUTOMOTIVE DISTRIBUTORS EMPLOYEE STOCK OWNERSHIP PLAN","002","1999-01-01","AUTOMOTIVE DISTRIBUTORS, CO., INC.",,,"2981 MORSE ROAD",,"COLUMBUS","OH","432316035",,,,,,,,,,,,,,,,,,"311145093","6144765029","423100","AUTOMOTIVE DISTRIBUTORS, CO., INC.",,"2981 MORSE ROAD",,"COLUMBUS","OH","432316035",,,,,,,"311145093","6144765029",,,,"2011-10-14T12:54:56-0500","JOSEPH R. CLAY","2011-10-14T12:54:56-0500","JOSEPH R. CLAY",,,183,162,8,7,177,1,178,176,4,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014185310P030149403697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SIGNATURE STYLES, LLC HEALTH & WELFARE BENEFIT PLAN","502","2004-06-22","SIGNATURE STYLES, LLC",,,"711 3RD AVENUE",,"NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"270304502","2129168282","454110","SIGNATURE STYLES, LLC",,"711 3RD AVENUE",,"NEW YORK","NY","10017",,,,,,,"270304502","2129168282",,,,"2011-10-14T14:37:38-0500","SUSAN M KOSTE",,,,,343,208,16,0,224,,,,,,,"4A4B4D4E4F4G4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014154427P030149209665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHEVY CHASE CONTRACTORS, INC. NADART SALARY DEF 401K PLAN","001","2007-01-01","CHEVY CHASE CONTRACTORS, INC.",,,"8750 BROOKVILLE ROAD",,"SILVER SPRING","MD","20910",,,,,,,,,,,,,,,,,,"800090022","3015888090","238100","CHEVY CHASE CONTRACTORS, INC.",,"8750 BROOKVILLE ROAD",,"SILVER SPRING","MD","20910",,,,,,,"800090022","3015888090",,,,"2011-10-14T15:45:30-0500","ALAN B. SVEDLOW",,,,,43,39,0,5,44,0,44,19,5,,"2E2J3D2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014154429P040152925777001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"GROUP SHORT TERM DISABILITY PLAN","509","1999-01-01","DEAD RIVER COMPANY",,,"PO BOX 1427",,"BANGOR","ME","044021427",,,,,,,"80 EXCHANGE ST SUITE 300",,"BANGOR","ME","04401",,,,,,,"010385895","2079478641","454311","DEAD RIVER COMPANY",,"PO BOX 1427",,"BANGOR","ME","044021427",,,,,,,"010385895","2079478641",,,,"2011-10-14T15:27:03-0500","CRAIG BOYD","2011-10-14T15:42:53-0500","CHRISTOPHER HERSEY",,,638,617,,,617,,617,,,,,"4F",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014154737P030692667056001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"GROUP INSURANCE PLAN OF THE OKONITE COMPANY","501","1969-11-01","THE OKONITE COMPANY INC",,"TREASURY DEPARTMENT","P O BOX 340",,"RAMSEY","NJ","074460340",,,,,,,"102 HILLTOP ROAD",,"RAMSEY","NJ","074460340",,,,,,,"222279445","2018250300","335310","THE OKONITE COMPANY INC",,"P O BOX 340",,"RAMSEY","NJ","074460340",,,,,,,"222279445","2018250300",,,,"2011-10-14T14:28:23-0500","DAVID A. MITCHELL",,,,,1027,,,,0,,,,,,,"4B4D4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014160233P040152945073001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1","0","0","0",,"AEP INDUSTRIES INC. 401(K) SAVINGS AND EMPLOYEE STOCK OWNERSHIP PLAN","001","1973-11-01","AEP INDUSTRIES INC.",,,"125 PHILLIPS AVENUE",,"SOUTH HACKENSACK","NJ","07606",,,,,,,"125 PHILLIPS AVENUE",,"SOUTH HACKENSACK","NJ","07606",,,,,,,"221916107","2016416600","326100","AEP INDUSTRIES INC.",,"125 PHILLIPS AVENUE",,"SOUTH HACKENSACK","NJ","07606",,,,,,,"221916107","2016416600",,,,"2011-10-14T15:58:22-0500","LAWRENCE NOLL",,,,,1994,1738,7,354,2099,9,2108,1718,72,,"2E2F2G2J2K2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014160246P040687203760001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FORBES RETIREMENT PLAN","001","1998-03-01","G & G OUTFITTERS, INC.",,,"4901 FORBES BLVD",,"LANHAM","MD","20706",,,,,,,,,,,,,,,,,,"521666149","3017322099","315990","G & G OUTFITTERS, INC.",,"4901 FORBES BLVD",,"LANHAM","MD","20706",,,,,,,"521666149","3017322099",,,,"2011-10-14T16:01:08-0500","DAVID JOHNSON",,,,,167,115,0,65,180,0,180,180,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014185539P030149406657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHWEST AMBULATORY SURGERY CENTER LLC 401(K) PROFIT SHARING","001","2004-01-01","SOUTHWEST AMBULATORY SURGERY CEN",,,"PO BOX 890609","BLDG B","OKLAHOMA CITY","OK","73189",,,,,,,,,,,,,,,,,,"731546571","4056026500","622000","SOUTHWEST AMBULATORY SURGERY CEN",,"PO BOX 890609","BLDG B","OKLAHOMA CITY","OK","73189",,,,,,,"731546571","4056026500",,,,"2011-10-14T14:40:06-0500","SHERRY WAGNER",,,,,145,172,0,15,187,0,187,60,1,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014193043P030149445777001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CREDIT UNION ONE HEALTH & WELFARE PLAN","501","1996-03-01","CREDIT UNION ONE",,,"400 E. NINE MILE ROAD",,"FERNDALE","MI","48220",,,,,,,,,,,,,,,,,,"380536242","2485845028","522130","CREDIT UNION ONE",,"400 E. NINE MILE ROAD",,"FERNDALE","MI","48220",,,,,,,"380536242","2485845028",,,,"2011-10-11T15:30:43-0500","MICHELLE HINSHON","2011-10-14T15:23:22-0500","GARY MOODY",,,282,255,18,,273,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014152915P030149195121004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HUDSON HOSPITAL EMPLOYEE BENEFIT PLAN","501","2000-06-01","HUDSON HOSPITAL, INC",,,"405 STAGELINE RD.",,"HUDSON","WI","540167848",,,,,,,,,,,,,,,,,,"390804125","7155316000","622000","HUDSON HOSPITAL, INC",,"405 STAGELINE RD.",,"HUDSON","WI","540167848",,,,,,,"390804125","7155316000",,,,"2011-09-30T04:15:16-0500","SHEILA PROEHL","2011-09-30T04:15:16-0500","SHEILA PROEHL","2011-09-30T04:15:16-0500","KEVIN J. BRANDT",299,304,,,304,,,,,,,"4A4B4D4F4H","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111014165642P030149281345001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"ALLIED HARVEY UNION PENSION PLAN","039","1978-04-11","ATKORE INTERNATIONAL, INC.",,,"16100 SOUTH LATHROP AVENUE",,"HARVEY","IL","60426",,,,,,,,,,,,,,,,,,"900631477","7082252146","339900","ATKORE INTERNATIONAL, INC.",,"16100 SOUTH LATHROP AVENUE",,"HARVEY","IL","60426",,,,,,,"900631477","7082252146","TYCO INTERNATIONAL MANAGEMENT COMPANY, LLC","205073412","039","2011-10-14T12:37:16-0500","TODD BAJEK","2011-10-14T12:37:16-0500","TODD BAJEK",,,865,448,150,202,800,48,848,,10,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014173449P030149318961002","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"ALLEN & GRAHAM ESOP TRUST","003","2001-01-02","ALLEN & GRAHAM INC",,,"106 ALLEN-GRAHAM BLVD",,"BRUNSWICK","GA","31520",,,,,,,"106 ALLEN-GRAHAM BLVD",,"BRUNSWICK","GA","31520",,,,,,,"581658662","9122642550","525100","ALLEN & GRAHAM INC",,"106 ALLEN-GRAHAM BLVD",,"BRUNSWICK","GA","31520",,,,,,,"581658662","9122642550",,,,"2011-10-14T15:57:28-0500","W JAMES BARRS JR CPA",,,,,13,10,,,10,,10,14,,,"2Q2P2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014173833P030022038178001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AEGIS SCIENCES CORPORATION 401(K) PLAN","002","2009-01-01","AEGIS SCIENCES CORPORATION",,,"515 GREAT CIRCLE ROAD",,"NASHVILLE","TN","37228",,,,,,,,,,,,,,,,,,"880241758","6152552400","621510","AEGIS SCIENCES CORPORATION",,"515 GREAT CIRCLE ROAD",,"NASHVILLE","TN","37228",,,,,,,"880241758","6152552400",,,,"2011-10-14T13:13:59-0500","JEFFREY R. FISHER",,,,,243,375,1,10,386,0,386,193,6,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014190534P040153087377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LUCILE SALTER PACKARD CHILDREN'S HOSPITAL AT STANFORD TAX-SHELTERED ANNUITY PLAN","003","1976-07-01","LUCILE SALTER PACKARD CHILDREN'S HOSPITAL AT STANFORD",,,"300 PASTEUR DRIVE, MC 5513",,"STANFORD","CA","943055513",,,,,,,,,,,,,,,,,,"770003859","6507237645","622000","LUCILE SALTER PACKARD CHILDREN'S HOSPITAL AT STANTFORD",,"300 PASTEUR DRIVE, MC 5513",,"STANFORD","CA","943055513",,,,,,,"770003859","6507237645",,,,"2011-10-14T19:02:28-0500","MARGARET PELLARIN","2011-10-14T19:04:14-0500","SOUZA GREGORY",,,489,232,0,232,464,4,468,468,0,,"2F2G2L2M3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","4","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014153030P040152909521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BURNS CHEVROLET CADILLAC INC. NADART SALARY DEF 401K PLAN","001","1988-01-01","BURNS CHEVROLET CADILLAC INC.",,,"2515 CHERRY ROAD",,"ROCK HILL","SC","29732",,,,,,,,,,,,,,,,,,"570368356","8033669414","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-10-14T15:29:03-0500","ALAN B. SVEDLOW",,,,,60,0,0,0,0,0,0,0,0,,"2E2J3D2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014155322P030022019906006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RACINE FEDERATED INC PRETAX PREMIUM PLAN","501","1990-01-01","RACINE FEDERATED INC",,,"8635 WASHINGTON AVE",,"RACINE","WI","534063738",,,,,,,,,,,,,,,,,,"391143419","2626396770","339900","RACINE FEDERATED INC",,"8635 WASHINGTON AVE",,"RACINE","WI","534063738",,,,,,,"391143419","2626396770",,,,"2011-10-11T09:16:30-0500","DAVE PERKINS",,,,,107,94,4,,98,,,,,,,"4A4B4D","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014172624P040153024433001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MEDICAL EXPENSE PLAN OF ROCK HILL TELEPHONE COMPANY","502","1960-08-01","ROCK HILL TELEPHONE COMPANY",,,"P.O. BOX 470","330 EAST BLACK STREET","ROCK HILL","SC","297316470",,,,,,,,,,,,,,,,,,"570236160","8033267032","517000","ROCK HILL TELEPHONE COMPANY",,"P.O. BOX 470","330 EAST BLACK STREET","ROCK HILL","SC","297316470",,,,,,,"570236160","8033267032",,,,"2011-10-14T17:07:49-0500","JEFF BUSHHARDT",,,,,1072,1116,15,,1131,,1131,,,,,"4A4D",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014192435P030149439073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RICHMOND FITNESS, INC. EMPLOYEE SAVINGS PLAN","001","1999-11-15","RICHMOND FITNESS, INC. DBA AMERICAN FAMILY FITNESS",,,"4435 WATERFRONT DRIVE SUITE 304",,"GLEN ALLEN","VA","23060",,,,,,,,,,,,,,,,,,"541560789","8049655300","713900","RICHMOND FITNESS, INC. DBA AMERICAN FAMILY FITNESS",,"4435 WATERFRONT DRIVE SUITE 304",,"GLEN ALLEN","VA","23060",,,,,,,"541560789","8049655300",,,,"2011-10-14T15:15:12-0500","BRIAN EVANS",,,,,333,307,0,22,329,0,329,101,3,,"2E2J2K2G2T3D2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014192327P030149438097001","2010-01-01","2010-12-31","1",,"0","1","0","0","0","1","0","0","0",,"THE HARRINGTON & KING PERFORATING CO., INC. GROUP INSURANCE PLAN","501","1975-06-01","THE HARRINGTON & KING PERFORATING CO., INC.",,,"5655 FILMORE STREET",,"CHICAGO","IL","60644",,,,,,,,,,,,,,,,,,"361193190","7736261800","332110","THE HARRINGTON & KING PERFORATING CO., INC.",,"5655 FILMORE STREET",,"CHICAGO","IL","60644",,,,,,,"361193190","7736261800",,,,"2011-10-14T15:14:06-0500","THOMAS ROULO","2011-10-14T15:14:06-0500","THOMAS ROULO",,,140,114,22,0,136,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014192356P030004465907001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PARGAR 401K PLAN","001","2001-01-01","PARGAR LLC",,,"863 HOLCOMB BRIDGE ROAD",,"ROSWELL","GA","300764375",,,,,,,,,,,,,,,,,,"582430596","6783523354","531210","PARGAR LLC",,"863 HOLCOMB BRIDGE ROAD",,"ROSWELL","GA","300764375",,,,,,,"582430596","6783523354",,,,"2011-10-14T15:14:31-0500","PAT PEPON",,,,,145,110,0,4,114,0,114,49,0,,"2E2G2J3D2T2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014155957P030149224625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MINDRUM PRECISION 401(K) PLAN","001","1972-11-08","MINDRUM PRECISION PRODUCTS",,,"10000 4TH STREET",,"RANCHO CUCAMONGA","CA","917305793",,,,,,,,,,,,,,,,,,"952219937","9099891728","336410","MINDRUM PRECISION PRODUCTS",,"10000 4TH STREET",,"RANCHO CUCAMONGA","CA","917305793",,,,,,,"952219937","9099891728",,,,"2011-10-14T11:35:57-0500","DIANE MINDRUM",,,,,41,29,0,0,29,0,29,29,0,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014172714P030012546453001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HYLTON GROUP 401(K) RETIREMENT PLAN","001","1996-01-01","RIDGEDALE, INC.",,,"5593 MAPLEDALE PLAZA",,"PRINCE WILLIAM","VA","22193",,,,,,,,,,,,,,,,,,"541508530","7035901111","531310","RIDGEDALE, INC.",,"5593 MAPLEDALE PLAZA",,"PRINCE WILLIAM","VA","22193",,,,,,,"541508530","7035901111",,,,"2011-10-14T13:03:19-0500","NORRIS SISSON","2011-10-14T13:03:19-0500","NORRIS SISSON",,,126,83,4,34,121,0,121,87,0,,"2E2F2G2J2K3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014172719P030693018704001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLT DEFENSE 401(K) SAVINGS PLAN","001","1990-06-01","COLT DEFENSE, LLC",,,"P. O. BOX 118",,"HARTFORD","CT","06141",,,,,,,,,,,,,,,,,,"320031950","8602366311","332900","COLT DEFENSE, LLC",,"P. O. BOX 118",,"HARTFORD","CT","06141",,,,,,,"320031950","8602366311",,,,"2011-10-14T13:03:37-0500","JIMMY TIPTON","2011-10-14T13:03:37-0500","JIMMY TIPTON",,,598,345,0,58,403,2,405,226,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014153220P040687086560001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"INNOVATIVE SYSTEMS, LLC 401(K) PLAN","001","1998-10-10","INNOVATIVE SYSTEMS, LLC",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"411920375","6207938473","541511","INNOVATIVE SYSTEMS, LLC","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"411920375","6207938473",,,,"2011-10-14T15:30:04-0500","ROGER MUSICK",,,,,135,126,0,13,139,0,139,128,7,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014152803P040152907569001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"INNOVATA, LLC 401(K) PLAN","002","2007-07-15","INNOVATA, LLC",,,"4908 GOLDEN PARKWAY","SUITE 100","BUFORD","GA","30518",,,,,,,,,,,,,,,,,,"582380406","7706144926","511140","INNOVATA, LLC",,"4908 GOLDEN PARKWAY","SUITE 100","BUFORD","GA","30518",,,,,,,"582380406","7706144926",,,,"2011-10-14T15:18:56-0500","NIKKI WATKINS",,,,,38,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014160520P030692732576001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"KELLOGG CRANKSHAFT COMPANY UNION 401(K) PLAN","004","1999-01-01","KELLOGG CRANKSHAFT CO.",,,"3524 WAYLAND DRIVE",,"JACKSON","MI","492021234",,,,,,,,,,,,,,,,,,"381575317","5177889200","332700","KELLOGG CRANKSHAFT CO.",,"3524 WAYLAND DRIVE",,"JACKSON","MI","492021234",,,,,,,"381575317","5177889200",,,,"2011-10-14T11:41:18-0500","MARYBETH JORGENSEN",,,,,60,36,0,23,59,0,59,59,0,,"2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014160526P040687212848001","2008-01-01","2008-12-31","2",,"0","1","1","0","0","0","0","0","0",,"CHARLES L CRANE AGENCY COMPANY DENTAL PLAN","504","1986-01-01","CHARLES L CRANE AGENCY COMPANY",,,"100 N BROADWAY, SUITE 900",,"ST LOUIS","MO","63102",,,,,,,"100 N BROADWAY, SUITE 900",,"ST LOUIS","MO","63102",,,,,,,"431394059","3142418700","524210","CHARLES L CRANE AGENCY COMPANY",,"100 N BROADWAY, SUITE 900",,"ST LOUIS","MO","63102",,,,,,,"431394059","3142418700",,,,"2011-10-14T11:07:49-0500","BETH ROTH","2011-10-13T16:09:44-0500","THOMAS CUNNIFF",,,211,194,,,194,,194,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014160538P040152949041001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"HIGHWAY TECHNOLOGIES 401(K) INVESTMENT PLAN","001","2007-04-15","HIGHWAY TECHNOLOGIES, INC.",,,"880 NORTH ADDISON ROAD",,"VILLA PARK","IL","60181",,,,,,,"880 NORTH ADDISON ROAD",,"VILLA PARK","IL","60181",,,,,,,"043076608","6303680920","237310","HIGHWAY TECHNOLOGIES, INC.",,"880 NORTH ADDISON ROAD",,"VILLA PARK","IL","60181",,,,,,,"043076608","6303680920",,,,"2011-10-14T15:59:27-0500","SADIA REHMAN",,,,,1012,1299,1,139,1439,1,1440,524,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014170439P040022964882023","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GROUP HEALTH PLAN OF PILLSBURY UNITED COMMUNITIES","506","1994-01-01","PILLSBURY UNITED COMMUNITIES",,,"414 SOUTH EIGHTH STREET",,"MINNEAPOLIS","MN","554041081",,,,,,,,,,,,,,,,,,"410916478","6123399101","624100","PILLSBURY UNITED COMMUNITIES",,"414 SOUTH EIGHTH STREET",,"MINNEAPOLIS","MN","554041081",,,,,,,"410916478","6123399101",,,,"2011-10-14T16:41:45-0500","JASON KUJANEN",,,,,223,244,,,244,,244,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014173538P030149319553001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"NORTHWESTERN CORPORATION PENSION PLAN","001","1940-10-01","NORTHWESTERN CORPORATION","DBA NORTHWESTERN ENERGY",,"40 EAST BROADWAY",,"BUTTE","MT","59701",,,,,,,,,,,,,,,,,,"460172280","4064972734","221100","EMPLOYEE BENEFIT ADMINISTRATION COMMITTEE","PEGGY LOWNEY","40 EAST BROADWAY",,"BUTTE","MT","59701",,,,,,,"460172280","4064972734",,,,"2011-10-14T10:12:20-0500","PEGGY LOWNEY","2011-10-14T12:09:43-0500","KENDALL KLIEWER",,,682,288,195,109,592,63,655,,0,,"1A1G",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014173227P040153028641001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PREMIO, INC 401(K) PLAN","001","1999-01-01","PREMIO, INC.",,,"918 RADECKI COURT",,"CITY OF INDUSTRY","CA","91748",,,,,,,"918 RADECKI COURT",,"CITY OF INDUSTRY","CA","91748",,,,,,,"364152757","6268393151","334110","PREMIO, INC.",,"918 RADECKI COURT",,"CITY OF INDUSTRY","CA","91748",,,,,,,"364152757","6268393151",,,,"2011-10-14T17:32:01-0500","SILVIA JUNG",,,,,161,153,0,11,164,0,164,104,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014191559P030149429041001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","1","0","0","0",,"CWD MORTGAGE PROFIT SHARING PLAN","001","2002-02-01","CWD MORTGAGE INC","CWD MORTGAGE INC","DANIEL GARVEY","510 W. CITRUS EDGE STREET",,"GLENDORA","CA","91740",,,,,,,"510 W. CITRUS EDGE STREET",,"GLENDORA","CA","91740",,,,,,,"954851085","6263355067","522300","CWD MORTGAGE INC","DANIEL GARVEY","510 W. CITRUS EDGE STREET",,"GLENDORA","CA","91740",,,,,,,"954851085","6263355067",,,,"2011-10-14T19:15:17-0500","DANIEL GARVEY",,,,,6,6,0,0,6,0,6,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014155345P030149218657009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"INTERNAL DATA RESOURCES, INC. 401(K) P/S PLAN","001","2001-01-01","INTERNAL DATA RESOURCES, INC.",,,"7000 PEACHTREE DUNWOODY ROAD","BUILDING 14, SUITE 100","ATLANTA","GA","30328",,,,,,,,,,,,,,,,,,"582389124","7706710040","561300","INTERNAL DATA RESOURCES, INC.",,"7000 PEACHTREE DUNWOODY ROAD","BUILDING 14, SUITE 100","ATLANTA","GA","30328",,,,,,,"582389124","7706710040",,,,"2011-10-05T10:43:26-0500","ERIC FRENCH",,,,,239,160,,46,206,,206,76,20,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014183016P030022047474001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RESERS FINE FOODS, INC RESTATED 401(K) PLAN","005","1990-01-01","RESERS FINE FOODS, INC",,,"15570 SW JENKINS RD","PO BOX 8","BEAVERTON","OR","97006",,,,,,,,,,,,,,,,,,"930476628","5035265716","311900","RESERS FINE FOODS, INC",,"15570 SW JENKINS RD","PO BOX 8","BEAVERTON","OR","97006",,,,,,,"930476628","5035265716",,,,"2011-10-14T14:13:02-0500","MARI JO PRLAIN","2011-10-14T14:13:02-0500","MARI JO PRLAIN",,,2446,2212,0,451,2663,0,2663,1609,26,,"2F2E2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014202622P030022076482001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J.H. WALKER, INC. DBA SUPERIOR DELIVERY SERVICE PROFIT SHARING PLAN","001","1993-01-01","J.H. WALKER, INC. DBA SUPERIOR DELIVERY SERVICE",,,"11404 HEMPSTEAD",,"HOUSTON","TX","77092",,,,,,,,,,,,,,,,,,"741951311","7136888400","484110","J.H. WALKER, INC. DBA SUPERIOR DELIVERY SERVICE",,"11404 HEMPSTEAD",,"HOUSTON","TX","77092",,,,,,,"741951311","7136888400",,,,"2011-10-14T16:25:11-0500","JOHN H. WALKER",,,,,117,83,0,19,102,0,102,97,13,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014194743P030149468609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MORGAN STANLEY 401(K) SAVINGS PLAN","004","2009-07-01","MORGAN STANLEY & CO. INCORPORATED",,,"522 FIFTH AVE. 23RD FLOOR","ATTN BENEFITS DEPARTMENT","NEW YORK","NY","100367601",,,,,,,,,,,,,,,,,,"132655998","2122960948","523900","MORGAN STANLEY GLOBAL HEAD OF HUMAN RESOURCES","ATTN BENEFITS DEPARTMENT","522 FIFTH AVE., 23RD FLOOR",,"NEW YORK","NY","100367601",,,,,,,"810663617","2122960935",,,,"2011-10-14T15:41:54-0500","MICHAEL J FORGIT","2011-10-14T15:41:54-0500","KIM M MURRAY",,,14556,17193,0,3985,21178,31,21209,19103,277,,"2A2E2F2G2J2K2O2T3F3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014204229P030022080674001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GLOBAL 401(K) PLAN","001","2005-06-01","OWL INTERNATIONAL DBA GLOBAL",,,"2465 CAMPUS DRIVE",,"IRVINE","CA","92663",,,,,,,,,,,,,,,,,,"330296831","9497972024","541990","OWL INTERNATIONAL DBA GLOBAL",,"2465 CAMPUS DRIVE",,"IRVINE","CA","92663",,,,,,,"330296831","9497972024",,,,"2011-10-14T16:53:11-0500","THERESA KHOLOMA",,,,,164,46,0,4,50,0,50,46,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014204238P030022080770001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAY & ZIMMERMANN FLEXIBLE BENEFITS PLAN","517","1998-01-01","DAY & ZIMMERMANN GROUP, INC.",,,"1500 SPRING GARDEN ST.",,"PHILADELPHIA","PA","19130",,,,,,,,,,,,,,,,,,"233024522","2152998314","541990","DAY & ZIMMERMANN GROUP, INC.",,"1500 SPRING GARDEN ST.",,"PHILADELPHIA","PA","19130",,,,,,,"233024522","2152998314",,,,"2011-10-14T16:53:45-0500","DANI REED",,,,,4156,3700,140,0,3840,,,,,,,"4A4B4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","11","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014174541P030022039810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IKO HOURLY EMPLOYEE SAVINGS PLAN","001","1999-11-01","IKO MANUFACTURING, INC.",,,"120 HAY RD",,"WILMINGTON","DE","19809",,,,,,,,,,,,,,,,,,"510238224","3027643100","324120","IKO MANUFACTURING, INC.",,"120 HAY RD",,"WILMINGTON","DE","19809",,,,,,,"510238224","3027643100",,,,"2011-10-14T13:22:18-0500","RON HEALEY",,,,,105,95,0,12,107,0,107,107,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014181606P040153054129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUN COAST HYDRAULIC ELECTRIC MANUFACTURING PROFIT SHARING PLAN","001","1999-01-01","SUN COAST HYDRAULIC ELECTRIC MANUFACTURING",,,"4130 N CANAL ST",,"JACKSONVILLE","FL","322093668",,,,,,,,,,,,,,,,,,"593186321","9046933318","339900","SUN COAST HYDRAULIC ELECTRIC MANUFACTURING",,"4130 N CANAL ST",,"JACKSONVILLE","FL","322093668",,,,,,,"593186321","9046933318",,,,"2011-10-14T18:14:25-0500","TIMOTHY SPARKS",,,,,16,16,2,0,18,0,18,16,1,,"2E2A2G",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111015102140P040153537265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VISUCOM SIGNS & GRAPHICS, INC. 401(K) PLAN","001","2007-08-01","VISUCOM SIGNS & GRAPHICS, INC.",,,"11141 LAUREL HILL DR",,"ORLAND PARK","IL","60467",,,,,,,,,,,,,,,,,,"300291420","7084603001","541800","VISUCOM SIGNS & GRAPHICS, INC.",,"11141 LAUREL HILL DR",,"ORLAND PARK","IL","60467",,,,,,,"300291420","7084603001",,,,"2011-10-15T10:17:32-0500","PETER KOUCHIS",,,,,4,4,0,0,4,0,4,2,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111014201405P030022072898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ERIE PHYSICIANS NETWORK 401(K)/PROFIT SHARING PLAN","001","1998-01-01","ERIE PHYSICIANS NETWORK, PC",,,"3535 PINE AVENUE",,"ERIE","PA","16504",,,,,,,,,,,,,,,,,,"232905285","8144565469","621111","ERIE PHYSICIANS NETWORK, PC",,"3535 PINE AVENUE",,"ERIE","PA","16504",,,,,,,"232905285","8144565469",,,,"2011-10-14T16:05:45-0500","CRAIG WILCZYNSKI",,,,,136,133,0,24,157,0,157,139,5,,"2E2G2J2R2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014201428P030004468291001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMEX GROUP 401(K) PLAN","001","2000-08-01","COMEX GROUP, INC.",,,"5575 DTC PARKWAY, SUITE 100",,"GREENWOOD VILLAGE","CO","80111",,,,,,,,,,,,,,,,,,"510401657","3033072119","325500","COMEX GROUP, INC.",,"5575 DTC PARKWAY, SUITE 100",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"510401657","3033072119",,,,"2011-10-14T16:06:21-0500","JULIE A. HUNT","2011-10-14T16:06:21-0500","JOHN T. O'TOOLE",,,2621,1965,30,700,2695,0,2695,2014,100,,"3D2E2J3H2K2F2G2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014175518P040153042929001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"FOLEY INDUSTRIES EMPLOYEE HEALTH CARE PLAN","501","1969-01-01","FOLEY INDUSTRIES, INC. & AFFILIATED COMPANIES",,,"1550 S. WEST ST",,"WICHITA","KS","672131638",,,,,,,,,,,,,,,,,,"481043293","3169434211","333100","FOLEY INDUSTRIES, INC. & AFFILIATED COMPANIES",,"1550 S. WEST ST",,"WICHITA","KS","672131638",,,,,,,"481043293","3169434211",,,,"2011-10-14T18:33:18-0500","LORI DAVIS",,,,,486,484,,,484,,484,,,,,"4A4B4F4G4L","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014183632P030693280864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PPC 401K PLAN","002","1985-01-01","JOHN MEZZALINGUA ASSOCIATES, INC.","DBA PPC",,"6176 EAST MOLLOY ROAD",,"EAST SYRACUSE","NY","13057",,,,,,,,,,,,,,,,,,"421543477","3154321279","332900","JOHN MEZZALINGUA ASSOCIATES, INC.",,"6176 EAST MOLLOY ROAD",,"EAST SYRACUSE","NY","13057",,,,,,,"421543477","3154321279","JOHN MEZZALINGUA ASSOCIATES, INC.","161158163","002","2011-10-14T14:19:32-0500","JEANMAIRE MINNOE",,,,,534,495,0,58,553,0,553,448,68,,"2E2F2G2J2K3D2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014210041P030149542929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HONAT BANCORP, INC. EMPLOYEE STOCK OWNERSHIP PLAN W/401(K) PROVISIONS","003","1985-01-01","HONAT BANCORP, INC.",,,"P. O. BOX 350",,"HONESDALE","PA","18431",,,,,,,"724 MAIN STREET",,"HONESDALE","PA","18431",,,,,,,"240614415","5702533355","522110","HONAT BANCORP, INC.",,"P. O. BOX 350",,"HONESDALE","PA","18431",,,,,,,"240614415","5702533355",,,,"2011-10-14T17:27:53-0500","WILLIAM SCHWEIGHOFER",,,,,146,122,4,18,144,0,144,141,7,,"2O2I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014212629P030149567969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OVERLAKE INTERNAL MEDICINE ASSOCIATES, PS 401K PROFIT SHARING PLAN","001","1971-07-01","OVERLAKE INTERNAL MEDICINE ASSOCIATES, PS",,,"1407 116TH AVENUE NE SUITE 200",,"BELLEVUE","WA","98004",,,,,,,,,,,,,,,,,,"910858190","4254545046","621111","OVERLAKE INTERNAL MEDICINE ASSOCIATES, PS",,"1407 116TH AVENUE NE SUITE 200",,"BELLEVUE","WA","98004",,,,,,,"910858190","4254545046",,,,"2011-10-14T18:58:44-0500","KRISTIE HOWARD","2011-10-14T18:58:44-0500","KRISTIE HOWARD",,,222,182,51,0,233,0,233,228,20,,"2E2J2G2F2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014212652P030149568225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MERIDIAN TECHNOLOGY GROUP, INC 401(K) PLAN","001","1997-02-01","MERIDIAN TECHNOLOGY GROUP, INC",,,"12909 SW 68TH PARKWAY","SUITE 340","PORTLAND","OR","97223",,,,,,,,,,,,,,,,,,"911492209","5036971600","541519","MERIDIAN TECHNOLOGY GROUP, INC",,"12909 SW 68TH PARKWAY","SUITE 340","PORTLAND","OR","97223",,,,,,,"911492209","5036971600",,,,"2011-10-14T19:01:00-0500","MARY CRESON","2011-10-14T19:01:00-0500","D RICHARD CRESON",,,106,34,0,55,89,0,89,69,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014210356P030022085346001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BECKMAN COULTER, INC. WELFARE BENEFITS PLAN","591","1989-08-01","BECKMAN COULTER, INC.",,,"250 S. KRAEMER BLVD.",,"BREA","CA","92821",,,,,,,,,,,,,,,,,,"951040600","7149935321","339110","BECKMAN COULTER, INC.",,"250 S. KRAEMER BLVD.",,"BREA","CA","92821",,,,,,,"951040600","7149935321",,,,"2011-10-14T17:43:30-0500","CLAUDIA FERGUSON","2011-10-14T17:43:30-0500","CLAUDIA FERGUSON",,,9584,7166,2145,0,9311,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","1","0","1","0","1","0","0","0","0","1","0","1","12","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014210403P030022085378001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CALAVO GROWERS, INC. RETIREMENT SAVINGS TAX PLAN FOR SALARIED EMPLOYEES","004","1986-01-01","CALAVO GROWERS, INC.",,,"1141A CUMMINGS ROAD",,"SANTA PAULA","CA","93060",,,,,,,,,,,,,,,,,,"330945304","8059213201","424400","CALAVO GROWERS, INC.",,"1141A CUMMINGS ROAD",,"SANTA PAULA","CA","93060",,,,,,,"330945304","8059213201",,,,"2011-10-14T17:43:43-0500","PATRICIA D. VORHIES","2011-10-14T17:43:43-0500","ARTHUR J. BRUNO",,,142,128,0,19,147,0,147,141,2,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111014194351P030149462961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AUTOZONE, INC. ASSOCIATES' PENSION PLAN","005","1987-01-01","AUTOZONE, INC.",,,"123 SOUTH FRONT STREET",,"MEMPHIS","TN","381012198",,,,,,,,,,,,,,,,,,"621482048","9014956500","441300","AUTOZONE, INC.",,"123 SOUTH FRONT STREET",,"MEMPHIS","TN","381012198",,,,,,,"621482048","9014956500",,,,"2011-10-14T15:37:32-0500","LISA K. SMITH","2011-10-14T15:37:32-0500","TIMOTHY W. BRIGGS",,,18195,7300,1614,8838,17752,210,17962,,58,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111014195640P030693585152001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY MENTAL HEALTH CENTER RETIREMENT PLAN","001","1971-12-01","SPOKANE MENTAL HEALTH COORDINATING ASSOCIATION",,,"107 SOUTH DIVISION STREET",,"SPOKANE","WA","992021586",,,,,,,,,,,,,,,,,,"910853801","5098384651","621420","SPOKANE MENTAL HEALTH COORDINATING ASSOCIATION",,"107 SOUTH DIVISION STREET",,"SPOKANE","WA","992021586",,,,,,,"910853801","5098384651",,,,"2011-10-14T15:54:09-0500","CRAIG DUNLAP","2011-10-14T15:54:09-0500","CRAIG DUNLAP",,,417,329,0,98,427,0,427,427,10,,"2C2G2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014204706P030693769744001","2010-05-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"MI DEVELOPMENTS INVESTMENTS INC. CONSOLIDATED WELFARE BENEFIT PLAN","502","2010-05-01","MI DEVELOPMENTS INVESTMENTS INC.",,,,,,,,"455 MAGNA DRIVE",,"AURORA","ONTARIO","CA","L4G 7A9",,,,,,,,,,,,"980651204","9057267374","711210","MI DEVELOPMENTS INVESTMENTS INC.",,,,,,,"455 MAGNA DRIVE",,"AURORA","ONTARIO","CA","L4G 7A9","980651204","9057267374",,,,"2011-10-14T17:02:33-0500","MARY DEFRANCO","2011-10-14T17:02:33-0500","ARTHUR FABBRO",,,0,844,40,68,952,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014175838P030149346129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROLEX GROUP INSURANCE PLAN MAJOR MEDICAL INSURANCE","501","1996-06-24","ROLEX WATCH U.S.A. INC.",,,"665 FIFTH AVENUE",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"131574389","2127587700","423940","ROLEX WATCH U.S.A. INC.",,"665 FIFTH AVENUE",,"NEW YORK","NY","10022",,,,,,,"131574389","2127587700",,,,"2011-10-14T13:37:21-0500","MICHAEL ELMS","2011-10-14T13:37:21-0500","MICHAEL ELMS",,,505,436,78,0,514,,,,,,,"4A4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014215645P040153169937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR EMPLOYEES OF ISLAND PEER REVIEW ORGANIZATION, INC.","001","1984-10-01","ISLAND PEER REVIEW ORGANIZATION, INC.",,,"1979 MARCUS AVE FL 1",,"LAKE SUCCESS","NY","110421002",,,,,,,,,,,,,,,,,,"112662689","5163267767","541910","ISLAND PEER REVIEW ORGANIZATION, INC.",,"1979 MARCUS AVE FL 1",,"LAKE SUCCESS","NY","110421002",,,,,,,"112662689","5163267767",,,,"2011-10-14T19:51:43-0500","ALAN F. KING",,,,,456,376,5,92,473,3,476,476,1,,"2C2G2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014193236P040153102401001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"REYNOLDS PACKAGING GROUP PENSION PLAN FOR HOURLY EMPLOYEES OF LOUISVILLE LAMINATING PLANT","054","1995-07-01","REYNOLDS FOIL INC",,,"1900 W FIELD COURT",,"LAKE FOREST","IL","600454828",,,,,,,,,,,,,,,,,,"770710443","8474822862","331310","REYNOLDS FOIL INC",,"1900 W FIELD COURT",,"LAKE FOREST","IL","600454828",,,,,,,"770710443","8474822862","REYNOLDS PACKAGING GROUP",,,"2011-10-14T19:32:25-0500","TERESE REILLY","2011-10-14T19:32:25-0500","TERESE REILLY",,,293,101,122,41,264,29,293,0,1,,"1B1G3H",,"1",,"1",,"1",,"1",,"1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014194833P030149470001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNION SAVINGS BANK 401(K) PLAN","002","1993-01-01","UNION SAVINGS BANK",,,"8534 EAST KEMPER ROAD",,"CINCINNATI","OH","45249",,,,,,,,,,,,,,,,,,"310473290","5138423853","522110","UNION SAVINGS BANK",,"8534 EAST KEMPER ROAD",,"CINCINNATI","OH","45249",,,,,,,"310473290","5138423853",,,,"2011-10-14T15:40:31-0500","LORA BUNGENSTOCK","2011-10-14T15:40:31-0500","LORA BUNGENSTOCK",,,638,597,0,95,692,0,692,548,10,,"2E2F2H2J2K2T3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014181642P040153054401001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1","0","0","0",,"UNIVERSAL PARAGON CORPORATION 401(K) PLAN","001","1994-10-01","UNIVERSAL PARAGON CORPORATION",,,"555 UNIVERSAL HOLLYWOOD DRIVE",,"UNIVERSAL CITY","CA","91608",,,,,,,,,,,,,,,,,,"943107608","8185092039","721110","UNIVERSAL PARAGON CORPORATION",,"555 UNIVERSAL HOLLYWOOD DRIVE",,"UNIVERSAL CITY","CA","91608",,,,,,,"943107608","8185092039",,,,"2011-10-14T18:15:55-0500","MICHELLE SZETO",,,,,531,422,0,24,446,0,446,230,2,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014182033P040004719571001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TRI-STATE 401K PLAN AND TRUST","002","1986-03-01","TRI-STATE GENERATION & TRANSMISSION ASSOCIATION, INC.",,,"PO BOX 33695",,"DENVER","CO","802330695",,,,,,,,,,,,,,,,,,"840464189","3034526111","221100","TRI-STATE GENERATION & TRANSMISSION ASSOCIATION, INC.",,"PO BOX 33695",,"DENVER","CO","802330695",,,,,,,"840464189","3034526111",,,,"2011-10-14T18:20:32-0500","ELDA DE LA PENA",,,,,838,850,0,0,850,0,850,850,,,"2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014173921P030149322769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEVENS TRANSPORT, INC. 401(K) PLAN & TRUST","001","1991-10-01","STEVENS TRANSPORT, INC.",,,"9757 MILITARY PKWY",,"DALLAS","TX","75227",,,,,,,,,,,,,,,,,,"751302273","9722169000","484200","STEVENS TRANSPORT, INC.",,"9757 MILITARY PKWY",,"DALLAS","TX","75227",,,,,,,"751302273","9722169000",,,,"2011-10-14T13:14:57-0500","MARK SEAGROVES",,,,,2024,2651,0,152,2803,0,2803,402,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014182100P030693218480001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE JESS HOWARD ELECTRIC COMPANY EMPLOYEES' AMENDED AND RESTATED 401(K) PROFIT SHARING PLAN AND TRUST","001","1984-01-01","JESS HOWARD ELECTRIC COMPANY, INC.",,,"6630 TAYLOR ROAD",,"BLACKLICK","OH","43004",,,,,,,,,,,,,,,,,,"314405752","6148611300","238210","JESS HOWARD ELECTRIC COMPANY, INC.",,"6630 TAYLOR ROAD",,"BLACKLICK","OH","43004",,,,,,,"314405752","6148611300",,,,"2011-10-14T14:02:33-0500","AL BOLTON",,,,,175,127,1,22,150,0,150,92,1,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014183146P030022047778001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHWEST CASINO AND HOTEL CORP. 401(K) PROFIT SHARING PLAN","001","1999-01-01","SOUTHWEST CASINO AND HOTEL CORP.",,,"20 64TH WAY",,"MINNEAPOLIS","MN","55432",,,,,,,,,,,,,,,,,,"411721968","9528539990","713200","SOUTHWEST CASINO AND HOTEL CORP.",,"20 64TH WAY",,"MINNEAPOLIS","MN","55432",,,,,,,"411721968","9528539990",,,,"2011-10-14T14:15:09-0500","THOMAS FOX",,,,,143,3,0,63,66,0,66,65,1,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014195725P030149480689001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DWIGHT ORTHOPEDIC REHABILITATION CO 401K PROFIT SHARING PLAN","001","1991-01-01","DWIGHT ORTHOPEDIC REHABILITATION CO",,,"1432 EAST TWELVE MILE ROAD",,"MADISON HEIGHTS","MI","48071",,,,,,,,,,,,,,,,,,"383085624","2485448779","621340","DWIGHT ORTHOPEDIC REHABILITATION CO",,"1432 EAST TWELVE MILE ROAD",,"MADISON HEIGHTS","MI","48071",,,,,,,"383085624","2485448779",,,,"2011-10-14T15:55:37-0500","SUSAN L WEATHERS",,,,,108,94,0,14,108,0,108,108,0,,"2E2G2J2K3D2F",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014201820P030149502401001","2010-05-01","2011-04-30","1",,"0","0","0","0","0","0","0","0","0",,"JIM HAWK TRUCK TRAILER, INC. AND AFFILIATES LIFE PLAN","502","1989-02-01","JIM HAWK TRUCK TRAILER, INC.",,,"3403 SOUTH 11TH STREET",,"COUNCIL BLUFFS","IA","51501",,,,,,,,,,,,,,,,,,"421022818","7123662241","423800","JIM HAWK TRUCK TRAILER, INC.",,"3403 SOUTH 11TH STREET",,"COUNCIL BLUFFS","IA","51501",,,,,,,"421022818","7123662241",,,,"2011-10-14T16:11:06-0500","EUGENE DOLLEN","2011-10-14T16:11:06-0500","EUGENE DOLLEN",,,265,250,0,0,250,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014183154P030149380913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCHINDLER ELEVATOR CORPORATION RETIREMENT PLAN","001","1989-01-01","SCHINDLER ELEVATOR CORPORATION",,,"20 WHIPPANY ROAD",,"MORRISTOWN","NJ","07960",,,,,,,,,,,,,,,,,,"341270056","9733976500","335900","SCHINDLER ELEVATOR CORPORATION",,"20 WHIPPANY ROAD",,"MORRISTOWN","NJ","07960",,,,,,,"341270056","9733976500",,,,"2011-10-14T14:15:20-0500","LISA SISTO",,,,,2972,924,457,1390,2771,105,2876,,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","1","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014210443P030149547009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREAT PLAINS ENERGY INCORPORATED MANAGEMENT HEALTH & WELFARE PLAN","504","1976-01-01","GREAT PLAINS ENERGY INCORPORATED",,,"P. O. BOX 418679",,"KANSAS CITY","MO","641419679",,,,,,,,,,,,,,,,,,"431916803","8165562200","221100","GREAT PLAINS ENERGY INCORPORATED",,"P. O. BOX 418679",,"KANSAS CITY","MO","641419679",,,,,,,"431916803","8165562200",,,,"2011-10-14T17:44:27-0500","KELLY MURPHY DIRECTOR COMP BENEFITS","2011-10-14T17:44:27-0500","KELLY MURPHY DIRECTOR COMP BENEFITS",,,5359,3187,2042,56,5285,,,,,,,"4A4B4E4L","1","0","1","0","1","0","1","0","0","0","0","1","0","1","3","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014193311P030149449201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CURTIS CIRCULATION COMPANY EMPLOYEES' RETIREMENT PLAN","001","1986-06-01","CURTIS CIRCULATION COMPANY",,,"2500 MCCLELLAN AVENUE",,"PENNSAUKEN","NJ","08109",,,,,,,,,,,,,,,,,,"222749087","8569102001","425120","CURTIS CIRCULATION COMPANY",,"2500 MCCLELLAN AVENUE",,"PENNSAUKEN","NJ","08109",,,,,,,"222749087","8569102001",,,,"2011-10-14T15:26:17-0500","DOMENIC CROCETTI","2011-10-14T15:26:17-0500","DOMENIC CROCETTI",,,378,218,17,123,358,9,367,,5,,"1A1G3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014193714P030149454113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNION STATE BANK 401(K) PROFIT SHARING PLAN","001","1991-01-01","UNION STATE BANK",,,"PO BOX 647",,"PELL CITY","AL","35125",,,,,,,,,,,,,,,,,,"630215110","2058841520","522110","UNION STATE BANK",,"PO BOX 647",,"PELL CITY","AL","35125",,,,,,,"630215110","2058841520",,,,"2011-10-14T15:30:00-0500","REED ALEXANDER",,,,,137,109,2,30,141,0,141,130,5,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014204419P030149528081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMULEX CORPORATION RETIREMENT SAVINGS PLAN","001","1989-01-01","EMULEX CORPORATION",,,"3333 SUSAN STREET",,"COSTA MESA","CA","92626",,,,,,,,,,,,,,,,,,"953342259","7146625600","334110","EMULEX CORPORATION",,"3333 SUSAN STREET",,"COSTA MESA","CA","92626",,,,,,,"953342259","7146625600",,,,"2011-10-14T16:24:32-0500","SUSAN BOWMAN","2011-10-14T16:56:51-0500","MICHAEL ROCKENBACH",,,812,705,0,189,894,0,894,894,25,,"2E3H2G2J2K2F2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014193345P030149449889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERIS BANCORP 401(K) PROFIT SHARING PLAN","002","1998-01-01","AMERIS BANCORP",,,"24 SECOND AVENUE SE",,"MOULTRIE","GA","31768",,,,,,,,,,,,,,,,,,"581456434","2298901111","522110","AMERIS BANCORP",,"24 SECOND AVENUE SE",,"MOULTRIE","GA","31768",,,,,,,"581456434","2298901111",,,,"2011-10-14T15:26:51-0500","CINDI LEWIS",,,,,811,703,2,189,894,0,894,707,114,,"3D2E2J3H2K2F2G2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014205058P030022083106001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"FOLSOM MAIL CORP. 401K PLAN","001","2007-12-18","FOLSOM MAIL CORP.",,,"PO BOX 1164",,"RANCHO MURIETA","CA","956831164",,,,,,,,,,,,,,,,,,"261640968","9168686960","541800","FOLSOM MAIL CORP.",,"PO BOX 1164",,"RANCHO MURIETA","CA","956831164",,,,,,,"261640968","9168686960",,,,"2011-10-14T17:11:10-0500","SCOTT SPIEGELMAN","2011-10-14T17:11:10-0500","SCOTT SPIEGELMAN",,,2,2,0,0,2,0,2,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014203541P030149520881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"5.11 INC. 401(K) PROFIT SHARING PLAN","001","2004-01-01","5.11 INC.",,,"4300 SPYRES WAY",,"MODESTO","CA","953569259",,,,,,,,,,,,,,,,,,"611443499","2095274511","424300","5.11 INC.",,"4300 SPYRES WAY",,"MODESTO","CA","953569259",,,,,,,"611443499","2095274511",,,,"2011-10-14T16:39:59-0500","DILLON OLVERA","2011-10-14T16:39:03-0500","DILLON OLVERA",,,246,237,0,46,283,2,285,213,0,,"2E2F2G2J3D2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014204054P030149525665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BALL AUTOMOTIVE GROUP 401K PLAN","002","1998-11-01","BALL AUTOMOTIVE GROUP",,,"1935 NATIONAL CITY BLVD",,"NATIONAL CITY","CA","91950",,,,,,,,,,,,,,,,,,"952571142","6194746431","441110","BALL AUTOMOTIVE GROUP",,"1935 NATIONAL CITY BLVD",,"NATIONAL CITY","CA","91950",,,,,,,"952571142","6194746431",,,,"2011-10-14T16:50:59-0500","NICK SUTHEIMER",,,,,155,141,1,6,148,0,148,45,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014180543P030149353537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YSI, INCORPORATED EMPLOYEE STOCK OWNERSHIP PLAN","002","1983-01-02","YSI, INCORPORATED",,,"P.O. BOX 279",,"YELLOW SPRINGS","OH","453870279",,,,,,,"1700/1725 BRANNUM LANE",,"YELLOW SPRINGS","OH","453871106",,,,,,,"310526418","9377677241","334410","YSI, INCORPORATED",,"P.O. BOX 279",,"YELLOW SPRINGS","OH","453870279",,,,,,,"310526418","9377677241",,,,"2011-10-14T13:44:38-0500","DEBORAH STOTTLEMYER","2011-10-14T13:44:38-0500","DEBORAH STOTTLEMYER",,,303,243,3,62,308,0,308,305,11,,"2O2I3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014181348P030149363633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FOAM DESIGN, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1976-12-01","FOAM DESIGN, INC.",,,"444 TRANSPORT CT",,"LEXINGTON","KY","405111015",,,,,,,,,,,,,,,,,,"610865119","8592317006","326100","FOAM DESIGN, INC.",,"444 TRANSPORT CT",,"LEXINGTON","KY","405111015",,,,,,,"610865119","8592317006",,,,"2011-10-14T13:54:17-0500","DOUGLAS M. GRADEK",,,,,150,108,0,12,120,0,120,110,7,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014182157P040025145158001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPIRE DISTRICT ELECTRIC COMPANY EMPLOYEES' GROUP ACCIDENTAL DEATH","508","1962-09-01","THE EMPIRE DISTRICT ELECTRIC CO",,,"PO BOX 127",,"JOPLIN","MO","64801",,,,,,,"602 S JOPLIN AVE",,"JOPLIN","MO","64801",,,,,,,"440236370","4176255100","221100","THE EMPIRE DISTRICT ELECTRIC CO","THE EMPIRE DISTRICT ELECTRIC CO","PO BOX 127",,"JOPLIN","MO","64801",,,,,,,"440236370","4176255100",,,,"2011-10-14T17:37:57-0500","VICKI J. WILLIAMS",,,,,992,732,262,0,994,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014202443P030022075778001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAMPIN CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","002","2001-01-01","LAMPIN CORPORATION",,,"PO BOX 327",,"UXBRIDGE","MA","01569",,,,,,,"38 RIVER ROAD",,"UXBRIDGE","MA","01569",,,,,,,"042774191","5082782422","333510","LAMPIN CORPORATION",,"PO BOX 327",,"UXBRIDGE","MA","01569",,,,,,,"042774191","5082782422",,,,"2011-10-14T20:24:42-0500","RICHARD MONGEAU",,,,,29,23,7,0,30,0,30,29,0,,"2E2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014200443P030149488593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEVES & SONS EMPLOYEES 401K PROFIT SHARING PLAN","001","1998-02-01","STEVES & SONS INC.",,,"P.O. BOX 1866",,"SAN ANTONIO","TX","782971866",,,,,,,,,,,,,,,,,,"741320441","2109245111","339900","STEVES & SONS INC.",,"P.O. BOX 1866",,"SAN ANTONIO","TX","782971866",,,,,,,"741320441","2109245111",,,,"2011-10-14T13:06:42-0500","STEPHEN J TONRA","2011-10-14T13:06:42-0500","STEPHEN J TONRA",,,787,746,0,24,770,1,771,194,15,,"2E2F2G2J2K2T3D3H",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014202812P030149515105001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SUB PLAN FOR HOURLY EMPLOYEES - MON VALLEY PLANTS","504","1956-08-03","SEVERSTAL WHEELING INC",,,"1134 MARKET STREET",,"WHEELING","WV","26003",,,,,,,,,,,,,,,,,,"550703273","3042342455","331110","SEVERSTAL WHEELING INC",,"1134 MARKET STREET",,"WHEELING","WV","26003",,,,,,,"550703273","3042342455",,,,"2011-10-14T16:28:12-0500","DREW LANDON",,,,,193,69,0,0,69,,,,,,,"4C4R","0","0","1","1","0","0","1","1","0","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014202828P030149515569001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"TALBERT MEDICAL GROUP, INC. 401(K) RETIREMENT PLAN","001","1999-08-15","TALBERT MEDICAL GROUP, INC.",,,"1665 NORTH SCENIC AVENUE","SUITE 100","COSTA MESA","CA","92626",,,,,,,,,,,,,,,,,,"931172065","7144364800","621111","TALBERT MEDICAL GROUP, INC.",,"1665 NORTH SCENIC AVENUE","SUITE 100","COSTA MESA","CA","92626",,,,,,,"931172065","7144364800",,,,"2011-10-14T16:28:29-0500","RON HERRERA",,,,,934,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014202901P030022077410001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CUSTOM DIRECT, INC. 401K PLAN","001","1993-01-01","CUSTOM DIRECT, INC.",,,"1802 FASHION COURT",,"JOPPA","MD","21085",,,,,,,,,,,,,,,,,,"161582962","4106793300","323100","CUSTOM DIRECT, INC.",,"1802 FASHION COURT",,"JOPPA","MD","21085",,,,,,,"161582962","4106793300",,,,"2011-10-14T16:28:56-0500","MARY SHANAHAN",,,,,595,313,0,281,594,0,594,576,102,,"2E2F2G2J2K3D3H2S",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014203555P030022078898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C. J. FOODS, INC. 401(K) RETIREMENT PLAN","001","1997-01-01","C. J. FOODS, INC.",,,"NORTH HWY 50, P.O. BOX 348",,"PAWNEE CITY","NE","684200000",,,,,,,,,,,,,,,,,,"930904319","4028522341","445110","C. J. FOODS, INC.",,"NORTH HWY 50, P.O. BOX 348",,"PAWNEE CITY","NE","684200000",,,,,,,"930904319","4028522341",,,,"2011-10-14T16:40:24-0500","LYNETTE STRATHMAN",,,,,127,118,0,5,123,0,123,123,0,,"2E2F2G2J2R2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014203606P030149521425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE SAMUEL ROBERTS NOBLE FOUNDATION, INC. HEALTH PLAN","501","1988-01-01","THE SAMUEL ROBERTS NOBLE FOUNDATION",,,"2510 SAM NOBLE PARKWAY",,"ARDMORE","OK","73401",,,,,,,,,,,,,,,,,,"730606209","5802235810","813000","THE SAMUEL ROBERTS NOBLE FOUNDATION",,"2510 SAM NOBLE PARKWAY",,"ARDMORE","OK","73401",,,,,,,"730606209","5802235810",,,,"2011-10-14T16:33:51-0500","M. TEAL PEMBERTON",,,,,376,339,51,0,390,,,,,,,"4A4D4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014173955P040687543328001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELDERCARE OF MINNESOTA EMPLOYEES' RETIREMENT PLAN","001","1994-05-29","ELDERCARE OF MINNESOTA",,,"920 4TH ST SE",,"LITTLE FALLS","MN","56345",,,,,,,"920 4TH ST SE",,"LITTLE FALLS","MN","56345",,,,,,,"203549819","3206314180","623000","ELDERCARE OF MINNESOTA",,"920 4TH ST SE",,"LITTLE FALLS","MN","56345",,,,,,,"203549819","3206314180",,,,"2011-10-14T17:39:23-0500","TIM MATROS",,,,,803,813,,57,870,,870,339,9,,"2E2F2G2J2K2T3D3H",,"1",,,,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014174500P030693089824001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"AMRON LLC EMPLOYEES' RETIREMENT PLAN","002","1965-10-01","AMRON LLC",,,"140 LONG RD",,"CHESTERFIELD","MO","630051206",,,,,,,,,,,,,,,,,,"391856205","6365371909","332700","AMRON LLC",,"140 LONG RD",,"CHESTERFIELD","MO","630051206",,,,,,,"391856205","6365371909",,,,"2011-10-14T17:44:47-0500","ROBERT HOFFMAN","2011-10-14T17:44:47-0500","ROBERT HOFFMAN",,,172,0,109,58,167,1,168,0,0,,"1A1G1I",,"1",,,,"1",,,,"1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014205933P030149541793001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"ALOHA AIRLINES, INC. PILOTS' EQUITY ANNUITY PLAN","002","1964-03-01","ALOHA AIRLINES, INC.",,,"P.O. BOX 30028",,"HONOLULU","HI","96820",,,,,,,,,,,,,,,,,,"990064888","8085395939","481000","ALOHA AIRLINES, INC. PENSION COMMITTEE",,"P.O. BOX 30028",,"HONOLULU","HI","96820",,,,,,,"990172599","8085395939",,,,"2011-10-14T17:31:29-0500","DANE FILED","2011-10-14T17:31:29-0500","DANE FILED",,,303,0,0,0,0,0,0,0,0,,"2C2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014220450P040022991170001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FROEDTERT MEMORIAL LUTHERAN HOSPITAL/FROEDTERT & COMMUNITY HEALTH IRC 403(B) THRIFT PLAN","003","1986-05-01","FROEDTERT MEMORIAL LUTHERAN HOSPITAL, INC.",,,"9200 WEST WISCONSIN AVENUE",,"MILWAUKEE","WI","53226",,,,,,,,,,,,,,,,,,"396105970","4148057000","622000","RETIREMENT COMMITTEE OF FROEDTERT MEMORIAL LUTHERAN HOSPITAL, INC.","403B THRIFT PLAN","9200 WEST WISCONSIN AVENUE",,"MILWAUKEE","WI","53226",,,,,,,"391575298","4148057000",,,,"2011-10-14T14:01:08-0500","JEFFREY VAN DE KREEKE","2011-10-14T14:01:08-0500","JEFFREY VAN DE KREEKE",,,1892,1872,0,845,2717,0,2717,2410,0,,"2L",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","6","1","1","1","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014193407P030149450305003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WILLIAM A. SMITH & ASSOCIATES, P.C. 401K PROFIT SHARING PLAN","001","2007-01-01","WILLIAM A SMITH & ASSOCIATES, P.C.",,,"10440 N. CENTRAL EXPWY., STE. 1295",,"DALLAS","TX","75231",,,,,,,,,,,,,,,,,,"752381966","2149690909","541110","WILLIAM A SMITH & ASSOCIATES, P.C.",,"10440 N. CENTRAL EXPWY., STE. 1295",,"DALLAS","TX","75231",,,,,,,"752381966","2149690909",,,,"2011-10-13T13:50:26-0500","WILLIAM A SMITH",,,,,3,0,,,0,,0,,,,"2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014203125P030149517665001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NRG PENSION PLAN FOR NON-BARGAINED EMPLOYEES","004","2004-01-01","NRG AFFILIATE SERVICES INC.",,,"211 CARNEGIE CENTER",,"PRINCETON","NJ","08540",,,,,,,,,,,,,,,,,,"411960764","6123735300","221100","NRG AFFILIATE SERVICES INC.",,"211 CARNEGIE CENTER",,"PRINCETON","NJ","08540",,,,,,,"411960764","6123735300",,,,"2011-10-14T16:32:43-0500","PATTI HELFER",,,,,530,393,57,69,519,4,523,,0,,"1A1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014175116P030149332801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE TOPPS COMPANY 401(K) SAVINGS AND INVESTMENT PLAN","001","1985-01-01","THE TOPPS COMPANY, INC.",,,"ONE WHITEHALL STREET",,"NEW YORK","NY","10004",,,,,,,,,,,,,,,,,,"112849283","2123760300","323100","THE TOPPS COMPANY, INC.",,"ONE WHITEHALL STREET",,"NEW YORK","NY","10004",,,,,,,"112849283","2123760300",,,,"2011-10-14T13:28:42-0500","JOSEPH DEL TORO",,,,,448,243,0,109,352,0,352,248,0,,"3D2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014210228P030149544449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STANDARD & POOR'S EMPLOYEE RETIREMENT PLAN FOR REPRESENTED EMPLOYEES","008","1945-02-01","THE MCGRAW-HILL COMPANIES, INC.",,,"1221 AVENUE OF THE AMERICAS",,"NEW YORK","NY","100201001",,,,,,,,,,,,,,,,,,"131026995","2125122000","511190","THE MCGRAW-HILL COMPANIES, INC.",,"1221 AVENUE OF THE AMERICAS",,"NEW YORK","NY","100201001",,,,,,,"131026995","2125122000",,,,"2011-10-14T17:40:49-0500","MARTY MARTIN","2011-10-14T17:40:49-0500","MARTY MARTIN",,,2023,918,345,739,2002,51,2053,,22,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014210007P030149542417001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"HUSCO INTERNATIONAL, INC. ESOP & SAVINGS PLAN (ESOP COMPONENT)","004","2002-01-01","HUSCO INTERNATIONAL, INC.",,,"2239 PEWAUKEE ROAD",,"WAUKESHA","WI","53188",,,,,,,,,,,,,,,,,,"391531107","2625134200","333100","HUSCO INTERNATIONAL, INC.",,"2239 PEWAUKEE ROAD",,"WAUKESHA","WI","53188",,,,,,,"391531107","2625134200",,,,"2011-10-14T17:34:05-0500","TODD HOYTINK",,,,,619,512,1,109,622,0,622,486,1,,"2O2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014214623P040688123280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"ALLEGRA DIRECT COMMUNICATIONS","501","2003-01-01","ALLEGRA DIRECT COMMUNICATIONS",,,"47792 VAN DYKE AVE",,"SHELBY TOWNSHIP","MI","48317",,,,,,,"47792 VAN DYKE AVE",,"SHELBY TOWNSHIP","MI","48317",,,,,,,"383473765","5863236555","561490","ALLEGRA DIRECT COMMUNICATIONS",,"47792 VAN DYKE AVE",,"SHELBY TOWNSHIP","MI","48317",,,,,,,"383473765","5863236555",,,,"2011-10-14T21:46:06-0500","DAVID LATTER",,,,,191,185,,,185,,185,,,,,"4A4F4C4D4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014175958P040022970706001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VECTOR RESOURCES, INC. 401K PROFIT SHARING PLAN","001","1997-01-01","VECTOR RESOURCES, INC.",,,"3530 VOYAGER ST.",,"TORRANCE","CA","905031666",,,,,,,,,,,,,,,,,,"954154511","3104361000","541519","VECTOR RESOURCES, INC.",,"3530 VOYAGER ST.",,"TORRANCE","CA","905031666",,,,,,,"954154511","3104361000",,,,"2011-10-14T17:58:00-0500","DAVID ZUKERMAN",,,,,374,344,0,111,455,0,455,402,3,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014195855P030149482849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LIFESPAN CORPORATION 401(K) RETIREMENT PLAN","004","1987-01-01","LIFESPAN CORPORATION",,,"167 POINT STREET, SUITE 2C, RM 246",,"PROVIDENCE","RI","02903",,,,,,,,,,,,,,,,,,"222861978","4014444563","622000","LIFESPAN CORPORATION",,"167 POINT STREET, SUITE 2C, RM 246",,"PROVIDENCE","RI","02903",,,,,,,"222861978","4014444563",,,,"2011-10-14T19:58:54-0500","WILLIAM KIRKWOOD",,,,,148,181,0,18,199,0,199,88,1,,"2E2F2G2J3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014203705P030149522785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PBS TAX & BOOKKEEPING SERVICE, INC. 401(K) PROFIT SHARING PLAN","001","1996-01-01","ABRAMS & HORWITZ ENTERPRISES, INC. DBA PBS TAX & BOOKKKEEPING SERVICE",,,"18757 BURBANK BLVD., #216",,"TARZANA","CA","91356",,,,,,,,,,,,,,,,,,"952913400","8187768430","541211","ABRAMS & HORWITZ ENTERPRISES, INC. DBA PBS TAX & BOOKKKEEPING SERVICE",,"18757 BURBANK BLVD., #216",,"TARZANA","CA","91356",,,,,,,"952913400","8187768430",,,,"2011-10-14T16:42:58-0500","CONTRACT ADMINISTRATOR",,,,,5,4,0,0,4,0,4,4,0,,"2E2H2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014181209P030149361425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROCK-IT CARGO USA LLC 401(K) PLAN","001","1997-01-01","ROCK-IT CARGO USA LLC",,,"5438 W 104TH STREET",,"LOS ANGELES","CA","90045",,,,,,,,,,,,,,,,,,"203879208","3104100935","488990","ROCK-IT CARGO USA LLC",,"5438 W 104TH STREET",,"LOS ANGELES","CA","90045",,,,,,,"203879208","3104100935","ROCK IT CARGO USA LLC","203879208","001","2011-10-14T13:52:02-0500","ANDREW DIETZ",,,,,176,154,0,13,167,0,167,131,4,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014184143P040153072225003","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"MILES PRESERVATION, LLC DEFINED BENEFIT PENSION PLAN & TRUST","002","2010-01-01","MILES PRESERVATION, LLC",,,"29960 CENTRAL AVENUE",,"NUEVO","CA","92567",,,,,,,"29960 CENTRAL AVENUE",,"NUEVO","CA","92567",,,,,,,"352288760",,"238900","MILES PRESERVATION, LLC",,"29960 CENTRAL AVENUE",,"NUEVO","CA","92567",,,,,,,"352288760",,,,,"2011-10-11T11:21:00-0500","ADAM MILES","2011-10-11T11:21:00-0500","ADAM MILES",,,0,6,0,0,6,0,6,,0,,"1A1G",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014221125P040153180609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TARZANA TREATMENT CENTERS, INC. TAX DEFERRED SAVINGS PLAN","001","2000-01-01","TARZANA TREATMENT CENTER, INC.",,,"18646 OXNARD STREET",,"TARZANA","CA","91356",,,,,,,,,,,,,,,,,,"942219349","8189961051","621420","TARZANA TREATMENT CENTER, INC.",,"18646 OXNARD STREET",,"TARZANA","CA","91356",,,,,,,"942219349","8189961051",,,,"2011-10-14T22:10:43-0500","ALBERT SENELLA",,,,,524,433,0,84,517,0,517,226,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014203045P030022077954001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SEMLING-MENKE COMPANY, INC. BARGAINING UNIT EMPLOYEES RETIREMENT SAVINGS PLAN","005","1990-06-02","SEMLING-MENKE COMPANY, INC.",,,"P.O. BOX 378",,"MERRILL","WI","544520378",,,,,,,,,,,,,,,,,,"390607028","7155369411","321210","SEMLING-MENKE COMPANY, INC.",,"P.O. BOX 378",,"MERRILL","WI","544520378",,,,,,,"390607028","7155369411",,,,"2011-10-14T16:32:09-0500","PATRICK SEMLING","2011-10-14T16:32:09-0500","PATRICK SEMLING",,,215,163,4,11,178,0,178,177,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014200622P030693618176001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"BCN ADMINISTRATIVE SERVICES MULTIPLE EMPLOYER PLAN","333","2003-05-01","BCN ADMINISTRATIVE SERVICES, INC.",,,"3650 W. LIBERTY ROAD",,"ANN ARBOR","MI","48103",,,,,,,,,,,,,,,,,,"383358642","7349944100","561300","BCN ADMINISTRATIVE SERVICES, INC.",,"3650 W. LIBERTY ROAD",,"ANN ARBOR","MI","48103",,,,,,,"383358642","7349944100",,,,"2011-10-14T13:47:24-0500","ANDY HANS",,,,,2058,1436,0,348,1784,0,1784,739,6,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014174330P030693083872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UC HEALTH 401(K) RETIREMENT SAVINGS PLAN","007","2003-01-01","UC HEALTH",,,"3200 BURNET AVENUE",,"CINCINNATI","OH","45229",,,,,,,,,,,,,,,,,,"311435820","5135856000","622000","UC HEALTH",,"3200 BURNET AVENUE",,"CINCINNATI","OH","45229",,,,,,,"311435820","5135856000","THE HEALTH ALLIANCE OF GREATER CINCINNATI","311435820","007","2011-10-14T13:19:54-0500","DEBBE ENDRES",,,,,11545,8398,0,1471,9869,1,9870,9052,894,,"2E2F2G2J2K2S2T3F3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014212241P030149563889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CUBAN WAGNER SELF-INSURED EMPLOYEE BENEFIT PLAN","501","2006-01-01","CUBAN WAGNER SELF-INSURED EMPLOYEE BENEFIT PLAN",,"C/O MR. SCHUYLER HANSEN","2222 SOUTH BARRIGTON AVENUE",,"LOS ANGELES","CA","90064",,,,,,,,,,,,,,,,,,"203968863","3103122308","551112","SCHUYLER HANSEN CFO",,"2222 SOUTH BARRINGTON AVENUE",,"LOS ANGELES","CA","90064",,,,,,,"203968863","3103122308",,,,"2011-10-14T18:39:48-0500","VERONICA RAFATI",,,,,325,302,6,0,308,,,,,,,"4A4B4D4E4H","1","0","1","0","1","0","1","0","0","0","0","1","0","1","3","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014215233P040153167617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALIEN TECHNOLOGY 401(K) PLAN","001","1999-01-01","ALIEN TECHNOLOGY CORPORATION",,,"18220 BUTTERFIELD BOULEVARD",,"MORGAN HILL","CA","95037",,,,,,,,,,,,,,,,,,"943218439","4087823900","541519","ALIEN TECHNOLOGY CORPORATION",,"18220 BUTTERFIELD BOULEVARD",,"MORGAN HILL","CA","95037",,,,,,,"943218439","4087823900",,,,"2011-10-14T19:29:19-0500","CAROL MEYERS",,,,,124,43,0,73,116,0,116,98,0,,"2E2F2G2J2K3D2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014203244P030149518417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELLIS CORPORATION 401(K) PROFIT-SHARING PLAN","001","1985-01-01","ELLIS CORPORATION",,,"1400 W. BRYN MAWR AVE.",,"ITASCA","IL","60143",,,,,,,,,,,,,,,,,,"361038030","6302504822","333310","ELLIS CORPORATION",,"1400 W. BRYN MAWR AVE.",,"ITASCA","IL","60143",,,,,,,"361038030","6302504822",,,,"2011-10-14T16:35:05-0500","MARK BENRUS",,,,,122,89,0,31,120,0,120,95,1,,"3D2E2J3H2K2F2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014175128P030149333265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BELLHAVEN NURSING CENTER 401(K) PROFIT SHARING PLAN AND TRUST","001","1991-01-01","BELLHAVEN NURSING CENTER",,,"1 ARBOR LANE",,"DIX HILLS","NY","11746",,,,,,,,,,,,,,,,,,"113088629","6312441466","623000","BELLHAVEN NURSING CENTER",,"1 ARBOR LANE",,"DIX HILLS","NY","11746",,,,,,,"113088629","6312441466",,,,"2011-10-14T13:29:10-0500","WILLIAM CLEMANS",,,,,385,0,0,217,217,1,218,218,0,,"2E2F2J2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014175632P030693129408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCHINDLER ELEVATOR CORPORATION HEALTH CARE, LIFE, ACCIDENT & DISABILITY PLAN","501","1989-01-01","SCHINDLER ELEVATOR CORPORATION",,,"20 WHIPPANY ROAD","PO BOX 1935","MORRISTOWN","NJ","07960",,,,,,,,,,,,,,,,,,"341270056","9733976500","335900","SCHINDLER ELEVATOR CORPORATION",,"20 WHIPPANY ROAD","PO BOX 1935","MORRISTOWN","NJ","07960",,,,,,,"341270056","9733976500",,,,"2011-10-14T13:34:55-0500","LISA SISTO",,,,,2823,1737,999,0,2736,,,,,,,"4A4B4D4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014203333P030149519105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELKAY MANUFACTURING COMPANY RETIREMENT AND SAVINGS PLAN","001","1952-01-01","ELKAY MANUFACTURING COMPANY",,,"2222 CAMDEN CT",,"OAK BROOK","IL","605234674",,,,,,,,,,,,,,,,,,"361037010","6305748484","332900","ELKAY MANUFACTURING COMPANY",,"2222 CAMDEN CT",,"OAK BROOK","IL","605234674",,,,,,,"361037010","6305748484",,,,"2011-10-14T16:36:22-0500","DAVID SOUTHARD",,,,,2561,2257,49,389,2695,5,2700,2566,130,,"2E2F2G2J2K3H2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014201909P030149502929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAMPA CARGO DBA TAMPA AIRLINES 401(K) PROFIT SHARING PLAN","001","2000-12-01","TRANSPORTES AEREOS MERCENTILES PANAMERICANOS","TAMPA CARGO",,"1650 NW 66TH AVE","BLDG 708, SUITE 206","MIAMI","FL","33122",,,,,,,,,,,,,,,,,,"591908878","3055266720","481000","TRANSPORTES AEREOS MERCENTILES PANAMERICANOS",,"1650 NW 66TH AVE","BLDG 708, SUITE 206","MIAMI","FL","33122",,,,,,,"591908878","3055266720",,,,"2011-10-14T16:12:00-0500","CAMILA MARX",,,,,126,120,0,9,129,0,129,34,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014180503P040153047985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WEATHER CENTRAL 401(K) PROFIT SHARING PLAN","001","1996-01-01","WEATHER CENTRAL LLC",,,"401 CHARMANY DRIVE",,"MADISON","WI","53719",,,,,,,,,,,,,,,,,,"270616264","6082745789","541990","WEATHER CENTRAL LLC",,"401 CHARMANY DRIVE",,"MADISON","WI","53719",,,,,,,"270616264","6082745789",,,,"2011-10-14T18:01:19-0500","PAUL NEITZEL",,,,,203,171,0,31,202,0,202,187,0,,"2A2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014212512P030149566449001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"VINSON & ELKINS LLP RET PLANS MTR TR PART DIRECTED","005",,"VINSON & ELKINS L.L.P.",,,"FIRST CITY TOWER","1001 FANNIN STREET, SUITE 2500","HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"746082424","7137583819",,"VINSON & ELKINS L.L.P.",,"FIRST CITY TOWER","1001 FANNIN STREET, SUITE 2500","HOUSTON","TX","77002",,,,,,,"746082424","7137583819",,,,"2011-10-14T18:53:00-0500","MCOLACICCO",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014220015P040022990450001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE DOE RUN RESOURCES CORPORATION RETIREMENT PLAN","101","1994-04-01","THE DOE RUN RESOURCES CORPORATION",,,"1801 PARK 270 DR. STE 300",,"SAINT LOUIS","MO","631464023",,,,,,,,,,,,,,,,,,"131255630","3144537105","212200","THE DOE RUN RESOURCES CORPORATION",,"1801 PARK 270 DR. STE 300",,"SAINT LOUIS","MO","631464023",,,,,,,"131255630","3144537105",,,,"2011-10-14T20:37:58-0500","BARBARA A. SHEPARD",,,,,2058,845,734,461,2040,0,2040,,0,,"1G1I3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014222132P030694028624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EL MONTE PLASTICS, INC. EMPLOYEES' PROFIT SHARING PLAN AND TRUST","002","1972-09-30","EL MONTE PLASTICS, INC.",,,"2435 STROZIER AVENUE",,"SO EL MONTE","CA","917332017",,,,,,,,,,,,,,,,,,"952580630","6264434945","326100","EL MONTE PLASTICS, INC.",,"2435 STROZIER AVENUE",,"SO EL MONTE","CA","917332017",,,,,,,"952580630","6264434945",,,,"2011-10-14T22:20:46-0500","PEGGY BURLINGHAM","2011-10-14T22:20:46-0500","PEGGY BURLINGHAM",,,96,0,0,87,87,2,89,89,0,,"2E2F2G3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014203346P030149519297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLLATERAL SERVICES, INC. EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","002","2006-01-01","COLLATERAL SERVICES, INC.",,,"530 DELAWARE STREET",,"LEAVENWORTH","KS","66048",,,,,,,,,,,,,,,,,,"204894515","9136801015","518210","COLLATERAL SERVICES, INC.",,"530 DELAWARE STREET",,"LEAVENWORTH","KS","66048",,,,,,,"204894515","9136801015",,,,"2011-10-14T16:36:50-0500","KELLY HANDKE",,,,,10,10,0,11,21,0,21,19,0,,"2O2Q",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014203351P030022078594001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"EMPLOYEES RETIREMENT INCOME PLAN FOR RAYONIER INC. BARGAINING UNIT EMPLOYEES AT THE JESUP MILL","007","1949-01-01","RAYONIER INC.",,,"1301 RIVERPLACE BLVD","SUITE 2300","JACKSONVILLE","FL","32207",,,,,,,,,,,,,,,,,,"132607329","9043579100","321900","RAYONIER INC.",,"1301 RIVERPLACE BLVD","SUITE 2300","JACKSONVILLE","FL","32207",,,,,,,"132607329","9043579100",,,,"2011-10-14T16:36:50-0500","W. EDWIN FRAZIER, III",,,,,1404,631,534,91,1256,128,1384,,4,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014181016P030693181664001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"THE ROCHESTER SCHOOL OF THE HOLY CHILDHOOD, INC. BENEFITS PLAN","503","1993-05-01","THE ROCHESTER SCHOOL OF THE HOLY CHILDHOOD, INC.",,,"100 GROTON PARKWAY",,"ROCHESTER","NY","146234589",,,,,,,,,,,,,,,,,,"160761224","5853593710","611000","THE ROCHESTER SCHOOL OF THE HOLY CHILDHOOD, INC.",,"100 GROTON PARKWAY",,"ROCHESTER","NY","146234589",,,,,,,"160761224","5853593710",,,,"2011-10-14T13:49:44-0500","KAREN FAIRHEAD",,,,,106,106,0,0,106,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014181921P030149369697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOTAL MERCHANT SERVICES, INC 401(K) / PROFIT SHARING PLAN","001","1998-12-26","TOTAL MERCHANT SERVICES, INC",,,"255 GOLD RIVERS RD","THIRD FLOOR","BASALT","CO","81621",,,,,,,,,,,,,,,,,,"541813786","9704299701","518210","TOTAL MERCHANT SERVICES, INC",,"255 GOLD RIVERS RD","THIRD FLOOR","BASALT","CO","81621",,,,,,,"541813786","9704299701",,,,"2011-10-14T14:01:03-0500","SHARON K WISSLER",,,,,224,140,0,59,199,0,199,150,2,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014161051P030149239361001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SPOONER HEALTH SYSTEM 403(B) PLAN","001","1965-11-01","SPOONER HEALTH SYSTEM",,,"819 ASH STREET",,"SPOONER","WI","548011201",,,,,,,,,,,,,,,,,,"390892183","7156352111","622000","SPOONER HEALTH SYSTEM",,"819 ASH STREET",,"SPOONER","WI","548011201",,,,,,,"390892183","7156352111",,,,"2011-10-14T11:47:24-0500","CYNTHIA ROUZER",,,,,346,282,0,55,337,0,337,189,0,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014164225P040152985217001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"POTTER HOLDINGS, INC. 401K PLAN","002","1998-01-01","POTTER HOLDINGS INC",,,"4820 GRETNA",,"DALLAS","TX","752075204",,,,,,,,,,,,,,,,,,"751868716","2146302191","238100","POTTER HOLDINGS INC",,"4820 GRETNA",,"DALLAS","TX","752075204",,,,,,,"751868716","2146302191",,,,"2011-10-14T16:40:39-0500","JOHN CAFFEY",,,,,815,441,0,1,442,0,442,367,30,,"2E2F2G2J2K3D3H2S2T",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014170008P030692929312004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"NAWAL R. ROUMIE DMD PROFIT SHARING PLAN","003","1999-01-01","NAWAL W. KHALIL DMD",,"NAWAL W. KHALIL","817 PAVONIA AVENUE",,"JERSEY CITY","NJ","07306",,,,,,,,,,,,,,,,,,"222858045","2013323535","621210","NAWAL W. KHALIL DMD","NAWAL W. KHALIL","817 PAVONIA AVENUE",,"JERSEY CITY","NJ","07306",,,,,,,"222858045","2013323535",,,,"2011-10-14T17:47:44-0500","NAWAL W. KHALIL, DMD",,,,,1,0,0,0,0,0,0,1,,,"2A2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014170008P030692929312008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WEBER AND DEEGAN, LTD 401K PROFIT SHARING PLAN","001","2005-08-15","WEBER & DEEGAN, LTD.",,,"7211 OHMS LANE",,"EDINA","MN","55439",,,,,,,,,,,,,,,,,,"411758447","9529206186","541211","WEBER & DEEGAN, LTD.",,"7211 OHMS LANE",,"EDINA","MN","55439",,,,,,,"411758447","9529206186",,,,"2011-10-13T16:09:22-0500","MICHAEL SCHAEFBAUER",,,,,8,7,0,0,7,0,7,7,,,"2J2E2G2K2F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014161636P030149243633001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"TRI-STATE 401(K) SAVINGS PLAN","333","1999-01-01","TRI-STATE EMPLOYMENT SERVICES, INC.",,,"160 BROADWAY","SUITE 160","NEW YORK","NY","10038",,,,,,,,,,,,,,,,,,"133703106","2124062740","551112","TRI-STATE EMPLOYMENT SERVICES, INC.",,"160 BROADWAY","SUITE 160","NEW YORK","NY","10038",,,,,,,"133703106","2124062740",,,,"2011-10-14T11:53:29-0500","ROBERT CASSERA",,,,,4706,5435,5,133,5573,0,5573,458,2,,"2A2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014161805P030692781056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PETER PAN BUS LINES, INC PROFIT SHARING PLAN AND TRUST","002","1961-01-01","PETER PAN BUS LINES, INC",,,"P.O. BOX 1776",,"SPRINGFIELD","MA","011021776",,,,,,,,,,,,,,,,,,"042202752","4137182900","485210","PETER PAN BUS LINES, INC",,"P.O. BOX 1776",,"SPRINGFIELD","MA","011021776",,,,,,,"042202752","4137182900",,,,"2011-10-14T11:54:34-0500","BRIAN R. STEFANO",,,,,190,157,0,19,176,0,176,159,14,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014161931P030022024194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RIETER AUTOMOTIVE NORTH AMERICA, CARPET RETIREMENT PLAN FOR SALARIED EMPLOYEES","008","1952-11-01","RIETER AUTOMOTIVE NORTH AMERICA, INC.",,,"480 WEST FIFTH STREET",,"BLOOMSBURG","PA","178151563",,,,,,,,,,,,,,,,,,"521162115","5707844100","313000","RIETER AUTOMOTIVE NORTH AMERICA, INC.",,"480 WEST FIFTH STREET",,"BLOOMSBURG","PA","178151563",,,,,,,"521162115","5707844100",,,,"2011-10-14T11:56:37-0500","J. MICHAEL ROBERTS","2011-10-14T11:56:37-0500","J. MICHAEL ROBERTS",,,311,82,108,97,287,16,303,,0,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014161936P030149245841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEVEN C. HANEY PROFIT SHARING PLAN","001","2001-01-01","STEVEN C. HANEY",,,"116 N CHICAGO ST STE 301",,"JOLIET","IL","60432",,,,,,,,,,,,,,,,,,"364405691","8157235600","541110","STEVEN C. HANEY",,"116 N CHICAGO ST STE 301",,"JOLIET","IL","60432",,,,,,,"364405691","8157235600",,,,"2011-10-14T11:56:44-0500","STEVEN C. HANEY",,,,,2,1,0,1,2,0,2,2,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014165004P040687374944001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROY KIM, M.D. 401(K) PROFIT SHARING PLAN","001","2004-01-01","ROY KIM, M.D.",,,"220 MONTGOMERY ST., SUITE 348",,"SAN FRANCISCO","CA","94104",,,,,,,,,,,,,,,,,,"943304962","4153621846","621111","ROY KIM, M.D.",,"220 MONTGOMERY ST., SUITE 348",,"SAN FRANCISCO","CA","94104",,,,,,,"943304962","4153621846",,,,"2011-10-14T16:44:59-0500","ROY KIM",,,,,1,2,0,0,2,0,2,2,0,,"2E2G2J2R3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014164050P030024544790001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE DENVER HOSPICE BENEFITS PLAN","501","1993-01-01","THE DENVER HOSPICE",,,"501 SOUTH CHERRY STREET, SUITE 700",,"DENVER","CO","80246",,,,,,,,,,,,,,,,,,"840743121","3033212828","623000","THE DENVER HOSPICE",,"501 SOUTH CHERRY STREET, SUITE 700",,"DENVER","CO","80246",,,,,,,"840743121","3033212828",,,,"2011-10-14T12:17:11-0500","BRENDA RITTER",,,,,244,251,9,0,260,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014163050P030149255889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"QUALITY RENAL CARE, L.L.C. 401(K) PLAN","001","2001-01-01","QUALITY RENAL CARE, L.L.C.",,,"2203 WEST RANDALL ROAD",,"CARPENTERSVILLE","IL","60110",,,,,,,,,,,,,,,,,,"364208269","8474266456","621492","QUALITY RENAL CARE, L.L.C.",,"2203 WEST RANDALL ROAD",,"CARPENTERSVILLE","IL","60110",,,,,,,"364208269","8474266456",,,,"2011-10-14T12:05:40-0500","TRACY ONLY","2011-10-14T12:05:40-0500","TRACY ONLY",,,36,27,0,1,28,0,28,15,0,,"2G2J2K2E3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014163024P040687306976001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ESBENSHADES GREENHOUSES, INC. 401(K) PLAN","001","1996-01-01","ESBENSHADES GREENHOUSES, INC.",,,"546 E 28TH DIVISION HIGHWAY",,"LITITZ","PA","17543",,,,,,,,,,,,,,,,,,"232190284","7176267000","444200","ESBENSHADES GREENHOUSES, INC.",,"546 E 28TH DIVISION HIGHWAY",,"LITITZ","PA","17543",,,,,,,"232190284","7176267000",,,,"2011-10-14T16:29:41-0500","ALAN NEWMASTER","2011-10-14T16:29:41-0500","ALAN NEWMASTER",,,123,112,1,13,126,0,126,62,1,,"2E2F2G2T2J2S2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014163809P040152980881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARMOR CORRECTIONAL HEALTH SERVICES INC 401K","001","2005-01-01","ARMOR CORRECTIONAL HEALTH SERVICES INC",,,"4960 SW 72ND AVENUE, SUITE 400",,"MIAMI","FL","331555550",,,,,,,,,,,,,,,,,,"201422279","3056628522","621399","ARMOR CORRECTIONAL HEALTH SERVICES INC",,"4960 SW 72ND AVENUE, SUITE 400",,"MIAMI","FL","331555550",,,,,,,"201422279","3056628522",,,,"2011-10-14T16:37:29-0500","FRANK HARRISON",,,,,748,711,114,0,825,0,825,777,22,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014160909P030692745312001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OLDCASTLE, INC. HEALTH AND WELFARE","501","1995-10-01","OLDCASTLE, INC.",,,"375 NORTHRIDGE ROAD","SUITE 350","ATLANTA","GA","30350",,,,,,,"375 NORTHRIDGE ROAD","SUITE 350","ATLANTA","GA","30350",,,,,,,"953298140","7708043363","551112","OLDCASTLE, INC.",,"375 NORTHRIDGE ROAD","SUITE 350","ATLANTA","GA","30350",,,,,,,"953298140","7708043363",,,,"2011-10-14T11:45:51-0500","GARY HICKMAN",,,,,18675,23934,,,23934,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","27","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014161943P040050484999001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIFTH AVENUE GYNECOLOGISTS, LTD. RETIREMENT PLAN AND TRUST","003","1991-01-01","FIFTH AVENUE GYNECOLOGISTS, LTD.",,,"3033 WEST BELL ROAD, SUITE 100",,"PHOENIX","AZ","850533000",,,,,,,,,,,,,,,,,,"860222114","6025880316","621111","FIFTH AVENUE GYNECOLOGISTS, LTD.",,"3033 WEST BELL ROAD, SUITE 100",,"PHOENIX","AZ","850533000",,,,,,,"860222114","6025880316",,,,"2011-10-14T13:02:41-0500","CHARLES CLINCH","2011-10-14T13:02:41-0500","CHARLES CLINCH",,,6,1,3,1,5,1,6,6,0,,"2E2F2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014164620P030022028242001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BENJAMIN FOGEL, INC. PROFIT SHARING PLAN","002","1975-09-01","BENJAMIN FOGEL, INC.",,,"16000 VENTURA BLVD., SUITE 905",,"ENCINO","CA","91436",,,,,,,,,,,,,,,,,,"952973892","8183822222","541110","BENJAMIN FOGEL, INC.",,"16000 VENTURA BLVD., SUITE 905",,"ENCINO","CA","91436",,,,,,,"952973892","8183822222",,,,"2011-10-14T16:46:18-0500","BENJAMIN FOGEL","2011-10-14T16:46:18-0500","BENJAMIN FOGEL",,,3,3,0,0,3,0,3,3,0,,"2E2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014161703P040152961057001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RICHMOND BONE AND JOINT CLINIC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","RICHMOND BONE AND JOINT CLINIC",,,"1517 THOMPSON RD",,"RICHMOND","TX","77469",,,,,,,,,,,,,,,,,,"760505966","2812381334","812990","RICHMOND BONE AND JOINT CLINIC",,"1517 THOMPSON RD",,"RICHMOND","TX","77469",,,,,,,"760505966","2812381334",,,,"2011-10-14T16:16:31-0500","JULIET BREEZE",,,,,159,140,0,15,155,0,155,93,0,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","0","0",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014163124P030024543046001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SHINTECH INCORPORATED WELFARE BENEFIT PLAN FOR RETIRED EMPLOYEES","501","1998-01-01","SHINTECH INCORPORATED",,,"3 GREENWAY PLAZA, SUITE 1150",,"HOUSTON","TX","770460325",,,,,,,,,,,,,,,,,,"741750521","7139650713","326100","SHINTECH INCORPORATED",,"3 GREENWAY PLAZA, SUITE 1150",,"HOUSTON","TX","770460325",,,,,,,"741750521","7139650713",,,,"2011-10-14T12:08:28-0500","MARK WINCHELL","2011-10-14T12:08:28-0500","MARK WINCHELL",,,53,,55,,55,,,,,,,"4A","0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014163119P030149256289008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MATERNAL GYNERATIONS, P.C. PROFIT SHARING PLAN AND TRUST","001","1989-01-01","MATERNAL GYNERATIONS, P.C.",,,"761 OLD NORCROSS ROAD",,"LAWRENCEVILLE","GA","30046",,,,,,,,,,,,,,,,,,"581799397","7705134000","621111","MATERNAL GYNERATIONS, P.C.",,"761 OLD NORCROSS ROAD",,"LAWRENCEVILLE","GA","30046",,,,,,,"581799397","7705134000",,,,"2011-10-14T12:26:14-0500","RENWICK C HOOD",,,,,70,52,0,16,68,0,68,59,0,,"2E2G2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014162245P040687279744001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ITERO BIOPHARMACEUTICALS, INC. 401(K) PLAN","001","2008-10-01","ITERO BIOPHARMACEUTICALS, INC.",,,"155 BOVET ROAD","SUITE 660","SAN MATEO","CA","94402",,,,,,,"155 BOVET ROAD","SUITE 660","SAN MATEO","CA","94402",,,,,,,"260811913","6505817900","541700","ITERO BIOPHARMACEUTICALS, INC.",,"155 BOVET ROAD","SUITE 660","SAN MATEO","CA","94402",,,,,,,"260811913","6505817900",,,,"2011-10-14T16:21:23-0500","MEREDITH CALLENDER",,,,,8,8,0,1,9,0,9,4,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014152307P030022015554001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"WEINGART CENTER EMPLOYEES RETIREMENT PLAN","001","1995-05-01","WEINGART CENTER ASSOCIATION INC",,,"566 S SAN PEDRO ST",,"LOS ANGELES","CA","900132102",,,,,,,,,,,,,,,,,,"956054617","2136279000","624200","WEINGART CENTER ASSOCIATION INC",,"566 S SAN PEDRO ST",,"LOS ANGELES","CA","900132102",,,,,,,"956054617","2136279000",,,,"2011-10-14T15:23:04-0500","SONNY SANTAINES","2011-10-14T15:23:04-0500","SONNY SANTAINES",,,106,81,0,4,85,0,85,71,4,,"2E2F2G2T3D",,"1",,,,"1",,,,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014152307P030149188561007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GREENVILLE COLLEGE HEALTH PLAN","502","1995-01-01","GREENVILLE COLLEGE",,,"315 EAST COLLEGE AVENUE",,"GREENVILLE","IL","62246",,,,,,,"315 EAST COLLEGE AVENUE",,"GREENVILLE","IL","62246",,,,,,,"370681530","6186642800","611000","GREENVILLE COLLEGE",,"315 EAST COLLEGE AVENUE",,"GREENVILLE","IL","62246",,,,,,,"370681530","6186642800",,,,"2011-10-14T10:12:27-0500","DANA T. FUNDERBURK",,,,,386,374,,,374,,,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014163857P030149262225001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"SAN DIEGO HUMANE SOCIETY AND SPCA HEALTH AND WELFARE BENEFIT PLAN","501","2010-01-01","SAN DIEGO HUMANE SOCIETY AND SPCA",,,"5500 GAINES STREET",,"SAN DIEGO","CA","92110",,,,,,,,,,,,,,,,,,"951661688","6192997012","813000","SAN DIEGO HUMANE SOCIETY AND SPCA",,"5500 GAINES STREET",,"SAN DIEGO","CA","92110",,,,,,,"951661688","6192997012",,,,"2011-10-14T16:27:21-0500","KELLY RISELEY","2011-10-14T16:27:21-0500","KELLY RISELEY",,,143,182,5,0,187,,,,,,,"4A4B4D4E4H","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014171809P030149302881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CLP CORPORATION 401(K) SAVINGS PLAN","001","1994-02-01","CLP CORPORATION",,,"121 SUMMIT PKWY",,"HOMEWOOD","AL","352094746",,,,,,,,,,,,,,,,,,"630510001","2059122158","722210","CLP CORPORATION",,"121 SUMMIT PKWY",,"HOMEWOOD","AL","352094746",,,,,,,"630510001","2059122158",,,,"2011-10-14T12:51:17-0500","RICHARD WOOD",,,,,958,849,0,17,866,0,866,112,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014171822P030692988864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ARDEO GROUP INC 401(K) PLAN","001","2007-01-11","ARDEO GROUP INC",,,"PO BOX 1307",,"ASHBURN","VA","20146",,,,,,,,,,,,,,,,,,"208197877","7033278371","812190","ARDEO GROUP INC",,"PO BOX 1307",,"ASHBURN","VA","20146",,,,,,,"208197877","7033278371",,,,"2011-10-14T12:51:32-0500","JAMES BURNETT JR","2011-10-14T12:51:32-0500","JAMES BURNETT JR",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014163030P030149255729022","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"IVAN FERNANDEZ PENSION PLAN MONEY PURCHASE","001","1991-01-01","IVAN FERNANDEZ",,,"PO BOX 192386",,"SAN JUAN","PR","00919",,,,,,,,,,,,,,,,,,"660486195","7877531215","541110","IVAN FERNANDEZ",,"PO BOX 192386",,"SAN JUAN","PR","00919",,,,,,,"660486195","7877531215",,,,"2011-10-14T16:29:35-0500","IVAN FERNANDEZ","2011-10-14T16:29:39-0500","IVAN FERNANDEZ",,,11,11,,,11,,11,11,,,"2C",,,,"1",,,,"1","1","1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014164322P030149267185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIDWESTONE BANK RETIREMENT PLAN","001","1950-05-10","MIDWESTONE BANK",,,"102 SOUTH CLINTON",,"IOWA CITY","IA","52244",,,,,,,,,,,,,,,,,,"420335350","3193565922","522110","MIDWESTONE BANK",,"102 SOUTH CLINTON",,"IOWA CITY","IA","52244",,,,,,,"420335350","3193565922",,,,"2011-10-14T12:19:37-0500","SONDRA HARNEY","2011-10-14T12:19:37-0500","SONDRA HARNEY",,,239,99,36,89,224,6,230,,3,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014164332P040687352688001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"GELCO CORPORATION GROUP TRAVEL ACCIDENT INSURANCE","503","1976-12-01","GELCO CORPORATION","DBA GE CAPITAL FLEET SERVICES",,"THREE CAPITAL DRIVE",,"EDEN PRAIRIE","MN","55344",,,,,,,,,,,,,,,,,,"362774566","9528281000","522220","GELCO CORPORATION","DBA GE CAPITAL FLEET SERVICES","THREE CAPITAL DRIVE",,"EDEN PRAIRIE","MN","55344",,,,,,,"362774566","9528281000",,,,"2011-10-14T16:42:28-0500","KIMBERLY JURY",,,,,591,573,0,0,573,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014164337P030149267329001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"SYNDEO OUTSOURCING 401(K) RETIREMENT PLAN","333","2003-01-01","SYNDEO OUTSOURCING, LLC",,,"3504 N GREAT PLAINS DRIVE SUITE 200",,"WICHITA","KS","67220",,,,,,,,,,,,,,,,,,"710893511","3164409901","561300","SYNDEO OUTSOURCING, LLC",,"3504 N GREAT PLAINS DRIVE SUITE 200",,"WICHITA","KS","67220",,,,,,,"710893511","3164409901",,,,"2011-10-14T12:19:52-0500","BILL MANESS",,,,,1064,1079,8,74,1161,0,1161,652,22,,"2A2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014170111P040153002273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEDRO M ARGUELLO MD PA PROFIT SHARING PLAN AND TRUST","001","1998-01-01","PEDRO M ARGUELLO MD PA",,,"9190 OLD KATY ROAD, SUITE 102",,"HOUSTON","TX","77055",,,,,,,,,,,,,,,,,,"742873922","7136479300","621111","PEDRO M ARGUELLO MD PA",,"9190 OLD KATY ROAD, SUITE 102",,"HOUSTON","TX","77055",,,,,,,"742873922","7136479300",,,,"2011-10-14T16:59:08-0500","JACKIE JENNINGS",,,,,4,4,,,4,,4,4,,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014160933P030149238001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRADY & JENSEN, LLP PROFIT SHARING PLAN","001","1972-12-31","BRADY & JENSEN, LLP",,,"2425 ROYAL BLVD.",,"ELGIN","IL","60123",,,,,,,,,,,,,,,,,,"362211081","8476952000","541110","BRADY & JENSEN, LLP",,"2425 ROYAL BLVD.",,"ELGIN","IL","60123",,,,,,,"362211081","8476952000",,,,"2011-10-14T11:46:20-0500","JUDITH L KARSTEN","2011-10-14T11:46:20-0500","JUDITH L KARSTEN",,,29,19,0,11,30,0,30,30,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014160958P040152953873001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GRAYS HARBOR COMMUNITY HOSPITAL 403(B) RETIREMENT PLAN","002","2001-01-01","GRAYS HARBOR COMMUNITY HOSPITAL",,,"915 ANDERSON DRIVE",,"ABERDEEN","WA","98520",,,,,,,,,,,,,,,,,,"910568304","3605328330","622000","GRAYS HARBOR COMMUNITY HOSPITAL",,"915 ANDERSON DRIVE",,"ABERDEEN","WA","98520",,,,,,,"910568304","3605328330",,,,"2011-10-14T16:06:24-0500","TIMOTHY L. HOWDEN",,,,,856,727,0,419,1146,,1146,1083,,,"2F2G2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014161436P030149242273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MUNI V. PADMAN, M.D., P.A. DEFINED BENEFIT PENSION PLAN","002","1989-01-01","MUNI V. PADMAN, M.D., P.A.",,,"601 E. DIXIE AVE., PLAZA STE. 101",,"LEESBURG","FL","347487307",,,,,,,,,,,,,,,,,,"592345031","3523268081","621111","MUNI V. PADMAN, M.D., P.A.",,"601 E. DIXIE AVE., PLAZA STE. 101",,"LEESBURG","FL","347487307",,,,,,,"592345031","3523268081",,,,"2011-10-14T11:50:58-0500","MUNI V. PADMAN, M.D.",,,,,5,5,0,0,5,0,5,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014162157P040022957442001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C.J. GUINEY PROFIT SHARING PLAN","001","1967-06-04","C.J. GUINEY",,,"1129 BROAD ST FL 2",,"SHREWSBURY","NJ","077024333",,,,,,,,,,,,,,,,,,"222612396","7328420101","531320","C.J. GUINEY",,"1129 BROAD ST FL 2",,"SHREWSBURY","NJ","077024333",,,,,,,"222612396","7328420101",,,,"2011-10-14T16:21:54-0500","CORNELIUS GUINEY",,,,,2,1,0,1,2,0,2,2,0,,"2E2G3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014162509P040687289328001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BENEFIT PLANNING CONSULTANTS, INC. PROFIT SHARING PLAN","001","1984-01-01","BENEFIT PLANNING CONSULTANTS, INC.",,,"P O BOX 7500",,"CHAMPAIGN","IL","618267500",,,,,,,"2110 CLEARLAKE BLVD SUITE 200",,"CHAMPAIGN","IL","618267500",,,,,,,"363036100","2173552300","541990","BENEFIT PLANNING CONSULTANTS, INC.",,"P O BOX 7500",,"CHAMPAIGN","IL","618267500",,,,,,,"363036100","2173552300",,,,"2011-10-14T16:23:49-0500","SCOTT REICHARD",,,,,56,51,0,4,55,0,55,47,1,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014162631P040152970241001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1",,,,,"MOVIOLA 401(K) SAVINGS AND RETIREMENT PLAN","001","1995-01-01","J & R FILM COMPANY DBA MOVIOLA",,,"1135 N MANSFIELD AVE",,"LOS ANGELES","CA","90038",,,,,,,"1135 N MANSFIELD AVE",,"LOS ANGELES","CA","90038",,,,,,,"952310331","3239620382","512100","J & R FILM COMPANY DBA MOVIOLA",,"1135 N MANSFIELD AVE",,"LOS ANGELES","CA","90038",,,,,,,"952310331","3239620382",,,,"2011-10-14T16:23:48-0500","RANDY PASKAL",,,,,181,162,0,19,181,0,181,52,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014162636P040152970401001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MULTIPLE SCLEROSIS RESEARCH CENTER OF NEW YORK, INC. 401(K) PLAN","001","2006-04-01","MULTIPLE SCLEROSIS RESEARCH CENTER OF NY, INC.",,,"521 WEST 57TH ST. - 4TH FLR",,"NEW YORK","NY","10019",,,,,,,"521 WEST 57TH ST. - 4TH FLR",,"NEW YORK","NY","10019",,,,,,,"251922851","2122658070","541700","MULTIPLE SCLEROSIS RESEARCH CENTER OF NY, INC.",,"521 WEST 57TH ST. - 4TH FLR",,"NEW YORK","NY","10019",,,,,,,"251922851","2122658070",,,,"2011-10-14T16:26:11-0500","UMAR SADIQ",,,,,32,24,0,7,31,0,31,18,2,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014163643P030149260577001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BASHOR HOME OF THE UNITED METHODIST CHURCH, INC., WELFARE BENEFIT PLAN","501","1970-01-01","BASHOR HOME OF THE UNITED METHODIST CHURCH, INC.",,,"P.O. BOX 843",,"GOSHEN","IN","465270843",,,,,,,"62226 COUNTY ROAD 15",,"GOSHEN","IN","46526",,,,,,,"350933555","5748755117","813000","BASHOR HOME OF THE UNITED METHODIST CHURCH, INC.",,"P.O. BOX 843",,"GOSHEN","IN","465270843",,,,,,,"350933555","5748755117",,,,"2011-10-14T12:13:48-0500","DONALD PHILLIPS","2011-10-14T12:13:48-0500","DONALD PHILLIPS",,,90,111,0,0,111,0,,,,,,"4A4B4D4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014172039P040153020129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WOOD-MIZER PRODUCTS, INC. 401K PLAN","001","1984-01-01","WOOD-MIZER PRODUCTS, INC.",,,"8180 W 10TH ST",,"INDIANAPOLIS","IN","46214",,,,,,,"8180 W 10TH ST",,"INDIANAPOLIS","IN","46214",,,,,,,"351295069","3172711542","333200","WOOD-MIZER PRODUCTS, INC.",,"8180 W 10TH ST",,"INDIANAPOLIS","IN","46214",,,,,,,"351295069","3172711542",,,,"2011-10-14T17:18:38-0500","MARK THOMPSON",,,,,326,276,0,52,328,1,329,291,0,,"2E2F2G2J2K2S2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014162818P040152972865001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"PARKVIEW MEDICAL CENTER INC WELFARE BENEFIT PLAN","501","1987-01-01","PARKVIEW MEDICAL CENTER INC",,,"400 WEST 16TH STREET",,"PUEBLO","CO","81003",,,,,,,,,,,,,,,,,,"840935136","7195957588","622000","PARKVIEW MEDICAL CENTER INC",,"400 WEST 16TH STREET",,"PUEBLO","CO","81003",,,,,,,"840935136","7195957588",,,,"2011-10-14T10:14:28-0500","DARRIN SMITH",,,,,1369,1403,20,,1423,,1423,,,,,"4A4B4D4H","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014165146P030149275649001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COPPERMARK BANK 401(K) PLAN","001","1967-01-01","COPPERMARK BANK",,,"3333 NW EXPRESSWAY 73112","PO BOX 25676","OKLAHOMA CITY","OK","73125",,,,,,,,,,,,,,,,,,"730729560","4059458100","522110","COPPERMARK BANK",,"3333 NW EXPRESSWAY 73112","PO BOX 25676","OKLAHOMA CITY","OK","73125",,,,,,,"730729560","4059458100",,,,"2011-10-14T05:51:39-0500","CELINE FERGUSON, CFO",,,,,328,223,0,88,311,1,312,312,26,,"2E2F2G2J2K2R3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014163704P030149260689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CENTER FOR SIGHT, P.A. SAVINGS PLAN","002","1993-01-01","CENTER FOR SIGHT, P.A.",,,"1360 E. VENICE AVENUE",,"VENICE","FL","342859066",,,,,,,,,,,,,,,,,,"592691910","9414882020","621320","CENTER FOR SIGHT, P.A.",,"1360 E. VENICE AVENUE",,"VENICE","FL","342859066",,,,,,,"592691910","9414882020",,,,"2011-10-14T12:13:42-0500","JAMES DAWES",,,,,177,136,2,24,162,0,162,102,8,,"2G2J2K3D3H2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014165916P040153000241001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GROUP MEDICAL INSURANCE BENEFITS PLAN FOR FULL TIME BARGAINING UNIT EMPLOYEES OF HOLLISTER INCORPORATED KIRKSVILLE, MISSOURI PLANT","503","1998-01-01","HOLLISTER INCORPORATED",,,"2000 HOLLISTER DRIVE",,"LIBERTYVILLE","IL","600483746",,,,,,,,,,,,,,,,,,"362404865","8476801000","339110","HOLLISTER INCORPORATED",,"2000 HOLLISTER DRIVE",,"LIBERTYVILLE","IL","600483746",,,,,,,"362404865","8476801000",,,,"2011-10-14T16:54:45-0500","FRANK ARCARO",,,,,77,67,2,,69,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014161601P030149243329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FENWICK & WEST LLP MONEY PURCHASE PENSION PLAN","001","1981-05-29","FENWICK & WEST LLP",,,"801 CALIFORNIA STREET",,"MOUNTAIN VIEW","CA","94041",,,,,,,,,,,,,,,,,,"942708481","6503357675","541110","FENWICK & WEST LLP",,"801 CALIFORNIA STREET",,"MOUNTAIN VIEW","CA","94041",,,,,,,"942708481","6503357675",,,,"2011-10-14T11:50:50-0500","LOIS BOYD","2011-10-14T11:50:50-0500","LOIS BOYD",,,724,466,0,127,593,0,593,475,2,,"2C2F2G3B2R2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014161918P030022024178001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNISPEC FACILITIES MANAGEMENT, LLC 401(K) PLAN","001","2003-01-01","UNISPEC FACILITIES MANAGEMENT",,,"4440 N. CIVIC CENTER PLAZA",,"SCOTTSDALE","AZ","85251",,,,,,,,,,,,,,,,,,"861023208","4809457711","622000","UNISPEC FACILITIES MANAGEMENT",,"4440 N. CIVIC CENTER PLAZA",,"SCOTTSDALE","AZ","85251",,,,,,,"861023208","4809457711",,,,"2011-10-14T11:56:28-0500","BRAD EPP",,,,,375,388,0,10,398,0,398,27,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014172348P030149308017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOME HEALTH CARE MANAGEMENT, INC 401(K) PROFIT SHARING PLAN","001","1979-09-01","HOME HEALTH CARE MANAGEMENT, INC",,,"1170 BERKSHIRE BOULEVARD",,"WYOMISSING","PA","19610",,,,,,,,,,,,,,,,,,"231466250","6103780481","621610","HOME HEALTH CARE MANAGEMENT, INC",,"1170 BERKSHIRE BOULEVARD",,"WYOMISSING","PA","19610",,,,,,,"231466250","6103780481",,,,"2011-10-14T12:58:55-0500","AMICIE ZIMMERMAN","2011-10-14T12:58:55-0500","AMICIE ZIMMERMAN",,,407,347,0,40,387,0,387,249,2,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111014162217P030149247969001","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"STRUEVER BROS., ECCLES & ROUSE, INC. 401(K) PROFIT SHARING PLAN","001","1983-06-01","STRUEVER BROS., ECCLES & ROUSE, INC.",,,"1040 HULL ST STE 200",,"BALTIMORE","MD","21230",,,,,,,,,,,,,,,,,,"521063164","4435734066","236110","STRUEVER BROS., ECCLES & ROUSE, INC.",,"1040 HULL ST STE 200",,"BALTIMORE","MD","21230",,,,,,,"521063164","4435734066",,,,"2011-10-14T05:21:54-0500","MARILYN C LEE",,,,,274,84,0,0,84,0,84,84,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014171706P030149301761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEPPER HAMILTON LLP EMPLOYEE SAVINGS PLAN","001","1968-09-01","PEPPER HAMILTON LLP",,,"3000 TWO LOGAN SQUARE","18TH ARCH STREETS","PHILADELPHIA","PA","191032711",,,,,,,,,,,,,,,,,,"231433012","2159814677","541110","PEPPER HAMILTON LLP",,"3000 TWO LOGAN SQUARE","18TH ARCH STREETS","PHILADELPHIA","PA","191032711",,,,,,,"231433012","2159814677",,,,"2011-10-14T12:49:53-0500","KATHLEEN SAWYER",,,,,1589,1114,8,387,1509,2,1511,1500,92,,"2E2F2G2J2K2T3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014171717P030004457363001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEW YORK ATHLETIC CLUB 401K SAVINGS PLAN","002","1997-09-01","NEW YORK ATHLETIC CLUB",,,"180 CENTRAL PARK SOUTH",,"NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"131096640","2127677072","721110","NEW YORK ATHLETIC CLUB",,"180 CENTRAL PARK SOUTH",,"NEW YORK","NY","10019",,,,,,,"131096640","2127677072",,,,"2011-10-14T12:50:30-0500","KIM PEREZ",,,,,164,144,0,29,173,0,173,167,0,,"3D2E2J2K2F2G2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111014164047P040152983457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HEART CENTER PC SAFE HARBOR 401K PLAN","001","2001-04-01","THE HEART CENTER",,,"4500 SUNNY ISLE",,"CHRISTIANSTED","VI","00820",,,,,,,,,,,,,,,,,,"660563169","3407781802","621111","THE HEART CENTER",,"4500 SUNNY ISLE",,"CHRISTIANSTED","VI","00820",,,,,,,"660563169","3407781802",,,,"2011-10-14T16:38:25-0500","DANTE GALIBER",,,,,3,3,0,0,3,0,3,3,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-14","Filed with authorized/valid electronic signature",, "20111017105047P040004779443005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"H. FRANKLIN ROBBINS, JR., P.A. MONEY PURCHASE PLAN AND TRUST","001","1990-01-01","H. FRANKLIN ROBBINS JR., P.A.",,,"910 EAST PINE STREET",,"ORLANDO","FL","328013054",,,,,,,,,,,,,,,,,,"592448693","4074250724","541110","H. FRANKLIN ROBBINS JR., P.A.",,"910 EAST PINE STREET",,"ORLANDO","FL","328013054",,,,,,,"592448693","4074250724",,,,"2011-10-17T06:21:54-0500","HOWARD ROBBINS, JR",,,,,2,2,,,2,,2,2,,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017092705P030151074769001","2010-01-01","2010-12-31","2",,"0","0","1","0","1","1","0","0","0",,"MAHLE MANCHESTER PLANT HOURLY EMPLOYEES PENSION PLAN","002","1998-01-01","MAHLE INDUSTRIES, INC.",,"FRANK KOHLER","ONE MAHLE DRIVE",,"MORRISTOWN","TN","37814",,,,,,,,,,,,,,,,,,"582431334","4233173038","336300","MAHLE INDUSTRIES, INC.","FRANK KOHLER","ONE MAHLE DRIVE",,"MORRISTOWN","TN","37814",,,,,,,"582431334","4233173038",,,,"2011-10-17T09:25:42-0500","FRANK KOHLER","2011-10-17T09:25:42-0500","FRANK KOHLER",,,228,0,99,120,219,3,222,0,0,,"1B",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017094830P030151095265010","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"CALDWELL CHIRO CENTER PROFIT SHARING PLAN & TRUST","001","2008-01-01","CALDWELL CHIROPRACTIC CENTER",,,"3490 YOUNGFIELD ST B",,"WHEAT RIDGE","CO","80033",,,,,,,,,,,,,,,,,,"760747877","3032744434","621310","SHAWN CALDWELL",,"3490 YOUNGFIELD ST B",,"WHEAT RIDGE","CO","80033",,,,,,,"760747877","3034622001",,,,"2011-10-17T08:56:05-0500","SHAWN CALDWELL",,,,,2,2,,,2,,2,2,,,"2K2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111015173009P040153718257004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CONSOLIDATED CONTAINER COMPANY, LP BASIC NON-CONTRIBUTORY HOURLY PENSION PLAN","017","1990-07-15","CONSOLIDATED CONTAINER COMPANY, LP",,,"3101 TOWER CREEK PARKWAY, SUITE 300",,"ATLANTA","GA","30339",,,,,,,,,,,,,,,,,,"061056158","6787424600","326100","CONSOLIDATED CONTAINER COMPANY, LP",,"3101 TOWER CREEK PARKWAY, SUITE 300",,"ATLANTA","GA","30339",,,,,,,"061056158","6787424600",,,,"2011-10-15T17:23:30-0500","KIMBERLY A. HOOVER","2011-10-15T17:24:01-0500","RICHARD SEHRING",,,1700,367,638,619,1624,40,1664,,11,,"1B1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111017093350P040154692369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JASON P. WHITE, DDS, PA RETIREMENT PLAN & TRUST","001","2007-01-01","JASON P. WHITE, DDS, PA",,,"4501 50TH STREET",,"LUBBOCK","TX","794143613",,,,,,,,,,,,,,,,,,"205671769","8067955226","621210","JASON P. WHITE, DDS, PA",,"4501 50TH STREET",,"LUBBOCK","TX","794143613",,,,,,,"205671769","8067955226",,,,"2011-10-17T09:33:49-0500","JASON P. WHITE, D.D.S.",,,,,7,7,0,2,9,0,9,9,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017092333P030151072529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SIGNCRAFT SCREENPRINT, INC. 401(K) PROFIT SHARING PLAN","001","1987-03-01","SIGNCRAFT SCREENPRINT, INC.",,,"ATSB, PO BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"895 MAIN ST",,"DUBUQUE","IA","520040938",,,,,,,"362820049","8005482995","323100","SIGNCRAFT SCREENPRINT, INC.",,"ATSB, PO BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"362820049","8005482995",,,,"2011-10-17T09:22:54-0500","TERI HARMON","2011-10-17T09:22:54-0500","TERI HARMON",,,114,100,1,10,111,0,111,108,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017095222P040154707345001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","1","0","0","0",,"LTD INCOME PROTECTION PLAN OF UNITED STATES FIRE INSURANCE CO.","515","1998-08-13","UNITED STATES FIRE INSURANCE CO.",,,"305 MADISON AVE",,"MORRISTOWN","NJ","07962",,,,,,,,,,,,,,,,,,"135459190","9734906600","524290","UNITED STATES FIRE INSURANCE CO.",,"305 MADISON AVE",,"MORRISTOWN","NJ","07962",,,,,,,"135459190","9734906600",,,,"2011-10-17T09:52:21-0500","MARTHA VAN HISE",,,,,1089,1238,0,0,1238,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017103426P030151139377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UNITED STARS, INC. PENSION PLAN","002","1966-06-01","UNITED STARS HOLDINGS, INC.","DBA UNITED STARS, INC.",,"1546 HENRY AVENUE",,"BELOIT","WI","53511",,,,,,,,,,,,,,,,,,"391924406","6083684607","332900","UNITED STARS HOLDINGS, INC.",,"1546 HENRY AVENUE",,"BELOIT","WI","53511",,,,,,,"391924406","6083684607",,,,"2011-10-17T10:27:59-0500","DOUG HAWORTH",,,,,1025,375,250,293,918,76,994,,22,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017101551P040154727905001","2010-01-01","2010-12-31","3",,"0",,"0","0","0",,,,"1","HURRICANE IRENE","EAST NECK NURSING AND REHABILITATION CENTER RETIREMENT PLAN","001","1985-01-01","PALJR, L.L.C.",,,"134 GREAT EAST NECK RD",,"WEST BABYLON","NY","117048027",,,,,,,,,,,,,,,,,,"134261026","6314224800","623000","PALJR, L.L.C.",,"134 GREAT EAST NECK RD",,"WEST BABYLON","NY","117048027",,,,,,,"134261026","6314224800",,,,"2011-10-17T10:15:47-0500","PASQUALE DEBENEDICTIS","2011-10-17T10:15:47-0500","PASQUALE DEBENEDICTIS",,,372,311,0,39,350,1,351,213,3,,"2A2E2F2G2J2K2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017105409P030151154561001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"GLOBATEL LLC PROFIT SHARING PLAN","001","1974-07-01","GLOBATEL LLC",,,"433 SOUTH FRANCES ST",,"SUNNYVALE","CA","94086",,,,,,,,,,,,,,,,,,"770557169","4082538657","423600","GLOBATEL LLC",,"433 SOUTH FRANCES ST",,"SUNNYVALE","CA","94086",,,,,,,"770557169","4082538657",,,,"2011-10-17T10:54:20-0500","JUDITH BOISSICAT","2011-10-17T10:54:20-0500","JUDITH BOISSICAT",,,1,0,0,0,0,0,0,0,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017105047P040004779443001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CVPS WELFARE BENEFIT PLAN FOR UNION EMPLOYEES - RETIREES","509","1994-01-01","CENTRAL VERMONT PUBLIC SERVICE CORP",,,"77 GROVE STREET",,"RUTLAND","VT","05701",,,,,,,,,,,,,,,,,,"030111290","8027732711","221100","CENTRAL VERMONT PUBLIC SERVICE CORP",,"77 GROVE STREET",,"RUTLAND","VT","05701",,,,,,,"030111290","8027732711",,,,"2011-10-17T06:23:00-0500","JAMIE FALCO",,,,,268,117,109,,226,,,,,,,"4A4B4D4E",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017110032P040695482864002","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"HOPGOOD CALIMAFDE KALIL & JUDLOWE","002","1974-01-01","HOPGOOD CALIMAFDE JUDLOWE MONDOLINO",,"CO SHUFRIN ASSOCIATES LLC","445 PARK AVENUE","SUITE 1401","NEW YORK","NY","10022",,,,,,,"445 PARK AVENUE","SUITE 1401","NEW YORK","NY","10022",,,,,,,"131965668","2122236300","541110","HOPGOOD CALIMAFDE JUDLOWE MONDOLINO",,"445 PARK AVENUE","SUITE 1401","NEW YORK","NY","10022",,,,,,,"131965668","2122236300","HOPGGOD CALIMAFDE JUDLOWE & MONDOLI",,"668","2011-10-17T02:31:57-0500","STEPHEN JUDLOWE","2011-10-17T02:31:57-0500","STEPHEN JUDLOWE","2011-10-17T02:31:57-0500","HARRY SHUFRIN",18,18,0,0,18,,18,18,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111017090613P030151057953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMCAST SPORTSNET CHICAGO COMPREHENSIVE HEALTH AND WELFARE BENEFIT PLAN","502","2004-01-01","COMCAST SPORTSNET CHICAGO",,,"350 NORTH ORLEANS STREET","SUITE S1-100","CHICAGO","IL","60652",,,,,,,,,,,,,,,,,,"331076766","3122226000","515210","COMCAST SPORTSNET CHICAGO",,"350 NORTH ORLEANS STREET","SUITE S1-100","CHICAGO","IL","60652",,,,,,,"331076766","3122226000",,,,"2011-10-17T09:03:39-0500","ELIZABETH WEBER",,,,,194,207,0,0,207,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017094440P030700883808001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HOLLINGSWORTH & VOSE COMPANY RETIREMENT PLAN","001","1948-01-15","HOLLINGSWORTH & VOSE COMPANY",,,"112 WASHINGTON STREET",,"EAST WALPOLE","MA","02032",,,,,,,,,,,,,,,,,,"041446700","5088502127","322200","HOLLINGSWORTH & VOSE COMPANY",,"112 WASHINGTON STREET",,"EAST WALPOLE","MA","02032",,,,,,,"041446700","5088502127",,,,"2011-10-17T09:41:37-0500","KATHLEEN MULLALLY",,,,,893,417,216,217,850,42,892,,11,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017100232P040023232690001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WEBSTER DRUGS, INC. PROFIT SHARING PLAN","001","2001-01-01","WEBSTER DRUGS, INC.",,,"753 EAST TREMONT AVENUE",,"BRONX","NY","104575101",,,,,,,,,,,,,,,,,,"134015180","7189014717","446110","WEBSTER DRUGS, INC.",,"753 EAST TREMONT AVENUE",,"BRONX","NY","104575101",,,,,,,"134015180","7189014717",,,,"2011-10-17T09:58:51-0500","MILIND SUVARNAKER",,,,,59,42,0,17,59,0,59,59,2,,"2E3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104222P040154756897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRANDVILLE PRINTING CO. FLEXIBLE SPENDING ACCOUNT PLAN","502","1989-01-01","GRANDVILLE PRINTING CO, INC.",,,"4719 INVANREST SW",,"GRANDVILLE","MI","494189709",,,,,,,,,,,,,,,,,,"381852255","6165348647","323100","GRANDVILLE PRINTING CO, INC.",,"4719 IVANREST SW",,"GRANDVILLE","MI","494189709",,,,,,,"381852255","6165348647",,,,"2011-10-17T10:38:02-0500","CURTIS COOKE",,,,,223,224,2,0,226,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","1","0","1","0","1","0","0","0","0","1","0","1","8","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104802P040154762257001","1998-03-01","1998-12-31","2",,"1","1","0","1","0","0","0","1","0",,"HEALTH CARE SERVICES 401K PLAN","001","1998-03-01","CORPORATE MANAGEMENT, INC.",,,"P.O. BOX 3269",,"GULFPORT","MS","395053269",,,,,,,,,,,,,,,,,,"200463966","6019282911","541600","CORPORATE MANAGEMENT, INC.",,"P.O. BOX 3269",,"GULFPORT","MS","395053269",,,,,,,"200463966","6019282911",,,,"2011-10-17T10:44:17-0500","THOMAS KULUZ","2011-10-17T10:44:17-0500","THOMAS KULUZ",,,55,55,0,0,55,0,55,55,0,,"2E2J2G2K3D3H",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017104532P030151148769001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SER-JOBS FOR PROGRESS, INC. 401K PLAN","001","1997-05-05","SER - JOBS FOR PROGRESS, INC.",,,"100 EAST AVENUE",,"PAWTUCKET","RI","02860",,,,,,,,,,,,,,,,,,"050387856","4017241820","561900","SER - JOBS FOR PROGRESS, INC.",,"100 EAST AVENUE",,"PAWTUCKET","RI","02860",,,,,,,"050387856","4017241820",,,,"2011-10-17T11:22:37-0500","CRAIG BAKER","2011-10-17T11:23:17-0500","CRAIG BAKER",,,16,12,0,3,15,0,15,15,,,"2G2J2K2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017111046P030151169665001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"JOHNSON DEVELOPMENT COMPANY RETIREMENT SAVINGS PL","001","2001-11-01","JOHNSON DEVELOPMENT COMPANY, LLC",,,"1999 WABASH AVE., STE 206",,"SPRINGFIELD","IL","627045374",,,,,,,,,,,,,,,,,,"364125486","2177931005","721110","JOHNSON DEVELOPMENT COMPANY, LLC",,"1999 WABASH AVE., STE 206",,"SPRINGFIELD","IL","627045374",,,,,,,"364125486","2177931005",,,,"2011-10-17T10:43:55-0500","GEORGE JOHNSON",,,,,155,78,0,12,90,0,90,66,3,,"2E2F2G2J2K2S2T3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017092543P040023226914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NEW WAVE COMMUNICATIONS 401K PLAN","001","2003-01-01","TELECOMMUNICATIONS MANAGEMENT, LLC",,,"ONE MONTGOMERY PLAZA FLOOR 4",,"SIKESTON","MO","63801",,,,,,,,,,,,,,,,,,"043631284","5734729500","517000","TELECOMMUNICATIONS MANAGEMENT, LLC",,"ONE MONTGOMERY PLAZA FLOOR 4",,"SIKESTON","MO","63801",,,,,,,"043631284","5734729500",,,,"2011-10-17T09:22:10-0500","J. KEITH DAVIDSON","2011-10-17T09:22:10-0500","J. KEITH DAVIDSON",,,321,261,0,27,288,0,288,200,3,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017094108P040154697617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COSHOCTON COUNTY MEMORIAL HOSPITAL NON-EXEMPT HEALTH BENEFIT PLAN","501","1999-01-01","COSHOCTON COUNTY MEMORIAL HOSPITAL",,,"1460 ORANGE ST",,"COSHOCTON","OH","438122229",,,,,,,,,,,,,,,,,,"314387577","8007248802","622000","COSHOCTON COUNTY MEMORIAL HOSPITAL",,"1460 ORANGE ST",,"COSHOCTON","OH","43812",,,,,,,"314387577","8007248802",,,,"2011-10-17T09:39:17-0500","RICHARD K. DAVIS",,,,,436,398,0,0,398,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","1","1","2","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017102704P040154740625001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","1","0","0","0",,"ETHOS PARTNERS HEALTHCARE BCBS MEDICAL BENEFIT PLAN","501","2010-01-01","ETHOS PARTNERS HEALTHCARE MGMT T",,,"3325 PADDOCKS PARKWAY","STE 425","SUWANEE","GA","30025",,,,,,,,,,,,,,,,,,"203144000","7708144480","541219","ETHOS PARTNERS HEALTHCARE MGMT T",,"3325 PADDOCKS PARKWAY","STE 425","SUWANEE","GA","30025",,,,,,,"203144000","7708144480",,,,"2011-10-17T10:26:07-0500","JOAN LAPOINTE",,,,,135,0,0,0,0,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104529P030151148641005","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"PLUMBERS& STEAMFITTERS LOCAL 83 RETIREMENT FUND","003","1986-07-01","PLUMBERS & STEAMFITTERS LOCAL83",,,"177 - 29TH STREET",,"WHEELING","WV","26003",,,,,,,,,,,,,,,,,,"550667502","3042334445","525100","PLUMBERS & STEAMFITTERS LOCAL 83","RETIREMENT BOARD","177 29TH STREET",,"WHEELING","WV","26003",,,,,,,"550667502","3042334445",,,,"2011-10-17T11:25:08-0500","STACEY L FONNER","2011-10-17T11:25:51-0500","JAMES JORDAN",,,371,337,0,0,337,0,337,337,,22,"2C",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017092213P040051305271001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADVANSTAR COMMUNICATIONS, INC. SEVERANCE PAY PLAN","508","1998-01-01","ADVANSTAR COMMUNICATIONS, INC.",,,"131 WEST FIRST STREET",,"DULUTH","MN","55802",,,,,,,"131 WEST FIRST STREET",,"DULUTH","MN","55802",,,,,,,"592757389","2187407200","511120","ADVANSTAR COMMUNICATIONS, INC.",,"131 WEST FIRST STREET",,"DULUTH","MN","55802",,,,,,,"592757389","2187407200",,,,"2011-10-14T10:45:04-0500","SUSAN LINDGREN","2011-10-17T09:15:15-0500","TED ALPERT",,,708,561,80,,641,,641,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017092220P030151071489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NAVARRE CORPORATION 401(K) PROFIT SHARING PLAN","001","1992-01-01","NAVARRE CORPORATION",,,"7400 49TH AVE. NORTH",,"NEW HOPE","MN","55428",,,,,,,,,,,,,,,,,,"411704319","7635358333","423990","NAVARRE CORPORATION",,"7400 49TH AVE. NORTH",,"NEW HOPE","MN","55428",,,,,,,"411704319","7635358333",,,,"2011-10-17T09:21:08-0500","MEGHAN MODROW",,,,,685,527,0,158,685,1,686,602,51,,"2E2J2F2G2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017090636P040154670353008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"EDWARDS WOOD PRODUCTS, INC. EMPLOYEE BENEFIT PLAN","502","1990-10-01","EDWARDS WOOD PRODUCTS, INC.",,,"PO BOX 219",,"MARSHVILLE","NC","28103",,,,,,,"PO BOX 219",,"MARSHVILLE","NC","28103",,,,,,,"561026013","7046243604","321900","EDWARDS WOOD PRODUCTS, INC.",,"PO BOX 219",,"MARSHVILLE","NC","28103",,,,,,,"561026013","7046243604",,,,"2011-10-15T05:02:58-0500","JEFFREY G. EDWARDS",,,,,311,316,,,316,,,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111015174932P030696284416001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"STS 401(K) PLAN","002","1996-05-01","STS INTERNATIONAL, INC.",,,"5601 ARNOLD RD FL 102",,"DUBLIN","CA","945687726",,,,,,,,,,,,,,,,,,"680291059","9254797800","541519","STS INTERNATIONAL, INC.",,"5601 ARNOLD RD FL 102",,"DUBLIN","CA","945687726",,,,,,,"680291059","9254797800",,,,"2011-10-15T17:49:15-0500","BERI KASPER","2011-10-15T17:49:15-0500","BERI KASPER",,,255,236,0,33,269,0,269,167,41,,"2A2E2F2G2J2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017101632P030151121281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HILLDRUP MOVING & STORAGE 401(K) PLAN & TRUST","001","1988-01-01","HILLDRUP COMPANIES, INC.",,,"4022 JEFFERSON DAVIS HWY","P.O. BOX 1290","STAFFORD","VA","22555",,,,,,,,,,,,,,,,,,"540661748","7034417236","484120","HILLDRUP COMPANIES, INC.",,"4022 JEFFERSON DAVIS HWY","P.O. BOX 1290","STAFFORD","VA","22555",,,,,,,"540661748","7034417236",,,,"2011-10-17T10:12:36-0500","HILTON MARSHALL","2011-10-17T10:12:36-0500","HILTON MARSHALL",,,434,366,0,92,458,0,458,412,2,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017094305P030151091025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAUFF MCGUIRE & MARGOLIS TAX DEFERRED SAVINGS PLAN","002","1975-07-01","KAUFF MCGUIRE & MARGOLIS LLP",,,"950 THIRD AVENUE, 14TH FLOOR",,"NEW YORK","NY","100222705",,,,,,,,,,,,,,,,,,"133573855","2126441010","541110","KAUFF MCGUIRE & MARGOLIS LLP",,"950 THIRD AVENUE, 14TH FLOOR",,"NEW YORK","NY","100222705",,,,,,,"133573855","2126441010",,,,"2011-10-17T09:40:41-0500","WILLIAM E. ZUCKERMAN",,,,,60,27,0,28,55,0,55,55,3,,"2A2E2F2G2J2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017093929P030151087057004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FORRESTER CLINIC, S.C. - PROFIT SHARING PLAN","001","1987-04-01","FORRESTER CLINIC, S.C.",,,"1700 CENTRAL ROAD","SUITE 100","ARLINGTON HEIGHTS","IL","60005",,,,,,,"1700 CENTRAL ROAD","SUITE 100","ARLINGTON HEIGHTS","IL","60005",,,,,,,"363214615","8472590100","621111","FORRESTER CLINIC, S.C.",,"1700 CENTRAL ROAD","SUITE 100","ARLINGTON HEIGHTS","IL","60005",,,,,,,"363214615","8472590100",,,,"2011-10-17T03:25:03-0500","LEON TCHEUPDJIAN",,,,,41,20,20,,40,,40,25,,,"2E3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017093929P030151087057002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GEORGE C DEPTULA PROFIT SHARING","001","1996-12-24","GEORGE C DEPTULA PC",,,"75 FEDERAL STREET, 9TH FLOOR",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"043248978","6179125121","541110","GEORGE C DEPTULA PC",,"75 FEDERAL STREET, 9TH FLOOR",,"BOSTON","MA","02210",,,,,,,"043248978","6179125121",,,,"2011-10-17T04:24:03-0500","GEORGE C DEPTULA",,,,,2,2,,,2,,2,2,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017095718P040154711057001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"IRON WORKERS DISTRICT COUNCIL OF NEW ENGLAND ANNUITY FUND","001","1972-01-01","BOARD OF TRUSTEES IRON WORKERS","IRON WORKERS DC OF NE ANNUITY FUND",,"161 GRANITE AVE",,"DORCHESTER","MA","02124",,,,,,,,,,,,,,,,,,"042647320","6172653757","561110","BOARD OF TRUSTEES IRON WORKERS",,"161 GRANITE AVE",,"DORCHESTER","MA","02124",,,,,,,"042647320","6172653757",,,,"2011-10-17T05:44:34-0500","MICHAEL RUGGIERI",,,,,4786,4270,230,327,4827,80,4907,3159,,379,"2C2F2G",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017102507P040154737889001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"HOBBY LOBBY STORES, INC. MEDICAL & DENTAL PLAN","501","1988-05-01","HOBBY LOBBY STORES, INC.",,,"7707 S.W. 44TH STREET",,"OKLAHOMA CITY","OK","73179",,,,,,,,,,,,,,,,,,"731032203","4057451100","451120","HOBBY LOBBY STORES, INC.",,"7707 S.W. 44TH STREET",,"OKLAHOMA CITY","OK","73179",,,,,,,"731032203","4057451100",,,,"2011-10-14T15:56:35-0500","JON CARGILL",,,,,5451,5825,59,,5884,,5884,,,,,"4A4D",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017095012P040154705713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREE HOSPITAL MAJOR MEDICAL","511","1993-08-01","NORTH SHORE - LONG ISLAND JEWISH HEALTH SYSTEM",,,"972 BRUSH HOLLOW ROAD","5TH FLOOR","WESTBURY","NY","115901740",,,,,,,,,,,,,,,,,,"113418133","5168766611","622000","NORTH SHORE - LONG ISLAND JEWISH HEALTH SYSTEM",,"972 BRUSH HOLLOW ROAD","5TH FLOOR","WESTBURY","NY","115901740",,,,,,,"113418133","5168766611",,,,"2011-10-17T09:48:08-0500","ROBERT SHAPIRO",,,,,675,673,0,0,673,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017095109P040023230402007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VIRGINIA FARM MARKET, L.C. 401(K) PROFIT SHARING PLAN","001","2003-01-01","VIRGINIA FARM MARKET, L.C.",,,"1881 NORTH FREDERICK PIKE",,"WINCHESTER","VA","22603",,,,,,,,,,,,,,,,,,"621423019",,"445230","VIRGINIA FARM MARKET, L.C.",,"1881 NORTH FREDERICK PIKE",,"WINCHESTER","VA","22603",,,,,,,"621423019",,,,,"2011-10-14T11:12:11-0500","8007C. JOSEPH LIZER",,,,,3,3,,,3,,3,3,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017102740P030050575655001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOTHAM CITY RESTAURANT GROUP PROFIT SHARING PLAN","001","1995-01-01","GOTHAM CITY RESTAURANT GROUP",,,"27 UNION SQUARE WEST - SUITE 500",,"NEW YORK","NY","100033305",,,,,,,,,,,,,,,,,,"133790232","2122437969","722110","GOTHAM CITY RESTAURANT GROUP",,"27 UNION SQUARE WEST - SUITE 500",,"NEW YORK","NY","100033305",,,,,,,"133790232","2122437969",,,,"2011-10-17T10:21:40-0500","CHARLES MILITE, PRESIDENT",,,,,168,108,0,17,125,1,126,126,34,,"2A2E3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","1","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017103042P040023237330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YMCA CAFETERIA PLAN","501","1990-01-01","YMCA OF GREATER MIAMI",,,"730 NW 107TH AVENUE","SUITE 200","MIAMI","FL","33172",,,,,,,,,,,,,,,,,,"590624464","3053574000","813000","YMCA OF GREATER MIAMI",,"730 NW 107TH AVENUE","SUITE 200","MIAMI","FL","33172",,,,,,,"590624464","3053574000",,,,"2011-10-17T10:29:37-0500","NADINE LEWIS",,,,,167,145,1,0,146,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104843P030701101104001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"M-TEK, INC. 401(K) PLAN","001","1988-11-01","M-TEK INC",,,"1020 VOLUNTEER PKWY",,"MANCHESTER","TN","373556461",,,,,,,,,,,,,,,,,,"621292160","9317284122","336100","M-TEK INC",,"1020 VOLUNTEER PKWY",,"MANCHESTER","TN","373556461",,,,,,,"621292160","9317284122",,,,"2011-10-17T10:41:17-0500","HOWARD TUCKER","2011-10-17T10:41:17-0500","HOWARD TUCKER",,,1967,1631,0,236,1867,0,1867,1437,71,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017104609P040023240274001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNITY SPECIALISTS, L.P. 401(K) & PROFIT SHARING PLAN","001","1995-01-01","COMMUNITY SPECIALISTS, L.P.",,,"680 N. LAKE SHORE DR., SUITE 1326",,"CHICAGO","IL","60611",,,,,,,,,,,,,,,,,,"363964742","3123378691","531310","COMMUNITY SPECIALISTS, L.P.",,"680 N. LAKE SHORE DR., SUITE 1326",,"CHICAGO","IL","60611",,,,,,,"363964742","3123378691",,,,"2011-10-17T08:38:02-0500","JAMES FRIEDRICHSEN","2011-10-17T08:38:02-0500","JAMES FRIEDRICHSEN",,,93,68,9,10,87,,87,72,2,,"2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017091153P040154674033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"POULTRY PRODUCTS EMPLOYEE STOCK OWNERSHIP PLAN","003","1999-01-01","POULTRY PRODUCTS OF NEW ENGLAND, INC.",,,"11 BEMIS ROAD",,"HOOKSETT","NH","03106",,,,,,,,,,,,,,,,,,"020505665","6032631647","424400","POULTRY PRODUCTS OF NEW ENGLAND, INC.",,"11 BEMIS ROAD",,"HOOKSETT","NH","03106",,,,,,,"020505665","6032631647",,,,"2011-10-17T09:11:11-0500","GARY WISCHAN",,,,,319,232,0,102,334,0,334,330,8,,"2P3H3I3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017093210P040154691281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"M.F. CONSTRUCTION CORP. PENSION PLAN AND TRUST","001","1975-07-01","M.F. CONSTRUCTION CORP. PENSION PLAN AND TRUST",,,"350 BOYDS LANE",,"PORTSMOUTH","RI","02871",,,,,,,"350 BOYDS LANE",,"PORTSMOUTH","RI","02871",,,,,,,"050297174","4016832230","238300","M.F. CONSTRUCTION CORP. PENSION PLAN AND TRUST",,"350 BOYDS LANE",,"PORTSMOUTH","RI","02871",,,,,,,"050297174","4016832230",,,,"2011-10-17T09:31:50-0500","DONNA NILES",,,,,5,5,0,0,5,0,5,5,0,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017100804P030700961760001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"DIVERSIFIED EQUITY FUND CLASS A","104",,"BANKERS TRUST COMPANY",,,"453 7TH STREET",,"DES MOINES","IA","50309",,,,,,,,,,,,,,,,,,"426479996","5152452831",,"BANKERS TRUST COMPANY",,"453 7TH STREET",,"DES MOINES","IA","50309",,,,,,,"426479996","5152452831",,,,,,,,"2011-10-17T10:05:02-0500","SAMUEL SHIMP",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-17",,"Filed with authorized/valid electronic signature", "20111017102920P040023236754002","2010-01-01","2010-12-31","4","E",,"1",,,,,,,,,"BRIDGEWATER OPTIONS FUND I, LLC","001","2004-05-04","BRIDGEWATER OPTIONS FUND I, LLC",,,"ONE GLENDINNING PLACE",,"WESTPORT","CT","06880",,,,,,,,,,,,,,,,,,"061721620","2032263030","523900","BRIDGEWATER OPTIONS FUND I, LLC",,"ONE GLENDINNING PLACE",,"WESTPORT","CT","06880",,,,,,,"061721620","2032263030",,,,"2011-10-14T05:31:34-0500","PETER LA TRONICA",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017102920P040023236754005","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"LINCOLN TEXTILE PRODUCTS CO INC PROFIT SHARING PLAN & TRUST","001","1968-06-01","LINCOLN TEXTILE PRODUCTS CO INC",,,"6762 CHRISPHALT DRIVE",,"BATH","PA","18014",,,,,,,"6762 CHRISPHALT DRIVE",,"BATH","PA","18014",,,,,,,"232678958","6104382418","314000","LINCOLN TEXTILE PRODUCTS CO INC",,"6762 CHRISPHALT DRIVE",,"BATH","PA","18014",,,,,,,"232678958","6104382418",,,,"2011-09-28T11:37:20-0500","MICHAEL MITCH",,,,,28,0,,0,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017101425P030151119665001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOANNE MIRRAS, D.M.D. PROFIT SHARING PLAN","001","1998-01-01","JOANNE MIRRAS, D.M.D.",,,"205 CHELMSFORD STREET",,"CHELMSFORD","MA","01824",,,,,,,,,,,,,,,,,,"043383379","9782568114","621210","JOANNE MIRRAS, D.M.D.",,"205 CHELMSFORD STREET",,"CHELMSFORD","MA","01824",,,,,,,"043383379","9782568114",,,,"2011-07-17T06:09:19-0500","JOANNE MIRRAS",,,,,3,3,,,3,,3,,,,"2E2H3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017100354P040154717905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GIBNEY, ANTHONY & FLAHERTY PROFIT SHARING PLAN","001","1984-07-01","GIBNEY, ANTHONY & FLAHERTY, LLP",,"KENNETH N. SACKS","665 FIFTH AVE",,"NEW YORK","NY","10022",,,,,,,"665 FIFTH AVE",,"NEW YORK","NY","10022",,,,,,,"131910984","2126885151","541110","GIBNEY, ANTHONY & FLAHERTY, LLP","KENNETH N. SACKS","665 FIFTH AVE",,"NEW YORK","NY","10022",,,,,,,"131910984","2126885151",,,,"2011-10-17T09:44:47-0500","KENNETH SACKS","2011-10-17T09:42:48-0500","KENNETH SACKS",,,125,109,1,30,140,,140,126,,,"2E2F2G2J2T3B3D",,,,"1",,,,"1",,"0",,,"1",,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017104700P040023240498001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ANIMAL CARE ASSOCIATES, INC. PROFIT SHARING PLAN","001","1989-01-01","ANIMAL CARE ASSOCIATES, INC.",,,"840 OAKWOOD RD",,"CHARLESTON","WV","253142010",,,,,,,,,,,,,,,,,,"043751839","3043442244","541940","ANIMAL CARE ASSOCIATES INC",,"840 OAKWOOD RD",,"CHARLESTON","WV","25314",,,,,,,"043751839","3043442244",,,,"2011-10-17T10:47:00-0500","PAUL GUNNOE",,,,,31,24,0,5,29,0,29,22,2,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111015162044P030150070001001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"ITT SYSTEMS CORPORATION - PACIFIC MISSILE RANGE FACILITY SAVINGS PLAN FOR HOURLY EMPLOYEES","014","1993-10-01","ITT CORPORATION",,,"1133 WESTCHESTER AVENUE",,"WHITE PLAINS","NY","10604",,,,,,,,,,,,,,,,,,"135158950","9146412000","333200","ITT CORPORATION",,"1133 WESTCHESTER AVENUE",,"WHITE PLAINS","NY","10604",,,,,,,"135158950","9146412000",,,,"2011-10-15T16:20:16-0500","FRANK PELOSO",,,,,417,384,0,17,401,8,409,399,1,,"2E2G2J2K2T3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111017094342P030151091329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUBLIC SERVICE ENTERPRISE GROUP INC. THRIFT & TAX- DEFERRED SAVINGS PLAN","004","1981-10-01","PUBLIC SERVICE ENTERPRISE GROUP INCORPORATED",,,"80 PARK PLAZA, T21, P.O. BOX 1171",,"NEWARK","NJ","071011171",,,,,,,,,,,,,,,,,,"222625848","9734307000","551112","EMPLOYEE BENEFITS COMMITTEE OF PUBLIC SERVICE ENTERPRISE GROUP INC",,"80 PARK PLAZA T21, P.O. BOX 1171",,"NEWARK","NJ","071011171",,,,,,,"222625848","9734307000",,,,"2011-10-17T09:40:59-0500","CHRISTINE DE STEFANO",,,,,5782,3540,7,2019,5566,8,5574,5494,0,,"2G2J2K2O2R2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017094527P030022331522001","2011-01-01","2011-02-28","2",,"0","0","1","1","0","1","0","0","0",,"ROCKHILL HOLDING COMPANY 401K PROFIT SHARING PLAN","001","2006-01-01","ROCKHILL HOLDING COMPANY",,,"700 WEST 47TH STREET SUITE 350",,"KANSAS CITY","MO","64112",,,,,,,,,,,,,,,,,,"251923260","8164122841","524210","ROCKHILL HOLDING COMPANY",,"700 WEST 47TH STREET SUITE 350",,"KANSAS CITY","MO","64112",,,,,,,"251923260","8164122841",,,,"2011-10-17T09:42:10-0500","RODNEY KIRK","2011-10-17T09:42:10-0500","ROLAND HAMIK",,,304,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D3H",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017103342P030151138833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RICOH AMERICAS CORPORATION FAMILY GROUP PENSION EQUITY PLAN","002","1988-10-01","RICOH AMERICAS CORPORATION",,,"5 DEDRICK PLACE",,"WEST CALDWELL","NJ","07006",,,,,,,,,,,,,,,,,,"222783521","9738822000","334200","RICOH AMERICAS CORPORATION",,"5 DEDRICK PLACE",,"WEST CALDWELL","NJ","07006",,,,,,,"222783521","9738822000",,,,"2011-10-17T10:27:26-0500","KATHERINE B HUGGINS",,,,,11170,5903,705,4344,10952,154,11106,,280,,"1A1C1F1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017102519P030151130241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHWEST OKLAHOMA COMMUNITY ACTION GROUP, INC. SECTION 403(B) RETIREMENT PLAN","002","2001-04-01","SOUTHWEST OKLAHOMA COMMUNITY ACTION GROUP, INC.",,,"P.O. BOX 1088 900 SOUTH CARVER ROAD",,"ATLUS","OK","73521",,,,,,,,,,,,,,,,,,"730744747","5804825040","624100","SOUTHWEST OKLAHOMA COMMUNITY ACTION GROUP, INC.",,"P.O. BOX 1088 900 SOUTH CARVER ROAD",,"ATLUS","OK","73521",,,,,,,"730744747","5804825040",,,,"2011-10-17T10:20:09-0500","NEIL MONTGOMERY",,,,,168,161,0,0,161,0,161,135,21,,"2L2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104926P040023240978001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","1","0","0",,"GANNON UNIVERSITY TAX DEFERRED ANNUITY PLAN","003","1965-09-01","GANNON UNIVERSITY",,"ROBERT CLINE","109 UNIVERSITY SQUARE",,"ERIE","PA","16541",,,,,,,"109 UNIVERSITY SQUARE",,"ERIE","PA","16541",,,,,,,"250496976","8148715615","611000","GANNON UNIVERSITY","ROBERT CLINE","109 UNIVERSITY SQUARE",,"ERIE","PA","16541",,,,,,,"250496976","8148715615",,,,"2011-10-17T10:47:46-0500","ROBERT CLINE",,,,,447,268,70,143,481,1,482,474,0,,"2L2M2G2R",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017093950P030700869408001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GEORGE C DEPTULA MONEY PURCHASE","002","1996-12-24","GEORGE C DEPTULA PC",,,"75 FEDERAL STREET, 9TH FLOOR",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"043248978","6179125121","541110","GEORGE C DEPTULA PC",,"75 FEDERAL STREET, 9TH FLOOR",,"BOSTON","MA","02210",,,,,,,"043248978","6179125121",,,,"2011-10-17T04:25:28-0500","GEORGE C DEPTULA",,,,,2,2,,,2,,2,2,,,"2C2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017093950P030700869408008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COAL TRANSPORT ASSOCIATES EMPLOYEE BENEFITS PLAN","501","1997-01-01","COAL TRANSPORT ASSOCIATES",,,"PO BOX 370",,"LOVELY","KY","412310370",,,,,,,,,,,,,,,,,,"611197236","6063956825","484110","COAL TRANSPORT ASSOCIATES",,"PO BOX 370",,"LOVELY","KY","412310370",,,,,,,"611197236","6063956825",,,,"2011-10-17T05:28:25-0500","JAMES H. BOOTH",,,,,156,156,,,156,,,,,,,"4A4B4D4E4L","1",,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017102355P030151128641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE TD WHOLESALE BANKING USA 401(K) PLAN","001","1981-09-01","TD SECURITIES USA LLC",,,"31 WEST 52ND STREET",,"NEW YORK","NY","100196101",,,,,,,,,,,,,,,,,,"201177269","2128277530","523110","TD SECURITIES USA LLC",,"31 WEST 52ND STREET",,"NEW YORK","NY","100196101",,,,,,,"201177269","2128277530",,,,"2011-10-17T10:17:56-0500","MARIANNE VITALE","2011-10-17T10:17:56-0500","MARIANNE VITALE",,,868,444,0,444,888,2,890,853,39,,"2E2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017102946P040023236818001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAGNA HOSPITALITY GROUP EMPLOYEE RETIREMENT & SAVINGS PLAN","001","2005-01-01","MAGNA HOSPITALITY GROUP, L.C.",,,"THE SUMMIT, WARWICK EXECUTIVE PARK","300 CENTERVILLE RD, SUITE 300 EAST","WARWICK","RI","02886",,,,,,,,,,,,,,,,,,"650846862","4015622202","721110","MAGNA HOSPITALITY GROUP, L.C.",,"THE SUMMIT, WARWICK EXECUTIVE PARK","300 CENTERVILLE RD, SUITE 300 EAST","WARWICK","RI","02886",,,,,,,"650846862","4015622202",,,,"2011-10-17T10:25:28-0500","LEONARD J. GRECCO",,,,,525,564,0,51,615,0,615,244,21,,"2E2F2G2J2K2S3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104041P030004522499001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"H.B. BOYS 401K","001","1997-01-01","H.B. BOYS L.C.",,,"2280 SOUTH MAIN",,"SALT LAKE CITY","UT","84115",,,,,,,,,,,,,,,,,,"870536706","8014866777","722210","H.B. BOYS L.C.",,"2280 SOUTH MAIN",,"SALT LAKE CITY","UT","84115",,,,,,,"870536706","8014866777",,,,"2011-10-17T10:33:22-0500","WILLIAM ELLIS",,,,,503,443,0,58,501,0,501,174,22,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104716P040154761313002","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"FAIRWAY CHEVROLET CO. 401(K) RETIREMENT PLAN","001","1986-04-01","FAIRWAY CHEVROLET CO.",,,"3100 EAST SAHARA AVE., BOX 42997",,"LAS VEGAS","NV","89104",,,,,,,,,,,,,,,,,,"880109211","7026411400","441110","FAIRWAY CHEVROLET CO.",,"3100 EAST SAHARA AVE., BOX 42997",,"LAS VEGAS","NV","89104",,,,,,,"880109211","7026411400",,,,"2011-10-17T11:47:02-0500","JOHN L. GIBBONS",,,,,328,210,0,95,305,0,305,225,2,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017094919P030151096689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PERSON MEMORIAL HOSPITAL RETIREMENT PLAN","002","1989-01-01","PERSON MEMORIAL HOSPITAL",,,"615 RIDGE RD.",,"ROXBORO","NC","27573",,,,,,,,,,,,,,,,,,"560543247","3365034804","622000","PERSON MEMORIAL HOSPITAL",,"615 RIDGE RD.",,"ROXBORO","NC","27573",,,,,,,"560543247","3365034804",,,,"2011-10-17T09:46:08-0500","MARY DRUMWRIGHT",,,,,595,410,0,190,600,0,600,472,0,,"2F2G2L2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017100946P030151115489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INTERSTATE BRANDS COMPANIES SAVINGS INVESTMENT PLAN","012","1995-07-21","INTERSTATE BRANDS CORPORATION",,,"12 EAST ARMOUR BOULEVARD",,"KANSAS CITY","MO","64111",,,,,,,,,,,,,,,,,,"440296705","8165024000","311800","INTERSTATE BRANDS CORPORATION",,"12 EAST ARMOUR BOULEVARD",,"KANSAS CITY","MO","64111",,,,,,,"440296705","8165024000",,,,"2011-10-17T10:06:25-0500","CHRIS KNIPP","2011-10-17T10:06:25-0500","CHRIS KNIPP",,,791,577,3,110,690,6,696,696,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017101924P040154731633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ESSE HEALTH PROFIT SHARING PLAN","001","1986-01-01","ESSE HEALTH",,,"12655 OLIVE BLVD FL 4",,"SAINT LOUIS","MO","631416362",,,,,,,,,,,,,,,,,,"431383893","3148511000","621111","ESSE HEALTH",,"12655 OLIVE BLVD FL 4",,"SAINT LOUIS","MO","631416362",,,,,,,"431383893","3148511000",,,,"2011-10-17T10:17:49-0500","DAVID KEARNEY",,,,,619,475,0,91,566,0,566,559,23,,"2A2E2G2J2K3F3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017101246P030022335410001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A.M. BEST COMPANY RETIREMENT PLAN","001","1957-01-01","A.M. BEST COMPANY, INC.",,,"AMBEST ROAD",,"OLDWICK","NJ","08858",,,,,,,,,,,,,,,,,,"134955140","9084392200","511190","A.M. BEST COMPANY, INC.",,"AMBEST ROAD",,"OLDWICK","NJ","08858",,,,,,,"134955140","9084392200",,,,"2011-10-17T10:08:47-0500","ALESSANDRA CZARNECKI","2011-10-17T10:08:47-0500","ALESSANDRA CZARNECKI",,,744,477,91,149,717,14,731,,6,,"1C1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017090515P030151057169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GLOBAL AFFILIATES UNION 401(K) PLAN","001","2007-02-05","NJT ENTERPRISES LLC",,,"42400 MERRILL",,"STERLING HEIGHTS","MI","48314",,,,,,,,,,,,,,,,,,"205663915","5868036000","326100","NJT ENTERPRISES LLC",,"42400 MERRILL",,"STERLING HEIGHTS","MI","48314",,,,,,,"205663915","5868036000",,,,"2011-10-17T09:03:03-0500","TIM BRADLEY",,,,,303,466,,27,493,0,493,179,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","3","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017091554P030050545143001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BOYS AND GIRLS CLUB OF S.ALABAMA INC. 401(K) PLAN","003","2004-01-01","BOYS AND GIRLS CLUBS OF SOUTH AL",,,"1102 GOVERNMENT STREET",,"MOBILE","AL","36604",,,,,,,,,,,,,,,,,,"630414826","2514321235","813000","BOYS AND GIRLS CLUBS OF SOUTH AL",,"1102 GOVERNMENT STREET",,"MOBILE","AL","36604",,,,,,,"630414826","2514321235",,,,"2011-10-17T09:14:21-0500","MARY ZOGHBY",,,,,160,93,0,3,96,0,96,24,7,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017093029P030700842000001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"W & K STEEL 401(K) PROFIT SHARING PLAN","001","2002-01-01","W & K STEEL",,,"98 ANTISBURY STREET",,"RANKIN","PA","15104",,,,,,,,,,,,,,,,,,"352163885","4122711620","238900","W & K STEEL",,"98 ANTISBURY STREET",,"RANKIN","PA","15104",,,,,,,"352163885","4122711620",,,,"2011-10-17T09:29:07-0500","ED WILHELM",,,,,106,87,1,9,97,0,97,52,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017093033P040154690193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FASTBLUE COMMUNICATIONS INC. DEFINED BENEFIT PENSION PLAN","002","2007-01-01","FASTBLUE COMMUNICATIONS",,,"1900 MAIN ST STE 300",,"IRVINE","CA","926147323",,,,,,,,,,,,,,,,,,"205499187","9497432524","517000","FASTBLUE COMMUNICATIONS",,"1900 MAIN ST STE 300",,"IRVINE","CA","926147323",,,,,,,"205499187","9497432524",,,,"2011-10-17T09:29:38-0500","KEN O'BRIEN",,,,,4,4,0,0,4,0,4,,0,,"1A1G1I3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017103403P030151139185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOYOLA UNIVERSITY PHYSICIAN FOUNDATION RETIREMENT PLAN","002","1995-07-01","LOYOLA UNIVERSITY PHYSICIAN FOUNDATION",,,"TWO WESTBROOK CORPORATE CENTER",,"WESTCHESTER","IL","60154",,,,,,,,,,,,,,,,,,"363999801","7082163981","621111","LOYOLA UNIVERSITY PHYSICIAN FOUNDATION",,"TWO WESTBROOK CORPORATE CENTER",,"WESTCHESTER","IL","60154",,,,,,,"363999801","7082163981",,,,"2011-10-17T10:27:46-0500","TERRY R. LIGHT, MD",,,,,901,0,0,887,887,0,887,802,0,,"2F2G2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017103406P030004522243001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CARDIOVASCULAR RESEARCH FOUNDATION 401K PLAN","001","1997-01-01","CARDIOVASCULAR RESEARCH FOUNDATION",,,"111 EAST 59TH STREET 13TH STREET",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"521752653","2128519300","621111","CARDIOVASCULAR RESEARCH FOUNDATION",,"111 EAST 59TH STREET 13TH STREET",,"NEW YORK","NY","10022",,,,,,,"521752653","2128519300",,,,"2011-10-17T10:27:45-0500","EILEEN MORALES",,,,,125,108,0,37,145,0,145,110,2,,"2E2G2J2K3D2T2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017103522P030022339458001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"EPIC MEDSTAFF 401K PLAN","001","2008-01-01","EPIC MEDSTAFF SERVICES DALLAS",,,"1349 EMPIRE CENTRAL","SUITE 1050","DALLAS","TX","75247",,,,,,,,,,,,,,,,,,"752949050","2144661352","621610","EPIC MEDSTAFF SERVICES DALLAS",,"1349 EMPIRE CENTRAL","SUITE 1050","DALLAS","TX","75247",,,,,,,"752949050","2144661352",,,,"2011-10-14T15:46:24-0500","LINDA MARTIN",,,,,231,211,0,14,225,0,225,99,6,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017103535P030701052096001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HIRSCH & WESTHEIMER, P.C. PROFIT SHARING PLAN","001","1982-02-01","HIRSCH & WESTHEIMER, P.C.",,,"700 LOUISIANA, 25TH FLOOR",,"HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"760000323","7132209142","541110","HIRSCH & WESTHEIMER, P.C.",,"700 LOUISIANA, 25TH FLOOR",,"HOUSTON","TX","77002",,,,,,,"760000323","7132209142",,,,"2011-10-17T10:29:19-0500","MICHAEL J DURRSCHMIDT","2011-10-15T11:29:59-0500","MICHAEL J. DURRSCHMIDT",,,59,50,0,11,61,0,61,61,0,,"2T3D2E2G2J2K2R2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017104416P030151147361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KANE RUSSELL COLEMAN & LOGAN, PC PROFIT SHARING PLAN","001","1993-07-01","KANE RUSSELL COLEMAN & LOGAN, PC",,,"1601 ELM STREET","SUITE 3700","DALLAS","TX","75201",,,,,,,,,,,,,,,,,,"752410848","2147774200","541110","KANE RUSSELL COLEMAN & LOGAN, PC",,"1601 ELM STREET","SUITE 3700","DALLAS","TX","75201",,,,,,,"752410848","2147774200",,,,"2011-10-17T10:36:42-0500","MIKE DEMAREST",,,,,149,115,0,26,141,0,141,140,0,,"2T3D2E2G2J2K2R2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017092406P040154684849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ISMAEL VELAZQUEZ ROSADO PROFIT SHARING PLAN","001","1991-01-01","ISMAEL VELAZQUEZ ROSADO",,,"PO BOX 1939",,"CABO ROJO","PR","006231939",,,,,,,"PO BOX 1939",,"CABO ROJO","PR","006231939",,,,,,,"660479710","7878331093","621111","ISMAEL VELAZQUEZ ROSADO",,"PO BOX 1939",,"CABO ROJO","PR","006231939",,,,,,,"660479710","7878331093",,,,"2011-10-17T09:04:48-0500","ISMAEL VELAZQUEZ",,,,,2,2,0,0,2,0,2,2,0,,"2E3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017093537P030700857136001","2010-01-01","2010-12-31","2",,,,,,,"1",,,"1","RELIEF/REMNANT TROP STORM LEE IN NY","MAINES PAPER & FOOD SERVICE INC HEALTH PLAN BLUE CROSSBLUE SHIELD - BLUE PREFERRED","502","1998-01-01","MAINES PAPER & FOOD SERVICE INC",,,"101 BROOME CORPORATE PARKWAY",,"CONKLIN","NY","13748",,,,,,,,,,,,,,,,,,"150617759","6077721936","424400","MAINES PAPER & FOOD SERVICE INC",,"101 BROOME CORPORATE PARKWAY",,"CONKLIN","NY","13748",,,,,,,"150617759","6077721936",,,,"2011-10-17T09:25:18-0500","STEPHANIE WYATT",,,,,3123,3179,,,3179,,3179,,,,,"4A",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017102628P030151131617001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","1","0","0","0",,"BLUE MOUNTAIN ARTS, INC. RETIREMENT PLAN","001","1979-11-01","BLUE MOUNTAIN ARTS, INC.",,,"C/O SPS STUDIOS, INC.","P.O. BOX 1046","LA JOLLA","CA","92038",,,,,,,,,,,,,,,,,,"841515611","8584568500","424920","BLUE MOUNTAIN ARTS, INC.",,"C/O SPS STUDIOS, INC.","P.O. BOX 1046","LA JOLLA","CA","92038",,,,,,,"841515611","8584568500",,,,"2011-10-17T10:20:53-0500","PAUL KNUTSON",,,,,166,133,0,19,152,0,152,147,0,,"2E2G2J2F2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104047P040695409760010","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ZUBRITZKY & CHRISTY OB/GYN ASSOCIATES, P.C.","001","1987-09-30","ZUBRITZKY & CHRISTY OB/GYN ASSOC PC",,,"6000 STEUBENVILLE PIKE","SUITE 105","MCKEES ROCKS","PA","15136",,,,,,,,,,,,,,,,,,"251899372","4127881330","621111","ZUBRITZKY & CHRISTY OB/GYN ASSOC PC",,"6000 STEUBENVILLE PIKE","SUITE 105","MCKEES ROCKS","PA","15136",,,,,,,"251899372","4127881330",,,,"2011-10-15T06:28:21-0500","DR. PAUL ZUBRITZKY",,,,,10,8,,,8,,8,8,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104058P040154755473001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","1","0","0",,"UNION HOURLY RETIREMENT PLAN OF LONGVIEW FIBRE PAPER & PACKAGING INC.","001","1948-01-01","LONGVIEW FIBRE PAPER & PACKAGING INC.",,,"P.O. BOX 639",,"LONGVIEW","WA","986327411",,,,,,,"300 FIBRE WAY",,"LONGVIEW","WA","986327411",,,,,,,"203674771","3604251550","322100","PENSION COMMITTEE OF THE UNION HOURLY RETIREMENT PLAN",,"P.O. BOX 639",,"LONGVIEW","WA","986327411",,,,,,,"910966198","3604251550",,,,"2011-10-17T10:39:44-0500","ELLEN M RETZOLK, PENSION COMMITTEE",,,,,3287,839,1474,691,3004,255,3259,0,47,,"1A1B1C1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017105028P040023241298003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE EPISCOPAL ACADEMY 403(B) DEFINED CONTRIBUTION RETIREMENT PLAN","002","1995-01-01","THE EPISCOPAL ACADEMY",,,"1785 BISHOP WHITE DRIVE",,"NEWTOWN SQUARE","PA","19073",,,,,,,,,,,,,,,,,,"231370500","4844241420","611000","THE EPISCOPAL ACADEMY",,"1785 BISHOP WHITE DRIVE",,"NEWTOWN SQUARE","PA","19073",,,,,,,"231370500","4844241420",,,,"2011-10-17T05:39:51-0500","BRADLEY A. CATES","2011-10-17T05:39:51-0500","BRADLEY A. CATES",,,489,474,0,28,502,0,502,462,0,,"2F2G2L2M2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017092128P040154682241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PENSION PLAN FOR HOURLY EMPLOYEES OF GENERAL ELECTRIC RAILCAR SERVICES CORPORATION","003","1984-01-01","GENERAL ELECTRIC RAILCAR REPAIR SERVICES CORP.",,,"161 N. CLARK STREET, 7TH FLOOR",,"CHICAGO","IL","606013389",,,,,,,,,,,,,,,,,,"061093099","3128535000","488510","GENERAL ELECTRIC RAILCAR REPAIR SERVICES CORP.",,"161 N. CLARK STREET, 7TH FLOOR",,"CHICAGO","IL","606013389",,,,,,,"061093099","3128535000",,,,"2011-10-17T09:17:08-0500","ELLEN MACGILLIS",,,,,659,168,115,349,632,26,658,,13,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017100116P040154715201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LENOX HILL HOSPITAL & MANHATTAN EYE, EAR AND THROAT HOSPITAL GROUP BENEFITS PLAN","501","1974-01-01","LENOX HILL HOSPITAL","C/O NORTH SHORE - LONG ISLAND JEWISH HEALTH SYSTEM",,"972 BRUSH HOLLOW ROAD","5TH FLOOR","WESTBURY","NY","11590",,,,,,,,,,,,,,,,,,"131624070","5168766611","622000","LENOX HILL HOSPITAL","C/O NORTH SHORE - LONG ISLAND JEWISH HEALTH SYSTEM","972 BRUSH HOLLOW ROAD","5TH FLOOR","WESTBURY","NY","11590",,,,,,,"131624070","5168766611",,,,"2011-10-17T10:00:55-0500","ROBERT SHAPIRO",,,,,1839,1668,18,0,1686,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017103128P040023237698001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EVERGLADES FARM EQUIPMENT CO., INC. GROUP HEALTH PLAN","502","2002-01-01","EVERGLADES FARM EQUIPMENT CO., INC.",,,"STATE ROAD 715 NORTH","P. O. BOX 910","BELLE GLADE","FL","33430",,,,,,,"STATE ROAD 715 NORTH","P. O. BOX 910","BELLE GLADE","FL","33430",,,,,,,"591000566","5619966531","453990","EVERGLADES FARM EQUIPMENT CO., INC.",,"STATE ROAD 715 NORTH","P. O. BOX 910","BELLE GLADE","FL","33430",,,,,,,"591000566","5619966531",,,,"2011-10-17T10:30:37-0500","BRIAN PURSELL",,,,,106,103,2,3,108,0,108,,,,,"4A4B4D4Q","1",,,"1","1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104735P040154761761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTH ISLAND GROUP 401(K) PROFIT SHARING PLAN AND TRUST","001","1978-04-01","NORTH ISLAND GROUP INC.",,,"30 PARK AVENUE",,"MANHASSET","NY","11030",,,,,,,,,,,,,,,,,,"112696605","5163657440","524210","NORTH ISLAND GROUP INC.",,"30 PARK AVENUE",,"MANHASSET","NY","11030",,,,,,,"112696605","5163657440",,,,"2011-10-17T10:37:03-0500","JO ANN PARROTTA",,,,,139,109,,46,155,,155,140,2,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104741P040154761873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOTIVATING GRAPHICS 401(K) RETIREMENT PLAN","001","2005-04-01","MOTIVATING GRAPHICS, INC.",,,"3100 EAGLE PARKWAY",,"FORT WORTH","TX","76177",,,,,,,,,,,,,,,,,,"650617372","8174914788","323100","MOTIVATING GRAPHICS, INC.",,"3100 EAGLE PARKWAY",,"FORT WORTH","TX","76177",,,,,,,"650617372","8174914788",,,,"2011-10-17T10:47:20-0500","EDWARD YEATON",,,,,190,188,0,0,188,0,188,45,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017104454P040154758881005","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"INTEGRITY HOME CARE EMPLOYEE BASIC CARE PLAN","501","2010-01-01","INTEGRA HEALTHCARE, INC.",,,"2960 N EASTGATE AVE",,"SPRINGFIELD","MO","65803",,,,,,,"2960 N EASTGATE AVE",,"SPRINGFIELD","MO","65803",,,,,,,"431875357","4178899773","621610","INTEGRA HEALTHCARE, INC.",,"2960 N EASTGATE AVE",,"SPRINGFIELD","MO","65803",,,,,,,"431875357","4178899773",,,,"2011-10-17T09:27:07-0500","PAUL REINERT",,,,,0,270,,,270,,,,,,,"4A4B","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017100555P040023233170001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"BRUKER 401(K) PLAN","001","1998-01-01","BRUKER AXS INC.",,,"5465 E CHERYL PKWY",,"FITCHBURG","WI","537115373",,,,,,,,,,,,,,,,,,"331064878","6082763030","334500","BRUKER AXS INC.",,"5465 E CHERYL PKWY",,"FITCHBURG","WI","537115373",,,,,,,"331064878","6082763030",,,,"2011-10-17T10:05:51-0500","KLINE WILKINS","2011-10-17T10:05:51-0500","KLINE WILKINS",,,763,979,0,86,1065,0,1065,992,28,,"2E2F2G2J2K2S2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017081239P040694926336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIDELITY GROUP EMPLOYEES LIFE INSURANCE PLAN","504","1961-12-28","FMR LLC.",,"TOM OKSANEN","82 DEVONSHIRE ST., ZE6C",,"BOSTON","MA","02109",,,,,,,,,,,,,,,,,,"043532603","6175634608","523900","FMR LLC.","TRINIDAD BUTLER","82 DEVONSHIRE ST., ZE6C",,"BOSTON","MA","02109",,,,,,,"043532603","6173921857",,,,"2011-10-17T08:11:06-0500","TRINIDAD BUTLER","2011-10-17T08:11:06-0500","THOMAS OKSANEN",,,31284,30767,0,0,30767,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017090359P030022322674001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SIGNUM LIFE AND AD&D PLAN","505","2010-01-01","SIGNUM, INC.",,,"4715 SUNSET BLVD. STE A",,"LEXINGTON","SC","29072",,,,,,,,,,,,,,,,,,"571077604","8033549399","541990","SIGNUM, INC.",,"4715 SUNSET BLVD. STE A",,"LEXINGTON","SC","29072",,,,,,,"571077604","8033549399",,,,"2011-10-17T09:01:59-0500","PAUL CONWAY",,,,,0,202,0,0,202,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017091845P040154679777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A FORBES COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","003","2005-01-01","A FORBES COMPANY",,,"P.O. BOX 2430",,"LENOIR","NC","28645",,,,,,,"1035 HARPER AVENUE SW",,"LENOIR","NC","28645",,,,,,,"561417152","8287580024","323100","A FORBES COMPANY",,"P.O. BOX 2430",,"LENOIR","NC","28645",,,,,,,"561417152","8287580024",,,,"2011-10-17T09:18:12-0500","STEPHEN FORBES",,,,,38,27,0,5,32,0,32,29,1,,"2I2P3I2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016094338P040154058881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE ROCKEFELLER GROUP INTERNATIONAL, INC. INCENTIVE SAVINGS PLAN","003","1981-01-01","ROCKEFELLER GROUP INTERNATIONAL, INC.",,,"1221 AVENUE OF THE AMERICAS",,"NEW YORK","NY","100201095",,,,,,,,,,,,,,,,,,"133975924","2122822000","531310","ROCKEFELLER GROUP INTERNATIONAL, INC.",,"1221 AVENUE OF THE AMERICAS",,"NEW YORK","NY","100201095",,,,,,,"133975924","2122822000",,,,"2011-10-16T09:42:57-0500","AMY CHOC",,,,,391,275,10,98,383,0,383,362,0,,"2J2K3H2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016095254P040154062753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VWR INTERNATIONAL, LLC WELFARE BENEFIT PLAN","501","1986-03-01","VWR INTERNATIONAL, LLC",,,"RADNOR CORPORATE CENTER, BLDG ONE","100 MATSONFORD ROAD, SUITE 200","RADNOR","PA","19087",,,,,,,,,,,,,,,,,,"911319190","6103861730","423990","VWR INTERNATIONAL, LLC",,"RADNOR CORPORATE CENTER, BLDG ONE","100 MATSONFORD ROAD, SUITE 200","RADNOR","PA","19087",,,,,,,"911319190","6103861730",,,,"2011-10-16T09:51:59-0500","LAUREEN QUINTER","2011-10-16T09:51:59-0500","LAUREEN QUINTER",,,3131,2954,125,0,3079,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","10","0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016095929P040692436368001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EXEL GLOBAL LOGISTICS RETIREMENT PLAN","004","1972-08-01","EXEL GLOBAL LOGISTICS, INC.",,"DPWN HOLDINGS USA, INC.","2700 S COMMERCE PARKWAY",,"WESTON","FL","33331",,,,,,,,,,,,,,,,,,"132622043","9548885553","488510","ADMINISTRATIVE COMMITTEE","EXEL GLOBAL LOGISTICS, INC.","570 POLARIS PARKWAY",,"WESTERVILLE","OH","43082",,,,,,,"942854275","9548885553",,,,"2011-10-16T09:58:12-0500","CINDY KASANEZKY",,,,,1451,295,217,884,1396,14,1410,0,0,,"1A1G3H1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016190538P040693455456001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"W-L CONSTRUCTION AND PAVING, INC CAFETERIA PLAN","501","1995-01-01","W-L CONSTRUCTION AND PAVING INC.",,,"P.O. DRAWER 927, 1484 HIGHWAY 107",,"CHILHOWIE","VA","243190927",,,,,,,,,,,,,,,,,,"541069645","2766463804","237310","W-L CONSTRUCTION AND PAVING INC.",,"P.O. DRAWER 927, 1484 HIGHWAY 107",,"CHILHOWIE","VA","243190927",,,,,,,"541069645","2766463804",,,,"2011-10-16T19:05:31-0500","LORI HALL","2011-10-16T19:05:31-0500","MATT CAMPBELL",,,263,260,,,260,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"1","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111017091851P030151067873001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CRISSAIR, INC. 401(K) PROFIT SHARING PLAN","002","1996-02-01","CRISSAIR, INC.",,,"38905 10TH STREET E.",,"PALMDALE","CA","935503415",,,,,,,,,,,,,,,,,,"951885478","6612735411","336410","CRISSAIR, INC.",,"38905 10TH STREET E.",,"PALMDALE","CA","935503415",,,,,,,"951885478","6612735411",,,,"2011-10-17T09:18:07-0500","BRIAN DAVIS","2011-10-13T14:38:30-0500","BRIAN DAVIS",,,226,159,0,30,189,0,189,167,10,,"2E2G2K2J2F3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016191101P040693464944001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"BEMIS COMPANY, INC. MASTER DEFINED CONTRIBUTION TRUST","010",,"BEMIS COMPANY INC.",,,"PO BOX 669",,"NEENAH","WI","54957",,,,,,,"THREE NEENAH CENTER","6TH FLOOR","NEENAH","WI","54957",,,,,,,"430178130","9207274100",,"BEMIS COMPANY INC.",,"PO BOX 669",,"NEENAH","WI","54957",,,,,,,"430178130","9207274100",,,,,,,,"2011-10-16T19:10:14-0500","MELANIE HIGGINS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-16",,"Filed with authorized/valid electronic signature", "20111016191627P040154302321001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"HYDE PARK RESTAURANT SYSTEMS, INC. 401(K) RETIREMENT SAVINGS PLAN","002","2010-01-01","HYDE PARK RESTAURANT SYSTEMS, INC.",,,"26300 CHAGRIN BLVD., SUITE #1",,"BEACHWOOD","OH","44122",,,,,,,,,,,,,,,,,,"341819273","2165141777","722110","HYDE PARK RESTAURANT SYSTEMS, INC.",,"26300 CHAGRIN BLVD., SUITE #1",,"BEACHWOOD","OH","44122",,,,,,,"341819273","2165141777",,,,"2011-10-16T19:15:38-0500","DAVID R. COSTANTINI","2011-10-16T19:15:38-0500","DAVID R. COSTANTINI",,,247,228,0,9,237,0,237,58,6,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017084457P030151038513005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SSM GROUP, INC. HEALTH PLAN","502","1968-12-02","SSM GROUP, INC.",,,"1047 N PARK ROAD",,"READING","PA","196100307",,,,,,,"P.O. BOX 6307",,"READING","PA","196100307",,,,,,,"232592301","6103766581","541330","SSM GROUP, INC.",,"1047 N PARK ROAD",,"READING","PA","196100307",,,,,,,"232592301","6103766581","SPOTTS, STEVENS AND MCCOY, INC.","232592301","502","2011-10-17T03:49:14-0500","LEWIS J. MCCOY, JR.","2011-10-17T03:49:14-0500","LEWIS J. MCCOY, JR.",,,94,88,3,,91,,,,,,,"4A4B4D4H4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017084603P030151039329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"METRO ELECTRIC/METRO LIGHTING 401K PLAN","001","1996-07-01","ST. LOUIS METRO ELETRIC SUPPLY INC.",,,"6801 HOFFMAN AVENUE",,"ST. LOUIS","MO","631392529",,,,,,,,,,,,,,,,,,"431200152","3146455656","423600","ST. LOUIS METRO ELETRIC SUPPLY INC.",,"6801 HOFFMAN AVENUE",,"ST. LOUIS","MO","631392529",,,,,,,"431200152","3146455656",,,,"2011-10-17T08:45:31-0500","SHEILA HESTER","2011-10-17T08:45:31-0500","SHEILA HESTER",,,141,120,0,16,136,0,136,82,1,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017085146P030151043521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRISM COMPANIES INC. 401K SAVINGS PLAN","001","1994-01-01","SHALLENBERG CONSULTING INC.",,,"68 SOUTH WYNSTONE DRIVE",,"NORTH BARRINGTON","IL","60010",,,,,,,,,,,,,,,,,,"364346086","6307732780","561900","SHALLENBERG CONSULTING INC.",,"68 SOUTH WYNSTONE DRIVE",,"NORTH BARRINGTON","IL","60010",,,,,,,"364346086","6307732780","PRISM COMPANIES INC.","364346086","001","2011-10-17T08:51:13-0500","ROBERT SHALLENBERG","2011-10-17T08:51:13-0500","ROBERT SHALLENBERG",,,4551,0,0,110,110,0,110,110,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016150006P040154203409001","2010-01-01","2010-12-31","2",,,"1","1",,,"1",,,,,"DR SHIRLEY WILLIS PC PROFIT SHARING PLAN AND TRUST","001","1988-01-01","DR SHIRLEY WILLIS PROFESSIONAL COR",,,"510 OLD FARM ROAD",,"DANIELS","WV","25832",,,,,,,,,,,,,,,,,,"550626086","3047634388","621320","SHIRLEY J. WILLIS, O.D.",,"510 OLD FARM ROAD",,"DANIELS","WV","25832",,,,,,,"550626086","3047634388",,,,"2011-10-16T15:48:38-0500","DR. SHIRLEY WILLIS","2011-10-16T15:48:49-0500","DR. SHIRLEY WILLIS",,,4,0,,,0,,0,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016150101P030150591857001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"HEINER'S BAKERY WORKERS PENSION TRUST PLAN","420","1958-01-01","SARA LEE BAKERY GROUP, INC.",,"C/O SARA LEE CORPORATION","3500 LACEY ROAD",,"DOWNERS GROVE","IL","605155424",,,,,,,,,,,,,,,,,,"363201045","6305986000","311900","SARA LEE BAKERY GROUP, INC.","C/O SARA LEE CORPORATION","3500 LACEY ROAD",,"DOWNERS GROVE","IL","605155424",,,,,,,"363201045","6305986000","SARA LEE CORPORATION","362089049","420","2011-10-16T15:00:50-0500","ERIK PIENKOS - AS PRACTITIONER",,,,,659,372,88,177,637,6,643,,27,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","1","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016154119P040023162674001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JACQUELYN WIGS INTERNATIONAL CORP. DEFINED BENEFIT PLAN","001","1995-01-01","JACQUELYN WIGS INTERNATIONAL CORP.",,,"15 WEST 37 STREET",,"NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"133856287","2127684776","423990","JACQUELYN WIGS INTERNATIONAL CORP.",,"15 WEST 37 STREET",,"NEW YORK","NY","10018",,,,,,,"133856287","2127684776",,,,"2011-10-16T11:37:56-0500","GEORGE MAYER",,,,,2,2,0,0,2,0,2,,,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016185548P040023174146001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAREAGE MANAGEMENT 401(K) PLAN & TRUST","001","2000-01-01","CAREAGE MANAGEMENT LLC",,,"1512 PIERCE STREET",,"SIOUX CITY","IA","51104",,,,,,,,,,,,,,,,,,"421493467","7122930117","623000","CAREAGE MANAGEMENT LLC",,"1512 PIERCE STREET",,"SIOUX CITY","IA","51104",,,,,,,"421493467","7122930117",,,,"2011-10-16T18:55:04-0500","RUBY BOLLIN",,,,,382,363,,18,381,0,381,146,3,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016214046P030150754417001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SARA LEE CORPORATION 401(K) PLAN","401","1988-01-01","SARA LEE CORPORATION",,,"3500 LACEY ROAD",,"DOWNERS GROVE","IL","605155424",,,,,,,,,,,,,,,,,,"362089049","6305986000","311900","SARA LEE CORPORATION",,"3500 LACEY ROAD",,"DOWNERS GROVE","IL","605155424",,,,,,,"362089049","6305986000",,,,"2011-10-16T21:40:32-0500","ERIK PIENKOS - AS PRACTITIONER",,,,,24681,18423,1,6009,24433,270,24703,24703,1143,,"2E2F2H2I2J2K2P2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017082807P030022318002001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WEBMEDIABRANDS INC.","001","1998-12-01","WEBMEDIABRANDS INC.",,,"50 WASHINGTON STREET","9TH FLOOR","NORWALK","CT","06854",,,,,,,,,,,,,,,,,,"061542480","2036622831","519100","WEBMEDIABRANDS INC.",,"50 WASHINGTON STREET","9TH FLOOR","NORWALK","CT","06854",,,,,,,"061542480","2036622831",,,,"2011-10-17T08:27:18-0500","CAROL KRAMER",,,,,263,68,0,142,210,0,210,201,12,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017082917P040154643121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHEASTERN PAPER GROUP 401(K) RETIREMENT PLAN","001","1994-01-01","SOUTHEASTERN PAPER GROUP, INC.",,,"PO BOX 6220",,"SPARTANBURG","SC","29304",,,,,,,"SOUTHEASTERN PAPER GROUP, INC.","50 OLD BLACKSTOCK RD","SPARTANBURG","SC","29301",,,,,,,"570518512","8645740440","424100","SOUTHEASTERN PAPER GROUP, INC.",,"PO BOX 6220",,"SPARTANBURG","SC","29304",,,,,,,"570518512","8645740440",,,,"2011-10-17T08:29:00-0500","E. LEWIS MILLER, JR.","2011-10-17T08:29:00-0500","E. LEWIS MILLER, JR.",,,471,387,4,56,447,0,447,363,18,,"2K2J2E3D2G2F",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017085808P030151050337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE GREAT OUTDOORS COMMUNITY SERVICE ASSOCIATION, INC. 401(K) PROFIT SHARING PLAN","001","2000-07-01","THE GREAT OUTDOORS PREMIER R.V./GOLF RESORT COMMUNITY SERVICES",,,"145 PLANTATION DRIVE",,"TITUSVILLE","FL","32780",,,,,,,,,,,,,,,,,,"592964957","3212689767","813000","THE GREAT OUTDOORS PREMIER R.V./GOLF RESORT COMMUNITY SERVICES",,"145 PLANTATION DRIVE",,"TITUSVILLE","FL","32780",,,,,,,"592964957","3212689767",,,,"2011-10-17T08:58:02-0500","HIRAM KEITH LAMB","2011-10-17T08:58:02-0500","HIRAM KEITH LAMB",,,58,51,0,5,56,0,56,28,1,,"2E2T2J2K3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016182330P040154276577001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"ZAVEN OSKANIAN, M.D. PROFIT SHARING PLAN","002","1981-01-01","ZAVEN OSKANIAN MD",,,"3883 SPANISH OAKS DRIVE",,"WEST BLOOMFIELD","MI","48323",,,,,,,,,,,,,,,,,,"382104327","2484762140","621111","ZAVEN OSKANIAN MD",,"3883 SPANISH OAKS DRIVE",,"WEST BLOOMFIELD","MI","48323",,,,,,,"382104327","2484762140",,,,"2011-10-01T17:38:13-0500","TODD M. JOLICOEUR",,,"2011-10-01T17:38:35-0500","TODD M. JOLICOEUR",1,1,,,1,,1,,,,"2E2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20111017074938P030150990625001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"TRUE2FORM COLLISION REPAIR CENTERS, INC. 401(K) PLAN","001","1991-11-01","TRUE2FORM COLLISION REPAIR CTRS.",,,"4853 GALAXY PARKWAY SUITE E",,"CLEVELAND","OH","44128",,,,,,,,,,,,,,,,,,"341854780","2167551191","811120","TRUE2FORM COLLISION REPAIR CTRS.",,"4853 GALAXY PARKWAY SUITE E",,"CLEVELAND","OH","44128",,,,,,,"341854780","2167551191",,,,"2011-10-17T07:49:31-0500","PETE ANDA",,,,,580,654,0,8,662,0,662,85,18,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017080914P030151004065001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ADVANCED AUDIO VISUAL, INC. 401(K) PLAN","001","1997-01-01","ADVANCED AUDIO VISUAL SALES, INC.",,,"208 CARTER DRIVE","SUITE 7","WEST CHESTER","PA","19382",,,,,,,,,,,,,,,,,,"232868087","6106967700","541990","ADVANCED AUDIO VISUAL SALES, INC.",,"208 CARTER DRIVE","SUITE 7","WEST CHESTER","PA","19382",,,,,,,"232868087","6106967700",,,,"2011-10-17T08:07:36-0500","MIKE GALLAGHER",,,,,154,103,0,27,130,0,130,104,3,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017082416P040694960976001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NIXON PEABODY LLP MEDICAL INSURANCE PLAN","501","1935-06-30","NIXON PEABODY LLP",,,"1100 CLINTON SQUARE",,"ROCHESTER","NY","146041792",,,,,,,,,,,,,,,,,,"160764720","5852631000","541110","BENEFITS COMMITTEE, NIXON PEABODY",,"1100 CLINTON SQUARE",,"ROCHESTER","NY","146041792",,,,,,,"160764720","5852631000",,,,"2011-10-17T08:24:05-0500","THOMAS J. MCCORD",,,,,1508,1360,0,0,1360,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017080612P030151001713001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE CHESTER COUNTY HOSPITAL RETIREMENT PLAN","002","1995-01-01","THE CHESTER COUNTY HOSPITAL",,,"701 EAST MARSHALL STREET",,"WEST CHESTER","PA","19380",,,,,,,,,,,,,,,,,,"230469150","6104315117","622000","THE CHESTER COUNTY HOSPITAL",,"701 EAST MARSHALL STREET",,"WEST CHESTER","PA","19380",,,,,,,"230469150","6104315117",,,,"2011-10-13T15:13:18-0500","JACQUELINE A. FELICETTI",,,,,1324,1565,3,72,1640,0,1640,640,22,,"2E2T3D2F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111015232942P030022196418001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"ALCOA RETIREMENT PLAN II","002","1944-01-01","ALCOA INC.",,,"201 ISABELLA STREET",,"PITTSBURGH","PA","152125858",,,,,,,,,,,,,,,,,,"250317820","4125534545","331310","ALCOA INC.",,"201 ISABELLA STREET",,"PITTSBURGH","PA","152125858",,,,,,,"250317820","4125534545",,,,"2011-10-15T23:15:43-0500","JOHN KENNA",,,,,58411,10492,27028,11848,49368,8807,58175,,387,,"1G1B3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016082526P040023133810001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HAMPTON UNIVERSITY LONG TERM DISABILITY PLAN","503","1976-09-01","HAMPTON UNIVERSITY",,,"EAST QUEEN STREET",,"HAMPTON","VA","23668",,,,,,,,,,,,,,,,,,"540505990","7577275212","611000","HAMPTON UNIVERSITY",,"EAST QUEEN STREET",,"HAMPTON","VA","23668",,,,,,,"540505990","7577275212",,,,"2011-10-15T11:44:26-0500","DORETHA SPELLS",,,,,433,426,,,426,,426,,,,,"4F4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016083824P030150430881001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PRAIRIE PACKAGING, INC. 401(K) SAVINGS PLAN","001","1989-09-01","PRAIRIE PACKAGING, INC.",,,"6000 W 73RD ST",,"BEDFORD PARK","IL","606380000",,,,,,,,,,,,,,,,,,"363461752","7084962900","325200","PRAIRIE PACKAGING, INC.",,"6000 W 73RD ST",,"BEDFORD PARK","IL","606380000",,,,,,,"363461752","7084962900",,,,"2011-10-14T11:50:20-0500","TERESE REILLY",,,,,2246,1843,0,488,2331,1,2332,2306,95,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017075903P040154622033001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CONCORDIA LUTHERAN MINISTRIES EMPLOYEE BENEFIT PLAN","502","1987-01-01","CONCORDIA LUTHERAN MINISTRIES",,,"134 MARWOOD ROAD",,"CABOT","PA","16023",,,,,,,"134 MARWOOD ROAD",,"CABOT","PA","16023",,,,,,,"250969458","7243521571","623000","CONCORDIA LUTHERAN MINISTRIES",,"134 MARWOOD ROAD",,"CABOT","PA","16023",,,,,,,"250969458","7243521571",,,,"2011-10-17T07:57:50-0500","BRIAN LLEWELLYN",,,,,720,849,,,849,,849,,,,,"4A4B4D4E","1",,,,"1",,,,,,,,,"1","2","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017000006P030022281026003","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"P.N AMIN DDS PC PROFIT SHARING PENSION PLAN","003","2010-01-01","P.N. AMIN DDS PC",,,"420 ICE HARVEST DRIVE",,"MOUNTANIN TOP","PA","18707",,,,,,,,,,,,,,,,,,"232177726","7182686906","621210","P.N. AMIN DDS PC",,"420 ICE HARVEST DRIVE",,"MOUNTANIN TOP","PA","18707",,,,,,,"232177726","7182686906",,,,"2011-10-14T05:45:05-0500","P N AMIN","2011-10-16T23:53:58-0500","P N AMIN",,,5,5,0,0,5,0,5,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017004506P040023191394004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KANCHAN JOGLEKAR MD PC CROSS TESTED 401(K) PROFIT SHARING PLAN","003","2007-01-01","JOGLEKAR & JOGLEKAR MD PC",,,"59 ELMHURST DRIVE",,"JACKSON","TN","383058546",,,,,,,,,,,,,,,,,,"621485239","9016688693","621111","JOGLEKAR & JOGLEKAR MD PC",,"59 ELMHURST DRIVE",,"JACKSON","TN","383058546",,,,,,,"621485239","9016688693",,,,"2011-10-14T07:00:01-0500","KANCHAN JOGLEKAR","2011-10-17T00:39:49-0500","KANCHAN JOGLEKAR",,,5,3,0,2,5,0,5,5,,,"2A2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017082030P030151015009001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ROCKINGHAM PARK 401(K) PLAN","001","2000-01-01","ROCKINGHAM VENTURE, INC.",,,"P.O. BOX 47",,"SALEM","NH","03079",,,,,,,,,,,,,,,,,,"020372217","6038982311","711210","ROCKINGHAM VENTURE, INC.",,"P.O. BOX 47",,"SALEM","NH","03079",,,,,,,"020372217","6038982311",,,,"2011-10-17T08:19:32-0500","EDWARD M.CALLAHAN","2011-10-14T13:10:48-0500","EDWARD M.CALLAHAN",,,134,101,0,13,114,0,114,40,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017083705P030700660112001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GENERAL CHEMICAL SODA ASH PARTNERS HEALTH CARE PROGRAM","501","1993-01-01","GENERAL CHEMICAL SODA ASH PARTNERS",,,"120 EAGLE ROCK AVENUE","THIRD FLOOR","EAST HANOVER","NJ","07936",,,,,,,,,,,,,,,,,,"222802279","9735995528","325900","GENERAL CHEMICAL SODA ASH PARTNERS",,"120 EAGLE ROCK AVENUE","THIRD FLOOR","EAST HANOVER","NJ","07936",,,,,,,"222802279","9735995528",,,,"2011-10-17T08:10:16-0500","JOHN CHRISTIAN",,,,,764,508,266,0,774,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017083908P030151032081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"YUM BRANDS LONG TERM DISABILITY & HEALTHCARE PLAN","502","1997-06-28","YUM BRANDS, INC.",,,"1441 GARDINER LANE",,"LOUISVILLE","KY","40213",,,,,,,,,,,,,,,,,,"133951308","5028741000","722210","YUM BRANDS, INC.",,"1441 GARDINER LANE",,"LOUISVILLE","KY","40213",,,,,,,"133951308","5028741000",,,,"2011-10-17T08:38:06-0500","DAVID MORRISON","2011-10-17T08:38:06-0500","DAVID MORRISON",,,17710,14717,864,235,15816,,,,,,,"4A4D4E4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","14","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017084922P040004774643001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRANE DISTRICT OFFICE BUSINESS TRAVEL ACCIDENT","803","1996-01-01","TRANE U.S. INC.",,,"800 E BEATY STREET",,"DAVIDSON","NC","28036",,,,,,,,,,,,,,,,,,"250900465","7046554000","333410","BENEFITS ADMINISTRATION COMMITTEE OF INGERSOLL-RAND COMPANY",,"800 E BEATY STREET",,"DAVIDSON","NC","28036",,,,,,,"222116054","7046554000",,,,"2011-10-17T08:45:29-0500","SHEILA SAVAGEAU","2011-10-17T08:45:29-0500","RICHARD J. WELLER",,,4700,5121,0,0,5121,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017091607P030151065409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FALLON COMMUNITY HEALTH PLAN, INC. 401(K) PLAN","003","2002-01-01","FALLON COMMUNITY HEALTH PLAN",,,"ONE CHESTNUT PLACE","10 CHESTNUT STREET","WORCESTER","MA","01608",,,,,,,,,,,,,,,,,,"237442369","8003332535","524140","FALLON COMMUNITY HEALTH PLAN",,"ONE CHESTNUT PLACE","10 CHESTNUT STREET","WORCESTER","MA","01608",,,,,,,"237442369","8003332535",,,,"2011-10-17T09:14:52-0500","RALPH SANTORO",,,,,997,897,1,103,1001,1,1002,970,72,,"2E2J2F2G2K3D2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017091607P040695124464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELITE HOME HEALTH CORPORATION 401K PLAN","001","2000-04-01","ELITE HOME HEALTH CORPORATION",,,"7 FAIRLAND CT",,"NITRO","WV","251431118",,,,,,,,,,,,,,,,,,"550711342","3047765683","621610","ELITE HOME HEALTH CORPORATION",,"7 FAIRLAND COURT",,"NITRO","WV","25143",,,,,,,"550711342","3047765683",,,,"2011-10-17T09:15:54-0500","MARK SMITH",,,,,9,0,0,7,7,0,7,7,0,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017091613P040023225442001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BUDDY'S HOME FURNISHINGS 401(K) PLAN","002","1999-02-17","BI-RITE COMPANY, INC.",,,"6608 ADAMO DR",,"TAMPA","FL","33619",,,,,,,,,,,,,,,,,,"590998202","8136235461","532210","BI-RITE COMPANY, INC.",,"6608 ADAMO DR",,"TAMPA","FL","33619",,,,,,,"590998202","8136235461",,,,"2011-10-17T09:11:18-0500","TERRY BEVILLE",,,,,286,246,0,0,246,0,246,68,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016130206P030150539985001","2011-01-01","2011-04-07","2",,"0","0","1","1","0","0","0","0","0",,"PORTAC, INC. 401K PLAN","004","2000-01-01","PORTAC, INC.",,,"3600 PORT OF TACOMA ROAD, SUITE 302",,"TACOMA","WA","98424",,,,,,,,,,,,,,,,,,"911036452","2536226387","321210","PORTAC, INC.",,"3600 PORT OF TACOMA ROAD, SUITE 302",,"TACOMA","WA","98424",,,,,,,"911036452","2536226387",,,,"2011-10-16T13:01:43-0500","ROD ASHBY",,,,,8,0,0,0,0,0,0,0,0,,"2J2E3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016130542P040154156241001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"YORK PROPERTIES, INC. 401(K) PLAN","002","1992-05-01","YORK PROPERTIES, INC.",,,"1900 CAMERON STREET",,"RALEIGH","NC","27605",,,,,,,,,,,,,,,,,,"561121408","9198638006","531210","YORK PROPERTIES, INC.",,"1900 CAMERON STREET",,"RALEIGH","NC","27605",,,,,,,"561121408","9198638006",,,,"2011-10-16T02:04:48-0500","FRANK HOBGOOD",,,,,207,122,0,69,191,0,191,153,5,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016154725P030150612161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAISER PERMANENTE PHYSICIANS AND EMPLOYEES RETIREMENT PLAN","002","1989-05-01","THE SOUTHEAST PERMANENTE MEDICAL GROUP","KAISER FOUNDATION HEALTH PLAN",,"ONE KAISER PLAZA, SUITE 2001",,"OAKLAND","CA","94612",,,,,,,,,,,,,,,,,,"581635081","5102715940","621112","KAISER FOUNDATION HEALTH PLAN, INC.",,"ONE KAISER PLAZA, SUITE 2001",,"OAKLAND","CA","94612",,,,,,,"941340523","5102715940",,,,"2011-10-16T13:46:55-0500","HARRIET GUBERMAN",,,,,775,590,19,191,800,4,804,,42,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016193008P030150693905010","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"SHAW & MARTIN, P.C. DEFERRED PROFIT SHARING PLAN","001","1997-01-01","SHAW & MARTIN, PC",,,"PO BOX 1789",,"MT. VERNON","IL","62864",,,,,,,,,,,,,,,,,,"371406531","6182441788","541110","SHAW & MARTIN, PC",,"PO BOX 1789",,"MT. VERNON","IL","62864",,,,,,,"371406531","6182441788","SHAW MARTIN PC","371406531","001","2011-10-16T20:19:50-0500","ROBERT E SHAW","2011-10-16T20:20:33-0500","ROBERT E. SHAW",,,4,4,0,0,4,0,4,4,,,"2F2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016193106P030004508947001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LEVADA CONSULTING, INC. 401(K) PLAN","003","2007-01-01","LEVADA CONSULTING, INC.",,,"303 SOUTH BROADWAY, SUITE 430",,"TARRYTOWN","NY","10591",,,,,,,,,,,,,,,,,,"020533255","9145248515","541511","LEVADA CONSULTING, INC.",,"303 SOUTH BROADWAY, SUITE 430",,"TARRYTOWN","NY","10591",,,,,,,"020533255","9145248515",,,,"2011-10-16T15:28:02-0500","JOERN AHLERS",,,,,10,9,0,0,9,0,9,9,,,"2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016193901P030050405719001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAVID BRIGGS & ASSOCIATES, INC. AMENDED & RESTATED 401K PROFIT SHARING PLAN","002","1995-01-01","DAVID M. BRIGGS & ASSOCIATES, INC.",,,"127 EAST LIBERTY STREET",,"WOOSTER","OH","44691",,,,,,,,,,,,,,,,,,"341815978","3302642811","524210","DAVID M. BRIGGS & ASSOCIATES, INC.",,"127 EAST LIBERTY STREET",,"WOOSTER","OH","44691",,,,,,,"341815978","3302642811",,,,"2011-10-16T19:35:25-0500","ADAM BRIGGS",,,,,8,6,0,1,7,0,7,7,0,,"2E2F2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017065255P030150958945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NATIONAL STUDENT CLEARINGHOUSE 401K RETIREMENT PLAN","001","2003-07-01","NATIONAL STUDENT CLEARINGHOUSE",,,"2300 DULLES STATION BLVD","SUITE 300","HERNDON","VA","20171",,,,,,,,,,,,,,,,,,"521836384","7037424206","519100","NATIONAL STUDENT CLEARINGHOUSE",,"2300 DULLES STATION BLVD","SUITE 300","HERNDON","VA","20171",,,,,,,"521836384","7037424206",,,,"2011-10-17T06:52:26-0500","ADRIENNE SNIDER",,,,,142,166,0,16,182,0,182,165,0,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017070602P030150967393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WELFARE BENEFIT PLAN FOR EMPLOYEES AND RETIREES OF CONTINENTAL - RUBBER","501","1934-08-01","CONTINENTAL TIRE THE AMERICAS, LLC",,,"1830 MACMILLAN PARK DRIVE",,"FORT MILL","SC","29707",,,,,,,,,,,,,,,,,,"341417030","7045833900","326200","CONTINENTAL TIRE THE AMERICAS, LLC",,"1830 MACMILLAN PARK DRIVE",,"FORT MILL","SC","29707",,,,,,,"341417030","7045833900","CONTINENTAL TIRE NORTH AMERICA, INC","341417030","501","2011-10-17T07:02:41-0500","ROB WILDER","2011-10-17T05:40:27-0500","RICK LEDSINGER",,,5759,3276,2556,168,6000,,,,,,,"4A4B4D4E4F4H4Q","1","0","1","1","1","0","1","1","0","0","0","1","0","1","8","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017070649P030700423200001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCLAREN HEALTH CARE CORPORATION AMENDED & RESTATED FLEX PLAN","508","1990-01-01","MCLAREN HEALTH CARE CORPORATION",,,"G-3200 BEECHER ROAD, SUITE LL",,"FLINT","MI","48532",,,,,,,"G-3235 BEECHER ROAD",,"FLINT","MI","48532",,,,,,,"382397643","8103424650","622000","MCLAREN HEALTH CARE CORPORATION",,"G-3200 BEECHER ROAD, SUITE LL",,"FLINT","MI","48532",,,,,,,"382397643","8103424650",,,,"2011-10-17T07:04:11-0500","G. AUSTIN ROBISON",,,,,1158,1049,,,1049,,1049,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016151253P030022246386001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"EARL DUDLEY ASSOCIATES, INC. PROFIT SHARING RETIREMENT PLAN & TRUST","002","1984-01-01","EARL DUDLEY ASSOCIATES, INC.",,,"5352 FIRST AVENUE NORTH",,"BIRMINGHAM","AL","35212",,,,,,,"5352 FIRST AVENUE NORTH",,"BIRMINGHAM","AL","35212",,,,,,,"630420172","2055953796","453990","EARL DUDLEY ASSOCIATES, INC.",,"5352 FIRST AVENUE NORTH",,"BIRMINGHAM","AL","35212",,,,,,,"630420172","2055953796",,,,"2011-10-16T15:12:01-0500","DON BAMBARGER",,,,,41,32,,7,39,,39,7,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017080638P030700574432001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARO SERVICES CO. HEALTH CARE PLAN","501","1989-09-01","PARO SERVICES CO.",,,"1755 ENTERPRISE PARKWAY",,"TWINSBURG","OH","44087",,,,,,,,,,,,,,,,,,"341873259","3304671300","325600","PARO SERVICES CO.",,"1755 ENTERPRISE PARKWAY",,"TWINSBURG","OH","44087",,,,,,,"341873259","3304671300",,,,"2011-10-17T08:02:12-0500","ED KUBEK","2011-10-17T08:02:12-0500","ED KUBEK",,,132,125,4,0,129,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017080703P030151002609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ULSTER SAVINGS BANK 401(K) PLAN","002","1984-09-01","ULSTER SAVINGS BANK",,,"180 SCHWENK DRIVE",,"KINGSTON","NY","12401",,,,,,,,,,,,,,,,,,"141136850","8453386322","522190","ULSTER SAVINGS BANK",,"180 SCHWENK DRIVE",,"KINGSTON","NY","12401",,,,,,,"141136850","8453386322",,,,"2011-10-17T08:03:58-0500","TAMMY L. GILLON","2011-10-17T08:03:58-0500","MICHAEL K. SHAUGHNESSY",,,405,374,5,37,416,0,416,387,49,,"2E2J2F2G2K3H2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016174950P040154266929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CUSTOMIZED CABLE SERVICES, INC. 401(K) RETIREMENT PLAN","001","1999-03-01","CUSTOMIZED CABLE SERVICES, INC.",,,"9319 E. TRENT",,"SPOKANE VALLEY","WA","99206",,,,,,,,,,,,,,,,,,"911580333","5099228776","238900","CUSTOMIZED CABLE SERVICES, INC.",,"9319 E. TRENT",,"SPOKANE VALLEY","WA","99206",,,,,,,"911580333","5099228776",,,,"2011-10-16T17:49:49-0500","DALE STEVENS",,,,,4,0,0,4,4,0,4,4,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017074128P040154608849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BACK BAY NEWS DISTRIBUTORS, INC. PROFIT SHARING PLAN","001","1992-01-01","BACK BAY NEWS DISTRIBUTORS, INC.",,,"51 MELCHER STREET",,"BOSTON","MA","02210",,,,,,,"51 MELCHER STREET",,"BOSTON","MA","02210",,,,,,,"042714693","6173507170","451212","BACK BAY NEWS DISTRIBUTORS, INC.",,"51 MELCHER STREET",,"BOSTON","MI","02210",,,,,,,"042714693","6173507170",,,,"2011-10-17T07:40:36-0500","MICHELLE CONNOR",,,,,2,,1,,1,1,2,2,,,"2A2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017080258P040154624625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHAMPION ELECTRIC, INC. RETIREMENT SAVINGS PLAN","002","1998-01-01","CHAMPION ELECTRIC, INC.",,,"3950 GARNER RD.",,"RIVERSIDE","CA","92501",,,,,,,,,,,,,,,,,,"330777546","9512769619","238210","CHAMPION ELECTRIC, INC.",,"3950 GARNER RD.",,"RIVERSIDE","CA","92501",,,,,,,"330777546","9512769619",,,,"2011-10-17T08:02:43-0500","R.GLENN ROWDEN",,,,,103,67,0,36,103,0,103,97,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016201143P030150715041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE NATIONAL FOOTBALL LEAGUE CAPITAL ACCUMULATION PLAN","012","1988-01-01","NEW ORLEANS LOUISIANA SAINTS, LLC",,,"5800 AIRLINE HIGHWAY",,"METAIRIE","LA","70003",,,,,,,,,,,,,,,,,,"742368470","5047330255","711210","NEW ORLEANS LOUISIANA SAINTS, LLC",,"5800 AIRLINE HIGHWAY",,"METAIRIE","LA","70003",,,,,,,"742368470","5047330255",,,,"2011-10-14T16:49:18-0500","DENNIS LAUSCHA",,,,,170,120,0,54,174,0,174,117,5,,"2E2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017001506P040154425857005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RAJ K GOYAL MD PC 401(K) PROFIT SHARING PLAN","002","2009-01-01","RAJ K GOYAL MD PC",,,"8686 JOHNSTON ROAD",,"BURR RIDGE","IL","60527",,,,,,,,,,,,,,,,,,"113643518","7182686906","621111","RAJ K GOYAL MD PC",,"8686 JOHNSTON ROAD",,"BURR RIDGE","IL","60527",,,,,,,"113643518","7182686906",,,,"2011-10-14T04:47:48-0500","RAJ K GOYAL","2011-10-17T00:04:05-0500","RAJ K GOYAL",,,4,4,0,0,4,0,4,4,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017001506P040154425857001","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"MEMPHIS CARDIOLOGY PLC PROFIT SHARING PENSION PLAN","003","2010-01-01","MEMPHIS CARDIOLOGY PLC",,,"9437 GROVE TRAIL LN",,"GERMANTOWN","TN","38139",,,,,,,,,,,,,,,,,,"200909536","7182686706","621111","MEMPHIS CARDIOLOGY PLC",,"9437 GROVE TRAIL LN",,"GERMANTOWN","TN","38139",,,,,,,"200909536","7182686706",,,,"2011-10-14T04:49:25-0500","KISHORE ARCOT","2011-10-17T00:00:52-0500","KISHORE ARCOT",,,9,9,0,0,9,0,9,9,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017084121P040154652033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INTERGRAPH CORPORATION BUSINESS TRAVEL ACCIDENT","506","1971-01-01","INTERGRAPH CORPORATION",,,"19 INTERPRO ROAD",,"MADISON","AL","35758",,,,,,,"19 INTERPRO ROAD",,"MADISON","AL","35758",,,,,,,"630573222","2567307605","541512","INTERGRAPH CORPORATION",,"19 INTERPRO ROAD",,"MADISON","AL","35758",,,,,,,"630573222","2567307605",,,,"2011-10-17T08:25:50-0500","EDGAR PORTER",,,,,3978,4083,0,0,4083,0,4083,0,0,,,"4L","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016114733P030698259408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HONEYWELL INTERNATIONAL INC. RETIREMENT EARNINGS PLAN","201","1965-10-01","HONEYWELL INTERNATIONAL INC.",,,"101 COLUMBIA ROAD",,"MORRISTOWN","NJ","07962",,,,,,,,,,,,,,,,,,"222640650","9734555913","339900","HONEYWELL INTERNATIONAL INC.",,"101 COLUMBIA ROAD",,"MORRISTOWN","NJ","07962",,,,,,,"222640650","9734555913",,,,"2011-10-16T11:47:18-0500","BRIAN MARCOTTE",,,,,197298,45169,78020,55173,178362,16074,194436,,1045,,"1A1C1G3F3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016114834P030004504291001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"KANSAS CITY DIVISION HOURLY EMPLOYEES' PENSION PLAN","203","1964-12-15","HONEYWELL INTERNATIONAL INC.",,,"101 COLUMBIA ROAD",,"MORRISTOWN","NJ","07962",,,,,,,,,,,,,,,,,,"222640650","9734555913","339900","HONEYWELL INTERNATIONAL INC.",,"101 COLUMBIA ROAD",,"MORRISTOWN","NJ","07962",,,,,,,"222640650","9734555913",,,,"2011-10-16T11:48:20-0500","BRIAN MARCOTTE",,,,,3360,805,1558,501,2864,410,3274,,1,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016123505P030150529889001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"GREATER PHOENIX ADVISORS, INC. 401K PLAN","001","2007-09-13","GREATER PHOENIX ADVISORS, INC.",,,"15029 N THOMPSON PEAK PKWY,","STE B-111 PMB630","SCOTTSDALE","AZ","852602223",,,,,,,,,,,,,,,,,,"260903796","4808886312","541990","GREATER PHOENIX ADVISORS, INC.",,"15029 N THOMPSON PEAK PKWY,","STE B-111 PMB630","SCOTTSDALE","AZ","852602223",,,,,,,"260903796","4808886312",,,,"2011-10-16T12:34:24-0500","ROBERT EVANS","2011-10-16T12:34:24-0500","ROBERT EVANS",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017060006P040694629728001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"AKRON URBAN MINORITY ALCOHOL AND DRUG ABUSE OUTREACH PROGRAM TAX SHELTER ANNUITY PLAN","001","1994-07-01","AKRON URBAN MINORITY ALCOHOL AND DRUG ABUSE OUTREACH PROGRAM",,,"665 W MARKET STREET SUITE 2D",,"AKRON","OH","44303",,,,,,,,,,,,,,,,,,"341726481","3303793467","813000","AKRON URBAN MINORITY ALCOHOL AND DRUG ABUSE OUTREACH PROGRAM",,"665 W MARKET STREET SUITE 2D",,"AKRON","OH","44303",,,,,,,"341726481","3303793467",,,,"2011-10-13T09:10:41-0500","JANICE BOURDA MERCIER WADE",,,,,15,15,0,6,21,0,21,21,,,"2L",,,"1","1",,,"1","1",,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017065723P040154586769001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"NEW YORK WATER SERVICE CORPORATION POST RETIREMENT HEALTHCARE PLAN","501","2002-04-01","NEW YORK WATER SERVICE CORPORATION",,,"762 W. LANCASTER AVE.",,"BRYN MAWR","PA","19010",,,,,,,"762 W. LANCASTER AVE.",,"BRYN MAWR","PA","19010",,,,,,,"550823550","6105251400","221300","NEW YORK WATER SERVICE CORPORATION",,"762 W. LANCASTER AVE.",,"BRYN MAWR","PA","19010",,,,,,,"550823550","6105251400",,,,"2011-10-15T08:59:38-0500","ROY STAHL",,,,,80,32,34,10,76,,76,,,,,"4A4B4D",,,"1",,,,"1",,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017085633P030151048961001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CO-OP 401(K) PLAN","001","1989-09-01","FARMERS UNION OIL COMPANY",,,"P. O. BOX F",,"MINOT","ND","58701",,,,,,,,,,,,,,,,,,"450132990","7018522501","115110","FARMERS UNION OIL COMPANY",,"P. O. BOX F",,"MINOT","ND","58701",,,,,,,"450132990","7018522501",,,,"2011-10-17T08:55:03-0500","TONY BERNHARDT",,,,,137,85,1,53,139,0,139,127,18,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017085015P040004774723001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RANDOLPH BANK & TRUST COMPANY 401K PLAN","002","1989-01-01","RANDOLPH BANK AND TRUST",,,"PO BOX 1888",,"ASHEBORO","NC","272041888",,,,,,,"175 NORTH FAYETTEVILLE STREET",,"ASHEBORO","NC","27204",,,,,,,"561194124","3366251000","522110","RANDOLPH BANK AND TRUST",,"PO BOX 1888",,"ASHEBORO","NC","272041888",,,,,,,"561194124","3366251000",,,,"2011-10-17T08:49:32-0500","C. MICHAEL WHITEHEAD, JR.",,,,,122,114,0,9,123,0,123,97,9,,"3D2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016202835P030150723873003","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"OPERATIVE PLASTERERS LOCAL UNION NO 96 PENSION PLA","001","1958-04-01","OPERATIVE PLASTERERS LU NO. 96 PENSION",,"CARDAY ASSOCIATES, INC.","7130 COLUMBIA GATEWAY DRIVE, STE A",,"COLUMBIA","MD","21046",,,,,,,"7130 COLUMBIA GATEWAY DRIVE, STE A",,"COLUMBIA","MD","21046",,,,,,,"526148611","4108729500","525100","OPERATIVE PLASTERERS LOC 96 PENSION","CARDAY ASSOCIATES, INC.","7130 COLUMBIA GATEWAY DRIVE",,"COLUMBIA","MD","21046",,,,,,,"526148611","4108729500",,,,"2011-10-16T15:34:04-0500","MARY BATTLE",,,,,105,40,,76,116,3,119,,,5,"2C",,,,"1",,,,"1",,"1",,,,"1",,,"1",,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017071420P040051266535001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCLAREN HEALTH CARE CORPORATION AMENDED & RESTATED BCBSM WELFARE BENEFIT","504","2005-01-01","MCLAREN HEALTH CARE CORPORATION",,,"G-3200 BEECHER ROAD, SUITE LL",,"FLINT","MI","48532",,,,,,,"G-3235 BEECHER ROAD",,"FLINT","MI","48532",,,,,,,"382397643","8103424650","622000","MCLAREN HEALTH CARE CORPORATION",,"G-3200 BEECHER ROAD, SUITE LL",,"FLINT","MI","48532",,,,,,,"382397643","8103424650",,,,"2011-10-17T06:39:43-0500","G. AUSTIN ROBISON",,,,,80,0,34,,34,,34,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017073331P030150981121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VALCOR ENGINEERING CORPORATION EMPLOYEES' PENSION PLAN","002","1974-01-01","VALCOR ENGINEERING CORPORATION",,,"2 LAWRENCE ROAD",,"SPRINGFIELD","NJ","07081",,,,,,,,,,,,,,,,,,"221513100","9734678400","335900","VALCOR ENGINEERING CORPORATION",,"2 LAWRENCE ROAD",,"SPRINGFIELD","NJ","07081",,,,,,,"221513100","9734678400",,,,"2011-10-17T07:32:16-0500","MICHAEL A BUSCH","2011-10-17T07:32:16-0500","MICHAEL A BUSCH",,,445,215,139,66,420,25,445,,1,,"1A1G",,"1","0","1","0","0","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017085229P040023222130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROTHSTEIN, KASS & COMPANY, P.C. WELFARE PLAN","501","1991-01-01","ROTHSTEIN, KASS & COMPANY, P.C.",,,"4 BECKER FARM ROAD",,"ROSELAND","NJ","070681739",,,,,,,,,,,,,,,,,,"222131009","9739946666","541211","ROTHSTEIN, KASS & COMPANY, P.C.",,"4 BECKER FARM ROAD",,"ROSELAND","NJ","070681739",,,,,,,"222131009","9739946666",,,,"2011-10-17T08:49:59-0500","STEVEN KASS",,,,,782,801,0,0,801,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017085925P030151051489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OTIS MEDICARE SUPPLEMENTAL EXPENSE PLAN","547","2005-01-01","UNITED TECHNOLOGIES CORPORATION",,,"UTC BUILDING","ONE FINANCIAL PLAZA","HARTFORD","CT","06101",,,,,,,,,,,,,,,,,,"060570975","8607287000","336410","UNITED TECHNOLOGIES CORPORATION",,"UTC BUILDING","ONE FINANCIAL PLAZA","HARTFORD","CT","06101",,,,,,,"060570975","8607287000",,,,"2011-10-17T08:58:03-0500","PETER HOLOWESKO",,,,,594,0,552,0,552,,,,,,,"4A4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016164402P040154249137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","1","0",,"DIGESTIVE DISEASE ASSOCIATES, P.C. 401(K) PROFIT SHARING PLAN","001","2000-01-01","DIGESTIVE DISEASE ASSOCIATES, P.C.",,,"451 SAINT LUKES DRIVE",,"MONTGOMERY","AL","361177107",,,,,,,,,,,,,,,,,,"631054301","3342711205","621111","DIGESTIVE DISEASE ASSOCIATES, P.C.",,"451 SAINT LUKES DRIVE",,"MONTGOMERY","AL","361177107",,,,,,,"631054301","3342711205",,,,"2011-10-16T16:43:32-0500","DR. ROBERT R. BRINSON",,,,,4,4,0,0,4,0,4,4,0,,"2A2E2G2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016181502P040154274641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STRATA CORPORATION 401(K)","001","1985-04-01","STRATA CORPORATION",,,"PO BOX 13500",,"GRAND FORKS","ND","582083500",,,,,,,,,,,,,,,,,,"450276869",,"212320","STRATA CORPORATION",,"PO BOX 13500",,"GRAND FORKS","ND","582083500",,,,,,,"450276869",,,,,"2011-10-16T18:14:11-0500","CAROL J. PETERSON",,,,,787,582,2,182,766,0,766,696,0,,"2E2G2J3D2F2K2T2S",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016102955P040004757075001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SCRIPPS CLINIC MEDICAL GROUP, INC. RETIREMENT SAVINGS PLAN","003","1982-06-22","SCRIPPS CLINIC MEDICAL GROUP, INC.",,,"10666 NORTH TORREY PINES ROAD",,"LA JOLLA","CA","92037",,,,,,,,,,,,,,,,,,"952885574","8585544637","621111","SCRIPPS CLINIC MEDICAL GROUP, INC.",,"10666 NORTH TORREY PINES ROAD",,"LA JOLLA","CA","92037",,,,,,,"952885574","8585544637",,,,"2011-10-16T10:29:38-0500","JIM MULVEY",,,,,657,476,0,149,625,0,625,624,4,,"2F2G2J2K2R2E2T3D2A","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","15","1","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111015232851P030150249329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOWMET CORPORATION PENSION PLAN","016","1995-12-12","HOWMET CORPORATION",,"C/O ALCOA INC","201 ISABELLA STREET",,"PITTSBURGH","PA","152125858",,,,,,,,,,,,,,,,,,"132838093","4125534545","332900","HOWMET CORPORATION","C/O ALCOA INC","201 ISABELLA STREET",,"PITTSBURGH","PA","152125858",,,,,,,"132838093","4125534545",,,,"2011-10-15T23:16:58-0500","JOHN KENNA",,,,,6414,3793,237,1251,5281,21,5302,,178,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016204551P030150729457001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"BOXBOARD PACKAGING CO., INC. UNION 401K PLAN","004","1994-01-01","BOXBOARD PACKAGING CO., INC.",,,"1020 HERMAN STREET",,"ELKHART","IN","465169028",,,,,,,,,,,,,,,,,,"344492815","4196682961","322200","BOXBOARD PACKAGING CO., INC.",,"1020 HERMAN STREET",,"ELKHART","IN","465169028",,,,,,,"344492815","4196682961",,,,"2011-10-16T20:45:50-0500","M. SCOTT WELCH",,,,,5,7,0,0,7,0,7,7,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017074347P040694847360001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SEGREST FARMS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","SEGREST FARMS INC",,,"PO BOX 758",,"GIBSONTON","FL","33534",,,,,,,"6180 BIG BEND ROAD",,"GIBSONTON","FL","33534",,,,,,,"562306146","8136779196","112510","SEGREST FARMS INC",,"PO BOX 758",,"GIBSONTON","FL","33534",,,,,,,"562306146","8136779196",,,,"2011-10-17T07:43:19-0500","KEVIN JORDAN",,,,,423,311,0,19,330,0,330,254,10,,"2E2G2J2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017074727P030004516979001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"PARKVIEW ADVENTIST MEDICAL CENTER RETIREMENT PLAN","002","1992-01-01","PARKVIEW ADVENTIST MEDICAL CENTER",,,"329 MAINE ST",,"BRUNSWICK","ME","040113310",,,,,,,,,,,,,,,,,,"010244035","2073732273","622000","PARKVIEW ADVENTIST MEDICAL CENTER",,"329 MAINE ST",,"BRUNSWICK","ME","040113310",,,,,,,"010244035","2073732273",,,,"2011-10-17T07:47:16-0500","ROBIN WHITE","2011-10-17T07:47:16-0500","ROBIN WHITE",,,362,212,0,66,278,0,278,261,42,,"2E2F2G2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017074731P030022313506001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT SAVINGS PLAN OF PTG MANAGEMENT CO. II","003","2004-01-01","PTG MANAGEMENT COMPANY",,,"503 10TH STREET WEST",,"PALMETTO","FL","34221",,,,,,,,,,,,,,,,,,"650428762","9147223291","111210","PTG MANAGEMENT COMPANY",,"503 10TH STREET WEST",,"PALMETTO","FL","34221",,,,,,,"650428762","9147223291",,,,"2011-10-17T07:46:39-0500","SARAH GOLDBERGER",,,,,1258,1339,2,24,1365,0,1365,101,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016093731P040154057025001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"THE LINCOLN ELECTRIC COMPANY EMPLOYEE SAVINGS PLAN","005","1994-01-01","THE LINCOLN ELECTRIC COMPANY",,,"22801 ST. CLAIR AVENUE",,"CLEVELAND","OH","44117",,,,,,,"22801 ST. CLAIR AVENUE",,"CLEVELAND","OH","44117",,,,,,,"340359955","2164818100","335900","THE LINCOLN ELECTRIC COMPANY",,"22801 ST. CLAIR AVENUE",,"CLEVELAND","OH","44117",,,,,,,"340359955","2164818100",,,,"2011-10-14T15:18:59-0500","GRETCHEN FARRELL",,,,,3518,2602,58,510,3170,34,3204,3086,14,,"2E2F2G2J2K2O2T3F3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016205158P040154344721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LINCOLN AESTHETIC & RECONSTRUCTIVE SURGERY P C PROFIT SHARING PLAN","001","2001-01-01","LINCOLN AESTHETIC & RECONSTRUCTIVE SURGERY P C",,,"2222 SOUTH 16TH STREET SUITE 300",,"LINCOLN","NE","685023785",,,,,,,,,,,,,,,,,,"470802081","4024350044","621111","LINCOLN AESTHETIC & RECONSTRUCTIVE SURGERY P C",,"2222 SOUTH 16TH STREET SUITE 300",,"LINCOLN","NE","685023785",,,,,,,"470802081","4024350044",,,,"2011-10-16T20:51:45-0500","DR. MITCHELL HENRY",,,,,10,6,0,5,11,0,11,11,0,,"2A2E2F2G2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017050110P040154537569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"USA MEDICAL PLAN","714","1986-11-01","UNITED SPACE ALLIANCE, LLC",,,"600 GEMINI STREET",,"HOUSTON","TX","77058",,,,,,,,,,,,,,,,,,"760492757","2812126163","336410","UNITED SPACE ALLIANCE, LLC",,"600 GEMINI STREET",,"HOUSTON","TX","77058",,,,,,,"760492757","2812126163",,,,"2011-10-16T18:56:32-0500","PATRICIA RECORDS",,,,,9816,6319,2471,439,9229,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017081200P040154630481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARQUETTE UNIVERSITY RETIREMENT PLAN","001","1960-02-01","MARQUETTE UNIVERSITY",,,"915 W. WISCONSIN AVENUE",,"MILWAUKEE","WI","53233",,,,,,,"915 W. WISCONSIN AVENUE",,"MILWAUKEE","WI","53233",,,,,,,"390806251","4142887305","611000","MARQUETTE UNIVERSITY",,"915 W. WISCONSIN AVENUE",,"MILWAUKEE","WI","53233",,,,,,,"390806251","4142887305",,,,"2011-10-15T15:57:16-0500","OCTAVIO CASTRO",,,,,3379,2116,0,1250,3366,3,3369,3269,0,,"2L2G2M2T",,"1",,"1",,"1",,"1",,"0",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017083806P030700663488001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BUCA, INC. EMPLOYEE SAVINGS PLAN","001","1996-10-01","BUCA, INC.",,,"1300 NICOLLET AVENUE, SUITE 5003",,"MINNEAPOLIS","MN","55403",,,,,,,,,,,,,,,,,,"411802364","6122253288","722110","BUCA, INC.",,"1300 NICOLLET AVENUE, SUITE 5003",,"MINNEAPOLIS","MN","55403",,,,,,,"411802364","6122253288",,,,"2011-10-17T08:37:08-0500","THOMAS AVALLONE","2011-10-17T08:10:27-0500","THOMAS AVALLONE",,,3908,3505,0,263,3768,0,3768,719,62,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016124619P040023151058001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADVANCED IMAGING CONSULTANTS, INC. 401(K) PLAN","001","2006-01-01","ADVANCED IMAGING CONSULTANTS INC.",,,"1620 VIRGINIA RD",,"SAN MARINO","CA","91108",,,,,,,"ADVANCED IMAGING CONSULTANTS, INC.","1620 VIRGINIA RD","SAN MARINO","CA","91108",,,,,,,"260510356","6267938437","621111","ADVANCED IMAGING CONSULTANTS INC.",,"1620 VIRGINIA RD",,"SAN MARINO","CA","91108",,,,,,,"260510356","6267938437",,,,"2011-10-16T12:46:14-0500","PETER P. CHOW","2011-10-16T12:46:14-0500","PETER P. CHOW",,,2,3,0,0,3,0,3,2,0,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016152929P040154217393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHERN ILLINOIS BANCORP, INC. EMPLOYEES STOCK OWNERSHIP PLAN","001","1978-01-01","SOUTHERN ILLINOIS BANCORP, INC.",,,"P O BOX 376","201 EAST MAIN STREET","CARMI","IL","62821",,,,,,,,,,,,,,,,,,"370206222","6183824118","522110","SOUTHERN ILLINOIS BANCORP, INC.",,"P O BOX 376","201 EAST MAIN STREET","CARMI","IL","62821",,,,,,,"370206222","6183824118",,,,"2011-10-16T15:29:25-0500","ALVIN FRITSCHLE","2011-10-16T15:29:25-0500","ALVIN FRITSCHLE",,,100,100,4,14,118,,118,118,6,,"2O2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017072904P030150979057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MARLIN FIREARMS COMPANY EMPLOYEES PENSION PLAN","004","1965-12-01","REMINGTON ARMS COMPANY, INC.",,,"P.O. BOX 700",,"MADISON","NC","270250700",,,,,,,"870 REMINGTON DRIVE",,"MADISON","NC","270250700",,,,,,,"510350935","3365488847","332900","REMINGTON ARMS COMPANY, INC.",,"P.O. BOX 700",,"MADISON","NC","270250700",,,,,,,"510350935","3365488847",,,,"2011-10-17T07:28:48-0500","MARK PRIMM","2011-10-17T07:28:48-0500","MARK PRIMM",,,629,66,340,216,622,0,622,,0,,"1B1G1I3F3H",,"1","0","0","0","1","0","0","0","1","0","1","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017070950P040154593697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"RATJEN ENTERPRISES, INC. 401 (K) PROFIT SHARING PLAN","001","2007-07-03","RATJEN ENTERPRISES INC.","MR. HANDYMAN OF ALVIN, MISSOURI CITY AND STAFFORD",,"11322 COUNTY ROAD 190",,"ALVIN","TX","77511",,,,,,,"11322 COUNTY ROAD 190",,"ALVIN","TX","77511",,,,,,,"260414725","2817570426","238900","RATJEN ENTERPRISES INC.",,"11322 COUNTY ROAD 190",,"ALVIN","TX","77511",,,,,,,"260414725","2817570426",,,,"2011-10-17T07:09:33-0500","ALAN RATJEN",,,,,2,2,0,0,2,0,2,1,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017084427P030151038049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VT GROUP U.S. RETIREMENT PLAN","001","1985-01-01","VT GROUP",,,"10745 WESTSIDE WAY","SUITE 300","ALPHARETTA","GA","30009",,,,,,,,,,,,,,,,,,"581470581","7709521479","561900","VT GROUP",,"10745 WESTSIDE WAY","SUITE 300","ALPHARETTA","GA","30009",,,,,,,"581470581","7709521479",,,,"2011-10-17T08:44:04-0500","WILLIAM R. WILLETS","2011-10-17T08:44:04-0500","WILLIAM R. WILLETS",,,2101,1085,7,452,1544,0,1544,1432,542,,"2E2J2F2G2K2R2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111016160850P030150620097001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"PBG LONG TERM DISABILITY PLAN","631","1990-01-01","PEPSICO, INC.",,,"BRUCE MONTE, JR. 2/2","700 ANDERSON HILL ROAD","PURCHASE","NY","10577",,,,,,,,,,,,,,,,,,"131584302","9142532000","312110","PEPSICO, INC.",,"BRUCE MONTE, JR. 2/2","700 ANDERSON HILL ROAD","PURCHASE","NY","10577",,,,,,,"131584302","9142532000",,,,"2011-10-16T16:07:20-0500","BRUCE MONTE",,,,,30780,0,,,0,,,,,,,"4H","0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016161846P040154238625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAPANESE WEEKEND, INC. PROFIT SHARING 401K PLAN","001","1995-01-01","JAPANESE WEEKEND, INC.",,"BENEFIT SYNERGY","11 W AVENIDA JUNIPERO",,"SAN CLEMENTE","CA","926723264",,,,,,,,,,,,,,,,,,"942941991","9494980924","448120","JAPANESE WEEKEND, INC.","BENEFIT SYNERGY","11 W AVENIDA JUNIPERO",,"SAN CLEMENTE","CA","926723264",,,,,,,"942941991","9494980924",,,,"2011-10-16T16:18:46-0500","BARBARA E WHITE",,,,,19,14,5,0,19,0,19,15,,,"2E2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017071608P040154597201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HONEST ABE LOG HOMES, INC. 401(K) PLAN","001","1998-01-01","HONEST ABE LOG HOMES INCORPORATED",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"621090043","6207938473","236110","HONEST ABE LOG HOMES INCORPORATED","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"621090043","6207938473",,,,"2011-10-17T07:12:22-0500","TERESA SPIVEY",,,,,165,133,1,14,148,1,149,101,5,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017073511P030150981953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WORLDENT SALES ASSOCIATES, INC. DEFINED BENEFIT PENSION PLAN","002","1992-01-01","WORLDENT SALES ASSOCIATES, INC.",,"C/O COLEMAN CORP.","P.O. BOX 1013",,"SYOSSET","NY","11791",,,,,,,"P.O. BOX 1013",,"SYOSSET","NY","11791",,,,,,,"113012743","5163648414","812990","WORLDENT SALES ASSOCIATES, INC.","C/O COLEMAN CORP.","P.O. BOX 1013",,"SYOSSET","NY","11791",,,,,,,"113012743","5163648414",,,,"2011-10-17T07:34:59-0500","BRUCE BUSCH",,,,,2,2,0,0,2,0,2,,0,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017073522P040154605697002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALLEGANY ENVIRONMENTAL SYS INC PROFIT SHARING PLAN","003","2005-01-01","ALLEGANY ENVIRONMENTAL SYS INC PROFIT SHARING PLAN",,,"4704 LILY ROAD",,"ANGELICA","NY","14709",,,,,,,,,,,,,,,,,,"161345900","5852688080","541330","ALLEGANY ENVIRONMENTAL SYS INC PROFIT SHARING PLAN",,"4704 LILY ROAD",,"ANGELICA","NY","14709",,,,,,,"161345900","5852688080",,,,"2011-10-15T09:06:13-0500","GLENN HERDMAN",,,,,1,1,,,1,,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017090115P030151053505001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PROOBJECT 401K PLAN","002","1998-01-01","PROOBJECT, INC.",,,"7467 RIDGE RD.,SUITE 330",,"HANOVER","MD","210763139",,,,,,,,,,,,,,,,,,"521909264","4109331699","541511","PROOBJECT, INC.",,"7467 RIDGE RD.,SUITE 330",,"HANOVER","MD","210763139",,,,,,,"521909264","4109331699",,,,"2011-10-17T08:59:33-0500","CHRISTOPHER YOUNG",,,,,125,91,0,44,135,1,136,130,9,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017091815P030151067345008","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"VINCENT DESIDERIO, JR., M.D. SE RETIREMENT PLAN","001","1984-02-05","VINCENT G. DESIDERIO, JR.",,,"3301 NEW MEXICO AVE., STE 248",,"WASHINGTON","DC","20016",,,,,,,,,,,,,,,,,,"521208052","2026599836","621111","VINCENT G. DESIDERIO, JR.",,"3301 NEW MEXICO AVE., STE 248",,"WASHINGTON","DC","20016",,,,,,,"521208052","2026599836",,,,"2011-10-17T04:36:50-0500","VINCENT DESIDERIO",,,,,2,2,,,2,,2,,,,"2E2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111016173443P030150653585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PEPSICO DISABILITY PLAN","630","1983-07-01","PEPSICO, INC.",,,"BRUCE MONTE, JR. 2/2","700 ANDERSON HILL ROAD","PURCHASE","NY","10577",,,,,,,,,,,,,,,,,,"131584302","9142532000","312110","PEPSICO, INC.",,"BRUCE MONTE, JR. 2/2","700 ANDERSON HILL ROAD","PURCHASE","NY","10577",,,,,,,"131584302","9142532000",,,,"2011-10-16T17:33:20-0500","BRUCE MONTE",,,,,59446,89683,,,89683,,,,,,,"4H4F","0","0","1","1","0","0","1","1","0","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111016212446P040154354817004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"DP&C 401(K) PLAN","001","1991-01-01","DWYER PEMBERTON & COULSON, P.C.",,,"P.O. BOX 1614",,"TACOMA","WA","984011614",,,,,,,"1940 EAST D ST STE 200",,"TACOMA","WA","98421",,,,,,,"911503183","2535729922","541211","DWYER PEMBERTON & COULSON, P.C.",,"P.O. BOX 1614",,"TACOMA","WA","984011614",,,,,,,"911503183","2535729922",,,,"2011-10-16T13:39:56-0500","MELISSA D. HORTSCH",,,,,30,27,0,4,31,0,31,27,,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-16","Filed with authorized/valid electronic signature",, "20111017075224P040154615457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RESIDENTIAL ELEVATORS, INC. 401(K) PLAN","001","2003-01-01","RESIDENTIAL ELEVATORS, INC.",,,"2910 KERRY FOREST DRIVE, D4-1",,"TALLAHASSEE","FL","32309",,,,,,,,,,,,,,,,,,"593382575","8509266722","339900","RESIDENTIAL ELEVATORS, INC.",,"2910 KERRY FOREST DRIVE, D4-1",,"TALLAHASSEE","FL","32309",,,,,,,"593382575","8509266722",,,,"2011-10-14T15:04:48-0500","ERIN ENNIS",,,,,143,95,0,13,108,0,108,65,0,,"2E2G2K3D2J",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111015160824P040153680353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IRWIN M. SHWOM KEOUGH RETIREMENT PLAN, PROFIT SHARING PLAN","001","1981-12-31","IRWIN M. SHWOM, O.D.","IRWIN M. SHWOM, O.D.",,"421 BROADWAY",,"EVERETT","MA","021493435",,,,,,,"421 BROADWAY",,"EVERETT","MA","021493435",,,,,,,"042716616","6173871904","621320","IRWIN M. SHWOM, O.D.",,"421 BROADWAY",,"EVERETT","MA","021493435",,,,,,,"042716616","6173871904",,,,"2011-10-15T16:06:52-0500","IRWIN SHWOM",,,,,2,2,,,2,,2,,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015105136P030149915041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ENGINEERING SYSTEMS SOLUTIONS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2004-01-01","ENGINEERING SYSTEMS SOLUTIONS, INC.",,,"5726 INDUSTRY LANE",,"FREDERICK","MD","217045190",,,,,,,,,,,,,,,,,,"521802359","3016981177","541330","ENGINEERING SYSTEMS SOLUTIONS, INC.",,"5726 INDUSTRY LANE",,"FREDERICK","MD","217045190",,,,,,,"521802359","3016981177",,,,"2011-10-15T10:51:20-0500","ANAND NATHAN","2011-10-15T10:51:20-0500","ANAND NATHAN",,,221,63,0,154,217,0,217,217,25,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015140149P030022153778006","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LEFOLDT & CO 401K PROFIT SHARING PLAN","001","1993-01-01","LEFOLDT & CO., P.A.",,,"690 TOWNE CENTER BLVD",,"RIDGELAND","MS","39157",,,,,,,,,,,,,,,,,,"640854133","6019562374","541211","LEFOLDT & CO., P.A.",,"690 TOWNE CENTER BLVD",,"RIDGELAND","MS","39157",,,,,,,"640854133","6019562374",,,,"2011-10-15T08:32:21-0500","M. LARRY LEFOLDT",,,,,18,13,,2,15,,15,15,1,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015161114P040153681137009","2010-01-01","2010-12-31","4","E",,,,,,,,,,,"ALL WEATHER 12 LTD.","001","2005-08-30","ALL WEATHER 12% LTD.",,,"ONE GLENDINNING PLACE",,"WESTPORT","CT","06880",,,,,,,,,,,,,,,,,,"980630292","2032263030","523900","ALL WEATHER 12% LTD.",,"ONE GLENDINNING PLACE",,"WESTPORT","CT","06880",,,,,,,"980630292","2032263030",,,,"2011-10-14T11:15:16-0500","PETER LA TRONICA",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111014231628P030022098386001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"R WILLIAM HALTERMAN PROFIT-SHARING PLAN & TRUST","001","1985-01-01","R WILLIAM HALTERMAN",,,"919 12TH PLACE, SUITE 7",,"PRESCOTT","AZ","86301",,,,,,,"919 12TH PLACE, SUITE 7",,"PRESCOTT","AZ","86301",,,,,,,"860392996",,"621111","R WILLIAM HALTERMAN",,"919 12TH PLACE, SUITE 7",,"PRESCOTT","AZ","86301",,,,,,,"860392996",,,,,"2011-10-14T23:10:08-0500","BECKY ARTERBURY",,,,,4,3,,,3,,3,3,,,"2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015110704P040023055538001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLUE CIRCLE, INC. PENSION PLAN","001","1983-05-23","LAFARGE BUILDING MATERIALS, INC.",,,"C/O LAFARGE NORTH AMERICA, INC.",,"RESTON","VA","20191",,,,,,,"12018 SUNRISE VALLEY DR., STE. 500",,"RESTON","VA","20191",,,,,,,"222452187","7034803600","327300","ADMINISTRATION COMMITTEE OF THE CIRCLE, INC. PENSION PLAN",,"12018 SUNRISE VALLEY DR., STE. 500",,"RESTON","VA","20191",,,,,,,"222452187","7034803600",,,,"2011-10-15T11:03:29-0500","TERI HERZOG",,,,,690,163,144,329,636,43,679,,,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","0","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015064506P040153452545001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THOR INDUSTRIES, INC. WELFARE BENEFIT PLAN","530","2009-07-01","THOR INDUSTRIES, INC.",,,"419 WEST PIKE STREET",,"JACKSON CENTER","OH","45334",,,,,,,,,,,,,,,,,,"930768752","9375966849","336990","THOR INDUSTRIES, INC.",,"419 WEST PIKE STREET",,"JACKSON CENTER","OH","45334",,,,,,,"930768752","9375966849",,,,"2011-10-15T06:44:14-0500","KEN JULIAN",,,,,4587,5628,,,5628,,,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","44","1",,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015152018P040690393488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KIRAN R BAIS PROFITSHARING PLAN & TRUST","002","1990-01-01","KIRAN R BAIS",,,"188 TIMBERVIEW DR",,"OAK BROOK","IL","60523",,,,,,,"188 TIMBERVIEW DR",,"OAK BROOK","IL","60523",,,,,,,"363408961","7082543865","541600","KIRAN R BAIS",,"188 TIMBERVIEW DR",,"OAK BROOK","IL","60523",,,,,,,"363408961","7082543865",,,,"2011-10-15T15:20:05-0500","KIRAN R BAIS",,,,,1,1,0,0,1,0,1,1,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015112444P030022139730001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONLON CONSTRUCTION COMPANY 401(K) PROFIT SHARING PLAN","001","1988-01-01","CONLON CONSTRUCTION COMPANY",,,"ATSB, PO BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"895 MAIN ST",,"DUBUQUE","IA","520040938",,,,,,,"420655227","8005482995","236200","CONLON CONSTRUCTION COMPANY",,"ATSB, PO BOX 938",,"DUBUQUE","IA","520040938",,,,,,,"420655227","8005482995",,,,"2011-10-15T11:24:15-0500","STEVE D CONLON","2011-10-15T11:24:15-0500","STEVE D CONLON",,,187,149,2,14,165,1,166,128,3,,"2E2F2G2J2K2R3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015213447P040691092080001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEVE DAHL & COMPANY, INC. PROFIT SHARING PLAN & TRUST","001","1984-02-01","STEVE DAHL & COMPANY, INC.",,"DEMARCO, KINNAMAN, LEWIS & CO.","300 KNIGHTSBRIDGE PKWY. SUITE 350",,"LINCOLNSHIRE","IL","60069",,,,,,,,,,,,,,,,,,"953354650","8474151313","711510","STEVE DAHL & COMPANY, INC.","DEMARCO, KINNAMAN, LEWIS & CO.","300 KNIGHTSBRIDGE PKWY. SUITE 350",,"LINCOLNSHIRE","IL","60069",,,,,,,"953354650","8474151313",,,,"2011-10-15T21:34:24-0500","STEVEN R. DAHL",,,,,3,3,0,0,3,0,3,1,0,,"2E2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015164214P040153694017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BASSO & CO INC MONEY PURCHASE PLAN & TRUST","002","1995-01-01","BASSO & CO INC",,"GEORGE BASSO","13226 S COMMERCIAL AVE",,"CHICAGO","IL","60633",,,,,,,"13226 S COMMERCIAL AVE",,"CHICAGO","IL","60633",,,,,,,"362908917","7736462332","812330","BASSO & CO INC","GEORGE BASSO","13226 S COMMERCIAL AVE",,"CHICAGO","IL","60633",,,,,,,"362908917","7736462332",,,,"2011-10-15T16:42:03-0500","GEORGE BASSO",,,,,2,2,0,0,2,0,2,2,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015085023P030149861761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TEMBEC U.S.A., LLC RETIREMENT PLAN FOR SALARIED AND NON-BARGAINING UNIT EMPLOYEES","002","2001-06-18","TEMBOARD SALES INC.",,"C/O PAULINE SIMARD","100 MILL PLAIN ROAD",,"DANBURY","CT","06811",,,,,,,,,,,,,,,,,,"061414750","8196274705","541990","TEMBOARD SALES INC.","C/O PAULINE SIMARD","100 MILL PLAIN ROAD",,"DANBURY","CT","06811",,,,,,,"061414750","8196274705","TEMBEC U.S.A., LLC","721505389","002","2011-10-15T08:49:42-0500","PAULINE SIMARD",,,,,283,0,146,125,271,16,287,,0,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015112604P030149932817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHITIMACHA TRIBE OF LOUISIANA 401(K) PROFIT SHARING PLAN","001","1997-10-01","CHITIMACHA TRIBE OF LOUISIANA",,,"P.O. BOX 661","155 CHITIMACHA LOOP","CHARENTON","LA","705230661",,,,,,,,,,,,,,,,,,"720705406","3379237215","813000","CHITIMACHA TRIBE OF LOUISIANA",,"P.O. BOX 661","155 CHITIMACHA LOOP","CHARENTON","LA","705230661",,,,,,,"720705406","3379237215",,,,"2011-10-15T11:25:20-0500","PATTY PERRY",,,,,1105,1010,0,62,1072,1,1073,758,28,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015132039P030149985361005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CARLOS ROSARIO INTERNATIONAL PUBLIC CHARTER SCHOOL 403(B) TAX DEFERRED ANNUITY PLAN","002","2001-10-10","CARLOS ROSARIO INTERNATIONAL PUBLIC CHARTER SCHOOL",,,"1100 HARVARD STREET, NW",,"WASHINGTON","DC","20009",,,,,,,,,,,,,,,,,,"522157082","2027974000","611000","CARLOS ROSARIO INTERNATIONAL PUBLIC CHARTER SCHOOL",,"1100 HARVARD STREET, NW",,"WASHINGTON","DC","20009",,,,,,,"522157082","2027974000",,,,"2011-10-15T08:32:53-0500","HELENE S. OSKARD",,,,,165,175,,,175,0,175,78,,,"2G2L2M",,"1",,,,"1",,,,"1",,,"1",,"1","2",,"1",,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015142319P030150015537001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"VITALMD 401K PLAN","001","2004-05-01","VITALMD GROUP HOLDINGS, LLC",,,"3225 AVIATION AVENUE","STE 700","MIAMI","FL","33133",,,,,,,,,,,,,,,,,,"542129332","3052734641","621111","VITALMD GROUP HOLDINGS, LLC",,"3225 AVIATION AVENUE","STE 700","MIAMI","FL","33133",,,,,,,"542129332","3052734641",,,,"2011-10-15T03:22:25-0500","JENNIE MARTINEZ",,,,,963,913,10,308,1231,0,1231,1227,0,,"2E2F2G2J2A2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015154459P030024703990001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GOLDEN ARCH'S LTD PLAN","503","2006-01-01","GOLDEN ARCH DEVELOPMENT CORP.",,,"LAS VISTAS PROFESSIONAL CENTER","300 FELISA RINCON AVE. SUITE 10","SAN JUAN","PR","00926",,,,,,,,,,,,,,,,,,"363157303","7877488297","531310","GOLDEN ARCH DEVELOPMENT CORP.",,"LAS VISTAS PROFESSIONAL CENTER","300 FELISA RINCON AVE. SUITE 10","SAN JUAN","PR","00926",,,,,,,"363157303","7877488297",,,,"2011-10-15T15:43:07-0500","NELSON COLON","2011-10-15T15:43:07-0500","NELSON COLON",,,144,144,0,0,144,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015143752P030022156274009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"REGIONS HOSPITAL RETIREMENT SAVINGS PLUS PLAN","001","1994-01-01","REGIONS HOSPITAL",,,"640 JACKSON STREET",,"ST. PAUL","MN","55101",,,,,,,,,,,,,,,,,,"410956618","6512541391","622000","REGIONS HOSPITAL",,"640 JACKSON STREET",,"ST. PAUL","MN","55101",,,,,,,"410956618","6512541391",,,,"2011-10-05T08:39:36-0500","BETH HEINZ","2011-10-05T08:39:36-0500","BETH HEINZ","2011-10-05T08:39:36-0500","KEVIN J. BRANDT",3919,3796,0,394,4190,,4190,3488,78,,"2E2F2G2K",,,,"1",,,,"1",,"1",,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111015133958P030149996225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCCORKLE 401(K) PLAN","002","1999-01-01","MCCORKLE NURSERIES, INC",,,"4904 LUCKEY'S BRIDGE RD SE",,"DEARING","GA","30808",,,,,,,,,,,,,,,,,,"580938579","7065959702","111400","MCCORKLE NURSERIES, INC",,"4904 LUCKEY'S BRIDGE RD SE",,"DEARING","GA","30808",,,,,,,"580938579","7065959702",,,,"2011-10-15T13:39:28-0500","WILLIAM JOHNSON","2011-10-15T13:39:28-0500","WILLIAM JOHNSON",,,172,148,0,25,173,0,173,67,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015190235P030150149809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GRITMAN MEDICAL CENTER EMPLOYEE RETIREMENT PLAN","001","1985-01-01","GRITMAN MEDICAL CENTER",,,"700 S. MAIN STREET",,"MOSCOW","ID","83843",,,,,,,,,,,,,,,,,,"820146328","2088836416","622000","GRITMAN MEDICAL CENTER",,"700 S. MAIN STREET",,"MOSCOW","ID","83843",,,,,,,"820146328","2088836416",,,,"2011-10-15T19:02:09-0500","DENNIS COCKRELL","2011-10-15T19:02:09-0500","DENNIS COCKRELL",,,580,457,0,122,579,0,579,529,19,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015105612P040023054914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IEEE DEFINED CONTRIBUTION RETIREMENT PLAN","004","2007-07-01","INSTITUTE OF ELECTRICAL AND ELECTRONICS ENGINEERS, INC.","IEEE",,"445 HOES LANE",,"PISCATAWAY","NJ","088544141",,,,,,,,,,,,,,,,,,"131656633","7325625317","813000","IEEE COMPENSATION COMMITTEE",,"445 HOES LANE",,"PISCATAWAY","NJ","088544141",,,,,,,"131656633","7325625317",,,,"2011-10-15T10:53:44-0500","ELIZABETH DAVIS","2011-10-15T10:53:44-0500","THOMAS LYNCH",,,1182,1119,0,128,1247,2,1249,1194,32,,"2E2F2G",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015050228P040050869271001","2010-01-01","2010-12-31","2",,"1","0","1","0","0","1","0","0","0",,"FLATLANDS INVESTMENT CO. 401K PLAN","001","2008-05-01","FLATLANDS INVESTMENT CO.",,,"415 WEST CHANNING AVENUE",,"FERGUS FALLS","MN","56537",,,,,,,,,,,,,,,,,,"262524009","2187393856","811310","FLATLANDS INVESTMENT CO.",,"415 WEST CHANNING AVENUE",,"FERGUS FALLS","MN","56537",,,,,,,"262524009","2187393856",,,,"2011-10-14T13:27:12-0500","DEAN OSMONDSON","2011-10-14T13:27:12-0500","DEAN OSMONDSON",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015111123P030149925505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ECKLIN GROUP 401(K) PROFIT SHARING PLAN","001","1996-01-01","ECKLIN GROUP",,,"8 NORTH QUEEN STREET SUITE 301",,"LANCASTER","PA","176033831",,,,,,,,,,,,,,,,,,"232390344","7173921771","531120","ECKLIN GROUP",,"8 NORTH QUEEN STREET SUITE 301",,"LANCASTER","PA","176033831",,,,,,,"232390344","7173921771",,,,"2011-10-15T11:10:51-0500","SUSAN BAUM","2011-10-15T11:10:51-0500","SUSAN BAUM",,,14,16,0,1,17,0,17,11,0,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015070006P040023040898002","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"ALTEMPS, INC. DEFINED BENEFIT PLAN","002","2007-01-01","ALTEMPS, INC.",,,"2835 CARPENTER RD",,"ANN ARBOR","MI","48108",,,,,,,,,,,,,,,,,,"382712757","7349752342","561300","ALTEMPS, INC.",,"2835 CARPENTER RD",,"ANN ARBOR","MI","48108",,,,,,,"382712757","7349752342",,,,"2011-10-15T07:48:42-0500","PAULETTE R. MILLER",,,,,5,0,0,0,0,0,0,,,,"1C1G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015114209P030695485936001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE BIRMINGHAM NEWS COMPANY EMPLOYEE ASSISTANCE SERVICES PROGRAM","544","1985-07-01","THE BIRMINGHAM NEWS COMPANY",,,"2201 FOURTH AVENUE NORTH",,"BIRMINGHAM","AL","352033863",,,,,,,,,,,,,,,,,,"630359203","2053252217","511110","THE BIRMINGHAM NEWS COMPANY",,"2201 FOURTH AVENUE NORTH",,"BIRMINGHAM","AL","352033863",,,,,,,"630359203","2053252217",,,,"2011-10-05T17:54:47-0500","ELLEN B.WILLIAMS","2011-10-15T11:39:55-0500","PAM SIDDALL",,,504,435,0,0,435,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015165235P040023076898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CB TECH SERVICES, INC. PROFIT SHARING PLAN 003","003","2004-09-10","CB TECH SERVICES, INC. PROFIT SHARING PLAN 003",,,"5 SAND ISLAND RD., BOX 102",,"HONOLULU","HI","968194905",,,,,,,,,,,,,,,,,,"990318779","8088480060","238300","CB TECH SERVICES, INC. PROFIT SHARING PLAN 003",,"5 SAND ISLAND RD., BOX 102",,"HONOLULU","HI","968194905",,,,,,,"990318779","8088480060",,,,"2011-10-15T16:52:34-0500","FE BOCOBOC",,,,,53,23,2,15,40,0,40,40,2,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015191104P030150152257001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"VBA DEFINED CONTRIBUTION PLAN FOR TRUPOINT BANK","002","1989-01-01","TRUPOINT BANK",,,"P.O. BOX 1010",,"GRUNDY","VA","24614",,,,,,,,,,,,,,,,,,"540924883","2769358161","522110","VBA BENEFITS CORPORATION",,"4490 COX ROAD",,"GLEN ALLEN","VA","23060",,,,,,,"541741662","8006435599",,,,"2011-10-15T16:31:09-0500","ROXANNE SHEPPARD","2011-10-15T18:35:31-0500","E. SCOTT BUTCHER",,,208,179,3,17,199,0,199,186,0,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111014235133P030022100738002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LESLIE A MCDOUGALL DDS 401K PROFIT SHARING PLAN","001","1999-01-01","LESLIE A MCDOUGALL",,,"5175 CHAFFINCH CT",,"DUBLIN","OH","43017",,,,,,,"5175 CHAFFINCH CT",,"DUBLIN","OH","43017",,,,,,,"311022433",,"621210","LESLIE A MCDOUGALL",,"5175 CHAFFINCH CT",,"DUBLIN","OH","43017",,,,,,,"311022433",,,,,"2011-10-14T15:04:34-0500","LESLIE A MCDOUGALL","2011-10-14T15:04:34-0500","LESLIE A MCDOUGALL",,,6,3,,,3,,3,3,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015123748P030022146946001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A. VERNON ALLEN BUILDER, INC., 401(K) PROFIT SHARING PLAN AND TRUST","001","1980-07-01","A. VERNON ALLEN BUILDER, INC.",,,"1175 FIRST AVENUE SOUTH",,"NAPLES","FL","34102",,,,,,,,,,,,,,,,,,"591484133","2392615300","236110","A. VERNON ALLEN BUILDER, INC.",,"1175 FIRST AVENUE SOUTH",,"NAPLES","FL","34102",,,,,,,"591484133","2392615300",,,,"2011-10-15T12:36:53-0500","PETER STOCKER","2011-10-15T12:36:53-0500","PETER STOCKER",,,45,23,0,27,50,0,50,50,7,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015130423P040153610081001","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"AWARDS & MORE INC PROFIT SHARING PLAN","001","2010-01-01","AWARDS & MORE, INC",,"LARRY GOODRUM","710 N ROSEMARY DR",,"BRYAN","TX","77802",,,,,,,,,,,,,,,,,,"262720278","9796963886","453220","AWARDS & MORE INC","LARRY GOODRUM","710 N ROSEMARY DR",,"BRYAN","TX","77802",,,,,,,"262720278","9796963886","AWARDS & MORE INC","262720278","501","2011-10-15T12:53:36-0500","LARRY GOODRUM",,,,,4,4,,,4,,4,4,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015111835P030149928417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELECTROLUX HOME PRODUCTS, INC. THRIFT PLAN","128","1989-01-01","ELECTROLUX HOME PRODUCTS, INC.",,,"P.O. BOX 35920",,"CLEVELAND","OH","441350920",,,,,,,"20445 EMERALD PARKWAY, SUITE 250",,"CLEVELAND","OH","441350920",,,,,,,"341694736","2168982360","335200","ELECTROLUX HOME PRODUCTS, INC.",,"P.O. BOX 35920",,"CLEVELAND","OH","441350920",,,,,,,"341694736","2168982360",,,,"2011-10-15T11:18:17-0500","NICHOLAS W. CZAR","2011-10-15T11:18:17-0500","NICHOLAS W. CZAR",,,10464,5614,34,3953,9601,17,9618,9346,182,,"2A2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015083829P030149857601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAKE SUNAPEE BANK PROFIT SHARING-STOCK OWNERSHIP PLAN","002","1987-01-01","LAKE SUNAPEE BANK",,,"9 MAIN STREET",,"NEWPORT","NH","03773",,,,,,,,,,,,,,,,,,"020173110","6038656036","522110","LAKE SUNAPEE BANK",,"9 MAIN STREET",,"NEWPORT","NH","03773",,,,,,,"020173110","6038656036",,,,"2011-10-15T08:37:38-0500","JODI HOYT","2011-10-15T08:37:38-0500","JODI HOYT",,,289,227,0,53,280,0,280,277,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015142619P030150016369001","2010-06-10","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"LOVE VENDING INC. PROFIT SHARING PLAN","001","2010-06-10","LOVE VENDING INC.",,,"1217 W 36TH ST",,"INDEPENDENCE","MO","64055",,,,,,,,,,,,,,,,,,"272830040","8164616710","812990","LOVE VENDING INC.",,"1217 W 36TH ST",,"INDEPENDENCE","MO","64055",,,,,,,"272830040","8164616710",,,,"2011-10-15T12:32:22-0500","DAVID LOVE",,,,,1,1,,,1,,1,1,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015161716P030696102544001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ITT NIGHT VISION TERMINATION PAY FOR SALARIED EXEMPT & NON-EXEMPT","942","1987-01-01","ITT CORPORATION",,,"1133 WESTCHESTER AVENUE",,"WHITE PLAINS","NY","106043603",,,,,,,,,,,,,,,,,,"135158950","9146412000","333200","ITT NIGHT VISION",,"7635 PLANTATION ROAD",,"ROANOKE","VA","240193222",,,,,,,"135158950","5405630371",,,,"2011-10-15T16:16:57-0500","MICHAEL AYRE",,,,,522,448,2,0,450,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111014230431P040153214257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FRIENDSHIP VILLAGE OF DUBLIN MATCHED FUND RETIREMENT PLAN","001","1984-07-01","FRIENDSHIP VILLAGE OF DUBLIN",,,"6000 RIVERSIDE DRIVE",,"DUBLIN","OH","43017",,,,,,,,,,,,,,,,,,"310986918","6147641600","623000","FRIENDSHIP VILLAGE OF DUBLIN",,"6000 RIVERSIDE DRIVE",,"DUBLIN","OH","43017",,,,,,,"310986918","6147641600",,,,"2011-10-14T14:41:05-0500","BETH PACK",,,,,323,290,4,27,321,0,321,122,71,,"2G2F2L",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015114513P030004484915002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"SCHAEFER & ASSOCIATES, INC. PROFIT SHARING PLAN","001","1996-01-01","SCHAEFER & ASSOCIATES, INC.",,,"7965 NORTH HIGH STREET SUITE 350",,"COLUMBUS","OH","432358446",,,,,,,,,,,,,,,,,,"311447315","6148854900","541211","SCHAEFER & ASSOCIATES, INC.",,"7965 NORTH HIGH STREET SUITE 350",,"COLUMBUS","OH","432358446",,,,,,,"311447315","6148854900",,,,"2011-10-15T12:35:13-0500","JOSEPH P. SCHAEFER","2011-10-15T12:35:20-0500","JOSEPH P. SCHAEFER",,,3,3,0,0,3,0,3,3,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015104103P040023054418001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHWEST MANAGEMENT, INC. 401K PROFIT SHARING PLAN & TRUST","001","1997-01-01","NORTHWEST MANAGEMENT, INC.",,,"9701 REISTERSTOWN RD",,"OWINGS MILLS","MD","211174164",,,,,,,,,,,,,,,,,,"521993421","4103638700","441110","NORTHWEST MANAGEMENT, INC.",,"9701 REISTERSTOWN RD",,"OWINGS MILLS","MD","211174164",,,,,,,"521993421","4103638700",,,,"2011-10-15T10:39:10-0500","EDWARD DREIBAND",,,,,158,125,0,30,155,0,155,88,13,,"2E2G2J2T3D",,"1","0","1","0","0","0","1","0","0","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015001000P040153250561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRESTON KELLY, INC. PROFIT SHARING & ESOP PLAN","001","1963-07-01","PRESTON KELLY",,,"222 FIRST AVENUE NE",,"MINNEAPOLIS","MN","55413",,,,,,,,,,,,,,,,,,"410758021","6128434000","541800","PRESTON KELLY",,"222 FIRST AVENUE NE",,"MINNEAPOLIS","MN","55413",,,,,,,"410758021","6128434000",,,,"2011-10-15T00:09:42-0500","CHARLES KELLY",,,,,32,28,0,8,36,0,36,32,2,,"2E2H2I2O2Q2R3I",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015110120P030695399712001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HAMILTON MANAGEMENT CORP. MONEY PURCHASE PENSION P","001","1994-01-01","HAMILTON MANAGEMENT CORP.",,,"PO BOX 179 27 PAYNE STREET",,"HAMILTON","NY","133460195",,,,,,,"27 PAYNE ST",,"HAMILTON","NY","133460195",,,,,,,"161540751","3158241666","523900","HAMILTON MANAGEMENT CORP.",,"PO BOX 179 27 PAYNE STREET",,"HAMILTON","NY","133460195",,,,,,,"161540751","3158241666",,,,"2011-10-14T12:46:09-0500","LEE WOLTMAN",,,,,5,4,,1,5,,5,5,,,"2C2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015114901P040023057682001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GENERAL HOTEL & RESTAURANT SUPPLY INT'L, INC. 401(K) PLAN","001","1986-10-17","GENERAL HOTEL & RESTAURANT SUPPLY INTERNATIONAL, INC.",,,"13900 NW 82ND AVENUE",,"MIAMI","FL","33016",,,,,,,,,,,,,,,,,,"590819139","3058058651","423990","GENERAL HOTEL & RESTAURANT SUPPLY INTERNATIONAL, INC.",,"13900 NW 82ND AVENUE",,"MIAMI","FL","33016",,,,,,,"590819139","3058058651",,,,"2011-10-15T11:48:14-0500","JOHN ORTS","2011-10-15T11:48:14-0500","JOHN ORTS",,,6,4,0,1,5,0,5,5,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015115135P030149944881001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"NATIONAL GYPSUM COMPANY EMPLOYEES' RETIREMENT TRUST","099",,"NEW NGC, INC.","D/B/A NATIONAL GYPSUM COMPANY",,"2001 REXFORD ROAD",,"CHARLOTTE","NC","28211",,,,,,,,,,,,,,,,,,"752474490","7043657300",,"NEW NGC, INC.",,"2001 REXFORD ROAD",,"CHARLOTTE","NC","28211",,,,,,,"752474490","7043657300",,,,,,,,"2011-10-15T11:50:51-0500","NICHOLAS J. RODONO",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-15",,"Filed with authorized/valid electronic signature", "20111014230908P040688348128001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHERN BERKSHIRE COMMUNITY SERVICES, INC. 401(K) PLAN","003","1999-10-15","NORTHERN BERKSHIRE COMMUNITY SERVICES, INC.",,,"1561 COLD SPRING ROAD",,"WILLIAMSTOWN","MA","01267",,,,,,,,,,,,,,,,,,"222563464","4134588127","623000","NORTHERN BERKSHIRE COMMUNITY SERVICES, INC.",,"1561 COLD SPRING ROAD",,"WILLIAMSTOWN","MA","01267",,,,,,,"222563464","4134588127",,,,"2011-10-14T19:03:39-0500","AMY COLDIRON",,,,,208,0,0,1,1,0,1,1,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015003920P040153271393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JEFFREY M. HOWARD, A PROFESSIONAL CORPORATION DEFINED BENEFIT PENSION PLAN","001","2003-01-01","JEFFREY M. HOWARD, A PROFESSIONAL CORPORATION",,,"48701 SHADY VIEW DRIVE",,"PALM DESERT","CA","92260",,,,,,,,,,,,,,,,,,"953463987","9497591477","541110","JEFFREY M. HOWARD, A PROFESSIONAL CORPORATION",,"48701 SHADY VIEW DRIVE",,"PALM DESERT","CA","92260",,,,,,,"953463987","9497591477",,,,"2011-10-15T00:39:07-0500","JEFFREY M. HOWARD","2011-10-15T00:39:07-0500","JEFFREY M. HOWARD",,,2,1,1,0,2,0,2,,0,,"1A3D1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015085706P040689657600001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRIPLE V, INC. PROFIT SHARING 401(K) PLAN","001","1981-12-28","TRIPLE V, INC.",,,"820 HWY. 35 NORTH",,"FOREST","MS","39074",,,,,,,"820 HWY. 35 NORTH",,"FOREST","MS","39074",,,,,,,"640629052","6627739003","445110","TRIPLE V, INC.",,"820 HWY. 35 NORTH",,"FOREST","MS","39074",,,,,,,"640629052","6627739003",,,,"2011-10-15T08:49:14-0500","TODD VOWELL","2011-10-15T08:49:14-0500","TODD VOWELL",,,234,206,3,14,223,0,223,135,0,,"2E2F2G2J2K2T3D","4B","1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015143128P030022155810001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RAGHU SINGH PROFITSHARING PLAN & TRUST","001","1994-01-01","RAGHU SINGH",,,"9487 FALLING WATERS",,"BURR RIDGE","IL","60527",,,,,,,"9487 FALLING WATERS",,"BURR RIDGE","IL","60527",,,,,,,"621615229","6309718297","621111","RAGHU SINGH",,"9487 FALLING WATERS",,"BURR RIDGE","IL","60527",,,,,,,"621615229","6309718297",,,,"2011-10-15T14:31:14-0500","RAGHU SINGH",,,,,1,1,0,0,1,0,1,1,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015075507P030695030224001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","1","0","0","0",,"CARMEUSE LIME, INC. MASTER TRUST","025",,"CARMEUSE LIME, INC.","CARMEUSE LIME & STONE",,"11 STANWIX STREET 21ST FLOOR",,"PITTSBURGH","PA","15222",,,,,,,,,,,,,,,,,,"363933140","4129955500",,"CARMEUSE LIME, INC.",,"11 STANWIX STREET 21ST FLOOR",,"PITTSBURGH","PA","15222",,,,,,,"363933140","4129955500",,,,,,,,"2011-10-15T07:54:27-0500","BRUCE P. INGLIS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-15",,"Filed with authorized/valid electronic signature", "20111015082551P040689593264001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MOTHER FRANCES HOSPITAL SUPERIOR VISION PLAN","505","2008-01-01","MOTHER FRANCES HOSPITAL",,,"800 E. DAWSON",,"TYLER","TX","75701",,,,,,,,,,,,,,,,,,"750818167","9035314474","622000","MOTHER FRANCES HOSPITAL",,"800 E. DAWSON",,"TYLER","TX","75701",,,,,,,"750818167","9035314474",,,,"2011-10-15T08:33:34-0500","LAURA OWEN",,,,,4776,2663,,,2663,,2663,,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015084251P030004482371001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN MILITARY ACADEMY RETIREMENT PLAN","001","2010-01-01","AMERICAN MILITARY ACADEMY CORPORATION",,,"CARRETERA #177, KM 2.4",,"GUAYNABO","PR","00970",,,,,,,,,,,,,,,,,,"660244040","7877206801","611000","AMERICAN MILITARY ACADEMY CORPORATION",,"CARRETERA #177, KM 2.4",,"GUAYNABO","PR","00970",,,,,,,"660244040","7877206801",,,,"2011-10-15T08:42:17-0500","JUAN CONSUEGRA","2011-10-15T08:42:17-0500","JUAN CONSUEGRA",,,152,154,0,0,154,0,154,88,0,,"2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015124926P030149973025002","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"CONNECTIVITY SOLUTIONS MANUFACTURING LIFE INSURANCE PLAN","506","2004-05-01","CONNECTIVITY SOLUTIONS MANUFACTURING, INC.",,,"12500 I STREET",,"OMAHA","NE","68137",,,,,,,,,,,,,,,,,,"200400061","4026913868","334200","CONNECTIVITY SOLUTIONS MANUFACTURING, INC.",,"12500 I STREET",,"OMAHA","NE","68137",,,,,,,"200400061","4026913868",,,,"2011-10-14T04:59:19-0500","ALFONSO CRUZ","2011-10-13T04:59:19-0500","ROGER SCHROEDER",,,653,608,,,608,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015160131P030022163730001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAY R. WEISKOPF, M.D. 401K PROFIT SHARING PLAN","001","1987-01-01","JAY R. WEISKOPF, MD","JAY R. WEISKOPF, MD","JAY R. WEISKOPF, MD","1509 BEECHWOOD BLVD",,"PITTSBURGH","PA","152171431",,,,,,,"1509 BEECHWOOD BLVD",,"PITTSBURGH","PA","152171431",,,,,,,"251471357","7243353433","621111","JAY R. WEISKOPF, MD","JAY R. WEISKOPF, MD","1509 BEECHWOOD BLVD",,"PITTSBURGH","PA","152171431",,,,,,,"251471357","7243353433",,,,"2011-10-15T15:58:44-0500","CHRIS KAMINSKI CPA",,,,,5,2,,3,5,,5,5,,,"2E2J3B3D",,"1",,"1",,"1",,"1",,"0",,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015153933P030150054737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OHIO NORTHERN UNIVERSITY EMPLOYEE BENEFIT PLAN","501","1982-12-01","OHIO NORTHERN UNIVERSITY",,,"525 SOUTH MAIN STREET",,"ADA","OH","458101555",,,,,,,"525 SOUTH MAIN STREET",,"ADA","OH","458101555",,,,,,,"344429091","4197722000","611000","TRUSTEES OF THE OHIO NORTHERN UNIVERSITY EMPLOYEE BENEFIT TRUST",,"C/O OHIO NORTHERN UNIVERSITY",,"ADA","OH","458101555",,,,,,,"311464471","4197722000",,,,"2011-10-15T15:38:35-0500","ROGER YOUNG",,,,,431,428,24,0,452,,,,,,,"4A4Q","1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111015113214P040023056658010","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"AMERICAN AXLE & MANUFACTURING, INC. HEALTH CARE PROGRAM FOR HOURLY EMPLOYEES - RETIREES","512","1994-03-01","AMERICAN AXLE & MANUFACTURING, INC.",,,"ONE DAUCH DRIVE",,"DETROIT","MI","482111198",,,,,,,,,,,,,,,,,,"383138388","3137582000","336300","AMERICAN AXLE & MANUFACTURING, INC.",,"ONE DAUCH DRIVE",,"DETROIT","MI","482111198",,,,,,,"383138388","3137582000",,,,"2011-10-14T06:32:00-0500","TERRI M. KEMP","2011-10-14T06:32:00-0500","MICHAEL K. SIMONTE",,,1857,,1945,,1945,,,,,,,"4A4D4E","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015123006P030695584944003","2010-02-01","2010-12-31","2",,"1","1",,"1",,"1",,,,,"MOUNTAIN VIEW PROPERTIES FAB FOUR, LLC 401(K)","001","2010-02-01","MOUNTAIN VIEW PROPERTIES FAB FOUR",,,"32 NORTH MAIN STREET",,"MARION","NC","28752",,,,,,,,,,,,,,,,,,"800153963","8286593100","531210","MOUNTAIN VIEW PROPERTIES FAB FOUR",,"32 NORTH MAIN STREET",,"MARION","NC","28752",,,,,,,"800153963","8286593100","MOUNTAIN VIEW PROPERTIES FAB FOUR","800153963","001","2011-10-15T13:28:05-0500","JACQUE MENTINK","2011-10-15T13:28:12-0500","JACQUE MENTINK",,,2,2,0,0,2,0,2,2,,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111015080412P030149842417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BRAZOS ELECTRIC POWER COOP INC. PENSION PLAN","001","1960-01-01","BRAZOS ELECTRIC POWER COOPERATIVE INC.",,,"P. O. BOX 2585",,"WACO","TX","767022585",,,,,,,,,,,,,,,,,,"740524729","2547506500","221100","BRAZOS ELECTRIC POWER COOPERATIVE INC.",,"P. O. BOX 2585",,"WACO","TX","767022585",,,,,,,"740524729","2547506500",,,,"2011-10-15T08:03:17-0500","SANDI PARKS",,,,,484,262,121,83,466,16,482,,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-15","Filed with authorized/valid electronic signature",, "20111017125511P040011456917001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PIEDMONT 6, INC. EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","001","1999-04-08","PIEDMONT 6, INC.",,,"79 PIEDMONT STREET",,"SAN FRANCISCO","CA","94117",,,,,,,,,,,,,,,,,,"943331124","4154953500","621111","PIEDMONT 6, INC.",,"79 PIEDMONT STREET",,"SAN FRANCISCO","CA","94117",,,,,,,"943331124","4154953500",,,,"2011-10-17T13:55:09-0500","MARK SLOMOFF",,,,,2,2,0,0,2,0,2,2,0,,"2O",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017125526P030022360498003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MONTREAT COLLEGE RETIREMENT PLAN","001","1961-01-01","MONTREAT COLLEGE",,,"PO BOX 1267",,"MONTREAT","NC","28757",,,,,,,,,,,,,,,,,,"560543261","8286698012","611000","MONTREAT COLLEGE",,"PO BOX 1267",,"MONTREAT","NC","28757",,,,,,,"560543261","8286698012",,,,"2011-10-17T08:49:06-0500","TRACY PACE","2011-10-17T08:49:06-0500","TRACY PACE",,,170,150,0,17,167,0,167,144,0,,"2L",,"1",,,,"1",,,,,,,"1",,"1","2",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111017121242P040154842113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REDMOND AUTOMOTIVE 401K PLAN","001","2001-01-01","REDMOND AUTOMOTIVE AND ACCESSORIES",,"ROBERT ROKITA","7613 GRATIOT RD",,"SAGINAW","MI","48609",,,,,,,,,,,,,,,,,,"382523045","9897811800","811190","REDMOND AUTOMOTIVE","ROBERT ROKITA","7613 GRATIOT RD",,"SAGINAW","MI","48609",,,,,,,"382523045","9897811800",,,,"2011-10-17T12:12:25-0500","MARCIA ERICKSON",,,,,6,5,0,0,5,0,5,5,0,,"2E2F2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017130333P030022361522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LOCCITANE, INC. 401(K) PROFIT SHARING PLAN","001","1999-07-01","LOCCITANE, INC.",,,"10 EAST 39TH STREET, 10TH FLOOR",,"NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"133844764","6462849263","446120","LOCCITANE, INC.",,"10 EAST 39TH STREET, 10TH FLOOR",,"NEW YORK","NY","10016",,,,,,,"133844764","6462849263",,,,"2011-10-17T12:23:14-0500","SUSIE KHAN","2011-10-17T12:41:10-0500","WILFRID POISNEL",,,694,597,0,53,650,0,650,215,50,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017130121P040154894065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MANHATTAN BEACHWEAR, INC. 401(K) PLAN","001","2001-01-01","MANHATTAN BEACHWEAR, INC.",,,"13809 S. FIGUEROA",,"LOS ANGELES","CA","90061",,,,,,,,,,,,,,,,,,"954475766","3105384980","315290","MANHATTAN BEACHWEAR, INC.",,"13809 S. FIGUEROA",,"LOS ANGELES","CA","90061",,,,,,,"954475766","3105384980","APPAREL VENTURES, INC.","954475766","001","2011-10-17T13:00:12-0500","ALLAN COLVIN",,,,,420,338,0,40,378,0,378,281,8,,"2G2J2E2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017142613P030151360017001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SARDIS BARGAINING UNIT PENSION PLAN","011","1984-01-01","SPRINGS GLOBAL US, INC.",,,"205 NORTH WHITE STREET",,"FORT MILL","SC","297151654",,,,,,,,,,,,,,,,,,"203707005","8035473717","313000","SPRINGS GLOBAL US, INC.",,"205 NORTH WHITE STREET",,"FORT MILL","SC","297151654",,,,,,,"203707005","8035473717",,,,"2011-10-17T13:52:46-0500","SCOTT SMALLEY","2011-10-17T13:52:46-0500","SCOTT SMALLEY",,,254,61,51,136,248,1,249,,0,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017141538P040696232560001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1",,,,,"MG RETIREMENT PLAN","001","1958-09-29","GEA NORTH AMERICA, INC.",,,"9165 RUMSEY RD",,"COLUMBIA","MD","21045",,,,,,,,,,,,,,,,,,"510386399","4109978700","523140","GEA NORTH AMERICA, INC.",,"9165 RUMSEY RD",,"COLUMBIA","MD","21045",,,,,,,"510386399","4109978700",,,,"2011-10-17T14:15:30-0500","RONALD MATZEK","2011-10-17T14:15:30-0500","RONALD MATZEK",,,169,0,50,119,169,0,169,0,0,,"1A1G1I3H",,,,"1",,,,"1",,"1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017123340P030151254065001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"HOMES MOSTLY INC 401(K) PROFIT SHARING PLAN","001","2009-01-01","HOMES MOSTLY, INC.",,,"WILLIAM STREET, SUITE 204",,"CARSON CITY","NV","94701",,,,,,,,,,,,,,,,,,"270318679","4084481318","523900","HOMES MOSTLY, INC.",,"WILLIAM STREET, SUITE 204",,"CARSON CITY","NV","94701",,,,,,,"270318679","4084481318",,,,"2011-10-17T12:15:18-0500","PAUL GODFREY","2011-10-17T12:15:18-0500","PAUL GODFREY",,,1,1,0,0,1,0,1,1,0,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017123605P030151255825001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"FREMONT-RIDEOUT HEALTH GROUP 403(B) MATCH PLAN","002","2009-01-01","FREMONT-RIDEOUT HEALTH GROUP",,,"620 J ST",,"MARYSVILLE","CA","959015413",,,,,,,,,,,,,,,,,,"942917251","5307514270","622000","FREMONT-RIDEOUT HEALTH GROUP",,"620 J ST",,"MARYSVILLE","CA","959015413",,,,,,,"942917251","5307514270",,,,"2011-10-17T12:17:44-0500","JEAN RAUCKMAN",,,,,2446,1907,0,395,2302,3,2305,1458,0,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017124230P040154874081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FEWELL GEOTECHNICAL ENGINEERING, LTD. EMPLOYEE STOCK OWNERSHIP PLAN","002","1994-01-01","FEWELL GEOTECHNICAL ENGINEERING, LTD.",,,"96-1416 WAIHONA PLACE",,"PEARL CITY","HI","967821973",,,,,,,,,,,,,,,,,,"990165411","8084556569","541330","FEWELL GEOTECHNICAL ENGINEERING, LTD.",,"96-1416 WAIHONA PLACE",,"PEARL CITY","HI","967821973",,,,,,,"990165411","8084556569",,,,"2011-10-17T12:40:39-0500","FRAN EDGAMIN, PLAN ADMIN.",,,,,26,11,1,14,26,0,26,25,1,,"2I2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017130732P040154900401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DB PENSION PLAN OF UNITED WAY OF GENESEE AND LAPEER COUNTIES","333","1976-07-01","UNITED WAY OF GENESEE COUNTY",,,"326 S. SAGINAW STREET, 5TH FLOOR",,"FLINT","MI","48503",,,,,,,,,,,,,,,,,,"381359516","8102328121","624200","UNITED WAY OF GENESEE COUNTY",,"326 S. SAGINAW STREET, 5TH FLOOR",,"FLINT","MI","48503",,,,,,,"381359516","8102328121",,,,"2011-10-17T13:07:15-0500","AMY MEISTER","2011-10-17T13:07:15-0500","AMY MEISTER",,,112,16,54,37,107,,107,,0,,"1A1G1I",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017135651P040154960433004","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"EMPLOYEES GROUP TERM LIFE INSURANCE","501","1931-11-01","WASHINGTON GAS LIGHT COMPANY",,,"101 CONSTITUTION AVENUE, NW",,"WASHINGTON","DC","20080",,,,,,,,,,,,,,,,,,"530162882","7037505584","221210","WASHINGTON GAS LIGHT COMPANY",,"101 CONSTITUTION AVENUE, NW",,"WASHINGTON","DC","20080",,,,,,,"530162882","7037505584",,,,"2011-10-12T09:50:07-0500","LUANNE S. GUTERMUTH",,,,,2927,1308,1567,,2875,,,,,,,"4B","1",,"1",,"1",,"1",,,,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017115741P030151216609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SMITHFIELD FOODS HOURLY PENSION PLAN","003","1989-01-01","SMITHFIELD FOODS, INC.",,,"200 COMMERCE ST.",,"SMITHFIELD","VA","23430",,,,,,,,,,,,,,,,,,"520845861","7573651992","311610","SMITHFIELD FOODS, INC.",,"P.O. BOX 9004",,"SMITHFIELD","VA","23431",,,,,,,"520845861","7573651992",,,,"2011-10-17T11:36:28-0500","JOEL CARR",,,,,17455,10657,1130,4951,16738,170,16908,,1915,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017115927P030151217857003","2010-01-01","2010-12-31","3",,,,,,"1","1",,,,,"SEIU AFFILIATES' SUPPLEMENTAL RETIREMENT SAVINGS 401(K) PLAN","335","1999-08-01","SERVICE EMPLOYEES INTERNATIONAL UNION.",,,"ERICA WILLIAMS","11 DUPONT CIRCLE, NW, SUITE 900","WASHINGTON","DC","220361201",,,,,,,,,,,,,,,,,,"360852885","2027307520","813930","SERVICE EMPLOYEES INTERNATIONAL UNION.",,"ERICA WILLIAMS","11 DUPONT CIRCLE, NW, SUITE 900","WASHINGTON","DC","220361201",,,,,,,"360852885","2027307520",,,,"2011-10-07T07:49:50-0500","MARY KAY HENRY",,,,,766,547,1,229,777,1,778,738,3,,"2E2F2G2J2K2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017122628P040154857185001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"L D I, INC. RETIREMENT SAVINGS PLAN","001","1988-07-01","LANKFER DIVERSIFIED INDUSTRIES INC",,,"4311 PATTERSON AVE SE",,"GRAND RAPIDS","MI","495124044",,,,,,,,,,,,,,,,,,"371396717","6169572570","336300","LANKFER DIVERSIFIED INDUSTRIES INC",,"4311 PATTERSON AVE SE",,"GRAND RAPIDS","MI","495124044",,,,,,,"371396717","6169572570","LANKFER DIVERSIFIED INDUSTRIES INC","382211997","001","2011-10-17T12:26:18-0500","SANDREN SCHOLLAART","2011-10-17T12:26:18-0500","SANDREN SCHOLLAART",,,216,219,0,6,225,0,225,87,80,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017142627P030701853040001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CENTIER BANK ASSOCIATES' STOCK OWNERSHIP AND 401(K) PLAN","002","1987-01-01","CENTIER BANK",,,"600 E. 84TH AVENUE",,"MERRILLVILLE","IN","46410",,,,,,,,,,,,,,,,,,"350161790","2197556160","522110","CENTIER BANK",,"600 E. 84TH AVENUE",,"MERRILLVILLE","IN","46410",,,,,,,"350161790","2197556160",,,,"2011-10-17T13:53:19-0500","CHRISANNE CHRIST","2011-10-17T13:53:19-0500","CHRISANNE CHRIST",,,693,590,0,111,701,2,703,699,31,,"2E2I2J2K2O3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017140440P030701768896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KELLY-SPRINGFIELD PUERTO RICO, INC. RETIREMENT PLAN FOR SALARIED EMPLOYEES","014","1974-09-01","THE GOODYEAR TIRE & RUBBER COMPANY",,,"1144 EAST MARKET STREET, D/626",,"AKRON","OH","443160001",,,,,,,,,,,,,,,,,,"340253240","3307962121","326200","THE GOODYEAR TIRE & RUBBER COMPANY",,"1144 EAST MARKET STREET, D/626",,"AKRON","OH","443160001",,,,,,,"340253240","3307962121",,,,"2011-10-17T13:59:45-0500","LAURA THOMPSON, VP FINANCE","2011-10-17T13:59:45-0500","LAURA THOMPSON, VP FINANCE",,,93,0,37,52,89,4,93,,0,,"1A1G3H",,"1","0","0","0","1","0","0","0","1","0","1","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017125106P030004527027001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"DANA - UAW RETIREMENT AND SAVINGS PLAN","106","1996-07-01","DANA LIMITED",,,"P.O. BOX 1000",,"MAUMEE","OH","43537",,,,,,,,,,,,,,,,,,"261318190","4198873000","336300","DANA LIMITED",,"P.O. BOX 1000",,"MAUMEE","OH","43537",,,,,,,"261318190","4198873000",,,,"2011-10-17T12:30:47-0500","AMY ACS",,,,,5898,3539,20,542,4101,10,4111,4014,0,,"2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017140639P040154970305001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SECURITY MUTUAL LIFE INSURANCE COMPANY OF NY DISABILITY PLAN","504","1941-01-01","SECURITY MUTUAL LIFE INSURANCE COMPANY",,,"PO BOX 1625","100 COURT STREET","BINGHAMTON","NY","139021625",,,,,,,,,,,,,,,,,,"150442730","6077233551","524140","SECURITY MUTUAL LIFE INSURANCE COMPANY",,"PO BOX 1625","100 COURT STREET","BINGHAMTON","NY","139021625",,,,,,,"150442730","6077233551",,,,"2011-10-17T14:05:00-0500","RICHARD SHAW",,,,,341,334,7,,341,,,,,,,"4F4H","1",,"1",,"1",,"1",,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017142143P030701833376001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VICI 401(K) PLAN","001","2000-07-01","ONE TEN, INC.","VICI CAPILLI SALON",,"11010 WEST HAMPTON AVENUE",,"MILWAUKEE","WI","532253821",,,,,,,,,,,,,,,,,,"391736641","4145256333","812112","ONE TEN, INC.",,"11010 WEST HAMPTON AVENUE",,"MILWAUKEE","WI","532253821",,,,,,,"391736641","4145256333",,,,"2011-10-17T13:47:40-0500","PENELOPE RUSSELL-RUSHING","2011-10-17T13:47:40-0500","PENELOPE RUSSELL-RUSHING",,,126,122,0,8,130,0,130,40,1,,"2E2F2G2J2K3D3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017123735P040695832416001","2010-01-01","2010-12-31","1",,"0","1","0","0","1","1","0","0","0",,"LANSING LOCAL 826 GLAZIER'S RESTATED MONEY PURCHASE PENSION TRUST","002","1995-01-01","LANSING LOCAL 826 GLAZIER'S RESTATED MONEY PURCHASE PENSION TRUST",,"JFP BENEFIT MANAGEMENT, INC","100 SOUTH JACKSON","SUITE 200","JACKSON","MI","49201",,,,,,,"100 SOUTH JACKSON","SUITE 200","JACKSON","MI","49201",,,,,,,"383209037","5177840535","525100","LANSING LOCAL 826 GLAZIER'S RESTATED MONEY PURCHASE PENSION TRUST","JFP BENEFIT MANAGEMENT, INC","100 SOUTH JACKSON","SUITE 200","JACKSON","MI","49201",,,,,,,"383209037","5177840535","GLAZIER'S LOCAL 826 MONEY PURCHASE PLAN","383209037","002","2011-10-17T12:35:47-0500","RICHARD PHILLIPS",,,,,267,178,1,2,181,,181,,0,15,"2G",,,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017125331P040154884433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PROTOTYPE INDUSTRIES, INC. PROFIT SHARING PLAN","001","1997-01-01","PROTOTYPE INDUSTRIES, INC.",,,"725 ARIZONA AVENUE, SUITE 304",,"SANTA MONICA","CA","904011735",,,,,,,,,,,,,,,,,,"954313571","3102559987","541990","PROTOTYPE INDUSTRIES, INC.",,"725 ARIZONA AVENUE, SUITE 304",,"SANTA MONICA","CA","904011735",,,,,,,"954313571","3102559987",,,,"2011-10-17T12:51:40-0500","IRENE GRIGORIADIS",,,,,29,26,1,6,33,0,33,33,0,,"2A2E3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017122837P040154859313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAXTON ASSOCIATES LP SAVINGS & PROFIT SHARING PLAN","001","1983-04-01","CAXTON ASSOCIATES, LP",,,"PRINCETON PLAZA, BLDG. #2","731 ALEXANDER ROAD","PRINCETON JUNCTION","NJ","08540",,,,,,,"PRINCETON PLAZA, BLDG. #2","731 ALEXANDER ROAD","PRINCETON JUNCTION","NJ","08540",,,,,,,"223430173","6094191800","541600","CAXTON ASSOCIATES, LP",,"PRINCETON PLAZA, BLDG. #2","731 ALEXANDER ROAD","PRINCETON JUNCTION","NJ","08540",,,,,,,"223430173","6094191800",,,,"2011-10-17T12:27:39-0500","DONNA BRAMBLE",,,,,316,223,1,98,322,0,322,313,2,,"2E2F2G2J2K2R2T3B3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017141427P040154977857001","2010-01-01","2010-12-31","2",,"0","0","1","0","1","1","0","0","0",,"L.A. DARLING COMPANY HOURLY EMPLOYEES'(CARPENTERS) RETIREMENT PLAN","153","1982-09-27","L.A. DARLING COMPANY LLC",,,"P.O. BOX 970",,"PARAGOULD","AR","724510970",,,,,,,,,,,,,,,,,,"042294740","8702399564","332900","MARMON RETIREMENT ADMINISTRATIVE COMMITTEE",,"181 WEST MADISON STREET, 26TH FLOOR",,"CHICAGO","IL","60602",,,,,,,"363257463","3123729500",,,,"2011-10-17T14:12:04-0500","DAVID DEEDS",,,,,329,0,0,0,0,0,0,0,1,,"2F2G2K2E2J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017115035P030022349426001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"LABORERS' LOCAL 589 DEFINED CONTRIBUTION RETIREMENT FUND","001","1991-05-01","BOARD OF TRUSTEES OF LABORERS' LOCAL 589 DEFINED CONTRIBUTION RETIREME",,,"622 WEST STATE STREET",,"ITHACA","NY","14850",,,,,,,,,,,,,,,,,,"161391130","6072773081","236200","BOARD OF TRUSTEES OF LABORERS' LOCAL 589 DEFINED CO",,"622 WEST STATE STREET",,"ITHACA","NY","14850",,,,,,,"161391130","6072773081",,,,"2011-10-11T05:42:55-0500","DAVID MARSH",,,,,426,425,,,425,,425,425,,81,"2C",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017115306P040154823409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RIVERSIDE MEDICAL CLINIC, INC. 401(K) PROFIT SHARING PLAN","005","2000-01-01","RIVERSIDE MEDICAL CLINIC, INC.",,,"3660 ARLINGTON AVENUE",,"RIVERSIDE","CA","92506",,,,,,,"3660 ARLINGTON AVENUE",,"RIVERSIDE","CA","92506",,,,,,,"330587303","9516836370","621111","RIVERSIDE MEDICAL CLINIC, INC.",,"3660 ARLINGTON AVENUE",,"RIVERSIDE","CA","92506",,,,,,,"330587303","9516836370",,,,"2011-10-17T11:51:57-0500","SUE KINSINGER",,,,,895,883,3,42,928,0,928,896,62,,"2A2E2F2G2J2K2R2S2T3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017123741P030022357330001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR MICHIGAN CREDIT UNION EMPLOYEES","333","1962-06-01","MICHIGAN CREDIT UNION LEAGUE",,,"38695 W SEVEN MILE RD # 200",,"LIVONIA","MI","481527097",,,,,,,,,,,,,,,,,,"380826778","8002626285","522130","ADMINISTRATIVE COMMITTEE FOR THE RETIREMENT PLAN FOR MCUE",,"38695 W SEVEN MILE RD # 200",,"LIVONIA","MI","481527097",,,,,,,"383362115","8002626285",,,,"2011-10-17T12:18:59-0500","DENNIS HANSON","2011-10-17T11:33:14-0500","GEORGE KHALAF",,,5650,3102,0,2135,5237,5,5242,4597,94,,"2A2C2F2G2K3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","22","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111017123234P040695813856001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FLEXIBLE BENEFIT PLAN","504","1989-04-01","THE BUREAU OF NATIONAL AFFAIRS, INC",,,"ROOM 2207","1801 S. BELL ST","ARLINGTON","VA","222024519",,,,,,,"ROOM 2207","1801 S. BELL ST","ARLINGTON","VA","222024519",,,,,,,"530040540","7033412042","511120","THE BUREAU OF NATIONAL AFFAIRS, INC",,"ROOM 2207","1801 S. BELL ST","ARLINGTON","VA","222024519",,,,,,,"530040540","7033412042",,,,"2011-10-17T11:49:12-0500","CHRISTOPHER MARLIN","2011-10-14T09:14:54-0500","PAUL WOJCIK",,,516,521,0,0,521,,521,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017123625P040154867841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FICOSA NORTH AMERICA CORPORATION 401(K) RETIREMENT SAVINGS PLAN","001","1996-01-01","FICOSA NORTH AMERICA CORPORATION",,,"30870 STEPHENSON HIGHWAY",,"MADISON HEIGHTS","MI","48071",,,,,,,,,,,,,,,,,,"383247924","2483072230","336990","FICOSA NORTH AMERICA CORPORATION",,"30870 STEPHENSON HIGHWAY",,"MADISON HEIGHTS","MI","48071",,,,,,,"383247924","2483072230",,,,"2011-10-17T12:35:30-0500","CYNTHIA TACHENY - AS PRACTITIONER",,,,,239,226,0,12,238,0,238,138,1,,"2E2F2G2J2K2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017125848P030022360898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JWW AND ASSOCIATES 401(K) PLAN","001","1983-01-01","JWW ENTERPRISES AND ASSOCIATES, INC",,,"15120 A SOUTHLAWN LANE",,"ROCKVILLE","MD","20850",,,,,,,,,,,,,,,,,,"521305529","3013406393","238900","JWW ENTERPRISES AND ASSOCIATES, INC",,"15120 A SOUTHLAWN LANE",,"ROCKVILLE","MD","20850",,,,,,,"521305529","3013406393",,,,"2011-10-17T12:38:13-0500","JAMES W. WILCOXON",,,,,216,203,0,15,218,0,218,94,0,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017125549P030151271345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CALIFORNIA TRANSPLANT DONOR NETWORK RETIREMENT PLAN","001","1992-01-01","CALIFORNIA TRANSPLANT DONOR NETWORK",,,"1000 BROADWAY STE 600",,"OAKLAND","CA","946074099",,,,,,,,,,,,,,,,,,"943062436","5104448500","621900","CALIFORNIA TRANSPLANT DONOR NETWORK",,"1000 BROADWAY STE 600",,"OAKLAND","CA","946074099",,,,,,,"943062436","5104448500",,,,"2011-10-17T12:36:11-0500","CYNTHIA SILJESTROM",,,,,136,222,0,35,257,0,257,172,0,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017141757P040154982529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WOW INTERNET SOLUTIONS, INC. 401(K) PLAN","001","2000-01-01","WOW INTERNET SOLUTIONS, INC.",,,"900 BRIGGS ROAD",,"MT. LAUREL","NJ","08054",,,,,,,"SUITE 345",,"MT. LAUREL","NJ","08054",,,,,,,"223506096","8567839126","541511","WOW INTERNET SOLUTIONS, INC.",,"900 BRIGGS ROAD",,"MT. LAUREL","NJ","08054",,,,,,,"223506096","8567839126",,,,"2011-10-17T14:17:56-0500","MARVIN STEWART",,,,,12,10,0,2,12,0,12,12,0,,"2E2G2J2K2F3D",,"1","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017135929P030022371490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTH COAST EYE CARE CENTERS, A COMP OPT MED GROUP, INC 401K PROFIT SHARING PLAN","001","2002-01-01","SOUTH COAST EYE CARE CENTERS",,,"23961 CALLE DE LA MAGDALENA","STE 302","LAGUNA HILLS","CA","92653",,,,,,,,,,,,,,,,,,"330543267","9495882020","621111","SOUTH COAST EYE CARE CENTERS",,"23961 CALLE DE LA MAGDALENA","STE 302","LAGUNA HILLS","CA","92653",,,,,,,"330543267","9495882020",,,,"2011-10-17T13:32:52-0500","ANDREW HENRICK","2011-10-17T13:32:52-0500","ANDREW HENRICK",,,38,25,0,14,39,0,39,36,2,,"2A2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017140501P040154969041001","2010-01-01","2010-12-31","2",,"0","0","1","0","1","1","0","0","0",,"ANDERSON COPPER AND BRASS COMPANY HOURLY EMPLOYEES' RETIREMENT INCOME PLAN","006","1970-12-01","ANDERSON COPPER AND BRASS COMPANY LLC",,,"4325 FRONTAGE ROAD",,"OAK FOREST","IL","60452",,,,,,,,,,,,,,,,,,"363483349","7085359030","332900","MARMON RETIREMENT ADMINISTRATIVE COMMITTEE",,"181 WEST MADISON STREET, 26TH FLOOR",,"CHICAGO","IL","606020000",,,,,,,"363257463","3123729500",,,,"2011-10-17T13:58:24-0500","JAMES DENOR","2011-10-17T10:05:40-0500","JEANNINE HUCK",,,114,0,0,0,0,0,0,,0,,"1B1G3H1D",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017121749P030701392352001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LUSARDI CONSTRUCTION COMPANY EMPLOYEE WELFARE PLAN","501","1985-12-01","LUSARDI CONSTRUCTION COMPANY",,,"1570 LINDA VISTA DRIVE",,"SAN MARCOS","CA","92078",,,,,,,,,,,,,,,,,,"952159879","7607443133","236200","LUSARDI CONSTRUCTION COMPANY",,"1570 LINDA VISTA DRIVE",,"SAN MARCOS","CA","92078",,,,,,,"952159879","7607443133",,,,"2011-10-17T11:58:41-0500","STAN PRIGMORE",,,,,207,207,0,0,207,,,,,,,"4B4D4E4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017122715P030151248849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STONE CREEK, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","2006-07-01","STONE CREEK, INC.",,,"4221 EAST RAYMOND STREET",,"PHOENIX","AZ","85040",,,,,,,,,,,,,,,,,,"860657165","6024375042","337000","STONE CREEK, INC.",,"4221 EAST RAYMOND STREET",,"PHOENIX","AZ","85040",,,,,,,"860657165","6024375042",,,,"2011-10-17T12:27:13-0500","RONALD E. JONES","2011-10-17T12:27:13-0500","RONALD E. JONES",,,115,77,40,0,117,0,117,107,0,,"2E2P2Q",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017131052P030022362914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SENSATA TECHNOLOGIES EMPLOYEES PENSION PLAN","004","2006-04-27","SENSATA TECHNOLOGIES INC.",,,"529 PLEASANT STREET","POST OFFICE BOX 2964","ATTLEBORO","MA","027030964",,,,,,,,,,,,,,,,,,"204297839","5082363800","335900","ADMINISTRATION COMMITTEE SENSATA TECH. EMPLOYEE PENSION PLAN","SENSATA TECHNOLOGIES INC.","529 PLEASANT STREET","POST OFFICE BOX 2964","ATTLEBORO","MA","027030964",,,,,,,"204297839","5082363800",,,,"2011-10-17T12:48:10-0500","EDWARD PETER","2011-10-17T12:48:10-0500","EDWARD PETER",,,499,417,1,66,484,1,485,,0,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017114302P030701281104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERICAN FIDELITY COMPANIES EMPLOYEE SAVINGS PLAN","002","1985-07-01","AMERICAN FIDELITY CORPORATION",,"C/O KIM HOLEKAMP","2000 N. CLASSEN BLVD.",,"OKLAHOMA CITY","OK","731066092",,,,,,,,,,,,,,,,,,"730966202","4055235863","524140","AMERICAN FIDELITY CORPORATION","C/O KIM HOLEKAMP","2000 N. CLASSEN BLVD.",,"OKLAHOMA CITY","OK","731066092",,,,,,,"730966202","4055235863",,,,"2011-10-17T11:22:19-0500","KIM HOLEKAMP","2011-10-17T11:22:19-0500","KIM HOLEKAMP",,,2767,2107,127,487,2721,1,2722,2500,97,,"2E2F2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017141732P030701817968001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"SULLIVANS ADMINISTRATIVE MANAGERS, LLC 401(K) PROFIT SHARING PLAN","001","1998-09-01","SULLIVANS ADMINISTRATIVE MANAGERS, LLC",,,"37 W. FAIRMONT AVE., BUILDING 100",,"SAVANNAH","GA","31406",,,,,,,,,,,,,,,,,,"582519444","9123523800","561300","SULLIVANS ADMINISTRATIVE MANAGERS, LLC",,"37 W. FAIRMONT AVE., BUILDING 100",,"SAVANNAH","GA","31406",,,,,,,"582519444","9123523800",,,,"2011-10-17T13:43:00-0500","KIM DOBSON",,,,,690,524,2,46,572,0,572,300,17,,"2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017130239P030151276625001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"MTIA PURSUANT TO THE RET.PLANS OF APL.,LTD. & SUBS","001",,"APL LIMITED",,,"16220 N. SCOTTSDALE RD., SUITE 300",,"SCOTTSDALE","AZ","85254",,,,,,,,,,,,,,,,,,"946063328","6025864800",,"APL LIMITED",,"16220 N. SCOTTSDALE RD., SUITE 300",,"SCOTTSDALE","AZ","85254",,,,,,,"946063328","6025864800",,,,"2011-10-17T12:41:10-0500","AMY WASSERMAN","2011-10-17T12:41:10-0500","AMY WASSERMAN",,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017135724P040154961169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OFS FITEL, LLC MASTER WELFARE BENEFIT PLAN","501","2002-10-01","OFS FITEL, LLC",,,"2000 NORTHEAST EXPRESSWAY",,"NORCROSS","GA","30071",,,,,,,"2000 NORTHEAST EXPRESSWAY",,"NORCROSS","GA","30071",,,,,,,"621864622","7707985377","334200","OFS FITEL, LLC",,"2000 NORTHEAST EXPRESSWAY",,"NORCROSS","GA","30071",,,,,,,"621864622","7707985377",,,,"2011-10-14T16:35:02-0500","VELETA HOLLAND","2011-10-17T13:26:09-0500","STEPHANIE STREET",,,1010,1022,11,6,1039,,1039,,,,,"4A4B4D4E4F4G4H4L4Q","1",,,"1","1",,,"1",,,,,,"1","7",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017115853P040154829057010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"W A P INC PROFIT SHARING PLAN AND TRUST","001","1967-12-31","AUTOMOTIVE CORE SOURCE, INC",,,"4930 WOODVILLE RD",,"TOLEDO","OH","436191808",,,,,,,"SAME",,"TOLEDO","OH","436191808",,,,,,,"340972844","4196914677","423100","AUTOMOTIVE CORE SOURCE INC",,"4930 WOODVILLE RD",,"TOLEDO","OH","436191808",,,,,,,"340972844","4196914677",,,,"2011-10-17T11:42:33-0500","ERICH LIBER",,,,,5,2,1,2,5,,5,,,,"2R2H2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017121511P030050621031007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BUSINESS SYSTEMS INTEGRATORS, INC. PROFIT SHARING PLAN","001","2001-01-01","BUSINESS SYSTEMS INTEGRATORS, INC.",,,"327 AZALEA DRIVE",,"HOBART","IN","46342",,,,,,,,,,,,,,,,,,"352054769","2197381105","541512","BUSINESS SYSTEMS INTEGRATORS, INC.",,"327 AZALEA DRIVE",,"HOBART","IN","46342",,,,,,,"352054769","2197381105",,,,"2011-10-17T10:09:01-0500","RICHARD L TOTH",,,,,4,3,0,0,3,0,3,4,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017124001P030151258785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JOHN LENORE & CO. 401(K) PLAN","001","2002-09-01","JOHN LENORE & CO.",,,"1250 DELEVAN DRIVE",,"SAN DIEGO","CA","92102",,,,,,,,,,,,,,,,,,"952425132","6192326108","424990","JOHN LENORE & CO.",,"1250 DELEVAN DRIVE",,"SAN DIEGO","CA","92102",,,,,,,"952425132","6192326108",,,,"2011-10-17T12:21:39-0500","JAMIE LENORE",,,,,139,300,1,37,338,0,338,237,7,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017124317P040023260994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VAMVORAS, L. L. C. 401(K) PROFIT SHARING PLAN","001","2005-01-01","VAMVORAS, L. L. C.",,,"4734 SHAVANO OAK, SUITE 1",,"SAN ANTONIO","TX","78249",,,,,,,"4734 SHAVANO OAK, SUITE 1",,"SAN ANTONIO","TX","78249",,,,,,,"742483341","2103412004","811490","VAMVORAS, L. L. C.",,"4734 SHAVANO OAK, SUITE 1",,"SAN ANTONIO","TX","78249",,,,,,,"742483341","2103412004",,,,"2011-10-17T11:48:53-0500","MARY TRANCHELL","2011-10-17T11:48:53-0500","MARY TRANCHELL",,,21,13,0,2,15,0,15,15,0,,"2A2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017124326P030151261105002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ORANGE MOTOR COMPANY INC. DISABILITY PLAN","503","1986-02-01","ORANGE MOTOR CO., INC.",,,"799 CENTRAL AVENUE",,"ALBANY","NY","12206",,,,,,,,,,,,,,,,,,"140945770","5184895414","441110","ORANGE MOTOR CO., INC.",,"799 CENTRAL AVENUE",,"ALBANY","NY","12206",,,,,,,"140945770","5184895414",,,,"2011-10-04T06:22:40-0500","CARL KEEGAN","2011-10-04T06:22:40-0500","CARL KEEGAN",,,122,134,,,134,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017140944P040154972929001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"DEFINED BENEFIT SUB-FUND","008",,"MARMON RETIREMENT MASTER TRUST",,,"181 W MADISON STREET, 26TH FLOOR",,"CHICAGO","IL","606024510",,,,,,,,,,,,,,,,,,"362720574","3123729500",,"MARMON RETIREMENT ADMINISTRATIVE COMMITTEE",,"181 W MADISON STREET, 26TH FLOOR",,"CHICAGO","IL","606024510",,,,,,,"363257463","3123729500",,,,"2011-10-17T13:21:37-0500","JAMES DENOR","2011-10-17T11:24:05-0500","CYNTHIA REIN","2011-10-17T14:07:22-0500","JAMES DENOR",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20111017124633P040154876929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CATHEDRAL CORPORATION RETIREMENT SAVINGS PLAN","005","1994-07-01","CATHEDRAL CORPORATION",,,"632 ELLSWORTH ROAD",,"ROME","NY","13441",,,,,,,,,,,,,,,,,,"140576820","3153380021","561430","CATHEDRAL CORPORATION",,"632 ELLSWORTH ROAD",,"ROME","NY","13441",,,,,,,"140576820","3153380021",,,,"2011-10-17T12:45:22-0500","MARIANNE GAIGE",,,,,195,155,0,33,188,1,189,186,6,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017125454P040023263602001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ALLIANCE ENERGY LLC 401(K) SAVINGS AND PROFIT SHARING PLAN","002","1992-01-01","ALLIANCE ENERGY LLC",,,"404 WYMAN STREET","SUITE 425","WALTHAM","MA","02451",,,,,,,"404 WYMAN STREET","SUITE 425","WALTHAM","MA","02451",,,,,,,"043082096","2073157177","454311","ALLIANCE ENERGY LLC",,"404 WYMAN STREET","SUITE 425","WALTHAM","MA","02451",,,,,,,"043082096","2073157177",,,,"2011-10-17T12:53:58-0500","TANJA MEGLIO",,,,,339,1318,1,40,1359,0,1359,237,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017125655P030151272081001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NATION FORD CHEMICAL COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","002","2006-01-01","NATION FORD CHEMICAL COMPANY",,,"2300 BANKS STREET",,"FORT MILL","SC","29715",,,,,,,,,,,,,,,,,,"570657367","8035483210","325100","NATION FORD CHEMICAL COMPANY",,"2300 BANKS STREET",,"FORT MILL","SC","29715",,,,,,,"570657367","8035483210",,,,"2011-10-17T12:37:06-0500","JOHN DICKSON",,,,,105,87,0,8,95,0,95,95,6,,"2I2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017141105P040154974369001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"MAPLEVALE FARMS, INC. PREMIUM CONVERSION PLAN","501","1998-01-01","MAPLEVALE FARMS, INC",,,"2063 EAST ALLEN STREET EXTENSION",,"FALCONER","NY","14733",,,,,,,,,,,,,,,,,,"160960649","7163554114","424400","MAPLEVALE FARMS, INC",,"2063 EAST ALLEN STREET EXTENSION",,"FALCONER","NY","14733",,,,,,,"160960649","7163554114",,,,"2011-10-17T10:01:17-0500","GARY A NECKERS",,,,,110,136,,,136,,,,,,,"4A4B4D4F4H4Q","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017114351P040023251106001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"KELLER FOUNDATIONS INC. RETIREMENT SAVINGS PROFIT SHARING PLAN","001","1986-01-01","KELLER FOUNDATIONS INC.",,,"1130 ANNAPOLIS RD",,"ODENTON","MD","211131648",,,,,,,,,,,,,,,,,,"521691496","4105518200","237990","KELLER FOUNDATIONS INC.",,"1130 ANNAPOLIS RD",,"ODENTON","MD","211131648",,,,,,,"521691496","4105518200","KELLER FOUNDATION INC.",,,"2011-10-17T11:43:15-0500","LINDA KOSMICKY","2011-10-17T11:43:15-0500","LINDA KOSMICKY",,,2297,2062,2,101,2165,5,2170,1332,45,,"2E2F2G2J2K2S2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017122313P040023257714001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TOP FLITE FINANCIAL INC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","TOP FLITE FINANCIAL, INC",,,"123 E GRAND RIVER",,"WILLIAMSTON","MI","48895",,,,,,,,,,,,,,,,,,"134225190","5176552140","522292","TOP FLITE FINANCIAL, INC",,"123 E GRAND RIVER",,"WILLIAMSTON","MI","48895",,,,,,,"134225190","5176552140",,,,"2011-10-17T12:22:50-0500","TIMOTHY BAISE",,,,,259,243,0,0,243,0,243,13,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","1","0","1",,,"1","0","1","1","0","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017122150P030701404784001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"THE BLACK & DECKER MEDICAL PROGRAM","507","1991-01-01","BLACK & DECKER U.S., INC.",,,"701 EAST JOPPA ROAD",,"TOWSON","MD","21286",,,,,,,,,,,,,,,,,,"521127357","4107163900","335900","BLACK & DECKER U.S., INC.",,"701 EAST JOPPA ROAD",,"TOWSON","MD","21286",,,,,,,"521127357","4107163900",,,,"2011-10-17T12:02:33-0500","ANDREW BOMBICK","2011-10-17T12:02:33-0500","ANDREW BOMBICK",,,9207,0,0,0,0,,,,,,,"4A4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017122925P040051384663001","2008-09-01","2008-12-31","2",,"0","1","0","1","0","0","0","0","0",,"STANBRIDGE ACADEMY RETIREMENT PLAN","001","1996-09-01","STANBRIDGE ACADEMY",,,"515 E. POPULAR AVENUE",,"SAN MATEO","CA","944011715",,,,,,,,,,,,,,,,,,"237379082","6503755864","611000","STANBRIDGE ACADEMY",,"515 E. POPULAR AVENUE",,"SAN MATEO","CA","944011715",,,,,,,"237379082","6503755864",,,,"2011-10-17T12:28:19-0500","ANNE BARROWS",,,,,,,,,0,,0,,,,"2L",,"1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017141628P040154980625001","2010-01-01","2010-12-31","2",,"0","0","1","0","1","1","0","0","0",,"AKZONOBEL CONSOLIDATED PENSION PLAN FOR EMPLOYEES OF ICI","013","1986-10-31","AKZONOBEL PAINTS LLC",,"C/O AKZONOBEL HR SHARED SERVICES","525 WEST VAN BUREN STREET",,"CHICAGO","IL","60607",,,,,,,,,,,,,,,,,,"510290518","3125447000","325500","AKZONOBEL PAINTS LLC","ICI GROUP SERVICES","10 FINDERNE AVENUE",,"BRIDGEWATER","NJ","08807",,,,,,,"510290518","3125447000",,,,"2011-10-17T14:16:19-0500","ERIK PIENKOS - AS PRACTITIONER",,,,,13602,0,0,0,0,0,0,,0,,"1A1G3H3J3F",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017121213P040695738240001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CEDAR CREEK LUMBER, INC. PROFIT SHARING PLAN","001","2001-12-31","CEDAR CREEK LUMBER",,,"450 NORTH MACARTHUR",,"OKLAHOMA CITY","OK","73127",,,,,,,,,,,,,,,,,,"731115609","4059178302","423300","CEDAR CREEK LUMBER",,"450 NORTH MACARTHUR",,"OKLAHOMA CITY","OK","73127",,,,,,,"731115609","4059178302",,,,"2011-10-17T12:11:51-0500","STEPHANIE BALLARD",,,,,70,70,0,0,70,0,70,70,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017123837P040154869777001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"THE PITMAN PLACE 401(K) PLAN","001","1998-03-01","PITMAN PLACE, LLC",,,"2515 PITMAN PL",,"PUEBLO","CO","810042633",,,,,,,,,,,,,,,,,,"841388916","7195640550","623000","PITMAN PLACE, LLC",,"2515 PITMAN PL",,"PUEBLO","CO","810042633",,,,,,,"841388916","7195640550",,,,"2011-10-17T12:38:32-0500","STEVE SILVA","2011-10-17T12:38:32-0500","STEVE SILVA",,,131,97,0,2,99,0,99,19,17,,"2E2F2G2J2K2T3D",,"1",,,,"1",,,,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017124016P040154871073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DERMOT 401(K) PLAN","001","2002-01-01","THE DERMOT COMPANY, INC.",,,"320 WEST 57TH STREET FL 5",,"NEW YORK","NY","100193705",,,,,,,"THE DERMOT COMPANY, INC.","729 SEVENTH AVENUE, 15TH FLOOR","NEW YORK","NY","10019",,,,,,,"200478103","2122621220","531310","THE DERMOT COMPANY, INC.",,"320 WEST 57TH STREET FL 5",,"NEW YORK","NY","100193705",,,,,,,"200478103","2122621220",,,,"2011-10-17T12:32:24-0500","WILLIAM DICKEY","2011-10-17T12:32:24-0500","WILLIAM DICKEY",,,171,159,28,,187,,187,67,,,"2E2F2G2J2K2R",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017130504P030701558928001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHERN PRIDE, INC. 401(K) PLAN AND TRUST","001","1993-10-01","NORTHERN PRIDE, INC.",,,"P.O. BOX 598",,"THIEF RIVER FALLS","MN","56701",,,,,,,"NORA AND PENNINGTON AVENUE",,"THIEF RIVER FALLS","MN","56701",,,,,,,"363617862","2186811201","311610","NORTHERN PRIDE, INC.",,"P.O. BOX 598",,"THIEF RIVER FALLS","MN","56701",,,,,,,"363617862","2186811201",,,,"2011-10-17T12:43:04-0500","TROY STAUFFENECKER",,,,,143,138,0,4,142,0,142,80,2,,"3D2E2F2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017131138P040023266850001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"ODWALLA INC. 401(K) PLAN","001","1990-12-01","ODWALLA, INC.",,,"120 STONE PINE RD",,"HALF MOON BAY","CA","94019",,,,,,,"120 STONE PINE RD",,"HALF MOON BAY","CA","94019",,,,,,,"770096788","8006392552","311400","THE COCA-COLA COMPANY BENEFITS COMMITTEE",,"P.O. BOX 1734",,"ATLANTA","GA","30301",,,,,,,"580628465","4046762121",,,,"2011-10-14T13:52:10-0500","SUSAN FLEMING",,,,,895,759,0,129,888,1,889,643,29,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017130119P030004527699001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEGGITT-USA, INC. 401(K) PLAN","001","1988-07-01","MEGGITT-USA, INC.",,,"1955 NORTH SURVEYOR AVE.",,"SIMI VALLEY","CA","930633386",,,,,,,,,,,,,,,,,,"953639799","8055265700","551112","MEGGITT-USA, INC.",,"1955 NORTH SURVEYOR AVE.",,"SIMI VALLEY","CA","930633386",,,,,,,"953639799","8055265700",,,,"2011-10-17T12:39:52-0500","ROBERT W. SOUKUP","2011-10-17T12:39:52-0500","ROBERT W. SOUKUP",,,3642,2270,0,1278,3548,19,3567,3371,113,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017130929P040154902753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRI-ARC FOOD SYSTEMS, INC. WELFARE BENEFITS PLAN","501","1995-01-01","TRI-ARC FOOD SYSTEMS, INC.",,,"901 JONES FRANKLIN ROAD, SUITE 100",,"RALEIGH","NC","276063374",,,,,,,,,,,,,,,,,,"561244973","9198591131","722110","TRI-ARC FOOD SYSTEMS, INC.",,"901 JONES FRANKLIN ROAD, SUITE 100",,"RALEIGH","NC","276063374",,,,,,,"561244973","9198591131",,,,"2011-10-17T12:54:45-0500","DOLORES DAVIS","2011-10-17T13:08:37-0500","TOMMY HADDOCK",,,386,973,0,0,973,,,,,,,"4A4B4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017142319P040051447799001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EVERETT & HURITE OPHTHALMIC ASSOCIATION 401(K) PROFIT SHARING PLAN","003","1996-01-01","EVERETT & HURITE OPHTHALMIC ASSOCIATION",,,"1835 FORBES AVENUE",,"PITTSBURGH","PA","15219",,,,,,,,,,,,,,,,,,"251253504","4122880885","621111","EVERETT & HURITE OPHTHALMIC ASSOCIATION",,"1835 FORBES AVENUE",,"PITTSBURGH","PA","15219",,,,,,,"251253504","4122880885",,,,"2011-10-17T14:21:29-0500","MARC HOFFMAN",,,,,95,72,0,25,97,0,97,97,7,,"2A2E2G2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017135852P030701748080001","2010-01-01","2010-12-31","4","M","1","1","0","0","0","0","0","0","0",,"NISOURCE UNION AMENDED AND RESTATED MEDICAL BENEFITS VEBA MASTER TRUST","002",,"NISOURCE, INC.",,,"801 EAST 86TH AVENUE",,"MERRILLVILLE","IN","46410",,,,,,,,,,,,,,,,,,"223203500","2198535200",,"NISOURCE, INC.",,"801 EAST 86TH AVENUE",,"MERRILLVILLE","IN","46410",,,,,,,"219853520","2198535200",,,,,,,,"2011-10-17T13:32:08-0500","ROBERT CAMPBELL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17",,"Filed with authorized/valid electronic signature", "20111017140021P040154964353001","2010-01-01","2010-12-31","2",,"0","1",,"0",,"1",,,,,"R A M ENTERPRISE INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","RAM ENTERPRISE INC.",,,"205 NE 181ST AVE",,"PORTLAND","OR","97230",,,,,,,,,,,,,,,,,,"931073692","5036181066","213110","RAM ENTERPRISE INC.",,"205 NE 181ST AVE",,"PORTLAND","OR","97230",,,,,,,"931073692","5036181066",,,,"2011-10-17T14:00:02-0500","RICHARD MILROY",,,,,131,132,0,7,139,0,139,48,3,,"2E2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","1","0",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017140559P040154969809001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"NECI RETIREMENT PLAN","001","1992-11-01","VERMONT HOSPITALITY MANAGEMENT INC.",,,"56 COLLEGE ST",,"MONTPELIER","VT","056023115",,,,,,,,,,,,,,,,,,"030273136","8022236324","611000","VERMONT HOSPITALITY MANAGEMENT INC.",,"56 COLLEGE ST",,"MONTPELIER","VT","056023115",,,,,,,"030273136","8022236324",,,,"2011-10-17T14:05:44-0500","GWILLIAM MECKERT","2011-10-17T14:05:44-0500","GWILLIAM MECKERT",,,333,244,0,48,292,0,292,103,20,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017122328P030022355010002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"EMPLOYEE BENEFIT PLAN OF CAPE COUNSELING SERVICES INC.","002","1979-03-01","CAPE COUNSELING SERVICES INC.",,,"1129 ROUTE 9 SOUTH, SUITE 1",,"CAPE MAY COURT HOUSE","NJ","08210",,,,,,,,,,,,,,,,,,"222226231","6094654066","624100","CAPE COUNSELING SERVICES INC.",,"1129 ROUTE 9 SOUTH, SUITE 1",,"CAPE MAY COURT HOUSE","NJ","08210",,,,,,,"222226231","6094654066",,,,"2011-10-14T13:01:19-0500","STEVEN B MARCHIANO",,,,,285,0,0,301,301,1,302,258,0,,"2C2F2G3D",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017124519P030701490128001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SMURFIT-STONE CONTAINER CORPORATION PRE-TAX FUNDING PLAN","559","1989-03-01","ROCKTENN CP, LLC",,,"SIX CITYPLACE DRIVE",,"CREVE COEUR","MO","63141",,,,,,,,,,,,,,,,,,"362041256","8777687348","322100","ROCKTENN CP, LLC",,"SIX CITYPLACE DRIVE",,"CREVE COEUR","MO","63141",,,,,,,"362041256","8777687348",,,,"2011-10-17T12:44:44-0500","JOHN STAKEL",,,,,1984,1803,0,,1803,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017124039P040154871633001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"BOISSET FAMILY ESTATES, INC. RETIREMENT SAVINGS PLAN","001","2010-01-01","BOISSET FAMILY ESTATES, INC.",,,"849 ZINFANDEL LANE",,"ST. HELENA","CA","94574",,,,,,,,,,,,,,,,,,"942681575","8008781123","312130","BOISSET FAMILY ESTATES, INC.",,"849 ZINFANDEL LANE",,"ST. HELENA","CA","94574",,,,,,,"942681575","8008781123",,,,"2011-10-17T12:36:15-0500","KELLEY NOWROUZ",,,,,111,104,1,8,113,0,113,71,3,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017124849P040154878961001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"AURORA HEALTH CARE VENTURES, INC. 401(K) SAVINGS PLAN","002","1990-09-01","AURORA HEALTH CARE VENTURES, INC.",,"EMPLOYEE BENEFITS","POST OFFICE BOX 343910",,"MILWAUKEE","WI","532343910",,,,,,,"3305 W. FOREST HOME AVENUE",,"MILWAUKEE","WI","53215",,,,,,,"391513129","4146473448","446110","KATHERINE KLOBUCHAR","AURORA HEALTH CARE, INC.","3305 WEST FOREST HOME AVENUE",,"MILWAUKEE","WI","53215",,,,,,,"391513129","4146743448",,,,"2011-10-17T12:47:19-0500","KATHERINE KLOBUCHAR",,,,,1192,879,69,139,1087,2,1089,928,0,,"2E2F2G2J3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017124348P030151261473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAULSBURY INDUSTRIES EMPLOYEE 401 K PLAN","001","1997-01-01","SAULSBURY ELECTRIC CO LTD",,,"5308 ANDREWS HIGHWAY",,"ODESSA","TX","79762",,,,,,,,,,,,,,,,,,"751278403","4323663686","238210","SAULSBURY ELECTRIC CO LTD",,"5308 ANDREWS HIGHWAY",,"ODESSA","TX","79762",,,,,,,"751278403","4323663686",,,,"2011-10-17T12:25:24-0500","JOHN HIGGINS",,,,,784,782,0,90,872,0,872,532,1,,"2E2F2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017125036P040154880849001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CHOICE PLAN","511","1989-01-01","THE ESTEE LAUDER COMPANIES, INC.",,,"767 FIFTH AVENUE","FLOOR 43","NEW YORK","NY","10153",,,,,,,"767 FIFTH AVENUE","FLOOR 43","NEW YORK","NY","10153",,,,,,,"112408943","2125724200","339900","THE ESTEE LAUDER COMPANIES, INC.",,"767 FIFTH AVENUE","FLOOR 43","NEW YORK","NY","10153",,,,,,,"112408943","2125724200",,,,"2011-10-17T10:50:40-0500","SUSAN MOSOFF",,,,,5471,5004,,,5004,0,5004,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017130714P030151282129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UBS PENSION PLAN","001","1969-07-01","UBS AG",,,"677 WASHINGTON BOULEVARD",,"STAMFORD","CT","069010300",,,,,,,,,,,,,,,,,,"980186363","2037190656","523900","UBS AG",,"677 WASHINGTON BOULEVARD",,"STAMFORD","CT","069010300",,,,,,,"980186363","2037190656",,,,"2011-10-17T12:44:32-0500","VINCENT RAIMONDI","2011-10-17T12:44:32-0500","VINCENT RAIMONDI",,,7167,1374,647,4906,6927,71,6998,,0,,"1A1C1G3F3H",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017140410P040051438135001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"MELZER & ASSOCIATES, CPA'S, PC PROFIT SHARING PLAN","001","2010-01-01","MELZER & ASSOCIATES, CPA'S, PC",,,"505 EIGHTH AVENUE","SUITE 701","NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"271232668","2128684244","541211","MELZER & ASSOCIATES, CPA'S, PC",,"505 EIGHTH AVENUE","SUITE 701","NEW YORK","NY","10018",,,,,,,"271232668","2128684244",,,,"2011-10-17T14:02:21-0500","LAWRENCE MELZER","2011-10-17T14:02:21-0500","LAWRENCE MELZER",,,0,6,0,0,6,0,6,6,0,,"2A2E2F2H2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017140419P030050669223001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"MEDICAL BENEFITS FOR HOUSTON PLANT HOURLY RETIREES","551","2009-01-01","THE GOODYEAR TIRE & RUBBER COMPANY",,,"1144 EAST MARKET STREET D/622C",,"AKRON","OH","443160001",,,,,,,,,,,,,,,,,,"340253240","3307962121","326200","THE GOODYEAR TIRE & RUBBER COMPANY",,"1144 EAST MARKET STREET D/622C",,"AKRON","OH","443160001",,,,,,,"340253240","3307962121",,,,"2011-10-17T13:59:44-0500","LAURA THOMPSON, VP FINANCE","2011-10-17T13:59:44-0500","LAURA THOMPSON, VP FINANCE",,,410,0,426,0,426,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017120627P040154836273001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"THE TODD SHIPYARDS CORPORATION SAVINGS INVESTMENT 401(K) PLAN","002","1984-07-01","TODD SHIPYARDS CORPORATION",,,"1801 16TH AVE SW",,"SEATTLE","WA","981341017",,,,,,,,,,,,,,,,,,"911506719","2066231635","336610","TODD SHIPYARDS CORPORATION",,"1801 16TH AVE SW",,"SEATTLE","WA","981341017",,,,,,,"911506719","2066231635",,,,"2011-10-17T12:06:24-0500","AARON WOFFORD","2011-10-17T12:06:24-0500","AARON WOFFORD",,,246,239,0,49,288,3,291,184,5,,"2E2F2G2J2K2R2T3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017121608P030151235345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MADISON CORTLAND RETIREMENT PLAN","003","1995-01-01","MADISON CORTLAND CHAPTER NYSARC, INC.",,,"701 LENOX AVE",,"ONEIDA","NY","13421",,,,,,,,,,,,,,,,,,"160958020","3153633389","813000","MADISON CORTLAND CHAPTER NYSARC, INC.",,"701 LENOX AVE",,"ONEIDA","NY","13421",,,,,,,"160958020","3153633389",,,,"2011-10-17T11:57:00-0500","JOHN MARTIN","2011-10-17T11:57:00-0500","JOHN MARTIN",,,551,430,0,125,555,3,558,445,23,,"2A2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017151613P040023295122003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"G-P DISTRIBUTING INC 401K PLAN","001","1990-06-15","G-P DISTRIBUTING INC",,,"3112 5TH AVE S",,"FORT DODGE","IA","50501",,,,,,,"3112 5TH AVE S",,"FORT DODGE","IA","50501",,,,,,,"421325698","5155734233","444130","G-P DISTRIBUTING INC",,"3112 5TH AVE S",,"FORT DODGE","IA","50501",,,,,,,"421325698","5155734233",,,,"2011-10-15T09:27:25-0500","JAMES SCHMIDT",,,,,73,50,,23,73,,73,73,,,"2E2G2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017143113P040154999617021","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MORGAN PEDIATRIC GROUP LLC 401K PLAN","001","2003-01-01","MORGAN PEDIATRIC GROUP, PLLC",,,"741 PRESIDENT PLACE SUITE 210",,"SMYRNA","TN","37167",,,,,,,,,,,,,,,,,,"200412784","6152235565","621111","MORGAN PEDIATRIC GROUP PLLC",,"741 PRESIDENT PLACE SUITE 210",,"SMYRNA","TN","37167",,,,,,,"200412784","6152235565",,,,"2011-10-17T13:35:56-0500","CATHERINE BOTTOMS MD",,,,,13,10,4,,14,,14,14,,,"3B2K2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017143220P040155001089001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"PARKSHORE WEALTH MANAGEMENT 401(K) PROFIT SHARING PLAN","001","2009-01-01","PARKSHORE WEALTH MANAGEMENT",,,"3007 DOUGLAS BOULEVARD, SUITE 150",,"ROSEVILLE","CA","95661",,,,,,,,,,,,,,,,,,"263011938","9167973007","523900","PARKSHORE WEALTH MANAGEMENT",,"3007 DOUGLAS BOULEVARD, SUITE 150",,"ROSEVILLE","CA","95661",,,,,,,"263011938","9167973007","PRINCIPLE WEALTH MANAGEMENT","263011938","001","2011-10-17T03:31:52-0500","HAROLD C. ANDERSON, CFP",,,,,2,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017145922P030004532211001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WOOD RESOURCES EMPLOYEE SAVINGS PLAN","001","2003-04-05","WR OPERATING LLC",,,"204 E. RAILROAD AVENUE",,"SHELTON","WA","98584",,,,,,,"P.O. BOX 640",,"SHELTON","WA","98584",,,,,,,"611434424","3604325000","321210","WR OPERATING LLC",,"204 E. RAILROAD AVENUE",,"SHELTON","WA","98584",,,,,,,"611434424","3604325000",,,,"2011-10-17T14:37:17-0500","ERIC LARSEN","2011-10-17T14:37:17-0500","ERIC LARSEN",,,345,323,0,42,365,0,365,267,18,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017133023P030151305665016","2010-01-01","2010-12-31","2",,,"1",,,,,"1",,,,"MARTIN SCHULMAN MD KEOGH PLAN","001","1984-01-01","MARTIN F SCHULMAN PHD MD",,,"75 ESSEX ST",,"HACKENSACK","NJ","076014036",,,,,,,,,,,,,,,,,,"222313136","2014890440","621111","MARTIN F SCHULMAN PHD MD",,"75 ESSEX ST",,"HACKENSACK","NJ","076014036",,,,,,,"222313136","2014890440",,,,"2011-10-17T14:28:20-0500","MARTIN SCHULMAN, MD",,,,,3,3,0,0,3,0,3,3,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017134452P030151321361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JENNIFER VOSS PROFIT SHARING 401K PLAN","001","2008-07-01","JENNIFER VOSS",,,"342 KENMORE DR",,"BAY VILLAGE","OH","44140",,,,,,,"342 KENMORE DR",,"BAY VILLAGE","OH","44140",,,,,,,"900538935","4402138644","541990","JENNIFER VOSS",,"342 KENMORE DR",,"BAY VILLAGE","OH","44140",,,,,,,"900538935","4402138644",,,,"2011-10-17T13:25:33-0500","SANDRA RAPSON",,,,,1,1,0,0,1,0,1,1,0,,"2E2F2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017150030P030701974176013","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THOMAS E. DAMUTH, M.D., P.C. EMPLOYEES PROFIT SHARING PLAN","003","1992-01-01","NORTHEAST MICHIGAN PULMONARY ASSOC",,,"800 COOPER, SUITE 4",,"SAGINAW","MI","48602",,,,,,,,,,,,,,,,,,"382322061","9897539200","621111","NORTHEAST MICHIGAN PULMONARY ASSOC",,"800 COOPER, SUITE 4",,"SAGINAW","MI","48602",,,,,,,"382322061","9897539200",,,,"2011-10-17T08:42:59-0500","THOMAS E. DAMUTH, M.D.",,,,,15,16,0,0,16,0,16,16,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017150720P030050706407001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE URBAN LEAGUE OF METROPOLITAN ST. LOUIS, INC. EMPLOYEES PENSION PLAN","001","1986-07-01","URBAN LEAGUE OF METROPOLITAN ST. LOUIS",,,"3701 GRANDEL SQUARE",,"ST. LOUIS","MO","631083627",,,,,,,,,,,,,,,,,,"430653605","3146153600","813000","URBAN LEAGUE OF METROPOLITAN ST. LOUIS",,"3701 GRANDEL SQUARE",,"ST. LOUIS","MO","631083627",,,,,,,"430653605","3146153600",,,,"2011-10-17T14:28:28-0500","LORI BURCH",,,,,314,165,10,151,326,2,328,,7,,"1A1G3D",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017143537P040155004705001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CARMINES BAKERY LLC 401(K) PROFIT SHARING PLAN & TRUST","001","1999-01-01","CARMINES BAKERY LLC",,,"2100 COUNTRY CLUB ROAD",,"SANFORD","FL","32771",,,,,,,,,,,,,,,,,,"593578064","4073241200","722300","CARMINES BAKERY LLC",,"2100 COUNTRY CLUB ROAD",,"SANFORD","FL","32771",,,,,,,"593578064","4073241200",,,,"2011-10-17T14:35:01-0500","DENISE CLARK",,,,,291,257,0,51,308,0,308,126,1,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","1","0",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017133531P040154935105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PIASA PAIN CENTER, L.L.C. 401(K) PROFIT SHARING PLAN","001","2007-04-01","PIASA PAIN CENTER, LLC",,,"3 PROFESSIONAL DRIVE",,"ALTON","IL","62002",,,,,,,,,,,,,,,,,,"208627466","6184657177","621111","PIASA PAIN CENTER, LLC",,"3 PROFESSIONAL DRIVE",,"ALTON","IL","62002",,,,,,,"208627466","6184657177",,,,"2011-10-17T13:34:27-0500","WYNNDEL BUENGER MD",,,,,24,24,0,0,24,0,24,14,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017131729P030151291265001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NASRI N. GHALY M.D. PROFIT SHARING PLAN","005","1993-01-01","NASRI N. GHALY M.D.",,,"614 SOUTH SALINA STREET",,"SYRACUSE","NY","13202",,,,,,,"614 SOUTH SALINA STREET",,"SYRACUSE","NY","13202",,,,,,,"161286542","3154250599","621111","NASRI N. GHALY M.D.",,"614 SOUTH SALINA STREET",,"SYRACUSE","NY","13202",,,,,,,"161286542","3154250599",,,,"2011-10-17T06:02:47-0500","NASRI GHALY","2011-10-17T06:02:47-0500","NASRI GHALY",,,8,6,,2,8,,8,8,,,"2E2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017135118P040023274018002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE JEWELERS, INC. 401(K) PROFIT SHARING PLAN","002","1999-01-01","THE JEWELERS INC",,,"2400 WESTERN AVENUE",,"LAS VEGAS","NV","89102",,,,,,,,,,,,,,,,,,"880138626","7023827411","448310","THE JEWELERS INC",,"2400 WESTERN AVENUE",,"LAS VEGAS","NV","89102",,,,,,,"880138626","7023827411",,,,"2011-10-17T02:51:06-0500","MORDECHAI YERUSHALMI",,,,,133,92,0,30,122,0,122,79,0,,"2E2F2G2J2K3D",,"1",,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017144531P040696357296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VELOCITY CREDIT UNION PENSION PLAN","012","2004-01-01","VELOCITY CREDIT UNION",,,"PO BOX 1089",,"AUSTIN","TX","78767",,,,,,,"610 E 11TH ST",,"AUSTIN","TX","78701",,,,,,,"741200165","5122259127","522130","VELOCITY CREDIT UNION",,"PO BOX 1089",,"AUSTIN","TX","78767",,,,,,,"741200165","5122259127",,,,"2011-10-17T13:26:52-0500","DEBBIE MITCHELL",,,,,212,181,9,34,224,2,226,,4,,"1A1G",,"1",,,,"1",,,,"1",,"1","1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017134719P030151324193001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PRE FINISH METALS, INC. PENSION PLAN FOR HOURLY-PAID EMPLOYEES AT THE MORRISVILLE PLANT","005","1983-11-01","PRE-FINISH METALS, INC.",,,"2200 EAST PRATT BLVD.",,"ELK GROVE VILLAGE","IL","60007",,,,,,,,,,,,,,,,,,"232261319","8474392210","332110","PRE-FINISH METALS, INC.",,"2200 EAST PRATT BLVD.",,"ELK GROVE VILLAGE","IL","60007",,,,,,,"232261319","8474392210",,,,"2011-10-17T13:19:08-0500","TERESA GRILLI","2011-10-17T13:09:07-0500","JEFF BOWEN",,,80,0,19,61,80,0,80,,,,"1B1G1I",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017145941P040155036113001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATLANTIC INSULATION, INC. ESOP PLAN","001","1988-01-01","ATLANTIC INSULATION, INC.",,,"3525 IONIA STREET",,"JACKSONVIL","FL","32206",,,,,,,,,,,,,,,,,,"592460972","9043542217","238300","ATLANTIC INSULATION, INC.",,"3525 IONIA STREET",,"JACKSONVIL","FL","32206",,,,,,,"592460972","9043542217",,,,"2011-10-17T14:59:40-0500","RICHARD K. WHITLOCK","2011-10-17T14:59:40-0500","RICHARD K. WHITLOCK",,,86,61,9,24,94,1,95,64,0,,"2O2H",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017151615P040696490256001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"STX CADWARE, INC. 401(K) PLAN","001","2004-01-01","STX CADWARE, INC.",,,"4414 COUNTY ROAD 211",,"GAINESVILLE","TX","76240",,,,,,,,,,,,,,,,,,"752390900","9406123783","541511","STX CADWARE, INC.",,"4414 COUNTY ROAD 211",,"GAINESVILLE","TX","76240",,,,,,,"752390900","9406123783",,,,"2011-10-17T15:12:25-0500","DAVID TRUTY",,,,,10,1,0,9,10,0,10,10,0,,"2A2E2F2G2J2K2T3D3F",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017142425P040023280690004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"R. J. CORMAN SAVINGS RETIREMENT PLAN","001","1992-01-01","R. J. CORMAN RAILROAD CONSTRUCTION",,,"PO BOX 788",,"NICHOLASVILLE","KY","40356",,,,,,,,,,,,,,,,,,"610893327","8598859457","237990","R. J. CORMAN RAILROAD CONSTRUCTION",,"PO BOX 788",,"NICHOLASVILLE","KY","40356",,,,,,,"610893327","8598859457",,,,"2011-10-17T10:12:36-0500","KEN ADAMS",,,,,758,766,4,33,803,1,804,444,37,,"2E2G2J3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017144914P030151391025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BAYSHORE COMMUNITY HOSPITAL EMPLOYEES' RETIREMENT PLAN","001","1975-01-01","BAYSHORE COMMUNITY HOSPITAL",,,"727 NORTH BEERS STREET",,"HOLMDEL","NJ","077331598",,,,,,,,,,,,,,,,,,"210744668","7327395900","622000","BAYSHORE COMMUNITY HOSPITAL",,"727 NORTH BEERS STREET",,"HOLMDEL","NJ","077331598",,,,,,,"210744668","7327395900",,,,"2011-10-17T14:22:28-0500","SHERRIE J. STRING","2011-10-17T14:22:28-0500","SHERRIE J. STRING",,,1059,363,275,381,1019,29,1048,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017143018P030151366481017","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"POOL MAINTENANCE & SUPPLY, INC PROFIT SHARING PLAN","001","1990-01-01","POOL MAINTENANCE & SUPPLY, INC",,,"1406 CLERMONT DRIVE",,"BIRMINGHAM","AL","35209",,,,,,,,,,,,,,,,,,"630821685","2058704221","238900","POOL MAINTENANCE & SUPPLY, INC",,"1406 CLERMONT DRIVE",,"BIRMINGHAM","AL","35209",,,,,,,"630821685","2058704221",,,,"2011-10-17T12:00:15-0500","SAM STAPLES",,,,,2,2,0,0,2,0,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132614P040023269314001","2010-01-01","2010-12-31","2",,"1","1",,,,,"1",,,,"NEW MEXICO GAS COMPANY, INC. EDUCATIONAL ASSISTANCE PLAN","504","2008-11-01","NEW MEXICO GAS COMPANY",,,"7120 WYOMING NE","SUITE 20","ALBUQUERQUE","NM","87109",,,,,,,,,,,,,,,,,,"262145114","5057983315","221210","NEW MEXICO GAS COMPANY",,"7120 WYOMING NE","SUITE 20","ALBUQUERQUE","NM","87109",,,,,,,"262145114","5057983315",,,,"2011-10-17T14:05:51-0500","ELIZABETH KIBLER","2011-10-17T14:05:58-0500","RYAN SHELL",,,745,744,,,744,,744,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017135341P040154957281001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UMPCO, INC","001","1974-08-31","UMPCO, INC",,,"7100 LAMPSON","P.O. BOX 5158","GARDEN GROVE","CA","928413914",,,,,,,,,,,,,,,,,,"952431216","7148973536","332510","UMPCO, INC",,"7100 LAMPSON","P.O. BOX 5158","GARDEN GROVE","CA","928413914",,,,,,,"952431216","7148973536",,,,"2011-10-17T12:15:45-0500","ROBERT DAVIS","2011-10-17T12:15:45-0500","ROBERT DAVIS",,,124,85,0,9,94,0,94,,4,,"1A1G",,,,"1",,,,"1",,"1",,"1","1",,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017135358P040154957505001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"VERSACE USA INC 401(K) PROFIT SHARING PLAN & TRUST","001","1992-01-01","VERSACE USA INC",,,"200 MADISON AVE","21ST FLOOR SUITE 2101","NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"133189269","2127359008","448190","VERSACE USA INC",,"200 MADISON AVE","21ST FLOOR SUITE 2101","NEW YORK","NY","10016",,,,,,,"133189269","2127359008",,,,"2011-10-17T13:53:25-0500","SHERRELL ABNEY",,,,,138,68,0,39,107,0,107,83,0,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"1","0","0","0","1","0",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017134957P030151326385001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"INTERNATIONAL PAPER COMPANY SALARIED SAVINGS PLAN","007","1992-07-01","INTERNATIONAL PAPER COMPANY",,,"6400 POPLAR AVENUE",,"MEMPHIS","TN","38197",,,,,,,,,,,,,,,,,,"130872805","9014199000","322100","SVP - HUMAN RESOURCES INTERNATIONAL PAPER COMPANY","C/O EMPLOYEE BENEFITS","6400 POPLAR AVENUE",,"MEMPHIS","TN","38197",,,,,,,"132912565","9014199000",,,,"2011-10-17T13:22:17-0500","MARK LEHMAN","2011-10-17T12:57:15-0500","CHRISTOPHER BRUCKS",,,30449,16672,5079,7251,29002,221,29223,28062,283,,"2H2J2K2R3H2E2F2O2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017145945P030151409185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EXQUISITA TORTILLAS INC. EMPLOYEES 401K PROFIT SHARING PLAN","001","2001-07-01","EXQUISITA TORTILLAS INC.",,,"700 WEST CHAPIN",,"EDINBURG","TX","78541",,,,,,,,,,,,,,,,,,"742399861","9563836712","311800","EXQUISITA TORTILLAS INC.",,"700 WEST CHAPIN",,"EDINBURG","TX","78541",,,,,,,"742399861","9563836712",,,,"2011-10-17T14:36:41-0500","CARLOS PONCE","2011-10-17T14:36:41-0500","CARLOS PONCE",,,130,105,0,12,117,0,117,66,3,,"2E2F2G2J2K3D3H2T",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017151617P040023295186003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KVI ASSOCIATES, INC. SAVINGS AND RETIREMENT PLAN","001","1991-01-01","KVI ASSOCIATES, INC.",,,"15504 SPAULDING PLAZA, STE C8",,"OMAHA","NE","68116",,,,,,,,,,,,,,,,,,"470721501","4024962600","531390","KVI ASSOCIATES, INC.",,"15504 SPAULDING PLAZA, STE C8",,"OMAHA","NE","68116",,,,,,,"470721501","4024962600",,,,"2011-10-17T09:55:28-0500","JOHN DANIELSON",,,,,11,11,,,11,,11,4,,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017143239P040155001457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRUSSWAY, LTD. 401K PLAN","001","1997-08-01","TRUSSWAY HOLDINGS, INC.",,,"9411 ALCORN ST.",,"HOUSTON","TX","770936753",,,,,,,,,,,,,,,,,,"841316293","7135908866","238900","TRUSSWAY, LTD.",,"9411 ALCORN ST.",,"HOUSTON","TX","770936753",,,,,,,"841316292","7135908866",,,,"2011-10-17T14:32:38-0500","LAURA MILLER",,,,,666,332,0,273,605,0,605,418,8,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017143241P040155001505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOFFMAN HOMES, INC. RETIREMENT INCOME PLAN","001","1970-01-02","HOFFMAN HOMES, INC.",,,"P. O. BOX 4777",,"GETTYSBURG","PA","173254777",,,,,,,,,,,,,,,,,,"232732296","7173597148","624100","HOFFMAN HOMES, INC.",,"P. O. BOX 4777",,"GETTYSBURG","PA","173254777",,,,,,,"232732296","7173597148",,,,"2011-10-17T14:24:50-0500","AMY TEAL",,,,,271,50,52,153,255,11,266,,0,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017143416P040696311104001","2010-10-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"AMSTED RAIL-FAIVELEY, LLC GROUP LIFE & DISABILITY PLAN","502","2010-10-01","AMSTED RAIL-FAIVELEY, LLC",,,"PO BOX 9377",,"GREENVILLE","SC","296049377",,,,,,,,,,,,,,,,,,"300644582","8642775000","336990","AMSTED RAIL-FAIVELEY, LLC",,"PO BOX 9377",,"GREENVILLE","SC","296049377",,,,,,,"300644582","8642775000",,,,"2011-10-17T14:32:24-0500","DEBBIE GREAVES",,,,,103,104,0,0,104,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017143025P040154998769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MENDELSON, FOER & HARRISON DENTAL ASSOCIATES 401K PLAN","001","2002-01-01","MENDELSON, FOER & HARRISON DENTAL ASSOCIATES",,,"4824 E TRINDLE RD",,"MECHANICSBURG","PA","170503617",,,,,,,,,,,,,,,,,,"232386648","7177618056","621210","MENDELSON, FOER & HARRISON DENTAL ASSOCIATES",,"4824 E TRINDLE RD",,"MECHANICSBURG","PA","170503617",,,,,,,"232386648","7177618056",,,,"2011-10-17T14:30:24-0500","C. RICHARD HARRISON",,,,,22,20,0,1,21,0,21,21,0,,"2E2G2J2K2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017135144P040023274082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SEATON CORPORATION 401(K) PLAN AND TRUST","001","1995-01-01","SEATON CORPORATION",,,"860 WEST EVERGREEN",,"CHICAGO","IL","606220000",,,,,,,,,,,,,,,,,,"363597186","3129150700","541990","SEATON CORPORATION",,"860 WEST EVERGREEN",,"CHICAGO","IL","606220000",,,,,,,"363597186","3129150700",,,,"2011-10-17T13:41:06-0500","DOUGLAS M BLACK","2011-10-17T13:41:06-0500","DOUGLAS M BLACK",,,441,383,0,74,457,0,457,272,41,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017143709P040011464069001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASSOCIATED BANC-CORP GROUP HEALTH PLAN","501","1978-01-01","ASSOCIATED BANC-CORP",,,"1200 HANSEN ROAD","MS 8007","GREEN BAY","WI","543045448",,,,,,,,,,,,,,,,,,"391098068","9204917000","522110","ASSOCIATED BANC-CORP",,"1200 HANSEN ROAD","MS 8007","GREEN BAY","WI","543045448",,,,,,,"391098068","9204917000",,,,"2011-10-17T14:34:24-0500","KATEY SMITH",,,,,3656,3686,71,0,3757,,,,,,,"4A4D","1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017144246P040023285330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COASTAL BRIDGE COMPANY, LLC 401K PLAN","001","1995-06-01","COASTAL BRIDGE COMPANY, LLC",,,"PO BOX 14715",,"BATON ROUGE","LA","708984715",,,,,,,,,,,,,,,,,,"720858086","2257660244","237310","COASTAL BRIDGE COMPANY, LLC",,"PO BOX 14715",,"BATON ROUGE","LA","708984715",,,,,,,"720858086","2257660244",,,,"2011-10-17T14:40:53-0500","ROBERT C. OVERALL, JR",,,,,145,141,0,2,143,0,143,91,3,,"2E2F2G2J2K2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132157P030022364786001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"BAPTIST HEALTH CARE CORPORATION 401(K) PLAN","001","2010-01-01","BAPTIST HEALTH CARE CORPORATION",,,"1000 WEST MORENO STREET",,"PENSACOLA","FL","32501",,,,,,,,,,,,,,,,,,"592874324","8504692195","622000","BAPTIST HEALTH CARE CORPORATION",,"1000 WEST MORENO STREET",,"PENSACOLA","FL","32501",,,,,,,"592874324","8504692195",,,,"2011-10-17T12:56:50-0500","STEVE INFINGER","2011-10-17T12:56:51-0500","STEVE INFINGER",,,192,208,1,19,228,0,228,222,28,,"2E2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017134321P040154945553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AETNA RETIREMENT INCOME PLAN","012","1968-02-02","AZ AUTOMOTIVE CORP.",,,"24331 SHERWOOD",,"CENTER LINE","MI","48015",,,,,,,"24331 SHERWOOD",,"CENTER LINE","MI","48015",,,,,,,"460471323","5867592200","332900","AZ AUTOMOTIVE CORP.",,"24331 SHERWOOD",,"CENTER LINE","MI","48015",,,,,,,"460471323","5867592200",,,,"2011-10-17T13:03:11-0500","SHERYL MCGOWAN",,,,,399,79,37,281,397,0,397,,2,,"1B1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132629P030151300801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TERILLIUM, INC. 401K PLAN","001","2002-01-01","TERILLIUM, INC.",,,"201 EAST 5TH STREET, SUITE 2700",,"CINCINNATI","OH","452024180",,,,,,,,,,,,,,,,,,"311728673","5136219500","541519","TERILLIUM, INC.",,"201 EAST 5TH STREET, SUITE 2700",,"CINCINNATI","OH","452024180",,,,,,,"311728673","5136219500",,,,"2011-10-17T13:00:08-0500","PAM BACH",,,,,127,82,0,33,115,0,115,92,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132846P040154928017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"M.J. MANAGEMENT SERVICES, INC. 401(K) PROFIT SHARING PLAN","001","1998-01-01","M.J. MANAGEMENT SERVICES, INC.",,,"2525 WEST JEFFERSON",,"TRENTON","MI","48183",,,,,,,,,,,,,,,,,,"383304110","7346755505","561300","M.J. MANAGEMENT SERVICES, INC.",,"2525 WEST JEFFERSON",,"TRENTON","MI","48183",,,,,,,"383304110","7346755505",,,,"2011-10-17T13:26:35-0500","KATHLEEN WITUCKI","2011-10-17T13:26:35-0500","KATHLEEN WITUCKI",,,325,132,0,109,241,0,241,191,0,,"2E2F2G2J2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017132858P040154928225001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"LEHMAN COMMUNICATIONS CORPORATION 401 (K) SAVINGS PLAN","001","1990-06-01","LEHMAN COMMUNICATIONS",,,"P. O. BOX 299",,"LONGMONT","CO","80502",,,,,,,"350 TERRY STREET",,"LONGMONT","CO","80502",,,,,,,"840336810","3037762244","511110","LEHMAN COMMUNICATIONS",,"P. O. BOX 299",,"LONGMONT","CO","80502",,,,,,,"840336810","3037762244",,,,"2011-10-17T13:27:13-0500","ANNE LEHMAN",,,,,319,259,3,56,318,1,319,275,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017134221P030701688352001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ART CENTER OF DESIGN RETIREMENT PLAN","002","1989-01-01","ART CENTER COLLEGE OF DESIGN",,,"1700 LIDA STREET",,"PASADENA","CA","91103",,,,,,,,,,,,,,,,,,"951921340","6263962210","611000","ART CENTER COLLEGE OF DESIGN",,"1700 LIDA STREET",,"PASADENA","CA","91103",,,,,,,"951921340","6263962210",,,,"2011-10-17T13:13:30-0500","NANCY TORRES DUGGAN",,,,,343,306,1,58,365,0,365,282,6,,"2C2F2G2T2R",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017145047P030024912934001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAGO CONSTRUCTION CO., LLC 401(K) PROFIT SHARING/SAVINGS PLAN","002","1991-01-01","MAGO CONSTRUCTION CO., LLC",,,"PO BOX 669",,"BARDSTOWN","KY","40004",,,,,,,,,,,,,,,,,,"610543739","5023483953","237310","MAGO CONSTRUCTION CO., LLC",,"PO BOX 669",,"BARDSTOWN","KY","40004",,,,,,,"610543739","5023483953",,,,"2011-10-17T14:23:34-0500","DANA KNOWLES",,,,,195,159,0,22,181,0,181,171,2,,"2E2F2G2J2K2T3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017142851P030151364833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUMMIT ENERGY FSA","501","2008-01-01","SUMMIT ENERGY SERVICES, INC.",,,"10350 ORMSBY PARK PLACE, SUITE 400",,"LOUISVILLE","KY","40223",,,,,,,,,,,,,,,,,,"611211144","5024293800","424700","SUMMIT ENERGY SERVICES, INC.",,"10350 ORMSBY PARK PLACE, SUITE 400",,"LOUISVILLE","KY","40223",,,,,,,"611211144","5024293800",,,,"2011-10-17T13:56:23-0500","TAMMY KESSLER","2011-10-17T13:56:23-0500","TAMMY KESSLER",,,592,593,0,0,593,,,,,,,"4A4B4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017142956P040023282002001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LEONARD I ROSENBERG, PC PROFIT SHARING PLAN","001","1981-11-01","LEONARD I ROSENBERG PC",,,"5402 KENILWORTH AVENUE",,"RIVERDALE","MD","20737",,,,,,,,,,,,,,,,,,"521232792","9543368314","541190","LEONARD I ROSENBERG PC",,"5402 KENILWORTH AVENUE",,"RIVERDALE","MD","20737",,,,,,,"521232792","9543368314",,,,"2011-10-17T09:46:02-0500","LEONARD I ROSENBERG",,,,,2,2,,,2,,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132959P040154929089001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"IMAGIMED 401(K) PROFIT SHARING PLAN","001","2006-01-01","IMAGIMED LLC",,,"9601 BLACKWELL RD STE 275",,"ROCKVILLE","MD","208506492",,,,,,,,,,,,,,,,,,"020655880","3012517897","621310","IMAGIMED LLC",,"9601 BLACKWELL RD STE 275",,"ROCKVILLE","MD","208506492",,,,,,,"020655880","3012517897","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-10-17T13:26:32-0500","TERESA LONGER","2011-10-17T13:28:07-0500","SCOTT BUCHANAN",,,135,119,0,3,122,0,122,73,0,,"2E2F2G2J2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017133246P030151307361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE MEMORIAL HOSPITAL 403(B) PLAN","001","1982-07-01","THE MEMORIAL HOSPITAL OF NORTH CONWAY, NH",,,"3073 WHITE MOUNTAIN HIGHWAY","P.O.BOX 5001","NORTH CONWAY","NH","03860",,,,,,,,,,,,,,,,,,"020222156","6033565461","622000","THE MEMORIAL HOSPITAL OF NORTH CONWAY, NH",,"3073 WHITE MOUNTAIN HIGHWAY","P.O.BOX 5001","NORTH CONWAY","NH","03860",,,,,,,"020222156","6033565461",,,,"2011-10-17T13:01:26-0500","SCOTT MCKINNON",,,,,406,320,0,80,400,0,400,393,0,,"2E2F2G2M2T3D3F2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017133248P040696056048001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"HEALTHCARE PARTNERS MEDICAL GROUP, INC. 401(K) RETIREMENT PLAN","003","1989-01-04","HEALTHCARE PARTNERS MEDICAL GROUP, INC.",,,"19191 S. VERMONT AVE","SUITE 200","TORRANCE","CA","90502",,,,,,,"19191 S. VERMONT AVE","SUITE 200","TORRANCE","CA","90502",,,,,,,"954340584","2136233065","621491","HEALTHCARE PARTNERS MEDICAL GROUP, INC.",,"19191 S. VERMONT AVE","SUITE 200","TORRANCE","CA","90502",,,,,,,"954340584","2136233065",,,,"2011-10-17T13:31:28-0500","MATTHEW MAZDYASNI",,,,,3631,3021,5,432,3458,9,3467,2173,25,,"2E2F2G2J2K2T3F3H2R",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017135557P040023274802001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TCW TRENDS, INC DEFINED BENEFIT PENSION PLAN","001","2003-01-01","TCW TRENDS, INC.",,,"2886 COLUMBIA STREET",,"TORRANCE","CA","90503",,,,,,,,,,,,,,,,,,"954845798","3105335177","441300","TCW TRENDS, INC.",,"2886 COLUMBIA STREET",,"TORRANCE","CA","90503",,,,,,,"954845798","3105335177",,,,"2011-10-17T13:46:40-0500","BRIDGETTE ASUNCION",,,,,18,14,0,3,17,0,17,,0,,"1A1G1I",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","6","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017150010P040155036849001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"INDIAN HEALTH CARE HEALTH PLAN","501","1978-01-01","INDIAN HEALTH CARE RESOURCES CENTER FOR TULSA, INC.",,,"550 SOUTH PEORIA",,"TULSA","OK","74120",,,,,,,,,,,,,,,,,,"731042545","9185881900","622000","INDIAN HEALTH CARE RESOURCES CENTER FOR TULSA, INC.",,"550 SOUTH PEORIA",,"TULSA","OK","74120",,,,,,,"731042545","9185881900",,,,"2011-10-17T14:59:06-0500","HOGANTAYLOR LLP PREPARER",,,,,100,98,2,0,100,,,,,,,"4A4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017145059P030151393873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE HALL MARINE GROUP 401(K) PLAN","001","1999-10-01","LAKE WYLIE MARINA, INC.",,,"310 BLUCHER CIRCLE",,"LAKE WYLIE","SC","29710",,,,,,,,,,,,,,,,,,"570644388","8038312101","441222","LAKE WYLIE MARINA, INC.",,"310 BLUCHER CIRCLE",,"LAKE WYLIE","SC","29710",,,,,,,"570644388","8038312101",,,,"2011-10-17T14:24:09-0500","JEFF HALL",,,,,131,76,0,28,104,1,105,89,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017150345P040155040497001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"MELALEUCA, INC 401(K) SAVINGS PLAN AND TRUST","001","1994-01-01","MELALEUCA, INC",,,"3910 S YELLOWSTONE HWY",,"IDAHO FALLS","ID","834024342",,,,,,,,,,,,,,,,,,"820399405","2085220700","454390","MELALEUCA, INC",,"3910 S YELLOWSTONE HWY",,"IDAHO FALLS","ID","834024342",,,,,,,"820399405","2085220700",,,,"2011-10-17T15:03:30-0500","THOMAS KNUTSON","2011-10-17T15:03:30-0500","THOMAS KNUTSON",,,3054,0,0,0,0,0,0,0,251,,"2E2F2G2J2K2S2T",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017143625P040155006033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MDXHEALTH, INC. 401(K) PLAN","001","2003-09-23","MDXHEALTH, INC. ATTN JOSEPH RAINER SOLLEE",,,"2505 MERIDIAN PKWY STE 310",,"DURHAM","NC","27713",,,,,,,,,,,,,,,,,,"470916074","9192810980","541700","MDXHEALTH, INC. ATTN JOSEPH RAINER SOLLEE",,"2505 MERIDIAN PKWY STE 310",,"DURHAM","NC","27713",,,,,,,"470916074","9192810980",,,,"2011-10-17T14:32:25-0500","JOSEPH SOLLEE",,,,,10,6,0,5,11,0,11,11,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017145834P040155034785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DESIGNWORKS, INC. 401(K) PLAN","001","2008-02-01","DESIGNWORKS",,,"526 SAINT JOSEPH STREET","SUITE B","RAPID CITY","SD","57701",,,,,,,,,,,,,,,,,,"460435220","6053940394","541320","DESIGNWORKS",,"526 SAINT JOSEPH STREET","SUITE B","RAPID CITY","SD","57701",,,,,,,"460435220","6053940394",,,,"2011-10-17T14:58:18-0500","RANDAL FISHER",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017133458P030151309185001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GROUP LONG TERM DISABILITY PLAN","503","1979-09-01","HOLME ROBERTS & OWEN LLP",,,"1700 LINCOLN STREET, SUITE 4100",,"DENVER","CO","802034541",,,,,,,,,,,,,,,,,,"840415155","3038617000","541110","HOLME ROBERTS & OWEN LLP",,"1700 LINCOLN STREET, SUITE 4100",,"DENVER","CO","802034541",,,,,,,"840415155","3038617000",,,,"2011-10-17T08:52:05-0500","SHELLY C. CELIUS","2011-10-17T08:52:05-0500","SHELLY C. CELIUS",,,448,426,0,0,426,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017134529P030022369490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PROSKAUER ROSE LLP SAVINGS PLAN FOR ASSOCIATES","036","1985-01-01","PROSKAUER ROSE LLP",,,"ELEVEN TIMES SQUARE",,"NEW YORK","NY","100368299",,,,,,,,,,,,,,,,,,"131840454","2129693000","541110","PROSKAUER ROSE LLP",,"ELEVEN TIMES SQUARE",,"NEW YORK","NY","100368299",,,,,,,"131840454","2129693000",,,,"2011-10-17T13:17:02-0500","JACOB I. FRIEDMAN",,,,,870,548,0,386,934,0,934,746,0,,"2F2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017134530P040023272738001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"FYC 401(K) PLAN","001","2002-01-01","FYC APPAREL GROUP, LLC",,,"30 THOMPSON ROAD","P.O. BOX 812","BRANFORD","CT","064052842",,,,,,,,,,,,,,,,,,"113667485","2034812420","424300","FYC APPAREL GROUP, LLC",,"30 THOMPSON ROAD","P.O. BOX 812","BRANFORD","CT","064052842",,,,,,,"113667485","2034812420",,,,"2011-10-17T13:36:37-0500","JOHN WARFEL","2011-10-17T13:36:37-0500","JOHN WARFEL",,,222,179,0,19,198,0,198,159,5,,"2E2F2G2J2K3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017144513P030701921984008","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"MARK NEFF, D.D.S., INC PROFIT SHARING PLAN","001","1997-01-01","MARK NEFF D.D.S., INC.",,,"1532 SHERIDAN DRIVE",,"LANCASTER","OH","43130",,,,,,,,,,,,,,,,,,"311460201","7406538100","621210","MARK NEFF D.D.S., INC.",,"1532 SHERIDAN DRIVE",,"LANCASTER","OH","43130",,,,,,,"311460201","7406538100",,,,"2011-10-17T13:57:43-0500","MARK E. NEFF, D.D.S.","2011-10-17T13:57:56-0500","MARK E. NEFF, D.D.S.",,,5,4,0,1,5,0,5,5,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017131845P030151292321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WIND RIVER ENVIRONMENTAL 401(K) PLAN","001","2000-07-01","WIND RIVER ENVIRONMENTAL",,,"577 MAIN STREET",,"HUDSON","MA","01749",,,,,,,,,,,,,,,,,,"043487677","9788415198","562000","WIND RIVER ENVIRONMENTAL",,"577 MAIN STREET",,"HUDSON","MA","01749",,,,,,,"043487677","9788415198",,,,"2011-10-17T12:54:10-0500","BOB HULECKI",,,,,151,137,0,24,161,0,161,83,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132202P030151295313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACUPOWDER INTERNATIONAL, LLC 401K PLAN","001","1996-01-01","ACUPOWDER INTERNATIONAL, LLC",,,"901 LEHIGH AVENUE",,"UNION","NJ","070837632",,,,,,,,,,,,,,,,,,"223398359","9088514500","325300","ACUPOWDER INTERNATIONAL, LLC",,"901 LEHIGH AVENUE",,"UNION","NJ","070837632",,,,,,,"223398359","9088514500",,,,"2011-10-17T12:57:01-0500","EDUL DAVER",,,,,91,86,0,4,90,3,93,92,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132416P040154923969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SANTA MONICA SEAFOOD COMPANY, INC. 401K PLAN","001","1998-01-01","SANTA MONICA SEAFOOD COMPANY, INC.",,,"18531 S BROADWICK ST",,"RANCHO DOMINGUEZ","CA","902206440",,,,,,,,,,,,,,,,,,"953616163","3108867900","722300","SANTA MONICA SEAFOOD COMPANY, INC.",,"18531 S BROADWICK ST",,"RANCHO DOMINGUEZ","CA","902206440",,,,,,,"953616163","3108867900",,,,"2011-10-17T13:23:14-0500","HERMAN CHIU",,,,,294,249,0,36,285,0,285,159,5,,"2E2G2J2K2F3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017151550P030151425761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COPPERWELD BIMETALLICS LLC SAVINGS PLAN","001","2006-08-01","COPPERWELD BIMETALLICS, LLC",,,"254 COTTON MILL ROAD",,"FAYETTEVILLE","TN","37334",,,,,,,,,,,,,,,,,,"980467972","9314337177","332610","COPPERWELD BIMETALLICS, LLC",,"254 COTTON MILL ROAD",,"FAYETTEVILLE","TN","37334",,,,,,,"980467972","9314337177",,,,"2011-10-17T14:50:09-0500","WILLIAM E. HALL",,,,,122,90,0,46,136,0,136,127,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017142907P040154997201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RATNER COMPANIES GROUP LIFE SUPPLEMENTAL LIFE AND AD&D VOLUNTARY STD AND VOLUNTARY LTD PLAN","503","2007-01-01","RATNER COMPANIES",,,"1577 SPRING HILL ROAD SUITE 500",,"VIENNA","VA","22182",,,,,,,,,,,,,,,,,,"541235564","7032695400","812112","RATNER COMPANIES",,"1577 SPRING HILL ROAD SUITE 500",,"VIENNA","VA","22182",,,,,,,"541235564","7032695400",,,,"2011-10-17T14:28:24-0500","DENISE SCHERBAN",,,,,865,907,0,0,907,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132537P040023269154001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FLORIDA GAS TRANSMISSION SAVINGS PLAN","001","2005-03-01","FLORIDA GAS TRANSMISSION COMPANY",,,"5051 WESTHEIMER RD",,"HOUSTON","TX","770565397",,,,,,,,,,,,,,,,,,"590808672","7139897153","486000","FLORIDA GAS TRANSMISSION COMPANY",,"5051 WESTHEIMER RD",,"HOUSTON","TX","770565397",,,,,,,"590808672","7139897153",,,,"2011-10-17T13:25:26-0500","JOHN R. MOORE",,,,,358,332,6,31,369,1,370,369,9,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132904P040154928337001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"CARGILL MEAT SOLUTIONS CORPORATION EMPLOYEES RETIREMENT PLAN","001","1971-02-01","CARGILL MEAT SOLUTIONS CORPORATION",,,"PO BOX 2519",,"WICHITA","KS","672012519",,,,,,,,,,,,,,,,,,"751449430","3162912501","311610","CARGILL MEAT SOLUTIONS CORPORATION",,"PO BOX 2519",,"WICHITA","KS","672012519",,,,,,,"751449430","3162912501",,,,"2011-10-17T13:28:49-0500","PATTY BABLER","2011-10-17T13:28:49-0500","PATTY BABLER",,,20457,12909,718,5134,18761,38,18799,0,1543,,"1G3H",,"1",,"1",,"1",,"1",,"1","0","1","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017145504P030022382450001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"HALPERNS STEAK & SEAFOOD","001","2010-01-01","HALPERNS STEAK & SEAFOOD",,,"4685 WELCOME ALL RD",,"ATLANTA","GA","30349",,,,,,,,,,,,,,,,,,"202751335","4047679229","424990","HALPERNS STEAK & SEAFOOD",,"4685 WELCOME ALL RD",,"ATLANTA","GA","30349",,,,,,,"202751335","4047679229",,,,"2011-10-17T14:31:23-0500","LAURA BARNARD",,,,,247,264,0,3,267,0,267,35,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017150030P030701974176008","2010-01-01","2010-12-31","2",,,"1",,,,,"1",,,,"JERRY V. SMITH PENSION PLAN","001","1984-01-01","JERRY V SMITH, ATTORNEY",,,"300 N MAIN ST",,"DICKSON","TN","37055",,,,,,,,,,,,,,,,,,"621255763","6154465951","541110","JERRY V SMITH, ATTORNEY",,"300 N MAIN ST",,"DICKSON","TN","37055",,,,,,,"621255763","6154465951",,,,"2011-10-17T15:49:18-0500","JERRY SMITH","2011-10-17T15:49:31-0500","JERRY SMITH",,,1,1,0,0,1,0,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017151718P040023295522002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HIGH SIERRA SHARED SERVICES, LLC 401(K) & PROFIT SHARING PLAN","001","2007-01-01","HIGH SIERRA SHARED SERVICES, LLC",,,"3773 CHERRY CREEK DRIVE NORTH","SUITE 1000","DENVER","CO","80209",,,,,,,,,,,,,,,,,,"261389248","3038151010","324190","HIGH SIERRA SHARED SERVICES, LLC",,"3773 CHERRY CREEK DRIVE NORTH","SUITE 1000","DENVER","CO","80209",,,,,,,"261389248","3038151010",,,,"2011-10-17T04:16:57-0500","JAMES J BURKE",,,,,646,311,0,354,665,0,665,665,129,,"2E2F2G2J2K3D2S2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017142527P040004788579002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"WAYNESBURG UNIVERSITY DENTAL AND WELFARE BENEFIT PLAN","501","1998-07-10","WAYNESBURG UNIVERSITY",,,"51 WEST COLLEGE STREET",,"WAYNESBURG","PA","15370",,,,,,,,,,,,,,,,,,"250965603","7248523210","611000","WAYNESBURG UNIVERSITY",,"51 WEST COLLEGE STREET",,"WAYNESBURG","PA","15370",,,,,,,"250965603","7248523210",,,,"2011-10-17T09:05:32-0500","WAYNESBURG UNIVERSITY",,,,,87,91,,,91,,,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017152241P040155060993004","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"GERDAU AMERISTEEL US UNION RETIREE HEALTH BENEFITS PLAN","501","2004-01-13","GERDAU AMERISTEEL US INC.",,,"60 BOULEVARD OF THE ALLIES, 5TH FL",,"PITTSBURGH","PA","15222",,,,,,,,,,,,,,,,,,"597268449","8665588849","813930","GERDAU AMERISTEEL US INC.",,"60 BOULEVARD OF THE ALLIES, 5TH FL",,"PITTSBURGH","PA","15222",,,,,,,"597268449","8665588849",,,,"2011-10-17T11:04:47-0500","ROBERT P. WALLACE","2011-10-17T11:04:47-0500","ROBERT P. WALLACE",,,412,337,77,0,414,,,,,,,"4A",,,"1",,"1",,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017152244P040155061057001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"NEIL S. DAVIS 401(K) PROFIT SHARING PLAN","001","1980-01-01","NEIL S DAVIS",,,"390 MAIN STREET",,"WORCESTER","MA","016081604",,,,,,,,,,,,,,,,,,"042778991","5087930937","541110","NEIL S DAVIS",,"390 MAIN STREET",,"WORCESTER","MA","016081604",,,,,,,"042778991","5087930937",,,,"2011-10-13T11:00:42-0500","NEIL S. DAVIS",,,,,4,4,,,4,,4,4,,,"2E2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017152834P040155067329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SURGI-LITE MEDICAL GROUP, INC. PROFIT SHARING PLAN","002","1988-07-01","SURGI-LITE MEDICAL GROUP, INC.",,,"22525 MAPLE AVE. SUITE 102",,"TORRANCE","CA","905052700",,,,,,,,,,,,,,,,,,"330172789","3106795483","621111","SURGI-LITE MEDICAL GROUP, INC.",,"22525 MAPLE AVE. SUITE 102",,"TORRANCE","CA","905052700",,,,,,,"330172789","3106795483",,,,"2011-10-17T15:25:50-0500","DAPO A POPOOLA",,,,,8,3,0,5,8,0,8,8,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017142534P030022377186001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEST TOOL MANUFACTURING CO INC. 401K SAVINGS PLAN","001","1990-06-01","BEST TOOL MANUFACTURING CO INC",,,"3515 NE 33RD TERRACE",,"KANSAS CITY","MO","64117",,,,,,,,,,,,,,,,,,"440604402","8164544000","332700","ADMINISTRATIVE COMMITTEE BEST TOOL MANUFACTURING CO INC",,"3515 NE 33RD TERRACE",,"KANSAS CITY","MO","64117",,,,,,,"431547463","8164544000",,,,"2011-10-17T13:52:02-0500","ROLAND P MAYER","2011-10-17T13:52:02-0500","ROLAND P MAYER",,,165,118,0,8,126,0,126,86,9,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017143341P040155002337001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BGO ARCHITECTS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","2005-01-01","BGO ARCHITECTS, INC.",,,"4144 N CENTRAL EXPRESSWAY","SUITE 855","DALLAS","TX","75204",,,,,,,,,,,,,,,,,,"201884733","2145208878","541310","BGO ARCHITECTS, INC.",,"4144 N CENTRAL EXPRESSWAY","SUITE 855","DALLAS","TX","75204",,,,,,,"201884733","2145208878",,,,"2011-10-17T14:33:02-0500","JOHN GUEST",,,,,71,25,0,46,71,0,71,70,0,,"2P",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017131826P030151292017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DATA ELECTRONIC DEVICES INC. 401(K) PLAN","001","2000-01-01","DATA ELECTRONIC DEVICES INC.",,,"32 NORTHWESTERN DRIVE",,"SALEM","NH","03079",,,,,,,,,,,,,,,,,,"020350613","6038932047","334410","DATA ELECTRONIC DEVICES INC.",,"32 NORTHWESTERN DRIVE",,"SALEM","NH","03079",,,,,,,"020350613","6038932047",,,,"2011-10-17T12:54:10-0500","CHRISTOPHER SHORT","2011-10-17T12:54:10-0500","CHRISTOPHER SHORT",,,107,101,0,13,114,1,115,48,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017133606P040154935473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARK EQUIPMENT CO., LTD PROFIT SHARING PLAN","001","1990-01-01","PARK EQUIPMENT CO., LTD",,,"P.O. BOX 41949","7015 FAIRBANKS N. HOUSTON ROAD","HOUSTON","TX","772411949",,,,,,,,,,,,,,,,,,"760099435","7139377602","454390","PARK EQUIPMENT CO., LTD",,"P.O. BOX 41949","7015 FAIRBANKS N. HOUSTON ROAD","HOUSTON","TX","772411949",,,,,,,"760099435","7139377602",,,,"2011-10-17T13:35:19-0500","JENNIFER HALE",,,,,171,132,0,35,167,0,167,167,7,,"2E2F2H2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017134428P040154946513001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"SWCA, INC EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","002","1998-01-01","SWCA ENVIROMENTAL CONSULTANTS",,,"3033 N CENTRAL AVE STE 145",,"PHOENIX","AZ","850122808",,,,,,,,,,,,,,,,,,"860483317","6022743831","541990","SWCA ENVIROMENTAL CONSULTANTS",,"3033 N CENTRAL AVE STE 145",,"PHOENIX","AZ","850122808",,,,,,,"860483317","6022743831",,,,"2011-10-17T13:44:21-0500","DENIS HENRY","2011-10-17T13:44:21-0500","DENIS HENRY",,,539,377,2,105,484,1,485,465,53,,"2E2P2Q",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017151223P030022386482001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"USW SEVERSTAL WHEELING INC. SECTION 401K SAVINGS PLAN","107","1991-01-01","SEVERSTAL WHEELING INC.",,,"1134 MARKET STREET",,"WHEELING","WV","26003",,,,,,,,,,,,,,,,,,"550703273","3042342455","331110","SEVERSTAL WHEELING INC. RETIREMENT COMMITTEE",,"1134 MARKET STREET",,"WHEELING","WV","26003",,,,,,,"251315044","3042342455",,,,"2011-10-17T14:45:24-0500","DREW LANDON",,,,,673,549,,152,701,8,709,688,,,"2E2G2J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017144613P030022380914001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JVC SAVINGS PLAN","002","1980-10-01","JVC AMERICAS CORP.",,,"1700 VALLEY ROAD",,"WAYNE","NJ","07470",,,,,,,,,,,,,,,,,,"223504747","9733175124","423500","JVC AMERICAS CORP.",,"1700 VALLEY ROAD",,"WAYNE","NJ","07470",,,,,,,"223504747","9733175124",,,,"2011-10-17T14:19:15-0500","MICHELE STEVENS","2011-10-17T14:19:15-0500","MICHELE STEVENS",,,346,261,0,257,518,0,518,518,52,,"2E2F2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017150502P040155041521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LAW OFFICES ORTIZ ALVAREZ BENEFIT PLAN","001","1998-01-01","LAW OFFICES OF PEDRO ORTIZ ALVAREZ,",,,"PO BOX 9009",,"PONCE","PR","00732",,,,,,,"PO BOX 9009",,"PONCE","PR","00732",,,,,,,"660562593","7878417575","562000","LAW OFFICES OF PEDRO ORTIZ ALVAREZ,",,"PO BOX 9009",,"PONCE","PR","00732",,,,,,,"660562593","7878417575",,,,"2011-10-17T14:45:44-0500","PEDRO ORTIZ",,,,,23,23,0,0,23,0,23,23,0,,"2E3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017131911P040154918401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAGIN S, INC. 401(K) PROFIT SHARING PLAN","002","2006-01-01","KAGIN S, INC.",,,"1550G TIBURON BLVD., SUITE 201",,"TIBURON","CA","949202521",,,,,,,,,,,,,,,,,,"943418363","4154352601","453990","KAGIN S, INC.",,"1550G TIBURON BLVD., SUITE 201",,"TIBURON","CA","949202521",,,,,,,"943418363","4154352601",,,,"2011-10-17T10:43:53-0500","DONALD KAGIN",,,,,14,9,0,5,14,0,14,14,0,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017134257P030022368786001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"PENSION PLAN FOR BARGAINING UNIT EMPLOYEES OF SPX CORPORATION","034","1983-01-01","SPX CORPORATION",,,"13515 BALLANTYNE CORPORATE PLACE",,"CHARLOTTE","NC","28277",,,,,,,,,,,,,,,,,,"381016240","7047524400","336300","ADMINISTRATIVE COMMITTEE - SPX",,"13515 BALLANTYNE CORPORATE PLACE",,"CHARLOTTE","NC","28277",,,,,,,"621734313","7047524400",,,,"2011-10-17T13:14:20-0500","SUSAN DUPUIS",,,,,8651,683,3687,2705,7075,1063,8138,,6,,"1A1B1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017135103P030701718016001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RJE DATA PROCESSING, INC. PROFIT SHARING PLAN","001","1991-09-01","RJE DATA PROCESSING, INC.",,,"2513 W. PETERSON AVENUE",,"CHICAGO","IL","60659",,,,,,,,,,,,,,,,,,"362613495","7735616966","518210","RJE DATA PROCESSING, INC.",,"2513 W. PETERSON AVENUE",,"CHICAGO","IL","60659",,,,,,,"362613495","7735616966",,,,"2011-10-17T13:08:00-0500","JOHN F CALLAHAN","2011-10-17T13:08:00-0500","JOHN F CALLAHAN",,,5,3,0,2,5,0,5,5,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017145144P030024913078001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"MOTILEGO CORP. 401(K) PLAN","001","2009-07-11","MOTILEGO CORP.",,,"35510 PONTIAC DRIVE",,"BROOKSHIRE","TX","77423",,,,,,,,,,,,,,,,,,"270571397","2813758611","423100","MOTILEGO CORP.",,"35510 PONTIAC DRIVE",,"BROOKSHIRE","TX","77423",,,,,,,"270571397","2813758611",,,,"2011-10-16T18:42:22-0500","MICHAEL DUNN","2011-10-16T18:42:22-0500","MICHAEL DUNN",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017151754P040696496368001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"THE MACMILLIN COMPANY, INC. 401(K) PROFIT SHARING PLAN AND TRUST","002","1989-01-01","THE MACMILLIN COMPANY, INC.",,,"17 ELM STREET",,"KEENE","NH","03431",,,,,,,"17 ELM STREET",,"KEENE","NH","03431",,,,,,,"020266237","6033523070","236200","THE MACMILLIN COMPANY, INC.",,"17 ELM STREET",,"KEENE","NH","03431",,,,,,,"020266237","6033523070",,,,"2011-10-17T15:17:36-0500","JENNIE ROGERS",,,,,68,42,1,15,58,1,59,56,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017144718P040155019313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCHULTE BUILDING SYSTEMS 401K PLAN","001","2005-11-01","SCHULTE BUILDING SYSTEMS, INC.",,,"17600 BADTKE ROAD",,"HOCKLEY","TX","774477818",,,,,,,,,,,,,,,,,,"208246750","8772572534","236200","SCHULTE BUILDING SYSTEMS, INC.",,"17600 BADTKE ROAD",,"HOCKLEY","TX","774477818",,,,,,,"208246750","8772572534",,,,"2011-10-17T14:43:58-0500","DONNIE HUMPHRIES",,,,,288,279,0,33,312,0,312,135,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132547P040154925249001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"WNET.ORG AND SUBSIDIARIES TAX DEFERRED ANNUITY RETIREMENT PLAN","001","1984-01-01","WNET",,,"825 8TH AVENUE",,"NEW YORK","NY","10019",,,,,,,"825 8TH AVENUE",,"NEW YORK","NY","10019",,,,,,,"262810489","2125601313","515100","WNET",,"825 8TH AVENUE",,"NEW YORK","NY","10019",,,,,,,"262810489","2125601313","WNET.ORG AND SUBSIDIARIES TAX DEFERRED ANNUITY","262810489","001","2011-10-17T13:25:01-0500","CHARLENE SHAPIRO",,,,,780,428,13,419,860,2,862,740,0,,"2T3F3H2L2M2R",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017132715P030151301793001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SPECIALISTS IN OTOLARYGOLOGY, LLC DEFINED BENEFIT PLAN","001","2009-01-01","SPECIALISTS IN OTOLARYGOLOGY, LLC",,,"101 OLD SHORT HILLS ROAD",,"WEST ORANGE","NJ","07052",,,,,,,,,,,,,,,,,,"223749983","9737315400","621111","SPECIALISTS IN OTOLARYGOLOGY, LLC",,"101 OLD SHORT HILLS ROAD",,"WEST ORANGE","NJ","07052",,,,,,,"223749983","9737315400",,,,"2011-10-17T08:35:45-0500","HOWARD BERG, M.D.",,,,,2,2,0,0,2,,2,0,,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017134946P040154952737001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"GOTHIC LANDSCAPING, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1997-07-01","GOTHIC LANDSCAPING, INC.",,,"27502 AVENUE SCOTT",,"VALENCIA","CA","91355",,,,,,,"27502 AVENUE SCOTT",,"VALENCIA","CA","91355",,,,,,,"953894569","6612571266","561730","GOTHIC LANDSCAPING, INC.",,"27502 AVENUE SCOTT",,"VALENCIA","CA","91355",,,,,,,"953894569","6612571266",,,,"2011-10-17T13:46:49-0500","ELISABETH STIMSON",,,,,670,730,0,20,750,0,750,157,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017150030P030701974176010","2010-01-01","2010-12-31","2",,,"1",,,,,"1",,,,"INSIGHT STRATEGY ADVISOR LLC 401 (K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","INSIGHT STRATEGY ADVISORS, LLC",,,"1359 BROADWAY SUITE 1208",,"NEW YORK","NY","100187877",,,,,,,,,,,,,,,,,,"203809628","2127024680","541600","INSIGHT STRATEGY ADVISORS, LLC",,"1359 BROADWAY SUITE 1208",,"NEW YORK","NY","100187877",,,,,,,"203809628","2127024680",,,,"2011-10-17T15:34:55-0500","GUILLERMO MONTJOY CPA","2011-10-17T15:35:01-0500","GUILLERMO MONTJOY CPA",,,17,13,0,10,23,0,23,23,,,"2E2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017115509P030022350370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAPCO INC. 401K RETIREMENT PLAN","002","1999-01-01","CAPCO INC.",,,"1328 WINTERS AVENUE",,"GRAND JUNCTION","CO","81501",,,,,,,,,,,,,,,,,,"751250106","9702438750","333900","CAPCO INC.",,"1328 WINTERS AVENUE",,"GRAND JUNCTION","CO","81501",,,,,,,"751250106","9702438750",,,,"2011-10-17T11:32:46-0500","DAN WRIGHT","2011-10-17T11:32:46-0500","DAN WRIGHT",,,141,144,0,5,149,1,150,68,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017115511P030050611431001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BOYS AND GIRLS HOME AND FAMILY SERVICES, INC. RETIREMENT PLAN","002","1996-07-01","BOYS AND GIRLS HOME AND FAMILY SERVICES INC",,,"P.O. BOX 1197",,"SIOUX CITY","IA","51102",,,,,,,"2101 COURT STREET",,"SIOUX CITY","IA","51102",,,,,,,"930991860","7122934700","624100","BOYS AND GIRLS HOME AND FAMILY SERVICES INC",,"P.O. BOX 1197",,"SIOUX CITY","IA","51102",,,,,,,"930991860","7122934700",,,,"2011-10-17T11:32:49-0500","RUBY BOLLIN",,,,,722,485,0,53,538,0,538,132,6,,"2M",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017115513P030151213825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WAVESTREAM CORPORATION 401(K) PLAN","001","2008-01-01","WAVESTREAM CORPORATION",,,"545 WEST TERRACE DRIVE",,"SAN DIMAS","CA","91773",,,,,,,,,,,,,,,,,,"943369894","9095099080","334200","WAVESTREAM CORPORATION",,"545 WEST TERRACE DRIVE",,"SAN DIMAS","CA","91773",,,,,,,"943369894","9095099080",,,,"2011-10-17T11:53:50-0500","CONNIE GREYSHOCK","2011-10-17T11:53:50-0500","CONNIE GREYSHOCK",,,0,105,,8,113,,113,113,0,,"2E2F2G2T2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017115718P040154827505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THOMAS P. BUTLER PROFIT SHARING PLAN","001","2000-01-01","THOMAS P. BUTLER",,,"4433 33RD STREET",,"ARLINGTON STREET","VA","22207",,,,,,,"4433 33RD STREET",,"ARLINGTON STREET","VA","22207",,,,,,,"913628170",,"621111","THOMAS P. BUTLER",,"4433 33RD STREET",,"ARLINGTON STREET","VA","22207",,,,,,,"913628170",,,,,"2011-10-17T11:57:03-0500","ANTONIO NOTARIS",,,,,1,1,0,0,1,0,1,1,0,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017105706P030151156913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BWEB/MVP 401(K) RETIREMENT PLAN","001","1992-01-01","BRADY, MEIXNER & COMPANY, LLC",,,"ONE SOUTH MAIN ST., STE. 600",,"DAYTON","OH","454022072",,,,,,,,,,,,,,,,,,"311680419","9372286165","524210","BRADY, MEIXNER & COMPANY, LLC",,"ONE SOUTH MAIN ST., STE. 600",,"DAYTON","OH","454022072",,,,,,,"311680419","9372286165",,,,"2011-10-17T10:49:37-0500","RICHARD E. PUMMILL",,,,,28,20,1,4,25,0,25,24,0,,"2A2E2F2G2J3B3D3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017114000P030151197089001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"E-ONE RETIREMENT SAVINGS PLAN","003","2009-01-01","E-ONE, INC.",,,"1601 SOUTHWEST 37TH AVENUE",,"OCALA","FL","34474",,,,,,,,,,,,,,,,,,"591515283","3522371122","336210","E-ONE, INC.",,"1601 SOUTHWEST 37TH AVENUE",,"OCALA","FL","34474",,,,,,,"591515283","3522371122",,,,"2011-10-17T11:19:37-0500","J. RICH BLUE",,,,,883,0,0,0,0,0,0,0,0,,"2E2F2G2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017120010P030151218689007","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"CHICAGO EYE INSTITUTE CASH OR DEFRD PROFIT SHARING PLAN AND TRUST","003","1987-01-01","CHICAGO EYE INSTITUTE",,,"3982 N. MILWAUKEE AVENUE",,"CHICAGO","IL","60641",,,,,,,,,,,,,,,,,,"362842478","7732822000","621111","CHICAGO EYE INSTITUTE",,"3982 N. MILWAUKEE AVENUE",,"CHICAGO","IL","60641",,,,,,,"362842478","7732822000",,,,"2011-10-17T12:53:00-0500","DAVID J. TRESLEY",,,,,53,46,0,7,53,0,53,53,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112458P030151181889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MCNEES WALLACE & NURICK SAVINGS PLAN","003","1986-01-01","MCNEES WALLACE & NURICK LLC",,,"100 PINE STREET",,"HARRISBURG","PA","171081166",,,,,,,"P.O. BOX 1166",,"HARRISBURG","PA","171081166",,,,,,,"231256003","7172328000","541110","MCNEES WALLACE & NURICK LLC",,"100 PINE STREET",,"HARRISBURG","PA","171081166",,,,,,,"231256003","7172328000",,,,"2011-10-17T11:05:49-0500","BRUCE D. BAGLEY",,,,,287,177,16,42,235,0,235,234,8,,"2E2F2G2J2K2R3B3D2A",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017114157P040154814145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STROUD CONSULTING LLC 401K PROFIT SHARING PLAN","001","2002-01-01","STROUD CONSULTING, INC.",,,"40 TIOGA WAY SUITE 300",,"MARBLEHEAD","MA","019455501",,,,,,,"40 TIOGA WAY SUITE 300",,"MARBLEHEAD","MA","019455501",,,,,,,"271647365","7816318806","541600","STROUD CONSULTING, INC.",,"40 TIOGA WAY SUITE 300",,"MARBLEHEAD","MA","019455501",,,,,,,"271647365","7816318806","STROUD CONSULTING, INC.","043571294","001","2011-10-17T11:41:36-0500","JENNIFER MURPHY",,,,,33,29,0,14,43,0,43,43,0,,"2A2E2F2G2J2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017111537P030022345122001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"UNITED WATER RESOURCES INC. RETIREMENT PLAN","002","1947-05-12","UNITED WATER RESOURCES INC.",,,"200 OLD HOOK ROAD",,"HARRINGTON PARK","NJ","07640",,,,,,,,,,,,,,,,,,"222441477","2017679300","221300","UNITED WATER RESOURCES INC.",,"200 OLD HOOK ROAD",,"HARRINGTON PARK","NJ","07640",,,,,,,"222441477","2017679300",,,,"2011-10-17T10:56:27-0500","CHARLES T. WALL","2011-10-17T10:56:27-0500","CHARLES T. WALL",,,2721,1184,760,563,2507,202,2709,,19,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017111544P040154789201001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"LOGOS TECHNOLOGIES, INC. EMPLOYEES' RETIREMENT PLAN","001","2000-01-01","LOGOS TECHNOLOGIES, INC.",,,"4100 NORTH FAIRFAX DRIVE","SUITE 200","ARLINGTON","VA","22203",,,,,,,"4100 NORTH FAIRFAX DRIVE","SUITE 200","ARLINGTON","VA","22203",,,,,,,"931142045","7038359749","541700","LOGOS TECHNOLOGIES, INC.",,"4100 NORTH FAIRFAX DRIVE","SUITE 200","ARLINGTON","VA","22203",,,,,,,"931142045","7038359749",,,,"2011-10-17T11:14:41-0500","MICHAEL HADDAD",,,,,148,138,0,38,176,0,176,154,25,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017105446P030151155105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"S.U.C.A.P INC. 401(K) PLAN","003","2005-01-01","SOUTHERN UTE COMMUNITY ACTION PROGRAMS, INC.",,,"PO BOX 800",,"IGNACIO","CO","81137",,,,,,,"285 LAKIN STREET",,"IGNACIO","CO","81137",,,,,,,"840576978","9705634517","624200","SOUTHERN UTE COMMUNITY ACTION PROGRAMS, INC.",,"PO BOX 800",,"IGNACIO","CO","81137",,,,,,,"840576978","9705634517",,,,"2011-10-17T10:47:30-0500","EILEEN WASSERBACH",,,,,102,97,0,18,115,0,115,115,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017114517P030022348818015","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COMMUNITY UNITED METHODIST HOSPITAL HEALTH & WELFARE PLAN","504","1989-10-01","COMMUNITY UNITED METHODIST HOSPITAL, INC","METHODIST HOSPITAL",,"P.O. BOX 48","1305 NORTH ELM STREET","HENDERSON","KY","424190048",,,,,,,,,,,,,,,,,,"610461753","2708277293","622000","COMMUNITY UNITED METHODIST HOSPITAL, INC",,"P.O. BOX 48",,"HENDERSON","KY","424190048",,,,,,,"610461753","2708277293",,,,"2011-10-17T12:44:00-0500","MARTY MATTINGLY",,,,,894,900,45,0,945,,,,,,,"4A4B4C4D4E4F4H4L",,,"1","1","1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112104P040154794145001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"RETIREMENT PLAN OF CROUSE HOSPITAL","001","1947-07-01","CROUSE HOSPITAL",,,"736 IRVING AVENUE",,"SYRACUSE","NY","132101687",,,,,,,,,,,,,,,,,,"160960470","3154707726","622000","CROUSE HOSPITAL",,"736 IRVING AVENUE",,"SYRACUSE","NY","132101687",,,,,,,"160960470","3154707726",,,,"2011-10-17T11:19:57-0500","JOHN BERGEMANN",,,,,4481,2029,780,1634,4443,86,4529,,62,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017111846P030151177345001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THINKEQUITY PARTNERS LLC 401(K) PROFIT SHARING PLAN","001","1998-08-01","THINKEQUITY, LLC",,,"600 MONTGOMERY STREET, 3RD FLOOR",,"SAN FRANCISCO","CA","94111",,,,,,,,,,,,,,,,,,"412008761","4152492900","523120","THINKEQUITY, LLC",,"600 MONTGOMERY STREET, 3RD FLOOR",,"SAN FRANCISCO","CA","94111",,,,,,,"412008761","4152492900",,,,"2011-10-17T10:59:32-0500","HARRIET BRITT",,,,,246,129,,72,201,0,201,162,4,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017110003P030151159553001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NEOGEN 401(K) RETIREMENT SAVINGS PLAN","001","1990-01-01","NEOGEN CORPORATION",,,"620 LESHER PLACE",,"LANSING","MI","489121509",,,,,,,,,,,,,,,,,,"382367843","5173729200","339900","NEOGEN CORPORATION",,"620 LESHER PLACE",,"LANSING","MI","489121509",,,,,,,"382367843","5173729200",,,,"2011-10-17T10:52:14-0500","STEVEN J. QUINLAN","2011-10-17T10:52:14-0500","STEVEN J. QUINLAN",,,523,482,0,58,540,0,540,460,0,,"2E2F2G2J2K2L2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017120013P030022351586001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"THE RIVERS SCHOOL DEFINED CONTRIBUTION RETIREMENT PLAN","001","1961-09-01","THE RIVERS SCHOOL CORPORATION",,"C/O ASST. TREASURER","333 WINTER STREET",,"WESTON","MA","024931040",,,,,,,"333 WINTER STREET",,"WESTON","MA","021931040",,,,,,,"042104457","7812359300","611000","THE RIVERS SCHOOL CORPORATION","C/O ASST. TREASURER","333 WINTER STREET",,"WESTON","MA","024931040",,,,,,,"042104457","7812359300",,,,"2011-10-17T07:02:56-0500","BRUCE T. AMSBARY",,,,,265,116,17,123,256,2,258,257,,,"2C2G2L",,"1",,,,"1",,,,,,,"1",,"1","2",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017115540P040154825553001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CARDIOLOGY PHYSICIANS, P.C. PROFIT SHARING PLAN","001","1988-11-27","CARDIOLOGY PHYSICIANS P.C.",,,"4675 MAIN STREET",,"BRIDGEPORT","CT","06606",,,,,,,,,,,,,,,,,,"061251507","2036835111","621111","CARDIOLOGY PHYSICIANS P.C.",,"4675 MAIN STREET",,"BRIDGEPORT","CT","06606",,,,,,,"061251507","2036835111",,,,"2011-10-17T12:22:36-0500","EDWARD KOSINSKI","2011-10-17T12:23:09-0500","EDWARD KOSINSKI",,,2,2,0,0,2,0,2,2,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017112536P030701222880001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"GROUP O 401(K) PROFIT SHARING PLAN","001","1984-10-01","GROUP O, INC.",,,"PO BOX 170",,"MILAN","IL","61264",,,,,,,,,,,,,,,,,,"363823680","3097368300","423990","GROUP O, INC.",,"PO BOX 170",,"MILAN","IL","61264",,,,,,,"363823680","3097368300",,,,"2011-10-17T12:05:06-0500","JENNIFER BOHLER",,,,,830,835,2,39,876,,876,559,138,,"2E2F2G2J2K2T3D3F3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112537P030151182801001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DCK WORLDWIDE, LLC 401(K) PLAN","001","1980-01-01","DCK WORLDWIDE, LLC",,,"PO BOX 18505",,"PITTSBURGH","PA","15236",,,,,,,,,,,,,,,,,,"260887773","4123841000","236200","DCK WORLDWIDE, LLC",,"PO BOX 18505",,"PITTSBURGH","PA","15236",,,,,,,"260887773","4123841000","DICK CORPORATION","251355037","001","2011-10-17T10:58:47-0500","JOHN OREILLY","2011-10-17T10:58:47-0500","JOHN OREILLY",,,1038,433,0,569,1002,0,1002,907,0,,"2A2E2F2G2J3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017120815P040695723616001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"PRIDGEON & CLAY, INC EMPLOYEE STOCK OWNERSHIP PLAN","004","1999-01-01","PRIDGEON & CLAY, INC",,,"50 COTTAGE GROVE ST SW",,"GRAND RAPIDS","MI","495071622",,,,,,,,,,,,,,,,,,"381310157","6162484819","332110","PRIDGEON & CLAY, INC",,"50 COTTAGE GROVE ST SW",,"GRAND RAPIDS","MI","495071622",,,,,,,"381310157","6162484819",,,,"2011-10-17T12:08:12-0500","BRUCE PENNO","2011-10-17T12:08:12-0500","BRUCE PENNO",,,700,468,0,84,552,1,553,550,3,,"2I2P2Q",,,,"1",,,,"1",,"1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017121012P030151229009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AMERISTAR CASINOS, INC. 401(K) PLAN","002","1996-03-01","AMERISTAR CASINOS, INC.",,,"3773 HOWARD HUGHES PKWY","SUITE 490S","LAS VEGAS","NV","89169",,,,,,,,,,,,,,,,,,"880304799","7025677000","721120","AMERISTAR CASINOS, INC.",,"3773 HOWARD HUGHES PKWY","SUITE 490S","LAS VEGAS","NV","89169",,,,,,,"880304799","7025677000",,,,"2011-10-17T11:49:00-0500","LARRY AZUSE","2011-10-17T11:49:00-0500","BRIAN ARCHER",,,6770,6186,0,437,6623,4,6627,3081,845,,"2E2F2G2J2K3H",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","1","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017111556P040011451685001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RAYBORN'S PLUMBING, INC., 401(K) PROFIT SHARING PLAN AND TRUST","001","1992-01-01","RAYBORN'S PLUMBING, INC.",,,"19990 S.W. CIPOLE ROAD",,"TUALATIN","OR","97062",,,,,,,"19990 S.W. CIPOLE ROAD",,"TUALATIN","OR","97062",,,,,,,"931074560","5036924139","238220","RAYBORN'S PLUMBING, INC.",,"19990 S.W. CIPOLE ROAD",,"TUALATIN","OR","97062",,,,,,,"931074560","5036924139",,,,"2011-10-17T11:13:25-0500","KATHY RAYBORN",,,,,25,16,0,5,21,0,21,21,1,,"2E2H2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017113652P040004781587001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAPLE KNOLL COMMUNITIES INC 401K PLAN","002","1998-01-01","MAPLE KNOLL COMMUNITIES INC",,,"11100 SPRINGFIELD PIKE",,"CINCINNATI","OH","452464112",,,,,,,,,,,,,,,,,,"310544277","5137822701","623000","MAPLE KNOLL COMMUNITIES INC",,"11100 SPRINGFIELD PIKE",,"CINCINNATI","OH","452464112",,,,,,,"310544277","5137822701",,,,"2011-10-17T10:33:15-0500","NANCY HENDRICKS",,,,,612,476,0,417,893,0,893,670,18,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017120042P030151219169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAVE MART SUPERMARKETS 401(K) PLAN","001","1960-03-31","SAVE MART SUPERMARKETS",,,"1800 STANDIFORD AVENUE",,"MODESTO","CA","95350",,,,,,,,,,,,,,,,,,"941245496","2095486605","445110","SAVE MART BENEFITS PLAN COMMITTEE",,"1800 STANDIFORD AVENUE",,"MODESTO","CA","95350",,,,,,,"941245496","2095486605",,,,"2011-10-17T11:39:50-0500","THOMAS HEKL","2011-10-17T11:39:50-0500","THOMAS HEKL",,,24973,14617,37,1061,15715,8,15723,5224,44,,"2E2F2H2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111017115611P040023252674001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LUMBER PRODUCTS EMPLOYEE STOCK OWNERSHIP PLAN - STOCK BONUS","003","1986-12-01","LUMBER PRODUCTS",,,"19855 SW 124TH AVE",,"TUALATIN","OR","970628007",,,,,,,,,,,,,,,,,,"930934899","5036923322","423300","LUMBER PRODUCTS",,"19855 SW 124TH AVE",,"TUALATIN","OR","970628007",,,,,,,"930934899","5036923322",,,,"2011-10-17T10:58:46-0500","LACEY HALL",,,,,702,415,57,138,610,0,610,607,68,,"2I2P2Q",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017110403P040023244722001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INSURANCE REGULATORY CONSULTANTS LLC","001","1999-12-01","INSURANCE REGULATORY CONSULTANTS",,,"50 BROAD ST STE 501",,"NEW YORK","NY","10004",,,,,,,,,,,,,,,,,,"223528655","2125713989","524290","INSURANCE REGULATORY CONSULTANTS",,"50 BROAD ST STE 501",,"NEW YORK","NY","10004",,,,,,,"223528655","2125713989",,,,"2011-10-17T11:03:41-0500","KEVIN PURCELL",,,,,9,8,0,2,10,0,10,10,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112151P040023248354001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"EFLOW INC 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","EFLOW, INC",,,"8774 EGAN DR",,"SAVAGE","MN","55378",,,,,,,,,,,,,,,,,,"411980700","9528474450","445299","EFLOW, INC",,"8774 EGAN DR",,"SAVAGE","MN","55378",,,,,,,"411980700","9528474450",,,,"2011-10-17T11:21:14-0500","JAMES WOLFE",,,,,205,79,0,0,79,0,79,8,0,,"2A2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","0",,,"1","0","0","0","0","0",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017110110P040004780099001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BOEHL STOPHER & GRAVES AMENDED AND RESTATED RETIREMENT SAVINGS PLAN","001","1978-01-01","BOEHL STOPHER & GRAVES, LLP",,,"400 WEST MARKET STREET","AEGON CENTER - SUITE 2300","LOUISVILLE","KY","402023354",,,,,,,,,,,,,,,,,,"610465580","5025895980","541110","BOEHL STOPHER & GRAVES, LLP",,"400 WEST MARKET STREET","AEGON CENTER - SUITE 2300","LOUISVILLE","KY","402023354",,,,,,,"610465580","5025895980",,,,"2011-10-17T12:01:05-0500","JEFFERSON STREEPEY",,,,,145,96,1,38,135,0,135,132,0,,"2E2F2G2J2K2R2T3B3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017110923P040154784465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOME CARE MANAGEMENT, INC. 401(K) PLAN","001","2005-01-01","HOME CARE MANAGEMENT, INC.",,,"1701 NORTH HAMPTON ROAD",,"DESOTO","TX","75115",,,,,,,,,,,,,,,,,,"300019011","9722702000","621610","HOME CARE MANAGEMENT, INC.",,"1701 NORTH HAMPTON ROAD",,"DESOTO","TX","75115",,,,,,,"300019011","9722702000",,,,"2011-10-17T11:08:39-0500","JAMES FULLBRIGHT",,,,,203,141,0,30,171,0,171,82,12,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017110923P040695509872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAMSUNG ELECTRONICS AMERICA, INC. HEALTH AND WELFARE PLAN","501","1988-01-01","SAMSUNG ELECTRONICS AMERICA, INC.",,,"85 CHALLENGER ROAD",,"RIDGEFIELD PARK","NJ","076602106",,,,,,,,,,,,,,,,,,"132951153","2012294000","423600","SAMSUNG ELECTRONICS AMERICA, INC.",,"85 CHALLENGER ROAD",,"RIDGEFIELD PARK","NJ","076602106",,,,,,,"132951153","2012294000",,,,"2011-10-17T11:02:02-0500","FELICIA BLASBERG",,,,,844,927,39,0,966,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017113359P040154808065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN OF TALLEY DEFENSE SYSTEMS, INC.","003","1999-06-30","TALLEY DEFENSE SYSTEMS, INC.",,,"P.O. BOX 34299","4051 N HIGLEY RD","MESA","AZ","852774299",,,,,,,,,,,,,,,,,,"860295636","4808982528","541990","TALLEY DEFENSE SYSTEMS, INC.",,"P.O. BOX 34299","4051 N HIGLEY RD","MESA","AZ","852774299",,,,,,,"860295636","4808982528",,,,"2011-10-17T11:33:38-0500","HASSAN MIRZA",,,,,342,0,0,328,328,13,341,341,0,,"2I2O2C",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112951P040154803809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUPERIOR MAILING SERVICES, LLC 401(K)/PROFIT SHARING PLAN AND TRUST","001","1997-02-01","SUPERIOR MAILING SERVICES, LLC",,,"6751-55 S. SAYRE AVENUE",,"BEDFORD PARK","IL","606384724",,,,,,,,,,,,,,,,,,"264784777","7087280101","561490","SUPERIOR MAILING SERVICES, LLC",,"6751-55 S. SAYRE AVENUE",,"BEDFORD PARK","IL","606384724",,,,,,,"264784777","7087280101",,,,"2011-10-17T11:20:39-0500","TERRY RICHARDSON",,,,,286,361,4,14,379,0,379,107,0,,"2A2E2F2G2J2K2T3B3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017114112P030022348290001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CARDON HEALTHCARE NETWORK, INC. 401(K) PLAN","001","2006-02-01","CARDON HEALTHCARE NETWORK, INC.",,,"4185 TECHNOLOGY FOREST BLVD.","SUITE 200","THE WOODLANDS","TX","77381",,,,,,,,,,,,,,,,,,"760526175","2812968911","624100","CARDON HEALTHCARE NETWORK, INC.",,"4185 TECHNOLOGY FOREST BLVD.","SUITE 200","THE WOODLANDS","TX","77381",,,,,,,"760526175","2812968911",,,,"2011-10-17T11:20:56-0500","AMY COLLINS",,,,,613,500,0,59,559,0,559,152,215,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017111200P040023245954001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ASHLEY COUNTY MEDICAL CENTER EMPLOYEE SAVINGS PLAN","002","1997-05-01","ASHLEY COUNTY MEDICAL CENTER",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"710236870","6207938473","622000","ASHLEY COUNTY MEDICAL CENTER","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"710236870","6207938473",,,,"2011-10-17T11:10:17-0500","PHILLIP GILMORE",,,,,237,203,0,24,227,0,227,205,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017113859P030701267056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RURAL HEALTH RESOURCES OF JACKSON COUNTY INC. DBA HOLTON COMMUNITY HOSPITAL EMPLOYEES PENSION PLAN","006","1988-01-01","RURAL HEALTH RESOURCES OF JACKSON COUNTY INC.","HOLTON COMMUNITY HOSPITAL",,"1110 COLUMBINE DR",,"HOLTON","KS","66436",,,,,,,,,,,,,,,,,,"742826278","7853642116","622000","RURAL HEALTH RESOURCES OF JACKSON COUNTY INC.",,"1110 COLUMBINE DR",,"HOLTON","KS","66436",,,,,,,"742826278","7853642116",,,,"2011-10-17T11:18:43-0500","GRETCHEN SNAVELY","2011-10-17T11:18:43-0500","RONALD MARSHALL",,,150,128,0,16,144,0,144,96,2,,"2C2G2K2T",,"1","0","0","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017112652P030151184321001","2011-01-01","2011-04-18","2",,"0","0","1","1","0","0","0","0","0",,"JWD MANAGEMENT, INC. 401(K) PLAN","001","2001-01-01","JWD MANAGEMENT, INC. DBA VIDEO II",,,"471 WEST 9160 SOUTH",,"SANDY","UT","84070",,,,,,,,,,,,,,,,,,"870424277","8012556700","423990","JWD MANAGEMENT, INC. DBA VIDEO II",,"471 WEST 9160 SOUTH",,"SANDY","UT","84070",,,,,,,"870424277","8012556700",,,,"2011-10-17T11:06:36-0500","RANDALL PEARSON","2011-10-17T11:06:36-0500","RANDALL PEARSON",,,110,0,0,0,0,0,0,0,0,,"2K2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017115432P040154824753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FOR BETTER SCHOOLS, INC. PROFIT SHARING PLAN","001","2009-06-24","FOR BETTER SCHOOLS, INC.",,,"6521 W RED FOX RD",,"PHOENIX","AZ","85083",,,,,,,,,,,,,,,,,,"264758931","4803475838","611000","FOR BETTER SCHOOLS, INC.",,"6521 W RED FOX RD",,"PHOENIX","AZ","85083",,,,,,,"264758931","4803475838",,,,"2011-10-17T11:32:40-0500","LESLIE SUE YOCUM",,,,,3,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112131P040695555968001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HANNAFORD BROS CO LIFE INSURANCE PLAN","522","1995-01-01","HANNAFORD BROS CO",,,"P O BOX 1000",,"PORTLAND","ME","04104",,,,,,,"145 PLEASANT HILL ROAD",,"SCARBOROUGH","ME","04074",,,,,,,"010085930","2078832911","445110","HANNAFORD BROS CO",,"145 PLEASANT HILL ROAD",,"SCARBOROUGH","ME","04074",,,,,,,"010085930","2078832911",,,,"2011-10-17T09:53:52-0500","DAVID BASS",,,,,10742,10705,39,,10744,,10744,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112131P040695555984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONTINUUM HEALTH PARTNERS, INC. CAFETERIA BENEFIT PLAN","520","2004-01-01","CONTINUUM HEALTH PARTNERS, INC.",,,"555 W. 57TH STREET",,"NEW YORK","NY","100192925",,,,,,,"555 W. 57TH STREET",,"NEW YORK","NY","100192925",,,,,,,"133939476","2125233049","622000","CONTINUUM HEALTH PARTNERS, INC.",,"555 W. 57TH STREET",,"NEW YORK","NY","100192925",,,,,,,"133939476","2125233049",,,,"2011-10-17T11:02:13-0500","PAMELA ABNER","2011-10-17T11:02:13-0500","PAMELA ABNER",,,7144,5855,173,119,6147,0,6147,0,0,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1",,"0","0",,,"1","16","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017105926P030151159073010","2010-01-01","2010-12-31","2",,,,,,,"1","1",,,,"GREAT LAKES PAIN PHYSICIANS LTD PROFIT SHARING PLAN AND TRUST #001","001","2009-01-01","GREAT LAKES PAIN PHYSICIANS LTD",,,"1050 N WAUKEGAN ROAD",,"LAKE FOREST","IL","60045",,,,,,,,,,,,,,,,,,"141922880","2626572060","621111","GREAT LAKES PAIN PHYSICIANS LTD",,"1050 N WAUKEGAN ROAD",,"LAKE FOREST","IL","60045",,,,,,,"141922880","2626572060",,,,"2011-10-17T10:34:03-0500","ELIZA DIACONESCU",,,,,1,1,,,1,,1,1,,,"3D2G2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112340P040154797297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CENTEX 401(K) PLAN","001","2002-04-01","CENTEX MANAGEMENT COMPANY",,,"4500 MAIN AVENUE",,"GROVES","TX","776194712",,,,,,,,,,,,,,,,,,"760098812","4099620910","623000","CENTEX MANAGEMENT COMPANY",,"4500 MAIN AVENUE",,"GROVES","TX","776194712",,,,,,,"760098812","4099620910",,,,"2011-10-17T11:15:58-0500","JAMES MOORE SR.",,,,,116,113,0,2,115,0,115,110,17,,"2E2F2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017112957P040051359623001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ERICKSEN ELLISON AND ASSOCIATES, INC. EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","002","2001-01-01","ERICKSEN ELLISON AND ASSOCIATES, INC.",,,"305 2ND STREET NW","SUITE 105","NEW BRIGHTON","MN","55112",,,,,,,,,,,,,,,,,,"410744952","6516322300","541330","ERICKSEN ELLISON AND ASSOCIATES, INC.",,"305 2ND STREET NW","SUITE 105","NEW BRIGHTON","MN","55112",,,,,,,"410744952","6516322300",,,,"2011-10-17T11:23:59-0500","TERRI FLEISCHHACKER","2011-10-17T11:23:59-0500","TERRI FLEISCHHACKER",,,27,23,,2,25,0,25,23,0,,"2O",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017112958P030151187617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"M3T, INC. 401(K) SAVINGS PLAN","001","2006-01-01","M3T MANAGEMENT CORP",,,"4040 EAST RAYMOND",,"PHOENIX","AZ","85040",,,,,,,,,,,,,,,,,,"861003544","4805054020","238900","M3T MANAGEMENT CORP",,"4040 EAST RAYMOND",,"PHOENIX","AZ","85040",,,,,,,"861003544","4805054020",,,,"2011-10-17T11:11:09-0500","STEVEN B. GROSVENOR",,,,,100,45,0,30,75,0,75,45,21,,"3D2E2J3H2K2F2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017115443P040154824849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"CONTRACT FURNISHINGS, INC. 401(K) PROFIT SHARING PLAN","001","1999-01-01","CONTRACT FURNISHINGS, INC",,,"3129 MAIN STREET",,"KANSAS CITY","MO","64111",,,,,,,"3129 MAIN STREET",,"KANSAS CITY","MO","64111",,,,,,,"431698909","5053236807","442110","CONTRACT FURNISHINGS, INC",,"3129 MAIN STREET",,"KANSAS CITY","MO","64111",,,,,,,"431698909","5053236807",,,,"2011-10-17T11:54:05-0500","LINDA HAMILTON",,,,,43,27,0,7,34,0,34,15,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017105650P040154771105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TK, INC. DBA FUTURE IND. OF AMERICA, INC. 401(K)","001","1993-01-01","TK, INC.",,,"135 RESEARCH DR",,"MILFORD","CT","06460",,,,,,,,,,,,,,,,,,"061426451","2038786406","446120","TK, INC.",,"135 RESEARCH DR",,"MILFORD","CT","06460",,,,,,,"061426451","2038786406",,,,"2011-10-17T10:56:34-0500","LESLEE NORKO",,,,,61,22,0,36,58,0,58,58,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017113011P040154804321007","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"LEROY HIPP, DDS RETIRMENT PLAN","001","1991-01-01","LEROY HIPP, DDS",,,"405 SIBLEY ST, SUITE 240",,"SAINT PAUL","MN","55101",,,,,,,,,,,,,,,,,,"411459416","6512249300","621210","LEROY HIPP, DDS",,"405 SIBLEY ST, SUITE 240",,"SAINT PAUL","MN","55101",,,,,,,"411459416","6512249300",,,,"2011-10-17T10:16:04-0500","LEROY HIPP","2011-10-17T10:16:24-0500","LEROY HIPP",,,1,0,0,0,0,0,0,,,,"2C2F2G2T3B",,"1",,,,"1",,,,,,,,"1","1","4",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017110243P040023244306001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"CHURCHILL FORGE, INC. 401(K) PLAN","001","1994-03-01","CHURCHILL FORGE, INC.",,,"7 WELLS AVE","SUITE 14","NEWTON","MA","02459",,,,,,,"7 WELLS AVE","SUITE 14","NEWTON","MA","02459",,,,,,,"042945628","6179640060","531310","CHURCHILL FORGE, INC.",,"7 WELLS AVE","SUITE 14","NEWTON","MA","02459",,,,,,,"042945628","6179640060",,,,"2011-10-17T11:01:43-0500","BARRY FERULLO",,,,,232,201,0,51,252,2,254,201,16,,"2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017111223P030151171153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRECISION ASSOCIATES GROUP BENEFIT SEC. 125 PLAN","501","1992-07-01","PRECISION ASSOCIATES, INC.",,,"740 WASHINGTON AVE N",,"MINNEAPOLIS","MN","55401",,,,,,,,,,,,,,,,,,"410763581","6123349138","326200","PRECISION ASSOCIATES, INC.",,"740 WASHINGTON AVE N",,"MINNEAPOLIS","MN","55401",,,,,,,"410763581","6123349138",,,,"2011-10-17T10:53:28-0500","PAUL KADUE","2011-10-17T10:53:28-0500","PAUL KADUE",,,200,285,5,0,290,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017112352P040154797393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARINE TOWING & SALVAGE OF S.W. FL, INC. PROFIT SHARING PLAN","001","2005-06-07","MARINE TOWING & SALVAGE OF S.W. FL, INC.",,,"5828 CAPE HARBOR DRIVE, #207",,"CAPE CORAL","FL","33914",,,,,,,,,,,,,,,,,,"571220461","2399461664","336610","MARINE TOWING & SALVAGE OF S.W. FL, INC.",,"5828 CAPE HARBOR DRIVE, #207",,"CAPE CORAL","FL","33914",,,,,,,"571220461","2399461664",,,,"2011-10-17T11:23:23-0500","JAY MCMILLIN",,,,,6,6,,,6,,6,5,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017114147P040154814017001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"AKRON GENERAL HEALTH SYSTEM 401(K) PLAN","001","2003-01-01","AKRON GENERAL HEALTH SYSTEM",,,"400 WABASH AVE",,"AKRON","OH","44307",,,,,,,,,,,,,,,,,,"341546466","3303446772","621610","AKRON GENERAL HEALTH SYSTEM",,"400 WABASH AVE",,"AKRON","OH","44307",,,,,,,"341546466","3303446772",,,,"2011-10-17T12:41:25-0500","DONALD L. CORPORA",,,,,6706,5279,3,650,5932,2,5934,4353,25,,"2E2F2G2J2K2R2S2T3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017111528P030701186832001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"GREENTREE MORTGAGE CO LP 401K PROFIT SHARING","001","1993-01-01","GREENTREE MORTGAGE CO LP",,,"10000 LINCOLN DRIVE WEST","SUITE 5","MARLTON","NJ","08053",,,,,,,,,,,,,,,,,,"223188285","8565968858","522292","GREENTREE MORTGAGE CO LP",,"10000 LINCOLN DRIVE WEST","SUITE 5","MARLTON","NJ","08053",,,,,,,"223188285","8565968858",,,,"2011-10-17T10:58:15-0500","JOHN MIRENDA","2011-10-17T10:58:15-0500","JOHN MIRENDA",,,36,33,0,0,33,0,33,33,0,,"2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017112416P030151181361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STRASBURG CHILDREN 401K PLAN","001","2002-01-01","STRASBURG - JARVIS INC",,,"9810 INDUSTRIAL BLVD",,"LENEXA","KS","66215",,,,,,,,,,,,,,,,,,"522151726","9132277023","448130","STRASBURG - JARVIS INC",,"9810 INDUSTRIAL BLVD",,"LENEXA","KS","66215",,,,,,,"522151726","9132277023",,,,"2011-10-17T11:05:24-0500","JOANNA NELSON",,,,,184,134,0,6,140,0,140,16,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017113502P040154809105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PETTLER & MILLER DEFINED BENEFIT PENSION PLAN","001","2005-01-01","PETTLER & MILLER, LLP",,,"3465 TORRANCE BLVD., SUITE D",,"TORRANCE","CA","90503",,,,,,,,,,,,,,,,,,"260282197","3105431616","541110","PETTLER & MILLER, LLP",,"3465 TORRANCE BLVD., SUITE D",,"TORRANCE","CA","90503",,,,,,,"260282197","3105431616",,,,"2011-10-17T11:08:33-0500","PETE PETTLER",,,,,5,0,0,0,0,0,0,,0,,"1A1I3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017105657P030701130352001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MURRAY FRANK & SAILER, LLP SALARY DEFERRAL 401-K PLAN","002","2005-01-01","MURRAY FRANK & SAILER, LLP",,,"SUITE 801","275 MADISON AVENUE","NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"133569235","2126821818","541110","MURRAY FRANK & SAILER, LLP",,"SUITE 801","275 MADISON AVENUE","NEW YORK","NY","10016",,,,,,,"133569235","2126821818",,,,"2011-10-17T10:56:01-0500","MARVIN FRANK","2011-10-17T10:56:01-0500","MARVIN FRANK",,,14,13,0,1,14,0,14,11,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017112119P040023248290003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SPRINGFIELD NEUROLOGICAL INSTITUTE, LLC CASH BALANCE PLAN","002","2003-01-01","SPRINGFIELD NEUROLOGICAL INSTITUTE, LLC",,,"2900 SOUTH NATIONAL",,"SPRINGFIELD","MO","65804",,,,,,,,,,,,,,,,,,"431916015","4178853888","621111","SPRINGFIELD NEUROLOGICAL INSTITUTE, LLC",,"2900 SOUTH NATIONAL",,"SPRINGFIELD","MO","65804",,,,,,,"431916015","4178853888",,,,"2011-10-17T06:14:55-0500","JOHN C MACE",,,,,95,85,0,16,101,0,101,,,,"1C1G",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017111916P040154792081001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"EMPLOYEE BENEFIT PLAN OF PHIPPS HOUSES","501","1968-10-10","PHIPPS HOUSES",,,"902 BROADWAY - 13TH FLOOR",,"NEW YORK","NY","100106033",,,,,,,"902 BROADWAY - 13TH FLOOR",,"NEW YORK","NY","100106033",,,,,,,"111187480","2122439090","531390","EMPLOYEE BENEFIT PLAN MANAGEMENT COMMITTEE","PHIPPS HOUSES","902 BROADWAY - 13TH FLOOR",,"NEW YORK","NY","100106033",,,,,,,"133687896","2122439090",,,,"2011-10-17T11:18:50-0500","BRIAN BRICKER",,,,,434,375,48,,423,,423,,,,,"4A4B4D4E4H4L","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017113022P040695586624001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"STEVEN MOTOR GROUP 401(K) PROFIT SHARING PLAN","001","1998-11-01","MIKE STEVEN MOTORS, INC.",,,"6631 E. KELLOGG",,"WICHITA","KS","67207",,,,,,,"6631 E. KELLOGG",,"WICHITA","KS","67207",,,,,,,"480678145","3166522277","441110","MIKE STEVEN MOTORS, INC.",,"6631 E. KELLOGG",,"WICHITA","KS","67207",,,,,,,"480678145","3166522277",,,,"2011-10-17T11:25:46-0500","GREG ANDERSEN",,,,,209,163,0,13,176,0,176,56,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017184737P040155258705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MEMORIAL RESEARCH MEDICAL CLINIC 401(K) PROFIT SHARING PLAN","001","1998-01-01","MEMORIAL RESEARCH MEDICAL CLINIC",,,"14351 MYFORD RD",,"TUSTIN","CA","927807045",,,,,,,,,,,,,,,,,,"330663715","7142106675","621510","MEMORIAL RESEARCH MEDICAL CLINIC",,"14351 MYFORD RD",,"TUSTIN","CA","927807045",,,,,,,"330663715","7142106675",,,,"2011-10-17T18:46:30-0500","JOEL NEUTEL",,,,,152,65,0,63,128,0,128,117,8,,"2A2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017181153P040155234673001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LENCO SALES LP PROFIT SHARING PLAN","002","1995-01-01","LENCO SALES LP",,,"505 S BURLESON BLVD",,"BURLESON","TX","76028",,,,,,,"505 S BURLESON BLVD",,"BURLESON","TX","76028",,,,,,,"752454277","8172932204","236110","LENCO SALES LP",,"505 S BURLESON BLVD",,"BURLESON","TX","76028",,,,,,,"752454277","8172932204",,,,"2011-10-17T18:07:20-0500","DEBORAH FAWVER",,,,,10,7,1,0,8,0,8,7,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017152555P030151435777001","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"LAND O LAKES EMPLOYEE SAVINGS & SUPPLEMENTAL RETIREMENT PLAN","017","1975-04-01","LAND O LAKES",,,"4001 LEXINGTON AVENUE NORTH",,"ARDEN HILLS","MN","551262934",,,,,,,,,,,,,,,,,,"410365145","6513752222","311500","LAND O LAKES",,"4001 LEXINGTON AVENUE NORTH",,"ARDEN HILLS","MN","551262934",,,,,,,"410365145","6513752222",,,,"2011-10-17T15:05:35-0500","ROBERT C. TOMASCHKO","2011-10-17T15:05:40-0500","ROBERT C. TOMASCHKO",,,8769,6131,59,2660,8850,69,8919,8606,393,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017152750P040155066449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PAT HALE, D.C., P.C. PROFIT SHARING PLAN","002","1991-01-01","PAT HALE, D.C., P.C.",,,"7100 MENAUL NE",,"ALBUQUERQUE","NM","871103688",,,,,,,,,,,,,,,,,,"850314074","5058836420","621310","PAT HALE, D.C., P.C.",,"7100 MENAUL NE",,"ALBUQUERQUE","NM","871103688",,,,,,,"850314074","5058836420",,,,"2011-10-17T15:26:18-0500","ALISON HALE",,,,,10,2,0,8,10,0,10,10,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153427P030022390594007","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JOSEPH A MARESSA JR INC PROFIT SHARING PLAN","001","1996-03-17","JOSEPH A MARESSA JR INC",,,"185 WHITE HORSE PIKE",,"BERLIN","NJ","080091957",,,,,,,,,,,,,,,,,,"222699414","8567538255","541990","JOSEPH A MARESSA JR INC",,"185 WHITE HORSE PIKE",,"BERLIN","NJ","080091957",,,,,,,"222699414","8567538255",,,,"2011-10-17T15:21:42-0500","JOSEPH A MARESSA JR",,,,,1,1,,,1,,1,,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153110P040023299058001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"FEDERAL SIGNAL CORPORATION RETIREMENT SAVINGS PLAN","004","1976-07-01","FEDERAL SIGNAL CORPORATION",,"SHIRLEY PAULSON","1415 W. 22ND STREET","SUITE 1100","OAK BROOK","IL","605232004",,,,,,,,,,,,,,,,,,"361063330","6309542000","336210","FEDERAL SIGNAL CORPORATION BENEFIT ADMINSTRATION COMMITTEE","SHIRLEY PAULSON","1415 W. 22ND STREET",,"OAK BROOK","IL","60523",,,,,,,"362965189","6309542000",,,,"2011-10-17T15:30:36-0500","SHIRLEY PAULSON",,,,,2803,2018,44,772,2834,17,2851,2825,38,,"2A2E2G2J2K2O2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017171543P040155188417001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","1","0","0",,"THE FREEDOM GROUP OF COMPANIES 401K PROFIT SHARING PLAN AND TRUST","001","2008-01-01","THE FREEDOM GROUP OF COMPANIES","THE FREEDOM GROUP OF COMPANIES",,"120 N CONGRESS SUITE 500",,"JACKSON","MS","39201",,,,,,,"120 N CONGRESS SUITE 500",,"JACKSON","MS","39201",,,,,,,"980549352","3035624688","541990","THE FREEDOM GROUP OF COMPANIES",,"120 N CONGRESS SUITE 500",,"JACKSON","MS","39201",,,,,,,"980549352","3035624688",,,,"2011-10-17T17:15:21-0500","STEPHEN GERARD",,,,,299,338,0,4,342,0,342,244,0,,"2E3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017180531P040155230977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROCKY MOUNTAIN EYE CENTER, INC. 401(K) PROFIT SHARING PLAN","002","1987-12-31","ROCKY MOUNTAIN EYE CENTER, INC.",,,"27 MONTEBELLO ROAD",,"PUEBLO","CO","81001",,,,,,,,,,,,,,,,,,"841207157","7195451530","621111","ROCKY MOUNTAIN EYE CENTER, INC.",,"27 MONTEBELLO ROAD",,"PUEBLO","CO","81001",,,,,,,"841207157","7195451530",,,,"2011-10-17T18:05:07-0500","DAVID ALDAG",,,,,136,118,0,36,154,0,154,154,0,,"2A2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153913P040155079921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"REED-LANE, INC. EMPLOYEE BENEFIT PLAN","501","1984-01-01","REED-LANE, INC.",,,"359 NEWARK POMPTON TURNPIKE",,"WAYNE","NJ","07470",,,,,,,,,,,,,,,,,,"221655676","9737091090","339900","REED-LANE, INC.",,"359 NEWARK POMPTON TURNPIKE",,"WAYNE","NJ","07470",,,,,,,"221655676","9737091090",,,,"2011-10-17T15:38:57-0500","CARMINE SODORA",,,,,121,121,0,0,121,,,,,,,"4A4B4D4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155035P040155093521001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WARD FEED YARD, INC. EMPLOYEE PROFIT SHARING TRUST","001","1979-05-01","WARD FEED YARD, INC.",,,"C/O CPI-QPC, INC.","P.O. BOX 1167","GREAT BEND","KS","67530",,,,,,,,,,,,,,,,,,"480704759","6207938473","112112","WARD FEED YARD, INC.","C/O CPI-QPC, INC.","P.O. BOX 1167",,"GREAT BEND","KS","67530",,,,,,,"480704759","6207938473",,,,"2011-10-17T15:47:46-0500","AARON SPANIER",,,,,141,104,1,36,141,0,141,133,6,,"2E2F2G2J2K2R3D3F3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017154933P040696626976001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"ALTISOURCE PORTFOLIO SOLUTIONS, INC. WELFARE BENEFIT PLAN","501","2009-09-01","ALTISOURCE PORTFOLIO SOLUTIONS, INC.",,,"2002 SUMMIT BOULEVARD","SUITE 600","ATLANTA","GA","30319",,,,,,,,,,,,,,,,,,"050539094","7706447400","561440","ALTISOURCE PORTFOLIO SOLUTIONS, INC.",,"2002 SUMMIT BOULEVARD","SUITE 600","ATLANTA","GA","30319",,,,,,,"050539094","7706447400",,,,"2011-10-17T15:48:09-0500","STEVEN NIELSEN",,,,,625,664,10,,674,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017160825P030022396434001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MIDMICHIGAN HEALTH 403B SAVINGS PLAN","003","1976-06-01","MIDMICHIGAN HEALTH",,,"4005 ORCHARD DRIVE",,"MIDLAND","MI","48670",,,,,,,,,,,,,,,,,,"382459948","9898393623","621610","MIDMICHIGAN HEALTH",,"4005 ORCHARD DRIVE",,"MIDLAND","MI","48670",,,,,,,"382459948","9898393623",,,,"2011-10-17T15:22:09-0500","GREG GHILARDI",,,,,4136,3873,0,393,4266,0,4266,4266,134,,"2L2M2T2R2F3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017151259P040023293666001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NJ SPINE AND SPORTS MEDICINE, PC DEFINED BENEFIT PLAN","002","2007-01-01","NJ SPINE AND SPORTS MEDICINE, P.C.",,,"20 MURRAY HILL PARKWAY",,"EAST RUTHERFORD","NJ","07073",,,,,,,"20 MURRAY HILL PARKWAY",,"EAST RUTHERFORD","NJ","07073",,,,,,,"061597941","2019640200","621111","NJ SPINE AND SPORTS MEDICINE, P.C.",,"20 MURRAY HILL PARKWAY",,"EAST RUTHERFORD","NJ","07073",,,,,,,"061597941","2019640200",,,,"2011-10-17T15:12:41-0500","DAVID CAHN",,,,,4,4,,,4,0,4,,0,,"1D1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017151417P040696481536001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VOLUNTARY ACCIDENT PLAN","506","1973-04-01","TRUSTEES OF BOSTON UNIVERSITY",,"HUMAN RESOURCES","25 BUICK STREET",,"BOSTON","MA","02215",,,,,,,"25 BUICK STREET",,"BOSTON","MA","02215",,,,,,,"042103547","6173534489","611000","TRUSTEES OF BOSTON UNIVERSITY","HUMAN RESOURCES","25 BUICK STREET",,"BOSTON","MA","02215",,,,,,,"042103547","6173534489",,,,"2011-10-17T15:13:35-0500","NIMET GUNDOGAN",,,,,3165,3211,,,3211,,3211,,,,,"4L",,,,"1","1",,,"0",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155455P040696647264001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"PPL EMPLOYEE CONSULTATION SERVICE","514","1977-04-01","PPL SERVICES CORPORATION",,,"TWO NORTH NINTH STREET",,"ALLENTOWN","PA","181011139",,,,,,,,,,,,,,,,,,"233041441","6107745151","221100","PPL SERVICES CORPORATION",,"TWO NORTH NINTH STREET",,"ALLENTOWN","PA","181011139",,,,,,,"233041441","6107745151",,,,"2011-10-17T15:52:51-0500","SUZANNE WEIRBACK",,,,,5944,6147,,,6147,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017160457P030151474545015","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PEAVINE CONSTRUCTION INC PROFIT SHARING PLAN","001","1985-05-01","PEAVINE CONSTRUCTION, INC",,,"2332 LARKIN CIRCLE",,"SPARKS","NV","89432",,,,,,,"PO BOX 2244",,"SPARKS","NV","89432",,,,,,,"880200342","7753592288","237990","PEAVINE CONSTRUCTION INC",,"2332 LARKIN CIRCLE",,"SPARKS","NV","89432",,,,,,,"880200342","7753592288",,,,"2011-10-17T13:56:08-0500","MICHAEL A FARETTO",,,,,169,58,2,32,92,,92,83,,,"3D2T2K2J2G2F2E",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155557P030702190304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NATIONAL STARCH LLC RETIREMENT SAVINGS PLAN","002","1993-01-01","ICI GROUP SERVICES INC.",,"C O MGR. SHARED SERVICES","525 WEST VAN BUREN",,"CHICAGO","IL","60607",,,,,,,,,,,,,,,,,,"611478116","3125447000","325500","ICI GROUP SERVICES INC.","C O MGR. SHARED SERVICES","525 WEST VAN BUREN",,"CHICAGO","IL","60607",,,,,,,"611478116","3125447000",,,,"2011-10-17T15:33:05-0500","JOHN SUROWIEC",,,,,1060,489,0,179,668,0,668,668,9,,"2E2F2G2J2K2S2T3F3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017160322P040155109809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WESTERN NEWS&INFO, INC. PROFIT SHARING PLAN","002","1963-12-30","WESTERN NEWS&INFO, INC.",,,"1748 S. ARIZONA AVENUE",,"YUMA","AZ","853645727",,,,,,,,,,,,,,,,,,"860351129","9287833311","451212","WESTERN NEWS&INFO, INC.",,"1748 S. ARIZONA AVENUE",,"YUMA","AZ","853645727",,,,,,,"860351129","9287833311",,,,"2011-10-17T16:03:21-0500","DJ JOHNSON",,,,,234,255,0,50,305,0,305,267,7,,"2E2J2K2F2G3D3H2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162250P040155132305001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","1","0","0","0",,"PARTNER LONG TERM DISABILITY","507","1981-10-01","KPMG LLP",,,"3 CHESTNUT RIDGE ROAD",,"MONTVALE","NJ","07645",,,,,,,"3 CHESTNUT RIDGE ROAD",,"MONTVALE","NJ","07645",,,,,,,"135565207","2013077157","541211","KPMG LLP",,"3 CHESTNUT RIDGE ROAD",,"MONTVALE","NJ","07645",,,,,,,"135565207","2013077157",,,,"2011-10-17T14:48:27-0500","JENNYROSE LISENA",,,,,1707,0,0,0,0,,0,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162308P040155132513001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","0","0",,"PACIFIC CLAY PRODUCTS AND UNITED STEELWORKERS OF AMERICA UNION PENSION PLAN","002","1967-05-01","PACIFIC CLAY PRODUCTS, INC.",,,"14741 LAKE STREET",,"LAKE ELSINORE","CA","92530",,,,,,,,,,,,,,,,,,"952588159","9516742131","327100","PACIFIC CLAY PRODUCTS, INC.",,"14741 LAKE STREET",,"LAKE ELSINORE","CA","92530",,,,,,,"952588159","9516742131",,,,"2011-10-17T16:03:15-0500","DALE KLINE",,,,,202,49,57,80,186,13,199,,0,,"1B1G1I3F",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017175146P030022420546001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHERN CALIFORNIA ORAL & MAXILLOFACIAL SURGICAL ARTS 401(K) PROFIT SHARING PLAN","003","2009-01-01","RENNIE CHEUNG, DMD, MD & VICTOR HO, DMD, GP DBA SOUTHERN CA ORAL &","MAXILLOFACIAL SURGICAL ARTS",,"6240 W. MANCHESTER AVE.",,"LOS ANGELES","CA","90045",,,,,,,"SOUTHERN CALIF. ORAL MAXILIOFACIAL","6240 W. MANCHESTER AVE.","LOS ANGELES","CA","90045",,,,,,,"954872097","3106700220","621111","RENNIE CHEUNG, DMD, MD & VICTOR HO, DMD, GP DBA SOUTHERN CA ORAL &",,"6240 W. MANCHESTER AVE.",,"LOS ANGELES","CA","90045",,,,,,,"954872097","3106700220",,,,"2011-10-17T17:51:40-0500","VICTOR HO, D.M.D","2011-10-17T17:51:40-0500","VICTOR HO, D.M.D",,,15,14,,2,16,,16,15,0,,"2A2E2G2J3D",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017180644P040697104064001","2010-03-25","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"DIRTY DOG FACE INCORPORATED PROFIT SHARING PLAN","001","2010-03-25","DIRTY DOG FACE INCORPORATED",,,"PO BOX 653","973 N. ORTONVILLE ROAD","ORTONVILLE","MI","484620653",,,,,,,,,,,,,,,,,,"272197172","2489049732","812990","DIRTY DOG FACE INCORPORATED",,"PO BOX 653","973 N. ORTONVILLE ROAD","ORTONVILLE","MI","484620653",,,,,,,"272197172","2489049732",,,,"2011-10-17T18:06:05-0500","LISA LASCALA",,,,,1,1,,,1,,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017152436P030151433649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EMPIRE OFFICE, INC. 401(K) PLAN II","002","1995-01-01","EMPIRE OFFICE, INC.",,,"105 MADISON AVE, 15TH FL",,"NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"131945763","2126075649","442110","EMPIRE OFFICE, INC.",,"105 MADISON AVE, 15TH FL",,"NEW YORK","NY","10016",,,,,,,"131945763","2126075649",,,,"2011-10-17T14:54:45-0500","YOLANDA BURGOS",,,,,167,166,0,40,206,0,206,159,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017152603P040155064177001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"PREMIO FOODS, INC. 401(K) PLAN","001","1998-02-01","PREMIO FOODS, INC.",,,"365 WEST PASSAIC STREET, 5TH FLOOR",,"ROCHELLE PARK","NJ","07662",,,,,,,"365 WEST PASSAIC STREET, 5TH FLOOR",,"ROCHELLE PARK","NJ","07662",,,,,,,"222237487","2019092370","311900","PREMIO FOODS, INC.",,"365 WEST PASSAIC STREET, 5TH FLOOR",,"ROCHELLE PARK","NJ","07662",,,,,,,"222237487","2019092370",,,,"2011-10-17T15:24:35-0500","MARC CINQUE",,,,,594,395,0,11,406,1,407,48,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017152828P040155067137001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ROCKINGHAM COMMUNITY ACTION 403(B) PLAN","003","2001-04-01","ROCKINGHAM COMMUNITY ACTION",,,"4 CUTTS STREET, NO. 1",,"PORTSMOUTH","NH","03801",,,,,,,,,,,,,,,,,,"020268379","6034312911","624200","ROCKINGHAM COMMUNITY ACTION",,"4 CUTTS STREET, NO. 1",,"PORTSMOUTH","NH","03801",,,,,,,"020268379","6034312911",,,,"2011-10-14T11:04:06-0500","RON ROSS",,,,,121,80,,54,134,,134,134,,,"2L",,"1",,"1",,"1",,"1",,,,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017160014P030151472081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KING-BRUWAERT HOUSE RETIREMENT FUND","003","1992-01-01","KING-BRUWAERT HOUSE",,,"6101 SOUTH COUNTY LINE ROAD",,"BURR RIDGE","IL","60521",,,,,,,,,,,,,,,,,,"362167769","6303232250","623000","KING-BRUWAERT HOUSE",,"6101 SOUTH COUNTY LINE ROAD",,"BURR RIDGE","IL","60521",,,,,,,"362167769","6303232250",,,,"2011-10-17T15:39:25-0500","CARL BAKER","2011-10-17T15:39:25-0500","CARL BAKER",,,136,116,0,14,130,0,130,128,3,,"2E2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017154515P030022392850009","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"LYNN S. IGEL KEOGH PROFIT SHARING PLAN","001","1983-12-21","LYNN S. IGEL",,,"250 WEST 90TH STREET",,"NEW YORK","NY","10024",,,,,,,,,,,,,,,,,,"133881266","2125807030","541600","LYNN S. IGEL",,"250 WEST 90TH STREET",,"NEW YORK","NY","10024",,,,,,,"133881266",,,,,"2011-10-17T16:31:16-0500","LYNN S. IGEL",,,,,2,2,0,0,2,0,2,2,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162539P040023309090001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ORODAY'S EMPLOYEE RETIREMENT PLAN","001","1996-01-01","ORODAY, INC.",,,"2393 TELLER ROAD, SUITE 104",,"NEWBURY PARK","CA","91320",,,,,,,,,,,,,,,,,,"770374267","8054989344","541519","ORODAY, INC.",,"2393 TELLER ROAD, SUITE 104",,"NEWBURY PARK","CA","91320",,,,,,,"770374267","8054989344",,,,"2011-10-17T16:25:35-0500","JEFF DAYMUDE",,,,,145,105,0,9,114,0,114,75,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017160625P030151475649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACCESS INTERPRETING, INC","001","2009-01-01","ACCESS INTERPRETING, INC",,,"801 COTTAGE STREET SW",,"VIENNA","VA","22180",,,,,,,,,,,,,,,,,,"261345012","5717304330","541930","ACCESS INTERPRETING, INC",,"801 COTTAGE STREET SW",,"VIENNA","VA","22180",,,,,,,"261345012","5717304330",,,,"2011-10-17T15:08:36-0500","LYLE VOLD",,,,,121,72,0,0,72,0,72,4,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017171630P040155189393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BROCKTON NEIGHBORHOOD HEALTH CENTER 403(B) PLAN","003","1997-07-17","BROCKTON NEIGHBORHOOD HLTH CTR",,,"63 MAIN STREET",,"BROCKTON","MA","02301",,,,,,,,,,,,,,,,,,"043165044","5085591370","621498","BROCKTON NEIGHBORHOOD HLTH CTR",,"63 MAIN STREET",,"BROCKTON","MA","02301",,,,,,,"043165044","5085591370",,,,"2011-10-17T17:14:52-0500","MELVIN BENSON",,,,,231,258,0,67,325,0,325,176,257,,"2L3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017151308P040023293730001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ROBERT S PASHMAN MD INC PROFIT SHARING PLAN","001","1995-01-01","ROBERT S PASHMAN MD INC",,,"PO BOX 450",,"BEVERLY HILLS","CA","902130450",,,,,,,,,,,,,,,,,,"954461670","3104239983","621111","ROBERT S PASHMAN MD INC",,"PO BOX 450",,"BEVERLY HILLS","CA","902130450",,,,,,,"954461670","3104239983",,,,"2011-10-17T15:11:16-0500","ROBERT S PASHMAN",,,,,4,3,0,1,4,0,4,4,0,,"2A2E3D","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155208P030151463249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PIEDMONT HEALTHCARE, INC. RETIREMENT PLAN","001","1962-05-01","PIEDMONT HEALTHCARE, INC.",,,"1968 PEACHTREE ROAD, N.W.",,"ATLANTA","GA","30309",,,,,,,,,,,,,,,,,,"580566213","4046053760","622000","PIEDMONT HEALTHCARE, INC.",,"1968 PEACHTREE ROAD, N.W.",,"ATLANTA","GA","30309",,,,,,,"580566213","4046053760",,,,"2011-10-17T15:27:55-0500","STEVE KARASICK",,,,,6705,3902,588,2007,6497,39,6536,,140,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017185005P040155260641001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"RUSSELL REAL ESTATE EQUITY FUND","008",,"RUSSELL TRUST COMPANY","COMMINGLED EMPLOYEE BENEFIT","FUNDS TRUST","1301 SECOND AVENUE, 18TH FLOOR",,"SEATTLE","WA","98101",,,,,,,,,,,,,,,,,,"911117282","8004553782",,"RUSSELL TRUST COMPANY",,"1301 SECOND AVENUE, 18TH FLOOR",,"SEATTLE","WA","98101",,,,,,,"911116938","8004553782",,,,,,,,"2011-10-17T17:18:16-0500","ROSS ERICKSON",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-17",,"Filed with authorized/valid electronic signature", "20111017151542P040011466645001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"IAV AUTOMOTIVE ENGINEERING INC. 401(K) PLAN","001","1999-10-28","IAV AUTOMOTIVE ENGINEERING INC.",,,"15620 TECHNOLOGY DRIVE",,"NORTHVILLE","MI","48168",,,,,,,"15620 TECHNOLOGY DRIVE",,"NORTHVILLE","MI","48168",,,,,,,"383431346","7342333321","541330","IAV AUTOMOTIVE ENGINEERING INC.",,"15620 TECHNOLOGY DRIVE",,"NORTHVILLE","MI","48168",,,,,,,"383431346","7342333321",,,,"2011-10-17T15:15:06-0500","KATHLEEN RAFALKO",,,,,134,79,0,45,124,0,124,97,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017151548P030151425745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DAVALAN SALES, INC. 401(K) PLAN","001","1997-07-01","DAVALAN SALES, INC.",,,"1601 EAST OLYMPIC, SUITE 325",,"LOS ANGELES","CA","90021",,,,,,,,,,,,,,,,,,"953885320","2136232500","424400","DAVALAN SALES, INC.",,"1601 EAST OLYMPIC, SUITE 325",,"LOS ANGELES","CA","90021",,,,,,,"953885320","2136232500",,,,"2011-10-17T14:50:09-0500","ANDREW MILLER",,,,,157,174,1,8,183,0,183,59,9,,"2E2J2K2F2G3D",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153216P030050722775001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LONG TERM DISABILITY PLAN","516","2008-06-19","STANT CORPORATION",,,"1600 COLUMBIA AVENUE",,"CONNERSVILLE","IN","473311672",,,,,,,,,,,,,,,,,,"351768429","7658278118","336300","STANT CORPORATION",,"1600 COLUMBIA AVENUE",,"CONNERSVILLE","IN","473311672",,,,,,,"351768429","7658278118",,,,"2011-10-17T14:58:52-0500","CHRISTI GAMBLE",,,,,162,289,0,0,289,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153638P040155077777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEACH MEDICAL SPECIALISTS PROFIT SHARING PLAN","002","2010-01-01","BEACH MEDICAL SPECIALISTS",,,"8226 TIMBER RIDGE ROAD",,"CONWAY","SC","29526",,,,,,,"8226 TIMBER RIDGE ROAD",,"CONWAY","SC","29526",,,,,,,"562169723","8434577666","621111","BEACH MEDICAL SPECIALISTS",,"8226 TIMBER RIDGE ROAD",,"CONWAY","SC","29526",,,,,,,"562169723","8434577666",,,,"2011-10-17T13:55:09-0500","RAJAN GUPTA",,,,,2,2,0,0,2,0,2,2,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155614P040023304002001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GROUP LIFE INSURANCE PLAN","501","1973-08-01","SNR DENTON US LLP",,"JENA CAPEWELL","233 S. WACKER DRIVE","SUITE 7800","CHICAGO","IL","60606",,,,,,,"233 S. WACKER DRIVE","SUITE 7800","CHICAGO","IL","60606",,,,,,,"361796730","3128768000","541110","SNR DENTON US LLP","JENA CAPEWELL","233 S. WACKER DRIVE","SUITE 7800","CHICAGO","IL","60606",,,,,,,"361796730","3128768000","SONNENSCHEIN NATH AND ROSENTHAL LLP","361796730","501","2011-10-17T13:51:26-0500","JENNIFER CAPEWELL","2011-10-17T15:22:39-0500","FRANK VANDERPLOEG",,,1106,994,0,0,994,,994,,,,,"4B","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017162336P040155132833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRIBUNE EMPLOYEE STOCK OWNERSHIP PLAN","015","2007-01-01","TRIBUNE COMPANY",,,"435 NORTH MICHIGAN AVENUE",,"CHICAGO","IL","606114041",,,,,,,,,,,,,,,,,,"361880355","3122224568","511110","TRIBUNE COMPANY EMPLOYEE BENEFITS COMMITTEE",,"435 NORTH MICHIGAN AVENUE",,"CHICAGO","IL","606114041",,,,,,,"362778721","3122224568",,,,"2011-10-17T16:21:13-0500","JACK RODDEN",,,,,10864,10186,0,3110,13296,38,13334,13020,695,,"2I2P2Q3H3I3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017180926P040155232817001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JENNIFER R. THULIN MD QUALIFIED RETIREMENT PROFIT SHARING PLAN","001","1986-12-31","JENNIFER R. THULIN, MD",,,"67 UNION STREET, #505",,"NATICK","MA","017606056",,,,,,,"67 UNION STREET, #505",,"NATICK","MA","017606056",,,,,,,"223260495","5086513400","621111","JENNIFER R. THULIN, MD",,"67 UNION STREET, #505",,"NATICK","MA","017606056",,,,,,,"223260495","5086513400",,,,"2011-10-17T14:03:26-0500","JENNIFER R. THULIN",,,,,2,2,,,2,,2,2,,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017180939P040155233009001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LAW OFFICES KIRK Y GRIFFIN PROFIT SHARING PLAN","001","1997-01-01","LAW OFFICES KIRK Y GRIFFIN",,,"50 STANIFORD STREET","PO BOX 8190","BOSTON","MA","02114",,,,,,,"50 STANIFORD STREET","PO BOX 8190","BOSTON","MA","02114",,,,,,,"042602057","6173670966","541110","LAW OFFICES KIRK Y GRIFFIN",,"50 STANIFORD STREET","PO BOX 8190","BOSTON","MA","02114",,,,,,,"042602057","6173670966",,,,"2011-10-17T14:02:48-0500","KIRK GRIFFIN","2011-10-17T14:02:48-0500","KIRK GRIFFIN","2011-10-17T14:02:48-0500","ARTHUR ARSENAULT",2,2,,,2,,2,2,,,"2E2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature","Filed with authorized/valid electronic signature" "20111017160026P030151472257008","2010-07-01","2011-06-30","2",,,,,,,,,,,,"NEWSPAPER RETIREMENT PLAN","002","2008-01-01","LAMESA REPORTER, INC.",,,"P.O. BOX 710",,"LAMESA","TX","79331",,,,,,,,,,,,,,,,,,"751277457","8068722177","511110","LAMESA REPORTER, INC.",,"P.O. BOX 710",,"LAMESA","TX","79331",,,,,,,"751277457","8068722177",,,,"2011-10-17T15:47:17-0500","RUSSEL SKILES",,,,,13,10,0,0,10,0,10,10,,,"2J2G3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155855P040023304418002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ROSS MOULD CAFETERIA PLAN","502","1994-02-01","ROSS MOULD, INCORPORATED",,,"259 SOUTH COLLEGE STREET",,"WASHINGTON","PA","15301",,,,,,,,,,,,,,,,,,"251435175","7242227006","332900","ROSS MOULD, INCORPORATED",,"259 SOUTH COLLEGE STREET",,"WASHINGTON","PA","15301",,,,,,,"251435175","7242227006",,,,"2011-10-17T10:42:24-0500","DEBORAH JOHNS","2011-10-17T10:42:24-0500","DEBORAH JOHNS",,,595,445,145,,590,,,,,,,"4A4B4D4E4H",,,,"1","1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017160708P040155113937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INSURANCE MANAGEMENT SERVICES, INC. 401K PLAN","001","1985-01-01","INSURANCE MANAGEMENT SERVICES, INC.",,,"PO BOX 15688",,"AMARILLO","TX","791055688",,,,,,,,,,,,,,,,,,"752355889","8063735944","524210","INSURANCE MANAGEMENT SERVICES, INC.",,"PO BOX 15688",,"AMARILLO","TX","791055688",,,,,,,"752355889","8063735944",,,,"2011-10-17T16:03:29-0500","STEVE WILLINGHAM",,,,,123,90,16,20,126,0,126,126,9,,"2E2J2G2A3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017174154P040697038464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EVEREST REINSURANCE RETIREMENT PLAN","002","1996-01-01","EVEREST REINSURANCE COMPANY",,,"477 MARTINSVILLE ROAD",,"LIBERTY CORNER","NJ","07938",,,,,,,,,,,,,,,,,,"222005057","9086043498","524150","EVEREST REINSURANCE COMPANY",,"477 MARTINSVILLE ROAD",,"LIBERTY CORNER","NJ","07938",,,,,,,"222005057","9086043498",,,,"2011-10-17T17:41:42-0500","KEITH SHOEMAKER",,,,,1018,763,54,218,1035,,1035,,,,"1A1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017152641P040696531248001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MIDAS RETIREMENT INCOME PLAN","003","1972-01-01","MIDAS INC.",,,"1300 ARLINGTON HEIGHTS ROAD",,"ITASCA","IL","60143",,,,,,,,,,,,,,,,,,"364180556","6304383028","336300","MIDAS INC.",,"1300 ARLINGTON HEIGHTS ROAD",,"ITASCA","IL","60143",,,,,,,"364180556","6304383028","MIDAS INTERNATIONAL CORPORATION","364180556","003","2011-10-17T15:20:49-0500","BEN PARMA",,,,,1662,227,444,842,1513,118,1631,,16,,"1A1B1G1D3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017154524P040696609584001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RELIABLE TOOL & MACHINE CO., INC. GROUP HEALTH INSURANCE PLAN","501","1989-07-01","RELIABLE TOOL & MACHINE CO., INC.",,,"P. O. BOX 757",,"KENDALLVILLE","IN","46755",,,,,,,"300 WEST OHIO STREET",,"KENDALLVILLE","IN","46755",,,,,,,"350997577","2603474000","333610","RELIABLE TOOL & MACHINE CO., INC.",,"P. O. BOX 757",,"KENDALLVILLE","IN","46755",,,,,,,"350997577","2603474000",,,,"2011-10-17T15:44:52-0500","KAREN FOGLE",,,,,51,46,0,0,46,0,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017154434P040155085777003","2010-01-01","2010-12-31","1",,,,,,"1","1","1",,,,"LOCAL 262 OF NEW JERSEY RWDSU UFCW HEALTH AND WELFARE PLAN","501","1947-07-01","LOCAL 262 RWDSU, UFCW",,,"137 EVERGREEN PLACE",,"EAST ORANGE","NJ","070182007",,,,,,,,,,,,,,,,,,"221460010","9736783434","525100","LOCAL 262 OF NEW JERSEY RWDSU UFCW WELFARE PLAN","PATRICK SPERDUTO","137 EVERGREEN PLACE",,"EAST ORANGE","NJ","070182007",,,,,,,"221460010","9736783434",,,,"2011-10-17T15:34:52-0500","PATRICK SPERDUTO PRESIDENT","2011-10-17T15:32:54-0500","DANIEL RIGHETTI",,,1122,1087,21,,1108,,1108,,,,,"4E4D4B4A","1",,"1",,"1",,"1",,,,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017160526P040696690784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EVER-READY GLASS 401 (K) SALARY REDUCTION PLAN AND TRUST","001","2002-01-01","RDJ HOLDINGS, INC.",,,"2525 E. INDIAN SCHOOL RD",,"PHOENIX","AZ","85016",,,,,,,"2525 E. INDIAN SCHOOL RD",,"PHOENIX","AZ","85016",,,,,,,"860940798","6022356002","551112","RDJ HOLDINGS, INC.",,"2525 E. INDIAN SCHOOL RD",,"PHOENIX","AZ","85016",,,,,,,"860940798","6022356002",,,,"2011-10-17T16:04:52-0500","BARB TURBERVILLE",,,,,104,82,,,82,,82,22,0,,"2F2G2J2K3E3H",,,,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017171642P040155189585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHRISTOPHER F. BRANDY, M.D., P.C. PROFIT SHARING PLAN","001","1984-02-01","CHRISTOPHER F. BRANDY, M.D., P.C.",,,"3 LYON PLACE",,"OGDENSBURG","NY","136692590",,,,,,,,,,,,,,,,,,"161571680","3153932611","621111","CHRISTOPHER F. BRANDY, M.D., P.C.",,"3 LYON PLACE",,"OGDENSBURG","NY","136692590",,,,,,,"161571680","3153932611",,,,"2011-10-17T17:16:42-0500","CHRISTOPHER BRANDY",,,,,2,3,0,0,3,0,3,3,0,,"2E2J3D2H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017171721P040155190129001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"COMTECH TELECOMMUNICATIONS CORP. 401(K) PLAN","015","1988-01-01","COMTECH TELECOMMUNICATIONS CORP.",,,"68 S SERVICE RD",,"MELVILLE","NY","11747",,,,,,,"68 S SERVICE RD",,"MELVILLE","NY","11747",,,,,,,"112139466","6319627000","334200","COMTECH TELECOMMUNICATIONS CORP.",,"68 S SERVICE RD",,"MELVILLE","NY","11747",,,,,,,"112139466","6319627000",,,,"2011-10-17T17:15:53-0500","PATRICK OGARA",,,,,1625,1199,0,353,1552,0,1552,1406,31,,"2E2F2G2J2K2T2R",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153651P030151448289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE PENSION PLAN OF THE GOOD SAMARITAN HOSPITAL","001","1964-01-01","GOOD SAMARITAN HOSPITAL",,,"P.O. BOX 1281",,"LEBANON","PA","17042",,,,,,,"4TH AND WALNUT STREETS",,"LEBANON","PA","17042",,,,,,,"230794160","7172707500","622000","GOOD SAMARITAN HOSPITAL",,"P.O. BOX 1281",,"LEBANON","PA","17042",,,,,,,"230794160","7172707500",,,,"2011-10-17T15:06:10-0500","KIMBERLY FEEMAN",,,,,2226,1134,404,637,2175,21,2196,,44,,"1A1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155112P030151462433001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"TECHNICAL SERVICES OF NORTH AMERICA, INC. PROFIT SHARING PLAN","001","2002-01-01","TECHNICAL SERVICES OF NORTH AMERICA INC.",,,"PO BOX 4566 GRAND CENTRAL STATION","60 EAST 42ND STREET","NEW YORK","NY","101654566",,,,,,,,,,,,,,,,,,"112973508","2129721095","523900","TECHNICAL SERVICES OF NORTH AMERICA INC.",,"PO BOX 4566 GRAND CENTRAL STATION","60 EAST 42ND STREET","NEW YORK","NY","101654566",,,,,,,"112973508","2129721095",,,,"2011-10-17T11:33:02-0500","INEZ E. D'ARCANGELO",,,,,7,5,,1,6,1,7,7,,,"2E2G3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155120P030702171520001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CADWALADER, WICKERSHAM & TAFT LLP HR 10 RETIREMENT PLAN","001","1971-01-01","CADWALADER, WICKERSHAM & TAFT LLP",,,"ONE WORLD FINANCIAL CENTER",,"NEW YORK","NY","102811414",,,,,,,,,,,,,,,,,,"134980350","2125046000","541110","CADWALADER, WICKERSHAM & TAFT LLP",,"ONE WORLD FINANCIAL CENTER",,"NEW YORK","NY","102811414",,,,,,,"134980350","2125046000",,,,"2011-10-17T15:26:42-0500","MITCHEL E. SEKLER",,,,,139,110,3,24,137,0,137,133,0,,"2E2K2G3B",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155356P040155098961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RUMSEY ELECTRIC COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","005","1985-02-01","RUMSEY ELECTRIC COMPANY",,,"P.O. BOX 807",,"CONSHOHOCKEN","PA","19428",,,,,,,"15 COLWELL LANE",,"CONSHOHOCKEN","PA","19428",,,,,,,"231040930","6108329000","334410","RUMSEY ELECTRIC COMPANY",,"P.O. BOX 807",,"CONSHOHOCKEN","PA","19428",,,,,,,"231040930","6108329000",,,,"2011-10-17T15:53:33-0500","SCOTT CUTLER","2011-10-17T15:53:03-0500","SCOTT CUTLER",,,323,243,34,45,322,0,322,319,14,,"2I2O2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017162617P040155135057001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"NORTHWEST PERMANENTE, P.C. RETIREMENT PLAN -PS ASPECT","003","1994-01-01","NORTHWEST PERMANENTE, P. C.",,,"KAISER PERMANENTE BUILDING","500 NE MULTNOMAH STREET, SUITE 100","PORTLAND","OR","972322099",,,,,,,"KAISER PERMANENTE BUILDING","500 NE MULTNOMAH STREET, SUITE 100","PORTLAND","OR","972322099",,,,,,,"930698548","5038133871","621112","NORTHWEST PERMANENTE, P. C.",,"KAISER PERMANENTE BUILDING","500 NE MULTNOMAH STREET, SUITE 100","PORTLAND","OR","972322099",,,,,,,"930698548","5038133871",,,,"2011-10-17T13:07:05-0500","ANN STENZEL","2011-10-17T15:57:46-0500","HARRY STATHOS",,,1287,1077,8,179,1264,2,1266,1262,0,,"2E2F2G2J2T2R","4B","1",,"1",,"1",,"1",,"1",,,"1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017172617P040155197633001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COLORADO FARM BUREAU MUTUAL INSURANCE COMPANY GROUP MEDICAL PLAN","501","1993-01-01","COLORADO FARM BUREAU MUTUAL INSURANCE COMPANY",,,"9177 E. MINERAL CIRCLE",,"ENGLEWOOD","CO","80112",,,,,,,,,,,,,,,,,,"840401397","3037497500","524150","COLORADO FARM BUREAU MUTUAL INSURANCE COMPANY",,"9177 E. MINERAL CIRCLE",,"ENGLEWOOD","CO","80112",,,,,,,"840401397","3037497500",,,,"2011-10-17T18:06:57-0500","SHELLY JOHNSON",,,,,92,87,,,87,,87,,,,,"4A4Q","1",,"1","1","1",,"1",,,,,,"1","1","1","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017171941P040696968080003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"INDUSTRIAL MAINTENANCE, WELDING & MACHINING COMPANY, INC. CAFETERIA PLAN","501","1993-01-01","INDUSTRIAL MAINTENANCE, WELDING & MACHINING COMPANY, INC.",,,"1431 W. PERSHING RD.",,"CHICAGO","IL","60609",,,,,,,,,,,,,,,,,,"351347953","7733766526","333200","INDUSTRIAL MAINTENANCE, WELDING & MACHINING COMPANY",,"1431 W. PERSHING RD.",,"CHICAGO","IL","60609",,,,,,,"351347953","7733766526",,,,"2011-10-17T11:54:46-0500","STEPHEN M SULARSKI",,,,,121,131,,,131,,,,,,,"4B","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017184505P040155257041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"J PETER ROBINSON A SOLE PROPRIETOR PROFIT SHARING PLAN","001","2003-01-01","J PETER ROBINSON A SOLE PROPRIETOR",,"BASH GESAS AND COMPANY","9401 WILSHIRE BLVD STE 700",,"BEVERLY HILLS","CA","902122944",,,,,,,,,,,,,,,,,,"200513153","3102052300","711510","J PETER ROBINSON A SOLE PROPRIETOR","BASH GESAS AND COMPANY","9401 WILSHIRE BLVD STE 700",,"BEVERLY HILLS","CA","902122944",,,,,,,"200513153","3102052300",,,,"2011-10-17T18:43:13-0500","J PETER ROBINSON",,,,,2,2,0,0,2,0,2,2,0,,"2E2A3B3H3D","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017181011P040155233393001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SOUTHERN UNION COMPANY RETIREMENT INCOME PLAN - PLAN B","008","1994-02-01","SOUTHERN UNION COMPANY",,,"5051 WESTHEIMER RD",,"HOUSTON","TX","77056",,,,,,,,,,,,,,,,,,"750571592","7139897153","221210","SOUTHERN UNION COMPANY",,"5051 WESTHEIMER RD",,"HOUSTON","TX","77056",,,,,,,"750571592","7139897153",,,,"2011-10-17T18:09:39-0500","JOHN R. MOORE",,,,,1688,547,655,276,1478,175,1653,,5,,"1A1C1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153033P040023298914001","2010-01-01","2010-12-31","3",,"1","1","0","0","0","0","1","0","0",,"JOHN L. SULLIVAN CHEVROLET ET AL WELFARE BENEFIT PROGRAM","501","2010-04-01","JOHN L. SULLIVAN CHEVROLET, INC",,"STEVEN RUCKELS","PO BOX 1025",,"ROSEVILLE","CA","95678",,,,,,,"350 AUTONALL DRIVE",,"ROSEVILLE","CA","95661",,,,,,,"941139196","9167821243","441110","JOHN L. SULLIVAN CHEVROLET, INC","STEVEN RUCKELS","PO BOX 1025",,"ROSEVILLE","CA","95678",,,,,,,"941139196","9167821243",,,,"2011-10-17T15:28:32-0500","STEVEN RUCKELS","2011-10-17T15:29:57-0500","STEVEN RUCKELS",,,300,317,14,0,331,,331,,,,,"4A4B4D4E","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017153259P030050723239001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CSC MEDICAL PLAN FOR ALABAMA EMPLOYEES","520","2000-03-18","COMPUTER SCIENCES CORPORATION",,,"2100 EAST GRAND AVENUE, MC B227",,"EL SEGUNDO","CA","90245",,,,,,,,,,,,,,,,,,"952043126","3106153999","541519","CSC RETIREMENT & EMPLOYEE BENEFITS PLANS COMMITTEE",,"2100 EAST GRAND AVENUE, B227",,"EL SEGUNDO","CA","90245",,,,,,,"912079975","3106153999",,,,"2011-10-17T14:38:15-0500","LOUIS BAVIELLO, MEMBER","2011-10-17T11:09:26-0500","DON DEBUCK, VICE PRESIDENT",,,546,555,0,0,555,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017161518P040696721888009","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"CJC FOUNDATIONS, INC. 401(K) SAFE HARBOR PROFIT SHARING PLAN","001","2007-09-01","CJC FOUNDATIONS, INC.",,,"1649 NORTH MAIN",,"OREM","UT","84057",,,,,,,,,,,,,,,,,,"870629823","8014347199","238100","CJC FOUNDATIONS",,"1649 NORTH MAIN",,"OREM","UT","84057",,,,,,,,"8014347199",,,,"2011-10-17T16:03:05-0500","RANDALL JONES",,,,,,,,,,,,,,,"2E2J2K2N3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017174921P040155215313001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MOBILE GAS SERVICE CORPORATION BARGAINING UNIT EMPLOYEE SAVINGS PLAN","004","1990-12-01","MOBILE GAS SERVICE CORPORATION",,"C/O SEMPRA ENERGY","101 ASH STREET, HQ-01D",,"SAN DIEGO","CA","92101",,,,,,,,,,,,,,,,,,"630142930","6196964129","221210","MOBILE GAS SERVICE CORPORATION","C/O SEMPRA ENERGY","101 ASH STREET, HQ-01D",,"SAN DIEGO","CA","92101",,,,,,,"630142930","6196964129",,,,"2011-10-17T17:39:14-0500","G. JOYCE ROWLAND","2011-10-17T17:39:14-0500","G. JOYCE ROWLAND",,,94,81,1,9,91,0,91,71,0,,"2F2H2I2J2K2R3H3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017153821P030151449601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUBLIC HEALTH SOLUTIONS RETIREMENT PLAN","004","1997-09-01","PUBLIC HEALTH SOLUTIONS",,,"220 CHURCH STREET, 5TH FLOOR",,"NEW YORK","NY","100132988",,,,,,,,,,,,,,,,,,"135669201","6466196400","624100","PUBLIC HEALTH SOLUTIONS",,"220 CHURCH STREET, 5TH FLOOR",,"NEW YORK","NY","100132988",,,,,,,"135669201","6466196400",,,,"2011-10-17T15:07:47-0500","DESIREE BUNCH",,,,,1091,261,324,474,1059,17,1076,0,10,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153824P040696581168001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EL GUERO CANELO 401(K) PLAN","001","2005-01-01","EL GUERO CANELO",,,"5201 S. 12TH AVE.",,"TUCSON","AZ","85706",,,,,,,,,,,,,,,,,,"860999344","5208079620","722110","EL GUERO CANELO",,"5201 S. 12TH AVE.",,"TUCSON","AZ","85706",,,,,,,"860999344","5208079620",,,,"2011-10-17T15:34:23-0500","DANIEL CONTRERAS",,,,,12,15,0,0,15,0,15,10,0,,"2G2J2F",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017153317P030151444289001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"SCHWAB MANAGED RETIREMENT TRUST FUND 2045","009",,"CHARLES SCHWAB BANK",,,"211 MAIN STREET","14TH FLOOR","SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"810625169","8007724922",,"CHARLES SCHWAB BANK",,"211 MAIN STREET","14TH FLOOR","SAN FRANCISCO","CA","94105",,,,,,,"810625169","8007724922","THE CHARLES SCHWAB TRUST COMPANY","810625169","009",,,,,"2011-10-17T15:00:04-0500","DAREN FREE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-17",,"Filed with authorized/valid electronic signature", "20111017154250P030022392178001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A. J. SMITH, D.D.S. PROFIT SHARING PLAN","001","1994-01-01","A. J. SMITH, D.D.S.",,,"3980 SOUTH 700 EAST, SUITE 21",,"MURRAY","UT","84107",,,,,,,,,,,,,,,,,,"870304203","8012688053","621210","A. J. SMITH, D.D.S.",,"3980 SOUTH 700 EAST, SUITE 21",,"MURRAY","UT","84107",,,,,,,"870304203","8012688053",,,,"2011-10-17T15:14:38-0500","A.J. SMITH, D.D.S.",,,,,5,5,0,0,5,0,5,5,0,,"2E2A3B3D2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017154401P030151454673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MERRILL TOOL MANAGEMENT COMPANY SAVINGS & PROTECTION PLAN","002","1983-09-01","MERRILL TOOL & MACHINE, INC.",,,"1023 S. WHEELER",,"SAGINAW","MI","48602",,,,,,,,,,,,,,,,,,"382124511","9897916676","333200","MERRILL TOOL & MACHINE, INC.",,"1023 S. WHEELER",,"SAGINAW","MI","48602",,,,,,,"382124511","9897916676",,,,"2011-10-17T15:16:22-0500","MARY KAY YACKEL",,,,,360,309,,71,380,0,380,343,28,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017171538P040023319026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HOSPITAL DAMAS GROUP MEDICAL PLAN","501","2002-01-01","HOSPITAL DAMAS, INC.",,,"PONCE BY PASS",,"PONCE","PR","007171318",,,,,,,,,,,,,,,,,,"660183310","7878408686","622000","HOSPITAL DAMAS, INC.",,"PONCE BY PASS",,"PONCE","PR","007171318",,,,,,,"660183310","7878408686",,,,"2011-10-17T17:13:51-0500","GILBERTO CUEVAS APONTE","2011-10-17T17:13:51-0500","GILBERTO CUEVAS APONTE",,,827,774,0,0,774,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017184536P040155257361001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"ARAN EYE ASSOCIATES PA","001","1999-02-01","ARAN EYE ASSOCIATES PA",,,"1097 SW LEJEUNE RD",,"CORAL GABLES","FL","33134",,,,,,,"1097 SW LEJEUNE RD",,"CORAL GABLES","FL","33134",,,,,,,"650692915","3054422020","621111","ARAN EYE ASSOCIATES PA",,"1097 SW LEJEUNE RD",,"CORAL GABLES","FL","33134",,,,,,,"650692915","3054422020",,,,"2011-10-17T18:44:05-0500","EVELYN DAGNESSES",,,,,161,141,0,43,184,0,184,131,6,,"2E2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017154849P030151460241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAPCO CONTRACTORS, INC. 401(K) PLAN","001","2006-10-01","CAPCO CONTRACTORS, INC.",,,"3323 HIGHWAY 259 NORTH",,"HENDERSON","TX","75652",,,,,,,,,,,,,,,,,,"752584023","9036572699","238900","CAPCO CONTRACTORS, INC.",,"3323 HIGHWAY 259 NORTH",,"HENDERSON","TX","75652",,,,,,,"752584023","9036572699",,,,"2011-10-17T15:23:01-0500","BILLY JOE TORRENCE",,,,,178,230,0,8,238,0,238,42,0,,"2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017160419P040155110737001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR NATIONAL OFFICE AND FIELD STAFF EMPLOYEES OF THE MARCH OF DIMES FOUNDATION","001","1948-01-01","MARCH OF DIMES FOUNDATION",,"NICHOLAS D'ATTOMA","1275 MAMARONECK AVENUE",,"WHITE PLAINS","NY","10605",,,,,,,"1275 MAMARONECK AVENUE",,"WHITE PLAINS","NY","10605",,,,,,,"131846366","9144284100","813000","MARCH OF DIMES FOUNDATION","NICHOLAS D'ATTOMA","1275 MAMARONECK AVENUE",,"WHITE PLAINS","NY","10605",,,,,,,"131846366","9144284100",,,,"2011-10-17T15:56:01-0500","VINCENT SAMPUGNARO","2011-10-17T14:47:49-0500","DAVID HORNE",,,2277,541,798,822,2161,93,2254,,10,,"1A1G",,"1",,"1","1","1",,"1","1","1",,"1","1",,"1","1","1","1","1","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017172523P040696987280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAD RIVER COMMUNITY HOSPITAL 401(K) PLAN","001","1970-01-01","MAD RIVER COMMUNITY HOSPITAL",,,"P. O. BOX 1115",,"ARCATA","CA","95518",,,,,,,,,,,,,,,,,,"941698406","7078223621","622000","MAD RIVER COMMUNITY HOSPITAL",,"P. O. BOX 1115",,"ARCATA","CA","95518",,,,,,,"941698406","7078223621",,,,"2011-10-17T17:24:29-0500","MICHAEL YOUNG",,,,,562,481,0,43,524,0,524,196,0,,"2E2G2J2K2F3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017182612P040155243825003","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"DAVIS DAVIS AND ASSOCIATES RETIREMENT PLAN","001","1989-03-01","DAVIS DAVIS AND ASSOCIATES",,,"429 FORBES AVENUE, SUITE 918",,"PITTSBURGH","PA","15219",,,,,,,,,,,,,,,,,,"251443981","4123912226","541211","DAVIS DAVIS AND ASSOCIATES",,"429 FORBES AVENUE, SUITE 918",,"PITTSBURGH","PA","15219",,,,,,,"251443981","4123912226",,,,"2011-10-17T14:17:03-0500","HOWARD D DAVIS",,,,,7,7,,,7,,7,,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155020P040696630224001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TAX DEFERRED ANNUITY PLAN OF H.A.W.C. INC.","002","1995-07-01","H.A.W.C. INC.",,,"1450 RIDGEVIEW DRIVE, SUITE 200",,"RENO","NV","89519",,,,,,,"1450 RIDGEVIEW DRIVE, SUITE 200",,"RENO","NV","89519",,,,,,,"880293149","7753296300","624100","H.A.W.C. INC.",,"1450 RIDGEVIEW DRIVE, SUITE 200",,"RENO","NV","89519",,,,,,,"880293149","7753296300",,,,"2011-10-17T15:48:32-0500","LIZA FOMOUS",,,,,113,91,0,17,108,2,110,37,0,,"2L",,"1",,,,"1",,,,"1",,,,"1","1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155136P030022393586001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"PROTEUS PACKAGING CORPORATION PROFIT SHARING PLAN","001","1974-01-01","PROTEUS PACKAGING CORPORATION",,,"ONE WORLD PACKAGING CIRCLE",,"FRANKLIN","WI","53132",,,,,,,,,,,,,,,,,,"390873877","4148559100","322200","PROTEUS PACKAGING CORPORATION",,"ONE WORLD PACKAGING CIRCLE",,"FRANKLIN","WI","53132",,,,,,,"390873877","4148559100",,,,"2011-10-17T15:26:58-0500","MARIA FIGOROTTA","2011-10-17T15:26:58-0500","MARIA FIGOROTTA",,,126,111,0,7,118,0,118,106,0,,"3D2E2F2G2J2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017155251P030151463793001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"DIVERSIFIED CLINICAL SERVICES 401(K) PLAN","002","2007-01-01","DIVERSIFIED CLINICAL SERVICES",,,"4500 N. SALISBURY ROAD","SUITE 300","JACKSONVILLE","FL","32216",,,,,,,,,,,,,,,,,,"650675277","9042966526","621498","DIVERSIFIED CLINICAL SERVICES",,"4500 N. SALISBURY ROAD","SUITE 300","JACKSONVILLE","FL","32216",,,,,,,"650675277","9042966526",,,,"2011-10-17T15:28:56-0500","KIMBERLY BERRY","2011-10-17T15:28:56-0500","KIMBERLY BERRY",,,1297,1975,0,61,2036,0,2036,1206,291,,"2E2J2F2G2K2S2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017173639P030151569313003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ROBERT G. HILLSMAN, M.D., P.C. PROFIT SHARING PLAN","001","1987-12-21","ROBERT G. HILLSMAN, M.D., P.C.",,,"2740 SOUTH PIONEER WAY",,"LAS VEGAS","NV","89117",,,,,,,,,,,,,,,,,,"841063866","7022476588","621111","ROBERT G. HILLSMAN, M.D., P.C.",,"2740 SOUTH PIONEER WAY",,"LAS VEGAS","NV","89117",,,,,,,"841063866","7022476588",,,,"2011-10-17T10:48:49-0500","ROBERT G HILLSMAN",,,,,1,1,,,1,,1,1,,,"2E2F2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017172649P040155198001001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HEAD START CHILD DEVELOPMENT COUNCIL, INC. 403(B) PLAN","001","1994-09-01","HEAD START CHILD DEVELOPMENT COUNCIL, INC.",,,"5361 N. PERSHING AVE., STE. A",,"STOCKTON","CA","95207",,,,,,,,,,,,,,,,,,"942342518","2092353138","611000","HEAD START CHILD DEVELOPMENT COUNCIL, INC.",,"5361 N. PERSHING AVE., STE. A",,"STOCKTON","CA","95207",,,,,,,"942342518","2092353138",,,,"2011-10-17T06:26:44-0500","GLORYANNA RHODES",,,,,734,527,24,165,716,,716,665,,,"2E2G2H2J2L2M3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","2",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017172010P040051547527001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"MANISTIQUE PAPERS, INC. GROUP LIFE PLAN","503","2006-11-16","MANISTIQUE PAPERS, INC.",,,"453 S. MACKINAC AVENUE",,"MANISTIQUE","MI","49854",,,,,,,"453 S. MACKINAC AVENUE",,"MANISTIQUE","MI","49854",,,,,,,"651290950","9063412175","322100","MANISTIQUE PAPERS, INC.",,"453 S. MACKINAC AVENUE",,"MANISTIQUE","MI","49854",,,,,,,"651290950","9063412175",,,,"2011-10-17T17:11:20-0500","LINDA BENEDETTO",,,,,215,140,,72,212,,212,,,,,"4B",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017183426P040155249921015","2010-01-01","2010-12-31","3",,,,,,,,,,,,"PANORAMA ORTHOPEDICS PC PROFIT SHARING PLAN","002","1979-05-01","PANORAMA ORTHOPEDICS AND SPINE CENTER PC",,,"660 GOLDEN RIDGE ROAD SUITE 250",,"GOLDEN","CO","80401",,,,,,,,,,,,,,,,,,"840786058","3032331223","621111","PANORAMA ORTHOPEDICS AND SPINE CENTER PC",,"660 GOLDEN RIDGE ROAD SUITE 250",,"GOLDEN","CO","80401",,,,,,,"840786058","3032331223",,,,"2011-10-17T15:27:38-0500","THOMAS G FRIERMOOD",,,,,207,135,,72,207,,207,207,,,"3D2T2R2K2J2G2F2E",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","10",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017151516P030004532899004","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ANTHONY F. ANDERSON PROFIT SHARING PLAN","001","1990-01-01","ANTHONY F. ANDERSON",,,"1102 2ND ST SW",,"ROANOKE","VA","240164711",,,,,,,,,,,,,,,,,,"541204999","5409821525","541110","ANTHONY F. ANDERSON",,"1102 2ND ST SW",,"ROANOKE","VA","240164711",,,,,,,"541204999","5409821525",,,,"2011-10-17T16:02:48-0500","ANTHONY F. ANDERSON","2011-10-17T16:03:00-0500","ANTHONY F. ANDERSON",,,4,3,0,0,3,0,3,3,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017155653P040696655792001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARY MARGARET OLIVER PROFIT SHARING PLAN","001","1989-12-31","MARY MARGARET OLIVER",,,"150 EAST PONCE DE LEON AVE. SUITE 2",,"DECATUR","GA","30030",,,,,,,,,,,,,,,,,,"061438211","4043770485","541110","MARY MARGARET OLIVER",,"150 EAST PONCE DE LEON AVE. SUITE 2",,"DECATUR","GA","30030",,,,,,,"061438211","4043770485",,,,"2011-10-17T11:49:49-0500","NANCY HOPKINS",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017155429P030702185120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PUERTO RICAN CEMENT UNION EMPLOYEES SAVINGS PLAN","001","2005-02-01","FLORIDA LIME CORPORATION",,,"PO BOX 364487",,"SAN JUAN","PR","009364487",,,,,,,,,,,,,,,,,,"660189525","7877833000","327300","FLORIDA LIME CORPORATION",,"PO BOX 364487",,"SAN JUAN","PR","009364487",,,,,,,"660189525","7877833000",,,,"2011-10-17T12:34:38-0500","ENRIQUE IRIZARRY SAN MIGUEL",,,,,189,95,7,0,102,0,102,100,0,,"2E2F2G2T3C",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017152038P030702053504001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JEFFERSON CENTER FOR MENTAL HEALTH 403(B) PENSION PLAN","002","2009-12-15","JEFFERSON CENTER FOR MENTAL HEALTH",,,"4851 INDEPENDENCE STREET, SUITE 200",,"WHEAT RIDGE","CO","80033",,,,,,,,,,,,,,,,,,"840474717","3034250300","622000","JEFFERSON CENTER FOR MENTAL HEALTH",,"4851 INDEPENDENCE STREET, SUITE 200",,"WHEAT RIDGE","CO","80033",,,,,,,"840474717","3034250300",,,,"2011-10-17T14:21:20-0500","DAVID A GOFF","2011-10-17T14:21:20-0500","DAVID A GOFF",,,468,392,0,76,468,0,468,43,0,,"2L2M2F2G2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017160241P040696679984001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"NUS CORPORATION EMPLOYEES' PROFIT SHARING PLAN","004","1972-01-01","KELLOGG BROWN & ROOT LLC",,,"601 JEFFERSTON AVE.",,"HOUSTON","TX","770027900",,,,,,,,,,,,,,,,,,"203897734","7137534614","238900","KBR BENEFITS COMMITTEE",,"601 JEFFERSON",,"HOUSTON","TX","770027900",,,,,,,"770692414","7137534614",,,,"2011-10-17T15:54:53-0500","ANN HOLLINGSWORTH",,,,,435,0,0,0,0,0,0,0,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017160428P040155110897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VOPAK NORTH AMERICA INC. VOLUNTARY AD&D PLAN","501","1976-05-01","VOPAK NORTH AMERICA INC.",,,"2000 WEST LOOP SOUTH, SUITE 2200",,"HOUSTON","TX","770273513",,,,,,,,,,,,,,,,,,"591730241","7135617200","324190","VOPAK NORTH AMERICA INC.",,"2000 WEST LOOP SOUTH, SUITE 2200",,"HOUSTON","TX","770273513",,,,,,,"591730241","7135617200",,,,"2011-10-17T14:55:56-0500","CLINTON ROEDER",,,,,353,347,16,0,363,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111018102138P030022509138001","2008-12-01","2009-11-30","2",,"0","0","0","0","0","0","0","1","0",,"ALLAN RIPP PUBLIC RELATIONS, INC.","002","2001-12-01","ALLAN RIPP PUBLIC RELATIONS, INC.",,,"1776 BROADWAY","SUITE 901","NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"133972670","2122627477","541800","ALLAN RIPP PUBLIC RELATIONS, INC.",,"1776 BROADWAY","SUITE 901","NEW YORK","NY","10019",,,,,,,"133972670","2122627477",,,,"2011-10-18T10:20:32-0500","ALLAN RIPP","2011-10-18T10:20:32-0500","ALLAN RIPP",,,5,5,,,5,,5,,,,"1A1G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018103554P030152132017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CAMEO COLLEGE OF BEAUTY INC 401K PLAN","001","2005-01-01","CAMEO COLLEGE OF BEUATY, INC",,,"124 EAST 5770 SOUTH",,"MURRAY","UT","84107",,,,,,,"124 EAST 5770 SOUTH",,"MURRAY","UT","84107",,,,,,,"870531199","8017475703","611000","CAMEO COLLEGE OF BEUATY, INC",,"124 EAST 5770 SOUTH",,"MURRAY","UT","84107",,,,,,,"870531199","8017475703",,,,"2011-10-18T09:54:51-0500","BRENDA SCHARMAN",,,,,20,14,,,14,,14,14,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017194907P040155296353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOLID GOLD MANAGEMENT GROUP, INC. 401(K) PROFIT SHARING PLAN","002","2005-01-01","SOLID GOLD MANAGEMENT GROUP, INC.",,,"1277 N CUYAMACA ST SUITE G",,"EL CAJON","CA","92020",,,,,,,,,,,,,,,,,,"330989936","6192587356","311110","SOLID GOLD MANAGEMENT GROUP, INC.",,"1277 N CUYAMACA ST SUITE G",,"EL CAJON","CA","92020",,,,,,,"330989936","6192587356",,,,"2011-10-17T19:47:15-0500","TERESITA BACANI",,,,,19,13,0,6,19,0,19,19,0,,"2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017201352P030151739553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WASHINGTON TOWNSHIP MEDICAL GROUP, INC. 401K PLAN","001","2007-01-01","WASHINGTON TOWNSHIP MEDICAL GROUP, INC.",,,"38719 STIVERS ST.",,"FREMONT","CA","94536",,,,,,,,,,,,,,,,,,"352283730","5106086050","621111","WASHINGTON TOWNSHIP MEDICAL GROUP, INC.",,"38719 STIVERS ST.",,"FREMONT","CA","94536",,,,,,,"352283730","5106086050",,,,"2011-10-17T17:29:17-0500","GARY CHARLAND",,,,,143,160,0,32,192,0,192,192,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017220245P040155373025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SYSTEMS INTEGRATION, INC. 401K PLAN","001","1997-01-01","SYSTEMS INTEGRATION, INC.",,,"8201 CORPORATE DR., #300",,"LANDOVER","MD","20785",,,,,,,,,,,,,,,,,,"521676018","2407641100","541512","SYSTEMS INTEGRATION, INC.",,"8201 CORPORATE DR., #300",,"LANDOVER","MD","20785",,,,,,,"521676018","2407641100",,,,"2011-10-17T22:17:23-0500","ERIC FUKUCHI","2011-10-17T22:17:23-0500","ERIC FUKUCHI",,,274,85,,74,159,,159,115,23,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017232712P030151837857001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"GENERAL MILLS, INC AND THE BAKERY, CONFECTIONERY, TOBACCO WORKERS AND GRAIN MILLERS (BCTGM) HEALTH AND WELFARE PLAN","502","1960-10-01","GENERAL MILLS, INC.",,,"NUMBER 1 GENERAL MILLS BLVD M03-09A",,"MINNEAPOLIS","MN","55426",,,,,,,,,,,,,,,,,,"410274440","7632932656","311900","GENERAL MILLS, INC.",,"NUMBER 1 GENERAL MILLS BLVD M03-09A",,"MINNEAPOLIS","MN","55426",,,,,,,"410274440","7632932656",,,,"2011-10-17T23:26:16-0500","JEANNE DENZ",,,,,1462,1429,145,0,1574,,,,,,,"4A4B4D4E4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017235829P040155418193001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"AWARD SOLUTIONS, INC. 401(K) PLAN","001","2001-01-01","AWARD SOLUTIONS INC.",,,"2100 LAKESIDE BLVD.","SUITE 300","RICHARDSON","TX","75082",,,,,,,"2100 LAKESIDE BLVD.","SUITE 300","RICHARDSON","TX","75082",,,,,,,"752710375","9726640727","541600","AWARD SOLUTIONS INC.",,"2100 LAKESIDE BLVD.","SUITE 300","RICHARDSON","TX","75082",,,,,,,"752710375","9726640727",,,,"2011-10-17T23:57:56-0500","TRISH JOHNSON",,,,,61,52,0,5,57,0,57,33,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017183426P040155249921024","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ARROW TRENCHING & EXCAVATING INC PROFIT SHARING","001","1989-01-01","ARROW TRENCHING & EXCAVATING INC",,,"541 OLD STATE ROAD",,"BALLWIN","MO","63021",,,,,,,,,,,,,,,,,,"431524540","6362568878","237210","ARROW TRENCHING & EXCAVATING INC",,"541 OLD STATE ROAD",,"BALLWIN","MO","63021",,,,,,,"431524540","6362568878",,,,"2011-10-17T18:32:03-0500","ROSEMARY COLE",,,,,2,2,,,2,,2,2,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017203610P030151767233001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"SRUQ SPECTRUM INC PROFIT SHARING PLAN & TRUST","001","2007-12-01","SRUQ SPECTRUM INC",,,"PO BOX 3974",,"LAGUNA HILLS","CA","92654",,,,,,,,,,,,,,,,,,"330254162","9496437932","484110","NEWMAN & ASSOICATES ACCOUNTING SERVICES INC",,"160 W. FOOTHILL PKWY STE 105-299",,"CORONA","CA","92882",,,,,,,"330581910","9513721082",,,,"2011-10-17T13:30:35-0500","LESA NEWMAN",,,,,9,,,,0,,0,,1,,"2E",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017232722P030051006167001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GENERAL MILLS INC., LONG-TERM DISABILITY INCOME PLAN","506","1975-06-01","GENERAL MILLS, INC",,,"NUMBER 1 GENERAL MILLS BLVD M03-09A",,"MINNEAPOLIS","MN","55426",,,,,,,,,,,,,,,,,,"410274440","7632932656","311900","GENERAL MILLS, INC",,"NUMBER 1 GENERAL MILLS BLVD M03-09A",,"MINNEAPOLIS","MN","55426",,,,,,,"410274440","7632932656",,,,"2011-10-17T23:26:19-0500","JEANNE DENZ",,,,,14065,14430,0,0,14430,,,,,,,"4H","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018080208P030152062177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GAIL J. RYMER & ASSOCIATES, INC. 401(K) PLAN","001","2007-01-01","GAIL J. RYMER & ASSOCIATES, INC.",,,"1085 JOE SKINNER ROAD",,"BELPRE","OH","45714",,,,,,,,,,,,,,,,,,"311264152","7404234743","621111","GAIL J RYMER & ASSOCIATES INC",,"1085 JOE SKINNER ROAD",,"BELPRE","OH","45714",,,,,,,"311264152","7404234743",,,,"2011-10-18T08:00:15-0500","GAIL J. RYMER",,,,,2,2,0,0,2,0,2,2,0,,"2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017200506P030151727489008","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"ACTIVANT SOLUTIONS INC SEVERANCE PLAN","507","1998-05-08","ACTIVANT SOLUTIONS INC",,,"804 LAS CIMAS PARKWAY SUITE 200",,"AUSTIN","TX","787465179",,,,,,,,,,,,,,,,,,"942160013","5123282300","541512","ACTIVANT SOLUTIONS INC",,"804 LAS CIMAS PARKWAY SUITE 200",,"AUSTIN","TX","787465179",,,,,,,"942160013","5123282300",,,,"2011-10-17T19:40:14-0500","RICK RUSSO",,,,,1616,1521,,,1521,,1521,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017224842P040155392465001","2010-10-01","2010-12-31","2",,"0","0","1","1","0","1","1","0","0",,"LONG TERM DISABILITY PLAN","501","1990-08-01","XTO ENERGY INC",,,"810 HOUSTON ST",,"FORT WORTH","TX","76102",,,,,,,"810 HOUSTON ST",,"FORT WORTH","TX","76102",,,,,,,"752347769","8718852800","211110","XTO ENERGY INC",,"810 HOUSTON ST",,"FORT WORTH","TX","76102",,,,,,,"752347769","8718852800",,,,"2011-10-17T22:48:11-0500","KAREN WILSON",,,,,3285,3295,12,,3307,,3307,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017194556P030151700289001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"BLOCKBUSTER INVESTMENT PLAN","100","1999-05-01","BLOCKBUSTER, INC.",,,"2100 ROSS AVENUE, 21ST FLOOR",,"DALLAS","TX","75201",,,,,,,,,,,,,,,,,,"521655102","2144381082","532230","BLOCKBUSTER, INC.",,"2100 ROSS AVENUE, 21ST FLOOR",,"DALLAS","TX","75201",,,,,,,"521655102","2144381082",,,,"2011-10-17T17:01:21-0500","BRUCE LEWIS","2011-10-17T17:01:21-0500","BRUCE LEWIS",,,29439,25321,0,1219,26540,0,26540,3049,0,,"2E2F2G2J2K2T3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017194558P030022443234001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"MONTGOMERY GENERAL HOSPITAL MASTER TRUST","001",,"MONTGOMERY GENERAL HOSPITAL",,,"18101 PRINCE PHILIP DR.",,"OLNEY","MD","208321514",,,,,,,,,,,,,,,,,,"522266460","3017748600",,"MONTGOMERY GENERAL HOSPITAL",,"18101 PRINCE PHILIP DR.",,"OLNEY","MD","208321514",,,,,,,"522266460","3017748600",,,,,,,,"2011-10-17T17:01:47-0500","KEVIN J. MELL",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17",,"Filed with authorized/valid electronic signature", "20111017200835P030151732065001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"SOLAR TURBINES INCORPORATED SAVINGS AND INVESTMENT PLAN","013","1985-01-01","SOLAR TURBINES INCORPORATED",,,"2200 PACIFIC HIGHWAY",,"SAN DIEGO","CA","92120",,,,,,,,,,,,,,,,,,"953621514","6195445407","333610","CATERPILLAR INC. ATTN JONATHAN GINZEL","GLOBAL OPERATIONS MANAGER","100 NORTH EAST ADAMS STREET",,"PEORIA","IL","61629",,,,,,,"360602744","6195445407",,,,"2011-10-17T16:54:54-0500","JONATHAN D GINZEL",,,,,1694,1462,0,262,1724,24,1748,1617,0,,"2F2G2J2K2O2R2S2T3F3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111018084015P040155633489001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","1","0",,"DUPONT POWDER COATINGS USA, INC. PROFIT SHARING PLAN AND TRUST","001","1996-07-05","DUPONT POWDER COATINGS USA, INC.",,,"9800 GENARD ROAD",,"HOUSTON","TX","77041",,,,,,,,,,,,,,,,,,"760396214","7139394000","325500","DUPONT POWDER COATINGS USA, INC.",,"9800 GENARD ROAD",,"HOUSTON","TX","77041",,,,,,,"760396214","7139394000",,,,"2011-10-18T08:40:05-0500","PEGGY KENYON",,,,,433,328,7,69,404,9,413,381,6,,"2A2E2H2J2K2F2G3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018104102P030704836656001","2011-01-01","2011-04-25","2",,"0","0","1","1","0","0","0","0","0",,"NARINDER K ARORA","133","1985-04-15","NARINDER K ARORA",,,"7146 FRANKFORD AVE",,"PHILADELPHIA","PA","19135",,,,,,,"7146 FRANKFORD AVE",,"PHILADELPHIA","PA","19135",,,,,,,"232199243","2153552245","621210","NARINDER K ARORA",,"7146 FRANKFORD AVE",,"PHILADELPHIA","PA","19135",,,,,,,"232199243","2153552245",,,,"2011-10-18T10:38:42-0500","NARINDER ARORA",,,,,2,0,0,0,0,0,0,0,0,0,"1A2C2E2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017194724P030022443826001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"IDEX CORPORATION MASTER TRUST","065",,"IDEX CORPORATION",,,"1925 WEST FIELD COURT","SUITE 200","LAKE FOREST","IL","600454824",,,,,,,,,,,,,,,,,,"363555336","8474987070",,"IDEX CORPORATION",,"1925 WEST FIELD COURT","SUITE 200","LAKE FOREST","IL","600454824",,,,,,,"363555336","8474987070",,,,"2011-10-17T17:15:01-0500","ALICJA MAJSTEREK",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017194739P030703028768001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PARKING SOLUTIONS, INC. 401(K) PLAN","001","2003-01-01","PARKING SOLUTIONS, INC.",,,"8509 MICHIGAN AVENUE",,"COLUMBUS","OH","43215",,,,,,,,,,,,,,,,,,"311329313","6144697000","812930","PARKING SOLUTIONS, INC.",,"8509 MICHIGAN AVENUE",,"COLUMBUS","OH","43215",,,,,,,"311329313","6144697000",,,,"2011-10-17T17:17:06-0500","IMOGENE JOHNSON",,,,,631,590,1,21,612,0,612,78,0,,"2E2F2G2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017195138P030703043632001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TPUSA 401(K) PLAN","001","1997-01-01","TPUSA, INC.",,,"1991 SOUTH 4650 WEST",,"SALT LAKE CITY","UT","84104",,,,,,,,,,,,,,,,,,"870512021","8012576267","561420","TPUSA, INC.",,"1991 SOUTH 4650 WEST",,"SALT LAKE CITY","UT","84104",,,,,,,"870512021","8012576267",,,,"2011-10-17T17:46:21-0500","BRAD N. HANSEN",,,,,10774,8186,37,855,9078,0,9078,2318,4952,,"3D2J3H2K2F2G2E",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017195328P030151710689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CONSTAR, INC. PENSION PLAN","036","2002-11-21","CONSTAR, INC.",,,"1100 NORTHBROOK DRIVE","2ND FLOOR","TREVOSE","PA","19053",,,,,,,,,,,,,,,,,,"580680950","2156985100","332900","CONSTAR, INC.",,"1100 NORTHBROOK DRIVE","2ND FLOOR","TREVOSE","PA","19053",,,,,,,"580680950","2156985100",,,,"2011-10-17T15:19:31-0500","JAMES REIMER",,,,,4430,644,1531,2051,4226,311,4537,0,0,,"1B1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017195329P030022445602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DOWNEY OIL/KENJO 401(K) PLAN","001","2010-01-01","DOWNEY OIL COMPANY, INC.",,,"PO BOX 4848",,"MARYVILLE","TN","37802",,,,,,,,,,,,,,,,,,"621073887","8659822192","445120","DOWNEY OIL COMPANY, INC.",,"PO BOX 4848",,"MARYVILLE","TN","37802",,,,,,,"621073887","8659822192",,,,"2011-10-17T15:33:42-0500","TOMMY HORST",,,,,189,164,0,42,206,0,206,133,17,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017200556P030050925879001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE PROPHET CORPORATION TAX DEFERRED SAVINGS PLAN & TRUST","002","1987-01-01","THE PROPHET CORPORATION",,,"2525 LEMOND STREET SW",,"OWATONNA","MN","55060",,,,,,,,,,,,,,,,,,"411362423","5074441551","451110","THE PROPHET CORPORATION",,"2525 LEMOND STREET SW",,"OWATONNA","MN","55060",,,,,,,"411362423","5074441551",,,,"2011-10-17T17:18:04-0500","BRENDA DEVINNY",,,,,137,107,0,18,125,0,125,125,3,,"2E2F2G2J2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017200600P040697412752001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GARY VAN DEVENTER, M.D. 401(K) PROFIT SHARING PLAN","001","2005-01-01","GARY VAN DEVENTER, M.D.",,,"221 W. PUEBLO ST.",,"SANTA BARBARA","CA","93105",,,,,,,,,,,,,,,,,,"770299107","8055630024","621111","SANTA BARBARA PENSION CONSULTANTS, INC.",,"1129 STATE STREET, SUITE 18",,"SANTA BARBARA","CA","93101",,,,,,,"770307834","8055683814",,,,"2011-10-17T20:05:29-0500","DAVID PECKHAM",,,,,4,3,0,1,4,0,4,4,1,,"2E2J3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017201809P030022452866001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"COGENT HEALTHCARE, INC. 401(K) PLAN","001","1997-01-01","COGENT HEALTHCARE, INC.",,,"5410 MARYLAND WAY, SUITE 300",,"BRENTWOOD","TN","37027",,,,,,,,,,,,,,,,,,"330727542","6153775600","621399","COGENT HEALTHCARE, INC.",,"5410 MARYLAND WAY, SUITE 300",,"BRENTWOOD","TN","37027",,,,,,,"330727542","6153775600",,,,"2011-10-17T16:12:55-0500","AMY JOHNSON",,,,,508,524,0,68,592,0,592,507,0,,"2E2F2G2J3D3H2T2S3F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017202521P040155317809001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"TAKUMI STAMPING 401(K) PLAN","001","2009-01-01","TAKUMI STAMPING, INC.",,,"8585 SEWARD RD.",,"FAIRFIELD","OH","45011",,,,,,,"8585 SEWARD RD.",,"FAIRFIELD","OH","45011",,,,,,,"311765409","5136420081","336300","TAKUMI STAMPING, INC.",,"8585 SEWARD RD.",,"FAIRFIELD","OH","45011",,,,,,,"311765409","5136420081",,,,"2011-10-17T20:25:03-0500","KRISTEN HAUGHEY",,,,,291,239,0,8,247,0,247,77,8,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017190058P040697250416001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HARVARD UNIVERSITY TAX DEFERRED ANNUITY PLAN","006","1974-01-01","PRESIDENT & FELLOWS OF HARVARD COLLEGE HARVARD HUMAN RESOURCES, BENEFI",,,"1350 MASSACHUSETTS AVENUE","HOLYOKE CENTER ROOM 668","CAMBRIDGE","MA","02138",,,,,,,,,,,,,,,,,,"042103580","6174961542","611000","PRESIDENT & FELLOWS OF HARVARD COLLEGE HARVARD HUMAN RESOURCES, BENEFI",,"1350 MASSACHUSETTS AVENUE","HOLYOKE CENTER ROOM 668","CAMBRIDGE","MA","02138",,,,,,,"042103580","6174961542",,,,"2011-10-17T10:25:29-0500","LYNN CORDARO",,,,,25809,24137,79,7063,31279,47,31326,16326,0,,"2L2M2G",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017202413P030151756081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NELSON LABORATORIES, INC. EMPLOYEE RETIREMENT PLAN","001","1991-01-01","NELSON LABORATORIES, INC.",,,"6280 SOUTH REDWOOD ROAD",,"SALT LAKE CITY","UT","84123",,,,,,,,,,,,,,,,,,"870425936","8012907577","541380","NELSON LABORATORIES, INC.",,"6280 SOUTH REDWOOD ROAD",,"SALT LAKE CITY","UT","84123",,,,,,,"870425936","8012907577",,,,"2011-10-17T19:14:42-0500","JOHN S. BOLINDER, CFO",,,,,344,346,0,48,394,0,394,286,10,,"2E2F2G2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017203703P030151767745001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GAINER, DONNELLY & DESROCHES, L.L.P. 401(K) PROFIT SHARING PLAN","001","1996-10-01","GAINER, DONNELLY & DESROCHES, L.L.P",,,"5847 SAN FELIPE, STE 1100",,"HOUSTON","TX","77057",,,,,,,,,,,,,,,,,,"760355510","7136218090","541211","GAINER, DONNELLY & DESROCHES, L.L.P",,"5847 SAN FELIPE, STE 1100",,"HOUSTON","TX","77057",,,,,,,"760355510","7136218090",,,,"2011-10-17T17:35:18-0500","GEORGE HAWKINS",,,,,199,99,0,91,190,0,190,190,6,,"2A2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111018072158P030152043425001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"GRAPHIC COMMUNICATIONS UNION LOCAL 2-C RETIREMENT BENEFIT PLAN","001","1957-06-18","GRAPHIC COMMUNICATIONS UNION LOCAL 2-C RETIREMENT PLAN",,,"11420 E. NINE MILE ROAD",,"WARREN","MI","48089",,,,,,,,,,,,,,,,,,"386047082","5867558041","813000","BOARD OF ADMINISTRATORS",,"11420 EAST NINE MILE RD.",,"WARREN","MI","48089",,,,,,,"386047082","5867558041",,,,"2011-10-14T02:32:01-0500","STEVE NOBLES",,,,,742,21,356,244,621,107,728,,0,3,"1B1G",,,,"1",,,,"1",,"1","1",,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018080720P040698761712001","2010-08-01","2010-12-31","2",,"1","0","0","1","0","1","0","0","0",,"RANGERS BASEBALL, LLC. HEALTH AND WELFARE PLAN","502","2010-08-01","RANGERS BASEBALL, LLC.",,,"1000 BALLPARK WAY","STE 400","ARLINGTON","TX","76011",,,,,,,,,,,,,,,,,,"272208889","8172735222","711210","RANGERS BASEBALL, LLC.",,"1000 BALLPARK WAY","STE 400","ARLINGTON","TX","76011",,,,,,,"272208889","8172735222",,,,"2011-10-17T16:56:48-0500","TERRY TURNER",,,,,269,298,0,0,298,0,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018091644P040155650609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLE HERSEE COMPANY 401K SAVINGS PLAN","003","1987-10-01","COLE HERSEE COMPANY",,,"20 OLD COLONY AVENUE",,"SOUTH BOSTON","MA","021272467",,,,,,,,,,,,,,,,,,"208078739","6172682100","335310","COLE HERSEE COMPANY",,"20 OLD COLONY AVENUE",,"SOUTH BOSTON","MA","021272467",,,,,,,"208078739","6172682100",,,,"2011-10-18T09:15:48-0500","MIKE WILKINSON","2011-10-18T09:15:48-0500","MIKE WILKINSON",,,88,87,0,50,137,0,137,118,14,,"2E2F2G2J2K2S2T",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017192344P040155281073001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1",,,,,"PRIME-LINE PRODUCTS COMPANY 401(K) PLAN","004","2000-12-01","PRIME-LINE PRODUCTS COMPANY",,,"26950 SAN BERNARDINO AVE",,"REDLANDS","CA","923745022",,,,,,,,,,,,,,,,,,"953340244","9098878118","423700","PRIME-LINE PRODUCTS COMPANY",,"26950 SAN BERNARDINO AVE",,"REDLANDS","CA","923745022",,,,,,,"953340244","9098878118",,,,"2011-10-17T19:23:38-0500","DAVID RICHARDS","2011-10-17T19:23:38-0500","DAVID RICHARDS",,,402,330,0,9,339,0,339,158,20,,"2E2F2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017225856P040155397649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THORNHILL PONTIAC BUICK GMC, INC. 401K PLAN","001","1999-02-01","THORNHILL SUPERSTORE, INC.",,,"PO BOX 4454",,"CHAPMANVILLE","WV","255084454",,,,,,,,,,,,,,,,,,"550382031","3048551400","441110","THORNHILL SUPERSTORE INC",,"P O BOX 4454",,"CHAPMANVILLE","WV","25508",,,,,,,"550382031","3048551400",,,,"2011-10-17T22:58:32-0500","ROBERT L THOMPSON",,,,,76,65,0,9,74,0,74,46,0,,"2F2G2J2K2E",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111018102552P030152126817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MARY M. SMYTH, M.D. PROFIT SHARING PLAN","001","2000-01-01","MARY M. SMYTH, M.D.",,,"P.O. BOX 9503",,"FALL RIVER","MA","02720",,,,,,,"P.O. BOX 9503",,"FALL RIVER","MA","02720",,,,,,,"043401353","6176289700","621111","MARY M. SMYTH, M.D.",,"P.O. BOX 9503",,"FALL RIVER","MA","02720",,,,,,,"043401353","6176289700",,,,"2011-10-18T09:29:25-0500","JOSEPH MACKESY",,,,,5,5,0,0,5,0,5,5,0,,"2E3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018102622P040023398802001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PROVINCE PROPERTIES, INC. 401K PROFIT SHARING PLAN","001","1999-05-01","PROVINCE PROPERTIES, INC.",,,"4799 OLDE TOWNE PARKWAY, SUITE 101",,"MARIETTA","GA","30068",,,,,,,,,,,,,,,,,,"582486948","7705097009","237210","PROVINCE PROPERTIES, INC.",,"4799 OLDE TOWNE PARKWAY, SUITE 101",,"MARIETTA","GA","30068",,,,,,,"582486948","7705097009",,,,"2011-10-13T11:52:35-0500","DONNA HALL","2011-10-13T11:52:35-0500","DONNA HALL",,,19,8,0,6,14,0,14,14,0,,"2A2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018093350P040155659009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AGC OF SE TEXAS 401K PLAN","001","1982-01-01","ASSOCIATE GENERAL CONTRACTORS",,,"5458 AVENUE A",,"BEAUMONT","TX","77705",,,,,,,,,,,,,,,,,,"740490825","4098356661","813000","ASSOCIATE GENERAL CONTRACTORS",,"5458 AVENUE A",,"BEAUMONT","TX","77705",,,,,,,"740490825","4098356661",,,,"2011-10-18T09:33:34-0500","MIKE WHITE",,,,,2,3,0,0,3,0,3,3,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017211913P040155347825001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"KCI DENTAL","522","2006-01-01","KINETIC CONCEPTS, INC",,,"8023 VANTAGE DR, STE 560",,"SAN ANTONIO","TX","78230",,,,,,,,,,,,,,,,,,"742152396","2102556011","339110","KINETIC CONCEPTS, INC",,"8023 VANTAGE DR, STE 560",,"SAN ANTONIO","TX","78230",,,,,,,"742152396","2102556011",,,,"2011-10-17T21:10:04-0500","REGINA KUDERER",,,,,4329,4261,93,0,4354,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017211921P040155347857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADVANCED RISK & BROKERAGE, INC. DEFINED BENEFIT PLAN","001","1996-01-01","ADVANCED RISK & BROKERAGE, INC.",,,"25 SHAKER RD",,"GRAY","ME","04039",,,,,,,"25 SHAKER RD",,"GRAY","ME","04039",,,,,,,"010415886","2076577733","524210","ADVANCED RISK & BROKERAGE, INC.",,"25 SHAKER RD",,"GRAY","ME","04039",,,,,,,"010415886","2076577733",,,,"2011-10-17T21:07:07-0500","WILLIAM WEIBLEN","2011-10-17T21:18:01-0500","MICHELLE GLEN",,,2,2,0,0,2,0,2,,0,,"1A1G3D3H",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018002332P040155430433001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"GMI INVESTMENT TRUST-EARNEST PARTNERS","031",,"GENERAL MILLS, INC.",,,"M03-09",,"MINNEAPOLIS","MN","55426",,,,,,,"NUMBER ONE GENERAL MILLS BLVD",,"MINNEAPOLIS","MN","55426",,,,,,,"046736853","7637647368",,"GENERAL MILLS, INC.",,"M03-09",,"MINNEAPOLIS","MN","55426",,,,,,,"046736853","7637647368",,,,"2011-10-18T00:22:38-0500","JEFF JACOBS",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017194749P030151702481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHEAST TEXAS INDUSTRIES, INC. 401(K) PLAN","001","1997-07-01","SOUTHEAST TEXAS INDUSTRIES, INC.",,,"35911 HIGHWAY 96 SOUTH",,"BUNA","TX","77612",,,,,,,,,,,,,,,,,,"760309508","4096973350","331200","SOUTHEAST TEXAS INDUSTRIES, INC.",,"35911 HIGHWAY 96 SOUTH",,"BUNA","TX","77612",,,,,,,"760309508","4096973350",,,,"2011-10-17T17:24:00-0500","JAMES PARSLEY","2011-10-17T17:24:00-0500","JAMES PARSLEY",,,984,940,5,85,1030,0,1030,278,125,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017202436P030703182560001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCOTTSDALE CHRISTIAN ACADEMY INC 403 (B) RETIREMENT PLAN","001","2001-07-01","SCOTTSDALE CHRISTIAN ACADEMY INC",,,"14400 N TATUM BLVD",,"PHOENIX","AZ","85032",,,,,,,,,,,,,,,,,,"860269193","6029925100","813000","SCOTTSDALE CHRISTIAN ACADEMY INC",,"14400 N TATUM BLVD",,"PHOENIX","AZ","85032",,,,,,,"860269193","6029925100",,,,"2011-10-17T19:21:28-0500","SCOTT F BAUGHMAN",,,,,125,112,0,13,125,0,125,120,0,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","9","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111018122628P040155730177001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"TARGUS INFORMATION GROUP MEDICAL & DENTAL","504","1994-10-01","TARGUS INFORMATION CORPORATION",,,"8010 TOWERS CRESCENT DRIVE, 5TH FL",,"VIENNA","VA","22182",,,,,,,,,,,,,,,,,,"880295268","7032726200","541990","TARGUS INFORMATION CORPORATION",,"8010 TOWERS CRESCENT DRIVE, 5TH FL",,"VIENNA","VA","22182",,,,,,,"880295268","7032726200",,,,"2011-10-18T12:25:36-0500","PHILLIPA DELINSKI",,,,,241,237,16,0,253,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017191331P040004800675001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DISTRICT NURSING ASSC OF NORTHERN WESTCHESTER CO MONEY PURCHASE PLAN","001","1976-01-01","DISTRICT NURSING ASSC OF NORTHERN WESTCHESTER CO",,,"540 WHITE PLAINS ROAD","TARRYTOWN, SUITE 300","NEW YORK","NY","105915132",,,,,,,,,,,,,,,,,,"131739952","9146667616","621610","DISTRICT NURSING ASSC OF NORTHERN WESTCHESTER CO",,"540 WHITE PLAINS ROAD","TARRYTOWN, SUITE 300","NEW YORK","NY","105915132",,,,,,,"131739952","9146667616",,,,"2011-10-17T19:13:24-0500","FRANK LAPORTA","2011-10-17T19:13:24-0500","FRANK LAPORTA",,,138,133,,65,198,,198,196,3,,"2C2G2M2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017202014P030703166592001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ODYSSEY ENTERPRISES 401(K) PROFIT SHARING PLAN","001","1984-10-01","ODYSSEY ENTERPRIES, INC.",,,"150 NICKERSON STREET, SUITE 300",,"SEATTLE","WA","98109",,,,,,,,,,,,,,,,,,"911157568","2062857445","424400","ODYSSEY ENTERPRIES, INC.",,"150 NICKERSON STREET, SUITE 300",,"SEATTLE","WA","98109",,,,,,,"911157568","2062857445",,,,"2011-10-17T18:43:16-0500","PAUL ADAMS","2011-10-17T18:43:17-0500","PAUL ADAMS",,,22,21,0,5,26,0,26,23,0,,"2E2G2J2K2F3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017203724P030050963527001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"URS FEDERAL TECHNICAL SERVICES, INC. EMPLOYEES RETIREMENT PLAN","002","1999-08-20","URS FEDERAL TECHNICAL SERVICES, INC",,,"20501 SENECA MEADOWS PKWY, STE 300",,"GERMANTOWN","MD","20876",,,,,,,,,,,,,,,,,,"510391628","3019443100","541990","URS FEDERAL TECHNICAL SERVICES, INC",,"20501 SENECA MEADOWS PKWY, STE 300",,"GERMANTOWN","MD","20876",,,,,,,"510391628","3019443100",,,,"2011-10-17T19:18:35-0500","ROBERT RUDISIN","2011-10-17T19:18:35-0500","ROBERT RUDISIN",,,5197,1472,1242,2191,4905,138,5043,,0,,"1A1E1G3H","4A","0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017193658P030151692209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SCHWARTZ & HYATT, D.D.S., P.A. CASH BALANCE PENSION PLAN","002","2005-01-01","MICHAEL K. SCHWARTZ, D.D.S. AND JULIUS HYATT, D.D.S., P.A.",,,"HUNT VALLEY MEDICAL CENTER","10 WARREN ROAD, SUITE 330","COCKEYSVILLE","MD","21030",,,,,,,,,,,,,,,,,,"521297864","4106665225","621210","MICHAEL K. SCHWARTZ, D.D.S. AND JULIUS HYATT, D.D.S., P.A.",,"HUNT VALLEY MEDICAL CENTER","10 WARREN ROAD, SUITE 330","COCKEYSVILLE","MD","21030",,,,,,,"521297864","4106665225",,,,"2011-10-17T19:36:46-0500","MICHAEL K SCHWARTZ DDS","2011-10-17T19:36:46-0500","MICHAEL K SCHWARTZ DDS",,,16,19,0,8,27,0,27,,,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017200656P030151730033001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LIQUIDHUB, INC. FLEXIBLE BENEFIT PLAN","502","2001-08-01","LIQUIDHUB, INC.",,,"500 EAST SWEDESFORD ROAD","SUITE 300","WAYNE","PA","19087",,,,,,,,,,,,,,,,,,"510405734","4846541400","541512","LIQUIDHUB, INC.",,"500 EAST SWEDESFORD ROAD","SUITE 300","WAYNE","PA","19087",,,,,,,"510405734","4846541400",,,,"2011-10-17T18:23:23-0500","PAUL HAREWOOD","2011-10-17T18:23:23-0500","PAUL HAREWOOD",,,138,147,9,4,160,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017181750P040697135184001","2010-01-01","2010-12-31","2",,"0","1","0","0",,"1",,,,,"HERCULES OFFSHORE, INC. 401(K) PLAN","002","1999-01-01","HERCULES OFFSHORE, INC.",,,"9 GREENWAY PLAZA STE. 2200",,"HOUSTON","TX","77046",,,,,,,"9 GREENWAY PLAZA STE. 2200",,"HOUSTON","TX","77046",,,,,,,"562542838","7133508481","211110","HERCULES OFFSHORE, INC.",,"9 GREENWAY PLAZA STE. 2200",,"HOUSTON","TX","77046",,,,,,,"562542838","7133508481",,,,"2011-10-17T18:14:30-0500","KIM RIDDLE",,,,,2373,1720,8,407,2135,9,2144,1734,1,,"2E2F2G2J2K2S2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111018134507P030152218225001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"S.J.O. ENTERPRISES, INC. MONEY PURCHASE PLAN","002","2001-01-01","S.J.O. ENTERPRISES, INC.",,,"22611 GREATER MACK",,"ST. CLAIR SHORES","MI","48080",,,,,,,,,,,,,,,,,,"383249867","5867730450","561490","S.J.O. ENTERPRISES, INC.",,"22611 GREATER MACK",,"ST. CLAIR SHORES","MI","48080",,,,,,,"383249867","5867730450",,,,"2011-10-18T14:28:23-0500","WILLIAM J. O'NEIL","2011-10-18T14:28:34-0500","WILLIAM J. O'NEIL",,,3,3,0,0,3,0,3,3,,,"2C3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017194706P030022443730001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CHILDRENS HOSPITALS AND CLINICS RSVP RETIREMENT PLAN","001","1996-01-01","CHILDRENS HOSPITALS AND CLINICS OF MINNESOTA",,,"2525 CHICAGO AVENUE SOUTH",,"MINNEAPOLIS","MN","554044518",,,,,,,,,,,,,,,,,,"411754276","6128138100","622000","CHILDRENS HOSPITALS AND CLINICS OF MINNESOTA",,"2525 CHICAGO AVENUE SOUTH",,"MINNEAPOLIS","MN","554044518",,,,,,,"411754276","6128138100",,,,"2011-10-17T15:55:17-0500","JERRY MASSMANN","2011-10-17T15:55:17-0500","JERRY MASSMANN",,,2469,1864,30,554,2448,1,2449,0,31,,"1A1C1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018090602P040155645681001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SOUTHERN REGIONAL HEALTH SYSTEM, INC. SUPPLEMENTAL RETIREMENT SAVINGS PLAN","002","2005-01-01","SOUTHERN REGIONAL HEALTH SYSTEM, INC",,,"11 UPPER RIVERDALE ROAD SW",,"RIVERDALE","GA","302742615",,,,,,,,,,,,,,,,,,"581955423","7709918000","622000","SOUTHERN REGIONAL HEALTH SYSTEM, INC",,"11 UPPER RIVERDALE ROAD SW",,"RIVERDALE","GA","302742615",,,,,,,"581955423","7709918000",,,,"2011-10-18T09:03:04-0500","STACEY J. HANCOCK",,,,,3379,1945,6,960,2911,0,2911,2911,3,,"2L2M",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","3","1","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017200722P040004802211001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SPARTA SPECIAL SERVICING LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2009-01-01","SPARTA SPECIAL SERVICING LLC",,,"333 LUDLOW STREET",,"STAMFORD","CT","06902",,,,,,,"333 LUDLOW STREET",,"STAMFORD","CT","06902",,,,,,,"264000018","2034221623","561499","SPARTA SPECIAL SERVICING LLC",,"333 LUDLOW STREET",,"STAMFORD","CT","06902",,,,,,,"264000018","2034221623",,,,"2011-10-17T20:06:36-0500","RON MOLLOY",,,,,124,3,0,51,54,0,54,52,0,0,"2E2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017200728P030022450578001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR EMPLOYEES OF CITY CENTER DEVELOPMENT CO.","001","2003-01-01","CITY CENTER DEVELOPMENT CO.",,,"201 MAIN STREET, SUITE 2700",,"FORT WORTH","TX","76102",,,,,,,"201 MAIN STREET, SUITE 2700",,"FORT WORTH","TX","76102",,,,,,,"134227375","8173908400","531120","RETIREMENT COMMITTEE",,"201 MAIN STREET, SUITE 2700",,"FORT WORTH","TX","76102",,,,,,,"751076930","8173908400",,,,"2011-10-17T16:01:40-0500","KEITH A BULLARD",,,,,48,0,17,30,47,0,47,,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017201505P030151741777001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"AHOLD USA INC 401K SAVINGS PLAN FOR UNION ASSOCIATES","003","1997-07-01","AHOLD USA INC",,,"1385 HANCOCK STREET",,"QUINCY","MA","021695103",,,,,,,,,,,,,,,,,,"530073545","6177707121","445110","AHOLD USA INC",,"1385 HANCOCK STREET",,"QUINCY","MA","021695103",,,,,,,"530073545","6177707121",,,,"2011-10-17T17:04:19-0500","WARD R. KRAEMER","2011-10-17T17:04:19-0500","WARD R. KRAEMER",,,85255,85451,193,1002,86646,30,86676,11872,45,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017201522P030022452146001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTH IDAHO ENDOSCOPY CENTER, LLC RETIREMENT PLAN","001","2002-06-01","NORTH IDAHO ENDOSCOPY CENTER LLC",,,"1607 LINCOLN WAY, SUITE 100",,"COEUR D ALENE","ID","83814",,,,,,,,,,,,,,,,,,"820535579","2086659184","621111","NORTH IDAHO ENDOSCOPY CENTER LLC",,"1607 LINCOLN WAY, SUITE 100",,"COEUR D ALENE","ID","83814",,,,,,,"820535579","2086659184",,,,"2011-10-17T20:14:34-0500","GAVIN YOUNG","2011-10-17T20:14:34-0500","GAVIN YOUNG",,,19,16,,,16,1,17,16,4,1,"2E2G2J2K",,,,"1",,,,"1",,,,,,"1",,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018110454P040155697025005","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"HUSSON COLLEGE LIFE INSURANCE PLAN","502","2006-01-01","HUSSON COLLEGE",,,"ONE COLLEGE CIRCLE",,"BANGOR","ME","04401",,,,,,,,,,,,,,,,,,"010271210","2079417000","611000","HUSSON COLLEGE",,"ONE COLLEGE CIRCLE",,"BANGOR","ME","04401",,,,,,,"010271210","2079417000",,,,"2011-10-18T10:37:51-0500","MARY DEMERS",,,,,267,278,,,278,,278,,,,,"4Q4H4F4B","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018110546P040155697393001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"BLOOMINGTON DENTAL 401(K) PLAN","001","2008-01-01","BLOOMINGTON DENTAL",,,"169 WEST 2710 SOUTH CIRCLE","SUITE 102","ST GEORGE","UT","84790",,,,,,,,,,,,,,,,,,"870624842","4356799977","621210","BLOOMINGTON DENTAL",,"169 WEST 2710 SOUTH CIRCLE","SUITE 102","ST GEORGE","UT","84790",,,,,,,"870624842","4356799977",,,,"2011-10-18T12:05:43-0500","CHRIS A. NIELSON",,,,,3,4,0,1,5,0,5,5,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018123320P040023410530001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"CLAAS OMAHA, INC / CLAAS OF AMERICA, INC HEALTH PLAN","501","1989-05-01","CLAAS OMAHA, INC",,,"8401 SOUTH 132ND STREET",,"OMAHA","NE","68138",,,,,,,,,,,,,,,,,,"364214683","4028611000","333100","CLAAS OMAHA, INC",,"8401 SOUTH 132ND STREET",,"OMAHA","NE","68138",,,,,,,"364214683","4028611000",,,,"2011-10-18T12:33:10-0500","KRISELLE LINDGREN","2011-10-18T12:33:10-0500","KRISELLE LINDGREN",,,173,212,0,,212,,,,,,,"4A4B4D4F4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017195601P030703060608001","2010-01-01","2010-12-31","2",,,,"1",,,"1",,,,,"DIRECT MEDIA, LLC RETIREMENT SAVINGS PLAN & TRUST","001","2000-02-01","DIRECT MEDIA, LLC",,,"200 PEMBERWICK ROAD",,"GREENWICH","CT","068300000",,,,,,,,,,,,,,,,,,"061568352","2035322341","561490","DIRECT MEDIA, LLC",,"200 PEMBERWICK ROAD",,"GREENWICH","CT","068300000",,,,,,,"061568352","2035322341",,,,"2011-10-17T18:26:39-0500","GEORGE SMITH",,,,,162,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017195600P030151715185001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"WESTMONT HOSPITALITY GROUP EMPLOYEES' RETIREMENT & SAVINGS PLAN","001","1997-12-01","WESTMONT HOSPITALITY GROUP, INC.",,,"5847 SAN FELIPE, STE 4650",,"HOUSTON","TX","77057",,,,,,,,,,,,,,,,,,"760268378","7137829100","721110","WESTMONT HOSPITALITY GROUP, INC.",,"5847 SAN FELIPE, STE 4650",,"HOUSTON","TX","77057",,,,,,,"760268378","7137829100",,,,"2011-10-17T18:02:33-0500","JERRY BURRELL",,,,,3054,2201,0,379,2580,1,2581,1018,0,,"2E2F2G2J2K2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017190718P040155269121001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"SICK BENEFIT FUND OF AIT&NW OF AMERICA, LOCAL 223","501","1946-01-01","BOARD OF TRUSTEES, SBF AIT&NW OF AMERICA, LOCAL 223",,,"147 EAST 26TH STREET",,"NEW YORK","NY","100101807",,,,,,,"147 EAST 26TH STREET",,"NEW YORK","NY","100101807",,,,,,,"131805529","2128898180","493100","BOARD OF TRUSTEES, SBF AIT&NW OF AMERICA, LOCAL 223",,"147 EAST 26TH STREET",,"NEW YORK","NY","100101807",,,,,,,"131805529","2128898180",,,,"2011-10-17T15:00:50-0500","ROCCO MIRANTI",,,,,740,1342,5,,1347,,,,,50,,"4A4B4C4D4E4L",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017200306P030151725601001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"COMPETITIVE MEDIA UNION PENSION PLAN","001","1974-07-01","KANTAR MEDIA",,,"11 MADISON AVENUE, 12TH FLOOR",,"NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"134106565","2129916000","519100","KANTAR MEDIA",,"11 MADISON AVENUE, 12TH FLOOR",,"NEW YORK","NY","10010",,,,,,,"134106565","2129916000",,,,"2011-10-17T16:35:03-0500","ARLEANE BALTRUSITIS","2011-10-17T16:35:03-0500","ARLEANE BALTRUSITIS",,,152,43,25,75,143,8,151,0,0,,"1B1G1I3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017201914P030703162960001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NGL SUPPLY 401(K) RETIREMENT PLAN","003","2005-06-01","NGL SUPPLY, INC.",,,"6120 S YALE, STE. 805",,"TULSA","OK","741364233",,,,,,,,,,,,,,,,,,"731255805","9184811119","324190","NGL SUPPLY, INC.",,"6120 S YALE, STE. 805",,"TULSA","OK","741364233",,,,,,,"731255805","9184811119",,,,"2011-10-17T16:03:04-0500","SHARRA STRAIGHT","2011-10-17T16:06:43-0500","CRAIG JONES",,,134,124,1,15,140,0,140,129,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017184153P040697200064001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"PEMBROKE FRANCHISE INVESTMENT, INC. 401(K) RETIREMENT PLAN","001","2010-01-01","PEMBROKE FRANCHISE INVESTMENT, INC.",,,"1428 SIGSBEE AVENUE",,"SALT LAKE CITY","UT","84103",,,,,,,,,,,,,,,,,,"271662161","8019791812","531390","PEMBROKE FRANCHISE INVESTMENT, INC.",,"1428 SIGSBEE AVENUE",,"SALT LAKE CITY","UT","84103",,,,,,,"271662161","8019791812",,,,"2011-10-17T18:37:22-0500","VICTORIA P. DAVISON","2011-10-17T18:37:22-0500","VICTORIA P. DAVISON",,,0,2,,,2,,2,2,0,,"2E2G2J2K2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018075157P030152058561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FIRMENICH PENSION PLAN","001","1951-01-01","FIRMENICH INCORPORATED",,,"250 PLAINSBORO ROAD",,"PLAINSBORO","NJ","08536",,,,,,,,,,,,,,,,,,"135560633","6094521000","325900","FIRMENICH PENSION COMMITTEE",,"250 PLAINSBORO ROAD",,"PLAINSBORO","NJ","08536",,,,,,,"135560633","6094521000",,,,"2011-10-18T07:51:33-0500","REBECCA M. SANT",,,,,1755,918,247,536,1701,33,1734,,5,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017191925P030151682833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"G E REAVES ENGINEERING, INC. RETIREMENT SAVINGS PLAN","001","1994-01-01","G E REAVES ENGINEERING, INC.",,,"P. O. BOX 791793","12508 JONES MALTSBERGER, SUITE 100","SAN ANTONIO","TX","782791793",,,,,,,"P.O. BOX 791793","12508 JONES MALTSBERGER, SUITE 100","SAN ANTONIO","TX","782791793",,,,,,,"742289502","2104904506","541330","G E REAVES ENGINEERING, INC.",,"P. O. BOX 791793","12508 JONES MALTSBERGER, SUITE 100","SAN ANTONIO","TX","782791793",,,,,,,"742289502","2104904506",,,,"2011-10-17T19:11:14-0500","KAREN REAVES","2011-10-17T19:11:14-0500","KAREN REAVES",,,30,11,,14,25,,25,18,0,,"2E2G2J2K3H3D",,"1",,,,"1",,,,,,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017191943P030151682961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NORTHEAST PEDIATRIC ASSOCIATES, PA PROFIT SHARING PLAN","001","1981-09-15","NORTHEAST PEDIATRIC ASSOCIATES, PA",,,"8606 VILLAGE DRIVE, SUITE A",,"SAN ANTONIO","TX","78217",,,,,,,,,,,,,,,,,,"742121149","2106570220","621111","NORTHEAST PEDIATRIC ASSOCIATES, PA",,"8606 VILLAGE DRIVE, SUITE A",,"SAN ANTONIO","TX","78217",,,,,,,"742121149","2106570220",,,,"2011-10-17T19:03:29-0500","AL TOBIAS","2011-10-17T19:03:29-0500","AL TOBIAS",,,44,35,0,8,43,0,43,41,2,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017200037P030151722977001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NOVELL, INC. SHORT TERM DISABILITY BENEFIT PLAN","507","1993-07-01","NOVELL, INC.",,,"1800 SOUTH NOVELL PLACE",,"PROVO","UT","846066194",,,,,,,,,,,,,,,,,,"870393339","7814648326","541519","NOVELL, INC.",,"1800 SOUTH NOVELL PLACE",,"PROVO","UT","846066194",,,,,,,"870393339","7814648326",,,,"2011-10-17T16:30:36-0500","LUANN JOHNSON","2011-10-17T16:30:36-0500","LUANN JOHNSON",,,1611,1541,0,,1541,,,,,,,"4F","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017202808P030022454658001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TEVA PHARMACEUTICALS RETIREMENT SAVINGS PLAN (PUERTO RICO)","002","1996-01-01","TEVA PHARMACEUTICALS",,,"1090 HORSHAM ROAD",,"NORTH WALES","PA","19454",,,,,,,,,,,,,,,,,,"221734359","2155913000","621399","TEVA PHARMACEUTICALS",,"1090 HORSHAM ROAD",,"NORTH WALES","PA","19454",,,,,,,"221734359","2155913000",,,,"2011-10-17T20:21:56-0500","LAURA QUEEN","2011-10-17T20:21:56-0500","LAURA QUEEN",,,334,123,0,0,123,0,123,122,1,,"2E2F2G2J2K2S2T3H3J",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017202820P030151763137001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ADECCO GROUP LIFE, MEDICAL AND DENTAL PLAN","501","1972-12-15","ADECCO, INC.",,,"175 BROAD HOLLOW ROAD",,"MELVILLE","NY","11747",,,,,,,,,,,,,,,,,,"752370177","6318447345","561300","ADECCO, INC.",,"175 BROAD HOLLOW ROAD",,"MELVILLE","NY","11747",,,,,,,"752370177","6318447345",,,,"2011-10-17T20:25:14-0500","LESLIE PERRI",,,,,5793,4751,191,0,4942,,,,,,,"4A4B4D4E4F4G4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017210424P040697555440001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"GUIDEWIRE SOFTWARE RETIREMENT TRUST","001","2002-01-01","GUIDEWIRE SOFTWARE, INC.",,,"2211 BRIDGEPOINTE PARKWAY","SUITE 200","SAN MATEO","CA","94404",,,,,,,"2211 BRIDGEPOINTE PARKWAY","SUITE 200","SAN MATEO","CA","94404",,,,,,,"364468504","6503579100","541519","GUIDEWIRE SOFTWARE, INC.",,"2211 BRIDGEPOINTE PARKWAY","SUITE 200","SAN MATEO","CA","94404",,,,,,,"364468504","6503579100","GUIDEWARE SOFTWARE","364468504","001","2011-10-17T18:24:55-0500","KAREN BLASING",,,,,427,468,0,67,535,0,535,396,0,,"2E2F2G2J2K2T3D3F",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111018065022P030022495490001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ALTERNATIVES UNLIMITED, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","2004-01-01","ALTERNATIVES UNLIMITED, INC.",,,"8508 LOCH RAVEN BLVD","SUITE E","BALTIMORE","MD","21286",,,,,,,,,,,,,,,,,,"522073228","4103393945","611000","ALTERNATIVES UNLIMITED, INC.",,"8508 LOCH RAVEN BLVD","SUITE E","BALTIMORE","MD","21286",,,,,,,"522073228","4103393945",,,,"2011-10-17T14:35:52-0500","MELISSA REPLOGLE",,,,,158,102,0,0,102,0,102,20,0,,"2E2F2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018070006P040155595697001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"POUNDS PARTNERS, INC. 401(K) PROFIT SHARING PLAN","001","2006-05-31","POUNDS PARTNERS, INC.",,,"1001 WESTWOOD COURT",,"ALLEN","TX","75013",,,,,,,,,,,,,,,,,,"204330869","9733599011","722110","POUNDS PARTNERS, INC.",,"1001 WESTWOOD COURT",,"ALLEN","TX","75013",,,,,,,"204330869","9733599011",,,,"2011-10-18T06:49:30-0500","STANLEY POUNDS","2011-10-18T06:51:23-0500","STANLEY POUNDS",,,13,3,0,0,3,0,3,1,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018090811P040155646913001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CYPRESS CARE, INC. 401(K) PLAN","001","2006-01-01","CYPRESS CARE, INC.",,,"2736 MEADOW CHURCH RD STE 300",,"DULUTH","GA","30097",,,,,,,,,,,,,,,,,,"260080565","6787300451","524290","CYPRESS CARE, INC.",,"2736 MEADOW CHURCH RD STE 300",,"DULUTH","GA","30097",,,,,,,"260080565","6787300451","CYPRESS CARE INC","260080565","001","2011-10-18T09:07:30-0500","CYNTHIA GORE",,,,,264,349,0,39,388,1,389,159,11,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017194335P030703016912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MONEY PURCHASE PENSION PLAN FOR EMPLOYEES OF ALLEN MEMORIAL HOSPITAL","003","1999-01-01","ALLEN MEDICAL CENTER",,,"ATTN CHRIS BUSSA 2200 JEFFERSON AV",,"TOLEDO","OH","43604",,,,,,,,,,,,,,,,,,"340864230","4407759156","622000","ALLEN MEDICAL CENTER",,"ATTN CHRIS BUSSA 2200 JEFFERSON AV",,"TOLEDO","OH","43604",,,,,,,"340864230","4407759156",,,,"2011-10-17T16:24:55-0500","CHRIS BUSSA",,,,,322,215,0,72,287,0,287,270,12,,"3D2C3H2F2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017194536P030022443090001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"UKPEAGVIK INUPIAT CORPORATION EMPLOYEES' RETIREMENT PLAN","001","1988-07-01","UKPEAGVIK INUPIAT CORPORATION",,,"3201 C STREET","SUITE 801","ANCHORAGE","AK","99503",,,,,,,,,,,,,,,,,,"920044212","9078527441","525990","UKPEAGVIK INUPIAT CORPORATION",,"3201 C STREET","SUITE 801","ANCHORAGE","AK","99503",,,,,,,"920044212","9078527441",,,,"2011-10-17T16:54:32-0500","ROBERT CRONEN",,,,,2375,1971,2,397,2370,0,2370,1228,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017200359P030151726225001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"WHEELING CORRUGATING COMPANY RETIREMENT SECURITY PLAN","109","1990-01-01","SEVERSTAL WHEELING INC.",,,"1134 MARKET STREET",,"WHEELING","WV","26003",,,,,,,,,,,,,,,,,,"550703273","3042342455","331110","RETIREMENT COMMITTEE SEVERSTAL WHEELING INC.",,"1134 MARKET STREET",,"WHEELING","WV","26003",,,,,,,"251315044","3042342455",,,,"2011-10-17T16:33:24-0500","DREW LANDON",,,,,195,38,,142,180,0,180,180,,,"2C",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017201342P030151739233001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"GROUP LIFE INSURANCE AND DISABILITY PLAN OF UNITED TECHNOLOGIES CORPORATION","502","2003-01-01","UNITED TECHNOLOGIES CORPORATION",,,"UTC BUILDING","ONE FINANCIAL PLAZA","HARTFORD","CT","06101",,,,,,,,,,,,,,,,,,"060570975","8607287000","336410","UNITED TECHNOLOGIES CORPORATION",,"UTC BUILDING","ONE FINANCIAL PLAZA","HARTFORD","CT","06101",,,,,,,"060570975","8607287000",,,,"2011-10-17T18:33:01-0500","PETER HOLOWESKO",,,,,66834,60250,4026,0,64276,,,,,,,"4B4H4L4Q","1","0","1","0","1","0","1","0","0","0","0","1","0","1","8","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017200933P030151733233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE THOR EQUITIES, LLC 401(K) PLAN","001","2002-01-01","THOR EQUITIES, LLC",,,"25 W. 39TH STREET, 16TH FLOOR",,"NEW YORK","NY","100183805",,,,,,,,,,,,,,,,,,"134191112","2125295055","531390","THOR EQUITIES, LLC",,"25 W. 39TH STREET, 16TH FLOOR",,"NEW YORK","NY","100183805",,,,,,,"134191112","2125295055",,,,"2011-10-17T16:55:10-0500","JOSEPH J. SITT",,,,,195,104,2,98,204,0,204,164,10,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017213116P040004803699001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEN B. SHENASSA, M.D., INC. PROFIT SHARING PLAN","002","2006-01-01","BEN B. SHENASSA, M.D, INC.",,,"2750 W. BROADWAY",,"LOS ANGELES","CA","90041",,,,,,,"2750 W. BROADWAY",,"LOS ANGELES","CA","90041",,,,,,,"412165514","3235434250","621111","BEN B. SHENASSA, M.D, INC.",,"2750 W. BROADWAY",,"LOS ANGELES","CA","90041",,,,,,,"412165514","3235434250",,,,"2011-10-17T21:31:05-0500","ROBERT LANDIN",,,,,10,10,0,0,10,0,10,10,0,,"2E2G2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111018093724P030152105745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BANCROFT & SONS TRANSPORTATION, INC. 401(K) PLAN AND TRUST","001","2006-01-01","BANCROFT AND SONS TRANSPORTATION, INC.",,,"3390 HIGH PRAIRIE ROAD",,"GRAND PRAIRIE","TX","75050",,,,,,,,,,,,,,,,,,"751639263","9727903777","484110","BANCROFT AND SONS TRANSPORTATION, INC.",,"3390 HIGH PRAIRIE ROAD",,"GRAND PRAIRIE","TX","75050",,,,,,,"751639263","9727903777",,,,"2011-10-18T09:36:23-0500","KIM BANCROFT",,,,,238,196,5,4,205,0,205,65,7,,"2E2F2G2J2K3D2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018095816P030152112225001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"CONSTRUCTION INDUSTRY LABORERS PENSION FUND","001","1964-10-01","CONSTRUCTION INDUSTRY LABORERS PENSION FUND",,,"6405 METCALF, STE 200",,"OVERLAND PARK","KS","66202",,,,,,,,,,,,,,,,,,"436060737","9132365490","237990","CONSTRUCTION INDUSTRY LABORERS PENSION FUND",,"6405 METCALF, STE 200",,"OVERLAND PARK","KS","66202",,,,,,,"436060737","9132365490",,,,"2011-10-18T08:55:04-0500","PERRI PRYOR",,,,,11984,3758,3671,4308,11737,866,12603,,,619,"1B1G",,"1","0","1","0","0","0","1","0","1","1","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111017174851P040155215153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SMITH & DOWNEY, P.A. 401(K) PLAN","001","1993-01-01","SMITH & DOWNEY, P.A.",,,"ONE W. PENNSYLVANIA AVENUE","SUITE 950","BALTIMORE","MD","212045025",,,,,,,,,,,,,,,,,,"521839270","4103219000","541110","SMITH & DOWNEY, P.A.",,"ONE W. PENNSYLVANIA AVENUE","SUITE 950","BALTIMORE","MD","212045025",,,,,,,"521839270","4103219000",,,,"2011-10-17T17:48:40-0500","JOANNE POTTER",,,,,22,18,0,5,23,0,23,23,0,,"2E2F2G2J",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017170123P040155173665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RAYPAK, INC. LONG TERM DISABILITY PLAN","505","1984-09-01","RAYPAK, INC.",,,"2151 EASTMAN AVE.",,"OXNARD","CA","930305194",,,,,,,,,,,,,,,,,,"951617465","8052785348","332900","RAYPAK, INC.",,"2151 EASTMAN AVE.",,"OXNARD","CA","930305194",,,,,,,"951617465","8052785348",,,,"2011-10-17T16:58:07-0500","MIKE INLOW",,,,,358,349,0,0,349,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017170349P040155176001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CCRES 403B PLAN","001","2002-02-22","CCRES",,,"1635 E. LINCOLN HIGHWAY",,"COATESVILLE","PA","193202459",,,,,,,,,,,,,,,,,,"233011813","6102694740","611000","CCRES",,"150 E PENNSYLVANIA AVE STE 450",,"DOWNINGTOWN","PA","193352607",,,,,,,"233011813","6102694740",,,,"2011-10-17T17:01:47-0500","JOE VAILLANCOURT",,,,,666,295,,1,296,0,296,22,0,,"2M3D2L",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017180438P030702689104021","2010-01-01","2010-12-31","3",,,,,,,"1",,,,,"TOYOTA OF ORANGE VACATION BENEFIT TRUST","501","1987-01-01","TOYOTA OF ORANGE, INC VACATION BENEFIT TRUST",,,"1400 N TUSTIN AVE",,"ORANGE","CA","92867",,,,,,,,,,,,,,,,,,"330215933","7146396750","441110","TOYOTA OF ORANGE INC VACATION BENEFIT TRUST",,"1400 N TUSTIN AVE",,"ORANGE","CA","92867",,,,,,,"330215933","7146396750",,,,"2011-10-17T17:53:15-0500","GLENN QUINTOS",,,,,1332,1368,,,1368,,1368,,,,,"4F",,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017164937P040023314466001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"NORTHWEST OHIO PAIN MANAGEMENT PROFIT SHARING PLAN","002","2007-01-01","NORTHWEST OHIO PAIN MANAGEMENT ASSOCIATES LTD",,,"516 RIVERSIDE DRIVE",,"ROSSFORD","OH","43460",,,,,,,,,,,,,,,,,,"341939822","4196967646","621111","NORTHWEST OHIO PAIN MANAGEMENT ASSOCIATES LTD",,"516 RIVERSIDE DRIVE",,"ROSSFORD","OH","43460",,,,,,,"341939822","4196967646",,,,"2011-10-17T12:33:01-0500","KIRAN TAMERISA",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017164940P030151514913001","2008-01-01","2008-12-31","2",,"0","0","0","0","1","0","0","1","0",,"THE ACHIEVEKIDS EMPLOYEE BENEFIT PLAN","501","1974-01-01","ACHIEVEKIDS",,,"3860 MIDDLEFIELD ROAD",,"PALO ALTO","CA","94303",,,,,,,"3860 MIDDLEFIELD ROAD",,"PALO ALTO","CA","94303",,,,,,,"770412221","6504941200","611000","ACHIEVEKIDS",,"3860 MIDDLEFIELD ROAD",,"PALO ALTO","CA","94303",,,,,,,"770412221","6504941200",,,,"2011-10-17T15:47:07-0500","MICHAEL GENNETTE, PH.D.","2011-10-17T15:47:07-0500","MICHAEL GENNETTE, PH.D.",,,102,105,3,0,108,,,,,,,"4A4B4D4E4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017164605P030151511297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WAGNER, KIRKMAN, BLAINE, KLOMPARENS & YOUMANS LLP 401(K) PLAN","002","1993-01-01","WAGNER, KIRKMAN, BLAINE, KLOMPARENS & YOUMANS LLP",,,"10640 MATHER BLVD., STE. 200",,"MATHER","CA","95655",,,,,,,,,,,,,,,,,,"680031813","9169205286","541110","WAGNER, KIRKMAN, BLAINE, KLOMPARENS & YOUMANS LLP",,"10640 MATHER BLVD., STE. 200",,"MATHER","CA","95655",,,,,,,"680031813","9169205286",,,,"2011-10-17T16:10:02-0500","PEGGY WICKERSHAM",,,,,47,35,0,7,42,0,42,30,0,,"2E2G2J2R3C3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017170633P040155179633001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"UPS VOLUNTARY EMPLOYEE BENEFICIARY ASSOCIATION HEALTH & WELFARE TRUST FOR COLLECTIVELY BARGAINED EMPLOYEES","007","1993-01-01","UNITED PARCEL SERVICE OF AMERICA, INC",,"C/O TAX DEPARTMENT","55 GLENLAKE PARKWAY NE",,"ATLANTA","GA","30328",,,,,,,,,,,,,,,,,,"582046334","4048288661","484200","UNITED PARCEL SERVICE OF AMERICA, INC","C/O TAX DEPARTMENT","55 GLENLAKE PARKWAY NE",,"ATLANTA","GA","30328",,,,,,,"582046334","4048288661",,,,"2011-10-17T16:57:12-0500","DAN DISMUKES",,,,,,,,,,,,,,,,,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017165453P040155164833001","2010-01-01","2010-12-31","3",,"0","0","0","0","1","1","0","0","0",,"MAHONEY LIMITED PARTNERSHIP DBA MAHONEY ENVIRONMENTAL PROFIT SHARING & 401K PLAN","001","1992-07-01","MAHONEY ENVIRONMENTAL",,,"1819 MOEM AVENUE",,"JOLIET","IL","60436",,,,,,,,,,,,,,,,,,"363843884","8157302080","562000","MAHONEY ENVIRONMENTAL",,"1819 MOEN AVE",,"JOLIET","IL","60436",,,,,,,"363843884","8158922080",,,,"2011-10-17T16:53:59-0500","AL SUTHERLAND",,,,,177,157,0,31,188,0,188,183,15,,"2A2E2F2G2J2K2S3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162751P040023309602001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"BENEFITDATA DEFERRED COMPENSATION PLAN","002","1998-01-01","BENEFITDATA SERVICES, INC",,,"210 S ELM ST","SUITE 104","DENTON","TX","76201",,,,,,,,,,,,,,,,,,"752841165","9403206200","541990","BENEFITDATA SERVICES, INC",,"210 S ELM ST","SUITE 104","DENTON","TX","76201",,,,,,,"752841165","9403206200",,,,"2011-10-17T05:27:26-0500","WALTER MACKILLOP",,,,,7,4,,3,7,,7,5,,,"2E2F2G2J2K",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017163458P040155145249001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"FLAVORS & FRAGRANCES SAVINGS & INVESTMENT PLAN","036","1985-07-01","RENESSENZ LLC",,,"601 CRESTWOOD STREET",,"JACKSONVILLE","FL","32208",,,,,,,"601 CRESTWOOD STREET",,"JACKSONVILLE","FL","32208",,,,,,,"271191416","9049242742","325100","RENESSENZ LLC",,"601 CRESTWOOD STREET",,"JACKSONVILLE","FL","32208",,,,,,,"271191416","9049242742","MILLENNIUM AMERICA HOLDINGS, INC.","980045720","036","2011-10-17T16:28:08-0500","WILLIAM DIAS",,,,,617,200,0,319,519,3,522,501,0,,"2E2F2G2J2K2R2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017163823P040696798784001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"ELIVERT RETIREMENT PLAN","001","2006-01-01","ELIVERT COMPANY",,,"1229 CANTLEMERE ST",,"WAKE FOREST","NC","27587",,,,,,,,,,,,,,,,,,"107681438","7045216400","523900","ELIVERT COMPANY",,"1229 CANTLEMERE ST",,"WAKE FOREST","NC","27587",,,,,,,"107681438","7045216400",,,,"2011-10-17T16:38:11-0500","CINAWAYE ELIVERT",,,,,2,0,0,0,0,0,0,0,0,,"2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017165906P040696891936001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELECTRO WIRE, INC. 401(K) PLAN","002","1998-01-01","ELECTRO WIRE, INC.",,,"933 E. REMINGTON RD.",,"SCHAUMBURG","IL","601734514",,,,,,,"ELECTRO WIRE, INC.","933 E. REMINGTON ROAD","SCHAUMBURG","IL","601734514",,,,,,,"362956381","8479441500","423600","ELECTRO WIRE, INC.",,"933 E. REMINGTON RD.",,"SCHAUMBURG","IL","601734514",,,,,,,"362956381","8479441500",,,,"2011-10-17T16:58:47-0500","MICKEY HAMANO","2011-10-17T16:58:47-0500","MICKEY HAMANO",,,129,101,0,7,108,0,108,107,5,,"2A2E2H2J2K2T",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","4","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017173241P040155202433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE ESTEE LAUDER COMPANIES INC. GROUP MEDICAL, DENTAL, PRESCRIPTION DRUG, LONG TERM DISABILITY, LIFE, ACCIDENTAL DEATH AND DISMEMBERMENT","503","1984-01-01","THE ESTEE LAUDER COMPANIES INC.",,,"767 FIFTH AVENUE","FLOOR 43","NEW YORK","NY","10153",,,,,,,"767 FIFTH AVENUE","FLOOR 43","NEW YORK","NY","10153",,,,,,,"112408943","2125724200","339900","THE ESTEE LAUDER COMPANIES INC.",,"767 FIFTH AVENUE","FLOOR 43","NEW YORK","NY","10153",,,,,,,"112408943","2125724200",,,,"2011-10-17T17:11:42-0500","SUSAN MOSOFF",,,,,10666,10886,1029,3,11918,,11918,,,,,"4A4B4D4H","1",,,"1","1",,,"1",,,,,,"1","6","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017174510P040023323010001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"MOUNTAIN HOME RADIOLOGY PROFIT SHARING","001","1985-01-01","MOUNTAIN HOME RADIOLOGY CONSULTANT",,"WILLIAM LANDRUM MD","P.O. BOX 2008",,"MOUNTAIN HOME","AR","726542008",,,,,,,,,,,,,,,,,,"710555361","8704256322","621111","WILLIAM LANDRUM MD",,"PO BOX 2008",,"MOUNTAIN HOME","AR","72653",,,,,,,"710555361","8704256322",,,,"2011-10-17T18:30:34-0500","WILLIAM LANDRUM",,,,,6,6,0,0,6,0,6,6,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017164343P040155153057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EUGENE PORTMAN PC PROFIT SHARING PLAN","001","2003-01-01","EUGENE PORTMAN PC",,,"301 CARLYLE LAKE DRIVE",,"ST LOUIS","MO","63141",,,,,,,,,,,,,,,,,,"731164705","3149911102","541110","EUGENE PORTMAN PC",,"301 CARLYLE LAKE DRIVE",,"ST LOUIS","MO","63141",,,,,,,"731164705","3149911102",,,,"2011-10-17T16:43:25-0500","TAMARA SCHOCH",,,,,2,2,0,0,2,0,2,2,0,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162619P030151493185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BEAMAN HEALTH BENEFIT PLAN","501","1985-11-01","BEAMAN PONTIAC COMPANY",,,"1525 BROADWAY",,"NASHVILLE","TN","37203",,,,,,,,,,,,,,,,,,"620442623","6152518400","441110","BEAMAN PONTIAC COMPANY",,"1525 BROADWAY",,"NASHVILLE","TN","37203",,,,,,,"620442623","6152518400",,,,"2011-10-17T16:01:07-0500","RUTHIE KEENE",,,,,193,173,3,0,176,,,,,,,"4A4B4L4F4H4Q","1","0","1","0","1","0","1","0","0","0","0","1","0","1","5","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017164000P030022402354001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","1","0","0",,"DIESEL, INC. 401(K) SAVINGS PLAN","001","1997-01-01","DIESEL, INC.",,,"220 WEST 19TH STREET","3RD FLOOR","NEW YORK","NY","10011",,,,,,,,,,,,,,,,,,"133864308","2127559200","424300","DIESEL, INC.",,"220 WEST 19TH STREET","3RD FLOOR","NEW YORK","NY","10011",,,,,,,"133864308","2127559200",,,,"2011-10-17T15:55:57-0500","CORRIANN GIANNOTTA",,,,,536,355,0,63,418,0,418,226,19,,"2E2J2K3D2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017170429P040023317378001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"EAST VALLEY GASTROENTEROLOGY & HEPATOLOGY, P.C. 401K PROFIT SHARING PLAN","002","2003-01-01","EAST VALLEY GASTROENTEROLOGY & HEPATOLOGY, P.C.",,,"P.O. BOX 6190",,"CHANDLER","AZ","852466190",,,,,,,,,,,,,,,,,,"860837577","4807866655","621111","EAST VALLEY GASTROENTEROLOGY & HEPATOLOGY, P.C.",,"P.O. BOX 6190",,"CHANDLER","AZ","852466190",,,,,,,"860837577","4807866655",,,,"2011-10-17T17:04:29-0500","SWARNJIT SINGH, M.D.",,,,,47,42,0,8,50,0,50,34,2,,"2E2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017174520P040697048720001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"PENFIELD CONTRACTING INC. 401 (K) PROFIT SHARING PLAN","001","2004-01-01","PENFIELD CONTRACTING INC.",,,"108 GILLELAND LANE",,"PITTSBURGH","PA","152371124",,,,,,,"108 GILLELAND LANE",,"PITTSBURGH","PA","152371124",,,,,,,"562309040","4126308302","238900","PENFIELD CONTRACTING INC.",,"108 GILLELAND LANE",,"PITTSBURGH","PA","152371124",,,,,,,"562309040","4126308302",,,,"2011-10-17T17:44:32-0500","MICHAEL SULKOSKE",,,,,1,2,,,2,,2,2,,,"2E2G2J2Q2R3C3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162635P040155135265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE ANDERSON COMPANY, L.L.C. 401(K) RETIREMENT PLAN","001","1999-01-01","THE ANDERSON COMPANY, L.L.C.",,,"12150 TAC CT",,"MANASSAS","VA","20109",,,,,,,,,,,,,,,,,,"541805611","7033934017","237310","THE ANDERSON COMPANY, L.L.C.",,"12150 TAC CT",,"MANASSAS","VA","20109",,,,,,,"541805611","7033934017",,,,"2011-10-17T16:25:42-0500","PATRICK DOERING",,,,,129,100,0,0,100,0,100,95,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017164505P030151510401001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"TROPICANA ENTERTAINMENT INC. 401(K) SAVINGS AND RETIREMENT PLAN","001","2009-07-06","TROPICANA ENTERTAINMENT INC.",,,"3930 HOWARD HUGHES PARKWAY,","4TH FLOOR","LAS VEGAS","NV","89169",,,,,,,,,,,,,,,,,,"270540158","7025893911","713200","TROPICANA ENTERTAINMENT INC.",,"3930 HOWARD HUGHES PARKWAY,","4TH FLOOR","LAS VEGAS","NV","89169",,,,,,,"270540158","7025893911","TROPICANA ENTERTAINMENT HOLDINGS, LLC","205319131","001","2011-10-17T15:16:21-0500","LANCE MILLAGE","2011-10-17T15:16:21-0500","LANCE MILLAGE",,,7273,5669,1,1251,6921,4,6925,3174,28,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017165543P040155166001001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"CREEKWOOD PROPERTY CORPORATION 401(K) PLAN","001","1993-10-01","CREEKWOOD PROPERTY CORPORATION",,,"4949 WESTGROVE DR STE 100",,"DALLAS","TX","75248",,,,,,,"4949 WESTGROVE DR STE 100",,"DALLAS","TX","75248",,,,,,,"752283885","9724479035","531310","CREEKWOOD PROPERTY CORPORATION",,"4949 WESTGROVE DR STE 100",,"DALLAS","TX","75248",,,,,,,"752283885","9724479035",,,,"2011-10-17T16:54:33-0500","DEBORAH CALDWELL",,,,,108,100,0,9,109,0,109,53,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017165544P040155166049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ACCELERATED CARE PLUS CORP 401K PROFIT SHARING PLAN","001","2005-01-01","ACCELERATED CARE PLUS CORP",,,"4850 JOULE STREET SUITE A1",,"RENO","NV","895020000",,,,,,,,,,,,,,,,,,"364331609","8003501100","621498","ACCELERATED CARE PLUS CORP",,"4850 JOULE STREET SUITE A1",,"RENO","NV","895020000",,,,,,,"364331609","8003501100",,,,"2011-10-17T16:54:48-0500","PENSION FILERS",,,,,207,198,0,14,212,0,212,185,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017165918P030151527457002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"ROBERT F KANE PROFIT SHARING PLAN","001","1984-01-01","ROBERT F KANE",,,"870 MARKET STREET",,"SAN FRANCISCO","CA","941022906",,,,,,,"SUITE 1128",,"SAN FRANCISCO","CA","941022906",,,,,,,"942973465","4159821510","541110","ROBERT F KANE",,"870 MARKET STREET",,"SAN FRANCISCO","CA","941022906",,,,,,,"942973465","4159821510",,,,"2011-10-17T16:28:24-0500","ROBERT F KANE",,,,,4,2,,2,4,,4,4,,,"3B2K2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017180147P040155228881001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"PROCESS DISTRIBUTION GROUP 401(K) AND EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","005","1984-08-01","PROCESS DISTRIBUTION GROUP",,,"555 EAST CALIFORNIA AVENUE",,"SUNNYVALE","CA","94086",,,,,,,,,,,,,,,,,,"711043927","4083282740","423800","PROCESS DISTRIBUTION GROUP",,"555 EAST CALIFORNIA AVENUE",,"SUNNYVALE","CA","94086",,,,,,,"711043927","4083282740",,,,"2011-10-17T07:01:04-0500","DAVE HEFLER",,,,,313,193,0,136,329,0,329,294,6,,"2E2H2J2K2O2Q",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162807P040023309714001","2010-01-01","2010-12-16","2",,"0","0","1","1","0","1","0","0","0",,"KENTUCKY DIAGNOSTIC CENTER 401(K) PLAN","001","1997-01-01","HOSPITAL IMAGING COMPANY D/B/A KENTUCKY DIAGNOSTIC C/O ST.",,,"IRIS MONTGOMERY","20 MEDICAL VILLAGE DRIVE, SUITE 200","EDGEWOOD","KY","41017",,,,,,,"IRIS MONTGOMERY","20 MEDICAL VILLAGE DRIVE, SUITE 200","EDGEWOOD","KY","41017",,,,,,,"611358640","8593016261","622000","HOSPITAL IMAGING COMPANY D/B/A KENTUCKY DIAGNOSTIC C/O ST.",,"IRIS MONTGOMERY","20 MEDICAL VILLAGE DRIVE, SUITE 200","EDGEWOOD","KY","41017",,,,,,,"611358640","8593016261","ST. ELIZABETH MEDICAL CENTER","611358640","001","2011-10-17T16:10:17-0500","MARTIN OSCADAL",,,,,1,0,0,0,0,0,0,0,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017163842P030151504177001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DIGITAL FUSION, INC. 401(K) PROFIT SHARING PLAN","001","2002-01-01","DIGITAL FUSION, INC.",,,"5030 BRADFORD DRIVE, BUILDING 1","SUITE 210","HUNTSVILLE","AL","35805",,,,,,,,,,,,,,,,,,"133817344","2563270000","541990","DIGITAL FUSION, INC.",,"5030 BRADFORD DRIVE, BUILDING 1","SUITE 210","HUNTSVILLE","AL","35805",,,,,,,"133817344","2563270000",,,,"2011-10-17T16:19:37-0500","SHANNON COLLINS","2011-10-17T16:19:37-0500","SHANNON COLLINS",,,358,239,0,104,343,0,343,344,12,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017164023P030151505617001","2010-01-01","2010-12-31","3",,"0","1","0","0","1","0","0","0","0",,"UMWA 1974 PENSION TRUST EMPLOYEES' ASSISTANCE PLAN","510","1986-11-01","UNITED MINE WORKERS OF AMERICA 1974 PENSION TRUST",,,"2121 K STREET N.W. SUITE 350",,"WASHINGTON","DC","200371879",,,,,,,,,,,,,,,,,,"526150908","2025212200","525100","UNITED MINE WORKERS OF AMERICA 1974 PENSION TRUST",,"2121 K STREET N.W. SUITE 350",,"WASHINGTON","DC","200371879",,,,,,,"526150908","2025212200",,,,"2011-10-17T16:38:27-0500","LORRAINE LEWIS, EXEC. DIRECTOR","2011-10-17T16:38:27-0500","MICHAEL H. HOLLAND, TRUSTEE",,,208,206,0,0,206,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017165404P030151520353001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","1","0","0","0",,"SOUTHERN REGION OF TEAMSTERS PENSION PLAN","333","1960-12-22","TRUSTEES, SOUTHERN REGION OF TEAMSTERS PENSION TRUST FUND",,"C/O BENEFIT RESOURCES, INC.","8441 GULF FWY., STE. 304",,"HOUSTON","TX","770175066",,,,,,,,,,,,,,,,,,"750865705","7136439300","525100","TRUSTEES, SOUTHERN REGION OF TEAMSTERS PENSION TRUST FUND","C/O BENEFIT RESOURCES, INC.","8441 GULF FWY., STE. 304",,"HOUSTON","TX","770175066",,,,,,,"750865705","7136439300",,,,"2011-10-17T16:53:13-0500","KENNETH WOOD",,,,,498,213,95,161,469,28,497,,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162658P040155135649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","1","0",,"KENNETH E ROGERS DDS","001","1989-01-01","KENNETH E ROGERS",,,"PO BOX 947",,"SALMON","ID","83467",,,,,,,"1007 MAIN STREET",,"SALMON","ID","83467",,,,,,,"753201398","2087564940","621210","KENNETH E ROGERS",,"PO BOX 947",,"SALMON","ID","83467",,,,,,,"753201398","2087564940",,,,"2011-10-17T16:18:18-0500","KENNETH E ROGERS",,,,,3,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017164517P030151510561008","2010-01-01","2010-12-31","2",,,,,,"1","1",,,,,"POLK PHARMACY, INC PROFIT SHARING PLAN","001","1994-01-01","POLK PHARMACY, INC",,,"815 E FORDYCE STREET",,"ENGLAND","AR","72046",,,,,,,,,,,,,,,,,,"710754643","5016900813","446110","POLK PHARMACY, INC",,"815 E FORDYCE STREET",,"ENGLAND","AR","72046",,,,,,,"710754643","5016900813",,,,"2011-10-17T17:31:05-0500","N SCOTT POLK","2011-10-17T17:31:09-0500","N SCOTT POLK",,,5,4,,0,4,0,4,4,,,"2E2J2R3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017163025P030022400610001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"KROG & PARTNERS INCORPORATED PROFIT SHARING PLAN","001","1992-01-01","KROG & PARTNERS INCORPORATED",,,"209 NASSAU STREET",,"PRINCETON","NJ","08542",,,,,,,,,,,,,,,,,,"223152098","6094970497","541600","KROG & PARTNERS INCORPORATED",,"209 NASSAU STREET",,"PRINCETON","NJ","08542",,,,,,,"223152098","6094970497",,,,"2011-10-17T05:39:55-0500","GARY PAUL KROG",,,,,6,5,,1,6,,6,6,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162829P030151495377001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"NEW SOUTH COMMUNICATIONS, INC. LIFE AND HEALTH INSURANCE PLAN","501","1996-02-01","NEW SOUTH COMMUNICATIONS, INC.",,,"P. O. BOX 5797",,"MERIDIAN","MS","393025797",,,,,,,,,,,,,,,,,,"640387140","6016932973","515100","NEW SOUTH COMMUNICATIONS, INC.",,"P. O. BOX 5797",,"MERIDIAN","MS","393025797",,,,,,,"640387140","6016932973",,,,"2011-10-17T17:11:36-0500","MICHAEL C. STERLING",,,,,257,320,,,320,,320,,,,,"4A4B4D4F4L","1",,,,"1","1",,,,,,,,"1","14",,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017162916P040155137921006","2010-01-01","2010-12-31","2",,,,"1",,,,"1",,,,"RHEUMATOLOGY ASSOCIATES INC PROFIT SHARING PLAN","001","1985-05-01","RHEUMATOLOGY ASSOCIATES, INC",,,"5555 E 71ST ST STE 7100",,"TULSA","OK","741366550",,,,,,,,,,,,,,,,,,"731243815","9184919007","621111","RHEUMATOLOGY ASSOCIATES INC",,"5555 E 71ST ST STE 100",,"TULSA","OK","74136",,,,,,,"731243815","9184919007",,,,"2011-10-17T16:16:43-0500","LAWRENCE A JACOBS",,,,,6,,,,0,,0,,,,"2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017163543P040155145905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CNP TECHNOLOGIES, LLC 401(K) PLAN","001","2001-01-01","CNP TECHNOLOGIES, LLC",,,"806 TYVOLA RD STE 102",,"CHARLOTTE","NC","28217",,,,,,,,,,,,,,,,,,"562183842","7045096600","541511","CNP TECHNOLOGIES, LLC",,"806 TYVOLA RD STE 102",,"CHARLOTTE","NC","28217",,,,,,,"562183842","7045096600",,,,"2011-10-17T16:35:32-0500","JOHN H. GARRETT",,,,,36,30,0,12,42,0,42,41,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017165619P030022404946001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"AHTNA INCORPORATED HEALTH & WELFARE PLAN","503","2010-01-01","AHTNA INCORPORATED",,"C/O FCE BENEFIT ADMINISTRATORS","887 MITTEN ROAD","SUITE 200","BURLINGAME","CA","940101303",,,,,,,,,,,,,,,,,,"920042242","6503410306","561210","AHTNA INCORPORATED","C/O FCE BENEFIT ADMINISTRATORS","887 MITTEN ROAD","SUITE 200","BURLINGAME","CA","940101303",,,,,,,"920042242","6503410306",,,,"2011-10-17T16:03:16-0500","MEG ARMINSKI","2011-10-17T16:03:16-0500","MEG ARMINSKI",,,254,242,,,242,,,,,,,"4A4B4D4E4F4H4L","0","0","1","0","1","0","1","0","0","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017170522P040155177793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SINCLAIR EMPLOYEES' BENEFIT PLAN","502","1976-07-01","SINCLAIR SERVICES COMPANY",,,"P O BOX 30825",,"SALT LAKE CITY","UT","84130",,,,,,,"P O BOX 30825",,"SALT LAKE CITY","UT","84130",,,,,,,"203967749","8015242736","324110","SINCLAIR SERVICES COMPANY",,"P O BOX 30825",,"SALT LAKE CITY","UT","84130",,,,,,,"203967749","8015242736",,,,"2011-10-17T17:04:58-0500","CHARLES BARLOW",,,,,2353,2150,81,,2231,,2231,,,,,"4A4B4D4H4L4E",,,"1",,"1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017170550P040155178497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KINSEL MOTORS, INC. PROFIT SHARING AND 401K SAVINGS PLAN","001","1989-05-01","KINSEL MOTORS, INC.",,,"PO BOX 2470",,"BEAUMONT","TX","777042470",,,,,,,,,,,,,,,,,,"741480289","4098994000","441110","KINSEL MOTORS, INC.",,"PO BOX 2470",,"BEAUMONT","TX","777042470",,,,,,,"741480289","4098994000",,,,"2011-10-17T17:05:49-0500","CRAIG W. KINSEL",,,,,234,164,0,63,227,1,228,127,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017173531P040155204097001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","1","0","0","0",,"TEAMSTERS LOCAL NO. 469 ANNUITY FUND","001","1989-05-01","TRUSTESS OF TEAMSTERS LOCAL NO. 469 ANNUITY FUND TRUST",,,"3400 ROUTE 35, SUITE 8",,"HAZLET","NJ","07730",,,,,,,,,,,,,,,,,,"222980666","7322649000","484110","TRUSTESS OF TEAMSTERS LOCAL NO. 469 ANNUITY FUND TRUST",,"3400 ROUTE 35, SUITE 8",,"HAZLET","NJ","07730",,,,,,,"222980666","7322649000",,,,"2011-10-17T17:35:19-0500","GIANCARLO PREZIOSO",,,,,647,331,0,261,592,0,592,592,,44,"2E",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017164030P040023312290001","2010-01-01","2010-12-31","1",,,,,,"1","1",,,,,"MOBILIZATION OPTIMIZATION STABILIZATION TRAINING TRUST","501","1989-06-01","TRUSTEES OF MOBILIZATION OPTIMIZATION STABILIZATION TRAINING TRUST",,,"P.O. BOX 17-1577",,"KANSAS CITY","KS","661170577",,,,,,,,,,,,,,,,,,"481069941","9132815036","813930","TRUSTEES OF MOBILIZATION OPTIMIZATI STABILIZATION TRAINING TRUST",,"P.O. BOX 17-1577",,"KANSAS CITY","KS","661170577",,,,,,,"481069941","9132815036",,,,"2011-10-17T16:37:42-0500","DAVID ZACH","2011-10-17T13:28:12-0500","BILL CREEDEN",,,69756,57748,,,57748,,,,,610,,"4J",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017174720P040023323314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOUTHWEST INDUSTRIAL RIGGING, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2008-01-01","H.K.B., INC.",,,"2802 W. PALM LANE",,"PHOENIX","AZ","85009",,,,,,,,,,,,,,,,,,"860564476","6022331013","238900","H.K.B., INC.",,"2802 W. PALM LANE",,"PHOENIX","AZ","85009",,,,,,,"860564476","6022331013",,,,"2011-10-17T17:47:17-0500","HARRY K. BAKER","2011-10-17T17:47:17-0500","HARRY K. BAKER",,,53,42,0,13,55,0,55,55,3,,"2E2P2Q",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017171253P040155185761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SMITH PROTECTIVE MGMT 401K PLAN","001","1999-01-01","SMITH PROTECTIVE MANAGEMENT INC.",,,"ATTN BILL CUE","4440 BELTWAY DR","ADDISON","TX","75001",,,,,,,,,,,,,,,,,,"752426028","9729607644","541600","SMITH PROTECTIVE MANAGEMENT INC.",,"ATTN BILL CUE","4440 BELTWAY DR","ADDISON","TX","75001",,,,,,,"752426028","9729607644",,,,"2011-10-17T15:15:08-0500","TINA PEREYDA","2011-10-17T17:09:01-0500","BILL CUE",,,524,519,0,0,519,0,519,53,0,,"2E2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017170839P040023318114001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"3-D ELECTRIC CO. PROFIT SHARING PLAN","001","1976-12-31","3-D ELECTRIC CO.",,"JESSE CLEMENTS","10983 N COUNTY ROAD 1000 E",,"BROWNSBURG","IN","461129681",,,,,,,"10983 N COUNTY ROAD 1000 E",,"BROWNSBURG","IN","461129681",,,,,,,"362851917","7088957040","238210","3-D ELECTRIC CO.","JESSE CLEMENTS","10983 N COUNTY ROAD 1000 E",,"BROWNSBURG","IN","461129681",,,,,,,"362851917","7088957040",,,,"2011-10-17T16:58:01-0500","HARVEY SHIFRIN",,,,,3,2,,,2,0,2,2,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111017170618P040696920720001","2010-01-01","2010-12-31","2",,"1",,,,,"1",,,,,"CONNER & WINTERS WELFARE BENEFITS PLAN","507","2010-01-01","CONNER & WINTERS, LLP",,,"4000 ONE WILLIAMS CENTER",,"TULSA","OK","741720148",,,,,,,,,,,,,,,,,,"731388566","9185865711","541110","CONNER & WINTERS, LLP",,"4000 ONE WILLIAMS CENTER",,"TULSA","OK","741720148",,,,,,,"731388566","9185865711",,,,"2011-10-17T10:33:07-0500","H.G. WILL","2011-10-17T10:22:37-0500","N.R. PARKER",,,156,172,2,0,174,,0,,,,,"4A4B4D4F4H","1",,"1",,"1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111017165436P040023315426003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"COUNCIL ON SOCIAL WORK EDUCATION 403(B) PLAN","001","1988-01-01","COUNCIL ON SOCIAL WORK EDUCATION",,,"1701 DUKE STREET SUITE 200",,"ALEXANDRIA","VA","22314",,,,,,,,,,,,,,,,,,"541856529","7036838080","813000","COUNCIL ON SOCIAL WORK EDUCATION",,"1701 DUKE STREET SUITE 200",,"ALEXANDRIA","VA","22314",,,,,,,"541856529","7036838080",,,,"2011-10-17T12:47:31-0500","ED BLAIR",,,,,122,110,0,11,121,2,123,104,0,,"2L2T3D",,"1",,,,"1",,,,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-17","Filed with authorized/valid electronic signature",, "20111028131520P040161469137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AAE INCORPORATED 401(K) PLAN","001","2001-01-01","ADVANCED APPLIED ENGINEERING, INC.",,,"1815 E. HEIM AVENUE SUITE 100",,"ORANGE","CA","92865",,,,,,,,,,,,,,,,,,"330831837","7149400100","541330","ADVANCED APPLIED ENGINEERING, INC.",,"1815 E. HEIM AVENUE SUITE 100",,"ORANGE","CA","92865",,,,,,,"330831837","7149400100",,,,"2011-10-28T13:15:02-0500","SID MOUSAVI",,,,,56,32,0,5,37,0,37,37,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111025164956P030156116865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SOLID WASTE SERVICES OF WEST VIRGINIA, INC. 401(K) PLAN","001","1983-04-01","SOLID WASTE SERVICES OF WEST VIRGINIA, INC.","D/B/A J. P. MASCARO & SONS",,"2650 AUDUBON ROAD",,"AUDUBON","PA","19403",,,,,,,,,,,,,,,,,,"541425012","2679336042","562000","SOLID WASTE SERVICES OF WEST VIRGINIA, INC.",,"2650 AUDUBON ROAD",,"AUDUBON","PA","19403",,,,,,,"541425012","2679336042",,,,"2011-10-25T16:49:39-0500","ROBERT CLARK",,,,,221,96,0,93,189,0,189,150,2,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111018133344P040155762145001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"HARMONIC INC. 401(K) PLAN","001","1992-04-01","HARMONIC INC.",,,"4300 NORTH FIRST STREET",,"SAN JOSE","CA","95134",,,,,,,,,,,,,,,,,,"770201147","4085432329","334200","HARMONIC INC.",,"4300 NORTH FIRST STREET",,"SAN JOSE","CA","95134",,,,,,,"770201147","4085432329",,,,"2011-10-18T13:33:11-0500","REGINA JASSO",,,,,791,664,0,326,990,0,990,796,0,,"2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018202349P030152377121001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"JEFFREY L. MORRILL ,OD,PC 401 K RETIREMENT PLAN","001","2010-01-01","JEFFREY L MORRILL, OD,PC",,,"480 W. CENTRAL STREET",,"FRANKLIN","MA","02038",,,,,,,"480 W. CENTRAL STREET",,"FRANKLIN","MA","02038",,,,,,,"043402964",,"621320","JEFFREY L MORRILL, OD,PC",,"480 W. CENTRAL STREET",,"FRANKLIN","MA","02038",,,,,,,"043402964",,,,,"2011-10-18T18:59:03-0500","JOSEPH MACKESY",,,,,9,9,0,0,9,0,9,9,,,"2E2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018203104P030022546770001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"W.S.I. - L.V. RETIREMENT PLAN","002","1978-01-01","WACKENHUT SERVICES, INCORPORATED",,,"7121 FAIRWAY DRIVE, SUITE 301",,"PALM BEACH GARDENS","FL","33418",,,,,,,,,,,,,,,,,,"590940269","5616916583","561600","WACKENHUT SERVICES, INCORPORATED",,"7121 FAIRWAY DRIVE, SUITE 301",,"PALM BEACH GARDENS","FL","33418",,,,,,,"590940269","5616916583",,,,"2011-10-17T12:42:24-0500","DAVID C. BRADLEY",,,,,368,162,93,91,346,8,354,,9,,"1A1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111027164536P030157238113001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW WINCUP HOLDINGS, INC. HEALTH AND WELFARE PLAN","502","2007-04-01","NEW WINCUP HOLDINGS, INC.",,,"4640 LEWIS ROAD",,"STONE MOUNTAIN","GA","30083",,,,,,,,,,,,,,,,,,"205897540","7704925518","326100","DANIELLE LEHMAN",,"4640 LEWIS ROAD",,"STONE MOUNTAIN","GA","30083",,,,,,,"205897540","7704925518",,,,"2011-10-27T16:44:44-0500","DANIELLE LEHMAN","2011-10-27T16:44:44-0500","DANIELLE LEHMAN",,,1019,1003,11,21,1035,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111028073631P040724444576004","2010-04-01","2011-03-31","2",,,,,,,,,,,,"DAY ENTERPRISES, INC. SALARY REDUCTION 401(K) PROF","001","1972-09-04","DAY ENTERPRISES, INC.",,,"P.O. BOX 6",,"KANNAPOLIS","NC","28082",,,,,,,"1912 S. RIDGE AVENUE",,"KANNAPOLIS","NC","28083",,,,,,,"561045502","7049332218","722210","DAY ENTERPRISES, INC.",,"P.O. BOX 6",,"KANNAPOLIS","NC","28082",,,,,,,"561045502","7049332218",,,,"2011-10-24T03:17:22-0500","TROY L. DAY","2011-10-24T03:17:22-0500","TROY L. DAY",,,232,222,2,32,256,,256,256,53,,"2E2F2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1",,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111025100503P030023057762001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ELDRIDGE ELECTRIC COMPANY, INC 401(K) PLAN","001","1995-01-01","ELDRIDGE ELECTRIC COMPANY, INC",,,"13315 WESTERN OAKS DRIVE","P.O. BOX 1289","HELOTES","TX","780231289",,,,,,,,,,,,,,,,,,"741685626","2106959113","238210","ELDRIDGE ELECTRIC COMPANY, INC",,"13315 WESTERN OAKS DRIVE","P.O. BOX 1289","HELOTES","TX","780231289",,,,,,,"741685626","2106959113",,,,"2011-10-25T10:04:11-0500","BOBBY HINES",,,,,117,92,0,10,102,0,102,83,1,,"2A2E2J2K2F2T2G3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111018141559P030152229585001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"AMERICAN INTERNATIONAL FORWARDING, INC. 401(K) PROFIT SHARING PLAN","001","1992-01-01","AMERICAN INTERNATIONAL FORWARDING, INC.",,,"6 PENN CENTER WEST","SUITE 200","PITTSBURGH","PA","15276",,,,,,,"6 PENN CENTER WEST","SUITE 200","PITTSBURGH","PA","15276",,,,,,,"251394804","4126771709","488510","AMERICAN INTERNATIONAL FORWARDING, INC.",,"6 PENN CENTER WEST","SUITE 200","PITTSBURGH","PA","15276",,,,,,,"251394804","4126771709",,,,"2011-10-18T14:11:37-0500","EDWARD HARTMAN",,,,,212,212,0,25,237,0,237,229,21,,"2E2F2G2J2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018145911P030022524578001","2003-01-01","2003-12-31","2",,"0","1","0","0","0","0","0","1","0",,"HEALTH CARE SERVICES 401(K) PLAN","001","1998-03-01","CORPORATE MANAGEMENT, INC.",,,"P.O. BOX 3269",,"GULFPORT","MS","395053269",,,,,,,,,,,,,,,,,,"200463966","6019282911","541600","CORPORATE MANAGEMENT, INC.",,"P.O. BOX 3269",,"GULFPORT","MS","395053269",,,,,,,"200463966","6019282911",,,,"2011-10-18T14:58:32-0500","THOMAS KULUZ","2011-10-18T14:58:32-0500","THOMAS KULUZ",,,195,222,0,31,253,0,253,73,22,,"2E2G2J2K3D3H",,"1",,"1",,"1",,"1",,,,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111027131753P040160899025001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BESHENICH MUIR & ASSOCIATES 401(K) PLAN","001","2010-01-01","BESHENICH MUIR & ASSOCIATES",,,"3776 SULLIVAN STREET, SUITE E",,"MADISON","AL","35758",,,,,,,,,,,,,,,,,,"263505674","2565427524","541990","BESHENICH MUIR & ASSOCIATES",,"3776 SULLIVAN STREET, SUITE E",,"MADISON","AL","35758",,,,,,,"263505674","2565427524",,,,"2011-10-27T13:17:27-0500","MARY KATE GYGAX",,,,,1,11,0,1,12,0,12,10,1,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111028110007P040161403985004","2010-01-01","2010-12-31","2",,,,,,,"1",,,"1","HURRICANE IRENE SEC 7508A EXT 1031","GUY SHAVENDER TRUCKING INC EMPLOYEES' PROFIT SHARING PLAN","001","1995-01-01","GUY SHAVENDER TRUCKING INC",,,"PO BOX 206",,"PANTEGO","NC","27860",,,,,,,,,,,,,,,,,,"561246501","2529433379","484110","GUY SHAVENDER TRUCKING INC",,"PO BOX 206",,"PANTEGO","NC","27860",,,,,,,"561246501","2529433379",,,,"2011-10-24T11:46:54-0500","GUY H SHAVENDER JR","2011-10-24T11:47:00-0500","GUY H SHAVENDER JR",,,68,42,0,15,57,0,57,57,,,"2E3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018183725P030705751520001","2010-02-01","2010-12-31","2",,"0","1","0","1","0","1","0","0","0",,"WYSPEN CORPORATION 401K PLAN","001","2009-08-08","WYSPEN CORPORATION",,,"CHARLESTOWN ACE 5 AUSTIN STREET",,"CHARLESTOWN","MA","02129",,,,,,,,,,,,,,,,,,"270728271","6308418221","444130","WYSPEN CORPORATION",,"CHARLESTOWN ACE 5 AUSTIN STREET",,"CHARLESTOWN","MA","02129",,,,,,,"270728271","6308418221",,,,"2011-10-18T18:36:26-0500","JEFFREY BAARS","2011-10-18T18:36:26-0500","JEFFREY BAARS",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111028102751P040161394417001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"STRATEGIC DISTRIBUTION, INC. RETIREMENT SAVINGS PLAN AND TRUST AGREEMENT","001","1990-09-09","STRATEGIC DISTRIBUTION, INC.",,,"1414 RADCLIFFE STREET SUITE 300",,"BRISTOL","PA","19007",,,,,,,,,,,,,,,,,,"221849240","2156331900","423990","STRATEGIC DISTRIBUTION, INC.",,"1414 RADCLIFFE STREET SUITE 300",,"BRISTOL","PA","19007",,,,,,,"221849240","2156331900",,,,"2011-10-28T10:27:42-0500","VICTORIA HYCZKO",,,,,312,239,2,93,334,0,334,334,16,,"2A2F2G2J2K3D2E",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111025144957P040024022706001","2010-09-01","2011-08-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVID W. WARDLAW, D.D.S., A PROFESSIONAL CORPORATION PROFIT SHARING PLAN AN D TRUST","001","1976-09-01","DAVID W. WARDLAW, D.D.S., A PROFESSIONAL CORPORATION",,,"780 EAST ROMIE LANE, SUITE D",,"SALINAS","CA","93901",,,,,,,,,,,,,,,,,,"942374445","8314225388","621210","DAVID W. WARDLAW, D.D.S., A PROFESSIONAL CORPORATION",,"780 EAST ROMIE LANE, SUITE D",,"SALINAS","CA","93901",,,,,,,"942374445","8314225388",,,,"2011-10-25T14:49:40-0500","DAVID W. WARDLAW, D.D.S.",,,,,7,7,0,0,7,0,7,3,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111018113514P030152152881006","2010-01-01","2010-12-31","3",,,"1",,,,,,,,,"ALEXIAN HEALTH SYSTEM GROUP DENTAL PLAN","503","1984-08-01","ALEXIAN BROTHERS HEALTH SYSTEM",,,"3040 SALT CREEK LANE",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,,,,,,,,,,,,"363260495","8473857100","622000","ALEXIAN BROTHERS HEALTH SYSTEM",,"3040 SALT CREEK LANE",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,"363260495","8473857100",,,,"2011-10-18T11:27:14-0500","JAMES LEWANDOWSKI",,,,,559,386,,,386,,386,,,,,"4D","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018113514P030152152881007","2010-01-01","2010-12-31","3",,,"1",,,,,,,,,"ALEXIAN HEALTH SYSTEM GROUP MEDICAL PLAN","502","1984-08-01","ALEXIAN BROTHERS HEALTH SYSTEM",,,"3040 SALT CREEK LANE",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,,,,,,,,,,,,"363260495","8473857100","622000","ALEXIAN BROTHERS HEALTH SYSTEM",,"3040 SALT CREEK LANE",,"ARLINGTON HEIGHTS","IL","60005",,,,,,,"363260495","8473857100",,,,"2011-10-18T11:28:08-0500","JAMES LEWANDOWSKI",,,,,4252,4178,,,4178,,4178,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","2","1",,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111027091446P040024175618001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FLIPPO CONSTRUCTION COMPANY, INC. HEALTH INSURANCE PLAN","503","2000-02-01","FLIPPO CONSTRUCTION COMPANY, INC.",,,"3820 PENN BELT PLACE",,"FORESTVILLE","MD","20747",,,,,,,,,,,,,,,,,,"520936945","3019676800","236200","FLIPPO CONSTRUCTION COMPANY, INC.",,"3820 PENN BELT PLACE",,"FORESTVILLE","MD","20747",,,,,,,"520936945","3019676800",,,,"2011-10-27T09:14:05-0500","DUSTIN HARBAUGH",,,,,180,201,0,0,201,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111027153945P030728741328001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"PIGGLY WIGGLY CAROLINA COMPANY, INC. HEALTH & WELFARE BENEFIT PROGRAM","501","1980-06-01","PIGGLY WIGGLY CAROLINA COMPANY, INC.",,,"P.O. BOX 118047",,"CHARLESTON","SC","29423",,,,,,,,,,,,,,,,,,"570346623","8435549880","424400","PIGGLY WIGGLY CAROLINA COMPANY, INC.",,"P.O. BOX 118047",,"CHARLESTON","SC","29423",,,,,,,"570346623","8435549880",,,,"2011-10-27T15:39:19-0500","WILLIAM EDENFIELD",,,,,2623,2218,169,0,2387,,,,,,,"4B4E4F4H4A4D4Q4G","1",,"1",,"1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111028110834P040161408145001","2010-11-23","2011-06-30","2",,"1","0","0","1","0","0","0","0","0",,"T AND T ENTERTAINMENT, INC. 401(K) PLAN","001","2010-11-23","T AND T ENTERTAINMENT, INC.",,,"6212 GOLDENEYE COURT",,"ROCKLIN","CA","95765",,,,,,,,,,,,,,,,,,"274039629","9163036151","713900","T AND T ENTERTAINMENT, INC.",,"6212 GOLDENEYE COURT",,"ROCKLIN","CA","95765",,,,,,,"274039629","9163036151",,,,"2011-10-28T11:07:23-0500","SUSAN HUGHES","2011-10-28T11:07:23-0500","SUSAN HUGHES",,,0,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111028140650P030731185888001","2010-10-01","2011-09-30","2",,"0","0","0","0","0","0","0","0","0",,"OAK PARK ANIMAL HOSPITAL INC","001","1960-06-01","LANCE GRISSOM",,,"2810 WEST 28TH",,"PINE BLUFF","AR","71603",,,,,,,"2810 WEST 28TH",,"PINE BLUFF","AR","71603",,,,,,,"710810383","8705348144","541940","LANCE GRISSOM",,"2810 WEST 28TH",,"PINE BLUFF","AR","71603",,,,,,,"710810383","8705348144",,,,"2011-10-28T13:50:39-0500","STEPHEN ANDRESS",,,,,10,6,,1,7,1,8,,1,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111025170735P030156124465001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"CLIMATE ACTION RESERVE - FLEXIBLE BENEFIT PLAN","502","2003-10-02","CLIMATE ACTION RESERVE",,,"523 WEST 6TH STREET, SUITE 428",,"LOS ANGELES","CA","90014",,,,,,,"523 WEST 6TH STREET, SUITE 428",,"LOS ANGELES","CA","90014",,,,,,,"680477330","2138911444","541990","CLIMATE ACTION RESERVE",,"523 WEST 6TH STREET, SUITE 428",,"LOS ANGELES","CA","90014",,,,,,,"680477330","2138911444",,,,"2011-10-25T17:04:45-0500","RAMON LEE",,,,,4,3,,,3,,3,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111025190128P030156162673001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"MATTIVI ENTERPRISES, INC. 401(K) PLAN","001","2005-09-20","MATTIVI ENTERPRISES, INC.",,,"14744 FAIRWAY ST.",,"LEAWOOD","KS","66224",,,,,,,,,,,,,,,,,,"203488078","9138977316","454390","MATTIVI ENTERPRISES, INC.",,"14744 FAIRWAY ST.",,"LEAWOOD","KS","66224",,,,,,,"203488078","9138977316",,,,"2011-10-25T19:00:37-0500","SCOTT MATTIVI","2011-10-25T19:00:37-0500","SCOTT MATTIVI",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111028133945P040161476705003","2010-04-01","2011-03-31","2",,,,,,,,,,,,"PS PL OF LOUKS MFG CO 2739 310TH ST GILMAN, IA 50106","001","1973-06-04","LOUKS MFG CO",,"C/O GORDON D LOUKS","2739 310TH ST",,"GILMAN","IA","50106",,,,,,,"2739 310TH ST",,"GILMAN","IA","50106",,,,,,,"421008503","6414763962","333100","LOUKS MFG CO","C/O GORDON D LOUKS","2739 310TH ST",,"GILMAN","IA","50106",,,,,,,"421008503","6414763962",,,,"2011-06-06T08:26:23-0500","GORDON D LOUKS",,,,,5,4,,,4,,4,4,,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111018124218P040155736529001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE SAVINGS PLAN FOR EMPLOYEES OF WYCKOFF HEIGHTS","001","1985-01-01","WYCKOFF HEIGHTS MEDICAL CENTER",,,"374 STOCKHOLM STREET",,"BROOKLYN","NY","11237",,,,,,,,,,,,,,,,,,"111631837","7189637698","622000","WYCKOFF HEIGHTS MEDICAL CENTER",,"374 STOCKHOLM STREET",,"BROOKLYN","NY","11237",,,,,,,"111631837","7189637698",,,,"2011-10-18T12:41:54-0500","LEON KOZLOWSKI","2011-10-18T12:41:54-0500","LEON KOZLOWSKI",,,1302,1180,5,57,1242,0,1242,1065,22,,"2E2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018140141P040023416866001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NORTH CAROLINA INSTITUTE FOR MINORITY ECONOMIC DEVELOPMENT 403 (B) PLAN","001","1995-01-01","NC INSTITUTE FOR MINORITY ECONOMIC DEVELOPMENT",,"ANDREA HARRIS","P.O. BOX 1331","114 W. PARRISH ST.","DURHAM","NC","27702",,,,,,,"P.O. BOX 1331","114 W. PARRISH ST.","DURHAM","NC","27702",,,,,,,"561579041","9199569889","813000","NC INSTITUTE FOR MINORITY ECONOMIC DEVELOPMENT","ANDREA HARRIS","P.O. BOX 1331","114 W. PARRISH ST.","DURHAM","NC","27702",,,,,,,"561579041","9199569889",,,,"2011-10-18T12:37:13-0500","ANDREA HARRIS",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018125909P040155743921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"NUTMEG FINANCIAL, MHC 401K PLAN","002","1975-01-01","NUTMEG FINANCIAL",,,"251 CHURCH STREET",,"NAUGATUCK","CT","06770",,,,,,,,,,,,,,,,,,"571223365","2037205372","522120","NUTMEG FINANCIAL",,"251 CHURCH STREET",,"NAUGATUCK","CT","06770",,,,,,,"571223365","2037205372",,,,"2011-10-18T12:58:09-0500","CHARLES BOULIER","2011-10-18T12:58:09-0500","CHARLES BOULIER",,,301,239,0,31,270,0,270,247,0,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111025143411P030723436080001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"INTERNATIONAL CORE I SEPARATE ACCOUNT","079",,"MINNESOTA LIFE INSURANCE COMPANY",,,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,,,,,,,,,,,,"410417830","6516653500",,"MINNESOTA LIFE INSURANCE COMPANY",,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,"410417830","6516653500",,,,,,,,"2011-10-25T14:33:06-0500","RICHARD L MANKE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-25",,"Filed with authorized/valid electronic signature", "20111025132853P040159709217001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"VISITING NURSE REGIONAL HEALTHCARE SYSTEM","501","2010-04-01","VISITING NURSE REGIONAL HEALTH CARE SYSTEM",,,"15 METROTECH CENTER","FLOOR 11","BROOKLYN","NY","11201",,,,,,,"15 METROTECH CENTER","FLOOR 11","BROOKLYN","NY","11201",,,,,,,"113574017","7189237100","621610","VISITING NURSE REGIONAL HEALTH CARE SYSTEM",,"15 METROTECH CENTER","FLOOR 11","BROOKLYN","NY","11201",,,,,,,"113574017","7189237100",,,,"2011-10-25T12:35:49-0500","TIMOTHY LEDDY",,,,,276,299,0,0,299,0,299,,,,,"4A4B4D4E4L4Q4F","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111025152532P030723530432001","2010-01-01","2010-12-31","4","M",,,,,,"1",,,"1","HURRICANE IRENE RELIEF","HUDSON VALLEY RADIOLOGISTS, P.C. RETIREMENT TRUST","004","2008-01-01","HUDSON VALLEY RADIOLOGISTS, P.C.",,,"WESTAGE MEDICAL OFFICE BUILDING","1 COLUMBIA STREET","POUGHKEEPSIE","NY","12601",,,,,,,,,,,,,,,,,,"141540066","8454544700",,"HUDSON VALLEY RADIOLOGISTS, P.C.",,"WESTAGE MEDICAL OFFICE BUILDING","1 COLUMBIA STREET","POUGHKEEPSIE","NY","12601",,,,,,,"141540066","8454544700",,,,"2011-10-25T04:25:26-0500","MARK NEWTON",,,,,,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111028083929P030157588433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","1","DISASTER RELIEF - HURRICANE IRENE","MOUNT KISCO MEDICAL GROUP WELFARE BENEFIT PLAN","501","1999-01-01","MOUNT KISCO MEDICAL GROUP",,,"90 SOUTH BEDFORD ROAD",,"MOUNT KISCO","NY","10549",,,,,,,,,,,,,,,,,,"133544120","9142421546","621111","MOUNT KISCO MEDICAL GROUP",,"90 SOUTH BEDFORD ROAD",,"MOUNT KISCO","NY","10549",,,,,,,"133544120","9142421546",,,,"2011-10-28T08:39:04-0500","JOHN DION",,,,,1954,2240,22,0,2262,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111023213828P040023869970001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"LONG TERM DISABILITY PLAN","503","1979-04-01","ARIZONA STATE CREDIT UNION",,,"2355 W. PINNACLE PEAK ROAD",,"PHOENIX","AZ","85027",,,,,,,,,,,,,,,,,,"860108770","6024674116","522130","ARIZONA STATE CREDIT UNION",,"2355 W. PINNACLE PEAK ROAD",,"PHOENIX","AZ","85027",,,,,,,"860108770","6024674116",,,,"2011-10-21T18:11:07-0500","YVONNE ROSS","2011-10-21T18:11:07-0500","YVONNE ROSS",,,370,355,,,355,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111025140848P030723386016001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"MID-CONTINENT RESEARCH FOR EDUCATION AND LEARNING (MCREL) WELFARE PLAN","501","2001-05-01","MID-CONTINENT RESEARCH FOR EDUCATION AND LEARNING",,,"4601 DTC BLVD, SUITE 500",,"DENVER","CO","80237",,,,,,,,,,,,,,,,,,"430837728","3033370990","611000","MID-CONTINENT RESEARCH FOR EDUCATION AND LEARNING",,"4601 DTC BLVD, SUITE 500",,"DENVER","CO","80237",,,,,,,"430837728","3033370990",,,,"2011-10-25T13:58:10-0500","SUSAN DESCH",,,,,111,100,3,,103,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111018144506P040155786929003","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"POWELL, BREWER & REDDICK, L.L.P. PROFIT SHARING PLAN","001","2000-01-01","POWELL, BREWER & REDDICK, L.L.P.",,,"727 N. WACO, STE. 560",,"WICHITA","KS","672033986",,,,,,,,,,,,,,,,,,"742832061","3162657272","541110","POWELL, BREWER & REDDICK, L.L.P.",,"727 N. WACO, STE. 560",,"WICHITA","KS","672033986",,,,,,,"742832061","3162657272",,,,"2011-10-18T14:41:59-0500","MARC A. POWELL","2011-10-18T14:43:37-0500","MARC A. POWELL",,,8,7,0,2,9,0,9,9,,,"2T2E2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111025150935P040159764465001","2011-01-01","2011-03-23","2",,"0","0","1","1","0","1","0","0","0",,"STEVEN C. MINGOS, D.D.S., P.C. DEFINED BENEFIT PLAN","003","2000-01-01","STEVEN C. MINGOS, D.D.S., P.C.",,,"4746 BELLEVIEW",,"KANSAS CITY","MO","64112",,,,,,,,,,,,,,,,,,"431184094","8165318740","621210","STEVEN C. MINGOS, D.D.S., P.C.",,"4746 BELLEVIEW",,"KANSAS CITY","MO","64112",,,,,,,"431184094","8165318740",,,,"2011-10-25T15:09:08-0500","STEVEN C. MINGOS, D.D.S.",,,,,1,0,0,0,0,0,0,,0,,"1B1I3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111028100422P030157620801001","2011-01-01","2011-04-30","2",,"0","0","1","1","0","0","0","0","0",,"ALEXANDER & ALEXANDER, INC. PROFIT SHARING PLAN & TRUST","001","2003-05-01","ALEXANDER & ALEXANDER, INC.",,,"PO BOX 119",,"LEITCHFIELD","KY","42755",,,,,,,,,,,,,,,,,,"611368368","2702300340","524210","ALEXANDER & ALEXANDER, INC.",,"PO BOX 119",,"LEITCHFIELD","KY","42755",,,,,,,"611368368","2702300340",,,,"2011-10-21T10:54:48-0500","CARY ALEXANDER","2011-10-21T11:05:00-0500","CARY ALEXANDER",,,7,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111027133556P040024192450001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","1","0",,"TRIBBLE PAINTING COMPANY INC 401K PLAN","001","2007-02-24","TRIBBLE PAINTING CO INC",,,"210 LITTLE LAKE DRIVE STE 9",,"ANN ARBOR","MI","48103",,,,,,,"210 LITTLE LAKE DRIVE STE 9",,"ANN ARBOR","MI","48103",,,,,,,"383033147","7346681586","238300","TRIBBLE PAINTING CO INC",,"210 LITTLE LAKE DRIVE STE 9",,"ANN ARBOR","MI","48103",,,,,,,"383033147","7346681586",,,,"2011-10-27T13:35:19-0500","LEN PYTLAK",,,,,7,6,1,,7,,7,6,,,"2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111028150659P030157743329002","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MIRIAM OSBORN MEMORIAL HOME ASSOCIATION RETIREMENT INCOME PLAN","001","1955-12-01","MIRIAM OSBORN MEMORIAL HOME ASSOCIATION",,,"101 THEALL ROAD",,"RYE","NY","10580",,,,,,,,,,,,,,,,,,"135562312","9149258201","623000","MIRIAM OSBORN MEMORIAL HOME ASSOCIATION",,"101 THEALL ROAD",,"RYE","NY","10580",,,,,,,"135562312","9149258201",,,,"2011-10-28T10:51:59-0500","MARK R. ZWERGER",,,,,728,470,140,128,738,4,742,,63,,"1A1G3H",,,,"1",,,,"1",,"1",,"1","1",,,,"1",,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111025145219P040024022882001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"HEALTH CARE EQUITY II SEPARATE ACCOUNT","104",,"MINNESOTA LIFE INSURANCE COMPANY",,,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,,,,,,,,,,,,"410417830","6516653500",,"MINNESOTA LIFE INSURANCE COMPANY",,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,"410417830","6516653500",,,,,,,,"2011-10-25T14:52:06-0500","RICHARD L MANKE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-25",,"Filed with authorized/valid electronic signature", "20111025145327P040159757665001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"LARGE VALUE EQUITY XIII SEPARATE ACCOUNT","106",,"MINNESOTA LIFE INSURANCE COMPANY",,,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,,,,,,,,,,,,"410417830","6516653500",,"MINNESOTA LIFE INSURANCE COMPANY",,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,"410417830","6516653500",,,,,,,,"2011-10-25T14:52:51-0500","RICHARD L MANKE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-25",,"Filed with authorized/valid electronic signature", "20111018160006P030152275249001","2010-10-22","2010-12-31","2",,"1",,,"1",,"1",,,,,"FLYING W ENTERPRISES, INC. 401(K) PROFIT SHARING PLAN","001","2010-10-22","FLYING W ENTERPRISES, INC.",,,"337 AVIATOR DR.",,"FT WORTH","TX","76179",,,,,,,,,,,,,,,,,,"300648952","8172694384","524210","FLYING W ENTERPRISES, INC.",,"337 AVIATOR DR.",,"FT WORTH","TX","76179",,,,,,,"300648952","8172694384",,,,"2011-10-17T18:02:56-0500","BRELAND WALLACE","2011-10-18T15:47:46-0500","BRELAND WALLACE",,,1,1,0,0,1,0,1,1,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111027145432P040722670416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","PURSUANT TO IRS2011-87","SUN CHEMICAL CORPORATION LEGAL SERVICES PLAN","514","2000-01-01","SUN CHEMICAL CORPORATION",,,"35 WATERVIEW BOULEVARD",,"PARSIPPANY","NJ","070541285",,,,,,,,,,,,,,,,,,"222761297","9734046000","325900","SUN CHEMICAL CORPORATION",,"35 WATERVIEW BOULEVARD",,"PARSIPPANY","NJ","070541285",,,,,,,"222761297","9734046000",,,,"2011-10-27T14:38:45-0500","KENNETH SEXTON","2011-10-27T14:48:37-0500","RAYMOND BAER",,,2922,2791,0,0,2791,0,2791,0,0,,,"4G","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111027152114P040004971571001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","1","NJ-2011-42 HURRICANE IRENE","VERIZON SICKNESS AND ACCIDENT DISABILITY BENEFIT PLAN FOR MID-ATLANTIC ASSOCIATES","553","1996-01-01","VERIZON COMMUNICATIONS INC.",,,"ONE VERIZON WAY, MAIL CODE VC63N009",,"BASKING RIDGE","NJ","07920",,,,,,,,,,,,,,,,,,"232259884","9085593628","517000","CHAIRPERSON OF THE VEBC VERIZON COMMUNICATIONS INC.",,"ONE VERIZON WAY, MAIL CODE VC63N009",,"BASKING RIDGE","NJ","07920",,,,,,,"232259884","9085593628",,,,"2011-10-27T07:49:11-0500","DONNA CHIFFRILLER","2011-10-27T07:49:11-0500","DONNA CHIFFRILLER",,,29259,21501,0,0,21501,,,,,,,"4F4H","0","0","1","1","0","0","1","1","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111028112216P040161412945001","2010-10-01","2011-09-30","2",,"0","0","0","0","0","0","0","0","0",,"URWILER OIL & FERTILIZER, INC. EMPLOYEES' PROFIT SHARING PLAN","001","1993-10-01","URWILER OIL & FERTILIZER, INC.",,,"HWY 15 WEST, P.O. BOX 156",,"LAUREL","NE","687450156",,,,,,,"HWY 15 WEST, P.O. BOX 156",,"LAUREL","NE","687450156",,,,,,,"470607976","4022569505","453990","URWILER OIL & FERTILIZER, INC.",,"HWY 15 WEST, P.O. BOX 156",,"LAUREL","NE","687450156",,,,,,,"470607976","4022569505",,,,"2011-10-28T11:13:41-0500","STEVE URWILER",,,,,24,22,2,,24,,24,24,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111028151804P030157747057001","2005-08-01","2006-07-31","2",,"0","0","0","0","0","0","0","1","0",,"HALO DISTRIBUTING COMPANY CAFETERIA PLAN","502","1993-08-01","HALO DISTRIBUTING COMPANY",,,"200 LOMBRANO STREET",,"SAN ANTONIO","TX","78207",,,,,,,,,,,,,,,,,,"741472193","2107351111","424800","HALO DISTRIBUTING COMPANY",,"200 LOMBRANO STREET",,"SAN ANTONIO","TX","78207",,,,,,,"741472193","2107351111",,,,"2011-10-28T15:17:41-0500","WILLIAM BOWMAN",,,,,229,246,0,0,246,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111025161451P030023081058001","2010-02-01","2010-12-31","2",,"0","1","0","1","0","1","0","0","0",,"ASTADIA, INC.GROUP HEALTH INSURANCE PLAN","501","2010-02-01","ASTADIA, INC.",,"KRISTINE ROBERTSON","3010 GAYLORD PKWY, STE 260",,"FRISCO","TX","75034",,,,,,,"3010 GAYLORD PKWY, STE 260",,"FRISCO","TX","75034",,,,,,,"900572439","9728651476","541600","ASTADIA, INC.","KRISTINE ROBERTSON","3010 GAYLORD PKWY, STE 260",,"FRISCO","TX","75034",,,,,,,"900572439","9728651476",,,,"2011-10-25T16:13:39-0500","SHELLEY HOPPER",,,,,233,233,0,0,233,0,233,,,,,"4A","1",,,,"1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111025181213P040717907024001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PENNISI, DANIELS & NORELLI, LLP 401K PLAN","001","1998-01-01","PENNISI, DANIELS & NORELLI, LLP",,,"97-77 QUEENS BOULEVARD STE 620",,"REGO PARK","NY","113743335",,,,,,,,,,,,,,,,,,"113419654","7184596000","541110","PENNISI, DANIELS & NORELLI, LLP",,"97-77 QUEENS BOULEVARD STE 620",,"REGO PARK","NY","113743335",,,,,,,"113419654","7184596000",,,,"2011-10-25T18:09:04-0500","GEORGE NORELLI",,,,,28,21,0,3,24,0,24,23,0,,"2A2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111028132214P030731096432001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"JORGE DE LA GARZA MD PA PROFIT SHARING PLAN","001","2003-01-01","JORGE DE LA GARZA MD PA.",,,"522 N MAIN ST",,"MCALLEN","TX","78501",,,,,,,"224 LINDBERG AVE",,"MCALLEN","TX","78501",,,,,,,"481266857","9569710066","621111","JORGE DE LA GARZA MD PA.",,"522 N MAIN ST",,"MCALLEN","TX","78501",,,,,,,"481266857","9569710066",,,,"2011-10-28T13:17:41-0500","GRACIE SILVA",,,,,2,2,,,2,,2,2,,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111028134957P040161482513003","2010-01-01","2010-12-31","2",,,,,,,,,,"1","PA TROPICAL STORM LEE FEMA 4030","CALEX EXPRESS, INC. FLEXIBLE BENEFIT PLAN","501","1992-09-01","CALEX EXPRESS, INC.",,,"58 PITTSTON AVENUE",,"PITTSTON","PA","186403725",,,,,,,"58 PITTSTON AVENUE",,"PITTSTON","PA","186403725",,,,,,,"251252060","8002922539","484120","CALEX EXPRESS, INC.",,"58 PITTSTON AVENUE",,"PITTSTON","PA","186403725",,,,,,,"251252060","8002922539",,,,"2011-10-28T09:25:21-0500","THOMAS J GRIMES",,,,,111,140,4,,144,,,,,,,"4A4D4F4H","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111025093057P040716938848001","2011-03-01","2011-03-22","2",,"0","0","1","1","0","0","0","0","0",,"TYCIO ENTERPRISES, INC. PROFIT SHARING PLAN","001","2009-03-10","TYCIO ENTERPRISES, INC.",,,"3608 MARY ANN DR.",,"PINCKNEY","MI","48169",,,,,,,,,,,,,,,,,,"264420990","7346807116","812990","TYCIO ENTERPRISES, INC.",,"3608 MARY ANN DR.",,"PINCKNEY","MI","48169",,,,,,,"264420990","7346807116",,,,"2011-10-25T07:31:52-0500","MICHAEL PRICE",,,,,1,0,,,0,,0,0,0,,"2E2G3D2R",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111027133727P030157159329001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"MATHIOWETZ CONSTRUCTION CO. RETIREMENT PLAN","001","1978-04-01","MATHIOWETZ CONSTRUCTION CO.",,,"30676 COUNTY ROAD 24",,"SLEEPY EYE","MN","56085",,,,,,,,,,,,,,,,,,"410873426","5077946953","237100","MATHIOWETZ CONSTRUCTION CO.",,"30676 COUNTY ROAD 24",,"SLEEPY EYE","MN","56085",,,,,,,"410873426","5077946953",,,,"2011-10-27T13:36:49-0500","JULIE ANDERSON",,,,,207,164,46,0,210,0,210,203,0,,"2A2E2F2G2J3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111028141508P040161493521003","2010-01-01","2010-12-31","2",,,"1",,,,,,,"1","HURRICANE IRENE","CRYSTAL RUN HEALTHCARE LLP HEALTH AND WELFARE PLAN","501","2003-01-01","CRYSTAL RUN HEALTHCARE LLP",,,"155 CRYSTAL RUN ROAD",,"MIDDLETOWN","NY","10941",,,,,,,,,,,,,,,,,,"133843560","8457036101","621111","CRYSTAL RUN HEALTHCARE LLP",,"155 CRYSTAL RUN ROAD",,"MIDDLETOWN","NY","10941",,,,,,,"133843560","8457036106",,,,"2011-10-28T14:09:05-0500","MARY DEFREITAS","2011-10-28T14:09:48-0500","HAL TEITELBAUM",,,961,728,5,,733,,,,,,,"4A4B4D4F4H","1",,,,"1",,,"1",,,,,,"1","9",,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20111028141508P040161493521006","2010-04-01","2011-03-31","2",,,,,,,,,,,,"CAS, INC. VEBA","506","2000-04-01","CAS, INC. VEBA",,,"100 QUALITY CIRCLE, SUITE 200",,"HUNTSVILLE","AL","35806",,,,,,,,,,,,,,,,,,"631274728","2569716128","541600","CAS, INC. VEBA",,"100 QUALITY CIRCLE, SUITE 200",,"HUNTSVILLE","AL","35806",,,,,,,"631274728","2569716128",,,,"2011-10-28T15:05:11-0500","BRENDA KIRKPATRICK","2011-10-28T15:05:21-0500","BRENDA KIRKPATRICK",,,669,688,6,,694,,,,,,,"4A4D4Q",,,"1",,"1",,"1",,,,,"1",,"1","3","1",,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111018152145P040155805137001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"AMERICAN KUHNE, INC 401(K) PLAN","002","2003-01-01","AMERICAN KUHNE, INC",,,"401 MAIN ST",,"ASHAWAY","RI","02804",,,,,,,"401 MAIN ST",,"ASHAWAY","RI","02804",,,,,,,"061470904","4013266200","333200","AMERICAN KUHNE, INC",,"401 MAIN ST",,"ASHAWAY","RI","02804",,,,,,,"061470904","4013266200",,,,"2011-10-18T15:21:26-0500","WILLIAM KRAMER",,,,,29,27,0,1,28,1,29,28,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"0","1",,,,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018142925P040155781281001","2010-01-01","2010-12-31","4","M","0","0","0","0","0","0","0","0","0",,"DUPONT PENSION TRUST FUND","001",,"E. I. DUPONT DE NEMOURS & CO., INC.",,,"1007 MARKET STREET","D-13058-2","WILMINGTON","DE","19898",,,,,,,,,,,,,,,,,,"516012443","3027743782",,"E. I. DUPONT DE NEMOURS & CO., INC.",,"1007 MARKET STREET","D-13058-2","WILMINGTON","DE","19898",,,,,,,"516012443","3027743782",,,,,,,,"2011-10-18T14:28:40-0500","MARY DINEEN",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-18",,"Filed with authorized/valid electronic signature", "20111018142930P040155781361001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"IDN INC. 401K PLAN","001","1996-01-01","IDN INC.",,,"2401 MUSTANG DRIVE STE 100",,"GRAPEVINE","TX","76051",,,,,,,,,,,,,,,,,,"362995306","8174215470","424990","IDN INC.",,"2401 MUSTANG DRIVE STE 100",,"GRAPEVINE","TX","76051",,,,,,,"362995306","8174215470",,,,"2011-10-18T14:28:21-0500","TIMOTHY M. BEARD","2011-10-18T14:28:21-0500","F. MICHAEL GROOVER",,,156,130,0,23,153,1,154,115,6,,"2E2F2G2J2K2S2T3D3H",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111025085606P030722808208001","2010-02-01","2011-01-31","2",,"1","0","0","0","0","1","0","0","1","CONNECTICUT/TROPICAL STORM IRENE","WEXFORD CAPITAL LP GROUP DISABILITY PLAN","501","2006-02-01","WEXFORD CAPITAL LP",,,"411 WEST PUTNAM AVENUE",,"GREENWICH","CT","06830",,,,,,,,,,,,,,,,,,"061442624","2038627000","523900","WEXFORD CAPITAL LP",,"411 WEST PUTNAM AVENUE",,"GREENWICH","CT","06830",,,,,,,"061442624","2038627000",,,,"2011-10-25T08:54:43-0500","JAY MAYMUDES",,,,,190,192,0,0,192,,,,,,,"4F4H","1","0","0","1","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111028101555P040161389457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RETIREMENT PLAN FOR EMPLOYEES OF BRIDGEPORT HOSPITAL","001","1965-01-01","BRIDGEPORT HOSPITAL",,,"267 GRANT STREET",,"BRIDGEPORT","CT","06610",,,,,,,,,,,,,,,,,,"060646554","2033843000","622000","BRIDGEPORT HOSPITAL",,"267 GRANT STREET",,"BRIDGEPORT","CT","06610",,,,,,,"060646554","2033843000",,,,"2011-10-28T10:14:52-0500","PATRICK MCCABE",,,,,3392,1300,768,1209,3277,73,3350,,8,,"1A1G1I",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111028101944P040053470871001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHILDRENS HOME & AID SOCIETY OF IL LIFE & AD&D PLAN","501","1987-01-01","CHILDRENS HOME & AID SOCIETY OF IL",,,"125 S WACKER DR., FL 14",,"CHICAGO","IL","60606",,,,,,,"125 S WACKER DR., FL 14",,"CHICAGO","IL","60606",,,,,,,"362167743","3124240200","624100","CHILDRENS HOME & AID SOCIETY OF IL",,"125 S WACKER DR., FL 14",,"CHICAGO","IL","60606",,,,,,,"362167743","3124240200",,,,"2011-10-28T10:14:00-0500","GRETA JONES","2011-10-28T10:14:25-0500","GRETA JONES",,,731,660,,,660,,660,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111025135430P040717433616001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","1","0","0",,"WESTCHESTER ARC HEALTH PLAN","507","2010-12-01","WESTCHESTER COUNTY CHAPTER NYSARC",,,"265 SAW MILL RIVER ROAD",,"HAWTHORNE","NY","10532",,,,,,,"265 SAW MILL RIVER ROAD",,"HAWTHORNE","NY","10532",,,,,,,"131740065","9144288330","813000","WESTCHESTER COUNTY CHAPTER NYSARC",,"265 SAW MILL RIVER ROAD",,"HAWTHORNE","NY","10532",,,,,,,"131740065","9144288330",,,,"2011-10-25T13:48:58-0500","NORMAN SZYMANSKI",,,,,1193,1173,,,1173,,1173,,,,,"4A","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111025150124P040024023634001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"LARGE GROWTH EQUITY X SEPARATE ACCOUNT","121",,"MINNESOTA LIFE INSURANCE COMPANY",,,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,,,,,,,,,,,,"410417830","6516653500",,"MINNESOTA LIFE INSURANCE COMPANY",,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,"410417830","6516653500",,,,,,,,"2011-10-25T15:00:38-0500","RICHARD L MANKE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-25",,"Filed with authorized/valid electronic signature", "20111018160627P040155834625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CORCORAN TRUCKING, INC.","001","1992-10-01","CORCORAN TRUCKING, INC. 401K",,,"PO BOX 1472",,"BILLINGS","MT","591030000",,,,,,,,,,,,,,,,,,"810392755","4062456065","484120","CORCORAN TRUCKING, INC. 401K",,"PO BOX 1472",,"BILLINGS","MT","591030000",,,,,,,"810392755","4062456065",,,,"2011-10-18T16:05:27-0500","JANET BONIFAY",,,,,38,32,0,8,40,0,40,25,1,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018160653P040155835329001","2010-08-01","2011-07-31","2",,,,,,,,,,,,"GROUP MEDICAL PLAN FOR EMPLOYEES FOR MODERN ITALIAN BAKERY","502","1991-03-01","MODERN ITALIAN BAKERY",,,"301 LOCUST AVENUE",,"OAKDALE","NY","11769",,,,,,,,,,,,,,,,,,"112801225","6315897300","311800","MODERN ITALIAN BAKERY",,"301 LOCUST AVENUE",,"OAKDALE","NY","11769",,,,,,,"112801225","6315897300",,,,"2011-10-18T05:06:34-0500","KEVIN CONNORS",,,,,83,82,,,82,,82,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111018171506P030152304257001","2010-07-01","2011-06-30","2",,,,,,,,,,,,"WALLS INDUSTRIES, LLC AND AFFILIATES GROUP INSURANCE PLAN FOR EMPLOYEES","501","1978-05-01","WALLS INDUSTRIES, LLC",,,"P.O. BOX 98","1905 N. MAIN STREET","CLEBURNE","TX","76033",,,,,,,,,,,,,,,,,,"900609975","8176454366","315220","WALLS INDUSTRIES, LLC",,"P.O. BOX 98",,"CLEBURNE","TX","76033",,,,,,,"900609975","8176454366","WALLS INDUSTRIES INC","751852022","501","2011-10-18T17:09:02-0500","BONNY GRIFFITH",,,,,134,104,4,,108,,,,,,,"4A4B4D4E4F4H4L","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111028120311P040024279714001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","HURRICANE IRENE","A & B DENTAL PC PROFIT SHARING PLAN","002","1994-01-01","A & B DENTAL PC",,,"499 WILLIAM FLOYD PARKWAY",,"SHIRLEY","NY","11967",,,,,,,,,,,,,,,,,,"112972397","6312811440","621210","A & B DENTAL PC",,"499 WILLIAM FLOYD PARKWAY",,"SHIRLEY","NY","11967",,,,,,,"112972397","6312811440",,,,"2011-10-28T12:03:11-0500","ANDREW MARKOWITZ",,,,,26,11,0,14,25,0,25,25,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111028122720P040724994736001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM A. KIBBE & ASSOCIATES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1994-04-01","WILLIAM A. KIBBE & ASSOCIATES, INC.",,,"1475 SOUTH WASHINGTON AVENUE",,"SAGINAW","MI","48601",,,,,,,,,,,,,,,,,,"382353575","9897525000","541330","WILLIAM A. KIBBE & ASSOCIATES, INC.",,"1475 SOUTH WASHINGTON AVENUE",,"SAGINAW","MI","48601",,,,,,,"382353575","9897525000",,,,"2011-10-28T12:06:20-0500","SANDY FREDERICK",,,,,50,28,4,10,42,0,42,42,3,,"2I2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111027152433P040722731504001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","1","IRS NJ-2011-42 HURRICANE IRENE","VERIZON SICKNESS AND ACCIDENT DISABILITY BENEFIT PLAN FOR NEW YORK ASSOCIATES","560","1913-01-01","VERIZON COMMUNICATIONS INC",,,"ONE VERIZON WAY, MAIL CODE VC63N009",,"BASKING RIDGE","NJ","07920",,,,,,,,,,,,,,,,,,"232259884","9085593628","517000","CHAIRPERSON OF THE VEBC VERIZON COMMUNICATIONS INC",,"ONE VERIZON WAY, MAIL CODE VC63N009",,"BASKING RIDGE","NJ","07920",,,,,,,"232259884","9085593628",,,,"2011-10-27T07:46:45-0500","DONNA CHIFFRILLER","2011-10-27T07:46:45-0500","DONNA CHIFFRILLER",,,18328,15312,0,0,15312,,,,,,,"4F4H","0","0","1","1","0","0","1","1","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111027152514P040160943617001","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"HOSPICE OF SAINT JOHN 403(B) MATCHING RETIREMENT PLAN","002","1999-05-01","HOSPICE OF SAINT JOHN FOUNDATION, INC.",,,"1320 EVERETT COURT",,"LAKEWOOD","CO","80215",,,,,,,,,,,,,,,,,,"742254709","3032327900","621610","HOSPICE OF SAINT JOHN FOUNDATION, INC.",,"1320 EVERETT COURT",,"LAKEWOOD","CO","80215",,,,,,,"742254709","3032327900",,,,"2011-10-27T14:46:24-0500","JERRY L. HUSON",,,,,276,217,,51,268,,268,96,5,,"2F2G2L2M",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111027152927P030157202689001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"NORTHPOINTE RESOURCES, INC. WELFARE PLAN","501","2004-07-01","NORTHPOINTE RESOURCES, INC.",,,"3441 SHERIDAN ROAD",,"ZION","IL","600993662",,,,,,,,,,,,,,,,,,"362409058","8478721700","623000","NORTHPOINTE RESOURCES, INC.",,"3441 SHERIDAN ROAD",,"ZION","IL","600993662",,,,,,,"362409058","8478721700",,,,"2011-10-27T15:25:47-0500","DAVID SCHEFFLER",,,,,126,110,0,0,110,,,,,,,"4B4F4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111028142830P030023328066001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","1","0","0","0",,"W. G. JACK AVERITT BROKERAGE CO., INC. EMPLOYEES PROFIT SHARING PLAN","001","1977-05-01","W. G. JACK AVERITT BROKERAGE CO., INC.",,,"9999 PERRIN BEITEL","SUITE B","SAN ANTONIO","TX","78217",,,,,,,,,,,,,,,,,,"741685100","2108320636","424400","W. G. JACK AVERITT BROKERAGE CO., INC.",,"9999 PERRIN BEITEL","SUITE B","SAN ANTONIO","TX","78217",,,,,,,"741685100","2108320636",,,,"2011-10-28T14:28:24-0500","GARY D PUTNAM","2011-10-28T14:28:24-0500","GARY D PUTNAM",,,5,5,0,0,5,0,5,5,0,,"2E2F2G2J3D3H",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111025163236P030156108897001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","1","0","0","0",,"EDWARD S. KOUTNIK, D.D.S., S.C. PROFIT SHARING 401(K) PLAN","001","1988-01-01","EDWARD S. KOUTNIK, D.D.S., S.C.",,,"C/O HEALTHCARE MGMT CONSULTANTS","1350 WITTMANN DRIVE","MENASHA","WI","54952",,,,,,,,,,,,,,,,,,"391793943","9207433382","621210","EDWARD S. KOUTNIK, D.D.S., S.C.",,"C/O HEALTHCARE MGMT CONSULTANTS","1350 WITTMANN DRIVE","MENASHA","WI","54952",,,,,,,"391793943","9207433382",,,,"2011-10-25T16:32:19-0500","EDWARD S KOUTNIK",,,,,8,6,0,2,8,0,8,8,0,,"2E2F2H2J2R3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111025180245P040159833617001","2010-03-01","2011-02-28","2",,"1","0","0","0","0","1","0","0","0",,"MULLICA HILL COLD STORAGE EMPLOYEE BENEFIT PLAN","501","2010-03-01","MULLICA HILL COLD STORAGE",,,"PO BOX 429",,"MULLICA HILL","NJ","08062",,,,,,,,,,,,,,,,,,"222360751","8564786300","493100","MULLICA HILL COLD STORAGE",,"PO BOX 429",,"MULLICA HILL","NJ","08062",,,,,,,"222360751","8564786300",,,,"2011-10-25T18:01:48-0500","ANTHONY KIMSAL",,,,,111,87,0,0,87,,,,,,,"4A4D4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111025131355P040052949543001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"LAW OFFICE OF LOUIS S. HASKELL PROFIT SHARING PLAN","001","1999-01-01","LAW OFFICE OF LOUIS S. HASKELL",,,"16 PINE ST",,"LOWELL","MA","01851",,,,,,,,,,,,,,,,,,"043134009","9784598359","541110","LAW OFFICE OF LOUIS S. HASKELL",,"16 PINE ST",,"LOWELL","MA","01851",,,,,,,"043134009","9784598359",,,,"2011-10-25T13:12:58-0500","LOUIS S. HASKELL",,,,,5,10,0,0,10,0,10,10,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111025133617P030004678355001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"SMALL/MID EQUITY INDEX I SEPARATE ACCOUNT","040",,"MINNESOTA LIFE INSURANCE COMPANY",,,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,,,,,,,,,,,,"410417830","6516653500",,"MINNESOTA LIFE INSURANCE COMPANY",,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,"410417830","6516653500",,,,,,,,"2011-10-25T13:36:08-0500","RICHARD L MANKE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-25",,"Filed with authorized/valid electronic signature", "20111027102404P040024179730001","2011-05-01","2011-05-31","2",,"0","0","0","1","0","0","0","0","0",,"NEIGHBORHOOD ASSISTANCE CORPORATION OF AMERICA NACA","501","1999-05-01","NEIGHBORHOOD ASSISTANCE CORPORATION OF AMERICA",,,"360 WASHINGTON STREET",,"JAMAICA PLAIN","MA","02130",,,,,,,,,,,,,,,,,,"043244616","6172506222","522292","NEIGHBORHOOD ASSISTANCE CORPORATION OF AMERICA",,"360 WASHINGTON STREET",,"JAMAICA PLAIN","MA","02130",,,,,,,"043244616","6172506222",,,,"2011-10-27T10:23:25-0500","MARTHA STELLA MARQUEZ-MURRAY","2011-10-27T10:23:25-0500","MARTHA STELLA MARQUEZ-MURRAY",,,526,526,0,0,526,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","1","0","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111027102738P030728151984001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"TITAN AMERICA LLC LONG TERM DISABILITY PLAN","503","1996-01-01","TITAN AMERICA LLC",,,"1151 AZALEA GARDEN ROAD",,"NORFOLK","VA","235025601",,,,,,,,,,,,,,,,,,"980124782","7578586800","212310","TITAN AMERICA LLC",,"1151 AZALEA GARDEN ROAD",,"NORFOLK","VA","235025601",,,,,,,"980124782","7578586800",,,,"2011-10-27T10:23:38-0500","YVONNE SMITH",,,,,637,708,0,0,708,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111027074730P040160726161001","2010-06-01","2011-05-31","2",,"0","1","0","0","0","0","0","0","0",,"MONTI, INC. HEALTH AND WELFARE PLAN","501","2009-06-01","MONTI, INC.",,,"333 WEST SEYMOUR AVENUE",,"CINCINNATI","OH","45216",,,,,,,,,,,,,,,,,,"310811428","5137617775","333200","MONTI, INC.",,"333 WEST SEYMOUR AVENUE",,"CINCINNATI","OH","45216",,,,,,,"310811428","5137617775",,,,"2011-10-27T07:46:27-0500","LINDA CORWIN",,,,,109,114,,,114,,,,,,,"4A4B4E4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111018133213P040155761713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"RAJINDER S. CHAWLA M.D., P.C. PROFIT SHARING PLAN","002","1982-08-20","HYPERTENSION AND KIDNEY CENTER P.C.",,,"851 MAIN STREET SUITE 1",,"SOUTH WEYMOUHT","MA","02190",,,,,,,"851 MAIN STREET SUITE 1",,"SOUTH WEYMOUTH","MA","02190",,,,,,,"042763017","7313376500","621111","HYPERTENSION AND KIDNEY CENTER P.C.",,"851 MAIN STREET SUITE 1",,"SOUTH WEYMOUHT","MA","02190",,,,,,,"042763017","7313376500",,,,"2011-10-18T13:31:07-0500","RAJINDER CHAWLA",,,,,4,5,,,5,0,5,0,0,,"2E2F2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111025131412P040026240118001","2010-01-01","2010-12-31","4","P","1","0","0","0","0","0","0","0","0",,"INTERNATIONAL VALUE IIDB SEPARATE ACCOUNT","161",,"MINNESOTA LIFE INSURANCE COMPANY",,,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,,,,,,,,,,,,"410417830","6516653500",,"MINNESOTA LIFE INSURANCE COMPANY",,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,"410417830","6516653500",,,,,,,,"2011-10-25T13:13:55-0500","RICHARD L MANKE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-25",,"Filed with authorized/valid electronic signature", "20111027111729P040160831313001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SAYLOR & HILL CO. CASH BALANCE PLAN","003","2006-01-01","BARNEY & BARNEY LLC",,,"1999 HARRISON STREET, SUITE 1230",,"OAKLAND","CA","946123598",,,,,,,,,,,,,,,,,,"952156846","5102738888","524210","BARNEY & BARNEY LLC",,"1999 HARRISON STREET, SUITE 1230",,"OAKLAND","CA","946123598",,,,,,,"952156846","5102738888","SAYLOR & HILL CO.","941108326","002","2011-10-27T11:15:36-0500","MICHAEL MIRSKY","2011-10-27T11:15:36-0500","MICHAEL MIRSKY",,,38,29,0,1,30,0,30,,0,,"1A1C1G1I",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111027122506P030157134225001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MAJESTIC MANAGEMENT SERVICES, LLC RETIREMENT AND 401(K) PLAN","001","1999-10-24","MAJESTIC MANAGEMENT SERVICES, LLC",,,"254 EASTON AVENUE",,"NEW BRUNSWICK","NJ","08901",,,,,,,,,,,,,,,,,,"223680303","7327458600","561210","MAJESTIC MANAGEMENT SERVICES, LLC",,"254 EASTON AVENUE",,"NEW BRUNSWICK","NJ","08901",,,,,,,"223680303","7327458600",,,,"2011-10-25T11:32:37-0500","GARRICK J. STOLDT",,,,,434,0,0,320,320,0,320,320,0,,"2A2E2F2G2J2K",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-27","Filed with authorized/valid electronic signature",, "20111028144102P030157733217001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"DESIGN WITHIN REACH 401(K) PLAN","001","2000-01-01","DESIGN WITHIN REACH",,,"700 CANAL ST","3RD FL","STAMFORD","CT","06902",,,,,,,"700 CANAL ST","3RD FL","STAMFORD","CT","06902",,,,,,,"943314374","4156766500","442110","DESIGN WITHIN REACH",,"700 CANAL ST","3RD FL","STAMFORD","CT","06902",,,,,,,"943314374","4156766500",,,,"2011-10-28T14:25:19-0500","ANTHONY DELUCA","2011-10-28T14:24:41-0500","ANTHONY DELUCA",,,386,322,0,82,404,0,404,222,0,,"2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111025155756P040717663024001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"INTERNATIONAL CHILD DEVELOPMENT CENTERS, INC. 401(K) PLAN","001","2007-02-08","INTERNATIONAL CHILD DEVELOPMENT CEN TERS, INC.",,,"849 WICKHAM WAY",,"RIDGEWOOD","NJ","07450",,,,,,,,,,,,,,,,,,"208474205","2012334420","624410","INTERNATIONAL CHILD DEVELOPMENT CEN TERS, INC.",,"849 WICKHAM WAY",,"RIDGEWOOD","NJ","07450",,,,,,,"208474205","2012334420",,,,"2011-10-25T15:57:38-0500","HANS ITA","2011-10-25T15:57:38-0500","HANS ITA",,,8,8,0,0,8,0,8,1,0,,"2E2F2G2J2K2R3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111028104518P040161399201001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"EARP COHN PC CASH OR DEFERRED PROFIT SHARING PLAN","001","1992-05-01","EARP COHN PC",,,"20 BRACE ROAD 4TH FL",,"CHERRY HILL","NJ","08034",,,,,,,,,,,,,,,,,,"223131718","8563547700","541110","EARP COHN PC",,"20 BRACE ROAD 4TH FL",,"CHERRY HILL","NJ","08034",,,,,,,"223131718","8563547700",,,,"2011-10-28T06:25:24-0500","IRVING KOFFLER",,,,,42,27,,7,34,,34,34,0,,"2E2J2K",,,,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111025143832P040159748337001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"N.Y.C. WATER WORKS, LLC RETIREMENT PLAN","001","2000-01-01","N.Y.C. WATER WORKS, LLC",,,"40 BRUCKNER BOULEVARD",,"BRONX","NY","10454",,,,,,,,,,,,,,,,,,"134029988","7182925494","238220","N.Y.C. WATER WORKS, LLC",,"40 BRUCKNER BOULEVARD",,"BRONX","NY","10454",,,,,,,"134029988","7182925494",,,,"2011-10-25T14:34:09-0500","SAMUEL FOLEY",,,,,44,33,0,13,46,0,46,39,1,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-25","Filed with authorized/valid electronic signature",, "20111025150542P040024024418001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"MULTISECTOR BOND I SEPARATE ACCOUNT","123",,"MINNESOTA LIFE INSURANCE COMPANY",,,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,,,,,,,,,,,,"410417830","6516653500",,"MINNESOTA LIFE INSURANCE COMPANY",,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,"410417830","6516653500",,,,,,,,"2011-10-25T15:04:51-0500","RICHARD L MANKE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-25",,"Filed with authorized/valid electronic signature", "20111018121302P040155725857001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MULTICULTURAL RADIO BROADCASTING 401(K) SAVINGS PLAN","001","1997-01-01","MULTICULTURAL RADIO BROADCASTING",,,"449 BROADWAY",,"NEW YORK","NY","10013",,,,,,,,,,,,,,,,,,"222425921","2129661059","515100","MULTICULTURAL RADIO BROADCASTING",,"449 BROADWAY",,"NEW YORK","NY","10013",,,,,,,"222425921","2129661059",,,,"2011-10-18T12:11:47-0500","REGINA LEUNG",,,,,209,181,0,17,198,0,198,146,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-18","Filed with authorized/valid electronic signature",, "20111020073513P030022665874002","2010-02-01","2011-01-31","2",,,"1",,,,"1","1",,,,"DOREL JUVENILE GROUP INC LTD INCOME FOR SALARIED EMPLOYEES","511","2004-02-01","DOREL JUVENILE GROUP, INC",,,"2525 STATE STREET",,"COLUMBUS","IN","47201",,,,,,,,,,,,,,,,,,"042836423","8123720141","326100","DOREL JUVENILE GROUP INC",,"2525 STATE STREET",,"COLUMBUS","IN","47201",,,,,,,"042836423","8123720141",,,,"2011-10-20T07:11:39-0500","TIMOTHY J FERGUSON",,,,,339,339,,,339,,339,,,,,"4H","1",,,,"1",,,,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111029045450P040161815649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","HURRICANE IRENE","THEIS PRECISION STEEL CORPORATION SALARIED RETIREMENT INCOME PLAN","002","1987-01-01","THEIS PRECISION STEEL CORPORATION",,,"300 BROAD STREET",,"BRISTOL","CT","06010",,,,,,,,,,,,,,,,,,"061184392","8605895511","523900","THEIS PRECISION STEEL CORPORATION",,"300 BROAD STREET",,"BRISTOL","CT","06010",,,,,,,"061184392","8605895511",,,,"2011-10-29T04:54:36-0500","WILLIAM L RAMACCIA","2011-10-29T04:54:36-0500","WILLIAM L RAMACCIA",,,79,19,26,32,77,1,78,,1,,"1A1G",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111029092431P030158178145001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"MURRAY STREET PRODUCTIONS, INC. PROTOTYPE PROFIT SHARING PLAN AND TRUST","001","1997-01-01","MURRAY STREET PRODUCTIONS, INC.",,,"69 MURRAY STREET - 6TH FLOOR",,"NEW YORK","NY","10007",,,,,,,"69 MURRAY STREET - 6TH FLOOR",,"NEW YORK","NY","10007",,,,,,,"133540506","2126191475","711510","MURRAY STREET PRODUCTIONS, INC.",,"69 MURRAY STREET - 6TH FLOOR",,"NEW YORK","NY","10007",,,,,,,"133540506","2126191475",,,,"2011-10-28T09:09:31-0500","STEPHEN RATHE",,,,,1,1,,,1,,1,1,,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-29","Filed with authorized/valid electronic signature",, "20111019094932P030152699713001","2011-06-01","2011-07-30","2",,"0","0","0","1","0","0","0","0","0",,"PROCESADORA CAMPOFRESCO-HEALTH","502","2011-06-01","PROCESADORA CAMPOFRESCO INC",,,"PO BOX 755","ROAD 545 KM 03","SANTA ISABEL","PR","007570755",,,,,,,,,,,,,,,,,,"660431562","7878454747","312110","PROCESADORA CAMPOFRESCO INC",,"PO BOX 755","ROAD 545 KM 03","SANTA ISABEL","PR","007570755",,,,,,,"660431562","7878454747",,,,"2011-10-11T14:55:06-0500","RICHARD LUNA",,,,,113,110,0,0,110,0,110,0,0,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019102825P040156290801001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","1","0","0","0",,"MARINA CHERKASSKY, MD, PC 401 K PLAN","002","2008-01-01","MARINA CHERKASSKY, MD, PC",,,"8102 LANGDON STREET",,"PHILADELPHIA","PA","19152",,,,,,,"8102 LANGDON STREET",,"PHILADELPHIA","PA","19152",,,,,,,"010631196","6176280700","621111","MARINA CHERKASSKY, MD, PC",,"8102 LANGDON STREET",,"PHILADELPHIA","PA","19152",,,,,,,"010631196","6176280700",,,,"2011-10-19T10:10:14-0500","JOSEPH MACKESY",,,,,8,8,0,0,8,0,8,8,0,,"2E2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111021143106P030153916609001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"BETA FLUID SYSTEMS","501","2008-04-01","BETA FLUID SYSTEMS, INC.",,,"PO BOX 1737",,"REIDSVILLE","NC","27323",,,,,,,,,,,,,,,,,,"841713349","3363420306","332900","BETA FLUID SYSTEMS, INC.",,"PO BOX 1737",,"REIDSVILLE","NC","27323",,,,,,,"841713349","3363420306",,,,"2011-10-21T12:21:56-0500","BILL COLEMAN",,,,,146,135,6,0,141,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111026083835P030023131922001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","1","0","0",,"MEBS CAF PLAN","501","2010-01-01","MEBS GLOBAL REACH LLC",,"MITCH MARTIN","14930 BOGLE DR",,"CHANTILLY","VA","22151",,,,,,,"14930 BOGLE DR",,"CHANTILLY","VA","22151",,,,,,,"204529940","3019770090","541600","MEBS GLOBAL REACH LLC","MITCH MARTIN","14930 BOGLE DR",,"CHANTILLY","VA","22151",,,,,,,"204529940","3019770090",,,,"2011-10-26T08:38:19-0500","MITCH MARTIN",,,,,0,23,,,23,,23,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111021104546P030712682768001","2010-01-01","2010-12-31","2",,,,,,,"1",,,"1","NEW JERSEY/HURRICANE IRENE","CAJOECO LLC PROFIT SHARING PLAN","001","2007-01-01","CAJOECO, LLC",,,"102 HENDRICKSON STREET",,"HAWORTH","NJ","07641",,,,,,,,,,,,,,,,,,"510564389","2013627566","424300","CAJOECO, LLC",,"102 HENDRICKSON STREET",,"HAWORTH","NJ","07641",,,,,,,"510564389","2013627566",,,,"2011-10-21T11:45:33-0500","NORMAN MAIS",,,,,3,2,0,1,3,0,3,3,0,,"2E2H2J2R3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111019180736P040023520738001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","1","0","1","0",,"PACTIV CORPORATION MASTER HEALTH & WELFARE PLAN","531","1992-01-01","PACTIV CORPORATION",,,"1900 W FIELD CRT",,"LAKE FOREST","IL","60045",,,,,,,,,,,,,,,,,,"362552989","8474822000","551112","PACTIV CORPORATION",,"1900 W FIELD CRT",,"LAKE FOREST","IL","60045",,,,,,,"362552989","8474822000",,,,"2011-10-19T18:06:28-0500","JUDY HEARN",,,,,10339,9317,2857,0,12174,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","10","0","0","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111020110818P040052092919001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","HURRICANE IRENE DISASTER RELIEF","DR. JOHN N. LONGO T/A PARK CHIROPRACTIC CENTER PROFIT SHARING PLAN","001","1982-01-01","DR. JOHN N. LONGO","PARK CHIROPRACTIC CENTER",,"715 BLOOMFIELD AVENUE",,"NUTLEY","NJ","07110",,,,,,,,,,,,,,,,,,"222446513","9736670153","541990","DR. JOHN N. LONGO",,"715 BLOOMFIELD AVENUE",,"NUTLEY","NJ","07110",,,,,,,"222446513","9736670153",,,,"2011-10-20T11:04:47-0500","JOHN N. LONGO",,,,,3,3,0,0,3,0,3,3,0,,"2E3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111021120809P040023670354001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"INSOUND MEDICAL 401(K) PLAN","001","2001-01-01","INSOUND MEDICAL, INC.",,,"39660 EUREKA DRIVE",,"NEWARK","CA","94560",,,,,,,"39660 EUREKA DRIVE",,"NEWARK","CA","94560",,,,,,,"943295625","5107924000","334500","INSOUND MEDICAL, INC.",,"39660 EUREKA DRIVE",,"NEWARK","CA","94560",,,,,,,"946767991","5107924000","INSOUND MEDICAL, INC.","943295625","001","2011-10-21T12:07:47-0500","JAN LOUISELL",,,,,130,142,0,18,160,0,160,142,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111026140532P040160321009001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ALTERNATIVES UNLIMITED DENTAL, LIFE, AD&D AND STD PLAN","503","2004-01-01","ALTERNATIVES UNLIMITED, INC.",,,"8508 LOCH RAVEN BLVD, STE E",,"BALTIMORE","MD","212862354",,,,,,,,,,,,,,,,,,"522073228","4103393945","611000","ALTERNATIVES UNLIMITED, INC.",,"8508 LOCH RAVEN BLVD, STE E",,"BALTIMORE","MD","212862354",,,,,,,"522073228","4103393945",,,,"2011-10-26T14:04:01-0500","MELISSA REPLOGLE",,,,,100,212,0,0,212,,,,,,,"4B4D4F4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111021151109P030713198304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"D-A AUTO SALES 401(K) PLAN","001","2008-01-01","D-A AUTO SALES",,,"PO BOX 431 WALTZ MILL ROAD",,"NEW STANTON","PA","15672",,,,,,,,,,,,,,,,,,"251192344","7249254740","423100","D-A AUTO SALES",,"PO BOX 431 WALTZ MILL ROAD",,"NEW STANTON","PA","15672",,,,,,,"251192344","7249254740",,,,"2011-10-21T15:10:33-0500","DAVID ANGELICCHIO",,,,,133,163,0,5,168,0,168,78,0,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111019165905P040156447025001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ARAPAHOE, INC. 401(K) PROFIT SHARING PLAN","001","2008-05-01","ARAPAHOE, INC.",,,"102 CHERRY LAUREL LANE",,"RIDGELAND","MS","391578622",,,,,,,,,,,,,,,,,,"262516636","6018425043","812112","ARAPAHOE, INC.",,"102 CHERRY LAUREL LANE",,"RIDGELAND","MS","391578622",,,,,,,"262516636","6018425043",,,,"2011-10-19T16:59:02-0500","TODD FREEMAN","2011-10-19T16:59:02-0500","TODD FREEMAN",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111019075106P040156224945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUMMA HEALTH SYSTEM RETIREMENT INCOME PLAN AND TRUST","010","1993-01-01","SUMMA AKRON CITY AND ST. THOMAS HOSPITALS",,,"525 E. MARKET STREET","P.O. BOX 2090","AKRON","OH","443092090",,,,,,,,,,,,,,,,,,"340714755","3309968523","622000","SUMMA AKRON CITY AND ST. THOMAS HOSPITALS",,"525 E. MARKET STREET","P.O. BOX 2090","AKRON","OH","443092090",,,,,,,"340714755",,,,,"2011-10-17T12:55:02-0500","NINO CIRALDO",,,,,9325,5593,1768,2377,9738,,9738,,,,"1B1G",,"1",,"1",,"1",,"1",,"1",,"1","1",,"1","2","1","1",,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019225533P040156592785001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"APPLIED BEHAVIOR CONSULTANTS DENTAL PLAN","503","2004-04-01","APPLIED BEHAVIOR CONSULTANTS",,,"4540 HARLIN DRIVE",,"SACRAMENTO","CA","95826",,,,,,,,,,,,,,,,,,"680400630","9163647800","621498","APPLIED BEHAVIOR CONSULTANTS",,"4540 HARLIN DRIVE",,"SACRAMENTO","CA","95826",,,,,,,"680400630","9163647800",,,,"2011-10-19T17:13:54-0500","RON SANDELL",,,,,207,197,3,,200,,,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111021143217P030153917137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AARON THOMAS COMPANY, INC. 401(K) PLAN","001","1997-01-01","AARON THOMAS COMPANY, INC.",,,"7421 CHAPMAN AVENUE",,"GARDEN GROVE","CA","92841",,,,,,,,,,,,,,,,,,"953092539","7148944468","812990","AARON THOMAS COMPANY, INC.",,"7421 CHAPMAN AVENUE",,"GARDEN GROVE","CA","92841",,,,,,,"953092539","7148944468",,,,"2011-10-21T13:04:37-0500","ESTRELLA FERRY",,,,,312,267,0,24,291,0,291,84,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111020081548P040156822097001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"CAYLOR-NICKEL CLINIC, P.C. GROUP LONG-TERM DISABILITY BENEFITS PLAN","507","2005-04-01","CAYLOR-NICKEL CLINIC, P.C.",,,"ONE CAYLOR-NICKEL SQUARE",,"BLUFFTON","IN","46714",,,,,,,,,,,,,,,,,,"351497767","2198243500","621399","CAYLOR-NICKEL CLINIC, P.C.",,"ONE CAYLOR-NICKEL SQUARE",,"BLUFFTON","IN","46714",,,,,,,"351497767","2198243500",,,,"2011-10-20T08:14:49-0500","BRIAN STOGDILL, MD","2011-10-20T08:14:49-0500","BRIAN STOGDILL, MD",,,112,107,0,0,107,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111021151610P040707307616001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"RONALD J. CLARKE, D.O. PROFIT SHARING PLAN","001","1987-01-01","RONALD J. CLARKE, D.O.",,,"223 HAVENWOOD LANE",,"GRAND ISLAND","NY","140721368",,,,,,,"223 HAVENWOOD LANE",,"GRAND ISLAND","NY","140721368",,,,,,,"161249674","7167739185","621320","RONALD J. CLARKE, D.O.",,"223 HAVENWOOD LANE",,"GRAND ISLAND","NY","140721368",,,,,,,"161249674","7167739185",,,,"2011-10-21T11:10:45-0500","RONALD J. CLARKE",,,,,10,10,,,10,,10,10,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111019093006P040156267985001","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"HENRY L DUBS PROFIT SHARING PLAN","001","1992-06-30","HENRY L. DUBS ASSOCIATES, INC.",,,"P.O. BOX 675",,"RICHBORO","PA","18954",,,,,,,,,,,,,,,,,,"232140319","2158603434","541990","HENRY L. DUBS ASSOCIATES, INC.",,"P O BOX 675",,"RICHBORO","PA","18954",,,,,,,"232140319","2158603434",,,,"2011-10-11T16:42:24-0500","H. LAWRENCE DUBS",,,"2011-10-11T16:44:35-0500","CRAIG L LUDIN, CPA",3,2,1,0,3,0,3,3,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature","Filed with incorrect/unrecognized electronic signature", "20111019100005P040156282721001","2005-01-01","2005-12-31","2",,"1","0","0","0","0","1","0","1","0",,"SPIKEBUSTERS, INC. PROFIT SHARING PLAN","001","2005-01-01","SPIKEBUSTERS, INC",,,"30 NW 130TH AVE",,"MIAMI","FL","331821136",,,,,,,,,,,,,,,,,,"650569076","3058840027","811210","SPIKEBUSTERS, INC",,"30 NW 130TH AVE",,"MIAMI","FL","331821136",,,,,,,"650569076","3058840027",,,,"2011-10-19T10:00:03-0500","MATTHEW NIEVES",,,,,5,8,0,0,8,0,8,8,,,"2E3E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019103430P040701697216004","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"AMTEC CORPORATION CAFETERIA PLAN","504","1995-01-01","AMTEC CORPORATION",,,"500 WYNN DRIVE SUITE 314",,"HUNTSVILLE","AL","35816",,,,,,,"500 WYNN DRIVE SUITE 314",,"HUNTSVILLE","AL","35816",,,,,,,"630971006","2567227200","541700","AMTEC CORPORATION",,"500 WYNN DRIVE SUITE 314",,"HUNTSVILLE","AL","35816",,,,,,,"630971006","2567227200",,,,"2011-10-17T05:21:53-0500","WILLIAM P. ALBRITTON, JR.",,,,,132,125,,,125,,,,,,,"4A","1",,,"1","1",,,"1",,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111020111707P040052093943001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MOFFITT AND SCHANK, LTD. PROFIT SHARING PLAN","001","1985-10-01","MOFFITT AND SCHANK, LTD.",,,"3660 SCHURZ HIGHWAY",,"FALLON","NV","89406",,,,,,,,,,,,,,,,,,"880204358","7754237528","541940","MOFFITT AND SCHANK, LTD.",,"3660 SCHURZ HIGHWAY",,"FALLON","NV","89406",,,,,,,"880204358","7754237528",,,,"2011-10-20T11:16:11-0500","CRAIG SCHANK",,,,,18,13,1,4,18,0,18,18,3,,"2E2H3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111020132129P030153347569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"VON ALLMAN & SONS PROFIT SHARING PLAN","001","1977-12-24","VON ALLMAN & SONS",,"C/O THE PRICE COMPANY","5151 N. PALM AVENUE, SUITE 920",,"FRESNO","CA","93704",,,,,,,,,,,,,,,,,,"946176412","5592247656","111100","VON ALLMAN & SONS","C/O THE PRICE COMPANY","5151 N. PALM AVENUE, SUITE 920",,"FRESNO","CA","93704",,,,,,,"946176412","5592247656",,,,"2011-10-20T13:21:14-0500","MARION VON ALLMAN","2011-10-20T13:21:14-0500","MARION VON ALLMAN",,,1,1,0,0,1,0,1,1,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111029155359P040053689287001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","HURRICANE IRENE RELIEF","DLF ENGINEERS & CONSTRUCTORS, INC. SALARY DEFERRAL AND PROFIT SHARING PLAN","002","2009-01-01","DLF ENGINEERS & CONSTRUCTORS, INC.",,,"2209 MERRICK ROAD",,"MERRICK","NY","115664617",,,,,,,,,,,,,,,,,,"680447715","5167718600","522292","DLF ENGINEERS & CONSTRUCTORS, INC.",,"2209 MERRICK ROAD",,"MERRICK","NY","115664617",,,,,,,"680447715","5167718600",,,,"2011-10-29T15:52:36-0500","STUART J. FLUM","2011-10-29T15:52:36-0500","STUART J. FLUM",,,3,3,0,0,3,0,3,0,3,,"2A2E2G2H2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111020162445P030153418209001","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"CEMENT MASONS' LOCAL 780 VACATION FUND","502","1964-07-01","CEMENT MASONS LOCAL 780 VACATION FUND",,,"1983 MARCUS AVENUE, SUITE NO C116",,"NEW HYDE PARK","NY","11042",,,,,,,,,,,,,,,,,,"136159177","5167752280","237990","CEMENT MASONS LOCAL 780 VACATION FUND",,"1983 MARCUS AVENUE, SUITE NO C116",,"NEW HYDE PARK","NY","11042",,,,,,,"136159177","5167752280",,,,"2011-10-17T12:03:41-0500","HANY KILADA",,,,,523,494,,,494,,,,,143,,"4Q4U",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111026103109P040160223521001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"HUNT-KING & ASSOCIATES, INC. PROFIT SHARING PLAN","001","2009-05-05","HUNT-KING & ASSOCIATES, INC.",,,"3535 PEACHTREE RD STE 520-246",,"ATLANTA","GA","30326",,,,,,,,,,,,,,,,,,"264814493","6782886207","812990","HUNT-KING & ASSOCIATES, INC.",,"3535 PEACHTREE RD STE 520-246",,"ATLANTA","GA","30326",,,,,,,"264814493","6782886207",,,,"2011-10-26T10:18:00-0500","LINDA KING",,,,,1,1,,,1,,1,1,,,"2E2G2R3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111026144452P030156624321003","2010-05-01","2011-04-30","2",,,,,,,,,,,,"VALLEY GASTROENTEROLOGY ASSOC, PC PROFIT SHAR PLAN","001","1980-03-02","VALLEY GASTROENTEROLOGY ASSOCIATES, P.C.",,,"100 KNOWLSON AVENUE",,"BEAVER FALLS","PA","15010",,,,,,,"100 KNOWLSON AVENUE",,"BEAVER FALLS","PA","15010",,,,,,,"251383437","7248912100","621111","VALLEY GASTROENTEROLOGY ASSOCIATES, P.C.",,"100 KNOWLSON AVENUE",,"BEAVER FALLS","PA","15010",,,,,,,"251383437","7248912100",,,,"2011-10-19T10:54:58-0500","MORRY MOSKOVITZ",,,,,59,53,,6,59,,59,59,1,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111019140832P030152820609001","2011-01-01","2011-03-31","2",,"0","0","1","1","0","1","0","0","0",,"C.M.C. & MAINTENANCE, INC. GOVERNMENT CONTRACTORS SAVINGS PLAN","001","1997-08-01","C.M.C. & MAINTENANCE, INC.",,,"4 UNION STREET","SUITE 1 PO BOX 1877","BANGOR","ME","04401",,,,,,,,,,,,,,,,,,"010501259","2079419444","561720","C.M.C. & MAINTENANCE, INC.",,"4 UNION STREET","SUITE 1 PO BOX 1877","BANGOR","ME","04401",,,,,,,"010501259","2079419444",,,,"2011-10-19T14:02:58-0500","JOAN BOUCHARD",,,,,162,0,0,0,0,0,0,0,0,,"3D2E2J2F2G2T",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019140919P030004583491001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"CBT/CHILDS BERTMAN TSECKARES, INC. AGE BASED PROFIT SHARING PLAN","002","1992-01-02","CBT/CHILDS BERTMAN TSECKARES, INC.",,,"110 CANAL STREET",,"BOSTON","MA","021141805",,,,,,,,,,,,,,,,,,"042429873","6172624354","541310","CBT/CHILDS BERTMAN TSECKARES, INC.",,"110 CANAL STREET",,"BOSTON","MA","021141805",,,,,,,"042429873","6172624354",,,,"2011-10-19T03:08:39-0500","MARGARET DEUTSCH",,,,,208,103,0,86,189,0,189,189,4,,"2A2E3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111030093234P040053817559001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"PROFIT SHARING","001","1996-06-15","STEVEN D KELLER",,,"27 DOGWOOD DRIVE",,"SUMMIT","NJ","07901",,,,,,,"27 DOGWOOD DRIVE",,"SUMMIT","NJ","07901",,,,,,,"223152430","9082739061","236110","STEVEN D KELLER",,"27 DOGWOOD DRIVE",,"SUMMIT","NJ","07901",,,,,,,"223152430","9082739061",,,,"2011-10-30T09:32:12-0500","STEVEN KELLER",,,,,2,2,0,0,2,0,2,2,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-30","Filed with authorized/valid electronic signature",, "20111021153210P040157601265001","2010-03-01","2011-02-28","2",,"0",,"0","0","0","1",,,,,"THE HORIZON GROUP, INC. EMPLOYEE STOCK OWNERS HIP PLAN","002","2001-03-01","HORIZON GROUP, INC",,,"806 W 76TH ST",,"DAVENPORT","IA","528061315",,,,,,,,,,,,,,,,,,"421249538","5633911891","337000","HORIZON GROUP, INC",,"806 W 76TH ST",,"DAVENPORT","IA","528061315",,,,,,,"421249538","5633911891",,,,"2011-10-21T15:32:06-0500","NICK LEONARD","2011-10-21T15:32:06-0500","NICK LEONARD",,,66,39,3,12,54,0,54,53,8,,"2I2P2Q",,,,"1",,,,"1",,"1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111019090628P030152680273001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"EL MORRO CORRUGATED BOX. CORP LIFE GROUP INSURANCE","503","1990-03-01","EL MORRO CORRUGATED BOX, CORP",,,"PO BOX 907",,"VEGA ALTA","PR","006920907",,,,,,,,,,,,,,,,,,"660274059","7878333760","322100","EL MORRO CORRUGATED BOX, CORP",,"PO BOX 907",,"VEGA ALTA","PR","00907",,,,,,,"660274059","7878333760",,,,"2011-10-19T09:05:39-0500","SAMUEL MARTINEZ",,,,,102,102,0,0,102,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111021142537P030153913409001","2010-08-01","2011-05-31","2",,"0","0","1","1","0","0","0","0","0",,"VISION FROM THE SPIRIT INC. 401(K) PLAN","001","2008-08-12","VISION FROM THE SPIRIT INC.",,,"106 DUNBARTON DRIVE",,"WILMINGTON","DE","19808",,,,,,,,,,,,,,,,,,"263153544","3026336303","451211","VISION FROM THE SPIRIT INC.",,"106 DUNBARTON DRIVE",,"WILMINGTON","DE","19808",,,,,,,"263153544","3026336303",,,,"2011-10-21T10:00:46-0500","CHUCK CORY","2011-10-21T10:00:46-0500","CHUCK CORY",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111020133515P030153350385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BTS USA, INC. 401(K) RETIREMENT PLAN","001","1995-01-01","BTS USA, INC.",,,"300 FIRST STAMFORD PLACE",,"STAMFORD","CT","06902",,,,,,,"300 FIRST STAMFORD PLACE",,"STAMFORD","CT","06902",,,,,,,"061356708","2033162740","541600","BTS USA, INC.",,"300 FIRST STAMFORD PLACE",,"STAMFORD","CT","06902",,,,,,,"061356708","2033162740",,,,"2011-10-20T13:34:55-0500","KEITH MARASIA",,,,,148,139,0,33,172,,172,127,8,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111026160201P040160367921002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"EMPLOYEE PROFIT SHARING PLAN OF FITZGERALD AND LONG INC","002","1985-04-01","FITZGERALD & LONG INC",,,"12341 E CORNELL 18",,"AURORA","CO","800143323",,,,,,,,,,,,,,,,,,"840969306","3037551102","541519","FITZGERALD & LONG INC",,"12341 E CORNELL 18",,"AURORA","CO","800143323",,,,,,,"840969306","3037551102",,,,"2011-10-26T15:52:59-0500","PEGGY LONG",,,,,3,,,,0,,0,,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111026085830P030725393008004","2010-01-01","2010-12-31","1",,,"1",,,"1","1",,,,,"NECA LU NO 313 IBEW DEFERRED INCOME PLAN","002","1985-03-01","BD OF TEES NECA 313 IBEW DEF INCOME PLAN",,,"650 NAAMANS ROAD, SUITE 303",,"CLAYMONT","DE","197032300",,,,,,,,,,,,,,,,,,"510285774","3027986801","238210","BD OF TEES NECA 313 IBEW DEF INCOME PLAN",,"650 NAAMANS ROAD, SUITE 303",,"CLAYMONT","DE","197032300",,,,,,,"510285774","3027986801",,,,"2011-10-17T04:50:38-0500","DOUGLAS DRUMMOND","2011-10-17T04:50:38-0500","EUGENE BATTAGLIA",,,1304,1208,12,27,1247,3,1250,857,,57,"2E2F2G2T",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111019104626P040156296625001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NFS LEASING, INC, 401 K PLAN","001","2008-01-01","NFS LEASING, INC",,,"900 CUMMINGS CENTER","SUITE 302-U","BEVERLY","MA","01915",,,,,,,"900 CUMMINGS CENTER","SUITE 302-U","BEVERLY","MA","01915",,,,,,,"043573947","9783384812","532400","NFS LEASING, INC",,"900 CUMMINGS CENTER","SUITE 302-U","BEVERLY","MA","01915",,,,,,,"043573947","9783384812",,,,"2011-10-19T10:46:11-0500","JOSEPH MACKESY",,,,,5,5,0,0,5,0,5,5,0,,"2E2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111020163554P030153421553001","2010-01-01","2010-12-31","1",,,,,,"1",,,,,,"BRICKLAYERS & ALLIED CRAFTWORKERS LOCAL 3 NY ROCHESTER CHAPTER ANNUITY FUND","002","1982-06-01","JNT BRD OF TRSTS-BRICKLAYERS & ALLD CRAFTWRK LO 3 NY ROCH ANNUITY FND",,,"3750 MONROE AVENUE",,"PITTSFORD","NY","14534",,,,,,,,,,,,,,,,,,"161184581","5853851160","238100","JNT BRD OF TRSTS-BRICKLAYERS & ALLD CRAFTWRK LO 3 NY ROCH ANNUITY FND",,"3750 MONROE AVENUE",,"PITTSFORD","NY","14534",,,,,,,"161184581","5853851160",,,,"2011-10-20T15:28:53-0500","STEPHEN D COCUZZI","2011-10-20T15:33:57-0500","ANTHONY DIPERNA",,,870,743,60,164,967,8,975,975,,53,"2T2G2F2E",,,,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111019123741P030152778977001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GENESEE INN, 401(K) SAVINGS PLAN","001","2004-01-01","THE GENESEE INN",,,"505 EAST FAYETTE STREET",,"SYRACUSE","NY","13202",,,,,,,,,,,,,,,,,,"352161666","3154717400","721110","THE GENESEE INN",,"505 EAST FAYETTE STREET",,"SYRACUSE","NY","13202",,,,,,,"352161666","3154717400",,,,"2011-10-19T12:36:33-0500","ROB KELSEY",,,,,148,128,0,10,138,0,138,19,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019131202P040023502258001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ROBERT S PASHMAN MD INC DEFINED BENEFIT PENSION PLAN","002","2006-01-01","ROBERT S PASHMAN MD INC",,,"PO BOX 450",,"BEVERLY HILLS","CA","902130450",,,,,,,,,,,,,,,,,,"954461670","3104239983","621111","ROBERT S PASHMAN MD INC",,"PO BOX 450",,"BEVERLY HILLS","CA","902130450",,,,,,,"954461670","3104239983",,,,"2011-10-19T13:12:01-0500","ROBERT S PASHMAN",,,,,4,3,0,1,4,0,4,,0,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019131441P040156357697001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"AMNESTY INTERNATIONAL USA, INC. MONEY PURCHASE PLA N","001","1988-04-01","AMNESTY INTERNATIONAL USA, INC",,,"5 PENN PLAZA, 16TH FLOOR",,"NEW YORK","NY","100011823",,,,,,,,,,,,,,,,,,"520851555","2128078400","813000","AMNESTY INTERNATIONAL USA, INC",,"5 PENN PLAZA, 16TH FLOOR",,"NEW YORK","NY","100011823",,,,,,,"520851555","2128078400",,,,"2011-10-19T13:13:51-0500","CANDICE CARNAGE",,,,,337,110,143,53,306,0,306,306,0,,"2C2G",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019134717P040023504482001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"ROB RICHTER LANDSCAPING, INC. 401 K PLAN","001","2006-04-01","ROB RICHTER LANDSCAPING, INC.",,,"240 SENATE DR",,"MONROE","OH","450501715",,,,,,,,,,,,,,,,,,"311770741","5135390300","238900","ROB RICHTER LANDSCAPING, INC.",,"240 SENATE DR",,"MONROE","OH","450501715",,,,,,,"311770741","5135390300",,,,"2011-10-19T13:43:02-0500","ROB RICHTER",,,,,25,12,0,15,27,0,27,25,3,,"2A2E2F2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111021111936P030153850737001","2010-10-01","2011-09-30","2",,"0","0","0","0","0","0","0","0","0",,"ABACUS COMPUTERS INC. 401(K) PLAN","001","1989-04-18","ABACUS COMPUTERS INC.",,,"6 DESTA DRIVE, SUITE 1350",,"MIDLAND","TX","79705",,,,,,,"6 DESTA DRIVE, SUITE 1350",,"MIDLAND","TX","79705",,,,,,,"751844304","4326875424","443120","ABACUS COMPUTERS INC.",,"6 DESTA DRIVE, SUITE 1350",,"MIDLAND","TX","79705",,,,,,,"751844304","4326875424",,,,"2011-10-21T11:18:27-0500","MARK SINGH",,,,,19,18,0,0,18,0,18,10,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111020104118P040025781574001","2010-04-24","2011-01-31","2",,"1","0","0","1","0","1","0","0","0",,"RYDY TOYS, INC. 401(K) PLAN","001","2010-04-24","RYDY TOYS, INC.",,,"703 PIERMONT DRIVE",,"CARY","NC","27519",,,,,,,"703 PIERMONT DRIVE",,"CARY","NC","27519",,,,,,,"272429538","9194630691","451120","RYDY TOYS, INC.",,"703 PIERMONT DRIVE",,"CARY","NC","27519",,,,,,,"272429538","9194630691",,,,"2011-10-20T06:03:22-0500","LORI HARTMAN",,,,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111026112150P030156548193001","2010-01-01","2010-12-31","4","P","0","0","0","0","0","0","0","0","0",,"LONG-TERM INVESTMENT GRADE BOND SEPARATE ACCOUNT","019",,"MINNESOTA LIFE INSURANCE COMPANY",,,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,,,,,,,,,,,,"410417830","6516653500",,"MINNESOTA LIFE INSURANCE COMPANY",,"PO BOX 64787",,"ST PAUL","MN","551640787",,,,,,,"410417830","6516653500",,,,,,,,"2011-10-26T11:21:02-0500","RICHARD L MANKE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-10-26",,"Filed with authorized/valid electronic signature", "20111026112155P030023141186001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","PURSUANT TO IR-2011-87","SHANNONDELL RETIREMENT SAVINGS PLAN","002","2004-02-01","SHANNONDELL AT VALLEY FORGE",,,"10000 SHANNONDELL DRIVE",,"AUDUBON","PA","19403",,,,,,,,,,,,,,,,,,"233082110","6103824211","623000","SHANNONDELL AT VALLEY FORGE",,"10000 SHANNONDELL DRIVE",,"AUDUBON","PA","19403",,,,,,,"233082110","6103824211","DELL RETIREMENT SERVICES","233082110","001","2011-10-26T11:21:05-0500","SCOTT DARRENKAMP",,,,,261,269,0,6,275,0,275,155,2,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111026141508P030725998720003","2010-02-01","2011-01-31","2",,,,,,,"1",,,,,"GREENE, MERTEN & SLAWINSKI CO. MONEY PURCHASE PENSION PLAN","002","1996-02-01","GREENE, MERTEN & SLAWINSKI CO.",,,"2538 CROOKS RD.",,"ROYAL OAK","MI","480733392",,,,,,,,,,,,,,,,,,"382039640","2482883660","541990","GREENE, MERTEN & SLAWINSKI CO.",,"2538 CROOKS RD.",,"ROYAL OAK","MI","480733392",,,,,,,"382039640","2482883660",,,,"2011-10-26T15:04:09-0500","FORREST R. MERTEN",,,,,4,4,0,0,4,0,4,4,,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111028162230P040161536689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","IR-2011-87 AND CT-2011-40","FRONTIER COMMUNICATIONS PENSION PLAN","001","1944-06-15","FRONTIER COMMUNICATIONS CORPORATION",,,"THREE HIGH RIDGE PARK",,"STAMFORD","CT","06905",,,,,,,,,,,,,,,,,,"060619596","2036145600","517000","FRONTIER COMMUNICATIONS CORPORATION",,"THREE HIGH RIDGE PARK",,"STAMFORD","CT","06905",,,,,,,"060619596","2036145600",,,,"2011-10-28T12:20:47-0500","BRIAN L. CARLO","2011-10-28T12:20:47-0500","BRIAN L. CARLO",,,11978,11579,3937,4715,20231,431,20662,,16,,"1A1B1C1G1I",,"1","0","1","0","1","0","1","0","1","0","1","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111020183833P030153477473001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"VAUGHN COLLEGE OF AERONAUTICS AND TECHNOLOGY LIFE INSURANCE PLAN","501","1999-04-01","VAUGHN COLLEGE OF AERONAUTICS AND TECHNOLOGY",,,"86-01, 23RD AVENUE",,"FLUSHING","NY","11369",,,,,,,,,,,,,,,,,,"110461385","7184296600","611000","VAUGHN COLLEGE OF AERONAUTICS AND TECHNOLOGY",,"86-01, 23RD AVENUE",,"FLUSHING","NY","11369",,,,,,,"110461385","7184296600",,,,"2011-10-20T18:38:19-0500","PAUL MIRANDA",,,,,116,116,0,0,116,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111020184739P030710969760001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"METROPOLITAN CLUB GROUP LIFE PLAN","503","1998-04-01","METROPOLITAN CLUB, INC.",,,"ONE EAST 60TH STREET",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"131518177","2122778507","722410","METROPOLITAN CLUB, INC.",,"ONE EAST 60TH STREET",,"NEW YORK","NY","10022",,,,,,,"131518177","2122778507",,,,"2011-10-20T18:13:10-0500","HANK LUCHAU",,,,,139,136,0,0,136,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111026135716P040160316337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JRS ASSOCIATES, INC. DEFINED CONTRIBUTION PLAN","002","2004-01-01","JRS ASSOCIATES, INC.",,,"105 THOMAS AVENUE",,"BETHPAGE","NY","11714",,,,,,,,,,,,,,,,,,"113008423","5164570530","812990","JRS ASSOCIATES, INC.",,"105 THOMAS AVENUE",,"BETHPAGE","NY","11714",,,,,,,"113008423","5164570530",,,,"2011-10-26T13:58:30-0500","JOSEPH R. SANTULLI","2011-10-26T13:58:30-0500","JOSEPH R. SANTULLI",,,1,1,,,1,,1,,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111026150012P030023154674004","2010-02-01","2011-01-31","2",,,,,,,"1",,,,,"PIONEER PRODUCTS, INC. EMPLOYEE HEALTH & WELFARE TRUST","501","1988-01-28","PIONEER PRODUCTS, INC.",,,"1917 S MEMORIAL DRIVE",,"RACINE","WI","534032545",,,,,,,,,,,,,,,,,,"391078454","2626336304","333900","PIONEER PRODUCTS, INC.",,"1917 S MEMORIAL DRIVE",,"RACINE","WI","534032545",,,,,,,"391078454","2626336304",,,,"2011-10-17T09:33:31-0500","VALERIE RATKOWSKI",,,,,204,227,2,,229,,,,,,,"4A4B4D4E4F",,,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111021140055P040023676818001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SUNRISE ELECTRIC INC PROFIT SHARING PLAN","001","1976-03-01","SUNRISE ELECTRIC, INC",,,"4080 83RD AVENUE NORTH",,"BROOKLYN PARK","MN","55443",,,,,,,,,,,,,,,,,,"410995434","7635668600","238210","KEITH HESLI",,"7200 HEMLOCK LANE 110",,"MAPLE GROVE","MN","55369",,,,,,,"410995434","7634245330",,,,"2011-10-21T13:26:58-0500","GARY LAPALME",,,,,11,12,,,12,,12,12,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111019162603P030152869057001","2011-01-01","2011-04-30","2",,"0","0","1","1","0","0","0","0","0",,"READS MOVING SYSTEMS, INC. 401(K) PLAN","001","1991-01-01","READS MOVING SYSTEMS, INC.",,,"2600 TURNPIKE DR",,"HATBORO","PA","190404221",,,,,,,,,,,,,,,,,,"231896558","2154432770","484110","READS MOVING SYSTEMS, INC.",,"2600 TURNPIKE DR",,"HATBORO","PA","190404221",,,,,,,"231896558","2154432770",,,,"2011-10-19T16:22:27-0500","ROBERT COX",,,,,44,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019091925P030707313920001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"WISE BUSINESS FORMS, INC 401(K) PROFIT SHARING PLAN & TRUST","001","1975-01-01","WISE BUSINESS FORMS",,,"555 MCFARLAND / 400 DR.",,"ALPHARETTA","GA","30004",,,,,,,"555 MCFARLAND / 400 DR.",,"ALPHARETTA","GA","30004",,,,,,,"251213370","7704421060","323100","WISE BUSINESS FORMS",,"555 MCFARLAND / 400 DR.",,"ALPHARETTA","GA","30004",,,,,,,"251213370","7704421060",,,,"2011-10-19T09:18:22-0500","MARK WELLS",,,,,521,392,0,58,450,1,451,262,1,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111021112151P040157477249001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1",,,,,"FEDERAL FLANGE INC. 401(K) PLAN","001","1997-10-01","FEDERAL FLANGE INC.",,,"4014 PINEMONT DR",,"HOUSTON","TX","770181104",,,,,,,,,,,,,,,,,,"264397270","7136810606","333510","FEDERAL FLANGE INC.",,"4014 PINEMONT DR",,"HOUSTON","TX","770181104",,,,,,,"264397270","7136810606","PRIDE OF LYONS, INC. DBA FEDERAL FLANGE","760356067","001","2011-10-21T11:21:27-0500","JUDY TERRIQUEZ","2011-10-21T11:21:27-0500","JUDY TERRIQUEZ",,,123,86,0,5,91,0,91,44,12,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111020090305P030153255409001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"VIANT HOLDINGS INC 401(K) AND PROFIT SHARING PLAN AND TRUST","001","2007-06-25","VIANT HOLDINGS INC",,,"1100 WINTER STREET",,"WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"208876513","7818956931","524290","VIANT HOLDINGS INC",,"1100 WINTER STREET",,"WALTHAM","MA","02451",,,,,,,"208876513","7818956931",,,,"2011-10-20T09:02:10-0500","ROBIN PULSIFER",,,,,1274,1001,0,164,1165,1,1166,889,108,,"2E2F2J2K2S2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111020095020P030709965536001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GRAMMER, KISSEL, ROBBINS,ETAL PENSION PLAN","002","1999-01-01","GRAMMER, KISSEL, ROBBINS,ETAL",,,"1500 K ST NW STE 330",,"WASHINGTON","DC","20005",,,,,,,,,,,,,,,,,,"521830726","2024085400","541110","GRAMMER, KISSEL, ROBBINS,ETAL",,"1500 K ST NW STE 330",,"WASHINGTON","DC","20005",,,,,,,"521830726","2024085400",,,,"2011-10-20T09:50:06-0500","PETER C KISSEL","2011-10-20T09:50:06-0500","PETER C KISSEL",,,12,10,0,6,16,0,16,16,0,,"2T2C3D2G2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111020020100P040156677489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ISLAND FAMILY CHIROPRACTIC, INC. 401K PROFIT SHARING PLAN","001","2003-01-01","ISLAND FAMILY CHIROPRACTIC, INC.",,,"P.O. BOX 3560",,"HONOLULU","HI","96811",,,,,,,,,,,,,,,,,,"990344836","8085960599","621310","ISLAND FAMILY CHIROPRACTIC, INC.",,"P.O. BOX 3560",,"HONOLULU","HI","96811",,,,,,,"990344836","8085960599",,,,"2011-10-20T02:00:58-0500","MARK F. HOFFMAN",,,,,6,2,0,4,6,0,6,6,,,"2A2E2F2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111026095448P040719546784001","2010-06-01","2011-05-31","2",,"0","0","0","0","0","0","0","0","0",,"MELE ASSOCIATES GROUP HEALTH CARE PLAN","501","2001-03-01","MELE ASSOCIATES",,,"14660 ROTHGEB DRIVE, SUITE 102",,"ROCKVILLE","MD","20850",,,,,,,,,,,,,,,,,,"521819489","2404536961","541600","MELE ASSOCIATES",,"14660 ROTHGEB DRIVE, SUITE 102",,"ROCKVILLE","MD","20850",,,,,,,"521819489","2404536961",,,,"2011-10-26T07:51:35-0500","ALAN CHIOGIOJI","2011-10-26T07:52:57-0500","ALAN CHIOGIOJI",,,113,122,0,0,122,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111021084323P040706626928001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WMK INC WELFARE BENEFIT PLAN","501","2006-01-01","WMK INC",,,"810 MOE DRIVE",,"AKRON","OH","44310",,,,,,,,,,,,,,,,,,"311502439","3306331118","441229","WMK INC",,"810 MOE DRIVE",,"AKRON","OH","44310",,,,,,,"311502439","3306331118",,,,"2011-10-21T08:43:21-0500","GERHARD SCHMIDT","2011-10-21T08:43:21-0500","GERHARD SCHMIDT",,,169,169,,,169,,,,,,,"4A4E","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111021085151P030051640583001","2010-07-01","2011-06-30","2",,,,,,,,,,,,"GILBERT G. CAVER, DDS, P. A. PROFIT SHARING PLAN","001","1989-07-01","GILBERT G. CAVER, DDS, P. A.",,,"5307 KAVANAUGH BLVD",,"LITTLE ROCK","AR","722074610",,,,,,,,,,,,,,,,,,"710522731","5016662801","621210","GILBERT G. CAVER, DDS, P. A.",,"5307 KAVANAUGH BLVD",,"LITTLE ROCK","AR","722074610",,,,,,,"710522731","5016662801",,,,"2011-10-21T03:51:02-0500","GILBERT G. CAVER, DDS","2011-10-21T03:51:04-0500","GILBERT G. CAVER, DDS",,,3,3,,,3,,3,3,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111021140512P040157553009003","2010-04-01","2011-03-31","2",,,,,,,,,,,,"GEORGE F. RICHARDSON, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1984-04-01","GEORGE F. RICHARDSON, INC.",,,"POST OFFICE BOX 1760",,"LILBURN","GA","30048",,,,,,,"4437-B PARK DRIVE",,"NORCROSS","GA","30093",,,,,,,"580620778","7707176020","238900","GEORGE F. RICHARDSON, INC.",,"POST OFFICE BOX 1760",,"LILBURN","GA","30048",,,,,,,"580620778","7707176020",,,,"2011-10-07T09:59:05-0500","DON W. BELLING",,,,,82,33,0,47,80,0,80,80,0,,"2O",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111019102007P030022598866001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","1","0","0","0",,"THE NIKOLS COMPANY, PROFIT SHARING PLAN","001","2004-04-15","THE NIKOLS COMPANY",,,"4041 MACARTHUR BLVD.","STE 140","NEWPORT BEACH","CA","92660",,,,,,,,,,,,,,,,,,"201009019","9494747577","531210","THE NIKOLS COMPANY",,"4041 MACARTHUR BLVD.","STE 140","NEWPORT BEACH","CA","92660",,,,,,,"201009019","9494747577",,,,"2011-10-18T16:32:15-0500","DON NIKOLS",,,,,2,2,,,2,,2,2,,,"2E2G3D2R3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019113632P030022602578001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BETTER BUSINESS BUREAU PROFIT SHARING PLAN AND TRUST","003","1989-01-01","THE BETTER BUSINESS BUREAU, INC.",,,"4428 NORTH 12TH STREET",,"PHOENIX","AZ","850144507",,,,,,,,,,,,,,,,,,"860006552","6022122210","813000","THE BETTER BUSINESS BUREAU, INC.",,"4428 NORTH 12TH STREET",,"PHOENIX","AZ","850144507",,,,,,,"860006552","6022641727",,,,"2011-10-19T11:34:52-0500","MATTHEW FEHLING",,,,,57,47,0,13,60,0,60,,,,"2A2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111026102008P030725546928001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"OSCAR W. LARSON COMPANY PROFIT SHARING PLAN AND TRUST","002","1987-01-01","OSCAR W. LARSON COMPANY",,,"10100 DIXIE HIGHWAY",,"CLARKSTON","MI","48348",,,,,,,,,,,,,,,,,,"381607330","2486200070","811310","OSCAR W. LARSON COMPANY",,"10100 DIXIE HIGHWAY",,"CLARKSTON","MI","48348",,,,,,,"381607330","2486200070",,,,"2011-10-26T10:19:49-0500","KEITH WILLIAMS AS PRACTITIONER",,,,,185,161,0,18,179,1,180,180,5,,"2E",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111026131307P030156589345001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"BOREALIS COMPOUNDS, INC. WELFARE PLAN","501","1993-02-01","BOREALIS COMPOUNDS, INC.",,,"176 THOMAS ROAD",,"PORT MURRAY","NJ","078654014",,,,,,,,,,,,,,,,,,"222768116","9088506200","325200","BOREALIS COMPOUNDS, INC.",,"176 THOMAS ROAD",,"PORT MURRAY","NJ","078654014",,,,,,,"222768116","9088506200",,,,"2011-10-26T13:12:09-0500","KIMBERLEY VERVAET",,,,,109,114,3,0,117,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111026131506P040160290545001","2010-05-01","2011-04-30","2",,,,,,,,,,,,"WILLIS SKI SHOP INC PROFIT-SHARING PLAN","001","1975-04-01","WILLIS",,,"3738 LIBRARY ROAD",,"PITTSBURGH","PA","152342233",,,,,,,,,,,,,,,,,,"251209401","4128815660","452900","WILLIS",,"3738 LIBRARY ROAD",,"PITTSBURGH","PA","152342233",,,,,,,"251209401","4128815660",,,,"2011-07-06T14:00:53-0500","GREG KLEIN",,,,,47,50,0,0,50,0,50,50,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111021144842P030153924513001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"US MANUFACTURING CORPORATION DENTAL PLAN","511","1989-11-01","US MANUFACTURING CORPORATION",,,"28201 VAN DYKE",,"WARREN","MI","48093",,,,,,,"28201 VAN DYKE",,"WARREN","MI","48093",,,,,,,"381788719","5864671600","332700","US MANUFACTURING CORPORATION",,"28201 VAN DYKE",,"WARREN","MI","48093",,,,,,,"381788719","5864671600",,,,"2011-10-21T14:45:23-0500","MARIE SHEBUSKI",,,,,421,458,0,0,458,,458,,,,,"4D","0",,,"1","0",,,"1",,,,,,"0",,,,,"FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",, "20111019132354P040023503042001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","1","HURRICANE IRENE DISASTER RELIEF","CLEVER DEVICES LTD. 401(K) PROFIT SHARING PLAN","001","1997-01-01","CLEVER DEVICES LTD.",,,"137 COMMERCIAL STREET",,"PLAINVIEW","NY","11803",,,,,,,,,,,,,,,,,,"112908781","5164336100","334410","CLEVER DEVICES LTD.",,"137 COMMERCIAL STREET",,"PLAINVIEW","NY","11803",,,,,,,"112908781","5164336100",,,,"2011-10-19T13:14:08-0500","MARYELLEN COLLINS",,,,,164,162,0,13,175,0,175,102,0,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111021142924P030153915889001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"MONTGOMERY COUNTY CHAPTER NYSARC, INC. 403(B) PLAN","002","2005-01-01","MONTGOMERY COUNTY CHAPTER NYSARC, INC.",,"LIBERTY ENTERPRISES","43 LIBERTY DRIVE",,"AMSTERDAM","NY","120100639",,,,,,,,,,,,,,,,,,"141506257","5188425080","624310","MONTGOMERY COUNTY CHAPTER NYSARC, INC.","LIBERTY ENTERPRISES","43 LIBERTY DRIVE",,"AMSTERDAM","NY","120100639",,,,,,,"141506257","5188425080",,,,"2011-10-21T11:20:19-0500","JENNIFER SAUNDERS","2011-10-21T11:20:19-0500","JENNIFER SAUNDERS",,,890,916,1,1,918,0,918,16,0,,"2F2G2L2M2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-10-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111026135727P040719978608001","2009-01-01","2009-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ALTERNATIVES UNLIMITED DENTAL, LIFE, AD&D AND STD PLAN","503","2004-01-01","ALTERNATIVES UNLIMITED, INC.",,,"8508 LOCH RAVEN BLVD, STE E",,"BALTIMORE","MD","212862354",,,,,,,,,,,,,,,,,,"522073228","4103393945","611000","ALTERNATIVES UNLIMITED, INC.",,"8508 LOCH RAVEN BLVD, STE E",,"BALTIMORE","MD","212862354",,,,,,,"522073228","4103393945",,,,"2011-10-26T13:57:16-0500","MELISSA REPLOGLE",,,,,277,183,0,0,183,,,,,,,"4B4D4F4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111026135931P040719982192001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","1","0","0","0",,"CRAIG OFFICE SUPPLY INC SAVINGS AND RETIREMENT PLAN","001","1990-04-01","CRAIG OFFICE SUPPLY INC",,,"P. O. BOX 579",,"THE DALLES","OR","97058",,,,,,,"323 EAST 2ND STREET",,"THE DALLES","OR","97058",,,,,,,"930761703","5412984111","453210","CRAIG OFFICE SUPPLY INC",,"323 EAST 2ND STREET",,"THE DALLES","OR","97058",,,,,,,"930761703","5412984111",,,,"2011-10-26T13:58:45-0500","RANDY SEUFERT",,,,,17,15,0,2,17,0,17,12,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111026150606P040160347809001","2011-01-01","2011-03-22","2",,"0","0","1","1","0","0","0","0","0",,"R. SCOTT CAIRNS MD PC PROFIT SHARING PLAN","002","1975-01-01","R. SCOTT CAIRNS, M.D., P.C.",,,"850 MOUNT CARMEL STREET",,"DUBUQUE","IA","52003",,,,,,,,,,,,,,,,,,"421028283","5635565551","621111","R. SCOTT CAIRNS, M.D., P.C.",,"850 MOUNT CARMEL STREET",,"DUBUQUE","IA","52003",,,,,,,"421028283","5635565551",,,,"2011-10-26T15:06:01-0500","R SCOTT CAIRNS",,,,,5,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",, "20111028171951P040024301378001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"LOOPER REED AND MCGRAW PC WELFARE BENEFIT PLAN","501","2005-06-01","LOOPER REED AND MCGRAW, P.C.",,,"1300 POST OAK BOULEVARD, SUITE 2000",,"HOUSTON","TX","77056",,,,,,,,,,,,,,,,,,"760152805","7139867000","541110","LOOPER REED AND MCGRAW, P.C.",,"1300 POST OAK BOULEVARD, SUITE 2000",,"HOUSTON","TX","77056",,,,,,,"760152805","7139867000",,,,"2011-10-28T17:19:16-0500","OLGA RODRIGUEZ",,,,,160,174,2,0,176,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-10-28","Filed with authorized/valid electronic signature",, "20111030203700P040162756321001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","1","0",,"DEPLOYABLE SPACE SYSTEMS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2010-05-01","DEPLOYABLE SPACE SYSTEMS INC",,,"75 ROBIN HILL RD BLDG B2",,"GOLETA","CA","93117",,,,,,,,,,,,,,,,,,"271889503","8057224941","541330","DEPLOYABLE SPACE SYSTEMS INC",,"75 ROBIN HILL RD BLDG B2",,"GOLETA","CA","93117",,,,,,,"271889503","8057224941",,,,"2011-10-30T08:36:59-0500","DEPLOYABLE SPACE SYSTEMS INC",,,,,1,3,0,0,3,0,3,3,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-10-30","Filed with authorized/valid electronic signature",, "20111020140713P040156992417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ALTERNATIVE COMMUNITY TRAINING, INC. 403(B) PLAN","001","1989-01-01","ALTERNATIVE COMMUNITY TRAINING, INC",,,"2200 BURLINGTON",,"COLUMBIA","MO","652021987",,,,,,,,,,,,,,,,,,"431069698","5734749446","624100","ALTERNATIVE COMMUNITY TRAINING, INC",,"2200 BURLINGTON",,"COLUMBIA","MO","652021987",,,,,,,"431069698","5734749446",,,,"2011-10-20T13:29:31-0500","AMANDA BLUMHORST",,,,,142,155,0,25,180,0,180,80,0,,"2L",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111026162841P040720267168001","2010-05-01","2011-04-30","2",,"0","0","1","0","0","0","0","0","0",,"RJAMMBM, INC. 401(K) PLAN","001","2008-11-04","RJAMMBM, INC.",,,"1757 BONANZA AVENUE",,"SIMI VALLEY","CA","93063",,,,,,,,,,,,,,,,,,"263689057","8186360523","541213","RJAMMBM, INC.",,"1757 BONANZA AVENUE",,"SIMI VALLEY","CA","93063",,,,,,,"263689057","8186360523",,,,"2011-10-26T16:28:08-0500","ROBERTINO JOSE MOREDO","2011-10-26T16:28:08-0500","ROBERTINO JOSE MOREDO",,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111019084725P040156253521001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"MEDICAL AND LIFE INSURANCE PLAN FOR HOURLY EMPLOYEES BWX TECHNOLOGIES INC","502","1973-09-10","BWX TECHNOLOGIES INC",,,"13024 BALLANTYNE CORP PLACE #700",,"CHARLOTTE","NC","28277",,,,,,,,,,,,,,,,,,"541845387","7046254963","339900","PLAN COMMITTEE",,"91 STIRLING AVENUE",,"BARBERTON","OH","442022600",,,,,,,"542073561","3307534511",,,,"2011-10-19T08:46:06-0500","ROCHELLE WALD",,,,,1225,351,805,,1156,,,,,,,"4A4B4D","1","0","1","0","1","0","1","0","0","0","0","1","0","1","2","1","1","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111019084741P040701490048001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","1","0","0","0",,"DANVERS INDUSTRIAL PACKAGING CORP. 401K PROFIT SHARING PLAN","001","1994-07-01","DANVERS INDUSTRIAL PACKAGING CORP",,,"20 CHERRY HILL DR",,"DANVERS","MA","019232575",,,,,,,,,,,,,,,,,,"042385779","9787770020","322200","DANVERS INDUSTRIAL PACKAGING CORP",,"20 CHERRY HILL DR",,"DANVERS","MA","019232575",,,,,,,"042385779","9787770020",,,,"2011-10-19T08:47:21-0500","LAURA DENONCOUR",,,,,35,26,1,11,38,0,38,37,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-19","Filed with authorized/valid electronic signature",, "20111020155353P040704852512001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"THE SHACKELFORD CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","001","1976-01-01","THE SHACKELFORD CORPORATION",,,"P.O. BOX 1027",,"SAVANNAH","TN","383721027",,,,,,,,,,,,,,,,,,"621282987","7319254000","812210","THE SHACKELFORD CORPORATION",,"P.O. BOX 1027",,"SAVANNAH","TN","383721027",,,,,,,"621282987","7319254000",,,,"2011-10-20T15:48:24-0500","LISA THOMAS","2011-10-20T14:56:54-0500","LISA THOMAS",,,79,48,8,24,80,0,80,80,3,,"2E2H2J2K2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111020155359P040157027105001","2010-01-01","2010-12-31","2",,,,,,,,,,"1","STORM LEE COVERED DISASTER AREA","DENTSPLY EMPLOYEE STOCK OWNERSHIP PLAN","006","1982-01-01","DENTSPLY INTERNATIONAL INC.",,,"221 W. PHILADELPHIA STREET, STE 60W",,"YORK","PA","17401",,,,,,,,,,,,,,,,,,"391434669","7178457511","339900","DENTSPLY INTERNATIONAL INC.",,"221 W. PHILADELPHIA STREET, STE 60W",,"YORK","PA","17401",,,,,,,"391434669","7178457511",,,,"2011-10-20T10:30:12-0500","WILLIAM E REARDON",,,,,4967,3210,,1714,4924,20,4944,4608,106,,"2I2P",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-10-20","Filed with authorized/valid electronic signature",, "20111024120416P040159119041001","2011-01-01","2011-01-01","2",,"0","0","1","1","0","0","0","0","0",,"VIANT HOLDINGS, INC. 401(K) AND PROFIT SHARING PLAN TRUST","001","2007-06-25","VIANT HOLDINGS INC.",,,"1100 WINTER STREET",,"WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"208876513","7818956931","524290","VIANT HOLDINGS INC.",,"1100 WINTER STREET",,"WALTHAM","MA","02451",,,,,,,"208876513","7818956931",,,,"2011-10-24T11:58:54-0500","ROBIN PULSIFER",,,,,1166,0,0,0,0,0,0,0,0,0,"2E2F2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024155223P040159211665003","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"JOEL F. BAUM DDS MONEY PURCHASE PLAN","001","1984-12-31","JOEL F. BAUM DDS",,,"1507 N WOOD AVE",,"LINDEN","NJ","070363846",,,,,,,"1507 NORTH WOOD AVENUE",,"LINDEN","NJ","070363846",,,,,,,"222039108","9084868396","621210","JOEL F BAUM DDS",,"1507 NORTH WOOD AVENUE",,"LINDEN","NJ","07036",,,,,,,"222039108","9084868396",,,,"2011-10-24T11:27:57-0500","JOEL F BAUM","2011-10-24T11:27:57-0500","JOEL F BAUM",,,4,4,0,0,4,0,4,4,0,,"2A2E2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111024155313P030721018496001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"MODCOMP, INC. INVESTMENT AND RETIREMENT PLAN","001","1983-07-01","MODCOMP, INC.",,,"1500 SOUTH POWERLINE RD",,"DEERFIELD BEACH","FL","33442",,,,,,,"1500 SOUTH POWERLINE RD",,"DEERFIELD BEACH","FL","33442",,,,,,,"582336703","9545714600","541512","MODCOMP, INC.",,"1500 SOUTH POWERLINE RD",,"DEERFIELD BEACH","FL","33442",,,,,,,"582336703","9545714600",,,,"2011-10-24T15:50:09-0500","MIKE NEWBANKS",,,,,95,50,2,39,91,0,91,67,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024075809P030155351153001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"RIN-BUHR CONSTRUCTION CORPORATION PROFIT SHARING PLAN","001","2000-04-01","RIN-BUHR CONSTRUCTION CORPORATION",,,"2150 ORISKANY STREET WEST",,"UTICA","NY","13502",,,,,,,"2150 ORISKANY STREET WEST",,"UTICA","NY","13502",,,,,,,"161173676","3157321231","236200","RIN-BUHR CONSTRUCTION CORPORATION",,"2150 ORISKANY STREET WEST",,"UTICA","NY","13502",,,,,,,"161173676","3157321231",,,,"2011-10-24T07:38:41-0500","WILLIAM NIEBUHR",,,,,18,18,0,0,18,0,18,13,0,,"2E2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1",,,,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024085833P040159057809001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"BEAVER STREET FISHERIES INC GROUP MEDICAL PLAN","504","1959-12-31","BEAVER STREET FISHERIES INC",,,"1741 WEST BEAVER STREET",,"JACKSONVILLE","FL","32209",,,,,,,"1741 WEST BEAVER STREET",,"JACKSONVILLE","FL","32209",,,,,,,"590737364","9043545661","424400","BEAVER STREET FISHERIES INC",,"1741 WEST BEAVER STREET",,"JACKSONVILLE","FL","32209",,,,,,,"590737364","9043545661",,,,"2011-10-24T08:46:59-0500","MICHAEL GVOZDICH",,,,,174,173,,,173,,173,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024165846P040159233441001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"H R CTR FOR AESTHETIC AND MAXILLO-FACIAL SURGERY-PROFIT SHARING PLAN","001","1980-11-01","H.R. CENTER FOR AESTHETIC & MAXILLO-FACIAL SURGERY",,,"2863 E. NICHOLS CIRCLE",,"LITTLETON","CO","80122",,,,,,,,,,,,,,,,,,"840806652","3037798730","621210","H.R. CENTER FOR AESTHETIC & MAXILLO-FACIAL SURGERY",,"2863 E.NICHOLS CIRCLE",,"LITTLETON","CO","80122",,,,,,,"840806652","3037798730",,,,"2011-10-24T16:57:28-0500","JAMES T. CURRY","2011-10-24T16:55:56-0500","JAMES LATTA",,,6,6,0,0,6,0,6,6,0,,"2E3D",,"0",,"1",,,,"1",,,,,,"1","0",,,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111024130710P040159137953001","2009-01-01","2009-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ROCKWELL AUTOMATION FLEXIBLE BENEFITS PLAN","540","1991-01-01","ROCKWELL AUTOMATION CORPORATION",,,"1201 S SECOND STREET",,"MILWAUKEE","WI","53204",,,,,,,,,,,,,,,,,,"251797617","4143822000","335900","ROCKWELL AUTOMATION CORPORATION",,"1201 S SECOND STREET",,"MILWAUKEE","WI","53204",,,,,,,"251797617","4143822000",,,,"2011-10-24T13:06:32-0500","TERESA E CARPENTER","2011-10-24T13:06:32-0500","TERESA E CARPENTER",,,2561,2432,0,0,2432,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20111024152553P040023938610001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","1","0","0","0",,"ENERGY LABORATORIES EMPLOYEE STOCK OWNERSHIP PLAN","002","2006-01-01","ENERGY LABORATORIES, INC.",,,"PO BOX 30916",,"BILLINGS","MT","59101",,,,,,,,,,,,,,,,,,"810243326","4062526325","541380","ENERGY LABORATORIES, INC.",,"PO BOX 30916",,"BILLINGS","MT","59101",,,,,,,"810243326","4062526325",,,,"2011-10-24T15:25:10-0500","TRACY DANGERFIELD",,,,,239,174,0,67,241,0,241,241,22,,"2E2P2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024135532P030155492897001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"W.E. NEAL SLATE CO. PROFIT SHARING PLAN","001","1956-02-08","W.E. NEAL SLATE CO.",,,"2840 HIGHWAY 25",,"WATERTOWN","MN","55388",,,,,,,,,,,,,,,,,,"410752882","9529553340","238300","W.E. NEAL SLATE CO.",,"2840 HIGHWAY 25",,"WATERTOWN","MN","55388",,,,,,,"410752882","9529553340",,,,"2011-10-24T08:43:40-0500","EUGENE A. ZIEMER",,,,,16,14,,,14,,14,14,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024104802P040023921394001","2010-10-01","2011-09-30","2",,,,,,,,,,,,"DIAGNOSTIC & INTERNAL MEDICINE ASSOCIATES, P.C. 401K PROFIT SHARING PLAN","002","1979-10-01","DIAGNOSTIC & INTERNAL MEDICINE ASSOCIATES, P.C.",,,"201 RIDGE STREET, SUITE 302",,"COUNCIL BLUFFS","IA","515034643",,,,,,,,,,,,,,,,,,"421013555","7123225532","621111","DIAGNOSTIC & INTERNAL MEDICINE ASSOCIATES, P.C.",,"201 RIDGE STREET, SUITE 302",,"COUNCIL BLUFFS","IA","515034643",,,,,,,"421013555","7123225532",,,,"2011-10-18T03:54:01-0500","BARRY KRICSFELD M.D.",,,,,12,12,,,12,,12,12,,,"2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024182240P040159261713001","2010-07-01","2011-06-30","2",,"0","0","0","0","0","0","0","0","0",,"BUSINESS TRAVEL ACCIDENT INSURANCE","505","1996-07-17","SWIFT ENERGY COMPANY",,,"16825 NORTHCHASE DRIVE, SUITE 400",,"HOUSTON","TX","77060",,,,,,,,,,,,,,,,,,"203940661","2818742700","211110","SWIFT ENERGY COMPANY",,"16825 NORTHCHASE DRIVE, SUITE 400",,"HOUSTON","TX","77060",,,,,,,"203940661","2818742700",,,,"2011-10-24T18:22:09-0500","MARY KENNER",,,,,292,292,0,0,292,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024134703P040052775847001","2008-11-01","2009-10-31","2",,"0","0","0","0","0","0","0","1","0",,"DELTA OF GEORGIA, INC. PROFIT SHARING PLAN","001","1983-06-01","DELTA OF GEORGIA, INC.",,,"PO BOX 47133",,"ATLANTA","GA","30362",,,,,,,,,,,,,,,,,,"581078228","7704574361","235310","DELTA OF GEORGIA, INC.",,"PO BOX 47133",,"ATLANTA","GA","30362",,,,,,,"581078228","7704574361",,,,"2011-10-24T13:46:56-0500","JAMES L. DUMOND",,,,,5,4,1,0,5,0,5,0,0,,"2E2K",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024134935P040159154529001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"GEA, INC. WELFARE BENEFIT PLAN","501","2009-03-01","GEA, INC.",,,"9115-F OLD STATESVILLE ROAD",,"CHARLOTTE","NC","28269",,,,,,,,,,,,,,,,,,"561732538","7045290026","531390","GEA, INC.",,"9115-F OLD STATESVILLE ROAD",,"CHARLOTTE","NC","28269",,,,,,,"561732538","7045290026",,,,"2011-10-24T13:49:34-0500","VALARIA DEVINE",,,,,2,2,0,0,2,,,,,,,"4A4B","0","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024082323P040714223648001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"DIAMOND A FORD CORPORATION 401(K) PLAN","001","1997-04-01","DIAMOND A FORD CORPORATION",,,"200 CRESCENT COURT, SUITE 1350",,"DALLAS","TX","752016988",,,,,,,,,,,,,,,,,,"752560279","2148715131","112111","DIAMOND A FORD CORPORATION",,"200 CRESCENT COURT, SUITE 1350",,"DALLAS","TX","752016988",,,,,,,"752560279","2148715131",,,,"2011-10-24T08:23:19-0500","GARY SHULTZ",,,,,117,95,0,10,105,0,105,71,6,,"2E2G2J2K2S2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024141423P030022994850002","2010-01-01","2010-12-31","2",,,"1",,,,"1",,,,,"DIENER BRICK COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","002","1975-01-01","DIENER BRICK COMPANY",,,"PARK AVENUE AND CUTHBERT ROAD",,"COLLINGSWOOD","NJ","08108",,,,,,,,,,,,,,,,,,"221978790","8568582000","423200","DIENER BRICK COMPANY",,"PARK AVENUE AND CUTHBERT ROAD",,"COLLINGSWOOD","NJ","08108",,,,,,,"221978790","8568582000",,,,"2011-10-17T10:59:47-0500","ED MAKEL",,,,,8,8,,,8,,8,8,,,"2E2O",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20111024131506P040714788096001","2010-06-01","2011-05-31","2",,,,,,,,,,,,"BELTON INDUSTRIES, INC. WELFARE BENEFIT PLAN","501","1980-05-01","BELTON INDUSTRIES, INC",,,"PO BOX 127",,"BELTON","SC","29627",,,,,,,,,,,,,,,,,,"570122620","8643385711","314000","BELTON INDUSTRIES, INC",,"PO BOX 127",,"BELTON","SC","29627",,,,,,,"570122620","8643385711",,,,"2011-10-24T13:12:05-0500","THOMPSON MARTIN",,,,,128,144,,3,147,,,,,,,"4A4B4D4F4L","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-10-24","Filed with authorized/valid electronic signature",, "20100223140328P030004988660001","2006-03-01","2007-02-28","2",,"0","0","0","0","0","0","0","0","0",,"TEACHER INS & ANNUITY ASSOCIATION","002","1992-03-01","BOTANICAL RESEARCH INSTITUTE OF TEXAS INC.",,,"509 PECAN STREET",,"FORT WORTH","TX","76102",,,,,,,"509 PECAN STREET",,"FORT WORTH","TX","76102",,,,,,,"752198196","8173324441","611000","BOTANICAL RESEARCH INSTITUTE OF TEXAS INC.",,"509 PECAN STREET",,"FORT WORTH","TX","76102",,,,,,,"752198196","8173324441",,,,"2010-02-23T02:03:15-0600","LEIGH STONE",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-02-23","Filed with authorized/valid electronic signature",, "20100226141251P040009178103001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","1","0",,"DESERT MOUNTAIN PROPERTIES DENTAL & VISION PLAN","501","2007-01-01","DESERT MOUNTAIN PROPERTIES LIMITED PARTNERSHIP",,,"10550 EAST DESERT HILLS DRIVE",,"SCOTTSDALE","AZ","852623438",,,,,,,"10550 EAST DESERT HILLS DRIVE",,"SCOTTSDALE","AZ","852623438",,,,,,,"752293892","4805954024","531310","DESERT MOUNTAIN PROPERTIES LIMITED PARTNERSHIP",,"10550 EAST DESERT HILLS DRIVE",,"SCOTTSDALE","AZ","852623438",,,,,,,"752293892","4805954024",,,,"2010-02-26T02:04:08-0600","KELI GREENBERG",,,,,702,702,0,0,702,,702,,,,,"4D4E","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2010-02-26","Filed with authorized/valid electronic signature",, "20100310153917P030011710583001","2003-01-01","2003-12-31","2",,"0","1","0","0","0","0","0","1","0",,"AQUASAFRA, INC. PENSION PLAN AND TRUST","001","2003-01-01","AQUASAFRA, INC.",,"MIKE PICCHIETTI","4920 LORRAINE ROAD",,"BRADENTON","FL","34211",,,,,,,"4920 LORRAINE ROAD",,"BRADENTON","FL","34211",,,,,,,"650412292","9417449698",,"AQUASAFRA, INC.","MIKE PICCHIETTI","4920 LORRAINE ROAD",,"BRADENTON","FL","34211",,,,,,,"650412292","9417449698",,,,"2010-03-10T03:36:19-0600","MICHAEL PICCHIETTI",,,,,4,4,0,0,4,0,4,0,0,,"1C",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2010-03-10","Filed with authorized/valid electronic signature",, "20100316145908P040013976835001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","1","0",,"FRANK E. DIGIOIA, P.A. 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","FRANK E. DIGIOIA, P.A.",,,"4244 CENTRAL AVE.",,"ST. PETERSBRUG","FL","33711",,,,,,,,,,,,,,,,,,"593392399","7273281154","541110","FRANK E. DIGIOIA, P.A.",,"4244 CENTRAL AVE.",,"ST. PETERSBRUG","FL","33711",,,,,,,"593392399","7273281154",,,,"2010-03-16T02:58:54-0500","FRANK DIGIOIA",,,,,3,1,0,1,2,0,2,2,0,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-03-16","Filed with authorized/valid electronic signature",, "20100326153737P030036719592001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"KURZ & COMPANY 401(K) P/S PLAN","001","2006-01-01","KURZ & COMPANY",,,"7 CHAMPIONS COURT TRAIL",,"HOUSTON","TX","77069",,,,,,,"7 CHAMPIONS COURT TRAIL",,"HOUSTON","TX","77069",,,,,,,"760582370","7138619955","424400","KURZ & COMPANY",,"7 CHAMPIONS COURT TRAIL",,"HOUSTON","TX","77069",,,,,,,"760582370","7138619955",,,,"2010-03-26T03:36:54-0500","TANYA KURZ",,,,,15,15,0,0,15,0,15,9,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-03-26","Filed with authorized/valid electronic signature",, "20100402092522P030017304483001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERNATIONAL DATA CONSULTANTS 401(K) PLAN","001","2001-01-01","INTERNATIONAL DATA CONSTULTANTS",,,"13302 SW 128TH ST",,"MIAMI","FL","33186",,,,,,,"13302 SW 128TH ST",,"MIAMI","FL","33186",,,,,,,"650488212","3052537677","541519","INTERNATIONAL DATA CONSTULTANTS",,"13302 SW 128TH ST",,"MIAMI","FL","33186",,,,,,,"650488212","3052537677",,,,,,"2010-04-02T09:21:57-0500","DENNIS DEBLOIS",,,9,3,0,6,9,,9,9,0,,"2E2F2J2G3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-04-02",,,"Filed with authorized/valid electronic signature" "20100412170114P030195496801001","2002-05-01","2003-04-30","2",,"0","0","0","0","0","0","1","0","0",,"LW LEDWELL & SON FLEXIBLE BENEFIT PLAN - INSURANCE ONLY","501","1989-01-01","LW LEDWELL & SON ENTERPRISES, INC.",,,"3300 WACO STREET",,"TEXARKANA","TX","75501",,,,,,,"3300 WACO STREET",,"TEXARKANA","TX","75501",,,,,,,"751090276","9038386531","423110","LW LEDWELL & SON ENTERPRISES, INC.",,"3300 WACO STREET",,"TEXARKANA","TX","75501",,,,,,,"751090276","9038386531",,,,"2010-04-12T04:57:58-0500","MARK VAN HERPEN",,,,,177,,177,,177,,177,,,,,"4A4B4H","1",,,"1","1",,,"1",,,,"0",,"1","1",,,,"FILING_RECEIVED","2010-04-12","Filed with authorized/valid electronic signature",, "20100427102928P040224990209001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AM & S TRUCK, INC. 401(K) PLAN","001","2002-01-01","AM & S TRUCKS, INC.",,,"903 7TH AVE. NORTH BOX 260",,"BRANDON","SD","57005",,,,,,,,,,,,,,,,,,"931070130","6055822992","484120","SAME",,,,,,,,,,,,,,,,,,,,"2010-04-27T10:29:16-0500","MATTHEW HEDGE",,,30,19,0,5,24,0,24,14,2,,"2E2F2G2J2K3E",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-04-27",,,"Filed with authorized/valid electronic signature" "20100503184919P030077987250001","2010-01-01","2010-02-03","2",,"0","0","1","1","0","0","0","0","0",,"WILLIAM P KHANI SELF EMPLOYED PROFIT SHARING PLAN","001","1979-01-01","WILLIAM P KHANI",,,"527 MARCY AVENUE",,"BROOKLYN","NY","11206",,,,,,,"527 MARCY AVENUE",,"BROOKLYN","NY","11206",,,,,,,"112547218","7187826230","621210","WILLIAM P KHANI",,"527 MARCY AVENUE",,"BROOKLYN","NY","11206",,,,,,,"112547218","7187826230",,,,"2010-05-03T06:46:48-0500","WILLIAM KHANI",,,,,3,0,0,0,0,0,0,,0,,"2E2G3B",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2010-05-03","Filed with authorized/valid electronic signature",, "20100426120150P030221508209001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","1","0",,"THE TMM PRIMARY RETIREMENT PLAN FOR UNION EMPLOYEES","003","2006-01-01","SERVICE MANAGEMENT SYSTEMS, INC.",,,"7135 CHARLOTTE PIKE, STE 100",,"NASHVILLE","TN","37209",,,,,,,"7135 CHARLOTTE PIKE, STE 100",,"NASHVILLE","TN","37209",,,,,,,"621346033","6153991839","561720","SERVICE MANAGEMENT SYSTEMS, INC.",,"7135 CHARLOTTE PIKE, STE 100",,"NASHVILLE","TN","37209",,,,,,,"621346033","6153991839",,,,"2010-04-26T11:22:36-0500","MICHAEL FAY",,,,,114,0,0,0,0,0,0,0,0,,"2E2F2G2J3E3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-04-26","Filed with authorized/valid electronic signature",, "20100413104213P030196875137001","2006-01-01","2006-12-31","2",,"0","1","1","0","0","0","0","0","0",,"FAMILY INDUSTRIES INC 401(K) PROFIT SHARING PLAN & TRUST","001","2000-01-01","FAMILY INDUSTRIES INC",,,"631 MACON PLACE",,"RALEIGH","NC","27609",,,,,,,"631 MACON PLACE",,"RALEIGH","NC","27609",,,,,,,"561858785","9198754499","321900","FAMILY INDUSTRIES INC",,"631 MACON PLACE",,"RALEIGH","NC","27609",,,,,,,"561858785","9198754499",,,,"2010-04-13T10:41:19-0500","CHRIS VILLANO",,,,,43,0,0,0,0,0,0,0,0,,"2E2G2J2K3E",,,,"1",,,,,,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-04-13","Filed with authorized/valid electronic signature",, "20100409125105P040045516328001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TEXAS ROYALTY CORP RETIREMENT PLAN","001","1994-01-01","TEXAS ROYALTY CORP",,,"500 N. CAPITAL OF TX HWY","BLDG 4-200","AUSTIN","TX","78746",,,,,,,"500 N. CAPITAL OF TX HWY","BLDG 4-200","AUSTIN","TX","78746",,,,,,,"752120630","5123061717","211110","TEXAS ROYALTY CORP",,"500 N. CAPITAL OF TX HWY","BLDG 4-200","AUSTIN","TX","78746",,,,,,,"752120630","5123061717",,,,"2010-04-09T12:50:46-0500","TOM SCHOONOVER",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J2A2K",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-04-09","Filed with authorized/valid electronic signature",, "20100517153337P030086643602001","2010-01-01","2010-03-31","2",,"1","0","1","1","0","0","0","0","0",,"TODD M LENHARD MONEY PURCHASE PENSION PLAN","001","2001-01-01","LENHARD PROFESSIONAL SERVICES LLC","TODD M LENHARD",,"PO BOX 22576",,"GREEN BAY","WI","54305",,,,,,,"240 TERRACE COURT",,"GREEN BAY","WI","54301",,,,,,,"208748476","9204697970","621320","LENHARD PROFESSIONAL SERVICES LLC",,"PO BOX 22576",,"GREEN BAY","WI","54305",,,,,,,"208748476","9204697970",,,,"2010-05-17T15:33:15-0500","TODD LENHARD",,,,,1,0,0,0,0,0,0,0,0,,"2C2F2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-05-17","Filed with authorized/valid electronic signature",, "20100513115636P040008908565001","2000-07-01","2001-06-30","2",,"0","0","0","0","0","0","0","1","0",,"ASSOCIATED APPRAISERS, INC. PROFIT SHARING PLAN","001","1979-07-01","ASSOCIATED APPRAISERS, INC.",,"TERRYE BROSH","87 MAYFAIR DRIVE",,"BELLA VISTA","AR","72715",,,,,,,"87 MAYFAIR DRIVE",,"BELLA VISTA","AR","72715",,,,,,,"710496685","4796406384","531320","ASSOCIATED APPRAISERS, INC.","TERRYE BROSH","87 MAYFAIR DRIVE",,"BELLA VISTA","AR","72715",,,,,,,"710496685","4796406384",,,,"2010-05-13T11:41:45-0500","TERRYE BROSH",,,,,1,2,0,0,2,0,2,2,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-05-13","Filed with authorized/valid electronic signature",, "20100525122609P040278076177001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"STONE TRANSPORT, INC. WELFARE PLAN","501","1996-11-01","STONE TRANSPORT, INC.",,,"3495 HACK ROAD",,"SAGINAW","MI","48601",,,,,,,"3495 HACK ROAD",,"SAGINAW","MI","48601",,,,,,,"382229596","9897544788","484120","STONE TRANSPORT, INC.",,"3495 HACK ROAD",,"SAGINAW","MI","48601",,,,,,,"382229596","9897544788",,,,"2010-05-25T12:23:06-0500","PETER VOLK",,,,,181,234,,,234,,234,,,,,"4A4B4H4L","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2010-05-25","Filed with authorized/valid electronic signature",, "20100525114844P030027384755001","2010-01-01","2010-01-28","2",,"0","0","1","1","0","0","0","0","0",,"GLENN A. BUCHER DVM, PC, DEFINED CONTRIBUTION PLAN","001","1987-09-22","GLENN A. BUCHER, DVM, PC","INDIAN RIVER VETERINARY CLINIC",,"6070 INDIAN RIVER ROAD, SUITE 116",,"VIRGINIA BEACH","VA","23464",,,,,,,"6070 INDIAN RIVER ROAD, SUITE 116",,"VIRGINIA BEACH","VA","23464",,,,,,,"541140848","7574202277","541940","GLENN A. BUCHER, DVM, PC",,"6070 INDIAN RIVER ROAD, SUITE 116",,"VIRGINIA BEACH","VA","23464",,,,,,,"541140848","7574202277",,,,"2010-05-25T11:48:04-0500","KATHERINE BUCHER",,,,,3,0,0,0,0,0,0,0,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-05-25","Filed with authorized/valid electronic signature",, "20100615162946P040011446181001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","1","2007 RE-SUBMITTED","SUBURBAN COMMON 401(K) PLAN","001","1996-07-01","SUBURBAN AIR FREIGHT, INC.",,,"4010 AMELIA EARHART PLAZA",,"OMAHA","NE","68110",,,,,,,"4010 AMELIA EARHART PLAZA",,"OMAHA","NE","68110",,,,,,,"470675565","4023444100","481000","SUBURBAN AIR FREIGHT, INC.",,"4010 AMELIA EARHART PLAZA",,"OMAHA","NE","68110",,,,,,,"470675565","4023444100",,,,"2010-06-15T16:27:43-0500","GEOFFREY GALLUP",,,,,26,32,0,1,33,0,33,11,0,0,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2010-06-15","Filed with authorized/valid electronic signature",, "20100616201512P040078143992001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","1","0",,"CHILDRENS CAMPUS, INC","001","2005-01-01","CHILDRENS CAMPUS, INC - 401K PROFIT SHARING PLAN & TRUST","CHILDRENS CAMPUS, INC",,"7250 W. TOUHY AVE",,"CHICAGO","IN","60631",,,,,,,"7250 W. TOUHY AVE",,"CHICAGO","IN","60631",,,,,,,"363001336","7736313632","611000","CHILDRENS CAMPUS, INC - 401K PROFIT SHARING PLAN & TRUST",,"7250 W. TOUHY AVE",,"CHICAGO","IN","60631",,,,,,,"363001336","7736313632",,,,"2010-06-16T20:11:03-0500","SUSAN SCHIEFFER",,,,,18,18,0,0,18,0,18,4,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-06-16","Filed with authorized/valid electronic signature",, "20100618145709P030032363715001","2010-01-01","2010-05-31","2",,"0","1","1","1","0","0","0","0","0",,"TRI-COUNTY ORTHOPAEDICS P.A. 401 (K) PROFIT SHARING PLAN","002","1973-09-01","TRI-COUNTY ORTHOPAEDICS P.A.",,,"12 RICKLAND DRIVE",,"SEWELL","NJ","08080",,,,,,,,,,,,,,,,,,"222117363","8565897770","621111","TRI-COUNTY ORTHOPAEDICS P.A.",,"12 RICKLAND DRIVE",,"SEWELL","NJ","08080",,,,,,,"222117363","8565897770",,,,"2010-06-18T14:55:57-0500","JEFFREY KOVACS",,,,,3,0,,,0,,0,0,,,"2E2H2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-06-18","Filed with authorized/valid electronic signature",, "20100617104311P040078434520001","2010-01-01","2010-01-31","2",,"0","0","1","1","0","0","0","0","0",,"PHOENIX ENTERPRISES PROFIT SHARING PLAN","001","1989-01-01","PHOENIX ENTERPRISES",,,"4625 WEST JENNIFER SUITE 101",,"FRESNO","CA","937226424",,,,,,,"4625 WEST JENNIFER SUITE 101",,"FRESNO","CA","937226424",,,,,,,"770232967","5592712377","541990","PHOENIX ENTERPRISES",,"4625 WEST JENNIFER SUITE 101",,"FRESNO","CA","937226424",,,,,,,"770232967","5592712377",,,,"2010-06-16T18:26:32-0500","DON WELD",,,,,0,0,0,0,0,0,0,0,0,,"2E3B2A3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-06-17","Filed with authorized/valid electronic signature",, "20100701172340P040349731633001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","1","0",,"CONTRACTORS AND EMPLOYEES RETIREMENT PLAN AND TRUST","002","1996-01-01","MADISON RESEARCH CORPORATION",,,"401 WYNN DR",,"HUNTSVILLE","AL","35805",,,,,,,"401 WYNN DR",,"HUNTSVILLE","AL","35805",,,,,,,"630934056","2568647221","541700","MADISON RESEARCH CORPORATION",,"401 WYNN DR",,"HUNTSVILLE","AL","35805",,,,,,,"630934056","2568647221",,,,,,"2010-07-01T17:23:07-0500","SHANNON COLLINS",,,5,1,0,2,3,0,3,3,0,,"2C2F2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2010-07-01",,,"Filed with authorized/valid electronic signature" "20100702095027P040351052513001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FAMILY SUPPORT NETWORK SAVINGS PLAN","001","1995-01-01","FAMILY SUPPORT NETWORK",,,"7514 BIG BEND BLVD",,"SAINT LOUIS","MO","63119",,,,,,,"7514 BIG BEND BLVD",,"SAINT LOUIS","MO","63119",,,,,,,"431280700","3146445055","624100","FAMILY SUPPORT NETWORK",,"7514 BIG BEND BLVD",,"SAINT LOUIS","MO","63119",,,,,,,"431280700","3146445055",,,,"2010-07-02T08:53:12-0500","JAMA DODSON",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-07-02","Filed with authorized/valid electronic signature",, "20100715080735P030375590625001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUFFALO TELECOM INC. 401 (K) PLAN","001","1988-01-01","BUFFALO TELECOM INC.",,,"1759 KENMORE AVENUE",,"KENMORE","NY","142172585",,,,,,,"1759 KENMORE AVENUE",,"KENMORE","NY","142172585",,,,,,,"161122380","7168737701","517000","BUFFALO TELECOM INC.",,"1759 KENMORE AVENUE",,"KENMORE","NY","142172585",,,,,,,"161122380","7168737701",,,,"2010-07-15T08:06:32-0500","JOSEPH GERACE",,,,,12,11,,,11,,11,10,,,"2E2G2J2K3E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-07-15","Filed with authorized/valid electronic signature",, "20100719153306P070003117860001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUILDERS RESOURCE GROUP, INC. 401(K) P/S PLAN","001","2006-01-01","BUILDERS RESOURCE GROUP INC",,,"4566 LAWRENCEVILLE HWY","SUITE 220","LILBURN","GA","30047",,,,,,,"4566 LAWRENCEVILLE HWY","SUITE 220","LILBURN","GA","30047",,,,,,,"582344373","7707175160","236110","BUILDERS RESOURCE GROUP INC",,"4566 LAWRENCEVILLE HWY","SUITE 220","LILBURN","GA","30047",,,,,,,"582344373","7707175160",,,,"2010-07-19T15:32:47-0500","LINDA HYMAN",,,,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-07-19","Filed with authorized/valid electronic signature",, "20100716193238P040013802453001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"VANGUARD PROTOTYPE DEFINED CONTRIBUTION PLAN PROFIT SHARING PLAN","002","1985-01-01","CHARLES TRUAX","TRU-TRUSS ENGINEERING",,"1783 ARROYO VISTA WY",,"EL DORADO HILLS","CA","95762",,,,,,,"1783 ARROYO VISTA WY",,"EL DORADO HILLS","CA","95762",,,,,,,"680089451","9169333478","541330","CHARLES TRUAX",,"1783 ARROYO VISTA WY",,"EL DORADO HILLS","CA","95762",,,,,,,"680089451","9169333478",,,,"2010-07-16T19:28:51-0500","CHARLES TRUAX",,,,,0,0,0,0,0,0,0,0,0,,"2E3E2G3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-16","Filed with authorized/valid electronic signature",, "20100720131929P040386455809001","2007-01-01","2007-12-31","2",,"1","1","0","0","0","0","0","1","0",,"JEFFREY J. TOY D.D.S., INC. 401K PROFIT SHARING PLAN AND TRUST","001","1999-11-08","JEFFREY J. TOY D.D.S., INC.","OAKRIDGE DENTAL GROUP",,"1720 LOS ANGELES AVE #209",,"SIMI VALLEY","CA","93065",,,,,,,"1720 LOS ANGELES AVE #209",,"SIMI VALLEY","CA","93065",,,,,,,"770436207","8055268081","621210","JEFFREY J. TOY D.D.S., INC.",,"1720 LOS ANGELES AVE #209",,"SIMI VALLEY","CA","93065",,,,,,,"770436207","8055268081",,,,"2010-07-20T13:18:44-0500","JEFFREY TOY",,,,,2,,2,,2,,2,2,,,"1C2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-07-20","Filed with authorized/valid electronic signature",, "20100721134012P030131731698001","2010-02-01","2010-03-31","2",,"0","0","0","1","0","0","0","0","0",,"F & R CONSTRUCTION GROUP - DENTAL COVERAGE","502","1998-12-01","F & R CONSTRUCTION GROUP",,,"PO BOX 9932",,"SAN JUAN","PR","009089932",,,,,,,"1010 HARVARD","UNIVERSITY GARDENS","SAN JUAN","PR","00927",,,,,,,"660658957","7877537010","236110","F & R CONSTRUCTION GROUP",,"PO BOX 9932",,"SAN JUAN","PR","009089932",,,,,,,"660658957","7877537010",,,,"2010-07-20T08:20:55-0500","LINETTE SUAREZ",,,,,167,154,,,154,,154,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-07-21","Filed with authorized/valid electronic signature",, "20100726014937P030134682258001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONTAINERWARE INC 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","CONTAINERWARE INC",,,"407 S. 107TH AVENUE","SUITE 30","TOLLESON","AZ","85353",,,,,,,"407 S. 107TH AVENUE","SUITE 30","TOLLESON","AZ","85353",,,,,,,"860394445","6239074880","326100","CONTAINERWARE INC",,"407 S. 107TH AVENUE","SUITE 30","TOLLESON","AZ","85353",,,,,,,"860394445","6239074880",,,,,,"2010-07-26T01:49:04-0500","SCOTT FRANCKEN",,,12,10,0,1,11,,11,,1,,"2E2G2J3E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-07-26",,,"Filed with authorized/valid electronic signature" "20100730150746P030092231560001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ORGANIZATION RESOURCES COUNSELORS INC WELFARE BENEFIT PLAN","501","1969-05-01","ORGANIZATION RESOURCES COUNSELORS INC","ORC WORLDWIDE",,"500 FIFTH AVENUE","5TH FLOOR","NEW YORK","NY","10110",,,,,,,"500 FIFTH AVENUE","5TH FLOOR","NEW YORK","NY","10110",,,,,,,"131683629","2127193400","541910","ORGANIZATION RESOURCES COUNSELORS INC",,"500 FIFTH AVENUE","5TH FLOOR","NEW YORK","NY","10110",,,,,,,"131683629","2127193400",,,,"2010-07-30T15:01:46-0500","MICHAEL GIZZO",,,,,153,153,,,153,,153,,,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2010-07-30","Filed with authorized/valid electronic signature",, "20100819102746P070006919282001","2008-07-01","2008-12-31","2",,"0","1","0","1","0","0","0","1","0",,"DEVRY INC PROFIT SHARING RETIRMENT PLAN TRUST","001","1979-06-30","DEVRY INC",,,"ONE TOWER LANE","STE 1000","OAKBROOK TERRACE","IL","60181",,,,,,,"ONE TOWER LANE","STE 1000","OAKBROOK TERRACE","IL","60181",,,,,,,"363150143","6307063334","611000","DEVRY INC",,"ONE TOWER LANE","STE 1000","OAKBROOK TERRACE","IL","60181",,,,,,,"363150143","6307063334",,,,"2010-08-19T10:26:28-0500","DONNA JENNINGS","2010-08-19T10:20:15-0500","DARIN WINCKLER",,,6310,5738,39,817,6594,6,6600,5777,157,,"2E2F2G2J2K",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2010-08-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20100819093315P070004719608001","2010-01-01","2010-03-31","2",,"0","1","1","1","0","0","0","0","0",,"VANGAURD MONEY PURCHASE PLAN","002","2001-01-01","THORNTON & ASSOICATES INC",,"TENNISE THORNTON","10005 SW LANCASTER RD",,"PORTLAND","OR","97219",,,,,,,"10005 SW LANCASTER RD",,"PORTLAND","OR","97219",,,,,,,"931241080","5032465518","524210","THORNTON & ASSOICATES INC","TENNISE THORNTON","10005 SW LANCASTER RD",,"PORTLAND","OR","97219",,,,,,,"931241080","5032465518",,,,"2010-08-19T09:32:59-0500","TENNISE THORNTON",,,,,2,0,0,0,0,0,0,0,0,0,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-08-19","Filed with authorized/valid electronic signature",, "20100820150643P040449869473001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SURGICAL GROUP OF MERCED PROFIT SHARING PLAN","001","1967-07-24","SURGICAL GROUP OF MERCED",,,"411 WEST 20TH STREET",,"MERCED","CA","95340",,,,,,,"411 WEST 20TH STREET",,"MERCED","CA","95340",,,,,,,"770051354","2097228122","621111","SURGICAL GROUP OF MERCED",,"411 WEST 20TH STREET",,"MERCED","CA","95340",,,,,,,"770051354","2097228122","SURGICAL GROUP OF MERCED","770051345","001","2010-08-20T15:06:34-0500","ASSOCIATED PENSION CONSULTANTS",,,,,7,7,0,0,7,0,7,7,0,,"2A2E2H3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-08-20","Filed with authorized/valid electronic signature",, "20100823111632P030153852978001","2010-01-01","2010-03-24","2",,"0","0","1","1","0","0","0","0","0",,"MARTYS CATERERS INC","001","1998-01-01","MARTYS CATERERS INC",,,"54 MONTVALE AVE",,"STONEHAM","MA","02180",,,,,,,"54 MONTVALE AVE",,"STONEHAM","MA","02180",,,,,,,"042993202","7813955067","722300","MARTYS CATERERS INC",,"54 MONTVALE AVE",,"STONEHAM","MA","02180",,,,,,,"042993202","7813955067",,,,"2010-08-23T11:14:12-0500","MARTIN MURPHY",,,,,1,0,0,0,0,0,0,0,0,,"2E2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-08-23","Filed with authorized/valid electronic signature",, "20100830163900P040023179524001","2010-01-01","2010-01-13","2",,"0","0","1","1","0","0","0","0","0",,"NEUROLOGICAL SURGERY PLLC PROFIT SHARING PLAN","003","2000-01-01","RICHARD HUNT BOBO MD",,,"395 HWY 41 N",,"OKOLONA","MS","38860",,,,,,,"395 HWY 41 N",,"OKOLONA","MS","38860",,,,,,,"640918685","6624473833","621111","RICHARD HUNT BOBO MD",,"395 HWY 41 N",,"OKOLONA","MS","38860",,,,,,,"640918685","6624473833",,,,"2010-08-30T16:35:19-0500","RICHARD BOBO",,,,,1,0,0,0,0,,0,,,,"2E2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-08-30","Filed with authorized/valid electronic signature",, "20100830164104P070013959106001","2010-02-01","2010-02-28","2",,"0","0","1","1","0","0","0","0","0",,"LA JOLLA BANK EMPLOYEE BENEFITS PLAN","501","2005-02-01","FDIC RECEIVER FOR LA JOLLA BANK",,,"40 PACIFICA",,"IRVINE","CA","92618",,,,,,,,,,,,,,,,,,"066033492","9492086622","522110","FDIC RECEIVER FOR LA JOLLA BANK",,"40 PACIFICA",,"IRVINE","CA","92618",,,,,,,"066033492","9492086622",,,,"2010-08-30T16:36:31-0500","JEFF MALLOCH",,,,,123,0,0,0,0,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2010-08-30","Filed with authorized/valid electronic signature",, "20100831140516P070014522226001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HENGER RAST MORTGAGE CORP 401 (K) PLAN","001","2005-08-01","HENGER RAST MORTGAGE CORP","HENGER RAST MORTGAGE CORP",,"3500 BLUE LAKE DRIVE, STE 325",,"BIRMINGHAM","AL","35243",,,,,,,"3500 BLUE LAKE DRIVE, STE 325",,"BIRMINGHAM","AL","35243",,,,,,,"208025285","2052711210","522292","HENGER RAST MORTGAGE CORP",,"3500 BLUE LAKE DRIVE, STE 325",,"BIRMINGHAM","AL","35243",,,,,,,"208025285","2052711210","HENGER RAST & ASSOCIATES","631216526","001","2010-08-31T14:04:51-0500","KAREN WHEELER",,,,,14,11,,,11,,11,11,,,"2E2F2G2J3E",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-08-31","Filed with authorized/valid electronic signature",, "20100827083949P070003609123001","2010-01-01","2010-08-15","2",,"0","0","1","1","0","0","0","0","0",,"BENEWAY, INC. PROFIT SHARING PLAN","001","2001-01-01","BENEWAY, INC.",,,"68 SCHRADE ROAD",,"CARMEL","NY","10512",,,,,,,,,,,,,,,,,,"134076557","8452284500","238220","BENEWAY, INC.",,"68 SCHRADE ROAD",,"CARMEL","NY","10512",,,,,,,"134076557","8452284500",,,,"2010-08-27T08:39:35-0500","MARK SADOFF",,,,,3,0,0,0,0,0,0,0,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-08-27","Filed with authorized/valid electronic signature",, "20100827115007P070036139649001","2010-01-01","2010-01-28","2",,"0","0","1","1",,,,,,,"ELLERBE BECKET RETIREMENT PLAN","001","1953-12-29","THE ELLERBE BECKET COMPANY",,,"800 LASALLE AVENUE",,"MINNEAPOLIS","MN","55402",,,,,,,"800 LASALLE AVENUE",,"MINNEAPOLIS","MN","55402",,,,,,,"410728085","6123762000","541310","THE ELLERBE BECKET COMPANY",,"800 LASALLE AVENUE",,"MINNEAPOLIS","MN","55402",,,,,,,"410728085","6123762000",,,,"2010-08-27T11:28:08-0500","MICHAEL KATZ",,,,,497,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2R2S2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2010-08-27","Filed with authorized/valid electronic signature",, "20100827155406P030105209192001","2010-01-01","2010-01-31","2",,"0","0","1","1","0","0","0","0","0",,"AGS STAINLESS & ALUMINUM FABRICATIONS, INC. 401K SALARY REDUCTION PLAN & TRUST","001","1999-01-01","AGS STAINLESS & ALUMINUM FABRICATIONS, INC.",,,"7873 NE DAY ROAD",,"BAINBRIDGE ISLAND","WA","981104207",,,,,,,,,,,,,,,,,,"911633444","2068429492","333900","AGS STAINLESS & ALUMINUM FABRICATIONS, INC.",,"7873 NE DAY ROAD",,"BAINBRIDGE ISLAND","WA","981104207",,,,,,,"911633444","2068429492",,,,"2010-08-27T15:53:13-0500","GARY GIFFIN",,,,,0,0,0,0,0,0,0,0,,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-08-27","Filed with authorized/valid electronic signature",, "20100907111625P040023845348001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ON2 TECHNOLOGIES, INC. 401(K) PLAN","002","2003-01-01","ON2 TECHNOLOGIES, INC.",,"C/O GOOGLE INC. - BENEFITS","3 CORPORATE DRIVE","SUITE 100","CLIFTON PARK","NY","12065",,,,,,,"3 CORPORATE DRIVE","SUITE 100","CLIFTON PARK","NY","12065",,,,,,,"841280679","5183480099","511210","ON2 TECHNOLOGIES, INC.","C/O GOOGLE INC. - BENEFITS","3 CORPORATE DRIVE","SUITE 100","CLIFTON PARK","NY","12065",,,,,,,"841280679","5183480099",,,,"2010-09-05T10:26:14-0500","JULIE HAMMEL",,,,,40,41,0,5,46,0,46,35,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2010-09-07","Filed with authorized/valid electronic signature",, "20100903142358P030476055345001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JOEL B BECK MD INC 401K PROFIT SHARING PLAN","001","2003-10-01","JOEL B BECK MD INC",,,"66 BOVET ROAD SUITE 101",,"SAN MATEO","CA","944020000",,,,,,,"66 BOVET ROAD SUITE 101",,"SAN MATEO","CA","944020000",,,,,,,"550828671","6505706066","621111","JOEL B BECK MD INC",,"66 BOVET ROAD SUITE 101",,"SAN MATEO","CA","944020000",,,,,,,"550828671","6505706066",,,,"2010-09-03T14:22:54-0500","GAYE CARDOZA",,,,,4,4,0,1,5,0,5,5,0,,"2E2J2G",,"1",,"1",,"1",,"1",,,,,,"1","1",,,"1",,"FILING_RECEIVED","2010-09-03","Filed with authorized/valid electronic signature",, "20100915112624P030171416274001","2010-01-01","2010-04-12","2",,"0","0","1","1","0","0","0","0","0",,"ACTIVE DATA SERVICES, INC. 401K SAVINGS PLAN","001","2002-07-01","ACTIVE DATA SERVICES",,,"400 PERIMETER PARK DRIVE A",,"MORRISVILLE","NC","275609756",,,,,,,,,,,,,,,,,,"010564588","9196542000","323100","ACTIVE DATA SERVICES",,"400 PERIMETER PARK DRIVE A",,"MORRISVILLE","NC","275609756",,,,,,,"010564588","9196542000",,,,"2010-09-15T10:36:19-0500","PETER HARVEY","2010-09-15T10:36:19-0500","PETER HARVEY",,,79,0,0,0,0,0,0,0,0,,"2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2010-09-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20100915113228P070003398134001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SACN DEFINED BENEFIT PLAN","002","2002-01-01","NADINE YASSA MD INC",,,"991 RESERVE DRIVE SUITE A",,"ROSEVILLE","CA","956781350",,,,,,,"991 RESERVE DRIVE SUITE A",,"ROSEVILLE","CA","956781350",,,,,,,"320091741","9167898811","621111","NADINE YASSA MD INC",,"991 RESERVE DRIVE SUITE A",,"ROSEVILLE","CA","956781350",,,,,,,"320091741","9167898811",,,,"2010-09-15T11:32:21-0500","ASSOCIATED PENSION CONSULTANTS",,,,,7,5,0,2,7,0,7,,0,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2010-09-15","Filed with authorized/valid electronic signature",, "20100917123642P040023504358001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GROWTH PROPERTIES INVESTMENT MANAGERS, INC. 401K AND PROFIT SHARING PLAN","001","1997-01-01","GROWTH PROPERTIES INVESTMENT MANAGERS, INC.",,,"1329 BRISTOL PIKE","SUITE 182","BENSALEM","PA","19020",,,,,,,"1329 BRISTOL PIKE","SUITE 182","BENSALEM","PA","19020",,,,,,,"232631287","2155465980","531310","GROWTH PROPERTIES INVESTMENT MANAGERS, INC.",,"1329 BRISTOL PIKE","SUITE 182","BENSALEM","PA","19020",,,,,,,"232631287","2155465980",,,,,,"2010-09-17T12:36:28-0500","JONATHAN MOFFETT",,,145,84,0,7,91,1,92,91,2,,"2E2G2J2K3E3H",,,,"1",,,,"1",,"1",,,"1","0",,,,,,"FILING_RECEIVED","2010-09-17",,,"Filed with authorized/valid electronic signature" "20100917144816P040164195090001","2006-01-01","2006-12-31","2",,"0","0","0","0","1","0","0","1","0",,"BNSF RAILWAY COMPANY / BLET VOLUNTARY SEPARATION PROGRAM","503","1990-01-01","BNSF RAILWAY COMPANY",,"MR. MILTON H. SIEGELE JR.","2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"416034000","8173521667","482110","BLET VOLUNTARY SEVERANCE PROGRAM COMMITTEE","MR. MILTON H. SIEGELE JR.","2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"800496358","8173521667",,,,"2010-09-17T14:21:59-0500","MILTON SIEGELE",,,,,1057,991,,,991,,991,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2010-09-17","Filed with authorized/valid electronic signature",, "20100917154448P040123552936001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"RANDALL W SPURGEON 401K PROFIT SHARING PLAN AND TRUST","001","2004-01-01","STONE MOUNTAIN CARPET MILLS",,,"5050 WESTSIDE ROAD",,"REDDING","CA","96001",,,,,,,"5050 WESTSIDE ROAD",,"REDDING","CA","96001",,,,,,,"953044989","5302416896","332900","STONE MOUNTAIN CARPET MILLS",,"5050 WESTSIDE ROAD",,"REDDING","CA","96001",,,,,,,"953044989","5302416896",,,,"2010-09-17T15:43:16-0500","REBECCA BRUMBELOW",,,,,3,0,,,0,,0,0,,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-09-17","Filed with authorized/valid electronic signature",, "20100924120642P070001973592001","2010-01-01","2010-05-07","2",,"0","0","1","1","0","0","0","0","0",,"CLARKSTON EMPLOYEE LEASING, INC 401(K) PLAN","001","2006-01-01","CLARKSTON EMPLOYEE LEASING INC",,,"4000 WEST WALTON BOULEVARD",,"WATERFORD","MI","48329",,,,,,,"4000 WEST WALTON BOULEVARD",,"WATERFORD","MI","48329",,,,,,,"383698331","2486743486","541219","CLARKSTON EMPLOYEE LEASING INC",,"4000 WEST WALTON BOULEVARD",,"WATERFORD","MI","48329",,,,,,,"383698331","2486743486",,,,"2010-09-23T08:58:17-0500","MICHAEL J. KELLY",,,,,11,0,,,0,,0,0,,,"2G2J3D3F",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2010-09-24","Filed with authorized/valid electronic signature",, "20100923155149P030003717058001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"HRO, INC. PROFIT SHARING PLAN AND TRUST","001","1977-01-01","HRO, INC.",,,"390 DIABLO ROAD, SUITE 210",,"DANVILLE","CA","94526",,,,,,,,,,,,,,,,,,"942349517","9258311771","452900","HRO, INC.",,"390 DIABLO ROAD, SUITE 210",,"DANVILLE","CA","94526",,,,,,,"942349517","9258311771",,,,"2010-09-23T15:51:41-0500","ROBERT G. FERRERO",,,,,90,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-23","Filed with authorized/valid electronic signature",, "20100923144420P070002964834001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"FIVE R REPAIR, INC. 401K PENSION PLAN","001","2003-01-01","FIVE-R-REPAIR, INC.",,,"15590 WEST COLFAX AVE.",,"GOLDEN","CO","80401",,,,,,,,,,,,,,,,,,"840838001","3032781830","488490","FIVE R REPAIR, INC.",,"15590 WEST COLFAX AVE.",,"GOLDEN","CO","80401",,,,,,,"840838001","3032781830",,,,"2010-09-23T14:41:38-0500","STEVE HILL",,,,,15,0,0,0,0,0,0,0,0,,"2E2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-09-23","Filed with authorized/valid electronic signature",, "20100922122527P030006811809001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"GEMSTV USA LTD. 401(K) PLAN","001","2007-07-01","GEMSTV USA LTD.",,,"1190 TRADEMARK DRIVE #107",,"RENO","NV","89521",,,,,,,,,,,,,,,,,,"020779452","7753277712","454110","GEMSTV USA LTD.",,"1190 TRADEMARK DRIVE #107",,"RENO","NV","89521",,,,,,,"020779452","7753277712",,,,"2010-09-21T17:09:00-0500","DIANE SCHNEIDERJOHN","2010-09-21T17:09:00-0500","DIANE SCHNEIDERJOHN",,,130,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2010-09-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20100922125304P030002757074001","2009-05-01","2010-04-30","1",,"0","0","0","0","0","0","0","0","0",,"NEW COUNTRY AUTO CENTER","501","1995-01-01","NEW COUNTRY AUTO CENTER",,,"1200 CARBON JUNCTION ROAD",,"DURANGO","CO","81301",,,,,,,"1200 CARBON JUNCTION ROAD",,"DURANGO","CO","81301",,,,,,,"841390321","8883854822","441110","NANCY ARIANO",,"1200 CARBON JUNCTION ROAD",,"DURANGO","CO","81301",,,,,,,"841390321","8883854822",,,,,,,,"2010-09-22T12:52:19-0500","NANCY ARIANO",113,90,2,0,92,0,,,0,,,"4A4B","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2010-09-22",,"Filed with authorized/valid electronic signature", "20101001151629P030000739176001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FELIX JAMES ALLEN, M.D., P.C. PROFIT SHARING PLAN","001","1995-12-29","FELIX JAMES ALLEN, M.D., P.C.",,,"P.O. BOX 241207",,"MONTGOMERY","AL","36124",,,,,,,"P.O. BOX 241207",,"MONTGOMERY","AL","36124",,,,,,,"631106315","3342847704","621111","FELIX JAMES ALLEN, M.D., P.C.",,"P.O. BOX 241207",,"MONTGOMERY","AL","36124",,,,,,,"631106315","3342847704",,,,"2010-10-01T15:14:37-0500","FELIX JAMES ALLEN MD",,,,,3,2,0,1,3,0,3,3,0,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-10-01","Filed with authorized/valid electronic signature",, "20101004083832P040001028755001","2006-08-01","2007-07-31","2",,"0","0","0","0","0","0","0","1","0",,"CUNET SALARY CONTINUANCE PLAN","502","1980-08-01","MICHIGAN FIRST CREDIT UNION",,,"27000 EVERGREEN ROAD",,"LATHRUP VILLAGE","MI","48076",,,,,,,,,,,,,,,,,,"380481580","2483954045","522130","MICHIGAN FIRST CREDIT UNION",,"27000 EVERGREEN ROAD",,"LATHRUP VILLAGE","MI","48076",,,,,,,"380481580","2483954045",,,,"2010-10-01T18:27:26-0500","MICHAEL POULOS",,,,,150,157,1,0,158,,158,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-10-04","Filed with authorized/valid electronic signature",, "20101004134139P040008011265001","2010-01-01","2010-01-31","2",,"0","0","1","1","0","1","0","0","0",,"SKYPILOT NETWORK, INC. RETIREMENT SAVINGS PLAN","001","2002-01-01","SKYPILOT NETWORKS, INC.",,,"1100 ISLAND DRIVE",,"REDWOOD","CA","94065",,,,,,,"1100 ISLAND DRIVE",,"REDWOOD","CA","94065",,,,,,,"943383457","4087648000","334200","TRILLIANT, INC.",,"1100 ISLAND DRIVE",,"REDWOOD CITY","CA","94065",,,,,,,"980463462","6502045050",,,,"2010-10-01T13:23:59-0500","TRICIE DAMASO","2010-10-01T13:25:07-0500","TRICIE DAMASO",,,21,0,0,0,0,0,0,0,0,,"2F2G2J2T3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-10-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101006140105P040011741425001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"PROFESSIONAL COMMUNICATION SERVICES DEFINED BENEFIT PENSION PLAN","001","1998-01-01","PROFESSIONAL COMMUNICATION SERVICES",,,"260 SHERIDAN AVENUE, SUITE 216",,"PALO ALTO","CA","94306",,,,,,,,,,,,,,,,,,"943139695","6506880495","561420","PROFESSIONAL COMMUNICATION SERVICES",,"260 SHERIDAN AVENUE, SUITE 216",,"PALO ALTO","CA","94306",,,,,,,"943139695","6506880495",,,,"2010-10-06T14:00:54-0500","JESSE COATES",,,,,2,0,0,0,0,0,0,0,0,,"1A1G1I3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-06","Filed with authorized/valid electronic signature",, "20101006154800P030004274978001","2007-01-01","2007-12-31","2",,,,,,,,,,,,"JOHN HOLT AUTO GROUP 401(K) SAVINGS PLAN","001","2000-07-01","JOHN HOLT AUTO GROUP",,,"2501 HIGHWAY 81S",,"CHICKASHA","OK","73023",,,,,,,,,,,,,,,,,,"731554227","8002589176","441110","JOHN HOLT AUTO GROUP",,"2501 HIGHWAY 81S",,"CHICKASHA","OK","73023",,,,,,,"731554227","8002589176",,,,"2010-10-06T04:47:36-0500","JOHN R HOLT","2010-10-06T04:45:34-0500","PAT FRIEDLAN",,,25,19,0,4,23,0,23,17,0,,"2E2F2G2J2K",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-10-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101008084657P070003634003001","2010-01-01","2010-04-22","2",,"0","1","1","1","0","0","0","0","0",,"TRADITIONAL BUILDERS, LTD. PROFIT SHARING/401K P","001","2002-01-01","TRADITIONAL BUILDERS, LTD.",,,"1266 DUANESBURG ROAD",,"SCHENECTADY","NY","123065805",,,,,,,,,,,,,,,,,,"141506799","5183565640","236110","TRADITIONAL BUILDERS, LTD.",,"1266 DUANESBURG ROAD",,"SCHENECTADY","NY","123065805",,,,,,,"141506799","5183565640",,,,"2010-10-08T08:46:56-0500","JOSEPH LUCARELLI",,,,,16,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-10-08","Filed with authorized/valid electronic signature",, "20101011110508P030007478354001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"STEVE ASTIN, ATTORNEY AT LAW","001","1999-01-01","J. STEVE ASTIN",,,"P.O. BOX 25",,"CEDARTOWN","GA","30125",,,,,,,"511 MAIN STREET",,"CEDARTOWN","GA","30125",,,,,,,"582058605","7707499020","812990","J. STEVE ASTIN",,"P.O. BOX 25",,"CEDARTOWN","GA","30125",,,,,,,"582058605","7707499020",,,,"2010-10-11T10:59:32-0500","STEVE ASTIN",,,,,1,2,,0,2,,2,3,0,,"2E2F3B3D",,"1",,"1",,,,"1",,,,,,"1","1",,,"1",,"FILING_RECEIVED","2010-10-11","Filed with authorized/valid electronic signature",, "20101011171547P040001427445001","2006-01-01","2006-12-31","2",,"0","1","1","0","1","0","1","0","0",,"NORTH AMERICAN ENERGY SERVICES IUOE LOCAL 68","005","2006-01-01","NAES CORPORATION","NAES CORPORATION",,"1180 NW MAPLE STREET SUITE 200",,"ISSAQUAH","WA","98027",,,,,,,"1180 NW MAPLE STREET SUITE 200",,"ISSAQUAH","WA","98027",,,,,,,"911111672","4259614700","221100","NAES CORPORATION",,"1180 NW MAPLE STREET SUITE 200",,"ISSAQUAH","WA","98027",,,,,,,"911111672","4259614700",,,,,,"2010-10-11T17:14:28-0500","MARK IRAOLA",,,4,0,0,0,0,0,0,0,0,0,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-11",,,"Filed with authorized/valid electronic signature" "20101012105249P040002734679001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","0","0","0","0",,"KRUG LAW FIRM, P.L.C. 401K PLAN","001","2000-01-01","KRUG LAW FIRM, P.L.C.",,,"521 2ND STREET, SE, UNIT 204",,"MINNEAPOLIS","MN","55414",,,,,,,,,,,,,,,,,,"421481652","3192977515","541110","KRUG LAW FIRM, P.L.C.",,"521 2ND STREET, SE, UNIT 204",,"MINNEAPOLIS","MN","55414",,,,,,,"421481652","3192977515",,,,"2010-10-12T10:49:06-0500","EDWARD KRUG",,,,,7,0,0,0,0,0,0,0,0,,"2E2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-10-12","Filed with authorized/valid electronic signature",, "20101012095512P030022375137001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ANGELVIEW PET CEMETERY & CREMATORY PROFIT SHARING PLAN","002","2003-01-01","ANGELVIEW PET CEMETERY & CREMATORY",,,"471 WAREHAM STREET",,"MIDDLEBORO","MA","02346",,,,,,,"471 WAREHAM STREET",,"MIDDLEBORO","MA","02346",,,,,,,"043176367","5089474103","812220","ANGELVIEW PET CEMETERY & CREMATORY",,"471 WAREHAM STREET",,"MIDDLEBORO","MA","02346",,,,,,,,,,,,"2010-10-12T09:54:22-0500","WILLIAM T MORGAN",,,,,33,19,0,10,29,0,29,29,0,,"2A2E3B",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2010-10-12","Filed with authorized/valid electronic signature",, "20101013143208P070005956552001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","0","0",,"ALLIANCE PRODUCTION OF IOWA, INC. EMPLOYEES 401K PLAN","001","1996-03-01","ALLIANCE PRODUCTION OF IOWA, INC.",,,"6435 W. JEFFERSON BLVD #102",,"FORT WAYNE","IN","46804",,,,,,,"6435 W. JEFFERSON BLVD #102",,"FORT WAYNE","IN","46804",,,,,,,"351917676","2603561040","111100","ALLIANCE PRODUCTION OF IOWA, INC.",,"6435 W. JEFFERSON BLVD #102",,"FORT WAYNE","IN","46804",,,,,,,"351917676","2603561040",,,,"2010-10-13T14:31:16-0500","MARK PARKER",,,,,35,0,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-10-13","Filed with authorized/valid electronic signature",, "20101026101801P070001462066001","2010-01-01","2010-04-26","2",,,,"1","1",,,,,,,"BOX EXPLORATION LLC 401K PROFIT SHARING PLAN","001","1999-01-01","BOX EXPLORATION LLC",,,"1177 ROCKINGHAM LANE","SUITE 200","RICHARDSON","TX","75080",,,,,,,,,,,,,,,,,,"752731510","9724978536","211110","BOX EXPLORATION LLC",,"1177 ROCKINGHAM LANE","SUITE 200","RICHARDSON","TX","75080",,,,,,,"752731510","9724978536",,,,"2010-10-26T11:17:02-0500","THOMAS D. BOX",,,,,10,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-26","Filed with authorized/valid electronic signature",, "20101019075343P040008774872001","2010-01-01","2010-06-30","2",,"0","0","0","1","0","0","0","0","0",,"ADRC CAFETERIA PLAN","501","1989-04-01","ALCOHOL & DRUG RECOVERY CENTERS, INC.",,,"500 BLUE HILLS AVE.",,"HARTFORD","CT","06112",,,,,,,"500 BLUE HILLS AVE.",,"HARTFORD","CT","06112",,,,,,,"060888026","8607143701","621420","ALCOHOL & DRUG RECOVERY CENTERS, INC.",,"500 BLUE HILLS AVE.",,"HARTFORD","CT","06112",,,,,,,"060888026","8607143701",,,,"2010-10-19T07:38:13-0500","COOLEY BUY",,,,,100,94,3,0,97,,97,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2010-10-19","Filed with authorized/valid electronic signature",, "20101020144143P040003357764001","2010-01-01","2010-05-19","2",,"0","1","1","1","0","0","0","0","0",,"WEST CARVER MEDICAL ASSOCIATES, P.C. PROFIT SHARING PLAN & TRUST","001","1971-08-01","WEST CARVER MEDICAL ASSOCIATES, P.C .",,,"200 WEST CARVER STREET",,"HUNTINGTON","NY","11743",,,,,,,,,,,,,,,,,,"112234962","6314210206","621111","WEST CARVER MEDICAL ASSOCIATES, P.C .",,"200 WEST CARVER STREET",,"HUNTINGTON","NY","11743",,,,,,,"112234962","6314210206",,,,"2010-10-20T14:41:21-0500","PAUL BRODSKY",,,,,46,0,0,0,0,0,0,0,0,,"2E3D2T3B2F2A",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-10-20","Filed with authorized/valid electronic signature",, "20101020180719P070037906849001","2007-01-01","2007-11-02","2",,"0","0","1","1","0","0","0","0","0",,"CLIFFORD D LANGLOIS DDS 401K PROFIT SHARING PLAN","001","1993-01-01","CLIFFORD D LANGLOIS DDS",,,"3021 LOS CERILLOS DRIVE",,"WEST COVINA","CA","91791",,,,,,,"3021 LOS CERILLOS DRIVE",,"WEST COVINA","CA","91791",,,,,,,"953987729","6263321415","621210","CLIFFORD D LANGLOIS DDS",,"3021 LOS CERILLOS DRIVE",,"WEST COVINA","CA","91791",,,,,,,"953987729","6263321415",,,,"2010-10-20T18:07:12-0500","ASSOCIATED PENSION CONSULTANTS",,,,,5,0,0,0,0,0,0,0,0,,"2E2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-20","Filed with authorized/valid electronic signature",, "20101025105230P030000583080001","2007-01-01","2007-10-31","2",,"0","0","1","1","0","0","0","0","0",,"MADHUKAR CHHATRE, M.D., P.C. DEFINED BENEFIT PENSION PLAN","003","2000-01-01","MADHUKAR CHHATRE, M.D., P.C.",,,"3151 N.E. CARNEGIE DR.",,"LEES SUMMIT","MO","64064",,,,,,,,,,,,,,,,,,"431730862","8163735155","621111","MADHUKAR CHHATRE, M.D., P.C.",,"3151 N.E. CARNEGIE DR.",,"LEES SUMMIT","MO","64064",,,,,,,"431730862","8163735155",,,,"2010-10-25T10:52:11-0500","MADHUKAR G. CHHATRE, M.D.",,,,,4,0,0,0,0,0,0,0,0,,"1A3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-25","Filed with authorized/valid electronic signature",, "20101018151636P030002968342001","2010-06-01","2010-08-31","2",,"0","0","0","1","0","0","0","0","0",,"DROGUERIA BETANCES INC - HEALTH SHORT PERIOD 2010","501","2008-03-01","DROGUERIA BETANCES INC",,,"PO BOX 368",,"CAGUAS","PR","00725",,,,,,,,,,,,,,,,,,"660240259","7877451860","424210","DROGUERIA BETANCES INC",,"PO BOX 368",,"CAGUAS","PR","00725",,,,,,,"660240259","7877451860",,,,"2010-10-18T14:41:01-0500","MARIO FORNES",,,,,139,153,0,0,153,0,153,0,0,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-10-18","Filed with authorized/valid electronic signature",, "20101109151059P040011488833001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"JABAR CORPORATION","001","1998-08-01","JABAR CORPORATION",,,"1925 HWY 80 EAST",,"CALHOUN","LA","71225",,,,,,,"1925 HWY 80 EAST",,"CALHOUN","LA","71225",,,,,,,"720983520","3183966160","221300","JABAR CORPORATION",,"1925 HWY 80 EAST",,"CALHOUN","LA","71225",,,,,,,"720983520","3183966160",,,,"2010-11-09T15:09:34-0600","RANDALL PUTNAM",,,,,58,44,0,11,55,0,55,47,0,1,"2F2G2J2K3E2E",,,,"1",,,,"1",,"1",,,"0","1",,,,,,"FILING_RECEIVED","2010-11-09","Filed with authorized/valid electronic signature",, "20101109095531P040011166049001","2010-01-01","2010-08-31","2",,"0","0","0","1","0","0","0","0","0",,"ALMACO SHORT-TERM DISABILITY PLAN","502","2007-01-01","GARY W CLEM INC","ALMACO",,"99 M AVENUE",,"NEVADA","IA","50201",,,,,,,"99 M AVENUE",,"NEVADA","IA","50201",,,,,,,"421092106","5153823506","333100","GARY W CLEM INC",,"99 M AVENUE",,"NEVADA","IA","50201",,,,,,,"421092106","5153823506",,,,"2010-11-09T09:54:21-0600","BARBARA HAMILTON",,,,,169,164,0,0,164,0,164,,,,,"4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-11-09","Filed with authorized/valid electronic signature",, "20101105111302P040002352002001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","0","0","0","0",,"DELTA SPRING LTD. PROFIT SHARING PLAN","001","1973-06-30","DELTA SPRING LTD.",,,"10522 SHADY TRAIL",,"DALLAS","TX","752202505",,,,,,,,,,,,,,,,,,"205120741","2143583491","332900","DELTA SPRING LTD.",,"10522 SHADY TRAIL",,"DALLAS","TX","752202505",,,,,,,"205120741","2143583491",,,,"2010-11-05T11:12:18-0500","DONNA BAILEY",,,,,6,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-05","Filed with authorized/valid electronic signature",, "20101108130904P030001414835001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","0","0",,"SUNSHINE EXTENDED SERVICES, INC. RETIREMENT PLAN","001","2002-01-01","SUNSHINE EXTENDED SERVICES, INC.",,,"2501 W. LA HABRA BLVD. SUITE 4",,"LA HABRA","CA","90631",,,,,,,,,,,,,,,,,,"954730829","5626913573","621610","SUNSHINE EXTENDED SERVICES, INC.",,"2501 W. LA HABRA BLVD. SUITE 4",,"LA HABRA","CA","90631",,,,,,,"954730829","5626913573",,,,"2010-11-08T13:08:56-0600","JUAN LOPEZ",,,,,14,0,0,0,0,0,0,0,0,,"2E2F2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-11-08","Filed with authorized/valid electronic signature",, "20101029081138P040009144433001","2010-04-01","2010-06-30","2",,"0","0","0","1","0","0","0","0","0",,"GOODMAN & COMPANY, L.L.P. SHORT & LONG TERM DISABILITY PLAN","506","1997-02-01","GOODMAN & COMPANY, L.L.P.",,,"272 BENDIX ROAD, SUITE 500",,"VIRGINIA BEACH","VA","23462",,,,,,,,,,,,,,,,,,"540640067","7574578400","541211","GOODMAN & COMPANY, L.L.P.",,"272 BENDIX ROAD, SUITE 500",,"VIRGINIA BEACH","VA","23462",,,,,,,"540640067","7574578400",,,,"2010-10-29T08:11:20-0500","SUSAN THODE",,,,,488,461,0,0,461,,,,,,,"4B4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2010-10-29","Filed with authorized/valid electronic signature",, "20101109105128P030000726261001","2010-01-01","2010-11-03","2",,"0","0","1","1","0","0","0","0","0",,"4DK 401(K) PLAN","001","2008-04-01","4DK TECHNOLOGIES, INC.",,,"520 HERNDON PARKWAY","SUITE D","HERNDON","VA","20170",,,,,,,,,,,,,,,,,,"204002761","5713137500","541519","4DK TECHNOLOGIES, INC.",,"520 HERNDON PARKWAY","SUITE D","HERNDON","VA","20170",,,,,,,"204002761","5713137500",,,,"2010-11-09T10:51:24-0600","IAN MAGAZINE",,,,,15,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-11-09","Filed with authorized/valid electronic signature",, "20101112074348P030001231780001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"MALTA DEVELOPMENT CO., INC. 401(K) PROFIT SHARING PLAN","001","1993-01-01","MALTA DEVELOPMENT CO., INC.",,,"100 MADISON DRIVE","SUITE 9","BALLSTON SPA","NY","12020",,,,,,,"100 MADISON DRIVE","SUITE 9","BALLSTON SPA","NY","12020",,,,,,,"141710768","5188856420","236110","MALTA DEVELOPMENT CO., INC.",,"100 MADISON DRIVE","SUITE 9","BALLSTON SPA","NY","12020",,,,,,,"141710768","5188856420",,,,"2010-11-11T07:58:09-0600","THOMAS SAMASCOTT",,,,,19,11,0,6,17,0,17,17,1,,"2A2E2G2J3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-11-12","Filed with authorized/valid electronic signature",, "20101112170147P040007155986001","2010-01-01","2010-01-13","2",,"0","0","1","1","0","1","0","0","0",,"TALISKER MOUNTAIN, INC. 401K PROFIT SHARING SAVINGS PLAN","001","2003-01-01","TALISKER MOUNTAIN, INC.",,,"P.O. BOX 4349",,"PARK CITY","UT","84060",,,,,,,,,,,,,,,,,,"223865732","4356158395","531310","TALISKER MOUNTAIN, INC.",,"P.O. BOX 4349",,"PARK CITY","UT","84060",,,,,,,"223865732","4356158395",,,,"2010-11-12T15:09:17-0600","DANA KEELE",,,,,146,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","0","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2010-11-12","Filed with authorized/valid electronic signature",, "20101115135148P030002562449001","2010-01-01","2010-09-21","2",,"0","0","1","1","0","0","0","0","0",,"FLS MEDIA DIVISION PROFIT SHARING PLAN","002","1998-01-01","DOUG BOTHEL","FLS MEDIA DIVISION",,"P.O BOX 3291",,"LA MESA","CA","91944",,,,,,,"4621 EDENVALE AVE",,"LA MESA","CA","91941",,,,,,,"953708607","6199133684","541519","DOUG BOTHEL",,"P.O BOX 3291",,"LA MESA","CA","91944",,,,,,,"953708607","6199133684",,,,"2010-11-15T13:46:58-0600","DOUGLAS BOTHEL",,,,,2,0,0,0,0,0,0,0,0,,"2E3E3B",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",, "20101130093434P030010284962001","2007-10-01","2008-09-30","2",,"0","0","0","0","0","0","0","1","0",,"FIRST PROTOCOL, INC. 401(K) PROFIT SHARING PLAN","001","2007-02-26","FIRST PROTOCOL, INC.",,,"630 9TH AVENUE, SUITE 310",,"NEW YORK","NY","10036",,,,,,,"630 9TH AVENUE, SUITE 310",,"NEW YORK","NY","10036",,,,,,,"201231125","2128104100","561900","FIRST PROTOCOL, INC.",,"630 9TH AVENUE, SUITE 310",,"NEW YORK","NY","10036",,,,,,,"201231125","2128104100",,,,"2010-11-30T08:44:43-0600","ELIZABETH ZACHARIAS",,,,,8,7,0,11,18,0,18,12,0,,"2E2F2G2J2A",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-11-30","Filed with authorized/valid electronic signature",, "20101130093700P030028178817001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","0","0",,"BCI WIRELESS LLC","001","2006-01-01","BCI WIRELESS LLC","BCI WIRELESS LLC",,"1617 PEARL STREET",,"BOULDER","CO","80302",,,,,,,"1617 PEARL STREET",,"BOULDER","CO","80302",,,,,,,"202657937","7203048839","541990","BCI WIRELESS LLC",,"1617 PEARL STREET",,"BOULDER","CO","80302",,,,,,,"202657937","7203048839",,,,"2010-11-30T09:36:10-0600","KAREN COOK",,,,,0,0,,,0,,0,,,0,,,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-11-30","Filed with authorized/valid electronic signature",, "20101119081735P030002233400001","2010-01-01","2010-03-31","2",,"0","0","0","1","0","1","0","0","0",,"STANLEY STEEMER INTERNATIONAL LIFE INSURANCE PLAN","505","1986-01-01","STANLEY STEEMER INTERNATIONAL, INC.",,,"5800 INNOVATION DRIVE",,"DUBLIN","OH","43016",,,,,,,,,,,,,,,,,,"310366455","8008487496","561740","STANLEY STEEMER INTERNATIONAL, INC.",,"5800 INNOVATION DRIVE",,"DUBLIN","OH","43016",,,,,,,"310366455","8008487496",,,,"2010-11-17T10:46:51-0600","MARK BUNNER",,,,,1570,1424,,,1424,,1424,,,,,"4B4L4Q","1",,,"1","1",,,"0",,,,,,"1","1",,,,"FILING_RECEIVED","2010-11-19","Filed with authorized/valid electronic signature",, "20101123144810P040000920645001","2006-07-01","2006-12-31","2",,"0","0","0","1","0","0","0","1","0",,"GROUP DISABILITY INSURANCE - HEALTH","501","1992-07-01","WITHLACOOCHEE RIVER ELECTRIC COOPERATIVE INC",,"RONNIE DEESE","P.O. BOX 278",,"DADE CITY","FL","33526",,,,,,,"14651 21ST STREET",,"DADE CITY","FL","33523",,,,,,,"590545223","3525675133","221100","WITHLACOOCHEE RIVER ELECTRIC COOPERATIVE INC","RONNIE DEESE","P.O. BOX 278",,"DADE CITY","FL","33526",,,,,,,"590545223","3525675133",,,,"2010-11-19T14:49:43-0600","RONNIE DEESE",,,,,470,447,37,0,484,,484,,,,,"4A",,,,"1",,,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",, "20101201145457P030003930291001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"KRAEMER TEXTILES, INC. 401K PROFIT SHARING PLAN","001","1989-01-01","KRAEMER TEXTILES, INC.",,,"240 S. MAIN STREET",,"NAZARETH","PA","180642708",,,,,,,,,,,,,,,,,,"240635120","6107594030","314000","KRAEMER TEXTILES, INC.",,"240 S. MAIN STREET",,"NAZARETH","PA","180642708",,,,,,,"240635120","6107594030",,,,"2010-12-01T14:46:26-0600","VICTOR SCHMIDT",,,,,4,0,0,0,0,0,0,0,0,,"2E2G2J2K3D2F",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-12-01","Filed with authorized/valid electronic signature",, "20101129144521P040001481525001","2010-04-01","2010-04-30","2",,"0","0","0","1","0","0","0","0","0",,"HUMANE SOCIETY OF MISSOURI LONG TERM DISABILITY","504","1992-04-01","HUMANE SOCIETY OF MISSOURI",,,"1201 MACKLIND AVE.",,"ST. LOUIS","MO","63110",,,,,,,,,,,,,,,,,,"430652638","3149511509","624100","HUMANE SOCIETY OF MISSOURI",,"1201 MACKLIND AVE.",,"ST. LOUIS","MO","63110",,,,,,,"430652638","3149511509",,,,"2010-11-22T12:07:25-0600","ANNE GOECKNER","2010-11-22T12:07:25-0600","ANNE GOECKNER",,,198,198,4,,202,,0,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-11-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101129194200P040027164161001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"SUPPLY DEN 401K PLAN AND TRUST","001","2007-01-01","SUPPLY DEN",,,"1837 ENTERPRISE DRIVE",,"ROCHESTER HILLS","MI","48309",,,,,,,,,,,,,,,,,,"383603806","2482999400","424100","SUPPLY DEN",,"1837 ENTERPRISE DRIVE",,"ROCHESTER HILLS","MI","48309",,,,,,,"383603806","2482999400",,,,"2010-11-29T19:41:55-0600","ROBERT WINGFIELD",,,,,10,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-11-29","Filed with authorized/valid electronic signature",, "20101130114314P040010222226001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"VIC SPINA CUSTOM HOMES 401(K) PLAN","001","2007-09-01","VIC SPINA CUSTOM HOMES",,,"PO BOX 1925",,"MARTINSVILLE","IN","46151",,,,,,,,,,,,,,,,,,"208875481","7653427940","236110","VIC SPINA CUSTOM HOMES",,"PO BOX 1925",,"MARTINSVILLE","IN","46151",,,,,,,"208875481","7653427940",,,,"2010-11-30T11:42:06-0600","WILLIAM SPINA",,,,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-11-30","Filed with authorized/valid electronic signature",, "20101119085307P040002301256001","2010-01-01","2010-08-06","2",,"0","1","1","1","0","0","0","0","0",,"UNI-MARTS, LLC RETIREMENT SAVINGS & INCENTIVE PLAN","001","2004-06-30","UNI-MARTS, LLC",,,"477 E BEAVER AVE",,"STATE COLLEGE","PA","168015633",,,,,,,,,,,,,,,,,,"201190476","8142346000","445120","UNI-MARTS, LLC",,"477 E BEAVER AVE",,"STATE COLLEGE","PA","168015633",,,,,,,"201190476","8142346000",,,,"2010-11-19T08:51:11-0600","DONNA WEAVER",,,,,57,0,0,0,0,0,0,0,0,,"2E2H2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-19","Filed with authorized/valid electronic signature",, "20101130203414P030028986369001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ASSOCIATED HEALTHCARE SYSTEMS 401K RETIREMENT PLAN","001","1999-11-15","ASSOCIATED HEALTHCARE SYSTEMS, INC.",,,"214 OVERLOOK CT. STE 260",,"BRENTWOOD","TN","37027",,,,,,,"214 OVERLOOK CT. STE 260",,"BRENTWOOD","TN","37027",,,,,,,"582472565","6152200482","622000","ASSOCIATED HEALTHCARE SYSTEMS, INC.",,"214 OVERLOOK CT. STE 260",,"BRENTWOOD","TN","37027",,,,,,,"582472565","6152200482",,,,"2010-11-30T20:33:24-0600","LISA SMITHSON",,,,,1668,1099,,25,1124,1,1125,451,47,,"2E2F2G2J2K3E3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1",,"1","1",,"FILING_RECEIVED","2010-11-30","Filed with authorized/valid electronic signature",, "20101130115535P040007171032001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"SNOW VALLEY , LLC 401(K) PLAN","001","1995-07-01","SNOW VALLEY, LLC",,,"35100 HIGHWAY 18","PO BOX 2337","RUNNING SPRINGS","CA","92382",,,,,,,,,,,,,,,,,,"330735976","9098672751","713100","SNOW VALLEY, LLC",,"35100 HIGHWAY 18","PO BOX 2337","RUNNING SPRINGS","CA","92382",,,,,,,"330735976","9098672751",,,,"2010-11-30T11:55:26-0600","RICK REDIN","2010-11-30T11:55:26-0600","RICK REDIN",,,86,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-11-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101201135436P030007394872001","2010-01-01","2010-08-31","2",,"0","1","1","1","0","0","0","0","0",,"BOULDER TRAVEL AGENCY, INC. PROFIT SHARING PLAN & TRUST","001","1998-01-01","BOULDER TRAVEL AGENCY, INC.",,,"1655 FOLSOM STREET",,"BOULDER","CO","80302",,,,,,,,,,,,,,,,,,"840505940","3034430380","561500","BOULDER TRAVEL AGENCY, INC.",,"1655 FOLSOM STREET",,"BOULDER","CO","80302",,,,,,,"840505940","3034430380",,,,"2010-12-01T13:51:41-0600","BRIAN MENK",,,,,19,0,0,0,0,0,0,0,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-12-01","Filed with authorized/valid electronic signature",, "20101130151928P040002025348001","2009-08-01","2010-07-31","2",,"0","1","0","0","0","1","0","0","0",,"FOOD SCIENCES CORPORATION 502","502","1990-08-01","FOOD SCIENCES CORPORATION",,,"821 EAST GATE DRIVE",,"MT. LAUREL","NJ","08054",,,,,,,,,,,,,,,,,,"232175751","8567788080","311900","FOOD SCIENCES CORPORATION","DENISE REGRUTO","821 EAST GATE DRIVE",,"MT. LAUREL","NJ","08054",,,,,,,"232175751","8567788080",,,,"2010-11-30T15:17:39-0600","ROBERT SCHWARTZ",,,,,111,185,0,0,185,,,,,,,"4A4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2010-11-30","Filed with authorized/valid electronic signature",, "20101201141336P040001674821001","2010-01-01","2010-10-28","2",,"0","0","1","1","0","0","0","0","0",,"SHORT ENVIRONMENTAL LABORATORIES, INC. PROFIT SHARING PLAN","001","1996-01-01","SHORT ENVIRONMENTAL LABORATORIES, INC.",,,"10405 US HIGHWAY 27 S",,"SEBRING","FL","338769502",,,,,,,,,,,,,,,,,,"592943614","8635554022","541380","SHORT ENVIRONMENTAL LABORATORIES, INC.",,"10405 US HIGHWAY 27 S",,"SEBRING","FL","338769502",,,,,,,"592943614","8635554022",,,,"2010-12-01T14:12:34-0600","DAVID MURTO",,,,,17,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-12-01","Filed with authorized/valid electronic signature",, "20101203110259P040033477697001","2002-07-01","2003-06-30","2",,"0","0","0","0","0","0","0","1","0",,"ED BROWER DAIRY, INC. PROFIT SHARING PLAN","001","1982-06-18","ED BROWER DAIRY, INC.",,,"18196 AVENUE 248",,"EXETER","CA","932219539",,,,,,,"18196 AVENUE 248",,"EXETER","CA","932219539",,,,,,,"952658982","5595621239","112120","ED BROWER DAIRY, INC.",,"18196 AVENUE 248",,"EXETER","CA","932219539",,,,,,,"952658982","5595621239",,,,"2010-11-11T12:30:58-0600","EDWARD BROWER",,,,,11,11,,,11,,11,11,,,"2A2C2E",,,,"1",,,,,,,,,,"1",,,,,,"FILING_RECEIVED","2010-12-03","Filed with authorized/valid electronic signature",, "20101117124124P040000638503001","2010-01-01","2010-08-10","2",,"0","0","1","1","0","0","0","0","0",,"DOW ASPHALT COMPANY PROFIT SHARING PLAN","001","1998-01-01","DOW ASPHALT COMPANY",,,"5 WOODLAND COURT",,"WAYNE","NJ","07470",,,,,,,"5 WOODLAND COURT",,"WAYNE","NJ","07470",,,,,,,"222991965","9736289244","238900","DOW ASPHALT COMPANY",,"5 WOODLAND COURT",,"WAYNE","NJ","07470",,,,,,,"222991965","9736289244",,,,"2010-11-17T11:18:55-0600","STEPHEN GEUSIC",,,,,3,0,0,,0,,0,0,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-11-17","Filed with authorized/valid electronic signature",, "20101203110504P040012090258001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"ED BROWER DAIRY, INC. PROFIT SHARING PLAN","001","1982-06-18","ED BROWER DAIRY, INC.",,,"18196 AVENUE 248",,"EXETER","CA","932219539",,,,,,,"18196 AVENUE 248",,"EXETER","CA","932219539",,,,,,,"952658982","5595621239","112120","ED BROWER DAIRY, INC.",,"18196 AVENUE 248",,"EXETER","CA","932219539",,,,,,,"952658982","5595621239",,,,"2010-11-11T12:33:22-0600","EDWARD BROWER",,,,,17,17,,3,20,,20,16,,,"2A2C2E",,,,"1",,,,,,,,,,"1",,,,,,"FILING_RECEIVED","2010-12-03","Filed with authorized/valid electronic signature",, "20101031165936P030000338083001","2010-01-01","2010-01-31","2",,"0","0","1","1","0","1","1","0","0",,"SENNARI INTERACTIVE LLC 401K PLAN","001","2001-01-01","SENNARI INTERACTIVE, INC.",,,"1915 CARNEGIE LANE","SUITE A","REDONDO BEACH","CA","90278",,,,,,,,,,,,,,,,,,"912015380","3105607430","541511","SENNARI INTERACTIVE, INC.",,"1915 CARNEGIE LANE","SUITE A","REDONDO BEACH","CA","90278",,,,,,,"912015380","3105607430",,,,"2010-10-31T16:59:29-0500","MICHAEL CARTABIANO","2010-10-31T16:59:29-0500","MICHAEL CARTABIANO",,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-10-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101124085611P040001274100001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"JOHN H SEIFERT DMD AND JAY M WYLAM DMD PROFIT SHARING PLAN","002","1988-01-01","JOHN H SEIFERT DMD",,,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"930952133","5035854281","621210","JOHN H SEIFERT DMD",,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"930952133","5035854281",,,,"2010-11-22T20:31:56-0600","JOHN SEIFERT",,,,,14,14,,,14,,14,14,,,"2E2F2J3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-11-24","Filed with authorized/valid electronic signature",, "20101124120655P030001191510001","2010-01-01","2010-10-22","2",,"0","0","1","1","0","1","0","0","0",,"BLOOMSBURG MILLS, INC. EMPLOYEES SAVINGS PLAN","002","1986-07-01","BLOOMSBURG MILLS, INC.",,,"P.O. BOX 455",,"SHAWNEE ON DELAWARE","PA","18356",,,,,,,,,,,,,,,,,,"240789760","5704603560","313000","BLOOMSBURG MILLS, INC.",,"P.O. BOX 455",,"SHAWNEE ON DELAWARE","PA","18356",,,,,,,"240789760","5704603560",,,,"2010-11-24T12:06:51-0600","TODD R. MOYER","2010-11-24T12:06:51-0600","TODD R. MOYER",,,69,0,0,0,0,0,0,0,0,,"2E2J2G2K2T2S",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-11-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101202151204P030002310036001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","1","0",,"LARRY E HAMME PROFIT SHARING PLAN & TRUST","001","2002-01-01","LARRY E HAMME",,,"4125 MONROE STREET",,"TOLEDO","OH","43606",,,,,,,"4125 MONROE STREET",,"TOLEDO","OH","43606",,,,,,,"341767288","4194727330","621112","LARRY E HAMME",,"4125 MONROE STREET",,"TOLEDO","OH","43606",,,,,,,"341767288","4194727330",,,,"2010-12-02T15:10:28-0600","LARRY HAMME",,,,,1,1,,,1,,1,1,,,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-12-02","Filed with authorized/valid electronic signature",, "20101117161541P030000812723001","2010-06-01","2010-07-31","2",,"0","0","1","1","0","0","0","0","0",,"ZENITH ADMINISTRATORS, INC. PRINCIPAL WELFARE PLAN","515","2005-06-01","ZENITH ADMINISTRATORS, INC.",,"JOANN KAMINSKI","18861 90TH AVE","SUITE A","MOKENA","IL","60448",,,,,,,"18861 90TH AVE","SUITE A","MOKENA","IL","60448",,,,,,,"521590516","3126491200","524290","ZENITH ADMINISTRATORS, INC.","JOANN KAMINSKI","18861 90TH AVE","SUITE A","MOKENA","IL","60448",,,,,,,"521590516","3126491200",,,,"2010-11-17T16:15:10-0600","JOANN KAMINSKI",,,,,824,0,,,0,,0,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-11-17","Filed with authorized/valid electronic signature",, "20101116153410P030004434945001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","0","0",,"STANDARD PRINTING & DESIGN 401(K) PLAN","001","1999-01-01","STANDARD PRINTING & DESIGN",,"SCOTT DE GEEST","713 5TH STREET",,"DIKE","IA","50624",,,,,,,,,,,,,,,,,,"421463898","7122623939","812990","STANDARD PRINTING & DESIGN","SCOTT DE GEEST","713 5TH STREET",,"DIKE","IA","50624",,,,,,,"421463898","7122623939",,,,"2010-11-16T15:33:30-0600","SCOTT DE GEEST",,,,,37,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-16","Filed with authorized/valid electronic signature",, "20101116160542P030000299926001","2010-01-01","2010-04-23","2",,"0","0","1","1",,"1",,,,,"WINDRIVER TREES RETIREMENT SAVINGS PLAN","001","2007-10-26","WINDRIVER TREES, LLC",,,"401 TREE FARM DRIVE",,"CARBONDALE","CO","81623",,,,,,,"401 TREE FARM DRIVE",,"CARBONDALE","CO","81623",,,,,,,"841570011","9709630744","238900","WINDRIVER TREES, LLC",,"401 TREE FARM DRIVE",,"CARBONDALE","CO","81623",,,,,,,"841570011","9709630744",,,,"2010-11-16T16:01:03-0600","DAVID MARRS",,,,,19,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-11-16","Filed with authorized/valid electronic signature",, "20101215143032P030003345880001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"DOUBLE DIAMOND SOLUTIONS INC. 401(K) PLAN","001","1998-09-28","DOUBLE DIAMOND SOLUTIONS INC",,,"347 WALNUT LANW",,"LOUISVILLE","CO","80027",,,,,,,,,,,,,,,,,,"841475039","3035613200","541519","DOUBLE DIAMOND SOLUTIONS INC",,"347 WALNUT LANW",,"LOUISVILLE","CO","80027",,,,,,,"841475039","3035613200",,,,"2010-12-15T14:30:09-0600","MARCIA HAGEDORN",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-15","Filed with authorized/valid electronic signature",, "20101213095854P030004012434001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","1","0","0","0",,"DB STRUCTURAL DESIGNS INC 401K PLAN","001","2001-01-01","DB AND W STRUCTURAL DESIGNS INC",,,"8111 BLAIKIE COURT","SUITE D","SARASOTA","FL","34240",,,,,,,,,,,,,,,,,,"650953394","9413420398","541330","DB AND W STRUCTURAL DESIGNS INC",,"8111 BLAIKIE COURT","SUITE D","SARASOTA","FL","34240",,,,,,,"650953394","9413420398",,,,"2010-12-13T09:58:45-0600","DOUGLAS BALL",,,,,6,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-13","Filed with authorized/valid electronic signature",, "20101215112819P040014586865001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"EMBS CORP. PROFIT SHARING PLAN","001","2008-04-24","EMBS CORP.",,,"1700 10TH ST",,"MANHATTAN BEACH","CA","90266",,,,,,,,,,,,,,,,,,"262517196","3103185879","424990","EMBS CORP.",,"1700 10TH ST",,"MANHATTAN BEACH","CA","90266",,,,,,,"262517196","3103185879",,,,"2010-12-15T11:24:49-0600","ERIK HARP",,,,,2,0,0,0,0,0,0,0,0,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-12-15","Filed with authorized/valid electronic signature",, "20101215134840P040003758344001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"INFORMATION TECHNOLOGY","001","2002-02-14","INFORMATION TECHNOLOGY MANAGEMENT",,,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"541829240","7039894974","541512","INFORMATION TECHNOLOGY MANAGEMENT",,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"541829240","7039894974",,,,"2010-12-15T13:48:25-0600","THU PHAM",,,,,0,0,0,,0,,0,,,,"2E2F2G2J2K3E",,,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2010-12-15","Filed with authorized/valid electronic signature",, "20101213090117P030001451991001","2010-05-01","2010-05-31","2",,"0","1","0","1","0","0","0","0","0",,"INGARDIA BROS. PRODUCE, INC. WELFARE BENEFITS PLAN","501","2005-05-01","INGARDIA BROS. PRODUCE, INC.",,,"700 SOUTH HATHAWAY STREET",,"SANTA ANA","CA","92705",,,,,,,,,,,,,,,,,,"953414145","9496451365","424400","INGARDIA BROS. PRODUCE, INC.",,"700 SOUTH HATHAWAY STREET",,"SANTA ANA","CA","92705",,,,,,,"953414145","9496451365",,,,"2010-12-13T08:58:26-0600","SAMUEL INGARDIA",,,,,108,112,0,0,112,,,,,,,"4A4B4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2010-12-13","Filed with authorized/valid electronic signature",, "20101215155217P040001093540001","2010-01-01","2010-02-07","2",,"0","0","1","1","0","1","0","0","0",,"NUVOX COMMUNICATIONS ANCILLARY WELFARE PLANS","502","2005-01-01","NUVOX COMMUNICATIONS, INC.",,,"4001 RODNEY PARHAM ROAD","MS 1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,,,,,,,,,,,,"571072836","5017487000","517000","WINDSTREAM BENEFITS COMMITTEE",,"4001 RODNEY PARHAM ROAD","MS 1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"200792300","5017487000",,,,"2010-12-15T15:52:12-0600","ROBERT R. BOYD",,,,,1540,0,0,0,0,0,0,,,,,"4B4E4F4H4L4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2010-12-15","Filed with authorized/valid electronic signature",, "20101214074859P040001540259001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","0","0",,"DRS. HUTCHINSON & HANNA, P.A. 401(K) PROFIT- SHARING PLAN","001","1999-04-01","DRS. HUTCHINSON & HANNA, P.A.",,,"114 GATEWAY CORPORATE BLVD","SUITE 130","COLUMBIA","SC","29203",,,,,,,,,,,,,,,,,,"582445848","8038659909","621111","DRS. HUTCHINSON & HANNA, P.A.",,"114 GATEWAY CORPORATE BLVD","SUITE 130","COLUMBIA","SC","29203",,,,,,,"582445848","8038659909",,,,"2010-12-14T07:48:52-0600","JOHN HANNA",,,,,7,0,0,0,0,0,0,0,0,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-14","Filed with authorized/valid electronic signature",, "20101221113549P040000820913001","2010-01-01","2010-08-16","2",,"0","0","1","1","0","0","0","0","0",,"DESIGNER BUILDING SOLUTIONS PROFIT SHARING AND 401(K) SAVINGS PLAN","001","1991-01-01","MPI/DBS COLORADO/TEXAS, LLLP",,,"1393 S. SANTA FE DR.",,"DENVER","CO","80223",,,,,,,,,,,,,,,,,,"201286520","3039898895","442299","MPI/DBS COLORADO/TEXAS, LLLP",,"1393 S. SANTA FE DR.",,"DENVER","CO","80223",,,,,,,"201286520","3039898895",,,,"2010-12-21T11:08:55-0600","PETER NEUBERGER",,,,,81,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-21","Filed with authorized/valid electronic signature",, "20101220124537P040000270977001","2010-01-01","2010-06-25","2",,"0","0","1","1","0","1","0","0","0",,"AMERICAN STERLING CORPORATION 401(K) PROFIT SHARING PLAN & TRUST","002","1983-01-01","AMERICAN STERLING CORPORATION",,,"28202 CABOT ROAD SUITE 640",,"LAGUNA NIGUEL","CA","926771260",,,,,,,,,,,,,,,,,,"330072581","9496161033","551112","AMERICAN STERLING CORPORATION",,"28202 CABOT ROAD SUITE 640",,"LAGUNA NIGUEL","CA","926771260",,,,,,,"330072581","9496161033",,,,"2010-12-20T12:45:29-0600","LAWRENCE K. DODGE","2010-12-20T12:45:29-0600","LAWRENCE K DODGE",,,20,0,0,0,0,0,0,0,0,,"2E2F2G2H2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101208091658P040002253345001","2010-01-01","2010-02-26","2",,"0","0","1","1",,"1",,,,,"E-I-M COMPANY, INC. RETIREMENT PLAN","001","1985-07-01","E-I-M COMPANY, INC.",,,"13840 PIKE ROAD",,"MISSOURI CITY","TX","77489",,,,,,,"13840 PIKE ROAD",,"MISSOURI CITY","TX","77489",,,,,,,"741090379","2812613853","334500","HOA DIEP",,"13840 PIKE ROAD",,"MISSOURI CITY","TX","77489",,,,,,,"741090379","2812613853",,,,"2010-12-08T09:15:53-0600","HOA DIEP",,,,,179,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2010-12-08","Filed with authorized/valid electronic signature",, "20101220093622P040000034690001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","0","1",,"ADVOCATE TRANSPORTATION, LLC 401 (K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","ADVOCATE TRANSPORTATION, LLC",,,,,,,,,,,,,,,,,,,,,,,,,"202681839","9136450689","812990","ADVOCATE TRANSPORTATION, LLC",,,,,,,,,,,,,"202681839","9136450689",,,,"2010-12-20T09:35:51-0600","KELLY BOYER",,,,,2,1,0,0,1,0,1,0,0,0,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-12-20","Filed with authorized/valid electronic signature",, "20101216084210P040016143569001","1999-01-01","1999-12-31","2",,"0","0","0","0","0","0","0","1","0",,"AUBURN GEAR, INC. HEALTH AND WELFARE BENEFITS PLAN","501","1988-01-01","AUBURN GEAR, INC.",,,"400 E AUBURN DR.",,"AUBURN","IN","46706",,,,,,,,,,,,,,,,,,"311046149","2609253200","336990","AUBURN GEAR, INC.",,"400 E AUBURN DR.",,"AUBURN","IN","46706",,,,,,,"311046149","2609253200",,,,"2010-12-16T08:42:05-0600","JATKACZ",,,,,487,286,201,0,487,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2010-12-16","Filed with authorized/valid electronic signature",, "20101203133857P040002387556001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"NATIONAL SYSTEMS RESOURCES INC 401K PROFIT SHARING PLAN","001","2006-01-01","NATIONAL SYSTEMS RESOURCES INC",,,"12 CUPSAW DRIVE",,"RINGWOOD","NJ","07456",,,,,,,,,,,,,,,,,,"133429291","9739627456","541519","NATIONAL SYSTEMS RESOURCES INC",,"12 CUPSAW DRIVE",,"RINGWOOD","NJ","07456",,,,,,,"133429291","9739627456",,,,"2010-12-03T13:38:50-0600","BARBARA ZACH","2010-12-03T13:38:50-0600","BARBARA ZACH",,,11,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101216155653P030002216679001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"LUNNY GRADING & PAVING, INC. 401(K)","001","2000-01-01","LUNNY GRADING & PAVING, INC.",,,"17300 SIR FRANCIS DRAKE BLVD",,"INVERNESS","CA","949379728",,,,,,,"5400 NICASIO VALLEY",,"NICASIO","CA","94946",,,,,,,"680208628","4156629800","238900","LUNNY GRADING & PAVING, INC.",,"17300 SIR FRANCIS DRAKE BLVD",,"INVERNESS","CA","949379728",,,,,,,"680208628","4156629800",,,,,,"2010-12-16T15:53:59-0600","NANCY LUNNY",,,23,21,,1,22,,22,22,1,,"2A2E2F2G2J2K",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-12-16",,,"Filed with authorized/valid electronic signature" "20101223103205P040000574791001","2003-01-01","2003-12-31","2",,"1","0","0","0","0","0","0","1","0",,"ISRAEL DISCOUNT BANK OF NEW YORK SEVERANCE PLAN","506","1997-01-01","ISRAEL DISCOUNT BANK OF NEW YORK",,,"511 5TH AVENUE",,"NEW YORK","NY","10017",,,,,,,"511 5TH AVENUE",,"NEW YORK","NY","10017",,,,,,,"135596781","2125518003","522110","ISRAEL DISCOUNT BANK OF NEW YORK",,"511 5TH AVENUE",,"NEW YORK","NY","10017",,,,,,,"135596781","2125518003",,,,"2010-12-23T10:21:14-0600","AUSTIN STONITSCH","2010-12-23T10:10:25-0600","THOMAS KEHRER",,,540,564,35,,599,,599,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2010-12-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101217080757P030001668757001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"MAYBERRY HOMES, INC. 401 (K) PROFIT SHARING PLAN","002","2006-01-01","MAYBERRY HOMES, INC",,,"15851 US 27 SUITE 41",,"LANSING","MI","48906",,,,,,,,,,,,,,,,,,"320015646","5173715000","531190","MAYBERRY HOMES, INC",,"15851 US 27 SUITE 41",,"LANSING","MI","48906",,,,,,,"320015646","5173715000",,,,"2010-12-17T08:07:52-0600","ROBERT SCHROEDER","2010-12-17T08:07:52-0600","ROBERT SCHROEDER",,,8,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101223113039P030008303696001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","1","0","0","0",,"NATIXIS NY BRANCH EMPLOYEE WELFARE PLAN","502","1976-12-01","NATIXIS NY BRANCH",,,"1251 AVENUE OF THE AMERICAS","34TH FLOOR","NEW YORK","NY","10020",,,,,,,,,,,,,,,,,,"522257882","2128725000","522110","NATIXIS NY BRANCH",,"1251 AVENUE OF THE AMERICAS","34TH FLOOR","NEW YORK","NY","10020",,,,,,,"522257882","2128725000",,,,"2010-12-23T11:30:33-0600","WENDY UVINO",,,,,163,0,0,0,0,,,,,,,"4B4E4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2010-12-23","Filed with authorized/valid electronic signature",, "20101217120656P040001914151001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"DELPHI HEALTH CARE SAVINGS & RETIREMENT PLAN","001","2006-05-01","RECEIVERSHIP OF DELPHI HEALTH CARE, LLC",,,"4210 N. OAKLAND AVENUE",,"SHOREWOOD","WI","532112042",,,,,,,,,,,,,,,,,,"200172046","4142711020","621900","RECEIVERSHIP OF DELPHI HEALTH CARE, LLC",,"4210 N. OAKLAND AVENUE",,"SHOREWOOD","WI","532112042",,,,,,,"200172046","4142711020",,,,"2010-12-17T12:05:34-0600","JERRY HARRIS",,,,,17,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-12-17","Filed with authorized/valid electronic signature",, "20101222123049P030000260802001","2010-01-01","2010-12-22","2",,"0","0","1","1","0","0","0","0","0",,"CENTRAL FLORIDA TRUSS, INC. 401(K) PLAN","001","2006-01-01","CENTRAL FLORIDA TRUSS, INC.",,,"1500 HWY 17N",,"BARTOW","FL","33830",,,,,,,,,,,,,,,,,,"591761224","8635330821","238100","CENTRAL FLORIDA TRUSS, INC.",,"1500 HWY 17N",,"BARTOW","FL","33830",,,,,,,"591761224","8635330821",,,,"2010-12-22T12:25:59-0600","SCOTT NEWELL",,,,,24,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-12-22","Filed with authorized/valid electronic signature",, "20101228093924P030000759234001","2010-01-01","2010-05-07","2",,"0","0","1","1","0","0","0","0","0",,"SUPER STEEL PRODUCTS CORP HEALTH & WELFARE PLAN","501","1977-02-01","SUPER STEEL PRODUCTS CORPORATION",,,"7900 WEST TOWER AVENUE",,"MILWAUKEE","WI","53223",,,,,,,,,,,,,,,,,,"391052494","4143554800","331200","SUPER STEEL PRODUCTS CORPORATION",,"7900 WEST TOWER AVENUE",,"MILWAUKEE","WI","53223",,,,,,,"391052494","4143554800",,,,"2010-12-28T09:39:03-0600","ROSA FIGUEROA",,,,,325,0,0,0,0,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2010-12-28","Filed with authorized/valid electronic signature",, "20101217082446P040001241398001","2005-01-01","2005-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CASUAL MALE RETAIL GROUP, INC. LIFE AND DISABILITY INSURANCE PLANS","504","2003-01-01","CASUAL MALE RETAIL GROUP, INC.",,,"555 TURNPIKE STREET",,"CANTON","MA","02021",,,,,,,,,,,,,,,,,,"042623104","7818289300","448210","CASUAL MALE RETAIL GROUP, INC.",,"555 TURNPIKE STREET",,"CANTON","MA","02021",,,,,,,"042623104","7818289300",,,,"2010-12-17T08:23:35-0600","ALAN F. TEIXEIRA","2010-12-17T08:23:35-0600","ALAN F. TEIXEIRA",,,1878,2191,18,0,2209,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2010-12-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101223174635P040002089073001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"LEARNING IS FUN 401K PLAN","001","2001-01-01","LEARNING IS FUN",,,"204 S DECATUR BLVD",,"LAS VEGAS","NV","89107",,,,,,,,,,,,,,,,,,"880127461","7028765437","451211","LEARNING IS FUN",,"204 S DECATUR BLVD",,"LAS VEGAS","NV","89107",,,,,,,"880127461","7028765437",,,,"2010-12-23T17:46:27-0600","CHARLES IVY",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-23","Filed with authorized/valid electronic signature",, "20110107085545P040010088961001","2008-02-01","2009-01-31","2",,"0","0","1","0","0","0","0","0","0",,"PLANK IMPLEMENT 401 PLAN","001","1995-04-24","PLANK IMPLEMENT",,"CHARLES PLANK","PO BOX 106",,"COLUMBUS JUNCTION","IA","52738",,,,,,,"PO BOX 106",,"COLUMBUS JUNCTION","IA","52738",,,,,,,"421039219","3197282424","115110","PLANK IMPLEMENT","CHARLES PLANK","PO BOX 106",,"COLUMBUS JUNCTION","IA","52738",,,,,,,"421039219","3197282424",,,,"2011-01-07T08:46:34-0600","JEANNE DAVIS",,,,,6,,6,,6,,6,,,,"2C2E2G2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-07","Filed with authorized/valid electronic signature",, "20110107001336P030009799569001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BYZAN TECHNOLOGIES, INC. 401K PLAN","001","2007-01-01","BYZAN TECHNOLOGIES, INC.",,,"1900 S. HIGHLAND AVENUE, SUITE 105",,"LOMBARD","IL","60148",,,,,,,"1900 S. HIGHLAND AVENUE, SUITE 105",,"LOMBARD","IL","60148",,,,,,,"364194260","6306520450","541511","BYZAN TECHNOLOGIES, INC.",,"1900 S. HIGHLAND AVENUE, SUITE 105",,"LOMBARD","IL","60148",,,,,,,"364194260","6306520450",,,,"2011-01-07T00:13:22-0600","SHALINI GUPTA",,,,,3,2,0,0,2,0,2,1,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-01-07","Filed with authorized/valid electronic signature",, "20110106114335P030009512737001","2008-01-01","2008-12-31","2",,"0","1","1","0","0","0","0","0","0",,"ST. VINCENT'S SERVICES, INC. 403(B) PLAN","003","2007-06-01","ST. VINCENT'S SERVICES, INC.",,,"66 BOERUM PLACE",,"BROOKLYN","NY","11201",,,,,,,"66 BOERUM PLACE",,"BROOKLYN","NY","11201",,,,,,,"111631823","7184222240","624100","ST. VINCENT'S SERVICES, INC.",,"66 BOERUM PLACE",,"BROOKLYN","NY","11201",,,,,,,"111631823","7184222240",,,,"2011-01-06T10:39:30-0600","MARK KANTER",,,,,0,0,0,0,0,0,0,0,0,,"2L2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-01-06","Filed with authorized/valid electronic signature",, "20110105105719P030008918753001","2010-01-01","2010-02-11","2",,"0","1","1","1","0","0","0","1","0",,"TSYS MONEY PURCHASE PENSION PLAN","009","2008-01-01","TOTAL SYSTEM SERVICES INC",,"CY HARRISON","P O BOX 2567",,"COLUMBUS","GA","319022567",,,,,,,"ONE TSYS WAY",,"COLUMBUS","GA","319022567",,,,,,,"581493818","7066444930","518210","TOTAL SYSTEM SERVICES, INC","CY HARRISON","P O BOX 2567",,"COLUMBUS","GA","319022567",,,,,,,"581493818","7066444930",,,,"2011-01-05T10:56:44-0600","CY HARRISON","2011-01-05T10:56:45-0600","CY HARRISON",,,4505,0,0,0,0,0,0,0,0,0,"2C3H",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-01-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110105141112P030009002161001","2003-02-01","2004-01-31","2",,"0","0","0","0","0","0","0","1","0",,"NYSARC, INC. SUFFOLK CHAPTER GROUP WELFARE PLAN","501","2002-02-01","NYSARC, INC. - SUFFOLK CHAPTER",,,"2900 VETERANS MEMORIAL HWY",,"BOHEMIA","NY","11716",,,,,,,,,,,,,,,,,,"111845294","6315850100","611000","NYSARC, INC. - SUFFOLK CHAPTER",,"2900 VETERANS MEMORIAL HWY",,"BOHEMIA","NY","11716",,,,,,,"111845294","6315850100",,,,"2011-01-05T14:04:10-0600","WILLIAM LEONARDI",,,,,710,713,0,0,713,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-01-05","Filed with authorized/valid electronic signature",, "20101230105649P040005769585001","2010-01-01","2010-06-30","2",,"0","0","0","1","0","0","0","0","0",,"PHOENIX HOUSE FOUNDATION EMPLOYEE BENEFIT PLANS","520","1998-01-01","PHOENIX HOUSE FOUNDATION",,,"164 WEST 74TH STREET",,"NEW YORK","NY","10023",,,,,,,"164 WEST 74TH STREET",,"NEW YORK","NY","10023",,,,,,,"237013149","2125955810","624100","PHOENIX HOUSE FOUNDATION",,"164 WEST 74TH STREET",,"NEW YORK","NY","10023",,,,,,,"237013149","2125955810",,,,"2010-12-30T10:45:46-0600","CLYDE RUSH","2010-12-30T10:45:46-0600","CLYDE RUSH",,,845,802,35,43,880,0,880,0,0,,,"4A4B4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2010-12-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20101229130605P030023586912001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"WOLFORD CONTRACTORS SUPPLY, LLC 401(K) PLAN","001","2007-01-01","WOLFORD CONTRACTORS SUPPLY, LLC",,,"6120 MACCORKLE AVENUE",,"ST. ALBANS","WV","25177",,,,,,,,,,,,,,,,,,"550774634","3047683900","423300","WOLFORD CONTRACTORS SUPPLY, LLC",,"6120 MACCORKLE AVENUE",,"ST. ALBANS","WV","25177",,,,,,,"550774634","3047683900",,,,"2010-12-29T13:05:32-0600","JAY WOLFORD",,,,,11,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-12-29","Filed with authorized/valid electronic signature",, "20110104121032P040001297154001","2010-04-01","2010-11-25","2",,"0","0","1","1","0","0","0","0","0",,"CASTLE FUNDING CORP. PROFIT SHARING PLAN","001","1989-04-01","CASTLE FUNDING CORP.",,,"28310 ROADSIDE DR, SUITE 237",,"AGOURA HILLS","CA","913014951",,,,,,,,,,,,,,,,,,"954231409","8188749999","522300","CASTLE FUNDING CORP.",,"28310 ROADSIDE DR, SUITE 237",,"AGOURA HILLS","CA","913014951",,,,,,,"954231409","8188749999",,,,"2011-01-04T12:10:30-0600","ROBERT NEILSON",,,,,2,0,0,0,0,0,0,0,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-04","Filed with authorized/valid electronic signature",, "20110104133631P030038784112001","2010-01-01","2010-11-01","2",,"0","0","1","1","0","0","0","0","0",,"JOHN SERETTI CHEVROLET, INC. RETIREMENT PLAN","002","1984-01-01","JOHN SERETTI CHEVROLET, INC.",,,"P.O. BOX 15703",,"PITTSBURGH","PA","15244",,,,,,,"P.O. BOX 15703",,"PITTSBURGH","PA","15244",,,,,,,"251419431","4123031627","441110","JOHN SERETTI CHEVROLET, INC.",,"P.O. BOX 15703",,"PITTSBURGH","PA","15244",,,,,,,"251419431","4123031627",,,,"2011-01-03T15:05:43-0600","JOHN SERETTI",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-04","Filed with authorized/valid electronic signature",, "20110106093906P040002689751001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","1","0","0","0",,"SALARY CONVERSION","509","1987-08-01","ADVOCATE HEALTH CARE NETWORK",,,"2025 WINDSOR DRIVE",,"OAK BROOK","IL","605231586",,,,,,,,,,,,,,,,,,"362167779","6305729393","622000","ADVOCATE HEALTH CARE NETWORK",,"2025 WINDSOR DRIVE",,"OAK BROOK","IL","605231586",,,,,,,"362167779","6305729393",,,,"2011-01-06T09:39:00-0600","BEN GRIGALIUNAS",,,,,548,0,0,0,0,,0,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-01-06","Filed with authorized/valid electronic signature",, "20110106093937P040043962400001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","1","0","0","0",,"BROMENN EMPLOYEE HMO PLAN","520","2000-01-01","ADVOCATE HEALTH CARE NETWORK",,,"2025 WINDSOR DRIVE",,"OAK BROOK","IL","605231586",,,,,,,,,,,,,,,,,,"362167779","6305729393","622000","ADVOCATE HEALTH CARE NETWORK",,"2025 WINDSOR DRIVE",,"OAK BROOK","IL","605231586",,,,,,,"362167779","6305729393",,,,"2011-01-06T09:39:31-0600","BEN GRIGALIUNAS",,,,,395,0,0,0,0,,0,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-06","Filed with authorized/valid electronic signature",, "20110105151830P040042030064001","2007-01-01","2007-03-31","2",,"1","0","0","1","0","0","0","1","0",,"THE MIZUHO SECURITIES USA INC. SEVERANCE PLAN","502","2007-01-01","MIZUHO SECURITIES USA INC.",,,"111 RIVER STREET","SUITE 1100","HOBOKEN","NJ","07030",,,,,,,"111 RIVER STREET","SUITE 1100","HOBOKEN","NJ","07030",,,,,,,"362880742","2016261248","523120","MIZUHO SECURITIES USA INC.",,"111 RIVER STREET","SUITE 1100","HOBOKEN","NJ","07030",,,,,,,"362880742","2016261248",,,,"2011-01-05T15:10:54-0600","DAVID KRONENBERG",,,,,154,168,0,0,168,,168,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-01-05","Filed with authorized/valid electronic signature",, "20110103102319P040001212338001","2001-09-01","2002-08-31","2",,"0","0","0","0","0","0","0","1","0",,"R R YALAMANCHI MD PC TARGET BENEFIT PLAN","004","1987-09-01","R R YALAMANCHI MD PC",,,"13300 NORTHLINE ROAD",,"SOUTHGATE","MI","48195",,,,,,,,,,,,,,,,,,"382334954","7342827353","621111","R R YALAMANCHI MD PC",,"13300 NORTHLINE ROAD",,"SOUTHGATE","MI","48195",,,,,,,"382334954","7342827353",,,,"2011-01-03T10:23:19-0600","R R YALAMANCHI",,,,,4,5,0,0,5,0,5,5,0,,"2B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","0","0","0","0","FILING_RECEIVED","2011-01-03","Filed with authorized/valid electronic signature",, "20110103103755P040007909969001","2007-09-01","2008-08-31","2",,"0","0","0","0","0","0","0","1","0",,"R R YALAMANCHI MD PC TARGET BENEFIT PLAN","004","1987-09-01","R R YALAMANCHI MD PC",,,"13300 NORTHLINE ROAD",,"SOUTHGATE","MI","48195",,,,,,,,,,,,,,,,,,"382334954","7342827353","621111","SAME",,"13300 NORTHLINE ROAD",,"SOUTHGATE","MI","48195",,,,,,,"382334954","7342827353",,,,"2011-01-03T10:37:54-0600","R R YALAMANCHI",,,,,5,4,0,1,5,0,4,4,1,,"2B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-03","Filed with authorized/valid electronic signature",, "20110110171912P040011962913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENGINEERING DEVELOPMENT ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","001","1990-01-01","ENGINEERING DEVELOPMENT ASSOCIATES, INC.",,,"POST OFFICE BOX 1829",,"SAN LUIS OBISPO","CA","934061829",,,,,,,"1998 SANTA BARBARA STREET, STE. 200",,"SAN LUIS OBISPO","CA","93401",,,,,,,"770074533","8055498658","541330","ENGINEERING DEVELOPMENT ASSOCIATES, INC.",,"POST OFFICE BOX 1829",,"SAN LUIS OBISPO","CA","934061829",,,,,,,"770074533","8055498658",,,,"2011-01-10T17:19:00-0600","DOUGLAS S. HENDRY",,,,,26,18,0,4,22,0,22,20,1,,"2E2F2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-01-10","Filed with authorized/valid electronic signature",, "20110103090541P040007876017001","2010-01-01","2010-12-09","2",,"0","0","1","1","0","0","0","0","0",,"LAKE POINT NURSING CENTER 401(K) PLAN","001","1998-02-01","LAKE POINT NURSING CENTER",,,"901 LAKEPOINT DRIVE",,"AUGUSTA","KS","670102423",,,,,,,,,,,,,,,,,,"481189799","3167756333","623000","LAKE POINT NURSING CENTER",,"901 LAKEPOINT DRIVE",,"AUGUSTA","KS","670102423",,,,,,,"481189799","3167756333",,,,"2010-12-24T11:27:37-0600","KEVIN UNREIN",,,,,100,0,0,0,0,0,0,0,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-03","Filed with authorized/valid electronic signature",, "20110111172146P040057411264001","2010-06-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"HOSPITALITY MANAGEMENT RECRUITERS, INC. RETIREMENT PROFIT SHARING PLAN","001","2004-06-01","HOSPITALITY MANAGEMENT RECRUITERS, INC.",,,"3410 STONE CREEK ROAD",,"BOISE","ID","83703",,,,,,,,,,,,,,,,,,"820513516","2083951280","541990","HOSPITALITY MANAGEMENT RECRUITERS, INC.",,"3410 STONE CREEK ROAD",,"BOISE","ID","83703",,,,,,,"820513516","2083951280",,,,"2011-01-11T17:14:49-0600","VIC HAUS",,,,,2,0,0,0,0,0,0,0,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-11","Filed with authorized/valid electronic signature",, "20110103142414P030007867137001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"CENTER FOR STRATEGIC AND INTERNATIONAL STUDIES, INC - BASIC LIFE","506","1987-07-01","CENTER FOR STRATEGIC AND INTERNATIONAL STUDIES",,"ANNE COSTELLO","1800 K STREET NW",,"WASHINGTON DC","DC","20006",,,,,,,"1800 K STREET NW",,"WASHINGTON DC","DC","20006",,,,,,,"521501082","2028870200","831000","CENTER FOR STRATEGIC AND INTERNATIONAL STUDIES","ANNE COSTELLO","1800 K STREET NW",,"WASHINGTON DC","DC","20006",,,,,,,"521501082","2028870200",,,,"2011-01-03T14:15:39-0600","ANNE COSTELLO",,,,,198,187,,,187,,187,,,,,"4B","1",,,,"1",,,,,,,"1",,"1","1",,,,"FILING_RECEIVED","2011-01-03","Filed with authorized/valid electronic signature",, "20110110152824P030011758113001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"JOHN M. GREEN, JR., P.A. PROFIT SHARING PLAN","001","1990-02-01","JOHN M. GREEN, JR., P.A.",,,"125 NE 1ST AVE STE 2",,"OCALA","FL","344706675",,,,,,,,,,,,,,,,,,"810554460","3527329252","541110","JOHN M. GREEN, JR., P.A.",,"125 NE 1ST AVE STE 2",,"OCALA","FL","344706675",,,,,,,"810554460","3527329252",,,,"2011-01-10T15:22:01-0600","JOHN M. GREEN, JR.",,,,,9,0,0,0,0,0,0,0,,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-10","Filed with authorized/valid electronic signature",, "20110118123800P040074787360001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","1","0","0","0",,"GOSHEN RUBBER COMPANY, INC. GRC EMPLOYEES 401K SAVINGS PLAN","145","1984-07-01","PARKER HANNIFIN CORPORATION",,"MICHELLE FOX","6035 PARKLAND BOULEVARD",,"CLEVELAND","OH","441244141",,,,,,,,,,,,,,,,,,"340451060","2168963000","333200","PARKER HANNIFIN CORPOARTION","MICHELLE FOX","6350 PARKLAND BOULEVARD",,"CLEVELAND","OH","441244141",,,,,,,"340451060","2168963000",,,,"2011-01-18T12:37:59-0600","CRAIG J. MOCKLER",,,,,290,0,0,0,0,0,0,0,0,,"2G2J2K3H",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-01-18","Filed with authorized/valid electronic signature",, "20110114121516P030002242466001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"POLE MAINTENANCE COMPANY PROFIT SHARING PLAN AND TRUST","001","1991-01-01","POLE MAINTENANCE CO LLC",,,"P.O. BOX 707",,"COLUMBUS","NE","686020707",,,,,,,,,,,,,,,,,,"320020077","4025632663","238900","POLE MAINTENANCE CO LLC",,"P.O. BOX 707",,"COLUMBUS","NE","686020707",,,,,,,"320020077","4025632663",,,,"2011-01-13T15:54:08-0600","WILLIAM ABBOTT",,,,,33,0,0,0,0,0,0,,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-14","Filed with authorized/valid electronic signature",, "20110118091506P040016103041001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"T.H. SMITH & THOMAS K. SMITH, O.D., P.C. PS TRUST","001","1981-05-01","T H SMITH AND THOMAS K SMITH OD PC",,,"592 NORTH MAIN STREET",,"MCKENZIE","TN","38201",,,,,,,,,,,,,,,,,,"621109048","7313522020","621320","T H SMITH AND THOMAS K SMITH OD PC",,"592 NORTH MAIN STREET",,"MCKENZIE","TN","38201",,,,,,,"621109048","7313522020",,,,"2011-01-18T09:02:32-0600","THOMAS SMITH",,,,,6,0,0,0,0,0,0,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-18","Filed with authorized/valid electronic signature",, "20110117071813P030015509457001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","0","0",,"P & H SERVICE, INC. 401K PLAN","001","1993-07-01","P & H SERVICE, INC.",,"C/O CPI-QPC, INC.","PO BOX 1167",,"GREAT BEND","KS","675301167",,,,,,,,,,,,,,,,,,"560902198","6207938473","238220","P & H SERVICE, INC.","C/O CPI-QPC, INC.","PO BOX 1167",,"GREAT BEND","KS","675301167",,,,,,,"560902198","6207938473",,,,"2011-01-17T07:05:20-0600","RICHARD BARREAU",,,,,22,19,0,2,21,0,21,7,0,,"2E2F2G2J2K3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-17","Filed with authorized/valid electronic signature",, "20110118113428P030016155265001","2008-04-01","2009-03-31","2",,"0","1","0","0","0","0","0","1","0",,"BOGARD CONSTRUCTION, INC. 401K PLAN","001","1990-04-01","BOGARD CONSTRUCTION, INC.",,,"350-A CORAL STREET",,"SANTA CRUZ","CA","950602138",,,,,,,,,,,,,,,,,,"770279204","8314268191","236200","BOGARD CONSTRUCTION, INC.",,"350-A CORAL STREET",,"SANTA CRUZ","CA","950602138",,,,,,,"770279204","8314268191",,,,"2011-01-18T11:34:28-0600","VICTOR F. BOGAARD III",,,,,29,13,0,16,29,0,29,25,0,,"2E2J2F2G3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-18","Filed with authorized/valid electronic signature",, "20110117115837P030002503778001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"CARLE FOUNDATION LONG TERM DISABILITY INSURANCE","505","1993-12-01","CARLE FOUNDATION HOSPITAL",,,"C/O LORI JONES",,"URBANA","IL","61801",,,,,,,"611 WEST PARK STREET",,"URBANA","IL","61801",,,,,,,"371119538","2173833138","622000","CARLE FOUNDATION HOSPITAL",,"611 WEST PARK STREET",,"URBANA","IL","61801",,,,,,,"371119538","2173833138",,,,"2011-01-17T11:58:33-0600","CARLE FOUNDATION BY PHILIP L. KUBOW","2011-01-17T11:58:33-0600","CARLE FOUNDATION BY PHILIP L. KUBOW",,,2298,0,0,0,0,,,,,,,"4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110114145836P030014018097001","2006-07-01","2007-06-30","2",,"0","0","0","0","0","0","0","1","0",,"AMBROSIA PROFIT SHARING PLAN","001","1976-06-12","AMBROSIA COAL AND CONSTRUCTION CO.",,,"ROUTES 422 AND 551",,"EDINBURG","PA","16116",,,,,,,,,,,,,,,,,,"250954860","7246545537","212320","AMBROSIA COAL AND CONSTRUCTION CO.",,"ROUTES 422 AND 551",,"EDINBURG","PA","16116",,,,,,,"250954860","7246545537",,,,"2011-01-14T14:55:25-0600","CARMEN W. SHICK",,,,,37,15,0,18,33,0,33,29,0,,"2E3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-14","Filed with authorized/valid electronic signature",, "20110118082610P040016086481001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MOD TECH INDUSTRIES, INC. 401K PROFIT SHARING PLAN AND TRUST","001","1990-07-01","MOD TECH INDUSTRIES, INC.",,,"PO BOX 701","1523 INDUSTRIAL AVENUE","SHAWANO","WI","541660701",,,,,,,,,,,,,,,,,,"391467257","7155244510","333200","MOD TECH INDUSTRIES, INC.",,"PO BOX 701",,"SHAWANO","WI","541660701",,,,,,,"391467257","7155244510",,,,"2011-01-18T08:22:38-0600","JAMES LACY",,,,,35,21,0,4,25,0,25,17,1,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-01-18","Filed with authorized/valid electronic signature",, "20110119093023P030016666993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARGO MEDICAL, INC. 401K PROFIT SHARING PLAN","001","2005-01-01","ARGO MEDICAL, INC.",,,"3501 CANONGATE WAY",,"FORT SMITH","AR","729089390",,,,,,,,,,,,,,,,,,"200872118","4796462238","424210","ARGO MEDICAL, INC.",,"3501 CANONGATE WAY",,"FORT SMITH","AR","729089390",,,,,,,"200872118","4796462238",,,,"2011-01-19T09:30:04-0600","BRET HOOD",,,,,3,4,0,0,4,0,4,4,,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",, "20110119093043P040004765591001","2010-04-01","2010-06-30","2",,"0","0","0","1","0","0","0","0","0",,"VIRGINIA COMMERCE BANK DENTAL PLAN","503","1998-07-01","VIRGINIA COMMERCE BANK",,"PATRICIA SMITH","14201 SULLYFIELD CIR.","STE. 500","CHANTILLY","VA","20151",,,,,,,"14201 SULLYFIELD CIR.","STE. 500","CHANTILLY","VA","20151",,,,,,,"546249374","7036336120","522110","VIRGINIA COMMERCE BANK","PATRICIA SMITH","14201 SULLYFIELD CIR.","STE. 500","CHANTILLY","VA","20151",,,,,,,"546249374","7036336120",,,,"2011-01-19T09:30:14-0600","PATRICIA SMITH",,,,,226,227,4,,231,,231,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",, "20110124075953P040089694320001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"FULL CIRCLE PRODUCTIONS, LLC 401(K) PLAN","001","2006-01-01","FULL CIRCLE PRODUCTIONS, LLC",,,"4421 TREE HAVEN DRIVE, NE",,"ATLANTA","GA","30342",,,,,,,,,,,,,,,,,,"582426835","4042851731","531390","FULL CIRCLE PRODUCTIONS, LLC",,"4421 TREE HAVEN DRIVE, NE",,"ATLANTA","GA","30342",,,,,,,"582426835","4042851731",,,,"2011-01-24T07:59:52-0600","MR. RAYMOND P. BOULEY",,,,,18,0,0,0,0,0,0,0,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-24","Filed with authorized/valid electronic signature",, "20110125132838P040019978993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FAIRMONT FIRE SYSTEMS, INC. MONEY PURCHASE PLAN","002","1997-10-01","FAIRMONT FIRE SYSTEMS, INC.",,,"209 DOWNTOWN PLZ",,"FAIRMONT","MN","560311728",,,,,,,,,,,,,,,,,,"411587528","5072359860","454390","FAIRMONT FIRE SYSTEMS, INC.",,"209 DOWNTOWN PLZ",,"FAIRMONT","MN","560311728",,,,,,,"411587528","5072359860",,,,"2011-01-25T13:23:40-0600","DONALD ANDERSON",,,,,4,3,0,0,3,0,3,3,0,,"3D2C2F2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-25","Filed with authorized/valid electronic signature",, "20110126122843P040003157922001","2010-10-22","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"A & J KATZEN INC. 401K PROFIT SHARING PLAN","001","2010-10-22","A & J KATZEN INC.",,,"4775 VISTA DR.",,"LOOMIS","CA","95650",,,,,,,,,,,,,,,,,,"273742597","9167657355","713900","A & J KATZEN INC.",,"4775 VISTA DR.",,"LOOMIS","CA","95650",,,,,,,"273742597","9167657355",,,,"2011-01-26T12:26:50-0600","ALLAN R. KATZEN",,,,,1,1,0,0,1,0,1,1,0,,"2E2H2J2K2S3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",, "20110119153117P040002577250001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"I & C ENGINEERING 401K PROFIT SHARING PLAN","003","1991-01-01","I & C ENGINEERING CO., INC",,,"253 LOW ST, SUITE #212",,"NEWBURYPORT","MA","01950",,,,,,,"253 LOW ST, SUITE #212",,"NEWBURYPORT","MA","01950",,,,,,,"043059259","9784652220","812990","I & C ENGINEERING CO., INC",,"253 LOW ST, SUITE #212",,"NEWBURYPORT","MA","01950",,,,,,,"043059259","9784652220",,,,"2011-01-19T15:25:44-0600","FRANK HARRISON",,,,,6,6,0,0,6,0,6,6,0,0,"3D2E2F2G2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",, "20110125091125P040019872769001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"WOLVERINE MUTUAL INSURANCE COMPANY PROFIT SHARING PLAN & TRUST","003","1999-01-01","WOLVERINE MUTUAL INSURANCE COMPANY",,,"PO BOX 530","1 WOLVERINE WAY M-62 EAST","DOWAGIAC","MI","490470530",,,,,,,"PO BOX 530","1 WOLVERINE WAY M-62 EAST","DOWAGIAC","MI","490470530",,,,,,,"381184730","2697823451","524150","WOLVERINE MUTUAL INSURANCE COMPANY",,"PO BOX 530","1 WOLVERINE WAY M-62 EAST","DOWAGIAC","MI","490470530",,,,,,,"381184730","2697823451",,,,"2011-01-25T08:59:38-0600","ROBERT GOTTLIEB",,,,,54,49,0,4,53,0,53,51,1,,"2A2E3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-01-25","Filed with authorized/valid electronic signature",, "20110126115841P040020538625001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","1","0","0","0",,"IMPROVEMENT GROUP, INC. DEFINED BENEFIT PLAN","001","2004-01-01","IMPROVEMENT GROUP, INC.",,,"3801 NORTH CAPITAL TEXAS HIGHWAY","EAST 240, SUITE 221","AUSTIN","TX","78746",,,,,,,,,,,,,,,,,,"742719598","5129229281","541513","IMPROVEMENT GROUP, INC.",,"3801 NORTH CAPITAL TEXAS HIGHWAY","EAST 240, SUITE 221","AUSTIN","TX","78746",,,,,,,"742719598","5129229281",,,,"2011-01-26T11:48:21-0600","LUIS CONTRERAS",,,,,1,0,0,0,0,0,0,,0,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",, "20110119084833P030076408304001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"CHART COOLER SERVICE EMPLOYEE SAVINGS PLAN","001","2003-11-01","CHART COOLER SERVICE CO, INC",,,"ONE INFINITY CORPORATE CENTRE",,"GARFIELD HEIGHTS","OH","44125",,,,,,,,,,,,,,,,,,"341957885","4407531490","331200","CHART COOLER SERVICE CO, INC",,"ONE INFINITY CORPORATE CENTRE",,"GARFIELD HEIGHTS","OH","44125",,,,,,,"341957885","4407531490",,,,"2011-01-19T08:45:20-0600","AMY POWERS",,,,,65,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",, "20110124083642P040019335729001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"KOENIG EQUIPMENT, INC. EMPLOYEE BENEFIT PLAN","501","1987-11-27","KOENIG EQUIPMENT, INC.",,,"15213 STATE ROUTE 274",,"BOTKINS","OH","45302",,,,,,,,,,,,,,,,,,"341152820","9376936236","444130","KOENIG EQUIPMENT, INC.",,"15213 STATE ROUTE 274",,"BOTKINS","OH","45302",,,,,,,"341152820","9376936236",,,,"2011-01-24T08:36:31-0600","JOANN KOENIG",,,,,124,125,0,0,125,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-24","Filed with authorized/valid electronic signature",, "20110125095957P030000627396001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLOW CREEK PROPERTIES INC 401K PROFIT SHARING PLAN","001","2007-01-01","WILLOW CREEK PROPERTIES INC",,,"6225 SOUTH WALNUT STREET SUITE C",,"LOOMIS","CA","95650",,,,,,,,,,,,,,,,,,"205399941","9164351100","531390","WILLOW CREEK PROPERTIES INC",,"6225 SOUTH WALNUT STREET SUITE C",,"LOOMIS","CA","95650",,,,,,,"205399941","9164351100",,,,"2011-01-25T09:59:40-0600","ASSOCIATED PENSION CONSULTANTS",,,,,16,8,0,3,11,0,11,10,0,,"3D2E2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-25","Filed with authorized/valid electronic signature",, "20110119145102P030002670806001","2009-08-01","2010-07-31","2",,"0","1","0","0","0","0","0","0","0",,"THOMAS, ALEXANDER & FORRESTER LLP 401(K) PROFIT SHARING PLAN","001","2008-08-01","THOMAS, ALEXANDER & FORRESTER LLP",,,"14 27TH AVE.",,"VENICE","CA","90291",,,,,,,,,,,,,,,,,,"261295068","3109612536","541110","THOMAS, ALEXANDER & FORRESTER LLP",,"14 27TH AVE.",,"VENICE","CA","90291",,,,,,,"261295068","3109612536",,,,"2011-01-19T14:50:06-0600","ROBERTA STRIPLIN",,,,,2,2,0,0,2,0,2,2,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",, "20110119170635P040016820673001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ROBERT J. WILLIAMS, D.D.S., INC. 401K PROFIT SHARING PLAN","001","2005-03-01","ROBERT J. WILLIAMS, D.D.S., INC.",,,"1000 PROFESSIONAL DRIVE",,"NAPA","CA","94558",,,,,,,,,,,,,,,,,,"201349487","7072527733","621210","ROBERT J. WILLIAMS, D.D.S., INC.",,"1000 PROFESSIONAL DRIVE",,"NAPA","CA","94558",,,,,,,"201349487","7072527733",,,,"2011-01-19T17:05:59-0600","ROBERT WILLIAMS",,,,,12,8,0,5,13,0,13,13,0,,"2E2G2J3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",, "20110126080810P040003350902001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"LESCHKE PUFFER INSURANCE AGENCY INC. 401K PROFIT SHARING PLAN","002","1978-11-01","LESCHKE PUFFER INSURANCE AGENCY INC",,,"170 MAIN ST",,"PUTNAM","CT","062601932",,,,,,,,,,,,,,,,,,"060706324","8609282796","524290","LESCHKE PUFFER INSURANCE AGENCY INC",,"170 MAIN ST",,"PUTNAM","CT","062601932",,,,,,,"060706324","8609282796",,,,"2011-01-26T08:05:38-0600","CHARLES H. PUFFER",,,,,0,0,0,0,0,0,0,0,0,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",, "20110121112029P030005134503001","1990-07-01","1991-06-30","2",,"0","0","0","0","0","0","0","1","0",,"TIAA CREF RETIREMENT PLAN FOR ALLEN CHASE FOUNDATION EAGLEBROOK MAINTENANCE HOUSEHOLD AND KITCHEN EMPLOYEES","002","1975-01-01","ALLEN CHASE FOUNDATION EAGLEBROOK SCHOOL",,"ERIC MALLOY","271 PINE NOOK RD",,"DEERFIELD","MA","013429746",,,,,,,,,,,,,,,,,,"042108341","4137747411","611000","ALLEN CHASE FOUNDATION EAGLEBROOK SCHOOL","ERIC MALLOY","271 PINE NOOK RD",,"DEERFIELD","MA","013429746",,,,,,,"042108341","4137747411",,,,"2011-01-21T11:19:20-0600","ERIC MALLOY",,,,,0,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",, "20110123210937P030003086594001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"KEN WHELAN, DDS A DENTAL CORPORATION PROFIT SHARING PLAN","001","2004-01-01","KEN WHELAN, DDS A DENTAL CORPORATION",,,"26711 ALISO CREEK ROAD","SUITE 200D","ALISO VIEJO","CA","92656",,,,,,,,,,,,,,,,,,"330983704","9493951479","621210","KEN WHELAN, DDS A DENTAL CORPORATION",,"26711 ALISO CREEK ROAD","SUITE 200D","ALISO VIEJO","CA","92656",,,,,,,"330983704","9493951479",,,,"2011-01-23T21:09:26-0600","KEN WHELAN","2011-01-23T21:09:26-0600","KEN WHELAN",,,3,0,,,0,,0,0,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110126102704P040095105056001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"PREVAILING WAGE CONTRACTORS ASSOCIATION INC. MEMBERS WELFARE BENEFIT TRUST","501","1995-01-15","PREVAILING WAGE CONTRACTORS ASSOCIATION INCORPORATED","110 NORTH HIGH STREET",,"SUITE 202",,"GAHANNA","OH","432303069",,,,,,,,,,,,,,,,,,"330721566","6143371041","813000","SERVICE CONTRACT ADMINISTRATORS, INC.",,"110 NORTH HIGH STREET","SUITE 202","GAHANNA","OH","432303069",,,,,,,"311501146","6143371041",,,,"2011-01-26T10:00:33-0600","JIMMIE PROFITT","2011-01-26T10:11:26-0600","H. DOUGLAS DUNCAN",,,486,1629,0,0,1629,,,,,,,"4C","0","0","1","0","0","0","1","0","0","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110124120915P040019416529001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"HYUNDAI OF SOMERSET 401(K) PLAN","001","2006-01-01","HYUNDAI OF SOMERSET, LLC",,,"5090 SOUTH HIGHWAY 27",,"SOMERSET","KY","42503",,,,,,,,,,,,,,,,,,"203642061","6066784141","441229","HYUNDAI OF SOMERSET, LLC",,"5090 SOUTH HIGHWAY 27",,"SOMERSET","KY","42503",,,,,,,"203642061","6066784141",,,,"2011-01-24T12:09:02-0600","CHARLES J. COLDIRON",,,,,15,0,0,0,0,0,0,0,1,,"2E2F2G2J2K3B3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-24","Filed with authorized/valid electronic signature",, "20110119160617P040002579218001","2010-05-10","2010-09-30","2",,"1","0","0","1","0","0","0","0","0",,"COMPUTECH MANUFACTURING COMPANY, INC. 401(K) PLAN","001","2010-05-10","COMPUTECH MANUFACTURING CO., INC.",,,"6350 BLUFF ROAD",,"WASHINGTON","MO","63090",,,,,,,,,,,,,,,,,,"272479583","6362397765","333200","COMPUTECH MANUFACTURING CO., INC.",,"6350 BLUFF ROAD",,"WASHINGTON","MO","63090",,,,,,,"272479583","6362397765",,,,"2011-01-19T16:06:11-0600","RANDALL FOLKMANN","2011-01-19T16:06:11-0600","RANDALL FOLKMANN",,,33,32,0,0,32,0,32,21,0,,"2E2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110113075247P040013300209001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","1","0",,"CARIBE GE INTERNATIONAL CONTROLS, CORP. SAVINGS PLAN FOR SALARIED EMPLOYEES","001","2000-01-01","CARIBE GE INTERNATIONAL CONTROLS CORP.",,,"383 FD ROOSEVELT AVE STE 205",,"HATO REY","PR","009182143",,,,,,,,,,,,,,,,,,"660526413","7876252337","541990","CARIBE GE INTERNATIONAL CONTROLS CORP.",,"383 FD ROOSEVELT AVE STE 205",,"HATO REY","PR","009182143",,,,,,,"660526413","7876252337",,,,"2011-01-13T07:43:53-0600","ZAYRIS FANTAUZZI",,,,,535,829,0,160,989,0,989,378,0,,"2E2F2G3D3C",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",, "20110112131302P040001960866001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ASMO MANUFACTURING, INC. ASSOCIATE BENEFIT PLAN","501","1989-07-01","ASMO MANUFACTURING, INC.",,,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,,,,,,,,,,,,"383442601","2699628257","336300","ASMO MANUFACTURING, INC.",,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,"383442601","2699628257",,,,"2011-01-12T13:12:57-0600","CARRIE A. NICHOLSON",,,,,329,333,0,0,333,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",, "20110111125058P030012237169001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"LIFE, ADD AND STD","503","1973-07-01","HNS MANAGEMENT CO., INC.","CTTRANSIT","STEPHEN BOTTICELLO","POST OFFICE BOX 66","100 LEIBERT ROAD","HARTFORD","CT","061410066",,,,,,,"100 LEIBERT ROAD",,"HARTFORD","CT","061410066",,,,,,,"061002064","8605228101","485110","HNS MANAGEMENT CO., INC.","STEPHEN BOTTICELLO","POST OFFICE BOX 66","100 LEIBERT ROAD","HARTFORD","CT","061410066",,,,,,,"061002064","8605228101",,,,"2011-01-11T12:45:38-0600","STEPHEN BOTTICELLO",,,,,1281,913,383,0,1296,0,1296,0,0,,,"4B4F","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-01-11","Filed with authorized/valid electronic signature",, "20110113100952P030013305505001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE CHARTER COMPANIES 401K PROFIT SHARING PLAN","001","1998-03-01","CHARTER CONSTRUCTION MANAGEMENT COMPANY",,,"730 N DEAN RD SUITE 200",,"AUBURN","AL","36890",,,,,,,"730 N DEAN RD SUITE 200",,"AUBURN","AL","36890",,,,,,,"631029601","3345024100","485510","CHARTER CONSTRUCTION MANAGEMENT COMPANY",,"730 N DEAN RD SUITE 200",,"AUBURN","AL","36890",,,,,,,"631029601","3345024100",,,,"2011-01-13T10:09:42-0600","FRANK HARRISON",,,,,15,15,0,0,15,0,15,15,0,0,"2E2F2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",, "20110112152951P030012846785001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"WE-CLEAN 401K PLAN","001","2004-07-01","WE-CLEAN MAINTENANCE & SUPPLY, INC.",,,"7545 WEST 99TH STREET",,"BRIDGEVIEW","IL","604552403",,,,,,,,,,,,,,,,,,"363147576","7085989087","561720","WE-CLEAN MAINTENANCE & SUPPLY, INC.",,"7545 WEST 99TH STREET",,"BRIDGEVIEW","IL","604552403",,,,,,,"363147576","7085989087",,,,"2011-01-12T15:26:18-0600","CATHI IACONI",,,,,49,41,0,7,48,0,48,18,,,"2E2F2G2J2K3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",, "20110209135911P030007128609001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FAY PORTABLE BUILDINGS INC. PROFIT SHARING PLAN","001","1972-12-01","FAY PORTABLE BUILDINGS, INC.",,,"4521 RUTLEDGE PIKE",,"KNOXVILLE","TN","37914",,,,,,,,,,,,,,,,,,"620793463","8655466311","562000","FAY PORTABLE BUILDINGS, INC.",,"4521 RUTLEDGE PIKE",,"KNOXVILLE","TN","37914",,,,,,,"620793463","8655466311",,,,"2011-02-04T11:17:44-0600","JAN FAY","2011-02-04T11:17:52-0600","JAN FAY",,,88,0,0,8,8,0,8,8,0,,"2E",,,,,"1",,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110204094507P030021380032001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NORTHSTAR ENGINEERING SERVICES, INC. PROFIT SHARING PLAN","001","2006-01-01","NORTHSTAR ENGINEERING SERVICES, IN",,,"2431 HARTFORD HIGHWAY",,"DOTHAN","AL","36301",,,,,,,,,,,,,,,,,,"631208648","3346739895","541330","NORTHSTAR ENGINEERING SERVICES, IN",,"2431 HARTFORD HIGHWAY",,"DOTHAN","AL","36301",,,,,,,"631208648","3346739895",,,,"2011-02-03T10:57:31-0600","LARRY W. BROOKINS, II","2011-02-03T10:57:38-0600","LARRY W. BROOKINS, II",,,16,13,0,2,15,0,15,15,2,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110201162607P030014393760001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ULRICH MEDICAL CONCEPTS, INC. 401(K) RETIREMENT PLAN","001","2009-01-01","ULRICH MEDICAL CONCEPTS, INC.",,,"1640 MCCRACKEN BLVD",,"PADUCAH","KY","42001",,,,,,,,,,,,,,,,,,"611384906","2707440404","518210","ULRICH MEDICAL CONCEPTS, INC.",,"1640 MCCRACKEN BLVD",,"PADUCAH","KY","42001",,,,,,,"611384906","2707440404",,,,"2011-02-01T16:23:15-0600","BURTON ULRICH",,,,,25,26,0,8,34,0,34,32,1,,"3D2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",, "20110211102344P040038748944001","2006-04-01","2007-03-31","2",,"0","0","0","0","0","0","0","1","0",,"THE ONECARE COMPANY HEALTH & WELFARE BENEFITS PLAN","501","2002-04-01","THE ONECARE COMPANY",,,"3440 PRESTON RIDGE ROAD, S. 650",,"ALPHARETTA","GA","30005",,,,,,,,,,,,,,,,,,"381608893","7705705023","339900","THE ONECARE COMPANY",,"3440 PRESTON RIDGE ROAD, S. 650",,"ALPHARETTA","GA","30005",,,,,,,"381608893","7705705023",,,,"2011-02-11T10:23:34-0600","MARY OGG",,,,,147,135,3,0,138,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",, "20110204173824P030022245824001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NORTHPOINT MANAGEMENT PARTNERS, INC. 401(K) PROFIT SHARING PLAN","001","2005-01-01","NORTHPOINT MANAGEMENT PARTNERS, INC.",,,"4320 E. PRESIDIO ST., SUITE B-101",,"MESA","AZ","85215",,,,,,,,,,,,,,,,,,"203313870","4803577498","531210","NORTHPOINT MANAGEMENT PARTNERS, INC.",,"4320 E. PRESIDIO ST., SUITE B-101",,"MESA","AZ","85215",,,,,,,"203313870","4803577498",,,,"2011-02-04T05:37:33-0600","RONNIE C. WINCE",,,,,35,22,0,8,30,0,30,30,0,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-04","Filed with authorized/valid electronic signature",, "20110204124446P040004675073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PIPEWELDERS MARINE, INC. FLEXIBLE BENEFITS PLAN","501","2008-01-01","PIPEWELDERS MARINE, INC.",,,"2965 WEST STATE ROAD 84",,"FORT LAUDERDALE","FL","33312",,,,,,,"2965 WEST STATE ROAD 84",,"FORT LAUDERDALE","FL","33312",,,,,,,"592683050","9545878400","339900","PIPEWELDERS MARINE, INC.",,"2965 WEST STATE ROAD 84",,"FORT LAUDERDALE","FL","33312",,,,,,,"592683050","9545878400",,,,"2011-02-04T12:42:51-0600","SCOT COLLER",,,,,154,137,0,0,137,,137,,,,,"4A4B4D4F","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-02-04","Filed with authorized/valid electronic signature",, "20110204150427P030000662498001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DELRAY BEACH PHYSICIANS ASSOCIATES INC PROFIT SHARING PLAN AND TRUST","001","2000-01-01","DELRAY BEACH PHYSICIANS ASSOCIATES INC",,,"265 NE 2ND AVE",,"DELRAY BEACH","FL","334443705",,,,,,,"265 NE 2ND AVE",,"DELRAY BEACH","FL","334443705",,,,,,,"650933423","5612765060","621111","DELRAY BEACH PHYSICIANS ASSOCIATES INC",,"265 NE 2ND AVE",,"DELRAY BEACH","FL","334443705",,,,,,,"650933423","5612765060",,,,"2011-02-04T14:52:22-0600","STEVEN BADER",,,,,10,3,0,5,8,0,8,8,0,,"2E3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-02-04","Filed with authorized/valid electronic signature",, "20110214165438P030003176919001","2010-01-01","2010-08-31","2",,"0","0","1","1","0","0","0","0","0",,"HOME TECHNOLOGIES LLC 401K PROFIT SHARING PLAN","001","2002-06-01","HOME TECHNOLOGIES LLC",,,"400 WARREN AVENUE","SUITE 411","BREMERTON","WA","98337",,,,,,,,,,,,,,,,,,"912076381","4258823200","238210","HOME TECHNOLOGIES LLC",,"400 WARREN AVENUE","SUITE 411","BREMERTON","WA","98337",,,,,,,"912076381","4258823200",,,,"2011-02-14T16:54:30-0600","MICHAEL MCCARTY",,,,,66,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",, "20110127104810P040000902832001","2010-05-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"MULLER HARPER, INC. 401K PROFIT SHARING PLAN","001","1964-12-30","MULLER HARPER, INC.",,,"893 HENDERSON AVENUE",,"WASHINGTON","PA","15301",,,,,,,,,,,,,,,,,,"251264991","7242229945","423600","MULLER HARPER, INC.",,"893 HENDERSON AVENUE",,"WASHINGTON","PA","15301",,,,,,,"251264991","7242229945",,,,"2011-01-27T10:39:43-0600","JAMES F PETLEY",,,,,6,0,0,0,0,0,0,0,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",, "20110214100541P040010167425001","2006-01-01","2006-12-31","2",,,"1",,,,,,"1",,,"WILSON BANK & TRUST FLEXIBLE BENEFIT PLAN","502","1994-06-01","WILSON BANK & TRUST",,,"623 WEST MAIN STREET","P.O. BOX 768","LEBANON","TN","37087",,,,,,,"623 WEST MAIN STREET","P.O. BOX 768","LEBANON","TN","37087",,,,,,,"621310217","6154436533","522110","WILSON BANK & TRUST",,"623 WEST MAIN STREET","P.O. BOX 768","LEBANON","TN","37087",,,,,,,"621310217","6154436533",,,,"2011-02-07T03:25:56-0600","LISA POMINSKI",,,,,288,309,,,309,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",, "20110214104945P030001435986001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ALBERT H. QUAN, M.D., P.A. 401K PROFIT SHARING PLAN","002","2008-01-01","ALBERT H. QUAN, M.D., P.A.",,,"7777 FOREST LANE, SUITE A-311",,"DALLAS","TX","752306803",,,,,,,,,,,,,,,,,,"043833323","9725667885","621111","ALBERT H. QUAN, M.D., P.A.",,"7777 FOREST LANE, SUITE A-311",,"DALLAS","TX","752306803",,,,,,,"043833323","9725667885",,,,"2011-02-14T10:44:35-0600","KATHLEEN QUAN",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",, "20110209164645P040000234659001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAID HASHEMIPOUR, M.D., P.A. PROFIT SHARING PLAN","001","2002-01-01","SAID HASHEMIPOUR, M.D., P.A.","COLON AND RECTAL ASSOCIATES OF TEXAS","SAID HASHEMIPOUR","1705 OHIO DRIVE","SUITE 100","PLANO","TX","75093",,,,,,,"1705 OHIO DRIVE","SUITE 100","PLANO","TX","75093",,,,,,,"752496229","9726120430","621111","SAID HASHEMIPOUR, M.D., P.A.","SAID HASHEMIPOUR","1705 OHIO DRIVE","SUITE 100","PLANO","TX","75093",,,,,,,"752496229","9726120430","COLORECTAL ASSOCIATES OF TEXAS 401K PROFIT SHARING PLAN","752496229","001","2011-02-07T14:18:40-0600","SAID HASHEMIPOUR",,,,,17,14,0,4,18,0,18,19,3,0,"2A2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",, "20110127160530P040001513744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TARGET TECHNOLOGY COMPANY LLC 401(K) PROFIT SHARING PLAN AND TRUST","001","2001-01-01","TARGET TECHNOLOGY COMPANY LLC",,,"564 WALD",,"IRVINE","CA","92618",,,,,,,,,,,,,,,,,,"352043413","9497880909","541990","TARGET TECHNOLOGY COMPANY LLC",,"564 WALD",,"IRVINE","CA","92618",,,,,,,"352043413","9497880909",,,,"2011-01-27T16:03:16-0600","ALICE NEE","2011-01-27T16:03:16-0600","ALICE NEE",,,11,11,0,0,11,0,11,10,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110204130751P030021748304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SLIMVAC, INC. DBA WEAKNEES PROFIT SHARING PLAN","001","2006-01-01","SLIMVAC, INC. DBA WEAKNEES",,,"9999 JEFFERSON BOULEVARD",,"CULVER CITY","CA","902323505",,,,,,,,,,,,,,,,,,"450531485","3108424700","332900","SLIMVAC, INC. DBA WEAKNEES",,"9999 JEFFERSON BOULEVARD",,"CULVER CITY","CA","902323505",,,,,,,"450531485","3108424700",,,,"2011-02-04T12:58:19-0600","MICHAEL ADBERG",,,,,7,6,0,0,6,0,6,6,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-04","Filed with authorized/valid electronic signature",, "20110214153933P040010311681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"P&R STORAGE COMPANY INC. DBA METRO FOUNDATION SUPPLY INC. PROFIT SHARING PLAN","001","1980-10-01","METRO FOUNDATION SUPPLY INC.",,,"20300 SKYRANCH ROAD",,"AURORA","CO","80011",,,,,,,"20300 SKYRANCH ROAD",,"AURORA","CO","80011",,,,,,,"621432718","3033758200","423500","METRO FOUNDATION SUPPLY INC.",,"20300 SKYRANCH ROAD",,"AURORA","CO","80011",,,,,,,"621432718","3033758200",,,,"2011-02-14T14:37:40-0600","PETE SEIB",,,,,19,16,0,3,19,0,19,19,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",, "20110127090410P040000706512001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","1","0","1","0",,"BLAIR VETERINARY ASSOCIATION, INC. PROFIT SHARING PLAN","002","2008-01-01","BLAIR VETERINARY ASSOCIATION, INC.",,,"1308 3RD AVE",,"DUNCANSVILLE","PA","166351247",,,,,,,,,,,,,,,,,,"251511577","8146958478","541940","BLAIR VETERINARY ASSOCIATION, INC.",,"1308 3RD AVE",,"DUNCANSVILLE","PA","166351247",,,,,,,"251511577","8146958478",,,,"2011-01-27T08:59:26-0600","JOHN WELLS JR",,,,,0,9,0,0,9,0,9,0,0,,"2E2J2K2F2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",, "20110208164507P040001043218001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"VICTORIA ORTHOPEDIC SURGERY ASSOC. PROFIT SHARING PLAN","001","1997-06-15","VICTORIA ORTHOPEDIC SURG. ASSN. LL",,,"605 E. SAN ANTONIO 410E",,"VICTORIA","TX","77901",,,,,,,,,,,,,,,,,,"742813619","3615782911","621111","VICTORIA ORTHOPEDIC SURG. ASSN. LL",,"605 E. SAN ANTONIO 410E",,"VICTORIA","TX","77901",,,,,,,"742813619","3615782911",,,,"2011-02-08T15:18:24-0600","DONALD BREECH, MD",,,,,10,0,0,0,0,0,0,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",, "20110211134039P040008618433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMBARCADERO DENTISTRY RETIREMENT PLAN","001","2005-01-01","STEVEN K. OLSEN, D.D.S, P.C., DBA EMBARCADERO DENTISTRY",,,"2 EMBARCADERO CENTER",,"SAN FRANCISCO","CA","94111",,,,,,,"PROMENADE LEVEL",,"SAN FRANCISCO","CA","94111",,,,,,,"942393029","4153984400","621210","STEVEN K. OLSEN, D.D.S, P.C., DBA EMBARCADERO DENTISTRY",,"2 EMBARCADERO CENTER",,"SAN FRANCISCO","CA","94111",,,,,,,"942393029","4153984400",,,,"2011-02-11T13:40:32-0600","STEVEN K OLSEN DDS",,,,,18,18,0,2,20,0,20,12,0,,"2E2F2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",, "20110206125411P040026416512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHRISTOPHER N. REESE, DDS, PA 401K PLAN","001","1989-12-01","CHRISTOPHER N. REESE, DDS, PA",,,"PO BOX 1088","3034 NORTH OXFORD STREET","CLAREMONT","NC","286101088",,,,,,,,,,,,,,,,,,"561582928","8284591990","621210","CHRISTOPHER N. REESE, DDS, PA",,"PO BOX 1088",,"CLAREMONT","NC","286101088",,,,,,,"561582928","8284591990",,,,"2011-02-06T12:52:51-0600","CHRISTOPHER REESE",,,,,8,7,0,0,7,0,7,7,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-06","Filed with authorized/valid electronic signature",, "20110208202926P040007026993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MOHS SKIN CANCER SURGERY OF SOUTH TEXAS, P.A. PROFIT SHARING PLAN","001","1999-01-01","MOHS SKIN CANCER SURGERY OF SOUTH TEXAS, P.A.",,,"5282 MEDICAL DR STE 518",,"SAN ANTONIO","TX","782296046",,,,,,,,,,,,,,,,,,"742539942","2106158200","621111","MOHS SKIN CANCER SURGERY OF SOUTH TEXAS, P.A.",,"5282 MEDICAL DRIVE, SUITE 518",,"SAN ANTONIO","TX","78229",,,,,,,"742539942","2106158200",,,,"2011-02-08T20:21:39-0600","EDMUND HOBBS",,,,,3,3,0,0,3,0,3,3,0,,"2A2E3D2F2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",, "20110128144615P040003951824001","2010-01-01","2010-10-22","2",,"0","0","1","1",,,,,,,"GUIDE CORPORATION SALARIED 401(K) SAVINGS PLAN","001","1998-11-01","GUIDE CORPORATION",,,"C/O BBK , 400 GALLERIA OFFICENTRE",,"SOUTHFIELD","MI","48034",,,,,,,"C/O BBK , 400 GALLERIA OFFICENTRE",,"SOUTHFIELD","MI","48034",,,,,,,"061509898","2486036375","336300","GUIDE CORPORATION",,"C/O BBK , 400 GALLERIA OFFICENTRE",,"SOUTHFIELD","MI","48034",,,,,,,"061509898","2486036375",,,,"2011-01-28T14:44:45-0600","CARLTON MONTAGUE",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",, "20110210134159P030007685185001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"DENTAL CARE KAPOLEI, INC 401(K) PLAN AND TRUST","001","2003-01-01","DENTAL CARE KAPOLEI, INC",,,"525 FARRINGTON HWY, SUITE 104",,"KAPOLEI","HI","96707",,,,,,,,,,,,,,,,,,"990342786","8086748808","621210","DENTAL CARE KAPOLEI, INC",,"525 FARRINGTON HWY, SUITE 104",,"KAPOLEI","HI","96707",,,,,,,"990342786","8086748808",,,,"2011-02-10T13:41:54-0600","SCOTT ARAKAWA",,,,,15,11,0,4,15,0,15,15,0,,"2F2G2J2K2E2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-10","Filed with authorized/valid electronic signature",, "20110208150416P040006904449001","2010-01-01","2010-06-04","2",,"0","0","1","1","0","1","0","0","0",,"THE SAVOIR GROUP INCORPORATED 401(K) PLAN","001","2009-06-02","THE SAVOIR GROUP INCORPORATED",,,"2874 BAYSHORE TRAILS DRIVE",,"TAMPA","FL","33611",,,,,,,,,,,,,,,,,,"311821106","8133899376","541990","THE SAVOIR GROUP INCORPORATED",,"2874 BAYSHORE TRAILS DRIVE",,"TAMPA","FL","33611",,,,,,,"311821106","8133899376",,,,"2011-02-08T15:02:02-0600","ANTHONY GRAY","2011-02-08T15:02:02-0600","ANTHONY GRAY",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110128141104P040000803489001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"STRICKLAND & JONES, P.C. 401K PLAN","001","1998-01-01","STRICKLAND & JONES, P.C.",,"C/O STEPHEN M. JONES, CPA, CO-TRUSTEE","749 BOUSH STREET",,"NORFOLK","VA","23510",,,,,,,"749 BOUSH STREET",,"NORFOLK","VA","23510",,,,,,,"541208437","7576277672","541211","STRICKLAND & JONES, P.C.","C/O STEPHEN M. JONES, CPA, CO-TRUSTEE","749 BOUSH STREET",,"NORFOLK","VA","23510",,,,,,,"541208437","7576277672",,,,"2011-01-28T14:10:23-0600","STEPHEN JONES",,,,,15,18,2,,20,,20,,,,"2E2F2G2J3E",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",, "20110211155544P030008272113001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CLI FLEET PROFIT SHARING PLAN","005","1994-01-01","CLI FLEET, INC.",,"MARK CHRISTIANA","99 BILTMORE AVENUE",,"RYE","NY","10580",,,,,,,"99 BILTMORE AVENUE",,"RYE","NY","10580",,,,,,,"521805616","9149213500","523900","CLI FLEET, INC.","MARK CHRISTIANA","99 BILTMORE AVENUE",,"RYE","NY","10580",,,,,,,"521805616","9149213500",,,,"2011-02-11T15:55:18-0600","MARK CHRISTIANA",,,,,1,1,0,0,1,0,1,1,0,0,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",, "20110208020228P030006323297001","2007-09-01","2008-08-31","2",,"0","0","0","0","0","0","0","1","0",,"ADULT AND CHILD REHABILITATION CENTER RETIREMENT PLAN","001","1990-09-01","ADULT AND CHILD REHABILITATION CENTER",,,"708 WASHINGTON STREET",,"WOODSTOCK","IL","60098",,,,,,,,,,,,,,,,,,"362264411","8153381707","621340","ADULT AND CHILD REHABILITATION CENTER",,"708 WASHINGTON STREET",,"WOODSTOCK","IL","60098",,,,,,,"362264411","8153381707",,,,"2011-02-07T09:29:47-0600","KIMBERLEY J LARSON",,,,,13,7,0,2,9,0,9,8,0,,"2F2G2E2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",, "20110208130248P030006569761001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ROBERT O. KAISER PROFIT SHARING PLAN TRUST","001","1978-01-01","ROBERT O. KAISER, CPA",,,"1215 N. SHERIDAN RD",,"PEORIA","IL","61606",,,,,,,"1215 N. SHERIDAN RD",,"PEORIA","IL","61606",,,,,,,"371032472","3096721200","541211","ROBERT O. KAISER, CPA",,"1215 N. SHERIDAN RD",,"PEORIA","IL","61606",,,,,,,"371032472","3096721200",,,,"2011-02-08T13:02:26-0600","ROBERT KAISER",,,,,1,1,,,1,,1,,,,"2E2G3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",, "20110210081254P040035986816001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WESTERN STEEL, INC. AND ITS AFFILIATES PROFIT SHARING PLAN","001","1972-10-01","WESTERN STEEL, INC. ATTN GENE CALHOUN",,,"3360 DAVEY ALLISON BLVD",,"HUEYTOWN","AL","35023",,,,,,,,,,,,,,,,,,"630513168","2057442230","331110","WESTERN STEEL, INC. ATTN GENE CALHOUN",,"3360 DAVEY ALLISON BLVD",,"HUEYTOWN","AL","35023",,,,,,,"630513168","2057442230",,,,"2011-02-09T04:09:07-0600","GENE CALHOUN",,,,,69,56,1,16,73,,73,73,2,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-10","Filed with authorized/valid electronic signature",, "20110211143105P030008238753001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LANDTEK, LLC 401(K) PLAN","001","2004-01-01","LANDTEK, LLC",,,"3455 CLIFF SHADOWS PARKWAY, SUITE 2",,"LAS VEGAS","NV","89129",,,,,,,,,,,,,,,,,,"510424837","7022424949","531390","LANDTEK, LLC",,"3455 CLIFF SHADOWS PARKWAY, SUITE 2",,"LAS VEGAS","NV","89129",,,,,,,"510424837","7022424949",,,,"2011-02-11T13:01:20-0600","NYCOLE CUMMINGS","2011-02-11T13:01:20-0600","NYCOLE CUMMINGS",,,59,29,0,17,46,0,46,43,0,,"2A2E2F2G2J2K3D3H",,"1",,"1",,,,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110210210300P030037888288001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TARANTINI CONSTRUCTION COMPANY, INC. PROFIT SHARING PLAN & TRUST","004","1991-07-01","TARANTINI CONSTRUCTION COMPANY, INC.",,,"7471 E MONTERRA WAY",,"SCOTTSDALE","AZ","852667622",,,,,,,,,,,,,,,,,,"860291074","4804739713","236110","TARANTINI CONSTRUCTION COMPANY, INC.",,"7471 E MONTERRA WAY",,"SCOTTSDALE","AZ","852667622",,,,,,,"860291074","4804739713",,,,"2011-02-10T21:01:17-0600","LUIGI TARANTINI",,,,,5,2,0,0,2,0,2,2,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-10","Filed with authorized/valid electronic signature",, "20110128120851P040000057621001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RILEY SALES INC EMPLOYEE PROFIT SHARING PLAN","002","1971-04-30","RILEY SALES INC",,,"PO BOX 290",,"PLYMOUTH MEETING","PA","19462",,,,,,,"PO BOX 290",,"PLYMOUTH MEETING","PA","19462",,,,,,,"231696148","6102794500","423700","RILEY SALES INC",,"PO BOX 290",,"PLYMOUTH MEETING","PA","19462",,,,,,,"231696148","6102794500",,,,"2011-01-28T12:08:15-0600","THOMAS RILEY",,,,,65,55,0,4,59,0,59,59,0,,"2E",,"1",,"1",,,,"1",,"1",,,,"1","1","2",,,,"FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",, "20110203105841P030001236791001","1999-01-01","1999-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE DONAGHUE MEDICAL RESEARCH FOUNDATION RETIREMENT PLAN","001","1998-01-01","THE PATRICK AND CATHERINE WELDON DONAGHUE MEDICAL RESEARCH FOUNDATION",,,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"066348275","8605219011","813000","THE PATRICK AND CATHERINE WELDON DONAGHUE MEDICAL RESEARCH FOUNDATION",,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"066348275","8605219011",,,,"2010-12-14T12:07:42-0600","LYNNE GARNER",,,,,,,,,,,,,,,"2F2G2K2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",, "20110131091539P030002264497001","2006-07-01","2007-06-30","1",,"0","0","0","0","1","0","0","1","0",,"UA LOCAL 551 HEALTH AND WELFARE FUND","501","1984-02-01","UA LOCAL 551 HEALTH AND WELFARE FUND",,"1106 W ELM STREET","P.O. BOX 156",,"WEST FRANKFORT","IL","62896",,,,,,,,,,,,,,,,,,"371085225","6189371363","423700","UA LOCAL 551 HEALTH AND WELFARE FUND","P. O. BOX 156","1106 W. ELM STREET",,"WEST FRANKFORT","IL","62896",,,,,,,"371085225","6189371363",,"371085225","501","2011-01-31T08:44:54-0600","DWIGHT HOWTON","2011-01-28T15:47:38-0600","ERIC PERKINS",,,179,134,38,0,172,,,,,14,,"4A4B","1","0","1","0","1","0","1","0","0","0","0","1","0","1","2","1","0","0","FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110202143258P030003424161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VU VUONG, M.D. APMC PROFIT SHARING PLAN","001","2003-06-02","VU VUONG, M.D. APMC",,,"24 IDLEWOOD PL",,"RIVER RIDGE","LA","701231525",,,,,,,,,,,,,,,,,,"200034941","5047385918","621111","VU VUONG, M.D. APMC",,"24 IDLEWOOD PL",,"RIVER RIDGE","LA","701231525",,,,,,,"200034941","5047385918",,,,"2011-02-02T14:32:38-0600","VU VUONG",,,,,2,2,0,0,2,0,2,2,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-02","Filed with authorized/valid electronic signature",, "20110131104340P030002299713001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"AQUATEK 401K RETIREMENT PLAN","001","1998-07-01","DALERON INC",,,"PO BOX 246",,"CHURUBUSCO","IN","46723",,,,,,,,,,,,,,,,,,"351505006","2606932137","221300","DALERON INC",,"PO BOX 246",,"CHURUBUSCO","IN","46723",,,,,,,"351505006","2606932137",,,,"2011-01-31T10:43:29-0600","RHONDA K. ARNOLD",,,,,10,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",, "20110131112304P040000759079001","2010-01-01","2010-10-29","2",,,,"1","1",,,,,,,"PIEMONTE AND LIEBHAUSER, LLC 401K PLAN","001","2004-03-07","PIEMONTE AND LIEBHAUSER, LLC",,,"325 COLUMBIA TURNPIKE","SUITE 108","FLORHAM PARK","NJ","07932",,,,,,,,,,,,,,,,,,"201005515","9739376200","541219","PIEMONTE AND LIEBHAUSER, LLC",,"325 COLUMBIA TURNPIKE","SUITE 108","FLORHAM PARK","NJ","07932",,,,,,,"201005515","9739376200",,,,"2011-01-31T11:22:11-0600","GINA LIEBHAUSER",,,,,17,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",, "20110202104507P040000588278001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SOUTHSIDE PULMONARY AND INTERNAL MEDICINE PROFIT SHARING PLAN","002","1995-01-01","SOUTHSIDE PULMONARY & INTERNAL MED",,,"P.O. BOX 155",,"SOUTH HILL","VA","23970",,,,,,,,,,,,,,,,,,"541702288","4344473899","621111","SOUTHSIDE PULMONARY & INTERNAL MED",,"P.O. BOX 155",,"SOUTH HILL","VA","23970",,,,,,,"541702288","4344473899",,,,"2011-02-02T10:43:20-0600","GLENN BARBOUR","2011-01-31T09:23:22-0600","GLENN BARBOUR",,,3,3,,,3,,3,,,,"2E",,,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-02-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110131160328P030000782535001","2010-01-01","2010-06-01","2",,"0","0","1","1","0","0","0","0","0",,"AEROTHRUST HEALTH BENEFITS PLAN","502","2001-11-01","AEROTHRUST CORPORATION",,"JEOFFREY L. BURTCH, CHAPTER 7 TRUSTEE","1000 WEST STREET, 10TH FLOOR",,"WILMINGTON","DE","19801",,,,,,,"1000 WEST STREET, 10TH FLOOR",,"WILMINGTON","DE","19801",,,,,,,"522338838","3029843800","336410","AEROTHRUST CORPORATION","JEOFFREY L. BURTCH, CHAPTER 7 TRUSTEE","1000 WEST STREET, 10TH FLOOR",,"WILMINGTON","DE","19801",,,,,,,"522338838","3029843800",,,,"2011-01-31T15:57:36-0600","JEOFFREY BURTCH",,,,,163,0,0,0,0,0,0,,,,,"4A4D4E","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",, "20110202171803P040003657585001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RICK D. SHERMAN 401 (K) PLAN","001","2002-10-01","RICK D. SHERMAN",,,"402 W. ROOSEVELT STREET, SUITE J",,"PHOENIX","AZ","850030000",,,,,,,"402 W. ROOSEVLT STREET","SUITE J","PHOENIX","AZ","85003",,,,,,,"550825855","6029575348","541110","RICK D. SHERMAN",,"402 W. ROOSEVELT STREET, SUITE J",,"PHOENIX","AZ","850030000",,,,,,,"550825855","6029575348",,,,"2011-02-02T17:17:24-0600","RICK SHERMAN","2011-02-02T17:17:24-0600","RICK SHERMAN",,,2,2,,,2,,2,,,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110202145208P040003598193001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WILSON COLLEGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1937-10-09","WILSON COLLEGE",,,"1015 PHILADELPHIA AVENUE",,"CHAMBERSBURG","PA","17201",,,,,,,,,,,,,,,,,,"231352692","7172622017","611000","WILSON COLLEGE",,"1015 PHILADELPHIA AVENUE",,"CHAMBERSBURG","PA","17201",,,,,,,"231352692","7172622017",,,,"2011-02-02T14:52:01-0600","DONALD KIME",,,,,0,,,,0,,0,,,,"2G2L2M",,"1","0","1","0","1","0","1","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-02-02","Filed with authorized/valid electronic signature",, "20110203004442P030017825264001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MICHAEL P. RUBINSTEIN, M.D., INC. DEFINED BENEFIT PENSION PLAN","002","2004-01-01","MICHAEL P. RUBINSTEIN, M.D., INC.",,,"27015 GLARAMARA",,"YORBA LINDA","CA","92687",,,,,,,,,,,,,,,,,,"330669173","7146920365","621111","MICHAEL P. RUBINSTEIN, M.D., INC.",,"27015 GLARAMARA",,"YORBA LINDA","CA","92687",,,,,,,"330669173","7146920365",,,,"2011-02-03T00:43:05-0600","MICHAEL RUBINSTEIN","2011-02-03T00:43:05-0600","MICHAEL RUBINSTEIN",,,1,0,0,0,0,0,0,,0,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110202110813P040003498369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE FNB BANK MONEY PURCHASE PENSION PLAN","002","1982-10-01","FNB BANK, INC",,,"105 N. HIGH STREET",,"ROMNEY","WV","26757",,,,,,,,,,,,,,,,,,"550267604","3048228700","522110","FNB BANK, INC",,"105 N. HIGH STREET",,"ROMNEY","WV","26757",,,,,,,"550267604","3048228700",,,,"2011-02-02T11:08:06-0600","PAUL SHIFFLETT","2011-02-02T11:08:06-0600","PAUL SHIFFLETT",,,53,45,2,5,52,0,52,52,1,,"2C3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110203145714P030003976081001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TEXTILE AND INDUSTRIAL SALES RETIREMENT PLAN","001","1999-01-01","TEXTILE AND INDUSTRIAL SALES",,,"P.O. BOX 768",,"DALTON","GA","30722",,,,,,,,,,,,,,,,,,"581083142","7062262102","333200","TEXTILE & INDUSTRIAL SALES",,"404 WHITENER DR",,"DALTON","GA","30721",,,,,,,"581083142","7062262102",,,,"2011-02-03T14:57:13-0600","MICHAEL D. RIZER",,,,,13,12,0,0,12,0,12,,,,"2E2F2G2J3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",, "20110304153011P040020129745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WOOSTER BRUSH COMPANY EMPLOYEES RELIEF ASSOCIATION","501","1935-09-01","WOOSTER BRUSH COMPANY",,,"400 SOUTH BUCKEYE STREET",,"WOOSTER","OH","44691",,,,,,,"400 SOUTH BUCKEYE STREET",,"WOOSTER","OH","44691",,,,,,,"346522872","3302644440","339900","WOOSTER BRUSH COMPANY",,"400 SOUTH BUCKEYE STREET",,"WOOSTER","OH","44691",,,,,,,"346522872","3302644440",,,,"2011-03-04T15:28:39-0600","BILL FAGERT",,,,,517,494,,,494,,494,,,,,"4F",,,"1",,,,"1",,,,,"1",,,,,,,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110223095834P040069081248001","1993-10-01","1994-09-30","2",,"0","0","0","0","0","0","0","1","0",,"EDUCATION DEVELOPMENT CENTER SUPPLEMENTAL RETIREMENT PLAN","001","1974-01-01","EDUCATION DEVELOPMENT CENTER",,,"55 CHAPEL STREET",,"NEWTON","MA","02458",,,,,,,,,,,,,,,,,,"042241718","6176182224","611000","EDUCATION DEVELOPMENT CENTER",,"55 CHAPEL STREET",,"NEWTON","MA","02458",,,,,,,"042241718","6176182224",,,,"2011-01-31T09:49:30-0600","JOANNA JONES","2011-02-23T09:58:28-0600","ROBERT ROTNER",,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-02-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110301195146P030018222001001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GUTTMANN & BLAEVOET AMENDED PROFIT SHARING AND 401(K) PLAN","001","1967-05-01","GUTTMANN & BLAEVOET",,,"2351 POWELL STREET",,"SAN FRANCISCO","CA","94133",,,,,,,,,,,,,,,,,,"941643454","4156250730","541330","GUTTMANN & BLAEVOET",,"2351 POWELL STREET",,"SAN FRANCISCO","CA","94133",,,,,,,"941643454","4156250730",,,,"2011-02-10T11:12:07-0600","MARGARITA GOROKHOVSKY",,,,,62,44,,26,70,,70,60,11,,"2E2G2J3D",,"1",,"1",,"1",,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110301110153P030002617682001","2005-01-01","2005-12-31","2",,"0","1","0","0","0","1","0","0","0",,"TEXACO PUERTO RICO INC PENSION PLAN","003","1967-01-01","TEXACO PUERTO RICO LLC",,,"METRO OFFICE PARK #2","TEXACO PLAZA SUITE 400","GUAYNABO","PR","00968",,,,,,,,,,,,,,,,,,"660178814","7877836110","324110","TEXACO PUERTO RICO LLC",,"METRO OFFICE PARK #2","TEXACO PLAZA SUITE 400","GUAYNABO","PR","00968",,,,,,,"660178814","7877836110","TEXACO PUERTO RICO INC","660563828","001","2011-03-01T07:14:01-0600","JOSE LUIS FAURE",,,,,241,74,85,72,231,0,231,,0,,"1A1G3C",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110303132417P030002790722001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","1","0","0","0",,"HOLLYWOOD DISPLAY, INC. DEFINED BENEFIT PENSION PLAN","002","2000-01-01","HOLLYWOOD DISPLAY, INC.",,,"14949 FIRESTONE BLVD.",,"LA MIRADA","CA","906386019",,,,,,,,,,,,,,,,,,"954452766","3238909913","561900","HOLLYWOOD DISPLAY, INC.",,"14949 FIRESTONE BLVD.",,"LA MIRADA","CA","906386019",,,,,,,"954452766","3238909913",,,,"2011-03-03T13:20:06-0600","GREGORY W. LONG",,,,,3,0,0,0,0,0,0,,0,,"1A1H1I3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",, "20110304072840P040019925569001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALLIANCE PLUMBING, INC. 401K PROFIT SHARING PLAN","001","2006-01-01","ALLIANCE PLUMBING AZ, INC.",,,"219 S. WILLIAM DILLARD DR., STE 113",,"GILBERT","AZ","852335528",,,,,,,,,,,,,,,,,,"931201169","4807857459","238220","ALLIANCE PLUMBING AZ, INC.",,"219 S. WILLIAM DILLARD DR., STE 113",,"GILBERT","AZ","852335528",,,,,,,"931201169","4807857459",,,,"2011-03-04T07:26:51-0600","SUSAN MILLER",,,,,27,19,0,8,27,0,27,27,0,,"2A2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110302091833P040018851617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOLMAN MOTORS, INC. 401K PLAN","001","1998-01-01","SUN AVIATION, INC.",,,"3106 CHEROKEE DR.",,"VERO BEACH","FL","329601919",,,,,,,,,,,,,,,,,,"591056796","5615622848","481000","SUN AVIATION, INC.",,"3106 CHEROKEE DRIVE",,"VERO BEACH","FL","32960",,,,,,,"591056796","7725622848",,,,"2011-03-02T09:15:00-0600","BUD HOLMAN",,,,,46,38,0,3,41,0,41,20,1,,"2E2G2J2K2F3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-02","Filed with authorized/valid electronic signature",, "20110228151508P040002688562002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"T.W. WILSON & SON EAST, LLC 401K PLAN","001","2008-01-01","T. W. WILSON & SON EAST LLC",,,"255 N. PETERS ROAD, STE. D",,"KNOXVILLE","TN","37923",,,,,,,,,,,,,,,,,,"261361939","6152561234","424400","T. W. WILSON & SON EAST LLC",,"255 N. PETERS ROAD, STE. D",,"KNOXVILLE","TN","37923",,,,,,,"261361939","6152561234",,,,"2011-02-28T15:07:43-0600","STEVEN WILSON",,,,,12,0,0,9,9,0,9,9,,,"2E2G2J3D3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110302093009P040018855153002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"M LYN DENNY OD PA MONEY PURCHASE PENSION PLAN","002","1997-01-01","M LYN DENNY OD PA",,,"123 EPPS STREET",,"LAKE CITY","SC","29560",,,,,,,,,,,,,,,,,,"570694455","8433745487","621320","M LYN DENNY OD PA",,"123 EPPS STREET",,"LAKE CITY","SC","29560",,,,,,,"570694455","8433745487",,,,"2011-03-02T09:18:53-0600","MAYNARD DENNY","2011-03-02T09:19:03-0600","MAYNARD DENNY",,,5,5,0,0,5,0,5,5,,,"2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110304143445P030019815713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PARVIN NAHVI, M.D., INC. 401(K) PROFIT SHARING PLAN","003","2002-01-01","PARVIN NAHVI, M.D., INC.",,,"P.O. BOX 885",,"TEMPLETON","CA","93465",,,,,,,,,,,,,,,,,,"320049083","8054342533","621111","PARVIN NAHVI, M.D., INC.",,"P.O. BOX 885",,"TEMPLETON","CA","93465",,,,,,,"320049083","8054342533",,,,"2011-03-04T14:34:19-0600","DOUGLAS S. HENDRY",,,,,5,2,0,3,5,0,5,5,0,,"2E2F2G2J2K2R3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110228095315P030082495216001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"METAL CONSTRUCTION MATERIALS, INC., PROFIT SHARING PLAN & TRUST","001","1985-06-01","METAL CONSTRUCTION MATERIALS, INC",,,"8129 JACKRABBIT RD.",,"HOUSTON","TX","77095",,,,,,,"8129 JACKRABBIT RD.",,"HOUSTON","TX","77095",,,,,,,"742064793","2815508383","238900","METAL CONSTRUCTION MATERIALS, INC",,"8129 JACKRABBIT RD.",,"HOUSTON","TX","77095",,,,,,,"742064793","2815508383",,,,"2011-02-28T09:37:42-0600","STEPHEN SEAVALL",,,,,24,18,0,1,19,0,19,19,2,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110303183849P040002941362001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BELL INVESTMENT ADVISORS, INC. 401(K) PLAN","001","2005-01-01","BELL INVESTMENT ADVISORS, INC.",,,"1111 BROADWAY, SUITE 1630",,"OAKLAND","CA","94607",,,,,,,,,,,,,,,,,,"943129063","5104431066","523900","BELL INVESTMENT ADVISORS, INC.",,"1111 BROADWAY, SUITE 1630",,"OAKLAND","CA","94607",,,,,,,"943129063","5104431066",,,,"2011-03-03T18:30:39-0600","JAMES BELL",,,,,16,11,0,1,12,0,12,12,0,,"2A2E2F2H2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",, "20110223123242P040015132161001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MEDSTAFF ON DEMAND, INC. 401K PROFIT SHARING PLAN","001","2010-01-01","MEDSTAFF ON DEMAND, INC.",,,"2045 NORTH STREET",,"PHILADELPHIA","PA","19130",,,,,,,,,,,,,,,,,,"271549604","2152546026","561300","MEDSTAFF ON DEMAND, INC.",,"2045 NORTH STREET",,"PHILADELPHIA","PA","19130",,,,,,,"271549604","2152546026",,,,"2011-02-23T12:32:05-0600","KENNETH GILBERT",,,,,2,2,0,0,2,0,2,2,0,,"2E2H2J2K2S3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-23","Filed with authorized/valid electronic signature",, "20110302162232P030018734353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COOPER VENTURE ASSOCIATES, LLC PROFIT SHARING PLAN","001","1995-01-01","COOPER VENTURE ASSOCIATES, LLC FORMERLY SGC CORP.",,,"408 SOUTH PIERCE AVENUE",,"LOUISVILLE","CO","800273018",,,,,,,,,,,,,,,,,,"200784383","3035271700","424400","COOPER VENTURE ASSOCIATES, LLC FORMERLY SGC CORP.",,"408 SOUTH PIERCE AVENUE",,"LOUISVILLE","CO","800273018",,,,,,,"200784383","3035271700",,,,"2011-03-02T16:15:16-0600","LINDA MOOTSEY",,,,,13,12,0,1,13,0,13,11,0,,"2A2E2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-02","Filed with authorized/valid electronic signature",, "20110303134412P030019230209001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RITTER DANIHER 401K PLAN","001","2005-01-01","RITTER DANIHER FINANCIAL ADVISORY, LLC",,,"7529-A STATE ROAD",,"CINCINNATI","OH","452556410",,,,,,,,,,,,,,,,,,"311660743","5132330715","523900","RITTER DANIHER FINANCIAL ADVISORY, LLC",,"7529-A STATE ROAD",,"CINCINNATI","OH","452556410",,,,,,,"311660743","5132330715",,,,"2011-03-03T13:43:28-0600","JOHN K. RITTER",,,,,4,6,0,0,6,0,6,6,0,,"2E2F2G2J2K2R3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",, "20110304081206P040019944577001","2008-10-01","2009-09-30","2",,"0","0","0","0","0","0","0","1","0",,"ANATAYO CORP T/A ANNE TAYLOR DAVIS COMMUNICATIONS SAVINGS PLAN","001","1996-10-01","ANATAYO CORP T/A ANNE TAYLOR DAVIS",,,"40 FIFTH AVENUE APT 10C",,"NEW YORK","NY","100118843",,,,,,,,,,,,,,,,,,"061184474","2123580070","541800","ANATAYO CORP T/A ANNE TAYLOR DAVIS",,"40 FIFTH AVENUE APT 10C",,"NEW YORK","NY","100118843",,,,,,,"061184474","2123580070",,,,"2011-03-03T14:13:22-0600","ANNE TAYLOR DAVIS",,,,,2,1,0,1,2,,2,2,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110302104221P030018591921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAMES W. LEPCZYK, D.D.S., P.C. EMPLOYEES PROFIT SHARING PLAN","001","1992-01-01","JAMES W. LEPCZYK, D.D.S., P.C.",,,"31100 TELEGRAPH ROAD, SUITE 100",,"BINGHAM FARMS","MI","48025",,,,,,,,,,,,,,,,,,"383025195","2486422115","621210","JAMES W. LEPCZYK, D.D.S., P.C.",,"31100 TELEGRAPH ROAD, SUITE 100",,"BINGHAM FARMS","MI","48025",,,,,,,"383025195","2486422115",,,,"2011-03-02T10:42:21-0600","JAMES W LEPCZYK DDS","2011-03-02T10:42:21-0600","JAMES W LEPCZYK DDS",,,1,1,0,0,1,0,1,1,,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110228205125P030083698272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIVINGSTON PATHOLOGY ASSOCIATES, LLC 401K PLAN","001","2007-01-01","LIVINGSTON PATHOLOGY ASSOCIATES, LLC",,,"94 OLD SHORT HILLS ROAD",,"LIVINGSTON","NJ","07039",,,,,,,,,,,,,,,,,,"205633588","9733225763","621111","LIVINGSTON PATHOLOGY ASSOCIATES, LLC",,"94 OLD SHORT HILLS ROAD",,"LIVINGSTON","NJ","07039",,,,,,,"205633588","9733225763",,,,"2011-02-28T20:51:14-0600","SELWYN BAPTIST, M.D.",,,,,8,8,0,2,10,0,10,10,0,,"2A2E2F2G2J2R2T3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110304123956P040020054881001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE UNIVERSITY OF THE ARTS DEFINED CONTRIBUTION RETIREMENT PLAN","001","1956-10-01","THE UNIVERSITY OF THE ARTS",,"ROBERT W. RICHARDSON","320 SOUTH BROAD STREET",,"PHILADELPHIA","PA","191024901",,,,,,,"320 SOUTH BROAD STREET",,"PHILADELPHIA","PA","191024901",,,,,,,"231639911","2157176182","611000","THE UNIVERSITY OF THE ARTS","JENNIFER EDWARDS","320 SOUTH BROAD STREET",,"PHILADELPHIA","PA","191024901",,,,,,,"231639911","2157176366",,,,"2011-03-04T11:12:42-0600","JENNIFER EDWARDS","2011-03-01T17:03:54-0600","ROBERT RICHARDSON",,,950,777,,186,963,3,966,966,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110228100941P040002670130001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SYCAMORE ENVIRONMENTAL CONSULTANTS INC 401K PROFIT SHARING PLAN","001","1994-01-01","SYCAMORE ENVIRONMENTAL CONSULTANTS INC",,,"6355 RIVERSIDE BOULEVARD","SUITE C","SACRAMENTO","CA","958310000",,,,,,,,,,,,,,,,,,"680320808","9164270703","541990","SYCAMORE ENVIRONMENTAL CONSULTANTS INC",,"6355 RIVERSIDE BOULEVARD","SUITE C","SACRAMENTO","CA","958310000",,,,,,,"680320808","9164270703",,,,"2011-02-28T10:09:24-0600","ASSOCIATED PENSION CONSULTANTS",,,,,14,11,0,3,14,0,14,13,0,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110303095839P030090104528001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","0","0","0","0",,"UNION COUNTY CONSTRUCTION GROUP, INC. PROFIT SHARING PLAN","001","1974-09-01","UNION COUNTY CONSTRUCTION GROUP INC",,,"638 CHERRY STREET",,"GLOUCESTER CITY","NJ","08030",,,,,,,"638 CHERRY STREET",,"GLOUCESTER CITY","NJ","08030",,,,,,,"223339296","8564568845","236200","UNION COUNTY CONSTRUCTION GROUP INC",,"638 CHERRY STREET",,"GLOUCESTER CITY","NJ","08030",,,,,,,"223339296","8564568845","UNION COUNTY CONSTUCTION GROUP INC","223339396",,"2011-02-24T13:27:21-0600","DANE SHIPLEE","2011-02-24T13:27:21-0600","DANE SHIPLEE",,,4,4,0,0,4,0,4,4,0,0,"2E2F2G",,"1","0","1","0","1","0","1","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-03-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110304151949P040020125905001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HOSPICE CARE NETWORK SECTION 125 PLAN","501","1996-08-01","HOSPICE CARE NETWORK",,,"99 SUNNYSIDE BLVD",,"WOODBURY","NY","11797",,,,,,,"99 SUNNYSIDE BLVD",,"WOODBURY","NY","11797",,,,,,,"112925757","5168327100","621610","HOSPICE CARE NETWORK",,"99 SUNNYSIDE BLVD",,"WOODBURY","NY","11797",,,,,,,"112925757","5168327100",,,,"2011-03-04T15:19:23-0600","MAUREEN HINKELMAN",,,,,169,177,,,177,,177,,,,,"4A4B4D4E","1",,,,"1",,,,,,,,,"1","3","1",,,"FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110302150117P040018993121001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","1","0",,"FLS TRANSPORTATION SERVICES, INC. 401K PLAN","001","2006-02-01","FLS TRANSPORTATION SERVICES, INC.",,,"420 NORTH WABASH AVE","SUITE 402","CHICAGO","IL","60611",,,,,,,,,,,,,,,,,,"980205796","5147390939","484120","FLS TRANSPORTATION SERVICES, INC.",,"420 NORTH WABASH AVE",,"CHICAGO","IL","60611",,,,,,,"980205796","5147390939",,,,"2011-03-02T15:01:16-0600","JASON ICKERT",,,,,17,42,0,0,42,0,42,26,,,"2E2F2G2J3E",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-02","Filed with authorized/valid electronic signature",, "20110301091458P030017971793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BATTLES INSURANCE AGENCY, INC. EMPLOYEES PROFIT SHARING PLAN & TRUST","001","1973-12-19","BATTLES INSURANCE AGENCY, INC.",,,"PO BOX 109",,"NORWALK","OH","448570109",,,,,,,,,,,,,,,,,,"340899184","4196684402","524210","BATTLES INSURANCE AGENCY, INC.",,"PO BOX 109",,"NORWALK","OH","448570109",,,,,,,"340899184","4196684402",,,,"2011-03-01T09:11:26-0600","PERRY DRYDEN",,,,,13,16,0,0,16,0,16,13,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110223095330P030014739121001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HEWSON PROPERTIES, INC. 401K SAVINGS PLAN","001","2006-01-01","HEWSON PROPERTIES, INC.",,,"4636 E. UNIVERSITY DRIVE, SUITE 265",,"PHOENIX","AZ","850347499",,,,,,,,,,,,,,,,,,"953540815","4808291773","531120","HEWSON PROPERTIES, INC.",,"4636 E. UNIVERSITY DRIVE, SUITE 265",,"PHOENIX","AZ","850347499",,,,,,,"953540815","4808291773",,,,"2011-02-23T09:52:52-0600","TYLER ATWOOD",,,,,6,5,0,1,6,0,6,6,0,,"2A2E2F2G2J2K3D3F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-23","Filed with authorized/valid electronic signature",, "20110301171223P040018484945003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"C & D FRUIT & VEGETABLE CO., INC. RETIREMENT PLAN","002","1992-01-01","C & D FRUIT & VEGETABLE CO., INC.",,,"P.O. BOX 898",,"BRADENTON","FL","342060898",,,,,,,"16505 STATE ROAD 64 E.",,"BRADENTON","FL","342129319",,,,,,,"592188444","9417440505","424500","C&D FRUIT & VEGETABLE CO., INC.",,"16505 STATE ROAD 64 E.",,"BRADENTON","FL","342129319",,,,,,,"592188444","9417440505",,,,"2011-02-21T02:40:14-0600","THOMAS M. O'BRIEN, TRUSTEE",,,,,13,11,2,,13,,13,13,,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110221213747P030013894849001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"VALLEY LUMBER & BUILDING SUPPLY EMPLOYEES PROFIT SHARING PLAN","001","1971-01-01","VALLEY LUMBER & BUILDING SUPPLY",,,"8525 OLD DAIRY ROAD",,"JUNEAU","AK","99801",,,,,,,,,,,,,,,,,,"920034871","9077897500","444190","VALLEY LUMBER & BUILDING SUPPLY",,"8525 OLD DAIRY ROAD",,"JUNEAU","AK","99801",,,,,,,"920034871","9077897500",,,,"2011-02-15T11:57:32-0600","DAN W. GRAVES","2011-02-15T11:57:32-0600","DAN W. GRAVES",,,21,21,0,0,21,0,21,21,1,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110221112701P030013653681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EVERSON, WHITNEY, EVERSON, AND BREHM, S.C. PROFIT SHARING PLAN","001","1971-07-01","EVERSON, WHITNEY, EVERSON, AND BREHM, S.C.",,,"P.O. BOX 22248",,"GREEN BAY","WI","543052248",,,,,,,,,,,,,,,,,,"391153276","9204353734","541110","EVERSON, WHITNEY, EVERSON, AND BREHM, S.C.",,"P.O. BOX 22248",,"GREEN BAY","WI","543052248",,,,,,,"391153276","9204353734",,,,"2011-02-21T11:17:37-0600","JOHN H. HEIDE",,,,,28,23,0,4,27,0,27,27,0,,"2E2F2G2J3D2T2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-21","Filed with authorized/valid electronic signature",, "20110301105739P040018353969001","2010-01-01","2010-12-31","2",,"0",,"0","0","0","0","0","0","0",,"GENERAL LOAN & FINANCE CO. INC. PROFIT SHARING PLAN","002","1976-01-01","GENERAL LOAN & FINANCE CO. INC.",,,"512 HOUSTON AVENUE","P.O. BOX 424","MONTEZUMA","GA","31063",,,,,,,"512 HOUSTON AVENUE","P.O. BOX 424","MONTEZUMA","GA","31063",,,,,,,"581097069","4784726616","522291","GENERAL LOAN & FINANCE CO. INC.",,"512 HOUSTON AVENUE","P.O. BOX 424","MONTEZUMA","GA","31063",,,,,,,"581097069","4784726616",,,,"2011-03-01T10:57:19-0600","DENNIS HORD",,,,,4,4,,,4,,4,4,,,"2E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110304125358P040006370103001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEMORIAL PATHOLOGY CONSULTANTS, P.A. EMPLOYEES PROFIT SHARING PLAN","001","1982-04-01","MEMORIAL PATHOLOGY CONSULTANTS, P.A",,,"P. O. BOX 14387",,"HUMBLE","TX","77347",,,,,,,"7600 BEECHNUT - SECOND FLOOR","PATHOLOGY DEPARTMENT","HOUSTON","TX","77074",,,,,,,"741720245","2814461548","621111","MEMORIAL PATHOLOGY CONSULTANTS, P.A",,"P. O. BOX 14387",,"HUMBLE","TX","77347",,,,,,,"741720245","2814461548",,,,"2011-03-04T12:26:21-0600","RICHARD BROWN",,,,,21,23,0,0,23,0,23,23,0,,"2E2H3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-04","Filed with authorized/valid electronic signature",, "20110301132210P040018401553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEART HEALTH, P.A. PENSION PLAN","002","2002-01-01","HEART HEALTH, P.A.",,,"1150 NORTH 75TH PLACE","STE 101","KANSAS CITY","KS","66112",,,,,,,"1150 NORTH 75TH PLACE","STE 101","KANSAS CITY","KS","66112",,,,,,,"481165789","9132687650","621111","HEART HEALTH, P.A.",,"1150 NORTH 75TH PLACE","STE 101","KANSAS CITY","KS","66112",,,,,,,"481165789","9132687650",,,,"2011-03-01T13:06:40-0600","KIRIT MASRANI",,,,,7,7,,,7,,7,,,,"1A3D","4B","1",,"1",,"1",,"1",,"1",,"1",,"1","1","1",,,,"FILING_RECEIVED","2011-03-01","Filed with authorized/valid electronic signature",, "20110216085720P030010851505001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GLOBAL RISK CONSULTANTS CORP. RETIREMENT PLAN","002","2000-12-01","GLOBAL RISK CONSULTANTS",,,"7000 SOUTH EDGERTON RD.",,"BRECKSVILLE","OH","441413172",,,,,,,,,,,,,,,,,,"341733739","4407468860","524290","GLOBAL RISK CONSULTANTS",,"7000 SOUTH EDGERTON RD.",,"BRECKSVILLE","OH","441413172",,,,,,,"341733739","4407468860",,,,"2011-02-16T08:56:22-0600","DORIS BARNHOUSE",,,,,159,80,30,37,147,11,158,,0,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0","0","1","0","0","FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110216132521P040001703826001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"PAUL SAVAD DEFINED BENEFIT PENSION TRUST","001","1999-01-01","PAUL SAVAD",,,"55 OLD TURNPIKE ROAD SUITE 209",,"NANUET","NY","10954",,,,,,,,,,,,,,,,,,"133580039","8456243820","541110","PAUL SAVAD",,"55 OLD TURNPIKE ROAD SUITE 209",,"NANUET","NY","10954",,,,,,,"133580039","8456243820",,,,"2011-02-16T01:24:27-0600","PAUL SAVAD",,,,,2,0,0,0,0,,0,0,0,,"1A1I3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110217082739P030054356400001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"BRITA LITHO, INC. PROFIT SHARING PLAN","001","1999-01-01","BRITA LITHO, INC.",,"THOMAS GALANTE","629 GROVE STREET","6TH FLOOR","JERSEY CITY","NJ","07310",,,,,,,,,,,,,,,,,,"133731395","2015269314","541400","BRITA LITHO, INC.","THOMAS GALANTE","629 GROVE STREET","6TH FLOOR","JERSEY CITY","NJ","07310",,,,,,,"133731395","2015269314",,,,"2011-02-17T08:27:28-0600","THOMAS GALANTE",,,,,14,0,0,0,0,0,0,0,0,,"2E2A3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110215142300P040010876993001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"WALDRON WEALTH MANAGEMENT 401 (K) PROFIT SHARING PLAN","001","2003-01-01","WALDRON, LP",,,"SBM FINANCIAL BUILDING","1150 OLD POND RD.","BRIDGEVILLE","PA","15017",,,,,,,"SBM FINANCIAL BUILDING","1150 OLD POND ROAD","PITTSBURGH","PA","15017",,,,,,,"263953661","4122211005","523120","WALDRON, LP",,"SBM FINANCIAL BUILDING","1150 OLD POND RD.","BRIDGEVILLE","PA","15017",,,,,,,"263953661","4122211005","WALDRON WEALTH MANAGEMENT, LLC","251846652","001","2011-02-15T13:47:36-0600","KRISHNA PENDYALA","2011-02-15T13:47:36-0600","KRISHNA PENDYALA",,,21,16,,6,22,0,22,22,1,,"2A2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110216113353P040011353409001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LODESTAR CONSULTING LLC 401K PLAN","001","2005-01-01","LODESTAR CONSULTING LLC",,,"780 NEWTOWN YARDLEY RD SUITE 325",,"NEWTOWN","PA","18940",,,,,,,"780 NEWTOWN YARDLEY RD SUITE 325",,"NEWTOWN","PA","18940",,,,,,,"223781404","2158601223","541990","SAME",,,,,,,,,,,,,,,,,,"2011-02-16T11:33:35-0600","TRACEY MYERS",,,,,,11,0,1,12,0,12,11,0,0,"2E2G2J3B3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110222113615P030014224753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J. FRANKLIN BURNS, P.C. 401(K) PLAN","001","2008-01-01","J. FRANKLIN BURNS, P.C.",,,"6100 LAKE FORREST DRIVE SUITE 570",,"ATLANTA","GA","30328",,,,,,,,,,,,,,,,,,"460491313","4043037770","541110","J. FRANKLIN BURNS, P.C.",,"6100 LAKE FORREST DRIVE SUITE 570",,"ATLANTA","GA","30328",,,,,,,"460491313","4043037770",,,,"2011-02-22T11:36:14-0600","J. FRANKLIN BURNS",,,,,7,8,0,2,10,0,10,10,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110217095202P040011843633001","2006-09-01","2007-08-31","2",,"1","0","0","0","0","0","0","0","0",,"INTERSTATE TRUCK CENTER, LLC HEALTH AND WELFARE PLAN","502","1974-01-01","INTERSTATE TRUCK CENTER, LLC",,,"825 NAVY DRIVE",,"STOCKTON","CA","95206",,,,,,,,,,,,,,,,,,"201569439","2099445821","423100","INTERSTATE TRUCK CENTER, LLC",,"825 NAVY DRIVE",,"STOCKTON","CA","95206",,,,,,,"201569439","2099445821",,,,"2011-02-17T09:50:03-0600","RICK COSLETT",,,,,100,145,0,0,145,,,,,,,"4A4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110222104114P040014557169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STERLING COMMERCE, INC. EMPLOYEE HEALTH BENEFIT PLAN","502","1996-10-01","STERLING COMMERCE, INC.",,,"4600 LAKEHURST COURT",,"DUBLIN","OH","430162000",,,,,,,,,,,,,,,,,,"752623341","6147937000","541519","STERLING COMMERCE, INC.",,"4600 LAKEHURST COURT",,"DUBLIN","OH","430162000",,,,,,,"752623341","6147937000",,,,"2011-02-22T10:41:08-0600","SCOTT JON MCHARDY","2011-02-22T10:41:08-0600","SCOTT JON MCHARDY",,,1616,0,20,0,20,,,,,,,"4A4D4E4Q4R","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110222083628P040066335856001","2003-09-01","2004-08-31","2",,"0","0","0","0","0","0","0","0","0",,"MOUNTAIN STATE UNIVERSITY 403B","002","1994-09-01","MOUNTAIN STATE UNIVERSITY",,,"PO BOX 9003",,"BECKLEY","WV","25802",,,,,,,,,,,,,,,,,,"550370128","3049291453","611000","MOUNTAIN STATE UNIVERSITY",,"PO BOX 9003",,"BECKLEY","WV","25802",,,,,,,"550370128","3049291453",,,,"2011-02-22T08:33:07-0600","MICHELE SARRETT",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110217100345P030011432817001","2010-01-01","2010-09-07","2",,"0","0","1","1","0","0","0","0","0",,"FARRELLS MAINTENANCE SERVICE 401 K PLAN","001","1996-04-01","FARRELLS MAINTENANCE SERVICE",,,"1341 FRUITVILLE PIKE",,"LANCASTER","PA","17601",,,,,,,"1341 FRUITVILLE PIKE",,"LANCASTER","PA","17601",,,,,,,"232024984","7173912825","561720","FARRELLS MAINTENANCE SERVICE",,"1341 FRUITVILLE PIKE",,"LANCASTER","PA","17601",,,,,,,"232024984","7173912825",,,,"2011-02-17T10:03:04-0600","SHARON DAVIS",,,,,69,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110215093645P040010746337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JACOBS BOILER & MECHANICAL INDUSTRIES, INC. PROFIT SHARING PLAN","003","1996-04-01","JACOBS BOILER & MECHANICAL INDUSTRIES, INC.",,,"6632 W. DIVERSEY AVENUE",,"CHICAGO","IL","60707",,,,,,,,,,,,,,,,,,"362662755","7733859900","332400","JACOBS BOILER & MECHANICAL INDUSTRIES, INC.",,"6632 W. DIVERSEY AVENUE",,"CHICAGO","IL","60707",,,,,,,"362662755","7733859900",,,,"2011-02-15T09:22:50-0600","MICHAEL JACOBS","2011-02-15T09:22:50-0600","MICHAEL JACOBS",,,5,5,,,5,,5,5,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110222131508P040002200162001","2010-05-01","2010-12-31","2",,,,"1","1",,,,,,,"ADAMS AUTOMOTIVE GROUP EMPLOYEE BENEFIT PLAN TRUST","501","2009-05-01","ADAMS AUTO CORP","ADAMS TOYOTA LEE'S SUMMIT",,"501 N E COLBERN ROAD",,"LEES SUMMIT","MO","64086",,,,,,,,,,,,,,,,,,"430962651","8163587600","441110","ADAMS AUTO CORP",,"501 N E COLBERN ROAD",,"LEES SUMMIT","MO","64086",,,,,,,"430962651","8163587600",,,,"2011-02-22T13:05:28-0600","SCOTT R ADAMS",,,,,0,0,,,0,,,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110217102549P040003783127001","2011-01-01","2011-01-28","2",,,"1","1","1",,,,,,,"STANFIELD CAPITAL PARTNERS, LLC 401(K) PROFIT SHARING PLAN","001","1998-01-01","STANFIELD CAPITAL PARTNERS, LLC",,,"430 PARK AVE 11TH FLOOR",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"133989512","2128919600","523900","STANFIELD CAPITAL PARTNERS, LLC",,"430 PARK AVE 11TH FLOOR",,"NEW YORK","NY","10022",,,,,,,"133989512","2128919600",,,,"2011-02-17T10:24:49-0600","ANTHONY GIARDINA",,,,,2,0,0,0,0,,0,0,0,,"2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110215122959P040001620418001","2010-01-01","2010-08-09","2",,,,"1","1",,,,,,,"NORTHWEST EYE & LASER CENTER 401(K) PROFIT SHARING PLAN","001","1999-01-01","NORTHWEST EYE & LASER CENTER",,,"111 MAIN STREET",,"BOISE","ID","83702",,,,,,,,,,,,,,,,,,"820519838","2083443220","621111","NORTHWEST EYE & LASER CENTER",,"111 MAIN STREET",,"BOISE","ID","83702",,,,,,,"820519838","2083443220",,,,"2011-01-31T12:07:46-0600","MARK J. BOERNER",,,,,7,0,,,0,,0,0,,,"2E2F2G2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",, "20110216201742P040011550241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TERRENCE L. HUNT, DDS, INC. 401K PLAN","001","2007-01-01","TERRENCE L. HUNT, DDS, INC.",,,"1690 WRIGHT AVENUE",,"ROCKY RIVER","OH","441161910",,,,,,,,,,,,,,,,,,"341286831","4403317380","621210","TERRENCE L. HUNT, DDS, INC.",,"1690 WRIGHT AVENUE",,"ROCKY RIVER","OH","441161910",,,,,,,"341286831","4403317380",,,,"2011-02-16T20:15:35-0600","TERRENCE L. HUNT",,,,,8,7,0,1,8,0,8,8,1,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110222161421P040014671345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"E. ALLEN CASTLE, DMD, PSC 401K PLAN","001","1996-01-01","E. ALLEN CASTLE, DMD, PSC",,,"1081 DOVE RUN ROAD, SUITE 101",,"LEXINGTON","KY","405023590",,,,,,,,,,,,,,,,,,"611188972","8592668890","621210","E. ALLEN CASTLE, DMD, PSC",,"1081 DOVE RUN ROAD, SUITE 101",,"LEXINGTON","KY","405023590",,,,,,,"611188972","8592668890",,,,"2011-02-22T16:10:54-0600","E. ALLEN CASTLE",,,,,4,4,0,0,4,0,4,4,0,,"2E2J2K2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110217091506P030001928166001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JAY CUTLER, MD KEOGH PROFIT SHARING PLAN","001","1983-01-01","JAY CUTLER, MD",,,"92 OTTOWA ROAD SOUTH",,"MALBORO","NJ","07746",,,,,,,,,,,,,,,,,,"222420097","9084471118","621111","JAY CUTLER, MD",,"92 OTTOWA ROAD SOUTH",,"MALBORO","NJ","07746",,,,,,,"222420097","9084471118",,,,"2011-02-17T09:01:45-0600","JAY M CUTLER",,,,,3,3,0,0,3,0,3,3,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110215132956P040010851793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARTLEY, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1999-11-12","HARTLEY INC.",,,"1523 SOUTH HICKORY",,"MT. VERNON","MO","65712",,,,,,,"1523 SOUTH HICKORY",,"MT. VERNON","MO","65712",,,,,,,"421496289","4174611040","531110","HARTLEY INC.",,"1523 SOUTH HICKORY",,"MT. VERNON","MO","65712",,,,,,,"421496289","4174611040",,,,"2011-02-15T13:29:04-0600","ROBERT HARTLEY",,,,,2,2,0,0,2,0,2,2,0,,"2I2J2O",,,,"1","1",,,"1","1","1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",, "20110216204215P040011557649001","2007-05-01","2008-04-30","2",,"0","0","0","0","0","0","0","0","0",,"CHEROKEE FREIGHT LINES HEALTH AND WELFARE PLAN","501","1998-05-01","CHEROKEE FREIGHT LINES STOCKTON LLC",,,"5463 CHEROKEE ROAD",,"STOCKTON","CA","95215",,,,,,,,,,,,,,,,,,"262533907","2099313570","484120","CHEROKEE FREIGHT LINES STOCKTON LLC",,"5463 CHEROKEE ROAD",,"STOCKTON","CA","95215",,,,,,,"262533907","2099313570","CHEROKEE FREIGHT LINES","061663643","501","2011-02-16T18:25:29-0600","LEANNE SCANNAVINO",,,,,135,146,0,0,146,,,,,,,"4A4B4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110222090805P030014158129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARROWS CUSTOM INTERIORS, INC. PROFIT SHARING PLAN","001","1985-09-01","BARROWS CUSTOM INTERIORS, INC.",,,"365 BOYLSTON STREET",,"NEWTON","MA","02459",,,,,,,,,,,,,,,,,,"042505100","6179644580","811490","BARROWS CUSTOM INTERIORS, INC.",,"365 BOYLSTON STREET",,"NEWTON","MA","02459",,,,,,,"042505100","6179644580",,,,"2011-02-22T09:07:57-0600","ALLAN BLACKER",,,,,14,9,0,5,14,0,14,14,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110217114804P030011471665001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SANDRA C. KELLET, O.D. 401(K) PLAN","001","2001-01-01","SANDRA C. KELLETT, O.D.",,,"60 MAHOPAC AVENUE",,"AMAWALK","NY","10501",,,,,,,"60 MAHOPAC AVENUE",,"AMAWALK","NY","10501",,,,,,,"134165824","9142458080","621111","SANDRA C. KELLETT, O.D.",,"60 MAHOPAC AVENUE",,"AMAWALK","NY","10501",,,,,,,"134165824","9142458080",,,,"2011-02-17T11:46:27-0600","SANDRA KELLETT",,,,,6,6,,1,7,,7,6,,,"2E2G2J3E",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110216124108P030010929457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAN ERIC HENSTORF, M.D., PROF CORP 401(K) PROFIT SHARING PLAN","001","2003-01-01","JAN ERIC HENSTORF, M.D., PROF CORP",,,"38733 STIVERS STREET",,"FREMONT","CA","94536",,,,,,,,,,,,,,,,,,"562306638","5107977463","621111","JAN ERIC HENSTORF, M.D., PROF CORP",,"38733 STIVERS STREET",,"FREMONT","CA","94536",,,,,,,"562306638","5107977463",,,,"2011-02-16T12:40:37-0600","JAN ERIC HENSTORF MD","2011-02-16T12:40:37-0600","JAN ERIC HENSTORF MD",,,4,3,0,1,4,0,4,4,0,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110216124130P040011383089001","2006-01-01","2006-03-09","2",,"0","0","1","1","0","0","0","1","0",,"WILLTEK COMMUNICATIONS, INC. 401(K) SAVINGS PLAN","001","2002-07-01","WIRELESS TELECOM GROUP, INC.",,,"25 EASTMAN ROAD",,"PARSIPPANY","NJ","070540000",,,,,,,,,,,,,,,,,,"030440844","9733869696","541519","WIRELESS TELECOM GROUP, INC.",,"25 EASTMAN ROAD",,"PARSIPPANY","NJ","070540000",,,,,,,"030440844","9733869696",,,,"2011-02-16T12:41:18-0600","JOANNE CALANDRA MOTTA",,,,,23,0,0,0,0,0,0,0,0,,"2E2J2K2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-16","Filed with authorized/valid electronic signature",, "20110217152254P040001804210003","2008-07-01","2009-06-30","2",,,,,,,,,"1",,,"THE SECTION 125 CAFETERIA PLAN FOR THE BRIDGE OF CENTRAL MASSACHUSETTS, INC.","501","1994-09-01","THE BRIDGE OF CENTRAL MASSACHUSETTS, INC.",,,"4 MANN STREET",,"WORCESTER","MA","01602",,,,,,,,,,,,,,,,,,"042701581","5087550333","624100","THE BRIDGE OF CENTRAL MASSACHUSETTS, INC.",,"4 MANN STREET",,"WORCESTER","MA","01602",,,,,,,"042701581","5087550333",,,,"2011-02-10T09:42:54-0600","FREDERICK BATTERSBY","2011-02-10T09:42:54-0600","FREDERICK BATTERSBY",,,293,340,,,340,,340,,,,,"4A4B4D4F4H",,,,"1","1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110217165340P040003839495001","1998-01-01","1998-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PLANNED PARENTHOOD OF AUSTIN, INC. 403(B) RETIREMENT PLAN","001","1980-12-28","PLANNED PARENTHOOD OF AUSTIN, INC.",,,"1209 ROSEWOOD",,"AUSTIN","TX","78702",,,,,,,"1209 ROSEWOOD",,"AUSTIN","TX","78702",,,,,,,"741005756","5124720868","621410","PLANNED PARENTHOOD OF AUSTIN, INC.",,"1209 ROSEWOOD",,"AUSTIN","TX","78702",,,,,,,"741005756","5124720868",,,,"2011-02-17T16:23:50-0600","LISA LARSON",,,,,,,,,,,,,,,"2L",,"1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110222101221P030067193856001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAROW CONSTRUCTION COMPANY, INC. EMPLOYEE BENEFIT PLAN","001","1997-01-01","JAROW CONSTRUCTION COMPANY, INC.",,,"3530 ROUTE 22 WEST",,"SOMERVILLE","NJ","08876",,,,,,,"3530 ROUTE 22 WEST",,"SOMERVILLE","NJ","08876",,,,,,,"222949437","9739925221","236110","JAROW CONSTRUCTION COMPANY, INC.",,"3530 ROUTE 22 WEST",,"SOMERVILLE","NJ","08876",,,,,,,"222949437","9739925221",,,,"2011-02-22T10:12:07-0600","JOSEPH A. JAROWICZ","2011-02-22T10:12:07-0600","JOSEPH A. JAROWICZ",,,6,6,0,0,6,0,6,4,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110222141511P030002068530001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GERALD & LAWRENCE BLUMBERG, LLP PROFIT SHARING PLAN","001","1992-01-01","GERALD & LAWRENCE BLUMBERG, LLP",,,"521 FIFTH AVENUE - 24TH FLOOR",,"NEW YORK","NY","10175",,,,,,,,,,,,,,,,,,"133868572","2126975550","541110","GERALD & LAWRENCE BLUMBERG, LLP",,"521 FIFTH AVENUE - 24TH FLOOR",,"NEW YORK","NY","10175",,,,,,,"133868572","2126975550",,,,"2011-02-22T14:15:04-0600","LAWRENCE BLUMBERG",,,,,11,8,0,4,12,0,12,12,0,,"2A2E2F2H2J2K2R2T3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110222141606P040066981200001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BROADLEYS MDI 401(K) PLAN","001","1996-01-01","MECHANICAL DYNAMICS INC.",,,"115 ROOSEVELT BOULEVARD","P.O. BOX 37","MARMORA","NJ","08223",,,,,,,,,,,,,,,,,,"223221668","6093903981","238220","MECHANICAL DYNAMICS INC.",,"115 ROOSEVELT BOULEVARD","P.O. BOX 37","MARMORA","NJ","08223",,,,,,,"223221668","6093903981",,,,"2011-02-22T14:15:42-0600","PRISCILLA B. BROADLEY","2011-02-22T14:15:42-0600","PRISCILLA B. BROADLEY",,,26,17,0,6,23,0,23,20,0,,"2A2E2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110222125308P040014606529001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"COLLEEN DWYER-BONURA 401K PROFIT SHARING PLAN & TRUST","001","2005-01-10","COLLEEN DWYER-BONURA","STRAY CAT COMMUNICATIONS",,"120 HAMPTON ROAD",,"SYRACUSE","NY","13203",,,,,,,"120 HAMPTON ROAD",,"SYRACUSE","NY","13203",,,,,,,"067481528","3152894514","541800","COLLEEN DWYER-BONURA",,"120 HAMPTON ROAD",,"SYRACUSE","NY","13203",,,,,,,"067481528","3152894514",,,,"2011-02-22T12:52:32-0600","COLLEEN DWYER-BONURA",,,,,1,0,0,0,0,0,0,0,0,,"2E2G2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110222125807P040014608129001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"ATHENS STONECASTING, INC.","001","2007-01-01","ATHENS STONECASTING, INC.",,,"191 RICHMAR ROAD",,"ATHENS","GA","30607",,,,,,,,,,,,,,,,,,"581743133","8887358073","327300","ATHENS STONECASTING, INC.",,"191 RICHMAR ROAD",,"ATHENS","GA","30607",,,,,,,"581743133","8887358073",,,,"2011-02-22T12:58:06-0600","DONALD R. HILL",,,,,120,115,0,2,117,0,117,29,0,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110222165102P030014358657001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SMITH-LEE COMPANY, INC. PROFIT SHARING PLAN FOR SALARIED EE'S","016","1982-01-01","HOFFMASTER GROUP, INC.",,,"2920 N. MAIN STREET",,"OSHKOSH","WI","549011221",,,,,,,,,,,,,,,,,,"203642844","9202359330","322200","HOFFMASTER GROUP, INC.",,"2920 N. MAIN STREET",,"OSHKOSH","WI","549011221",,,,,,,"203642844","9202359330",,,,"2011-02-22T16:49:00-0600","LYLE RICHTER",,,,,4,0,0,0,0,0,0,,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-22","Filed with authorized/valid electronic signature",, "20110217165848P040001809554001","1980-01-01","1980-12-31","2",,"1","0","0","0","0","0","0","1","0",,"PLANNED PARENTHOOD CENTER OF AUSTIN 403(B) RETIREMENT PLAN","001","1980-12-28","PLANNED PARENTHOOD CENTER OF AUSTIN",,,"1309 E 12TH STREET",,"AUSTIN","TX","78702",,,,,,,"1309 E 12TH STREET",,"AUSTIN","TX","78702",,,,,,,"741005756","5124720868","621410","PLANNED PARENTHOOD CENTER OF AUSTIN",,"1309 E 12TH STREET",,"AUSTIN","TX","78702",,,,,,,"741005756","5124720868",,,,"2011-02-17T16:09:21-0600","LISA LARSON",,,,,,,,,,,,,,,"2L",,"1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-02-17","Filed with authorized/valid electronic signature",, "20110215102156P040010766321001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","1","0","0",,"APPLIED IMAGING CORPORATION 401K PLAN","001","1994-01-01","APPLIED IMAGING CORPORATION",,,"120 BAYTECH DR.",,"SAN JOSE","CA","95134",,,,,,,,,,,,,,,,,,"770120490","4087196405","325410","APPLIED IMAGING CORPORATION",,"120 BAYTECH DR.",,"SAN JOSE","CA","95134",,,,,,,"770120490","4087196405",,,,"2011-02-15T10:21:50-0600","DALE XAVIER",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-15","Filed with authorized/valid electronic signature",, "20110218152744P040000391907001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SUN VALLEY GOLD LLC PROFIT SHARING PLAN","001","1996-01-01","SUN VALLEY GOLD LLC",,,"P.O. BOX 2211",,"KETCHUM","ID","833402211",,,,,,,,,,,,,,,,,,"820507870","2087262327","523900","SUN VALLEY GOLD LLC",,"P.O. BOX 2211",,"KETCHUM","ID","833402211",,,,,,,"820507870","2087262327",,,,"2011-02-18T15:22:53-0600","PETER F. PALMEDO",,,,,12,9,0,3,12,0,12,12,1,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-18","Filed with authorized/valid electronic signature",, "20110228163433P030017589473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONCEPT ENGINEERING, INC. 401K RETIREMENT PLAN","001","1997-01-01","CONCEPT ENGINEERING, INC.",,,"455 RAINIER BLVD N STE 200",,"ISSAQUAH","WA","980272807",,,,,,,,,,,,,,,,,,"911244925","4253928055","541330","CONCEPT ENGINEERING, INC.",,"455 RAINIER BLVD N STE 200",,"ISSAQUAH","WA","980272807",,,,,,,"911244925","4253928055",,,,"2011-02-28T16:28:43-0600","CARL CANGIE",,,,,17,14,0,1,15,0,15,12,0,,"2E2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110228084522P030082368064001","2010-01-01","2010-05-31","2",,"0","1","1","1","0","1","0","0","0",,"MOTOMAN, INC. HEALTH CARE PLAN","502","1994-01-01","MOTOMAN, INC. HEALTH CARE PLAN",,,"805 LIBERTY LANE",,"WEST CARROLLTON","OH","45449",,,,,,,"805 LIBERTY LANE",,"WEST CARROLLTON","OH","45449",,,,,,,"311275631","9378476200","333900","MOTOMAN, INC. HEALTH CARE PLAN",,"805 LIBERTY LANE",,"WEST CARROLLTON","OH","45449",,,,,,,"311275631","9378476200",,,,"2011-02-25T13:57:32-0600","TOM SCHOCKMAN","2011-02-25T13:56:49-0600","TOM SCHOCKMAN",,,250,257,,,257,,257,,,,,"4A4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110228182524P040017966689001","2010-01-01","2010-05-25","2",,"0","0","1","1","0","1","0","0","0",,"H & H ORTHOPAEDIC SALES, LLC 401(K) SAVINGS & RETIREMENT PLAN","001","1989-01-01","H&H ORTHOPEDIC SALES LLC",,,"P.O. BOX 1150",,"MANDEVILLE","LA","70470",,,,,,,"156 TCHEFUNCTE DR.",,"COVINGTON","LA","70433",,,,,,,"760730981","5049132697","339110","H&H ORTHOPEDIC SALES LLC",,"P.O. BOX 1150",,"COVINGTON","LA","70433",,,,,,,"760730981","5049132697",,,,"2011-02-28T18:25:00-0600","KATHIE HOUTE",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110224105032P030015338577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAIN CLINIC OF NORTHWEST FLORIDA P.A. 401K PROFIT SHARING TRUST","001","1994-01-01","PAIN CLINIC OF NORTHWEST FLORIDA, P.A.",,,"P.O. BOX 148",,"PANAMA CIT","FL","32402",,,,,,,,,,,,,,,,,,"593110306","8507842477","621111","PAIN CLINIC OF NORTHWEST FLORIDA, P.A.",,"P.O. BOX 148",,"PANAMA CIT","FL","32402",,,,,,,"593110306","8507842477",,,,"2011-02-24T10:50:24-0600","ROBERT JOSEPH, MD","2011-02-24T10:50:24-0600","ROBERT JOSEPH, MD",,,17,13,0,1,14,0,14,14,1,,"2J3D2E2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110225130815P030015948721001","2010-01-01","2010-10-11","2",,"0","0","1","1","0","0","0","0","0",,"CONVENTION CENTER LONG DISTANCE 401(K) PLAN","001","1997-01-01","CONVENTION CENTER LONG DISTANCE",,,"285 ANDREW YOUNG INTL BLVD NW",,"ATLANTA","GA","30313",,,,,,,,,,,,,,,,,,"582115125","4042225500","561210","CONVENTION CENTER LONG DISTANCE",,"285 ANDREW YOUNG INTL BLVD NW",,"ATLANTA","GA","30313",,,,,,,"582115125","4042225500",,,,"2011-02-25T13:08:01-0600","JIM JENKINS","2011-02-25T13:08:01-0600","JIM JENKINS",,,6,0,0,0,0,0,0,0,0,,"2E2F2G2J3B3D3H2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-02-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110228050854P030002520050001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTRAL MAINE TITLE COMPANY INC PROFIT SHARING PLAN AND TRUST","001","1991-01-01","CENTRAL MAINE TITLE COMPANY INC",,,"78 WINTHROP ST",,"AUGUSTA","ME","043305506",,,,,,,"78 WINTHROP ST",,"AUGUSTA","ME","043305506",,,,,,,"200499388","2076227505","541110","CENTRAL MAINE TITLE COMPANY INC",,"78 WINTHROP ST",,"AUGUSTA","ME","043305506",,,,,,,"200499388","2076227505",,,,"2011-02-28T04:56:13-0600","LINDA B GIFFORD",,,,,6,5,0,0,5,0,5,5,0,,"2A2E2G2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-28","Filed with authorized/valid electronic signature",, "20110225131438P030015952161001","2010-01-01","2010-11-30","2",,,,"1","1",,,,,,,"INSKEEP AUTO MART 401(K) PROFIT SHARING PLAN","001","2000-04-01","INSKEEP AUTO MART, INC.",,,"2651 W. MAIN ST.",,"GREENFIELD","IN","46140",,,,,,,"2651 W. MAIN ST.",,"GREENFIELD","IN","46140",,,,,,,"351505179","3174621470","441110","INSKEEP AUTO MART, INC.",,"2651 W. MAIN ST.",,"GREENFIELD","IN","46140",,,,,,,"351505179","3174621470",,,,"2011-02-24T06:41:57-0600","JEFF INSKEEP",,,,,29,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-25","Filed with authorized/valid electronic signature",, "20110224153059P030072922976001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANSONICS MONEY PURCHASE PLAN","002","1981-04-15","ANSONICS MONEY PURCHASE PLAN","TAOS TECHSONICS, INC.","ANTHONY SOWERS","PO BOX 250",,"EL PRADO","NM","87529",,,,,,,"1307 PASEO DEL PUEBLO NORTE",,"EL PRADO","NM","87529",,,,,,,"850197506","5757584555","525100","ANSONICS MONEY PURCHASE PLAN","ANTHONY SOWERS","PO BOX 250","1307 PASEO DEL PUEBLO NORTE","EL PRADO","NM","87529",,,,,,,"850197506","5757584555",,,,"2011-02-24T14:52:19-0600","ANTHONY SOWERS",,,,,3,3,0,0,3,0,3,3,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",, "20110224040635P030015156209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TALL MOUSE ARTS & CRAFTS 401(K) PENSION PLAN","002","2002-07-01","TALL MOUSE ARTS & CRAFTS, INC",,"JAMES W. BREMER","22530 SKYLINE",,"YORBA LINDA","CA","92887",,,,,,,"22530 SKYLINE",,"YORBA LINDA","CA","92887",,,,,,,"953663469","7149960101","451130","TALL MOUSE ARTS & CRAFTS, INC","JAMES W. BREMER","22530 SKYLINE",,"YORBA LINDA","CA","92887",,,,,,,"953663469","7149960101",,,,"2011-02-24T04:06:12-0600","JAMES BREMER",,,,,67,33,0,21,54,0,54,32,0,,"2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",, "20110224102353P040002351746001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VALLEY HOSPITALISTS MEDICAL CORPORATION 401(K) PROFIT SHARING PLAN","001","2001-01-01","VALLEY HOSPITALISTS MEDICAL CORPORATION",,"C/O PRICE REINHARDT PRICE, INC.","5151 N. PALM AVENUE, SUITE 920",,"FRESNO","CA","93704",,,,,,,,,,,,,,,,,,"770555639","5592247656","621111","VALLEY HOSPITALISTS MEDICAL CORPORATION","C/O PRICE REINHARDT PRICE, INC.","5151 N. PALM AVENUE, SUITE 920",,"FRESNO","CA","93704",,,,,,,"770555639","5592247656",,,,"2011-02-24T10:23:38-0600","KERRY OLIVER","2011-02-24T10:23:38-0600","KERRY OLIVER",,,2,1,0,1,2,0,2,2,0,,"2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110321153041P030004273458001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","1","0",,"EAGLE STONE & BRICK, INC. 401(K) PLAN","001","2007-10-01","EAGLE STONE & BRINK INC.",,,"P.O. BOX 103",,"RED BUD","IL","62278",,,,,,,"P.O. BOX 103",,"RED BUD","IL","62278",,,,,,,"371305752","6182826722","423300","EAGLE STONE & BRINK INC.",,"P.O. BOX 103",,"RED BUD","IL","62278",,,,,,,"371305752","6182826722",,,,"2011-03-21T15:28:35-0500","GLENN GIELOW",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J3E",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",, "20110311152854P040110423248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STATE FINANCIAL CORP PROFIT SHARING PLAN","004","2008-01-01","STATE FINANCIAL CORP",,,"11661 SAN VICENTE BLVD",,"LOS ANGELES","CA","900495103",,,,,,,,,,,,,,,,,,"952478454","3108205222","522298","STATE FINANCIAL CORP",,"11661 SAN VICENTE BLVD",,"LOS ANGELES","CA","900495103",,,,,,,"952478454","3108205222",,,,"2011-03-11T15:24:01-0600","GARY R REISS",,,,,7,7,0,0,7,0,7,7,0,,"2A2E3D","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110311153501P040023937441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COHEN AND KAYE DENTAL CORP PROFIT SHARING PLAN","003","1995-01-01","COHEN AND KAYE DENTAL CORP",,,"16311 VENTURA BLVD STE 1250",,"ENCINO","CA","914361237",,,,,,,,,,,,,,,,,,"953288176","8187890555","621210","COHEN AND KAYE DENTAL CORP",,"16311 VENTURA BLVD STE 1250",,"ENCINO","CA","914361237",,,,,,,"953288176","8187890555","COHEN AND MCCLINTOCK DENTAL CORP","953288176","003","2011-03-11T15:35:01-0600","MARC D COHEN",,,,,27,24,0,0,24,0,24,24,3,,"2E2A3D","4H","0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110316134528P030026379329001","2008-01-01","2008-12-31","3",,"0","1","0","0","0","0","0","0","0",,"TANGENT CORPORATION 401(K) PROFIT SHARING PLAN AND TRUST","001","1985-01-01","TANGENT CORPORATION",,,"1901 L STREET, NW, SUITE 705",,"WASHINGTON","DC","20036",,,,,,,,,,,,,,,,,,"521764587","2023319484","561300","TANGENT CORPORATION",,"1901 L STREET, NW, SUITE 705",,"WASHINGTON","DC","20036",,,,,,,"521764587","2023319484",,,,"2011-03-16T13:45:13-0500","THOMAS F BARRETT INC",,,,,12,10,0,2,12,0,12,12,0,0,"2E2F2J2K3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110321081538P030028938257001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IN-LINE FINISHING SOLUTIONS, LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","IN-LINE FINISHING SOLUTIONS, LLC",,,"117 RED OAK LANE",,"HIGHLAND PARK","IL","60035",,,,,,,"117 RED OAK LANE",,"HIGHLAND PARK","IL","60035",,,,,,,"364444505","8477748899","425120","IN-LINE FINISHING SOLUTIONS, LLC",,"117 RED OAK LANE",,"HIGHLAND PARK","IL","60035",,,,,,,"364444505","8477748899",,,,"2011-03-19T11:58:09-0500","SCOTT GOLDSTEIN",,,,,3,3,,,3,,3,3,,,"2E2J2F2G2R3D3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",, "20110311173102P040023985073001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SOMA CONSTUCTION INC P-S PLAN","001","1986-12-31","SOMA CONSTRUCTION INC","SOMA CONSTRUCTION INC",,"629 SOUTHTOWN HEIGHTS DRIVE SW",,"ROCHESTER","MN","55902",,,,,,,,,,,,,,,,,,"411514794","5072886971","238900","SOMA CONSTRUCTION INC",,"629 SOUTHTOWN HEIGHTS DRIVE SW",,"ROCHESTER","MN","55902",,,,,,,"411514794","5072886971","SOMA CONSTRUCTION INC","411514794","001","2011-03-11T17:30:07-0600","NORDEEN SOMA",,,,,3,5,0,0,5,0,5,5,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110317124920P040125290480001","1994-06-01","1995-05-31","2",,"1","0","0","0","0","0","0","1","0",,"KINGS HARBOR MULTICARE CENTER WELFARE BENEFITS PLAN","501","1994-06-01","BRONX HARBOR HEALTHCARE COMPLEX, INC.","KINGS HARBOR MULTICARE CENTER",,"2000 EAST GUN HILL ROAD",,"BRONX","NY","104696016",,,,,,,,,,,,,,,,,,"133772916","7184053610","623000","BRONX HARBOR HEALTHCARE COMPLEX, INC.",,"2000 EAST GUN HILL ROAD",,"BRONX","NY","104696016",,,,,,,"133772916","7184053610",,,,"2011-03-17T10:42:52-0500","RALPH ZIMMERMAN",,,,,190,190,0,0,190,,190,,,,,"4A","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",, "20110318131509P040027706577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TLB ARCHITECTURE 401K PROFIT SHARING PLAN","001","1999-01-01","TLB ARCHITECTURE",,,"92 W MAIN ST",,"CHESTER","CT","064121305",,,,,,,,,,,,,,,,,,"061399062","8605269448","541310","TLB ARCHITECTURE",,"92 W MAIN ST",,"CHESTER","CT","064121305",,,,,,,"061399062","8605269448",,,,"2011-03-18T13:08:06-0500","TIMOTHY L. BREWER",,,,,15,13,0,2,15,0,15,15,0,,"2E2F2G2J2A2K3B3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110311093741P040000693140001","2008-07-01","2009-06-30","2",,"0","1","0","0","0","0","0","0","0",,"L AND Y ENTERPRISES OF DELRAY BEACH, INC PROFIT SHARING PLAN","001","2008-06-04","L AND Y ENTERPRISES OF DELRAY BEACH, INC.",,,"7837 STIRLING BRIDGE BLVD",,"DELRAY BEACH","FL","33446",,,,,,,"7837 STIRLING BRIDGE BLVD",,"DELRAY BEACH","FL","33446",,,,,,,"262718583","5616376868","621610","L AND Y ENTERPRISES OF DELRAY BEACH, INC.",,"7837 STIRLING BRIDGE BLVD",,"DELRAY BEACH","FL","33446",,,,,,,"262718583","5616376868",,,,"2011-03-11T09:37:21-0600","LEONARD MARCHESE",,,,,2,2,,,2,,2,1,,,"2E2G2R3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110314133417P030025230465001","2005-07-01","2006-06-30","2",,"0","0","0","0","0","0","0","1","0",,"CORAM DEO ACADEMY 403(B) RETIREMENT PLAN","001","2003-08-01","CORAM DEO ACADEMY",,,"ONE NELSON PARKWAY","2400 FM 407","HIGHLAND VILLAGE","TX","75077",,,,,,,"ONE NELSON PARKWAY","2400 FM 407","HIGHLAND VILLAGE","TX","75077",,,,,,,"752749298","9723185222","611000","CORAM DEO ACADEMY",,"ONE NELSON PARKWAY","2400 FM 407","HIGHLAND VILLAGE","TX","75077",,,,,,,"752749298","9723185222",,,,"2011-03-14T13:31:14-0500","STEVEN BUTLER",,,,,,,,,,,,,,,"2G2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110314123520P030118224976001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NVASION PAINTBALL LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","N'VASION PAINTBALL, LLC",,,"1046 UNIVERSITY AVE",,"ROCHESTER","NY","14607",,,,,,,"1046 UNIVERSITY AVE",,"ROCHESTER","NY","14607",,,,,,,"371494461","5854737529","541990","N'VASION PAINTBALL, LLC",,"1046 UNIVERSITY AVE",,"ROCHESTER","NY","14607",,,,,,,"371494461","5854737529",,,,"2011-03-14T12:35:03-0500","MITCH KARN",,,,,6,4,0,2,6,0,6,5,0,0,"2A2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110316173452P040004000626001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"LCIJ INC 401K PROFIT SHARING PLAN AND TRUST","002","2008-01-01","LCIJ INC",,,"188 FRIES MILL ROAD","L2","TURNERSVILLE","NJ","08012",,,,,,,,,,,,,,,,,,"223058174","8566295800","541990","LCIJ INC",,"188 FRIES MILL ROAD","L2","TURNERSVILLE","NJ","08012",,,,,,,"223058174","8566295800",,,,"2011-03-16T13:35:00-0500","LAWRENCE ABRAMOVITZ","2011-03-16T13:35:00-0500","LAWRENCE ABRAMOVITZ",,,9,9,0,,9,0,9,8,0,,"2E2F2J2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110317104154P040004055970001","2002-07-01","2003-06-30","2",,"0","0","0","0","0","0","0","1","0",,"MATERNAL INFANT SERVICE NETWORK OF ORANGE, SULLIVAN & ULSTER INC. DEFINED CONTRIBUTION PLAN","001","1991-12-01","MATERNAL INFANT SERVICE NETWORK OF ORANGE, SULLIVAN & ULSTER, INC.",,,"200 ROUTE 32","PO BOX 548","CENTRAL VALLEY","NY","10917",,,,,,,"200 ROUTE 32","PO BOX 548","CENTRAL VALLEY","NY","10917",,,,,,,"061286045","8459287448","624100","MATERNAL INFANT SERVICE NETWORK OF ORANGE, SULLIVAN & ULSTER, INC.",,"200 ROUTE 32","PO BOX 548","CENTRAL VALLEY","NY","10917",,,,,,,"061286045","8459287448",,,,"2011-03-17T10:41:37-0500","YVONNE VAN TASSEL",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",, "20110321102940P030028988689001","2008-06-01","2009-05-31","2",,"0","1","0","0","0","0","0","0","0",,"COMPLETE CONCRETE RESTORATION CO. 401(K) PLAN","001","1997-06-01","COMPLETE CONCRETE RESTORATION CO.",,,"#9 MINGO LANE",,"OFALLON","MO","63366",,,,,,,,,,,,,,,,,,"431720682","6365372633","238100","COMPLETE CONCRETE RESTORATION CO.",,"#9 MINGO LANE",,"OFALLON","MO","63366",,,,,,,"431720682","6365372633",,,,"2011-03-21T07:44:55-0500","FRANCIS A. PAIGE, III","2011-03-21T07:44:55-0500","FRANCIS A. PAIGE, III",,,13,5,0,7,12,0,12,12,0,,"2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110314134118P040003813874001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEAWIND MEDICAL CLINIC 401K PROFIT SHARING PLAN","002","2001-01-01","SEAWIND MEDICAL CLINIC",,,"4121 W. HIGHWAY 98",,"PANAMA CITY","FL","32405",,,,,,,,,,,,,,,,,,"201207873","8508729701","621111","SEAWIND MEDICAL CLINIC",,"4121 W. HIGHWAY 98",,"PANAMA CITY","FL","32405",,,,,,,"201207873","8508729701","SEAWIND MEDICAL CLINIC","592993524","002","2011-03-14T13:41:16-0500","JOHN C. ENGLAND, MD","2011-03-14T13:41:16-0500","JOHN C. ENGLAND, MD",,,41,15,0,10,25,0,25,19,1,,"2J2E2G3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110321165513P030029136721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRONDER COMPANY 401(K) RETIREMENT PLAN","001","2009-04-01","BRONDER TECHNICAL SERVICES, INC.",,,"650 NEW CASTLE ROAD",,"BUTLER","PA","16001",,,,,,,,,,,,,,,,,,"251691262","7242828179","238210","BRONDER TECHNICAL SERVICES, INC.",,"650 NEW CASTLE ROAD",,"BUTLER","PA","16001",,,,,,,"251691262","7242828179",,,,"2011-03-21T16:54:19-0500","NICOLE ROBINSON",,,,,27,26,0,2,28,0,28,28,0,,"2E2J2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-21","Filed with authorized/valid electronic signature",, "20110314143149P040025423057001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","1","0","0","0",,"D J, INC. 401(K) PLAN","001","1989-01-01","D J, INC.",,,"P.O. BOX 58128",,"LOUISVILLE","KY","40258",,,,,,,"7301 DISTRIBUTION DRIVE",,"LOUISVILLE","KY","40258",,,,,,,"610721433","5029332525","326100","D J, INC.",,"P.O. BOX 58128",,"LOUISVILLE","KY","40258",,,,,,,"610721433","5029332525",,,,"2011-03-14T14:07:08-0500","JULIE SULLIVAN",,,,,116,0,0,0,0,0,0,0,0,,"3D2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110316153036P030003866738001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WESTON COSMETIC SURGERY CENTER","001","2002-01-01","WESTON COSMETIC SURGERY CENTER",,,"2823 EXECUTIVE PARK DR",,"WESTON","FL","33331",,,,,,,"2823 EXECUTIVE PARK DR",,"WESTON","FL","33331",,,,,,,"651059102","9546597760","812990","WESTON COSMETIC SURGERY CENTER",,"2823 EXECUTIVE PARK DR",,"WESTON","FL","33331",,,,,,,"651059102","9546597760",,,,"2011-03-16T15:30:18-0500","DENISE MORRELL",,,,,12,11,0,1,12,0,12,7,0,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110314093830P030025122657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ATCO PRODUCTS, INC. EMPLOYEES PROFIT SHARING PLAN","001","1962-11-15","BIG G CORP.",,,"189-203 FRELINGHUYSEN AVENUE",,"NEWARK","NJ","07114",,,,,,,,,,,,,,,,,,"221694455","9732426521","423700","BIG G CORP.",,"189-203 FRELINGHUYSEN AVENUE",,"NEWARK","NJ","07114",,,,,,,"221694455","9732426521",,,,"2011-03-14T09:38:12-0500","MARTIN GORNSTEIN",,,,,9,7,0,1,8,0,8,7,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-14","Filed with authorized/valid electronic signature",, "20110318160931P030008514183001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","0","1",,"COMMUNITY REACH CENTER SYSTEMS, INC.","002","2000-01-01","COMMUNITY REACH CENTER SYSTEMS, INC",,,"8931 HURON STREET",,"THORNTON","CO","80260",,,,,,,"8931 HURON STREET",,"THORNTON","CO","80260",,,,,,,"841177594","3038533500","621330","COMMUNITY REACH CENTER SYSTEMS, INC",,"8931 HURON STREET",,"THORNTON","CO","80260",,,,,,,"841177594","3038533500",,,,"2011-03-18T16:09:19-0500","RICHARD DOUCET",,,,,152,209,0,0,209,0,209,,0,,"2L",,"1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",, "20110316080159P030122873456001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","1","0","0","0",,"VERTRO, INC. 401(K) PLAN","001","2004-01-01","VERTRO, INC.",,,"143 VARICK STREET",,"NEW YORK","NY","10013",,,,,,,,,,,,,,,,,,"880348835","2392205766","812990","VERTRO, INC.",,"143 VARICK STREET",,"NEW YORK","NY","10013",,,,,,,"880348835","2392205766",,,,"2011-03-16T07:52:55-0500","JAMES GALLAGHER","2011-03-16T07:52:55-0500","JAMES GALLAGHER",,,110,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110317080438P040027031457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IRA S. MORROW, DMD RETIREMENT PLAN","001","1985-12-02","DR. IRA MORROW, DMD, P.C.",,,"68 VALLEYVIEW DRIVE",,"STAMFORD","CT","06903",,,,,,,,,,,,,,,,,,"260176784","9144764040","621210","DR. IRA MORROW, DMD, P.C.",,"68 VALLEYVIEW DRIVE",,"STAMFORD","CT","06903",,,,,,,"260176784","9144764040",,,,"2011-03-17T08:03:36-0500","IRA S. MORROW, D.M.D.","2011-03-17T08:03:36-0500","IRA S. MORROW, D.M.D.",,,4,3,0,1,4,0,4,4,0,,"2A2E3D2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110318155054P030128914384001","2010-03-16","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"INITIATIVE ENTERPRISES INC. 401(K) PLAN","001","2010-03-16","INITIATIVE ENTERPRISES INC.",,,"216 WILLARD DRIVE",,"CHESAPEAKE","VA","23322",,,,,,,,,,,,,,,,,,"272115503","7578479504","713900","INITIATIVE ENTERPRISES INC.",,"216 WILLARD DRIVE",,"CHESAPEAKE","VA","23322",,,,,,,"272115503","7578479504",,,,"2011-03-18T15:50:45-0500","DOUGLAS CHRISTIAN","2011-03-18T15:50:45-0500","DOUGLAS CHRISTIAN",,,0,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D2R3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110311123207P030023571553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARTHA'S VINEYARD HISTORICAL SOCIETY EMPLOYER PLAN","001","2005-07-01","MARTHA'S VINEYARD HISTORICAL SOCIETY","MARTHA'S VINEYARD MUSEUM","M MAYHEW","P O BOX 1310",,"EDGARTOWN","MA","02539",,,,,,,"59 SCHOOL ST",,"EDGARTOWN","MA","02539",,,,,,,"042160642","5086274441","712100","MARTHA'S VINEYARD HISTORICAL SOCIETY","M MAYHEW","P O BOX 1310",,"EDGARTOWN","MA","02539",,,,,,,"042160642","5086274441",,,,"2011-03-11T12:31:39-0600","MARGARET MAYHEW",,,,,13,8,0,7,15,15,30,15,0,,"2L",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-11","Filed with authorized/valid electronic signature",, "20110316143033P040122908496001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WELDMENTS, INC. 401(K) PLAN","001","1994-11-01","WELDMENTS, INC.",,,"10720 NORTH SECOND STREET",,"MACHESNEY PARK","IL","61115",,,,,,,,,,,,,,,,,,"362532528","8156333393","332900","WELDMENTS, INC.",,"10720 NORTH SECOND STREET",,"MACHESNEY PARK","IL","61115",,,,,,,"362532528","8156333393",,,,"2011-03-16T14:09:43-0500","STEVEN GLEASMAN",,,,,19,14,0,6,20,0,20,20,1,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-16","Filed with authorized/valid electronic signature",, "20110317165356P040027229585001","2010-01-01","2010-12-22","2",,"0","0","1","1","0","0","0","0","0",,"DATACO DEREX INC 401(K) PLAN","001","1989-01-01","DATACO DEREX INC",,,"9001 LENEXA DR",,"LENEXA","KS","662153839",,,,,,,"9001 LENEXA DR",,"LENEXA","KS","662153839",,,,,,,"431240813","9134382444","423800","DATACO DEREX INC",,"9001 LENEXA DR",,"LENEXA","KS","662153839",,,,,,,"431240813","9134382444",,,,"2011-03-17T16:51:25-0500","LARRY BOLTON",,,,,23,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-03-17","Filed with authorized/valid electronic signature",, "20110307093518P030100175936001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","0","0",,"FRAZIER PARK LUMBER & HARDWARE 401(K) PLAN","001","2004-01-01","FRAZIER PARK LUMBER & HARDWARE","ACE HARDWARE","HARRY SPYRKA","3320 MT. PINOS","PO BOX 219","FRAZIER PARK","CA","93225",,,,,,,"3320 MT. PINOS","PO BOX 219","FRAZIER PARK","CA","93225",,,,,,,"952591818","6612453301","444110","FRAZIER PARK LUMBER & HARDWARE","HARRY SPYRKA","3320 MT. PINOS","PO BOX 219","FRAZIER PARK","CA","93225",,,,,,,"952591818","6612453301",,,,"2011-03-07T09:34:43-0600","HARRY SPYRKA",,,,,12,12,0,1,13,0,13,11,0,,"2E2F2G2J2K2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",, "20110307103648P040003234642001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPECIALTY FINISHING, INC. 401(K) RETIREMENT PLAN","001","2009-01-01","SPECIALTY FINISHING, INC.",,,"14010 LEETSBIR ROAD",,"STURTEVANT","WI","53177",,,,,,,,,,,,,,,,,,"392038252","2623210010","321210","SPECIALTY FINISHING, INC.",,"14010 LEETSBIR ROAD",,"STURTEVANT","WI","53177",,,,,,,"392038252","2623210010",,,,"2011-03-07T10:35:24-0600","KIM PEUSCHOLD",,,,,13,12,0,1,13,0,13,9,0,,"2E2J2K2F2G3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",, "20110307104250P040000665203001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHYMD COMPUTER CONSULTING SERVICES, INC. 401K PROFIT SHARING PLAN","001","2006-01-01","PHYMD COMPUTER CONSULTING SERVICES, INC.",,,"PO BOX 327",,"LADY LAKE","FL","32158",,,,,,,,,,,,,,,,,,"522323063","3013156330","541512","PHYMD COMPUTER CONSULTING SERVICES, INC.",,"PO BOX 327",,"LADY LAKE","FL","32158",,,,,,,"522323063","3013156330",,,,"2011-03-07T10:38:20-0600","PHILLIP TREMPER",,,,,3,2,0,1,3,0,3,3,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",, "20110307104321P030021335617003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARYLAND SPECTRAL SERVICES, INC. PROFIT-SHARING PLAN","001","1990-01-01","MARYLAND SPECTRAL SERVICES, INC.",,,"1500 CATON CENTER DRIVE","SUITE G","BALTIMORE","MD","21227",,,,,,,"1500 CATON CENTER DRIVE","SUITE G","BALTIMORE","MD","21227",,,,,,,"521583908","4102477600","541990","MARYLAND SPECTRAL SERVICES, INC.",,"1500 CATON CENTER DRIVE","SUITE G","BALTIMORE","MD","21227",,,,,,,"521583908","4102477600",,,,"2011-03-07T05:25:39-0600","SAMUEL G. HAMNER","2011-03-07T05:25:39-0600","SAMUEL G. HAMNER","2011-03-07T05:25:39-0600","FRANK SAVARESE",8,9,,,9,,9,8,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110310124048P030023010593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STAR PRINTING COMPANY, INC. 401(K) PLAN","001","2005-01-01","STAR PRINTING COMPANY, INC.",,,"125 N UNION STREET",,"AKRON","OH","44304",,,,,,,,,,,,,,,,,,"340858899","3303760514","323100","STAR PRINTING COMPANY, INC.",,"125 N UNION STREET",,"AKRON","OH","44304",,,,,,,"340858899","3303760514",,,,"2011-03-10T12:28:12-0600","LYNDA MOORE",,,,,23,24,0,0,24,0,24,12,0,,"2E2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110315140729P030120985152001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"CUISINE D'ART 401(K)","001","2007-10-01","CUISINE DART",,,"701 N. NEW BALLAS RD.",,"CREVE COEUR","MO","63141",,,,,,,,,,,,,,,,,,"431653372","3149953003","722300","CUISINE DART",,"701 N. NEW BALLAS RD.",,"CREVE COEUR","MO","63141",,,,,,,"431653372","3149953003",,,,"2011-03-15T14:07:10-0500","BETH WILLIAMS",,,,,7,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",, "20110324111845P030030646497001","2010-10-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"KOMAN SPORTSWEAR DEFINED BENEFIT PENSION PLAN","001","1985-10-01","KOMAN SPORTSWEAR",,,"380 NORTH STREET",,"TETERBORO","NJ","07608",,,,,,,,,,,,,,,,,,"222424705","2014382211","315990","KOMAN SPORTSWEAR",,"380 NORTH STREET",,"TETERBORO","NJ","07608",,,,,,,"222424705","2014382211",,,,"2011-03-24T11:18:30-0500","GARY CEPPOS",,,,,10,0,0,0,0,0,0,,0,,"1A1G1I1H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110310151527P030023064737001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ROSENTHAL MANAGEMENT SERVICES","002","2001-07-01","ROSENTHAL MANAGEMENT SERVICES, LLC",,,"100 E 15TH STREET, SUITE 100",,"FORT WORTH","TX","76102",,,,,,,"100 E 15TH STREET, SUITE 100",,"FORT WORTH","TX","76102",,,,,,,"201987433","8173362000","523900","ROSENTHAL MANAGEMENT SERVICES, LLC",,"100 E 15TH STREET, SUITE 100",,"FORT WORTH","TX","76102",,,,,,,"201987433","8173362000",,,,"2011-03-10T15:13:29-0600","BURK ROSENTHAL",,,,,18,17,0,2,19,0,19,17,1,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110315152139P030003778050001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","1","0","0","0",,"EVERGREEN PROPERTIES OF NORTH CAROLINA, LLC 401K PLAN","001","1998-04-01","EVERGREEN PROPERTIES OF NORTH CAROLINA, LLC",,,"500 KITTLE ROAD",,"FORREST CITY","AR","72336",,,,,,,,,,,,,,,,,,"562099991","8706334260","621399","EVERGREEN PROPERTIES OF NORTH CAROLINA, LLC",,"500 KITTLE ROAD",,"FORREST CITY","AR","72336",,,,,,,"562099991","8706334260",,,,"2011-03-15T15:21:30-0500","ALAN CURTIS","2011-03-15T15:21:30-0500","ALAN CURTIS",,,633,0,0,0,0,0,0,0,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110310135448P040023345697001","2002-01-01","2002-12-31","2",,"1","0","0","0","0","0","0","1","0",,"CORBEAU USA, LLC PENSION PLAN","001","2002-01-01","CORBEAU USA, LLC",,,"CORBEAU USA,LLC","592 EAST DRAPER WOODS WAY","DRAPER","UT","84020",,,,,,,,,,,,,,,,,,"841391350","8012253737","336990","CORBEAU USA, LLC",,"CORBEAU USA,LLC","592 EAST DRAPER WOODS WAY","DRAPER","UT","84020",,,,,,,"841391350","8012253737",,,,"2011-03-10T13:54:08-0600","SPENCER BOND","2011-03-10T13:54:08-0600","SPENCER BOND",,,5,5,0,0,5,0,5,,0,,"1A1G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110310095409P030107917504001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNIVERSAL SOLUTIONS, INC. 401(K) PROFIT SHARING PLAN","001","2008-01-01","UNIVERSAL SOLUTIONS, INC.",,,"8339 STONE RUN COURT",,"TAMPA","FL","33615",,,,,,,,,,,,,,,,,,"593323035","8136391241","237990","UNIVERSAL SOLUTIONS, INC.",,"8339 STONE RUN COURT",,"TAMPA","FL","33615",,,,,,,"593323035","8136391241",,,,"2011-03-10T09:48:06-0600","JOZSEF MATRAI",,,,,11,14,0,1,15,0,15,10,0,,"2A2E2J2K2F2G2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110307154038P040021728241001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PHILIP W. GANONG, INC. APC DBA GANONG LAW OFFICE PROFIT SHARING PLAN","001","1997-01-01","PHILIP W. GANONG, INC., APC DBA GANONG LAW OFFICE",,,"P.O. BOX 192",,"BAKERSFIELD","CA","933020192",,,,,,,"930 TRUXTUN AVE., SUITE 203",,"BAKERSFIELD","CA","93301",,,,,,,"953789860","6613273337","541110","PHILIP W. GANONG, INC., APC DBA GANONG LAW OFFICE",,"P.O. BOX 192",,"BAKERSFIELD","CA","933020192",,,,,,,"953789860","6613273337",,,,"2011-03-07T11:33:17-0600","PHILIP GANONG","2011-03-07T11:33:17-0600","PHILIP GANONG",,,7,5,0,0,5,0,5,2,0,,"2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110307074327P040021526705001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KATHERINE G THOMAS DDS PC 401(K) PROFIT SHARING PLAN","001","2007-01-01","KATHERINE G THOMAS DDS PC",,,"158 FRONT ROYAL ROAD, SUITE 311",,"WINCHESTER","VA","22602",,,,,,,,,,,,,,,,,,"204958080","5406650918","621210","KATHERINE G THOMAS DDS PC",,"158 FRONT ROYAL ROAD, SUITE 311",,"WINCHESTER","VA","22602",,,,,,,"204958080","5406650918",,,,"2011-03-04T04:12:03-0600","KATHERINE G THOMAS DDS",,,,,3,4,,,4,,4,,,,"2E2G2J2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",, "20110315110008P030025727313001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JIM G. TAYLOR, O.D., P.C. MONEY PURCHASE PENSION PLAN","001","1974-12-01","JIM G. TAYLOR, O.D., P.C.",,,"60 FAIRGROUNDS RD",,"PARIS","TN","38242",,,,,,,,,,,,,,,,,,"620907405","7316424434","621320","JIM G. TAYLOR, O.D., P.C.",,"60 FAIRGROUNDS RD",,"PARIS","TN","38242",,,,,,,"620907405","7316424434",,,,"2011-03-15T10:55:33-0500","CURT TAYLOR",,,,,2,4,0,0,4,0,4,4,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",, "20110310120947P030022995809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRAYHORSE OPERATING, INC. 401(K) RETIREMENT PLAN","001","2000-09-01","GRAYHORSE OPERATING, INC.",,,"20 E. 5TH ST., STE. 320",,"TULSA","OK","74103",,,,,,,,,,,,,,,,,,"731591605","9183829201","541990","GRAYHORSE OPERATING, INC.",,"20 E. 5TH ST., STE. 320",,"TULSA","OK","74103",,,,,,,"731591605","9183829201",,,,"2011-03-08T16:03:23-0600","MICHAEL ROBERTSON",,,,,9,7,0,0,7,2,9,9,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110305134509P040020604449001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE MCKINNEY PARTNERSHIP ARCHITECTS, PC 401(K) PROFIT SHARING PLAN","001","2008-01-01","THE MCKINNEY PARTNERSHIP ARCHITECTS, PC",,,"3600 W MAIN, SUITE 200",,"NORMAN","OK","73072",,,,,,,,,,,,,,,,,,"731518359","4053601400","541310","THE MCKINNEY PARTNERSHIP ARCHITECTS, PC",,"3600 W MAIN, SUITE 200",,"NORMAN","OK","73072",,,,,,,"731518359","4053601400",,,,"2011-03-05T01:44:33-0600","RICHARD S. MCKINNEY JR.",,,,,29,28,0,2,30,0,30,23,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-05","Filed with authorized/valid electronic signature",, "20110305171407P030095945040001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WYMAC CAPITAL INC EMPLOYEE PROFIT SHARING PLAN","002","1993-01-01","WYMAC CAPITAL INC",,,"2700 YGNACIO VALLEY RD. SUITE 260",,"WALNUT CREEK","CA","94598",,,,,,,"2700 YGNACIO VALLEY RD. SUITE 260",,"WALNUT CREEK","CA","94598",,,,,,,"680248789","9259374300","523900","WYMAC CAPITAL INC",,"2700 YGNACIO VALLEY RD. SUITE 260",,"WALNUT CREEK","CA","94598",,,,,,,"680248789","9259374300",,,,"2011-02-07T09:13:15-0600","DARRELL WILEY","2011-02-07T09:13:15-0600","DARRELL WILEY",,,6,6,0,0,6,0,6,6,0,,"2E2F2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110307121401P030003136786001","2009-07-01","2010-06-30","4","C","0","0","0","0","0","0","0","0","0",,"EB DV NON-SL STOCK INDEX FUND","215",,"THE BANK OF NEW YORK MELLON",,,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,,,,,,,,,,,,"256078093","4122366165",,"THE BANK OF NEW YORK MELLON",,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,"256078093","4122366165",,,,,,,,"2011-03-07T12:13:22-0600","JEFFREY VAUGHN",0,0,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-03-07",,"Filed with authorized/valid electronic signature", "20110315143415P040120417616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HWS CONSULTING GROUP, INC.","507","2007-01-01","HWS CONSULTING GROUP, INC.",,,"825 J STREET",,"LINCOLN","NE","68508",,,,,,,"825 J STREET",,"LINCOLN","NE","68508",,,,,,,"470692656","4024792200","541330","HWS CONSULTING GROUP, INC.",,"825 J STREET",,"LINCOLN","NE","68508",,,,,,,"470692656","4024792200",,,,"2011-03-14T17:19:39-0500","KRISTINA HORN","2011-03-14T17:20:07-0500","KRISTINA HORN",,,102,93,,,93,,93,,,,,"4D4R","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110323082907P030030052273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RISING PHARMACEUTICALS, INC. 401K PLAN & TRUST","001","2002-01-01","RISING PHARMACEUTICALS, INC.",,,"3 PEARL COURT, SUITE A/B",,"ALLENDALE","NJ","07401",,,,,,,,,,,,,,,,,,"223649164","2019619000","424210","RISING PHARMACEUTICALS, INC.",,"3 PEARL COURT, SUITE A/B",,"ALLENDALE","NJ","07401",,,,,,,"223649164","2019619000",,,,"2011-03-23T08:29:42-0500","RONALD F. GOLD, PRESIDENT","2011-03-23T08:29:42-0500","RONALD F. GOLD, PRESIDENT",,,24,23,0,3,26,1,27,27,1,,"2A2E2J2F2G2R2T",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110323232635P030030387089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLER & REILLEY ASSOCIATES, INC. PROFIT SHARING PLAN","194","1971-08-01","CORINTHIAN ORGANIZATION",,"DAVID F. WAMPOLE","PO BOX 215",,"TELFORD","PA","189690215",,,,,,,"PO BOX 215",,"TELFORD","PA","189690215",,,,,,,"231731237","2157030942","541310","CORINTHIAN ORGANIZATION","DAVID F. WAMPOLE","PO BOX 215",,"TELFORD","PA","189690215",,,,,,,"231731237","2157030942",,,,"2011-03-23T23:18:22-0500","DAVID WAMPOLE",,,,,1,1,0,0,1,0,1,,0,,"2E3D","4B",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110306155233P040021173809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"D. SIMPSON MANUFACTURING, INC. PROFIT SHARING PLAN","001","1985-03-01","D. SIMPSON MANUFACTURING, INC.",,,"13 INDUSTRIAL DRIVE",,"SMITHFIELD","RI","029171516",,,,,,,,,,,,,,,,,,"050384606","4017240238","339900","D. SIMPSON MANUFACTURING, INC.",,"13 INDUSTRIAL DRIVE",,"SMITHFIELD","RI","029171516",,,,,,,"050384606","4017240238",,,,"2011-03-06T15:41:32-0600","LINDA SIMPSON",,,,,12,10,0,2,12,0,12,12,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-06","Filed with authorized/valid electronic signature",, "20110320213831P040133697824001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"PROFIT SHARING PLAN FBO IRVING A. BLOOM, M.D.","001","1985-01-01","IRVING A. BLOOM, M.D.",,,"130 CEDAR RD. #310",,"VISTA","CA","92083",,,,,,,"130 CEDAR RD. #310",,"VISTA","CA","92083",,,,,,,"363338273","7606309095","621111","IRVING A. BLOOM, M.D.",,"130 CEDAR RD. #310",,"VISTA","CA","92083",,,,,,,"363338273","7606309095",,,,"2011-03-20T21:37:32-0500","IRVING A. BLOOM M.D.",,,,,4,4,0,0,4,0,4,4,0,,"2E2G3B3E",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-03-20","Filed with authorized/valid electronic signature",, "20110310140159P030023043633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM R. MORGAN, D.D.S., INC. RETIREMENT PLAN & TRUST","004","2008-01-01","WILLIAM R. MORGAN, D.D.S., INC.",,,"P.O. BOX 1653",,"JONESBORO","AR","72401",,,,,,,,,,,,,,,,,,"710765603","8709328657","621210","WILLIAM R. MORGAN, D.D.S., INC.",,"P.O. BOX 1653",,"JONESBORO","AR","72401",,,,,,,"710765603","8709328657",,,,"2011-03-10T11:45:54-0600","WILLIAM R. MORGAN",,,,,5,5,0,0,5,0,5,5,0,,"2A2E2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110323131605P040030506625001","2010-01-01","2010-12-10","2",,"0","0","1","1","0","0","0","0","0",,"ALLEN ORGAN COMPANY SALARIED EMPLOYEES PENSION PLAN","002","1969-01-01","LANDCO REAL ESTATE, LLC",,,"150 LOCUST STREET","P.O. BOX 36","MACUNGIE","PA","180621165",,,,,,,,,,,,,,,,,,"205532396","6109662200","531310","LANDCO REAL ESTATE, LLC",,"150 LOCUST ST., P.O. BOX 36",,"MACUNGIE","PA","180621165",,,,,,,"205532396","6109662200",,,,"2011-03-23T13:15:24-0500","STEVE MARKOWITZ",,,,,188,0,0,0,0,0,0,,0,,"1A1G1I3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",, "20110324074929P030030565521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARK E. CRISPIN, M.D., P.C. PROFIT SHARING PLAN","001","2004-01-01","MARK E. CRISPIN, M.D., P.C.",,,"5673 PEACHTREE DUNWOODY ROAD","SUITE 100","ATLANTA","GA","30342",,,,,,,,,,,,,,,,,,"900114122","4042529888","621111","MARK E. CRISPIN, M.D., P.C.",,"5673 PEACHTREE DUNWOODY ROAD","SUITE 100","ATLANTA","GA","30342",,,,,,,"900114122","4042529888",,,,"2011-03-23T15:38:21-0500","MARK CRISPIN","2011-03-23T15:38:21-0500","MARK CRISPIN",,,6,4,,3,7,,7,7,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110310130159P040107595360001","2008-12-01","2009-11-30","2",,"0","1","0","0","0","0","0","0","0",,"TREE TOWNS REPRO SERVICE, INC. 401 (K) PLAN & TRUST","004","1991-12-01","TREE TOWNS REPROGRAPICS, INC.",,,"542 SPRING ROAD",,"ELMHURST","IL","60126",,,,,,,"542 SPRING ROAD",,"ELMHURST","IL","60126",,,,,,,"362732816","6308320209","541990","TREE TOWNS REPROGRAPICS, INC.",,"542 SPRING ROAD",,"ELMHURST","IL","60126",,,,,,,"362732816","6308320209",,,,"2011-03-10T13:00:36-0600","JANICE COWHEY",,,,,32,26,0,3,29,0,29,29,1,,"2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110310154441P030023078929001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"CORNERSTONE PSYCHIATRY ASSOCIATES BASIC PROFIT SHARING QUALIFIED RETIREMENT","001","2004-07-01","CORNERSTONE PSYCHIATRY ASSOCIATES",,,"14340 TORREY CHASE BLVD","SUITE 160","HOUSTON","TX","77014",,,,,,,"14340 TORREY CHASE BLVD","SUITE 160","HOUSTON","TX","77014",,,,,,,"760323389","2815808086","621112","CORNERSTONE PSYCHIATRY ASSOCIATES",,"14340 TORREY CHASE BLVD","SUITE 160","HOUSTON","TX","77014",,,,,,,"760323389","2815808086",,,,"2011-03-10T15:43:35-0600","BERNARD ROSENBERG",,,,,5,5,0,0,5,0,5,,0,,"2E2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110307134857P030003143298001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE VALENTE CONCRETE, INC. 401(K) RETIREMENT PLAN","001","2003-11-01","VALENTE CONCRETE, INC.",,,"255 BENJAMIN DRIVE",,"CORONA","CA","92879",,,,,,,,,,,,,,,,,,"330756675","9512792221","327300","VALENTE CONCRETE, INC.",,"255 BENJAMIN DRIVE",,"CORONA","CA","92879",,,,,,,"330756675","9512792221",,,,"2011-03-07T13:48:55-0600","MATT VALENTE","2011-03-07T13:48:55-0600","MATT VALENTE",,,66,62,0,2,64,0,64,31,0,,"2E2F2G2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110310071846P040023168337001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","1",,"NUGENT PLUMBING INC 401 (K ) PLAN","001","2002-11-01","NUGENT PLUMBING INC",,,"5597 WEBSTER ST",,"DAYTON","OH","45414",,,,,,,"5597 WEBSTER ST",,"DAYTON","OH","45414",,,,,,,"310828338","9372643304","238220","NUGENT PLUMBING INC",,"5597 WEBSTER ST",,"DAYTON","OH","45414",,,,,,,"310828338","9372643304",,,,"2011-03-10T07:18:16-0600","SUSAN NUGENT",,,,,4,2,0,2,4,0,4,4,0,0,"2E2F2G2J2K3E3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110310072737P040106996096001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KNAPP FUNERAL HOMES INC PROFIT SHARING PLAN","002","2007-04-18","KNAPP FUNERAL HOMES INC",,,"219 SOUTH 4TH",,"WATSEKA","IL","60970",,,,,,,"219 SOUTH 4TH",,"WATSEKA","IL","60970",,,,,,,"370509270","8154322406","812210","KNAPP FUNERAL HOMES INC",,"219 SOUTH 4TH",,"WATSEKA","IL","60970",,,,,,,"370509270","8154322406",,,,"2011-03-09T16:37:28-0600","STEVEN KNAPP",,,,,9,9,,,9,,9,9,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110324104205P030030632865001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMAS J. CLARK 401(K) PLAN","001","1985-01-01","THOMAS CLARK",,,"214 MAIN ST. BOX 623",,"MOVILLE","IA","51039",,,,,,,,,,,,,,,,,,"484506119","7128733525","621210","THOMAS CLARK",,"214 MAIN ST. BOX 623",,"MOVILLE","IA","51039",,,,,,,"484506119","7128733525",,,,"2011-03-24T10:36:53-0500","THOMAS J CLARK",,,,,5,5,0,5,10,0,10,5,0,0,"2A2E2G2J2K2F",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110309112910P040022730577001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SCALA PUBLISHERS LIMITED 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","SCALA PUBLISHERS LTD",,,"141 WOOSTER ST STE 4D",,"NEW YORK","NY","10012",,,,,,,,,,,,,,,,,,"980391466","2075397611","511130","SCALA PUBLISHERS LTD",,"141 WOOSTER ST STE 4D",,"NEW YORK","NY","10012",,,,,,,"980391466","2075397611",,,,"2011-03-09T11:29:10-0600","ANTONY WHITE",,,,,1,1,0,0,1,0,1,1,,,"2E2G2J2K3E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110310103650P040107339344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENGLEWOOD EAR, NOSE & THROAT, P.C. 401(K) PLAN","001","2001-01-01","ENGLEWOOD EAR, NOSE & THROAT, P.C.",,,"216 ENGLE STREET - SUITE 101",,"ENGLEWOOD","NJ","07631",,,,,,,,,,,,,,,,,,"223771963","2018169800","621111","ENGLEWOOD EAR, NOSE & THROAT, P.C.",,"216 ENGLE STREET - SUITE 101",,"ENGLEWOOD","NJ","07631",,,,,,,"223771963","2018169800",,,,"2011-03-10T10:36:43-0600","BRYAN T. HO",,,,,10,10,0,1,11,0,11,11,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110310112433P040023265777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KIP OWEN MD PA PROFIT SHARING PLAN AND TRUST","002","2005-01-01","KIP OWEN MD PA",,,"5111 N 10TH ST 268",,"MCALLEN","TX","785042835",,,,,,,"5111 N 110TH ST 268",,"MCALLEN","TX","785042835",,,,,,,"710745831","9569948983","621111","KIP OWEN MD PA",,"5111 N 10TH ST 268",,"MCALLEN","TX","785042835",,,,,,,"710745831","9569948983",,,,"2011-03-10T11:11:34-0600","KAYE KIP OWEN MD",,,,,18,14,0,2,16,0,16,16,1,,"2A2E2H3B3D3H","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-03-10","Filed with authorized/valid electronic signature",, "20110309173642P030022570641001","2010-01-01","2010-12-21","2",,"0","0","1","1","0","1","0","0","0",,"MANHATTAN FAMILY AND IMPLANT DENTISTRY DEFINED BENEFIT PENSION PLAN & TRUST","005","2000-01-01","MARK D. HUNGERFORD, D.D.S., P.A.",,,"1305 W. LOOP PLACE",,"MANHATTAN","KS","66502",,,,,,,,,,,,,,,,,,"481036355","7855395949","621210","MARK D. HUNGERFORD, D.D.S., P.A.",,"1305 W. LOOP PLACE",,"MANHATTAN","KS","66502",,,,,,,"481036355","7855395949",,,,"2011-03-09T17:36:33-0600","MARK D. HUNGERFORD",,,,,19,0,0,0,0,0,0,,0,,"1B1I3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110309081059P040022651713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEESE ENTERPRISES, INC. D/B/A QUALITY A/C & HEATING PROFIT SHARING PLAN","001","1993-01-01","NEESE ENTERPRISES, INC.","QUALITY A/C HEATING",,"5351 SW 16TH AVENUE",,"OKEECHOBEE","FL","349745965",,,,,,,,,,,,,,,,,,"592794622","8634671545","238220","NEESE ENTERPRISES, INC.",,"5351 SW 16TH AVENUE",,"OKEECHOBEE","FL","349745965",,,,,,,"592794622","8634671545",,,,"2011-03-09T08:03:05-0600","SAMUEL NEESE, III",,,,,15,12,0,2,14,1,15,15,3,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110307140108P030100653888001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SLED DOG MANAGEMENT, INC. PROFIT SHARING PLAN","001","2004-10-20","SLED DOG MANAGEMENT, INC.",,,"81 E. WENTWORTH AVE.",,"WEST ST. PAUL","MN","55118",,,,,,,,,,,,,,,,,,"201773502","6514550003","811120","SLED DOG MANAGEMENT, INC.",,"81 E. WENTWORTH AVE.",,"WEST ST. PAUL","MN","55118",,,,,,,"201773502","6514550003",,,,"2011-03-07T12:20:41-0600","RICHARD TOBOZ","2011-03-07T12:20:41-0600","RICHARD TOBOZ",,,8,6,0,0,6,0,6,1,0,,"2A2E2F2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110315151627P030121119968001","2010-05-28","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"COMPLETE CUSTOM FIT SOLUTIONS RETIREMENT PLAN","001","2010-05-28","COMPLETE CUSTOM FIT SOLUTIONS, INC.",,,"12021 SOUTH NICKLAUS ROAD",,"SANDY","UT","84092",,,,,,,,,,,,,,,,,,"272712867","8015414561","541519","COMPLETE CUSTOM FIT SOLUTIONS, INC.",,"12021 SOUTH NICKLAUS ROAD",,"SANDY","UT","84092",,,,,,,"272712867","8015414561",,,,"2011-03-15T15:16:21-0500","RUSTY BARTON","2011-03-15T15:16:21-0500","RUSTY BARTON",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110315171851P030003785570001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BIRMINGHAM BARONS, LLC 401K PROFIT SHARING PLAN","001","2006-01-01","BIRMINGHAM BARONS, LLC",,,"PO BOX 360007",,"BIRMINGHAM","AL","35236",,,,,,,,,,,,,,,,,,"203412634","2059883200","711210","BIRMINGHAM BARONS, LLC",,"PO BOX 360007",,"BIRMINGHAM","AL","35236",,,,,,,"203412634","2059883200",,,,"2011-03-15T11:17:46-0500","SAMMY SCHILLACI",,,,,18,12,0,3,15,0,15,9,1,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-03-15","Filed with authorized/valid electronic signature",, "20110324105340P040030986913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BROWN INSURANCE SERV. 401K PROFIT SHARING PLAN","003","2005-01-01","KATHRYN E. BROWN, INC.",,"BROWN INSURANCE SERVICES","220 STATE STREET , SUITE E",,"LOS ALTOS","CA","940222826",,,,,,,,,,,,,,,,,,"770486335","6509495354","524210","KATHRYN E. BROWN, INC.","BROWN INSURANCE SERVICES","220 STATE STREET , SUITE E",,"LOS ALTOS","CA","940222826",,,,,,,"770486335","6509495354",,,,"2011-03-24T10:53:39-0500","KATHRYN E. BROWN",,,,,8,8,0,0,8,0,8,8,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110309151420P030022517233001","2010-01-01","2010-07-31","2",,"0","1","1","1","0","0","0","0","0",,"WESTERN MONEY SYSTEMS RETIREMENT PLAN","001","1989-07-01","WESTERN MONEY SYSTEMS",,,"620 KRESGE LANE",,"SPARKS","NV","89431",,,,,,,,,,,,,,,,,,"880211078","7753312262","453990","WESTERN MONEY SYSTEMS",,"620 KRESGE LANE",,"SPARKS","NV","89431",,,,,,,"880211078","7753312262",,,,"2011-03-09T15:14:01-0600","MARK DAVIS",,,,,63,0,0,0,0,0,0,0,8,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-09","Filed with authorized/valid electronic signature",, "20110322094033P040137521744001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"NASHVILLE SURGICAL ASSOCIATES, PLLC 401K PROFIT SHARING PLAN","001","1999-01-01","NASHVILLE SURGICAL ASSOCIATES, PLLC",,,"4230 HARDING ROAD, SUITE 302",,"NASHVILLE","TN","372052018",,,,,,,,,,,,,,,,,,"621758718","6152921508","621111","NASHVILLE SURGICAL ASSOCIATES, PLLC",,"4230 HARDING ROAD, SUITE 302",,"NASHVILLE","TN","372052018",,,,,,,"621758718","6152921508",,,,"2011-03-22T09:32:25-0500","KATHY BYRD",,,,,11,0,0,0,0,0,0,0,0,,"2E2G2J2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",, "20110323110331P040009589063001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JIMS MACHINING EMPLOYEES' RETIREMENT PLAN","001","1995-01-01","THIESSEN PRODUCTS INC","JIMS MACHINING",,"555 DAWSON DRIVE",,"CAMARILLO","CA","93012",,,,,,,"555 DAWSON DRIVE",,"CAMARILLO","CA","93012",,,,,,,"770248212","8054826913","332900","THIESSEN PRODUCTS INC",,"555 DAWSON DRIVE",,"CAMARILLO","CA","93012",,,,,,,"770248212","8054826913",,,,"2011-03-22T17:09:13-0500","JAY THIESSEN",,,,,76,51,0,24,75,0,75,75,2,,"2E2H2J2K2M3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",, "20110323174033P040009645831001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SADDLE CORP. DBA SADDLEBACK WATERPROOFING 401K PROFIT SHARING PLAN","001","1999-01-01","SADDLE CORP. DBA SADDLEBACK WATERPROOFING",,,"23531 RIDGE ROUTE, SUITE C",,"LAGUNA HILLS","CA","926531504",,,,,,,,,,,,,,,,,,"330445363","9495893422","238900","SUSAN GOLDENBERG",,"23531 RIDGE ROUTE, SUITE C",,"LAGUNA HILLS","CA","92653",,,,,,,"330445363","9495893422",,,,"2011-03-23T17:40:05-0500","SUSAN GOLDENBERG",,,,,17,5,0,11,16,0,16,16,1,,"2A2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",, "20110308094017P030021867793001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"ANTONIO C. LEE, M.D., INC. PROFIT SHARING PLAN","001","1981-05-01","ANTONIO C. LEE, M.D., INC.",,,"1003 OAK DRIVE",,"SULPHUR","OK","73086",,,,,,,,,,,,,,,,,,"731119445","5806222850","621111","ANTONIO C. LEE",,"1003 OAK DRIVE",,"SULPHUR","OK","73086",,,,,,,"731132743","5806226151",,,,"2011-02-26T04:14:42-0600","ANTONIO C. LEE","2011-02-26T04:14:51-0600","ANTONIO C. LEE",,,2,0,,,0,,0,,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110322134357P040029951009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLIFFORD E. SALM, D.M.D. PROFIT SHARING PLAN","001","2004-01-01","CLIFFORD E. SALM, D.M.D.",,,"30 E. 60TH STREET","SUITE 608","NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"200386196","2123083222","621210","CLIFFORD E. SALM, D.M.D.",,"30 E. 60TH STREET","SUITE 608","NEW YORK","NY","10022",,,,,,,"200386196","2123083222",,,,"2011-03-22T13:41:49-0500","CLIFFORD SALM",,,,,5,2,0,1,3,0,3,3,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",, "20110322200254P040030091665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANESTHESIOLOGY ASSOCIATES OF SHEBOYGAN, LTD. 401K PENSION PLAN","002","1979-08-01","ANESTHESIOLOGY ASSOCIATES OF SHEBOYGAN, LTD.",,,"1601 N. TAYLOR DRIVE",,"SHEBOYGAN","WI","530811930",,,,,,,,,,,,,,,,,,"391331502","9204594728","621111","ANESTHESIOLOGY ASSOCIATES OF SHEBOYGAN, LTD.",,"1601 N. TAYLOR DRIVE",,"SHEBOYGAN","WI","530811930",,,,,,,"391331502","9204594728",,,,"2011-03-22T19:58:52-0500","GEORGE HESS",,,,,11,8,1,1,10,0,10,10,0,,"2E2F2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",, "20110322152947P030029663697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRYANT & SONS LUMBER COMPANY, INC. 401(K) PLAN","001","2003-01-01","BRYANT & SONS LUMBER COMPANY, INC.",,,"P.O. BOX 396",,"SUMMERVILLE","GA","30747",,,,,,,,,,,,,,,,,,"581464231","7068573484","444190","BRYANT & SONS LUMBER COMPANY, INC.",,"P.O. BOX 396",,"SUMMERVILLE","GA","30747",,,,,,,"581464231","7068573484",,,,"2011-03-22T15:27:32-0500","ANTHONY BRYANT","2011-03-22T15:27:32-0500","ANTHONY BRYANT",,,11,9,,4,13,,13,13,1,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110308071926P040022092609001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HURON RIVER RADIATION ONCOLOGY SPECIALISTS, P.C. 401(K) PROFIT SHARING PLAN","002","2005-01-01","HURON RIVER RADIATION ONCOLOGY SPECIALISTS. P.C.",,,"3190 CARDINAL",,"ANN ARBOR","MI","48108",,,,,,,,,,,,,,,,,,"800121604","7347124227","621111","HURON RIVER RADIATION ONCOLOGY SPECIALISTS. P.C.",,"3190 CARDINAL",,"ANN ARBOR","MI","48108",,,,,,,"800121604","7347124227",,,,"2011-03-01T13:21:30-0600","SWATI DUTTA",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",, "20110319095335P030027933985001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE MANCHESTER COLLEGE 403B PLAN","002","1999-01-01","MANCHESTER COLLEGE",,"JACK A. GOCHENAUR, TREASURER","604 E COLLEGE AVE",,"NORTH MANCHESTER","IN","469621276",,,,,,,"604 E COLLEGE AVE",,"NORTH MANCHESTER","IN","469621276",,,,,,,"350868127","2609825245","611000","MANCHESTER COLLEGE","JACK A. GOCHENAUR, TREASURER","604 E COLLEGE AVE",,"NORTH MANCHESTER","IN","469621276",,,,,,,"350868127","2609825245",,,,"2011-03-19T09:24:04-0500","JONATHAN WIEAND",,,,,,,,,,,,,,,"2L",,,,"1",,,,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-03-19","Filed with authorized/valid electronic signature",, "20110319123354P040028268209001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"JACK STEPHENS & ASSOC. INC. PSP HOLLIS SMITH TTEE","001","2004-04-01","JACK STEPHENS & ASSOCIATES, INC.","HOLLIS SMITH & ASSOC.","HOLLIS SMITH","3012 COTTERS CIRCLE",,"RICHARDSON","TX","75082",,,,,,,"3012 COTTERS CIRCLE",,"RICHARDSON","TX","75082",,,,,,,"751225772","9724372884","531310","JACK STEPHENS & ASSOC. INC. PSP HOLLIS SMITH TTEE","WILLIAM SMITH","3012 COTTERS CIRCLE",,"RICHARDSON","TX","75082",,,,,,,"751225772","9724372884",,,,"2011-03-19T11:59:22-0500","WILLIAM SMITH",,,,,2,2,0,0,2,0,2,2,0,,"3E",,,,"1",,,,"1",,,,,,"1","1","1",,,"0","FILING_RECEIVED","2011-03-19","Filed with authorized/valid electronic signature",, "20110308091504P030021853793001","2006-10-01","2007-09-30","2",,"0","0","0","0","0","0","0","1","0",,"CSE, INC. EMPLOYEE BENEFIT PLAN","501","1974-07-01","CSE, INC.",,,"153 OLD RAGLAND RD P.O. BOX 1030",,"MADISON HEIGHTS","VA","24572",,,,,,,,,,,,,,,,,,"540858951","4344552207","238900","CSE, INC.",,"153 OLD RAGLAND RD P.O. BOX 1030",,"MADISON HEIGHTS","VA","24572",,,,,,,"540858951","4344552207",,,,"2011-03-08T09:14:40-0600","PAUL A. LAUTERMILCH",,,,,214,214,0,0,214,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-03-08","Filed with authorized/valid electronic signature",, "20110319151316P030131363664001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CALIFORNIA PACIFIC ORTHOPAEDICS & SPORTS MEDICINE PROFIT SHARING PLAN","001","1977-04-01","CALIFORNIA PACIFIC ORTHOPAEDICS & SPORTS MEDICINE, A MEDICAL CORP.",,,"3838 CALIFORNIA STREET, SUITE 715",,"SAN FRANCISCO","CA","941181509",,,,,,,,,,,,,,,,,,"942401940","4156688010","621111","ADMINISTRATIVE COMMITTEE",,"3838 CALIFORNIA STREET, SUITE 715",,"SAN FRANCISCO","CA","941181509",,,,,,,"581649631","4156688010",,,,"2011-03-19T15:03:55-0500","WILLIAM GREEN",,,,,49,48,0,0,48,0,48,48,3,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-19","Filed with authorized/valid electronic signature",, "20110322150023P030009144983001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SECURATEX GROUP LIFE INSURANCE","502","2001-01-01","SECURATEX",,,"TWO TRANS AM PLAZA DRIVE","SUITE 150","OAKBROOK TERRACE","IL","60181",,,,,,,"TWO TRANS AM PLAZA DRIVE","SUITE 150","OAKBROOK TERRACE","IL","60181",,,,,,,"363432375","6303178980","561600","SECURATEX",,"TWO TRANS AM PLAZA DRIVE","SUITE 150","OAKBROOK TERRACE","IL","60181",,,,,,,"363432375","6303178980",,,,"2011-03-22T09:54:58-0500","DEBORAH LANDMAN","2011-03-22T14:54:28-0500","PATRICIA DUCANTO",,,203,152,,,152,,152,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110323102836P040004533746001","2010-01-01","2010-08-05","2",,"0","0","0","1","1","1","0","0","0",,"MCS 401(K) PLAN","002","2001-01-01","MARINOVICH COLD STORAGE, INC.",,,"P O BOX 1089",,"WATSONVILLE","CA","95077",,,,,,,"303A SALINAS ROAD",,"WATSONVILLE","CA","95076",,,,,,,"941585684","8317248028","115110","MARINOVICH COLD STORAGE, INC.",,"P O BOX 1089",,"WATSONVILLE","CA","95077",,,,,,,"941585684","8317248028",,,,"2011-03-23T10:27:23-0500","DEE HARTZELL",,,,,12,0,0,0,0,0,0,0,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-23","Filed with authorized/valid electronic signature",, "20110322131426P040029934769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EAGLE GRAPHICS, INC. 401(K) PROFIT SHARING PLAN","001","1984-06-01","EAGLE GRAPHICS, INC.",,,"600 CITY PARKWAY WEST, STE 600",,"ORANGE","CA","92868",,,,,,,,,,,,,,,,,,"204883399","7149782200","424100","EAGLE GRAPHICS, INC.",,"600 CITY PARKWAY WEST, STE 600",,"ORANGE","CA","92868",,,,,,,"204883399","7149782200","EAGLE GRAPHICS, INC.","952940517","001","2011-03-22T13:14:22-0500","TIMOTHY SMITH","2011-03-22T13:14:22-0500","TIMOTHY SMITH",,,32,28,2,1,31,0,31,26,0,,"2E2F2H2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110322121454P030029576257001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GRAY, BLODGETT & COMPANY , PLLC 401(K) PLAN","001","1991-01-01","GRAY, BLODGETT & COMPANY, PLLC",,,"629 24TH AVENUE SW",,"NORMAN","OK","730693912",,,,,,,,,,,,,,,,,,"731352810","4053605533","541211","GRAY, BLODGETT & COMPANY, PLLC",,"629 24TH AVENUE SW",,"NORMAN","OK","730693912",,,,,,,"731352810","4053605533",,,,"2011-03-22T13:14:15-0500","RODNEY GRAY",,,,,16,16,0,0,16,0,16,13,0,,"2E2F2G2J2K2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-22","Filed with authorized/valid electronic signature",, "20110411121955P030040460113001","2009-07-01","2010-06-30","2",,,,,,,"1",,,,,"JOHNSON & TURNER PAINTING COMPANY, INC. EMPLOYEE STOCK OWNERSHIP PLAN","006","1986-07-01","JOHNSON & TURNER PAINTING COMPANY, INC.",,,"8241 ELECTRIC AVENUE",,"STANTON","CA","90690",,,,,,,,,,,,,,,,,,"952702578","7148288282","238300","JOHNSON & TURNER PAINTING COMPANY, INC.",,"8241 ELECTRIC AVENUE",,"STANTON","CA","90690",,,,,,,"952702578","7148288282",,,,"2011-04-11T13:19:41-0500","DALE BODWELL",,,,,9,7,2,0,9,0,9,9,0,,"2A2E2H2P2R",,"1",,"1",,"1",,"1",,"1",,,,"1","1","7",,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110407151406P030180370464001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"BACKUS CADILLAC NADART SALARY DEF 401K PLAN","001","1997-01-01","BACKUS CADILLAC",,,"519 E. BROAD AVE",,"ROCKINGHAM","NC","28379",,,,,,,,,,,,,,,,,,"580657636","9123547511","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-04-07T15:12:27-0500","ALAN B. SVEDLOW",,,,,1,0,0,0,0,0,0,0,0,,"2E2J3D2K2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110401113117P030035009105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE MICHAEL P. RANDOLPH PROFIT SHARING PLAN","002","1995-01-01","MICHAEL P. RANDOLPH",,,"1001 EAST W.T. HARRIS BLVD.",,"CHARLOTTE","NC","28213",,,,,,,,,,,,,,,,,,"561915545","7045491710","524210","MICHAEL P. RANDOLPH",,"1001 EAST W.T. HARRIS BLVD.",,"CHARLOTTE","NC","28213",,,,,,,"561915545","7045491710",,,,"2011-04-01T11:31:15-0500","MICHAEL P. RANDOLPH","2011-04-01T11:31:15-0500","MICHAEL P. RANDOLPH",,,4,2,,2,4,,4,4,2,,"2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110407165349P040039079521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SSCI, INC 401(K) PLAN","001","2003-09-15","SSCI, INC.",,,"3607 JONES BRIDGE RD.",,"CHEVY CHASE","MD","20815",,,,,,,"3607 JONES BRIDGE RD.",,"CHEVY CHASE","MD","20815",,,,,,,"010779957","7036471881","541512","SSCI, INC.",,"3607 JONES BRIDGE RD.",,"CHEVY CHASE","MD","20815",,,,,,,"010779957","7036471881",,,,"2011-04-07T16:49:08-0500","ALEXANDER AKALOVSKY",,,,,52,52,0,8,60,0,60,58,7,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110408141743P040039591073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LYONS & RANTA, LLP INCENTIVE SAVINGS PROFIT SHARING PLAN","001","1987-01-01","LYONS & RANTA, LLP",,,"150 NORTH SUNNYSLOPE RD., SUITE 270",,"BROOKFIELD","WI","530054816",,,,,,,,,,,,,,,,,,"202856047","2624322230","541110","LYONS & RANTA, LLP",,"150 NORTH SUNNYSLOPE RD., SUITE 270",,"BROOKFIELD","WI","530054816",,,,,,,"202856047","2624322230",,,,"2011-04-08T14:14:10-0500","THOMAS P. LYONS",,,,,4,2,0,2,4,0,4,4,0,,"2E2J2K3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110401091306P040011188215001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GARY F. COX, M.D., P.A. PROFIT SHARING PLAN","001","1980-04-16","GARY F. COX, M.D., P.A.",,,"2705 HOSPITAL DR., SUITE 100",,"VICTORIA","TX","779015776",,,,,,,,,,,,,,,,,,"742068224","3615794700","621111","GARY F. COX, M.D., P.A.",,"2705 HOSPITAL DR., SUITE 100",,"VICTORIA","TX","779015776",,,,,,,"742068224","3615794700",,,,"2011-04-01T08:58:52-0500","GARY COX",,,,,24,17,0,6,23,0,23,23,3,,"2A2E2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",, "20110407094050P040038900737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DONALD K. GLOVER, D.O., P.C. PROFIT SHARING PLAN","001","1984-01-01","DONALD K. GLOVER, D.O., P.C.",,,"657-A WEST MAPLE",,"FARMINGTON","NM","87401",,,,,,,"657-A WEST MAPLE",,"FARMINGTON","NM","87401",,,,,,,"850365127","5053264546","621111","DONALD K. GLOVER, D.O., P.C.",,"657-A WEST MAPLE",,"FARMINGTON","NM","87401",,,,,,,"850365127","5053264546",,,,"2011-04-07T09:13:10-0500","DONALD GLOVER","2011-04-07T09:13:10-0500","DONALD GLOVER",,,6,5,0,0,5,0,5,5,0,,"2E3D2H",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110401172133P040001091555001","2004-01-01","2004-12-31","2",,"0","1","0","0","0","0","0","1","0",,"BAY ENVIRONMENTAL PENSION PLAN","002","1991-01-01","BAY ENVIRONMENTAL MANAGEMENT, INC.",,,"532 COLORADO AVE","SECOND FLOOR","SANTA MONICA","CA","904012408",,,,,,,,,,,,,,,,,,"942547085","3104513225","562000","NICHOLAS L. SAAKVITNE",,"532 COLORADO AVE","SECOND FLOOR","SANTA MONICA","CA","904012408",,,,,,,"954096489","3104513225",,,,"2011-04-01T17:17:46-0500","NICHOLAS L. SAAKVITNE",,,,,1,0,0,107,107,0,107,107,0,,"2C3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",, "20110401172209P040035677457001","2009-01-01","2009-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BAY ENVIRONMENTAL PENSION PLAN","002","1991-01-01","BAY ENVIRONMENTAL MANAGEMENT, INC.",,,"532 COLORADO AVE","SECOND FLOOR","SANTA MONICA","CA","904012408",,,,,,,,,,,,,,,,,,"942547085","3104513225","562000","NICHOLAS L. SAAKVITNE",,"532 COLORADO AVE","SECOND FLOOR","SANTA MONICA","CA","904012408",,,,,,,"954096489","3104513225",,,,"2011-04-01T17:17:46-0500","NICHOLAS L. SAAKVITNE",,,,,107,0,0,107,107,0,107,107,0,,"2C3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",, "20110329124122P030010274535001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARL GREGORY ENTERPRISES, INC.","501","2008-03-01","CARL GREGORY ENTERPRISES, INC.",,,"3000 NORTH LAKE PARKWAY","BLDG 300","COLUMBUS","GA","31909",,,,,,,"3000 NORTH LAKE PARKWAY","BLDG 300","COLUMBUS","GA","31909",,,,,,,"582069869","7063242380","441110","CARL GREGORY ENTERPRISES, INC.",,"3000 NORTH LAKE PARKWAY","BLDG 300","COLUMBUS","GA","31909",,,,,,,"582069869","7063242380","CARL GREGORY ENTERPRISES, INC","582069869","501","2011-03-29T12:36:13-0500","DAN THOMASON","2011-03-29T12:36:13-0500","DAN THOMASON",,,32,31,,,31,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110411100938P040006076786002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WAHRENBROCK & FANSHAW VIP PROFIT SHARING PLAN","001","1987-01-01","WAHRENBROCK & FANSHAW",,,"105 CHIMENEAS PL",,"CHAPEL HILL","NC","27517",,,,,,,,,,,,,,,,,,"330515881","9199288427","541110","WAHRENBROCK & FANSHAW",,"105 CHIMENEAS PL",,"CHAPEL HILL","NC","27517",,,,,,,"330515881","9199288427",,,,"2011-03-09T03:21:23-0600","SCOTT WAHRENBROCK",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110407102542P030038293409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THERA TEK USA 401(K) PROFIT SHARING PLAN","002","2005-07-01","THERA TEK USA",,,"4918 LEARY AVENUE NW",,"SEATTLE","WA","98107",,,,,,,,,,,,,,,,,,"911539178","2067811776","621399","THERA TEK USA",,"4918 LEARY AVENUE NW",,"SEATTLE","WA","98107",,,,,,,"911539178","2067811776",,,,"2011-04-06T17:48:10-0500","DALISE PINON",,,,,21,14,0,5,19,0,19,15,0,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110411114823P030040448481001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"BAY BUSINESS CREDIT PROFIT SHARING PLAN AND TRUST","001","1993-03-01","BAY BUSINESS CREDIT",,,"1460 MARIA LANE, SUITE 300",,"WALNUT CREEK","CA","945965314",,,,,,,,,,,,,,,,,,"680179245","9252569003","522110","BAY BUSINESS CREDIT",,"1460 MARIA LANE, SUITE 300",,"WALNUT CREEK","CA","945965314",,,,,,,"680179245","9252569003",,,,"2011-04-11T11:48:16-0500","JAMES COSMOT","2011-04-11T11:48:17-0500","JAMES COSMOT",,,8,5,0,3,8,0,8,8,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110411123717P040188596512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REIMLER ASSOCIATES INC EMPLOYEES PROFIT SHARING PLAN AND TRUST","001","1985-03-01","REIMLER ASSOCIATES INC",,,"PO BOX 176",,"INDIAN TRAIL","NC","280790176",,,,,,,"PO BOX 176",,"INDIAN TRAIL","NC","280790176",,,,,,,"561127395","7048219296","423800","REIMLER ASSOCIATES INC",,"PO BOX 176",,"INDIAN TRAIL","NC","280790176",,,,,,,"561127395","7048219296",,,,"2011-04-11T12:23:21-0500","JAMES L REIMLER",,,,,6,6,0,0,6,0,6,6,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110329154914P040033930737002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STONE ENERGY CORPORATION EMPLOYEE FSA PLAN","503","2008-02-01","STONE ENERGY CORPORATION",,,"625 E KALISTE SALOOM ROAD",,"LAFAYETTE","LA","705082540",,,,,,,"625 E KALISTE SALOOM ROAD",,"LAFAYETTE","LA","705082540",,,,,,,"721235413","3372370410","211110","STONE ENERGY CORPORATION",,"625 E KALISTE SALOOM ROAD",,"LAFAYETTE","LA","705082540",,,,,,,"721235413","3372370410",,,,"2011-03-29T07:27:27-0500","LEANNA MCGEE",,,,,114,114,,,114,,,,,,,"4A4S",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110408181309P040181749744001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRETT CONSTRUCTION, INC. EMPLOYEES' PROFIT SHARING PLAN AND TRUST","001","2006-01-01","BRETT CONSTRUCTION, INC.",,,"2058 EDINBURG",,"CARDIFF BY THE SEA","CA","920071750",,,,,,,,,,,,,,,,,,"721604602","7602759846","236110","BRETT CONSTRUCTION, INC.",,"2058 EDINBURG",,"CARDIFF BY THE SEA","CA","920071750",,,,,,,"721604602","7602759846",,,,"2011-04-08T18:11:15-0500","BRETT BURRUSS",,,,,7,0,0,4,4,0,4,4,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110401161612P040011256151001","2010-01-01","2010-06-30","4","C","0","0","0","1","0","0","0","0","0",,"NTCC ADVISORS FUNDS FOR EMPLOYEE BENEFIT TRUSTS HOOVER SCV SUDAN FREE FUND","131",,"NORTHERN TRUST COMPANY OF CONNECTICUT",,,"300 ATLANTIC ST.","SUITE 400","STAMFORD","CT","069013540",,,,,,,,,,,,,,,,,,"066275604","2039777000",,"NORTHERN TRUST COMPANY OF CONNECTICUT",,"300 ATLANTIC ST.","SUITE 400","STAMFORD","CT","069013540",,,,,,,"066275604","2039777000",,,,,,,,"2011-04-01T15:46:56-0500","PATRICK HERRINGTON",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-04-01",,"Filed with authorized/valid electronic signature", "20110329100309P040005015042001","2010-01-01","2010-05-31","2",,"0","1","1","1","0","1","0","0","0",,"WHITE HEN PANTRY, INC. RETIREMENT SAVINGS PLAN","001","2004-02-23","WHITE HEN PANTRY INC",,,"1722 ROUTH STREET",,"DALLAS","TN","75201",,,,,,,"1722 ROUTH STREET",,"DALLAS","TN","75201",,,,,,,"363350884","9728287711","445120","WHITE HEN PANTRY INC",,"1722 ROUTH STREET",,"DALLAS","TN","75201",,,,,,,"363350884","9728287711",,,,"2011-03-29T10:02:58-0500","PAIGE CLAUS",,,,,403,0,0,0,0,0,0,0,2,,"2E2F2G2J3D2H",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110407122941P040005752098001","2006-01-01","2006-12-31","2",,"1","0","0","0","0","0","0","1","0",,"WILLIAMS SAUSAGE EMPLOYEE BENEFITS PLAN","501","1974-07-01","WILLIAMS SAUSAGE",,,"5132 OLD TROY HICKMAN ROAD",,"UNION CITY","TN","38261",,,,,,,,,,,,,,,,,,"620919614","7318855841","311900","WILLIAMS SAUSAGE",,"5132 OLD TROY HICKMAN ROAD",,"UNION CITY","TN","38261",,,,,,,"620919614","7318855841",,,,"2011-04-07T12:29:06-0500","ROGER WILLIAMS",,,,,119,119,0,0,119,,,,,,,"4A4B4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110408085510P030038823985001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JERSEY SHORE BRACHYTHERAPY, P.A. 401(K) PLAN","002","1996-01-01","JERSEY SHORE BRACHYTHERAPY, P.A.",,,"900 ROUTE 70 EAST","SUITE 2A","LAKEWOOD","NJ","08701",,,,,,,"900 70 EAST","SUITE 2A","LAKEWOOD","NJ","08701",,,,,,,"223333450","7329017333","621111","JERSEY SHORE BRACHYTHERAPY, P.A.",,"900 ROUTE 70 EAST","SUITE 2A","LAKEWOOD","NJ","08701",,,,,,,"223333450","7329017333",,,,"2011-04-08T08:55:04-0500","STEWART A. BERKOWITZ, M.D.","2011-04-08T08:55:04-0500","STEWART A. BERKOWITZ, M.D.",,,17,18,0,0,18,0,18,18,0,,"2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110401144053P040011242823001","2010-02-01","2010-06-30","4","C","1","0","0","1","0","0","0","0","0",,"NTCC ADVISORS FUNDS FOR EMPLOYEE BENEFIT TRUSTS CS MCKEE LCV NL FUND","173",,"NORTHERN TRUST COMPANY OF CONNECTICUT",,,"300 ATLANTIC ST","SUITE 400","STAMFORD","CT","069013540",,,,,,,,,,,,,,,,,,"066275604","2039777000",,"NORTHERN TRUST COMPANY OF CONNECTICUT",,"300 ATLANTIC ST","SUITE 400","STAMFORD","CT","069013540",,,,,,,"066275604","2039777000",,,,,,,,"2011-04-01T14:11:44-0500","PATRICK HERRINGTON",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-04-01",,"Filed with authorized/valid electronic signature", "20110329143639P030033442337001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"JUNGLE JIM'S MARKET, INC. WELFARE BENEFIT PLAN","502","1980-01-01","JUNGLE JIMS MARKET, INC.",,,"5440 DIXIE HIGHWAY",,"FAIRFIELD","OH","45014",,,,,,,,,,,,,,,,,,"310955124","5136746000","445110","JUNGLE JIMS MARKET, INC.",,"5440 DIXIE HIGHWAY",,"FAIRFIELD","OH","45014",,,,,,,"310955124","5136746000",,,,"2011-03-29T14:36:18-0500","JAMES O. BONAMINIO",,,,,155,151,0,0,151,,,,,,,"4A4B4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110401141135P040011236855001","2010-01-01","2010-06-30","4","C","0","0","0","1","0","0","0","0","0",,"NTCC COLLECTIVE FUNDS FOR EMPLOYEE BENEFIT TRUSTS FIRST STATE EMERGING MARKETS FUND","110",,"NORTHERN TRUST COMPANY OF CONNECTICUT",,,"300 ATLANTIC ST.","SUITE 400","STAMFORD","CT","069013540",,,,,,,,,,,,,,,,,,"066275604","2039777000",,"NORTHERN TRUST COMPANY OF CONNECTICUT",,"300 ATLANTIC ST.","SUITE 400","STAMFORD","CT","069013540",,,,,,,"066275604","2039777000",,,,,,,,"2011-04-01T13:57:38-0500","PATRICK HERRINGTON",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-04-01",,"Filed with authorized/valid electronic signature", "20110411144043P030190643360001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OASIS SPINAL CARE, INC. 401 (K) PROFIT SHARING PLAN","001","2002-01-01","OASIS SPINAL CARE, INC.",,,"P.O. BOX 25",,"BLUE RIDGE","VA","24065",,,,,,,,,,,,,,,,,,"541803712","5403441055","621310","OASIS SPINAL CARE, INC.",,"P.O. BOX 25",,"BLUE RIDGE","VA","24065",,,,,,,"541803712","5403441055",,,,"2011-04-11T14:40:39-0500","KAREN BAADER","2011-04-11T14:40:39-0500","KAREN BAADER",,,7,8,0,0,8,0,8,8,0,,"2F2G2J2K2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110407181031P040179177120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRAZY TALE RETIREMENT PLAN","001","2008-07-01","CRAZY TALE, INC.",,,"6448 E. COUNTY LINE ROAD",,"HIGHLANDS RANCH","CO","80126",,,,,,,,,,,,,,,,,,"262529032","3037700776","812910","CRAZY TALE, INC.",,"6448 E. COUNTY LINE ROAD",,"HIGHLANDS RANCH","CO","80126",,,,,,,"262529032","3037700776",,,,"2011-04-07T18:10:24-0500","DARIEN FISCHER","2011-04-07T18:10:24-0500","DARIEN FISCHER",,,2,2,0,0,2,0,2,1,0,,"2E2F2G2J2K2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110411073907P030012410983001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PEOPLES SAVINGS BANK EMPLOYEES' SAVINGS & PROFIT SHARING PLAN AND TRUST","002","1994-04-01","PEOPLES SAVINGS BANK C/O ROMA BANK",,,"2300 ROUTE 33",,"ROBBINSVILLE","NJ","08691",,,,,,,,,,,,,,,,,,"210410420","6092238300","522120","PEOPLES SAVINGS BANK C/O ROMA BANK",,"2300 ROUTE 33",,"ROBBINSVILLE","NJ","08691",,,,,,,"210410420","6092238300",,,,"2011-04-11T07:38:35-0500","MAURICE T. PERILLI",,,,,3,0,0,0,0,0,0,0,0,,"2E2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110407100342P030038280321001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TRIPLE E FENCING 401(K) PLAN","001","2007-01-01","TRIPLE E FENCING, INC.",,,"11590 US 231",,"TROY","AL","36081",,,,,,,"11590 US 231",,"TROY","AL","36081",,,,,,,"631243191","3347355736","238900","TRIPLE E FENCING, INC.",,"11590 US 231",,"TROY","AL","36081",,,,,,,"631243191","3347355736",,,,"2011-04-07T09:45:44-0500","ANGIE ELLIS",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K3E",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110408132648P030038933057001","2004-07-01","2005-06-30","2",,"0","1","0","0","0","0","0","0","0",,"HOUSING TRUST OF SANTA CLARA COUNTY, INC. 403(B) DEFINED CONTRIBUTION RETIREMENT PLAN","001","2003-03-01","HOUSING TRUST OF SANTA CLARA COUNTY, INC",,,"95 S. MARKET STREET, SUITE 610",,"SAN JOSE","CA","95113",,,,,,,"95 S. MARKET STREET, SUITE 550",,"SAN JOSE","CA","95113",,,,,,,"770545135","4084363450","813000","HOUSING TRUST OF SANTA CLARA COUNTY, INC",,"95 S. MARKET STREET, SUITE 550",,"SAN JOSE","CA","95113",,,,,,,"770545135","4084363450",,,,"2011-04-08T13:25:58-0500","ALEXIS WONG",,,,,,,,,,,,,,,"2F2L2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110408074507P030001141091001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"ERNESTO S DUTERTE MD PC PROFIT SHARING PLAN","002","1992-12-16","ERNESTO S DUTERTE M.D., P.C.",,,"1119 VILLA LINDE COURT",,"FLINT","MI","48532",,,,,,,,,,,,,,,,,,"382294250","8107327460","621111","ERNESTO S DUTERTE M.D., P.C.",,"1119 VILLA LINDE COURT",,"FLINT","MI","48532",,,,,,,"382294250","8107327460",,,,"2011-04-08T08:39:48-0500","ERNESTO S DUTERTE","2011-04-08T08:40:07-0500","ERNESTO S DUTERTE",,,3,0,0,0,0,,0,,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110401141859P040035598945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BTB PROFIT SHARING PLAN","001","2000-08-01","BTB SALES & MARKETING INC.",,,"2970 MERRICK ROAD",,"BELLMORE","NY","11710",,,,,,,,,,,,,,,,,,"113445984","5167816901","423990","BTB SALES & MARKETING INC.",,"2970 MERRICK ROAD",,"BELLMORE","NY","11710",,,,,,,"113445984","5167816901",,,,"2011-04-01T14:16:34-0500","EDDIE BERGER","2011-04-01T14:16:34-0500","EDDIE BERGER",,,6,6,,,6,,6,6,0,,"2E2G3D2F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110329141716P030033435297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PREFERENCE DENTAL RETIREMENT PLAN & TRUST","002","2006-01-01","HOSKING AND KILLIAN DENTISTRY, P.L.L.C.",,,"7255 NINE MILE ROAD","P.O. BOX 236","MECOSTA","MI","49332",,,,,,,,,,,,,,,,,,"270325415","2319727104","621210","HOSKING AND KILLIAN DENTISTRY, P.L.L.C.",,"7255 NINE MILE ROAD","P.O. BOX 236","MECOSTA","MI","49332",,,,,,,"270325415","2319727104",,,,"2011-03-29T14:17:07-0500","DAVID J. HOSKING, D.D.S.",,,,,11,9,0,2,11,0,11,11,0,,"2A2E2J2K3B3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-03-29","Filed with authorized/valid electronic signature",, "20110407124456P030005600722001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ROXUL, INC. 401(K) AND PROFIT SHARING PLAN","001","1996-01-01","ROXUL, INC.",,,"3304 PAIGE HEIGHTS COURT",,"MARIETTA","GA","30062",,,,,,,"3304 PAIGE HEIGHTS COURT",,"MARIETTA","GA","30062",,,,,,,"980099192","9058759324","541990","ROXUL, INC.",,"3304 PAIGE HEIGHTS COURT",,"MARIETTA","GA","30062",,,,,,,"980099192","9058759324",,,,"2011-04-07T10:00:14-0500","GORDON BROWN",,,,,10,10,0,2,12,0,12,12,0,,"2A2E2F2G2J2K2T",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110401162314P030035130129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JKC NEUROLOGY MEDICAL GROUP, INC. PENSION PLAN","001","2002-01-01","JKC NEUROLOGY MEDICAL GROUP, INC.",,,"11037 ANZIO ROAD",,"BEL AIR","CA","90077",,,,,,,,,,,,,,,,,,"300125147","3104409927","621111","JKC NEUROLOGY MEDICAL GROUP, INC.",,"11037 ANZIO ROAD",,"BEL AIR","CA","90077",,,,,,,"300125147","3104409927",,,,"2011-04-01T16:20:48-0500","KYUNG KU CHO","2011-04-01T16:20:48-0500","KYUNG KU CHO",,,2,2,0,0,2,0,2,,0,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110407133426P040039000929001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"OVERTON MOORE PROPERTIES 401(K)/PROFIT SHARING PLAN","001","1996-01-01","OVERTON MOORE PROPERTIES",,,"19300 S. HAMILTON AVENUE","SUITE 200","GARDENA","CA","90248",,,,,,,"19300 S. HAMILTON AVENUE","SUITE 200","GARDENA","CA","90248",,,,,,,"201315722","3103239100","531390","OVERTON MOORE PROPERTIES",,"19300 S. HAMILTON AVENUE","SUITE 200","GARDENA","CA","90248",,,,,,,"201315722","3103239100",,,,"2011-04-07T13:33:52-0500","GAYE TOMITA",,,,,13,10,0,5,15,0,15,13,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110407151916P030038429505001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"KRONON, INC. NADART SALARY DEF 401K PLAN","001","1973-04-01","KRONON, INC.",,,"P.O. BOX 1096",,"PARK RIDGE","IL","60068",,,,,,,,,,,,,,,,,,"362880257","7084570751","441110","ALAN B. SVEDLOW, ADMINISTRATOR NADART",,"P.O. BOX 9200",,"MCLEAN","VA","22102",,,,,,,"311255362","8004623278",,,,"2011-04-07T15:12:28-0500","ALAN B. SVEDLOW",,,,,4,0,0,0,0,0,0,0,0,,"2E2J3D2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110408101854P030182420576001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HOLDEN INTERNATIONAL 401(K) PLAN","001","2001-06-15","HOLDEN INTERNATIONAL",,,"135 S. LASALLE STREET","SUITE 2800","CHICAGO","IL","60603",,,,,,,"135 S. LASALLE STREET","SUITE 2800","CHICAGO","IL","60603",,,,,,,"364415068","3124768762","541990","HOLDEN INTERNATIONAL",,"135 S. LASALLE STREET","SUITE 2800","CHICAGO","IL","60603",,,,,,,"364415068","3124768762",,,,"2011-04-08T10:17:43-0500","GHAFFAR VARIEND",,,,,18,14,0,5,19,0,19,11,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110401101028P040035466145001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"VALUE PRISM CONSULTING 401K","001","2006-05-10","VALUE PRISM CONSULTING LLC",,,"600 GALLERIA PARKWAY STE 150",,"ATLANTA","GA","30339",,,,,,,"600 GALLERIA PARKWAY STE 150",,"ATLANTA","GA","30339",,,,,,,"010846097","7705638300","541600","VALUE PRISM CONSULTING LLC",,"600 GALLERIA PARKWAY STE 150",,"ATLANTA","GA","30339",,,,,,,"010846097","7705638300",,,,"2011-04-01T10:10:13-0500","MAREK OMILIAN",,,,,6,5,0,5,10,0,10,10,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-01","Filed with authorized/valid electronic signature",, "20110408103131P030038857249001","2010-02-01","2011-01-31","2",,"0","1","0","0","0","0","0","0","0",,"PINE BORDER FARMS, INC. 401K PLAN & TRUST","001","2002-02-01","PINE BORDER FARMS, INC.",,,"3391 16 MILE ROAD",,"CEDAR SPRINGS","MI","49319",,,,,,,,,,,,,,,,,,"382370370","6166962940","111900","PINE BORDER FARMS, INC.",,"3391 16 MILE ROAD",,"CEDAR SPRINGS","MI","49319",,,,,,,"382370370","6166962940",,,,"2011-04-08T10:23:03-0500","CARL MOORE",,,,,4,4,0,0,4,0,4,4,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-08","Filed with authorized/valid electronic signature",, "20110407090056P030038256001001","2009-01-01","2009-12-31","2",,"0","0","0","0","0","0","0","1","0",,"J.B. COXWELL CONTRACTING, INC. WELFARE BENEFIT PLAN","502","2000-11-01","J.B. COXWELL CONTRACTING, INC.",,,"6741 LLOYD ROAD WEST",,"JACKSONVILLE","FL","32254",,,,,,,,,,,,,,,,,,"593666875","9047861120","237990","J.B. COXWELL CONTRACTING, INC.",,"6741 LLOYD ROAD WEST",,"JACKSONVILLE","FL","32254",,,,,,,"593666875","9047861120",,,,"2011-04-07T08:40:25-0500","WAYNE WILLIFORD","2011-04-07T08:40:25-0500","WAYNE WILLIFORD",,,412,386,0,0,386,0,,,,,,"4A4B4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110405140009P030174985280001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HENDERSON LUMBER COMPANY PROFIT SHARING PLAN","001","1986-01-01","HENDERSON LUMBER COMPANY, INC.",,,"PO BOX 99",,"TARBORO","NC","27886",,,,,,,,,,,,,,,,,,"560258680","2528232138","423300","HENDERSON LUMBER COMPANY, INC.",,"PO BOX 99",,"TARBORO","NC","27886",,,,,,,"560258680","2528232138",,,,"2011-04-05T14:47:27-0500","DAVID W. PIGG","2011-04-05T14:47:36-0500","TAMMIE LEGGETT",,,11,9,0,0,9,0,9,9,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110406184427P030037926481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RELF & ROSATO, INC. 401(K) PROFIT SHARING PLAN","001","1978-07-01","RELF & ROSATO, INC.",,,"P.O. BOX 8640",,"STOCKTON","CA","952080640",,,,,,,"4025 CORONADO AVE",,"STOCKTON","CA","95204",,,,,,,"942400264","2094661477","332900","RELF & ROSATO, INC.",,"P.O. BOX 8640",,"STOCKTON","CA","952080640",,,,,,,"942400264","2094661477",,,,"2011-04-06T17:36:40-0500","WARREN J. HUTSON",,,,,12,10,0,2,12,0,12,11,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110325084300P040031536753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES A. VOLTATTORNI, D.D.S. EMPLOYEE PROFIT SHARING PLAN","001","1986-01-01","JAMES A. VOLTATTORNI, D.D.S.",,,"312 TAYLOR",,"GRAND LEDGE","MI","48837",,,,,,,,,,,,,,,,,,"382562023","5176272061","621210","JAMES A. VOLTATTORNI, D.D.S.",,"312 TAYLOR",,"GRAND LEDGE","MI","48837",,,,,,,"382562023","5176272061",,,,"2011-03-25T08:42:53-0500","LINDA D. PULVER",,,,,7,7,0,0,7,0,7,7,0,,"3B2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110325124831P030146602912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRITE VISUAL PRODUCTS INC 401(K) PROFIT SHARING PLAN","001","2007-01-01","BRITE VISUAL PRODUCTS INC",,,"270 CENTRE STREET UNIT F",,"HOLBROOK","MA","02343",,,,,,,"270 CENTRE STREET UNIT F",,"HOLBROOK","MA","02343",,,,,,,"043547600","7819618762","454390","BRITE VISUAL PRODUCTS INC",,"270 CENTRE STREET UNIT F",,"HOLBROOK","MA","02343",,,,,,,"043547600","7819618762",,,,"2011-03-25T12:48:23-0500","SCOTT NEWMAN",,,,,5,5,,,5,,5,,,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110405153523P040005593650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"COMPANY PAID LIFE INSURANCE","509","1988-01-01","DIVERSIFIED DYNAMICS CORPORATION",,,"1681 94TH LANE NE",,"MINNEAPOLIS","MN","554494324",,,,,,,"DIVERSIFIED DYNAMICS CORPORATION","1681 94TH LANE NE","MINNEAPOLIS","MN","55449",,,,,,,"410957247","7637855780","423800","DIVERSIFIED DYNAMICS CORPORATION",,"1681 94TH LANE NE",,"MINNEAPOLIS","MN","554494324",,,,,,,"410957247","7637855780",,,,"2011-04-05T15:35:18-0500","DIANE ERICKSON","2011-04-05T15:35:18-0500","DIANE ERICKSON",,,78,79,,,79,,79,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110405064239P040172761008001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"W.S. ANDERSON ASSOCIATES, INC. 401(K) PLAN","001","1994-01-01","W.S. ANDERSON ASSOCIATES, INC.",,,"303-313 WASHINGTON STREET",,"AUBURN","MA","01501",,,,,,,,,,,,,,,,,,"043095712","5088325550","541330","W.S. ANDERSON ASSOCIATES, INC.",,"303-313 WASHINGTON STREET",,"AUBURN","MA","01501",,,,,,,"043095712","5088325550",,,,"2011-04-05T06:42:32-0500","RICHARD J SHEA",,,,,34,17,0,15,32,0,32,30,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110405084510P040011916295001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"NORTHWEST AIRLINES, INC. NON-OFFICER CHANGE OF CONTROL SEVERANCE PLAN","548","2008-04-14","DELTA AIR LINES, INC.",,,"1030 DELTA BOULEVARD","DEPARTMENT 216","ATLANTA","GA","30354",,,,,,,,,,,,,,,,,,"580218548","4047152600","481000","ADMINISTRATIVE COMMITTEE OF DELTA AIR LINES, INC.",,"1030 DELTA BOULEVARD","DEPARTMENT 216","ATLANTA","GA","30354",,,,,,,"581282408","4047152600",,,,"2011-04-05T08:43:53-0500","ROBERT KIGHT",,,,,139,0,0,0,0,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110325105148P030009604967001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STUDIO CITY ANIMAL HOSPITAL 401(K) PLAN","001","2006-11-01","STUDIO CITY ANIMAL HOSPITAL",,"SHARON PITTS","11800 VENTURA BLVD",,"STUDIO CITY","CA","916042659",,,,,,,"11800 VENTURA BLVD",,"STUDIO CITY","CA","916042659",,,,,,,"953570559","8187691338","541940","STUDIO CITY ANIMAL HOSPITAL","SHARON PITTS","11800 VENTURA BLVD",,"STUDIO CITY","CA","916042659",,,,,,,"953570559","8187691338",,,,"2011-03-25T10:51:33-0500","SHARON PITTS",,,,,59,41,0,8,49,0,49,27,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110404103859P030036609505001","2008-01-01","2008-01-22","2",,"0","1","1","1","0","0","0","1","0",,"ARRIVAL COMMUNICATIONS, INC. 401(K) PLAN","001","2000-01-01","ARRIVAL COMMUNICATIONS, INC.",,,"515 S FLOWER ST","47TH FLOOR","LOS ANGELES","CA","900712201",,,,,,,"515 S FLOWER ST","47TH FLOOR","LOS ANGELES","CA","900712201",,,,,,,"943342990","6616361427","517000","ARRIVAL COMMUNICATIONS, INC.",,"515 S FLOWER ST","47TH FLOOR","LOS ANGELES","CA","900712201",,,,,,,"943342990","6616361427",,,,"2011-04-04T10:21:58-0500","KEN BISNOFF",,,,,6,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110404161108P040037354913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MORINDA HOLDINGS, INC. EMPLOYEE WELFARE BENEFITS PLAN","505","2005-01-01","MORINDA HOLDINGS, INC.",,,"PO BOX 4000",,"OREM","UT","84059",,,,,,,,,,,,,,,,,,"571189756","8012341000","311900","MORINDA HOLDINGS, INC.",,"PO BOX 4000",,"OREM","UT","84059",,,,,,,"571189756","8012341000",,,,"2011-04-04T16:10:56-0500","CRAIG SMITH",,,,,404,381,0,0,381,,,,,,,"4A4B4D4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110402165738P030167611152001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CROW & ASSOCIATES PROFIT SHARING 401K PLAN","001","2004-01-01","CROW & ASSOCIATES",,,"33 STATE ROAD","3RD FLOOR STE F","PRINCETON","NJ","08540",,,,,,,"33 STATE ROAD","3RD FLOOR STE F","PRINCETON","NJ","08540",,,,,,,"431999143","6092529015","541110","ROBERT GARDNER, CPA",,"1 HARTFELD ROAD",,"NEWTOWN","PA","18940",,,,,,,"209540106","2159682872",,,,"2011-04-02T16:56:48-0500","ROBERT GARDNER",,,,,4,6,,,6,,6,,,,"2E2J3B2A",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-02","Filed with authorized/valid electronic signature",, "20110328094633P040033232241001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"LANDMARK FINANCIAL ADVISORS 401(K) PLAN","001","2008-03-01","LANDMARK FINANCIAL ADVISORS",,,"7301 OHMS LANE",,"EDINA","MN","55439",,,,,,,,,,,,,,,,,,"411990340","9528318481","523900","LANDMARK FINANCIAL ADVISORS",,"7301 OHMS LANE",,"EDINA","MN","55439",,,,,,,"411990340","9528318481",,,,"2011-03-28T09:45:44-0500","SCOTT LICHTER",,,,,2,0,0,0,0,0,0,0,0,,"2F2G2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-28","Filed with authorized/valid electronic signature",, "20110325111357P030031179537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED BANCORPORATION GROUP DENTAL PLAN","502","1995-09-01","UNITED BANCORPORATION",,,"P.O. BOX 7",,"OSSEO","WI","54758",,,,,,,"12525 TENTH STREET, SUITE 1",,"OSSEO","WI","54758",,,,,,,"391793981","7155975550","551111","UNITED BANCORPORATION",,"P.O. BOX 7",,"OSSEO","WI","54758",,,,,,,"391793981","7155975550",,,,"2011-03-25T09:05:14-0500","GREG LEGARE",,,,,137,136,1,0,137,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"1","0","0","FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110325124216P040031646865001","2010-02-01","2010-08-31","2",,"1","0","0","1","0","0","0","0","0",,"EVERGREEN ALLIANCE GOLF LIMITED, L.P. WELFARE PLAN","502","2010-02-01","EVERGREEN ALLIANCE GOLF LIMITED, L.P.",,,"4851 LBJ FREEWAY, SUITE 600",,"DALLAS","TX","75244",,,,,,,,,,,,,,,,,,"752798353","2147226012","713900","EVERGREEN ALLIANCE GOLF LIMITED, L.P.",,"4851 LBJ FREEWAY, SUITE 600",,"DALLAS","TX","75244",,,,,,,"752798353","2147226012",,,,"2011-03-25T12:42:09-0500","CHARLA REEVES",,,,,333,338,9,0,347,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110328180950P040033433313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES HEIMLER, ARCHITECT, INC. PROFIT SHARING PLAN","001","1985-09-13","JAMES HEIMLER, ARCHITECT, INC.",,,"19510 VENTURA BOULEVARD, SUITE 210",,"TARZANA","CA","913562947",,,,,,,,,,,,,,,,,,"953992085","8183435393","541310","JAMES HEIMLER, ARCHITECT, INC.",,"19510 VENTURA BOULEVARD, SUITE 210",,"TARZANA","CA","913562947",,,,,,,"953992085","8183435393",,,,"2011-03-28T18:07:32-0500","JAMES L. HEIMLER",,,,,15,7,0,4,11,0,11,11,1,,"2A2E2F2H2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-28","Filed with authorized/valid electronic signature",, "20110405074646P040172869776001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"TENNIS EUROPE PROFIT SHARING PLAN","003","1988-02-01","MARTIN VINOKURS TENNIS EUROPE, INC.",,,"73 ROCKRIDGE LANE",,"STAMFORD","CT","06903",,,,,,,,,,,,,,,,,,"222584261","2033229803","713900","MARTIN VINOKURS TENNIS EUROPE, INC.",,"73 ROCKRIDGE LANE",,"STAMFORD","CT","06903",,,,,,,"222584261","2033229803",,,,"2011-04-05T07:46:43-0500","MARTIN VINOKUR","2011-04-05T07:46:43-0500","MARTIN VINOKUR",,,2,2,0,0,2,0,2,2,0,,"2E2A3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110404074734P030011244151001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PATRICK T. HAYES, DDS PROFIT SHARING PLAN","001","1987-01-01","PATRICK T. HAYES, DDS",,,"649 WASHINGTON AVENUE",,"JERMYN","PA","184331612",,,,,,,,,,,,,,,,,,"232749255","5708765020","621210","PATRICK T. HAYES, DDS",,"649 WASHINGTON AVENUE",,"JERMYN","PA","184331612",,,,,,,"232749255","5708765020",,,,"2011-04-04T07:46:43-0500","PATRICK HAYES",,,,,3,3,0,0,3,0,3,3,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110405141338P040037889713001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MASCOUTAH EQUIPMENT CO., INC. 401K PROFIT SHARING PLAN","001","1983-01-01","MASCOUTAH EQUIPMENT CO., INC.",,,"10880 STATE ROUTE 177",,"MASCOUTAH","IL","622583506",,,,,,,,,,,,,,,,,,"371042824","6185662115","423800","MASCOUTAH EQUIPMENT CO., INC.",,"10880 STATE ROUTE 177",,"MASCOUTAH","IL","622583506",,,,,,,"371042824","6185662115",,,,"2011-04-05T14:13:15-0500","LAURA STOOKEY",,,,,19,19,0,0,19,0,19,19,0,,"2E2J2K3D2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110405150234P030005466866001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAMIR N. BHATT, M.D., INC. 401(K) PROFIT SHARING PLAN","001","2000-01-01","SAMIR N. BHATT, M.D., INC.",,,"1510 E. MAIN STREET SUITE 101",,"SANTA MARIA","CA","93454",,,,,,,,,,,,,,,,,,"770515278","8059280610","621111","SAMIR N. BHATT, M.D., INC.",,"1510 E. MAIN STREET SUITE 101",,"SANTA MARIA","CA","93454",,,,,,,"770515278","8059280610",,,,"2011-04-05T15:02:20-0500","DOUGLAS S. HENDRY",,,,,5,7,0,0,7,0,7,7,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110405151040P040037916673001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"TOTALWORKS, INC. EMPLOYEES 401(K) PLAN","001","1988-01-01","TOTALWORKS, INC.",,,"2222 NORTH ELSTON",,"CHICAGO","IL","60614",,,,,,,"2222 NORTH ELSTON",,"CHICAGO","IL","60614",,,,,,,"363922964","7734894313","511190","TOTALWORKS, INC.",,"2222 NORTH ELSTON",,"CHICAGO","IL","60614",,,,,,,"363922964","7734894313",,,,"2011-04-05T15:10:04-0500","CAROL GRONLUND",,,,,24,3,0,0,3,0,3,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110326085900P040147664672001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LYNNTECH, INC. HEALTH PLAN","501","2005-01-01","LYNNTECH, INC.",,,"2501 EARL RUDDER FRWY SOUTH",,"COLLEGE STATION","TX","77845",,,,,,,"2501 EARL RUDDER FRWY SOUTH",,"COLLEGE STATION","TX","77845",,,,,,,"742463014","9796930017","541990","LYNNTECH, INC.",,"2501 EARL RUDDER FRWY SOUTH",,"COLLEGE STATION","TX","77845",,,,,,,"742463014","9796930017",,,,"2011-03-26T03:50:27-0500","RANDY MCDOUGAL",,,,,133,136,,,136,,136,,,,,"4A4B4F4H","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-03-26","Filed with authorized/valid electronic signature",, "20110404120711P030036645329001","2010-01-01","2010-10-12","2",,"0","0","1","1","0","0","0","0","0",,"COLONIAL GRANITE CO., INC. 401(K) RETIREMENT PLAN","001","2004-01-01","COLONIAL GRANITE CO., INC.",,,"33 WEST SECOND STREET",,"BARRE","VT","05641",,,,,,,,,,,,,,,,,,"030369974","8024764800","212310","COLONIAL GRANITE CO., INC.",,"33 WEST SECOND STREET",,"BARRE","VT","05641",,,,,,,"030369974","8024764800",,,,"2011-04-04T12:06:55-0500","SCOTT VAILLANCOURT","2011-04-04T12:06:55-0500","SCOTT VAILLANCOURT",,,3,0,0,0,0,0,0,0,0,,"2E2G2J2K3D2F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110405165626P030011484439001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"OAK MOUNTAIN ACADEMY 403B","001","2005-12-12","OAK MOUNTAIN ACADEMY",,,"222 CROSS PLAINS ROAD",,"CARROLLTON","GA","30116",,,,,,,"222 CROSS PLAINS ROAD",,"CARROLLTON","GA","30116",,,,,,,"580976833","7708346651","611000","OAK MOUNTAIN ACADEMY",,"222 CROSS PLAINS ROAD",,"CARROLLTON","GA","30116",,,,,,,"580976833","7708346651",,,,"2011-04-05T16:55:50-0500","JAN MEYER",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110404141801P040037299953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPITAL CITY SHEET METAL, INC. PROFIT SHARING PLAN","001","1989-01-01","CAPITAL CITY SHEET METAL, INC.",,,"4938 FEMRITE DR",,"MADISON","WI","537164130",,,,,,,,,,,,,,,,,,"391612854","6082214420","238900","CAPITAL CITY SHEET METAL, INC.",,"4938 FEMRITE DR",,"MADISON","WI","537164130",,,,,,,"391612854","6082214420",,,,"2011-04-04T14:16:27-0500","KEITH BECKER",,,,,16,10,0,4,14,0,14,14,1,,"2E2G2J2K2R2F3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110405093353P040005569506001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JANSEN HEATING & AIR CONDITIONING, INC. PROFIT SHARING PLAN & TRUST","001","1979-01-01","JANSEN HEATING & AIR CONDITIONING, INC.",,,"8175 CAMARGO ROAD",,"CINCINNATI","OH","452432203",,,,,,,,,,,,,,,,,,"310896864","5135614888","238220","JANSEN HEATING & AIR CONDITIONING, INC.",,"8175 CAMARGO ROAD",,"CINCINNATI","OH","452432203",,,,,,,"310896864","5135614888",,,,"2011-04-05T09:27:20-0500","BERNARD H. JANSEN",,,,,11,9,0,1,10,0,10,5,0,,"2E2H2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110405151306P030037284945001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LONGHORN IMPORTS, INC. 401(K) PROFIT SHARING PLAN","001","1986-01-01","LONGHORN IMPORTS, INC.",,,"2202 EAST UNION BOWER",,"IRVING","TX","75061",,,,,,,,,,,,,,,,,,"751823932","9727219102","488510","LONGHORN IMPORTS, INC.",,"2202 EAST UNION BOWER",,"IRVING","TX","75061",,,,,,,"751823932","9727219102",,,,"2011-04-01T13:45:33-0500","CAROL MCADOO","2011-04-01T13:45:33-0500","CAROL MCADOO",,,15,9,0,2,11,0,11,8,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110406142307P030177658640001","2008-10-01","2009-09-30","2",,"0","1","0","0","0","0","0","0","0",,"BUDROVICH CONTRACTING CO., INC. EMPLOYEES PROFIT SHARING PLAN","001","1985-10-01","BUDROVICH CONTRACTING CO., INC.",,,"10328 LAKE BLUFF DRIVE",,"ST. LOUIS","MO","63123",,,,,,,,,,,,,,,,,,"430916784","3148923030","237990","SAME",,,,,,,,,,,,,,,,,,"2011-04-06T14:22:46-0500","CHERYL ROTHE",,,,,24,18,3,,21,,21,21,0,,"2E2F2G2J2K3E",,"1","0","1","0","1","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110404153129P040171169216001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"FAIRBANKS ENVIRONMENTAL SERVICES 401(K) PLAN","001","2002-01-01","FAIRBANKS ENVIRONMENTAL SERVICES",,,"3538 INTERNATIONAL ST.",,"FAIRBANKS","AK","99701",,,,,,,"3538 INTERNATIONAL ST.",,"FAIRBANKS","AK","99701",,,,,,,"920172408","9074521006","541330","FAIRBANKS ENVIRONMENTAL SERVICES",,"3538 INTERNATIONAL ST.",,"FAIRBANKS","AK","99701",,,,,,,"920172408","9074521006",,,,"2011-04-04T15:31:10-0500","CRAIG MARTIN",,,,,7,0,0,10,10,0,10,10,0,,"2E2F2G2J2T3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110405151620P040037918625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT G. BEITMAN, M.D., P.A. 401(K) PROFIT SHARING PLAN","003","1987-08-01","ROBERT G. BEITMAN, M.D., P.A.",,,"C/O MILBERG CONSULTING LLC","P.O. BOX 819","BLUE BELL","PA","194220197",,,,,,,,,,,,,,,,,,"222411510","2157934300","621111","ROBERT G. BEITMAN, M.D., P.A.",,"C/O MILBERG CONSULTING LLC","P.O. BOX 819","BLUE BELL","PA","194220197",,,,,,,"222411510","2157934300",,,,"2011-04-05T15:16:11-0500","INTA EZERINS",,,,,3,2,0,1,3,0,3,3,0,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110407115457P030038329553001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"RAY A. MORGAN COMPANY, INC","502","2008-01-01","RAY A. MORGAN COMPANY, INC",,"MELANIE RICE","3131 ESPLANADE",,"CHICO","CA","95973",,,,,,,"3131 ESPLANADE",,"CHICO","CA","95973",,,,,,,"941461160","5302304863","423400","RAY A. MORGAN COMPANY, INC","MELANIE RICE","3131 ESPLANADE",,"CHICO","CA","95973",,,,,,,"941461160","5302304863",,,,"2011-04-07T11:54:47-0500","MELANIE RICE",,,,,28,28,0,0,28,,28,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-07","Filed with authorized/valid electronic signature",, "20110325112741P040145394896001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"RONALD BRICKE & ASSOCIATES, INC. RETIREMENT PLAN AND TRUST","002","1995-02-01","RONALD BRICKE & ASSOCIATES, INC.",,,"333 E 69TH ST",,"NEW YORK","NY","100215549",,,,,,,,,,,,,,,,,,"132735933","2124729006","541400","RONALD BRICKE & ASSOCIATES, INC.",,"333 EAST 69TH STREET",,"NEW YORK","NY","100215549",,,,,,,"132735933","2124729006",,,,"2011-03-25T11:15:30-0500","RONALD BRICKE",,,,,2,2,0,0,2,0,2,2,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",, "20110404225726P040001146771001","2010-08-31","2010-12-31","2",,"1","1","0","1","0","0","0","0","0",,"THE YONASHIRO CORPORATION 401K PLAN","001","2010-08-31","THE YONASHIRO CORPORATION",,,"198 KONO PLACE",,"KAHULUI","HI","96732",,,,,,,,,,,,,,,,,,"273363290","8088717886","111900","THE YONASHIRO CORPORATION",,"198 KONO PLACE",,"KAHULUI","HI","96732",,,,,,,"273363290","8088717886",,,,"2011-04-04T22:57:18-0500","LARRY YONASHIRO",,,,,0,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110404085258P030005362818001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"CORA SERVICES GROUP LONG TERM DISABILITY PLAN","504","1991-02-01","CORA SERVICES, INC.",,,"8540 VERREE ROAD",,"PHILADELPHIA","PA","19111",,,,,,,"8540 VERREE ROAD",,"PHILADELPHIA","PA","19111",,,,,,,"232323488","2153427660","611000","CORA SERVICES, INC.",,"8540 VERREE ROAD",,"PHILADELPHIA","PA","19111",,,,,,,"232323488","2153427660",,,,"2011-04-01T15:06:44-0500","J. MICHAEL SCHELL",,,,,149,144,0,0,144,0,144,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110404085353P040037153153001","2010-01-01","2010-09-30","2",,"0","1","1","1","0","0","0","0","0",,"MFI SECURITIES RETIREMENT PLAN","001","2007-01-01","MFI SECURITIES L.P.",,,"950 3RD AVENUE, 27TH FLOOR",,"NEWYORK","NY","10022",,,,,,,,,,,,,,,,,,"133762832","2129356500","523110","MFI SECURITIES L.P.",,"950 3RD AVENUE, 27TH FLOOR",,"NEWYORK","NY","10022",,,,,,,"133762832","2129356500",,,,"2011-04-04T08:53:37-0500","JOSEPH HOBAN",,,,,6,0,0,0,0,0,0,0,0,,"2A2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-04-04","Filed with authorized/valid electronic signature",, "20110405105056P030001094739001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEPTUNE-BENSON, INC. PROFIT SHARING PLAN","005","1990-01-01","NEPTUNE-BENSON, INC.",,,"SIX JEFFERSON DRIVE",,"COVENTRY","RI","02816",,,,,,,,,,,,,,,,,,"050282700","4018212200","238900","NEPTUNE-BENSON, INC.",,"SIX JEFFERSON DRIVE",,"COVENTRY","RI","02816",,,,,,,"050282700","4018212200",,,,"2011-04-05T10:49:59-0500","BARRY GERTZ",,,,,37,22,0,14,36,0,36,36,0,,"2E2H2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110405123540P040173409328001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"STATE OF THE ART MEDICAL PRODUCTS, INC. 401(K) PROFIT SHARING PLAN","001","1987-01-01","STATE OF THE ART MEDICAL PRODUCTS, INC.",,,"41 CANFIELD ROAD",,"CEDAR GROVE","NJ","07009",,,,,,,"41 CANFIELD ROAD",,"CEDAR GROVE","NJ","07009",,,,,,,"222403940","9735712400","339110","STATE OF THE ART MEDICAL PRODUCTS, INC.",,"41 CANFIELD ROAD",,"CEDAR GROVE","NJ","07009",,,,,,,"222403940","9735712400",,,,"2011-04-05T12:35:31-0500","KEITH LAMBIE",,,,,26,25,0,14,39,0,39,35,2,,"2A2E2F2H2J2K2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110406114814P030037758849001","2009-07-01","2010-06-30","2",,"0","0","0","0","0","1","0","0","0",,"INTERNATIONAL CHEMICAL COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","003","2000-07-01","INTERNATIONAL CHEMICAL COMPANY",,,"1887 E. 71ST STREET",,"TULSA","OK","74136",,,,,,,,,,,,,,,,,,"731006209","9184967711","325100","INTERNATIONAL CHEMICAL COMPANY",,"1887 E. 71ST STREET",,"TULSA","OK","74136",,,,,,,"731006209","9184967711",,,,"2011-04-06T11:48:07-0500","GENE GRAVES",,,,,35,34,0,3,37,0,37,37,0,,"2P",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-06","Filed with authorized/valid electronic signature",, "20110325172250P040031764561001","2010-01-01","2010-12-31","2",,,,,,,,,"1",,,"THE CAMPAIGN GROUP INC PROFIT SHARING PLAN","001","1990-01-01","THE CAMPAIGN GROUP INC PROFIT SHARING PLAN",,,"1600 LOCUST STREET",,"PHILADELPHIA","PA","191036305",,,,,,,,,,,,,,,,,,"232121582","2157328200","541800","THE CAMPAIGN GROUP INC PROFIT SHARING PLAN",,"1600 LOCUST STREET",,"PHILADELPHIA","PA","191036305",,,,,,,"232121582","2157328200",,,,"2011-03-23T13:44:00-0500","NEIL OXMAN","2011-03-23T13:45:02-0500","NEIL OXMAN",,,3,3,,,3,,3,,,,"2C2I2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110405105658P030037191153001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RAYDAR & ASSOCIATES, INC. SAFE HARBOR 401(K) PLAN","001","2007-01-01","RAYDAR & ASSOCIATES, INC.",,,"13991 E STATE RD 558",,"ODON","IN","475625522",,,,,,,"13991 E STATE RD 558",,"ODON","IN","475625522",,,,,,,"260013368","8128547041","334500","RAYDAR & ASSOCIATES, INC.",,"13991 E STATE RD 558",,"ODON","IN","475625522",,,,,,,"260013368","8128547041",,,,"2011-04-05T10:54:03-0500","HAROLD DARNELL",,,,,214,234,,4,238,,238,158,,,"2E2F2G2J3E",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110405124902P030005457842001","2010-03-01","2011-02-28","2",,"0","0","1","0","0","0","0","0","0",,"ARBORCRAFT, LLC EMPLOYEE WELFARE BENEFIT PLAN","501","2009-03-01","ARBORCRAFT, LLC",,"SANDY WESTELAKEN","2225 EDDIE WILLIAMS ROAD",,"JOHNSON CITY","TN","37604",,,,,,,"2225 EDDIE WILLIAMS ROAD",,"JOHNSON CITY","TN","37604",,,,,,,"611541387","4239793704","321900","ARBORCRAFT, LLC","SANDY WESTELAKEN","2225 EDDIE WILLIAMS ROAD",,"JOHNSON CITY","TN","37604",,,,,,,"611541387","4239793704",,,,"2011-04-04T15:58:21-0500","ANTHONY GIOBBI",,,,,183,0,0,0,0,0,0,,0,,,"4A4D","1",,,,"1",,,,,,,"0",,"1","1",,,,"FILING_RECEIVED","2011-04-05","Filed with authorized/valid electronic signature",, "20110331142038P030034520721001","2010-01-01","2010-08-31","2",,"0","0","0","1","0","0","0","0","0",,"UNITED CONCORDIA COMPANIES INC.","502","2002-01-01","DELTA GALIL USA, INC.",,"NORM STITHAM","1501 WEST 3RD STREET",,"WILLIAMSPORT","PA","17701",,,,,,,"1501 WEST 3RD STREET",,"WILLIAMSPORT","PA","17701",,,,,,,"133272568","5703262451","424300","DELTA GALIL USA, INC.","NORM STITHAM","1501 WEST 3RD STREET",,"WILLIAMSPORT","PA","17701",,,,,,,"133272568","5703262451",,,,"2011-03-31T14:18:21-0500","NORMAN STITHAM",,,,,172,142,,,142,,142,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110330103316P040034378641001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE INSURANCE PLAN OF THE UNITED WAY OF THE GREATER DAYTON AREA AND AFFILIATED AGENCIES","501","1948-01-01","UNITED WAY OF THE GREATER DAYTON AREA",,"VICKI HAHN","33 WEST FIRST STREET","SUITE 500","DAYTON","OH","45402",,,,,,,"33 WEST FIRST STREET","SUITE 500","DAYTON","OH","45402",,,,,,,"310536658","9372253026","624200","UNITED WAY OF THE GREATER DAYTON AREA","VICKI HAHN","33 WEST FIRST STREET","SUITE 500","DAYTON","OH","45402",,,,,,,"310536658","9372253026",,,,"2011-03-30T10:30:58-0500","VICKI HAHN",,,,,701,747,,,747,,747,,,14,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110331082457P030034370449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STILLWATER TECHNOLOGIES, INC. MASTER SAVINGS PLAN AND TRUST","001","1987-11-01","STILLWATER TECHNOLOGIES, INC.",,,"1040 SOUTH DORSET ROAD",,"TROY","OH","45373",,,,,,,,,,,,,,,,,,"310599755","9374402505","332900","STILLWATER TECHNOLOGIES, INC.",,"1040 SOUTH DORSET ROAD",,"TROY","OH","45373",,,,,,,"310599755","9374402505",,,,"2011-03-31T08:24:48-0500","WANDA C. LUKENS","2011-03-31T08:24:48-0500","WANDA C. LUKENS",,,77,68,4,15,87,0,87,65,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110330124636P040010851575001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CHAMPLAIN VALLEY OFFICE OF ECONOMIC OPPORTUNITY INC- CAFETERIA PLAN","505","1990-04-01","CHAMPLAIN VALLEY OFFICE OF ECONOMIC OPPORTUNITY",,,"191 NORTH STREET","PO BOX 1603","BURLINGTON","VT","054021603",,,,,,,"191 NORTH STREET","PO BOX 1603","BURLINGTON","VT","054021603",,,,,,,"030216837","8028622771","624200","CHAMPLAIN VALLEY OFFICE OF ECONOMIC OPPORTUNITY",,"191 NORTH STREET","PO BOX 1603","BURLINGTON","VT","054021603",,,,,,,"030216837","8028622771",,,,"2011-03-30T12:45:48-0500","CAROL PAUL",,,,,21,22,,,22,,22,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110331152606P030034549457001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CMC 401K PLAN","001","2002-01-01","MARKET SQUARE LIQUORS, LLC",,,"1350 MARKET STREET, SUITE 205",,"TALLAHASSEE","FL","32312",,,,,,,,,,,,,,,,,,"261916731","8508939633","445310","MARKET SQUARE LIQUORS, LLC",,"1350 MARKET STREET, SUITE 205",,"TALLAHASSEE","FL","32312",,,,,,,"261916731","8508939633",,,,"2011-03-31T15:25:10-0500","JIM BLEDSOE",,,,,37,29,0,6,35,0,35,35,2,,"2E2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110324141021P040143172736001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"LARSON ENGINEERING, INC. HEALTH PLAN","501","2007-01-01","LARSON ENGINEERING, INC.","LARSON ENGINEERING, INC.",,"3524 LABORE ROAD",,"WHITE BEAR LAKE","MN","55110",,,,,,,"3524 LABORE ROAD",,"WHITE BEAR LAKE","MN","55110",,,,,,,"411396375","6514819120","541330","LEE GRANQUIST",,"3524 LABORE ROAD",,"WHITE BEAR LAKE","MN","55110",,,,,,,"411396375","6514819120",,,,"2011-03-24T14:08:18-0500","LEE GRANQUIST",,,,,291,233,2,,235,,235,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110324183116P040004649602001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHN A. ROGERS, D.M.D., P.C. 401K PROFIT SHARING PLAN","001","1984-08-01","JOHN A. ROGERS, D.M.D., P.C.",,,"1601 E MCANDREWS RD STE B",,"MEDFORD","OR","975045300",,,,,,,,,,,,,,,,,,"930864749","5417720109","621210","JOHN A. ROGERS, D.M.D., P.C.",,"1601 E MCANDREWS RD STE B",,"MEDFORD","OR","975045300",,,,,,,"930864749","5417720109",,,,"2011-03-24T18:25:59-0500","JOHN A. ROGERS, D.M.D.",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110330120106P030033908849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JEREMIAH SPECIALTY CONTRACTORS, LLC PROFIT SHARING PLAN","001","1998-01-01","JEREMIAH SPECIALTY CONTRACTORS, LLC",,,"2001 MCCAIN PARKWAY",,"PELHAM","AL","35124",,,,,,,,,,,,,,,,,,"721374028","2056211444","238900","JEREMIAH SPECIALTY CONTRACTORS, LLC",,"2001 MCCAIN PARKWAY",,"PELHAM","AL","35124",,,,,,,"721374028","2056211444",,,,"2011-03-30T11:58:31-0500","GLENN S. LAWLEY","2011-03-30T11:58:31-0500","GLENN S. LAWLEY",,,8,7,,1,8,,8,8,,,"2A2E2G2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110330110840P040158076192001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LERMA LAW OFFICE, P.A. PROFIT SHARING PLAN","001","2003-01-01","LERMA LAW OFFICE, P.A.",,,"P.O. BOX 190719",,"BOISE","ID","837190719",,,,,,,,,,,,,,,,,,"820535698","2086720607","541110","LERMA LAW OFFICE, P.A.",,"P.O. BOX 190719",,"BOISE","ID","837190719",,,,,,,"820535698","2086720607",,,,"2011-03-30T11:02:46-0500","JOHN LERMA",,,,,3,3,0,0,3,0,3,1,0,,"2A2E2G2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110324095212P030143671376001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BOBBY J CARMEN, DDS 401(K) PLAN","001","2007-01-01","BOBBY J CARMEN, DDS, PLLC",,,"334 12TH AVENUE SE, SUITE 120",,"NORMAN","OK","73071",,,,,,,,,,,,,,,,,,"204742600","4053642200","621210","BOBBY J CARMEN, DDS, PLLC",,"334 12TH AVENUE SE, SUITE 120",,"NORMAN","OK","73071",,,,,,,"204742600","4053642200",,,,"2011-03-24T10:51:21-0500","BOBBY J. CARMEN, DDS",,,,,9,8,0,1,9,0,9,7,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-03-24","Filed with authorized/valid electronic signature",, "20110330075053P030033825873001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARTWRIGHT LANDSCAPES, INC. DEFINED BENEFIT PENSION PLAN","001","2000-01-01","CARTWRIGHT LANDSCAPES, INC.",,,"1820 REDD ROAD",,"ALPHARETTA","GA","30004",,,,,,,,,,,,,,,,,,"581772771","7706647804","561730","CARTWRIGHT LANDSCAPES, INC.",,"1820 REDD ROAD",,"ALPHARETTA","GA","30004",,,,,,,"581772771","7706647804",,,,"2011-03-30T07:41:03-0500","JOHN E. CARTWRIGHT",,,,,36,18,0,21,39,0,39,,1,,"1A1G3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-03-30","Filed with authorized/valid electronic signature",, "20110331123215P030005060178001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"4 X 1 IMPORTS, INC. PROFIT SHARING PLAN","002","1993-01-01","4 X 1 IMPORTS, INC.",,,"5873 DAY ROAD",,"CINCINNATI","OH","452521342",,,,,,,,,,,,,,,,,,"310953554","5133858185","424990","4 X 1 IMPORTS, INC.",,"5873 DAY ROAD",,"CINCINNATI","OH","452521342",,,,,,,"310953554","5133858185",,,,"2011-03-31T12:29:31-0500","MARK J. SPAMPINATO",,,,,6,6,0,0,6,0,6,6,0,,"2E3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-03-31","Filed with authorized/valid electronic signature",, "20110419085952P030044972561001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DIABETES & ENDOCRINOLOGY ASSOCIATES OF SOUTH JERSEY PC 401K PLAN","001","2007-09-30","DIABETES & ENDOCRINOLOGY ASSOCIATES",,,"512 STOCKTON DR",,"WILLIAMSTOWN","NJ","08094",,,,,,,,,,,,,,,,,,"200563274","8562624681","621111","DIABETES & ENDOCRINOLOGY ASSOCIATES",,"512 STOCKTON DR",,"WILLIAMSTOWN","NJ","08094",,,,,,,"200563274","8562624681",,,,"2011-04-19T08:59:18-0500","RISHI RASTOGI",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G2J2K2R3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110419094511P030211014832001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TEBONS GAS & AUTO SERVICE,INC. PROFIT SHARING PLAN","002","1992-01-01","TEBONS GAS & AUTO SERVICE, INC.",,,"7415 N. HARLEM AVENUE",,"NILES","IL","607143701",,,,,,,,,,,,,,,,,,"362548363","8476479800","454390","TEBONS GAS & AUTO SERVICE, INC.",,"7415 N. HARLEM AVENUE",,"NILES","IL","607143701",,,,,,,"362548363","8476479800",,,,"2011-04-18T16:48:58-0500","MICHAEL J. FELD","2011-04-18T16:49:21-0500","MICHAEL J. FELD",,,2,2,0,0,2,0,2,2,,,"2E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110418145547P030208960880002","2000-07-01","2001-06-30","2",,"1",,,,,,,"1",,,"BUILDERS TRANSPORTATION COMPANY, LLC MEDICAL PLAN","501","2000-07-01","BUILDERS TRANSPORTATION COMPANY, LLC",,,"3710 TULANE ROAD",,"MEMPHIS","TN","38116",,,,,,,,,,,,,,,,,,"621730256","9013961220","484120","BUILDERS TRANSPORTATION COMPANY, LLC",,"3710 TULANE ROAD",,"MEMPHIS","TN","38116",,,,,,,"621730256","9013961220",,,,"2011-04-18T07:57:10-0500","DWIGHT BASSETT",,,,,0,337,0,0,337,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110418122813P040206999280001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MKM ASSOCIATES, INC. 401(K) PLAN","001","1993-01-01","MKM ASSOCIATES, INC.",,,"P.O. BOX 824",,"NORTHBORO","MA","01532",,,,,,,,,,,,,,,,,,"043154090","5084817777","541990","MKM ASSOCIATES, INC.",,"P.O. BOX 824",,"NORTHBORO","MA","01532",,,,,,,"043154090","5084817777",,,,"2011-04-18T13:28:01-0500","KEVIN MALLETT",,,,,17,13,0,3,16,0,16,17,0,,"2E2F2G2T2J2K3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413165409P030006096594001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARTIFICIAL MUSCLE, INC.","001","2004-04-15","ARTIFICIAL MUSCLE, INC.",,,"749 N. MARY AVE.",,"SUNNYVALE","CA","94085",,,,,,,"749 N. MARY AVE.",,"SUNNYVALE","CA","94085",,,,,,,"943395884","6509483710","335900","ARTIFICIAL MUSCLE, INC.",,"749 N. MARY AVE.",,"SUNNYVALE","CA","94085",,,,,,,"943395884","6509483710",,,,"2011-04-13T16:53:17-0500","TAVIE ARMFIELD",,,,,44,28,0,6,34,0,34,21,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419112631P040014517671001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","1","0",,"VINCENT PAUL WILSON, M.D., P.A. PROFIT SHARING PLAN","001","2000-04-03","VINCENT P. WILSON, M.D.",,,"301 SOUTH MAIDLAND AVENUE","SUITE B","MAITLAND","FL","32751",,,,,,,"301 SOUTH MAIDLAND AVENUE","SUITE B","MAITLAND","FL","32751",,,,,,,"593631913","4076783255","621111","VINCENT P. WILSON, M.D.",,"301 SOUTH MAIDLAND AVENUE","SUITE B","MAITLAND","FL","32751",,,,,,,"593631913","4076783255",,,,"2011-04-19T11:26:15-0500","VINCENT WILSON",,,,,4,4,,,4,,4,,,,"2E",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110418094847P040206691024001","2008-10-01","2009-09-30","2",,"0","0","0","0","0","0","0","1","0",,"GUARDIAN CARE, INC. TAX-DEFERRED ANNUITY PLAN","001","1986-10-01","GUARDIAN CARE, INC.",,,"2500 W. CHURCH STREET",,"ORLANDO","FL","328052399",,,,,,,"2500 W. CHURCH STREET",,"ORLANDO","FL","328052399",,,,,,,"591051096","4072955371","813000","GUARDIAN CARE, INC.",,"2500 W. CHURCH STREET",,"ORLANDO","FL","328052399",,,,,,,"591051096","4072955371",,,,"2011-04-18T09:44:36-0500","VEREEN REYNOLDS",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110418095353P030006470418001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TREESDALE PARTNERS, LLC 401(K) PLAN","001","2007-01-01","TREESDALE PARTNERS, LLC",,,"1325 AVENUE OF THE AMERICAS","SUITE # 2302","NEW YORK","NY","10019",,,,,,,,,,,,,,,,,,"383658159","2122464234","525990","TREESDALE PARTNERS, LLC",,"1325 AVENUE OF THE AMERICAS","SUITE # 2302","NEW YORK","NY","10019",,,,,,,"383658159","2122464234",,,,"2011-04-18T10:53:46-0500","PETER ROSENBLATT",,,,,18,14,0,9,23,0,23,15,2,,"2E2F2J2K2R3D2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110418093311P030044451121001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SWEPCO RETIREMENT PLAN","002","1944-11-01","SOUTHWESTERN PETROLEUM CORPORATION",,,"534 N. MAIN",,"FT. WORTH","TX","76164",,,,,,,"534 N. MAIN",,"FT. WORTH","TX","76164",,,,,,,"750575380","8173487245","324190","SOUTHWESTERN PETROLEUM CORPORATION",,"534 N. MAIN",,"FT. WORTH","TX","76164",,,,,,,"750575380","8173487245",,,,"2011-04-18T09:30:17-0500","PHILLIP FRAZIER",,,,,39,35,0,3,38,0,38,28,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413123712P040006239586001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GARVAR AND STEWART, D.M.D. PROFIT SHARING PLAN","001","1986-01-01","GARVAR AND STEWART, D.M.D.",,,"7401 N. UNIVERSITY DR., SUITE 102",,"TAMARAC","FL","33321",,,,,,,,,,,,,,,,,,"591535256","9547217990","621210","GARVAR AND STEWART, D.M.D.",,"7401 N. UNIVERSITY DR., SUITE 102",,"TAMARAC","FL","33321",,,,,,,"591535256","9547217990",,,,"2011-04-13T12:37:07-0500","LANNY R. GARVAR, D.M.D.","2011-04-13T12:37:07-0500","LANNY R. GARVAR, D.M.D.",,,10,0,0,0,0,0,0,0,0,,"2A2E3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413151346P030195964768001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"INTERFET CORPORATION EMPLOYEES 401(K) PLAN","001","1991-01-01","INTERFET CORPORATION",,,"715 NORTH GLENVILLE DRIVE","SUITE 400","RICHARDSON","TX","75081",,,,,,,"715 NORTH GLENVILLE DRIVE","SUITE 400","RICHARDSON","TX","75081",,,,,,,"752205765","9724871287","334410","INTERFET CORPORATION",,"715 NORTH GLENVILLE DRIVE","SUITE 400","RICHARDSON","TX","75081",,,,,,,"752205765","9724871287",,,,"2011-04-13T15:12:51-0500","XAN HOPWOOD",,,,,20,18,0,3,21,0,21,16,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110418111424P040014339975001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CULLIGAN WATER SERVICES INC. 401K PLAN","002","1990-11-01","CULLIGAN WATER SERVICES",,,"315 E. 15TH STREET",,"PANAMA CITY","FL","32401",,,,,,,,,,,,,,,,,,"590683483","8507631721","811490","CULLIGAN WATER SERVICES",,"315 E. 15TH STREET",,"PANAMA CITY","FL","32401",,,,,,,"590683483","8507631721",,,,"2011-04-18T11:14:16-0500","JAY TRUMBULL","2011-04-18T11:14:16-0500","JAY TRUMBULL",,,59,49,0,8,57,0,57,55,1,,"2E2J2G3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413080125P030006061330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIFFLINBURG BANK AND TRUST COMPANY EMPLOYEE STOCK OWNERSHIP PLAN","004","1996-01-01","MIFFLINBURG BANK AND TRUST COMPANY",,,"P.O. BOX 186",,"MIFFLINBURG","PA","178440186",,,,,,,"250 E. CHESTNUT STREET",,"MIFFLINBURG","PA","178449315",,,,,,,"240661750","5709661041","522110","MIFFLINBURG BANK AND TRUST COMPANY",,"P.O. BOX 186",,"MIFFLINBURG","PA","178440186",,,,,,,"240661750","5709661041",,,,"2011-04-13T08:00:52-0500","ANDREA L. LONG","2011-04-13T08:00:52-0500","JEFFREY J. KAPSAR",,,67,63,0,4,67,0,67,64,2,,"2O2I3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110415170018P040199794112001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DE ANZA TRUE VALUE","001","1998-01-01","DE ANZA TRUE VALUE",,,"785 PALM CANYON DRIVE",,"BORREGO SPRINGS","CA","92004",,,,,,,,,,,,,,,,,,"330783257","7607675001","444110","DE ANZA TRUE VALUE",,"785 PALM CANYON DRIVE",,"BORREGO SPRINGS","CA","92004",,,,,,,"330783257","7607675001",,,,"2011-04-15T04:15:18-0500","GREGORY S. PEARSON, CPA, APA",,,,,10,7,0,0,7,,7,7,,,"2A2E3B3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110418123506P040014354455001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILEY BROS INC FOURTH RESTATED PROFIT SHARING PLAN","001","1977-05-01","WILEY BROS INC",,,"40 BURTON HILLS BLVD",,"NASHVILLE","TN","37215",,,,,,,"SUITE 350",,"NASHVILLE","TN","37215",,,,,,,"621627736","6152556431","523120","WILEY BROS INC",,"40 BURTON HILLS BLVD/SUITE 350",,"NASHVILLE","TN","37215",,,,,,,"621627736","6152556431",,,,"2011-04-18T12:32:03-0500","LISA JAMES",,,,,62,60,0,5,65,0,65,56,0,,"2E2H2J2K2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413110020P030006071762001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"TWENTY-ONE OAKS ENTERPRISES, INC. 401(K) PLAN","001","2009-12-09","TWENTY-ONE OAKS ENTERPRISES, INC.",,,"4135 W AVE.",,"OELWEIN","IA","50662",,,,,,,,,,,,,,,,,,"271460646","3196352147","541600","TWENTY-ONE OAKS ENTERPRISES, INC.",,"4135 W AVE.",,"OELWEIN","IA","50662",,,,,,,"271460646","3196352147",,,,"2011-04-13T11:00:14-0500","KARLA STEIL",,,,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413080756P030006061522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOLMATRO, INC. 401(K) PLAN","002","1990-01-01","HOLMATRO, INC.",,,"505 MCCORMICK DRIVE",,"GLEN BURNIE","MD","21061",,,,,,,,,,,,,,,,,,"521353852","4109689662","333200","HOLMATRO, INC.",,"505 MCCORMICK DRIVE",,"GLEN BURNIE","MD","21061",,,,,,,"521353852","4109689662",,,,"2011-04-13T08:07:49-0500","WILLIAM G. SWAYNE","2011-04-13T08:07:49-0500","WILLIAM G. SWAYNE",,,58,50,2,4,56,0,56,52,0,,"2E2G2J2K2T3D2F",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110415184319P030201805648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERACTIVE DATA CORPORATION SEVERANCE PLAN","501","2004-01-01","INTERACTIVE DATA CORPORATION",,,"32 CROSBY DRIVE",,"BEDFORD","MA","017301448",,,,,,,,,,,,,,,,,,"133668779","7816878783","523900","INTERACTIVE DATA CORPORATION",,"32 CROSBY DRIVE",,"BEDFORD","MA","017301448",,,,,,,"133668779","7816878783",,,,"2011-04-15T18:43:12-0500","PETER CASTRICHINI",,,,,1504,1460,62,0,1522,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110418135446P030003808245001","2010-10-01","2011-01-31","2",,"0","0","1","1","0","0","0","0","0",,"VALU-PLUS, INC. FLEXIBLE BENEFITS PLAN","501","1990-10-01","VALU-PLUS, INC.",,,"1501 UNITY ST",,"PHILADELPHIA","PA","191243921",,,,,,,,,,,,,,,,,,"232642979","2157444707","452900","VALU-PLUS, INC.",,"1501 UNITY ST",,"PHILADELPHIA","PA","191243921",,,,,,,"232642979","2157444707",,,,"2011-04-18T13:53:33-0500","JERALD GOLDFINE",,,,,189,0,0,0,0,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110418135838P030208849920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"B & B LAMINATES, INC. RETIREMENT PLAN","001","1992-10-01","B & B LAMINATES, INC.",,,"1869 LUDDEN DR",,"CROSS PLAINS","WI","535289443",,,,,,,,,,,,,,,,,,"391965743","6087984733","337000","B & B LAMINATES, INC.",,"1869 LUDDEN DR",,"CROSS PLAINS","WI","535289443",,,,,,,"391965743","6087984733",,,,"2011-04-18T13:58:11-0500","BRENT DUHR",,,,,22,23,0,2,25,0,25,22,1,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110418134220P040014364311001","2009-10-01","2010-09-30","2",,"0","0","0","0","0","0","0","0","0",,"ADVANTEC WELFARE BENEFITS PLAN","501","1999-06-01","AGENCY SOLUTIONS INTERNATIONAL, INC","ADVANTEC",,"4890 W KENNEDY BLVD","SUITE 500","TAMPA","FL","336091844",,,,,,,,,,,,,,,,,,"593439650","8882206106","541214","AGENCY SOLUTIONS INTERNATIONAL, INC",,"4890 W KENNEDY BLVD","SUITE 500","TAMPA","FL","336091844",,,,,,,"593439650","8882206106",,,,"2011-04-18T13:30:05-0500","KAREN KANGARI","2011-04-18T13:36:05-0500","DIANNA SHEPPARD",,,9028,6763,250,0,7013,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413170425P040042524705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SANDEEP SOOD, DDS, PC 401K PLAN","001","2008-01-01","SANDEEP SOOD, DDS, PC",,,"2710 SORORITY LANE",,"HOLT","MI","488428744",,,,,,,,,,,,,,,,,,"364501543","5176942501","621210","SANDEEP SOOD, DDS, PC",,"2710 SORORITY LANE",,"HOLT","MI","488428744",,,,,,,"364501543","5176942501",,,,"2011-04-13T17:01:28-0500","SANDEEP SOOD",,,,,5,5,0,0,5,0,5,5,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110415190052P030013295415001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FULLFORD ELECTRIC, INC. 401(K) PROFIT-SHARING PLAN AND TRUST","001","1985-05-01","FULLFORD ELECTRIC, INC.",,,"303 EAST VAN HORN ROAD",,"FAIRBANKS","AK","99701",,,,,,,,,,,,,,,,,,"920099751","9074567356","238210","FULLFORD ELECTRIC, INC.",,"303 EAST VAN HORN ROAD",,"FAIRBANKS","AK","99701",,,,,,,"920099751","9074567356",,,,"2011-04-15T19:00:46-0500","JAMES FULLFORD","2011-04-15T19:00:46-0500","JAMES FULLFORD",,,9,6,0,4,10,0,10,10,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413131358P040001209428001","2008-01-01","2008-12-31","2",,,"1",,,,,,"1",,,"ENCORE IMAGES, INC. 401(K) PLAN","001","2010-01-01","ENCORE IMAGES, INC.",,,"21 LIME STREET",,"MARBLEHEAD","MA","01945",,,,,,,,,,,,,,,,,,"043250587","7816314568","811210","ENCORE IMAGES, INC.",,"21 LIME STREET",,"MARBLEHEAD","MA","01945",,,,,,,"043250587","7816314568",,,,"2011-04-13T02:13:50-0500","PAUL B. MERVIS",,,,,18,17,0,0,17,0,17,15,0,,"2E3D2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413153643P030196010144001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"FRENCH ENTERPRISES, INC. 401(K) PLAN","001","2009-05-12","FRENCH ENTERPRISES, INC.",,,"580 GREENVIEW TERRACE",,"ALPHARETTA","GA","30004",,,,,,,,,,,,,,,,,,"943481034","7704426736","812111","FRENCH ENTERPRISES, INC.",,"580 GREENVIEW TERRACE",,"ALPHARETTA","GA","30004",,,,,,,"943481034","7704426736",,,,"2011-04-13T14:33:36-0500","ROBERT FRENCH",,,,,2,2,0,0,2,0,2,1,0,,"2E2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110415190308P040200010704002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHARLES M. SEVADJIAN, PROFIT SHARING PLAN","001","1999-12-23","CHARLES M. SEVADJIAN",,,"2881 FOURTH AVENUE",,"SAN DIEGO","CA","92103",,,,,,,"2881 FOURTH AVENUE",,"SAN DIEGO","CA","92103",,,,,,,"953402106",,"621111","CHARLES M. SEVADJIAN",,"2881 FOURTH AVENUE",,"SAN DIEGO","CA","92103",,,,,,,"953402106",,,,,"2011-04-14T11:49:59-0500","CHARLES M. SEVADJIAN","2011-04-14T11:49:59-0500","CHARLES M. SEVADJIAN",,,2,2,0,0,2,0,2,2,,,"2A2E2F3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110418154653P040207378000001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"FRANK'S SUPPLY COMPANY INC 401(K) PROFIT SHARING PLAN","001","1993-07-01","FRANKS SUPPLY COMPANY INC",,,"3311 STANFORD DRIVE NE",,"ALBUQUERQUE","NM","87107",,,,,,,,,,,,,,,,,,"850162920","5058840000","423990","FRANKS SUPPLY COMPANY INC",,"3311 STANFORD DRIVE NE",,"ALBUQUERQUE","NM","87107",,,,,,,"850162920","5058840000",,,,"2011-04-18T04:46:39-0500","STEPHANIE LIVELY",,,,,104,94,0,5,99,0,99,71,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413161800P030196081984001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"PONTCHARTRAIN MECHANICAL CO., INC. 401(K) PROFIT SHARING PLAN","001","1984-02-01","PONTCHARTRAIN MECHANICAL CO., INC.",,,"716 LITTLE FARMS AVENUE",,"METAIRIE","LA","70003",,,,,,,"716 LITTLE FARMS AVENUE",,"METAIRIE","LA","70003",,,,,,,"720713215","5047383061","238220","PONTCHARTRAIN MECHANICAL CO., INC.",,"716 LITTLE FARMS AVENUE",,"METAIRIE","LA","70003",,,,,,,"720713215","5047383061",,,,"2011-04-13T16:17:17-0500","KAREN CRANE",,,,,109,112,0,6,118,0,118,65,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419160603P030211745680001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SWEET MELISSA, INC. PROFIT SHARING PLAN","001","2005-01-01","SWEET MELISSA, INC.",,,"43145 BROADLANDS CENTER",,"ASHBURN","VA","20148",,,,,,,,,,,,,,,,,,"201274408","7037292806","445299","SWEET MELISSA, INC.",,"43145 BROADLANDS CENTER",,"ASHBURN","VA","20148",,,,,,,"201274408","7037292806",,,,"2011-04-19T15:56:25-0500","GARY COMI","2011-04-19T15:56:25-0500","GARY COMI",,,26,23,0,0,23,0,23,1,0,,"2A2E2F2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110419100725P030211057232001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"N W KALTZ & SONS FARMS PENSION PLAN","001","2003-01-01","N W KALTZ & SONS FARMS",,,"2571 KRONNER ROAD",,"COLUMBUS","MI","48063",,,,,,,,,,,,,,,,,,"382925206","5867275072","111210","N W KALTZ & SONS FARMS",,"2571 KRONNER ROAD",,"COLUMBUS","MI","48063",,,,,,,"382925206","5867275072",,,,"2011-04-19T10:07:24-0500","PAUL W KALTZ",,,,,2,3,0,0,3,0,3,3,0,,"2C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110418143528P040014370407001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NED JALBERT INTERIOR DESIGN DEFINED BENEFIT PENSION PLAN","001","2000-01-01","NED JALBERT INTERIOR DESIGN",,,"P.O. BOX 725",,"WESTBORO","MA","015810725",,,,,,,,,,,,,,,,,,"043006766","5088369999","812990","NED JALBERT INTERIOR DESIGN",,"P.O. BOX 725",,"WESTBORO","MA","015810725",,,,,,,"043006766","5088369999",,,,"2011-04-18T14:28:51-0500","EDWARD C. JALBERT",,,,,3,2,0,1,3,0,3,,0,,"1A",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413110632P040042366145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCIENTIFIC CONSULTING GROUP, INC. PROFIT SHARING PLAN & TRUST","001","1991-01-01","SCIENTIFIC CONSULTING GROUP, INC.",,,"656 QUINCE ORCHARD ROAD","#210","GAITHERSBURG","MD","208781422",,,,,,,,,,,,,,,,,,"521719423","3016704990","541600","SCIENTIFIC CONSULTING GROUP, INC.",,"656 QUINCE ORCHARD ROAD","#210","GAITHERSBURG","MD","208781422",,,,,,,"521719423","3016704990",,,,"2011-04-13T10:38:52-0500","BEVERLY CAMPBELL",,,,,63,45,0,13,58,0,58,53,4,,"2A2E2F2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419161036P030211754112001","2008-11-01","2009-04-22","2",,"0","1","1","1","0","0","0","1","0",,"SOUTHWEST IMPL., INC. EMPLOYEE STOCK OWNERSHIP PLAN AND TRUST","001","1984-01-01","SOUTHWEST IMPL., INC.",,,"P.O. BOX 369",,"MCCOOK","NE","690010369",,,,,,,"1207 WEST B STREET",,"MCCOOK","NE","690013583",,,,,,,"470633581","3083452730","453990","TERRY G. ELLINGER, CPA",,"P.O. BOX 918",,"MCCOOK","NE","690010918",,,,,,,"470606870","3083456501",,,,"2011-04-19T16:10:30-0500","MARCIA ARNESON",,,,,50,0,0,0,0,0,0,0,0,,"2E2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110413162144P040013473399001","1992-01-01","1992-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GREAT LAKES COLLEGES ASSOCIATION, INC. 403(B) TDA PLAN","002","1975-02-24","GREAT LAKES COLLEGES ASSOCIATION",,,"535 W. WILLIAM STREET","SUITE 301","ANN ARBOR","MI","481034978",,,,,,,,,,,,,,,,,,"381678376","7346612350","813000","GREAT LAKES COLLEGES ASSOCIATION",,"535 W. WILLIAM STREET","SUITE 301","ANN ARBOR","MI","481034978",,,,,,,"381678376","7346612350",,,,"2011-04-13T15:46:54-0500","DEREK VAUGHAN",,,,,,,,,0,,0,,,,"2L2M2F",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110418074112P040206458464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WESTSIDE VETERINARY SERVICES, INC. 401(K)PROFIT SHARING PLAN","002","1982-06-16","WESTSIDE VETERINARY SERVICES, INC.",,,"1531 EAST PACHECO BLVD.",,"LOS BANOS","CA","93635",,,,,,,"1531 EAST PACHECO BLVD",,"LOS BANOS","CA","93635",,,,,,,"942825819","2098262299","541940","WESTSIDE VETERINARY SERVICES, INC.",,"1531 EAST PACHECO BLVD.",,"LOS BANOS","CA","93635",,,,,,,"942825819","2098262299",,,,"2011-04-18T07:40:52-0500","TED STEVENS","2011-04-18T07:40:52-0500","TED STEVENS",,,12,12,0,0,12,0,12,10,0,,"2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413131739P040042417985001","2001-01-01","2001-12-31","2",,,"1",,,,,,"1",,,"ENCORE IMAGES, INC. 401(K) PLAN","001","1999-01-01","ENCORE IMAGES, INC.",,,"21 LIME STREET",,"MARBLEHEAD","MA","01945",,,,,,,,,,,,,,,,,,"043250587","7816314568","454390","ENCORE IMAGES, INC.",,"21 LIME STREET",,"MARBLEHEAD","MA","01945",,,,,,,"043250587","7816314568",,,,"2011-04-13T02:17:32-0500","PAUL B. MERVIS",,,,,16,16,0,0,16,0,16,14,0,,"2E3D2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413072438P040193272816001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EBERSPAECHER NORTH AMERICA 125 BENEFIT PLAN","502","2010-01-01","EBERSPAECHER NORTH AMERICA",,,"29101 HAGGERTY RD",,"NOVI","MI","493770000",,,,,,,,,,,,,,,,,,"383542936","2489947010","336990","EBERSPAECHER NORTH AMERICA",,"29101 HAGGERTY RD",,"NOVI","MI","493770000",,,,,,,"383542936","2489947010",,,,"2011-04-13T07:21:04-0500","CHANTAL BOULET",,,,,139,141,0,0,141,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","1","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413154510P040194263872001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"UNIT DESIGN INC","001","1984-12-18","UNIT DESIGN INC",,,"210 TERRACE ST",,"BATON ROUGE","LA","70802",,,,,,,"210 TERRACE ST",,"BATON ROUGE","LA","70802",,,,,,,"720627882","2253435702","238300","UNIT DESIGN INC",,"210 TERRACE ST",,"BATON ROUGE","LA","70802",,,,,,,"720627882","2253435702",,,,"2011-04-13T15:44:45-0500","TARA BROWN",,,,,2,3,,1,4,,4,4,0,,"2E2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413154520P030006091394001","2011-01-01","2011-03-31","2",,"0","0","1","1","0","0","0","0","0",,"SAMROD CORPORATION EMPLOYEES RETIREMENT TRUST","002","2002-04-01","SAMROD CORPORATION",,,"151 E. AVENUE H-8",,"LANCASTER","CA","93535",,,,,,,"151 E. AVENUE H-8",,"LANCASTER","CA","93535",,,,,,,"952831084","6619453602","237310","SAMROD CORPORATION",,"151 E. AVENUE H-8",,"LANCASTER","CA","93535",,,,,,,"952831084","6619453602",,,,"2011-04-13T15:44:40-0500","DAVID ALLEN",,,,,5,0,0,0,0,0,0,0,0,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110415175447P030201711136001","2009-01-01","2009-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ELITE GRAPHICS, INC. 401K PLAN","001","2005-11-01","ELITE GRAPHICS, INC.",,,"114 POLO DRIVE",,"SALISBURY","NC","28144",,,,,,,,,,,,,,,,,,"203782333","7042392057","323100","ELITE GRAPHICS, INC.",,"114 POLO DRIVE",,"SALISBURY","NC","28144",,,,,,,"203782333","7042392057",,,,"2011-04-15T17:54:42-0500","ANGELA RIDDLE",,,,,10,4,0,0,4,0,4,3,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110419145442P040209856176001","2006-05-01","2007-04-01","2",,"0","0","0","0","0","0","0","1","0",,"WOLFSTEIN INTERNATIONAL, INC. 401(K) PLAN","001","1979-04-30","WOLFSTEIN INTERNATIONAL, INC.",,,"26820 N. CLAUDETTE STREET, 254",,"CANYON CITY","CA","91351",,,,,,,,,,,,,,,,,,"953043065","6619043139","445210","WOLFSTEIN INTERNATIONAL, INC.",,"26820 N. CLAUDETTE STREET, 254",,"CANYON CITY","CA","91351",,,,,,,"953043065","6619043139",,,,"2011-04-19T14:47:47-0500","ANNE WOLFSTEIN",,,,,1,0,0,1,1,0,1,1,,,"2E2G2J2K2F",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110418182917P030209380848001","2010-04-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"THE GRANITE GROUP WHOLESALERS, LLC GROUP HEALTH AND WELFARE PLAN","502","1999-04-01","THE GRANITE GROUP WHOLESALERS, LLC",,,"PO BOX 2004","6 STORRS STREET","CONCORD","NH","033012004",,,,,,,,,,,,,,,,,,"020495286","6032241901","423700","THE GRANITE GROUP WHOLESALERS, LLC",,"PO BOX 2004","6 STORRS STREET","CONCORD","NH","033012004",,,,,,,"020495286","6032241901",,,,"2011-04-18T18:29:07-0500","LAURIE MURPHY",,,,,356,268,0,0,268,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-04-18","Filed with authorized/valid electronic signature",, "20110413111818P030041562737001","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"RED SEA HEART CENTER, P.L.C. 401(K) PROFIT SHARING PLAN","001","2010-01-01","RED SEA HEART CENTER, P.L.C.",,,"2281 W. 24TH ST., SUITE 3",,"YUMA","AZ","85364",,,,,,,,,,,,,,,,,,"260391172","9283449300","621111","RED SEA HEART CENTER, P.L.C.",,"2281 W. 24TH ST., SUITE 3",,"YUMA","AZ","85364",,,,,,,"260391172","9283449300",,,,"2011-04-13T12:18:16-0500","HABTEAB FESEHA",,,,,0,2,0,1,3,0,3,3,1,,"2A2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413130328P030041618449001","2001-07-01","2002-06-30","2",,"0","0","0","0","0","0","0","1","0",,"TARBUT V TORAH 403(B) DC PLAN","001","1999-09-01","TARBUT V TORAH",,,"5 FEDERATION WAY",,"IRVINE","CA","926030100",,,,,,,,,,,,,,,,,,"953374189","9495099500","611000","TARBUT V TORAH",,"5 FEDERATION WAY",,"IRVINE","CA","926030100",,,,,,,"953374189","9495099500",,,,"2011-04-13T13:03:09-0500","GARY BERMAN",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110419150201P040014547207001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDICAL ONCOLOGY LLC 401K PROFIT SHARING PLAN","001","1999-08-01","MEDICAL ONCOLOGY LLC",,,"8119 PICARDY AVENUE",,"BATON ROUGE","LA","70809",,,,,,,,,,,,,,,,,,"721405495","2257570343","621111","MEDICAL ONCOLOGY LLC",,"8119 PICARDY AVENUE",,"BATON ROUGE","LA","70809",,,,,,,"721405495","2257570343",,,,"2011-04-19T15:01:50-0500","SIVA YADLAPATI",,,,,49,27,0,19,46,0,46,46,2,,"2A2E2F2G2J2K2R2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-19","Filed with authorized/valid electronic signature",, "20110415154754P040043730401001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THERMO FISHER 401(K) RETIREMENT PLAN FOR EMPLOYEES OF PUERTO RICO","001","2006-01-01","THERMO FISHER SCIENTIFIC INC.",,,"81 WYMAN STREET",,"WALTHAM","MA","02451",,,,,,,,,,,,,,,,,,"666027988","7816221000","423400","THERMO FISHER SCIENTIFIC INC.",,"81 WYMAN STREET",,"WALTHAM","MA","02451",,,,,,,"042209186","7816221000",,,,"2011-04-15T15:47:53-0500","DAVID A. REIRDEN",,,,,0,29,0,1,30,0,30,,,,"2E2F2G2J2K3H3J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110415102305P040198985024001","2009-07-01","2010-06-30","4","C","0","0","0","0","0","0","0","0","0",,"UBS U.S. EQUITY ALPHA COLLECTIVE FUND","056",,"UBS US GROUP TRUST",,,"UBS TOWER, 36TH FLOOR","ONE NORTH WACKER DRIVE","CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"363762086","3125257500",,"UBS GLOBAL ASSET MANAGEMENT TRUST COMPANY","UBS TOWER","ONE NORTH WACKER DRIVE",,"CHICAGO","IL","60606",,,,,,,"363718331","3125257100",,,,,,,,"2011-04-15T08:07:25-0500","MICHAEL FLOOK",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-04-15",,"Filed with authorized/valid electronic signature", "20110415120016P030013228695001","2010-01-01","2010-12-31","2",,,"1","1",,,,,,,,"METROPOLITAN CARDIOLOGY ASSOCIATES, INC","002","1983-05-30","METROPOLITAN CARDIOLOGY ASSOCIATES INC",,,"5855 BREMO RD - STE 101","RICHMOND VA 23226","RICHMOND","VA","232261926",,,,,,,"5855 BREMO RD - STE 101",,"RICHMOND","VA","23226",,,,,,,"541215164","8042856378","621111","METROPOLITAN CARDIOLOGY ASSOCIATES INC",,"5855 BREMO RD - STE 101","RICHMOND VA 23226","RICHMOND","VA","232261926",,,,,,,"541215164","8042856378",,,"002","2011-04-15T03:20:16-0500","ZUBAIR HASSAN",,,,,2,0,0,0,0,,0,,,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110415131432P030003669525001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SECURITY STATE BANK PROFIT SHARING PLAN AND TRUST","002","1991-01-01","SECURITY STATE BANK",,,"P.O. BOX J",,"FARWELL","TX","793250238",,,,,,,,,,,,,,,,,,"750548800","8064813327","522110","SECURITY STATE BANK",,"P.O. BOX J",,"FARWELL","TX","793250238",,,,,,,"750548800","8064813327",,,,"2011-04-15T13:14:26-0500","THOMAS NICHOLS",,,,,16,11,3,1,15,1,16,16,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110414203013P040006365042001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHARLES A. BRIZIUS OD, INC. PROFIT SHARING PLAN","001","1979-01-01","CHARLES A. BRIZIUS, OD, INC.",,,"2700 LINCOLN AVENUE",,"EVANSVILLE","IN","47714",,,,,,,,,,,,,,,,,,"351445109","8124778696","621320","CHARLES A. BRIZIUS, OD, INC.",,"2700 LINCOLN AVENUE",,"EVANSVILLE","IN","47714",,,,,,,"351445109","8124778696",,,,"2011-04-13T07:01:58-0500","DR. SCOTT BRIZIUS",,,,,12,13,,,13,,13,13,,,"2E2F2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110415102403P030013214391001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREYCOACH PROPERTIES, INC. 401(K) PROFIT SHARING","001","2000-01-01","GREYCOACH PROPERTIES, INC.",,,"505 NORTH HIGHWAY 169, SUITE 595",,"PLYMOUTH","MN","55441",,,,,,,,,,,,,,,,,,"411572559","7634172986","531310","GREYCOACH PROPERTIES, INC.",,"505 NORTH HIGHWAY 169, SUITE 595",,"PLYMOUTH","MN","55441",,,,,,,"411572559","7634172986",,,,"2011-04-15T10:23:53-0500","ROBERT BURNS","2011-04-15T10:23:53-0500","ROBERT BURNS",,,12,11,0,1,12,0,12,12,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110415144206P030042918961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACOUSTICS, INC. PROFIT SHARING PLAN","001","1986-10-01","ACOUSTICS, INC.",,,"58 ALNA LANE",,"EAST HARTFORD","CT","06108",,,,,,,,,,,,,,,,,,"061156901","8602820227","238300","ACOUSTICS, INC.",,"58 ALNA LANE",,"EAST HARTFORD","CT","06108",,,,,,,"061156901","8602820227",,,,"2011-04-07T16:46:24-0500","DANIEL FILOMENO","2011-04-07T16:46:24-0500","DANIEL FILOMENO",,,8,6,0,1,7,0,7,8,1,,"2E3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110414160942P030007023542001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ASCENT TECHNOLOGY, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1994-05-01","ASCENT TECHNOLOGY, INC.",,,"1 KENDALL SQUARE","BUILDING 200, 4TH FLOOR","CAMBRIDGE","MA","02139",,,,,,,,,,,,,,,,,,"042936271","6173954807","339900","ASCENT TECHNOLOGY, INC.",,"1 KENDALL SQUARE","BUILDING 200, 4TH FLOOR","CAMBRIDGE","MA","02139",,,,,,,"042936271","6173954807",,,,"2011-04-14T05:09:35-0500","KAREN A. PRENDERGAST",,,,,31,21,0,9,30,0,30,27,0,,"2E2F2G2T2J2K2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414171058P040043168961001","2010-08-19","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"CB IMARKETING SOLUTIONS, INC. 401K PLAN","001","2010-08-19","CB IMARKETING SOLUTIONS, INC.",,,"18435 SAILFISH COVE",,"HUMBLE","TX","77346",,,,,,,,,,,,,,,,,,"273279355","2817949853","541990","CB IMARKETING SOLUTIONS, INC.",,"18435 SAILFISH COVE",,"HUMBLE","TX","77346",,,,,,,"273279355","2817949853",,,,"2011-04-14T17:10:52-0500","CARMEN BRADLEY",,,,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D3H3B",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414171342P030042378801001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"3000 VERSAILLES ROAD LLC 401K","001","2002-03-01","3000 VERSAILLES ROAD, LLC","3000 VERSAILLES ROAD",,"3000 VERSAILLES ROAD",,"FRANKFORT","KY","40601",,,,,,,"3000 VERSAILLES ROAD",,"FRANKFORT","KY","40601",,,,,,,"611380299","5132353488","812210","3000 VERSAILLES ROAD, LLC",,"3000 VERSAILLES ROAD",,"FRANKFORT","KY","40601",,,,,,,"611380299","5132353488","SUNSET FUNERAL HOME INC","611380300","001","2011-04-14T17:12:30-0500","MIKE SCHWEER",,,,,28,35,0,0,35,0,35,11,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110415080305P030200464352001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GEORGE C. PARIS CO., INC.","001","1985-07-31","GEORGE C. PARIS","GEORGE C. PARIS CO., INC.",,"P.O. BOX 22100",,"KNOXVILLE","TN","37933",,,,,,,"10628 SANDPIPER LANE",,"KNOXVILLE","TN","37922",,,,,,,"621122965","8659662141","812990","GEORGE C. PARIS",,"P.O. BOX 22100",,"KNOXVILLE","TN","37933",,,,,,,"621122965","8659662141",,,,"2011-04-15T03:53:34-0500","CHRISTINA R. PARIS",,,,,3,3,0,0,3,0,3,,,,"2G",,,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110415101110P040013823751001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CITIZENS NATIONAL BANCSHARES OF BOSSIER, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1993-01-01","CITIZENS NATIONAL BANCSHARES OF BOSSIER, INC.",,,"2711 E. TEXAS STREET",,"BOSSIER CITY","LA","711113745",,,,,,,,,,,,,,,,,,"721296111","3187476000","522110","CITIZENS NATIONAL BANCSHARES OF BOSSIER, INC.",,"2711 E. TEXAS STREET",,"BOSSIER CITY","LA","711113745",,,,,,,"721296111","3187476000",,,,"2011-04-15T10:05:33-0500","JIM KEEL",,,,,120,89,6,24,119,0,119,112,0,,"2H2I2J2K2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110414085623P040042924321001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"METAL FINISHING SUPPLY CO., INC. EMPLOYEES' PROFIT SHARING PLAN","001","1969-06-25","METAL FINISHING SUPPLY CO., INC.",,,"P.O. BOX 526",,"BROOKFIELD","WI","530080526",,,,,,,,,,,,,,,,,,"391088674","2627820555","423990","METAL FINISHING SUPPLY CO., INC.",,"P.O. BOX 526",,"BROOKFIELD","WI","530080526",,,,,,,"391088674","2627820555",,,,"2011-04-14T08:56:18-0500","JAMES CHOREN",,,,,12,10,0,2,12,0,12,11,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414161240P030006178434001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STATEHOUSE INVESTMENTS, LLC 401(K) PROFIT SHARING PLAN","001","2007-01-01","STATEHOUSE INVESTMENTS, LLC",,,"22 E. MIFFLIN",,"MADISON","WI","53703",,,,,,,,,,,,,,,,,,"562578427","6083161261","523120","STATEHOUSE INVESTMENTS, LLC",,"22 E. MIFFLIN",,"MADISON","WI","53703",,,,,,,"562578427","6083161261",,,,"2011-04-14T16:06:26-0500","JAMES SCHUTZ",,,,,5,5,0,0,5,0,5,5,0,,"2E2J2K2F2G3D2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110415142226P040199468176001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHERN BANCORP HEALTH AND WELNESS BENEFITS PLAN","501","1999-01-01","SOUTHERN BANCORP",,"JILL HILTON","605 MAIN STREET",,"ARKADELPHIA","AR","71923",,,,,,,"605 MAIN STREET",,"ARKADELPHIA","AR","71923",,,,,,,"710646525","8702461039","522110","SOUTHERN BANCORP","JILL HILTON","605 MAIN STREET",,"ARKADELPHIA","AR","71923",,,,,,,"710646525","8702461039",,,,"2011-04-13T09:45:14-0500","BRENT BLACK",,,,,287,295,6,,301,,301,,,,,"4A4B4D4E4H","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110414124240P040043033249001","2007-10-01","2008-09-30","2",,"0","0","0","0","0","0","0","1","0",,"CSTE RETIREMENT PLAN & TRUST","001","1996-01-01","COUNCIL OF STATE AND TERRITORIAL EPIDEMIOLOGISTS",,,"2872 WOODCOCK BLVD., SUITE 303",,"ATLANTA","GA","30341",,,,,,,"2872 WOODCOCK BLVD., SUITE 303",,"ATLANTA","GA","30341",,,,,,,"237410799","7704583811","621510","COUNCIL OF STATE AND TERRITORIAL EPIDEMIOLOGISTS",,"2872 WOODCOCK BLVD., SUITE 303",,"ATLANTA","GA","30341",,,,,,,"237410799","7704583811",,,,"2011-04-14T12:40:44-0500","BEVERLY CHRISTNER",,,,,19,13,0,14,27,0,27,26,2,,"2E2F2G2J2K3E",,"1",,,,,,"1",,"1",,,,"1","1",,,"1",,"FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414124336P040043033633001","2010-02-01","2011-01-31","2",,"1","0","0","0","0","0","0","0","0",,"RICHARD PETTY DRIVING EXPERIENCE EMPLOYEE BENEFIT PLAN","501","2008-02-01","RICHARD PETTY DRIVING EXPERIENCE",,,"6022 VICTORY LANE",,"CONCORD","NC","28027",,,,,,,"6022 VICTORY LANE",,"CONCORD","NC","28027",,,,,,,"561705509","7044559443","713900","RICHARD PETTY DRIVING EXPERIENCE",,"6022 VICTORY LANE",,"CONCORD","NC","28027",,,,,,,"561705509","7044559443",,,,"2011-04-14T12:23:49-0500","KENNETH ROGICH",,,,,96,91,,,91,,91,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110414150536P030198548192001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SMILE BY DESIGN 401(K) PROFIT SHARING PLAN","333","2000-01-01","SMILE DY DESIGN",,,"1548 WOODLAKE DRIVE",,"CHESTERFIELD","MO","63017",,,,,,,,,,,,,,,,,,"431537622","6363910103","621210","SMILE DY DESIGN",,"1548 WOODLAKE DRIVE",,"CHESTERFIELD","MO","63017",,,,,,,"431537622","6363910103",,,,"2011-04-14T15:05:36-0500","MARK ESHRAGHI, DMD",,,,,15,10,0,7,17,0,17,17,1,,"2E2J2K2F2G3E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110415085234P040013812599001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREG BAIN & COMPANY PROFIT SHARING PLAN","002","2002-01-01","GREG BAIN & COMPANY",,,"3577 HIGHWAY 93 NORTH",,"KALISPELL","MT","59901",,,,,,,"3577 HIGHWAY 93 NORTH",,"KALISPELL","MT","59901",,,,,,,"810379177","4067522886","236110","GREG BAIN & COMPANY",,"3577 HIGHWAY 93 NORTH",,"KALISPELL","MT","59901",,,,,,,"810379177","4067522886",,,,"2011-03-31T09:33:52-0500","GREG BAIN",,,,,5,3,0,0,3,0,3,5,0,,"2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110415100007P040013821767001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMPSON BAKER AGENCY, INC. 401(K) PLAN","002","1991-05-01","THOMPSON BAKER AGENCY, INC.",,,"P.O. DRAWER 3807",,"ST. AUGUSTINE","FL","32085",,,,,,,,,,,,,,,,,,"590971099","9048241631","524210","THOMPSON BAKER AGENCY, INC.",,"P.O. DRAWER 3807",,"ST. AUGUSTINE","FL","32085",,,,,,,"590971099","9048241631",,,,"2011-04-15T10:00:07-0500","MATT BAKER","2011-04-15T10:00:07-0500","MATT BAKER",,,24,11,2,8,21,0,21,21,3,,"2A2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110415120545P040199184768001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"ANAREN INC. GROUP HEALTH PLAN","510","1998-10-01","ANAREN INC.",,,"6635 KIRKVILLE RD.",,"EAST SYRACUSE","NY","13057",,,,,,,"6635 KIRKVILLE RD.",,"EAST SYRACUSE","NY","13057",,,,,,,"160928561","3154328909","334200","ANAREN INC.",,"6635 KIRKVILLE RD.",,"EAST SYRACUSE","NY","13057",,,,,,,"160928561","3154328909",,,,"2011-04-15T10:46:45-0500","JOSEPH PORCELLO",,,,,463,427,27,,454,,454,,,,,"4A4D4E",,,,"1",,,,"1",,,,"1",,"1","1","1",,,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110414082133P040042905521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SENIOR SYSTEMS, INC. 401(K) PLAN","001","2004-07-01","SENIOR SYSTEMS, INC.",,,"201 BOSTON POST ROAD WEST",,"MARLBORO","MA","01752",,,,,,,,,,,,,,,,,,"043189440","5084800101","541511","SENIOR SYSTEMS, INC.",,"201 BOSTON POST ROAD WEST",,"MARLBORO","MA","01752",,,,,,,"043189440","5084800101",,,,"2011-04-14T08:10:19-0500","RUSSELL ALFIERI",,,,,51,47,0,3,50,0,50,34,0,,"2E2J2K2G3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-14","Filed with authorized/valid electronic signature",, "20110415122724P040013848311001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERNATIONAL ENTERPRISES, INC. PROFIT SHARING PLAN","001","1998-01-01","INTERNATIONAL ENTERPRISES, INC.",,,"4330 STERILITE ST. S.E.",,"MASSILLON","OH","446467452",,,,,,,,,,,,,,,,,,"341610466","3308323821","423990","INTERNATIONAL ENTEPRISES, INC.",,"4330 STERILITE ST S.E.",,"MASSILLON","OH","446467452",,,,,,,"341610466","3308323821",,,,"2011-04-15T12:18:35-0500","MICHAEL FARINA",,,,,30,18,1,8,27,0,27,27,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110415140111P040199418848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRISMER TIRE CO., INC. WELFARE BENEFIT PLAN","501","1997-10-15","GRISMER TIRE CO., INC.",,,"P.O. BOX 337",,"DAYTON","OH","454010337",,,,,,,,,,,,,,,,,,"310590325","9376432526","441300","GRISMER TIRE CO., INC.",,"P.O. BOX 337",,"DAYTON","OH","454010337",,,,,,,"310590325","9376432526",,,,"2011-04-15T14:00:47-0500","JERRY MCCORRMICK",,,,,210,196,3,0,199,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110415124318P040013850887001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHWESTERN EXTRACT COMPANY 401(K) PLAN AND TRUST","001","2002-01-01","NORTHWESTERN EXTRACT COMPANY",,,"W194 N11250 MCCORMICK",,"GERMANTOWN","WI","53022",,,,,,,,,,,,,,,,,,"390509360","2623456200","311900","NORTHWESTERN EXTRACT COMPANY",,"W194 N11250 MCCORMICK",,"GERMANTOWN","WI","53022",,,,,,,"390509360","2623456200",,,,"2011-04-15T12:25:10-0500","WILLIAM PETER",,,,,9,12,0,0,12,0,12,12,0,,"2E2J2K2F2G3D2T",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110415150525P030042935457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INMAN MILLS GROUP INSURANCE PLAN","501","1974-01-01","INMAN MILLS",,,"300 PARK ROAD",,"INMAN","SC","29349",,,,,,,"300 PARK ROAD",,"INMAN","SC","29349",,,,,,,"570187280","8644722121","314000","INMAN MILLS",,"300 PARK ROAD",,"INMAN","SC","29349",,,,,,,"570187280","8644722121",,,,"2011-04-15T15:05:18-0500","JAMES PACE","2011-04-15T15:05:18-0500","JAMES PACE",,,470,493,33,0,526,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110415060031P030001218020001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TECHNISPHERE CORPORATION 401 (K) RETIREMENT PLAN","001","1996-01-01","TECHNISPHERE CORPORATION",,,"335 W 35TH ST",,"NEW YORK","NY","100011726",,,,,,,,,,,,,,,,,,"132687807","2127775100","443112","TECHNISPHERE CORPORATION",,"335 W 35TH ST",,"NEW YORK","NY","100011726",,,,,,,"132687807","2127775100",,,,"2011-04-14T14:41:00-0500","JACK GOLDMAN",,,,,12,11,,1,12,,12,7,,,"2E2F2G2J2K3E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-15","Filed with authorized/valid electronic signature",, "20110412114239P040041823233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DOOR COUNTY MEMORIAL HOSPITAL FLEXIBLE BENEFIT PLAN","509","1990-10-01","DOOR COUNTY MEMORIAL HOSPITAL",,,"323 S. 18TH AVE.",,"STURGEON BAY","WI","54235",,,,,,,,,,,,,,,,,,"390806324","9207435566","622000","DOOR COUNTY MEMORIAL HOSPITAL",,"323 S. 18TH AVE.",,"STURGEON BAY","WI","54235",,,,,,,"390806324","9207435566",,,,"2011-04-12T11:30:15-0500","ROBERT SCIESZINSKI",,,,,208,199,0,0,199,,,,,,,"4A4D4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412134736P030001212883001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"STRATEGIC REPORTS, INC. 401(K) PLAN","001","2001-01-01","STRATEGIC REPORTS, INC.",,,"2645 PERKIOMEN AVE.",,"READING","PA","19606",,,,,,,"2645 PERKIOMEN AVE.",,"READING","PA","19606",,,,,,,"232841566","6103705640","541910","STRATEGIC REPORTS, INC.",,"2645 PERKIOMEN AVE.",,"READING","PA","19606",,,,,,,"232841566","6103705640",,,,"2011-04-12T13:46:35-0500","JUDY GOCHAL",,,,,38,38,0,6,44,0,44,24,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412160840P030041114833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"R.M. KLIMENT & FRANCES HALSBAND, ARCHITECTS PROFIT SHARING PLAN","001","1987-01-01","KLIMENT HALSBAND ARCHITECTS",,,"322 EIGHTH AVENUE",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"132700266","2122437400","541310","KLIMENT HALSBAND ARCHITECTS",,"322 EIGHTH AVENUE",,"NEW YORK","NY","10001",,,,,,,"132700266","2122437400",,,,"2011-04-12T16:02:37-0500","MICHAEL NIEMINEN",,,,,29,22,0,13,35,0,35,35,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110411130514P040041261649001","2010-01-01","2010-06-30","2",,"0","1","0","1","0","1","0","0","0",,"PROCTER & GAMBLE PUERTO RICO PENSION PLAN","003","1943-12-28","PROCTER & GAMBLE COMMERCIAL LLC",,,"CITY VIEW PLAZA PISO 6","CARRETERA 165, KM. 1.2","GUAYNABO","PR","00968",,,,,,,,,,,,,,,,,,"660676831","6174631021","325600","THE PROCTER & GAMBLE MASTER RETIREMENT PLAN COMMITTEE",,"2 PROCTER GAMBLE PLAZA",,"CINCINNATI","OH","452023315",,,,,,,"311209457","6174631021",,,,"2011-04-11T13:01:09-0500","DAVID TIERSCH",,,,,230,30,96,92,218,4,222,,0,,"1A1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110411112652P040041218289001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"STUTZMAN, BROMBERG, ESSERMAN & PLIFKA 401(K) RETIREMENT PLAN","001","1996-01-01","STUTZMAN, BROMBERG, ESSERMAN & PLIFKA",,,"2323 BRYAN ST STE 2200",,"DALLAS","TX","752012689",,,,,,,"2323 BRYAN ST STE 2200",,"DALLAS","TX","752012689",,,,,,,"752355903","2149694900","541110","STUTZMAN, BROMBERG, ESSERMAN & PLIFKA",,"2323 BRYAN ST STE 2200",,"DALLAS","TX","752012689",,,,,,,"752355903","2149694900",,,,"2011-04-11T11:26:15-0500","MACEY WATSON",,,,,56,45,0,12,57,0,57,56,1,,"2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110411134848P040013049751001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"NOVARTIS CORPORATION BUSINESS TRAVEL ACCIDENT","535","1971-05-01","NOVARTIS CORPORATION",,,"608 FIFTH AVENUE",,"NEW YORK","NY","100202303",,,,,,,,,,,,,,,,,,"131834433","2128302410","325410","NOVARTIS CORPORATION",,"608 FIFTH AVENUE",,"NEW YORK","NY","100202303",,,,,,,"131834433","2128302410",,,,"2011-04-11T13:48:41-0500","WILLIAM A. FLANNERY, EXEC DIRECTOR",,,,,0,0,,,0,,,,,,,"4L","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",, "20110412140114P040041885473001","2002-01-01","2002-12-31","2",,"0","1","0","0","0","0","0","1","0",,"403B( RETIREMENT PLAN)","001","1999-08-31","COMMUNITY SUPPORT NETWORK","SAME","SAME","1410 GUERNEVILLE ROAD","SUITE 14","SANTA ROSA","CA","95403",,,,,,,"1410 GUERNEVILLE ROAD","SUITE 14","SANTA ROSA","CA","95403",,,,,,,"942159583","7075750979",,"ROSEMARY DEVITT","SAME","1410 GUERNEVILLE RD.","SUITE 14","SANTA ROSA","CA","95403",,,,,,,"942159583","7075750979",,,,"2011-04-12T13:35:21-0500","ROSEMARY DEVITT",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412071251P040190572176001","2009-12-01","2010-08-31","4","C","1","0","0","1","0","0","0","0","0",,"EB DV NON-SL ALL COUNTRY WORLD INDEX EX US FUND","245",,"THE BANK OF NEW YORK MELLON",,,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,,,,,,,,,,,,"256078093","4122366165",,"THE BANK OF NEW YORK MELLON",,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,"256078093","4122366165",,,,,,,,"2011-04-12T07:12:43-0500","JEFFREY VAUGHN",,,,,,,,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-04-12",,"Filed with authorized/valid electronic signature", "20110412121036P030192973440001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FALKENBERG CAPITAL CORPORATION 401(K) PROFIT SHARING PLAN","001","2007-01-01","FALKENBERG CAPITAL CORPORATION",,,"600 SOUTH CHERRY STREET","SUITE 1108","DENVER","CO","802461716",,,,,,,,,,,,,,,,,,"841102016","3033204800","523110","FALKENBERG CAPITAL CORPORATION",,"600 SOUTH CHERRY STREET","SUITE 1108","DENVER","CO","802461716",,,,,,,"841102016","3033204800",,,,"2011-04-12T13:10:34-0500","BRUCE FALKENBERG",,,,,8,5,0,2,7,0,7,6,0,,"2E2F2J2K2R3D2G2T",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412073634P030192462800001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHERN MICHIGAN REGIONAL HEALTH SYSTEM HEALTH CARE FLEXIBLE SPENDING ACCOUNT","506","1989-06-01","NORTHERN MICHIGAN REGIONAL HEALTH SYSTEM",,,"416 CONNABLE AVENUE",,"PETOSKEY","MI","49770",,,,,,,,,,,,,,,,,,"382445613","2314874012","622000","NORTHERN MICHIGAN REGIONAL HEALTH SYSTEM",,"416 CONNABLE AVENUE",,"PETOSKEY","MI","49770",,,,,,,"382445613","2314874012",,,,"2011-04-11T14:24:24-0500","CHRISTINE VANSLEMBROUCK","2011-04-12T07:36:29-0500","GENE KAMINSKI",,,294,324,0,0,324,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110413133825P030041633265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAMEY CONSTRUCTION COMPANY, INC. 401(K) PROFIT SHARING PLAN","001","1992-10-01","RAMEY CONSTRUCTION COMPANY, INC.",,,"5930 N. FREYA",,"SPOKANE","WA","99217",,,,,,,,,,,,,,,,,,"911347429","5094839000","236200","RAMEY CONSTRUCTION, INC.","JASON RAMEY, PLAN TRUSTEE","5930 NORTH FREYA",,"SPOKANE","WA","99217",,,,,,,"911347429","5094839000",,,,"2011-04-13T13:30:06-0500","JASON RAMEY",,,,,15,9,0,6,15,0,15,15,0,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110413134120P030001229027001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCI, INC. RETIREMENT SAVINGS PLAN","001","2003-01-01","SCI, INC.",,,"1315 W. HAYDEN AVENUE",,"HAYDEN","ID","838359756",,,,,,,,,,,,,,,,,,"820508953","2087628700","541990","SCI, INC.",,"1315 W. HAYDEN AVENUE",,"HAYDEN","ID","838359756",,,,,,,"820508953","2087628700",,,,"2011-04-13T13:39:19-0500","TIM LAWTON",,,,,3,3,0,1,4,0,4,3,0,,"2A2E2G2J2R3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-13","Filed with authorized/valid electronic signature",, "20110412094022P040041770609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ERICKSON TOOL & MACHINE COMPANY, INC. 401(K) PROFIT SHARING PLAN","001","1966-07-01","ERICKSON TOOL & MACHINE COMPANY, INC.",,,"1903 20TH AVENUE",,"ROCKFORD","IL","61104",,,,,,,,,,,,,,,,,,"362273965","8153972653","339900","ERICKSON TOOL & MACHINE COMPANY, INC.",,"1903 20TH AVENUE",,"ROCKFORD","IL","61104",,,,,,,"362273965","8153972653",,,,"2011-04-12T09:36:56-0500","CHRISTOPHER ERICKSON",,,,,7,6,0,0,6,0,6,6,0,,"2E2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110411085131P040041150097001","2007-01-01","2007-12-31",,,"0","0","0","0","0","0","0","0","0",,"PCI/AWP 401(K) SALARY REDUCTION PLAN & TRUST","005","2005-04-01","PLASTIC COMPONENTS, INC.",,,"N116 W18271 MORSE DR.",,"GERMANTOWN","WI","53022",,,,,,,,,,,,,,,,,,"391640538","2622530353","454390","TERESA SCHELL",,"N116 W18271 MORSE DR.",,"GERMANTOWN","WI","53022",,,,,,,"391640538","2622530353","THOMAS O. DUFFEY","391640538","005","2011-03-30T09:06:46-0500","TERESA SCHELL","2011-03-30T09:09:06-0500","THOMAS DUFFEY",,,46,,,,,,,,,,,,,,"1",,,,"1",,"1",,,,"1","1",,,"1",,"FILING_RECEIVED","2011-04-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110412150841P040041911201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDICAL CASE MANAGEMENT, INC. 401K PLAN & TRUST","001","2009-01-01","MEDICAL CASE MANAGEMENT, INC.",,"TRICIA FULLERTON","PO BOX 90184",,"ALBUQUERQUE","NM","871990184",,,,,,,,,,,,,,,,,,"263636941","5057978552","621399","MEDICAL CASE MANAGEMENT, INC.","TRICIA FULLERTON","PO BOX 90184",,"ALBUQUERQUE","NM","871990184",,,,,,,"263636941","5057978552",,,,"2011-04-12T15:07:37-0500","TRICIA FULLERTON",,,,,10,11,0,0,11,0,11,6,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110412143011P030041071633001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HENDERSON STAMPING & REPRODUCTION, INC. PROFIT SHARING 401K PLAN","001","1989-12-29","HENDERSON STAMPING & REPRODUCTION",,,"1323 HWY 45 NORTH",,"HENDERSON","TN","38340",,,,,,,,,,,,,,,,,,"621112183","7319894705","332700","HENDERSON STAMPING & REPRODUCTION",,"1323 HWY 45 NORTH",,"HENDERSON","TN","38340",,,,,,,"621112183","7319894705",,,,"2011-04-12T14:17:53-0500","JAMES R. PORTER",,,,,51,46,2,7,55,0,55,37,3,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-12","Filed with authorized/valid electronic signature",, "20110503150634P040009201046003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BRIDWELL OIL CO. PROFIT SHARING","001","1972-07-01","MARGARET B. BOWDLE & PARTNERS BRIDWELL OIL CO.",,,"P. O. BOX 1830",,"WICHITA FALLS","TX","763071830",,,,,,,,,,,,,,,,,,"751231006","9407234351","211110","NEAL MEEKS",,"P. O. BOX 1830",,"WICHITA FALLS","TX","763071830",,,,,,,"756194332","9407234351",,,,"2011-05-03T08:47:15-0500","NEAL MEEKS","2011-05-03T08:47:15-0500","NEAL MEEKS",,,34,36,,,36,,36,36,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110503092452P040245048736003","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"THE ORTHOPAEDIC & SPORTS INJURY CENTER OF GRIFFIN, P.C. 401(K) PROFIT SHARING PLAN","001","1990-01-01","THE ORTHOPAEDIC & SPORTS INJURY CENTER OF GRIFFIN, P.C.",,,"717 SOUTH 8TH STREET",,"GRIFFIN","GA","30224",,,,,,,,,,,,,,,,,,"581840081","7702274600","621111","THE ORTHOPAEDIC & SPORTS INJURY CENTER OF GRIFFIN,",,"717 SOUTH 8TH STREET",,"GRIFFIN","GA","30224",,,,,,,"581840081","7702274600",,,,"2011-04-27T04:47:58-0500","C. THOMAS HOPKINS JR MD",,,,,17,14,0,1,15,0,15,15,0,,"2A2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503092705P030016284039001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STURGIS VETERINARY HOSPITAL PC EMPLOYEES PENSION PLAN","002","1973-01-23","LUEGGE ENTERPRISES INC",,,"22799 FEATHERSTONE RD",,"STURGIS","MI","49091",,,,,,,"22799 FEATHERSTONE RD",,"STURGIS","MI","49091",,,,,,,"381958395","2694677618","541940","LUEGGE ENTERPRISES INC",,"22799 FEATHERSTONE RD",,"STURGIS","MI","49091",,,,,,,"381958395","2694677618",,,,"2011-05-03T09:25:34-0500","WILLIAM LUEGGE",,,,,1,,,1,1,,1,,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110502135842P030245147888001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAWS, RECORD & MAGNUSSON, LLP 401(K) PROFIT SHARING PLAN","001","1993-01-01","HAWS, RECORD & MAGNUSSON, LLP",,,"3700 STATE STREET, SUITE 230",,"SANTA BARBARA","CA","931056184",,,,,,,,,,,,,,,,,,"952861986","8059634488","541110","HAWS, RECORD & MAGNUSSON, LLP",,"3700 STATE STREET, SUITE 230",,"SANTA BARBARA","CA","931056184",,,,,,,"952861986","8059634488",,,,"2011-05-02T13:58:25-0500","DOUGLAS S. HENDRY",,,,,5,3,0,1,4,0,4,4,1,,"2E2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110502161013P030245408752001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SARA J. REINGANUM PROFIT SHARING PLAN","001","1996-01-01","SARA J. REINGANUM",,,"3927 QUAIL RIDGE ROAD",,"LAFAYETTE","CA","94549",,,,,,,,,,,,,,,,,,"943257340","5103577141","621111","SARA J. REINGANUM",,"3927 QUAIL RIDGE ROAD",,"LAFAYETTE","CA","94549",,,,,,,"943257340","5103577141",,,,"2011-05-02T16:09:55-0500","WEI GUO YU",,,,,3,4,0,0,4,0,4,4,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110420105758P030007580166001","2010-01-01","2010-08-18","2",,"0","0","1","1",,"1",,,,,"SACKS, TROTTA, KOPPELMAN 401(K) PLAN","001","2001-01-01","SACKS, TROTTA & KOPPELMAN LLC",,,"800 RED BROOK BLVD.","SUITE 300","OWINGS MILLS","MD","21117",,,,,,,"800 RED BROOK BLVD.","SUITE 300","OWINGS MILLS","MD","21117",,,,,,,"522315199","4434711456","541211","SACKS, TROTTA & KOPPELMAN LLC",,"800 RED BROOK BLVD.","SUITE 300","OWINGS MILLS","MD","21117",,,,,,,"522315199","4434711456",,,,"2011-04-20T10:57:02-0500","GINA CROSS",,,,,20,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110421111310P040014884743001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHYSICAL SECURITY, LLC 401(K) PLAN","001","2008-01-01","PHYSICAL SECURITY, LLC",,,"600 BELVIEW STREET",,"BESSEMER","AL","350208205",,,,,,,,,,,,,,,,,,"204549986","2054254072","238900","PHYSICAL SECURITY, LLC",,"600 BELVIEW STREET",,"BESSEMER","AL","350208205",,,,,,,"204549986","2054254072",,,,"2011-04-21T11:13:01-0500","JAMES A. COUNTS",,,,,46,59,0,5,64,0,64,42,0,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110421115735P030216643552001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"MCDONALD TRANSIT GROUP HEALTH PLAN","501","1988-01-01","MCDONALD TRANSIT, INC.",,,"1600 EAST LANCASTER",,"FORT WORTH","TX","76102",,,,,,,,,,,,,,,,,,"751389627","8172158700","485990","MCDONALD TRANSIT, INC.",,"1600 EAST LANCASTER",,"FORT WORTH","TX","76102",,,,,,,"751389627","8172158700",,,,"2011-04-19T14:00:09-0500","MELANIE KROEKER","2011-04-21T11:46:50-0500","ROBERT HARMON",,,499,509,2,0,511,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110503142316P030016324823001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NELSON, CONNELL, CONRAD, TALLMADGE & SLEIN, S.C. STANDARD 401(K) PLAN","001","1992-01-01","NELSON, CONNELL, CONRAD, TALLMADGE & SLEIN, S.C.",,,"N14 W23755 STONE RIDGE DR., STE 150",,"WAUKESHA","WI","53188",,,,,,,,,,,,,,,,,,"391702034","2623470303","541190","NELSON, CONNELL, CONRAD, TALLMADGE & STEIN, S.C.",,"N14 W23755 STONE RIDGE DR, STE 150",,"WAUKESHA","WI","53188",,,,,,,"391702034","2623470303",,,,"2011-05-03T14:22:56-0500","CRAIG W. NELSON",,,,,16,12,0,1,13,0,13,13,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503120933P030052752129001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"H. EVAN STRONG M.D., DAVID T. TAY, M.D., & PETER L. LUNNY, M.D., PSP","001","1999-01-01","H. EVAN STRONG, M.D., DAVID T. TAY, M.D., & PETER L. LUNNY, M.D.",,,"1999 MOWRY AVENUE, SUITE R",,"FREMONT","CA","94538",,,,,,,"1999 MOWRY AVENUE, SUITE R",,"FREMONT","CA","94538",,,,,,,"943180981","5107458186","621111","H. EVAN STRONG, M.D., DAVID T. TAY, M.D., & PETER L. LUNNY, M.D.",,"1999 MOWRY AVENUE, SUITE R",,"FREMONT","CA","94538",,,,,,,"943180981","5107458186",,,,"2011-05-03T12:07:57-0500","DAVID TAY",,,,,11,0,0,10,10,1,11,0,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110425135015P040015550791001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RALPH A. CLARY, D.D.S. PROFIT SHARING PLAN","001","1989-01-01","RALPH A. CLARY, D.D.S.",,,"1601 N. TUCSON BLVD., SUITE 24",,"TUCSON","AZ","857163407",,,,,,,,,,,,,,,,,,"860921988","5203276281","621210","RALPH A. CLARY, D.D.S.",,"1601 N. TUCSON BLVD., SUITE 24",,"TUCSON","AZ","857163407",,,,,,,"860921988","5203276281",,,,"2011-04-20T15:31:50-0500","RALPH CLARY","2011-04-20T15:31:50-0500","RALPH CLARY",,,8,4,0,3,7,0,7,6,0,,"2A2E3B3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","2",,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110502110412P030244818000001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MENTAL HEALTH CENTER OF EAST CENTRAL KANSAS - WELFARE PLAN","501","1996-01-01","MENTAL HEALTH CENTER OF EAST CENTRAL KANSAS",,,"1000 LINCOLN STREET",,"EMPORIA","KS","66801",,,,,,,,,,,,,,,,,,"480666889","6203432211","621420","MENTAL HEALTH CENTER OF EAST CENTRAL KANSAS",,"1000 LINCOLN STREET",,"EMPORIA","KS","66801",,,,,,,"480666889","6203432211",,,,"2011-05-02T11:04:06-0500","DIANNE C. IHLING",,,,,129,132,0,0,132,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110420093918P040211926656001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MAD IMAGES, INC. PROFIT SHARING 401K PLAN","001","1999-01-01","MAD IMAGES, INC.","MADISON PHOTO",,"709 SCOTT ST",,"COVINGTON","KY","410112417",,,,,,,,,,,,,,,,,,"621258167","8592617427","812920","MAD IMAGES, INC.",,"709 SCOTT ST",,"COVINGTON","KY","410112417",,,,,,,"621258167","8592617427",,,,"2011-04-20T09:36:53-0500","CHARLES J. ZIX",,,,,10,9,0,1,10,0,10,8,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110421142036P040215069024001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"COLLINS SURGICAL ASSOCIATES, P.C. 401(K) PROFIT SHARING PLAN","001","1973-09-30","COLLINS SURGICAL ASSOCIATES, P.C.",,,"290 COLLINS STREET",,"HARTFORD","CT","06105",,,,,,,,,,,,,,,,,,"060886963","8605221024","621111","COLLINS SURGICAL ASSOCIATES, P.C.",,"290 COLLINS STREET",,"HARTFORD","CT","06105",,,,,,,"060886963","8605221024",,,,"2011-04-21T03:20:14-0500","JOHN DASILVA",,,,,8,5,0,4,9,0,9,9,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110502101104P040053177121001","2010-02-01","2011-01-31","2",,,,,,,,,,,,"CAPITOL CARTON PROFIT SHARING PLAN","001","1974-01-31","CAPITOL CARTON COMPANY",,,"346 NORTH JUSTINE SUITE 406",,"CHICAGO","IL","60607",,,,,,,"346 NORTH JUSTINE SUITE 406",,"CHICAGO","IL","60607",,,,,,,"362182321","3125639690","322200","NEIL GUREVITZ, ETAL CAPITOL CARTON COMPANY",,"346 NORTH JUSTINE SUITE 406",,"CHICAGO","IL","60607",,,,,,,"366600574","3125639690",,,,"2011-04-28T03:49:17-0500","NEIL GUREVITZ",,,,,7,6,,,6,,6,6,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110425063658P030226169392001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRADEEP LOTHE, M.D., P.C. PROFIT-SHARING PLAN","001","2000-01-01","PRADEEP LOTHE, M.D., P.C.",,,"300 E LANCASTER AVE, SUITE 105A",,"WYNNEWOOD","PA","19008",,,,,,,,,,,,,,,,,,"232983548","6105581911","621111","PRADEEP LOTHE, M.D., P.C.",,"300 E LANCASTER AVE, SUITE 105A",,"WYNNEWOOD","PA","19008",,,,,,,"232983548","6105581911",,,,"2011-04-25T06:36:50-0500","PRADEEP LOTHE MD",,,,,5,2,0,3,5,0,5,5,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110503102619P030016292647005","2010-01-01","2010-12-31","3",,,,,,,,,,,,"BENEFIT PARTNERS, LLC 401(K) PLAN","001","1999-01-01","DAY STAR CONSTRUCTION, INC.",,,"4005 SECOND AVENUE SOUTH",,"BIRMINGHAM","AL","35222",,,,,,,,,,,,,,,,,,"630887012","2059954474","236200","DAY STAR CONSTRUCTION, INC.",,"4005 SECOND AVENUE SOUTH",,"BIRMINGHAM","AL","35222",,,,,,,"630887012","2059954474",,,,"2011-05-03T04:52:27-0500","JAKE GUERCIO",,,,,14,10,0,0,10,0,10,7,,,"2G2J3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503073440P030247021872001","2010-09-01","2010-10-31","2",,"0","0","0","1","0","0","0","0","0",,"GROUP LONG TERM DISABILITY FOR EES OF CAROTEK, INC","504","2000-08-01","CAROTEK, INC.",,,"PO BOX 1395",,"MATTHEWS","NC","281061395",,,,,,,,,,,,,,,,,,"561712853","7048441100","811310","CAROTEK, INC.",,"700 SAM NEWELL RD",,"MATTHEWS","NC","281054515",,,,,,,"561712853","7048441100",,,,"2011-05-03T07:32:25-0500","DERYL BELL",,,,,112,18,0,0,18,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110421175308P040215476448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HALE MAHAOLU RETIREMENT PLAN","002","1987-01-01","HALE MAHAOLU",,,"200 HINA AVENUE",,"KAHULUI","HI","967321821",,,,,,,,,,,,,,,,,,"990143109","8088724100","623000","HALE MAHAOLU",,"200 HINA AVENUE",,"KAHULUI","HI","967321821",,,,,,,"990143109","8088724100",,,,"2011-04-21T17:52:48-0500","ROY K. KATSUDA",,,,,75,71,2,2,75,0,75,67,2,,"2A2E2H2J3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110421125436P040214902112001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"WHITE'S WELDING INC. SAVINGS INCENTIVE PLAN","001","2007-01-01","WHITE'S WELDING INC.",,,"ROUTE 1, BOX 178",,"WOODWARD","OK","73801",,,,,,,,,,,,,,,,,,"203673597","5802543766","238100","WHITE'S WELDING INC.",,"ROUTE 1, BOX 178",,"WOODWARD","OK","73801",,,,,,,"203673597","5802543766",,,,"2011-04-21T13:54:24-0500","CALVIN WHITE",,,,,4,3,0,0,3,0,3,4,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110502150151P040016789031001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EAGLE ROCK FINANCIAL ADVISERS, LTD 401(K)","001","2005-01-01","EAGLE ROCK FINANCIAL ADVISERS, LTD",,"THOMAS RAUBA","205 GRANITE RUN DRIVE","STE 240","LANCASTER","PA","17601",,,,,,,"205 GRANITE RUN DRIVE","STE 240","LANCASTER","PA","17601",,,,,,,"030504443","7175694577","523900","EAGLE ROCK FINANCIAL ADVISERS, LTD","THOMAS RAUBA","205 GRANITE RUN DRIVE","STE 240","LANCASTER","PA","17601",,,,,,,"030504443","7175694577",,,,"2011-05-02T13:59:39-0500","THOMAS RAUBA",,,,,2,3,0,0,3,0,3,3,0,,"2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110425151902P030227177248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRIMARY BUSINESS SOLUTIONS, INC. 401K PLAN","001","2008-06-13","PRIMARY BUSINESS SOLUTIONS, INC.",,,"2379 LANDINGS CIRCLE",,"BRADENTON","FL","34209",,,,,,,,,,,,,,,,,,"262797686","9417825225","561300","PRIMARY BUSINESS SOLUTIONS, INC.",,"2379 LANDINGS CIRCLE",,"BRADENTON","FL","34209",,,,,,,"262797686","9417825225",,,,"2011-04-25T15:18:58-0500","DOUG MISHLER","2011-04-25T15:18:58-0500","DOUG MISHLER",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110420143919P040212498432001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MB ESCROW INC 401 K PROFIT SHARING PLAN & TRUST","001","2004-01-01","MB ESCROW INC","SAME","BETH L PEERCE","9454 WILSHIRE BOULEVARD","SUITE 901","BEVERLY HILLS","CA","90212",,,,,,,"9454 WILSHIRE BOULEVARD","SUITE 901","BEVERLY HILLS","CA","90212",,,,,,,"954316291","3102737106","531390","MB ESCROW INC","BETH L PEERCE","9454 WILSHIRE BOULEVARD","SUITE 901","BEVERLY HILLS","CA","90212",,,,,,,"954316291","3102737106",,,,"2011-04-20T14:37:39-0500","BETH PEERCE",,,,,10,5,0,3,8,0,8,0,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110502181908P030245640544001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MITHUN INC. HEALTH AND WELFARE PLAN","502","2002-04-01","MITHUN INC.",,,"1201 ALASKAN WAY, SUITE 200",,"SEATTLE","WA","98101",,,,,,,,,,,,,,,,,,"911093821","2066233344","541310","MITHUN INC.",,"1201 ALASKAN WAY, SUITE 200",,"SEATTLE","WA","98101",,,,,,,"911093821","2066233344",,,,"2011-05-02T18:19:02-0500","SARA S. SKINNER",,,,,120,98,0,0,98,,,,,,,"4A4B4D4F4H4L4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110421112204P040214718752001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARK J. RICE, A PROFESSIONAL CORPORATION PROFIT-SHARING PLAN","001","1997-01-01","MARK J. RICE, A PROFESSIONAL CORPORATION",,,"55 PROFESSIONAL CENTER PARKWAY","SUITE A","SAN RAFAEL","CA","94903",,,,,,,,,,,,,,,,,,"911747448","4154723434","541110","MARK J. RICE, A PROFESSIONAL CORPORATION",,"55 PROFESSIONAL CENTER PARKWAY","SUITE A","SAN RAFAEL","CA","94903",,,,,,,"911747448","4154723434",,,,"2011-04-21T10:04:15-0500","MARK RICE",,,,,2,2,0,0,2,0,2,2,0,,"2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110502092232P030016102983001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KING WELL SERVICE, INC. 401K PLAN","001","2005-05-01","KING WELL SERVICE, INC.",,,"10925 US HWY 60",,"CANADIAN","TX","79014",,,,,,,,,,,,,,,,,,"752185875","8063238348","211110","KING WELL SERVICE, INC.",,"10925 US HWY 60",,"CANADIAN","TX","79014",,,,,,,"752185875","8063238348",,,,"2011-05-02T09:12:29-0500","BUDDY KING AND TERREL HARDIN",,,,,57,57,0,1,58,0,58,27,0,,"2A2E2F2G2J2K3H3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110502093016P040016740343001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRAIG V. DUREN DDS PA SAVINGS AND RETIREMENT PLAN","001","2006-01-01","CRAIG V. DUREN, D.D.S., P.A.",,,"351 WEST NICOLLET BLVD",,"BURNSVILLE","MN","55337",,,,,,,,,,,,,,,,,,"411700617","9524354142","621210","CRAIG V. DUREN, D.D.S., P.A.",,"351 WEST NICOLLET BLVD",,"BURNSVILLE","MN","55337",,,,,,,"411700617","9524354142",,,,"2011-05-02T09:29:15-0500","CRAIG V. DUREN, D.D.S., P.A.",,,,,11,10,0,1,11,0,11,11,1,,"2A2E2F2G2J3D3H",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110425130708P040225079424001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AQUA SURVEY, INC. 401(K) PLAN","001","1991-06-01","AQUA SURVEY, INC.",,,"469 POINT BREEZE RD",,"FLEMINGTON","NJ","08822",,,,,,,"469 POINT BREEZE RD",,"FLEMINGTON","NJ","08822",,,,,,,"222244754","9087888700","541990","AQUA SURVEY, INC.",,"469 POINT BREEZE RD",,"FLEMINGTON","NJ","08822",,,,,,,"222244754","9087888700",,,,"2011-04-25T10:03:03-0500","JON DOI","2011-04-25T10:04:27-0500","JON DOI","2011-04-25T10:05:23-0500","JON DOI",34,31,0,3,34,0,34,22,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110425130716P040015545831001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHERWOOD PARTNERS, LLC 401(K) PLAN","002","2002-01-01","SHERWOOD PARTNERS, LLC",,,"1100 LA AVENIDA STREET A",,"MOUNTAIN VIEW","CA","94043",,,,,,,"1100 LA AVENIDA STREET A",,"MOUNTAIN VIEW","CA","94043",,,,,,,"203526092","6503299996","541600","SHERWOOD PARTNERS, LLC",,"1100 LA AVENIDA STREET A",,"MOUNTAIN VIEW","CA","94043",,,,,,,"203526092","6503299996",,,,"2011-04-25T13:04:31-0500","JOHN WOLKOYS",,,,,22,20,0,2,22,0,22,15,0,,"2F2G2J2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110420160731P040046599457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LLOYD STUART NAGASAWA 401(K) PLAN","001","2005-01-01","L STUART NAGASAWA, M.D.",,,"27800 MEDICAL CENTER ROAD","SUITE 304","MISSION VIEJO","CA","92691",,,,,,,"27800 MEDICAL CENTER ROAD","SUITE 304","MISSION VIEJO","CA","92691",,,,,,,"330287890","9493470600","621111","L STUART NAGASAWA, M.D.",,"27800 MEDICAL CENTER ROAD","SUITE 304","MISSION VIEJO","CA","92691",,,,,,,"330287890","9493470600",,,,"2011-04-20T16:06:32-0500","SARAH ANTONIO",,,,,19,21,0,1,22,0,22,15,0,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110503134930P030008786070001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GASTROENTEROLOGY ASSOCIATES PLLC 401(K) RETIREMENT PLAN","001","2001-07-01","GASTROENTEROLOGY ASSOCIATES PLLC",,,"500 LILLY RD NE STE 204",,"OLYMPIA","WA","98506",,,,,,,"500 LILLY RD NE STE 204",,"OLYMPIA","WA","98506",,,,,,,"912104493","3604138373","621111","GASTROENTEROLOGY ASSOCIATES PLLC",,"500 LILLY RD NE STE 204",,"OLYMPIA","WA","98506",,,,,,,"912104493","3604138373",,,,"2011-05-03T13:48:43-0500","JACKIE JOHNSON",,,,,72,72,0,2,74,0,74,71,2,,"2A2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503080757P030016274647001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIBERTY WELDING & IRON WORKS CO PROFIT SHARING PLAN","001","1980-07-01","LIBERTY WELDING & IRON WORKS COMPANY",,,"2617 EDENBORN AVE STE C",,"METAIRIE","LA","700027047",,,,,,,,,,,,,,,,,,"720683460","5044573200","332400","LIBERTY WELDING & IRON WORKS COMPANY",,"2617 EDENBORN AVE STE C",,"METAIRIE","LA","700027047",,,,,,,"720683460","5044573200",,,,"2011-05-03T08:07:29-0500","ROBERT BARTLETT",,,,,17,12,0,8,20,0,20,20,0,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503123525P030247599664001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"EVERGREEN INSURANCE AGENCY, INC. 401(K) PLAN","001","2007-03-09","EVERGREEN INSURANCE AGENCY, INC.",,,"PO BOX 2139",,"EVERGREEN","CO","80437",,,,,,,,,,,,,,,,,,"208612147","3034759014","524210","EVERGREEN INSURANCE AGENCY, INC.",,"PO BOX 2139",,"EVERGREEN","CO","80437",,,,,,,"208612147","3034759014",,,,"2011-05-03T12:35:20-0500","MARK WARDLOW","2011-05-03T12:35:20-0500","MARK WARDLOW",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110425212324P030015018055001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HUNTLEY BARAD INSURANCE SERVICES, INC. PROFIT SHARING PLAN","001","2009-01-01","HUNTLEY BARAD INSURANCE SERVICES, INC.",,,"318 WEST PORTAL AVE.",,"SAN FRANCISCO","CA","94127",,,,,,,,,,,,,,,,,,"202462126","4156648222","524140","HUNTLEY BARAD INSURANCE SERVICES, INC.",,"318 WEST PORTAL AVE.",,"SAN FRANCISCO","CA","94127",,,,,,,"202462126","4156648222",,,,"2011-04-25T21:09:02-0500","WEI GUO YU",,,,,3,3,0,0,3,0,3,3,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110425100629P040224729488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTH AMERICAN CONTAINER CORPORATION 401(K) PROFIT SHARING PLAN AND TRUST","001","1982-01-01","NORTH AMERICAN CONTAINER CORPORATION",,,"1811 WEST OAK PARKWAY","SUITE D","MARIETTA","GA","30062",,,,,,,"1811 WEST OAK PARKWAY","SUITE D","MARIETTA","GA","30062",,,,,,,"580971873","7704314858","322100","NORTH AMERICAN CONTAINER CORPORATION",,"1811 WEST OAK PARKWAY","SUITE D","MARIETTA","GA","30062",,,,,,,"580971873","7704314858",,,,"2011-04-25T10:05:48-0500","MICHAEL GRIGSBY",,,,,361,373,1,30,404,0,404,142,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110425111742P040049242177001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"THE VASCULAR CLINIC OF NORTHWEST GEORGIA, LLC 401(K) PLAN","001","2006-01-01","THE VASCULAR CLINIC OF NORTHWEST GEORGIA, LLC",,,"P.O. BOX 23783",,"CHATTANOOG","TN","37422",,,,,,,,,,,,,,,,,,"202294607","7068580204","621111","THE VASCULAR CLINIC OF NORTHWEST GEORGIA, LLC",,"P.O. BOX 23783",,"CHATTANOOG","TN","37422",,,,,,,"202294607","7068580204",,,,"2011-04-25T09:14:41-0500","MICHAEL SAAKA","2011-04-25T09:14:41-0500","MICHAEL SAAKA",,,4,0,,,0,,0,0,0,,"2E2F2G2J2K2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110503165257P040245932368001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLACK AND BASS DENTAL PRACTICE RETIREMENT PLAN & TRUST","001","1994-01-01","LAWRENCE B. BLACK, D.D.S., P.C.",,,"410 NORTH BROAD STREET",,"LANSDALE","PA","19446",,,,,,,,,,,,,,,,,,"232747475","2153681424","621210","LAWRENCE B. BLACK, D.D.S., P.C.",,"410 NORTH BROAD STREET",,"LANSDALE","PA","19446",,,,,,,"232747475","2153681424",,,,"2011-05-03T16:52:52-0500","LAWRENCE B. BLACK, D.D.S.",,,,,18,13,0,3,16,0,16,16,0,,"2A2E2J2K3H3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110502150628P030052272689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GADSDEN ORTHOPEDIC ASSOCIATES PC 401(K) PROFIT SHARING PLAN","002","2000-01-01","GADSDEN ORTHOPEDIC ASSOCIATES PC",,,"100 MEDICAL CENTER DRIVE, SUITE 101",,"GADSDEN","AL","35903",,,,,,,,,,,,,,,,,,"630650229","2564928590","621111","GADSDEN ORTHOPEDIC ASSOCIATES PC",,"100 MEDICAL CENTER DRIVE, SUITE 101",,"GADSDEN","AL","35903",,,,,,,"630650229","2564928590",,,,"2011-05-02T15:05:45-0500","WILLIAM N HALLER III",,,,,25,18,0,4,22,0,22,22,1,,"2A2E2F2G2J2K2R2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110425083604P040001399940001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AUGUSTA PULMONARY MEDICINE PA PROFIT SHARING PLAN AND TRUST","001","1999-08-01","AUGUSTA PULMONARY MEDICINE PA",,,"6 E CHESTNUT ST STE A4",,"AUGUSTA","ME","043305717",,,,,,,"6 E CHESTNUT ST STE A4",,"AUGUSTA","ME","043305717",,,,,,,"010527271","2076212428","621111","AUGUSTA PULMONARY MEDICINE PA",,"6 E CHESTNUT ST STE A4",,"AUGUSTA","ME","043305717",,,,,,,"010527271","2076212428",,,,"2011-04-25T08:21:43-0500","JAMES M BRASSARD",,,,,7,5,0,1,6,0,6,6,1,,"2E2G2J2T3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110421113007P040008055526001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"GARBARINI & CO. P.C. CPA'S (401K) PLAN","001","1998-12-07","GARBARINI & CO. P.C. CPA'S DIVISION AVE. & RT.17S",,,"P.O. BOX 362",,"CARLSTADT","NJ","07072",,,,,,,,,,,,,,,,,,"222854914","2019335566","541219","GARBARINI & CO. P.C. CPA'S DIVISION AVE. & RT.17S",,"P.O. BOX 362",,"CARLSTADT","NJ","07072",,,,,,,"222854914","2019335566",,,,"2011-04-21T12:21:06-0500","PAUL W. GARBARINI",,,,,7,7,0,0,7,0,7,7,,,"2E2J2A2F2G2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110421121554P040014891847001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COWAN GRADING AND EXCAVATING, INC. 401(K)/PROFIT SHARING PLAN","002","1999-01-01","COWAN GRADING AND EXCAVATING, INC.","C/O CARY COWAN",,"5465 212TH ST. WEST",,"FARMINGTON","MN","55024",,,,,,,,,,,,,,,,,,"411845095","6514604971","238900","COWAN GRADING AND EXCAVATING, INC.",,"5465 212TH ST. WEST",,"FARMINGTON","MN","55024",,,,,,,"411845095","6514604971",,,,"2011-04-21T12:15:27-0500","CARY COWAN","2011-04-21T12:15:27-0500","CARY COWAN",,,3,2,0,1,3,0,3,3,0,,"2E2H2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110502072233P030244397664001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KRUEGER INTERNATIONAL, INC. MEDICAL PLAN","511","1984-12-31","KRUEGER INTERNATIONAL, INC.",,,"1330 BELLEVUE ST",,"GREEN BAY","WI","54302",,,,,,,,,,,,,,,,,,"391375589","9204688100","337000","KRUEGER INTERNATIONAL, INC.",,"1330 BELLEVUE ST",,"GREEN BAY","WI","54302",,,,,,,"391375589","9204688100",,,,"2011-05-01T11:07:09-0500","KELLY ANDERSEN",,,,,1506,1452,32,0,1484,0,,,,,,"4A4Q4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110503144433P040009198982001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GRT CAPITAL PARTNERS LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","GRT CAPITAL PARTNERS LLC",,,"50 MILK ST","21ST FLOOR","BOSTON","MA","02109",,,,,,,,,,,,,,,,,,"043565812","6172261740","523900","GRT CAPITAL PARTNERS LLC",,"50 MILK ST","21ST FLOOR","BOSTON","MA","02109",,,,,,,"043565812","6172261740",,,,"2011-05-03T02:44:31-0500","GRT CAPITAL PARTNERS LLC",,,,,17,15,0,3,18,0,18,16,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110503100523P030247306016001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NAVESINK COUNTRY CLUB 401(K) PLAN","001","1999-01-01","NAVESINK COUNTRY CLUB",,,"50 LUFFBURROW LN",,"MIDDLETOWN","NJ","07748",,,,,,,"50 LUFFBURROW LN",,"MIDDLETOWN","NJ","07748",,,,,,,"210744409","7328423111","713900","NAVESINK COUNTRY CLUB",,"50 LUFFBURROW LN",,"MIDDLETOWN","NJ","07748",,,,,,,"210744409","7328423111",,,,"2011-05-03T10:04:04-0500","GEORGE KLOPACS",,,,,64,47,0,22,69,0,69,43,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110502093634P040016742519001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAYMOND F. CHAQUETTE, M.D., LTD. PROFIT SHARING PLAN","002","1984-11-02","RAYMOND F. CHAQUETTE, M.D., LTD.",,,"235 PLAIN STREET","SUITE 203","PROVIDENCE","RI","029053241",,,,,,,,,,,,,,,,,,"050410378","4012729880","621111","RAYMOND F. CHAQUETTE, M.D., LTD.",,"235 PLAIN STREET","SUITE 203","PROVIDENCE","RI","029053241",,,,,,,"050410378","4012729880",,,,"2011-05-02T09:33:51-0500","RAYMOND CHAQUETTE",,,,,5,5,0,0,5,0,5,5,0,,"2A2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110502094523P030244655376001","2007-11-01","2008-10-31","2",,"0","0","0","0","0","0","0","0","0",,"DENTAL CRAFT CORPORATION 401(K) PLAN","001","1995-11-01","DENTAL CRAFT CORPORATION",,,"5414 WEST CRAFTWELL DRIVE",,"RINGWOOD","IL","607729629",,,,,,,,,,,,,,,,,,"362495645","8157281165","339110","DENTAL CRAFT CORPORATION",,"5414 WEST CRAFTWELL DRIVE",,"RINGWOOD","IL","607729629",,,,,,,"362495645","8157281165",,,,"2011-05-02T09:45:11-0500","GREGG PLUMLEY",,,,,15,14,0,0,14,0,14,8,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110425143137P030008052022001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"POST ELECTRIC, INC. 401K PROFIT SHARING PLAN","001","1991-01-01","POST ELECTRIC, INC.",,,"3221 W. HIGHWAY 390",,"PANAMA CITY","FL","32405",,,,,,,,,,,,,,,,,,"592010240","8507855368","238210","POST ELECTRIC, INC.",,"3221 W. HIGHWAY 390",,"PANAMA CITY","FL","32405",,,,,,,"592010240","8507855368",,,,"2011-04-25T14:31:36-0500","SUSAN K. SHIPP","2011-04-25T14:31:36-0500","SUSAN K. SHIPP",,,16,12,0,1,13,0,13,12,0,,"2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110420143045P030014128983001","2009-01-01","2009-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE SURGERY CENTER OF HUNTSVILLE BENEFIT PLAN","503","2005-08-01","THE SURGERY CENTER OF HUNTSVILLE",,,"721 MADISON STREET",,"HUNTSVILLE","AL","35801",,,,,,,,,,,,,,,,,,"621230866","2565334888","621498","THE SURGERY CENTER OF HUNTSVILLE",,"721 MADISON STREET",,"HUNTSVILLE","AL","35801",,,,,,,"621230866","2565334888",,,,"2011-04-04T12:45:04-0500","JAY MONTAGUE","2011-04-04T12:45:04-0500","JAY MONTAGUE",,,130,129,0,0,129,,,,,,,"4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110420143135P040212484304001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"RICHARD E. CROWDER, DDS PA 401K PLAN","003","2004-01-01","RICHARD E. CROWDER, DDS PA",,,"7015 EAST CENTRAL",,"WICHITA","KS","672061943",,,,,,,,,,,,,,,,,,"481015031","3166845184","621210","RICHARD E. CROWDER, DDS PA",,"7015 EAST CENTRAL",,"WICHITA","KS","672061943",,,,,,,"481015031","3166845184",,,,"2011-04-20T14:24:30-0500","RICHARD E. CROWDER",,,,,10,10,0,0,10,0,10,10,,,"2A2E2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110502164139P030007567506001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"W. CLARK WASHINGTON, P. C. PROFIT SHARING PLAN","001","1991-01-01","W. CLARK WASHINGTON, P. C.",,,"2773 SUMMER OAKS DRIVE",,"BARTLETT","TN","38134",,,,,,,,,,,,,,,,,,"621496001","9013719197","541110","W. CLARK WASHINGTON, P. C.",,"2773 SUMMER OAKS DRIVE",,"BARTLETT","TN","38134",,,,,,,"621496001","9013719197",,,,"2011-05-02T11:20:05-0500","WILLIAM CLARK WASHINGTON","2011-05-02T11:20:08-0500","WILLIAM CLARK WASHINGTON",,,1,1,,,1,,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110502144028P030245227776001","2010-01-01","2010-01-12","2",,"0","1","1","1","0","0","0","1","0",,"SOUTHWEST HORIZONTAL DRILLING SERVICES, INC. 401(K) PLAN","001","2008-01-01","SOUTHWEST HORIZONTAL DRILLING SERVICES, INC.",,,"4720 FREEMAN DRIVE",,"FORT WORTH","TX","761401500",,,,,,,,,,,,,,,,,,"752622213","8175724623","211110","SOUTHWEST HORIZONTAL DRILLING SERVICES, INC.",,"4720 FREEMAN DRIVE",,"FORT WORTH","TX","761401500",,,,,,,"752622213","8175724623",,,,"2011-05-02T14:38:26-0500","CHARLES WEBB",,,,,4,0,0,0,0,0,0,0,,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110421084412P030014256231001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PARRETT & OCONNELL LLP 401(K) PLAN","001","2007-01-01","PARRETT & OCONNELL LLP",,,"10 E. DOTY STREET #621",,"MADISON","WI","53703",,,,,,,,,,,,,,,,,,"383734901","6082511542","541110","PARRETT & OCONNELL LLP",,"10 E. DOTY STREET, #621",,"MADISON","WI","53703",,,,,,,"383734901","6082511542",,,,"2011-04-21T08:43:49-0500","NOREEN PARRETT",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G2J2K3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110421123900P030007677718001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIDER & FOGARTY, P.C. PROFIT SHARING PLAN","001","1989-01-01","LIDER & FOGARTY, P.C.",,,"175 WILLIAM STREET",,"NEW BEDFORD","MA","02740",,,,,,,,,,,,,,,,,,"042903125","5089922271","541110","LIDER & FOGARTY, P.C.",,"175 WILLIAM STREET",,"NEW BEDFORD","MA","02740",,,,,,,"042903125","5089922271",,,,"2011-04-21T12:38:54-0500","JAMES FOGARTY",,,,,5,4,0,1,5,0,5,5,0,,"2E3D2J",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110503140625P030008787430001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"G. CURTIS DAILEY, D.D.S., LTD. 401(K) PROFIT SHARING PLAN","003","1986-07-01","G. CURTIS DAILEY, D.D.S., LTD.",,,"2118 EXECUTIVE DRIVE",,"HAMPTON","VA","23666",,,,,,,,,,,,,,,,,,"541054193","7578265075","621210","G. CURTIS DAILEY, D.D.S., LTD.",,"2118 EXECUTIVE DRIVE",,"HAMPTON","VA","23666",,,,,,,"541054193","7578265075",,,,"2011-05-03T14:06:21-0500","G. CURTIS DAILEY",,,,,13,10,0,3,13,0,13,13,0,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-03","Filed with authorized/valid electronic signature",, "20110425150123P040003810869001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRECISION MEETINGS AND EVENTS, INC. PROFIT SHARING PLAN","001","2006-01-01","PRECISION MEETINGS AND EVENTS, INC",,,"303 FIFTH AVENUE","SUITE 1806","NEW YORK","NY","10016",,,,,,,,,,,,,,,,,,"431982648","2122138854","541990","PRECISION MEETINGS AND EVENTS, INC",,"303 FIFTH AVENUE",,"NEW YORK","NY","10016",,,,,,,"431982648","2122138854",,,,"2011-04-25T15:00:27-0500","TARA CONNELL",,,,,5,2,0,1,3,0,3,3,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110425143622P030227088528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE DOUG FLUTIE JR. FOUNDATION OF AUTISM, INC. 401(K) RETIREMENT PLAN","001","2006-01-01","THE DOUG FLUTIE, JR. FOUNDATION FOR AUTISM, INC.",,,"615 CONCORD STREET",,"FRAMINGHAM","MA","01702",,,,,,,,,,,,,,,,,,"043543134","5082708855","624100","THE DOUG FLUTIE, JR. FOUNDATION FOR AUTISM, INC.",,"615 CONCORD STREET",,"FRAMINGHAM","MA","01702",,,,,,,"043543134","5082708855",,,,"2011-04-25T14:29:50-0500","LISA BORGES",,,,,4,3,0,1,4,0,4,4,1,,"2E2G2F2T2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110425143938P030227094624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BILTMORE FAMILY PHYSICIANS PROFIT SHARING PLAN AND TRUST","001","2000-01-01","BILTMORE FAMILY PHYSICIANS",,,"4840 E. INDIAN SCHOOL ROAD","SUITE 101","PHOENIX","AZ","85018",,,,,,,"4840 E. INDIAN SCHOOL ROAD","SUITE 101","PHOENIX","AZ","85018",,,,,,,"860857556","6022241900","621111","BILTMORE FAMILY PHYSICIANS",,"4840 E. INDIAN SCHOOL ROAD","SUITE 101","PHOENIX","AZ","85018",,,,,,,"860857556","6022241900",,,,"2011-04-21T19:39:35-0500","KIM JOHNSON",,,,,9,5,0,4,9,0,9,9,3,,"2A2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110420153313P030214405232001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEARNING MATTERS INC DEFINED CONTRIBUTION PLAN","001","2003-07-16","LEARNING MATTERS INC",,,"127 WEST 26 STREET, #1200",,"NEW YORK","NY","10001",,,,,,,"127 WEST 26 STREET, #1200",,"NEW YORK","NY","10001",,,,,,,"521905556","2127257000","611000","AMANDA MORALES",,"SAME","127 WEST 26 STREET, #1200","NEW YORK","NY","10001",,,,,,,"521905556","2127257000",,,,"2011-04-20T15:32:54-0500","AMANDA MORALES",,,,,0,0,0,0,0,0,0,0,0,,"2M",,,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110420143136P030214283088001","2007-10-01","2008-09-30","2",,"1","0","0","0","0","0","0","1","0",,"HEALTHCARE SYNERGY, INC. DEFINED BENEFIT PENSION PLAN","002","2007-10-01","HEALTHCARE SYNERGY, INC.",,,"5555 CORPORATE AVENUE",,"CYPRESS","CA","90630",,,,,,,"5555 CORPORATE AVENUE",,"CYPRESS","CA","90630",,,,,,,"330592425","7142298700","541511","HEALTHCARE SYNERGY, INC.",,"5555 CORPORATE AVENUE",,"CYPRESS","CA","90630",,,,,,,"330592425","7142298700",,,,"2011-04-19T14:10:16-0500","CECILIA MERCADO","2011-04-19T13:19:43-0500","CECILIA MERCADO",,,0,11,0,0,11,0,11,,0,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110421160148P040215268448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHNSON, JOHNSON, BARRIOS, & YACOUBIAN 401(K) PROFIT SHARING PLAN","001","1993-01-01","JOHNSON, JOHNSON, BARRIOS, & YACOUBIAN, APLC",,,"701 POYDRAS STREET, SUITE 4700",,"NEW ORLEANS","LA","701394901",,,,,,,,,,,,,,,,,,"721196253","5045283001","541110","JOHNSON, JOHNSON, BARRIOS, & YACOUBIAN, APLC",,"701 POYDRAS STREET, SUITE 4700",,"NEW ORLEANS","LA","701394901",,,,,,,"721196253","5045283001",,,,"2011-04-21T15:21:59-0500","ALAN YACOUBIAN",,,,,51,36,0,17,53,0,53,53,4,,"2E2G2J2A2F",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110425091709P030048211009001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CUSTOM INTERIOR CONTRACTORS PENSION PLAN","001","1989-01-01","CUSTOM INTERIOR CONTRACTORS",,,"125 CLINTON ROAD","UNIT 1","FAIRFIELD","NJ","07004",,,,,,,,,,,,,,,,,,"222412549","9732273377","236110","CUSTOM INTERIOR CONTRACTORS",,"125 CLINTON ROAD","UNIT 1","FAIRFIELD","NJ","07004",,,,,,,"222412549","9732273377",,,,"2011-04-25T09:17:05-0500","ANDREW DEMPSEY",,,,,4,4,0,0,4,0,4,4,0,,"2C2F2G2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-25","Filed with authorized/valid electronic signature",, "20110502105851P030244806336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIBREFORM ELECTRONICS, INC. 401(K) PROFIT SHARING PLAN","002","2000-01-01","FIBREFORM ELECTRONICS, INC.",,,"5341 ARGOSY AVENUE",,"HUNTINGTON BEACH","CA","926491036",,,,,,,,,,,,,,,,,,"951986067","7148989641","332900","FIBREFORM ELECTRONICS, INC.",,"5341 ARGOSY AVENUE",,"HUNTINGTON BEACH","CA","926491036",,,,,,,"951986067","7148989641",,,,"2011-05-02T10:58:41-0500","DEAN A. BARLOW",,,,,41,33,0,1,34,0,34,17,0,,"2E2G2J",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-02","Filed with authorized/valid electronic signature",, "20110420203915P030014171047001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUNITA N. GODIWALA, M.D. PROFIT SHARING PLAN","002","1999-01-01","SUNITA N. GODIWALA, M.D.",,,"11-15 MAYO ROAD, UNIT B",,"HOLDEN","MA","01520",,,,,,,,,,,,,,,,,,"043438404","5088298270","621112","SUNITA N. GODIWALA, M.D.",,"11-15 MAYO ROAD, UNIT B",,"HOLDEN","MA","01520",,,,,,,"043438404","5088298270",,,,"2011-04-20T20:38:29-0500","NITIN GODIWALA",,,,,4,2,0,2,4,0,4,4,1,,"2E2J3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-20","Filed with authorized/valid electronic signature",, "20110421160735P030003957829001","2007-06-01","2008-05-31","2",,"0","0","0","0","0","0","0","1","0",,"PEACH STATE FORD TRUCK SALES WELFARE BENEFITS PLAN","501","2005-12-01","PEACH STATE FORD TRUCK SALES",,,"6535 CRESCENT DRIVE",,"NORCROSS","GA","300712905",,,,,,,,,,,,,,,,,,"581188402","7704495300","441229","PEACH STATE FORD TRUCK SALES",,"6535 CRESCENT DRIVE",,"NORCROSS","GA","300712905",,,,,,,"581188402","7704495300",,,,"2011-04-21T16:07:05-0500","RICKY BROWN",,,,,149,147,0,0,147,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110421172051P040047193841001","2005-01-01","2005-12-31","2",,"1","0","0","0","0","0","0","1","0",,"EWERS ARCHITECTURE PC PROFIT SHARING PLAN","001","2000-01-01","EWERS ARCHITECTURE PC",,,"1420 WASHINGTON AVENUE",,"GOLDEN","CO","80401",,,,,,,"1420 WASHINGTON AVENUE",,"GOLDEN","CO","80401",,,,,,,"800009143","3032710977","541310","EWERS ARCHITECTURE PC",,"1420 WASHINGTON AVENUE",,"GOLDEN","CO","80401",,,,,,,"800009143","3032710977",,,,"2011-04-21T17:20:31-0500","PETER EWERS",,,,,3,1,0,1,2,0,2,2,0,0,"3D2E2F2G2J2T",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-04-21","Filed with authorized/valid electronic signature",, "20110504152440P040017154615001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAMELA M. LARIMER DEFINED BENEFIT PENSION PLAN","001","2003-01-01","PAMELA M. LARIMER",,,"17127 ST. ANDREWS DRIVE",,"POWAY","CA","92064",,,,,,,,,,,,,,,,,,"810641548","8582435300","531210","PAMELA M. LARIMER",,"17127 ST. ANDREWS DRIVE",,"POWAY","CA","92064",,,,,,,"810641548","8582435300",,,,"2011-05-04T15:20:30-0500","PAMELA M. LARIMER","2011-05-04T15:20:30-0500","PAMELA M. LARIMER",,,1,1,0,0,1,0,1,,0,,"1A3D",,,,"1",,,,"1",,,,"1",,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505180307P040251299616002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DAVID D. BOHANNON ORGANIZATION 401(K) PLAN AND TRUST","001","1996-07-01","DAVID D. BOHANNON ORGANIZATION",,,"60 31ST AVENUE",,"SAN MATEO","CA","94403",,,,,,,"60 31ST AVENUE",,"SAN MATEO","CA","94403",,,,,,,"940331090","6503458222","531120","DAVID D. BOHANNON ORGANIZATION",,"60 31ST AVENUE",,"SAN MATEO","CA","94403",,,,,,,"940331090","6503458222",,,,"2011-05-05T10:21:34-0500","ERNEST LOTTI, JR.","2011-05-05T10:21:34-0500","ERNEST LOTTI, JR.",,,58,69,,3,72,,72,53,0,,"2E2F2G2J",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110429110759P030237171632001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRENAM KEMKER","501","1977-10-28","TRENAM KEMKER",,,"101 EAST KENNEDY BLVD #2700",,"TAMPA","FL","33602",,,,,,,,,,,,,,,,,,"591772042","8132237474","541110","TRENAM KEMKER",,"101 EAST KENNEDY BLVD #2700",,"TAMPA","FL","33602",,,,,,,"591772042","8132237474",,,,"2011-04-29T11:03:57-0500","SHARON ELLWOOD","2011-04-29T11:03:57-0500","SHARON ELLWOOD",,,203,203,,,203,,,,,,,"4A4B4E4H4D4Q","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110504092129P040017098615001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BATES & MURRAY, INC.401(K) PROFIT SHARING PLAN","001","1979-12-31","BATES & MURRAY, INC.",,,"338 EAST MONTPELIER ROAD","PO BOX 668","BARRE","VT","05641",,,,,,,,,,,,,,,,,,"030187859","8024791066","238210","BATES & MURRAY, INC.",,"338 EAST MONTPELIER ROAD","PO BOX 668","BARRE","VT","05641",,,,,,,"030187859","8024791066",,,,"2011-05-04T09:21:10-0500","GARY CLARK","2011-05-04T09:21:10-0500","GARY CLARK",,,56,35,0,12,47,0,47,46,3,,"2A2E2G2J2K2F3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428094056P040050948977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FRANK J. CICONE LAW CORPORATION PROFIT SHARING PLAN","004","1984-10-01","FRANK J. CICONE LAW CORPORATION",,"C/O THE PRICE COMPANY, INC.","5151 NORTH PALM AVENUE, STE. 920",,"FRESNO","CA","93704",,,,,,,,,,,,,,,,,,"953195219","5592247656","541110","FRANK J. CICONE LAW CORPORATION","C/O THE PRICE COMPANY, INC.","5151 NORTH PALM AVENUE, STE. 920",,"FRESNO","CA","93704",,,,,,,"953195219","5592247656",,,,"2011-04-28T09:40:38-0500","FRANK J. CICONE","2011-04-28T09:40:38-0500","FRANK J. CICONE",,,4,4,0,,4,,4,4,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110427112619P040230033632001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"TIMOTHY K. GETTY, D.D.S. CASH BALANCE PLAN","002","2010-01-01","TIMOTHY K. GETTY, D.D.S.",,,"10601 S. WESTERN AVE. SUITE 2",,"CHICAGO","IL","60643",,,,,,,,,,,,,,,,,,"363030544","7732330770","621210","TIMOTHY K. GETTY, D.D.S.",,"10601 S. WESTERN AVE. SUITE 2",,"CHICAGO","IL","60643",,,,,,,"363030544","7732330770",,,,"2011-04-27T11:24:39-0500","TIMOTHY GETTY",,,,,5,5,0,0,5,0,5,,0,,"1A1C3B3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110427130002P030015307927001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES A. NORMOYLE INSURANCE AGENCY 401(K) PROFIT SHARING PLAN","002","1985-01-01","JAMES A. NORMOYLE INSURANCE AGENCY",,,"669 PALMETTO AVE., SUITE E",,"CHICO","CA","95926",,,,,,,,,,,,,,,,,,"680046779","5308911122","524210","JAMES A. NORMOYLE INSURANCE AGENCY",,"669 PALMETTO AVE., SUITE E",,"CHICO","CA","95926",,,,,,,"680046779","5308911122",,,,"2011-04-27T12:59:24-0500","JAMES NORMOYLE",,,,,8,7,0,1,8,0,8,8,1,,"2A2E2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110428134654P040232866032001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ILLINOIS CLEAN ENERGY COMMUNITY FOUNDATION 401(K) PLAN","001","2002-04-01","ILLINOIS CLEAN ENERGY COMMUNITY FOUNDATION",,,"2 NORTH LASALLE STREET","SUITE 1140","CHICAGO","IL","60602",,,,,,,"2 NORTH LASALLE STREET","SUITE 1140","CHICAGO","IL","60602",,,,,,,"364334358","3123725191","813000","ILLINOIS CLEAN ENERGY COMMUNITY FOUNDATION",,"2 NORTH LASALLE STREET","SUITE 1140","CHICAGO","IL","60602",,,,,,,"364334358","3123725191",,,,"2011-04-28T13:42:54-0500","DENNIS OBRIEN",,,,,9,8,0,1,9,0,9,7,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110428150429P040233025744001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ORGANON PROFESSIONAL SRVCS, INC. PROFIT SHARING PENSION PLAN","001","1998-12-01","ORGANON PROFESSIONAL SERVICES, INC.",,,"2027 SE JEFFERSON STREET","SUITE 203","PORTLAND","OR","97222",,,,,,,"2027 SE JEFFERSON STREET","SUITE 203","PORTLAND","OR","97222",,,,,,,"943283850","8663145040","541511","ORGANON PROFESSIONAL SERVICES, INC.",,"2027 SE JEFFERSON STREET","SUITE 203","PORTLAND","OR","97222",,,,,,,"943283850","8663145040",,,,"2011-04-28T15:03:58-0500","CHARLES AARON",,,,,23,14,0,8,22,0,22,21,0,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110504144508P040248311632002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"OLYMPIC INTERNAL MEDICINE, INC., P.S. 401(K) PROFIT SHARING PLAN","001","1981-07-01","OLYMPIC INTERNAL MEDICINE, INC., P.S.",,,"2620 WHEATON WAY",,"BREMERTON","WA","98310",,,,,,,,,,,,,,,,,,"270179138","3603773923","621111","OLYMPIC INTERNAL MEDICINE, INC., P.S.",,"2620 WHEATON WAY",,"BREMERTON","WA","98310",,,,,,,"270179138","3603773923",,,,"2011-05-05T05:11:44-0500","M. RYAN GROSS, M.D.",,,,,29,23,0,6,29,0,29,29,2,,"2E2G2J2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110428090306P030234322944001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTH GA BANKING COMPANY","501","1994-01-01","SOUTH GA BANKING COMPANY",,,"725 WEST 2ND ST",,"TIFTON","GA","31794",,,,,,,"725 WEST 2ND ST",,"TIFTON","GA","31794",,,,,,,"581022353","2295679686","522110","SOUTH GA BANKING COMPANY",,"725 WEST 2ND ST",,"TIFTON","GA","31794",,,,,,,"581022353","2295679686","SOUTH GA BANKING COMPANY","581022353","501","2011-04-28T08:58:13-0500","DAN THOMASON","2011-04-28T08:58:13-0500","DAN THOMASON",,,87,81,,,81,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110429141050P040051648929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GOODWILL INDUSTRIES OF NORTH CENTRAL WISCONSIN, INC. LIFE AND DISABILITY PLAN","502","1993-01-01","GOODWILL INDUSTRIES OF NORTH CENTRAL WISCONSIN",,,"1800 APPLETON ROAD",,"MENASHA","WI","549521110",,,,,,,,,,,,,,,,,,"391144913","9207316601","813000","GOODWILL INDUSTRIES OF NORTH CENTRAL WISCONSIN",,"1800 APPLETON ROAD",,"MENASHA","WI","549521110",,,,,,,"391144913","9207316601",,,,"2011-04-29T14:03:38-0500","JACKIE DRAWS",,,,,572,595,0,0,595,0,,,,,,"4B4H4F4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110504193727P030251120976001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"JUSTICE SERVICES HOLDINGS LLC PROFIT SHARING 401K PLAN","001","2000-01-01","JUSTICE SERVICES HOLDINGS LLC",,,"7447 E. EARLL DRIVE, SUITE 101",,"SCOTTSDALE","AZ","852517953",,,,,,,,,,,,,,,,,,"263900909","4809499051","541190","JUSTICE SERVICES HOLDINGS LLC",,"7447 E. EARLL DRIVE, SUITE 101",,"SCOTTSDALE","AZ","852517953",,,,,,,"263900909","4809499051",,,,"2011-05-04T19:29:09-0500","LARRY THARP",,,,,33,0,0,0,0,0,0,0,0,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110505162756P030253394944001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","0","0",,"LA FONDA DE SAN MATEO PROFIT SHARING","001","2002-06-28","LA FONDA DE SAN MATEO, INC.",,,"2310 S. EL CAMINO REAL",,"SAN MATEO","CA","94403",,,,,,,"2310 S. EL CAMINO REAL",,"SAN MATEO","CA","94403",,,,,,,"412025722","6505749699","722110","LA FONDA DE SAN MATEO, INC.",,"2310 S. EL CAMINO REAL",,"SAN MATEO","CA","94403",,,,,,,"412025722","6505749699",,,,"2011-05-05T16:27:31-0500","MAUREEN GALINDO",,,,,4,4,0,0,4,0,4,4,0,,"3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428100853P030234456368001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE PREMINS COMPANY, INC. PROFIT SHARING PLAN","001","1975-12-31","THE PREMINS COMPANY, INC.",,,"1407 AVENUE M",,"BROOKLYN","NY","112230004",,,,,,,,,,,,,,,,,,"132556136","7183758300","524210","THE PREMINS COMPANY, INC.",,"1407 AVENUE M",,"BROOKLYN","NY","112230004",,,,,,,"132556136","7183758300",,,,"2011-04-28T10:08:49-0500","SULLMAN L. BEMAK",,,,,16,12,0,4,16,0,16,16,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110504113110P030016473191003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHRISTOPHER G. NELSON, M.D., P.A. PROFIT SHARING PLAN","001","2006-01-01","CHRISTOPHER G. NELSON, M.D., P.A.",,,"350 SIXTH STREET SOUTH",,"ST. PETERSBURG","FL","337014449",,,,,,,"350 SIXTH STREET SOUTH",,"ST. PETERSBURG","FL","337014449",,,,,,,"592015566","7278224896","621111","CHRISTOPHER G. NELSON, M.D., P.A.",,"350 SIXTH STREET SOUTH",,"ST. PETERSBURG","FL","337014449",,,,,,,"592015566","7278224896",,,,"2011-05-04T06:53:39-0500","CHRISTOPHER G. NELSON, M.D.","2011-05-04T06:53:39-0500","CHRISTOPHER G. NELSON, M.D.",,,5,5,1,,6,,6,5,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505082344P040009363974001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AIRPRO FAN & BLOWER COMPANY, LLC 401(K) SAVINGS PLAN","001","2007-01-01","AIRPRO FAN & BLOWER COMPANY, LLC",,,"PO BOX 543",,"RHINELANDER","WI","54501",,,,,,,,,,,,,,,,,,"300313501","7153653267","333200","AIRPRO FAN & BLOWER COMPANY, LLC",,"PO BOX 543",,"RHINELANDER","WI","54501",,,,,,,"300313501","7153653267",,,,"2011-05-05T08:23:30-0500","KEITH WHITE","2011-05-05T08:23:30-0500","KEITH WHITE",,,24,16,4,0,20,0,20,19,5,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110429135841P030015664951001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KESSLER GROUP HEALTH PLAN EXCELLUS","501","2004-01-01","KESSLER GROUP INC.","BURGER KING","DANIEL BEATY","410 WHITE SPRUCE BLVD",,"ROCHESTER","NY","14623",,,,,,,,,,,,,,,,,,"161102174","5854245277","722210","KESSLER GROUP INC.","DANIEL BEATY","410 WHITE SPRUCE BLVD",,"ROCHESTER","NY","14623",,,,,,,"161102174","5854245277",,,,"2011-04-29T13:54:46-0500","DANIEL BEATY",,,,,55,46,,,46,,46,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110504113259P040009276742001","2010-01-01","2010-09-16","2",,"0","0","1","1","0","0","0","1","0",,"NAVINI NETWORKS, INC. 401(K) PLAN","001","2000-01-01","NAVINI NETWORKS, INC.",,,"C/O SCOTT E. KNOWLES, CISCO SYSTEMS","170 W. TASMAN DRIVE","SAN JOSE","CA","95134",,,,,,,,,,,,,,,,,,"742945179","4085250775","517000","NAVINI NETWORKS, INC.",,"C/O SCOTT E. KNOWLES, CISCO SYSTEMS","170 W. TASMAN DRIVE","SAN JOSE","CA","95134",,,,,,,"742945179","4085250775",,,,"2011-05-04T11:32:46-0500","SCOTT E KNOWLES","2011-05-04T11:32:46-0500","SCOTT E KNOWLES",,,79,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110504113701P040009277094001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"TNT AUCTION 401(K) PROFIT SHARING PLAN","001","2006-01-01","TNT AUCTION, INC.",,,"P.O. BOX 16185",,"SALT LAKE CITY","UT","841160185",,,,,,,,,,,,,,,,,,"870510418","8015190123","454390","TNT AUCTION, INC.",,"P.O. BOX 16185",,"SALT LAKE CITY","UT","841160185",,,,,,,"870510418","8015190123",,,,"2011-05-04T11:36:57-0500","MIKE MCKEE","2011-05-04T11:36:57-0500","MIKE MCKEE",,,12,11,0,0,11,0,11,9,0,,"2E2F2G2J2K2R3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428115046P040232653712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VENTANA FACULTY MEDICAL ASSOCIATES OF MONTEREY 401(K) PROFIT SHARING PLAN","001","2000-01-01","VENTANA FACULTY MEDICAL ASSOCIATES OF MONTEREY",,,"745 SAN JACINTO DRIVE",,"SALINAS","CA","93901",,,,,,,"745 SAN JACINTO DRIVE",,"SALINAS","CA","93901",,,,,,,"770379325","8317596579","621111","VENTANA FACULTY MEDICAL ASSOCIATES OF MONTEREY",,"745 SAN JACINTO DRIVE",,"SALINAS","CA","93901",,,,,,,"770379325","8317596579",,,,"2011-04-28T11:46:27-0500","STEPHEN SAGLIO",,,,,13,7,0,4,11,0,11,10,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110428115534P030234672944001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIKE B. DINGMAN, DDS, PA PROFIT SHARING PLAN","002","1997-01-01","MIKE B. DINGMAN, DDS, PA",,,"1186 EASTLAND DR. NORTH, STE. A",,"TWIN FALLS","ID","833018973",,,,,,,,,,,,,,,,,,"820369779","2087336074","621210","MIKE B. DINGMAN, DDS, PA",,"1186 EASTLAND DR. NORTH, STE. A",,"TWIN FALLS","ID","833018973",,,,,,,"820369779","2087336074",,,,"2011-04-28T11:55:15-0500","MIKE DINGMAN, DDS",,,,,6,7,0,0,7,0,7,7,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110427140912P040230352336002","2010-07-01","2010-12-31","2",,,,,"1",,,,,,,"CLACKAMAS SURGICAL ASSOCIATES INC 401K PROFIT SHARING PLAN AND TRUST","001","1973-07-01","CLACKAMAS SURGICAL ASSOCIATES INC",,,"19250 SW 65TH AVE.","SUITE 220","TUALATIN","OR","97062",,,,,,,,,,,,,,,,,,"930619799","5036925650","621111","ANDREW CRAMER MD JAMES CRAVEN MD","CLACKAMAS SURGICAL ASSOCIATES INC","19250 SW 65TH AVENUE STE 220",,"TUALATIN","OR","97062",,,,,,,"930743611","5036925650",,,,"2011-04-27T03:28:34-0500","ANDREW CRAMER, MD","2011-04-27T03:28:34-0500","ANDREW CRAMER, MD",,,7,6,,1,7,,7,7,,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428153502P040016113767001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GIBBS MAINTENANCE, PROFIT SHARING PLAN AND TRUST","001","1999-01-01","GIBBS MAINTENANCE",,"R. BERGER AND ASSOCIATES, INC.","701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"942235472","2096327039","561720","GIBBS MAINTENANCE","R. BERGER AND ASSOCIATES, INC.","701 EAST CANAL DRIVE",,"TURLOCK","CA","95380",,,,,,,"942235472","2096327039",,,,"2011-04-28T15:33:18-0500","GER ON BEHALF OF PLAN ADMINISTRATOR",,,,,31,18,,13,31,,31,29,5,,"2E2J2K3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110429133021P040016270743001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROCKFORD AUTO PARTS CORP","001","2001-02-01","ROCKFORD AUTO PARTS CORP",,,"923 SEMINARY STREET",,"ROCKFORD","IL","61104",,,,,,,"923 SEMINARY STREET",,"ROCKFORD","IL","61104",,,,,,,"364393965","8159641691","441300","ROCKFORD AUTO PARTS CORP",,"923 SEMINARY STREET",,"ROCKFORD","IL","61104",,,,,,,"364393965","8159641691",,,,"2011-04-29T13:27:57-0500","DAVID HOFFMAN",,,,,6,6,,,6,,6,,,,"2H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110427155504P030232509280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ERDMAN AUTOMATION, INC. 401(K) PLAN","001","2006-09-01","ERDMAN AUTOMATION, INC.",,,"1603 14TH STREET SOUTH",,"PRINCETON","MN","553712320",,,,,,,,,,,,,,,,,,"411764411","7633899475","541990","ERDMAN AUTOMATION, INC.",,"1603 14TH STREET SOUTH",,"PRINCETON","MN","553712320",,,,,,,"411764411","7633899475",,,,"2011-04-27T15:53:59-0500","ERIN ERDMAN",,,,,58,57,0,8,65,0,65,28,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110427202751P040231057536001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WELLCORP EXPRESS, INC. PROFIT SHARING PLAN","001","2003-01-01","WELLCORP EXPRESS, INC.",,,"8616 LA TIJERA BLVD., STE 310",,"LOS ANGELES","CA","90045",,,,,,,,,,,,,,,,,,"954139796","3106456410","488510","WELLCORP EXPRESS, INC.",,"8616 LA TIJERA BLVD., STE 310",,"LOS ANGELES","CA","90045",,,,,,,"954139796","3106456410",,,,"2011-04-27T09:27:39-0500","DAVID SAMSON",,,,,5,5,0,0,5,0,5,5,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110429142331P030050640305001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"PERFORMANCE MATERIALS CORPORATION 401(K) PLAN","001","1997-01-01","PERFORMANCE MATERIALS CORPORATION",,,"1150 CALLE SUERTE",,"CAMARILLO","CA","93012",,,,,,,"1150 CALLE SUERTE",,"CAMARILLO","CA","93012",,,,,,,"770129376","8054821722","326100","PERFORMANCE MATERIALS CORPORATION",,"1150 CALLE SUERTE",,"CAMARILLO","CA","93012",,,,,,,"770129376","8054821722",,,,"2011-04-29T14:22:47-0500","JULIE MATURO",,,,,65,41,0,19,60,1,61,44,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110505153438P030253287024001","2006-09-01","2007-08-31","2",,"1","0","0","0","0","0","0","0","0",,"WEST COAST QUARTZ HEALTH AND WELFARE PLAN","501","1981-09-01","WEST COAST QUARTZ CORPORATION",,,"1000 CORPORATE WAY",,"FREMONT","CA","94539",,,,,,,,,,,,,,,,,,"942773849","5102492160","339900","WEST COAST QUARTZ CORPORATION",,"1000 CORPORATE WAY",,"FREMONT","CA","94539",,,,,,,"942773849","5102492160",,,,"2011-05-05T15:20:03-0500","MICHELE GRAFF",,,,,100,115,0,0,115,,,,,,,"4A4B4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110505153501P030253287904001","2007-09-01","2008-08-31","2",,"0","0","0","0","0","0","0","0","0",,"WEST COAST QUARTZ HEALTH AND WELFARE PLAN","501","1981-09-01","WEST COAST QUARTZ CORPORATION",,,"1000 CORPORATE WAY",,"FREMONT","CA","94539",,,,,,,,,,,,,,,,,,"942773849","5102492160","339900","WEST COAST QUARTZ CORPORATION",,"1000 CORPORATE WAY",,"FREMONT","CA","94539",,,,,,,"942773849","5102492160",,,,"2011-05-05T15:19:30-0500","MICHELE GRAFF",,,,,115,122,0,0,122,,,,,,,"4A4B4D4E4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428091606P040016060343001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED COMMUNITY BANK","501","1999-01-01","UNITED COMMUNITY BANK",,,"125 HWY 515 EAST","PO BOX 398","BLAIRSVILLE","GA","30512",,,,,,,"125 HWY 515 EAST",,"BLAIRSVILLE","GA","30512",,,,,,,"581807304","8008222651","522110","UNITED COMMUNITY BANK",,"125 HWY 515 EAST","PO BOX 398","BLAIRSVILLE","GA","30512",,,,,,,"581807304","8008222651","UNITED COMMUNITY BANK","581807304","501","2011-04-28T09:11:09-0500","DAN THOMASON","2011-04-28T09:11:09-0500","DAN THOMASON",,,350,265,,,265,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110427111755P030049431217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANAWALT LUMBER COMPANY, INC. 401K PROFIT SHARING PLAN","001","1964-01-01","ANAWALT LUMBER COMPANY",,,"11060 WEST PICO BLVD.",,"LOS ANGELES","CA","90064",,,,,,,,,,,,,,,,,,"951970442","3104788725","444110","ANAWALT LUMBER COMPANY",,"11060 WEST PICO BLVD.",,"LOS ANGELES","CA","90064",,,,,,,"951970442","3104788725",,,,"2011-04-27T11:13:14-0500","ROLANDO ROBLES",,,,,54,46,0,6,52,0,52,52,0,,"2A2E2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110504150355P030250604064001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE CHARLES & HELEN SCHWAB FOUNDATION TAX SHELTERED RETIREMENT PLAN","001","1996-04-01","CHARLES & HELEN SCHWAB FOUNDATION",,,"530 LYTTON AVENUE, SUITE 200",,"PALO ALTO","CA","943011541",,,,,,,,,,,,,,,,,,"943374170","6506173476","624100","CHARLES & HELEN SCHWAB FOUNDATION",,"530 LYTTON AVENUE, SUITE 200",,"PALO ALTO","CA","943011541",,,,,,,"943374170","6506173476",,,,"2011-05-04T15:03:52-0500","ANA THOMPSON","2011-05-04T15:03:52-0500","ANA THOMPSON",,,24,2,0,20,22,0,22,22,0,,"2M2L3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505113704P030252827008001","2010-07-01","2011-02-08","2",,"0","1","1","1","0","0","0","0","0",,"K & L MACHINING, INC. 401(K) PLAN","001","2001-02-01","K & L MACHINING, INC.",,,"50 TRINITY DRIVE",,"LEOLA","PA","17540",,,,,,,,,,,,,,,,,,"232769609","7176560948","333510","K & L MACHINING, INC.",,"50 TRINITY DRIVE",,"LEOLA","PA","17540",,,,,,,"232769609","7176560948",,,,"2011-05-05T11:36:58-0500","BARBARA LINETTY","2011-05-05T11:36:58-0500","BARBARA LINETTY",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J3B",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505102940P040017300615001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EACCESS SOLUTIONS, INC. 401(K) PLAN","001","2003-01-01","EACCESS SOLUTIONS, INC.",,,"407 NORTH QUENTIN ROAD",,"PALATINE","IL","600674832",,,,,,,,,,,,,,,,,,"364447426","8479917190","454390","EACCESS SOLUTIONS, INC.",,"407 NORTH QUENTIN ROAD",,"PALATINE","IL","600674832",,,,,,,"364447426","8479917190",,,,"2011-05-05T10:26:59-0500","DAVID BEAN","2011-05-05T10:26:59-0500","DAVID BEAN",,,20,13,0,6,19,0,19,19,1,,"2E2G2J",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110505131507P030016667335002","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"PREMIER PRIZM SOLUTIONS, LLC","503","2010-01-01","PREMIER PRIZM SOLUTIONS, LLC",,,"10 EAST STOW ROAD, SUITE 100",,"MARLTON","NJ","080533133",,,,,,,,,,,,,,,,,,"260306458","8565965600","561490","PREMIER PRIZM SOLUTIONS, LLC",,"10 EAST STOW ROAD, SUITE 100",,"MARLTON","NJ","080533133",,,,,,,"260306458","8565965600",,,,"2011-05-05T13:15:01-0500","MR. MICHAEL KENNEDY",,,,,103,139,0,0,139,,,,,,,"4E",,,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428120032P030234682400001","2001-07-01","2002-06-30","2",,"0","0","0","0","0","0","0","1","0",,"THE EVERGREEN SCHOOL 403(B) TDA PLAN","002","1992-01-01","THE EVERGREEN SCHOOL",,,"15201 MERIDIAN AVENUE N",,"SHORELINE","WA","98133",,,,,,,,,,,,,,,,,,"910756462","2063642650","611000","THE EVERGREEN SCHOOL",,"15201 MERIDIAN AVENUE N",,"SHORELINE","WA","98133",,,,,,,"910756462","2063642650",,,,"2011-04-28T11:59:54-0500","ROBERT MILLER","2011-04-28T11:59:54-0500","ROBERT MILLER",,,0,0,,,0,,0,0,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110427134507P030008243094002","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"BERNADINE MARTIN, DDS, P.C. 401K PLAN","001","2010-01-01","BERNADINE MARTIN, DDS, P.C.",,,"1125 SALT SPRINGS ROAD",,"SYRACUSE","NY","13224",,,,,,,,,,,,,,,,,,"161603732","3154466729","621210","BERNADINE MARTIN, DDS, P.C.",,"1125 SALT SPRINGS ROAD",,"SYRACUSE","NY","13224",,,,,,,"161603732","3154466729",,,,"2011-04-27T13:34:49-0500","BERNADINE MARTIN DDS","2011-04-27T13:31:42-0500","BERNADINE MARTIN DDS",,,0,1,,,1,,1,1,,,"2E2G2J2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428174755P030050181569001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"EBBETTS PASS LUMBER CO INC","501","1994-01-01","EBBETTS PASS LUMBER CO INC",,,"PO BOX 870","981 BLAGEN ROAD","ARNOLD","CA","95223",,,,,,,"PO BOX 870","981 BLAGEN ROAD","ARNOLD","CA","95223",,,,,,,"942293116","2097957185","444110","EBBETTS PASS LUMBER CO INC",,"PO BOX 870","981 BLAGEN ROAD","ARNOLD","CA","95223",,,,,,,"942293116","2097957185",,,,"2011-04-28T17:46:54-0500","VONNIE KEARNS",,,,,13,11,,,11,,11,,,,,"4A","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110428174857P030050182033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OB SPORTS EMPLOYEE BENEFIT PLAN","501","2003-01-01","OB SPORTS GOLF MANAGEMENT, LLC",,,"7025 E. GREENWAY PKWY, SUITE 550",,"SCOTTSDALE","AZ","852546738",,,,,,,,,,,,,,,,,,"931191096","4809481300","713900","OB SPORTS GOLF MANAGEMENT, LLC",,"7025 E. GREENWAY PKWY, SUITE 550",,"SCOTTSDALE","AZ","852546738",,,,,,,"931191096","4809481300",,,,"2011-04-28T17:48:53-0500","JULIE STAMAS",,,,,553,542,3,0,545,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110504120250P030008873062001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WORLD JEEP EAGLE INC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-05-01","WORLD AUTO GROUP",,,"688 SHREWSBURY AVENUE",,"TINTON FALLS","NJ","07701",,,,,,,,,,,,,,,,,,"222463750","7327416200","441110","WORLD AUTO GROUP",,"688 SHREWSBURY AVENUE",,"TINTON FALLS","NJ","07701",,,,,,,"222463750","7327416200",,,,"2011-05-04T00:02:48-0500","WORLD AUTO GROUP","2011-05-04T00:02:48-0500","WORLD AUTO GROUP",,,37,36,0,0,36,0,36,31,1,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110504120727P030250251088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SYNCRO, INC. 401(K) PLAN","001","2007-01-01","SYNCRO, INC.",,,"11600 W. DIXON STREET",,"WEST ALLIS","WI","53214",,,,,,,,,,,,,,,,,,"391394429","4142567777","339900","SYNCRO, INC.",,"11600 W DIXON ST",,"WEST ALLIS","WI","53214",,,,,,,"391394429","4142567777",,,,"2011-05-04T12:05:00-0500","DAVID LONG",,,,,10,9,0,0,9,0,9,8,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110427100329P030231822352001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BELLE CHASSE DENTAL CENTER LLC 401(K) PROFIT SHARING PLAN","001","2005-01-01","BELLE CHASSE DENTAL CENTER, LLC",,,"8000 HIGHWAY 23",,"BELLE CHASSE","LA","70037",,,,,,,,,,,,,,,,,,"030524307","5043910000","621210","BELLE CHASSE DENTAL CENTER, LLC",,"8000 HIGHWAY 23",,"BELLE CHASSE","LA","70037",,,,,,,"030524307","5043910000",,,,"2011-04-27T09:59:33-0500","IVONNE CASTRO KULLMAN",,,,,6,3,0,2,5,0,5,5,0,,"2A2E2J2F2G2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110505145113P030008981830001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BASHARKHAH ENGINEERING, INC. 401K PLAN","001","1994-01-01","BASHARKHAH ENGINEERING, INC.",,,"921 NORTH RIVERFRONT BLVD, STE 100",,"DALLAS","TX","75207",,,,,,,,,,,,,,,,,,"752391550","2146599000","541330","BASHARKHAH ENGINEERING, INC.",,"921 NORTH RIVERFRONT BLVD, STE 100",,"DALLAS","TX","75207",,,,,,,"752391550","2146599000",,,,"2011-05-05T14:40:47-0500","CATHERINE BASHARKHAH",,,,,41,32,0,3,35,0,35,33,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-05","Filed with authorized/valid electronic signature",, "20110428103258P030049985041001","2010-04-01","2011-01-31","2",,"0","0","1","1","0","0","0","0","0",,"FALCON TRANSPORTATION, INC. 401(K) PLAN","003","1990-04-01","FALCON TRANSPORTATION, INC.",,,"PO BOX 2323",,"SALINAS","CA","939022323",,,,,,,,,,,,,,,,,,"770096899","8317571222","484110","FALCON TRANSPORTATION, INC.",,"PO BOX 2323",,"SALINAS","CA","939022323",,,,,,,"770096899","8317571222",,,,"2011-04-28T10:32:53-0500","MIKE MCNAMA",,,,,13,0,0,0,0,0,0,0,0,,"2E2H2J2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110427115644P040008625014001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EAST BAY RADIATION ONCOLOGY CENTERS 401(K) PROFIT SHARING PLAN AND TRUST","001","1998-01-01","EAST BAY RADIATION ONCOLOGY CENTERS",,,"20126 STANTON AVE., SUITE 101",,"CASTRO VALLEY","CA","945465270",,,,,,,,,,,,,,,,,,"930999445","5105810556","621111","EAST BAY RADIATION ONCOLOGY CENTERS",,"20126 STANTON AVE., SUITE 101",,"CASTRO VALLEY","CA","945465270",,,,,,,"930999445","5105810556",,,,"2011-04-27T11:56:35-0500","MICHAEL R. FORREST, M.D.","2011-04-27T11:56:35-0500","MICHAEL R. FORREST, M.D.",,,19,14,0,6,20,0,20,20,0,,"2E2F2G2H2R3D3H2A",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110427124414P030015306391001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMMUNITY BANKSHARES, INC. EMPLOYEE PLAN","501","1999-01-01","COMMUNITY BANKSHARES, INC.",,,"5570 DTC PARKWAY",,"GREENWOOD VILLAGE","CO","80111",,,,,,,,,,,,,,,,,,"841131854","7205293321","551111","COMMUNITY BANKSHARES, INC.",,"5570 DTC PARKWAY",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"841131854","7205293321",,,,"2011-04-27T12:44:09-0500","KATHLEEN SISNEROS",,,,,353,302,7,0,309,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110427125258P040008629958001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUTTLE & COMPANY, LLP EMPLOYEES 401K PLAN","003","1992-01-01","SUTTLE & COMPANY, LLP",,,"ONE FRONT STREET, SUITE 1300",,"SAN FRANCISCO","CA","941115393",,,,,,,,,,,,,,,,,,"943137350","4157810250","523900","SUTTLE & COMPANY, LLP",,"ONE FRONT STREET, SUITE 1300",,"SAN FRANCISCO","CA","941115393",,,,,,,"943137350","4157810250",,,,"2011-04-27T12:52:57-0500","JOHN SUTTLE",,,,,14,12,0,0,12,0,12,12,0,,"2A2E2H2J3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110504143431P040248291648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TTG, INC. 401(K) PLAN","001","2008-03-01","TTG, INC.",,,"7561 S. HIGHWAY 13",,"HIGGINSVILLE","MO","64037",,,,,,,,,,,,,,,,,,"262006809","8162604991","326100","TTG, INC.",,"7561 S. HIGHWAY 13",,"HIGGINSVILLE","MO","64037",,,,,,,"262006809","8162604991",,,,"2011-05-04T14:34:10-0500","JAMES C. KING",,,,,1,10,0,1,11,0,11,8,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110428113628P030234637632001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"H-B GROUP, LLC RETIREMENT PLAN","001","2003-07-01","HOPE BUFFINTON PACKAGING GROUP LLC",,,"P.O. BOX 6250",,"CENTRAL FALLS","RI","02863",,,,,,,"575 LONSDALE AVE.",,"CENTRAL FALLS","RI","02863",,,,,,,"141846284","4017253646","322200","HOPE BUFFINTON PACKAGING GROUP LLC",,"P.O. BOX 6250",,"CENTRAL FALLS","RI","02863",,,,,,,"141846284","4017253646",,,,"2011-04-28T09:10:40-0500","DOUGLAS YATES","2011-04-28T11:33:12-0500","THOMAS CAVANAGH",,,21,21,0,1,22,0,22,16,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428120443P030015473879001","2002-07-01","2003-06-30","2",,"0","0","0","0","0","0","0","1","0",,"THE EVERGREEN SCHOOL 403(B) TDA PLAN","002","1992-01-01","THE EVERGREEN SCHOOL",,,"15201 MERIDIAN AVENUE N",,"SHORELINE","WA","98133",,,,,,,,,,,,,,,,,,"910756462","2063642650","611000","THE EVERGREEN SCHOOL",,"15201 MERIDIAN AVENUE N",,"SHORELINE","WA","98133",,,,,,,"910756462","2063642650",,,,"2011-04-28T12:04:03-0500","ROBERT MILLER","2011-04-28T12:04:03-0500","ROBERT MILLER",,,0,0,,,0,,0,0,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110428141033P030234907568001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IMQUEST BIOSCIENCES, INC. 401K PLAN","001","2007-03-30","IMQUEST BIOSCIENCES, INC.","IMQUEST BIOSCIENCES, INC.",,"7340 EXECUTIVE WAY","SUITE R","FREDERICK","MD","21704",,,,,,,"7340 EXECUTIVE WAY","SUITE R","FREDERICK","MD","21704",,,,,,,"200750754","3016960274","541700","IMQUEST BIOSCIENCES, INC.",,"7340 EXECUTIVE WAY","SUITE R","FREDERICK","MD","21704",,,,,,,"200750754","3016960274",,,,"2011-04-28T14:09:22-0500","ROBERT BUCKHEIT JR",,,,,9,9,0,1,10,0,10,10,0,,"2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",, "20110427150007P030015321815001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TAYLOR AUTOMOTIVE GROUP 401K PLAN","001","1993-01-01","TAYLOR GROUP, INC",,,"624 REELFOOT AVE",,"UNION CITY","TN","38261",,,,,,,,,,,,,,,,,,"621469398","7315879544","441110","TAYLOR GROUP, INC",,"624 REELFOOT AVE",,"UNION CITY","TN","38261",,,,,,,"621469398","7315879544",,,,"2011-04-27T15:49:52-0500","THOMAS TAYLOR",,,,,32,27,2,4,33,0,33,26,,,"2E2G2J2K2F3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110429115926P040003985957001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"PEPPARD ENTERPRISES, INC. 401(K) PLAN","001","2010-10-06","PEPPARD ENTERPRISES, INC.",,,"12272 COUNTRY DAY CIRCLE",,"FORT MYERS","FL","33913",,,,,,,,,,,,,,,,,,"273662616","2392438983","811490","PEPPARD ENTERPRISES, INC.",,"12272 COUNTRY DAY CIRCLE",,"FORT MYERS","FL","33913",,,,,,,"273662616","2392438983",,,,"2011-04-29T11:55:48-0500","CHRISTA PEPPARD",,,,,0,1,0,0,1,0,1,1,0,,"2E2J2K2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110429103002P030237099424001","1998-08-01","1999-07-31","2",,"0","0","0","0","0","0","0","1","0",,"THE WOODLANDS CHRISTIAN ACADEMY 403B TDA PLAN","002","1997-08-01","THE WOODLANDS CHRISTIAN ACADEMY",,,"5800 ACADEMY WAY",,"THE WOODLANDS","TX","77384",,,,,,,"5800 ACADEMY WAY",,"THE WOODLANDS","TX","77384",,,,,,,"760391401","9362713108","611000","THE WOODLANDS CHRISTIAN ACADEMY",,"5800 ACADEMY WAY",,"THE WOODLANDS","TX","77384",,,,,,,"760391401","9362713108",,,,"2011-04-29T10:29:48-0500","KARLA ARTHUR",,,,,0,0,0,0,0,0,0,0,0,,"2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110504122050P030053268273001","2010-01-01","2010-08-31","2",,"0","0","1","1","0","1","0","0","0",,"PINK QUALITY VIDEO, INC. PROFIT SHARING PLAN","003","2003-01-01","PINK QUALITY VIDEO, INC.",,,"1822 WEST ROSECRANS AVE.",,"GARDENA","CA","90503",,,,,,,,,,,,,,,,,,"954451602","3103276290","451220","PINK QUALITY VIDEO, INC.",,"1822 WEST ROSECRANS AVE.",,"GARDENA","CA","90503",,,,,,,"954451602","3103276290",,,,"2011-05-04T12:19:47-0500","LUIS MEDIAVILLA",,,,,14,0,0,0,0,0,0,0,0,,"2A2E2G3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110427182638P040015952599001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRADEN, HINCHCLIFFE & HAWLEY LLP","001","1993-01-01","BRADEN, HINCHCLIFFE & HAWLEY LLP",,,"888 WEST 6TH STREET","SUITE 600","LOS ANGELES","CA","90017",,,,,,,"888 WEST 6TH STREET","SUITE 600","LOS ANGELES","CA","90017",,,,,,,"271296197","2132256150","541110","BRADEN, HINCHCLIFFE & HAWLEY LLP",,"888 WEST 6TH STREET","SUITE 600","LOS ANGELES","CA","90017",,,,,,,"271296197","2132256150","DALE, BRADEN & HINCHCLIFFE, A PROFESSIONAL LAW CORPORATION","954204188","001","2011-04-27T18:25:04-0500","YING LI",,,,,50,17,0,29,46,0,46,42,0,,"2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-04-27","Filed with authorized/valid electronic signature",, "20110428085255P040232319120001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","0","0",,"CORVALLIS GASTROENTEROLOGY, P.C. DEFINED BENEFIT PENSION PLAN","004","2007-01-01","CORVALLIS GASTROENTEROLOGY, P.C.",,,"3517 NW SAMARITAN DR., #101",,"CORVALLIS","OR","97330",,,,,,,"SURINDER M. VASDEV, MD","3517 NW SAMARITAN DR., #101","CORVALLIS","OR","97330",,,,,,,"911830142","5417532205","621111","CORVALLIS GASTROENTEROLOGY, P.C.",,"3517 NW SAMARITAN DR., #101",,"CORVALLIS","OR","97330",,,,,,,"911830142","5417532205",,,,"2011-04-27T16:57:00-0500","SURINDER VASDEV","2011-04-27T16:57:00-0500","SURINDER VASDEV",,,6,0,0,0,0,0,0,,0,,"1A3D",,,"1",,,,"1",,,"1",,,,,"1","2",,,,"FILING_RECEIVED","2011-04-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110429144040P040016280807001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"EMERALD-ASSOCIATED REPORTERS, INC. 401 (K) PLAN","001","2004-12-16","EMERALD-ASSOCIATED REPORTERS, INC.",,,"3375 PARK AVENUE",,"WANTAGH","NY","11793",,,,,,,"3375 PARK AVENUE",,"WANTAGH","NY","11793",,,,,,,"113357065","5167834311","541990","EMERALD-ASSOCIATED REPORTERS, INC.",,"3375 PARK AVENUE",,"WANTAGH","NY","11793",,,,,,,"113357065","5167834311",,,,"2011-04-29T14:40:25-0500","ANTHONY MARRONE",,,,,3,3,0,0,3,0,3,3,0,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110429161346P040016293847001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KINGSBRIDGE INTERNATIONAL, INC. 401K PROFIT SHARING PLAN","001","2002-01-01","KINGSBRIDGE INTERNATIONAL, INC.",,,"2950 N. MADERA ROAD",,"SIMI VALLEY","CA","93065",,,,,,,,,,,,,,,,,,"954433579","8055278888","423990","KINGSBRIDGE INTERNATIONAL, INC.",,"2950 N. MADERA ROAD",,"SIMI VALLEY","CA","93065",,,,,,,"954433579","8055278888",,,,"2011-04-29T16:01:59-0500","PAUL FORSTER",,,,,32,30,1,2,33,0,33,11,1,,"2A2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-04-29","Filed with authorized/valid electronic signature",, "20110504102955P030250043360001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"MICHAEL G. ZAMAGIAS INTEREST, LTD. 401(K) PLAN","001","1997-09-01","MICHAEL G. ZAMAGIAS INTEREST, LTD.",,,"336 4TH AVENUE",,"PITTSBURGH","PA","15222",,,,,,,"336 4TH AVENUE",,"PITTSBURGH","PA","15222",,,,,,,"251553820","4123917887","531310","MICHAEL G. ZAMAGIAS INTEREST, LTD.",,"336 4TH AVENUE",,"PITTSBURGH","PA","15222",,,,,,,"251553820","4123917887",,,,"2011-05-04T10:28:22-0500","ADELE BONASSI",,,,,26,20,0,2,22,0,22,18,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110426183016P040228288272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BEATTIE LAW FIRM PENSION PLAN","002","2004-01-01","BEATTIE LAW FIRM",,,"4300 GRAND AVENUE",,"DES MOINES","IA","503122426",,,,,,,,,,,,,,,,,,"421480807","5152631000","541110","BEATTIE LAW FIRM",,"4300 GRAND AVENUE",,"DES MOINES","IA","503122426",,,,,,,"421480807","5152631000",,,,"2011-04-26T18:30:11-0500","RUSSELL J. SNOW",,,,,7,6,0,0,6,0,6,,,,"1A3D1I",,"1","0","1","0","1","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504103259P030016464055001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"FAMILY CARE CENTERS PC 401(K) PLAN","001","1999-01-01","FAMILY CARE CENTERS",,,"2345 MAIN STREET",,"TEWKSBURY","MA","01876",,,,,,,"2345 MAIN STREET",,"TEWKSBURY","MA","01876",,,,,,,"043454375","9786589931","621111","FAMILY CARE CENTERS",,"2345 MAIN STREET",,"TEWKSBURY","MA","01876",,,,,,,"043454375","9786589931",,,,"2011-05-04T10:32:21-0500","JODY NAIMARK",,,,,12,11,0,2,13,0,13,13,1,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110504135528P040017138343001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SENECA TELEPHONE COMPANY 401K PLAN","002","1973-12-01","SENECA TELEPHONE COMPANY",,,"PO BOX 329",,"SENECA","MO","648650329",,,,,,,,,,,,,,,,,,"440566131","4177762247","517000","SENECA TELEPHONE COMPANY",,"PO BOX 329",,"SENECA","MO","648650329",,,,,,,"440566131","4177762247",,,,"2011-05-04T13:55:02-0500","JAY MITCHELL",,,,,24,22,1,0,23,0,23,23,1,,"2E2H2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110426163244P040228074176001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEALTHPARTNERS MEDICAL GROUP EMPLOYEE CAFETERIA PLAN","505","2003-01-01","HEALTHPARTNERS MEDICAL GROUP LLC",,,"1225 EAST COOLSPRING AVENUE",,"MICHIGAN CITY","IN","46360",,,,,,,"1225 EAST COOLSPRING AVENUE",,"MICHIGAN CITY","IN","46360",,,,,,,"200474054","2198796531","621111","HEALTHPARTNERS MEDICAL GROUP LLC",,"1225 EAST COOLSPRING AVENUE",,"MICHIGAN CITY","IN","46360",,,,,,,"200474054","2198796531",,,,"2011-04-26T15:58:45-0500","AMY KELLER",,,,,148,151,,,151,,151,,,,,"4B4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426211534P030230485008001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM C. F. LAWLER, JR., DDS 401K PLAN","001","2005-01-01","WILLIAM C. F. LAWLER, JR., DDS",,,"3760 BURNING TREE DRIVE",,"BLOOMFIELD HILLS","MI","483021533",,,,,,,,,,,,,,,,,,"382476715","2485690439","621210","WILLIAM C. F. LAWLER, JR., DDS",,"3760 BURNING TREE DRIVE",,"BLOOMFIELD HILLS","MI","483021533",,,,,,,"382476715","2485690439",,,,"2011-04-26T21:12:01-0500","WILLIAM C F LAWLER JR DDS",,,,,5,4,0,1,5,0,5,5,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426122325P040008520822001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"COMBINE INTERNATIONAL, INC. GROUP EMPLOYEE BENEFIT PLAN","501","2009-01-01","COMBINE INTERNATIONAL, INC.",,,"354 INDUSCO COURT",,"TROY","MI","48083",,,,,,,"354 INDUSCO COURT",,"TROY","MI","48083",,,,,,,"382160071","2485859900","423940","COMBINE INTERNATIONAL, INC.",,"354 INDUSCO COURT",,"TROY","MI","48083",,,,,,,"382160071","2485859900",,,,"2011-04-26T12:09:02-0500","ROGER PARSONS",,,,,123,176,0,0,176,0,176,0,0,,,"4A4B4D4E4H","1","0","0","1","1","0","0","1",,"0","0",,,"1","3",,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504104826P030016466295001","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"NATURESCAPE INC HEALTH REIMBURSEMENT ARRANGEMENT","607","2005-03-01","NATURESCAPE INC",,,"W12601 JANESVILLE ROAD",,"MUSKEGO","WI","53150",,,,,,,,,,,,,,,,,,"030448406","4144254331","238900","NATURESCAPE INC",,"W12601 JANESVILLE ROAD",,"MUSKEGO","WI","53150",,,,,,,"030448406","4144254331",,,,"2011-05-04T05:46:17-0500","DAVID WOLFE",,,,,111,90,,,90,,90,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110422080400P040015028407001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TOWN FINANCIAL CORPORATION GROUP DISABILITY PLAN","503","2001-10-01","TOWN FINANCIAL CORPORATION",,,"3206 N. WALNUT STREET",,"HARTFORD CITY","IN","47348",,,,,,,"3206 N. WALNUT STREET",,"HARTFORD CITY","IN","47348",,,,,,,"351147529","7653481606","551111","TOWN FINANCIAL CORPORATION",,"3206 N. WALNUT STREET",,"HARTFORD CITY","IN","47348",,,,,,,"351147529","7653481606",,,,"2011-04-22T07:59:52-0500","SHANNA MCCLURE",,,,,152,150,0,0,150,0,150,0,0,,,"4F4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",, "20110504175416P040054516145001","2007-03-01","2008-02-29","2",,"0","1","0","0","0","0","0","0","0",,"CRANEVEYOR CORP. EMPLOYEE STOCK OWNERSHIP PLAN","002","1989-03-01","CRANEVEYOR CORP.",,,"1524 NORTH POTRERO AVENUE",,"SOUTH EL MONTE","CA","917333017",,,,,,,,,,,,,,,,,,"951466376","6264421524","423800","CRANEVEYOR CORP.",,"1524 NORTH POTRERO AVENUE",,"SOUTH EL MONTE","CA","917333017",,,,,,,"951466376","6264421524",,,,"2011-05-04T17:53:59-0500","THOMAS M. SAUNDERS",,,,,130,93,3,32,128,0,128,124,3,,"2I2O2Q",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110426103756P030229262400001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"JANITOR'S WAREHOUSE 401(K) RETIREMENT PLAN","001","1999-01-01","JANITOR'S WAREHOUSE, INC.",,,"4610 BRITTMOORE RD.",,"HOUSTON","TX","77041",,,,,,,"4610 BRITTMOORE RD.",,"HOUSTON","TX","77041",,,,,,,"760372986","7138568686","424100","JANITOR'S WAREHOUSE, INC.",,"4610 BRITTMOORE RD.",,"HOUSTON","TX","77041",,,,,,,"760372986","7138568686",,,,"2011-04-26T10:37:18-0500","BARBARA BARNES",,,,,30,21,0,5,26,0,26,17,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426141821P030008144790001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"FLEXIBLE SPENDING PLAN","504","1992-04-01","LEO A DALY COMPANY",,,"8600 INDIAN HILLS DRIVE",,"OMAHA","NE","68114",,,,,,,"8600 INDIAN HILLS DRIVE",,"OMAHA","NE","68114",,,,,,,"470363104","4023904328","541310","LEO A DALY COMPANY",,"8600 INDIAN HILLS DRIVE",,"OMAHA","NE","68114",,,,,,,"470363104","4023904328",,,,"2011-04-26T14:18:06-0500","JODY PRICE",,,,,200,219,,,219,,219,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504133643P030007718642001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EASTMAN CREDIT UNION EMPLOYEE WELFARE PLAN","502","2002-01-01","EASTMAN CREDIT UNION",,,"2021 MEADOWVIEW LANE",,"KINGSPORT","TN","37660",,,,,,,,,,,,,,,,,,"626039479","4232298200","522130","EASTMAN CREDIT UNION",,"2021 MEADOWVIEW LANE",,"KINGSPORT","TN","37660",,,,,,,"626039479","4232298200",,,,"2011-05-04T13:36:39-0500","CAROL CROSS","2011-05-04T13:36:39-0500","CAROL CROSS",,,406,429,2,4,435,,,,,,,"4A4B4D4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110426062210P040226884736001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"MARK E. PREVITT, D.M.D., LLC RETIREMENT PLAN","001","2002-01-01","MARK E. PREVITT, D.M.D., LLC",,,"676 NEW HAVEN AVENUE",,"DERBY","CT","06418",,,,,,,,,,,,,,,,,,"061622999","2037341411","621210","MARK E. PREVITT, D.M.D., LLC",,"676 NEW HAVEN AVENUE",,"DERBY","CT","06418",,,,,,,"061622999","2037341411",,,,"2011-04-26T07:21:56-0500","MARK E. PREVITT",,,,,8,8,0,0,8,0,8,8,0,,"2A2E2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504095618P040017105479001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE PANTRY, INC. EMPLOYEE ASSISTANCE PLAN","511","2008-05-01","THE PANTRY, INC.",,,"1801 DOUGLAS DRIVE",,"SANFORD","NC","273311410",,,,,,,"PO BOX 1410",,"SANFORD","NC","273311410",,,,,,,"561574463","9197746700","447100","THE PANTRY, INC.",,"1801 DOUGLAS DRIVE",,"SANFORD","NC","273311410",,,,,,,"561574463","9197746700",,,,"2011-05-04T09:56:15-0500","DIANA KING","2011-05-04T09:56:15-0500","DIANA KING",,,13377,13981,0,0,13981,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110422111933P030014445111001","2010-03-09","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"N & N HOLDINGS, INC. 401K PLAN","001","2010-03-09","N & N HOLDINGS, INC.",,,"125 DARBY DRIVE",,"WINCHESTER","VA","22602",,,,,,,,,,,,,,,,,,"272077010","5403274799","811190","N & N HOLDINGS, INC.",,"125 DARBY DRIVE",,"WINCHESTER","VA","22602",,,,,,,"272077010","5403274799",,,,"2011-04-22T11:19:24-0500","NATHAN NEWMAN",,,,,0,5,0,0,5,0,5,2,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",, "20110426101544P040227323936001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LIEBOVICH BROS., INC. GROUP LIFE PLAN","503","1987-01-01","LIEBOVICH BROS., INC.","LIEBOVICH BROS., INC.",,"2116 PRESTON STREET",,"ROCKFORD","IL","61102",,,,,,,"2116 PRESTON STREET",,"ROCKFORD","IL","61102",,,,,,,"362416641","8159873200","331200","LIEBOVICH BROS., INC.",,"2116 PRESTON STREET",,"ROCKFORD","IL","61102",,,,,,,"362416641","8159873200",,,,"2011-04-26T10:15:29-0500","BARBARA JACKSON",,,,,1055,1033,0,0,1033,0,1033,0,0,0,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426124537P030015128615001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MOORADIANS SAVINGS PLAN","001","2003-03-01","MOORADIANS FURNITURE",,,"800 CENTRAL AVE",,"ALBANY","NY","122061602",,,,,,,,,,,,,,,,,,"140894420","5186894409","442110","MOORADIANS FURNITURE",,"800 CENTRAL AVE",,"ALBANY","NY","122061602",,,,,,,"140894420","5186894409",,,,"2011-04-26T12:42:14-0500","TAMMY MUELLER",,,,,43,28,0,8,36,0,36,17,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504131442P040248145872001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SUNGARDEN MONTESSORI CENTER TSA PLAN","003","2009-07-01","SUNGARDEN MONTESSORI CENTER, INC.",,,"2284 LONG STREET",,"WEST LINN","OR","97068",,,,,,,"2284 LONG STREET",,"WEST LINN","OR","97068",,,,,,,"930825064","5306552609","611000","SUNGARDEN MONTESSORI CENTER, INC.",,"2284 LONG STREET",,"WEST LINN","OR","97068",,,,,,,"930825064","5036552609",,,,"2011-05-04T13:14:13-0500","ANN MESSICK",,,,,1,0,1,0,1,0,1,1,0,,"2M",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110426145927P030048928081001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PALOS ANIMAL HOSPITAL, PC 401K AND PROFIT SHARING PLAN","003","1996-01-01","PALOS ANIMAL HOSPITAL, PC",,,"11917 S HARLEM AVE.",,"PALOS HEIGHTS","IL","60463",,,,,,,,,,,,,,,,,,"362824075","7084486600","621399","PALOS ANIMAL HOSPITAL, PC",,"11917 S HARLEM AVE.",,"PALOS HEIGHTS","IL","60463",,,,,,,"362824075","7084486600",,,,"2011-04-26T14:59:17-0500","KAREN DIGNAN",,,,,30,25,0,2,27,0,27,19,0,,"2E2F2G2J2K3D",,,,"1",,"1",,"1",,"1",,,,"1","1","2",,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504161026P040054477137001","2010-07-01","2010-07-31","2",,"0","0","0","1","0","1","0","0","0",,"ROBERT H. PETERSON CO. HEALTH INSURANCE","501","2008-07-01","ROBERT H. PETERSON CO.",,,"14724 EAST PROCTOR AVENUE",,"CITY OF INDUSTRY","CA","917463202",,,,,,,,,,,,,,,,,,"953137229","6263695085","561490","ROBERT H. PETERSON CO.",,"14724 EAST PROCTOR AVENUE",,"CITY OF INDUSTRY","CA","917463202",,,,,,,"953137229","6263695085",,,,"2011-05-04T16:08:39-0500","TOD CORRIN",,,,,245,245,0,0,245,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110426153443P040227961408001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","0","0",,"GREENBERG & GREENBERG A PROFESSIONAL LAW CORPORATION MONEY PURCHASE PENSION PLAN","002","1986-07-01","GREENBERG & GREENBERG A PROFESSIONAL LAW CORPORATION",,,"3031 WEST MARCH LANE SUITE 120",,"STOCKTON","CA","952190000",,,,,,,"3031 WEST MARCH LANE SUITE 120",,"STOCKTON","CA","952190000",,,,,,,"942677447","2099564550","541110","GREENBERG & GREENBERG A PROFESSIONAL LAW CORPORATION",,"3031 WEST MARCH LANE SUITE 120",,"STOCKTON","CA","952190000",,,,,,,"942677447","2099564550",,,,"2011-04-26T15:34:36-0500","PENSION FILERS",,,,,3,2,0,1,3,0,3,3,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110504100035P040054312481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TILT-CON CORPORATION PROFIT SHARING PLAN","001","1996-01-01","TILT-CON CORPORATION",,,"1003 ORIENTA AVENUE",,"ALTAMONTE SPRINGS","FL","327015058",,,,,,,,,,,,,,,,,,"592786869","4078348458","236200","TILT-CON CORPORATION",,"1003 ORIENTA AVENUE",,"ALTAMONTE SPRINGS","FL","327015058",,,,,,,"592786869","4078348458",,,,"2011-05-04T09:57:45-0500","MARK THEISEN",,,,,229,75,6,10,91,0,91,55,0,,"2A2E2G2J2K3D2F",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",, "20110422115005P030003992693001","2008-01-01","2008-12-31","2",,,,,,,,,,,,"TRYLON COMMUNICATIONS INC 401(K) PLAN","001","2000-01-01","TRYLON COMMUNICATIONS INC",,,"41 EAST 11TH STREET","11TH FLOOR","NEW YORK","NY","10003",,,,,,,,,,,,,,,,,,"133587034","2129056060","541800","TRYLON COMMUNICATIONS INC",,"41 EAST 11TH STREET","11TH FLOOR","NEW YORK","NY","10003",,,,,,,"133587034","2129056060",,,,"2011-04-22T12:49:53-0500","LLOYD TRUFELMAN",,,,,11,8,0,4,12,0,12,13,0,,"2E2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",, "20110426102728P040227348096001","2010-01-01","2010-12-28","2",,"0","1","1","1","0","0","0","0","0",,"HOMESTEAD FINANCIAL CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","001","1962-01-01","HOMESTEAD FINANCIAL CORPORATION",,,"P.O. BOX 338",,"BEATRICE","NE","683100338",,,,,,,"120 NORTH 6TH STREET",,"BEATRICE","NE","683103907",,,,,,,"470629632","4022234041","551111","HOMESTEAD FINANCIAL CORPORATION",,"P.O. BOX 338",,"BEATRICE","NE","683100338",,,,,,,"470629632","4022234041",,,,"2011-04-26T10:27:23-0500","ROBERT NOOTZ",,,,,58,0,0,0,0,0,0,0,0,,"2I2O3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426105837P030015110071001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOCAPA 401(K) PROFIT SHARING PLAN","001","2007-01-01","SOCAPA, INC.",,,"1274 HIGH RIDGE ROAD",,"SAINT JOHNSBURY","VT","05819",,,,,,,,,,,,,,,,,,"510460491","8027483520","711100","SOCAPA, INC.",,"1274 HIGH RIDGE ROAD",,"SAINT JOHNSBURY","VT","05819",,,,,,,"510460491","8027483520",,,,"2011-04-26T10:49:25-0500","JAMIE YERKERS",,,,,3,3,0,0,3,0,3,3,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110426113254P030008131894001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRINITY MEDICAL CENTER WEST WEEKLY INDEMNITY PLAN","502","1980-01-06","TRINITY MEDICAL CENTER WEST",,,"4000 JOHNSON ROAD",,"STEUBENVILLE","OH","43952",,,,,,,"4000 JOHNSON ROAD",,"STEUBENVILLE","OH","43952",,,,,,,"340875691","7402648000","622000","TRINITY MEDICAL CENTER WEST",,"4000 JOHNSON ROAD",,"STEUBENVILLE","OH","43952",,,,,,,"349875691","7402648000",,,,"2011-04-26T06:51:10-0500","FRED BROWER","2011-04-26T06:51:40-0500","FRED BROWER",,,936,938,0,0,938,,938,,,,,"4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110422134507P030219433184003","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"MICHAEL HAREL RETIREMENT MP PLAN","003","1982-01-01","MICHAEL HAREL",,,"2 EAST 77TH STREET",,"NEW YORK","NY","10021",,,,,,,,,,,,,,,,,,"132783607","2128796067","621111","MICHAEL HAREL",,"2 EAST 77TH STREET",,"NEW YORK","NY","10021",,,,,,,"132783607","2128796067",,,,"2011-04-22T14:18:43-0500","MICHAEL HAREL","2011-04-22T13:44:49-0500","MICHAEL HAREL",,,1,0,0,0,,0,,1,,,"2N3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110422115222P030219226704001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ROBERT J KOREC CPA PC EMPLOYEE PSP 401 K TRUST","101","1997-01-01","ROBERT J KOREC CPA PC",,"ROBERT KOREC","304 MANOR DR",,"NAZARETH","PA","18064",,,,,,,"304 MANOR DR",,"NAZARETH","PA","18064",,,,,,,"223484678","6107596101","541211","ROBERT J KOREC CPA PC","ROBERT KOREC","304 MANOR DR",,"NAZARETH","PA","18064",,,,,,,"223484678","6107596101",,,,"2011-04-22T11:51:22-0500","ROBERT KOREC",,,,,2,2,0,0,2,0,2,0,0,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-04-22","Filed with authorized/valid electronic signature",, "20110504073705P030249705504006","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"EAGLE GROUP, INC. 401(K) PLAN","002","1994-04-01","EAGLE GROUP, INC.",,,"P.O. BOX 1157",,"BAY CITY","MI","487060157",,,,,,,"P.O. BOX 1157",,"BAY CITY","MI","487060157",,,,,,,"382735158","9898921044","444190","EAGLE GROUP, INC.",,"P.O. BOX 1157",,"BAY CITY","MI","487060157",,,,,,,"382735158","9898921044",,,,"2011-02-25T08:55:42-0600","RANDY HOWELL","2011-02-25T08:55:42-0600","RANDY HOWELL",,,7,0,,,0,,0,0,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110426121126P040015718279001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MASTER RECORDING SUPPLY INC PROFIT SHARING PLAN AND TRUST","001","1998-05-01","MASTER RECORDING SUPPLY INC",,,"510 E GOETZ AVE",,"SANTA ANA","CA","927073712",,,,,,,"510 E GOETZ AVE",,"SANTA ANA","CA","927073712",,,,,,,"953246452","9495745800","541990","MASTER RECORDING SUPPLY INC",,"510 E GOETZ AVE",,"SANTA ANA","CA","927073712",,,,,,,"953246452","9495745800",,,,"2011-04-26T11:57:02-0500","BLAIR LAGRANDEUR",,,,,14,10,0,1,11,0,11,11,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-04-26","Filed with authorized/valid electronic signature",, "20110511131342P040018386199001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"JOHN D EDWARDS MD INC 401-K PROFIT SHARING PLAN","001","2005-01-01","JOHN D. EDWARDS M.D. INC.",,,"P.O. BOX,37959",,"CINCINNATI","OH","45222",,,,,,,"115 LINDEN AVE",,"CINCINNATI","OH","45215",,,,,,,"202076223",,"621111","JOHN D. EDWARDS M.D. INC.",,"P.O. BOX,37959",,"CINCINNATI","OH","45222",,,,,,,"202076223",,,,,"2011-05-11T08:31:47-0500","JOHN EDWARDS","2011-05-11T08:31:47-0500","JOHN EDWARDS",,,4,0,,,0,,0,0,,,"2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110511182126P040018431175001","2010-01-01","2010-12-31","2",,"0",,"0","0",,,,,,,"T W LEWIS COMPANY RETIREMENT PLAN","001","1993-01-01","T W LEWIS COMPANY",,,"850 W ELLIOT RD","SUITE 101","TEMPE","AZ","85284",,,,,,,"850 W ELLIOT RD","SUITE 101","TEMPE","AZ","85284",,,,,,,"860696002","4808200807","236110","T W LEWIS COMPANY",,"850 W ELLIOT RD","SUITE 101","TEMPE","AZ","85284",,,,,,,"860696002","4808200807",,,,"2011-05-11T18:21:14-0500","GINA SELF",,,,,66,34,0,30,64,0,64,59,6,,"2E2F2G2J2K2T3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513111512P030018010551001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WPTCO PROFIT SHARING PLAN","001","1987-01-01","AMVESCO, INC. DBA WPTCO",,,"PO BOX 40790",,"EUGENE","OR","974040138",,,,,,,,,,,,,,,,,,"930573676","5413439227","531390","ADMINISTRATIVE COMMITTEE",,"PO BOX 40790",,"EUGENE","OR","974040138",,,,,,,"930965531","5413439227",,,,"2011-05-13T11:14:55-0500","JANET WILLIAMS",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110513132042P040271423680002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"DICKINSON WRIGHT PLLC BASIC & OPTIONAL CONTRIBUTORY LIFE INSURANCE PLAN","502","1956-01-01","DICKINSON WRIGHT PLLC",,,"500 WOODWARD AVE, STE 4000",,"DETROIT","MI","48226",,,,,,,,,,,,,,,,,,"381364333","3132233500","541110","DICKINSON WRIGHT PLLC BENEFITS COMMITTEE",,"500 WOODWARD AVE, STE 4000",,"DETROIT","MI","48226",,,,,,,"382106860","3132233563",,,,"2011-05-13T09:03:55-0500","DEBORAH L. GRACE",,,,,422,0,0,0,0,,,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110510160501P030266416832001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"UNREAL MARKETING SOLUTIONS EMPLOYEE SAVINGS AND RETIREMENT PLAN","001","2003-05-01","UNREAL MARKETING SOLUTIONS, INC",,,"101 EAST 8TH AVENUE","4TH FLOOR","CONSHOHOCKEN","PA","19428",,,,,,,,,,,,,,,,,,"710873245","6106646805","519100","UNREAL MARKETING SOLUTIONS, INC",,"101 EAST 8TH AVENUE","4TH FLOOR","CONSHOHOCKEN","PA","19428",,,,,,,"710873245","6106646805",,,,"2011-05-10T15:58:39-0500","MICHAEL STALBAUM",,,,,46,36,0,13,49,0,49,37,1,,"2F2G2J2K2E2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510152223P030266327376001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GREEN RENEWABLE CONCEPTS INC. 401(K) PLAN","001","2008-06-11","GREEN RENEWABLE CONCEPTS INC.",,,"9245 WEST QUARLES PLACE",,"LITTLETON","CO","80128",,,,,,,,,,,,,,,,,,"262785766","3035886593","531190","GREEN RENEWABLE CONCEPTS INC.",,"9245 WEST QUARLES PLACE",,"LITTLETON","CO","80128",,,,,,,"262785766","3035886593",,,,"2011-05-10T15:22:17-0500","SUE SPAHLINGER","2011-05-10T15:11:22-0500","SUE SPAHLINGER",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513090052P040018725991001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VIMI INC 401K PROFIT SHARING PLAN","001","2006-08-11","VIMI INC 401K PROFIT SHARING PLAN","VIMI INC",,"2612 SUMMERFIELD DRIVE",,"LOUISVILLE","KY","40220",,,,,,,,,,,,,,,,,,"331105079","5024915723","452900","VIMI INC 401K PROFIT SHARING PLAN",,"2612 SUMMERFIELD DRIVE",,"LOUISVILLE","KY","40220",,,,,,,"331105079","5024915723",,,,"2011-05-04T10:55:06-0500","MIKE MEEHAN","2011-04-30T09:56:42-0500","MIKE MEEHAN",,,2,2,,,2,,2,1,,,"3E2K2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110511105007P030017646503002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MARPLE MEDICAL ASSOCIATES PROFIT SHARING PLAN","001","1976-01-01","MARPLE MEDICAL ASSOCIATES",,,"DELAWARE COUNTY MED. CTR. SUITE 21",,"BROOMALL","PA","19008",,,,,,,"DELAWARE COUNTY MED CENTER","SUITE 21","BROOMALL","PA","19008",,,,,,,"231718130","6103535840","621111","JULIAN GLADSTONE, M.D. DELAWARE COUNTY MEDICAL CENTER",,"1999 SPROUL ROAD, SUITE 21",,"BROOMALL","PA","19008",,,,,,,"232081431",,,,,"2011-02-15T10:40:06-0600","JULIAN GLADSTONE",,,,,35,32,,3,35,,35,37,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511120700P040266027808001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NEPTUNE & COMPANY 401(K) RETIREMENT PLAN","002","2000-01-01","NEPTUNE & CO.",,,"1505 15TH ST.","SUITE B","LOS ALAMOS","NM","87544",,,,,,,"1505 15TH ST.","SUITE B","LOS ALAMOS","NM","87544",,,,,,,"541628888","5056620707","541600","NEPTUNE & CO.",,"1505 15TH ST.","SUITE B","LOS ALAMOS","NM","87544",,,,,,,"541628888","5056620707",,,,"2011-05-11T12:04:44-0500","DONNA GEMEINHART",,,,,33,30,0,5,35,1,36,36,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513104455P030009694518001","2003-07-01","2004-06-30","2",,"0","0","0","0","0","0","0","1","0",,"JIM BURKE FORD WELFARE PLAN","501","1991-01-01","JIM BURKE FORD",,,"2001 OAK STREET",,"BAKERSFIELD","CA","93301",,,,,,,,,,,,,,,,,,"952275238","6613283616","441110","JIM BURKE FORD",,"2001 OAK STREET",,"BAKERSFIELD","CA","93301",,,,,,,"952275238","6613283616",,,,"2011-05-12T13:36:47-0500","MARIA PAINE","2011-05-13T10:44:52-0500","TROY FRINGER",,,313,307,,,307,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513104513P030273762304003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HALLAU SHOOTS & COMPANY PROFIT SHARING PLAN","001","1998-01-01","HALLAU SHOOTS & COMPANY, INC.",,,"115 CHOCTAW CIRCLE",,"CHANHASSEN","MN","55317",,,,,,,,,,,,,,,,,,"411941461","6123392400","541800","HALLAU SHOOTS & COMPANY, INC.",,"115 CHOCTAW CIRCLE",,"CHANHASSEN","MN","55317",,,,,,,"411941461","6123392400",,,,"2011-02-11T15:11:46-0600","CHARLES B HALLAU","2011-02-11T15:11:53-0600","CHARLES B HALLAU",,,4,2,0,1,3,0,3,3,1,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513115214P040004615301001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"THE PUBLIC LIBRARY OF YOUNGSTOWN & MAHONING COUNTY WRAP WELFARE BENEFITS PLAN (FORMERLY KNOWN AS HOSPITALIZATION BENEFITS)","501","1980-01-01","REUBEN MCMILLAN FREE LIBRARY ASSN","PUBLIC LIBRARY OF YOUNGSTOWN & MAHO","SUSAN MERRIMAN CLERK TREASURER","305 WICK AVENUE",,"YOUNGSTOWN","OH","44503",,,,,,,,,,,,,,,,,,"346003201","3307448636","519100","REUBEN MCMILLAN FREE LIBRARY ASSN","SUSAN MERRIMAN CLERK TREASURER","305 WICK AVENUE",,"YOUNGSTOWN","OH","44503",,,,,,,"346003201","3307448636",,,,"2011-05-13T11:48:25-0500","SUSAN MERRIMAN",,,,,136,108,2,0,110,,,,,,,"4A4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110513120002P030018017687001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"SILVER OAK CELLARS 401(K) PROFIT SHARING PLAN","333","1984-01-01","SILVER OAK WINE CELLARS, L.P.",,,"1183 DUNAWEAL LANE",,"CALISTOGA","CA","94515",,,,,,,,,,,,,,,,,,"942327363","7079422495","312130","THE ADMINISTRATIVE COMMITTEE",,"1183 DUNAWEAL LANE",,"CALISTOGA","CA","94515",,,,,,,"680044386","7079422495",,,,"2011-05-13T11:59:58-0500","RAYMOND DUNCAN",,,,,116,101,0,12,113,0,113,113,3,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110511162257P030017691671001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WINDER EYE CARE CENTER PROFIT SHARING PLAN","003","1997-06-01","WINDER EYE CARE CENTER",,"MARK W. HALL","P.O. BOX 608",,"WINDER","GA","30680",,,,,,,,,,,,,,,,,,"581543381","7708672505","621320","WINDER EYE CARE CENTER","MARK W. HALL","P.O. BOX 608",,"WINDER","GA","30680",,,,,,,"581543381","7708672505",,,,"2011-05-11T16:22:51-0500","M. PAUL TURNER",,,,,13,13,0,0,13,0,13,13,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513124440P040018759335001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"HIS PASSION, INC. 401K PLAN","001","2008-07-08","HIS PASSION, INC.",,,"10101 SLATER AVE, SUITE 203B",,"FOUNTAIN VALLEY","CA","92708",,,,,,,,,,,,,,,,,,"262981546","7145931177","624100","HIS PASSION, INC.",,"10101 SLATER AVE, SUITE 203B",,"FOUNTAIN VALLEY","CA","92708",,,,,,,"262981546","7145931177",,,,"2011-05-13T12:44:30-0500","GEORGE MILLER","2011-05-13T12:44:30-0500","GEORGE MILLER",,,2,4,0,0,4,0,4,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509111423P030017297863001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"SILVIA Y. YUEN, MD BASIC PLAN","001","1994-01-01","SILVIA Y. YUEN, M.D.",,,"450 SUTTER STREET, SUITE 1530",,"SAN FRANCISCO","CA","94108",,,,,,,,,,,,,,,,,,"943179202","4159864302","621111","SILVIA Y. YUEN, M.D.",,"450 SUTTER STREET, SUITE 1530",,"SAN FRANCISCO","CA","94108",,,,,,,"943179202","4159864302",,,,"2011-05-09T11:14:11-0500","SYLVIA Y. YUEN, MD",,,,,2,0,0,0,0,0,0,0,0,,"2C2F2G2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510121224P030009417462001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAGELS 'N' STUFF, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1997-04-01","BAGELS N STUFF, INC.",,,"127 SOUTH FIR P.O. BOX 575",,"TELLURIDE","CO","81435",,,,,,,,,,,,,,,,,,"840728515","9707284705","445291","BAGELS N STUFF, INC.",,"127 SOUTH FIR P.O. BOX 575",,"TELLURIDE","CO","81435",,,,,,,"840728515","9707284705",,,,"2011-05-10T12:08:49-0500","BECKY SMALL",,,,,18,3,2,6,11,0,11,11,0,,"2E2J2K2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510105106P030265772928001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORNERSTONE COMMUNICATIONS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","CORNERSTONE COMMUNICATIONS INC",,,"30954 VERGON DR",,"BURLINGTON","WI","53105",,,,,,,,,,,,,,,,,,"391930708","2625349012","541511","CORNERSTONE COMMUNICATIONS INC",,"30954 VERGON DR",,"BURLINGTON","WI","53105",,,,,,,"391930708","2625349012",,,,"2011-05-10T10:51:03-0500","CORNERSTONE COMMUNICATIONS INC",,,,,6,6,0,0,6,0,6,6,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511154443P030017687943001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPECTRUM LABS, INC. 401K PSP","001","2007-01-01","SPECTRUM LABS, INC.",,,"2143 E. 5TH STREET",,"TEMPE","AZ","852813034",,,,,,,,,,,,,,,,,,"860645829","4804648971","541990","SPECTRUM LABS, INC.",,"2143 E. 5TH STREET",,"TEMPE","AZ","852813034",,,,,,,"860645829","4804648971",,,,"2011-05-11T15:37:42-0500","MERVYN LEVIN",,,,,32,26,8,0,34,0,34,34,0,,"2E2F2G3D2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511081647P040265579632006","2010-04-01","2011-03-31","2",,,,,,,,,,,,"KEITS GREENHOUSE & FLORAL CENTER, INC. PROFIT SHARING PLAN","001","1990-04-01","KEITS GREENHOUSE & FLORAL CENTER, INC.",,,"1717 S. EUCLID AVENUE",,"BAY CITY","MI","48706",,,,,,,"1717 S. EUCLID AVENUE",,"BAY CITY","MI","48706",,,,,,,"382906299","9896844571","111400","KEITS GREENHOUSE & FLORAL CENTER, INC.",,"1717 S. EUCLID AVENUE",,"BAY CITY","MI","48706",,,,,,,"382906299","9896844571",,,,"2011-05-13T11:29:20-0500","ROBERT M. KEIT","2011-05-13T11:29:20-0500","ROBERT M. KEIT",,,16,12,,4,16,,16,16,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110511182106P040266781088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AAA CAROLINAS HEALTH AND WELFARE PLAN","503","2003-10-01","AAA CAROLINAS",,,"PO BOX 29600","6600 AAA DRIVE","CHARLOTTE","NC","28229",,,,,,,,,,,,,,,,,,"560165100","7045697870","561500","AAA CAROLINAS",,"PO BOX 29600","6600 AAA DRIVE","CHARLOTTE","NC","28229",,,,,,,"560165100","7045697870",,,,"2011-05-11T18:21:02-0500","CHRISTINA JOHNSON",,,,,993,1115,0,0,1115,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511103350P030268439488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT K. MCNURLEN, DDS SAFE HARBOR PROFIT SHARING 401(K) PLAN","001","2004-01-01","ROBERT K. MCNURLEN, DDS",,,"5515 LITTLE LEAF TRAIL",,"WEST DES MOINES","IA","50266",,,,,,,"5515 LITTLE LEAF TRAIL",,"WEST DES MOINES","IA","50266",,,,,,,"421297381","5152234194","621210","ROBERT K. MCNURLEN, DDS",,"5515 LITTLE LEAF TRAIL",,"WEST DES MOINES","IA","50266",,,,,,,"421297381","5152234194",,,,"2011-05-10T18:51:10-0500","ROBERT MCNURLEN",,,,,9,6,0,1,7,0,7,7,0,,"2G2F2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110514114634P040060062033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LONG & QUYEN, INC. 401(K) PLAN","001","2008-01-01","LONG & QUYEN, INC.",,,"19031 TRIANGLE ROAD NW",,"ELK RIVER","MN","55330",,,,,,,,,,,,,,,,,,"460467519","7634413010","332700","LONG & QUYEN, INC.",,"19031 TRIANGLE ROAD NW",,"ELK RIVER","MN","55330",,,,,,,"460467519","7634413010",,,,"2011-05-14T11:40:13-0500","LONG DO",,,,,8,6,0,1,7,0,7,5,0,,"2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-14","Filed with authorized/valid electronic signature",, "20110513101820P040018737399001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HHZL MARKETING INC 401(K) SAFE HARBOR PLAN","001","2006-01-01","HHZL MARKETING INC",,,"PO BOX 21643",,"OWENSBORO","KY","42304",,,,,,,"300 ALVEY PARK DRIVE W",,"OWENSBORO","KY","42303",,,,,,,"300139933","2706880530","523130","HHZL MARKETING INC",,"PO BOX 21643",,"OWENSBORO","KY","42304",,,,,,,"300139933","2706880530",,,,"2011-05-12T14:29:29-0500","RICHARD HAYDEN",,,,,3,3,0,0,3,0,3,3,0,,"2E2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110510183528P040264157344001","2010-10-01","2010-11-30","2",,"0","0","0","1","0","0","0","0","0",,"VENTURA FOODS, LLC HEALTH PLAN","501","2008-10-01","VENTURA FOODS, LLC",,,"500 SOUTH PRAIRIE AVENUE",,"WAUKESHA","WI","53186",,,,,,,,,,,,,,,,,,"954589254","2625444444","311900","VENTURA FOODS, LLC",,"500 SOUTH PRAIRIE AVENUE",,"WAUKESHA","WI","53186",,,,,,,"954589254","2625444444",,,,"2011-05-10T18:35:22-0500","SONIA D. MADSEN",,,,,114,117,0,0,117,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110513113007P030018012759001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BETTER CARE MEDICAL GROUP, INC. PROFIT SHARING PLAN","001","2009-01-01","BETTER CARE MEDICAL GROUP, INC.",,,"1153 S. GARFIELD AVE.",,"ALHAMBRA","CA","91801",,,,,,,"BETTER CARE MEDICAL GROUP, INC.","1153 S. GARFIELD AVE.","ALHAMBRA","CA","91801",,,,,,,"262445994","6262811961","621111","BETTER CARE MEDICAL GROUP, INC.",,"1153 S. GARFIELD AVE.",,"ALHAMBRA","CA","91801",,,,,,,"262445994","6262811961",,,,"2011-05-13T11:30:03-0500","THERESA TSENG","2011-05-13T11:30:03-0500","THERESA TSENG",,,4,4,0,0,4,0,4,4,0,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516101826P030281389920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MODERN FAMILY DENTISTRY PROFIT SHARING PLAN","001","2008-01-01","MODERN FAMILY DENTISTRY",,,"3195 COLD SPRINGS ROAD",,"HUNTINGTON","PA","16652",,,,,,,"3195 COLD SPRINGS ROAD",,"HUNTINGTON","PA","16652",,,,,,,"571184742","8146437300","621210","MODERN FAMILY DENTISTRY",,"3195 COLD SPRINGS ROAD",,"HUNTINGTON","PA","16652",,,,,,,"571184742","8146437300",,,,"2011-05-16T10:18:21-0500","ANDREW T. WILSON","2011-05-16T10:18:21-0500","ANDREW T. WILSON",,,13,11,0,2,13,0,13,13,6,,"2A2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509060102P030262513632001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KICKHAEFER MANUFACTURING COMPANY HEALTH & WELFARE PLAN","502","1999-09-01","KICKHAEFER MANUFACTURING COMPANY LLC",,,"1221 S PARK STREET",,"PORT WASHINGTON","WI","530742127",,,,,,,,,,,,,,,,,,"830504276","2623775030","332110","KICKHAEFER MANUFACTURING COMPANY",,"1221 S PARK STREET",,"PORT WASHINGTON","WI","530742127",,,,,,,"830504276","2623775030",,,,"2011-05-09T06:00:36-0500","GERRY SCHWARZ",,,,,93,160,0,0,160,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110509070831P040057059073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN STEEL ERECTORS, INC. 401K PLAN","002","1995-01-01","AMERICAN STEEL ERECTORS, INC.",,,"PO BOX 185","328 SAWMILL ROAD","GREENFIELD","NH","030470185",,,,,,,,,,,,,,,,,,"020365518","6035476311","236200","AMERICAN STEEL ERECTORS, INC.",,"PO BOX 185","328 SAWMILL ROAD","GREENFIELD","NH","030470185",,,,,,,"020365518","6035476311",,,,"2011-05-09T07:00:50-0500","RAYMOND CILLEY",,,,,50,33,0,15,48,0,48,45,2,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110511104032P030017644615001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"INDUSTRIAL AUTOMATION ENGINEERING INC., EMPLOYEE 401(K) PLAN","001","1998-01-01","INDUSTRIAL AUTOMATION ENGINEERING, INC.",,,"14022 LINCOLN ST. NE",,"HAM LAKE","MN","55304",,,,,,,"14022 LINCOLN ST. NE",,"HAM LAKE","MN","55304",,,,,,,"411830769","7634503800","541330","INDUSTRIAL AUTOMATION ENGINEERING, INC.",,"14022 LINCOLN ST. NE",,"HAM LAKE","MN","55304",,,,,,,"411830769","7634503800",,,,"2011-05-10T14:01:53-0500","EVANN BEAUFEAUX",,,,,51,46,0,7,53,0,53,27,1,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513161540P030005029381001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE DALLAS ZOOLOGICAL SOCIETY 403(B) PLAN","005","1987-11-23","DALLAS ZOOLOGICAL SOCIETY",,,"650 S. R.L. THORNTON FREEWAY",,"DALLAS","TX","752033013",,,,,,,,,,,,,,,,,,"750964982","4695547400","712100","DALLAS ZOOLOGICAL SOCIETY",,"650 S. R.L. THORNTON FREEWAY",,"DALLAS","TX","752033013",,,,,,,"750964982","4695547400",,,,"2011-05-13T13:34:13-0500","MICHAEL MEADOWS","2011-05-13T13:34:13-0500","MICHAEL MEADOWS",,,,,,,,,,,,,"2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513063320P030017969975001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOLM & O HARA LLP 401(K) PROFIT SHARING PLAN","001","2001-01-01","HOLM & O HARA LLP",,,"3 WEST 35TH STREET, 9TH FLOOR",,"NEW YORK","NY","100012204",,,,,,,,,,,,,,,,,,"133591118","2126822280","541110","HOLM & O HARA LLP",,"3 WEST 35TH STREET, 9TH FLOOR",,"NEW YORK","NY","100012204",,,,,,,"133591118","2126822280",,,,"2011-05-13T06:33:18-0500","VINCENT O'HARA","2011-05-13T06:33:18-0500","VINCENT O'HARA",,,17,16,0,4,20,0,20,12,0,,"2A2E2G2J2K2R3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513083240P030273490784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NOVO GROUP, INC. 401(K) PLAN AND TRUST","001","2004-01-01","NOVO GROUP, INC.",,,"1033 N. MAYFAIR RD SUITE 310",,"MILWAUKEE","WI","53226",,,,,,,,,,,,,,,,,,"562385859","4147278755","541600","NOVO GROUP, INC.",,"1033 N. MAYFAIR RD SUITE 310",,"MILWAUKEE","WI","53226",,,,,,,"562385859","4147278755",,,,"2011-05-13T08:32:02-0500","DOUGLAS SINGER",,,,,78,27,0,25,52,0,52,37,0,,"2E2J2K2F2G3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110509145732P030263593056001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"W.J. COE & COMPANY 401K P/S PLAN","001","2006-01-01","W.J. COE & COMPANY",,,"832 NW 67TH STREET","SUITE 8","OKLAHOMA CITY","OK","731167651",,,,,,,,,,,,,,,,,,"731237814","4058584900","444190","W.J. COE & COMPANY",,"832 NW 67TH STREET",,"OKLAHOMA CITY","OK","731167651",,,,,,,"731237814","4058584900",,,,"2011-05-09T14:56:00-0500","WILLIAM COE",,,,,8,8,0,0,8,0,8,8,,,"2E2F2G2J2K3E",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110509152654P040261137376001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MORSE, MORSE & MORSE, INC. PROFIT SHARING PLAN","001","1981-10-06","MORSE, MORSE & MORSE, INC. A LAW CORPORATION",,,"760 W. 20TH STREET",,"MERCED","CA","95340",,,,,,,,,,,,,,,,,,"942777186","2093830132","541110","MORSE, MORSE & MORSE, INC. A LAW CORPORATION",,"760 W. 20TH STREET",,"MERCED","CA","95340",,,,,,,"942777186","2093830132",,,,"2011-05-09T15:19:59-0500","R. NEIL MORSE",,,,,9,7,0,2,9,,9,9,1,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110509153312P040018037415001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRANSTECH SYSTEMS INC 401(K) PROFIT SHARING PLAN & TRUST","002","2001-01-01","TRANSTECH SYSTEMS INC",,,"12142 NE SKY LANE","SUITE 130","AURORA","OR","97002",,,,,,,,,,,,,,,,,,"931148400","5036823292","541519","TRANSTECH SYSTEMS INC",,"12142 NE SKY LANE","SUITE 130","AURORA","OR","97002",,,,,,,"931148400","5036823292",,,,"2011-05-09T03:33:10-0500","TRANSTECH SYSTEMS INC",,,,,14,10,0,2,12,0,12,10,0,,"2E2G2J2K2R2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510135817P030056517585001","2010-01-28","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"M. MCLEAN INC. PROFIT SHARING PLAN","001","2010-01-28","M. MCLEAN INC.",,,"1205 N LOOP 1604 W #232",,"SAN ANTONIO","TX","78258",,,,,,,,,,,,,,,,,,"271778384","2107648200","453220","M. MCLEAN INC.",,"1205 N LOOP 1604 W #232",,"SAN ANTONIO","TX","78258",,,,,,,"271778384","2107648200",,,,"2011-05-10T13:57:55-0500","MARK MCLEAN",,,,,2,2,0,0,2,0,2,2,0,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510163306P040018232439001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAREAGE MANAGEMENT HEALTH & WELFARE PLAN","501","2002-12-01","CAREAGE MANAGEMENT, LLC",,,"1512 PIERCE STREET",,"SIOUX CITY","IA","51105",,,,,,,,,,,,,,,,,,"421493467","7122930117","623000","CAREAGE MANAGEMENT, LLC",,"1512 PIERCE STREET",,"SIOUX CITY","IA","51105",,,,,,,"421493467","7122930117",,,,"2011-05-10T16:29:33-0500","TERI GRUPP",,,,,288,293,9,0,302,,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510143320P040018213991001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SCENIC LANDSCAPING, LANDSCAPE TAPESTRY DESIGN GROUP LLC, AND GARDEN SOLUTIONS, INC. 401(K) PLAN","001","1999-01-01","SCENIC LANDSCAPING, L.L.C.",,,"7 ARGYLE STREET",,"HASKELL","NJ","07420",,,,,,,"7 ARGYLE STREET",,"HASKELL","NJ","07420",,,,,,,"223512333","9736169600","561730","SCENIC LANDSCAPING, L.L.C.",,"7 ARGYLE STREET",,"HASKELL","NJ","07420",,,,,,,"223512333","9736169600",,,,"2011-05-10T14:32:50-0500","LORA MUSSINA",,,,,71,69,0,3,72,0,72,14,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511110227P030268496176001","2010-09-02","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"550 PUBLISHING, INC. PROFIT SHARING PLAN","001","2010-09-02","550 PUBLISHING, INC.",,,"P.O. BOX 529",,"RIDGEWAY","CO","81432",,,,,,,,,,,,,,,,,,"273386245","9032358957","511110","550 PUBLISHING, INC.",,"P.O. BOX 529",,"RIDGEWAY","CO","81432",,,,,,,"273386245","9032358957",,,,"2011-05-11T10:49:39-0500","ALAN TODD",,,,,2,2,,,2,,2,2,,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511113545P030268564160001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEI YOUNG KIM, MD, PROFIT SHARING PLAN","001","1989-01-01","HEI YOUNG KIM","HEI YOUNG KIM, MD",,"34 LAKE DRIVE",,"NORTH BRUNSWICK","NJ","08902",,,,,,,"34 LAKE DRIVE",,"NORTH BRUNSWICK","NJ","08902",,,,,,,"222947868","7322578777","621111","HEI YOUNG KIM",,"34 LAKE DRIVE",,"NORTH BRUNSWICK","NJ","08902",,,,,,,"222947868","7322578777",,,,"2011-05-11T11:35:15-0500","HEI KIM",,,,,2,2,0,0,2,0,2,2,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511121740P040009958182001","2007-09-01","2008-08-31","2",,"0","0","0","0","0","0","0","1","0",,"FIRST SOUTH BANK WELFARE BENEFIT PLAN","501","2002-09-01","FIRST SOUTH BANK",,,"1311 CAROLINA AVENUE",,"WASHINGTON","NC","27889",,,,,,,,,,,,,,,,,,"560266599","2529464178","522110","FIRST SOUTH BANK",,"1311 CAROLINA AVENUE",,"WASHINGTON","NC","27889",,,,,,,"560266599","2529464178",,,,"2011-05-11T12:16:54-0500","NICOLE SPENCE",,,,,264,272,0,0,272,,,,,,,"4A4B4D4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110513071949P040270707328001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GERREF INDUSTRIES, INC. 401 (K) PROFIT SHARING PLAN","001","1984-08-01","GERREF INDUSTRIES",,,"206 YORK ST",,"BELDING","MI","48809",,,,,,,"206 YORK ST",,"BELDING","MI","48809",,,,,,,"382124984","6167943110","333310","GERREF INDUSTRIES",,"206 YORK ST",,"BELDING","MI","48809",,,,,,,"382124984","6167943110",,,,"2011-05-13T07:19:22-0500","JOANNE STROBEL",,,,,27,23,0,4,27,0,27,20,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110516072052P040004735157001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTH ATLANTA PULMONARY GROUP PROFIT SHARING PLAN","001","1980-04-01","SOUTH ATLANTA PULMONARY GROUP",,,"1136 CLEVELAND AVENUE, SUITE 212",,"EAST POINT","GA","30344",,,,,,,"MOHAMMAD AL-MULKI, M.D.","1136 CLEVELAND AVENUE, SUITE 212","EAST POINT","GA","30344",,,,,,,"581805670","7707613525","621111","SOUTH ATLANTA PULMONARY GROUP",,"1136 CLEVELAND AVENUE, SUITE 212",,"EAST POINT","GA","30344",,,,,,,"581805670","7707613525",,,,"2011-05-15T13:11:14-0500","MOHAMMAD AL-MULKI,MD","2011-05-15T13:11:14-0500","MOHAMMAD AL-MULKI,MD",,,7,5,0,1,6,0,6,6,0,,"2E2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110510183109P030266687024001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BETHESDA MEMORIAL HOSPITAL EMPLOYEE BENEFIT HEALTH PLAN","501","1981-04-01","BETHESDA HEALTHCARE SYSTEM, INC.",,,"2815 SOUTH SEACREST BOULEVARD",,"BOYNTON BEACH","FL","334357934",,,,,,,,,,,,,,,,,,"592447553","5617377733","622000","BETHESDA HEALTHCARE SYSTEM, INC.",,"2815 SOUTH SEACREST BOULEVARD",,"BOYNTON BEACH","FL","334357934",,,,,,,"592447553","5617377733",,,,"2011-05-10T12:46:22-0500","ROBERT HILL",,,,,1637,1583,29,0,1612,,,,,,,"4A4B4D4E4F4G4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","10","0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510150429P030266286224001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDICAL PLAN FOR THE EMPLOYEES OF PEDIATRIC HOME SERVICE","501","1995-10-01","PEDIATRIC HOME RESPIRATORY SERVICES INC.","PEDIATRIC HOME SERVICE",,"2800 CLEVELAND AVE N",,"ROSEVILLE","MN","55113",,,,,,,,,,,,,,,,,,"411656511","6516045183","621610","PEDIATRIC HOME RESPIRATORY SERVICES INC.",,"2800 CLEVELAND AVE N",,"ROSEVILLE","MN","55113",,,,,,,"411656511","6516045183",,,,"2011-05-10T15:04:25-0500","CHAUNDRA DONAHUE",,,,,109,110,1,0,111,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510084607P040004472389001","2010-01-01","2010-10-29","2",,"0","0","1","1","0","0","0","0","0",,"HULCHER & ASSOCIATES INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","HULCHER & ASSOCIATES INC",,,"5901 LAKESIDE AVE",,"RICHMOND","VA","23228",,,,,,,,,,,,,,,,,,"541245698","8042627622","541330","HULCHER & ASSOCIATES INC",,"5901 LAKESIDE AVE",,"RICHMOND","VA","23228",,,,,,,"541245698","8042627622",,,,"2011-05-10T08:46:05-0500","HULCHER ASSOCIATES INC",,,,,13,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110511114149P030009506166001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REGENTATLANTIC CAPITAL, LLC 401(K) SAVINGS PLAN","001","1991-01-01","REGENTATLANTIC CAPITAL, LLC",,,"1200 MT. KEMBLE AVENUE",,"MORRISTOWN","NJ","07960",,,,,,,,,,,,,,,,,,"223822194","9734258420","524290","REGENTATLANTIC CAPITAL, LLC",,"1200 MT. KEMBLE AVENUE",,"MORRISTOWN","NJ","07960",,,,,,,"223822194","9734258420",,,,"2011-05-11T11:41:19-0500","JENNIFER PAPADOPOLO",,,,,44,35,0,12,47,0,47,47,0,,"2A2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",, "20110511140238P040266262832001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLIAM P. MONTAGUE PENSION PLAN","001","2001-01-01","WILLIAM P. MONTAGUE",,,"9695 ROCKY POINT",,"CLARENCE","NY","14031",,,,,,,,,,,,,,,,,,"100004244","7166894972","541600","WILLIAM P. MONTAGUE",,"9695 ROCKY POINT",,"CLARENCE","NY","14031",,,,,,,"100004244","7166894972",,,,"2011-05-11T12:33:59-0500","WILLIAM MONTAGUE","2011-05-11T12:33:59-0500","WILLIAM MONTAGUE",,,1,1,0,0,1,,1,,0,,"1A3B3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-05-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516102353P030281401376001","2010-12-22","2011-02-28","2",,"1","0","0","1","0","0","0","0","0",,"DTM HORIZON INC. 401(K) PLAN","001","2010-12-22","DTM HORIZON INC.",,,"7926 FOREST HAVEN DRIVE",,"SUGAR LAND","TX","77479",,,,,,,,,,,,,,,,,,"274399269","8325209780","561790","DTM HORIZON INC.",,"7926 FOREST HAVEN DRIVE",,"SUGAR LAND","TX","77479",,,,,,,"274399269","8325209780",,,,"2011-05-16T10:23:49-0500","DESMOND MCWHIRTER","2011-05-16T10:23:49-0500","DESMOND MCWHIRTER",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509103304P040009758342001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCKNIGHT TIRE, INC. 401(K) PLAN","001","2001-01-01","MCKNIGHT TIRE, INC.",,,"425 WEST DUNKLIN STREET",,"JEFFERSON CITY","MO","65101",,,,,,,,,,,,,,,,,,"440659976","8002832249","441300","MCKNIGHT TIRE, INC.",,"425 WEST DUNKLIN STREET",,"JEFFERSON CITY","MO","65101",,,,,,,"440659976","8002832249",,,,"2011-05-09T10:32:16-0500","TIM MCKNIGHT",,,,,49,44,0,5,49,0,49,26,0,,"2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510085811P030265554688001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K)","001","2008-06-01","LUBBOCK COTTON GROWERS",,,"11611 COUNTY ROAD 2500",,"LUBBOCK","TX","794048315",,,,,,,,,,,,,,,,,,"750200295","8067452616","115110","LUBBOCK COTTON GROWERS",,"11611 COUNTY ROAD 2500",,"LUBBOCK","TX","794048315",,,,,,,"750200295","8067452616",,,,"2011-05-10T08:56:03-0500","JERRELL BUTMAN JR",,,,,7,5,0,1,6,0,6,6,0,,"2E2F2G2J3D2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510110607P040009857238001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NUTRITIONAL LABORATORIES INTERNATIONAL INC. 401(K) PLAN","001","2001-08-01","NUTRITIONAL LABORATORIES INTERNATIONAL, INC.",,,"1001 SOUTH THIRD WEST",,"MISSOULA","MT","59801",,,,,,,"1001 SOUTH THIRD WEST",,"MISSOULA","MT","59801",,,,,,,"841394870","4062735493","325410","NUTRITIONAL LABORATORIES INTERNATIONAL, INC.",,"1001 SOUTH THIRD WEST",,"MISSOULA","MT","59801",,,,,,,"841394870","4062735493","NUTRITIONAL LABORATORIES INTERNATIONAL INC 401K PLAN","841394870","001","2011-05-10T11:05:44-0500","ELIZABETH RISSLER PRATT",,,,,73,80,0,14,94,1,95,50,1,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110513123901P030008421746001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FRICK TRANSFER, INC. (401K) PLAN","001","1997-03-01","FRICK TRANSFER, INC.",,,"1326 TATAMY ROAD",,"EASTON","PA","180450000",,,,,,,,,,,,,,,,,,"240861814","6102522161","484110","FRICK TRANSFER, INC.",,"1326 TATAMY ROAD",,"EASTON","PA","180450000",,,,,,,"240861814","6102522161",,,,"2011-05-12T10:11:43-0500","MICHELLE MAZZIE","2011-05-12T10:11:43-0500","MICHELLE MAZZIE",,,20,18,0,3,21,0,21,16,,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513172933P030274566512001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GTL, INC. PROFIT SHARING PLAN","002","1997-08-01","GTL, INC.",,,"3575 KENYON STREET",,"SAN DIEGO","CA","92110",,,,,,,,,,,,,,,,,,"330212348","6192231663","236110","GTL, INC.",,"3575 KENYON STREET",,"SAN DIEGO","CA","92110",,,,,,,"330212348","6192231663",,,,"2011-05-13T17:29:20-0500","THEODORE TCHANG","2011-05-13T17:29:20-0500","THEODORE TCHANG",,,2,2,,0,2,0,2,2,0,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509113622P040018000039001","1999-07-01","2000-06-30","2",,"0","0","0","0","0","0","0","1","0",,"WESTERN YOUTH SERVICES 403(B) RETIREMENT SAVINGS AND INCENTIVE PLAN","001","1998-09-01","WESTERN YOUTH SERVICES",,,"23461 SOUTH POINT DRIVE, SUITE 220",,"LAGUNA HILLS","CA","92653",,,,,,,,,,,,,,,,,,"953407054","9493301660","624100","WESTERN YOUTH SERVICES",,"23461 SOUTH POINT DRIVE, SUITE 220",,"LAGUNA HILLS","CA","92653",,,,,,,"953407054","9493301660",,,,"2011-05-09T11:29:21-0500","LORRAYNE LEIGH",,,,,,,,,0,,0,,,,"2F2G2M",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510103740P040008443138001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OBOPAY, INC. 401(K) PLAN","001","2006-05-08","OBOPAY, INC.",,,"350 MARINE PARKWAY","SUITE 100","REDWOOD CITY","CA","94065",,,,,,,"350 MARINE PARKWAY","SUITE 100","REDWOOD CITY","CA","94065",,,,,,,"731732408","6505660515","522300","OBOPAY, INC.",,"350 MARINE PARKWAY","SUITE 100","REDWOOD CITY","CA","94065",,,,,,,"731732408","6505660515",,,,"2011-05-09T14:10:28-0500","SUSAN HUEBNER",,,,,94,45,0,24,69,1,70,48,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110510130358P040263529408001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILDLIFE INTERNATIONAL, LLC. SAVINGS PLAN","001","1987-09-15","WILDLIFE INTERNATIONAL, LLC.",,,"8598 COMMERCE DRIVE",,"EASTON","MD","21601",,,,,,,,,,,,,,,,,,"521282454","4108228600","115310","WILDLIFE INTERNATIONAL, LLC.",,"8598 COMMERCE DRIVE",,"EASTON","MD","21601",,,,,,,"521282454","4108228600",,,,"2011-05-10T13:02:41-0500","CURT HUTCHINSON",,,,,112,103,0,16,119,0,119,90,2,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110513073007P030273373296001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BERGER & ZAVESKY CO. L.P.A. 401(K) PROFIT SHARING PLAN AND TRUST","001","2003-01-01","BERGER & ZAVESKY CO., L.P.A.",,,"614 W SUPERIOR AVE.",,"CLEVELAND","OH","44113",,,,,,,,,,,,,,,,,,"341869396","2168309000","541110","BERGER & ZAVESKY CO., L.P.A.",,"614 W SUPERIOR AVE.",,"CLEVELAND","OH","44113",,,,,,,"341869396","2168309000",,,,"2011-05-02T15:09:08-0500","ROBERT J ZAVESKY","2011-05-02T15:09:10-0500","ROBERT J ZAVESKY",,,6,6,0,0,6,0,6,6,,,"2A2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509160312P030017340663001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CONSUMER ATTORNEYS ASSOCIATION OF LOS ANGELES 401K PROFIT SHARING PLAN","001","2007-01-01","CONSUMER ATTORNEYS ASSOCIATION OF LOS ANGELES",,,"800 W. SIXTH ST STE 700",,"LOS ANGELES","CA","900172710",,,,,,,,,,,,,,,,,,"952656091","2134871212","541190","CONSUMER ATTORNEYS ASSOCIATION OF LOS ANGELES",,"800 W. SIXTH ST STE 700",,"LOS ANGELES","CA","900172710",,,,,,,"952656091","2134871212",,,,"2011-05-09T16:02:01-0500","STUART ZANVILLE",,,,,7,7,0,2,9,0,9,9,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110510143848P030017499655001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OCCUPATIONAL HEALTH MATTERS PLAN FOR TEXAS COMMUNITY EMPLOYEES","507","2008-02-01","HIGHLAND SPRINGS, INC.",,,"701 MAIDEN CHOICE LANE",,"CATONSVILLE","MD","21228",,,,,,,,,,,,,,,,,,"510536892","4102422880","623000","ERICKSON LIVING MANAGEMENT, LLC",,"701 MAIDEN CHOICE LANE",,"CANTONSVILLE","MD","21228",,,,,,,"271855064","4102422880",,,,"2011-05-10T14:38:43-0500","CHRISTOPHER EMMETT",,,,,405,399,0,0,399,,,,,,,"4A4D4E4F4L4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-10","Filed with authorized/valid electronic signature",, "20110509104122P030009314486001","2009-11-01","2010-10-31","2",,,,,,,,,,,,"HENRY DONEGER ASSOCIATES, INC. HEALTH AND WELFARE PLAN","501","1989-11-01","HENRY DONEGER ASSOCIATES, INC.",,,"463 SEVENTH AVENUE",,"NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"132500234","2125603702","541990","HENRY DONEGER ASSOCIATES, INC.",,"463 SEVENTH AVENUE",,"NEW YORK","NY","10018",,,,,,,"132500234","2125603702",,,,"2011-05-09T11:41:16-0500","MARGARET LORENZ",,,,,184,175,0,0,175,0,175,,,,,"4A4B4D4H4L","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",, "20110509180457P040009789334001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NADEL & ASSOCIATES PROFIT SHARING PLAN","001","1976-10-01","NADEL & ASSOCIATES",,,"28222 AGOURA ROAD SUITE 200",,"AGOURA HILLS","CA","91301",,,,,,,,,,,,,,,,,,"952664311","8188651570","541110","NADEL & ASSOCIATES",,"28222 AGOURA ROAD SUITE 200",,"AGOURA HILLS","CA","91301",,,,,,,"952664311","8188651570",,,,"2011-05-04T12:38:40-0500","MARK NADEL","2011-05-05T11:42:29-0500","RUSSELL NADEL",,,7,7,,1,8,,8,8,,,"3F3D2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110509180608P030017354391001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GONJARO INC. 401(K) PLAN","001","2005-12-01","GONJARO INC.",,,"540 OAK ST.",,"ROSELLE PARK","NJ","07204",,,,,,,,,,,,,,,,,,"203922628","9082411485","722110","GONJARO INC.",,"540 OAK ST.",,"ROSELLE PARK","NJ","07204",,,,,,,"203922628","9082411485",,,,"2011-05-09T18:05:21-0500","JOHN LEDOUX","2011-05-09T18:05:21-0500","JOHN LEDOUX",,,2,2,0,0,2,0,2,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110517082234P030283883920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MASSIMO S FIANDACA MD P A 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","MASSIMO S FIANDACA MD P A",,,"402 WILDBERRY CT.",,"MILLERSVILLE","MD","21108",,,,,,,,,,,,,,,,,,"522365307","4107723685","621112","MASSIMO S FIANDACA MD P A",,"402 WILDBERRY CT.",,"MILLERSVILLE","MD","21108",,,,,,,"522365307","4107723685",,,,"2011-05-17T08:22:32-0500","MASSIMO S FIANDACA MD P A",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110519131451P030019059671001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"APOTEX CORP. HEALTH AND WELFARE PLAN","501","1997-07-01","APOTEX CORP.",,,"2400 N COMMERCE PARKWAY, SUITE 400",,"WESTON","FL","33326",,,,,,,,,,,,,,,,,,"133661214","8007065575","424210","APOTEX CORP.",,"2400 N COMMERCE PARKWAY, SUITE 400",,"WESTON","FL","33326",,,,,,,"133661214","8007065575",,,,"2011-05-19T13:14:43-0500","DONNALISI","2011-05-19T13:14:43-0500","DONNA LISI",,,106,98,0,0,98,,,,,,,"4A4B4D4E4F4H4Q4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110517183257P030285119344001","2010-01-01","2010-12-31","2",,"0","0","0","0","1",,,,,,"PARKWAY MOTORS OF LEONIA, INC. 401(K) PLAN","003","2001-01-01","PARKWAY MOTORS OF LEONIA, INC. DBA PARKWAY TOYOTA",,,"50 SYLVAN AVE",,"ENGLEWOOD CLIFFS","NJ","076322803",,,,,,,"50 SYLVAN AVE",,"ENGLEWOOD CLIFFS","NJ","076322803",,,,,,,"221596277","2019443300","441110","PARKWAY MOTORS OF LEONIA, INC. DBA PARKWAY TOYOTA",,"50 SYLVAN AVE",,"ENGLEWOOD CLIFFS","NJ","076322803",,,,,,,"221596277","2019443300",,,,"2011-05-17T18:31:36-0500","EDWARD JINKS","2011-05-17T18:32:29-0500","EDWARD JINKS",,,91,77,0,13,90,0,90,35,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518115045P030005261493001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PORTFOLIO PROPERTIES, INC. 401(K) PLAN","001","2001-05-01","PORTFOLIO PROPERTIES, INC.",,,"1975 HAMILTON AVE., #32",,"SAN JOSE","CA","95125",,,,,,,,,,,,,,,,,,"880492126","4083714415","531190","PORTFOLIO PROPERTIES, INC.",,"1975 HAMILTON AVE., #32",,"SAN JOSE","CA","95125",,,,,,,"880492126","4083714415",,,,"2011-05-18T11:37:27-0500","KEN HAMILTON",,,,,17,11,0,1,12,0,12,6,1,,"2E2G2J2K3D2F",,"1",,"1",,"1",,"1",,,,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516130110P030018528679001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUNDVIEW COMMUNICATIONS, INC. 401(K) SAVINGS PLAN","001","1997-01-01","SOUNDVIEW COMMUNICATIONS, INC.",,,"5305 OAKBROOK PARKWAY",,"NORCROSS","GA","30093",,,,,,,,,,,,,,,,,,"581827782","7703991878","511190","SOUNDVIEW COMMUNICATIONS, INC.",,"5305 OAKBROOK PARKWAY",,"NORCROSS","GA","30093",,,,,,,"581827782","7703991878",,,,"2011-05-16T12:59:15-0500","CAROLYN MAGBEE",,,,,24,14,0,6,20,0,20,18,0,,"2E2F2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516101157P040004740229001","2010-03-30","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"ASSET PURCHASE GROUP, INC. PROFIT SHARING PLAN","001","2010-03-30","ASSET PURCHASE GROUP, INC.",,,"8 BELLFORT DR",,"TAYLORS","SC","29687",,,,,,,,,,,,,,,,,,"272241927","8649159486","522298","ASSET PURCHASE GROUP, INC.",,"8 BELLFORT DR",,"TAYLORS","SC","29687",,,,,,,"272241927","8649159486",,,,"2011-05-16T09:17:51-0500","MICHAEL POPE",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110518141008P030018894071001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRENNER WEST CAPITAL ADVISORS 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","BRENNER WEST CAPITAL ADVISORS",,,"110 EAST 42ND STREET","14TH FLOOR","NEW YORK","NY","10017",,,,,,,,,,,,,,,,,,"202657677","2128011255","812990","BRENNER WEST CAPITAL ADVISORS",,"110 EAST 42ND STREET","14TH FLOOR","NEW YORK","NY","10017",,,,,,,"202657677","2128011255","BRENNER WEST CAPITAL ADVISORS",,,"2011-05-18T02:10:06-0500","BRENNER WEST CAPITAL ADVISORS",,,,,3,4,0,0,4,0,4,3,0,,"2E2G2J2K2R2T3D",,"1","0","1","0","1","0","1","0","0",,,"0","1","1","1","0","1",,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516090143P030281227312001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE GRIFFING GROUP, INC. PROFIT SHARING PLAN AND TRUST","001","2000-01-01","THE GRIFFING GROUP, INC.",,,"6821 W. NORTH AVENUE",,"OAK PARK","IL","60302",,,,,,,,,,,,,,,,,,"363721748","7083839050","541219","THE GRIFFING GROUP, INC.",,"6821 W. NORTH AVENUE",,"OAK PARK","IL","60302",,,,,,,"363721748","7083839050",,,,"2011-05-15T14:22:25-0500","DAVID CLARKE","2011-05-15T14:22:25-0500","DAVID CLARKE",,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G2J2K2R2T3D","4B","1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516094510P030281316624001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSOLIDATED BEEF PRODUCERS, INC 401K PLAN","003","2001-06-01","CONSOLIDATED BEEF PRODUCERS, INC 401K PLAN",,,"304 15TH STREET",,"CANYON","TX","79015",,,,,,,,,,,,,,,,,,"752891418","8066558955","112111","CONSOLIDATED BEEF PRODUCERS, INC 401K PLAN",,"304 15TH STREET",,"CANYON","TX","79015",,,,,,,"752891418","8066558955",,,,"2011-05-16T09:19:55-0500","HEATHER PEOPLES","2011-05-16T09:19:55-0500","HEATHER PEOPLES",,,12,10,0,3,13,0,13,13,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516101322P040278663968008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VERTEBRON, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","VERTEBRON, INC.",,,"C/O BRUCE M. DEL CONTE","6 EXECUTIVE DRIVE, SUITE 111","FARMINGTON","CT","06032",,,,,,,,,,,,,,,,,,"912184932","8606769020","541700","VERTEBRON, INC.",,"C/O BRUCE M. DEL CONTE","6 EXECUTIVE DRIVE, SUITE 111","FARMINGTON","CT","06032",,,,,,,"912184932","8606769020",,,,"2011-05-16T05:52:47-0500","BRUCE M. DEL CONTE",,,,,10,,0,10,10,,10,10,,,"2E2G2J2K",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110518191256P030018934679001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GOODWILL INDUSTRIES HEALTH & WELFARE PLAN","502","2007-01-01","GOODWILL INDUSTRIES",,,"350 ENCINAL STREET",,"SANTA CRUZ","CA","95060",,,,,,,,,,,,,,,,,,"941254638","8314238611","453310","GOODWILL INDUSTRIES",,"350 ENCINAL STREET",,"SANTA CRUZ","CA","95060",,,,,,,"941254638","8314238611",,,,"2011-05-16T12:27:56-0500","PEGGIE AVILA","2011-05-18T18:38:57-0500","NICHOLAS ANDREWS",,,278,285,6,0,291,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110517154112P040281969088001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HATCHETT & FAGAN DIRECT, INC. 401(K) PLAN","001","2007-01-01","HATCHETT & FAGAN DIRECT, INC.",,,"950 22ND ST. NORTH","SUITE 700","BIRMINGHAM","AL","35203",,,,,,,"950 22ND ST. NORTH","SUITE 700","BIRMINGHAM","AL","35203",,,,,,,"631141339","2054588200","541800","HATCHETT & FAGAN DIRECT, INC.",,"950 22ND ST. NORTH","SUITE 700","BIRMINGHAM","AL","35203",,,,,,,"631141339","2054588200",,,,"2011-05-17T15:40:28-0500","RAY FAGAN",,,,,11,10,0,2,12,1,13,12,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517083057P030018672055001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVID E. ISAACS D.D.S., P.C. RETIREMENT PLAN & TRUST","001","2006-01-01","DAVID E. ISAACS D.D.S., P.C.",,,"8870 ZIONSVILLE RD, SUITE 100",,"INDIANAPOLIS","IN","46268",,,,,,,,,,,,,,,,,,"352085833","3172983384","621210","DAVID E. ISAACS D.D.S., P.C.",,"8870 ZIONSVILLE RD, SUITE 100",,"INDIANAPOLIS","IN","46268",,,,,,,"352085833","3172983384",,,,"2011-05-17T08:30:22-0500","DAVID E. ISAACS, D.D.S.","2011-05-17T08:30:22-0500","DAVID E. ISAACS, D.D.S.",,,7,7,0,0,7,0,7,7,0,,"2A2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518161744P040062484017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMERGENCY CARE SPECIALISTS OF ST. CLAIR COUNTY, P.C. PROFIT SHARING PLAN","002","2006-01-01","EMERGENCY CARE SPECIALISTS OF ST. CLAIR COUNTY, P.C.",,,"14506 INGRAM ST",,"LIVONIA","MI","481543556",,,,,,,,,,,,,,,,,,"383112182","5862144359","621498","EMERGENCY CARE SPECIALISTS OF ST. CLAIR COUNTY, P.C.",,"14506 INGRAM ST",,"LIVONIA","MI","481543556",,,,,,,"383112182","5862144359",,,,"2011-05-18T16:13:16-0500","JERE BALDWIN",,,,,6,6,0,2,8,0,8,8,0,,"2E2G2J",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518191617P040284985856001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREENWICH MEDICAL GROUP, INC. PROFIT SHARING PLAN","001","1964-04-30","GREENWICH MEDICAL GROUP, INCORPORATED",,,"75 HOLLY HILL LANE",,"GREENWICH","CT","06830",,,,,,,"75 HOLLY HILL LANE",,"GREENWICH","CT","06830",,,,,,,"060771030","2038696960","621111","GREENWICH MEDICAL GROUP, INCORPORATED",,"75 HOLLY HILL LANE",,"GREENWICH","CT","06830",,,,,,,"060771030","2038696960",,,,"2011-05-18T19:15:16-0500","GAIL FENNELL",,,,,28,29,0,6,35,0,35,26,3,,"2A2E2F2G2J2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518191949P030287931088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CUT LOOSE, INC. 401(K) PLAN","001","1995-01-01","CUT LOOSE, INC.",,,"1780 ARMSTRONG ST.",,"SAN FRANCISCO","CA","94124",,,,,,,,,,,,,,,,,,"942950601","4158222031","315990","CUT LOOSE, INC.",,"1780 ARMSTRONG ST.",,"SAN FRANCISCO","CA","94124",,,,,,,"942950601","4158222031",,,,"2011-05-18T19:19:33-0500","WILL WENHAM",,,,,50,47,0,1,48,0,48,47,0,,"2E2F2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110519110132P040286667056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PARKER HAMILTON PROPERTY GROUP 401(K) PLAN","003","2005-08-30","PARKER-HAMILTON PROPERTY GROUP, LLC",,,"20 N ORANGE AVE","SUITE 500","ORLANDO","FL","32801",,,,,,,"20 N ORANGE AVE","SUITE 500","ORLANDO","FL","32801",,,,,,,"550816734","4074815400","531210","PARKER-HAMILTON PROPERTY GROUP, LLC",,"20 N ORANGE AVE","SUITE 500","ORLANDO","FL","32801",,,,,,,"550816734","4074815400",,,,"2011-05-09T09:16:52-0500","AMY REDWINE","2011-05-19T10:40:13-0500","JEFF SWEENEY",,,39,1,0,21,22,0,22,21,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518085738P040019622887001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPRESAS PUERTORRIQUENAS DE DESARROLLO, INC. HEALTH INSURANCE PLAN","501","2006-12-01","EMPRESAS PUERTORRIQUENAS DE DESARROLLO, INC.",,,"PO BOX 366006",,"SAN JUAN","PR","00936",,,,,,,,,,,,,,,,,,"660322617","7876228108","561110","EMPRESAS PUERTORRIQUENAS DE DESARROLLO, INC.",,"PO BOX 366006",,"SAN JUAN","PR","00936",,,,,,,"660322617","7876228108",,,,"2011-05-18T08:56:33-0500","IRMA MARRERO-CABRERA",,,,,101,103,,,103,,103,,,,,"4A4D4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516173540P030282294912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FERRONICS INCORPORATED 401K PLAN","001","1992-01-01","FERRONICS INCORPORATED",,,"45 OCONNOR RD",,"FAIRPORT","NY","14450",,,,,,,,,,,,,,,,,,"160957140","5853881020","331110","FERRONICS INCORPORATED",,"45 OCONNOR RD",,"FAIRPORT","NY","14450",,,,,,,"160957140","5853881020",,,,"2011-05-16T17:35:36-0500","STANLEY SARAT",,,,,29,31,0,0,31,0,31,15,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110517122722P040010551590001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NEWBERRY COLLEGE 403B DEFINED CONTRIBUTION PLAN","001","1956-09-01","NEWBERRY COLLEGE",,,"2100 COLLEGE STREET",,"NEWBERRY","SC","29108",,,,,,,,,,,,,,,,,,"570314404","8032765010","611000","NEWBERRY COLLEGE",,"2100 COLLEGE STREET",,"NEWBERRY","SC","29108",,,,,,,"570314404","8032765010",,,,"2011-05-17T12:27:14-0500","STEVEN FELD",,,,,,,,,0,,0,,,,"2L2M",,"0","0","1","0","0","0","1","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517123059P040019462199002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GOETZE DENTAL GROUP HEALTH PLAN","501","2004-11-01","GOETZE-NIEMER COMPANY, INC.","GOETZE DENTAL","BART MILLER","3939 NE 33RD TERR","SUITE J","KANSAS CITY","MO","641172689",,,,,,,,,,,,,,,,,,"440261830","8164131200","423400","GOETZE-NIEMER COMPANY, INC.","BART MILLER","3939 NE 33RD TERR","SUITE J","KANSAS CITY","MO","641172689",,,,,,,"440261830","8164131200",,,,"2011-05-15T07:23:50-0500","BART MILLER",,,,,126,105,,,105,,,,,,,"4A4B4D4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","8",,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517111433P030284254416001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PORT AUTHORITY OF SAN ANTONIO 457 RETIREMENT PLAN","001","2001-10-01","PORT AUTHORITY OF SAN ANTONIO",,,"907 BILLY MITCHELL BLVD.",,"SAN ANTONIO","TX","78226",,,,,,,,,,,,,,,,,,"742790736","2103627800","921000","PORT AUTHORITY OF SAN ANTONIO",,"907 BILLY MITCHELL BLVD.",,"SAN ANTONIO","TX","78226",,,,,,,"742790736","2103627800",,,,"2011-05-17T07:37:49-0500","CLARA ERNST","2011-05-17T07:37:49-0500","CLARA ERNST",,,101,103,0,12,115,0,115,74,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518095258P040010642310001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EARNEST CORPORATION 401(K) PROFIT SHARING PLAN & TRUST","001","2002-01-01","EARNEST CORPORATION",,,"105 BEAU CHENE BLVD STE 100",,"MANDEVILLE","LA","70471",,,,,,,,,,,,,,,,,,"720509686","5049477937","713900","EARNEST CORPORATION",,"105 BEAU CHENE BLVD STE 100",,"MANDEVILLE","LA","70471",,,,,,,"720509686","5049477937",,,,"2011-05-18T09:52:56-0500","EARNEST CORPORATION",,,,,74,62,0,14,76,0,76,59,1,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516122145P040019267127001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PCL CONSTRUCTION ENTERPRISES, INC. AND COVERED AFFILIATED COMPANIES MEDICAL/RX PLAN FOR HOURLY EMPLOYEES","502","1998-02-01","PCL CONSTRUCTION ENTERPRISES, INC.",,,"2000 SOUTH COLORADO BLVD STE 2-500",,"DENVER","CO","80222",,,,,,,"2000 SOUTH COLORADO BLVD STE 2-500",,"DENVER","CO","80222",,,,,,,"841231577","3033656591","236200","PCL CONSTRUCTION ENTERPRISES, INC.",,"2000 SOUTH COLORADO BLVD STE 2-500",,"DENVER","CO","80222",,,,,,,"841231577","3033656591",,,,"2011-05-13T16:58:36-0500","SHELLY GANTENBEIN","2011-05-13T09:38:23-0500","BRETT DOLAN",,,854,987,13,,1000,,1000,,,,,"4A4B4D4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516143518P040010463590001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"BEKS DATA SERVICE INC PROFIT SHARING PLAN","001","1999-01-01","BEKS DATE SERVICE INC",,,"81 CONCORD WAY",,"NEWTOWN","PA","18940",,,,,,,"81 CONCORD WAY",,"NEWTOWN","PA","18940",,,,,,,"232955242","2158604795","561110","BEKS DATE SERVICE INC",,"81 CONCORD WAY",,"NEWTOWN","PA","18940",,,,,,,"232955242","2158604795",,,,"2011-05-16T14:32:22-0500","LINDA STRUZIK",,,,,3,0,0,0,0,0,0,0,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110518144657P040004842293001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE ALTMAN GROUP, INC. 401(K) PLAN","001","2004-01-01","THE ALTMAN GROUP",,,"60 EAST 42ND ST.","SUITE 405","NEW YORK","NY","10165",,,,,,,"60 EAST 42ND ST.","SUITE 405","NEW YORK","NY","10165",,,,,,,"133813455","2126819600","523900","THE ALTMAN GROUP",,"60 EAST 42ND ST.","SUITE 405","NEW YORK","NY","10165",,,,,,,"133813455","2126819600",,,,"2011-05-18T14:46:44-0500","TRACEY AMBROSE FOGG",,,,,82,63,0,20,83,0,83,47,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518144801P030287418784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLES LEE POWELL FOUNDATION MONEY PURCHASE PENSION PLAN","001","1999-01-01","CHARLES LEE POWELL FOUNDATION",,,"7742 HERSCHEL AVENUE, SUITE A",,"LA JOLLA","CA","92037",,,,,,,,,,,,,,,,,,"237064397","8584593699","813000","CHARLES LEE POWELL FOUNDATION",,"7742 HERSCHEL AVENUE, SUITE A",,"LA JOLLA","CA","92037",,,,,,,"237064397","8584593699",,,,"2011-05-18T14:47:57-0500","JOEL O. HOLLIDAY",,,,,2,2,0,0,2,0,2,2,0,,"2C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110517143037P040281825552001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMPLIANCE AND INTEGRATED SOLUTIONS RETIREMENT PLAN","001","2003-01-01","COMPLIANCE AND INTEGRATED SOLUTIONS, INC.","COMPLIANCE AND INTEGRATED SOLUTIONS","LUIS CENTENO","PMB 294 P.O. BOX 30500",,"MANATI","PR","006743050",,,,,,,,,,,,,,,,,,"660615897","7878846544","541400","COMPLIANCE AND INTEGRATED SOLUTIONS, INC.","PEDRO VALLES","PMB 294 P.O. BOX 30500",,"MANATI","PR","006743050",,,,,,,"660615897","7878846544",,,,"2011-05-17T14:30:35-0500","LUIS CENTENO",,,,,8,3,0,0,3,0,3,3,0,,"2E2G2J2K3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","1","1","1","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518081401P040283711472001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"APPAMAN INC PLAN AND TRUST","001","2008-01-01","APPAMAN INC",,,"195 CHRYSTIE ST RM 502D",,"NEW YORK","NY","100021224",,,,,,,"195 CHRYSTIE ST RM 502D",,"NEW YORK","NY","100021224",,,,,,,"010804415","2124605480","315290","APPAMAN INC",,"195 CHRYSTIE ST RM 502D",,"NEW YORK","NY","100021224",,,,,,,"010804415","2124605480",,,,"2011-05-18T07:58:56-0500","HARALD HUSUM",,,,,4,3,0,1,4,0,4,4,1,,"2A2E3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110515220124P040277364784005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ST LOUIS HILLS UROLOGICAL ASSOC PROFIT SHARING PLAN","003","2002-01-01","ST LOUIS HILLS UROLOGICAL ASSOC INC",,,"10004 KENNERLY ROAD SUITE 360",,"ST LOUIS","MO","63128",,,,,,,,,,,,,,,,,,"431124211","3148492735","621111","ST LOUIS HILLS UROLOGICAL ASSOC INC",,"10004 KENNERLY ROAD SUITE 360",,"ST LOUIS","MO","63128",,,,,,,"431124211","3148492735",,,,"2011-05-15T21:47:28-0500","BRUCE R KRIEG",,,,,3,3,,,3,,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-15","Filed with authorized/valid electronic signature",, "20110516152616P030282033072001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GATEWAY PRESS INC EMPLOYEE GROUP MEDICAL & DENTAL WELFARE PLAN","501","1984-01-01","GATEWAY PRESS INCORPORATED",,"GLEN GEORGEHEAD","4500 ROBARDS LANE",,"LOUISVILLE","KY","40218",,,,,,,"4500 ROBARDS LANE",,"LOUISVILLE","KY","40218",,,,,,,"610438020","5024540431","323100","GATEWAY PRESS INCORPORATED","GLEN GEORGEHEAD","4500 ROBARDS LANE",,"LOUISVILLE","KY","40218",,,,,,,"610438020","5024540431",,,,"2011-05-16T07:57:08-0500","GLEN GEORGEHEAD",,,,,163,158,4,,162,,162,,,,,"4A4D","1",,,"1","1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516152809P040019298439001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHULMAN, ROGERS, GANDAL, PORDY & ECKER WELFARE BENEFIT PLAN","502","1990-01-01","SHULMAN, ROGERS, GAMDAL, PORDY & ECKER, P.A.",,,"12505 PARK POTOMAC AVENUE","SIXTH FLOOR","POTOMAC","MD","20854",,,,,,,"12505 PARK POTOMAC AVENUE","SIXTH FLOOR","POTOMAC","MD","20854",,,,,,,"521008944","3012305200","541110","SHULMAN, ROGERS, GANDAL, PORDY, & ECKER, P.A.",,"12505 PARK POTOMAC AVENUE","SIXTH FLOOR","POTOMAC","MD","20854",,,,,,,"521008944","3012305200",,,,"2011-05-16T15:25:27-0500","HAROLD EVANS",,,,,188,189,1,,190,,190,,,,,"4A4B4D4H","1",,,,"1",,,,,,,"0",,"1","4",,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516181429P040279624352001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERHART,LTD. CAFETERIA PLAN","501","1991-06-01","AMERHART, LTD.",,,"P.O. BOX 10097",,"GREEN BAY","WI","543070097",,,,,,,,,,,,,,,,,,"391202674","9204944744","423300","AMERHART, LTD.",,"P.O. BOX 10097",,"GREEN BAY","WI","543070097",,,,,,,"391202674","9204944744",,,,"2011-05-16T07:02:03-0500","MARK KASPER",,,,,191,208,4,0,212,0,,,,,,"4D4F4B4A4L4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110518123827P040019654887001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"A-COM ENTERPRISES 401(K)","001","1993-01-01","A-COM ENTERPRISES, INC.",,,"7521 VETERANS PARKWAY",,"COLUMBUS","GA","31909",,,,,,,"7521 VETERANS PARKWAY",,"COLUMBUS","GA","31909",,,,,,,"581780449","7063221870","551112","A-COM ENTERPRISES, INC.",,"7521 VETERANS PARKWAY",,"COLUMBUS","GA","31909",,,,,,,"581780449","7063221870",,,,"2011-05-18T12:37:07-0500","JOHN GREENHAW",,,,,83,74,0,20,94,0,94,69,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110517123905P040281597296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"L & S INDUSTRIES, INC. 401(K) AND PROFIT SHARING PLAN","001","1997-12-31","L & S INDUSTRIES, INC.",,,"P.O. BOX 50097",,"NEW BEDFORD","MA","02745",,,,,,,"32 LAMBETH STREET",,"NEW BEDFORD","MA","02745",,,,,,,"042738310","5089954654","327300","L & S INDUSTRIES, INC.",,"P.O. BOX 50097",,"NEW BEDFORD","MA","02745",,,,,,,"042738310","5089954654",,,,"2011-05-17T12:38:57-0500","HOLLY A. NIGHTINGALE","2011-05-17T12:38:57-0500","HOLLY A. NIGHTINGALE",,,27,25,0,3,28,0,28,25,0,,"2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516182244P040019323639001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CECILIA LEE, LTD. DEFINED BENEFIT PENSION PLAN","001","2005-01-01","CECILIA LEE, LTD.",,,"510 WEST PLUMB LANE, SUITE A",,"RENO","NV","89509",,,,,,,,,,,,,,,,,,"900103307","7753241011","541110","CECILIA LEE, LTD.",,"510 WEST PLUMB LANE, SUITE A",,"RENO","NV","89509",,,,,,,"900103307","7753241011",,,,"2011-05-16T18:22:24-0500","WEI GUO YU",,,,,3,3,0,0,3,0,3,,0,,"1A3D",,"0","0","1","0","0","0","1","0","0","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516095939P040019245031001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCSWEENEY & RICCI INSURANCE AGENCY, INC. EMPLOYEE SAVINGS & PROTECTION PLAN","002","1989-07-01","MCSWEENEY & RICCI INSURANCE AGENCY, INC.",,,"420 WASHINGTON STREET",,"BRAINTREE","MA","02184",,,,,,,"420 WASHINGTON STREET",,"BRAINTREE","MA","02184",,,,,,,"042318516","7818488600","524210","MCSWEENEY & RICCI INSURANCE AGENCY, INC.",,"420 WASHINGTON STREET",,"BRAINTREE","MA","02184",,,,,,,"042318516","7818488600",,,,"2011-05-16T09:58:50-0500","JOHN CURRY",,,,,70,54,0,14,68,0,68,49,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516144508P040279216560004","2010-05-01","2011-04-30","2",,,,,,,,,,,,"WADE SALES AND SERVICE RETIRMENT PLAN & TRUST","001","1996-11-01","WADE SALES AND SERVICE, INC",,,"PO BOX 7",,"BREESE","IL","62230",,,,,,,,,,,,,,,,,,"370992117","6186547409","454312","WADE SALES AND SERVICE, INC",,"PO BOX 7",,"BREESE","IL","62230",,,,,,,"370992117","6186547409",,,,"2011-05-16T15:42:15-0500","BRANDON J. WADE",,,,,9,6,1,0,7,0,7,7,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110518151737P030018904119001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"R MCCLURE ELECTRIC PROFIT SHARING PLAN","001","1999-07-01","R. MCCLURE ELECTRIC",,,"706 PORTAL STREET, SUITE D",,"COTATI","CA","949313067",,,,,,,,,,,,,,,,,,"680418191","7077922101","524210","R. MCCLURE ELECTRIC",,"706 PORTAL STREET, SUITE D",,"COTATI","CA","949313067",,,,,,,"680418191","7077922101",,,,"2011-05-18T15:16:50-0500","ED GUGEL",,,,,3,3,0,0,3,0,3,3,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110517160405P040061878513001","2007-01-01","2007-12-31","2",,"0","1","1","0","0","0","0","0","0",,"FLORIDA DIGITAL NETWORK, INC. 401(K) PLAN","001","2003-01-01","FLORIDA DIGITAL NETWORK, INC.",,,"4001 RODNEY PARHAM ROAD","MS 1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"4001 RODNEY PARHAM ROAD","MS 1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"582391583","5017487000","515210","WINDSTREAM BENEFITS COMMITTEE",,"4001 RODNEY PARHAM ROAD","MS 1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"200792300","5017487000",,,,"2011-05-17T16:02:44-0500","ROBERT BOYD",,,,,606,0,0,0,0,0,0,0,39,,"2E2F2G2J2K3H",,"1",,"1",,,,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518082545P030018842135001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPORTSFOCUS PHYSICAL THERAPY, P.C. RETIREMENT PLAN","001","1988-01-01","SPORTSFOCUS PHYSICAL THERAPY, P.C.",,,"3940 CALIFORNIA ROAD",,"ORCHARD PARK","NY","14127",,,,,,,,,,,,,,,,,,"161283162","7166622922","621340","SPORTSFOCUS PHYSICAL THERAPY, P.C.",,"3940 CALIFORNIA ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"161283162","7166622922",,,,"2011-05-17T08:51:35-0500","RICHARD MUSCATELLO","2011-05-17T08:51:35-0500","RICHARD MUSCATELLO",,,25,20,0,6,26,0,26,26,0,,"2A2F2G2J3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110517100724P030008725170001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRAVEL IMPRESSIONS, LTD. EMPLOYEE HEALTH & WELFARE PLAN","501","2001-01-01","TRAVEL IMPRESSIONS, LTD.",,,"465 SMITH STREET",,"FARMINGDALE","NY","11735",,,,,,,,,,,,,,,,,,"133996887","6318458000","424990","TRAVEL IMPRESSIONS, LTD.",,"465 SMITH STREET",,"FARMINGDALE","NY","11735",,,,,,,"133996887","6318458000",,,,"2011-05-17T10:07:15-0500","JODI BALDASSIN",,,,,507,519,4,0,523,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517175523P030285051392001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GL HICKS FINANCIAL LLC 401(K)","001","2007-04-01","GL HICKS FINANCIAL LLC",,,"5033 RIVERPARK WAY",,"PROVO","UT","84604",,,,,,,"5033 RIVERPARK WAY",,"PROVO","UT","84604",,,,,,,"680364454","8012250731","523900","GL HICKS FINANCIAL LLC",,"5033 RIVERPARK WAY",,"PROVO","UT","84604",,,,,,,"680364454","8012250731",,,,"2011-04-22T15:39:03-0500","GARY HICKS",,,,,3,3,0,0,3,0,3,,0,,"2E2K2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518100233P040019632631001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"DOYIN OGUNBI MD LLC 401K PLAN","001","2006-07-15","DOYIN OGUNBI MD LLC",,,"1722 PINE STREET",,"MONTGOMERY","AL","36106",,,,,,,"1722 PINE STREET",,"MONTGOMERY","AL","36106",,,,,,,"510484545","3342881916","621111","DOYIN OGUNBI MD LLC",,"1722 PINE STREET",,"MONTGOMERY","AL","36106",,,,,,,"510484545","3342881916",,,,"2011-05-17T18:37:26-0500","ADEDOYIN DOSUNMU-OGUNBI",,,,,2,2,0,1,3,0,3,3,0,,"2E2F2G2J2K3E",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110516133709P040061224433001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","1","0","1","0",,"QRXPHARMA, INC. 401(K) PLAN","001","2007-08-31","QRXPHARMA, INC.",,,"1430 US HIGHWAY 206","SUITE 230","BEDMINSTER","NJ","07921",,,,,,,,,,,,,,,,,,"208730112","9085062901","325410","QRXPHARMA, INC.",,"1430 US HIGHWAY 206","SUITE 230","BEDMINSTER","NJ","07921",,,,,,,"208730112","9085062901",,,,"2011-05-16T13:35:38-0500","LAURA SMITH",,,,,10,10,0,1,11,0,11,6,0,,"2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110516135559P040010460966001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INSTITUTE OF MANAGEMENT ACCOUNTANTS EMPLOYEES' RETIREMENT PLAN","002","1994-04-01","INSTITUTE OF MANAGEMENT ACCOUNTANTS",,,"10 PARAGON DR",,"MONTVALE","NJ","076451773",,,,,,,,,,,,,,,,,,"222659674","2014741568","611000","INSTITUTE OF MANAGEMENT ACCOUNTANTS",,"10 PARAGON DR",,"MONTVALE","NJ","076451773",,,,,,,"222659674","2014741568",,,,"2011-05-16T13:54:37-0500","TRICIA DULASKI","2011-05-16T13:37:22-0500","DOREEN REMMEN",,,90,69,0,22,91,0,91,80,,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518124158P030287146880001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INLAND ANSWERING SERVICE 401(K) PROFIT SHARING PLAN","001","2008-01-01","INLAND ANSWERING SERVICE, INC.",,,"2849 MARICOPA AVENUE",,"LAKE HAVASU CITY","AZ","86406",,,,,,,,,,,,,,,,,,"330481128","8009558025","541990","INLAND ANSWERING SERVICE, INC.",,"2849 MARICOPA AVENUE",,"LAKE HAVASU CITY","AZ","86406",,,,,,,"330481128","8009558025",,,,"2011-05-18T12:39:35-0500","GREGG SCHNEIDEWIND",,,,,13,7,0,3,10,0,10,10,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110519130710P030010252198001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ODFJELL USA INC. AND SUBSIDIARIES 401(K) PROFIT SHARING PLAN","003","1994-01-01","ODFJELL USA INC.",,,"12211 PORT RD",,"SEABROOK","TX","77586",,,,,,,,,,,,,,,,,,"132732985","7138442300","483000","ODFJELL USA INC.",,"12211 PORT RD",,"SEABROOK","TX","77586",,,,,,,"132732985","7138442300",,,,"2011-05-19T13:07:02-0500","REBECCA SNYDER","2011-05-19T13:07:02-0500","REBECCA SNYDER",,,135,95,1,17,113,0,113,113,1,,"2E2J2F2G3B3E",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110519133814P030289944608002","2007-07-01","2008-06-30","2",,,,,,,,,"1",,,"ST. MARTIN CENTER TAX SHELTERED ANNUITY PLAN","001","1985-07-01","ST. MARTIN CENTER",,,,,,,,,,,,,,"1701 PARADE STREET",,"ERIE","PA","16503",,,,,,,"251211464","8144526113","624100","ST. MARTIN CENTER",,"1701 PARADE STREET",,"ERIE","PA","16503",,,,,,,"251211464","8144526113",,,,"2011-05-19T09:27:19-0500","BARBARA SCHRECKENGOST","2011-05-19T09:27:19-0500","BARBARA SCHRECKENGOST",,,,,,,,,,,,,"2L",,"1",,"1",,"1",,"1",,,,,,,,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110518110152P040019641111001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DANISCO USA, INC. GROUP INSURANCE PLAN","502","1998-09-01","DANISCO USA INC",,,"FOUR NEW CENTURY PARKWAY",,"NEW CENTURY","KS","660311144",,,,,,,,,,,,,,,,,,"431052363","8002556837","311900","DANISCO USA INC",,"FOUR NEW CENTURY PARKWAY",,"NEW CENTURY","KS","660311144",,,,,,,"431052363","8002556837",,,,"2011-05-18T11:01:48-0500","DAVID R PUTNAM",,,,,1290,1295,32,0,1327,,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","0","0","0","0","1","0","1","9","1","0","0","FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518110158P030286940224001","2010-01-01","2010-12-31","2",,,,"1",,,,,"1",,,"LANCASTER INTERNAL MEDICINE GROUP 401K PROFIT SHARING PLAN","002","2004-01-01","LANCASTER INTERNAL MEDICINE GROUP",,,"817 NORTH CHERRY STREET",,"LANCASTER","PA","17602",,,,,,,,,,,,,,,,,,"232573931","7173938131","621111","LANCASTER INTERNAL MEDICINE GROUP",,"817 NORTH CHERRY STREET",,"LANCASTER","PA","17602",,,,,,,"232573931","7173938131",,,,"2011-04-23T12:54:41-0500","J HAROLD MOHLER",,,,,12,,,,0,,0,,,,"3B2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110518114045P040284113664001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"AMERCO DISABILITY INSURANCE PLAN","503","1972-04-04","AMERCO",,,"2727 NORTH CENTRAL AVENUE",,"PHOENIX","AZ","85004",,,,,,,"2727 NORTH CENTRAL AVENUE",,"PHOENIX","AZ","85004",,,,,,,"880106815","6022636011","532100","OXFORD LIFE INSURANCE COMPANY",,"2721 NORTH CENTRAL AVENUE",,"PHOENIX","AZ","85004",,,,,,,"860216483","6022636666",,,,"2011-05-18T10:29:58-0500","ERIC JOHANSSON","2011-05-17T15:52:54-0500","JAMES GREER",,,7575,7358,0,0,7358,0,7358,0,0,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110516191155P030282460656001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN SOFTWARE USA INC. LONG TERM DISABILITY PLAN","503","2000-01-01","AMERICAN SOFTWARE USA INC.",,,"470 EAST PACES FERRY ROAD",,"ATLANTA","GA","30305",,,,,,,,,,,,,,,,,,"581809983","4042645417","541519","AMERICAN SOFTWARE USA INC.",,"470 EAST PACES FERRY ROAD",,"ATLANTA","GA","30305",,,,,,,"581809983","4042645417",,,,"2011-05-16T19:11:47-0500","PATRICIA D. MCMANUS",,,,,324,312,0,0,312,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110517151559P030060410657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"H.H. BENFIELD ELECTRIC SUPPLY CO., INC. HEALTH PLAN","501","2007-10-01","H.H. BENFIELD ELECTRIC SUPPLY CO., INC.",,,"26 LAFAYETTE AVENUE",,"WHITE PLAINS","NY","106031603",,,,,,,,,,,,,,,,,,"131697547","9149486660","423600","H.H. BENFIELD ELECTRIC SUPPLY CO., INC.",,"26 LAFAYETTE AVENUE",,"WHITE PLAINS","NY","106031603",,,,,,,"131697547","9149486660",,,,"2011-05-17T15:15:58-0500","MARIA BRADLEY",,,,,106,103,3,0,106,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517182515P040282272336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAYMARKET MEDIA, INC. HEALTH AND WELFARE PLAN","501","2005-01-01","HAYMARKET MEDIA, INC.",,,"114 WEST 26TH STREET",,"NEW YORK","NY","10001",,,,,,,,,,,,,,,,,,"133241585","6466386084","511190","HAYMARKET MEDIA, INC.",,"114 WEST 26TH STREET",,"NEW YORK","NY","10001",,,,,,,"133241585","6466386084",,,,"2011-05-17T18:25:08-0500","JUDY ELLINGSON",,,,,164,167,13,0,180,,,,,,,"4A4B4D4E4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110518132318P030010153894001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTER PARK MANAGEMENT CORP 401(K) PROFIT SHARING PLAN & TRUST","001","2003-07-01","INTERPARK MANAGEMENT CORP",,,"75 WASHBURNS LANE",,"STONY POINT","NY","10980",,,,,,,,,,,,,,,,,,"371454497","8459420279","531310","INTERPARK MANAGEMENT CORP",,"75 WASHBURNS LANE",,"STONY POINT","NY","10980",,,,,,,"371454497","8459420279",,,,"2011-05-18T01:23:16-0500","INTERPARK MANAGEMENT CORP",,,,,8,7,0,0,7,0,7,7,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-18","Filed with authorized/valid electronic signature",, "20110517141137P030010067894001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"S & H SALES AND MARKETING, INC. 401(K) PLAN","001","2008-04-10","S & H SALES MARKETING, INC.",,,"5050 EAST BELKNAP",,"FORT WORTH","TX","76117",,,,,,,"5050 EAST BELKNAP",,"FORT WORTH","TX","76117",,,,,,,"262171232","8176655050","541910","S & H SALES MARKETING, INC.",,"5050 EAST BELKNAP",,"FORT WORTH","TX","76117",,,,,,,"262171232","8176655050","S & H SALES MARKETING, INC.","751177065","001","2011-05-17T14:10:56-0500","MICHELLE HILBERT",,,,,4,5,0,0,5,0,5,4,0,,"2E2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110517061706P040061639553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TYLOK 401(K) PLAN","001","1990-12-30","TYLOK INTERNATIONAL, INC.",,,"1061 E. 260TH STREET",,"EUCLID","OH","44132",,,,,,,,,,,,,,,,,,"340801411","2162617310","332900","TYLOK INTERNATIONAL, INC.",,"1061 E. 260TH STREET",,"EUCLID","OH","44132",,,,,,,"340801411","2162617310",,,,"2011-05-16T14:32:43-0500","LAURA ONYSHKO",,,,,54,40,0,9,49,0,49,49,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110516201947P040010487510001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FSA-THE PINT SIZE CORPORATION","510","2000-02-01","THE PINT SIZE CORPORATION",,,"99-1287 WAIUA PLACE",,"AIEA","HI","967013277",,,,,,,,,,,,,,,,,,"990203239","8084870030","424400","THE PINT SIZE CORPORATION",,"99-1287 WAIUA PLACE",,"AIEA","HI","967013277",,,,,,,"990203239","8084870030",,,,"2011-05-16T19:51:23-0500","JOY AKIYAMA",,,,,10,9,0,0,9,0,,,,,,"4R","0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-16","Filed with authorized/valid electronic signature",, "20110517153817P030060419969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FORT MILL DERMATOLOGY 401(K) PROFIT SHARING PLAN & TRUST","001","2006-11-22","FORT MILL DERMATOLOGY",,,"1700 FIRST BAXTER CROSSING",,"FORT MILL","SC","29708",,,,,,,,,,,,,,,,,,"202910197","8038203376","621111","FORT MILL DERMATOLOGY",,"1700 FIRST BAXTER CROSSING",,"FORT MILL","SC","29708",,,,,,,"202910197","8038203376",,,,"2011-05-17T03:38:15-0500","FORT MILL DERMATOLOGY",,,,,10,9,0,0,9,0,9,9,1,,"2A2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-17","Filed with authorized/valid electronic signature",, "20110512104339P040018552535001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"X-RAY PROFESSIONAL ASSOCIATION 401(K) PROFIT SHARING PLAN AND TRUST","002","1973-07-31","X-RAY PROFESSIONAL ASSOCIATION",,,"2 1/2 BEACON ST",,"CONCORD","NH","03301",,,,,,,,,,,,,,,,,,"020307259","6032281521","621111","X-RAY PROFESSIONAL ASSOCIATION",,"2 1/2 BEACON ST",,"CONCORD","NH","03301",,,,,,,"020307259","6032281521",,,,"2011-05-12T11:43:33-0500","NICOLE VERPAULT",,,,,30,21,0,6,27,0,27,28,0,,"2E2F2H2R2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512111507P040268558256004","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"SCHROEDER WELDING & CONSTRUCTION CO INC PROFIT SHARING PLAN","001","1977-01-01","SCHROEDER WELDING & CONSTRUCTION",,,"P O BOX 123",,"VICTORIA","TX","779020123",,,,,,,,,,,,,,,,,,"741667045","3615734322","237990","SCHROEDER WELDING & CONSTRUCTION",,"P O BOX 123",,"VICTORIA","TX","77902",,,,,,,"741667045","3615734322",,,,"2011-05-12T12:09:43-0500","ROBERT SCHROEDER, JR.",,,,,10,0,0,0,0,0,0,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512095158P040268390560001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARRAZZO S AUTO SERVICE, INC. PROFIT SHARING PLAN","001","1999-01-01","MARRAZZO S AUTO SERVICE, INC.",,,"1538 SOUTH OLDEN AVENUE",,"TRENTON","NJ","08610",,,,,,,"1538 SOUTH OLDEN AVENUE",,"TRENTON","NJ","08618",,,,,,,"221940595","6098902212","811120","MARRAZZO S AUTO SERVICE, INC.",,"1538 SOUTH OLDEN AVENUE",,"TRENTON","NJ","08610",,,,,,,"221940595","6098902212",,,,"2011-05-12T09:51:56-0500","ROBIN MARRAZZO","2011-05-12T09:51:56-0500","ROBIN MARRAZZO",,,17,14,0,1,15,0,15,14,1,,"2A2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110512095619P030270982384001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"S. RAMSEY KOSCHAK PROFIT SHARING PLAN & TRUST","001","2002-01-01","S. RAMSEY KOSCHAK",,,"3215 GREEN RIDGE",,"SAN ANGELO","TX","76904",,,,,,,,,,,,,,,,,,"751708965","3259421616","621510","S. RAMSEY KOSCHAK",,"3215 GREEN RIDGE",,"SAN ANGELO","TX","76904",,,,,,,"751708965","3259421616",,,,"2011-05-12T09:56:15-0500","S. RAMSEY KOSCHAK",,,,,4,4,0,0,4,0,4,4,0,,"2E2A2J2K3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110506155256P040017532327001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DIVERSIFIED PLASTICS, INC. SAVINGS AND RETIREMENT PLAN AND TRUST","001","1991-01-01","DIVERSIFIED PLASTICS, INC.",,,"8617 XYLON COURT NORTH",,"MINNEAPOLIS","MN","55445",,,,,,,,,,,,,,,,,,"411322348","7634242525","326100","DIVERSIFIED PLASTICS, INC.",,"8617 XYLON COURT NORTH",,"MINNEAPOLIS","MN","55445",,,,,,,"411322348","7634242525",,,,"2011-05-06T15:52:49-0500","ROGER VANG",,,,,52,46,1,3,50,0,50,34,0,,"2E2F2G2J2K2T3D3H",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506104744P030009055174001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MORRISSEY & MORRISSEY, LLC 401(K) PLAN","001","2003-01-01","MORRISSEY & MORRISSEY, LLC",,,"203 CHURCH STREET",,"NAUGATUCK","CT","06770",,,,,,,,,,,,,,,,,,"020566938","2037236691","541110","MORRISSEY & MORRISSEY, LLC",,"203 CHURCH STREET",,"NAUGATUCK","CT","06770",,,,,,,"020566938","2037236691",,,,"2011-05-06T10:47:43-0500","DAVID MORRISSEY","2011-05-06T10:47:43-0500","DAVID MORRISSEY",,,11,11,,,11,,11,12,,,"2E2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110512143354P030271566000001","2001-01-01","2001-12-31","2",,"0","0","0","0","0","0","0","1","0",,"YOUNG AND HEALTHY 403(B) PLAN","001","1997-05-01","YOUNG AND HEALTHY",,,"37 N. HOLLISTON AVE.",,"PASADENA","CA","91106",,,,,,,,,,,,,,,,,,"954527969","6267955166","624100","YOUNG AND HEALTHY",,"37 N. HOLLISTON AVE.",,"PASADENA","CA","91106",,,,,,,"954527969","6267955166",,,,"2011-05-12T14:33:47-0500","PATTY SULLIVAN",,,,,7,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110506082337P030016801447001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"IRODZ ASSOCIATES, LLC PROFIT SHARING PLAN","001","2006-01-01","IRODZ ASSOCIATES, LLC",,,"39 EAST 39TH STREET- UNIT 8I",,"PATERSON","NJ","07514",,,,,,,,,,,,,,,,,,"300107818","9732719478","541990","IRODZ ASSOCIATES, LLC",,"39 EAST 39TH STREET- UNIT 8I",,"PATERSON","NJ","07514",,,,,,,"300107818","9732719478",,,,"2011-05-06T08:23:32-0500","IDIDA RODRIGUEZ",,,,,2,1,0,1,2,0,2,2,1,,"2A2E3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506095918P040017479959001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RPM TECHNIK, INC. 401(K) PLAN","001","1993-01-01","RPM TECHNIK, INC.",,,"2499 BATH ROAD",,"PENN YAN","NY","14527",,,,,,,"2499 BATH ROAD",,"PENN YAN","NY","14527",,,,,,,"203311614","3155362333","336410","RPM TECHNIK, INC.",,"2499 BATH ROAD",,"PENN YAN","NY","14527",,,,,,,"203311614","3155362333",,,,"2011-05-06T09:57:12-0500","EDWARD KENNEDY","2011-05-06T09:46:19-0500","EDWARD KENNEDY",,,35,28,0,5,33,0,33,29,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110512104948P040018553223001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLAIRE-NOEL ENTERPRISES, INC. 401(K) PROFIT SHARING PLAN","001","2009-01-01","CLAIRE-NOEL ENTERPRISES, INC.",,,"4300 BLOSSOM WAY",,"ROGERS","AR","72758",,,,,,,,,,,,,,,,,,"680574370","4793661841","451120","CLAIRE-NOEL ENTERPRISES, INC.",,"4300 BLOSSOM WAY",,"ROGERS","AR","72758",,,,,,,"680574370","4793661841",,,,"2011-05-12T10:49:13-0500","GRANT WETHERILL",,,,,6,6,0,0,6,0,6,1,,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512171547P030017883351001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"RESEARCH INTERNATIONAL, INC. 401(K) PLAN","001","1997-06-01","RESEARCH INTERNATIONAL",,,"17161 BEATON ROAD SE",,"MONROE","WA","982721034",,,,,,,"17161 BEATON ROAD SE",,"MONROE","WA","982721034",,,,,,,"911472117","3608054930","541700","RESEARCH INTERNATIONAL",,"17161 BEATON ROAD SE",,"MONROE","WA","982721034",,,,,,,"911472117","3608054930",,,,"2011-05-12T17:11:05-0500","LEONIE SAASKI",,,,,20,16,0,5,21,0,21,10,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512101157P030017817383001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ERGOSTORE ONLINE 401(K) PLAN AND TRUST","001","2008-01-01","ENGLEBAUGH ASSOCIATES INC","ERGOSTORE ONLINE",,"17319 MEADOW BOTTOM RD",,"CHARLOTTE","NC","282776588",,,,,,,"17319 MEADOW BOTTOM RD",,"CHARLOTTE","NC","282776588",,,,,,,"562072360","7045437994","454110","ENGLEBAUGH ASSOCIATES INC",,"17319 MEADOW BOTTOM RD",,"CHARLOTTE","NC","282776588",,,,,,,"562072360","7045437994",,,,"2011-05-12T09:57:03-0500","PATRICIA L ENGLEBAUGH",,,,,3,2,0,1,3,0,3,3,0,,"2A2E2G2J2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512131902P040008624386001","2011-01-01","2011-03-25","2",,"0","0","1","1","0","0","0","0","0",,"TRUTH SOLVENTS 1 INC. PROFIT SHARING PLAN & TRUST","001","2005-06-03","TRUTH SOLVENTS 1 INC.",,,"166 S. COCHRANS GREEN CIRCLE",,"THE WOODLANDS","TX","77380",,,,,,,,,,,,,,,,,,"202818024","9366154163","541700","TRUTH SOLVENTS 1 INC.",,"166 S. COCHRANS GREEN CIRCLE",,"THE WOODLANDS","TX","77380",,,,,,,"202818024","9366154163",,,,"2011-05-12T10:21:48-0500","MARK DEGUERRE",,,,,1,0,,,0,,0,0,,,"2E2G2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110506111020P040017489191001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BROCKETT TAMNY & CO. INCORPORATED PROFIT SHARING PLAN","001","1993-01-01","BROCKETT TAMNY & CO. INCORPORATED",,,"440 S. FLOWER STREET","SUITE 2350","LOS ANGELES","CA","90071",,,,,,,"440 S. FLOWER STREET","SUITE 2350","LOS ANGELES","CA","90071",,,,,,,"954280600","2134524433","523110","PETER BROCKETT",,"2169 ADAIR STREET",,"SAN MARINO","CA","91108",,,,,,,"263749871","6262829626",,,,"2011-05-06T11:07:39-0500","PETER BROCKETT",,,,,2,2,0,0,2,0,2,2,0,,"2E",,,,"1","1",,,"1","1","1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110512134634P030271472528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"A. POLETTO & ASSOCIATES, INC. PROFIT SHARING PLAN","001","2004-01-01","A. POLETTO & ASSOCIATES, INC.",,,"226 BALDWIN DRIVE",,"WEST CHESTER","PA","19380",,,,,,,"ANTHONY POLETTO","226 BALDWIN DRIVE","WEST CHESTER","PA","19380",,,,,,,"232971075","6105245529","238100","A. POLETTO & ASSOCIATES, INC.",,"226 BALDWIN DRIVE",,"WEST CHESTER","PA","19380",,,,,,,"232971075","6105245529",,,,"2011-05-12T13:46:17-0500","ANTHONY POLETTO","2011-05-12T13:46:17-0500","ANTHONY POLETTO",,,9,8,,1,9,,9,9,,,"2A2E3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110512115607P030271233040001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST NATIONAL BANK OF THE ROCKIES EMPLOYEES CAFETERIA PLAN","501","2005-01-01","FIRST NATIONAL BANK OF THE ROCKIES",,,"2452 HIGHWAY 6 AND 50",,"GRAND JUNCTION","CO","815051108",,,,,,,,,,,,,,,,,,"840264235","9702422255","522110","FIRST NATIONAL BANK OF THE ROCKIES",,"2452 HIGHWAY 6 AND 50",,"GRAND JUNCTION","CO","815051108",,,,,,,"840264235","9702422255",,,,"2011-05-12T11:56:01-0500","PATTI ROBERTS",,,,,101,96,0,0,96,,,,,,,"4A4D4E4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512141311P040018585175007","2010-01-01","2010-07-01","2",,,,"1","1",,"1",,,,,"HOSPICE OF THE RED RIVER VALLEY 403(B)(7) PLAN","001","1995-01-01","HOSPICE OF THE RED RIVER VALLEY",,,"1701 38TH ST SW, SUITE 101",,"FARGO","ND","581034499",,,,,,,,,,,,,,,,,,"450349152","7013561500","621610","HOSPICE OF THE RED RIVER VALLEY",,"1701 38TH ST SW, SUITE 101",,"FARGO","ND","581034499",,,,,,,"450349152","7013561500",,,,"2011-05-12T06:53:05-0500","SHEILA KLOSE",,,,,163,0,,0,0,,0,0,0,,"2M3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512082415P030270811408002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WILLIAM AND SALLY TANDET CENTER FOR CONTINUING CARE FLEXIBLE BENEFIT PLAN","501","2008-01-01","MILL RIVER FOUNDATION, INC.",,,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"203787014","7706190866","623000","MILL RIVER FOUNDATION, INC.",,"5895 WINDWARD PARKWAY","SUITE 200","ALPHARETTA","GA","30005",,,,,,,"203787014","7706190866",,,,"2011-05-12T04:06:43-0500","JACKIE SORRELLS","2011-05-12T04:06:43-0500","DOUGLAS K MITTLEIDER",,,90,87,,,87,,,,,,,"4A4D",,,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110506132945P040017508807001","2006-10-01","2007-09-30","1",,"0","1","0","0","0","0","0","0","0",,"GOLDMINE ENTERPRISES, INC. PROFIT SHARING PLAN","001","1984-10-01","GOLDMINE ENTERPRISES, INC.",,,"36 NE 1ST ST., SUITE 712",,"MIAMI","FL","331322417",,,,,,,,,,,,,,,,,,"591951744","3053717086","448310","GOLDMINE ENTERPRISES, INC.",,"36 NE 1ST ST., SUITE 712",,"MIAMI","FL","331322417",,,,,,,"591951744","3053717086",,,,"2011-05-06T13:29:43-0500","RIVKA ELIANI",,,,,4,4,0,0,4,0,4,4,0,0,"2E3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110512084340P030017804727001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"FRIESS SMALL CAP TRUST","001","2004-01-01","FRIESS ASSOCIATES OF DELAWARE, LLC",,,"P.O. BOX 4166","3711 KENNETT PIKE","GREENVILLE","DE","19807",,,,,,,,,,,,,,,,,,"367386992","3026563917","523900","FRIESS ASSOCIATES OF DELAWARE, LLC",,"P.O. BOX 4166","3711 KENNETT PIKE","GREENVILLE","DE","19807",,,,,,,"367386992","3026563917",,,,,,,,"2011-05-12T08:31:35-0500","TIMOTHY J. REIS",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","0","1","0","FILING_RECEIVED","2011-05-12",,"Filed with authorized/valid electronic signature", "20110512093310P030270940864002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BEN PAGE AND ASSOCIATES LLC PROFIT SHARING PLAN AND TRUST","001","1998-01-01","BENJAMIN G PAGE JR",,,"1206 17TH AVE SOUTH",,"NASHVILLE","TN","372122802",,,,,,,,,,,,,,,,,,"621763786","6153200220","541320","BENJAMIN G PAGE JR",,"1206 17TH AVE SOUTH",,"NASHVILLE","TN","372122802",,,,,,,"621763786","6153200220",,,,"2011-05-11T11:36:04-0500","BENJAMIN PAGE",,,,,10,10,,,10,,10,11,,,"3E2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110506120817P040017497943001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMCHECK NEVADA 401K PLAN","002","2008-06-15","WILLIAM D. RAMOS, MD",,"AMCHECK NEVADA DBA INTEGRATED EMPLOYER SOLUTIONS LLC","1070 WIGWAM PARKWAY SUITE 100",,"HENDERSON","NV","89074",,,,,,,,,,,,,,,,,,"860880197","7028920660","621111","AMCHECK NEVADA DBA INTEGRATED EMPLOYER SOLUTIONS LLC",,"1070 WIGWAM PARKWAY SUITE 100",,"HENDERSON","NV","89074",,,,,,,"830486625","7025654110",,,,"2011-05-06T11:45:42-0500","JASON STANFIELD",,,,,12,11,0,2,13,0,13,11,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506121053P040253206928001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMCHECK NEVADA 401K PLAN","002","2009-06-30","C2 GAMING, LLC",,"AMCHECK NEVADA DBA INTEGRATED ER SOLUTIONS, LLC","1070 WIGWAM PARKWAY SUITE 100",,"HENDERSON","NV","89074",,,,,,,,,,,,,,,,,,"510451789","7029386222","713200","AMCHECK NEVADA DBA INTEGRATED ER SOLUTIONS, LLC",,"1070 WIGWAM PARKWAY SUITE 100",,"HENDERSON","NV","89074",,,,,,,"830486625","7025654110",,,,"2011-05-06T11:40:47-0500","JASON STANFIELD",,,,,23,23,0,2,25,0,25,15,2,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110506101916P030016816343001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HIPSHER TOOL & DIE, INC. 401(K) RETIREMENT PLAN","002","1989-01-01","HIPSHER TOOL & DIE, INC.",,,"1593 S. STATE ROAD 115",,"WABASH","IN","469928380",,,,,,,"1593 S. STATE ROAD 115",,"WABASH","IN","469928380",,,,,,,"351040620","2605634143","333510","HIPSHER TOOL & DIE, INC.",,"1593 S. STATE ROAD 115",,"WABASH","IN","469928380",,,,,,,"351040620","2605634143",,,,"2011-05-06T10:18:50-0500","JULIE DAHL",,,,,15,13,0,3,16,0,16,16,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-06","Filed with authorized/valid electronic signature",, "20110512124658P040010059670001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HUNTSVILLE EMERGENCY MEDICAL SERVICES, INC. EMPLOYEE BENEFITS PLAN","502","2002-01-01","HUNTSVILLE EMERGENCY MEDICAL SERVICES, INC.",,,"2700 6TH AVENUE SW",,"HUNTSVILLE","AL","358053755",,,,,,,,,,,,,,,,,,"630799285","2565366660","621900","HUNTSVILLE EMERGENCY MEDICAL SERVICES, INC.",,"2700 6TH AVENUE SW",,"HUNTSVILLE","AL","358053755",,,,,,,"630799285","2565366660",,,,"2011-05-12T11:29:22-0500","JON HOWELL",,,,,133,129,0,0,129,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","11","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512124711P030057583841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEWIS OIL COMPANY INC 401(K) PLAN AND TRUST","001","1981-07-01","LEWIS OIL COMPANY INC",,,"621 S E DEPOT AVENUE","PO BOX 1282","GAINESVILLE","FL","326021282",,,,,,,"621 S E DEPOT AVENUE","PO BOX 1282","GAINESVILLE","FL","326021282",,,,,,,"591487255","3523763293","424700","LEWIS OIL COMPANY INC",,"621 S E DEPOT AVENUE","PO BOX 1282","GAINESVILLE","FL","326021282",,,,,,,"591487255","3523763293",,,,"2011-05-12T12:32:17-0500","WENDA LEWIS",,,,,28,20,0,1,21,0,21,21,0,,"2E2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512151508P040018595671001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"DIEBOLD & ASSOCIATES, LTD. PROFIT SHARING PLAN","001","1993-01-01","DIEBOLD & ASSOCIATES. LTD.",,"FRANK W. DIEBOLD, JR.","1340 REMINGTON RD",,"SCHAUMBURG","IL","60173",,,,,,,,,,,,,,,,,,"363250987","8477559000","541211","DIEBOLD & ASSOCIATES. LTD.","FRANK W. DIEBOLD, JR.","1340 REMINGTON RD",,"SCHAUMBURG","IL","60173",,,,,,,"363250987","8477559000",,"363250987",,"2011-05-12T15:42:05-0500","FRANK W. DIEBOLD, JR.","2011-05-12T15:42:16-0500","FRANK W. DIEBOLD, JR.",,,3,3,0,0,3,0,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110513122220P030058134161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CITY OF FITZGERALD GROUP HEALTH","502","2009-04-01","CITY OF FITZGERALD","CITY OF FITZGERALD","KATHY A. YOUNG, CFO","302 EAST CENTRAL AVENUE","CITY HALL","FITZGERALD","GA","31750",,,,,,,"302 EAST CENTRAL AVENUE","CITY HALL","FITZGERALD","GA","31750",,,,,,,"586000576","2294265060","921000","CITY OF FITZGERALD","KATHY A. YOUNG, CFO","302 EAST CENTRAL AVENUE","CITY HALL","FITZGERALD","GA","31750",,,,,,,"586000576","2294265060",,,,"2011-05-13T12:21:45-0500","KATHY YOUNG",,,,,134,134,0,0,134,0,134,0,0,0,,"4A4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110512151846P040059029393001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIALYSIS CLINIC, INC. FLEXIBLE BENEFITS PLAN","504","2008-01-01","DIALYSIS CLINIC, INC.",,,"1633 CHURCH STREET SUITE 500",,"NASHVILLE","TN","372032948",,,,,,,,,,,,,,,,,,"620850498","6153420461","621492","DIALYSIS CLINIC INC",,"1633 CHURCH STREET SUITE 500",,"NASHVILLE","TN","37203",,,,,,,"620850498","6153420461",,,,"2011-05-12T14:49:19-0500","DANIEL WATSON",,,,,740,688,0,0,688,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512122429P040268692144001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOUTHWEST KANSAS CARDIOLOGY, LLC EZ(K) RETIREMENT PLAN","001","2006-10-01","SOUTHWEST KANSAS CARDIOLOGY, LLC",,,"100 ROSS BLVD. SUITE 2B",,"DODGE CITY","KS","67801",,,,,,,,,,,,,,,,,,"203262051","6202253900","621111","SOUTHWEST KANSAS CARDIOLOGY, LLC",,"100 ROSS BLVD. SUITE 2B",,"DODGE CITY","KS","67801",,,,,,,"203262051","6202253900",,,,"2011-05-12T12:23:17-0500","REBECCA KHAN",,,,,9,8,0,1,9,0,9,9,1,,"2A2E2F2G2J3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512125817P040010060102001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRANDERMILL WOODS FLEXIBLE BENEFITS PLAN","502","2007-01-01","BRANDERMILL WOODS",,,"14311 BRANDERMILL WOODS TRAIL",,"MIDLOTHIAN","VA","231124124",,,,,,,,,,,,,,,,,,"232154882","8047441173","623000","BRANDERMILL WOODS",,"14311 BRANDERMILL WOODS TRAIL",,"MIDLOTHIAN","VA","231124124",,,,,,,"232154882","8047441173",,,,"2011-05-12T12:56:16-0500","MIRA PALLOTTA",,,,,134,130,0,0,130,,130,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110512152233P030271661296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INDIANA MEMBERS CREDIT UNION GROUP HEALTH INSURANCE PLAN","505","1990-01-01","INDIANA MEMBERS CREDIT UNION",,,"5103 MADISON AVENUE",,"INDIANAPOLIS","IN","46227",,,,,,,"5103 MADISON AVENUE",,"INDIANAPOLIS","IN","46227",,,,,,,"350997241","3177880366","522130","INDIANA MEMBERS CREDIT UNION",,"5103 MADISON AVENUE",,"INDIANAPOLIS","IN","46227",,,,,,,"350997241","3177880366",,,,"2011-05-12T15:22:11-0500","TODD HABIG",,,,,222,221,4,,225,,225,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-12","Filed with authorized/valid electronic signature",, "20110513094218P040018732535001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"TOTAL HEALTHCARE GROUP, INC. 401(K) PLAN AND TRUST","001","2004-01-01","TOTAL HEALTHCARE GROUP, INC.",,,"5906 N. MILWAUKEE AVENUE",,"CHICAGO","IL","60646",,,,,,,,,,,,,,,,,,"203714940","7737747300","621111","TOTAL HEALTHCARE GROUP, INC",,"5906 N. MILWAUKEE AVENUE",,"CHICAGO","IL","60646",,,,,,,"203714940","7737747300",,,,"2011-05-13T09:33:51-0500","RICHARD ANSFIELD",,,,,4,24,0,0,24,0,24,4,0,,"2E2J2K2F2G2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-13","Filed with authorized/valid electronic signature",, "20110525142121P040020950007001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GIFT PRODUCTIONS, INC. 401(K) PLAN","001","2002-07-01","GIFT PRODUCTIONS, INC.","A GIFTED BASKET/CESTA GIFT BASKETS","PAMELA MONROE","6632 MURRAY PARK DRIVE",,"SAN DIEGO","CA","92120",,,,,,,"6632 MURRAY PARK DRIVE",,"SAN DIEGO","CA","92120",,,,,,,"753045926","6196983226","454110","GIFT PRODUCTIONS, INC.","PAMELA MONROE","6632 MURRAY PARK DRIVE",,"SAN DIEGO","CA","92120",,,,,,,"753045926","6196983226",,,,"2011-05-25T14:16:33-0500","PAMELA MONROE",,,,,3,2,0,1,3,0,3,3,0,,"2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525161848P040302795648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DING LEI, A PROFESSIONAL MEDICAL CORPORATION DEFINED BENEFIT PENSION PLAN","002","2006-01-01","DING LEI, A PROFESSIONAL MEDICAL CORPORATION",,,"1661 HANOVER ROAD, STE. 101",,"ROWLAND HEIGHTS","CA","91745",,,,,,,,,,,,,,,,,,"721520539","6265814298","621111","DING LEI, A PROFESSIONAL MEDICAL CORPORATION",,"1661 HANOVER ROAD, STE. 101",,"ROWLAND HEIGHTS","CA","91745",,,,,,,"721520539","6265814298",,,,"2011-05-25T16:11:38-0500","LEI DING",,,,,4,3,0,0,3,0,3,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110524142932P040020747287001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCOTT'S LIQUID GOLD-INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1978-10-03","SCOTT'S LIQUID GOLD-INC.","SCOTT'S LIQUID GOLD","SCOTT'S LIQUID GOLD","4880 HAVANA STREET",,"DENVER","CO","80239",,,,,,,"4880 HAVANA STREET",,"DENVER","CO","80239",,,,,,,"840920811","3033734860","325600","SCOTT'S LIQUID GOLD-INC.","SCOTT'S LIQUID GOLD","4880 HAVANA STREET",,"DENVER","CO","80239",,,,,,,"840920811","3033734860",,,,"2011-05-24T14:24:04-0500","BRIAN BOBERICK",,,,,71,59,,12,71,,71,71,,,"2O3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524110846P030302728752001","2007-01-01","2007-09-17","2",,"0","0","1","1","0","0","0","1","0",,"BROWN AND PARTNERS, INC. 401K PLAN AND TRUST","001","2000-01-01","BROWN AND PARTNERS, INC.",,,"600 WEST CHICAGO AVENUE",,"CHICAGO","IL","60564",,,,,,,"600 WEST CHICAGO AVENUE",,"CHICAGO","IL","60564",,,,,,,"232986779","3126423700","323100","BROWN AND PARTNERS, INC.",,"600 WEST CHICAGO AVENUE",,"CHICAGO","IL","60564",,,,,,,"232986779","3126423700",,,,"2011-05-24T10:52:57-0500","TODD ANDREWS","2011-05-24T10:53:52-0500","TODD ANDREWS",,,38,0,0,0,0,0,0,0,0,,"2A2E2G2J",,"1",,"1",,"1",,"1",,"1",,,,"1","1",,,"1",,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524162830P040300166368002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROMINE, ROMINE & BURGESS, INC. PROFIT SHARING PLAN","003","1997-01-01","ROMINE, ROMINE & BURGESS, INC.",,,"300 GREENLEAF",,"FORT WORTH","TX","76107",,,,,,,,,,,,,,,,,,"751155724","8173364633","541310","ROMINE, ROMINE & BURGESS, INC.",,"300 GREENLEAF",,"FORT WORTH","TX","76107",,,,,,,"751155724","8173364633",,,,"2011-05-31T10:49:47-0500","RICHARD A. ROMINE","2011-05-31T10:49:47-0500","RICHARD A. ROMINE",,,14,14,,,14,,14,14,,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110525102105P030305290416001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BMS CO, INC 401(K) PLAN","001","2001-09-01","BMS CO INC",,,"90 WESTMORELAND AVE",,"WHITE PLAINS","NY","10606",,,,,,,"90 WESTMORELAND AVE",,"WHITE PLAINS","NY","10606",,,,,,,"131842479","8004312518","423800","BMS CO INC",,"90 WESTMORELAND AVE",,"WHITE PLAINS","NY","10606",,,,,,,"131842479","8004312518",,,,"2011-05-25T10:20:46-0500","LAURENCE SMITH",,,,,18,17,0,0,17,0,17,13,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525132819P030064674865001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FELIX C. MADRID, DDS, PA 401K PROFIT SHARING PLAN","001","2005-01-01","FELIX C. MADRID, DDS, PA",,,"2345 SOUTHERN BOULEVARD, SUITE B1",,"RIO RANCHO","NM","87124",,,,,,,,,,,,,,,,,,"850457124","5058920111","621210","FELIX C. MADRID, DDS, PA",,"2345 SOUTHERN BOULEVARD, SUITE B1",,"RIO RANCHO","NM","87124",,,,,,,"850457124","5058920111",,,,"2011-05-25T02:28:15-0500","FELIX MADRID",,,,,6,6,0,0,6,0,6,6,0,,"2A2E2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525163202P030020083879001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GL & V USA INC WELFARE BENEFIT PLAN","502","2000-01-01","GL & V USA INC",,,"1000 LAVAL BOULEVARD",,"LAWRENCEVILLE","GA","30043",,,,,,,,,,,,,,,,,,"582412182","7709632100","322200","GL & V USA INC",,"1000 LAVAL BOULEVARD",,"LAWRENCEVILLE","GA","30043",,,,,,,"582412182","7709632100",,,,"2011-05-25T16:31:53-0500","FRANCES DUNSMORE",,,,,557,552,0,0,552,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110524122917P030009293778001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAW OFFICE OF BURTON W. GUETZ, P.C. DEFINED BENEFIT PENSION PLAN","001","2007-01-01","LAW OFFICE OF BURTON W. GUETZ, P.C.",,,"6046 CORNERSTONE COURT. W.","SUITE 201","SAN DIEGO","CA","92121",,,,,,,,,,,,,,,,,,"330653327","8584053060","541110","LAW OFFICE OF BURTON W. GUETZ, P.C.",,"6046 CORNERSTONE COURT. W.","SUITE 201","SAN DIEGO","CA","92121",,,,,,,"330653327","8584053060",,,,"2011-05-24T11:54:01-0500","BURTON GUETZ","2011-05-24T11:54:01-0500","BURTON GUETZ",,,2,2,0,0,2,0,2,,0,,"1A3D",,,,"1",,,,"1",,,,"1",,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524094054P030302550080001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"JOHNSTONE SUPPLY OF NORTH TEXAS 401(K) PLAN","001","1994-03-01","JOVAN CORPORATION DBA JOHNSTONE SUPPLY",,,"2505 WILLOWBROOK ROAD","SUITE 203","DALLAS","TX","75220",,,,,,,"2505 WILLOWBROOK ROAD","SUITE 203","DALLAS","TX","75220",,,,,,,"751903563","2149028372","423700","JOVAN CORPORATION DBA JOHNSTONE SUPPLY",,"2505 WILLOWBROOK ROAD","SUITE 203","DALLAS","TX","75220",,,,,,,"751903563","2149028372",,,,"2011-05-24T09:38:44-0500","JOHN VANDERCOOK",,,,,31,26,0,5,31,0,31,25,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110526111951P040304891568001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAKES RESTAURANT INC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","JAKES RESTAURANT INC",,,"21445 W GUMINA ROAD",,"PEWAUKEE","WI","53072",,,,,,,,,,,,,,,,,,"841667020","2627817995","722110","JAKES RESTAURANT INC",,"21445 W GUMINA ROAD",,"PEWAUKEE","WI","53072",,,,,,,"841667020","2627817995",,,,"2011-05-26T11:19:49-0500","JAKES RESTAURANT INC",,,,,23,22,0,0,22,0,22,3,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110519113722P030019044983001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PREMIERE BUSINESS SERVICES, INC. 401K PROFIT SHARING PLAN","001","2009-07-24","PREMIERE BUSINESS SERVICES, INC.",,,"3 LAS BALAS",,"RANCHO SANTA MARGARITA","CA","92688",,,,,,,,,,,,,,,,,,"943486044","9493403950","541600","PREMIERE BUSINESS SERVICES, INC.",,"3 LAS BALAS",,"RANCHO SANTA MARGARITA","CA","92688",,,,,,,"943486044","9493403950",,,,"2011-05-19T11:36:55-0500","DARREN SOMO",,,,,1,1,0,0,1,0,1,,0,,"2E2H2J2K2S3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110524160007P040300111504004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HUDDLE'S, INC. AMENDED AND RESTATED PROFIT SHARING PLAN AND TRUST","001","1962-11-05","HUDDLES INC.",,,"300 SOUTH COLUMBUS STREET",,"LANCASTER","OH","43130",,,,,,,,,,,,,,,,,,"314441282","7406534050","811190","HUDDLES INC.",,"300 SOUTH COLUMBUS STREET",,"LANCASTER","OH","43130",,,,,,,"314441282","7406534050",,,,"2011-05-24T15:31:04-0500","RICHARD H. HUDDLE","2011-05-24T15:31:16-0500","RICHARD H. HUDDLE",,,25,20,0,3,23,0,23,23,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110525110404P030020038455001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EVERENCE GROUP DENTAL INSURANCE PLAN","507","2006-01-01","EVERENCE SERVICES, LLC",,,"PO BOX 483",,"GOSHEN","IN","465270483",,,,,,,"1110 N MAIN ST",,"GOSHEN","IN","465282638",,,,,,,"351962055","5745339511","541214","EVERENCE SERVICES, LLC",,"PO BOX 483",,"GOSHEN","IN","465270483",,,,,,,"351962055","5745339511",,,,"2011-05-25T08:43:07-0500","GEORGE MERRYMAN",,,,,129,114,,,114,,114,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110526132237P040067028129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALEXZA PHARMACEUTICALS HEALTH AND WELFARE PLAN","501","2006-01-01","ALEXZA PHARMACEUTICALS",,,"2091 STIERLIN COURT",,"MOUNTAIN VIEW","CA","94043",,,,,,,,,,,,,,,,,,"770567768","6509447000","325410","ALEXZA PHARMACEUTICALS",,"2091 STIERLIN COURT",,"MOUNTAIN VIEW","CA","94043",,,,,,,"770567768","6509447000",,,,"2011-05-26T13:22:33-0500","MARK OKI",,,,,127,99,0,0,99,0,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110521173240P030295605056001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SCA PROMOTIONS INC SELF INSURED HEALTH PLAN","503","2009-04-01","SCA PROMOTIONS INC",,,"3030 LBJ FREEWAY STE 300",,"DALLAS","TX","75234",,,,,,,,,,,,,,,,,,"752255457","2148603700","541800","SCA PROMOTIONS INC",,"3030 LBJ FREEWAY STE 300",,"DALLAS","TX","75234",,,,,,,"752255457","2148603700",,,,"2011-05-20T10:54:01-0500","EILEEN SMITH",,,,,45,43,7,,50,,50,,,,,"4A","1",,,,"1",,,"1",,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-21","Filed with authorized/valid electronic signature",, "20110524101853P040020702535001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE WELFARE BENEFIT PLAN","501","2000-01-01","CELLULAR ADVANTAGE INC.",,,"3829 100TH STREET",,"URBANDALE","IA","503222049",,,,,,,,,,,,,,,,,,"421401963","5153310000","517000","CELLULAR ADVANTAGE INC.",,"3829 100TH STREET",,"URBANDALE","IA","503222049",,,,,,,"421401963","5153310000",,,,"2011-05-24T10:11:48-0500","MATTHEW HAYERTZ","2011-05-24T10:14:49-0500","MATTHEW HAYERTZ",,,115,108,0,0,108,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524101905P030302622864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FORT WORTH DERMATOLOGY ASSOCIATES, P.A. RETIREMENT PLAN","001","1969-01-01","FORT WORTH DERMATOLOGY ASSOCIATES, P.A.",,,"1200 WEST ROSEDALE",,"FORT WORTH","TX","76104",,,,,,,,,,,,,,,,,,"752656556","8173368131","621111","FORT WORTH DERMATOLOGY ASSOCIATES, P.A.",,"1200 WEST ROSEDALE",,"FORT WORTH","TX","76104",,,,,,,"752656556","8173368131",,,,"2011-05-24T10:14:38-0500","JAMES MABERRY, MD","2011-05-24T10:14:38-0500","JAMES MABERRY, MD",,,8,8,,,8,,8,8,0,,"2A2E3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524104420P040020707351001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"DANISCO USA INC. 401(K) PROFIT SHARING PLAN FOR COLLECTIVELY BARGEINED EMP","001","1991-07-01","DANISCO USA INC.",,,"FOUR NEW CENTURY PARKWAY",,"NEW CENTURY","KS","66031",,,,,,,"FOUR NEW CENTURY PARKWAY",,"NEW CENTURY","KS","66031",,,,,,,"431052363","8002556837","311900","DAVID PUTNAM",,"FOUR NEW CENTURY PARKWAY",,"NEW CENTURY","KS","66031",,,,,,,"431052363","8002556837",,,,"2011-05-24T10:32:23-0500","DAVID PUTNAM",,,,,2,0,0,0,0,0,0,0,0,,"2E2J2F2G2K3H2T","4B","1",,"1",,"1",,"1",,"1",,,,"1","1","1","0","1",,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525095507P030020027127001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J. R. SWANSON PLUMBING CO., INC. 401K PROFIT SHARING PLAN","001","2007-01-01","J.R. SWANSON PLUMBING CO., INC.",,,"413 103RD ST.",,"NIAGARA FALLS","NY","143043265",,,,,,,,,,,,,,,,,,"223749175","7162833802","541990","J.R. SWANSON PLUMBING CO., INC.",,"413 103RD ST.",,"NIAGARA FALLS","NY","143043265",,,,,,,"223749175","7162833802",,,,"2011-05-25T09:29:08-0500","JAMES R. SWANSON",,,,,6,5,0,0,5,0,5,5,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525172823P040020977687001","2007-07-01","2008-06-30","2",,"1","1","0","0","0","0","0","1","0",,"YAKAMA FOREST PRODUCTS LIFE AND AD&D PLAN","513","2007-07-01","YAKAMA FOREST PRODUCTS",,,"3191 WESLEY ROAD",,"WHITE SWAN","WA","98952",,,,,,,,,,,,,,,,,,"911674427","5098472901","321110","YAKAMA FOREST PRODUCTS",,"3191 WESLEY ROAD",,"WHITE SWAN","WA","98952",,,,,,,"911674427","5098472901",,,,"2011-05-25T17:28:20-0500","ERIC C. KELSEY",,,,,196,162,0,0,162,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110524120114P030302833936001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BORBA INC 401 (K) PROFIT SHARING PLAN","001","2007-01-01","BORBA INC","SAME",,"21700 OXNARD ST. STE 1850",,"WOODLAND HILLS","CA","91367",,,,,,,"21700 OXNARD ST. STE 1850",,"WOODLAND HILLS","CA","91367",,,,,,,"830500253","8184444848","339900","BORBA INC",,"21700 OXNARD ST. STE 1850",,"WOODLAND HILLS","CA","91367",,,,,,,"830500253","8184444848",,,,"2011-05-24T12:00:20-0500","GREGORY SINDERBRAND",,,,,14,12,0,7,19,0,19,16,0,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524123202P030010702118001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DARDINE AND ASSOCIATES, LLC 401(K)PROFIT SHARING PLAN","001","2009-01-01","DARDINE AND ASSOCIATES, LLC",,,"3400 WEST CHESTER PIKE, SUITE 100",,"NEWTOWN SQUARE","PA","19073",,,,,,,,,,,,,,,,,,"205859834","6103599100","541990","DARDINE AND ASSOCIATES, LLC",,"3400 WEST CHESTER PIKE, SUITE 100",,"NEWTOWN SQUARE","PA","19073",,,,,,,"205859834","6103599100",,,,"2011-05-24T12:28:06-0500","WARREN DARDINE",,,,,8,8,0,0,8,0,8,8,0,,"2A2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110519202018P040287700880001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMCHECK 401 K PLAN","001","2007-02-26","FOGARTY INSTITUTE OF INNOVATION",,"AMCHECK DBA SIMPLIFIED BUSINESS SOLUTIONS","5030 E SUNRISE DR",,"PHOENIX","AZ","85044",,,,,,,,,,,,,,,,,,"113800306","6509624560","611000","AMCHECK DBA SIMPLIFIED BUSINESS SOLUTION",,"5030 E SUNRISE DR",,"PHOENIX","AZ","85044",,,,,,,"860841768","4807635900",,,,"2011-05-18T12:55:07-0500","DEAN LUCENTE",,,,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110524153502P030303255152001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARLOW RESEARCH ASSOCIATES, INC. 401(K) PLAN","001","1993-03-01","BARLOW RESEARCH ASSOCIATES, INC.",,,"917 LILAC DRIVE NORTH",,"MINNEAPOLIS","MN","55422",,,,,,,"917 LILAC DRIVE NORTH",,"MINNEAPOLIS","MN","55422",,,,,,,"411688448","7632531814","541910","BARLOW RESEARCH ASSOCIATES, INC.",,"917 LILAC DRIVE NORTH",,"MINNEAPOLIS","MN","55422",,,,,,,"411688448","7632531814",,,,"2011-05-24T15:33:12-0500","KATHY BARLOW",,,,,23,13,0,8,21,0,21,18,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524160218P030010721494001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"DCMS PROFIT SHARING & 401K PLAN","001","1982-01-01","DALLAS COUNTY MEDICAL SOCIETY",,,"140 EAST 12TH SREET",,"DALLAS","TX","75203",,,,,,,"140 EAST 12TH SREET",,"DALLAS","TX","75203",,,,,,,"750223610","2149483622","813000","DALLAS COUNTY MEDICAL SOCIETY",,"140 EAST 12TH SREET",,"DALLAS","TX","75203",,,,,,,"750223610","2149483622",,,,"2011-05-24T16:00:41-0500","MICHAEL DARROUZET",,,,,23,17,0,3,20,0,20,20,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525145731P040066485825001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RGB EYE ASSOCIATES, P.A. 401(K) PLAN","001","2004-08-11","RGB EYE ASSOCIATES, P.A.",,,"1303 N. TRAVIS STREET",,"SHERMAN","TX","75092",,,,,,,,,,,,,,,,,,"752645716","9038923282","621399","RGB EYE ASSOCIATES, P.A.",,"1303 N. TRAVIS STREET",,"SHERMAN","TX","75092",,,,,,,"752645716","9038923282",,,,"2011-05-25T14:57:22-0500","ROBERT BURLINGAME","2011-05-25T14:57:22-0500","ROBERT BURLINGAME",,,35,28,0,3,31,0,31,24,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110525133952P040011341590001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BERRY LAW FIRM PROFIT SHARING PLAN","001","2001-01-01","BERRY LAW FIRM",,,"1923 N. CLASSEN BLVD.",,"OKLAHOMA CITY","OK","73106",,,,,,,,,,,,,,,,,,"421684257","4055241040","541110","BERRY LAW FIRM",,"1923 N. CLASSEN BLVD.",,"OKLAHOMA CITY","OK","73106",,,,,,,"421684257","4055241040",,,,"2011-05-25T02:39:43-0500","HOWARD BERRY",,,,,4,4,0,0,4,0,4,4,0,,"2A2E2F2G3B3D",,"1",,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110526105731P030065213297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXHIBIT ASSOCIATES INC 401(K) PROFIT SHARING PLAN & TRUST","002","1996-01-01","EXHIBIT ASSOCIATES, INC.",,,"1925 BEDFORD AVE",,"NORTH KANSAS CITY","MO","64116",,,,,,,,,,,,,,,,,,"431137133","8164745333","339900","EXHIBIT ASSOCIATES, INC.",,"1925 BEDFORD AVE",,"NORTH KANSAS CITY","MO","64116",,,,,,,"431137133","8164745333",,,,"2011-05-26T10:57:29-0500","EXHIBIT ASSOCIATES, INC.",,,,,2,16,0,0,16,0,16,7,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110519114215P030061385089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANIMAL HEALTH HOSPITAL, P.C. 401K PROFIT SHARING PLAN & TRUST","001","1997-01-01","ANIMAL HEALTH HOSPITAL, P.C.",,,"2560 S. HARRISON RD.",,"TUCSON","AZ","857488137",,,,,,,,,,,,,,,,,,"860996783","5208852364","622000","ANIMAL HEALTH HOSPITAL, P.C.",,"2560 S. HARRISON RD.",,"TUCSON","AZ","857488137",,,,,,,"860996783","5208852364",,,,"2011-05-19T11:33:29-0500","JOHN METZGER",,,,,9,8,0,0,8,0,8,7,0,,"2A2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110519163221P040287285648003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DIX BARRETT & STILTNER PC 401K PLAN","001","2005-01-01","DIX BARRETT & STILTNER P C",,,"5670 GREENWOOD PLAZA BLVD 505",,"GREENWOOD VILLAGE","CO","80111",,,,,,,,,,,,,,,,,,"841354884","3036890844","541211","DIX BARRETT & STILTNER P C",,"5670 GREENWOOD PLAZA BLVD 505",,"GREENWOOD VILLAGE","CO","80111",,,,,,,"841354884","3036890844",,,,"2011-05-19T16:09:35-0500","WENDY BARRETT",,,,,7,8,,,8,,8,,,,"2J",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110524094740P040005107029001","2005-09-01","2006-08-31","2",,"1","1","0","0","0","0","0","1","0",,"BELLEVUE UNIVERSITY GROUP VISION","503","2003-09-01","BELLEVUE UNIVERSITY",,,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"470491571","4022932000","611000","BELLEVUE UNIVERSITY",,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"470491571","4022932000",,,,"2011-05-23T07:58:55-0500","MIKE WARNER",,,,,125,125,0,0,125,0,125,125,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524094821P040299339392001","2006-09-01","2007-08-31","2",,"0","1","0","0","0","0","0","1","0",,"BELLEVUE UNIVERSITY GROUP VISION","503","2003-09-01","BELLEVUE UNIVERSITY",,,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"470491571","4022932000","611000","BELLEVUE UNIVERSITY",,"1000 GALVIN ROAD SOUTH",,"BELLEVUE","NE","68005",,,,,,,"470491571","4022932000",,,,"2011-05-23T07:58:31-0500","MIKE WARNER",,,,,125,125,0,0,125,0,125,125,,,,"4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525083328P040020885895001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"TRITON DIVING SERVICES HEALTH AND WELFARE PLAN","501","2008-01-01","TRITON DIVING SERVICES, LLC",,,"3131 N I-10 SERVICE ROAD SUITE 302",,"METAIRIE","LA","70002",,,,,,,,,,,,,,,,,,"721447798","5048465056","541990","TRITON DIVING SERVICES LLC",,"3131 N I-10 SERVICE ROAD SUITE 302",,"METAIRIE","LA","70002",,,,,,,"721447798","5048465056",,,,"2011-05-24T18:44:08-0500","GEORGE MAYER",,,,,161,210,,,210,,210,,,,,"4L4H4D4B4A","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525173941P030020090903001","2001-08-01","2002-07-31","2",,"0","0","0","0","0","0","0","0","0",,"WENNER BREAD PRODUCTS, INC. EMPLOYEE HEALTH BENEFITS","501","1975-08-19","WENNER BREAD PRODUCTS, INC.",,,"33 RAJON RD",,"BAYPORT","NY","117051101",,,,,,,"33 RAJON RD",,"BAYPORT","NY","117051101",,,,,,,"112366431","6318696262","311800","WENNER BREAD PRODUCTS, INC.",,"33 RAJON RD",,"BAYPORT","NY","117051101",,,,,,,"112366431","6318696262",,,,"2011-05-25T17:18:11-0500","WILLIAM WENNER",,,,,290,315,,,315,,315,,,,,"4A","1",,,"0","1",,,"0",,,,,"1","1","3",,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110519142313P030290041344001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"TRANSPLY, INC. 401(K) & PROFIT SHARING PLAN","002","2001-01-01","TRANSPLY, INC.",,,"1005 VOGELSONG ROAD","PO BOX 7727","YORK","PA","17404",,,,,,,"1005 VOGELSONG ROAD","PO BOX 7727","YORK","PA","17404",,,,,,,"231864381","7177671005","423800","TRANSPLY, INC.",,"1005 VOGELSONG ROAD","PO BOX 7727","YORK","PA","17404",,,,,,,"231864381","7177671005",,,,"2011-05-19T14:14:48-0500","SUSAN CRONE",,,,,70,60,1,4,65,0,65,64,1,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",, "20110519142408P040287051456001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WNCC PROFIT SHARING PLAN & TRUST","001","1986-07-01","WATERVIEW NURSING CARE CENTER, INC.",,,"119-15 27TH AVENUE",,"FLUSHING","NY","11354",,,,,,,,,,,,,,,,,,"112981735","7324461804","623000","WATERVIEW NURSING CARE CENTER, INC.",,"119-15 27TH AVENUE",,"FLUSHING","NY","11354",,,,,,,"112981735","7324461804",,,,"2011-05-19T14:24:05-0500","MARVIN BEINHORN","2011-05-19T14:24:05-0500","MARVIN BEINHORN",,,39,19,0,14,33,0,33,31,0,,"2E2J3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524111432P040020713623001","2010-03-01","2011-02-28","2",,"0","0","0","0","0","0","0","0","0",,"LARIAT COMPANIES GROUP LIFE INSURANCE PLAN","505","2002-01-30","LARIAT COMPANIES, INC.",,"GEORGE FROST","8443 JOINER WAY",,"EDEN PRAIRIE","MN","55364",,,,,,,"8443 JOINER WAY",,"EDEN PRAIRIE","MN","55364",,,,,,,"411326410","9529431404","323100","LARIAT COMPANIES, INC.","GEORGE FROST","8443 JOINER WAY",,"EDEN PRAIRIE","MN","55364",,,,,,,"411326410","9529431404",,,,"2011-05-24T11:09:27-0500","GEORGE FROST",,,,,107,112,0,0,112,,112,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524160641P030303326576001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"ENVENTURE GLOBAL TECHNOLOGY LLC GROUP LONG TERM DISABILITY PLAN","504","2002-01-01","ENVENTURE GLOBAL TECHNOLOGY, LLC",,,"15995 N. BARKERS LANDING RD STE 350",,"HOUSTON","TX","77079",,,,,,,,,,,,,,,,,,"752796650","2815522200","213110","ENVENTURE GLOBAL TECHNOLOGY, LLC",,"15995 N. BARKERS LANDING RD STE 350",,"HOUSTON","TX","77079",,,,,,,"752796650","2815522200",,,,"2011-05-24T16:06:26-0500","ROGER BLAKE",,,,,111,0,0,0,0,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525094022P040301954224001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AHEAD HUMAN RESOURCES INC / STURGEON PEST CONTROL 401(K) PLAN","001","1997-01-01","AHEAD HUMAN RESOURCES IN/ STURGEON PEST CONTROL STURGEON PEST CONTRO",,,"2209 HEATHER LANE",,"LOUISVILLE","KY","40218",,,,,,,,,,,,,,,,,,"610356173","5024851000","561710","AHEAD HUMAN RESOURCES IN/ STURGEON PEST CONTROL STURGEON PEST CONTRO",,"2209 HEATHER LANE",,"LOUISVILLE","KY","40218",,,,,,,"610356173","5024851000",,,,"2011-05-25T09:39:57-0500","KRISTI HAGAN",,,,,7,4,0,1,5,0,5,4,0,,"2E2J2K3D",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110524172528P030001883987001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SIMPSON NORTON CORPORATION EMPLOYEES PROFIT SHARING PLAN AND TRUST","001","1973-12-17","SIMPSON NORTON CORPORATION",,,"4144 S BULLARD AVE",,"GOODYEAR","AZ","85338",,,,,,,,,,,,,,,,,,"364444716","6239325116","423800","SIMPSON NORTON CORPORATION",,"4144 S BULLARD AVE",,"GOODYEAR","AZ","85338",,,,,,,"364444716","6239325116",,,,"2011-05-24T06:25:15-0500","STEVEN W. MCNEIL",,,,,69,41,,6,47,,47,40,,,"2A2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525123711P040020933495001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JAMES ALEXANDER CORPORATION RETIREMENT PLAN","001","1980-01-01","JAMES ALEXANDER CORPORATION",,,"845 ROUTE 94",,"BLAIRSTOWN","NJ","07825",,,,,,,,,,,,,,,,,,"222063771","9083629266","325410","JAMES ALEXANDER CORPORATION",,"845 ROUTE 94",,"BLAIRSTOWN","NJ","07825",,,,,,,"222063771","9083629266",,,,"2011-05-25T12:37:02-0500","DAVID ROBINSON","2011-05-25T12:37:02-0500","DAVID ROBINSON",,,84,92,3,5,100,0,100,69,0,,"2E2J2F2G2K2T","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110525174706P040302953264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEE BENEFITS PLAN OF THE TRUST FOR PUBLIC LAND","501","1988-08-01","TRUST FOR PUBLIC LAND",,,"101 MONTGOMERY STREET, SUITE 900",,"SAN FRANCISCO","CA","94104",,,,,,,,,,,,,,,,,,"237222333","4154954014","813000","TRUST FOR PUBLIC LAND",,"101 MONTGOMERY STREET, SUITE 900",,"SAN FRANCISCO","CA","94104",,,,,,,"237222333","4154954014",,,,"2011-05-25T17:47:00-0500","JENNIFER DERE",,,,,307,259,4,0,263,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110526092119P030065173665001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RADIXX SOLUTIONS INTERNATIONAL 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","RADIXX SOLUTIONS INTERNATIONAL",,,"6310 HAZELTINE NATIONAL DRIVE",,"ORLANDO","FL","32822",,,,,,,,,,,,,,,,,,"522088221","4078569009","541511","RADIXX SOLUTIONS INTERNATIONAL",,"6310 HAZELTINE NATIONAL DRIVE",,"ORLANDO","FL","32822",,,,,,,"522088221","4078569009",,,,"2011-05-26T09:21:14-0500","RADIXX SOLUTIONS INTERNATIONAL",,,,,63,26,0,0,26,0,26,20,0,,"2E2F2G2J2K2T3D3E",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110526101523P030065196321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FRED A ALGER DDS MS LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","FRED A. ALGER DDS MS LLC",,,"221 N. HAMILTON RD.",,"GAHANNA","OH","43230",,,,,,,,,,,,,,,,,,"510620729","6144787757","621210","FRED A. ALGER DDS MS LLC",,"221 N. HAMILTON RD.",,"GAHANNA","OH","43230",,,,,,,"510620729","6144787757",,,,"2011-05-26T10:15:20-0500","FRED A. ALGER DDS MS LLC",,,,,7,7,0,0,7,0,7,7,0,,"2A2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110524130050P030064081553001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"R & G TITLE AGENCY, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","2003-01-01","R & G TITLE AGENCY, INC.",,,"11 DINALLO STREET",,"SOUTH HACKENSACK","NJ","07606",,,,,,,"11 DINALLO STREET",,"SOUTH HACKENSACK","NJ","07606",,,,,,,"371427722","2014886010","524290","R & G TITLE AGENCY, INC.",,"11 DINALLO STREET",,"SOUTH HACKENSACK","NJ","07606",,,,,,,"371427722","2014886010",,,,"2011-05-24T13:00:32-0500","LUDWIG BACH",,,,,3,0,0,0,0,0,0,0,0,,"2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524150226P040299993104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GREINES, MARTIN, STEIN & RICHLAND, LLP 401(K) PLAN","001","1991-01-01","GREINES, MARTIN, STEIN & RICHLAND, LLP",,,"5900 WILSHIRE BLVD., 12TH FLOOR",,"LOS ANGELES","CA","90036",,,,,,,,,,,,,,,,,,"953886515","3108597811","541110","GREINES, MARTIN, STEIN & RICHLAND, LLP",,"5900 WILSHIRE BLVD., 12TH FLOOR",,"LOS ANGELES","CA","90036",,,,,,,"953886515","3108597811",,,,"2011-05-24T15:02:19-0500","ERIC FOSTER",,,,,30,26,0,5,31,0,31,30,9,,"2E2G2J2K2F3B3D2A2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525181750P030306257536001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"GARDERE WYNNE SEWELL LLP FLEXIBLE COMPENSATION PLAN","504","1997-06-01","GARDERE WYNNE SEWELL LLP",,"T. MARK EDWARDS","1601 ELM STREET","SUITE 3000","DALLAS","TX","75201",,,,,,,"1601 ELM STREET","SUITE 3000","DALLAS","TX","75201",,,,,,,"750730814","2149993000","541110","GARDERE WYNNE SEWELL LLP","T. MARK EDWARDS","1601 ELM STREET","SUITE 3000","DALLAS","TX","75201",,,,,,,"750730814","2149993000",,,,"2011-05-25T18:17:34-0500","MARK EDWARDS",,,,,249,183,,,183,,183,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110524121151P040011224374001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRIMARY FINANCIAL SERVICES 401(K) PLAN","001","2001-01-01","PRIMARY FINANCIAL SERVICES, LLC",,,"3115 N. 3RD AVE","SUITE 112","PHOENIX","AZ","85013",,,,,,,,,,,,,,,,,,"860817400","6022791000","522300","PRIMARY FINANCIAL SERVICES, LLC",,"3115 N. 3RD AVE","SUITE 112","PHOENIX","AZ","85013",,,,,,,"860817400","6022791000",,,,"2011-05-24T12:11:42-0500","GRACIELA MARTINEZ",,,,,95,99,0,15,114,0,114,45,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524144206P030303158192001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"FTC METHODS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2010-01-01","FTC METHODS INC",,,"121 HAWKINS PL #137",,"BOONTON","NJ","07005",,,,,,,,,,,,,,,,,,"510508496","2012471642","541190","FTC METHODS INC",,"121 HAWKINS PL #137",,"BOONTON","NJ","07005",,,,,,,"510508496","2012471642",,,,"2011-05-24T02:42:04-0500","FTC METHODS INC",,,,,3,3,0,0,3,0,3,2,0,,"2A2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525104340P030305336736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DELTA DENTAL OF NEW YORK","502","2004-01-01","NORTHEAST HEALTH",,,"2212 BURDETT AVE",,"TROY","NY","12180",,,,,,,"2212 BURDETT AVE",,"TROY","NY","12180",,,,,,,"042450756","5182715058","622000","NORTHEAST HEALTH",,"2212 BURDETT AVE",,"TROY","NY","12180",,,,,,,"042450756","5182715058",,,,"2011-05-25T09:25:34-0500","BARBARA MCCANDLESS",,,,,2429,2405,,,2405,,2405,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525092000P040020894135001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"A-P-T RESEARCH, INC. 401(K) PLAN","001","2003-01-01","APT RESEARCH, INC.",,,"4950 RESEARCH DR.",,"HUNTSVILLE","AL","35805",,,,,,,"4950 RESEARCH DR.",,"HUNTSVILLE","AL","35805",,,,,,,"631026951","2563273370","541330","APT RESEARCH, INC.",,"4950 RESEARCH DR.",,"HUNTSVILLE","AL","35805",,,,,,,"631026951","2563273370",,,,"2011-05-25T09:04:11-0500","MEREDITH HARDWICK","2011-05-25T08:14:48-0500","JEANETTE COLVERT",,,101,73,0,30,103,3,106,105,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110524092950P040020693223001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MASTER PLUMBING 401(K) PROFIT SHARING PLAN","001","2006-01-01","MASTER PLUMBING",,,"5190 VT RTE 103",,"CUTTINGSVILLE","VT","05738",,,,,,,,,,,,,,,,,,"030331812","8024923657","238220","MASTER PLUMBING",,"5190 VT RTE 103",,"CUTTINGSVILLE","VT","05738",,,,,,,"030331812","8024923657",,,,"2011-05-24T09:29:23-0500","RITA BEARDMORE","2011-05-24T09:29:23-0500","RITA BEARDMORE",,,9,6,0,1,7,0,7,7,0,,"2A2E2G2J2K2F3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110525123724P040020933543001","2010-01-01","2010-12-31","4","C","0","0","0","0","0","0","0","0","0",,"BUILD FUND OF AMERICA TRUST","008",,"AMERISERV TRUST & FINANCIAL SERVICES COMPANY",,,"216 FRANKLIN STREET",,"JOHNSTOWN","PA","15901",,,,,,,,,,,,,,,,,,"251689052","8145335220","525100","AMERISERV TRUST & FINANCIAL SERVICES COMPANY",,"216 FRANKLIN STREET",,"JOHNSTOWN","PA","15901",,,,,,,"251689052","8145335220",,,,"2011-05-25T12:34:08-0500","DAVID M. MARGETAN",,,"2011-05-25T12:34:08-0500","DAVID M. MARGETAN",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature", "20110526082053P030065149457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"DATA TRANSFER SOLUTIONS 401(K) PLAN","001","2006-03-01","DATA TRANSFER SOLUTIONS, LLC",,,"3680 AVALON PARK BLVD","SUITE 200","ORLANDO","FL","32828",,,,,,,,,,,,,,,,,,"050557100","4073825222","812990","DATA TRANSFER SOLUTIONS, LLC",,"3680 AVALON PARK BLVD","SUITE 200","ORLANDO","FL","32828",,,,,,,"050557100","4073825222",,,,"2011-05-26T08:20:47-0500","CYNTHIA NOVOA",,,,,37,28,0,15,43,0,43,43,2,,"2E2F2G2J2K3D3B2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110524103459P030019859543001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ATHENA CAPITAL ADVISORS LLC 401(K) PLAN","001","2007-01-08","ATHENA CAPITAL ADVISORS LLC",,,"55 OLD BEDFORD RD.",,"LINCOLN","MA","01773",,,,,,,"55 OLD BEDFORD RD.",,"LINCOLN","MA","01773",,,,,,,"371556956","7812749300","523900","ATHENA CAPITAL ADVISORS LLC",,"55 OLD BEDFORD RD.",,"LINCOLN","MA","01773",,,,,,,"371556956","7812749300",,,,"2011-05-24T10:34:24-0500","ANN BURNHAM",,,,,43,32,0,10,42,0,42,40,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524113257P040299552848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HENRY W. SCHMIDT ATTORNEY AT LAW","001","1987-01-01","HENRY W. SCHMIDT, JR., ATTORNEY",,,"8 WEST MAIN STREET",,"LOCKPORT","NY","14094",,,,,,,"8 WEST MAIN STREET",,"LOCKPORT","NY","14094",,,,,,,"160759342","7164330143","541110","HENRY W. SCHMIDT, JR., ATTORNEY",,"8 WEST MAIN STREET",,"LOCKPORT","NY","14094",,,,,,,"160759342","7164330143",,,,"2011-05-24T11:32:10-0500","HENRY SCHMIDT",,,,,2,2,0,0,2,0,2,2,0,,"2E",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110525134940P040302491728001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","001","1976-03-01","HUMBOLDT-ST. VINCENT ELEVATOR ASSOCIATION",,,"P. O. BOX 65",,"HUMBOLDT","MN","567310065",,,,,,,,,,,,,,,,,,"411617058","2183793121","115110","HUMBOLDT-ST. VINCENT ELEVATOR ASSOCIATION",,"P. O. BOX 65",,"HUMBOLDT","MN","567310065",,,,,,,"411617058","2183793121",,,,"2011-05-25T13:49:30-0500","KENNETH SPANIER",,,,,4,4,0,0,4,0,4,4,0,,"3D2E2F2G2J2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525160122P030020079735001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROTH SHEPPARD ARCHITECTS 401(K) PROFIT SHARING PLAN & TRUST","001","1999-01-01","ROTH SHEPPARD ARCHITECTS",,,"1900 WAZEE STREET, SUITE 100",,"DENVER","CO","80202",,,,,,,,,,,,,,,,,,"840924819","3035347007","541310","ROTH SHEPPARD ARCHITECTS",,"1900 WAZEE STREET, SUITE 100",,"DENVER","CO","80202",,,,,,,"840924819","3035347007",,,,"2011-05-25T04:01:20-0500","ROTH SHEPPARD ARCHITECTS",,,,,17,15,0,4,19,0,19,19,1,,"2A2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110525161343P030306023808001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"BROLIN RETAIL SYSTEMS, INC. SAVINGS & RETIREMENT PLAN","001","1998-01-01","BROLIN RETAIL SYSTEMS, INC.",,,"24400 SPERRY ROAD",,"WESTLAKE","OH","44145",,,,,,,"24400 SPERRY ROAD",,"WESTLAKE","OH","44145",,,,,,,"340671113","4432858110","541519","BROLIN RETAIL SYSTEMS, INC.",,"24400 SPERRY ROAD",,"WESTLAKE","OH","44145",,,,,,,"340671113","4432858110",,,,"2011-05-25T16:08:52-0500","DEBRA MCINTYRE",,,,,70,28,0,5,33,0,33,5,0,,"2E2F2G2J2K3E3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-25","Filed with authorized/valid electronic signature",, "20110526093350P040021101367001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SAGIENT RESEARCH SYSTEMS 401(K) PLAN","001","2000-01-01","SAGIENT RESEARCH SYSTEMS, INC.",,,"3655 NOBEL DR.","SUITE 540","SAN DIEGO","CA","92122",,,,,,,,,,,,,,,,,,"330856651","8586231600","523110","SAGIENT RESEARCH SYSTEMS, INC.",,"3655 NOBEL DR.","SUITE 540","SAN DIEGO","CA","92122",,,,,,,"330856651","8586231600",,,,"2011-05-26T09:33:42-0500","ROGER LOWE",,,,,28,21,0,5,26,0,26,25,3,,"2E2F2G2J2K3B2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110526121349P040066999441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KUTSCH & RENYER FAMILY & COSMETIC DENTISTRY 401K PROFIT SHARING PLAN","001","1988-01-01","KUTSCH & RENYER FAMILY & COSMETIC DENTISTRY",,,"2200 14TH AVE SE",,"ALBANY","OR","973228511",,,,,,,,,,,,,,,,,,"930956594","5419289299","621210","KUTSCH & RENYER FAMILY & COSMETIC DENTISTRY",,"2200 14TH AVE SE",,"ALBANY","OR","973228511",,,,,,,"930956594","5419289299",,,,"2011-05-26T12:10:10-0500","GREGORY RENYER",,,,,24,18,0,4,22,0,22,22,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110524135143P030303051648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PENNYROYAL HOSPICE INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","PENNYROYAL HOSPICE",,,"220 BURLEY AVE",,"HOPKINSVILLE","KY","42240",,,,,,,,,,,,,,,,,,"311076528","2708856428","621610","PENNYROYAL HOSPICE",,"220 BURLEY AVE",,"HOPKINSVILLE","KY","42240",,,,,,,"311076528","2708856428",,,,"2011-05-24T01:51:37-0500","PENNYROYAL HOSPICE",,,,,28,24,0,2,26,0,26,21,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110524142240P030303122704001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"DELSEY LUGGAGE DEFERRED COMPENSATION PLAN","004","1991-01-01","DELSEY LUGGAGE, INC.",,,"6090 DORSEY ROAD, SUITE C",,"HANOVER","MD","21076",,,,,,,"6090 DORSEY ROAD, SUITE C",,"HANOVER","MD","21076",,,,,,,"521374799","4107965655","339900","DELSEY LUGGAGE, INC.",,"6090 DORSEY ROAD, SUITE C",,"HANOVER","MD","21076",,,,,,,"521374799","4107965655",,,,"2011-05-24T14:22:19-0500","MICHAEL SILEN",,,,,6,19,0,0,19,,19,19,0,0,"3C",,,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-05-24","Filed with authorized/valid electronic signature",, "20110531123936P040069735361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILLCOX, BUYCK & WILLIAMS, P.A. 401K PLAN","001","1972-02-01","WILLCOX, BUYCK & WILLIAMS, P.A.",,,"248 W EVANS ST 1909","P.O. BOX 1909","FLORENCE","SC","295013428",,,,,,,,,,,,,,,,,,"570540447","8436623258","541110","WILLCOX, BUYCK & WILLIAMS, P.A.",,"248 W EVANS ST 1909","P.O. BOX 1909","FLORENCE","SC","295013428",,,,,,,"570540447","8436623258",,,,"2011-05-31T12:39:35-0500","W. REYNOLDS WILLIAMS",,,,,41,24,2,9,35,0,35,35,2,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110601140512P040070387057001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIGITAL ALLY, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","2006-01-01","DIGITAL ALLY, INC.",,,"PO BOX 7190",,"SHAWNEE MISSION","KS","66207",,,,,,,,,,,,,,,,,,"200064269","9136485526","541512","DIGITAL ALLY, INC.",,"PO BOX 7190",,"SHAWNEE MISSION","KS","66207",,,,,,,"200064269","9136485526",,,,"2011-06-01T14:00:12-0500","THOMAS J HECKMAN","2011-06-01T14:00:12-0500","THOMAS J HECKMAN",,,113,88,3,20,111,0,111,77,0,,"2E2F2H2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601181312P040010330626001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE WELFARE BENEFIT PLAN OF MERIDIAN HEALTH","501","1998-01-01","MERIDIAN HEALTH",,,"1430 ROUTE 34",,"NEPTUNE","NJ","07753",,,,,,,,,,,,,,,,,,"223474145","7327517560","622000","MERIDIAN HEALTH",,"1430 ROUTE 34",,"NEPTUNE","NJ","07753",,,,,,,"223474145","7327517560",,,,"2011-06-01T18:13:06-0500","KATHLEEN L. BASSLIE",,,,,7797,7900,0,0,7900,,,,,,,"4A4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531141314P040069784385001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"GOLDEN WEST CONSTRUCTION 401(K) PLAN","001","2003-01-01","GOLDEN WEST CONSTRUCTION",,,"1089 TENNESSEE ST.",,"SAN FRANCISCO","CA","94107",,,,,,,,,,,,,,,,,,"942614342","4155507118","812990","GOLDEN WEST CONSTRUCTION",,"1089 TENNESSEE ST.",,"SAN FRANCISCO","CA","94107",,,,,,,"942614342","4155507118",,,,"2011-05-31T14:13:07-0500","MICHAEL LAZZARETTI",,,,,11,6,0,5,11,0,11,11,0,,"2A2E2F2G2J2K3B2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531102010P040069667249001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ESPRIX TECHNOLOGIES 401 (K) PLAN","001","1994-01-01","ESPRIX TECHNOLOGIES L.P.",,,"7680 MATOAKA ROAD",,"SARASOTA","FL","34243",,,,,,,,,,,,,,,,,,"043202341","9413555100","424600","ESPRIX TECHNOLOGIES L.P.",,"7680 MATOAKA ROAD",,"SARASOTA","FL","34243",,,,,,,"043202341","9413555100",,,,"2011-05-31T10:19:26-0500","PHIL NACE",,,,,19,10,0,5,15,0,15,14,1,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110528111104P040021469687001","2010-05-07","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"ANDREW & ALLY'S RESTAURANTS, INC. 401(K) PLAN","001","2010-05-07","ANDREW & ALLY'S RESTAURANTS, INC.",,,"30400 CARTHUSIAN PLACE",,"MOUNT DORA","FL","32757",,,,,,,,,,,,,,,,,,"272565718","4012220138","722210","ANDREW & ALLY'S RESTAURANTS, INC.",,"30400 CARTHUSIAN PLACE",,"MOUNT DORA","FL","32757",,,,,,,"272565718","4012220138",,,,"2011-05-28T11:09:33-0500","THOMAS FOX","2011-05-28T11:09:33-0500","THOMAS FOX",,,0,2,0,0,2,0,2,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110527144907P030065853793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AJ USA 401(K)/PROFIT SHARING PLAN","001","1997-01-01","AJ USA, INC.",,,"6620 MIRA MESA BLVD.",,"SAN DIEGO","CA","921210000",,,,,,,,,,,,,,,,,,"953213637","8584528900","441229","AJ USA, INC.",,"6620 MIRA MESA BLVD.",,"SAN DIEGO","CA","921210000",,,,,,,"953213637","8584528900",,,,"2011-05-27T14:49:00-0500","MARCIA MILONE",,,,,30,23,0,4,27,0,27,12,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527144934P030311500864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMOS PRESS LIFE INSURANCE PLAN","503","1947-06-01","AMOS PRESS INC.",,,"PO BOX 4129",,"SIDNEY","OH","453654129",,,,,,,"911 SOUTH VANDEMARK ROAD",,"SIDNEY","OH","45365",,,,,,,"344355690","9374982111","511120","AMOS PRESS INC.",,"PO BOX 4129",,"SIDNEY","OH","453654129",,,,,,,"344355690","9374982111",,,,"2011-05-26T16:07:08-0500","STEVE HAMILTON",,,,,201,126,57,,183,,183,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110529173339P040313408896001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"TECHNICAL TROUBLE SHOOTING, INC. 401(K) PROFIT SHARING PLAN","001","1999-01-01","TECHNICAL TROUBLE SHOOTING, INC.",,,"27822 FREMONT COURT, UNIT B",,"VALENCIA","CA","91355",,,,,,,,,,,,,,,,,,"954525484","6612571202","326100","TECHNICAL TROUBLE SHOOTING, INC.",,"27822 FREMONT COURT, UNIT B",,"VALENCIA","CA","91355",,,,,,,"954525484","6612571202",,,,"2011-05-29T17:17:23-0500","SERGEY LEVKOV",,,,,11,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-29","Filed with authorized/valid electronic signature",, "20110531115938P030067937505001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ABC MANAGEMENT GROUP PROFIT SHARING PLAN","001","2003-01-01","ABC MANAGEMENT GROUP",,,"330 RANCHEROS DRIVE, SUITE 102",,"SAN MARCOS","CA","92069",,,,,,,"330 RANCHEROS DRIVE, SUITE 102",,"SAN MARCOS","CA","92069",,,,,,,"330581587",,"541940","ABC MANAGEMENT GROUP",,"330 RANCHEROS DRIVE, SUITE 102",,"SAN MARCOS","CA","92069",,,,,,,"330581587",,,,,"2011-05-31T03:24:31-0500","BARRY NEICHIN","2011-05-31T03:24:31-0500","BARRY NEICHIN",,,26,14,0,13,27,0,27,27,0,,"2A2E3B3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531085939P040069629649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DELTA DENTAL PLAN OF PUERTO RICO INC","502","2003-05-01","SAN JORGE CHILDREN HOSPITAL",,,"PO BOX 6308",,"SAN JUAN","PR","009146308",,,,,,,"PO BOX 6308",,"SAN JUAN","PR","009146308",,,,,,,"660646725","7876222200","622000","SAN JORGE CHILDREN HOSPITAL",,"PO BOX 6308",,"SAN JUAN","PR","009146308",,,,,,,"660646725","7876222200",,,,"2011-05-31T08:57:46-0500","DOMINGO CRUZ VIVALDI",,,,,339,313,0,0,313,0,313,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531150202P030021128119001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FLEXIBLE BENEFIT PLAN OF GREAT LAKES DREDGE & DOCK COMPANY, LLC","503","1998-01-01","GREAT LAKES DREDGE & DOCK COMPANY, LLC",,"MICHAEL R. SAYER","2122 YORK ROAD","TAX DEPARTMENT","OAK BROOK","IL","60523",,,,,,,"2122 YORK ROAD","TAX DEPARTMENT","OAK BROOK","IL","60523",,,,,,,"201354414","6305742949","237990","GREAT LAKES DREDGE & DOCK COMPANY, LLC","MICHAEL R. SAYER","2122 YORK ROAD","CORPORATE TAX DEPARTMENT","OAK BROOK","IL","60523",,,,,,,"201354414","6305742949",,,,"2011-05-31T15:01:48-0500","MICHAEL SAYER",,,,,79,90,,,90,,90,,,,,"4Q",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531124300P040021953991001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHOFIELD PRINTING INC 401(K) PROFIT SHARING PLAN & TRUST","001","1993-01-01","SCHOFIELD PRINTING",,,"P.O. BOX 3230",,"PAWUTUCKET","RI","02860",,,,,,,,,,,,,,,,,,"050463262","4017286980","323100","SCHOFIELD PRINTING",,"P.O. BOX 3230",,"PAWUTUCKET","RI","02860",,,,,,,"050463262","4017286980",,,,"2011-05-31T00:42:58-0500","SCHOFIELD PRINTING",,,,,25,13,0,3,16,0,16,13,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531133157P040069765313001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRUST COMPANIES OF AMERICA, INC. 401K SAVINGS PLAN","001","1995-01-01","TRUST COMPANIES OF AMERICA, INC.",,,"201 CENTER RD STE 2",,"VENICE","FL","342855528",,,,,,,,,,,,,,,,,,"650596382","9414933600","523900","TRUST COMPANIES OF AMERICA, INC.",,"201 CENTER RD STE 2",,"VENICE","FL","342855528",,,,,,,"650596382","9414933600",,,,"2011-05-31T13:28:19-0500","ROLAND G. CALDWELL, JR",,,,,18,17,0,1,18,0,18,15,0,,"2E2F2G2J3D2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110522210216P040295341184001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GREGORY W. THOMPSON, M.D., P.A. PROFIT SHARING PLAN","001","1979-10-01","GREGORY W THOMPSON, M.D., P.A.",,,"14615 SAN PEDRO AVENUE, SUITE 200",,"SAN ANTONIO","TX","78232",,,,,,,,,,,,,,,,,,"742059337","2104945192","621111","GREGORY W THOMPSON, M.D., P.A.",,"14615 SAN PEDRO AVENUE, SUITE 200",,"SAN ANTONIO","TX","78232",,,,,,,"742059337","2104945192",,,,"2011-05-22T20:58:13-0500","GREGORY THOMPSON",,,,,5,5,0,0,5,0,5,5,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-22","Filed with authorized/valid electronic signature",, "20110526102529P040002026595001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JB&A, INC. MEDICAL REIMBURSEMENT PLAN","502","1989-01-28","JB&A, INC.",,,"5203 LEESBURG PIKE, SUITE 1401",,"FALLS CHURCH","VA","220413404",,,,,,,"5203 LEESBURG PIKE, SUITE 1401",,"FALLS CHURCH","VA","220413404",,,,,,,"541464712","7033992831","541600","JB&A, INC.",,"5203 LEESBURG PIKE, SUITE 1401",,"FALLS CHURCH","VA","220413404",,,,,,,"541464712","7033992831",,,,"2011-05-26T11:12:57-0500","EVERETT R. YOUNT, JR.",,,,,205,192,29,,221,,221,,,,,"4A4D4E4Q",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110527103116P030009545650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WHITNEY MANOR CONVALESCENT CENTER, INC. 401(K) PLAN","001","2002-01-01","WHITNEY MANOR CONVALESCENT CENTER, INC.",,,"2800 WHITNEY AVE.",,"HAMDEN","CT","06518",,,,,,,,,,,,,,,,,,"060880328","2032886230","812990","WHITNEY MANOR CONVALESCENT CENTER, INC.",,"2800 WHITNEY AVE.",,"HAMDEN","CT","06518",,,,,,,"060880328","2032886230",,,,"2011-05-27T10:31:06-0500","LKOPEC",,,,,79,59,0,9,68,0,68,14,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527103445P040307529776001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADVANCING OPPORTUNITIES 401(K) RETIREMENT PLAN","001","2004-01-01","ADVANCING OPPORTUNITIES, INC.",,,"1005 WHITEHEAD ROAD EXTENSION","SUITE 1","EWING","NJ","08638",,,,,,,,,,,,,,,,,,"221550592","6098824182","624100","ADVANCING OPPORTUNITIES, INC.",,"1005 WHITEHEAD ROAD EXTENSION","SUITE 1","EWING","NJ","08638",,,,,,,"221550592","6098824182",,,,"2011-05-26T15:22:33-0500","JOHN MUDGE",,,,,60,55,0,5,60,0,60,31,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527170455P040067659409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MASHNEY LAW OFFICES, PC 401K PROFIT SHARING PLAN","001","2007-01-01","MASHNEY LAW OFFICES, PC",,,"335 NORTH BROOKHURST STREET",,"ANAHEIM","CA","928015610",,,,,,,,,,,,,,,,,,"460478381","7145355090","541110","MASHNEY LAW OFFICES, PC",,"335 NORTH BROOKHURST STREET",,"ANAHEIM","CA","928015610",,,,,,,"460478381","7145355090",,,,"2011-05-27T17:04:25-0500","STEPHEN MASHNEY",,,,,6,5,0,1,6,0,6,5,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110601141633P030068568417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TIMOTHY R. RABORN, D.D.S. RETIREMENT PLAN & TRUST","001","1998-01-01","TIMOTHY R. RABORN, D.D.S.",,,"10954 JOOR ROAD",,"BATON ROUGE","LA","70818",,,,,,,,,,,,,,,,,,"721039134","2252613360","621210","TIMOTHY R. RABORN, D.D.S.",,"10954 JOOR ROAD",,"BATON ROUGE","LA","70818",,,,,,,"721039134","2252613360",,,,"2011-06-01T14:16:29-0500","TIMOTHY R. RABORN, D.D.S.",,,,,9,8,0,1,9,0,9,9,0,,"2E3B2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110527143112P030065839345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DESERT CARDIOLOGY CONSULTANTS MEDICAL GROUP, INC. 401( K) PLAN","002","1993-08-01","DESERT CARDIOLOGY CONSULTANTS MEDICAL GROUP, INC.",,,"39000 BOB HOPE DRIVE, WRIGHT BLDG.",,"RANCHO MIRAGE","CA","92270",,,,,,,,,,,,,,,,,,"952872836","7603460642","621111","DESERT CARDIOLOGY CONSULTANTS MEDICAL GROUP, INC.",,"39000 BOB HOPE DRIVE, WRIGHT BLDG.",,"RANCHO MIRAGE","CA","92270",,,,,,,"952872836","7603460642",,,,"2011-05-27T14:31:04-0500","BARRY T. HACKSHAW, M.D.",,,,,102,90,0,6,96,0,96,84,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527100147P030310917808001","2010-04-01","2011-03-31","2",,"0","0","0","0",,,,,,,"SHOWCASE, INC. 401(K) PROFIT SHARING PLAN","001","1984-04-01","SHOWCASE, INC.",,,"2323 CHESHIRE BRIDGE ROAD","NORTH EAST","ATLANTA","GA","30324",,,,,,,"2323 CHESHIRE BRIDGE ROAD","NORTH EAST","ATLANTA","GA","30324",,,,,,,"581254821","4043257676","443130","SHOWCASE, INC.",,"2323 CHESHIRE BRIDGE ROAD","NORTH EAST","ATLANTA","GA","30324",,,,,,,"581254821","4043257676",,,,"2011-05-27T09:02:40-0500","ROBERT KHOURY",,,,,32,30,0,4,34,0,34,30,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527100348P030065721457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BENCHMARK LAND DEVELOPMENT, INC. 401(K) PLAN","001","2002-01-01","BENCHMARK LAND DEVELOPMENT, INC.",,,"200 CONGRESS, SUITE 9A",,"AUSTIN","TX","78701",,,,,,,,,,,,,,,,,,"742554944","5124727455","531390","BENCHMARK LAND DEVELOPMENT, INC.",,"200 CONGRESS, SUITE 9A",,"AUSTIN","TX","78701",,,,,,,"742554944","5124727455",,,,"2011-05-27T09:53:15-0500","DAVID MAHN",,,,,6,3,0,1,4,0,4,4,0,,"2A2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110531135418P030009866898001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AHEAD HUMAN RESOURCES INC / UNIQUE STAFFING RETIREMENT PLAN","001","1997-01-01","AHEAD HUMAN RESOURCES INC / UNIQUE STAFFING",,,"2209 HEATHER LANE",,"LOUISVILLE","KY","40208",,,,,,,,,,,,,,,,,,"920187378","5024851000","624100","AHEAD HUMAN RESOURCES INC / UNIQUE STAFFING",,"2209 HEATHER LANE",,"LOUISVILLE","KY","40208",,,,,,,"920187378","5024851000",,,,"2011-05-31T13:53:29-0500","KRISTI HAGAN",,,,,4,2,0,0,2,0,2,1,0,,"2E2J2K",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110526122847P030065248081001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ELECTRONIC PAYMENTS INC. 401(K) PLAN","001","2007-04-01","ELECTRONIC PAYMENTS INC.",,,"1161 SCOTT AVE",,"CALVERTON","NY","11933",,,,,,,"1161 SCOTT AVE",,"CALVERTON","NY","11933",,,,,,,"200706282","6318221140","522300","ELECTRONIC PAYMENTS INC.",,"1161 SCOTT AVE",,"CALVERTON","NY","11933",,,,,,,"200706282","6318221140",,,,"2011-05-26T12:27:41-0500","MICHAEL NARDY",,,,,25,22,0,1,23,0,23,10,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110527120503P030065768993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEIBOLD ASSOCIATES, INC. 401(K) PLAN","001","2007-01-01","LEIBOLD ASSOCIATES, INC.",,,"983 EHLERS RD","PO BOX 194","NEENAH","WI","54957",,,,,,,,,,,,,,,,,,"391225008","9207255328","812990","LEIBOLD ASSOCIATES, INC.",,"983 EHLERS RD","PO BOX 194","NEENAH","WI","54957",,,,,,,"391225008","9207255328",,,,"2011-05-27T12:04:59-0500","KRIS PETERSON",,,,,22,24,0,3,27,0,27,27,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110601135123P030009945906001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PANGYEN S. HSU D.D.S. DEFINED BENEFIT PENSION PLAN","003","2002-01-01","PANGYEN S. HSU D.D.S.",,,"830 CARNOUSTIE DR",,"BRIDGEWATER","NJ","088071337",,,,,,,,,,,,,,,,,,"222736217","9087253283","621210","PANGYEN S. HSU, D.D.S.",,"830 CARNOUSTIE DR.",,"BRIDGEWATER","NJ","08807",,,,,,,"222736217","9087253283",,,,"2011-06-01T13:50:56-0500","PANGYEN HSU",,,,,3,0,0,0,0,0,0,0,0,,"1A1I3B3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110530124934P030067413377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRO AIR MECHANICAL, INC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","PRO AIR MECHANICAL, INC",,,"1231 SEMINOLA BLVD",,"CASSELBERRY","FL","32707",,,,,,,,,,,,,,,,,,"450463170","4073394333","238220","PRO AIR MECHANICAL, INC",,"1231 SEMINOLA BLVD",,"CASSELBERRY","FL","32707",,,,,,,"450463170","4073394333",,,,"2011-05-30T00:49:29-0500","PRO AIR MECHANICAL, INC",,,,,20,21,0,3,24,0,24,18,1,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-30","Filed with authorized/valid electronic signature",, "20110531125143P030067959617009","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GROVER ENTERPRISES, INC. PROFIT SHARING PENSION PLAN AND TRUST","001","1988-01-01","GROVER ENTERPRISES, INC.",,,"618 WEST MAGNOLIA AVENUE",,"LOUISVILLE","KY","402082240",,,,,,,"618 WEST MAGNOLIA AVENUE",,"LOUISVILLE","KY","402082240",,,,,,,"611111197","5026372885","339900","GROVER ENTERPRISES, INC.",,"618 WEST MAGNOLIA AVENUE",,"LOUISVILLE","KY","402082240",,,,,,,"611111197","5026372885",,,,"2011-05-26T08:34:53-0500","MARK GROVER",,,,,3,3,,,3,,3,3,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110526152546P030308868544001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ACCESS TCA, INC. SECTION 125 CAFETERIA PLAN","501","1994-01-01","ACCESS TCA, INC.",,,"ONE MAIN STREET",,"WHITINSVILLE","MA","015882238",,,,,,,,,,,,,,,,,,"042861732","5082349791","238900","ACCESS TCA, INC.",,"ONE MAIN STREET",,"WHITINSVILLE","MA","015882238",,,,,,,"042861732","5082349791",,,,"2011-05-26T15:25:41-0500","CATHERINE PETERSON",,,,,182,156,9,0,165,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110527135933P030065821025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CRUSADER PAPER CO., INC. 401(K) PLAN","003","1994-09-01","CRUSADER PAPER COMPANY, INC.",,,"350 HOLT ROAD",,"NORTH ANDOVER","MA","01845",,,,,,,"350 HOLT ROAD",,"NORTH ANDOVER","MA","01845",,,,,,,"042430509","9787944900","322200","CRUSADER PAPER COMPANY, INC.",,"350 HOLT ROAD",,"NORTH ANDOVER","MA","01845",,,,,,,"042430509","9787944900",,,,"2011-05-27T13:50:10-0500","JOHN COSTELLO",,,,,46,38,0,7,45,0,45,31,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110601142021P030021308999001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M. LEWIS GRUBBS, D.D.S. RETIREMENT PLAN","001","1988-01-01","M. LEWIS GRUBBS, D.D.S.",,,"1771 LELIA DRIVE",,"JACKSON","MS","39216",,,,,,,,,,,,,,,,,,"640679895","6013622660","621210","M. LEWIS GRUBBS, D.D.S.",,"1771 LELIA DRIVE",,"JACKSON","MS","39216",,,,,,,"640679895","6013622660",,,,"2011-06-01T14:19:03-0500","M. LEWIS GRUBBS, D.M.D.",,,,,7,7,0,1,8,0,8,6,0,,"2E2F2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601142041P030324333040001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"WOODBURY BEACH PROFIT SHARING PLAN","001","1986-04-01","WOODBURY BEACH",,,"6329 CRYSTAL HILL ROAD",,"N LITTLE ROCK","AR","721185232",,,,,,,,,,,,,,,,,,"710560642","5017538323","423990","WOODBURY BEACH",,"6329 CRYSTAL HILL ROAD",,"N LITTLE ROCK","AR","721185232",,,,,,,"710560642","5017538323",,,,"2011-06-01T14:18:42-0500","FRANK BEACH",,,,,4,4,,,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601153412P030068608401001","2010-08-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"BUSHWICK METALS, INC. EMPLOYEE'S SHORT TERM DISABILITY PLAN","501","1994-08-01","BUSHWICK METALS, INC",,,"560 N WASHINGTON AVE",,"BRIDGEPORT","CT","066042900",,,,,,,,,,,,,,,,,,"061526350","2035761800","493100","BUSHWICK METALS, INC",,"560 N WASHINGTON AVE",,"BRIDGEPORT","CT","066042900",,,,,,,"061526350","2035761800",,,,"2011-06-01T15:34:00-0500","SUSANA CANNONE",,,,,186,185,0,0,185,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601072857P030323510336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GUARDIAN PLUMBING & HEATING 401(K) PROFIT SHARING PLAN & TRUST","001","2002-01-01","GUARDIAN PLUMBING & HEATING",,,"34400 GLENDALE AVE",,"LIVONIA","MI","48150",,,,,,,,,,,,,,,,,,"381878656","7345139500","238220","GUARDIAN PLUMBING & HEATING",,"34400 GLENDALE AVE",,"LIVONIA","MI","48150",,,,,,,"381878656","7345139500",,,,"2011-06-01T07:28:50-0500","ANTHONY DASCENZO",,,,,16,10,0,4,14,0,14,14,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110526153732P040067085265001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FCA, LLC LIFE AND DISABILITY PLAN","502","2009-01-01","FCA, LLC",,,"7601 JOHN DEERE PARKWAY",,"MOLINE","IL","61265",,,,,,,,,,,,,,,,,,"264300900","3097923444","321900","FCA, LLC",,"7601 JOHN DEERE PARKWAY",,"MOLINE","IL","61265",,,,,,,"264300900","3097923444",,,,"2011-05-26T15:37:28-0500","CAROL KILBURG",,,,,126,181,0,0,181,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110531181632P030068104769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP VISION PLAN","503","2004-11-01","VILLAGE ROADSHOW ENTERTAINMENT GROUP",,,"100 NORTH CRESCENT DRIVE, G LEVEL",,"BEVERLY HILLS","CA","90210",,,,,,,,,,,,,,,,,,"562560343","3103854153","512200","VILLAGE ROADSHOW ENTERTAINMENT GROUP",,"100 NORTH CRESCENT DRIVE, G LEVEL",,"BEVERLY HILLS","CA","90210",,,,,,,"562560343","3103854153",,,,"2011-05-31T18:13:38-0500","MELANIE LEWIS",,,,,112,130,6,3,139,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531103406P030067900913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INSIGHT GROUP, INC. PROFIT SHARING PLAN","001","1998-01-01","INSIGHT GROUP, INC.",,,"3 FALLSVIEW LANE","CROTON RIVER EXECUTIVE PARK","BREWSTER","NY","105092231",,,,,,,,,,,,,,,,,,"133856189","8452774577","339900","INSIGHT GROUP, INC.",,"3 FALLSVIEW LANE","CROTON RIVER EXECUTIVE PARK","BREWSTER","NY","105092231",,,,,,,"133856189","8452774577",,,,"2011-05-31T10:28:33-0500","DENIS DEL GROSSO",,,,,8,2,0,5,7,0,7,7,0,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110527101507P030065728753001","2010-01-01","2010-12-31","2",,,,,,,"1",,,,,"IUEC LOCAL 14 WELFARE PLAN","501","1973-04-01","IUEC LOCAL 14",,"DONALD M. WINKLE, JR.","3572 HARLEM ROAD, SUITE 9",,"BUFFALO","NY","14225",,,,,,,,,,,,,,,,,,"161066284","7168335528","813930","IUEC LOCAL 14","DONALD M. WINKLE, JR.","3572 HARLEM ROAD, SUITE 9",,"BUFFALO","NY","14225",,,,,,,"161066284","7168335528",,,,"2011-05-27T10:07:01-0500","DONALD M. WINKLE JR.",,,,,102,107,,,107,,,,,,,"4F4H4L",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527101811P030065730817001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FOGARTY KLEIN CAFETERIA PLAN","502","1993-01-01","FOGARTY & KLEIN, INC.",,,"1800 WEST LOOP SOUTH","SUITE 2100","HOUSTON","TX","77027",,,,,,,,,,,,,,,,,,"742113531","7138625100","541800","SAME","SUITE 100","7155 OLD KATY ROAD","SUITE 100","HOUSTON","TX","77024",,,,,,,"742113531","7138625100",,,,"2011-05-27T10:17:49-0500","KEN RAMAGE",,,,,350,331,0,0,331,,,,,,,"4A4B4D4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527101823P030065730929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SECURCARE SELF STORAGE, INC. 401K PLAN","001","2002-01-01","SECURCARE SELF STORAGE, INC.",,,"9226 TEDDY LN STE 100",,"LONE TREE","CO","801246726",,,,,,,,,,,,,,,,,,"841101041","3037058000","531130","SECURCARE SELF STORAGE, INC.",,"9226 TEDDY LN STE 100",,"LONE TREE","CO","801246726",,,,,,,"841101041","3037058000",,,,"2011-05-27T10:09:27-0500","JUSTIN HLIBICHUK",,,,,88,23,0,1,24,0,24,24,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110531162101P040010241826001","2010-08-16","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"JUNKERMAN, INC. PROFIT SHARING PLAN","001","2010-08-16","JUNKERMAN, INC.",,,"800 E ROSS AVE",,"CINCINNATI","OH","45217",,,,,,,,,,,,,,,,,,"273259524","5132418443","442291","JUNKERMAN, INC.",,"800 E ROSS AVE",,"CINCINNATI","OH","45217",,,,,,,"273259524","5132418443",,,,"2011-05-31T15:51:23-0500","MARK JUNKERMAN",,,,,1,1,,,1,,1,1,,,"2G2E3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531183055P030068109041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTRA BANK BENEFITS PACKAGE","501","2008-01-01","CENTRA BANK",,,"990 ELMER PRINCE DRIVE",,"MORGANTOWN","WV","26505",,,,,,,,,,,,,,,,,,"550768144","3045982000","522110","CENTRA BANK",,"990 ELMER PRINCE DRIVE",,"MORGANTOWN","WV","26505",,,,,,,"550768144","3045982000",,,,"2011-05-31T18:30:50-0500","ROBERT L MYERS",,,,,224,223,0,0,223,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110601102430P030323856240010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PERRY HAY & CHU PROFIT-SHARING PLAN","001","1987-01-01","PERRY HAY & CHU LLP",,,"22144 CLARENDON STREET, SUITE 304",,"WOODLAND HILLS","CA","913676324",,,,,,,,,,,,,,,,,,"953535236","8185935350","541211","PERRY HAY & CHU LLP",,"22144 CLARENDON STREET, SUITE 304",,"WOODLAND HILLS","CA","91367",,,,,,,"954170677","8185935350",,,,"2011-05-31T03:20:21-0500","ROBERT W HAY","2011-05-31T03:20:21-0500","ROBERT W HAY",,,33,33,,,33,,33,33,,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601111512P040320596928001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ENKAY PRODUCTS CORP PROFIT SHARING PLAN AND TRUST","001","2001-01-01","ENKAY PRODUCTS",,,"PO BOX 140700",,"HOWARD BEACH","NY","11414",,,,,,,,,,,,,,,,,,"112126009","7182725570","424990","ENKAY PRODUCTS",,"PO BOX 140700",,"HOWARD BEACH","NY","11414",,,,,,,"112126009","7182725570",,,,"2011-05-13T12:16:08-0500","GARY WOLTER","2011-05-13T12:16:14-0500","GARY WOLTER",,,15,14,0,2,16,0,16,16,1,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531114254P030067930737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JEWISH COMMUNITY CENTER OF HOUSTON, INC. WELFARE PLAN","501","2002-09-01","JEWISH COMMUNITY CENTER OF HOUSTON, INC.",,,"5601 SOUTH BRAESWOOD",,"HOUSTON","TX","77065",,,,,,,"5601 SOUTH BRAESWOOD",,"HOUSTON","TX","77065",,,,,,,"741198298","7137293200","111100","JEWISH COMMUNITY CENTER OF HOUSTON, INC.",,"5601 SOUTH BRAESWOOD",,"HOUSTON","TX","77065",,,,,,,"741198298","7137293200",,,,"2011-05-31T11:27:26-0500","CINDIE LAVENDA","2011-05-31T11:27:26-0500","CINDIE LAVENDA",,,124,125,0,0,125,0,125,0,0,,,"4B4H4L","1","0","0","0","1","0","0","0",,"0","0",,,"1","3",,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110526123349P040067008257001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"RETIREMENT PLAN- LAGUNA HILLS ANIMAL HOSPITAL","001","2006-01-01","LAGUNA HILLS ANIMAL HOSPITAL",,,"24271 EL TORO ROAD",,"LAGUNA HILLS","CA","92637",,,,,,,,,,,,,,,,,,"330185297","9498377333","812990","LAGUNA HILLS ANIMAL HOSPITAL",,"24271 EL TORO ROAD",,"LAGUNA HILLS","CA","92637",,,,,,,"330185297","9498377333",,,,"2011-05-26T12:33:40-0500","ANGIE ZIEGLER",,,,,12,6,0,4,10,0,10,9,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110527113557P030065758353001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","0","0","0","0",,"KANSAS CITY SYMPHONY GROUP MEDICAL DENTAL LTD INSURANCE PROGRAM PLAN","502","1993-05-20","KANSAS CITY SYMPHONY",,,"1703 WYANDOTTE, SUITE 200",,"KANSAS CITY","MO","64109",,,,,,,,,,,,,,,,,,"431297475","8164711100","711100","KANSAS CITY SYMPHONY",,"1703 WYANDOTTE, SUITE 200",,"KANSAS CITY","MO","64109",,,,,,,"431297475","8164711100",,,,"2011-05-27T11:22:58-0500","BARBARA TATE",,,,,109,105,4,,109,,,,,,,"4D4A4H4B4Q4E","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110531152807P040318405488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GEHR PLASTICS, INC. 401(K) PLAN","001","1995-01-01","GEHR PLASTICS, INC.",,,"NAAMANS CREEK CENTER","24 CREEK CIRCLE","BOOTHWYN","PA","19061",,,,,,,,,,,,,,,,,,"333259107","6104978941","325200","GEHR PLASTICS, INC.",,"NAAMANS CREEK CENTER","24 CREEK CIRCLE","BOOTHWYN","PA","19061",,,,,,,"333259107","6104978941",,,,"2011-05-31T15:28:03-0500","MYRA CARROLL",,,,,25,17,2,6,25,0,25,24,0,,"2E2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531184421P030068112881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE APPAREL GROUP, LTD EMPLOYEE BENEFIT PLAN","501","1988-05-01","THE APPAREL GROUP, LTD",,,"883 TRINITY DRIVE",,"LEWISVILLE","TX","75056",,,,,,,,,,,,,,,,,,"135569505","2144693304","424300","THE APPAREL GROUP, LTD",,"883 TRINITY DRIVE",,"LEWISVILLE","TX","75056",,,,,,,"135569505","2144693304",,,,"2011-05-31T18:44:17-0500","BRAD CAMPBELL",,,,,168,171,3,0,174,,,,,,,"4A4B4D4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110601125124P030068529793001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KAHULUI DENTAL 401(K) RETIREMENT SAVINGS PLAN","001","2002-02-02","KENNETH C. ZIELINSKI. D.D.S.",,,"33 LONO AVENUE","SUITE 370","KAHULUI","HI","96732",,,,,,,,,,,,,,,,,,"912113342","8088716337","621210","KENNETH C. ZIELINSKI. D.D.S.",,"33 LONO AVENUE","SUITE 370","KAHULUI","HI","96732",,,,,,,"912113342","8088716337",,,,"2011-06-01T12:51:14-0500","MARIA ZIELINSKI",,,,,8,5,0,1,6,0,6,6,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601125611P040070350801001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"K&N MANAGEMENT","501","2010-01-01","K&N MANAGEMENT",,,"11570 RESEARCH BLVD.",,"AUSTIN","TX","78759",,,,,,,"11570 RESEARCH BLVD.",,"AUSTIN","TX","78759",,,,,,,"742671771","5124180444","722110","K&N MANAGEMENT",,"11570 RESEARCH BLVD.",,"AUSTIN","TX","78759",,,,,,,"742671771","5124180444",,,,"2011-06-01T12:55:48-0500","ALLYSON YOUNG",,,,,326,326,,,326,,326,,,,,"4B4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110526142530P030020289095001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANK IOWA VISION INSURANCE","514","2008-01-01","BANK IOWA",,,"1150 JORDAN CREEK PARKWAY",,"WEST DES MOINES","IA","50266",,,,,,,,,,,,,,,,,,"470469229","5152262488","522110","BANK IOWA",,"1150 JORDAN CREEK PARKWAY",,"WEST DES MOINES","IA","50266",,,,,,,"470469229","5152262488",,,,"2011-05-26T14:19:42-0500","AMY GRIMES",,,,,117,112,2,0,114,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-26","Filed with authorized/valid electronic signature",, "20110601144717P030324388720001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE WALMAN OPTICAL COMPANY GROUP MEDICAL PLAN","501","1960-11-30","THE WALMAN OPTICAL COMPANY",,,"801 12TH AVENUE NORTH",,"MINNEAPOLIS","MN","55411",,,,,,,,,,,,,,,,,,"410598170","6125206000","339110","THE WALMAN OPTICAL COMPANY",,"801 12TH AVENUE NORTH",,"MINNEAPOLIS","MN","55411",,,,,,,"410598170","6125206000",,,,"2011-06-01T14:47:10-0500","CHARLES PILLSBURY","2011-06-01T14:47:10-0500","CHARLES PILLSBURY",,,650,713,39,0,752,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601144944P030009949026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE WALMAN OPTICAL COMPANY GROUP INSURANCE PLAN","503","1960-11-30","THE WALMAN OPTICAL COMPANY",,,"801 12TH AVENUE NORTH",,"MINNEAPOLIS","MN","55411",,,,,,,,,,,,,,,,,,"410598170","6125206000","339110","THE WALMAN OPTICAL COMPANY",,"801 12TH AVENUE NORTH",,"MINNEAPOLIS","MN","55411",,,,,,,"410598170","6125206000",,,,"2011-06-01T14:49:37-0500","CHARLES PILLSBURY","2011-06-01T14:49:37-0500","CHARLES PILLSBURY",,,815,746,58,0,804,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531081208P030009845186001","2009-07-01","2010-06-30","3",,"1","0","0","0","0","0","0","1","0",,"BALTIMORE METRO CHAPTER OF ASSOCIATED BUILDERS AND CONTRACTORS, INC.","999","1961-11-07","BALTIMORE METRO CHAPTER OF ASSOCIATED BUILDERS AND CONTRACTORS, INC.",,,"1220 B EAST JOPPA ROAD, SUITE 322",,"TOWSON","MD","21286",,,,,,,,,,,,,,,,,,"520786957","4108210351","611000","ASSOCIATED BUILDERS AND CONTRACTORS CRAFT TRAINING TRUST OF BALTIMORE",,"1220 B EAST JOPPA ROAD, SUITE 322",,"TOWSON","MD","21286",,,,,,,"266461575","4108210351",,,,"2011-05-31T08:12:07-0500","MICHAEL HENDERSON",,,,,0,,,,0,,,,,,,"4J","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110527111301P040067515201008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NORTHEAST CONTEMPORARY SERVICES, INC. TAX DEFERRED ANNUITY PLAN","001","1990-07-01","NORTHEAST CONTEMPORARY SERVICES, INC.",,,"2770 CLEVELAND AVENUE NORTH",,"ROSEVILLE","MN","55113",,,,,,,,,,,,,,,,,,"410916288","6516363343","624310","NORTHEAST CONTEMPORARY SERVICES, INC.",,"2770 CLEVELAND AVENUE NORTH",,"ROSEVILLE","MN","55113",,,,,,,"410916288","6516363343",,,,"2011-05-26T06:41:22-0500","BECKY SMITH",,,,,36,13,,21,34,,34,34,,,"2G2L",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110527111531P030065750753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"A - 1 TELEPHONE 401(K) PLAN","001","2000-01-01","A - 1 TELEPHONE ANSWERING SERVICE, INC.",,,"2209 6TH STREET S.W.",,"CANTON","OH","44706",,,,,,,,,,,,,,,,,,"341168463","3304539161","517000","A - 1 TELEPHONE ANSWERING SERVICE, INC.",,"2209 6TH STREET S.W.",,"CANTON","OH","44706",,,,,,,"341168463","3304539161",,,,"2011-05-27T11:15:24-0500","HEIDI M. B. KOUROUNIOTIS","2011-05-27T11:15:24-0500","HEIDI M. B. KOUROUNIOTIS",,,20,11,0,6,17,0,17,12,0,,"2E2F2G2J3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110601091132P040070237201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BELLETECH CORP. WELFARE BENEFIT PLAN","501","2005-01-01","BELLETECH CORP.",,,"700 WEST LAKE AVENUE",,"BELLEFONTAINE","OH","433119647",,,,,,,,,,,,,,,,,,"341478321","9375993774","336300","BELLETECH CORP.",,"700 WEST LAKE AVENUE",,"BELLEFONTAINE","OH","433119647",,,,,,,"341478321","9375993774",,,,"2011-06-01T08:59:58-0500","MARK O. MCINTYRE",,,,,120,108,0,0,108,,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110531094437P030009852354001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"R.C. OLSEN CADILLAC, INC. 401(K) PLAN","001","1999-01-01","R.C. OLSEN CADILLAC, INC.",,,"201 CAMBRIDGE RD",,"WOBURN","MA","01801",,,,,,,"201 CAMBRIDGE RD",,"WOBURN","MA","01801",,,,,,,"042311859","7819357000","441110","R.C. OLSEN CADILLAC, INC.",,"201 CAMBRIDGE RD",,"WOBURN","MA","01801",,,,,,,"042311859","7819357000",,,,"2011-05-31T09:41:44-0500","DAVID PORZIO",,,,,69,59,0,12,71,0,71,55,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110527094744P030310889472001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JRNMS, LLC 401K & PSP","001","2002-01-01","JRNMS, LLC",,,"11392 OPEN HILL DR",,"SOUTH JORDAN","UT","84095",,,,,,,,,,,,,,,,,,"870621939","8014201712","621111","JRNMS, LLC",,"11392 OPEN HILL DR",,"SOUTH JORDAN","UT","84095",,,,,,,"870621939","8014201712","ALPINE WOMEN S CLINIC","870621939","001","2011-05-27T09:47:35-0500","JAMES R NELSON MD","2011-05-27T09:47:35-0500","JAMES R NELSON MD",,,15,12,0,0,12,0,12,0,0,,"2A2E2F2G2J2K",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110531165210P030321950336001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"KAEMPFER CROWELL RENSHAW GRONAUER & FIORENTINO 401(K) PROFIT SHARING PLAN","001","1994-03-01","KAEMPFER CROWELL",,,"8345 WEST SUNSET ROAD","SUITE 250","LAS VEGAS","NV","891132092",,,,,,,"8345 WEST SUNSET ROAD","SUITE 250","LAS VEGAS","NV","891132092",,,,,,,"880312904","7027927000","541110","KAEMPFER CROWELL",,"8345 WEST SUNSET ROAD","SUITE 250","LAS VEGAS","NV","891132092",,,,,,,"880312904","7027927000","KAEMPFER CROWELL RENSHAW GRONAUER AND FIORENTINO","880312904","001","2011-05-31T16:49:41-0500","DONNA WIRTH",,,,,99,47,1,41,89,0,89,78,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110531165259P040069872641001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SUMMA RX LABORATORIES, INC. 401K PLAN","001","1998-01-01","SUMMA RX LABORATORIES, INC.",,,"2940 FM 3028","PO BOX 147","MINERAL WELLS","TX","760670000",,,,,,,,,,,,,,,,,,"751535372","9403250771","325410","SUMMA RX LABORATORIES, INC.",,"2940 FM 3028","PO BOX 147","MINERAL WELLS","TX","760670000",,,,,,,"751535372","9403250771",,,,"2011-05-31T16:52:45-0500","JASON R CHAMBERS",,,,,36,22,0,12,34,0,34,19,0,,"2E2F2G2J2K3B3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-31","Filed with authorized/valid electronic signature",, "20110527114018P030065760065001","2008-01-01","2008-12-31","2",,"0","1","0","0","1","0","0","0","0",,"KOKOMO UNION PENSION PLAN","001","1946-01-01","KOKOMO GAS AND FUEL COMPANY",,,"801 EAST 86TH AVENUE",,"MERRILLVILLE","IN","46410",,,,,,,,,,,,,,,,,,"350448232","2196475571","221210","NISOURCE BENEFITS COMMITTEE",,"801 EAST 86TH AVENUE",,"MERRIVILLE","IN","46410",,,,,,,"352108964","2196475571",,,,"2011-05-27T11:40:07-0500","DAVID J. VAJDA",,,,,52,32,2,15,49,0,49,,2,,"1A1G",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","1","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",, "20110601130019P040010311922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALCHRO, INC. PROFIT SHARING PLAN","001","1998-01-01","ALCHRO, INC.","FIRST FEDERAL CREDIT & COLLECTIONS",,"P.O. BOX 813787",,"HOLLYWOOD","FL","33021",,,,,,,"6099 STIRLING ROAD #215",,"DAVIE","FL","33314",,,,,,,"592760228","9543322628","561440","ALCHRO, INC.",,"P.O. BOX 813787",,"HOLLYWOOD","FL","33021",,,,,,,"592760228","9543322628",,,,"2011-06-01T11:52:24-0500","MIRYAM ROSENBERG",,,,,6,6,0,1,7,0,7,7,0,,"2A2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110601133218P040070374993001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"FDIC AS RECEIVER FOR THE CARSON RIVER COMMUNITY BANK 401(K) PLAN","001","2006-01-01","FDIC AS RECEIVER FOR THE CARSON RIVER COMMUNITY BANK",,,"FDIC DIV OF RESOL AND RECEIVERSHIPS","40 PACIFICA","IRVINE","CA","92618",,,,,,,,,,,,,,,,,,"205014523","7757833224","522120","FDIC AS RECEIVER FOR THE CARSON RIVER COMMUNITY BANK",,"FDIC DIV OF RESOL AND RECEIVERSHIPS","40 PACIFICA","IRVINE","CA","92618",,,,,,,"205014523","7757833224",,,,"2011-06-01T13:14:11-0500","JEFF MALLOCH FOR THE FDIC",,,,,11,0,0,0,0,0,0,0,0,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110523122744P040297011872001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"UAW-GM HOURLY EMPLOYEES FLEXIBLE SPENDING ACCOUNT PLAN","533","2009-01-01","GENERAL MOTORS LLC",,,"300 RENAISSANCE CENTER","MAIL CODE 482-C16-D25","DETROIT","MI","482653000",,,,,,,"300 RENAISSANCE CENTER","MAIL CODE 482-C16-D25","DETROIT","MI","482653000",,,,,,,"270383222","3136654085","336100","GENERAL MOTORS LLC",,"300 RENAISSANCE CENTER","MAIL CODE 482-C16-D25","DETROIT","MI","482653000",,,,,,,"270383222","3136654085",,,,"2011-05-23T10:44:34-0500","KEVIN COBB",,,,,7768,5051,2608,,7659,,7659,,,,,"4A4D4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520144652P030010353766001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROCK OF AGES CORPORATION HEALTH AND WELFARE BENEFIT PLAN","501","1985-07-01","ROCK OF AGES CORPORATION",,,"PO BOX 482",,"BARRE","VT","05641",,,,,,,"560 GRANITEVILLE ROAD",,"BARRE","VT","05641",,,,,,,"030153200","8024763115","212320","ROCK OF AGES CORPORATION",,"PO BOX 482",,"BARRE","VT","05641",,,,,,,"030153200","8024763115",,,,"2011-05-20T14:46:40-0500","PAUL HUTCHINS",,,,,288,184,108,0,292,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110523135612P030019711431001","2010-04-01","2011-03-31","2",,"1","0","0","0","0","0","0","0","0",,"JOSEPH A PAINE INC PROFIT SHARING PLAN AND TRUST","001","1990-04-01","JOSEPH A PAINE INC","GUS PAINE INSURANCE","GREGORY J. PAINE","4301 S PINE ST STE 26",,"TACOMA","WA","984097252",,,,,,,,,,,,,,,,,,"911292656","2534723055","524210","GREGORY J PAINE",,"4301 S PINE ST STE 26",,"TACOMA","WA","984097252",,,,,,,"911292656","2534723055",,,,"2011-05-23T13:56:11-0500","GREGORY J. PAINE",,,,,4,3,0,1,4,0,4,4,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523153431P030300617984001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"VGM GROUP FLEXIBLE SPENDING PLAN","503","1993-07-01","VGM GROUP INC",,,"PO BOX 2817",,"WATERLOO","IA","50704",,,,,,,"1111 W SAN MARNAN DR",,"WATERLOO","IA","50701",,,,,,,"421280573","3192357100","621610","VGM GROUP INC",,"PO BOX 2817",,"WATERLOO","IA","50704",,,,,,,"421280573","3192357100",,,,"2011-05-23T15:31:12-0500","MIKE MALLARO",,,,,127,127,,,127,,127,,,,,"4A",,,,"1",,,,"1",,,,,,"0",,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523082025P040296528112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VITERBO UNIVERSITY, INC. DEFINED CONTRIBUTION RETIREMENT PLAN","001","1963-09-01","VITERBO UNIVERSITY, INC.",,,"900 VITERBO DRIVE",,"LACROSSE","WI","546018804",,,,,,,,,,,,,,,,,,"390987445","6087963000","611000","VITERBO UNIVERSITY, INC.",,"900 VITERBO DRIVE",,"LACROSSE","WI","546018804",,,,,,,"390987445","6087963000",,,,"2011-05-20T15:37:12-0500","TODD ERICSON","2011-05-20T15:37:12-0500","TODD ERICSON",,,449,264,0,196,460,0,460,441,0,,"2L",,"1","0","0","0","1","0","0","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110520112605P040020013671001","2010-01-01","2010-10-31","2",,"0","0","1","1","0","0","0","0","0",,"ORLANDO AUTO AUCTION, INC. EMPLOYEES PROFIT SHARING PLAN","001","1991-01-01","ORLANDO AUTO AUCTION, INC.",,,"4636 W. COLONIAL DRIVE",,"ORLANDO","FL","32808",,,,,,,,,,,,,,,,,,"591669772","4072993904","441229","ORLANDO AUTO AUCTION, INC.",,"4636 W. COLONIAL DRIVE",,"ORLANDO","FL","32808",,,,,,,"591669772","4072993904",,,,"2011-05-20T11:25:50-0500","TATIANA CHAVEZ","2011-05-20T11:25:50-0500","TATIANA CHAVEZ",,,21,0,0,0,0,0,0,0,0,,"2A2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110520130702P030019228983001","2007-07-03","2007-12-31","2",,"0","1","0","1","0","0","0","0","0",,"HUSKY REFINING COMPANY NON-REPRESENTED 401 K PLAN","001","2007-07-03","HUSKY REFINING COMPANY",,,"1150 SOUTH METCALF STREET",,"LIMA","OH","45804",,,,,,,,,,,,,,,,,,"980537727","4192262300","324110","HUSKY REFINING COMPANY",,"1150 SOUTH METCALF STREET",,"LIMA","OH","45804",,,,,,,"980537727","4192262300",,,,"2011-05-20T13:06:55-0500","DAVID STEIN",,,,,0,156,0,1,157,0,157,145,0,,"2E2F2G2J2K3E",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520090007P030019191879001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SPEARMAN MANAGEMENT COMPANY PROFIT SHARING PLAN","001","1987-01-01","SPEARMAN MANAGEMENT COMPANY",,"GUY M. SPEARMAN, III","516 DELANNOY AVE.",,"COCOA","FL","32922",,,,,,,,,,,,,,,,,,"592270459","3216312750","541990","SPEARMAN MANAGEMENT COMPANY","GUY M. SPEARMAN, III","516 DELANNOY AVE.",,"COCOA","FL","32922",,,,,,,"592270459","3216312750",,,,"2011-05-20T09:48:47-0500","GUY M. SPEARMAN, III","2011-05-20T09:49:05-0500","GUY M. SPEARMAN, III",,,5,4,0,2,6,0,6,6,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523113417P030300103120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRISTAR PROTECTOR 401K PLAN AND TRUST","001","2005-01-01","W.B.W. INDUSTRIES LLP DBA TRI-STAR PROTECTOR",,"GARY WARWICK","PO BOX 1432",,"HUMBLE","TX","77347",,,,,,,,,,,,,,,,,,"760291723","2813992600","562000","W.B.W. INDUSTRIES LLP DBA TRI-STAR PROTECTOR","GARY WARWICK","PO BOX 1432",,"HUMBLE","TX","77347",,,,,,,"760291723","2813992600",,,,"2011-05-23T11:34:16-0500","GARY WARWICK",,,,,32,18,0,8,26,0,26,26,0,,"2E2F2G2J2K2R3D2A",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523104602P040020521207001","2010-03-26","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"PDA PROPERTIES INC. 401(K) PLAN","001","2010-03-26","PDA PROPERTIES INC.",,,"16904 SHAKES CREEK DRIVE",,"FISHERVILLE","KY","40023",,,,,,,,,,,,,,,,,,"272229896","5024099527","531110","PDA PROPERTIES INC.",,"16904 SHAKES CREEK DRIVE",,"FISHERVILLE","KY","40023",,,,,,,"272229896","5024099527",,,,"2011-05-23T10:45:57-0500","PAUL ANDERSON","2011-05-23T10:45:57-0500","PAUL ANDERSON",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523083031P030019661575001","2010-10-01","2010-12-31","2",,"0","0","0","1",,,,,,,"MARVIN & CO. PC SAVINGS AND THRIFT PLAN","001","1986-10-01","MARVIN & COMPANY P.C.",,,"11 BRITISH AMERICAN BLVD",,"LATHAM","NY","121101405",,,,,,,"11 BRITISH AMERICAN BLVD",,"LATHAM","NY","121101405",,,,,,,"141567343","5187850134","541211","MARVIN & COMPANY P.C.",,"11 BRITISH AMERICAN BLVD",,"LATHAM","NY","121101405",,,,,,,"141567343","5187850134",,,,"2011-05-23T08:29:58-0500","DANIEL LITZ",,,,,59,39,0,10,49,1,50,50,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520105940P030292322880001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"OHIO AUTOMOTIVE SUPPLY CO. PROFIT SHARING PLAN & TRUST","001","1986-01-01","OHIO AUTOMOTIVE SUPPLY CO.",,,"P.O. BOX 209",,"FINDLAY","OH","45840",,,,,,,"525 WEST MAIN CROSS ST.",,"FINDLAY","OH","45840",,,,,,,"344407066","4194221665","441300","OHIO AUTOMOTIVE SUPPLY CO.",,"P.O. BOX 209",,"FINDLAY","OH","45840",,,,,,,"344407066","4194221665",,,,"2011-05-20T10:59:23-0500","J.T. WINKELJOHN","2011-05-20T10:59:23-0500","J.T. WINKELJOHN",,,27,25,,1,26,0,26,26,2,,"2E2F3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523121653P030010600902001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TWM INDUSTRIES HEALTH & WELFARE BENEFIT PLAN","502","2008-01-01","TWM INDUSTRIES",,,"2643 THIRD STREET",,"LIVERMORE","CA","94550",,,,,,,,,,,,,,,,,,"953949188","9252921024","722210","TWM INDUSTRIES",,"2643 THIRD STREET",,"LIVERMORE","CA","94550",,,,,,,"953949188","9252921024",,,,"2011-05-23T12:15:51-0500","LAURA RAYMER",,,,,142,164,0,0,164,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520121444P040063574321001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN INTERNATIONAL INSURANCE COMPANY OF PUERTO RICO - DENTAL","502","2010-02-01","AMERICAN INTERNATIONAL INSURANCE COMPANY OF PUERTO RICO - DENTAL",,,"POBOX 10181",,"SAN JUAN","PR","00908",,,,,,,"POBOX 10181",,"SAN JUAN","PR","00908",,,,,,,"660319193","7877676091","524140","AMERICAN INTERNATIONAL INSURANCE COMPANY OF PUERTO RICO",,"PO BOX 10181",,"SAN JUAN","PR","00908",,,,,,,"660319193","7877676091",,,,"2011-05-20T10:47:50-0500","MARIE LIZA RODRIGUEZ",,,,,134,134,,,134,,134,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520095031P040019998935001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NEWBURY PARTNERS LLC 401(K) PLAN","001","2007-01-01","NEWBURY PARTNERS LLC",,,"100 FIRST STAMFORD PLACE","2ND FLOOR","STAMFORD","CT","06902",,,,,,,"100 FIRST STAMFORD PLACE","2ND FLOOR","STAMFORD","CT","06902",,,,,,,"204662582","2034283600","523900","NEWBURY PARTNERS LLC",,"100 FIRST STAMFORD PLACE","2ND FLOOR","STAMFORD","CT","06902",,,,,,,"204662582","2034283600",,,,"2011-05-20T09:50:10-0500","GERRY ESPOSITO",,,,,12,14,0,0,14,0,14,14,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520154513P040010866198001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROFESSIONAL HEALTHCARE AT HOME EMPLOYEE BENEFIT PLAN","501","1999-01-01","PROFESSIONAL HEALTHCARE AT HOME",,,"925 YGNACIO VALLEY RD STE 101",,"WALNUT CREEK","CA","945963818",,,,,,,,,,,,,,,,,,"260519402","9258917000","621399","PROFESSIONAL HEALTHCARE AT HOME",,"925 YGNACIO VALLEY RD STE 101",,"WALNUT CREEK","CA","945963818",,,,,,,"260519402","9258917000",,,,"2011-05-20T15:43:14-0500","AMY CAIN",,,,,278,166,0,0,166,,,,,,,"4A4B4D4E4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520164851P040289923888001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEASONS LANDSCAPE, INC. 401(K) PROFIT SHARING PLAN","001","2003-01-01","SEASONS LANDSCAPE, INC.",,,"420 SIERRA COLLEGE DRIVE, SUITE 100",,"GRASS VALLEY","CA","95945",,,,,,,,,,,,,,,,,,"431983980","5302726596","561730","SEASONS LANDSCAPE, INC.",,"420 SIERRA COLLEGE DRIVE, SUITE 100",,"GRASS VALLEY","CA","95945",,,,,,,"431983980","5302726596",,,,"2011-05-20T16:48:45-0500","WARREN HUTSON",,,,,7,1,1,0,2,0,2,1,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520131104P030292587648001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW PIONEER'S COOPERATIVE SOCIETY HEALTH PLAN","501","2004-09-01","NEW PIONEER COOPERATIVE SOCIETY",,,"22 SOUTH LINN STREET","UNIT 2A","IOWA CITY","IA","522400000",,,,,,,,,,,,,,,,,,"237140334","3193389441","445110","NEW PIONEER COOPERATIVE SOCIETY",,"22 SOUTH LINN STREET","UNIT 2A","IOWA CITY","IA","522400000",,,,,,,"237140334","3193389441",,,,"2011-05-20T09:30:18-0500","RON MOORE",,,,,140,155,0,0,155,0,,,,,,"4A4B4D4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110523094956P030001825428001","2007-05-01","2008-04-30","2",,"0","0","0","0","0","0","0","0","0",,"JACKSON HOUSE & W.B. SANDERS RETIREMENT CENTER 403(B) PLAN","001","1992-05-01","JACKSON HOUSE & W.B. SANDERS RETIREMENT CENTER",,,"301 SOUTH 9TH ST.",,"PADUCAH","KY","42003",,,,,,,,,,,,,,,,,,"237453211","2704427591","623000","JACKSON HOUSE & W.B. SANDERS RETIREMENT CENTER",,"301 SOUTH 9TH ST.",,"PADUCAH","KY","42003",,,,,,,"237453211","2704427591",,,,"2011-05-23T08:40:58-0500","TRAVIS YATES",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520165022P040020064391001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AGRA INDUSTRIES, INC. EMPLOYEE BENEFITS PLAN","501","2008-01-01","AGRA INDUSTRIES, INC.",,,"1211 W. WATER STREET",,"MERRILL","WI","54452",,,,,,,,,,,,,,,,,,"392009872","7155369584","236200","AGRA INDUSTRIES, INC.",,"1211 W. WATER STREET",,"MERRILL","WI","54452",,,,,,,"392009872","7155369584",,,,"2011-05-20T16:50:09-0500","DAVID MARCOTT",,,,,147,107,5,0,112,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520074723P030005350133001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DAVIS ARCHITECTURAL GROUP INC. PROFIT SHARING 401K PLAN","001","1989-01-01","DAVIS ARCHITECTURAL GROUP INC.",,,"PO BOX 1642","841 B STEUBENVILLE AVE","CAMBRIDGE","OH","437256642",,,,,,,,,,,,,,,,,,"311067363","7404323976","541310","DAVIS ARCHITECTURAL GROUP INC.",,"PO BOX 1642","841 B STEUBENVILLE AVE","CAMBRIDGE","OH","437256642",,,,,,,"311067363","7404323976",,,,"2011-05-20T07:44:03-0500","JOHN DAVIS",,,,,7,5,0,1,6,0,6,6,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110523131027P040297088096001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SADDLEBACK MEDICAL GROUP, INC. MONEY PURCHASE PENSION PLAN FBO JAMES M. HAWKINS, M.D.","002","2005-01-01","SADDLEBACK MEDICAL GROUP, INC.",,,"23961 CALLE DE LA MAGDALENA","SUITE 130","LAGUNA HILLS","CA","926533616",,,,,,,,,,,,,,,,,,"330571462","9495888700","621111","SADDLEBACK MEDICAL GROUP, INC.",,"23961 CALLE DE LA MAGDALENA","SUITE 130","LAGUNA HILLS","CA","926533616",,,,,,,"330571462","9495888700",,,,"2011-05-23T13:02:49-0500","BRIAN HENRY M.D.",,,,,1,0,0,0,0,0,0,0,0,,"2C3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523134234P030019708263001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BAILEIGH INDUSTRIAL, INC. 401(K) PLAN","001","2003-09-01","BAILEIGH INDUSTRIAL, INC.",,,"P.O. BOX 531",,"MANITOWOC","WI","542210531",,,,,,,"1625 DUFEK DRIVE",,"MANITOWOC","WI","542210531",,,,,,,"391975240","9206844990","423800","BAILEIGH INDUSTRIAL, INC.",,"P.O. BOX 531",,"MANITOWOC","WI","542210531",,,,,,,"391975240","9206844990",,,,"2011-05-23T13:40:29-0500","STEVE WRONKOWSKI",,,,,18,15,0,4,19,0,19,17,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520173338P030062063537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SGC FINANCIAL AND INSURANCE SERVICES 401(K) PLAN","001","1991-01-01","LINK-ALLEN AND ASSOCIATES, INC. DBA SGC FINANCIAL & INSURANCE SERVICES",,,"3 WATERS PARK DRIVE, SUITE 115",,"SAN MATEO","CA","94403",,,,,,,,,,,,,,,,,,"942369223","6502270344","524210","LINK-ALLEN AND ASSOCIATES, INC. DBA SGC FINANCIAL & INSURANCE SERVICES",,"3 WATERS PARK DRIVE, SUITE 115",,"SAN MATEO","CA","94403",,,,,,,"942369223","6502270344",,,,"2011-05-20T14:38:54-0500","CARA BANCHERO",,,,,25,11,0,11,22,0,22,21,0,,"2A2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520114642P030010340006001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REPCO ASSOCIATES, INC. 401(K) AND PROFIT SHARING PLAN","001","1989-01-01","REPCO ASSOCIATES, INC.",,,"1775 WEST ARMITAGE COURT",,"ADDISON","IL","60101",,,,,,,,,,,,,,,,,,"362681734","6309329900","423700","REPCO ASSOCIATES, INC.",,"1775 WEST ARMITAGE COURT",,"ADDISON","IL","60101",,,,,,,"362681734","6309329900",,,,"2011-05-20T11:46:13-0500","BRIAN MAZZOCCHI",,,,,9,9,0,0,9,0,9,9,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110523091212P040011106486001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"INSURANCE ADJUSTMENT SERVICES, 401(K) PLAN","001","1996-01-01","INSURANCE ADJUSTMENT SERVICE, INC.",,,"172 ROUTE 101 UNIT 25",,"BEDFORD","NH","03110",,,,,,,"172 ROUTE 101 UNIT 25",,"BEDFORD","NH","03110",,,,,,,"030281056","6036067901","525100","INSURANCE ADJUSTMENT SERVICE, INC.",,"172 ROUTE 101 UNIT 25",,"BEDFORD","NH","03110",,,,,,,"030281056","6036067901",,,,"2011-05-23T09:11:22-0500","MICHAEL DESROCHE",,,,,30,23,0,1,24,0,24,22,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520161254P040020059655001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"OMEGA COMUNICATIONS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2002-06-01","OMEGA COMMUNICATIONS INC",,,"1 CENTER ST.",,"SOUTHINGTON","CT","06489",,,,,,,,,,,,,,,,,,"061596166","8602768504","541511","OMEGA COMMUNICATIONS INC",,"1 CENTER ST.",,"SOUTHINGTON","CT","06489",,,,,,,"061596166","8602768504",,,,"2011-05-20T04:12:53-0500","OMEGA COMMUNICATIONS INC",,,,,12,8,0,1,9,0,9,8,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520133009P030292621024002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DELAVAL DIRECT DISTRIBUTION WELFARE PLAN","501","2004-07-01","DELAVAL DIRECT DISTRIBUTION LLC",,,"11100 NORTH CONGRESS AVENUE",,"KANSAS CITY","MO","64153",,,,,,,,,,,,,,,,,,"222734539","8168917700","333100","DELAVAL DIRECT DISTRIBUTION LLC",,"11100 NORTH CONGRESS AVENUE",,"KANSAS CITY","MO","64153",,,,,,,"222734539","8168917700",,,,"2011-05-20T13:24:04-0500","DEBBIE FARRAR",,,,,106,101,,,101,,,,,,,"4A4D4E","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110523124542P030300256240001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHARD M. SCHWAB EMPLOYEES' PROFIT SHARING PLAN","003","2003-01-01","TEANECK EMERGENCY PHYSICIANS, P.A.",,,"307 BROOKSIDE AVENUE",,"WYCKOFF","NJ","07481",,,,,,,,,,,,,,,,,,"223585630","2018333229","621111","TEANECK EMERGENCY PHYSICIANS, P.A.",,"307 BROOKSIDE AVENUE",,"WYCKOFF","NJ","07481",,,,,,,"223585630","2018333229",,,,"2011-05-23T12:45:34-0500","RICHARD M. SCHWAB",,,,,19,18,0,3,21,0,21,21,0,,"2A2E2F2G2R2T3B3D3F",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523125140P040020540423001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE WORKSTATION GROUP LTD 401(K) PROFIT SHARING PLAN & TRUST","001","1999-06-01","WORKSTATION GROUP LTD",,,"785 OAKWOOD RD ST E102",,"LAKE ZURICH","IL","60047",,,,,,,,,,,,,,,,,,"363899133","8475403390","511210","WORKSTATION GROUP LTD",,"785 OAKWOOD RD ST E102",,"LAKE ZURICH","IL","60047",,,,,,,"363899133","8475403390",,,,"2011-05-23T00:51:39-0500","WORKSTATION GROUP LTD",,,,,4,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523141537P030300443840001","2010-02-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"COMPONENT REPAIR TECHNOLOGIES INC.","501","2010-02-01","COMPONENT REPAIR TECHNOLOGIES INC.",,,"8507 TYLER BLVD.",,"MENTOR","OH","44060",,,,,,,,,,,,,,,,,,"341483853","4402551793","336410","COMPONENT REPAIR TECHNOLOGIES INC.",,"8507 TYLER BLVD.",,"MENTOR","OH","44060",,,,,,,"341483853","4402551793",,,,"2011-05-23T14:15:24-0500","WANDA DAVIS",,,,,258,258,,,258,,258,,,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523183007P030019751751001","2010-04-01","2011-03-31","2",,,,,,,,,,,,"NOBLE WIRE & TERMINAL CORP PROFIT SHARING & RETIREMENT PLAN TRUST","001","1984-04-01","NOBLE WIRE & TERMINAL CORPORATION",,,"1620 N. 32ND ST.",,"SPRINGFIELD","OR","974785529",,,,,,,,,,,,,,,,,,"930693849","5417440630","423100","NOBLE WIRE & TERMINAL CORPORATION",,"1620 N. 32ND ST.",,"SPRINGFIELD","OR","974785529",,,,,,,"930693849","5417440630",,,,"2011-05-12T12:08:33-0500","CONSTANCE NICHOLS","2011-05-12T12:08:42-0500","CONSTANCE NICHOLS",,,20,20,0,0,20,0,20,20,,,"2E2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523183046P040065436849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"E.H.Y., INC. DEFINED BENEFIT PLAN","001","2003-07-01","E.H.Y., INC.",,,"8640 LOS COYOTES DRIVE",,"BUENA PARK","CA","90621",,,,,,,,,,,,,,,,,,"330160253","7149944421","423500","E.H.Y., INC.",,"8640 LOS COYOTES DRIVE",,"BUENA PARK","CA","90621",,,,,,,"330160253","7149944421",,,,"2011-05-23T18:29:28-0500","YUNG K. YANG","2011-05-23T18:29:28-0500","YUNG K. YANG",,,2,2,0,0,2,0,2,,0,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110520162418P030005370645001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FOCUS PRODUCTS GROUP MEDICAL AND DENTAL PLAN","501","2008-01-01","FOCUS PRODUCTS GROUP LLC",,,"300 KNIGHTSBRIDGE PARKWAY, STE 500",,"LINCOLNSHIRE","IL","60069",,,,,,,,,,,,,,,,,,"364460585","2245132069","423990","FOCUS PRODUCTS GROUP LLC",,"300 KNIGHTSBRIDGE PARKWAY, STE 500",,"LINCOLNSHIRE","IL","60069",,,,,,,"364460585","2245132069",,,,"2011-05-20T16:22:25-0500","MELISSA KAPLAN",,,,,125,127,13,0,140,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520104502P030005355333001","2010-06-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"JOEL M. HEISER, M.D., INC. PROFIT SHARING PLAN","002","1983-06-01","JOEL M. HEISER, M.D., INC.",,,"2023 WEST VISTA WAY, SUITE B",,"VISTA","CA","92083",,,,,,,,,,,,,,,,,,"953619400","7607265800","621111","JOEL M. HEISER, M.D., INC.",,"2023 WEST VISTA WAY, SUITE B",,"VISTA","CA","92083",,,,,,,"953619400","7607265800",,,,"2011-05-20T10:44:56-0500","JOEL HEISER, M.D.",,,,,5,0,0,0,0,0,0,0,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110523143640P030019719895001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KLOTER FARMS 401(K) PLAN","001","1986-07-01","KLOTER FARMS",,,"216 WEST ROAD ROUTE 83",,"ELLINGTON","CT","06029",,,,,,,,,,,,,,,,,,"061135178","8608711048","444190","KLOTER FARMS",,"216 WEST ROAD ROUTE 83",,"ELLINGTON","CT","06029",,,,,,,"061135178","8608711048",,,,"2011-05-23T03:36:37-0500","JASON KLOTER",,,,,59,55,0,7,62,0,62,42,1,,"2E2F2G2J2K2T3D2R",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110523132234P040297111984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AHR/QUANTUM FINANCIAL 401(K) PLAN","001","1998-10-01","AHR/QUANTUM FINANCIAL",,,"2209 HEATHER LN",,"LOUISVILLE","KY","40218",,,,,,,,,,,,,,,,,,"611257472","5024851000","523900","AHR/QUANTUM FINANCIAL",,"2209 HEATHER LN",,"LOUISVILLE","KY","40218",,,,,,,"611257472","5024851000",,,,"2011-05-23T13:22:05-0500","KRISTI HAGAN",,,,,3,2,0,1,3,0,3,1,0,,"2E2J2K",,"1",,,,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520150004P030061995761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEBRASKA METHODIST HEALTH SYSTEM, INC. SUPPLEMENTAL LIFE INSURANCE PLAN","504","1995-08-01","NEBRASAKA METHODIST HEALTH SYSTEM, INC.",,,"8511 WEST DODGE ROAD",,"OMAHA","NE","68114",,,,,,,,,,,,,,,,,,"470639839","4023544858","622000","NEBRASAKA METHODIST HEALTH SYSTEM, INC.",,"8511 WEST DODGE ROAD",,"OMAHA","NE","68114",,,,,,,"470639839","4023544858",,,,"2011-05-20T14:58:17-0500","HOLLY A. HUERTER","2011-05-20T14:58:17-0500","HOLLY A. HUERTER",,,1908,2001,0,0,2001,0,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110523084004P040020499511001","2010-07-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"PHOENIX AVIATION MANAGERS, INC LONG TERM DISABILITY","502","1984-07-01","PHOENIX AVIATION MANANGERS, INC",,,"PO BOX 440757",,"KENNESAW","GA","30160",,,,,,,"1990 VAUGHN ROAD",,"KENNESAW","GA","30144",,,,,,,"363247656","7705904950","524210","PHONENIX AVIATION MANAGERS, INC",,"1990 VAUGHN ROAD",,"KENNESAW","GA","30144",,,,,,,"363247656","7705904950",,,,"2011-05-23T08:32:20-0500","RICHARD MCLEOD",,,,,120,119,,,119,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-05-23","Filed with authorized/valid electronic signature",, "20110520143357P030292750304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NETHAWAY & CLAUSEN, P.C. DEFERRED COMPENSATION PLAN","001","1993-07-26","NETHAWAY & CLAUSEN, P.C.",,,"6000 W. ST. JOSEPH, SUITE 101",,"LANSING","MI","48917",,,,,,,,,,,,,,,,,,"383119461","5173210019","541211","NETHAWAY & CLAUSEN, P.C.",,"6000 W. ST. JOSEPH, SUITE 101",,"LANSING","MI","48917",,,,,,,"383119461","5173210019",,,,"2011-05-20T14:33:52-0500","LINDA PULVER",,,,,8,6,0,1,7,0,7,7,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520144507P030061990033001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FREDRICKA BORLAND MD PA RETIREMENT PLAN","001","1986-04-01","FREDRICKA M. BORLAND, M.D. P.A.",,"LARRY L. ROSE, CPA","10125 NORTH 10TH STREET, SUITE F",,"MCALLEN","TX","78504",,,,,,,,,,,,,,,,,,"742416240","9566318155","621111","FREDRICKA M. BORLAND, M.D. P.A.","LARRY L. ROSE, CPA","10125 NORTH 10TH STREET, SUITE F",,"MCALLEN","TX","78504",,,,,,,"742416240","9566318155",,,,"2011-05-20T15:15:30-0500","FREDRICKA M BORLAND MD",,,,,6,5,0,0,5,0,5,8,2,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110520163932P040020062983001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TUSCO CASTING CORPORATION PROFIT SHARING PLAN","001","1996-01-01","TUSCO CASTING CORPORATION",,,"P.O. BOX 537",,"LODI","CA","95241",,,,,,,"934 E VICTOR RD",,"LODI","CA","95240",,,,,,,"680276537","2093685137","332900","TUSCO CASTING CORPORATION",,"P.O. BOX 537",,"LODI","CA","95241",,,,,,,"680276537","2093685137",,,,"2011-05-20T16:39:23-0500","WARREN HUTSON",,,,,25,21,0,1,22,0,22,20,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-05-20","Filed with authorized/valid electronic signature",, "20110602100010P030069045521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PETROTECH, INC. 401(K) PLAN","001","2003-01-01","PETROTECH, INC.",,,"141 JAMES DR W",,"SAINT ROSE","LA","70087",,,,,,,"141 JAMES DR W",,"SAINT ROSE","LA","70087",,,,,,,"582314114","5046206600","333610","PETROTECH, INC.",,"141 JAMES DR W",,"SAINT ROSE","LA","70087",,,,,,,"582314114","5046206600",,,,"2011-06-02T08:30:14-0500","JOHN KAZOUR",,,,,77,52,0,23,75,0,75,69,7,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606102630P040022994343001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIABETES & ENDOCRINE CENTER OF CENTRAL TEXAS, P.A. 401(K) PLAN","002","1990-01-01","DIABETES & ENDOCRINE CENTER OF CENTRAL TEXAS, P.A.",,,"333 LONDONDERRY DRIVE, SUITE 200",,"WACO","TX","767127930",,,,,,,,,,,,,,,,,,"742954946","2547519777","621111","DIABETES & ENDOCRINE CENTER OF CENTRAL TEXAS, P.A.",,"333 LONDONDERRY DRIVE, SUITE 200",,"WACO","TX","767127930",,,,,,,"742954946","2547519777",,,,"2011-06-06T10:24:17-0500","MEERA AMAR",,,,,12,9,0,1,10,0,10,10,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606104131P040073222865008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GUS J. MOUHLAS, MD PROFIT SHARING SELF EMPLOYED RETIREMENT PLAN","001","1981-01-01","GUS J. MOUHLAS, MD","GUS J. MOUHLAS, MD PROFIT SHARING",,"117 EDGINGTON LANE",,"WHEELING","WV","26003",,,,,,,,,,,,,,,,,,"621095319","7406959234","621111","GUS J. MOUHLAS, MD",,"111 N. MARIETTA STREET",,"ST. CLAIRSVILLE","OH","43950",,,,,,,"621095319","7406959234",,,,"2011-06-11T05:52:02-0500","GUS J. MOUHLAS",,,,,2,2,,,2,,2,2,,,"2E2G3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607130532P040023190727001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALP INTERNATIONAL CORP. 401(K) PROFIT SHARING PLAN","001","2000-01-01","ALP INTERNATIONAL CORPORATION",,,"4350 EAST-WEST HWY","SUITE 550","BETHEDSA","MD","20814",,,,,,,,,,,,,,,,,,"521940446","3016549200","541600","ALP INTERNATIONAL CORPORATION",,"4350 EAST-WEST HWY","SUITE 550","BETHEDSA","MD","20814",,,,,,,"521940446","3016549200",,,,"2011-06-07T13:05:26-0500","ANDREW L. POLLNER",,,,,13,9,0,5,14,0,14,14,1,,"2E2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602121936P040070939585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JACOB B. BORENSTEIN, ATTNY. AT LAW PROFIT SHARING PLAN","001","2001-01-01","JACOB B. BORENSTEIN, ATTNY. AT LAW",,,"2503 BEVERLY BOULEVARD, SUITE ONE",,"LOS ANGELES","CA","90057",,,,,,,,,,,,,,,,,,"954092184","2133817904","541110","JACOB B. BORENSTEIN, ATTNY. AT LAW",,"2503 BEVERLY BOULEVARD, SUITE ONE",,"LOS ANGELES","CA","90057",,,,,,,"954092184","2133817904",,,,"2011-06-02T12:18:38-0500","WEI GUO YU",,,,,3,3,0,0,3,0,3,3,0,,"2E2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606110655P040333407328001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GLC DEVELOPMENT RESOURCES LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2002-01-01","GLC DEVELOPMENT RESOURCES LLC",,,"20 PARK PLAZA, SUITE 1115",,"BOSTON","MA","02116",,,,,,,,,,,,,,,,,,"043496751","6172622131","531390","GLC DEVELOPMENT RESOURCES LLC",,"20 PARK PLAZA, SUITE 1115",,"BOSTON","MA","02116",,,,,,,"043496751","6172622131",,,,"2011-06-02T15:13:28-0500","CAROL GLADSTONE",,,,,6,6,0,0,6,0,6,6,0,,"2A2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607133032P030071998001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DR. JOSE W. VALLE OLIVERAS RETIREMENT PLAN SERIES 96-1187","001","1997-01-01","DR. JOSE W. VALLE OLIVERAS",,,"PO BOX 548",,"NAGUABO","PR","00718",,,,,,,"PO BOX 548",,"NAGUABO","PR","00718",,,,,,,"660689827","7878740460","621111","DR. JOSE W. VALLE OLIVERAS",,"PO BOX 548",,"NAGUABO","PR","00718",,,,,,,"660689827","7878740460","JOSE VALLE OLIVERAS","583706878","001","2011-06-07T13:14:52-0500","JOSE VALLE OLIVERAS",,,,,2,2,0,0,2,0,2,2,0,,"2C3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110610123700P030348076768001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCP PRIVATE EQUITY MANAGEMENT, L.P. 401(K) PLAN","001","1996-08-08","SCP PRIVATE EQUITY MANAGEMENT, L.P.",,,"1200 LIBERTY RIDGE DRIVE - STE. 300",,"WAYNE","PA","19087",,,,,,,,,,,,,,,,,,"232854479","6109952900","525990","SCP PRIVATE EQUITY MANAGEMENT, L.P.",,"1200 LIBERTY RIDGE DRIVE - STE. 300",,"WAYNE","PA","19087",,,,,,,"232854479","6109952900",,,,"2011-06-10T12:36:57-0500","DENNIS P FERRY",,,,,25,12,0,10,22,0,22,22,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110602181534P040071095969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LASKER, KIM & CO. 401(K) PLAN","001","1997-01-01","LASKER, KIM & CO., C.P.A.S",,,"6017 BRISTOL PARKWAY",,"CULVER CITY","CA","90230",,,,,,,,,,,,,,,,,,"951726866","3108429000","541211","LASKER, KIM & CO., C.P.A.S",,"6017 BRISTOL PARKWAY",,"CULVER CITY","CA","90230",,,,,,,"951726866","3108429000",,,,"2011-06-02T18:15:27-0500","GUS RENDON, PARTNER","2011-06-02T18:15:27-0500","GUS RENDON, PARTNER",,,12,9,0,3,12,0,12,11,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606133013P030022156183001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DILLON RISK MANAGEMENT AND INSURANCE SERVICES, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","DILLION RISK MANAGEMENT",,,"3610 AMERICAN RIVER DRIVE","SUITE 120","SACRAMENTO","CA","95864",,,,,,,,,,,,,,,,,,"260235332","9163882345","524210","DILLION RISK MANAGEMENT",,"3610 AMERICAN RIVER DRIVE","SUITE 120","SACRAMENTO","CA","95864",,,,,,,"260235332","9163882345",,,,"2011-06-06T01:30:11-0500","DILLION RISK MANAGEMENT",,,,,6,9,0,1,10,0,10,7,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110601193725P030068701505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TGOH MED PLAN","501","1988-05-01","TITLE GUARANTY OF HAWAII, INC",,"LOIS KAWANO","235 QUEEN STREET",,"HONOLULU","HI","96813",,,,,,,"235 QUEEN STREET",,"HONOLULU","HI","96813",,,,,,,"990105031","8085397762","531390","TITLE GUARANTY OF HAWAII, INC","LOIS KAWANO","235 QUEEN STREET",,"HONOLULU","HI","96813",,,,,,,"990105031","8085397762",,,,"2011-06-01T19:15:54-0500","LOIS KAWANO",,,,,117,110,1,0,111,,111,0,0,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110606105445P030071311889001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RODEBERG & BERRYMAN, INC 401(K) PROFIT SHARING PLAN","002","1989-01-01","RODEBERG AND BERRYMAN, INC.",,,"119 SOUTH 1ST STREET","P O BOX 55","MONTEVIDEO","MN","56265",,,,,,,"119 SOUTH 1ST STREET","P O BOX 55","MONTEVIDEO","MN","56265",,,,,,,"411560081","3202697695","541330","RODEBERG AND BERRYMAN, INC.",,"119 SOUTH 1ST STREET","P O BOX 55","MONTEVIDEO","MN","56265",,,,,,,"411560081","3202697695",,,,"2011-06-06T10:39:06-0500","DAVID A. BERRYMAN",,,,,5,3,0,2,5,0,5,5,0,,"2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607101115P030339531680001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WILEY SANDERS TRUCK LINES, INC. WELFARE BENEFIT PLAN","501","1989-07-01","WILEY SANDERS TRUCK LINES, INC.",,"DOUG KITCHENS","P.O. DRAWER 707",,"TROY","AL","36081",,,,,,,"P.O. DRAWER 707",,"TROY","AL","36081",,,,,,,"630630434","3345665184","484120","WILEY SANDERS TRUCK LINES, INC.","DOUG KITCHENS","P.O. DRAWER 707",,"TROY","AL","36081",,,,,,,"630630434","3345665184",,,,"2011-06-01T11:43:11-0500","DOUG KITCHENS",,,,,970,978,0,0,978,0,978,,,,,"4A4B4D4E4F","1",,,"1","1",,,"1",,,,,,"1","5",,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602161241P030069198465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BEST WESTERN WESTBANK PROFIT SHARING PLAN","001","1996-01-01","THOMAS JEFFERSON CONSTRUCTION CORP., D.B.A. BEST WESTERN WESTBANK",,,"1700 LAPALCO BLVD.",,"HARVEY","LA","70058",,,,,,,,,,,,,,,,,,"720908731","5043665369","721110","THOMAS JEFFERSON CONSTRUCTION CORP., D.B.A. BEST WESTERN WESTBANK",,"1700 LAPALCO BLVD.",,"HARVEY","LA","70058",,,,,,,"720908731","5043665369",,,,"2011-06-02T16:04:27-0500","DAWN BOTELER",,,,,33,17,0,16,33,0,33,30,0,,"2E2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602020714P030068835969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RESTAURANT MARKETING ASSOCIATES, INC. 401(K) PLAN","001","1995-01-01","RESTAURANT MARKETING ASSOCIATES, INC.",,,"11 SOUTH OLIVE STREET",,"MEDIA","PA","19063",,,,,,,,,,,,,,,,,,"231878021","6105653165","812990","RESTAURANT MARKETING ASSOCIATES, INC.",,"11 SOUTH OLIVE STREET",,"MEDIA","PA","19063",,,,,,,"231878021","6105653165",,,,"2011-06-01T13:45:36-0500","CHARLES DICICCO",,,,,212,141,0,63,204,0,204,117,0,,"2E2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602064503P040070791649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAINT FRANCIS HOSPITAL HEALTH & WELFARE BENEFITS PLAN","504","1991-09-01","SAINT FRANCIS HOSPITAL",,,"241 NORTH ROAD",,"POUGHKEEPSIE","NY","12601",,,,,,,,,,,,,,,,,,"141338503","8454318126","622000","SAINT FRANCIS HOSPITAL",,"241 NORTH ROAD",,"POUGHKEEPSIE","NY","12601",,,,,,,"141338503","8454318126",,,,"2011-06-01T16:28:20-0500","HELEN RINAUDO",,,,,1006,1015,0,0,1015,,,,,,,"4A4B4D4E4H4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110601213209P040010338882001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"401K PROFIT SHARING PLAN","001","2006-01-01","1ST DENTAL CARE LTD",,"ABDUL MALAKI","1556 DOUGLAS RD",,"MONTGOMERY","IL","60538",,,,,,,"1556 DOUGLAS RD",,"MONTGOMERY","IL","60538",,,,,,,"010805202","6308599340","621210","1ST DENTAL CARE LTD","ABDUL MALAKI","1556 DOUGLAS RD",,"MONTGOMERY","IL","60538",,,,,,,"010805202","6308599340",,,,"2011-06-01T16:30:43-0500","ABDUL MALAKI",,,,,2,0,0,0,0,0,0,2,,,"2A2G2J2R",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-01","Filed with authorized/valid electronic signature",, "20110606165541P040073382529001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"VERTEX CHEMICAL CORPORATION PROFIT SHARING AND 401(K) PLAN","001","1980-01-01","VERTEX CHEMICAL CORPORATION",,,"11685 MANCHESTER ROAD",,"DES PERES","MO","63131",,,,,,,"11685 MANCHESTER ROAD",,"DES PERES","MO","63131",,,,,,,"430670696","3144710500","325900","VERTEX CHEMICAL CORPORATION",,"11685 MANCHESTER ROAD",,"DES PERES","MO","63131",,,,,,,"430670696","3144710500",,,,"2011-06-06T16:55:14-0500","THOMAS MAGRECKI",,,,,64,46,0,18,64,0,64,64,1,,"2E2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110602085105P030069018161001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONEY PURCHASE PENSION PLAN AND TRUST FOR EMPLOYEES OF BREVARD PULMONARY SPECIALISTS, P.A.","001","1998-05-01","BREVARD PULMONARY SPECIALISTS, P.A.",,,"103 LONGWOOD AVENUE",,"ROCKLEDGE","FL","32955",,,,,,,,,,,,,,,,,,"592846247","3216315677","621111","BREVARD PULMONARY SPECIALISTS, P.A.",,"103 LONGWOOD AVENUE",,"ROCKLEDGE","FL","32955",,,,,,,"592846247","3216315677",,,,"2011-06-02T08:36:45-0500","JOHN BRODNAN",,,,,5,5,0,0,5,0,5,5,0,,"2C2H3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602104507P040070897105002","2010-04-01","2011-03-31","2",,,,,,,,,,,,"SAMUEL K KAPLAN DDS PA PROFIT SHARING PLAN AND TRU","004","1990-04-01","SAMUEL KAPLAN D D S P A",,,"12009 TITIAN WAY",,"POTOMAC","MD","20854",,,,,,,,,,,,,,,,,,"520974050","3013401498","621210","SAMUEL KAPLAN D D S P A",,"12009 TITIAN WAY",,"POTOMAC","MD","20854",,,,,,,"520974050","3013401498",,,,"2011-05-20T11:41:16-0500","SAMUEL K KAPLAN","2011-05-20T11:41:27-0500","SAMUEL K KAPLAN",,,1,1,0,0,1,0,1,1,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606100554P030336811872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KCI PARTNERS, INC. 401(K) PROFIT SHARING PLAN","001","2002-01-01","KCI PARTNERS, INC.",,,"2662 OAKMONT",,"WESTON","FL","333321800",,,,,,,,,,,,,,,,,,"651096235","9546598353","541600","KCI PARTNERS, INC.",,"2662 OAKMONT",,"WESTON","FL","333321800",,,,,,,"651096235","9546598353",,,,"2011-06-06T10:05:46-0500","RICHARD KLASS",,,,,4,0,0,4,4,0,4,4,0,,"2A2E2F2J2G2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606102838P030010327106001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAMIR F. SHUREIH, M.D., P.A. PROFIT SHARING PLAN","002","1972-12-01","SAMIR F. SHUREIH, M.D., P.A.",,,"10 EAST 31ST STREET",,"BALTIMORE","MD","21218",,,,,,,,,,,,,,,,,,"521800659","4102433035","621111","SAMIR F. SHUREIH, M.D., P.A.",,"10 EAST 31ST STREET",,"BALTIMORE","MD","21218",,,,,,,"521800659","4102433035",,,,"2011-06-06T10:28:32-0500","C. JOYCE DOONAN",,,,,4,3,0,0,3,0,3,3,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607133432P040336356448001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOB BROWN CHEVROLET FRINGE BENEFIT PLAN","501","1996-01-01","BOB BROWN CHEVROLET INC",,,"4224 MERLE HAY RD",,"DES MOINES","IA","503101317",,,,,,,,,,,,,,,,,,"420846759","5152787898","441110","BOB BROWN CHEVROLET INC",,"4224 MERLE HAY RD",,"DES MOINES","IA","503101317",,,,,,,"420846759","5152787898",,,,"2011-06-07T13:34:25-0500","KEN BACKES",,,,,184,201,3,0,204,,,,,,,"4A4B4D4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607133607P040073907585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE DENTISTS OF OWATONNA FAMILY DENTISTRY PA 401(K) PLAN","002","1996-01-01","THE DENTISTS OF OWATONNA FAMILY DENTISTRY PA",,,"315 18TH STREET SE",,"OWATONNA","MN","55060",,,,,,,,,,,,,,,,,,"411800963","5074512600","621210","THE DENTISTS OF OWATONNA FAMILY DENTISTRY PA",,"315 18TH STREET SE",,"OWATONNA","MN","55060",,,,,,,"411800963","5074512600",,,,"2011-06-07T13:35:57-0500","KIRBY KNUTSON","2011-06-07T13:35:57-0500","KIRBY KNUTSON",,,16,15,0,0,15,0,15,15,0,,"2E2F2G2J2T3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602110722P030011507798001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HELM GROUP, INC. HEALTH CARE PLAN","503","1992-01-01","HELM GROUP, INC.",,,"P.O. BOX 750",,"FREEPORT","IL","61032",,,,,,,,,,,,,,,,,,"363065097","8152352200","237990","HELM GROUP, INC.",,"P.O. BOX 750",,"FREEPORT","IL","61032",,,,,,,"363065097","8152352200",,,,"2011-06-02T11:00:57-0500","CRAIG BUIKEMA","2011-06-02T11:00:57-0500","CRAIG BUIKEMA",,,135,132,1,0,133,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602204011P030069296465001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DENYSYS CORPORATION 401(K) PLAN","001","2005-08-12","DENYSYS CORPORATION",,,"416 E. HENNEPIN AVE","SUITE 210","MINNEAPOLIS","MN","55414",,,,,,,"416 E. HENNEPIN AVE","SUITE 210","MINNEAPOLIS","MN","55414",,,,,,,"411874313","6128697617","541511","DENYSYS CORPORATION",,"416 E. HENNEPIN AVE","SUITE 210","MINNEAPOLIS","MN","55414",,,,,,,"411874313","6128697617",,,,"2011-06-02T20:37:11-0500","PHILIP DENNY","2011-06-02T20:39:35-0500","PHILIP DENNY",,,10,10,0,1,11,0,11,5,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607104724P040073826081002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ANK ENTERPRISES, INC. EMPLOYEES PROFIT SHARING PLA","001","1979-01-02","ANK ENTERPRISES, INC. EMPLOYEE PROFIT SHARING PLAN",,,"36330 WOODWARD AVE. 200",,"BLOOMFIELD HILLS","MI","48304",,,,,,,,,,,,,,,,,,"382232618","2486468888","531110","ANK ENTERPRISES, INC. EMPLOYEE PROFIT SHARING PLAN",,"36330 WOODWARD AVE. 200",,"BLOOMFIELD HILLS","MI","48304",,,,,,,"382232618","2486468888",,,,"2011-05-17T06:32:03-0500","STEPHEN KORNMEIER",,,,,3,3,,,3,,3,3,,,"2E3H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110606113903P040073249857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JEROME L HOWE INC 401(K) PLAN","001","1997-07-01","JEROME L HOWE INC",,,"PO BOX 440397",,"BRENTWOOD","MO","63144",,,,,,,"1401 S BRENTWOOD SUITE 400",,"BRENTWOOD","MO","63144",,,,,,,"430759079","3149615062","524210","JEROME L HOWE INC",,"PO BOX 440397",,"BRENTWOOD","MO","63144",,,,,,,"430759079","3149615062",,,,"2011-06-06T11:38:58-0500","JEROME L HOWE III","2011-06-06T11:38:58-0500","JEROME L HOWE III",,,15,12,0,2,14,0,14,13,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602133110P040323505328001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRICE, MEESE, SHULMAN & DARMINIO, PC 401(K) PLAN","001","1995-08-15","PRICE, MEESE, SHULMAN & DARMINIO, P.C.",,,"50 TICE BOULEVARD",,"WOODCLIFF LAKE","NJ","07677",,,,,,,,,,,,,,,,,,"223305209","2013913737","541190","PRICE, MEESE, SHULMAN & DARMINIO, P.C.",,"50 TICE BOULEVARD",,"WOODCLIFF LAKE","NJ","07677",,,,,,,"223305209","2013913737",,,,"2011-06-02T13:29:08-0500","GREGORY MEESE",,,,,38,29,0,7,36,0,36,35,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602140733P040010398258001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ONE MANAGEMENT, INC. 401(K) PLAN","001","1994-03-01","ONE MANAGEMENT, INC.",,,"4700 HOMEWOOD COURT","SUITE 220","RALEIGH","NC","276090000",,,,,,,,,,,,,,,,,,"521716277","9197874243","531310","ONE MANAGEMENT, INC.",,"4700 HOMEWOOD COURT","SUITE 220","RALEIGH","NC","276090000",,,,,,,"521716277","9197874243",,,,"2011-06-02T14:03:46-0500","JENNY C PETRI",,,,,34,35,0,2,37,0,37,13,1,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602140744P040323576784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WESTBAY COMMUNITY ACTION, INC.","001","2000-01-01","WESTBAY COMMUNITY ACTION, INC.",,,"224 BUTTONWOODS AVENUE",,"WARWICK","RI","028860000",,,,,,,,,,,,,,,,,,"050311985","4017324666","624200","WESTBAY COMMUNITY ACTION, INC.",,"224 BUTTONWOODS AVENUE",,"WARWICK","RI","028860000",,,,,,,"050311985","4017324666",,,,"2011-06-02T14:07:05-0500","THERESA M. CABRAL",,,,,44,31,0,21,52,0,52,50,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110607105157P030071920785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUCCESS MORTGAGE PARTNERS 401(K) PLAN","001","2007-01-01","SUCCESS MORTGAGE PARTNERS, INC.",,,"1200 SOUTH SHELON","SUITE 150","PLYMOUTH","MI","48170",,,,,,,,,,,,,,,,,,"010759540","7342590880","812990","SUCCESS MORTGAGE PARTNERS, INC.",,"1200 SOUTH SHELON","SUITE 150","PLYMOUTH","MI","48170",,,,,,,"010759540","7342590880",,,,"2011-06-07T10:51:52-0500","OWEN LEE",,,,,8,4,0,5,9,0,9,9,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110606133845P030071383857001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GEAR MOTIONS, INC. EMPLOYEE STOCK OWNERSHIP PLAN","003","2005-01-01","GEAR MOTIONS, INC.",,,"1750 MILTON AVENUE",,"SYRACUSE","NY","132091626",,,,,,,,,,,,,,,,,,"042518333","3154880100","332700","GEAR MOTIONS, INC.",,"1750 MILTON AVENUE",,"SYRACUSE","NY","132091626",,,,,,,"042518333","3154880100",,,,"2011-06-06T13:38:13-0500","SAM HAINES",,,,,92,55,2,36,93,1,94,94,2,,"2P",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606134631P030071386369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRANSPORTATION LOGISTICS COMPANY BENEFIT PLAN","501","1997-12-01","CENTERLINE DRIVERS, LLC",,,"1600 E FOURTH STREET","SUITE 340","SANTA ANA","CA","927015194",,,,,,,,,,,,,,,,,,"261852032","7145415415","561300","CENTERLINE DRIVERS, LLC",,"1600 E FOURTH STREET","SUITE 340","SANTA ANA","CA","927015194",,,,,,,"261852032","7145415415",,,,"2011-06-06T13:46:22-0500","JILL QUINN",,,,,292,292,0,0,292,,,,,,,"4A4B4D4E4H4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606180032P030071535265001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"CONTINENTAL MOTORS GROUP BENEFIT PLAN","501","1997-01-01","CONTINENTAL HONDA",,,"5901 SOUTH LAGRANGE ROAD",,"COUNTRYSIDE","IL","60525",,,,,,,,,,,,,,,,,,"363045800","7083526000","441110","CONTINENTAL HONDA",,"5901 SOUTH LAGRANGE ROAD",,"COUNTRYSIDE","IL","60525",,,,,,,"363045800","7083526000",,,,"2011-06-06T18:00:23-0500","JOHN STANLEY",,,,,262,269,0,0,269,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607094141P040335887824001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"RILEY GEAR CORPORATION 401(K) PROFIT SHARING PLAN & TRUST","001","1996-01-01","RILEY GEAR CORPORATION",,,"ONE PRECISION DRIVE",,"ST. AUGUSTINE","FL","32092",,,,,,,"ONE PRECISION DRIVE",,"ST. AUGUSTINE","FL","32092",,,,,,,"161159619","9048295652","333610","RILEY GEAR CORPORATION",,"ONE PRECISION DRIVE",,"ST. AUGUSTINE","FL","32092",,,,,,,"161159619","9048295652",,,,"2011-06-07T09:39:26-0500","JAMES MORONEY",,,,,64,54,0,3,57,0,57,40,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110606073608P030071239425003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ANN-JO INC 401K PLAN","001","1997-01-01","ANN-JO INC",,,"2886 BANYAN BLVD CIR NW",,"BOCA RATON","FL","334316333",,,,,,,,,,,,,,,,,,"311336335","6303057293","453220","ANN-JO INC",,"2886 BANYAN BLVD CIR NW",,"BOCA RATON","FL","334316333",,,,,,,"311336335","6303057293",,,,"2011-06-03T21:29:13-0500","JOSEPH FOODY",,,,,15,12,,2,14,,14,8,,,"3D2K2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606150419P040012414662001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE CALDWELL FOUNDATION EMPLOYEE FLEXIBLE BENEFITS PLAN","501","1997-01-01","THE CALDWELL FOUNDATION",,,"P.O. BOX 4280",,"TYLER","TX","757124280",,,,,,,,,,,,,,,,,,"756004080","9035928191","713100","THE CALDWELL FOUNDATION",,"P.O. BOX 4280",,"TYLER","TX","757124280",,,,,,,"756004080","9035928191",,,,"2011-06-06T14:52:42-0500","HARRIET MCARTHUR","2011-06-06T15:03:08-0500","MICHAEL S. MCARTHUR",,,80,81,0,0,81,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607094934P040010806466001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ERIC VAN SLUYTERS, DDS, PC","001","2006-01-01","ERIC VAN SLUYTERS, DDS, PC",,,"6591 W. THUNDERBIRD RD., STE B",,"GLENDALE","AZ","853063716",,,,,,,,,,,,,,,,,,"061774708","6237731991","621210","ERIC VAN SLUYTERS, DDS, PC",,"6591 W. THUNDERBIRD RD., STE B",,"GLENDALE","AZ","853063716",,,,,,,"061774708","6237731991",,,,"2011-06-07T09:49:10-0500","ERIC VAN SLUYTER DDS",,,,,4,1,0,2,3,0,3,3,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607195933P040337098944001","2010-01-01","2010-12-31","2",,"1","1","0","0","0","0","0","0","0",,"AZRA ZAIN ASSOCIATES INC. 401K PLAN","001","2009-06-13","AZRA ZAIN ASSOCIATES INC.",,,"286 WESTCOTT BLVD",,"PENNINGTON","NJ","08534",,,,,,,,,,,,,,,,,,"270370024","6094661578","447100","AZRA ZAIN ASSOCIATES INC.",,"286 WESTCOTT BLVD",,"PENNINGTON","NJ","08534",,,,,,,"270370024","6094661578",,,,"2011-06-07T19:59:26-0500","SYED AHMED","2011-06-07T19:57:30-0500","SYED AHMED",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110610091630P040011076514001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNIVERSAL CIRCUITS EMPLOYEE SAVINGS PLAN","001","1992-11-01","UNIVERSAL CIRCUITS INCORPORATED",,,"8860 ZACHARY LANE NORTH",,"MAPLE GROVE","MN","55369",,,,,,,,,,,,,,,,,,"391204015","7634243788","332900","UNIVERSAL CIRCUITS, INCORPORATED",,"8860 ZACHARY LANE NORTH",,"MAPLE GROVE","MN","55369",,,,,,,"391204015","7634243788",,,,"2011-06-10T09:15:08-0500","TODD ZIMDARS",,,,,109,92,0,7,99,0,99,52,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110602090932P030069025105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PEACHTREE VASCULAR ASSOCIATES, P.C. 401(K) PROFIT SHARING PLAN","001","1975-01-01","PEACHTREE VASCULAR ASSOCIATES, P.C.",,,"550 PEACHTREE ST. SUITE 1085","MEDICAL OFFICE TOWER","ATLANTA","GA","30308",,,,,,,,,,,,,,,,,,"581376411","4046813190","621111","PEACHTREE VASCULAR ASSOCIATES, P.C.",,"550 PEACHTREE ST. SUITE 1085","MEDICAL OFFICE TOWER","ATLANTA","GA","30308",,,,,,,"581376411","4046813190",,,,"2011-06-02T09:09:07-0500","JAY MILLER","2011-06-02T09:09:07-0500","JAY MILLER",,,7,8,0,0,8,0,8,8,1,,"2A2E2G2R3D2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606101121P040022991543001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NICHOLAS CAMPANELLA D. C. MONEY PURCHASE PENSION PLAN","002","2001-12-31","NICHOLAS CAMPANELLA D.C.",,,"4A NORTH AVE","SUITE 207","BEL AIR","MD","21014",,,,,,,"4A NORTH AVE","SUITE 207","BEL AIR","MD","21014",,,,,,,"521780759","4108938339","621310","NICHOLAS CAMPANELLA D.C.",,"4A NORTH AVE","SUITE 207","BEL AIR","MD","21014",,,,,,,"521780759","4108938339",,,,"2011-06-06T10:04:10-0500","NICHOLAS CAMPANELLA",,,,,2,1,,1,2,,2,2,,,"3C2A",,,,"1",,,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606142449P040073311937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MORCUS MANAGEMENT COMPANY LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","MORCUS MANAGEMENT COMPANY LLC",,,"78-100 MAIN ST., SUITE 203",,"LA QUINTA","CA","92253",,,,,,,,,,,,,,,,,,"202079835","7605647700","541990","MORCUS MANAGEMENT COMPANY LLC",,"78-100 MAIN ST., SUITE 203",,"LA QUINTA","CA","92253",,,,,,,"202079835","7605647700",,,,"2011-06-06T02:24:47-0500","MORCUS MANAGEMENT COMPANY LLC",,,,,95,180,0,0,180,0,180,29,1,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607134030P040073909617001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HEALTH FEDERATION OF PHILADELPHIA 403(B) PLAN","001","1992-01-01","HEALTH FEDERATION OF PHILADELPHIA",,,"1211 CHESTNUT STREET","SUITE 801","PHILADELPHIA","PA","19107",,,,,,,,,,,,,,,,,,"232244355","2155678001","621399","HEALTH FEDERATION OF PHILADELPHIA",,"1211 CHESTNUT STREET","SUITE 801","PHILADELPHIA","PA","19107",,,,,,,"232244355","2155678001",,,,"2011-06-07T13:40:19-0500","MARY JANE WITUCKI",,,,,83,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110607150839P030072037617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAKE OTIS PHARMACY INC., 401(K) PLAN & TRUST","002","2008-01-01","LAKE OTIS PHARMACY",,,"4201 LAKE OTIS PKWY",,"ANCHORAGE","AK","99508",,,,,,,,,,,,,,,,,,"920147345","9075637878","446110","LAKE OTIS PHARMACY",,"4201 LAKE OTIS PKWY",,"ANCHORAGE","AK","99508",,,,,,,"920147345","9075637878",,,,"2011-06-07T15:08:47-0500","WESLEY SUTTERLIN","2011-06-07T15:08:47-0500","WESLEY SUTTERLIN",,,13,12,0,2,14,0,14,13,0,,"2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607181927P030072124417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAMPLIN COMMUNICATIONS MEDICAL - DENTAL PLAN","503","1995-01-01","PAMPLIN COMMUNICATIONS",,,"6605 SE LAKE ROAD",,"PORTLAND","OR","97222",,,,,,,,,,,,,,,,,,"931187211","5035465100","515100","PAMPLIN COMMUNICATIONS",,"6605 SE LAKE ROAD",,"PORTLAND","OR","97222",,,,,,,"931187211","5035465100",,,,"2011-06-07T18:19:19-0500","CHARLES NEDROW",,,,,198,187,7,0,194,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602120455P030010023106001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JOHNNYS MARINA INC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","JOHNNY'S MARINA, INC.",,,"453 RIVERSTYX RD",,"HOPATCONG","NJ","07843",,,,,,,,,,,,,,,,,,"562360218","9733988500","713900","JOHNNY'S MARINA, INC.",,"453 RIVERSTYX RD",,"HOPATCONG","NJ","07843",,,,,,,"562360218","9733988500",,,,"2011-06-02T00:04:53-0500","JOHNNY S MARINA, INC.",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602125342P030021469799001","2006-10-01","2007-09-30","2",,"0","0","0","0","0","0","0","0","0",,"PROFIT SHARING PLAN & TRUST OF LION CHEMICAL LABORATORIES INC","002","1976-10-01","LION CHEMICAL LABORATORIES, INC",,,"PO BOX 5989",,"FLORENCE","SC","29502",,,,,,,"225 ABERDEEN DR",,"FLORENCE","SC","29501",,,,,,,"570623746","8433933151","325100","LION CHEMICAL LABORATORIES, INC",,"PO BOX 5989",,"FLORENCE","SC","29502",,,,,,,"570623746","8433933151",,,,"2011-06-01T16:50:22-0500","ROBERT GOOTMAN",,,,,4,4,,,4,,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602131206P040022338503001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BRANDING IRON SUPPER CLUB 401(K) PLAN","001","2000-09-15","BRANDING IRON SUPPER CLUB",,,"PO BOX 93",,"PRESTON","MN","55965",,,,,,,"1100 CIRCLE HEIGHTS",,"PRESTON","MN","55965",,,,,,,"411602030","5077653388","722110","BRANDING IRON SUPPER CLUB",,"PO BOX 93",,"PRESTON","MN","55965",,,,,,,"411602030","5077653388",,,,"2011-06-02T13:11:56-0500","STEPHEN R. BAHL","2011-06-02T13:11:56-0500","STEPHEN R. BAHL",,,17,12,0,1,13,0,13,10,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607125732P040002232307001","2010-01-01","2010-12-21","2",,"0","0","1","1","1","0","0","0","0",,"XEROX COLORGRAFX SYSTEMS, INC. EMPLOYEE RETIREMENT PLAN","001","1977-09-01","XEROX COLORGRAFX SYSTEMS, INC.",,"C/O XEROX CORPORATION","P.O. BOX 4505","45 GLOVER AVENUE","NORWALK","CT","068564505",,,,,,,,,,,,,,,,,,"942320902","2038492459","334110","XEROX COLORGRAFX SYSTEMS, INC.","C/O XEROX CORPORATION","P.O. BOX 4505","45 GLOVER AVENUE","NORWALK","CT","068564505",,,,,,,"942320902","2038492459",,,,"2011-06-07T12:57:21-0500","ARLYN KASTER",,,,,12,0,0,0,0,0,0,0,0,,"2C2F2G2K3H2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602150949P040071022449001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MUSEUM OF JEWISH HERITAGE TAX DEFFERED ANNUITY PLAN","002","1998-02-01","MUSEUM OF JEWISH HERITAGE - A LIVING MEMORIAL TO THE HOLOCAUST",,,"36 BATTERY PL",,"NEW YORK","NY","10280",,,,,,,"36 BATTERY PL",,"NEW YORK","NY","10280",,,,,,,"133376265","6464374260","712100","MUSEUM OF JEWISH HERITAGE - A LIVING MEMORIAL TO THE HOLOCAUST",,"36 BATTERY PL",,"NEW YORK","NY","10280",,,,,,,"133376265","6464374260",,,,"2011-06-02T14:59:32-0500","TAMMY CHIU","2011-06-02T15:07:52-0500","MOHAD ATHAR",,,45,41,0,0,41,0,41,,0,,"2L",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607105531P040073830625001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"COLUMBIA STATION ENTERPRISES 401K PLAN","001","2001-01-01","COLUMBIA STATION ENTERPRISES, INC.",,,"4 BRIDGE STREET",,"PHOENIXVILLE","PA","19460",,,,,,,"4 BRIDGE STREET",,"PHOENIXVILLE","PA","19460",,,,,,,"232972410","6109606342","722300","COLUMBIA STATION ENTERPRISES, INC.",,"4 BRIDGE STREET",,"PHOENIXVILLE","PA","19460",,,,,,,"232972410","6109606342",,,,"2011-06-07T10:54:56-0500","ROBERT RYAN",,,,,26,11,0,11,22,0,22,21,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110606140843P030022162343001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MEDICAL BENEFITS PLAN","501","2000-11-01","THE HEALTH CENTER OF PLANT CITY, INC.",,,"701 NORTH WILDER RD.",,"PLANT CITY","FL","33566",,,,,,,,,,,,,,,,,,"593664426","8137523611","623000","THE HEALTH CENTER OF PLANT CITY, INC.",,"701 NORTH WILDER RD.",,"PLANT CITY","FL","33566",,,,,,,"593664426","8137523611",,,,"2011-06-06T14:07:17-0500","TOM BELL",,,,,101,92,0,,92,,,,,,,"4A4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110602153957P030010038690001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEEL OF AMERICA TRADING CORPORATION 401(K) PLAN","001","2003-01-01","STEEL OF AMERICA TRADING CORPORATION",,,"1906 FOREST DRIVE, SUITE 2A",,"ANNAPOLIS","MD","21401",,,,,,,,,,,,,,,,,,"522219633","4102639134","423990","STEEL OF AMERICA TRADING CORPORATION",,"1906 FOREST DRIVE, SUITE 2A",,"ANNAPOLIS","MD","21401",,,,,,,"522219633","4102639134",,,,"2011-06-02T13:38:05-0500","CINDY FORD",,,,,6,5,0,2,7,0,7,7,0,,"2A2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606145257P030071420321001","2010-09-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"TECHNOSOFT CORPORATION GROUP BENEFIT PLAN","501","2001-07-01","TECHNOSOFT CORPORATION",,,"28411 N WESTERN HWY, STE 640",,"SOUTHFIELD","MI","48034",,,,,,,,,,,,,,,,,,"383271169","2486032668","541600","TECHNOSOFT CORPORATION",,"28411 N WESTERN HWY, STE 640",,"SOUTHFIELD","MI","48034",,,,,,,"383271169","2486032668",,,,"2011-06-06T14:52:49-0500","VISHAL SARADA",,,,,256,266,4,0,270,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606080320P040073135985004","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"WILSON FARMS FULL-TIME GROUP INSURANCE PLAN","502","2005-07-01","WILSON FARMS, INC.",,,"1780 WEHRLE DRIVE",,"WILLIAMSVILLE","NY","14221",,,,,,,,,,,,,,,,,,"202443902","7162044350","445110","MR. JOHN GRACE","WILSON FARMS, INC.","1780 WEHRLE DRIVE",,"WILLIAMSVILLE","NY","14221",,,,,,,"202443902","7162044350",,,,"2011-09-15T11:21:37-0500","MR. JOHN GRACE",,,,,503,469,0,0,469,,469,,,,,"4B4D4F4H4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606083526P030071258337001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES ANNUITY","004","1989-01-01","PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES",,,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"150533545","5183276291","611000","PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES",,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"150533545","5183276291",,,,"2011-06-06T05:52:00-0500","LAURA ROZELL",,,,,167,,,,,,,,,,"2G2L2T",,"1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606083809P030071259121001","2001-01-01","2001-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES ANNUITY","004","1989-01-01","PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES",,,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"150533545","5183276291","611000","PAUL SMITH'S COLLEGE OF ARTS AND SCIENCES",,"ROUTE 86 AND 30 PO BOX 265",,"PAUL SMITHS","NY","12970",,,,,,,"150533545","5183276291",,,,"2011-06-03T15:38:53-0500","LAURA ROZELL",,,,,161,,,,,,,,,,"2G2L2T",,"1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606152422P030337467984001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FLOWING WELLS EXTENSION PROGRAMS, INC. PROFIT SHARING PLAN","001","1992-01-01","FLOWING WELLS EXTENSION PROGRAMS, INC.",,,"1661 W. PRINCE RD., SUITE 103",,"TUCSON","AZ","85705",,,,,,,,,,,,,,,,,,"860300466","5208872600","611000","FLOWING WELLS EXTENSION PROGRAMS, INC.",,"1661 W. PRINCE RD., SUITE 103",,"TUCSON","AZ","85705",,,,,,,"860300466","5208872600",,,,"2011-06-06T14:10:34-0500","SALDATE CATHY",,,,,18,11,0,7,18,0,18,16,0,,"2E2F",,"1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110602092130P040010377282001","2010-01-01","2010-05-31","2",,"0","1","1","1","0","0","0","0","0",,"IMPART SOLUTIONS INC. 401(K) PLAN","001","2004-01-01","IMPART SOLUTIONS INC.",,,"PO BOX 162",,"LA GRANGE","IL","60525",,,,,,,,,,,,,,,,,,"020588224","7083548302","541600","IMPART SOLUTIONS INC.",,"PO BOX 162",,"LA GRANGE","IL","60525",,,,,,,"020588224","7083548302",,,,"2011-06-02T09:21:19-0500","WILLIAM M LUCAS",,,,,6,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606094902P030071284609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHARD A HOVDA, DDS, MS, SC 401(K) PROFIT SHARING PLAN","001","1991-05-01","RICHARD A HOVDA, D.D.S., M.S., S.C.",,,"519 N. 17TH AVENUE",,"WAUSAU","WI","544012910",,,,,,,,,,,,,,,,,,"391698666","7158425459","621210","RICHARD A HOVDA, D.D.S., M.S., S.C.",,"519 N. 17TH AVENUE",,"WAUSAU","WI","544012910",,,,,,,"391698666","7158425459",,,,"2011-06-06T09:48:47-0500","RICHARD A. HOVDA","2011-06-06T09:48:47-0500","RICHARD A. HOVDA",,,8,7,0,1,8,0,8,8,1,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606103609P040073218673002","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"FLATS CATALYSTS INC PROFIT SHARING PLAN","001","2010-01-01","FLATS CATALYSTS INC",,,"2002 TIMBERLOCH PLACE 200",,"THE WOODLANDS","TX","77380",,,,,,,,,,,,,,,,,,"271216946","9366892892","424990","FLATS CATALYSTS INC",,"2002 TIMBERLOCH PLACE 200",,"THE WOODLANDS","TX","77380",,,,,,,"271216946","9366892892",,,,"2011-06-02T10:01:41-0500","FRANKLIN G SALAZAR",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110606104131P040073222865002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"EMPLOYEE BENEFITS PLAN OF FAMILY AND CHILDRENS SERVICE OF LEHIGH COUNTY","001","1975-07-01","FAMILY ANSWERS, INC.",,,"411 WALNUT STREET",,"ALLENTOWN","PA","18102",,,,,,,,,,,,,,,,,,"231566739","6104359651","813000","FAMILY ANSWERS, INC.",,"411 WALNUT STREET",,"ALLENTOWN","PA","18102",,,,,,,"231566739","6104359651",,,,"2011-06-03T11:01:51-0500","WILLIAM VOGLER","2011-06-03T11:01:51-0500","WILLIAM VOGLER",,,8,,,7,7,,7,,,,"3D",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606195927P030071582545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FREEBORDERS, INC. 401(K) PLAN","001","2000-05-01","FREEBORDERS, INC.",,,"150 SPEAR STREET, #850",,"SAN FRANCISCO","CA","94105",,,,,,,"150 SPEAR STREET, #850",,"SAN FRANCISCO","CA","94105",,,,,,,"943345151","4154334700","541519","FREEBORDERS, INC.",,"150 SPEAR STREET, #850",,"SAN FRANCISCO","CA","94105",,,,,,,"943345151","4154334700",,,,"2011-06-06T19:22:44-0500","SHIRLEY TANG","2011-06-06T19:24:30-0500","SHIRLEY TANG",,,97,62,0,8,70,0,70,27,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607125947P030071979025001","2010-01-01","2010-12-31","2",,"0",,"0","0","1","1",,,,,"DEFINED BENEFIT PENSION PLAN OF UNITED WAY OF SAN DIEGO COUNTY","001","1987-07-01","UNITED WAY OF SAN DIEGO COUNTY",,,"4699 MURPHY CANYON RD",,"SAN DIEGO","CA","921234320",,,,,,,,,,,,,,,,,,"952213995","8586364110","813000","UNITED WAY OF SAN DIEGO COUNTY",,"4699 MURPHY CANYON RD",,"SAN DIEGO","CA","921234320",,,,,,,"952213995","8586364110",,,,"2011-06-07T12:59:36-0500","KIM WARNER","2011-06-07T12:59:36-0500","KIM WARNER",,,104,29,0,68,97,0,97,0,4,,"1A1G",,"1",,"1",,"1",,"1",,"1","0","1","1","0","1","1","1","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602113337P030326669616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STONE CREEK GOLF CLUB 401(K) PLAN","001","2003-07-01","TOTAL GOLF MANAGEMENT SERVICES, LLC",,,"14603 S STONERIDGE DRIVE",,"OREGON CITY","OR","97045",,,,,,,,,,,,,,,,,,"931325978","5035184653","713900","TOTAL GOLF MANAGEMENT SERVICES, LLC",,"14603 S STONERIDGE DRIVE",,"OREGON CITY","OR","97045",,,,,,,"931325978","5035184653",,,,"2011-06-02T11:33:26-0500","GORDON B. TOLBERT","2011-06-02T11:33:26-0500","GORDON B. TOLBERT",,,13,9,0,4,13,0,13,13,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110602121307P040070936625003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NORTH COUNTRY BUSINESS - HMO HEALTH MAINTENANCE ORGANIZATION","503","2005-01-01","NORTH COUNTRY BUSINESS PRODUCTS INC",,,"P.O. BOX 910",,"BEMIDJI","MN","56619",,,,,,,"P.O. BOX 910",,"BEMIDJI","MN","56619",,,,,,,"410944999","2187514140","453210","NORTH COUNTRY BUSINESS PRODUCTS INC",,"P.O. BOX 910",,"BEMIDJI","MN","56619",,,,,,,"410944999","2187514140",,,,"2011-05-25T06:31:02-0500","DEAN CROTTY",,,,,276,265,,,265,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110607130038P030339876064001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXCELLANCE, INC. 401K PLAN","001","1991-08-01","EXCELLANCE, INC.",,,"453 LANIER RD",,"MADISON","AL","357581896",,,,,,,,,,,,,,,,,,"630695624","2567729321","336210","EXCELLANCE, INC.",,"453 LANIER RD",,"MADISON","AL","357581896",,,,,,,"630695624","2567729321",,,,"2011-06-07T12:59:07-0500","ART NOLAND",,,,,109,89,0,18,107,0,107,79,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110610122810P040023725191001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTRAL BANCSHARES EMPLOYEE ASSISTANCE PROGRAM","508","2002-01-01","CENTRAL BANCSHARES INC.",,,"300 W. VINE STREET",,"LEXINGTON","KY","40507",,,,,,,"300 W. VINE STREET",,"LEXINGTON","KY","40507",,,,,,,"611247980","8592536168","522110","CENTRAL BANCSHARES INC.",,"300 W. VINE STREET",,"LEXINGTON","KY","40507",,,,,,,"611247980","8592536168",,,,"2011-06-10T12:16:21-0500","AMY MANNING",,,,,535,514,0,0,514,0,514,,,,,"4Q",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110602142955P040071003201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAPTAIN DS, LLC GROUP MEDICAL PLAN","501","2002-01-01","CAPTAIN DS, LLC",,,"1717 ELM HILL PIKE, SUITE A-1",,"NASHVILLE","TN","372103633",,,,,,,,,,,,,,,,,,"522262786","6152312397","722110","CAPTAIN DS, LLC",,"1717 ELM HILL PIKE, SUITE A-1",,"NASHVILLE","TN","372103633",,,,,,,"522262786","6152312397",,,,"2011-06-02T14:29:45-0500","MICHAEL T. FOLKS",,,,,601,540,5,0,545,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110606135858P040333759808001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHICAGO METALLIC CORPORATION EMPLOYEE WELFARE BENEFITS PLAN","513","2004-01-01","CHICAGO METALLIC CORPORATION",,,"4849 SOUTH AUSTIN AVENUE",,"CHICAGO","IL","60638",,,,,,,"4849 SOUTH AUSTIN AVENUE",,"CHICAGO","IL","60638",,,,,,,"360902480","7085634600","332900","CHICAGO METALLIC CORPORATION",,"4849 SOUTH AUSTIN AVENUE",,"CHICAGO","IL","60638",,,,,,,"360902480","7085634600",,,,"2011-06-06T13:50:35-0500","MARTHA JAHN MARTIN","2011-06-06T11:59:42-0500","JOHN MEDIO",,,229,222,56,,278,,278,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,,"1","8","1",,,"FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110606105151P030336906896001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"R. STONE CONSULTING INC. 401(K) PLAN","001","2004-08-01","R. STONE CONSULTING INC.",,,"16830 VENTURA BLVD","SUITE 501","ENCINO","CA","91436",,,,,,,,,,,,,,,,,,"421565022","8187839200","812990","R. STONE CONSULTING INC.",,"16830 VENTURA BLVD","SUITE 501","ENCINO","CA","91436",,,,,,,"421565022","8187839200",,,,"2011-06-06T10:51:46-0500","YOUNG SIM",,,,,2,2,0,0,2,0,2,1,0,,"2E2F2G2J3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-06","Filed with authorized/valid electronic signature",, "20110607092941P040073787921001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"HATHAWAY ELECTRONICS, INC. PROFIT SHARING PLAN","001","1992-05-01","HATHAWAY ELECTRONICS, INC.",,,"P.O. BOX 8",,"LEXINGTON","MA","02420",,,,,,,"STEVEN STANFORD","P.O. BOX 8","LEXINGTON","MA","02420",,,,,,,"042135965","7818617010","335900","HATHAWAY ELECTRONICS, INC.",,"P.O. BOX 8",,"LEXINGTON","MA","02420",,,,,,,"042135965","7818617010",,,,"2011-06-07T09:24:02-0500","STEVEN STANFORD","2011-06-07T09:24:02-0500","STEVEN STANFORD",,,5,4,0,1,5,0,5,5,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110607082616P040073759697001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GSM 401(K) PLAN","001","1999-01-01","GSM METALS, INC.",,,"40 KENNEY DRIVE",,"CRANSTON","RI","02920",,,,,,,"40 KENNEY DRIVE",,"CRANSTON","RI","02920",,,,,,,"200129725","4014387092","332900","GSM METALS, INC.",,"40 KENNEY DRIVE",,"CRANSTON","RI","02920",,,,,,,"200129725","4014387092",,,,"2011-06-07T08:20:38-0500","FAITH FONTAINE",,,,,31,43,0,0,43,1,44,12,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110602154229P030010038882004","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"BOCA HEART ASSOCIATES PA PROFIT SHARING PLAN 20864 CIPRES WAY BOCA RATON, FL 33433","001","1988-11-01","BOCA HEART ASSOCIATES, PA",,,"20864 CIPRES WAY",,"BOCA RATON","FL","33433",,,,,,,"20864 CIPRES WAY",,"BOCA RATON","FL","33433",,,,,,,"650074944","5617508666","621111","BOCA HEART ASSOCIATES, PA",,"20864 CIPRES WAY",,"BOCA RATON","FL","33433",,,,,,,"650074944","5617508666",,,,"2011-05-25T11:00:51-0500","JOSEPH M VINCI",,,,,8,0,,,0,,0,0,,,"2A2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110602165916P030069212257002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE KRYSTAL COMPANY EMPLOYEES BENEFIT PROGRAM","501","1974-05-01","THE KRYSTAL COMPANY",,,"ONE UNION SQUARE, SUITE 900",,"CHATTANOOGA","TN","374022505",,,,,,,,,,,,,,,,,,"620264140","4237571552","722210","THE KRYSTAL COMPANY",,"ONE UNION SQUARE, SUITE 900",,"CHATTANOOGA","TN","374022505",,,,,,,"620264140","4237571552",,,,"2011-06-02T12:31:01-0500","ROBERT MARSHALL, CFO",,,,,1652,1315,12,12,1339,,,,,,,"4A4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-06-02","Filed with authorized/valid electronic signature",, "20110607122114P040073869361001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"VISITING NURSE SERVICE OF NEW YORK CHOICEPLUS PLAN","509","1986-07-01","VISITING NURSE SERVICE OF NEW YORK",,,"107 EAST 70TH STREET",,"NEW YORK","NY","100215006",,,,,,,"107 EAST 70TH STREET",,"NEW YORK","NY","100215006",,,,,,,"133189926","2127949200","621610","DENISE DAVIN",,"107 EAST 70TH STREET",,"NEW YORK","NY","100215006",,,,,,,"133435288","2126091600",,,,"2011-06-07T12:11:29-0500","DENISE M. DAVIN",,,,,4872,4838,,,4838,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-07","Filed with authorized/valid electronic signature",, "20110609082937P040074988481001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JET ENGINE TECHNOLOGY 401(K) PROFIT SHARING PLAN","001","1998-11-01","JET ENGINE TECHNOLOGY",,,"13 MILL ST",,"DANVERS","MA","01923",,,,,,,,,,,,,,,,,,"043425875","8606247075","332700","JET ENGINE TECHNOLOGY",,"13 MILL ST",,"DANVERS","MA","01923",,,,,,,"043425875","8606247075",,,,"2011-06-09T08:28:25-0500","DANA MUNICK",,,,,29,24,0,0,24,0,24,24,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603154909P040326377872001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PURE WAVE NETWORKS, INC. 401K PLAN","001","2007-01-31","PURE WAVE NETWORKS, INC.",,,"2660 C MARINE WAY",,"MOUNTAIN VIEW","CA","94043",,,,,,,"2660 C MARINE WAY",,"MOUNTAIN VIEW","CA","94043",,,,,,,"900115954","6505285216","334200","PURE WAVE NETWORKS, INC.",,"2660 C MARINE WAY",,"MOUNTAIN VIEW","CA","94043",,,,,,,"900115954","6505285216",,,,"2011-06-03T15:46:34-0500","DEBBIE PARSONS",,,,,44,18,0,8,26,0,26,17,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110609142251P030073150801001","2010-12-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"BUHLER INC. EMPLOYEE BENEFITS PLAN","501","1971-12-01","BUHLER INC.",,,"13105 12TH AVE N",,"PLYMOUTH","MN","554414509",,,,,,,,,,,,,,,,,,"410791630","7638479900","332900","BUHLER INC.",,"13105 12TH AVE N",,"PLYMOUTH","MN","554414509",,,,,,,"410791630","7638479900",,,,"2011-06-09T14:22:41-0500","LINDA GORMAN",,,,,191,183,14,,197,,,,,,,"4A4B4D4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609100453P030073033089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ADVANCED TECHNOLOGIES INTEGRATION RETIREMENT PLAN","001","1997-01-01","ADVANCED TECHNOLOGIES INTEGRATION, INC.",,,"7301 OHMS LANE","SUITE 500","MINNEAPOLIS","MN","55439",,,,,,,,,,,,,,,,,,"411874189","9528320033","541519","ADVANCED TECHNOLOGIES INTEGRATION, INC.",,"7301 OHMS LANE","SUITE 500","MINNEAPOLIS","MN","55439",,,,,,,"411874189","9528320033",,,,"2011-06-09T10:04:45-0500","ELAINE HOFFMAN",,,,,44,7,0,27,34,0,34,32,4,,"2E2F2G2J2K3B3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603101942P040010468578001","2010-01-01","2010-08-16","3",,"0","0","1","1","0","1","0","0","0",,"AMPER, POLITZINER & MATTIA LLP PROFIT SHARING PLAN","001","1975-04-01","AMPER POLITZINER & MATTIA LLP",,,"P.O. BOX 988","2015 LINCOLN HIGHWAY","EDISON","NJ","088180988",,,,,,,,,,,,,,,,,,"262842766","7322871000","541211","AMPER POLITZINER & MATTIA LLP",,"P.O. BOX 988","2015 LINCOLN HIGHWAY","EDISON","NJ","088180988",,,,,,,"262842766","7322871000",,,,"2011-06-03T10:19:24-0500","ALFONSE MATTIA",,,,,515,0,0,0,0,0,0,0,0,,"2A2E3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603102203P040071503633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HA INTERNATIONAL, LLC HEALTH AND WELFARE PLAN","501","2008-01-01","HA INTERNATIONAL, LLC",,,"603 OAKMONT LANE",,"WESTMONT","IL","60559",,,,,,,,,,,,,,,,,,"611387705","6305755700","331500","HA INTERNATIONAL, LLC",,"603 OAKMONT LANE",,"WESTMONT","IL","60559",,,,,,,"611387705","6305755700",,,,"2011-06-03T10:21:55-0500","WILLIAM SAMPLE",,,,,107,115,2,0,117,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603105250P030069612577006","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"PEDIATRIC ASSOCIATES OF NORTH ATLANTA, P.C., PROFIT SHARING PLAN AND TRUST","001","1991-01-01","PEDIATRIC ASSOCIATES OF NORTH ATLANTA, P.C.",,,"5185 PEACHTREE PARKWAY STE 330",,"PEACHTREE CORNERS","GA","30092",,,,,,,,,,,,,,,,,,"581909763","7704769885","621111","PEDIATRIC ASSOCIATES OF NORTH ATLANTA, P.C.",,"5185 PEACHTREE PARKWAY STE 330",,"PEACHTREE CORNERS","GA","30092",,,,,,,"581909763","7704769885",,,,"2011-05-12T06:20:06-0500","LORI DESOUTTER MD",,,,,16,11,0,2,13,0,13,10,0,,"2E2J2K2R3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608123615P040010911282001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OPPORTUNITY INTERNATIONAL EMPLOYEE WELFARE BENEFIT PLAN","501","2009-01-01","OPPORTUNITY INTERNATIONAL, INC.",,,"2122 YORK ROAD","SUITE 150","OAK BROOK","IL","60523",,,,,,,"2122 YORK ROAD","SUITE 150","OAK BROOK","IL","60523",,,,,,,"540907624","6302424100","813000","OPPORTUNITY INTERNATIONAL, INC.",,"2122 YORK ROAD","SUITE 150","OAK BROOK","IL","60523",,,,,,,"540907624","6302424100",,,,"2011-06-06T15:19:52-0500","LINDA RESSINGER","2011-06-07T16:05:10-0500","LINDA RESSINGER",,,111,119,,,119,,119,,,,,"4A4B4D4E4H4Q","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110603121159P040071571809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARFORD REFRIGERATION CO., INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1969-03-31","HARFORD REFRIGERATION COMPANY, INC.",,,"7915 PHILADELPHIA RD.",,"BALTIMORE","MD","21237",,,,,,,,,,,,,,,,,,"520886151","4108666200","238220","HARFORD REFRIGERATION COMPANY, INC.",,"7915 PHILADELPHIA RD.",,"BALTIMORE","MD","21237",,,,,,,"520886151","4108666200",,,,"2011-06-03T11:39:22-0500","GEORGE SALMON",,,,,34,27,0,6,33,0,33,33,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603123938P040071587633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FARMER FRESH PRODUCE INTERNATIONAL, LLC 401K PLAN","001","2006-01-01","FARMER FRESH PRODUCE INTERNATIONAL, LLC",,,"1301 MARTIN LUTHER KING JR. BOULEVA",,"PICAYUNE","MS","39466",,,,,,,,,,,,,,,,,,"721495692","6017994082","424400","FARMER FRESH PRODUCE INTERNATIONAL, LLC",,"1301 MARTIN LUTHER KING JR. BOULEVA",,"PICAYUNE","MS","39466",,,,,,,"721495692","6017994082",,,,"2011-06-03T12:36:33-0500","HEIDI BOYANTON",,,,,34,28,0,6,34,0,34,24,4,,"2E2J2K2F2G2A3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608095503P030010495410001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"ALEXANDER & REEF DENTISTRY PARTNERSHIP 401(K) PROFIT SHARING PLAN & TRUST","002","1985-04-01","ALEXANDER & REEF DENTISTRY PARTNERSHIP",,,"415 N. 26TH STREET, SUITE 303",,"LAFAYETTE","IN","47904",,,,,,,,,,,,,,,,,,"352061337","7654479319","621210","ALEXANDER & REEF DENTISTRY PARTNERSHIP",,"415 N. 26TH STREET, SUITE 303",,"LAFAYETTE","IN","47904",,,,,,,"352061337","7654479319",,,,"2011-02-22T11:06:44-0600","DAVID L. ALEXANDER, D.D.S., M.S.D.",,,,,13,14,0,1,15,0,15,15,1,,"2A2E2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609123622P030073095553001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FAIRCHILD SEMICONDUCTOR INTERNATIONAL, INC. GROUP LIFE PLAN","502","1997-03-11","FAIRCHILD SEMICONDUCTOR INTERNATIONAL, INC.",,,"82 RUNNING HILL ROAD",,"SOUTH PORTLAND","ME","041063261",,,,,,,,,,,,,,,,,,"043363001","2077758100","334410","FAIRCHILD SEMICONDUCTOR INTERNATIONAL, INC.",,"82 RUNNING HILL ROAD",,"SOUTH PORTLAND","ME","041063261",,,,,,,"043363001","2077758100",,,,"2011-06-09T12:36:17-0500","KAYLA MANNING",,,,,1726,1806,,,1806,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609133419P040341710816001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PELEGRINA MEDICAL, INC. EMPLOYEE RETIREMENT PLAN","001","2000-01-01","PELEGRINA MEDICAL, INC.",,"JORGE PELEGRINA","PO BOX 910",,"SAINT JUST","PR","00978",,,,,,,"PO BOX 910",,"SAINT JUST","PR","00978",,,,,,,"660382111","7877610000","621399","PELEGRINA MEDICAL, INC.","JORGE PELEGRINA","PO BOX 910",,"SAINT JUST","PR","00978",,,,,,,"660382111","7877610000",,,,"2011-06-09T13:18:35-0500","JORGE PELEGRINA",,,,,45,43,0,1,44,0,44,13,0,,"2E3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609140302P030345530576001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLIFTON GUNDERSON LLP DENTAL PLAN","504","1993-01-01","CLIFTON GUNDERSON LLP",,,"10700 RESEARCH DRIVE, SUITE 200",,"MILWAUKEE","WI","53226",,,,,,,,,,,,,,,,,,"370802863","4147217545","541211","CLIFTON GUNDERSON LLP",,"10700 RESEARCH DRIVE, SUITE 200",,"MILWAUKEE","WI","53226",,,,,,,"370802863","4147217545",,,,"2011-06-09T14:03:00-0500","L MARTA TURBA","2011-06-09T14:03:00-0500","L MARTA TURBA",,,1232,1154,26,0,1180,,,,,,,"4D",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608095815P030072460273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CE KIFF, INC. 401(K) PROFIT SHARING PLAN","001","2009-01-01","CE KIFF, INC.",,,"5 NORTH DEPOT STREET","P.O. BOX 151","DELHI","NY","13753",,,,,,,,,,,,,,,,,,"150357910","6077466535","424700","CE KIFF, INC.",,"5 NORTH DEPOT STREET","P.O. BOX 151","DELHI","NY","13753",,,,,,,"150357910","6077466535",,,,"2011-06-08T09:58:03-0500","JOHN A COOK",,,,,8,8,0,1,9,0,9,9,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609131014P030022726887001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HURDLE RATE CAPITAL 401(K) PLAN","001","2006-10-25","HURDLE RATE CAPITAL, INC.",,,"116 AYER ROAD",,"HARVARD","MA","01451",,,,,,,"116 AYER ROAD",,"HARVARD","MA","01451",,,,,,,"205552272","6468120110","525990","HURDLE RATE CAPITAL, INC.",,"116 AYER ROAD",,"HARVARD","MA","01451",,,,,,,"205552272","6468120110",,,,"2011-06-09T13:08:07-0500","SEAN MCLAUGHLIN","2011-06-09T13:05:45-0500","CANDICE GRANDON",,,10,9,0,0,9,0,9,5,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608105826P030072494289001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BADILLO NAZCA SAATCHI & SAATCHI OMNIBUS WELFARE BENEFIT PROGRAM","501","2005-01-01","BADILLO NAZCA SAATCHI & SAATCHI, INC.",,"CRISTINA ECHEVARRIA","PO BOX 11905","CAPARRA HEIGHTS STATION","SAN JUAN","PR","00922",,,,,,,"1504 FD ROOSEVELT AVE.",,"SAN JUAN","PR","00920",,,,,,,"660503707","7876221000","541800","BADILLO NAZCA SAATCHI & SAATCHI, INC.","CRISTINA ECHEVARRIA","PO BOX 11905","CAPARRA HEIGHTS STATION","SAN JUAN","PR","00922",,,,,,,"660503707","7876221000",,,,"2011-06-08T10:55:44-0500","CRISTINA ECHEVARRIA",,,,,117,112,0,0,112,0,112,,0,,,"4A4B4D4E4H","1",,,"0","1",,,"0",,,,,,"1","4",,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608114732P040074473201001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LILLIAN D. LOCKETT MD","001","1998-01-01","LILLIAN D LOCKETT MD PA",,"JAMES F TAYLOR","135 OYSTER CREEK DRIVE SUITE E",,"LAKE JACKSON","TX","77566",,,,,,,,,,,,,,,,,,"710926298","9792993255","621111","JAMES F TAYLOR",,"3534 ELMRIDGE STREET",,"HOUSTON","TX","770254112",,,,,,,"760432019","7136681998",,,,"2011-06-08T11:22:34-0500","JAMES F TAYLOR","2011-06-08T11:22:34-0500","LILLIAN D LOCKETT",,,5,3,0,2,5,0,5,5,0,,"2E2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110605172239P030334982656001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"OLYMPIC PRODUCTS MEDICAL, DENTAL AND VISION PLAN","501","2009-01-01","OLYMPIC PRODUCTS LLC",,"JENNIFER LITWINSKI","1515 EQUITY DRIVE",,"TROY","MI","48084",,,,,,,"4100 PLEASANT GARDEN ROAD",,"GREENSBORO","NC","27406",,,,,,,"980480548","2482806576","336300","JENNIFER LITWINSKI","THE WOODBRIDGE GROUP","1515 EQUITY DRIVE",,"TROY","MI","48084",,,,,,,"391505258","2482806576",,,,"2011-05-16T12:40:28-0500","JENNIFER LITWINSKI","2011-06-03T12:44:26-0500","ROBERT TANGNEY",,,74,81,0,0,81,0,81,,,,,"4A4D4E4R","1",,,"0","1",,,"0",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608142639P030010515778001","2010-01-01","2010-12-31","4","E","0","0","0","0","0","0","0","0","0",,"CORRELL CO. STABLE VALUE GROUP TRUST","003",,"CORRELL CO.",,,"9655 S. 78TH AVENUE",,"HICKORY HILLS","IL","604572211",,,,,,,,,,,,,,,,,,"363492086","7085995200",,"CORRELL CO.",,"9655 S. 78TH AVENUE",,"HICKORY HILLS","IL","604572211",,,,,,,"363492086","7085995200",,,,"2011-06-08T14:22:40-0500","EARL CORRELL",,,,,,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609112644P040341443696001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHYSICIANS HEALTH ALLIANCE EMPLOYEES' RETIREMENT PLAN","002","1977-01-01","PHYSICIANS HEALTH ALLIANCE, P.A.",,,"1777 HAMBURG TURNPIKE",,"WAYNE","NJ","07470",,,,,,,,,,,,,,,,,,"223518598","9738319222","621111","PHYSICIANS HEALTH ALLIANCE, P.A.",,"1777 HAMBURG TURNPIKE",,"WAYNE","NJ","07470",,,,,,,"223518598","9738319222",,,,"2011-06-09T11:19:20-0500","MARK ROSENTHAL",,,,,48,39,0,11,50,0,50,50,4,,"2E2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609172010P040075211489001","2005-01-01","2005-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WHEELS, INC. DENTAL PLAN","503","2004-01-01","WHEELS, INC.",,,"666 GARLAND PLACE",,"DES PLAINES","IL","60016",,,,,,,,,,,,,,,,,,"362317983","8476997000","532100","WHEELS, INC.",,"666 GARLAND PLACE",,"DES PLAINES","IL","60016",,,,,,,"362317983","8476997000",,,,"2011-06-09T17:13:06-0500","SHLOMO CRANDUS",,,,,422,385,0,0,385,0,385,,,,,"4D","1",,,"0","1",,,"0",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110610094028P030073622017006","2010-02-01","2011-01-31","2",,,,,,,,,,,,"CITIZENS BANK LONG TERM DISABILITY PLAN","502","1974-02-01","CITIZENS BANK",,,"400 HIGHWAY 52 BYPASS WEST","P.O. BOX 100","LAFAYETTE","TN","37083",,,,,,,"400 HIGHWAY 52 BYPASS WEST","P.O. BOX 100","LAFAYETTE","TN","37083",,,,,,,"620123135","6156662195","522110","CITIZENS BANK",,"400 HIGHWAY 52 BYPASS WEST","P.O. BOX 100","LAFAYETTE","TN","37083",,,,,,,"620123135","6156662195",,,,"2011-06-08T04:03:30-0500","SUSAN ROGERS",,,,,142,136,,,136,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110603124747P030069662145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIKE S AUTO SERVICE, INC. PROFIT SHARING PLAN","001","2007-07-13","MIKE S AUTO SERVICE, INC.",,,"221 E MOUNTAIN AVE",,"FORT COLLINS","CO","80524",,,,,,,,,,,,,,,,,,"260533734","9706130768","811110","MIKE S AUTO SERVICE, INC.",,"221 E MOUNTAIN AVE",,"FORT COLLINS","CO","80524",,,,,,,"260533734","9706130768",,,,"2011-06-03T11:46:29-0500","MICHAEL BANKHEAD",,,,,32,19,0,5,24,0,24,9,0,,"2E2G3D2R2J",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110609110014P040075055249001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STYMCO CONSTRUCTION PROFIT SHARING PLAN","001","1995-01-01","STYMCO CONSTRUCTION PROFIT SHARING",,,"2875 SPRINGBORO WEST",,"DAYTON","OH","45439",,,,,,,,,,,,,,,,,,"316674944","9372999441","236200","STYMCO CONSTRUCTION INC",,"2875 SPRINGBORO WEST",,"DAYTON","OH","45439",,,,,,,"311067744","9372999441",,,,"2011-06-09T10:15:52-0500","TIMOTHY J MISSALL",,,,,17,13,2,,15,,15,15,1,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603143453P030069728209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTEGRATED SERVICE SOLUTIONS, INC. 401(K) PLAN","001","2000-01-01","INTEGRATED SERVICE SOLUTIONS, INC,",,,"1565 BUSTARD ROAD",,"LANSDALE","PA","19446",,,,,,,"1565 BUSTARD ROAD",,"LANSDALE","PA","19446",,,,,,,"232963563","6102873433","811210","INTEGRATED SERVICE SOLUTIONS, INC,",,"1565 BUSTARD ROAD",,"LANSDALE","PA","19446",,,,,,,"232963563","6102873433",,,,"2011-06-03T14:34:27-0500","JOSEPH URICCHIO",,,,,55,57,0,8,65,0,65,48,0,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608083424P030072423777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RITTINER EQUIPMENT COMPANY, INC. 401(K) RETIREMENT SAVINGS PLAN","001","1999-07-01","RITTINER EQUIPMENT COMPANY, INC.",,,"658 LESON COURT",,"HARVEY","LA","70058",,,,,,,,,,,,,,,,,,"721071154","5043675586","237990","RITTINER EQUIPMENT COMPANY, INC.",,"658 LESON COURT",,"HARVEY","LA","70058",,,,,,,"721071154","5043675586",,,,"2011-06-08T08:34:15-0500","DEBBIE RITTINER",,,,,58,31,17,2,50,0,50,48,3,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608110542P040002251411001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"OPTIMAL HEALTH SERVICES, INC WELFARE BENEFITS PLAN","501","2004-09-01","OPTIMAL HEALTH SERVICES, INC",,,"1315 BOUGHTON DRIVE",,"BAKERSFIELD","CA","93308",,,,,,,"1315 BOUGHTON DRIVE",,"BAKERSFIELD","CA","93308",,,,,,,"770430482","6613877288","621610","OPTIMAL HEALTH SERVICES, INC",,"1315 BOUGHTON DRIVE",,"BAKERSFIELD","CA","93308",,,,,,,"770430482","6613877288","HCM SERVICES, INC","770430482","501","2011-06-08T10:41:36-0500","KELLY BINNINGER",,,,,221,213,,,213,,213,,,,,"4A4B4D4E4H4L","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609141012P030345547360001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"EBAA IRON, INC. TEXAS EMPLOYEES INJURY PLAN","501","1990-04-22","EBAA IRON, INC.",,,"COUNTY ROAD 442","LAKE OLDEN","EASTLAND","TX","76448",,,,,,,,,,,,,,,,,,"751331968","2546291737","331500","EBAA IRON, INC.",,"COUNTY ROAD 442","LAKE OLDEN","EASTLAND","TX","76448",,,,,,,"751331968","2546291737",,,,"2011-06-09T14:06:40-0500","EARL BRADLEY","2011-06-09T14:06:40-0500","EARL BRADLEY",,,250,265,0,0,265,0,,,,,,"4A4D4E4F4L4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110610124111P030348086160001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRAUN GROUP HEALTH PLAN","501","1989-08-01","THE BRAUN CORPORATION",,,"631 WEST 11TH STREET",,"WINAMAC","IN","46996",,,,,,,,,,,,,,,,,,"351282638","5749466153","336990","THE BRAUN CORPORATION",,"631 WEST 11TH STREET",,"WINAMAC","IN","46996",,,,,,,"351282638","5749466153",,,,"2011-06-10T12:41:07-0500","TOM EASTMAN","2011-06-10T12:41:07-0500","TOM EASTMAN",,,645,687,10,6,703,,,,,,,"4A","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608102416P040338647312001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MARQUETTE RAIL EMPLOYEE STOCK OWNERSHIP PLAN","001","2005-11-03","MARQUETTE RAIL CORPORATION",,,"239 NORTH JEBAVY DRIVE",,"LUDINGTON","MI","49431",,,,,,,,,,,,,,,,,,"203700952","2318459000","482110","MARQUETTE RAIL CORPORATION",,"239 NORTH JEBAVY DRIVE",,"LUDINGTON","MI","49431",,,,,,,"203700952","2318459000",,,,"2011-06-08T10:17:19-0500","JAN ZIELKE",,,,,31,21,,1,22,,22,22,0,,"2P2Q",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608111353P030072509489001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CHOICE ONE ENGINEERING RETIREMENT PLAN","001","2007-01-01","CHOICE ONE ENGINEERING CORPORATION",,,"440 E HOEWISHER RD",,"SIDNEY","OH","453652749",,,,,,,"440 E HOEWISHER RD",,"SIDNEY","OH","453652749",,,,,,,"311419995","9374970200","541330","CHOICE ONE ENGINEERING CORPORATION",,"440 E HOEWISHER RD",,"SIDNEY","OH","453652749",,,,,,,"311419995","9374970200",,,,"2011-06-08T11:11:29-0500","ANTHONY SCHROEDER",,,,,26,23,0,4,27,0,27,23,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609081125P030002141571001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"FIDUCIARY TRUST COMPANY DISABILITY PLAN","502","1974-01-01","FIDUCIARY TRUST COMPANY",,,"175 FEDERAL STREET",,"BOSTON","MA","02210",,,,,,,,,,,,,,,,,,"041309690","6175743415","522110","FIDUCIARY TRUST COMPANY",,"175 FEDERAL STREET",,"BOSTON","MA","02210",,,,,,,"041309690","6175743415",,,,"2011-06-09T08:11:18-0500","JAMES DIAS","2011-06-09T08:11:18-0500","JAMES DIAS",,,116,0,0,0,0,,,,,,,"4E4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609102324P030010575234001","2008-04-01","2009-03-31","2",,"0","1","0","0","0","0","0","0","0",,"TRAVEL TRADERS HEALTH & WELFARE PLAN","501","2004-04-01","TRAVEL TRADERS HOTELS, INC",,,"6205 BLUE LAGOON DR, STE 550",,"MIAMI","FL","33126",,,,,,,,,,,,,,,,,,"900215106","7863882511","453220","TRAVEL TRADERS HOTELS, INC",,"6205 BLUE LAGOON DR, STE 550",,"MIAMI","FL","33126",,,,,,,"900215106","7863882511",,,,"2011-06-09T10:23:14-0500","TRICIA MINER",,,,,581,570,5,0,575,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","16","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609105139P040010996626001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"FLUORTEK, INC. 401(K) SAVINGS PLAN","001","1995-05-01","FLUORTEK, INC.",,,"12 MCFADDEN RD",,"EASTON","PA","180457817",,,,,,,"12 MCFADDEN RD",,"EASTON","PA","180457817",,,,,,,"222326986","6105599000","326100","FLUORTEK, INC.",,"12 MCFADDEN RD",,"EASTON","PA","180457817",,,,,,,"222326986","6105599000",,,,"2011-06-09T10:51:16-0500","DIANE ERMAN",,,,,69,69,0,7,76,1,77,42,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609151508P040075166193004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MICHAEL W. SHEETS DMD,MS,PC EMPLOYEE PROFIT SHARING PLAN","001","1984-11-01","MICHAEL W. SHEETS, DMD, MS, PC",,"DR. MICHAEL W. SHEETS","5450 NW CRESCENT VALLEY DRIVE",,"CORVALLIS","OR","97330",,,,,,,,,,,,,,,,,,"930873852","5417583604","621210","MICHAEL W. SHEETS, DMD, MS, PC","DR. MICHAEL W. SHEETS","5450 NW CRESCENT VALLEY DR.",,"CORVALLIS","OR","97330",,,,,,,"930873852","5417584375",,,,"2011-06-09T16:13:27-0500","MICHAEL W. SHEETS","2011-06-09T16:13:38-0500","MICHAEL W. SHEETS",,,2,2,0,0,2,0,2,2,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608093355P040338558064006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"UFCW LOCAL NO. 21 SUPPLEMENTAL LIFE AND DISABILITY","501","1992-03-01","UFCW LOCAL NO. 21 SUPPLEMENTAL LIFE AND DISABILITY FUND",,,"2323 EASTLAKE AVENUE EAST",,"SEATTLE","WA","98102",,,,,,,"2323 EASTLAKE AVENUE EAST",,"SEATTLE","WA","98102",,,,,,,"911549422","2063294900","525100","UFCW LOCAL NO. 21 SUPPLEMENTAL LIFE AND DISABILITY",,"2323 EASTLAKE AVENUE EAST",,"SEATTLE","WA","98102",,,,,,,"911549422","2063294900",,,,"2011-06-08T02:00:09-0500","IEVA DILTS",,,,,21153,21094,,22,21116,,,,,,,"4F4L",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609113725P030010579474001","2010-07-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"ICROSSING BENEFIT PLAN","501","2005-07-01","ICROSSING, INC.",,,"15169 N. SCOTTSDALE RD.","SUITE C-400","SCOTTSDALE","AZ","85254",,,,,,,,,,,,,,,,,,"860982713","4802826055","541800","ICROSSING, INC.",,"15169 N. SCOTTSDALE RD.","SUITE C-400","SCOTTSDALE","AZ","85254",,,,,,,"860982713","4802826055",,,,"2011-06-09T11:37:18-0500","KRISTEN BECKMAN",,,,,332,365,11,0,376,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603134815P030069696145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUSINESS CONSULTING GROUP, INC. 401(K) PROFIT SHARING PLAN","001","2004-01-01","BUSINESS CONSULTING GROUP, INC.",,,"2614 BUTTERWING ROAD",,"CLEVELAND","OH","44124",,,,,,,,,,,,,,,,,,"010549168","2164642265","541512","BUSINESS CONSULTING GROUP, INC.",,"2614 BUTTERWING ROAD",,"CLEVELAND","OH","44124",,,,,,,"010549168","2164642265",,,,"2011-06-03T13:45:52-0500","RENU SACHDEVA",,,,,8,4,1,4,9,0,9,9,2,,"2A2E2F2G2J",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603141224P040071629633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE FLEISCHMAN LAW FIRM, P.C. PROFIT SHARING PLAN","004","1997-01-01","THE FLEISCHMAN LAW FIRM, P.C.",,,"2850 NORTH SWAN ROAD, SUITE 120",,"TUCSON","AZ","857126302",,,,,,,,,,,,,,,,,,"860851438","5203266400","541110","THE FLEISCHMAN LAW FIRM, P.C.",,"2850 NORTH SWAN ROAD, SUITE 120",,"TUCSON","AZ","857126302",,,,,,,"860851438","5203266400",,,,"2011-06-03T14:10:03-0500","LAWRENCE FLEISCHMAN","2011-06-03T14:10:03-0500","LAWRENCE FLEISCHMAN",,,2,2,0,0,2,0,2,2,0,,"3D2G2R2E2A",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110608084002P030072426033001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAVANNAH SURGICAL SPECIALTY, P.C. PROFIT SHARING PLAN AND TRUST","001","1975-05-28","SAVANNAH SURGICAL SPECIALTY, P.C.",,,"P.O. BOX 8375",,"SAVANNAH","GA","31412",,,,,,,"136 HABERSHAM STREET",,"SAVANNAH","GA","31401",,,,,,,"581222754","9122335492","621111","SAVANNAH SURGICAL SPECIALTY, P.C.",,"P.O. BOX 8375",,"SAVANNAH","GA","31412",,,,,,,"581222754","9122335492",,,,"2011-06-08T08:39:12-0500","ROBERT CARTER",,,,,1,,1,,1,,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609132250P030073126241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MILLENNIUM COMMUNICATION, INC. 401(K) PLAN","001","2000-01-01","MILLENNIUM COMMUNICATION, INC.",,,"6900 JERICHO TURNPIKE","SUITE 100LL","SYOSSET","NY","11791",,,,,,,,,,,,,,,,,,"133721399","5166828080","541800","MILLENNIUM COMMUNICATION, INC.",,"6900 JERICHO TURNPIKE","SUITE 100LL","SYOSSET","NY","11791",,,,,,,"133721399","5166828080",,,,"2011-06-09T13:22:44-0500","THERESA MACRI",,,,,16,14,0,2,16,0,16,16,0,,"2E2F2G2J2K3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110603090932P030069570065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENGLANDS STOVE WORKS, INC. 401(K) PLAN","001","1997-05-01","ENGLANDS STOVE WORKS, INC",,,"589 SOUTH FIVE FORKS ROAD",,"MONROE","VA","24574",,,,,,,,,,,,,,,,,,"541049408","4349290120","332900","ENGLANDS STOVE WORKS, INC",,"589 SOUTH FIVE FORKS ROAD",,"MONROE","VA","24574",,,,,,,"541049408","4349290120",,,,"2011-06-03T09:07:46-0500","SHERRI ROSEN",,,,,60,57,0,3,60,0,60,43,1,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608111718P040074456721001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"BANKS COMPANY INC MONEY PURCHASE PENSION PLAN","001","1999-12-31","BANKS COMPANY INC",,,"5995 MORROW ROSSBURG ROAD",,"MORROW","OH","45152",,,,,,,"5995 MORROW ROSSBURG ROAD",,"MORROW","OH","45152",,,,,,,"310737509","5138992210","423990","BANKS COMPANY INC",,"5995 MORROW ROSSBURG ROAD",,"MORROW","OH","45152",,,,,,,"310737509","5138992210",,,,"2011-06-08T11:17:03-0500","ERIC LAMPL",,,,,2,,2,,2,,2,,,,"1A3E2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608131348P040010914562001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARDINAL FINANCIAL CORPORATION LIFE AD&D AND LONG TERM DISABILITY PLAN","503","2001-01-01","CARDINAL FINANCIAL CORPORATION",,,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"541874630","7035843400","551111","CARDINAL FINANCIAL CORPORATION",,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,"541874630","7035843400",,,,"2011-06-08T13:12:48-0500","CHERYL STEINBACHER",,,,,360,417,0,0,417,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110603101509P030329203488001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WOVENWARE, INC. 1165(E) RETIREMENT PLAN","001","2006-08-01","WOVENWARE, INC.",,,"PMB 480, P.O. BOX 7891",,"GUAYNABO","PR","00970",,,,,,,,,,,,,,,,,,"660621831","7873151960","541512","WOVENWARE, INC.",,"PMB 480, P.O. BOX 7891",,"GUAYNABO","PR","00970",,,,,,,"660621831","7873151960",,,,"2011-06-03T10:14:21-0500","CHRISTIAN GONZALEZ",,,,,12,12,0,1,13,0,13,10,0,,"2E2F2G2T3C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608131701P040002252883001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARDINAL FINANCIAL CORPORATION DENTAL PLAN","504","2001-01-01","CARDINAL FINANCIAL CORPORATION",,,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"541874630","7035843400","551111","CARDINAL FINANCIAL CORPORATION",,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,"541874630","7035843400",,,,"2011-06-08T13:16:06-0500","CHERYL STEINBACHER",,,,,286,306,3,0,309,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110603120530P040071566529001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"HSH INVESTMENT MANAGEMENT 401(K) PLAN","001","2007-07-01","HSH INVESTMENT MANAGEMENT LLC",,,"230 PARK AVENUE, 32ND FLOOR",,"NEW YORK","NY","10169",,,,,,,"230 PARK AVENUE, 32ND FLOOR",,"NEW YORK","NY","10169",,,,,,,"870800404","2124076141","523900","HSH INVESTMENT MANAGEMENT LLC",,"230 PARK AVENUE, 32ND FLOOR",,"NEW YORK","NY","10169",,,,,,,"870800404","2124076141",,,,"2011-06-03T11:54:18-0500","ANDREW STEIN",,,,,8,5,0,3,8,0,8,4,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110603130932P040071602977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHAMPION CHEVROLET 401(K) SALARY SAVINGS PLAN","002","1994-01-01","HERB HALLMAN CHEVROLET, INC. DBA CHAMPION CHEVROLET",,,"800 KIETZKE LN",,"RENO","NV","89510",,,,,,,"PO BOX 7277",,"RENO","NV","89510",,,,,,,"880099795","7757863111","441110","HERB HALLMAN CHEVROLET, INC. DBA CHAMPION CHEVROLET",,"800 KIETZKE LN",,"RENO","NV","89510",,,,,,,"880099795","7757863111",,,,"2011-06-03T13:08:28-0500","JOHN STANKO",,,,,106,98,0,6,104,0,104,100,3,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-03","Filed with authorized/valid electronic signature",, "20110608142330P040074536689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROY C., INC. ESOP PLAN","001","2000-01-01","ROY C., INC.",,,"11010 LAMONT AVENUE N.E.",,"ST. MICHAEL","MN","55376",,,,,,,,,,,,,,,,,,"411657701","7153945588","238100","ROY C., INC.",,"11010 LAMONT AVENUE N.E.",,"ST. MICHAEL","MN","55376",,,,,,,"411657701","7153945588",,,,"2011-06-08T14:19:24-0500","KNUTE PEDERSEN",,,,,15,14,0,1,15,0,15,14,0,,"2E2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110608153423P040074568497001","2010-01-01","2010-12-31","1",,"0","0","0","0","1","0","0","0","0",,"STATE BANK OF CHANDLER EMPLOYEE PROFIT SHARING PLAN","001","1968-12-31","STATE BANK OF CHANDLER",,,"PO BOX 128",,"CHANDLER","MN","561220128",,,,,,,"342 MAIN AVE",,"CHANDLER","MN","561220128",,,,,,,"410556770","5076772201","522110","STATE BANK OF CHANDLER",,"PO BOX 128",,"CHANDLER","MN","561220128",,,,,,,"410556770","5076772201",,,,"2011-06-08T15:34:14-0500","LONNIE E CLARK",,,,,14,10,4,0,14,0,14,14,0,1,"2E2G2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-08","Filed with authorized/valid electronic signature",, "20110609162212P040075190273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN ETCHING & MANUFACTURING, INC. RETIREMENT SAVINGS PLAN","002","1996-01-01","AMERICAN ETCHING & MANUFACTURING, INC.",,,"13730 DESMOND ST.",,"PACOIMA","CA","913312706",,,,,,,,,,,,,,,,,,"952864661","8188961187","339900","AMERICAN ETCHING & MANUFACTURING, INC.",,"13730 DESMOND ST.",,"PACOIMA","CA","913312706",,,,,,,"952864661","8188961187",,,,"2011-06-09T16:22:10-0500","GARY KIPKA",,,,,29,29,0,2,31,0,31,31,0,,"2A2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609182354P040342301088001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANCSOURCE, INC. COMPREHENSIVE WELFARE BENEFIT PLAN","501","2003-01-01","BANCSOURCE INCORPORATED",,,"931 NORTH WALNUT",,"REPUBLIC","MO","65738",,,,,,,,,,,,,,,,,,"431179016","4177327238","811310","BANCSOURCE INCORPORATED",,"931 NORTH WALNUT",,"REPUBLIC","MO","65738",,,,,,,"431179016","4177327238",,,,"2011-06-09T18:23:47-0500","JASON CROWE",,,,,296,273,0,0,273,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110609153006P030345722288001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WARNER SMITH & HARRIS, PLC PROFIT SHARING PLAN","001","1977-12-21","WARNER SMITH & HARRIS, PLC",,,"400 ROGERS AVENUE",,"FORT SMITH","AR","72901",,,,,,,,,,,,,,,,,,"710765663","4797826041","541110","WARNER SMITH & HARRIS, PLC",,"400 ROGERS AVENUE",,"FORT SMITH","AR","72901",,,,,,,"710765663","4797826041",,,,"2011-06-09T10:29:10-0500","ALAN WOOTEN","2011-06-09T10:29:12-0500","ALAN WOOTEN",,,31,20,5,4,29,,29,29,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,"1",,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110609153007P040075172497003","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"LIVONIA FOOT SURGEONS PC PROFIT SHARING PLAN","001","1984-11-01","LIVONIA FOOT SURGEONS, PC",,,"28477 W. SEVEN MILE ROAD",,"LIVONIA","MI","48152",,,,,,,,,,,,,,,,,,"382389372","2484713312","621391","LIVONIA FOOT SURGEONS PC",,"28477 WEST SEVEN MILE ROAD",,"LIVONIA","MI","48152",,,,,,,"382389372",,,,,"2011-06-09T16:27:06-0500","LAWRENCE SINGER",,,,,4,5,,,5,0,5,5,,,"2E2G2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-09","Filed with authorized/valid electronic signature",, "20110613110108P040077273137001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BANG ZOOM DESIGN LTD PROFIT SHARING 401K PLAN","001","2001-01-01","BANG ZOOM DESIGN, LTD",,,"2150 ALPINE PLACE",,"CINCINNATI","OH","45206",,,,,,,,,,,,,,,,,,"311599268","5132417070","541400","BANG ZOOM DESIGN LTD",,"2150 ALPINE PLACE",,"CINCINNATI","OH","45206",,,,,,,"311599268","5132417070",,,,"2011-06-13T08:46:59-0500","MICHAEL HOETING",,,,,6,3,,4,7,,7,6,,,"3D2K2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613151439P030010920082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NANDANSONS INTERNATIONAL INC CASH BALANCE PLAN","002","2009-01-01","NANDANSONS INTERNATIONAL INC",,,"11 PROGRESS STREET",,"EDISON","NJ","08820",,,,,,,,,,,,,,,,,,"132986604","9085612400","424990","NANDANSONS INTERNATIONAL INC",,"11 PROGRESS STREET",,"EDISON","NJ","08820",,,,,,,"132986604","9085612400",,,,"2011-06-13T15:14:30-0500","ANKUR GUPTA",,,,,9,14,0,0,14,0,14,,0,,"1C1G3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110612100030P030074705857001","2010-02-01","2011-01-31","2",,"0","1","0","0","0","0","0","0","0",,"DRS. KIME, GIPSON & SUTULA PA 401(K) PLAN","001","1976-02-01","DRS. KIME, GIPSON & SUTULA, P.A.",,,"3001 S. HANOVER STREET",,"BALTIMORE","MD","21225",,,,,,,,,,,,,,,,,,"520892161","4103503362","621111","DRS. KIME, GIPSON & SUTULA, P.A.",,"3001 S. HANOVER STREET",,"BALTIMORE","MD","21225",,,,,,,"520892161","4103503362",,,,"2011-06-12T10:00:26-0500","MICHAEL J. SUTULA","2011-06-12T10:00:26-0500","MICHAEL J. SUTULA",,,5,3,0,2,5,0,5,5,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613170109P040077451121001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"R A BECKSTEDT AND ASSOCIATES INC 401K PLAN","001","1977-07-01","R A BECKSTEDT AND ASSOCIATES INC",,,"200 NORTHLAND BLVD",,"CINCINNATI","OH","45246",,,,,,,,,,,,,,,,,,"310908689","5136724110","561490","R A BECKSTEDT AND ASSOCIATES INC",,"200 NORTHLAND BLVD",,"CINCINNATI","OH","45246",,,,,,,"310908689","5136724110",,,,"2011-06-13T16:36:12-0500","ROBERT A BECKSTEDT JR",,,,,1,1,,,1,,1,1,,,"3H2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610184652P030073849953001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"NEIL, DYMOTT, FRANK, MCFALL & TREXLER 401(K) SAVINGS & INVESTMENT PLAN","003","1987-01-01","NEIL, DYMOTT, FRANK, MCFALL & TREXLER APLC",,,"1010 SECOND AVENUE","SUITE 2500","SAN DIEGO","CA","921014959",,,,,,,"1010 SECOND AVENUE","SUITE 2500","SAN DIEGO","CA","921014959",,,,,,,"952628079","6192382276","541110","NEIL, DYMOTT, FRANK, MCFALL & TREXLER APLC",,"1010 SECOND AVENUE","SUITE 2500","SAN DIEGO","CA","921014959",,,,,,,"952628079","6192382276",,,,"2011-06-10T14:01:00-0500","WILLIAM FERREL",,,,,76,56,0,19,75,0,75,68,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613170403P040077452545001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAPPY COOKING CO. LTD 401K PROFIT SHARING PLAN","001","2005-01-01","HAPPY COOKING CO. LTD",,,"549 S. STATE COLLEGE BOULEVARD",,"FULLERTON","CA","928315113",,,,,,,,,,,,,,,,,,"912082007","7143880240","443111","HAPPY COOKING CO. LTD",,"549 S. STATE COLLEGE BOULEVARD",,"FULLERTON","CA","928315113",,,,,,,"912082007","7143880240",,,,"2011-06-13T17:02:59-0500","JAMES TANTI",,,,,6,6,0,1,7,0,7,7,1,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610114239P030073666689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GREENBERG FINANCIAL GROUP 401(K) PROFIT SHARING PLAN","002","2000-01-01","GREENBERG FINANCIAL GROUP",,,"4511 N. CAMPBELL AVE.",,"TUCSON","AZ","85718",,,,,,,,,,,,,,,,,,"860903680","5205444909","523900","GREENBERG FINANCIAL GROUP",,"4511 N. CAMPBELL AVE.",,"TUCSON","AZ","85718",,,,,,,"860903680","5205444909",,,,"2011-06-10T11:17:16-0500","DEAN GREENBERG",,,,,9,7,0,1,8,0,8,8,0,,"2A2E2G2J2K2F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110610134444P040075710017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PARKWAY DRUGS OF ONEIDA COUNTY, INC 401(K) PROFIT SHARING PLAN","001","1970-10-25","PARKWAY DRUGS OF ONEIDA COUNTY, INC",,,"1256 ALBANY ST",,"UTICA","NY","135014252",,,,,,,,,,,,,,,,,,"160908572","3157353525","446110","PARKWAY DRUGS OF ONEIDA COUNTY, INC",,"1256 ALBANY ST",,"UTICA","NY","135014252",,,,,,,"160908572","3157353525",,,,"2011-06-10T13:35:48-0500","ROCCO FEMIA",,,,,58,57,0,6,63,0,63,63,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613094041P030355498864001","2002-09-01","2003-08-31","2",,"1","0","0","0","0","0","0","1","0",,"WATERTON ASSOCIATES, LLC WELFARE BENEFIT PLAN","501","2002-06-01","WATERTON PROPERTY MANAGEMENT LLC",,,"30 S WACKER DR","STE 3600","CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"364198140","3124762378","531110","WATERTON PROPERTY MANAGEMENT LLC",,"30 S WACKER DR","STE 3600","CHICAGO","IL","60606",,,,,,,"364198140","3124762378",,,,"2011-06-13T09:40:38-0500","SHARON BONER","2011-06-13T09:40:38-0500","SHARON BONER",,,276,291,2,0,293,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613094229P030355502448001","2005-09-01","2006-08-31","2",,"0","0","0","0","0","0","0","1","0",,"WATERTON ASSOCIATES, LLC WELFARE BENEFIT PLAN","501","2002-06-01","WATERTON PROPERTY MANAGEMENT LLC",,,"30 S WACKER DR","STE 3600","CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"364198140","3124762378","531110","WATERTON PROPERTY MANAGEMENT LLC",,"30 S WACKER DR","STE 3600","CHICAGO","IL","60606",,,,,,,"364198140","3124762378",,,,"2011-06-13T09:42:25-0500","SHARON BONER","2011-06-13T09:42:25-0500","SHARON BONER",,,370,352,11,0,363,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613110449P030012472918001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE DATATECH GROUP INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","THE DATATECH GROUP INC",,,"807 W US HIGHWAY 50 STE 2",,"O FALLON","IL","62269",,,,,,,,,,,,,,,,,,"582370656","6186324016","541600","THE DATATECH GROUP INC",,"807 W US HIGHWAY 50 STE 2",,"O FALLON","IL","62269",,,,,,,"582370656","6186324016",,,,"2011-06-13T11:04:47-0500","THE DATATECH GROUP INC",,,,,7,6,0,0,6,0,6,5,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613110450P030002208467001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"THERMALTECH ENGINEERING, INC. ESOP","003","2002-02-01","THERMALTECH ENGINEERING, INC",,,"5721 DRAGON WAY",,"CINCINNATI","OH","452274518",,,,,,,,,,,,,,,,,,"310994615","5135612271","541330","THERMALTECH ENGINEERING, INC",,"5721 DRAGON WAY",,"CINCINNATI","OH","452274518",,,,,,,"310994615","5135612271",,,,"2011-06-13T11:04:30-0500","CHARLIE YOUNG",,,,,36,0,0,0,0,0,0,0,0,,"2O",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613104312P030075265441001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SKIP BARBER RACING SCHOOL 401(K) PLAN","001","2002-03-01","SKIP BARBER RACING SCHOOL, LLC",,,"29 BROOK STREET",,"LAKEVILLE","CT","06039",,,,,,,"29 BROOK STREET",,"LAKEVILLE","CT","06039",,,,,,,"061634668","8604351300","713900","SKIP BARBER RACING SCHOOL, LLC",,"29 BROOK STREET",,"LAKEVILLE","CT","06039",,,,,,,"061634668","8604351300",,,,"2011-06-13T10:42:55-0500","LINDA SNYDER",,,,,71,77,0,10,87,0,87,26,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613133312P040352151904001","2010-01-01","2010-12-27","2",,"1","1","1","1","0","0","0","0","0",,"XOSDER1, INC. 401K PLAN","001","2007-09-15","XOSDER1, INC.",,,"104 BEN BRUSH CIR",,"FRANKLIN","TN","370691821",,,,,,,,,,,,,,,,,,"261093126","6156427109","812910","XOSDER1, INC.",,"104 BEN BRUSH CIR",,"FRANKLIN","TN","370691821",,,,,,,"261093126","6156427109",,,,"2011-06-10T13:26:45-0500","JASON GRIDER","2011-06-10T13:26:45-0500","JASON GRIDER",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110610112158P030010660946001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ICE COLD STORAGE, INC. PROFIT SHARING PLAN","001","1994-01-01","ICE COLD STORAGE, INC.",,,"3336 FRUITLAND",,"VERNON","CA","90058",,,,,,,,,,,,,,,,,,"954322238","3235840313","493100","ICE COLD STORAGE, INC.",,"3336 FRUITLAND",,"VERNON","CA","90058",,,,,,,"954322238","3235840313",,,,"2011-06-10T12:21:53-0500","ICE COLD STORAGE, INC.",,,,,10,10,0,0,10,0,10,8,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110610102651P030010658386001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARTER MCKENZIE SELECT, LLC PROFIT SHARING PLAN","001","2008-01-01","CARTER MCKENZIE SELECT, LLC",,,"P. O. BOX 620",,"PINE BROOK","NJ","070580620",,,,,,,"43 ROUTE 46 EAST STE. 705",,"PINE BROOK","NJ","070580620",,,,,,,"205769565","9732446060","812990","CARTER MCKENZIE SELECT, LLC",,"P. O. BOX 620",,"PINE BROOK","NJ","070580620",,,,,,,"205769565","9732446060",,,,"2011-06-10T10:26:38-0500","RICHARD KILCOYNE",,,,,4,4,0,1,5,0,5,5,1,,"2A2E3B3D2G2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110610075531P030347481936001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"AHRENS & CONDILL, INC. 401(K) PLAN","001","1995-04-01","AHRENS & CONDILL, INC.",,,"206 SOUTH NORTHWEST HIGHWAY",,"BARRINGTON","IL","60010",,,,,,,,,,,,,,,,,,"362914709","8473813021","238220","AHRENS & CONDILL, INC.",,"206 SOUTH NORTHWEST HIGHWAY",,"BARRINGTON","IL","60010",,,,,,,"362914709","8473813021",,,,"2011-06-09T16:00:30-0500","TIMOTHY ZELS",,,,,11,9,0,0,9,0,9,5,0,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110613113105P030075284769002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MSJ FOOTWEAR INC PROFIT SHARING PLAN","001","1998-07-01","MSJ FOOTWEAR INC PROFIT SHARING PLAN","MSJ FOOTWEAR INC",,"501 NORTH MAIN ST 108",,"STILLWATER","MN","55082",,,,,,,,,,,,,,,,,,"411817797","6514397195","424300","MSJ FOOTWEAR INC PROFIT SHARING PLAN",,"501 NORTH MAIN ST 108",,"STILLWATER","MN","55082",,,,,,,"411817797","6514397195",,,,"2011-06-08T08:40:35-0500","MIKE JENSEN",,,,,4,4,,,4,,4,4,,,"2G2E",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613105257P030010902706001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AFFIANCE FINANCIAL, LLC PROFIT SHARING PLAN AND TRUST","001","1982-01-01","AFFIANCE FINANCIAL, LLC",,,"600 HIGHWAY 169 S, STE 1950",,"ST LOUIS PARK","MN","554261205",,,,,,,,,,,,,,,,,,"411788270","9522532568","524210","AFFIANCE FINANCIAL, LLC",,"600 HIGHWAY 169 S, STE 1950",,"ST LOUIS PARK","MN","554261205",,,,,,,"411788270","9522532568",,,,"2011-06-13T10:52:02-0500","ANDREW B FISHMAN","2011-06-13T10:52:01-0500","ANDREW B FISHMAN",,,18,12,1,1,14,0,14,14,3,,"2E2F2G2J2R2K2T3D","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613123106P030010909762004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AMERICAN CONTRACTORS TRUST FOR THE STATE OF NY","501","2003-01-01","ECO-CONTRACTORS",,,"25-35 36TH STREET",,"LONG ISLAND CITY","NY","11103",,,,,,,,,,,,,,,,,,"201119165","7187299819","238900","ECO-CONTRACTORS",,"25-35 36TH STREET",,"LONG ISLAND CITY","NY","11103",,,,,,,"201119165","7187299819",,,,"2011-06-10T09:48:34-0500","TED COGSWELL III",,,,,14,8,,,8,,8,,,,,"4C",,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613113451P030075286161005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SEEK PUBLISHING 401K PLAN","001","2005-01-01","SEEK PUBLISHING, INC.",,,"2230 SECOND AVENUE SOUTH",,"BIRMINGHAM","AL","35233",,,,,,,,,,,,,,,,,,"631873221","2053216634","511190","SEEK PUBLISHING, INC.",,"2230 SECOND AVENUE SOUTH",,"BIRMINGHAM","AL","35233",,,,,,,"631873221","2053216634",,,,"2011-06-13T06:17:10-0500","SAMMY SCHILLACI",,,,,46,23,3,11,37,0,37,24,0,,"2E2G2J2K2T3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110610144417P040075728817001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"H SCOTT AALSBERG ESQ P C 401(K) PROFIT SHARING PLAN & TRUST","001","2001-01-01","H SCOTT AALSBERG ESQ PC",,,"39 MILLTOWN RD",,"EAST BRUNSWICK","NJ","08816",,,,,,,,,,,,,,,,,,"223454651","7322575040","541990","H SCOTT AALSBERG ESQ PC",,"39 MILLTOWN RD",,"EAST BRUNSWICK","NJ","08816",,,,,,,"223454651","7322575040",,,,"2011-06-10T02:44:15-0500","H SCOTT AALSBERG ESQ PC",,,,,0,2,0,0,2,0,2,1,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110611120634P030074224209001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LEON STRAUSS, MD PROFIT SHARING PLAN","001","1989-01-01","LEON STRAUSS","LEON STRAUSS, MD","LEON STRAUSS","101 GARRISON FOREST RD.",,"OWINGS MILLS","MD","21117",,,,,,,"1777 REISTERSTOWN RD, SUITE 380",,"BALTIMORE","MD","21208",,,,,,,"521607032","4103631070","621111","LEON STRAUSS","LEON STRAUSS","101 GARRISON FOREST RD.",,"OWINGS MILLS","MD","21117",,,,,,,"521607032","4103631070",,,,"2011-06-11T12:05:24-0500","LEON STRAUSS","2011-06-11T12:06:08-0500","LEON STRAUSS",,,4,4,0,0,4,0,4,4,0,,"2E2G3D3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613081443P030075203121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MENTAL HEALTH SERVICES FOR CLARK AND MADISON COUNTIES LONG TERM DISABILITY PLAN","503","1983-07-01","MENTAL HEALTH SERVICES FOR CLARK CO",,,"1345 NORTH FOUNTAIN BOULEVARD",,"SPRINGFIELD","OH","455041422",,,,,,,,,,,,,,,,,,"310787073","9373999500","621112","MENTAL HEALTH SERVICES FOR CLARK CO",,"1345 NORTH FOUNTAIN BOULEVARD",,"SPRINGFIELD","OH","455041422",,,,,,,"310787073","9373999500",,,,"2011-06-13T08:11:07-0500","PHOEBE PECZKOWSKI","2011-06-13T08:13:49-0500","JAMES PERRY",,,141,137,2,0,139,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110611162848P040011193666001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONCEPT RESTAURANTS, INC. EMPLOYEE HEALTH PLAN","501","1982-03-01","CONCEPT RESTAURANTS, INC.",,,"1227 SPRUCE STREET","SUITE 201","BOULDER","CO","80302",,,,,,,,,,,,,,,,,,"840692465","3034438424","722110","CONCEPT RESTAURANTS, INC.",,"1227 SPRUCE STREET","SUITE 201","BOULDER","CO","80302",,,,,,,"840692465","3034438424",,,,"2011-06-11T16:28:37-0500","KEVIN BROWN","2011-06-11T16:28:37-0500","KEVIN BROWN",,,82,82,0,0,82,,,,,,,"4A4B4Q","1",,"1",,"1",,"1",,,,,,"1","1","3",,,,"FILING_RECEIVED","2011-06-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613140757P030075353377001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SCHROEDER BROTHERS INC PROFIT SHARING PLAN","001","1977-01-01","SCHROEDER BROTHERS, INC",,,"9342 - 70TH AVENUE NE",,"ELGIN","MN","559329516",,,,,,,,,,,,,,,,,,"411274901","5078762557","111100","SCHROEDER BROTHERS, INC",,"9342 - 70TH AVENUE NE",,"ELGIN","MN","559329516",,,,,,,"411274901","5078762557",,,,"2011-06-02T07:33:30-0500","SHIRLEY SCHROEDER",,,,,5,5,0,0,5,0,5,5,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613101149P030010898786001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"O'NEIL PRINTING, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1996-01-01","ONEIL PRINTING, INC",,,"366 N 2ND AVE",,"PHOENIX","AZ","850031517",,,,,,,,,,,,,,,,,,"860177963","6022587789","323100","ONEIL PRINTING, INC",,"366 N 2ND AVE",,"PHOENIX","AZ","850031517",,,,,,,"860177963","6022587789",,,,"2011-06-13T10:11:44-0500","MELISSA COLE","2011-06-13T10:11:44-0500","MELISSA COLE",,,92,66,0,22,88,1,89,89,0,,"2O2Q",,,,"1",,,,"1",,"1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613105645P040077270737001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CEDARS YOUTH SERVICES HEALTH PLAN","502","2003-05-01","CEDARS YOUTH SERVICES",,,"6601 PIONEERS BLVD, STE 1",,"LINCOLN","NE","68506",,,,,,,,,,,,,,,,,,"470551975","4024345437","624100","CEDARS YOUTH SERVICES",,"6601 PIONEERS BLVD, STE 1",,"LINCOLN","NE","68506",,,,,,,"470551975","4024345437",,,,"2011-06-13T10:48:10-0500","JAMES BLUE",,,,,259,138,0,0,138,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110613125908P040077336721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED TALENT AGENCY, INC. HEALTH & WELFARE PLAN","501","2002-01-01","UNITED TALENT AGENCY, INC.",,,"9560 WILSHIRE BLVD","SUITE 400","BEVERLY HILLS","CA","90212",,,,,,,"9560 WILSHIRE BLVD","SUITE 400","BEVERLY HILLS","CA","90212",,,,,,,"954312582","3102736700","711410","UNITED TALENT AGENCY, INC.",,"9560 WILSHIRE BLVD","SUITE 400","BEVERLY HILLS","CA","90212",,,,,,,"954312582","3102736700",,,,"2011-06-13T12:43:17-0500","JEFFREY DALLA BETTA","2011-06-13T12:43:17-0500","JEFFREY DALLA BETTA",,,272,297,15,7,319,0,319,0,0,,,"4A4B4D4E4H4L","1","0","0","0","1","0","0","0",,"0","0",,,"1","2",,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110610133951P040075708753001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRACHTE BUILDING SYSTEMS WELFARE PLAN","502","2005-01-01","TRACHTE BUILDING SYSTEMS INC.",,,"314 WILBURN ROAD",,"SUN PRAIRIE","WI","53590",,,,,,,,,,,,,,,,,,"390662360","6083273156","339900","TRACHTE BUILDING SYSTEMS INC.",,"314 WILBURN ROAD",,"SUN PRAIRE","WI","53590",,,,,,,"390662360","6083273156",,,,"2011-06-10T13:39:28-0500","PAMELA KLUTE",,,,,291,261,0,0,261,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110610134038P030073723601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COOLEY GROUP, INC. EMPLOYEES' PROFIT SHARING PLAN & TRUST","001","1956-01-01","COOLEY GROUP, INC.",,,"806 LINDEN AVENUE, SUITE 500",,"ROCHESTER","NY","146252789",,,,,,,,,,,,,,,,,,"160755083","5853851880","541990","COOLEY GROUP, INC.",,"806 LINDEN AVENUE, SUITE 500",,"ROCHESTER","NY","146252789",,,,,,,"160755083","5853851880",,,,"2011-06-10T13:40:28-0500","STUART I. BOYAR",,,,,31,28,0,2,30,0,30,30,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-10","Filed with authorized/valid electronic signature",, "20110612124325P030002194675001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ST. MARYS CREDIT UNION LIFE AND DISABILITY PLAN","503","2006-01-01","ST. MARYS CREDIT UNION",,,"293 BOSTON POST ROAD WEST",,"MARLBOROUGH","MA","01752",,,,,,,,,,,,,,,,,,"041802000","8665857628","522130","MAUREEN NOVIELLO",,"293 BOSTON POST ROAD WEST",,"MARLBOROUGH","MA","01752",,,,,,,"041802000","5084906748",,,,"2011-06-12T12:43:21-0500","JEFFREY S. CAVES",,,,,119,119,,,119,,,,,,,"4B4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-12","Filed with authorized/valid electronic signature",, "20110616103017P040359927648001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JOHN B. FONTANA, DMD, PLLC 401K PLAN","001","2003-01-01","JOHN B. FONTANA, DMD, PLLC",,,"2 STOWE ROAD",,"PEEKSKILL","NY","105662570",,,,,,,,,,,,,,,,,,"134190261","9147399263","621210","JOHN B. FONTANA, DMD, PLLC",,"2 STOWE ROAD",,"PEEKSKILL","NY","105662570",,,,,,,"134190261","9147399263",,,,"2011-06-16T10:26:48-0500","JOHN FONTANA",,,,,3,3,0,0,3,0,3,3,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616173205P040011653618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DANCE IN THE RIVER, INC. PROFIT SHARING PLAN","001","2005-03-25","DANCE IN THE RIVER, INC.",,"MORRIE PIGOTT","5128 N 49TH STREET",,"RUSTON","WA","98407",,,,,,,,,,,,,,,,,,"202530514","2532307064","531310","DANCE IN THE RIVER, INC.","MORRIE PIGOTT","5128 N 49TH STREET",,"RUSTON","WA","98407",,,,,,,"202530514","2532307064",,,,"2011-06-16T17:15:09-0500","MORRIE PIGOTT",,,,,2,2,,,2,,2,,,,"2N",,,,,"1",,,,"1","1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616152124P030077131745001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"PECO, INC. 401(K) PROFIT SHARING PLAN","002","1971-01-01","PECO, INC.",,,"4707 SE 17TH AVE",,"PORTLAND","OR","97202",,,,,,,"4707 SE 17TH AVE",,"PORTLAND","OR","97202",,,,,,,"930561112","5032336401","336410","PECO, INC.",,"4707 SE 17TH AVE",,"PORTLAND","OR","97202",,,,,,,"930561112","5032336401",,,,"2011-06-16T15:04:16-0500","MERRICK SMITH",,,,,102,86,0,26,112,1,113,93,10,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617151353P030077736977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE CENTER FOR CANCER AND BLOOD DISORDER WELFARE PLAN","501","2006-01-01","THE CENTER FOR CANCER AND BLOOD DISORDER",,,"800 WEST MAGNOLIA",,"FORT WORTH","TX","761044611",,,,,,,,,,,,,,,,,,"752512142","8177597000","621399","THE CENTER FOR CANCER AND BLOOD DISORDER",,"800 WEST MAGNOLIA",,"FORT WORTH","TX","761044611",,,,,,,"752512142","8177597000",,,,"2011-06-17T15:13:38-0500","TAMMY MASK",,,,,126,130,5,0,135,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110620181424P030011523714001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHRED-IT USA, INC WELFARE BENEFITS PLAN","501","2002-01-01","SHRED-IT USA, INC",,,,,,,,"2794 SOUTH SHERIDAN WAY",,"OAKVILLE","ONTARIO","CN","L6J7T4",,,,,,,,,,,,"980157899","9058292794","561900","SHRED-IT USA, INC",,,,,,,"2794 SOUTH SHERIDAN WAY",,"OAKVILLE","ONTARIO","CN","L6J7T4","980157899","9058292794",,,,"2011-06-20T18:14:15-0500","PUNAM MAINI",,,,,1120,1026,27,0,1053,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110621121519P040012070370001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPRINGER, CASEY & DIENSTAG, P.C. PROFIT SHARING PLAN","001","1987-01-01","SPRINGER, CASEY & DIENSTAG, P.C.",,,"100 W MONROE ST STE 800",,"CHICAGO","IL","60603",,,,,,,,,,,,,,,,,,"363418579","3123720800","541110","SPRINGER, CASEY & DIENSTAG, P.C.",,"100 W MONROE ST STE 800",,"CHICAGO","IL","60603",,,,,,,"363418579","3123720800",,,,"2011-06-21T12:14:36-0500","EDWARD M. SPRINGER",,,,,6,5,0,1,6,0,6,5,0,,"2T3D2E2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621112513P030011583922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NATIONAL CATHODE CORPORATION 401(K) PROFIT SHARING PLAN","001","1997-01-01","NATIONAL CATHODE CORPORATION",,,"269 ESSEX STREET",,"HACKENSACK","NJ","07601",,,,,,,,,,,,,,,,,,"135660851","2014579770","339900","NATIONAL CATHODE CORPORATION",,"269 ESSEX STREET",,"HACKENSACK","NJ","07601",,,,,,,"135660851","2014579770",,,,"2011-06-21T11:18:11-0500","MARY EVANISKO",,,,,5,5,0,0,5,0,5,5,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621102059P040372991120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERNATIONAL UNION LOCAL 1264 SAVINGS SECURITY PLAN","001","1997-01-01","UAW LOCAL 1264",,,"7450 15 MILE RAD",,"STERLING HEIGHTS","MI","48312",,,,,,,"7450 15 MILE RAD",,"STERLING HEIGHTS","MI","48312",,,,,,,"381788878","5862680060","813930","UAW LOCAL 1264",,"7450 15 MILE RAD",,"STERLING HEIGHTS","MI","48312",,,,,,,"381788878","5862680060",,,,"2011-06-21T10:04:57-0500","JAMES LINCK",,,,,2,2,0,0,2,0,2,0,0,,"2J",,"0","0","1","0","0","0","1","0",,"0","0","0","1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616143723P040079256321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OEM FABRICATORS, INC. EMPLOYEE BENEFIT PLAN","502","2005-02-01","OEM FABRICATORS, INC.",,,"300 MCMILLAN RD.",,"WOODVILLE","WI","540289578",,,,,,,,,,,,,,,,,,"391571676","7156982111","332900","OEM FABRICATORS, INC.",,"300 MCMILLAN RD.",,"WOODVILLE","WI","540289578",,,,,,,"391571676","7156982111",,,,"2011-06-16T10:56:48-0500","LARRY LARSEN",,,,,164,244,2,0,246,,,,,,,"4A4B4F4D4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616105653P030011170050001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMEREX CORP. CAFETERIA PLAN","503","1987-07-01","AMEREX CORP.",,"BRIAN JUSTINGER","PO BOX 81",,"TRUSSVILLE","AL","351730081",,,,,,,"7595 GADSDEN HWY.",,"TRUSSVILLE","AL","35173",,,,,,,"630595141","2056553271","339900","AMEREX CORP.","BRIAN JUSTINGER","PO BOX 81",,"TRUSSVILLE","AL","351730081",,,,,,,"630595141","2056553271",,,,"2011-06-16T10:56:19-0500","BRIAN JUSTINGER",,,,,484,468,0,0,468,,468,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617141344P040079903217001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ONGWEOWEH CORPORATION 401K PLAN","001","1999-01-01","ONGWEOWEH CORPORATION",,,"P.O. BOX 3300",,"ITHACA","NY","14852",,,,,,,,,,,,,,,,,,"161374508","6072577763","423990","ONGWEOWEH CORPORATION",,"P.O. BOX 3300",,"ITHACA","NY","14852",,,,,,,"161374508","6072577763",,,,"2011-06-17T13:58:58-0500","FRANCIS BONAMIE",,,,,50,51,0,5,56,0,56,51,1,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617142921P030077716193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AIRSPAN NETWORKS, INC 401(K) PLAN","001","1999-02-26","AIRSPAN NETWORKS, INC",,,"777 YAMATO ROAD","SUITE 310","BOCA RATON","FL","33431",,,,,,,,,,,,,,,,,,"270670097","5618938652","334200","AIRSPAN NETWORKS, INC",,"777 YAMATO ROAD","SUITE 310","BOCA RATON","FL","33431",,,,,,,"270670097","5618938652","AIRSPAN NETWORKS, INC","752743995","001","2011-06-17T14:29:15-0500","DEBBIE SIMON",,,,,35,20,0,14,34,0,34,28,0,,"2E2F2G2T3D2S2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617080311P040011703474001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST FIBER CORPORATION OF AMERICA PROFIT SHARING PLAN AND TRUST","001","1988-01-01","FIRST FIBER CORPORATION OF AMERICA","FIRST FIBER CORPORATION OF AMERICA","JAN LAMBERT","44 W. LANCASTER AVENUE",,"ARDMORE","PA","19003",,,,,,,"44 W. LANCASTER AVENUE",,"ARDMORE","PA","19003",,,,,,,"232430898","6106429570","423930","FIRST FIBER CORPORATION OF AMERICA","JAN LAMBERT","410 LANCASTER AVENUE",,"HAVERFORD","PA","19041",,,,,,,"232430898","6106429570",,,,"2011-06-13T11:00:09-0500","JAN LAMBERT",,,,,2,2,,,2,,2,2,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110620182438P030079444721001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLACKFOOT TELEPHONE COOPERATIVE, INC. LTD, LIFE AND AD AND D PLAN","512","2004-04-01","BLACKFOOT TELEPHONE COOPERATIVE, INC.",,,"1221 NORTH RUSSELL STREET",,"MISSOULA","MT","59808",,,,,,,,,,,,,,,,,,"810251379","4065412121","517000","BLACKFOOT TELEPHONE COOPERATIVE, INC.",,"1221 NORTH RUSSELL STREET",,"MISSOULA","MT","59808",,,,,,,"810251379","4065412121",,,,"2011-06-20T18:24:32-0500","WILLIAM SQUIRES",,,,,147,133,0,0,133,,,,,,,"4B4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110616143923P040079258193001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DOCTORS INN TWO INC 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","DOCTORS INN TWO INC",,,"13495 GULF BLVD",,"MADEIRA BEACH","FL","33708",,,,,,,,,,,,,,,,,,"320217120","7273914100","541990","DOCTORS INN TWO INC",,"13495 GULF BLVD",,"MADEIRA BEACH","FL","33708",,,,,,,"320217120","7273914100",,,,"2011-06-16T02:39:20-0500","DOCTORS INN TWO INC",,,,,0,6,0,0,6,0,6,3,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616154759P040079316369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADVANCED TRAINING AND REHAB LL 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","ADVANCED TRAINING AND REHAB LL",,,"14450 S OUTER 40",,"CHESTERFIELD","MO","63017",,,,,,,,,,,,,,,,,,"431929280","3144349997","621111","ADVANCED TRAINING AND REHAB LL",,"14450 S OUTER 40",,"CHESTERFIELD","MO","63017",,,,,,,"431929280","3144349997",,,,"2011-06-16T03:47:57-0500","ADVANCED TRAINING AND REHAB LL",,,,,22,28,0,1,29,0,29,28,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617095818P040079769617001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"AST BEARINGS, LLC 401(K) PLAN","001","2007-12-20","AST BEARINGS, LLC",,,"115 MAIN ROAD",,"MONTVILLE","NJ","07045",,,,,,,"115 MAIN ROAD",,"MONTVILLE","NJ","07045",,,,,,,"261389201","9733352230","423800","AST BEARINGS, LLC",,"115 MAIN ROAD",,"MONTVILLE","NJ","07045",,,,,,,"261389201","9733352230",,,,"2011-06-17T09:54:33-0500","GAIL JOHNSON",,,,,61,55,0,5,60,0,60,49,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617101934P040079777233002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DEALER SERVICES CORPORATION EMPLOYEE BENEFIT PLAN","502","2006-05-02","DEALER SERVICES CORPORATION",,,"1320 CITY CENTER STREET, SUITE 100",,"CARMEL","IN","46032",,,,,,,,,,,,,,,,,,"201990165","3175713721","522298","DEALER SERVICES CORPORATION",,"1320 CITY CENTER STREET, SUITE 100",,"CARMEL","IN","46032",,,,,,,"201990165","3175713721",,,,"2011-06-16T06:02:12-0500","PEGGY BOYD",,,,,368,335,18,,353,,,,,,,"4A4B4D4E","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621091429P040082182017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROSS LAW OFFICES P.L.L. PROFIT SHARING PLAN","001","1968-12-05","ROSS LAW OFFICES P.L.L.",,,"406 NORTH MARKET STREET",,"WOOSTER","OH","44691",,,,,,,,,,,,,,,,,,"341757645","3302641213","541110","ROSS LAW OFFICES P.L.L.",,"406 NORTH MARKET STREET",,"WOOSTER","OH","44691",,,,,,,"341757645","3302641213",,,,"2011-06-21T09:14:23-0500","WILLIAM F. ROSS","2011-06-21T09:14:23-0500","WILLIAM F. ROSS",,,4,3,0,1,4,0,4,4,0,,"2T3D2E2G2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621083159P040082165953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STONE VALLEY CONSTRUCTION, INC.","501","2007-01-01","STONE VALLEY CONSTRUCTION, INC.",,,"253 EAST PINE GROVE ROAD",,"PINE GROVE MILLS","PA","16868",,,,,,,,,,,,,,,,,,"251391872","8142347309","236110","STONE VALLEY CONSTRUCTION, INC.",,"253 EAST PINE GROVE ROAD",,"PINE GROVE MILLS","PA","16868",,,,,,,"251391872","8142347309",,,,"2011-06-21T08:31:52-0500","MARIE DEVINNEY","2011-06-21T08:31:52-0500","MARIE DEVINNEY",,,123,117,0,0,117,,,,,,,"4A4B4H4F4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616073450P030076934785001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"LONG TERM DISABILITY","505","1991-05-01","SALEM COMMUNITY HOSPITAL",,,"1995 EAST STATE STRET",,"SALEM","OH","44460",,,,,,,"1995 EAST STATE STRET",,"SALEM","OH","44460",,,,,,,"341041385","3303327214","622000","SALEM COMMUNITY HOSPITAL",,"1995 EAST STATE STRET",,"SALEM","OH","44460",,,,,,,"341041385","3303327214",,,,"2011-06-15T15:13:51-0500","BARBARA HIRST","2011-06-15T14:30:41-0500","MICHAEL GIANGARDELLA",,,640,615,,,615,,615,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616180256P030011200882001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EL PASO CORPORATION RETIREMENT SAVINGS PLAN","002","1992-07-01","EL PASO CORPORATION",,,"PO BOX 2511, C/O CORP. ACCOUNTING","1001 LOUISIANA STREET","HOUSTON","TX","77002",,,,,,,,,,,,,,,,,,"760568816","7134202600","551112","EL PASO CORPORATION",,"PO BOX 2511, C/O CORP. ACCOUNTING","1001 LOUISIANA STREET","HOUSTON","TX","77002",,,,,,,"760568816","7134202600",,,,"2011-06-16T18:01:36-0500","WAYNE WILLIAMS","2011-06-16T17:52:19-0500","JEFF STANBERRY",,,8897,4876,5369,3884,14129,188,14317,14191,0,,"2E2F2J2G2K2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617104328P040362655920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ERACLIDES & HALL 401(K) PROFIT SHARING PLAN.","001","2000-01-01","ERACLIDES & HALL P.A.",,,"2030 BEE RIDGE RD",,"SARASOTA","FL","34239",,,,,,,,,,,,,,,,,,"650688536","9419550333","812990","ERACLIDES & HALL P.A.",,"2030 BEE RIDGE RD",,"SARASOTA","FL","34239",,,,,,,"650688536","9419550333",,,,"2011-06-17T10:43:24-0500","REBECCA OKEEFE","2011-06-17T10:43:24-0500","REBECCA OKEEFE",,,47,30,0,14,44,0,44,42,1,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617110637P040362698176001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"VAROLII CORPORATION 401K PLAN","001","2000-06-01","VAROLII CORPORATION",,,"821 2ND AVE",,"SEATTLE","WA","981041578",,,,,,,,,,,,,,,,,,"912028910","2069021608","517000","VAROLII CORPORATION",,"821 2ND AVE",,"SEATTLE","WA","981041578",,,,,,,"912028910","2069021608","0000000000000000000000000000000000000000000000000000000000000000000000",,,"2011-06-17T11:06:32-0500","LEILA KIRSKE","2011-06-17T11:06:32-0500","LEILA KIRSKE",,,369,246,0,87,333,1,334,329,1,,"2E2F2G2J2K2S2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617121154P030366717888001","2010-01-01","2010-12-31","3",,,,,,,,,,,,"TEAMSTERS JOINT COUNCIL NO. 10 SEVERANCE PLAN","501","1974-07-12","TRUSTEES OF TEAMSTERS JOINT COUNCIL NO. 10 SEVERANCE PLAN",,,"53 GOFFSTOWN ROAD, SUITE A",,"MANCHESTER","NH","03105",,,,,,,"53 GOFFSTOWN ROAD, SUITE A",,"MANCHESTER","NH","03105",,,,,,,"056042482","6036259731","813930","TRUSTEES OF TEAMSTERS JOINT COUNCIL NO. 10 SEVERANC",,"53 GOFFSTOWN ROAD, SUITE A",,"MANCHESTER","NH","03105",,,,,,,"056042482","6036259731",,,,"2011-06-17T08:09:35-0500","JEFFREY PADELLARO, TRUSTEE",,,,,101,86,6,5,97,,,,,,,"4I",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621100602P030079808497001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CREATIVE PUBLISHING SOLUTIONS, INC. 401(K) PLAN","001","2008-01-01","CREATIVE PUBLISHING SOLUTIONS, INC.",,,"1877 W. 4000 SO.",,"ROY","UT","84067",,,,,,,,,,,,,,,,,,"205905475","8017814400","541800","CREATIVE PUBLISHING SOLUTIONS, INC.",,"1877 W. 4000 SO.",,"ROY","UT","84067",,,,,,,"205905475","8017814400",,,,"2011-06-20T17:28:59-0500","KELLY SHAW","2011-06-20T17:28:59-0500","KELLY SHAW",,,28,27,0,2,29,0,29,0,0,,"2E2F2G2J2K3D",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621143009P030377542848003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JOHN M O'QUINN & ASSOCIATES PLLC","501","1993-09-01","JOHN M O'QUINN & ASSOCIATES PLLC",,,"2000 WEST LOOP SOUTH SUITE 1530",,"HOUSTON","TX","77027",,,,,,,,,,,,,,,,,,"742121248","7135260664","541110","JOHN M O'QUINN & ASSOCIATES PLLC",,"2000 WEST LOOP SOUTH SUITE 1530",,"HOUSTON","TX","77027",,,,,,,"742121248","7135260664",,,,"2011-06-21T15:28:42-0500","C. DAVID TOWERY","2011-06-21T15:28:48-0500","C. DAVID TOWERY",,,107,86,2,,88,,,,,,,"4A4B4D4E4F4H4L4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616095137P030076987953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHILIPP LITHOGRAPHING CO 401K SAVINGS PLAN","002","2004-01-01","PHILIPP LITHOGRAPHING CO",,,"1960 WISCONSIN AVE",,"GRAFTON","WI","530242606",,,,,,,,,,,,,,,,,,"390537980","2623771100","323100","PHILIPP LITHOGRAPHING CO",,"1960 WISCONSIN AVE",,"GRAFTON","WI","530242606",,,,,,,"390537980","2623771100",,,,"2011-06-16T09:39:45-0500","PETER BUENING",,,,,22,21,0,1,22,0,22,22,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616150651P030077126129001","2010-03-31","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"TOBIN WINE COMPANY PROFIT SHARING PLAN","001","2010-03-31","TOBIN WINE COMPANY",,,"5078 NIGHTHAWK WAY",,"OCEANSIDE","CA","92056",,,,,,,,,,,,,,,,,,"272259018","8583711417","424800","TOBIN WINE COMPANY",,"5078 NIGHTHAWK WAY",,"OCEANSIDE","CA","92056",,,,,,,"272259018","8583711417",,,,"2011-06-16T14:25:18-0500","JAMES TOBIN",,,,,1,1,0,0,1,0,1,1,0,,"2E2G3D2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616141050P040360366496001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"B. R. FRIES & ASSOCIATES, LLC 401K PLAN","001","1989-07-01","B.R. FRIES AND ASSOCIATES, LLC",,,"34 W 32ND ST",,"NEW YORK","NY","10001",,,,,,,"34 W 32ND ST",,"NEW YORK","NY","10001",,,,,,,"331032672","2125633300","236200","B.R. FRIES AND ASSOCIATES, LLC",,"34 W 32ND ST",,"NEW YORK","NY","10001",,,,,,,"331032672","2125633300",,,,"2011-06-16T14:07:17-0500","BARRY FRIES",,,,,40,36,0,9,45,0,45,26,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110621132350P040082312177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SMITH INVESTMENT COMPANY GROUP INSURANCE PLAN","501","2004-01-01","SMITH INVESTMENT COMPANY LLC",,,"P. O. BOX 245008",,"MILWAUKEE","WI","53224",,,,,,,"11270 W PARK PLACE",,"MILWAUKEE","WI","53224",,,,,,,"263913773","4143594047","323100","SMITH INVESTMENT COMPANY LLC",,"P. O. BOX 245008",,"MILWAUKEE","WI","53224",,,,,,,"263913773","4143594047",,,,"2011-06-21T13:22:49-0500","WESLEY ULRICH",,,,,221,139,13,0,152,0,152,,,,,"4A4B4D4E4F4H","1",,,"1","1",,,"1",,,,,,"1","4",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621134407P040082321233001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLES J. LEVIN, P.A. PROFIT SHARING PLAN","002","2004-06-01","CHARLES J. LEVIN, P.A.",,,"PO BOX 342727",,"TAMPA","FL","33694",,,,,,,,,,,,,,,,,,"550869358","8132745135","541110","CHARLES J. LEVIN, P.A.",,"PO BOX 342727",,"TAMPA","FL","33694",,,,,,,"550869358","8132745135",,,,"2011-06-21T13:44:00-0500","CHARLES J. LEVIN","2011-06-21T13:44:00-0500","CHARLES J. LEVIN",,,2,1,0,1,2,0,2,2,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616185116P040011658882001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VISITING NURSE CORPORATION OF COLORADO, INC. DENTAL PLAN","507","1991-02-01","VISITING NURSE CORPORATION OF COLORADO, INC.",,,"390 GRANT STREET",,"DENVER","CO","80203",,,,,,,,,,,,,,,,,,"841043351","3037446363","621610","VISITING NURSE CORPORATION OF COLORADO, INC.",,"390 GRANT STREET",,"DENVER","CO","80203",,,,,,,"841043351","3037446363",,,,"2011-06-16T18:51:09-0500","KIMBERLY ROBINSON",,,,,162,162,4,0,166,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616164738P040360721344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SERIGRAPH INC. HEALTH REIMBURSEMENT ARRANGEMENT","506","2004-01-01","SERIGRAPH INC.",,,"3801 EAST DECORAH ROAD",,"WEST BEND","WI","53095",,,,,,,,,,,,,,,,,,"391591367","2623357358","323100","SERIGRAPH INC.",,"3801 EAST DECORAH ROAD",,"WEST BEND","WI","53095",,,,,,,"391591367","2623357358",,,,"2011-06-16T16:47:32-0500","CAROL EADY","2011-06-16T16:47:32-0500","LINDA BUNTROCK",,,448,467,0,0,467,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621085534P030376829728001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BIOPTIX 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","BIOPTIX",,,"1745 38TH ST STE A",,"BOULDER","CO","80301",,,,,,,"1745 38TH ST STE A",,"BOULDER","CO","80301",,,,,,,"383798043","3035455550","541700","BIOPTIX",,"1745 38TH ST STE A",,"BOULDER","CO","80301",,,,,,,"383798043","3035455550","ALPHASNIFFER LLC","200074431",,"2011-06-21T08:54:30-0500","TERRI GIANNETTI",,,,,8,6,0,2,8,0,8,7,0,0,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616094142P030363774784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERNATIONAL RECTIFIER CORPORATION GROUP LONG TERM DISABILITY PLAN","505","1971-05-01","INTERNATIONAL RECTIFIER CORPORATION",,,"101 N. SEPULVEDA BLVD.",,"EL SEGUNDO","CA","90245",,,,,,,"101 N. SEPULVEDA BLVD.",,"EL SEGUNDO","CA","90245",,,,,,,"951528961","3107268000","335900","INTERNATIONAL RECTIFIER CORPORATION",,"101 N. SEPULVEDA BLVD.",,"EL SEGUNDO","CA","90245",,,,,,,"951528961","3107268000",,,,"2011-06-16T04:53:27-0500","JEFFREY BIANCO",,,,,1649,1786,0,0,1786,,1786,,,,,"4H4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616165305P030077172673001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GOLDEN STAR TRADING, INC. DEFINED BENEFIT PENSION PLAN","001","2000-01-01","GOLDEN STAR TRADING, INC.",,,"2370 CRENSHAW BLVD., SUITE M",,"TORRANCE","CA","905013352",,,,,,,,,,,,,,,,,,"770232691","3103288108","424400","GOLDEN STAR TRADING, INC.",,"2370 CRENSHAW BLVD., SUITE M",,"TORRANCE","CA","905013352",,,,,,,"770232691","3103288108",,,,"2011-06-16T16:44:55-0500","NANG WONG",,,,,6,0,0,0,0,0,0,0,0,,"1A1I3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617112051P040079811537008","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"BURKE P. ROBINSON, M.D., P.C. 401K PROFIT SHARING PLAN","001","2002-01-01","BURKE P. ROBINSON, M.D., P.C.",,,"3400-C OLD MILTON PARKWAY, STE 515",,"ALPHARETTA","GA","30005",,,,,,,,,,,,,,,,,,"582612448","7706673090","621111","BURKE P. ROBINSON, M.D., P.C.",,"3400-C OLD MILTON PARKWAY, STE 515",,"ALPHARETTA","GA","30005",,,,,,,"582612448","7706673090",,,,"2011-06-08T06:44:56-0500","BURKE ROBINSON",,,,,6,6,0,0,6,0,6,6,1,,"2E2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617161425P030077770769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COLORADO LITHO, INC.","001","2001-01-01","COLORADO LITHO, INC.",,,"6494 W 91ST AVENUE",,"WESTMINSTER","CO","800310000",,,,,,,,,,,,,,,,,,"841083688","3034300944","323100","COLORADO LITHO, INC.",,"6494 W 91ST AVENUE",,"WESTMINSTER","CO","800310000",,,,,,,"841083688","3034300944",,,,"2011-06-17T16:14:18-0500","RICHARD DOLEZAL",,,,,13,13,0,1,14,0,14,7,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621102225P040082218753001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"BRONXVILLE CARDIOLOGY ASSOC., PC PENSION PLAN","001","1977-04-01","BRONXVILLE CARDIOLOGY ASSOC., PC",,"C/O COLEMAN CORP.","P.O. BOX 1013",,"SYOSSET","NY","11791",,,,,,,"P.O. BOX 1013",,"SYOSSET","NY","11791",,,,,,,"132878268","5163648414","621111","BRONXVILLE CARDIOLOGY ASSOC., PC","C/O COLEMAN CORP.","P.O. BOX 1013",,"SYOSSET","NY","11791",,,,,,,"132878268","5163648414",,,,"2011-06-21T10:22:14-0500","RICHARD BENDA",,,,,7,5,0,0,5,0,5,5,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621102705P040082220081001","2010-01-01","2010-12-31","4","P","1","0","0","0","0","0","0","0","0",,"LEARNING LEADERS, INC. 403(B) DC PLAN","001","2004-01-01","LEARNING LEADERS, INC.",,,"80 MAIDEN LANE","11TH FLOOR","NEW YORK","NY","10038",,,,,,,"80 MAIDEN LANE","11TH FLOOR","NEW YORK","NY","10038",,,,,,,"132658549","2122133370","611000","LEARNING LEADERS, INC.",,"80 MAIDEN LANE","11TH FLOOR","NEW YORK","NY","10038",,,,,,,"132658549","2122133370",,,,"2011-06-21T10:17:13-0500","ANDREW CHIPOK",,,,,64,52,0,11,63,0,63,58,0,,"2L",,"1",,,,"1",,,,,,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616141557P040079240129003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"S.O. GROUP,S.C. EMPLOYEES' PROFIT SHARING PLAN & T","001","1986-06-16","S.O. GROUP, S.C.",,,"1725 W. HARRISON STREET - SUITE 409",,"CHICAGO","IL","606123828",,,,,,,"1725 W. HARRISON STREET - SUITE 409",,"CHICAGO","IL","606123828",,,,,,,"363451285","3129422302","621111","S.O. GROUP, S.C.",,"1725 W. HARRISON STREET - SUITE 409",,"CHICAGO","IL","606123828",,,,,,,"363451285","3129422302",,,,"2011-06-16T05:30:20-0500","THOMAS WITT",,,,,5,5,,,5,,5,5,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616141703P030077099217001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SWORD FLOYD & MOODY PLLC 401K PLAN","001","2004-01-01","SWORD FLOYD & MOODY PLLC",,,"218 W MAIN",,"RICHMOND","KY","40475",,,,,,,"218 W MAIN",,"RICHMOND","KY","40475",,,,,,,"610486753","8596233728","541110","SWORD FLOYD & MOODY PLLC",,"218 W MAIN",,"RICHMOND","KY","40475",,,,,,,"610486753","8596233728",,,,"2011-06-16T14:16:11-0500","DAVID BOHANNON",,,,,23,19,0,4,23,0,23,20,0,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616103944P030363897104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INX INTERNATIONAL GROUP MEDICAL/DENTAL PLAN","505","1974-06-01","INX INTERNATIONAL INK CO.",,,"150 N MARTINGALE RD, SUITE 700",,"SCHAUMBURG","IL","60173",,,,,,,"150 N MARTINGALE RD, SUITE 700",,"SCHAUMBURG","IL","60173",,,,,,,"360702910","6303821800","325900","INX INTERNATIONAL INK CO.",,"150 N MARTINGALE RD, SUITE 700",,"SCHAUMBURG","IL","60173",,,,,,,"360702910","6303821800",,,,"2011-06-16T10:23:19-0500","SUSAN SUPERGAN",,,,,1000,1024,,,1024,,1024,,,,,"4A4D4E","1",,,"1","1",,,"1",,,,,,"1","7","1",,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616104413P040079151425001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE 504","504","2007-07-01","CARRINGTON MORTGAGE SERVICES, LLC",,,"1610 ST. ANDREW PLACE SUITE 150-B",,"SANTA ANA","CA","927050000000",,,,,,,,,,,,,,,,,,"208745846","8772673555","522292","CARRINGTON MORTGAGE SERVICES, LLC",,"1610 ST. ANDREW PLACE SUITE 150-B",,"SANTA ANA","CA","927050000000",,,,,,,"208745846","8772673555",,,,"2011-06-16T10:44:12-0500","KATHERINE KHALEEL",,,,,587,727,0,0,727,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616160312P040079326017001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CROOKHAM COMPANY EMPLOYEE BENEFIT TRUST","501","1994-01-01","CROOKHAM COMPANY",,,"PO BOX 520",,"CALDWELL","ID","83605",,,,,,,"301 W WAREHOUSE",,"CALDWELL","ID","83605",,,,,,,"820186906","2084597451","111900","CROOKHAM COMPANY",,"PO BOX 520",,"CALDWELL","ID","83605",,,,,,,"820186906","2084597451",,,,"2011-06-16T13:59:46-0500","LISA LARROCEA-COWGER","2011-06-16T14:12:07-0500","MARY CROOKHAM",,,83,79,,,79,,79,,,,,"4Q4F4E4D4B4A","1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617124340P040079861025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MATTHEW LAWRENCE CONSTRUCTION, INC. RETIREMENT TRUST","003","2004-01-01","MATTHEW LAWRENCE CONSTRUCTION, INC.",,,"338 FAIRHILLS DRIVE",,"SAN RAFAEL","CA","94901",,,,,,,,,,,,,,,,,,"680406404","4154565547","236110","MATTHEW LAWRENCE CONSTRUCTION, INC.",,"338 FAIRHILLS DRIVE",,"SAN RAFAEL","CA","94901",,,,,,,"680406404","4154565547",,,,"2011-06-17T12:19:26-0500","YVONNE LOVELL-LAWRENCE",,,,,7,6,0,1,7,0,7,,0,,"1A3D1G",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110620151513P040011989762001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HUTCHINSON HEALTH CARE WELFARE BENEFITS PLAN","501","2008-01-01","HUTCHINSON HEALTH CARE",,,"1095 HIGHWAY 15 SOUTH",,"HUTCHINSON","MN","55350",,,,,,,,,,,,,,,,,,"841715908","3202344800","622000","HUTCHINSON HEALTH CARE",,"1095 HIGHWAY 15 SOUTH",,"HUTCHINSON","MN","55350",,,,,,,"841715908","3202344800",,,,"2011-06-20T15:15:02-0500","BECKY STREICH",,,,,560,540,35,0,575,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620151638P040081742897001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"LODGE LUMBER COMPANY, INC. 401(K) PROFIT SHARING PLAN","003","1988-01-01","LODGE LUMBER COMPANY, INC.",,,"5001 OATES ROAD",,"HOUSTON","TX","77013",,,,,,,"5001 OATES ROAD",,"HOUSTON","TX","77013",,,,,,,"741678671","7136726679","423300","LODGE LUMBER COMPANY, INC.",,"5001 OATES ROAD",,"HOUSTON","TX","77013",,,,,,,"741678671","7136726679",,,,"2011-06-20T15:15:50-0500","WALTER LUCK",,,,,42,42,0,1,43,1,44,44,0,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110621120101P030079858929001","2010-05-01","2011-04-30","2",,"0","0","0","0","0","0","0","0","0",,"MID-KANSAS COOPERATIVE ASSOCIATION WELFARE PLAN","501","1989-06-01","MID-KANSAS COOPERATIVE ASSOCIATION",,,"307 WEST COLE, BOX D",,"MOUNDRIDGE","KS","671070582",,,,,,,,,,,,,,,,,,"480695087","6203456328","115110","MID-KANSAS COOPERATIVE ASSOCIATION",,"307 WEST COLE, BOX D",,"MOUNDRIDGE","KS","671070582",,,,,,,"480695087","6203456328",,,,"2011-06-21T09:09:26-0500","DANNY POSCH","2011-06-21T09:09:26-0500","DANNY POSCH",,,193,193,,,193,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621120310P030079860145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ISS FINANCIAL & INSURANCE NETWORK 401(K) PLAN","001","2007-09-01","ISS FINANCIAL & INSURANCE NETWORK",,,"15 ROSZEL ROAD","NORTH ENTRANCE, SUITE 107","PRINCETON","NJ","08540",,,,,,,,,,,,,,,,,,"043695395","6094522490","524140","ISS FINANCIAL & INSURANCE NETWORK",,"15 ROSZEL ROAD","NORTH ENTRANCE, SUITE 107","PRINCETON","NJ","08540",,,,,,,"043695395","6094522490",,,,"2011-06-21T11:51:42-0500","JOHN FARRELL",,,,,5,3,0,0,3,0,3,3,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616101758P030023969527001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIGITAL DEVICES, INC. PROFIT SHARING PLAN","003","1992-01-01","DIGITAL DEVICES INC.",,,"46 HILLTOWN PIKE",,"LINE LEXINGTON","PA","189329518",,,,,,,,,,,,,,,,,,"232087223","2155272897","518210","DIGITAL DEVICES INC.",,"46 HILLTOWN PIKE",,"LINE LEXINGTON","PA","189329518",,,,,,,"232087223","2155272897",,,,"2011-06-16T10:07:25-0500","JOAN M. WILLIAMS",,,,,10,7,0,1,8,0,8,8,0,,"2E2G2J3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616151214P040360505792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES M. HAWLEY PROFIT SHARING PLAN","001","1999-01-01","JAMES M. HAWLEY",,,"820 SILVER SPRING RD","PO BOX 628","SOUTHPORT","CT","06890",,,,,,,,,,,,,,,,,,"061000810","2032564791","541110","JAMES M. HAWLEY",,"820 SILVER SPRING RD","PO BOX 628","SOUTHPORT","CT","06890",,,,,,,"061000810","2032564791",,,,"2011-06-16T11:37:59-0500","JAMES M. HAWLEY",,,,,2,2,0,0,2,0,2,2,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617140324P040079898977003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NICHOLAS D BUCCIERI CPA 401K PROFIT SHARING PLAN","001","1993-01-01","NICHOLAS D BUCCIERI, CPA",,,"6510 MILESTRIP ROAD",,"ORCHARD PARK","NY","14127",,,,,,,,,,,,,,,,,,"161394551","7166677777","541211","NICHOLAS D BUCCIERI CPA",,"6510 MILESTRIP ROAD",,"ORCHARD PARK","NY","14127",,,,,,,"161394551","7166677777",,,,"2011-06-17T13:47:01-0500","NICHOLAS D BUCCIERI","2011-06-17T13:48:09-0500","NICHOLAS D BUCCIERI",,,5,5,,,5,,5,5,,,"3D3B2R2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617143518P030011270546001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIKE PREIS INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","MIKE PREIS, INC.",,,"PO BOX 280","39 LOWER MAIN STREET","CALLICOON","NY","12723",,,,,,,,,,,,,,,,,,"204768509","8458874210","541110","MIKE PREIS, INC.",,"PO BOX 280","39 LOWER MAIN STREET","CALLICOON","NY","12723",,,,,,,"204768509","8458874210",,,,"2011-06-17T02:35:15-0500","MIKE PREIS, INC.",,,,,15,15,0,1,16,0,16,15,0,,"2E2G2J2K2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617163550P030011281138001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CT FIRE PROTECTION INC. 401(K) PLAN","001","2007-04-01","CT FIRE PROTECTION, INC.",,,"3860 WILLIAMSON RD",,"FORT MEYERS","FL","33905",,,,,,,,,,,,,,,,,,"593628130","2396942490","812990","CT FIRE PROTECTION, INC.",,"3860 WILLIAMSON RD",,"FORT MEYERS","FL","33905",,,,,,,"593628130","2396942490",,,,"2011-06-17T16:35:41-0500","LORALEI NADER","2011-06-17T16:35:41-0500","LORALEI NADER",,,8,0,0,2,2,0,2,2,0,,"2E2F2G2J3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616130218P030364176560001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"MAINE TRAILER 401(K) PLAN","001","1992-01-01","MAINE TRAILER, INC.",,,"1701 HAMMOND STREET",,"HERMON","ME","04401",,,,,,,"1701 HAMMOND STREET",,"HERMON","ME","04401",,,,,,,"061605344","2078485718","484110","MAINE TRAILER, INC.",,"1701 HAMMOND STREET",,"HERMON","ME","04401",,,,,,,"061605344","2078485718",,,,"2011-06-16T13:01:20-0500","MAINE TRAILER",,,,,30,18,0,2,20,0,20,18,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616063930P040079023809001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"HOLY FAMILY MEMORIAL LIFE INSURANCE","502","1976-12-01","HOLY FAMILY MEMORIAL, INC.",,,"PO BOX 1450",,"MANITOWOC","WI","542211450",,,,,,,"PO BOX 1450",,"MANITOWOC","WI","542211450",,,,,,,"390806395","9203202011","622000","HOLY FAMILY MEMORIAL, INC.",,"PO BOX 1450",,"MANITOWOC","WI","542211450",,,,,,,"390806395","9203202011",,,,"2011-06-15T14:36:30-0500","LAURA FIELDING","2011-06-15T17:38:32-0500","PATRICIA HUETTL",,,1090,1046,,,1046,,1046,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616151354P030077129361001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLONIAL PARKING OF PHILADELPHIA, INC.","001","2002-01-01","COLONIAL PARKING OF PHILADELPHIA, INC.",,,"715 ORANGE STREET",,"WILMINGTON","DE","19801",,,,,,,"715 ORANGE STREET",,"WILMINGTON","DE","19801",,,,,,,"232700042","3026513610","812930","COLONIAL PARKING OF PHILADELPHIA, INC.",,"715 ORANGE STREET",,"WILMINGTON","DE","19801",,,,,,,"232700042","3026513610",,,,"2011-06-16T14:56:20-0500","WILLIAM PARKS",,,,,38,22,0,6,28,0,28,11,1,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617081418P040362344016001","2008-01-01","2008-12-31","2",,"1","1","0","0","0","0","0","0","0",,"SELECTIVE LABEL & PRINTING, INC. 401(K) SAVINGS PL","001","2008-01-01","SELECTIVE LABEL & PRINTING, INC.",,,"1962 W U.S. ROUTE 30",,"SUGAR GROVE","IL","60554",,,,,,,,,,,,,,,,,,"203464050","6304660091","322200","SELECTIVE LABEL & PRINTING, INC.",,"1962 W U.S. ROUTE 30",,"SUGAR GROVE","IL","60554",,,,,,,"203464050","6304660091",,,,"2011-06-17T08:12:49-0500","MIKE BRUCHER",,,,,12,12,0,,12,0,12,11,0,,"2E2F2G2J2T3D3H",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617100320P030011256626002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CHARLES M DAMUS PROF CORP EMPLOYEES PROFIT SHARING PLAN & TRUST","001","1981-08-31","CHARLES M DAMUS ESQ PROF CORP",,,"624 SOUTH 6TH STREET",,"LAS VEGAS","NV","89101",,,,,,,,,,,,,,,,,,"880174047","7023825034","812990","CHARLES M DAMUS ESQ PROF CORP",,"624 SOUTH 6TH STREET",,"LAS VEGAS","NV","89101",,,,,,,"880174047","7023825034",,,,"2011-06-16T19:20:12-0500","CHARLES M DAMUS",,,,,1,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110620152030P040011989986001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LONG TERM DISABILITY PLAN","502","1985-07-01","GOSHEN HOSPITAL ASSOCIATION, INC.",,,"200 HIGH PARK AVENUE",,"GOSHEN","IN","46526",,,,,,,,,,,,,,,,,,"356001540","5743642898","622000","GOSHEN HOSPITAL ASSOCIATION, INC.",,"200 HIGH PARK AVENUE",,"GOSHEN","IN","46526",,,,,,,"356001540","5743642898",,,,"2011-06-20T15:20:23-0500","ALAN L. WELDY","2011-06-20T15:20:23-0500","ALAN L. WELDY",,,940,967,0,0,967,,,,,,,"4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620152226P040081744913001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BALAJI HOME HEALTH CARE 401(K) PLAN","001","2008-01-01","BALAJI HOME HEALTH CARE",,,"24361 GREENFIELD ROAD","SUITE 306","SOUTHFIELD","MI","48075",,,,,,,,,,,,,,,,,,"203111010","8774248188","621340","BALAJI HOME HEALTH CARE",,"24361 GREENFIELD ROAD","SUITE 306","SOUTHFIELD","MI","48075",,,,,,,"203111010","8774248188",,,,"2011-06-20T15:22:25-0500","ANIL MANCHANDA","2011-06-20T15:22:25-0500","ANIL MANCHANDA",,,21,17,0,4,21,0,21,10,4,,"2E2G2J3D2F2T",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621092918P040025732855001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERTS WESLEYAN COLL & NE SEMINARY FSA","501","1993-09-01","ROBERTS WESLEYAN COLLEGE",,,"2301 WESTSIDE DRIVE",,"ROCHESTER","NY","14624",,,,,,,,,,,,,,,,,,"160743126","5855946260","611000","ROBERTS WESLEYAN COLLEGE",,"2301 WESTSIDE DRIVE",,"ROCHESTER","NY","14624",,,,,,,"160743126","5855946260",,,,"2011-06-21T09:29:12-0500","RUTH A LOGAN",,,,,151,151,0,0,151,,,,,,,"4A4R","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621093008P030002295892005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MAIN STREET CHECKS, INC. FLEXIBLE BENEFIT PLAN","501","2000-02-01","MAIN STREET CHECKS, INC.",,,"920 19TH STREET, NORTH",,"BIRMINGHAM","AL","35203",,,,,,,,,,,,,,,,,,"631201384","2053804000","323100","MAIN STREET CHECKS, INC.",,"920 19TH STREET, NORTH",,"BIRMINGHAM","AL","35203",,,,,,,"631201384","2053804000",,,,"2011-06-16T12:51:11-0500","DOUGLAS D DEETER","2011-06-16T12:51:13-0500","DOUGLAS D DEETER",,,66,63,,,63,,,,,,,"4A4B4D4E4F","1",,,,"1",,,,,,,,"1","1","5",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616161642P030077158017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHADY CANYON GOLF CLUB 401(K) SAVINGS PLAN","001","2008-07-01","THE SHADY CANYON GOLF CLUB, INC.",,,"100 SHADY CANYON DRIVE",,"IRVINE","CA","92603",,,,,,,"100 SHADY CANYON DRIVE",,"IRVINE","CA","92603",,,,,,,"330965956","9498567026","713900","THE SHADY CANYON GOLF CLUB, INC.",,"100 SHADY CANYON DRIVE",,"IRVINE","CA","92603",,,,,,,"330965956","9498567026",,,,"2011-06-16T15:04:10-0500","MICHAEL OHEANY","2011-06-16T16:15:43-0500","SHELLY ROMO COLLETT",,,184,155,0,19,174,0,174,141,6,,"2E2F2G2J2K2T",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110617112746P040011719970001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KANDIYOHI POWER COOPERATIVE 401(K) PENSION PLAN","003","2008-06-01","KANDIYOHI POWER COOPERATIVE",,,"PO BOX 40",,"SPICER","MN","562880040",,,,,,,,,,,,,,,,,,"410345595","3207961155","221100","KANDIYOHI POWER COOPERATIVE",,"PO BOX 40",,"SPICER","MN","562880040",,,,,,,"410345595","3207961155",,,,"2011-06-17T11:11:07-0500","SCOTT FROEMMING",,,,,23,22,0,0,22,0,22,22,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617115125P040362797920001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT M. WALLEY PROFIT-SHARING PLAN","003","1998-01-01","ROBERT M. WALLEY, D.D.S., A PROFESSIONAL CORP",,,"490 POST STREET, SUITE 1205",,"SAN FRANCISCO","CA","94102",,,,,,,,,,,,,,,,,,"942540484","4159565690","621210","ROBERT M. WALLEY, D.D.S., A PROFESSIONAL CORP",,"490 POST STREET, SUITE 1205",,"SAN FRANCISCO","CA","94102",,,,,,,"942540484","4159565690",,,,"2011-06-17T11:36:14-0500","ROBERT WALLEY DDS",,,,,5,5,0,0,5,0,5,5,0,,"2E2A3D2J2H",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617172352P040080014321002","2010-11-20","2010-11-30","2",,,,,"1",,,,,,,"KEY 3 CASTING LLC EMPLOYEE BENEFITS PLAN","501","2009-11-20","KEY 3 CASTING LLC",,,"301 COMMERCE ST STE 3200",,"FORT WORTH","TX","76102",,,,,,,,,,,,,,,,,,"271254606","8173329500","331500","KEY 3 CASTING LLC",,"301 COMMERCE ST STE 3200",,"FORT WORTH","TX","76102",,,,,,,"271254606","8173329500",,,,"2011-06-17T11:48:16-0500","TANYA MCCLANAHAN","2011-06-17T11:48:16-0500","TANYA MCCLANAHAN",,,221,220,1,,221,,,,,,,"4A4B4D4H4Q","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616132808P030364229120001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PARKINSON MACHINERY & MANUFACTURING CORP. 401(K) PLAN","001","1995-01-01","PARKINSON TECHNOLOGIES, INC.",,,"100 GOLDSTEIN DRIVE",,"WOONSOCKET","RI","02895",,,,,,,"100 GOLDSTEIN DRIVE",,"WOONSOCKET","RI","02895",,,,,,,"050471241","4017622100","333200","PARKINSON TECHNOLOGIES, INC.",,"100 GOLDSTEIN DRIVE",,"WOONSOCKET","RI","02895",,,,,,,"050471241","4017622100",,,,"2011-06-16T13:27:29-0500","GREG SILVA",,,,,106,82,0,28,110,0,110,95,3,,"2F2G2J2K2S2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616092651P040079098961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCANDINAVIAN AIRLINES OF NORTH AMERICA INC. 401K SAVINGS AND RETIREMENT PROGRAM","002","1990-01-01","SCANDINAVIAN AIRLINES OF NORTH AMERICA INC.",,,"9 POLITO AVE.",,"LYNDHURST","NJ","070713402",,,,,,,,,,,,,,,,,,"111782393","2018963595","481000","SCANDINAVIAN AIRLINES OF NORTH AMERICA INC.",,"9 POLITO AVE.",,"LYNDHURST","NJ","070713402",,,,,,,"111782393","2018963595",,,,"2011-06-13T09:13:50-0500","COLLEEN KNUDSEN",,,,,191,73,3,79,155,0,155,155,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616102129P040359908528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PATRIOT TECHNOLOGIES INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","PATRIOT TECHNOLOGIES INC.",,,"5108 PEGASUS CT","SUITE F","FREDERICK","MD","21704",,,,,,,,,,,,,,,,,,"521957100","3016957500","541519","PATRIOT TECHNOLOGIES INC.",,"5108 PEGASUS CT","SUITE F","FREDERICK","MD","21704",,,,,,,"521957100","3016957500",,,,"2011-06-16T10:21:23-0500","SHELLY GLADHILL",,,,,69,52,0,23,75,0,75,66,8,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616151554P030077130017001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CARLTON MANUFACTURING INC GROUP LIFE & HEALTH INSURANCE WELFARE BENEFIT PLAN","501","1976-04-01","CARLTON MFG., INC.",,,"PO BOX 1810",,"DUNNELLON","FL","34430",,,,,,,"20093 E PENNSYLVANIA AVENUE",,"DUNNELLON","FL","34432",,,,,,,"351363818","3524652153","337000","CARLTON MFG., INC.",,"PO BOX 1810",,"DUNNELLON","FL","34430",,,,,,,"351363818","3524652153",,,,"2011-06-16T15:14:59-0500","JEAN ROWE",,,,,120,106,,,106,,106,,,,,"4A4B4D4F4H4L","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617173008P030077793777001","2010-11-01","2010-12-31","2",,,,,"1",,,,,,,"POLSINELLI SHUGHART PC EMPLOYEE WELFARE BENEFIT PLAN","501","1990-01-01","POLSINELLI SHUGHART PC",,,"700 WEST 47TH STREET, SUITE 1000",,"KANSAS CITY","MO","64112",,,,,,,,,,,,,,,,,,"431064260","8167531000","541110","POLSINELLI SHUGHART PC",,"700 WEST 47TH STREET, SUITE 1000",,"KANSAS CITY","MO","64112",,,,,,,"431064260","8167531000",,,,"2011-06-17T17:23:28-0500","BRADLEY PEMBERTON",,,,,948,952,,,952,,,,,,,"4A4B","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110621155117P040373742064001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"COMMUNICATING ARTS CREDIT UNION MONEY PURCHASE PENSION PLAN","001","2009-01-01","COMMUNICATING ARTS CREDIT UNION",,,"P.O. BOX 32584",,"DETROIT","MI","48232",,,,,,,,,,,,,,,,,,"380480308","3139658640","522130","COMMUNICATING ARTS CREDIT UNION",,"P.O. BOX 32584",,"DETROIT","MI","48232",,,,,,,"380480308","3139658640",,,,"2011-06-21T15:33:27-0500","SANDRA FREY",,,,,12,10,0,2,12,0,12,12,1,,"2F2G2J2K3D2T2C",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110616111536P030023977239001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JOSEPH F. CHILEN RETIREMENT PLAN","001","1974-10-11","JOSEPH F. CHILEN",,"JOSEPH F. CHILEN","510 D STREEET","P.O. BOX 4","FAIRBURY","NE","68352",,,,,,,"510 D STREEET","P.O. BOX 4","FAIRBURY","NE","68352",,,,,,,"470545110","4027293331","541110","JOSEPH F. CHILEN","JOSEPH F. CHILEN","510 D STREEET","P.O. BOX 4","FAIRBURY","NE","68352",,,,,,,"470545110","4027293331",,,,"2011-06-16T11:14:56-0500","JOSEPH F. CHILEN",,,,,1,1,0,1,2,0,2,2,0,1,"2C",,"1",,,,"1",,,,,,"0",,,"1","1",,,,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616151625P040011643170001","2010-01-01","2010-12-31","2",,"0","1","0","0","1","0","0","0","0",,"KYKLOS BEARING INTERNATIONAL, LLC HEALTH & WELFARE BENEFITS PLAN","501","2009-05-01","KYKLOS BEARING INTERNATIONAL, LLC",,,"2509 HAYES AVENUE",,"SANDUSKY","OH","44870",,,,,,,,,,,,,,,,,,"261979555","4196277052","336300","KYKLOS BEARING INTERNATIONAL, LLC",,"2509 HAYES AVENUE",,"SANDUSKY","OH","44870",,,,,,,"261979555","4196277052",,,,"2011-06-16T15:15:06-0500","DIANE KEEGAN",,,,,792,811,2,0,813,,,,,,,"4A4B4E4H4D4L4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110617145354P040079937601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHRISTENSEN LUMBER, INC. BENEFITS PLAN","510","2009-09-01","CHRISTENSEN LUMBER, INC.",,,"714 S MAIN ST",,"FREMONT","NE","680256123",,,,,,,,,,,,,,,,,,"470527164","4027213212","423300","CHRISTENSEN LUMBER, INC.",,"714 S MAIN ST",,"FREMONT","NE","680256123",,,,,,,"470527164","4027213212",,,,"2011-06-17T14:45:43-0500","DEANA VYHLIDAL",,,,,106,78,0,0,78,,,,,,,"4B4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110617181034P040011748402001","2007-11-01","2008-10-31","2",,,,,,,"1",,"1",,,"GIOVANNI TOURS INC., PENSION PLAN","002","1984-11-01","GIOVANNI TOURS, INC,",,,"P. O. BOX 365",,"NEWBURY PARK","CA","91319",,,,,,,,,,,,,,,,,,"953318572","8053751324","721199","GIOVANNI TOURS, INC,",,"P. O. BOX 365",,"NEWBURY PARK","CA","91319",,,,,,,"953318572","8053751324",,,,"2011-06-17T07:09:22-0500","FRANCES E. DIPONZIO",,,,,2,1,0,1,2,0,2,0,0,,"1A1I3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-17","Filed with authorized/valid electronic signature",, "20110616090115P040079086721001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"RESTAURANT MANAGEMENT GROUP 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","RESTAURANT MANAGEMENT GROUP",,,"1063 EAST 2100 SOUTH",,"SALT LAKE CITY","UT","84106",,,,,,,"1063 EAST 2100 SOUTH",,"SALT LAKE CITY","UT","84106",,,,,,,"300109686","8014639393","722110","RESTAURANT MANAGEMENT GROUP",,"1063 EAST 2100 SOUTH",,"SALT LAKE CITY","UT","84106",,,,,,,"300109686","8014639393",,,,"2011-06-15T17:17:29-0500","AL DIEFFENBACH",,,,,42,78,0,0,78,0,78,4,,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110616192548P030364899184001","2010-11-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"ACTEL CORPORATIONS COMPREHENSIVE EMPLOYEE BENEFIT PLAN","501","1990-09-01","ACTEL CORPORATION",,,"2061 STIERLIN COURT",,"MOUNTAIN VIEW","CA","94043",,,,,,,,,,,,,,,,,,"770097724","6503184200","334410","ACTEL CORPORATION",,"2061 STIERLIN COURT",,"MOUNTAIN VIEW","CA","94043",,,,,,,"770097724","6503184200",,,,"2011-06-16T19:25:43-0500","JENNIFER WEI",,,,,364,0,0,0,0,,,,,,,"4A4B4D4E4G4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110620134753P040081695441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MOBJACK NURSERIES, INC. 401(K) RETIREMENT PLAN","001","1996-01-01","MOBJACK NURSERIES, INC.",,,"4208 E RIVER RD",,"FOSTER","VA","23056",,,,,,,,,,,,,,,,,,"541445069","8047253416","111400","MOBJACK NURSERIES, INC.",,"4208 E RIVER RD",,"FOSTER","VA","23056",,,,,,,"541445069","8047253416",,,,"2011-06-20T13:46:19-0500","DANIEL MCLEAN",,,,,12,12,0,0,12,0,12,12,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620115903P030374461664001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"TPA REALTY SERVICES, LLC 401(K) PLAN","001","2005-02-01","TPA REALTY SERVICES, LLC",,,"11555 MEDLOCK BRIDGE RD","SUITE 150","JOHNS CREEK","GA","30097",,,,,,,"11555 MEDLOCK BRIDGE RD","SUITE 150","JOHNS CREEK","GA","30097",,,,,,,"201774585","7704971400","531310","TPA REALTY SERVICES, LLC",,"11555 MEDLOCK BRIDGE RD","SUITE 150","JOHNS CREEK","GA","30097",,,,,,,"201774585","7704971400",,,,"2011-06-20T11:57:25-0500","DAVID WILLEY",,,,,60,48,0,11,59,0,59,56,4,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110614152240P040078051617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEE PROFIT SHARING PLAN OF COLORADO HEAD & NECK SURGICAL CONSULTANTS, P.C.","001","1990-01-01","COLORADO HEAD & NECK SURGICAL CONSULTANTS, P.C.",,,"9218 KIMMER DRIVE, SUITE 201",,"LONE TREE","CO","801246733",,,,,,,"9218 KIMMER DRIVE, SUITE 201",,"LONE TREE","CO","801246733",,,,,,,"841131679","3037880142","621111","COLORADO HEAD & NECK SURGICAL CONSULTANTS, P.C.",,"9218 KIMMER DRIVE, SUITE 201",,"LONE TREE","CO","801246733",,,,,,,"841131679","3037880142",,,,"2011-06-14T15:06:47-0500","RICK E. SCHALER, M.D., F.A.C.S.",,,,,7,4,0,3,7,0,7,7,0,,"2E2G2J2K2R3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620090649P030374091680001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EOB MANAGEMENT, INC. RETIREMENT PLAN","001","1999-05-01","EOB MANAGEMENT, INC.",,,"PO BOX 1839",,"GUAYNABO","PR","009701839",,,,,,,,,,,,,,,,,,"660581453","7877205020","212320","EOB MANAGEMENT, INC.",,"PO BOX 1839",,"GUAYNABO","PR","009701839",,,,,,,"660581453","7877205020",,,,"2011-06-20T09:05:52-0500","MARITZA E. SERRANO MUNOZ","2011-06-20T09:05:52-0500","CARLOS ORTIZ BRUNET",,,4,4,0,0,4,0,4,4,0,,"2E3C",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110618081949P040365034784001","2010-01-01","2010-12-31","2",,"1","0","1","0","0","0","0","0","0",,"MICHAELKAY, INC. 401(K) PROFIT SHARING PLAN","001","2006-07-19","MICHAELKAY, INC.",,,"150 DEER VIEW CIRCLE",,"HOT SPRINGS","AR","71913",,,,,,,,,,,,,,,,,,"711009701","5017674770","541990","MICHAELKAY, INC.",,"150 DEER VIEW CIRCLE",,"HOT SPRINGS","AR","71913",,,,,,,"711009701","5017674770",,,,"2011-06-18T08:14:50-0500","MICHAEL KAY",,,,,1,0,0,0,0,0,0,0,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-18","Filed with authorized/valid electronic signature",, "20110618100007P030078175585002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ALBERTO GONZALEZ, MD, P.C. PENSION PLAN","001","1973-11-21","ALBERTO GONZALEZ MD, P.C.",,,"2170 MAIN STREET",,"BUFFALO","NY","14214",,,,,,,,,,,,,,,,,,"161004037","7168334596","621111","ALBERTO GONZALEZ MD, P.C.",,"2170 MAIN STREET",,"BUFFALO","NY","14214",,,,,,,"161004037","7168334596",,,,"2011-06-16T16:19:54-0500","ALBERTO GONZALEZ","2011-06-18T09:58:25-0500","ALBERTO GONZALEZ",,,3,2,0,0,2,1,3,3,3,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620130236P030374597408001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CRONOS CAPITAL CORPORATION 401(K) PROFIT SHARING PLAN","002","1985-01-01","CRONOS CAPITAL CORP.",,,"1 FRONT STREET, STE 925",,"SAN FRANCISCO","CA","94111",,,,,,,"1 FRONT STREET, STE 925",,"SAN FRANCISCO","CA","94111",,,,,,,"942532467","8008217035","488990","CRONOS CAPITAL CORP.",,"1 FRONT STREET, STE 925",,"SAN FRANCISCO","CA","94111",,,,,,,"942532467","8008217035",,,,"2011-06-20T12:41:11-0500","JOHN KALLAS",,,,,28,17,0,10,27,0,27,26,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613160101P030356303024001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J. M. HUBER CORPORATION GROUP LIFE INSURANCE PLAN","504","1994-01-01","J. M. HUBER CORPORATION",,,"499 THORNALL STREET",,"EDISON","NJ","08837",,,,,,,,,,,,,,,,,,"130860350","7325498600","325900","J. M. HUBER CORPORATION",,"499 THORNALL STREET",,"EDISON","NJ","08837",,,,,,,"130860350","7325498600",,,,"2011-06-13T16:00:53-0500","FRED GERSTEN",,,,,2434,2437,0,0,2437,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614122712P030358574304001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"THE KLABIN COMPANY EMPLOYEES 401K PLAN","002","2004-09-01","THE KLABIN COMPANY",,,"6601 CENTER DRIVE WEST","SUITE 300","LOS ANGELES","CA","90045",,,,,,,,,,,,,,,,,,"953630032","3103377000","812990","THE KLABIN COMPANY",,"6601 CENTER DRIVE WEST","SUITE 300","LOS ANGELES","CA","90045",,,,,,,"953630032","3103377000",,,,"2011-06-14T12:27:02-0500","DARRELL SCHULZ",,,,,25,16,0,9,25,0,25,25,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614125154P030075906545001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MUSEUM STORE ASSOCIATION, INC. 401(K) PLAN","001","1997-07-01","MUSEUM STORE ASSOCIATION, INC.",,,"4100 E. MISSISSIPPI AVENUE","SUITE 800","DENVER","CO","80246",,,,,,,,,,,,,,,,,,"526044269","3035046119","813000","MUSEUM STORE ASSOCIATION, INC.",,"4100 E. MISSISSIPPI AVENUE","SUITE 800","DENVER","CO","80246",,,,,,,"526044269","3035046119",,,,"2011-06-14T13:51:49-0500","BEVERLY BARSOOK",,,,,11,8,,1,9,,9,9,,,"2E2G2J2K3D",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614132744P040077994129001","2007-09-01","2008-08-31","2",,"1","0","0","0","0","0","0","1","0",,"POLYCHEM CORPORATION HEALTH INSURANCE PLAN","503","1982-07-01","POLYCHEM CORPORATION",,,"6277 HEISLEY ROAD",,"MENTOR","OH","44060",,,,,,,"6277 HEISLEY ROAD",,"MENTOR","OH","44060",,,,,,,"341570807","4403571500","326100","POLYCHEM CORPORATION",,"6277 HEISLEY ROAD",,"MENTOR","OH","44060",,,,,,,"341570807","4403571500",,,,"2011-06-14T13:24:32-0500","ANNE WEBB",,,,,161,163,,,163,,163,,,,,"4A","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614141512P030075946321001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WHITE CAP COASTAL, INC. DEFINED BENEFIT PENSION PLAN","001","2002-01-01","WHITE CAP COASTAL, INC.",,,"800 TRIBUTE COURT",,"AUBURN","CA","95603",,,,,,,,,,,,,,,,,,"200506573","5307459990","531210","WHITE CAP COASTAL, INC.",,"800 TRIBUTE COURT",,"AUBURN","CA","95603",,,,,,,"200506573","5307459990",,,,"2011-06-14T03:15:02-0500","RONALD BETTENCOURT",,,,,3,0,0,2,2,0,2,,,,"1A1I3B",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620110520P040002463411001","2010-12-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"HANNA STEEL CORPORATION GROUP LIFE INSURANCE PLAN","501","1953-05-01","HANNA STEEL CORPORATION","HANNA STEEL CORPORATION",,"3812 COMMERCE AVENUE",,"FAIRFIELD","AL","35064",,,,,,,"3812 COMMERCE AVENUE",,"FAIRFIELD","AL","35064",,,,,,,"630353411","2057801111","331200","HANNA STEEL CORPORATION",,"3812 COMMERCE AVENUE",,"FAIRFIELD","AL","35064",,,,,,,"630353411","2057801111",,,,"2011-06-17T15:30:12-0500","RANDALL RAIFORD",,,,,349,0,,,0,,0,,,,,"4B4H4Q","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620111012P030079261633001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRINCE ENTERPRISES, INC. 401K PLAN","001","2006-01-01","PRINCE ENTERPRISES, INC",,,"7819 MONTREAL COURT",,"CINCINNATI","OH","452411375",,,,,,,,,,,,,,,,,,"311769964","5137791101","523900","PRINCE ENTERPRISES, INC",,"7819 MONTREAL COURT",,"CINCINNATI","OH","452411375",,,,,,,"311769964","5137791101",,,,"2011-06-20T11:01:19-0500","DOUGLAS C. PRINCE",,,,,5,5,0,0,5,0,5,5,0,,"2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110618100420P030369099296001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HIDEY, COYLE & MONTELEONE 401(K) PROFIT SHARING PLAN","001","1980-01-01","HIDEY, COYLE & MONTELEONE CHARTERED",,,"110 WASHINGTON STEET",,"CUMBERLAND","MD","21502",,,,,,,,,,,,,,,,,,"521137190","3017220123","541110","HIDEY, COYLE & MONTELEONE CHARTERED",,"110 WASHINGTON STEET",,"CUMBERLAND","MD","21502",,,,,,,"521137190","3017220123",,,,"2011-06-18T10:04:13-0500","JOHN J. COYLE","2011-06-18T10:04:13-0500","JOHN J. COYLE",,,9,6,0,1,7,1,8,8,0,,"2E3D2G2J2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-18","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614084854P030010979842001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAROLD R. REEL, JR., DDS, P.A. RETIREMENT PLAN & TRUST","002","2001-01-01","HAROLD R. REEL, JR., DDS, P.A.",,,"1325 S. BRYANT BLVD.",,"SAN ANGELO","TX","76903",,,,,,,,,,,,,,,,,,"201783120","3256531385","621210","HAROLD R. REEL, JR., DDS, P.A.",,"1325 S. BRYANT BLVD.",,"SAN ANGELO","TX","76903",,,,,,,"201783120","3256531385",,,,"2011-06-14T08:48:27-0500","HAROLD R. REEL, JR., D.D.S.","2011-06-14T08:48:27-0500","HAROLD R. REEL, JR., D.D.S.",,,12,11,0,0,11,0,11,11,1,,"2A2E2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614094517P030075816769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SOLAR PLASTICS WELFARE BENEFIT PLAN","501","2007-01-01","SOLAR PLASTICS, INC.",,,"860 JOHNSON DRIVE",,"DELANO","MN","553288608",,,,,,,,,,,,,,,,,,"411828221","7639725600","326100","SOLAR PLASTICS, INC.",,"860 JOHNSON DRIVE",,"DELANO","MN","553288608",,,,,,,"411828221","7639725600",,,,"2011-06-14T09:44:50-0500","ROBERT COSGROVE",,,,,107,114,0,0,114,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620121643P030079292657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DATATRONICS RETIREMENT PLAN","002","1989-04-01","DATATRONICS ROMOLAND, INC.",,,"28151 HIGHWAY 74",,"ROMOLAND","CA","92585",,,,,,,,,,,,,,,,,,"330336901","9099287700","334610","DATATRONICS ROMOLAND, INC.",,"28151 HIGHWAY 74",,"ROMOLAND","CA","92585",,,,,,,"330336901","9099287700",,,,"2011-06-20T12:16:35-0500","MARK ROBINSON","2011-06-20T12:16:35-0500","MARK ROBINSON",,,110,101,3,9,113,0,113,73,0,,"2E2J2F2G2K2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620122251P030374512976001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MOUND TECHNOLOGIES, INC PROFIT SHARING & 401(K) PL","001","1968-12-01","MOUND TECHNOLOGIES, INC",,,"25 MOUND PARK DRIVE",,"SPRINGBORO","OH","45066",,,,,,,,,,,,,,,,,,"611431058","9377482937","812990","MOUND TECHNOLOGIES, INC",,"25 MOUND PARK DRIVE",,"SPRINGBORO","OH","45066",,,,,,,"611431058","9377482937",,,,"2011-06-20T12:22:38-0500","LISA HOLLAR",,,,,54,38,0,16,54,0,54,52,1,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620124347P030374555264001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEGAL ADVOCACY AND RESOURCE PROFIT SHARING PLAN","001","2006-01-01","LEGAL ADVOCACY AND RESOURCE",,,"197 FRIEND STREET",,"BOSTON","MA","02114",,,,,,,,,,,,,,,,,,"043443101","6176031716","541110","LEGAL ADVOCACY AND RESOURCE",,"197 FRIEND STREET",,"BOSTON","MA","02114",,,,,,,"043443101","6176031716",,,,"2011-06-20T12:43:43-0500","AVADA DOUGLAS",,,,,15,11,0,4,15,0,15,14,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620100243P040011966722001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VASANTHA PAI MD, PC PROFIT SHARING PLAN","001","2001-08-01","VASANTHA PAI MD PC",,,"2810 FRANK SCOTT PARKWAY STE 716",,"BELLEVILLE","IL","62223",,,,,,,,,,,,,,,,,,"371387276",,"621111","VASANTHA PAI MD PC",,"2810 FRANK SCOTT PARKWAY STE 716",,"BELLEVILLE","IL","62223",,,,,,,"371387276",,,,,"2011-06-20T04:48:49-0500","VASANTHA PAI MD",,,,,3,3,,1,4,,4,4,,,"2E2G2Q3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620100328P040081582689001","2010-01-01","2010-12-31","1",,"0","0","0","0","0","0","0","0","0",,"PATTERSON - UTI ENERGY INC CAFETERIA PLAN","501","1998-01-01","PATTERSON - UTI ENERGY INC",,,"4510 LAMESA HWY",,"SNYDER","TX","79549",,,,,,,,,,,,,,,,,,"752504748","3255746300","211110","PATTERSON - UTI ENERGY INC",,"4510 LAMESA HWY",,"SNYDER","TX","79549",,,,,,,"752504748","3255746300",,,,"2011-06-20T10:01:51-0500","GREG PIPKIN","2011-06-20T10:03:08-0500","GREG PIPKIN",,,4147,8004,0,0,8004,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620100751P040011966978001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","1","0","0","0",,"TRUE WELLNESS CENTERS RETIREMENT SAVINGS PLAN","001","2007-01-01","TRUE WELLNESS CENTERS INC.",,,"1158 PULASKI HWY","12A GLENDALE PLAZA","BEAR","DE","19701",,,,,,,,,,,,,,,,,,"721564372","3028327000","621310","TRUE WELLNESS CENTERS INC.",,"1158 PULASKI HWY","12A GLENDALE PLAZA","BEAR","DE","19701",,,,,,,"721564372","3028327000",,,,"2011-06-20T10:07:39-0500","SUSAN ALLISON",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620113046P030079270577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CURRENT ELECTRICAL CONTRACTORS INC 401(K) AND PROFIT SHARING PLAN AND TRUST","001","2008-01-01","CURRENT ELECTRICAL CONTRACTORS INC",,,"1946 LEHIGH AVE STE D",,"GLENVIEW","IL","600261662",,,,,,,"1946 LEHIGH AVE STE D",,"GLENVIEW","IL","600261662",,,,,,,"363758148","8478320700","238210","CURRENT ELECTRICAL CONTRACTORS INC",,"1946 LEHIGH AVE STE D",,"GLENVIEW","IL","600261662",,,,,,,"363758148","8478320700",,,,"2011-06-20T11:14:45-0500","JAMES V EBERLE",,,,,15,10,0,4,14,0,14,14,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613152657P040077406529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REPRODUCTIVE SCIENCE CENTER OF NEW JERSEY 401(K) PLAN","001","2007-01-01","REPRODUCTIVE SCIENCE CENTER OF NEW JERSEY, P.A.",,,"234 INDUSTRIAL WAY WEST",,"EATONTOWN","NJ","07724",,,,,,,,,,,,,,,,,,"201405347","7329182500","621111","REPRODUCTIVE SCIENCE CENTER OF NEW JERSEY, P.A.",,"234 INDUSTRIAL WAY WEST",,"EATONTOWN","NJ","07724",,,,,,,"201405347","7329182500",,,,"2011-06-13T15:26:25-0500","WILLIAM ZIEGLER","2011-06-13T15:26:25-0500","WILLIAM ZIEGLER",,,10,14,0,0,14,0,14,14,0,,"2A2E2G2J2K3D",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614145138P040078040609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAFE HARBOR ENTERPRISES, INC. DEFINED BENEFIT PLAN","001","2007-01-01","SAFE HARBOR ENTERPRISES, INC.",,,"P.O. BOX 2455",,"KEY WEST","FL","33045",,,,,,,,,,,,,,,,,,"590780688","5613517075","531390","SAFE HARBOR ENTERPRISES, INC.",,"P.O. BOX 2455",,"KEY WEST","FL","33045",,,,,,,"590780688","5613517075",,,,"2011-06-14T14:51:02-0500","JORDAN BERNSTEIN","2011-06-14T14:51:02-0500","JORDAN BERNSTEIN",,,3,3,0,0,3,0,3,,0,,"1A1G1I3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614145306P040355024384001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAATI AMERICAS CORPORATION 401(K) PLAN","002","1988-01-01","SAATI AMERICAS CORPORATION",,,"247 ROUTE 100",,"SOMERS","NY","10589",,,,,,,"247 ROUTE 100",,"SOMERS","NY","10589",,,,,,,"133328125","9147679330","423400","SAATI AMERICAS CORPORATION",,"247 ROUTE 100",,"SOMERS","NY","10589",,,,,,,"133328125","9147679330",,,,"2011-06-14T14:52:35-0500","DIANE COOK",,,,,87,60,0,22,82,0,82,82,5,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620113807P030374421888001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"BEYOND.COM, INC. 401(K) PLAN","001","2004-01-01","BEYOND.COM, INC.",,,"1060 1ST AVENUE",,"KING OF PRUSSIA","PA","19406",,,,,,,"1060 1ST AVENUE",,"KING OF PRUSSIA","PA","19406",,,,,,,"232773769","6108782800","541519","BEYOND.COM, INC.",,"1060 1ST AVENUE",,"KING OF PRUSSIA","PA","19406",,,,,,,"232773769","6108782800",,,,"2011-06-20T11:16:54-0500","RICH MILGRAM",,,,,56,51,0,10,61,1,62,61,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620113846P030374423424001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"JDF SERVICES, INC. 401(K) PLAN","001","2009-01-05","JDF SERVICES, INC.",,,"402 EAST ROOSEVELT ROAD, SUITE 108",,"WHEATON","IL","60187",,,,,,,,,,,,,,,,,,"263890114","6302605300","621610","JDF SERVICES, INC.",,"402 EAST ROOSEVELT ROAD, SUITE 108",,"WHEATON","IL","60187",,,,,,,"263890114","6302605300",,,,"2011-06-20T11:38:34-0500","JAMES FLICKINGER","2011-06-20T11:38:34-0500","JAMES FLICKINGER",,,2,4,0,0,4,0,4,2,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614113119P040077934993002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BERNARDO F LI MDGARDENIA J PAJUNAR-LI MD LTD REVISED AND RESTATED MONEY PURCHASE PENSION PLAN AND TRUST","002","2002-01-01","BERNARDO F LI,GARDENIA J PAJUNAR-LI MD, LTD",,,"11309 S MICHIGAN AVE",,"CHICAGO","IL","606284911",,,,,,,,,,,,,,,,,,"363162529","7732642020","621111","BERNARDO F LI GARDENIA J PAJUNAR-LI MD LTD",,"11309 S MICHIGAN AVE",,"CHICAGO","IL","606284911",,,,,,,"363162529","7732642020",,,,"2011-06-14T11:12:28-0500","BERNARDO F LI",,,,,2,1,1,,2,,2,,,,"3D",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614115038P030023578423001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"IREDELL RADIOLOGY ASSOCIATES PA PROFIT SHARING PLAN","001","1995-07-01","IREDELL RADIOLOGY ASSOCIATES PA",,,"548 BROOKDALE DR",,"STATESVILLE","NC","28677",,,,,,,,,,,,,,,,,,"561925320","7048726122","621111","IREDELL RADIOLOGY ASSOCIATES PA",,"548 BROOKDALE DR",,"STATESVILLE","NC","28677",,,,,,,"561925320","7048726122",,,,"2011-06-14T11:50:31-0500","GERRY WILSON",,,,,15,8,0,9,17,0,17,16,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614121142P030075888577001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FULKERSON SERVICES INC. PROFIT SHARING PLAN","002","1986-10-01","FULKERSON SERVICES INC.",,,"111 PARCE AVENUE",,"FAIRPORT","NY","14450",,,,,,,,,,,,,,,,,,"161263274","5852232541","442110","FULKERSON SERVICES INC.",,"111 PARCE AVENUE",,"FAIRPORT","NY","14450",,,,,,,"161263274","5852232541",,,,"2011-06-14T12:11:36-0500","MATTHEW E. BEZEK",,,,,16,15,0,1,16,0,16,15,1,,"2A2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614152618P030075979345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAMES L. GEORGE, ATTORNEY PROFIT SHARING PLAN","001","1998-01-01","JAMES L. GEORGE, ATTORNEY",,,"17 FIRST AVENUE NE","PO BOX 508","LE MARS","IA","51031",,,,,,,,,,,,,,,,,,"391875776","7125464704","541110","JAMES L. GEORGE, ATTORNEY",,"17 FIRST AVENUE NE","PO BOX 508","LE MARS","IA","51031",,,,,,,"391875776","7125464704",,,,"2011-06-14T15:26:12-0500","JAMES L GEORGE",,,,,2,2,0,0,2,0,2,2,0,,"2T3D2E2G",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614152732P040355102128001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"IMEC 401(K) PLAN","001","2007-06-01","INDUSTRIAL MACHINE AND ENGINEERING COMPANY",,,"1716 N 9TH ST",,"MONETT","MO","657088404",,,,,,,"1716 N 9TH ST",,"MONETT","MO","657088404",,,,,,,"431269638","4172353053","332900","INDUSTRIAL MACHINE AND ENGINEERING COMPANY",,"1716 N 9TH ST",,"MONETT","MO","657088404",,,,,,,"431269638","4172353053",,,,"2011-06-14T15:26:55-0500","DAN CONNER",,,,,27,24,0,1,25,0,25,13,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614160002P040024444967001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"PROCOM TELECOMMUNICATIONS CORP. 401(K) PROFIT SHARING PLAN","001","2007-07-01","PROCOM TELECOMMUNICATIONS CORP.",,,"51 ANGELI COURT",,"BERLIN","CT","06037",,,,,,,,,,,,,,,,,,"061311627","8008880907","517000","PROCOM TELECOMMUNICATIONS CORP.",,"51 ANGELI COURT",,"BERLIN","CT","06037",,,,,,,"061311627","8008880907",,,,"2011-06-14T04:59:52-0500","JOHN DEMATTEO",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620094056P040025539991001","2004-10-01","2005-09-30","2",,"0","0","0","0","0","0","0","1","0",,"SUN'N FUN FLY-IN, INC DEFINED CONTRIBUTION RETIREMENT PLAN","001","2000-10-01","SUN N FUN FLY-IN, INC.",,,"4175 MEDULLA ROAD",,"LAKELAND","FL","33811",,,,,,,,,,,,,,,,,,"592803958","8636442431","481000","SAME",,"4175 MEDULLA ROAD",,"LAKELAND","FL","33811",,,,,,,"592803958","8636442431",,,,"2011-06-20T09:40:41-0500","JOHN BURTON",,,,,,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110614080505P040077832897005","2010-02-01","2011-01-31","2",,,,,,,,,,,,"LARRY S FISHER MD PC PROFIT SHARING PLAN","001","1978-09-01","LARRY S FISHER MD PC",,,"2 WATERSIDE TERRACE",,"ENGLEWOOD","CO","80113",,,,,,,"2 WATERSIDE TERRACE",,"ENGLEWOOD","CO","80113",,,,,,,"840768271",,"621111","LARRY S FISHER MD PC",,"2 WATERSIDE TERRACE",,"ENGLEWOOD","CO","80113",,,,,,,"840768271",,,,,"2011-05-26T01:31:25-0500","LARRY S. FISHER",,,,,1,1,,,1,,1,1,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614165013P040078094097001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MT. BAKER PRODUCTS HEALTH AND WELFARE BENEFITS PLAN","502","2010-01-01","MT. BAKER PRODUCTS, INC.",,,"P.O. BOX 997",,"BELLINGHAM","WA","982270997",,,,,,,"2929 ROEDER AVENUE",,"BELLINGHAM","WA","98225",,,,,,,"911598765","3607333960","321210","MT. BAKER PRODUCTS, INC.",,"P.O. BOX 997",,"BELLINGHAM","WA","982270997",,,,,,,"911598765","3607333960",,,,"2011-06-14T13:55:28-0500","PATRICIA PROCTOR",,,,,135,125,1,0,126,,,,,,,"4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614181015P030011019250001","2007-01-01","2007-12-31","4","C","0","1","0","0","0","0","0","0","0",,"EQUITY INDEX PLUS FUND T","001",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,,,,,,,,,,,,"943405566","4156702000",,"BLACKROCK INSTITUTIONAL TRUST COMPANY, N. A.",,"400 HOWARD STREET",,"SAN FRANCISCO","CA","94105",,,,,,,"943112180","4156702000","BARCLAYS GLOBAL INVESTORS, N. A.","943112180","001",,,,,"2011-06-14T18:03:49-0500","JEFFREY MEDEIROS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-06-14",,"Filed with authorized/valid electronic signature", "20110614131533P040077988353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MORROW, TOMPKINS, TRUEBLOOD & LEFEVRE, LLC 401(K) PLAN","001","2007-01-05","MORROW, TOMPKINS, TRUEBLOOD & FITTIPALDI LLC",,,"1 MONTGOMERY PLAZA","SUITE 902","NORRISTOWN","PA","19401",,,,,,,"1 MONTGOMERY PLAZA","SUITE 902","NORRISTOWN","PA","19401",,,,,,,"204831454","6102723650","541110","MORROW, TOMPKINS, TRUEBLOOD & FITTIPALDI LLC",,"1 MONTGOMERY PLAZA","SUITE 902","NORRISTOWN","PA","19401",,,,,,,"204831454","6102723650",,,,"2011-06-14T13:12:40-0500","MARY ANN DALESSANDRO",,,,,13,10,0,1,11,0,11,9,0,,"2E2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614133128P040077996401002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WESTERN STATES GLASS CORP","501","2005-01-01","WESTERN STATES GLASS CORP OF NORTHERN CA",,,"43443 OSGOOD ROAD",,"FREMONT","CA","94538",,,,,,,,,,,,,,,,,,"943138818","5106235000","327210","MICKEY SMITH PRESIDENT/GENERAL MANAGER",,"43443 OSGOOD RD",,"FREMONT","CA","945380912",,,,,,,"943138818","5106235000",,,,"2011-06-01T13:04:26-0500","MICKEY SMITH",,,,,700,127,,,127,,127,,,,,"4B4A","1",,,,"1",,,,,,,,,"1","2","1",,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614083007P030010979042002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"RATKE MILLER HAGNER & CO T ROWE PRICE PROFIT SHARING PLAN","004","1991-01-01","RATKE MILLER HAGNER & COMPANY",,,"8612 GERMANTOWN AVENUE",,"PHILADELPHIA","PA","19118",,,,,,,,,,,,,,,,,,"232581483","2152476996","541211","RATKE MILLER HAGNER & COMPANY",,"8612 GERMANTOWN AVENUE",,"PHILADELPHIA","PA","19118",,,,,,,"232581483","2152476996",,,,"2011-06-14T09:17:00-0500","HENRY V RATKE JR","2011-06-14T09:17:08-0500","HENRY V RATKE JR",,,5,3,0,1,4,0,4,4,,,"2E2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614141018P030075942689001","2006-09-01","2007-08-31","2",,"0","1","0","0","0","0","0","1","0",,"ANESTHESIA ASSOCIATES OF KC GROUP EMPLOYEE HEALTHCARE PLAN","501","1980-01-01","ANESTHESIA ASSOCIATES OF KANSAS CITY PC",,,"8717 W 110TH ST #600",,"OVERLAND PARK","KS","66210",,,,,,,"8717 W 110TH ST #600",,"OVERLAND PARK","KS","66210",,,,,,,"430975680","9134282900","621111","ANESTHESIA ASSOCIATES OF KANSAS CITY PC",,"8717 W 110TH ST #600",,"OVERLAND PARK","KS","66210",,,,,,,"430975680","9134282900",,,,"2011-06-14T14:04:21-0500","MARK MEISEL",,,,,163,174,,,174,,174,,,,,"4A4D4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614142727P030075953649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BT INTEGRATORS, INC. 401(K) PLAN","001","2008-01-01","BT INTEGRATORS, INC.",,,"145 N. WOODLAND TRAIL",,"DOUBLE OAK","TX","75077",,,,,,,,,,,,,,,,,,"711047865","9729660003","541600","BT INTEGRATORS, INC.",,"145 N. WOODLAND TRAIL",,"DOUBLE OAK","TX","75077",,,,,,,"711047865","9729660003",,,,"2011-06-14T14:27:02-0500","CAMILLE HITCHINGS","2011-06-14T14:27:02-0500","CAMILLE HITCHINGS",,,5,5,0,0,5,,5,4,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620142651P030374780288001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BARHAM ARCHITECTS, LLC 401(K) PLAN","001","2007-01-01","BARHAM ARCHITECTS, LLC",,,"5610 OLD BULLARD ROAD, SUITE 204",,"TYLER","TX","75703",,,,,,,,,,,,,,,,,,"383780489","9035618110","541310","BARHAM ARCHITECTS, LLC",,"5610 OLD BULLARD ROAD, SUITE 204",,"TYLER","TX","75703",,,,,,,"383780489","9035618110",,,,"2011-06-20T14:15:36-0500","LAURIE BARHAM",,,,,6,4,0,2,6,0,6,6,0,,"2A2E2F2G2J2R2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110614121705P030010994146001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BALES AND SIMPSON, D.D.S., P.A. 401K PROFIT SHARING PLAN","002","1997-01-01","BALES AND SIMPSON, D.D.S., P.A.",,,"P.O.BOX 635",,"SMITHFIELD","NC","27577",,,,,,,"101 E. MARKET STREET SUITE 2A",,"SMITHFIELD","NC","27577",,,,,,,"561989273","9199343409","621210","BALES AND SIMPSON, D.D.S., P.A.",,"P.O.BOX 635",,"SMITHFIELD","NC","27577",,,,,,,"561989273","9199343409",,,,"2011-06-14T12:15:07-0500","WHITNEY BALES DUEA","2011-06-14T12:15:07-0500","WHITNEY BALES DUEA",,,15,10,0,3,13,0,13,13,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620145213P040370840816001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SAMPSON, CURRY & TWISS, P.C. PROFIT SHARING PLAN","001","1992-01-01","SAMPSON, CURRY & TWISS, P.C.",,,"1615 17TH AVE","P O BOX 147","CENTRAL CITY","NE","68826",,,,,,,,,,,,,,,,,,"470752403","3089463071","541110","SAMPSON, CURRY & TWISS, P.C.",,"1615 17TH AVE","P O BOX 147","CENTRAL CITY","NE","68826",,,,,,,"470752403","3089463071",,,,"2011-06-20T14:52:09-0500","STEVEN M. CURRY","2011-06-20T14:52:09-0500","STEVEN M. CURRY",,,5,4,0,1,5,0,5,5,0,,"2T3D2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620124756P030002280340001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CMF, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2007-01-01","CMF, INC.",,,"1317 W. GROVE AVENUE",,"ORANGE","CA","92865",,,,,,,,,,,,,,,,,,"952104443","7146372409","238100","CMF, INC.",,"1317 W. GROVE AVENUE",,"ORANGE","CA","92865",,,,,,,"952104443","7146372409",,,,"2011-06-20T12:45:28-0500","DARREN SAGERT","2011-06-20T12:45:28-0500","DARREN SAGERT",,,112,68,0,43,111,0,111,110,30,,"2P2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620131443P040081680929001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MIKE S MOBILE TRUCK REPAIR DEFINED BENEFIT PENSION PLAN","002","2010-01-01","MICHAEL C. RASMUSSEN DBA MIKE S MOBILE TRUCK REPAIR",,"C/O THE PRICE COMPANY","5151 NORTH PALM AVENUE, STE. 920",,"FRESNO","CA","93704",,,,,,,,,,,,,,,,,,"770140248","5592247656","237990","MICHAEL C. RASMUSSEN DBA MIKE S MOBILE TRUCK REPAIR","C/O THE PRICE COMPANY","5151 NORTH PALM AVENUE, STE. 920",,"FRESNO","CA","93704",,,,,,,"770140248","5592247656",,,,"2011-06-20T13:14:18-0500","MICHAEL RASMUSSEN","2011-06-20T13:14:18-0500","MICHAEL RASMUSSEN",,,0,2,0,,2,0,2,,0,,"3B3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613145111P030075375601001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GRANDPARENTS COM LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2007-01-01","GRANDPARENTS COM LLC",,,"589 8TH AVENUE","6TH FLR","NEW YORK","NY","10018",,,,,,,,,,,,,,,,,,"272476091","6468398809","541990","GRANDPARENTS COM LLC",,"589 8TH AVENUE","6TH FLR","NEW YORK","NY","10018",,,,,,,"272476091","6468398809","MATTHEW SCHWARTZ","030398886",,"2011-06-13T02:51:09-0500","GRANDPARENTS COM LLC",,,,,34,10,0,6,16,0,16,8,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614170021P030011014898004","2010-04-01","2011-03-31","2",,,,,,,,,,,,"TIRES & STUFF INC 401K PROFIT","001","2006-04-01","TIRES & STUFF INC",,,"117 NORTH 2ND EAST",,"REXBURG","ID","83440",,,,,,,"117 NORTH 2ND EAST",,"REXBURG","ID","83440",,,,,,,"202633513","2083567371","441300","TIRES & STUFF INC",,"117 NORTH 2ND EAST",,"REXBURG","ID","83440",,,,,,,"202633513","2083567371",,,,"2011-06-14T04:47:33-0500","LYLE M SIMMONS",,,,,12,9,0,2,11,,11,11,,,"2E2J2H3D",,,,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614133513P040077998593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRUCE K BROWNSTEIN MD MONEY PURCHASE PLAN","002","1983-01-01","BRUCE K BROWNSTEIN MD","BRUCE K BROWNSTEIN MD",,"304 CYNWYD ROAD",,"BALA CYNWYD","PA","19004",,,,,,,"304 CYNWYD ROAD",,"BALA CYNWYD","PA","19004",,,,,,,"232243403","5706469508","621111","BRUCE K BROWNSTEIN MD",,"304 CYNWYD ROAD",,"BALA CYNWYD","PA","19004",,,,,,,"232243403","5706469508",,,,"2011-06-14T13:33:28-0500","BRUCE BROWNSTEIN",,,,,1,1,0,0,1,0,1,1,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614083351P030010979330001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STILES CORPORATION EMPLOYEE HEALTH & WELFARE BENEFIT PLAN","501","1972-01-01","STILES CORPORATION",,,"301 E LAS OLAS BLVD",,"FT. LAUDERDALE","FL","33301",,,,,,,,,,,,,,,,,,"650036314","9546279328","236200","STILES CORPORATION",,"300 SE 2ND STREET",,"FT. LAUDERDALE","FL","33301",,,,,,,"650036314","9546279328",,,,"2011-06-14T08:33:06-0500","BARBARA SHERIDAN",,,,,283,266,18,0,284,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614093008P030010982098001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BRUCE B. WRIGHT, DDS, PA EMPLOYEES PROFIT - SHARING PLAN AND TRUST","002","1980-12-01","BRUCE B. WRIGHT, DDS, PA",,,"18913 JOHN J. WILLIAMS HIGHWAY",,"REHOBOTH BEACH","DE","199719741",,,,,,,,,,,,,,,,,,"510255865","3026456671","621210","BRUCE B. WRIGHT, DDS, PA",,"18913 JOHN J. WILLIAMS HIGHWAY",,"REHOBOTH BEACH","DE","199719741",,,,,,,"510255865","3026456671",,,,"2011-06-14T10:14:27-0500","BRUCE B WRIGHT","2011-06-14T10:14:35-0500","BRUCE B WRIGHT",,,11,11,0,0,11,0,11,11,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614093138P030358204432001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SPRINGS CLOSE FOUNDATION 401K PLAN","001","1998-10-01","SPRINGS CLOSE FOUNDATION",,,"951 MARKET ST., STE 204",,"FORT MILL","SC","29708",,,,,,,"951 MARKET ST., STE 204",,"FORT MILL","SC","29708",,,,,,,"570426344","8032863492","813000","SPRINGS CLOSE FOUNDATION",,"951 MARKET ST., STE 204",,"FORT MILL","SC","29708",,,,,,,"570426344","8032863492",,,,"2011-06-14T09:30:18-0500","HARRY EMERSON",,,,,4,2,0,1,3,0,3,3,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614134757P030075933281001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"NORD SALARIED EMPLOYEES 401(K) PLAN","001","1985-07-01","NORD RESOURCES CORPORATION","SAME",,"1 W. WETMORE","SUITE #203","TUCSON","AZ","85705",,,,,,,"1 W. WETMORE","SUITE #203","TUCSON","AZ","85705",,,,,,,"850212139","5202920266","212200","NORD RESOURCES CORPORATION","WAYNE MORRISON","1 W. WETMORE","SUITE #203","TUCSON","AZ","85705",,,,,,,"850212139","5202920266",,,,"2011-06-14T13:47:40-0500","VIRGINIA VON ANCKEN-RAMIRES",,,,,4,0,0,0,0,0,0,0,0,,"3E2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614140122P040078011953002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ELECTRA TARP INC 401K PLAN","001","2007-01-01","ELECTRA TARP, INC",,,"2900 PERRY DRIVE SW",,"CANTON","OH","44706",,,,,,,,,,,,,,,,,,"341147210","3304777168","326100","ELECTRA TARP INC",,"2900 PERRY DRIVE SW",,"CANTON","OH","44706",,,,,,,"341147210","3304777168",,,,"2011-06-14T12:57:24-0500","ROBERT FULMER",,,,,8,4,2,,6,,6,6,,,"2J2G2E",,"1",,"1",,,,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614140122P040078011953005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ASA CONTROLS INC 401K PROFIT SHARING PLAN","001","2007-01-01","ASA CONTROLS INC",,,"10051 SIMONSON RD STE 8",,"HARRISON","OH","45030",,,,,,,,,,,,,,,,,,"260061078","5133533101","238220","ASA CONTROLS INC",,"10051 SIMONSON RD STE 8",,"HARRISON","OH","45030",,,,,,,"260061078","5133533101",,,,"2011-06-14T13:24:36-0500","MICHAEL BINFORD",,,,,15,14,,1,15,,15,13,,,"3D2K2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614141249P030023607735001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LINNELL, CHOATE & WEBBER, LLP PROFIT SHARING PLAN","001","1994-01-01","LINNELL, CHOATE & WEBBER, LLP",,,"83 PLEASANT STREET","P.O. BOX 190","AUBURN","ME","04212",,,,,,,,,,,,,,,,,,"010261814","2077844563","541110","LINNELL, CHOATE & WEBBER, LLP",,"83 PLEASANT STREET","P.O. BOX 190","AUBURN","ME","04212",,,,,,,"010261814","2077844563",,,,"2011-06-14T14:07:42-0500","RICHARD J. O'BRIEN",,,,,21,17,0,4,21,0,21,21,0,,"2T3D2E2G2J2K2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614142302P040078027745001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"ACOUSTICAL CEILING SUPPLY CO, INC 401K PLAN & TRUST","001","2000-01-01","ACOUSTICAL CEILING SUPPLY CO, INC",,"MELISSA MIGLIORE","4400 YORK ST",,"METAIRIE","LA","70002",,,,,,,"4400 YORK ST",,"METAIRIE","LA","70002",,,,,,,"720804330","5044659977","423300","ACOUSTICAL CEILING SUPPLY CO, INC","MELISSA MIGLIORE","4400 YORK ST",,"METAIRIE","LA","70002",,,,,,,"720804330","5044659977",,,,"2011-06-14T14:22:40-0500","LEO KERN",,,,,2,0,,,0,,0,0,,,"2E2J2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620103501P040081601153001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THARALDSON EMPLOYEE MANAGEMENT COMPANY GROUP LIFE PLAN","504","1997-10-01","THARALDSON EMPLOYEE MANAGEMENT COMPANY",,,"1202 WESTRACK DR SW",,"FARGO","ND","581032344",,,,,,,,,,,,,,,,,,"450442847","7012351060","531390","THARALDSON EMPLOYEE MANAGEMENT COMPANY",,"1202 WESTRACK DR SW",,"FARGO","ND","581032344",,,,,,,"450442847","7012351060",,,,"2011-06-20T10:34:48-0500","DOUG DOBMEIER","2011-06-20T10:34:48-0500","DOUG DOBMEIER",,,247,577,0,0,577,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110613143106P030075363361002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HARVEY HAMEROFF MD PROFIT SHARING PLAN","001","1987-01-01","HARVEY HAMEROFF, MD",,,"10 DALE STREET",,"WEST HARTFORD","CT","06107",,,,,,,,,,,,,,,,,,"061004982","8605219451","621111","HARVEY HAMEROFF MD",,"10 DALE STREET",,"WEST HARTFORD","CT","06107",,,,,,,"061004982","8605219451",,,,"2011-06-09T08:07:24-0500","HARVEY HAMEROFF MD",,,,,2,2,,,2,,2,,,,"3B2G2E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614100428P040077891553001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"REGENCY AT MCLEAN 401(K) PLAN","001","1999-01-01","REGENCY AT MCLEAN CONDO ASSOCATION",,,"1800 OLD MEADOW ROAD",,"MCLEAN","VA","22102",,,,,,,"1800 OLD MEADOW ROAD",,"MCLEAN","VA","22102",,,,,,,"621038681","7038213453","531390","REGENCY AT MCLEAN CONDO ASSOCATION",,"1800 OLD MEADOW ROAD",,"MCLEAN","VA","22102",,,,,,,"621038681","7038213453",,,,"2011-05-16T11:21:19-0500","DONALD BACHENBERG","2011-06-14T10:03:38-0500","CAROLYN MOSS",,,18,16,0,2,18,2,20,17,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614144537P040078039169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MECHANICAL SERVICE CORPORATION 401K PLAN","001","1996-01-01","MECHANCIAL SERVICE CORPORATION",,,"41 S JEFFERSON RD",,"WHIPPANY","NJ","079811034",,,,,,,,,,,,,,,,,,"222196125","9738845000","238220","MECHANCIAL SERVICE CORPORATION",,"41 S JEFFERSON RD",,"WHIPPANY","NJ","079811034",,,,,,,"222196125","9738845000",,,,"2011-06-14T14:38:44-0500","HENRY HARTIGAN",,,,,36,26,0,9,35,0,35,27,0,,"2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614150122P030075964481005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LOWELL B TAUBMAN MONEY PURCHASE PENSION PLAN","002","1987-12-29","LOWELL B TAUBMAN",,,"206 RIVERSIDE BLVD",,"LONG BEACH","NY","115613513",,,,,,,,,,,,,,,,,,"112865591","5164325670","621111","LOWELL B TAUBMAN",,"206 RIVERSIDE BLVD",,"LONG BEACH","NY","115613513",,,,,,,"112865591","5164325670",,,,"2011-06-07T20:57:41-0500","LOWELL TAUBMAN",,,,,2,2,,,2,,2,2,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110620120951P030374484336001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THE CAMBRIDGE INCUBATOR, INC. 401(K) PLAN","001","2006-12-06","THE CAMBRIDGE INCUBATOR, INC.",,,"1 BROADWAY STE 14",,"CAMBRIDGE","MA","021421187",,,,,,,"1 BROADWAY STE 14",,"CAMBRIDGE","MA","021421187",,,,,,,"043484098","6177584100","561210","THE CAMBRIDGE INCUBATOR, INC.",,"1 BROADWAY STE 14",,"CAMBRIDGE","MA","021421187",,,,,,,"043484098","6177584100",,,,"2011-06-20T12:08:39-0500","TIMOTHY ROWE",,,,,24,22,0,5,27,0,27,22,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613162131P040077434641001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OMNICELL, INC. HEALTH INSURANCE PLAN","504","2003-01-01","OMNICELL, INC.",,,"1201 CHARLESTON ROAD",,"MOUNTAIN VIEW","CA","94043",,,,,,,,,,,,,,,,,,"943166458","6502516100","334110","OMNICELL, INC.",,"1201 CHARLESTON ROAD",,"MOUNTAIN VIEW","CA","94043",,,,,,,"943166458","6502516100",,,,"2011-06-13T16:09:46-0500","MARY SHARP",,,,,654,710,3,0,713,,,,,,,"4A4B4D4E4F4G4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110620134014P030374679728001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"KERBY FURNITURE, INC. 401K PLAN","001","1992-01-01","KERBY FURNITURE, INC.",,,"422 EAST BROADWAY",,"MESA","AZ","85204",,,,,,,,,,,,,,,,,,"860291721","4808343888","442110","KERBY FURNITURE, INC.",,"422 EAST BROADWAY",,"MESA","AZ","85204",,,,,,,"860291721","4808343888",,,,"2011-06-20T13:40:07-0500","MARVIN KERBY","2011-06-20T13:40:07-0500","MARVIN KERBY",,,16,9,0,1,10,0,10,10,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620083433P040081543329001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LEAVITT CORPORATION 401(K) PLAN","001","2007-10-01","THE LEAVITT CORPORATION",,,"100 SANTILLI HIGHWAY",,"EVERETT","MA","02149",,,,,,,,,,,,,,,,,,"041531280","6173892600","812990","THE LEAVITT CORPORATION",,"100 SANTILLI HIGHWAY",,"EVERETT","MA","02149",,,,,,,"041531280","6173892600",,,,"2011-06-20T08:34:25-0500","JOSEPH SARACENO",,,,,10,10,0,0,10,0,10,10,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110613150017P040077394481002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"CIRCLE C EQUIPMENT INC. PSP","003","2002-01-05","CIRCLE C EQUIPMENT INC",,,"27 N 150 W",,"JEROME","ID","83338",,,,,,,,,,,,,,,,,,"820507960","2083247372","811310","CIRCLE C EQUIPMENT INC",,"27 N 150 W",,"JEROME","ID","83338",,,,,,,"820507960","2083247372",,,,"2011-06-13T02:23:24-0500","JULIE CLIFTON",,,,,3,3,0,0,3,,3,3,,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-13","Filed with authorized/valid electronic signature",, "20110614125423P040077979697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ANTHONY SALIERNO DDS PROFIT SHARING PLAN","004","2008-01-01","ANTHONY SALIERNO DDS",,,"520 FRANKLIN AVENUE SUITE 112",,"GARDEN CITY","NY","115300000",,,,,,,,,,,,,,,,,,"112749421","5167463636","621210","ANTHONY SALIERNO DDS",,"520 FRANKLIN AVENUE SUITE 112",,"GARDEN CITY","NY","115300000",,,,,,,"112749421","5167463636",,,,"2011-06-14T12:54:05-0500","PENSION FILERS",,,,,4,3,0,1,4,0,4,4,1,,"2A2E3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614073818P040354114160001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"KB PAGE, LLC 401(K) RETIREMENT PLAN","001","2009-01-01","KB PAGE, LLC",,,"42 RUMSEY ROAD",,"EAST HARTFORD","CT","06108",,,,,,,,,,,,,,,,,,"262164609","8003323912","423800","KB PAGE, LLC",,"42 RUMSEY ROAD",,"EAST HARTFORD","CT","06108",,,,,,,"262164609","8003323912",,,,"2011-06-14T08:38:13-0500","KEVIN BARBEAU",,,,,13,14,0,1,15,0,15,9,1,,"2A2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614170731P030359197264001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"BALDWIN AREA MEDICAL CENTER HEALTH REIMBURSEMENT ARRANGEMENT","510","2009-01-01","BALDWIN AREA MEDICAL CENTER",,,"730 10TH AVE",,"BALDWIN","WI","54002",,,,,,,,,,,,,,,,,,"390808526","7156848616","622000","BALDWIN AREA MEDICAL CENTER",,"730 10TH AVE",,"BALDWIN","WI","54002",,,,,,,"390808526","7156848616",,,,"2011-06-14T17:00:53-0500","TRUDY ACHTERHOF",,,,,112,122,,,122,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614130848P040011452386001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PR TALENT LLC PROFIT SHARING PLAN","001","2005-01-01","PR TALENT LLC",,,"117 MAIN STREET, SUITE 208",,"HUNTINGTON BEACH","CA","926488172",,,,,,,,,,,,,,,,,,"330808277","7145360050","541990","PR TALENT LLC",,"117 MAIN STREET, SUITE 208",,"HUNTINGTON BEACH","CA","92648",,,,,,,"330808277","7145360050",,,,"2011-06-14T12:54:30-0500","JIM DELULIO",,,,,3,1,0,2,3,0,3,3,1,,"2A2E2F2G2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110614132218P030023595463001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M.J.R. MANAGEMENT SERVICES, INC. 401(K) PLAN","001","1999-01-01","M.J.R. MANAGEMENT SERVICES, INC.",,,"3109 13TH AVE SW",,"FARGO","ND","58103",,,,,,,,,,,,,,,,,,"450422099","7012394948","551112","M.J.R. MANAGEMENT SERVICES, INC.",,"3109 13TH AVE SW",,"FARGO","ND","58103",,,,,,,"450422099","7012394948",,,,"2011-06-14T13:22:09-0500","JOE L. COSSETTE","2011-06-14T13:22:09-0500","MARTIN J. RISKE",,,110,79,0,18,97,0,97,62,3,,"3D2E2F2G2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110620090015P040011962994001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WOODHOUSE GROUP HEALTH AND LIFE INSURANCE","502","2000-07-01","WOODHOUSE FORD INC",,,"PO BOX 546","SOUTH HIGHWAY 30","BLAIR","NE","680080546",,,,,,,,,,,,,,,,,,"470565206","4024264126","441110","WOODHOUSE FORD INC",,"PO BOX 546","SOUTH HIGHWAY 30","BLAIR","NE","680080546",,,,,,,"470565206","4024264126",,,,"2011-06-20T09:00:04-0500","PAUL CECH",,,,,270,339,2,0,341,,,,,,,"4A4B4D4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620170043P040002469235001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PROFIT SHARING PLAN OF DAVID N SCHAFFER MD","001","1981-01-01","DAVID N SCHAFFER, M D",,,"475 GOVERNOR ROAD SUITE 5",,"HERSHEY","PA","17033",,,,,,,,,,,,,,,,,,"232136902","7175342793","621111","DAVID N SCHAFFER M D",,"475 GOVERNOR ROAD SUITE 5",,"HERSHEY","PA","17033",,,,,,,"232136902","7175342793",,,,"2011-06-15T11:49:49-0500","DAVID N SCHAFFER",,,,,4,4,,,4,,4,4,,,"3B2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",, "20110620150757P040081739761001","2010-05-05","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"GOLF MOUNTAIN INC. 401(K) PLAN","001","2010-05-05","GOLF MOUNTAIN INC.",,,"1115 DIXIELAND ROAD",,"LOWELL","AR","72745",,,,,,,,,,,,,,,,,,"272496288","4796017878","713900","GOLF MOUNTAIN INC.",,"1115 DIXIELAND ROAD",,"LOWELL","AR","72745",,,,,,,"272496288","4796017878",,,,"2011-06-20T15:07:53-0500","DAVID LESTER","2011-06-20T15:07:53-0500","DAVID LESTER",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110614190756P030076079441001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STERLING BUSINESS FORMS, INC. LIFE AND DISABILITY PLAN","503","1984-07-01","STERLING BUSINESS FORMS, INC.",,,"5300 CRATER LAKE AVENUE","PO BOX 4726","MEDFORD","OR","97501",,,,,,,,,,,,,,,,,,"910849597","5418583243","323100","STERLING BUSINESS FORMS, INC.",,"5300 CRATER LAKE AVENUE","PO BOX 4726","MEDFORD","OR","97501",,,,,,,"910849597","5418583243",,,,"2011-06-14T19:07:47-0500","JANET HUPPERT",,,,,99,87,0,0,87,,,,,,,"4B4L4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-14","Filed with authorized/valid electronic signature",, "20110615144124P030002249795001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOMER T. HAYWARD LUMBER CO. HEALTH & WELFARE PLAN","501","1983-06-01","HOMER T. HAYWARD LUMBER CO., INC.",,,"10 RAGSDALE DRIVE, SUITE 100",,"MONTEREY","CA","93940",,,,,,,,,,,,,,,,,,"940543850","8316431900","444190","HOMER T. HAYWARD LUMBER CO., INC.",,"10 RAGSDALE DRIVE, SUITE 100",,"MONTEREY","CA","93940",,,,,,,"940543850","8316431900",,,,"2011-06-15T14:33:40-0500","MARC MIZGORSKI",,,,,182,149,5,0,154,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615140502P040011553442001","2009-09-01","2010-08-31","2",,"0","1","1","0","0","1","0","0","0",,"TRANE SUPPLEMENTAL ACCIDENT PL FOR SALARIED EMPLOYEES","536","1967-09-01","TRANE US INC.",,,"ONE CENTENNIAL AVE",,"PISCATAWAY","NJ","088556820",,,,,,,,,,,,,,,,,,"250900465","7326527100","332900","BENEFITS ADMINISTRATION COMMITTEE OF INGERSOLL-RAND COMPANY",,"ONE CENTENNIAL AVE",,"PISCATAWAY","NJ","088556820",,,,,,,"222116054","7326527000",,,,"2011-06-15T14:03:37-0500","SHEILA SAVAGEAU","2011-06-15T14:03:37-0500","RICHARD J. WELLER",,,7051,0,0,0,0,,,,,,,"4C","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110615154430P040078702417001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTERWEST INSURANCE SERVICES INC SECTION 125 CAFETERIA PLAN","504","1994-01-01","INTERWEST INSURANCE SERVICES INC",,,"3636 AMERICAN RIVER DRIVE","SECOND FLOOR","SACRAMENTO","CA","95864",,,,,,,"3636 AMERICAN RIVER DRIVE","SECOND FLOOR","SACRAMENTO","CA","95864",,,,,,,"680266090","9164883100","524210","INTERWEST INSURANCE SERVICES INC",,"3636 AMERICAN RIVER DRIVE","SECOND FLOOR","SACRAMENTO","CA","95864",,,,,,,"680266090","9164883100",,,,"2011-06-15T15:44:00-0500","KATHERINE SINHAWK",,,,,124,122,0,0,122,0,122,,,,,"4A",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615154605P040078703697001","2010-01-01","2010-08-11","2",,"0","0","1","1",,"1",,,,,"MEDIFACTS INTERNATIONAL, INC. 401(K) RETIREMENT & SAVINGS PLAN","002","1989-06-01","MEDIFACTS INTERNATIONAL, INC.",,,"2101 GAITHER RD.",,"ROCKVILLE","MD","20850",,,,,,,"2101 GAITHER RD.",,"ROCKVILLE","MD","20850",,,,,,,"521694004","3017952500","541990","MEDIFACTS INTERNATIONAL, INC.",,"2101 GAITHER RD.",,"ROCKVILLE","MD","20850",,,,,,,"521694004","3017952500",,,,"2011-06-15T11:59:24-0500","LINDSAY SHINKUNAS","2011-06-15T15:38:57-0500","DENIS MANGINELLI",,,113,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110615154636P040024640199001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OASIS ALIGNMENT SERVICES, INC. 401(K) PLAN","001","2000-04-01","OASIS ALIGNMENT SERVICES, INC.",,,"255 PICKERING ROAD",,"ROCHESTER","NH","03867",,,,,,,"255 PICKERING ROAD",,"ROCHESTER","NH","03867",,,,,,,"364336469","6033329641","541330","OASIS ALIGNMENT SERVICES, INC.",,"255 PICKERING ROAD",,"ROCHESTER","NH","03867",,,,,,,"364336469","6033329641",,,,"2011-06-15T15:40:28-0500","MARGARET CASEY","2011-06-15T14:52:06-0500","PAUL SIMONEAU",,,76,81,1,12,94,1,95,68,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110616094825P040359844208001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ST. LOUIS AUTO DEALERS 401(K) SAVINGS PLAN","001","1984-01-01","SOUTHTOWN DODGE, INC.",,,"7127 S. LINDBERGH",,"ST. LOUIS","MO","63125",,,,,,,,,,,,,,,,,,"431057804","3144871010","441110","SOUTHTOWN DODGE, INC.",,"7127 S. LINDBERGH",,"ST. LOUIS","MO","63125",,,,,,,"431057804","3144871010",,,,"2011-06-16T09:48:18-0500","KAREN CUNNINGHAM",,,,,54,48,0,15,63,0,63,51,0,,"3D2E2F2G2J2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-16","Filed with authorized/valid electronic signature",, "20110615130355P040011547714002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"KAPLAN MRD, INC. PROFIT SHARING PLAN","002","2001-01-01","KAPLAN MRD, INC.",,,"31 CHESLEY ROAD",,"WHITE PLAINS","NY","106054511",,,,,,,,,,,,,,,,,,"133591393","9146861450","541910","KAPLAN MRD, INC.",,"31 CHESLEY ROAD",,"WHITE PLAINS","NY","106054511",,,,,,,"133591393","9146861450",,,,"2011-07-29T08:27:37-0500","ARTHUR KAPLAN",,,,,2,2,,,2,,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615104819P030011080066001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEE TERM LIFE, AD&D AND DEPENDENTS TERM LIFE COVERAGE","501","1984-01-01","MISSION HEALTH SYSTEM INC.",,,"5 FREDERICK STREET",,"ASHEVILLE","NC","28801",,,,,,,,,,,,,,,,,,"581450888","8282135600","622000","MISSION HEALTH SYSTEM INC.",,"5 FREDERICK STREET",,"ASHEVILLE","NC","28801",,,,,,,"581450888","8282135600",,,,"2011-06-15T10:48:12-0500","MARIA ROLOFF",,,,,5606,6047,0,0,6047,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615135527P040078651505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ISLAND ACURA 401(K) PLAN","001","1991-09-01","HEMPSTEAD LINCOLN MERCURY",,,"301 NO. FRANKLIN STREET",,"HEMPSTEAD","NY","11550",,,,,,,,,,,,,,,,,,"111968002","5164837200","441110","MR. JEFFREY SOUKUP",,"301 N. FRANKLIN STREET",,"HEMPSTEAD","NY","11550",,,,,,,"113064725","5164837200",,,,"2011-06-15T13:55:19-0500","JEFFREY E. SOUKUP","2011-06-15T13:55:19-0500","JEFFREY E. SOUKUP",,,39,39,0,2,41,0,41,19,0,,"2E2J2F2G3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","2","0","1","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110615144158P030361624496001","2010-03-01","2010-12-31","2",,"0","0","1","1","0","0","0","0","0",,"USW 9 925 SHORT TERM DISABILITY PLAN","501","2005-03-01","USW 9 925",,,"420 PITTS ROAD",,"CATAWBA","SC","29704",,,,,,,"5300 CURETON FERRY ROAD",,"CATAWBA","SC","29704",,,,,,,"570556867","8039818699","322100","ALLISON BROCK INC",,"2524 SOUTH JEFFERSON STREET",,"ROANOKE","VA","24014",,,,,,,"541776811","5403451293",,,,"2011-06-15T14:40:36-0500","SAMUEL ALLISON",,,,,151,0,0,0,0,,0,,,,,"4F","1",,,,"1",,,,,,,,,"1","1",,,"1","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615112905P040078585809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","001","2000-01-01","CO-MARK INC",,,"P O BOX 130",,"CHENEY","KS","67025",,,,,,,,,,,,,,,,,,"481112653","3165423435","111100","CO-MARK INC",,"P O BOX 130",,"CHENEY","KS","67025",,,,,,,"481112653","3165423435",,,,"2011-06-15T11:22:03-0500","DAVID E SMITH",,,,,7,9,0,0,9,0,9,8,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615115003P040078596705001","2001-09-01","2010-08-31","2",,"0","1","0","0","0","0","0","0","0",,"STILLMAN COLLEGE LIFE AND DISABILITY INSURANCE PLAN","501","1997-09-01","STILLMAN COLLEGE",,"SAMA MONDEH","PO BOX 1430",,"TUSCALOOSA","AL","35403",,,,,,,"3601 STILLMAN BLVD",,"TUSCALOOSA","AL","35401",,,,,,,"630315935","2052478070","611000","STILLMAN COLLEGE","SAMA MONDEH","PO BOX 1430",,"TUSCALOOSA","AL","35403",,,,,,,"630315935","2052478070",,,,"2011-06-15T11:41:12-0500","SAMA MONDEH",,,,,161,161,,,161,,161,,,,,"4B4F4H4L","1",,,,"1",,,,,,,,,"1",,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615130137P030076510849004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WEYHRICH SAFE HARBOR 401K PROFIT SHARING PLAN","001","1982-01-28","DARIN L WEYHRICH, MD, PA",,,"222 NORTH SECOND SUITE 206",,"BOISE","ID","837026130",,,,,,,,,,,,,,,,,,"820364697","2083422516","621111","DARIN L WEYHRICH MD PA",,"222 NORTH SECOND SUITE 206",,"BOISE","ID","837026130",,,,,,,"820364697","2083422516",,,,"2011-06-15T09:13:12-0500","DARIN WEYHRICH",,,,,6,5,,,5,,5,5,,,"3D2J2G2F2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615130155P040011547490001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JM CANTY, INC. 401K PLAN","001","1992-09-01","JM CANTY, INC.",,,"6100 DONNER RD",,"LOCKPORT","NY","140949227",,,,,,,,,,,,,,,,,,"161077555","7166393953","339900","JM CANTY, INC.",,"6100 DONNER RD",,"LOCKPORT","NY","140949227",,,,,,,"161077555","7166393953",,,,"2011-06-15T12:56:43-0500","JEAN CANTY",,,,,46,39,0,9,48,0,48,45,2,,"2F2E2K2G2J",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","3","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615125635P040078625377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HIXSON NAGATANI LLP PROFIT SHARING PLAN","001","2009-01-01","HIXSON NAGATANI LLP",,,"4655 OLD IRONSIDES DR STE 420",,"SANTA CLARA","CA","95054",,,,,,,,,,,,,,,,,,"263430946","4084069955","541110","HIXSON NAGATANI LLP",,"4655 OLD IRONSIDES DR STE 420",,"SANTA CLARA","CA","95054",,,,,,,"263430946","4084069955",,,,"2011-06-15T12:56:30-0500","YAHAIRA ORTIZ",,,,,2,3,0,0,3,0,3,3,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615165315P030023849015001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RED ROBIN INTERNATIONAL GROUP HEALTH PLAN","501","1985-12-01","RED ROBIN INTERNATIONAL, INC.",,,"6312 S. FIDDLERS GREEN CIRCLE,","SUITE 200N","GREENWOOD VILLAGE","CO","80111",,,,,,,,,,,,,,,,,,"910847486","3038466000","722110","RED ROBIN INTERNATIONAL, INC.",,"6312 S. FIDDLERS GREEN CIRCLE,","SUITE 200N","GREENWOOD VILLAGE","CO","80111",,,,,,,"910847486","3038466000",,,,"2011-06-15T16:53:08-0500","BILL STREITBERGER",,,,,2929,3032,123,0,3155,,,,,,,"4A4D4E4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615083658P030023754855001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ROBICHAUD & ANDERSON, P.A. PROFIT SHARING PLAN","001","1999-01-01","ROBICHAUD & ANDERSON, P.A.",,,"211 WASHINGTON AVE. N.",,"MINNEAPOLIS","MN","55401",,,,,,,,,,,,,,,,,,"411851428","6123333343","541110","ROBICHAUD & ANDERSON, P.A.",,"211 WASHINGTON AVE. N.",,"MINNEAPOLIS","MN","55401",,,,,,,"411851428","6123333343",,,,"2011-06-15T08:36:47-0500","KIM ROBICHAUD",,,,,9,8,0,1,9,0,9,9,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615201148P030076686625001","2010-02-01","2011-01-31","2",,,,,,,,,,,,"COAST PACIFIC MARKETING, INC. 401K PLAN","001","2002-02-01","COAST PACIFIC MARKETING, INC.",,,"3401 ETIWANDA AVE, BLDG 1011A","PO BOX 248","MIRA LOMA","CA","91752",,,,,,,,,,,,,,,,,,"260012607","9516810666","812990","COAST PACIFIC MARKETING, INC.",,"3401 ETIWANDA AVE, BLDG 1011A","PO BOX 248","MIRA LOMA","CA","91752",,,,,,,"260012607","9516810666",,,,"2011-06-15T09:11:40-0500","KURT ALLEN",,,,,3,3,,,3,,3,3,,,"2A2E2F2G2J2K2R3D",,"1",,"1",,"1",,"1",,,,,,"1","1","2",,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615143132P030076547937003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DYSTAR LP HEALTH REIMBURSEMENT ARRANGEMENT","503","2008-01-01","DYSTAR, L P",,,"9844-A SOUTHERN PINE BOULEVARD",,"CHARLOTTE","NC","28273",,,,,,,,,,,,,,,,,,"561929091","7045613039","325900","DYSTAR L P",,"9844-A SOUTHERN PINE BOULEVARD",,"CHARLOTTE","NC","28273",,,,,,,"561929091","7045613039",,,,"2011-06-15T13:49:11-0500","STEVEN M HENNEN",,,,,129,108,,,108,,108,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615111511P030011082578004","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"LEONARD SAHN, M.D., P.C. PROFIT SHARING TRUST","001","1977-08-01","LEONARD SAHN, M.D., P.C.",,,"29355 NORTHWESTERN HWY, SUITE 100","SUITE 340","SOUTHFIELD","MI","480341065",,,,,,,,,,,,,,,,,,"382166132","2483551300","621111","LEONARD SAHN, M.D., P.C.",,"29355 NORTHWESTERN HWY, SUITE 100",,"SOUTHFIELD","MI","480341065",,,,,,,"382166132","2483551300",,,,"2011-06-15T12:04:55-0500","LEONARD SAHN, M.D.",,,,,3,3,0,0,3,0,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615153444P030076576529001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CATHAY BANK EMPLOYEE STOCK OWNERSHIP PLAN","002","1985-01-01","CATHAY GENERAL BANCORP",,,"777 NORTH BROADWAY",,"LOS ANGELES","CA","900122819",,,,,,,,,,,,,,,,,,"954274680","6265827348","522110","CATHAY BANK E.S.O.P. COMMITTEE",,"777 NORTH BROADWAY",,"LOS ANGELES","CA","900122819",,,,,,,"954027771","6265827348",,,,"2011-06-15T15:34:41-0500","PETER WU PLAN ADMINISTRATOR",,,,,1013,768,0,197,965,0,965,433,0,,"2I2O",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615092810P030023762375001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROFESSIONAL BUILDING PHARMACY PROFIT SHARING PLAN","001","1985-03-04","PROFESSIONAL BUILDING PHARMACY",,,"251 MEDICAL CENTER BLVD","SUITE #100","WEBSTER","TX","77598",,,,,,,"251 MEDICAL CENTER BLVD","SUITE #100","WEBSTER","TX","77598",,,,,,,"741945444","2813322496","446110","PROFESSIONAL BUILDING PHARMACY",,"251 MEDICAL CENTER BLVD","SUITE #100","WEBSTER","TX","77598",,,,,,,"741945444","2813322496",,,,"2011-06-15T09:27:34-0500","STEVEN JENKINS",,,,,7,7,,,7,,7,7,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615094530P030360993232001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ULANO INDUSTRIES-SALARIED PROFIT SHARING & 401K PLAN","003","1973-07-01","ULANO CORPORATION",,,"110 THIRD AVE.",,"BROOKLYN","NY","11217",,,,,,,,,,,,,,,,,,"061553470","7182374700","339900","ULANO CORPORATION",,"110 THIRD AVE.",,"BROOKLYN","NY","11217",,,,,,,"061553470","7182374700",,,,"2011-06-15T09:45:23-0500","ANGELO MUSTO",,,,,85,72,1,8,81,1,82,62,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615132355P040024616711001","2010-09-28","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"DCEA, INC. 401(K) PROFIT SHARING PLAN","001","2010-09-28","DCEA, INC.","DCEA, INC.",,"20 DR. TONYS ROAD",,"KATONAH","NY","10536",,,,,,,,,,,,,,,,,,"273458395","9145484836","523900","DCEA, INC.",,"20 DR. TONYS ROAD",,"KATONAH","NY","10536",,,,,,,"273458395","9145484836",,,,"2011-06-15T13:22:36-0500","ROBERT ABATECOLA",,,,,1,1,0,0,1,,1,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615141951P030361570832001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LINEBARGER GOGGAN BLAIR SAMPSON LLP FLEXIBLE BENEFITS PLAN","501","1998-05-01","LINEBARGER GOGGAN BLAIR SAMPSON LLP",,,"2700 VIA FORTUNA DRIVE","SUITE 400 THE TERRACE II","AUSTIN","TX","78746",,,,,,,,,,,,,,,,,,"742864602","5124476675","541110","LINEBARGER GOGGAN BLAIR SAMPSON LLP",,"2700 VIA FORTUNA DRIVE","SUITE 400 THE TERRACE II","AUSTIN","TX","78746",,,,,,,"742864602","5124476675",,,,"2011-06-15T14:15:52-0500","GREG DEWINNE",,,,,192,197,0,0,197,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615115642P040078599185001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ENVELOPES ONLY, INC. PROFIT SHARING PLAN AND TRUST","001","1985-04-01","ENVELOPES ONLY, INC.",,,"2000 SOUTH PARK AVENUE",,"STREAMWOOD","IL","601072945",,,,,,,,,,,,,,,,,,"363242088","6302132500","453210","ENVELOPES ONLY, INC.",,"2000 SOUTH PARK AVENUE",,"STREAMWOOD","IL","601072945",,,,,,,"363242088","6302132500",,,,"2011-06-15T11:56:37-0500","DEBORAH CRAIG",,,,,30,22,0,2,24,0,24,23,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615121827P030076489809001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"CAKE AND RHOADES PROFIT SHARING PLAN","002","1991-01-01","CAKE AND RHOADES, P.C.",,"JACK RHOADES","108 COLUMBUS STREET",,"ALEXANDRIA","VA","22314",,,,,,,"108 COLUMBUS STREET",,"ALEXANDRIA","VA","22314",,,,,,,"540889774","7035498181","541110","CAKE AND RHOADES, P.C.","JACK RHOADES","108 COLUMBUS STREET",,"ALEXANDRIA","VA","22314",,,,,,,"540889774","7035498181",,,,"2011-06-15T12:17:24-0500","LORA PALACIOS",,,,,2,2,0,0,2,0,2,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615074512P030076369505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WORKHORSE INVESTMENTS COMPANY 401(K) PROFIT SHARING PLAN & TRUST","001","2001-01-01","WORKHORSE INVESTMENT COMPANY",,,"324 E. MANDOLINE AVE",,"MADISON HEIGHTS","MI","48071",,,,,,,,,,,,,,,,,,"383542228","2485885600","332110","WORKHORSE INVESTMENT COMPANY",,"324 E. MANDOLINE AVE",,"MADISON HEIGHTS","MI","48071",,,,,,,"383542228","2485885600",,,,"2011-06-15T07:45:09-0500","WORKHORSE INVESTMENT COMPANY",,,,,15,9,0,1,10,0,10,10,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615082411P030023752247001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHARD A. GREIFINGER PROFIT SHARING PLAN","001","1996-01-01","RICHARD A. GREIFINGER",,,"17 ACADEMY STREET",,"NEWARK","NJ","07102",,,,,,,,,,,,,,,,,,"223160380","9732421500","541110","RICHARD A. GREIFINGER",,"17 ACADEMY STREET",,"NEWARK","NJ","07102",,,,,,,"223160380","9732421500",,,,"2011-06-15T08:23:58-0500","RICHARD A. GREIFINGER",,,,,4,2,0,1,3,0,3,3,1,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615191153P030076663473001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CORNERSTONE RESIDENTIAL MANAGEMENT, LLC","501","2003-01-01","CORNERSTONE RESIDENTIAL MANAGEMENT, LLC",,,"2100 HOLLYWOOD BOULEVARD",,"HOLLYWOOD","FL","33020",,,,,,,,,,,,,,,,,,"752998533","3054438288","531310","CORNERSTONE RESIDENTIAL MANAGEMENT, LLC",,"2100 HOLLYWOOD BOULEVARD",,"HOLLYWOOD","FL","33020",,,,,,,"752998533","3054438288",,,,"2011-06-15T19:11:49-0500","BRUCE W. ADAMS",,,,,303,295,1,0,296,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",, "20110615140440P040011553378001","2009-09-01","2010-08-31","2",,"0","1","0","0","1","1","0","0","0",,"GROUP INSURANCE PLAN FOR HOURLY EMPLOYEES OF LOUISVILLE PLANT","513","1959-06-01","TRANE US INC.",,,"ONE CENTENNIAL AVE",,"PISCATAWAY","NJ","088556820",,,,,,,,,,,,,,,,,,"250900465","7326527100","332900","BENEFITS ADMINSITRATION COMMITTEE OF INGERSOLL-RAND COMPANY",,"ONE CENTENNIAL AVE",,"PISCATAWAY","NJ","08855",,,,,,,"222116054","7326527000",,,,"2011-06-15T14:03:37-0500","SHEILA SAVAGEAU","2011-06-15T14:03:37-0500","RICHARD J. WELLER",,,487,,244,,244,,,,,,,"4A4B","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628131604P040002611955001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NAVIGATON SOLUTIONS, LLC EMPLOYEE BENEFITS PLAN","501","2006-09-01","NAVIGATION SOLUTIONS, LLC",,,"6001 NORTH ADAMS RD, STE 150",,"BLOOMFIELD HILLS","MI","48304",,,,,,,,,,,,,,,,,,"752824438","2482582672","811210","NAVIGATION SOLUTIONS, LLC",,"6001 NORTH ADAMS RD, STE 150",,"BLOOMFIELD HILLS","MI","48304",,,,,,,"752824438","2482582672",,,,"2011-06-28T13:15:52-0500","MARGARET DISKIN, SPHR",,,,,235,252,0,0,252,,,,,,,"4A4B4D4F4G4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","11","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629085550P030084366385001","2010-02-01","2011-01-31","2",,"0","0","0","0","0","0","0","0","0",,"TRIAD GUARANTY INSURANCE CORPORATION WELFARE PLAN","501","1997-02-01","TRIAD GUARANTY INSURANCE CORPORATION",,,"101 SOUTH STRATFORD ROAD",,"WINSTON-SALEM","NC","271044213",,,,,,,,,,,,,,,,,,"561570971","3367231282","524290","TRIAD GUARANTY INSURANCE CORPORATION",,"101 SOUTH STRATFORD ROAD",,"WINSTON-SALEM","NC","271044213",,,,,,,"561570971","3367231282",,,,"2011-06-29T08:49:33-0500","TAMMIE BOWMAN",,,,,117,79,7,0,86,,86,,,,,"4A4B4D4F4H4Q4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624112936P040084048001001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CENTREVILLE SAVINGS BANK FLEXIBLE BENEFITS PLAN","501","1991-02-22","CENTREVILLE SAVINGS BANK",,,"1218 MAIN STREET",,"WEST WARWICK","RI","02893",,,,,,,,,,,,,,,,,,"050118560","4018219100","522120","CENTREVILLE SAVINGS BANK",,"1218 MAIN STREET",,"WEST WARWICK","RI","02893",,,,,,,"050118560","4018219100",,,,"2011-06-24T11:29:29-0500","RAYMOND V. MOREL","2011-06-24T11:29:29-0500","RAYMOND V. MOREL",,,140,139,0,0,139,,,,,,,"4A4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628105902P030083819537001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ZIEGLER CUSTOM HOMES, INC. 401(K) PLAN","001","2005-01-01","ZIEGLER CUSTOM HOMES, INC.",,,"11469 193RD AVENUE NW",,"ELK RIVER","MN","55330",,,,,,,,,,,,,,,,,,"770618287","7634412153","236110","ZIEGLER CUSTOM HOMES, INC.",,"11469 193RD AVENUE NW",,"ELK RIVER","MN","55330",,,,,,,"770618287","7634412153",,,,"2011-06-28T10:47:38-0500","JUDY ROSENE",,,,,5,4,0,1,5,0,5,5,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628110049P030083820513001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MURPHY, TURNER AND ASSOCIATES 401(K) PROFIT SHARING PLAN","001","2007-01-01","MURPHY, TURNER AND ASSOCIATES, LLC",,,"1400 LAVACA STREET, SUITE A",,"AUSTIN","TX","78701",,,,,,,,,,,,,,,,,,"470904000","5126589913","813000","MURPHY, TURNER AND ASSOCIATES, LLC",,"1400 LAVACA STREET, SUITE A",,"AUSTIN","TX","78701",,,,,,,"470904000","5126589913","MURPHY, TURNER AND ASSOCIATES, LLP","470904000","001","2011-06-28T11:00:01-0500","PATRICK HAMILTON",,,,,6,7,0,1,8,0,8,8,1,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628072926P040391470272001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE PHILADELPHIA BOURSE, INC. 401(K) PLAN","002","1989-08-28","THE PHILADELPHIA BOURSE, INC.",,,"120 SALLITT DRIVE","SUITE A","STEVENSVILLE","MD","21666",,,,,,,,,,,,,,,,,,"230968750","4106043780","551112","THE PHILADELPHIA BOURSE, INC.",,"120 SALLITT DRIVE","SUITE A","STEVENSVILLE","MD","21666",,,,,,,"230968750","4106043780",,,,"2011-06-27T12:31:31-0500","JOY TOEWS",,,,,38,40,0,3,43,0,43,23,0,,"2E2F2G2J2K2T3D3H",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628090821P030083768241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPARTAN CHEMICAL LIFE, ACCIDENTAL DEATH AND DISABILITY PLAN","501","1982-01-01","SPARTAN CHEMICAL COMPANY, INC",,,"1110 SPARTAN DRIVE",,"MAUMEE","OH","43537",,,,,,,"1110 SPARTAN DRIVE",,"MAUMEE","OH","43537",,,,,,,"344463428","4195315551","325600","SPARTAN CHEMICAL COMPANY, INC",,"1110 SPARTAN DRIVE",,"MAUMEE","OH","43537",,,,,,,"344463428","4195315551",,,,"2011-06-28T08:52:50-0500","SCOTT LIBBE",,,,,237,245,,,245,,245,,,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628182252P040086492129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAUL C. LIU, D.D.S., INC. 401(K) PROFIT SHARING PLAN","002","2008-01-01","PAUL C. LIU, D.D.S., INC.",,,"2323 FOOTHILL BLVD.",,"LA VERNE","CA","917503027",,,,,,,,,,,,,,,,,,"010556204","9095959449","621210","PAUL C. LIU, D.D.S., INC.",,"2323 FOOTHILL BLVD.",,"LA VERNE","CA","917503027",,,,,,,"010556204","9095959449",,,,"2011-06-28T18:20:11-0500","PAUL C. LIU",,,,,13,12,0,2,14,0,14,14,0,,"2D2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629075557P040012770530001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"J. PATRICK BOWER KEOGH PLAN","001","1988-01-01","J. PATRICK BOWER",,,"424 HOLDEN STREET",,"CLARKSBURG","WV","26301",,,,,,,"424 HOLDEN STREET",,"CLARKSBURG","WV","26301",,,,,,,"550151134","3046220183","541110","J. PATRICK BOWER",,"424 HOLDEN STREET",,"CLARKSBURG","WV","26301",,,,,,,"550151134","3046220183",,,,"2011-06-16T04:52:40-0500","J. PATRICK BOWER",,,,,2,,,,0,,0,,,,"2E2G3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629083035P040086837857001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"FULCRUM ANALYTICS 401(K) RETIREMENT PLAN","001","1990-01-01","FULCRUM ANALYTICS, INC.",,,"70 W 40TH STREET","10TH FLOOR","NEW YORK","NY","10018",,,,,,,"70 W 40TH STREET","10TH FLOOR","NEW YORK","NY","10018",,,,,,,"383140222","8882459450","541600","FULCRUM ANALYTICS, INC.",,"70 W 40TH STREET","10TH FLOOR","NEW YORK","NY","10018",,,,,,,"383140222","8882459450",,,,"2011-06-29T08:29:30-0500","CHRISTY WAGENSELLER",,,,,118,70,0,39,109,0,109,90,8,,"2E2F2G2J2K2T3D3F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629083317P030398231568001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEPHEN RALPH RIBAUDO, M.D., P.C. PROFIT SHARING PLAN","002","1990-01-01","STEPHEN RALPH RIBAUDO, M.D., P.C.",,,"229 RED COACH DRIVE","SUITE 102","MISHAWAKA","IN","46545",,,,,,,,,,,,,,,,,,"351673042","5742525852","621111","STEPHEN RALPH RIBAUDO, M.D., P.C.",,"229 RED COACH DRIVE","SUITE 102","MISHAWAKA","IN","46545",,,,,,,"351673042","5742525852",,,,"2011-06-29T08:33:03-0500","STEPHEN RALPH RIBAUDO","2011-06-29T08:33:03-0500","STEPHEN RALPH RIBAUDO",,,7,5,2,0,7,0,7,6,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624125058P040381637200001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ASBURY AUTOMOTIVE GROUP MEDICAL WELFARE BENEFIT PLAN","501","2004-06-01","ASBURY AUTOMOTIVE GROUP, LLC",,,"2905 PREMIERE PARKWAY, SUITE 300",,"DULUTH","GA","30097",,,,,,,,,,,,,,,,,,"232790555","6785422700","441110","ASBURY AUTOMOTIVE GROUP, LLC",,"2905 PREMIERE PARKWAY, SUITE 300",,"DULUTH","GA","30097",,,,,,,"232790555","6785422700",,,,"2011-06-24T12:50:54-0500","SABA YOHANNES",,,,,6878,6462,186,0,6648,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624113029P040381468816001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSTRUCTION DYNAMICS PENSION PLAN","002","1997-07-01","CONSTRUCTION DYNAMICS, INC.",,,"270 AIRPORT ROAD",,"FITCHBURG","MA","01420",,,,,,,,,,,,,,,,,,"043106488","9783436606","236200","CONSTRUCTION DYNAMICS, INC.",,"270 AIRPORT ROAD",,"FITCHBURG","MA","01420",,,,,,,"043106488","9783436606",,,,"2011-06-24T11:30:10-0500","DENISE M. BRUSO","2011-06-24T11:30:10-0500","DENISE M. BRUSO",,,40,41,0,9,50,0,50,50,0,,"2C2F2G2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624113335P040084050481001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LANCE CAMPER MFG. CORP. 401(K) PROFIT SHARING PLAN","001","2008-01-01","LANCE CAMPER MFG. CORPORATION",,,"43120 VENTURE STREET",,"LANCASTER","CA","93535",,,,,,,,,,,,,,,,,,"952746650","6619493322","339900","LANCE CAMPER MFG. CORPORATION",,"43120 VENTURE STREET",,"LANCASTER","CA","93535",,,,,,,"952746650","6619493322",,,,"2011-06-24T12:33:32-0500","JEFF SOULELES",,,,,222,256,1,31,288,0,288,138,0,,"2E2G2J2K2T3D3H",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624160135P030081714993001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"APEX REMODELERS","002","2000-01-01","WILLIAM JIACOVELLI",,,"767 E MAIN ROAD",,"MIDDLETOWN","RI","02842",,,,,,,,,,,,,,,,,,"050315326","4014391930","238300","APEX REMODELERS","A. WILLIAM JIACOVELLI","767 E MAIN ROAD",,"MIDDLETOWN","RI","02842",,,,,,,"050315326","4014391930",,,,"2011-06-24T15:38:08-0500","A WILLIAM JIACOVELLI",,,,,3,1,,,1,,1,,,,"3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628155934P030083965777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"WALTER OIL & GAS CORPORATION 401K SAVINGS PLAN","001","1990-01-01","WALTER OIL & GAS CORPORATION",,,"1100 LOUISIANA ST STE 200",,"HOUSTON","TX","770025215",,,,,,,,,,,,,,,,,,"742180343","7136591221","211110","WALTER OIL & GAS CORPORATION",,"1100 LOUISIANA ST STE 200",,"HOUSTON","TX","770025215",,,,,,,"742180343","7136591221",,,,"2011-06-28T15:48:18-0500","BRENDA ROLIARD",,,,,59,46,0,14,60,1,61,60,3,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","1","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629092644P030084379185001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"COMPASS ADJUSTING SERVICES 401(K) PLAN","001","2009-01-01","COMPASS ADJUSTING SERVICES",,,"4541 BELLAIRE DRIVE SOUTH","SUITE 102","FORT WORTH","TX","76109",,,,,,,,,,,,,,,,,,"202226269","8177315008","524290","COMPASS ADJUSTING SERVICES",,"4541 BELLAIRE DRIVE SOUTH","SUITE 102","FORT WORTH","TX","76109",,,,,,,"202226269","8177315008",,,,"2011-06-29T09:26:10-0500","CHRIS KENNEY","2011-06-29T09:26:10-0500","CHRIS KENNEY",,,8,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624020724P040083806897001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"C.S. WO & SONS, LIMITED PROFIT SHARING PLAN","001","1953-10-01","C.S. WO & SONS, INC.",,,"702 S. BERETANIA STREET",,"HONOLULU","HI","96813",,,,,,,,,,,,,,,,,,"990063065","8085435340","442110","C.S. WO & SONS, INC.",,"702 S. BERETANIA STREET",,"HONOLULU","HI","96813",,,,,,,"990063065","8085435340",,,,"2011-06-23T11:46:25-0500","KYLE HAVERLY",,,,,267,226,,17,243,0,243,175,8,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624135844P030385678688001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"AM-B-CARE, INC. PROFIT SHARING PLAN AND TRUST","001","2001-01-01","AM-B-CARE/CHAIR, INC.",,,"2153 EAST COLUMBUS AVE",,"SPRINGFIELD","MA","01104",,,,,,,"2153 EAST COLUMBUS AVE",,"SPRINGFIELD","MA","01104",,,,,,,"043496117","5088324100","621900","AM-B-CARE/CHAIR, INC.",,"2153 EAST COLUMBUS AVE",,"SPRINGFIELD","MA","01104",,,,,,,"043496117","5088324100",,,,"2011-06-24T13:58:22-0500","ROBERT PHILLIPO",,,,,54,58,0,5,63,0,63,15,1,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628110616P040391914208001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLATTE AMERICA 401(K) PLAN","001","2007-04-01","CHARLATTE AMERICA",,,"PO BOX 968",,"BLUEFIELD","VA","24605",,,,,,,"600 MOUNTAIN LANE",,"BLUEFIELD","VA","24605",,,,,,,"541678071","2763261510","333200","CHARLATTE AMERICA",,"PO BOX 968",,"BLUEFIELD","VA","24605",,,,,,,"541678071","2763261510",,,,"2011-06-28T11:05:21-0500","MICHAEL FULLER",,,,,31,28,0,3,31,0,31,17,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628094331P030395658208001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAILSIDE ENTERPRISES, INC. & AFFILIATES EMPLOYEE STOCK OWNERSHIP PLAN","001","1982-01-01","RAILSIDE ENTERPRISES, INC.",,,"73 RAILSIDE DRIVE",,"WEYERS CAVE","VA","24486",,,,,,,,,,,,,,,,,,"541932595","5402349185","551112","RAILSIDE ENTERPRISES, INC.",,"73 RAILSIDE DRIVE",,"WEYERS CAVE","VA","24486",,,,,,,"541932595","5402349185",,,,"2011-06-28T09:43:14-0500","J.D. PATTON",,,,,79,74,,7,81,,81,77,2,,"2I2O2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628100453P040086269521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEES RETIREMENT SAVINGS PLAN","003","1989-01-01","STAUNTON CAPITAL, INC.",,,"PO BOX 2718",,"HIGH POINT","NC","272612718",,,,,,,,,,,,,,,,,,"561669702","3364343485","339900","STAUNTON CAPITAL, INC.",,"PO BOX 2718",,"HIGH POINT","NC","272612718",,,,,,,"561669702","3364343485",,,,"2011-06-23T07:58:09-0500","JAMES E HOOPER",,,,,382,343,0,36,379,0,379,189,6,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628151004P040086405745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LARRY M. REECER, P.C. PROFIT SHARING PLAN","001","2001-01-01","LARRY M. REECER, P.C.",,,"5203 JUAN TABO NE STE 2D",,"ALBUQUERQUE","NM","87111",,,,,,,,,,,,,,,,,,"850469624","5058898928","541110","LARRY M. REECER, P.C.",,"5203 JUAN TABO NE STE 2D",,"ALBUQUERQUE","NM","87111",,,,,,,"850469624","5058898928",,,,"2011-06-28T15:09:29-0500","LARRY M. REECER","2011-06-28T15:09:29-0500","LARRY M. REECER",,,2,2,0,0,2,0,2,2,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624092253P040083985041001","2008-11-01","2009-10-31","2",,"0","0","0","0","0","0","0","1","0",,"TRUE WORLD HOLDINGS LLC HEALTH PLAN","501","1989-11-01","TRUE WORLD HOLDINGS LLC",,,"24 LINK DRIVE",,"ROCKLEIGH","NJ","07647",,,,,,,,,,,,,,,,,,"541029769","2017500024","424400","TRUE WORLD HOLDINGS LLC",,"24 LINK DRIVE",,"ROCKLEIGH","NJ","07647",,,,,,,"541029769","2017500024",,,,"2011-06-24T09:22:48-0500","ALEXANDER CHOI",,,,,492,493,4,0,497,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624092311P040026310103001","2009-11-01","2010-10-31","2",,"0","0","0","0","0","0","0","1","0",,"TRUE WORLD HOLDINGS LLC HEALTH PLAN","501","1989-11-01","TRUE WORLD HOLDINGS LLC",,,"24 LINK DRIVE",,"ROCKLEIGH","NJ","07647",,,,,,,,,,,,,,,,,,"541029769","2017500024","424400","TRUE WORLD HOLDINGS LLC",,"24 LINK DRIVE",,"ROCKLEIGH","NJ","07647",,,,,,,"541029769","2017500024",,,,"2011-06-24T09:23:05-0500","ALEXANDER CHOI",,,,,504,526,7,0,533,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628103223P040086283185002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BATEMAN GORDON & SANDS 401K PLAN","001","1992-01-01","BATEMAN, GORDON & SANDS, INC",,,"3050 N FEDERAL HIGHWAY",,"LIGHTHOUSE POINT","FL","33064",,,,,,,,,,,,,,,,,,"590715027","9549410900","524210","BATEMAN GORDON & SANDS INC",,"3050 N FEDERAL HIGHWAY",,"LIGHTHOUSE POINT","FL","33064",,,,,,,"590715027","9549410900",,,,"2011-06-24T14:37:50-0500","NANCY BROWN",,,,,49,34,,7,41,,41,36,2,,"3D2K2J2G2F2E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628130518P040086346369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BURKE, INC. EMPLOYEE STOCK OWNERSHIP PLAN","004","2004-01-01","BURKE, INC.",,,"500 WEST 7TH ST.",,"CINCINNATI","OH","45203",,,,,,,,,,,,,,,,,,"311271870","5136847604","541910","BURKE, INC.",,"500 WEST 7TH ST.",,"CINCINNATI","OH","45203",,,,,,,"311271870","5136847604",,,,"2011-06-28T13:05:08-0500","MARY BETH MAPSTONE, SR. VP FINANCE",,,,,303,329,0,57,386,0,386,331,9,,"2P2I2Q3I",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110624121311P030385473616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MCDUVIE, LLC 401(K) PLAN AND TRUST","001","2007-01-01","MCDUVIE, LLC",,,"2044 EAST COUNTY ROAD E",,"WHITE BEAR LAKE","MN","55110",,,,,,,,,,,,,,,,,,"208090333","6517702988","722110","MCDUVIE, LLC",,"2044 EAST COUNTY ROAD E",,"WHITE BEAR LAKE","MN","55110",,,,,,,"208090333","6517702988",,,,"2011-06-24T12:03:41-0500","PATRICK DUVAL",,,,,70,65,0,1,66,0,66,21,1,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624121507P030081609777002","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"REINCARNATION, INC. 401K PLAN","001","1999-01-01","REINCARNATION, INC.",,,"7 VINCENT PLACE",,"VERONA","NJ","07044",,,,,,,,,,,,,,,,,,"222038874","9082734500","812112","REINCARNATION, INC.",,"7 VINCENT PLACE",,"VERONA","NJ","07044",,,,,,,"222038874","9082734500",,,,"2011-06-24T13:03:27-0500","ROBERT G. TRUGMAN","2011-06-24T13:03:41-0500","ROBERT G. TRUGMAN",,,,,,,,,,,,,"2J2G2E2F2K2N",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628112841P040002610563001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAFEPRESS EMPLOYEE BENEFITS PLAN","501","2003-01-01","CAFEPRESS.COM, INC.",,,"1850 GATEWAY DRIVE, SUITE 300",,"SAN MATEO","CA","94404",,,,,,,,,,,,,,,,,,"943342816","6506553000","454110","CAFEPRESS.COM, INC.",,"1850 GATEWAY DRIVE, SUITE 300",,"SAN MATEO","CA","94404",,,,,,,"943342816","6506553000",,,,"2011-06-28T11:28:33-0500","MONICA JOHNSON",,,,,322,385,14,0,399,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628133755P030083896513003","2010-01-01","2010-12-31","1",,,,"1",,"1",,,,,,"GRAPHIC COMMUNICATIONS UNION LOCAL 17M EMPLOYER SAVINGS PLUS PLAN","001","1988-09-01","GRAPHIC COMMUNICATIONS UNION LOCAL 17M EMPLOYER SAVINGS PLUS PLAN",,,"8149 CASTLETON ROAD",,"INDIANAPOLIS","IN","46250",,,,,,,"8149 CASTLETON ROAD",,"INDIANAPOLIS","IN","46250",,,,,,,"351752021","3175980864","323100","GRAPHIC COMMUNICATIONS UNION LOCAL 17M EMPLOYER SAV",,"8149 CASTLETON ROAD",,"INDIANAPOLIS","IN","46250",,,,,,,"351752021","3175980864",,,,"2011-06-22T09:19:33-0500","MARK HOWARD, UNION TRUSTEE",,,,,37,0,,,0,,0,0,,0,"2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628135550P030012196850001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SITCER CORPORATION 401K PLAN","002","1997-01-01","SITCER CORPORATION",,,"257 SOUTH AVE",,"GARWOOD","NJ","07027",,,,,,,,,,,,,,,,,,"222769450","9087892050","811310","SITCER CORPORATION",,"257 SOUTH AVE",,"GARWOOD","NJ","07027",,,,,,,"222769450","9087892050",,,,"2011-06-27T10:31:42-0500","GARY SITCER","2011-06-27T10:31:42-0500","GARY SITCER",,,15,9,0,5,14,0,14,14,1,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624134508P030081649505003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KONG W. WONG, D.O. 401(K) PLAN AND TRUST","002","1989-12-27","KONG W. WONG, D.O.",,,"24842 CHERRY HILL, SUITE B",,"GARDEN CITY","MI","48135",,,,,,,,,,,,,,,,,,"382483049","7344252828","621210","KONG W. WONG, D.O.",,"24842 CHERRY HILL, SUITE B",,"GARDEN CITY","MI","48135",,,,,,,"382483049","7344252828",,,,"2011-06-24T09:34:39-0500","KONG W. WONG, D.O.",,,,,5,2,0,3,5,0,5,5,,,"2E2G2R2J3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110627143159P040085798385002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MATHEMATICA CAPITAL MANAGEMENT LLC 401K PROFIT SHARING PLAN","001","2005-01-01","MATHEMATICA CAPITAL MANAGEMENT LLC",,,"75 GATE 5 ROAD",,"SAUSALITO","CA","94965",,,,,,,"75 GATE 5 ROAD",,"SAUSALITO","CA","94965",,,,,,,"043663242","4153324250","523900","MATHEMATICA CAPITAL MANAGEMENT LLC",,"75 GATE 5 ROAD",,"SAUSALITO","CA","94965",,,,,,,"043663242","4153324250",,,,"2011-06-13T09:56:08-0500","SHAHRAM TAJBACK","2011-06-13T09:56:08-0500","SHAHRAM TAJBACK",,,7,7,0,0,7,0,7,7,0,,"2E2F2J3B3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628120225P030012187250002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CROXFORD & SONS INC PROFIT SHARING PLAN","001","1969-09-01","CROXFORD & SONS, INC",,,"1307 CENTRAL AVE",,"GREAT FALLS","MT","59401",,,,,,,,,,,,,,,,,,"810303211","4064530315","812210","CROXFORD & SONS INC",,"1307 CENTRAL AVE",,"GREAT FALLS","MT","59401",,,,,,,"810303211","4064530315",,,,"2011-06-28T09:54:26-0500","DENNIS CROXFORD",,,,,7,6,1,,7,,7,7,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628115624P030083848977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"M.I. HUMMEL COMPANY, LLC 401(K) PLAN","003","1992-05-01","M.I. HUMMEL COMPANY, LLC.",,,"3705 QUAKERBRIDGE ROAD","SUITE 105","MERCERVILLE","NJ","08619",,,,,,,"3705 QUAKERBRIDGE ROAD","SUITE 105","MERCERVILLE","NJ","08619",,,,,,,"223330101","6098903313","453220","M.I. HUMMEL COMPANY, LLC.",,"3705 QUAKERBRIDGE ROAD","SUITE 105","MERCERVILLE","NJ","08619",,,,,,,"223330101","6098903313",,,,"2011-06-28T11:54:31-0500","PHILIP FERRIGNO",,,,,57,27,0,20,47,0,47,39,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628120026P030083852337001","2010-01-01","2010-11-23","2",,"0","1","1","1","0","0","0","0","0",,"RIVERS INVESTMENT & MAN. GROUP 401(K) PROFIT SHARING PLAN","001","1997-01-01","RIVERS INVESTMENT & MAN. GROUP",,,"18222 LIVERNOIS",,"DETROIT","MI","48221",,,,,,,,,,,,,,,,,,"382068213","3138623150","531310","RIVERS INVESTMENT & MAN. GROUP",,"18222 LIVERNOIS",,"DETROIT","MI","48221",,,,,,,"382068213","3138623150",,,,"2011-06-28T11:59:20-0500","RONALD RIVERS",,,,,4,0,,,0,,0,0,,,"2G2J2R3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628141012P040392347232001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FRANK A DECKER PROFIT SHARING PLAN","001","1968-12-16","FRANK A DECKER",,,"571 MAIN STREET","P O BOX 28","COBLESKILL","NY","12043",,,,,,,,,,,,,,,,,,"141440125","5182342261","541110","FRANK A DECKER",,"571 MAIN STREET","P O BOX 28","COBLESKILL","NY","12043",,,,,,,"141440125","5182342261",,,,"2011-06-28T13:41:36-0500","FRANK A DECKER","2011-06-28T13:41:36-0500","FRANK A DECKER",,,2,1,0,1,2,0,2,2,0,,"2T3D2E2G2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628220734P030084122561001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SHAW MARKETING, INC. 401(K) PLAN","001","2003-01-01","SHAW MARKETING INC.","DBA JAMES RALSTON & ASSOCIATES INC.",,"P.O. BOX 620186",,"MIDDLETON","WI","53562",,,,,,,,,,,,,,,,,,"391682002","6088315241","238100","SHAW MARKETING INC.",,"P.O. BOX 620186",,"MIDDLETON","WI","53562",,,,,,,"391682002","6088315241",,,,"2011-06-28T22:06:33-0500","RYAN SHAW",,,,,2,2,0,0,2,0,2,2,0,,"2A2E2F2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110624073854P030081485745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONSTRUCTION DYNAMICS, INC. 401(K) SAVINGS PLAN","001","1997-07-01","CONTRUCTION DYNAMICS, INC.",,,"270 AIRPORT ROAD",,"FITCHBURG","MA","01420",,,,,,,,,,,,,,,,,,"043106488","9783436606","236200","CONTRUCTION DYNAMICS, INC.",,"270 AIRPORT ROAD",,"FITCHBURG","MA","01420",,,,,,,"043106488","9783436606",,,,"2011-06-24T07:38:46-0500","DENISE M. BRUSO","2011-06-24T07:38:46-0500","DENISE M. BRUSO",,,42,31,0,1,32,0,32,30,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624094906P040084003409001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOISE BIBLE COLLEGE","001","1994-05-01","BOISE BIBLE COLLEGE INC","BOISE BIBLE COLLEGE",,"8695 W MARIGOLD ST",,"BOISE","ID","83714",,,,,,,"8695 W MARIGOLD ST",,"BOISE","ID","83714",,,,,,,"820309302","2083767731","611000","BOISE BIBLE COLLEGE INC",,"8695 W MARIGOLD ST",,"BOISE","ID","83714",,,,,,,"820309302","2083767731",,,,"2011-06-24T09:48:01-0500","DEBBY GRAF",,,,,17,18,0,0,18,0,18,18,0,,"2H2M",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628164419P030396546288001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CALIFORNIA FORESTRY ASSOCIATION 401(K) PROFIT SHARING PLAN","001","1984-10-01","CALIFORNIA FORESTRY ASSOCIATION",,,"1215 K ST STE 1830",,"SACRAMENTO","CA","95814",,,,,,,"1215 K ST STE 1830",,"SACRAMENTO","CA","95814",,,,,,,"941218216","9164446592","115310","CALIFORNIA FORESTRY ASSOCIATION",,"1215 K ST STE 1830",,"SACRAMENTO","CA","95814",,,,,,,"941218216","9164446592",,,,"2011-06-28T16:43:49-0500","LORI VANCE",,,,,10,6,0,3,9,0,9,9,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628151444P030396352336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NAVASOTA MEDICAL CENTER 401(K) PLAN","001","2004-01-01","NAVASOTA MEDICAL CENTER",,,"501 EAST WASHINGTON AVENUE",,"NAVASOTA","TX","77868",,,,,,,,,,,,,,,,,,"741073998","9368256444","621111","NAVASOTA MEDICAL CENTER",,"501 EAST WASHINGTON AVENUE",,"NAVASOTA","TX","77868",,,,,,,"741073998","9368256444",,,,"2011-06-28T14:51:26-0500","POLLACHI SELVAKUMARRAJ",,,,,21,18,0,2,20,0,20,20,0,,"2E2F2G2J2K2T3B3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110624165821P040084223585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PLATINUM PROTECTION CAFETERIA PLAN","501","2008-01-01","PLATINUM PROTECTION",,,"1261 SOUTH 820 EAST",,"AMERICAN FORK","UT","84003",,,,,,,"1261 SOUTH 820 EAST",,"AMERICAN FORK","UT","84003",,,,,,,"870785177","8012236589","238900","PLATINUM PROTECTION",,"1261 SOUTH 820 EAST",,"AMERICAN FORK","UT","84003",,,,,,,"870785177","8012236589",,,,"2011-06-24T16:38:36-0500","SCOTT MACARTHUR","2011-06-24T16:38:36-0500","SCOTT MACARTHUR",,,114,95,,,95,,,,,,,"4A4R","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628023648P030083618433001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EDWARD SHIN MD PA PENSION PLAN","001","2006-01-01","EDWARD SHIN, MD, PA",,,"6008 SPRINGHAVEN DRIVE",,"PLANO","TX","75093",,,,,,,"EDWARD SHIN","6008 SPRINGHAVEN DRIVE","PLANO","TX","75093",,,,,,,"760734185","4697334581","621111","EDWARD SHIN, MD, PA",,"6008 SPRINGHAVEN DRIVE",,"PLANO","TX","75093",,,,,,,"760734185","4697334581",,,,"2011-06-28T02:36:17-0500","EDWARD SHIN","2011-06-28T02:36:17-0500","EDWARD SHIN",,,4,4,0,0,4,0,4,,0,,"1A3D","4B",,"1",,,,"1",,,"1",,,,,"1","1",,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628065043P040012677586001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WOLCOTT BUILDERS, INC 401(K) PROFIT SHARING PLAN AND TRUST","002","2006-01-01","WOLCOTT BUILDERS, INC",,,"11 FELLER RD",,"RHINEBECK","NY","12572",,,,,,,,,,,,,,,,,,"010547882","8458766575","236110","WOLCOTT BUILDERS, INC",,"11 FELLER RD",,"RHINEBECK","NY","12572",,,,,,,"010547882","8458766575",,,,"2011-06-21T03:21:20-0500","BARBARA WOLCOTT",,,,,21,19,,,19,,19,19,1,,"2E2J2Q",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628083149P040086224225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STEVEN ADLOW,D.D.S.401K PROFIT SHARING PLAN AND TRUST","001","2003-01-01","STEVEN ADLOW, DDS",,,"1 BARSTOW RD",,"GREAT NECK","NY","110213501",,,,,,,,,,,,,,,,,,"113089988","5164873655","621210","STEVEN ADLOW, DDS",,"1 BARSTOW RD",,"GREAT NECK","NY","110213501",,,,,,,"113089988","5164873655",,,,"2011-06-28T08:25:13-0500","STEVEN ADLOW",,,,,5,4,0,1,5,0,5,4,0,,"2A2E2F2G2J2K2R3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628153353P040086418561001","2010-01-01","2010-12-27","2",,"0","0","1","1",,,,,,,"CIVIL SYSTEMS, INC. 401(K) PLAN","001","2001-01-01","CIVIL SYSTEMS, INC.",,,"111 EDENTON STREET",,"BIRMINGHAM","AL","35242",,,,,,,"111 EDENTON STREET",,"BIRMINGHAM","AL","35242",,,,,,,"721376984","2058761965","541330","CIVIL SYSTEMS, INC.",,"111 EDENTON STREET",,"BIRMINGHAM","AL","35242",,,,,,,"721376984","2058761965",,,,"2011-06-28T15:33:37-0500","GUY LOCKER",,,,,22,0,0,0,0,0,0,0,0,,"2A2E2F2G2J2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628134507P030083900289004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SOUTH JERSEY RADIATION ONCOLOGY PC PROF SHAR PLAN","001","1999-01-01","SOUTH JERSEY RADIATION ONCOLOGY PC",,,"1302 CHICKADEE LANE",,"MILLVILLE","NJ","08332",,,,,,,,,,,,,,,,,,"470955210","8562932909","621111","SOUTH JERSEY RADIATION ONCOLOGY PC",,"1302 CHICKADEE LANE",,"MILLVILLE","NJ","08332",,,,,,,"470955210","8562932909",,,,"2011-06-28T13:01:18-0500","JOSEPH FANELLE","2011-06-28T13:38:30-0500","JOSEPH FANELLE",,,3,3,0,0,3,0,3,3,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629070006P030398054096001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HABENICHT NOVAK & BIRCKBICHLER 401(K) PROFIT SHARING PLAN","001","1986-01-01","HABENICHT NOVAK & BIRCKBICHLER",,,"287 PITTSBURGH ROAD, SUITE 1",,"BUTLER","PA","16002",,,,,,,,,,,,,,,,,,"251437636","7242838661","541211","HABENICHT NOVAK & BIRCKBICHLER",,"287 PITTSBURGH ROAD, SUITE 1",,"BUTLER","PA","16002",,,,,,,"251437636","7242838661",,"251353175",,"2011-06-29T07:49:18-0500","MARY CLARE HABENICHT","2011-06-29T07:55:01-0500","MARY CLARE HABENICHT",,,12,13,0,0,13,0,13,13,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629071728P040012768114001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PRAXAIR HEALTHCARE SERVICES, INC. 401K RETIREMENT SAVINGS PLAN","001","1985-10-01","PRAXAIR HEALTHCARE SERVICES, INC.",,,"39 OLD RIDGEBURY ROAD, M3",,"DANBURY","CT","068105113",,,,,,,,,,,,,,,,,,"450467418","2038372000","446190","PRAXAIR HEALTHCARE SERVICES, INC.",,"39 OLD RIDGEBURY ROAD, M3",,"DANBURY","CT","068105113",,,,,,,"450467418","2038372000",,,,"2011-06-28T21:24:14-0500","KRISTEN PUTNAM",,,,,1715,1100,11,407,1518,7,1525,1445,119,,"2E2H2J2K2O3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624150712P030081688289001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"RETIREMENT PLAN FOR OFFICE, ADMINISTRATIVE AND SUPERVISORY EMPLOYEES OF FRANK CHERVAN, INC.","003","1972-04-01","FRANK CHERVAN, INC.",,,"2005 GREENBRIER AVE.",,"ROANOKE","VA","240132628",,,,,,,"2005 GREENBRIER AVE.",,"ROANOKE","VA","240132628",,,,,,,"340175480","5405865600","337000","FRANK CHERVAN, INC.",,"2005 GREENBRIER AVE.",,"ROANOKE","VA","240132628",,,,,,,"340175480","5405865600",,,,"2011-06-24T15:03:38-0500","LESLIE LATHAM",,,,,94,42,25,19,86,9,95,,4,,"1A1G1I",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624140803P040012365026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CO-OP 401(K) PLAN","001","1957-09-26","PULLMAN GRANGE SUPPLY COMPANY",,,"355 STATE STREET NW",,"PULLMAN","WA","99163",,,,,,,,,,,,,,,,,,"910239390","5093322511","115110","PULLMAN GRANGE SUPPLY COMPANY",,"355 STATE STREET NW",,"PULLMAN","WA","99163",,,,,,,"910239390","5093322511",,,,"2011-06-24T14:04:58-0500","KEVIN MCDONNELL",,,,,10,39,0,1,40,0,40,9,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628153608P030083956529001","2007-08-01","2008-07-31","2",,,,,,,,,"1",,,"AMERICAN ROAD MANAGMENT INC. WELFARE PLAN","501","2005-08-01","AMERICAN ROAD MANAGEMENT INC.",,,"3770 37TH STREET",,"ORLANDO","FL","32805",,,,,,,,,,,,,,,,,,"200455698","4074230346","561110","AMERICAN ROAD MANAGEMENT INC.",,"3770 37TH STREET",,"ORLANDO","FL","32805",,,,,,,"200455698","4074230346",,,,"2011-06-17T03:50:36-0500","FRANK BILOTTA","2011-06-17T03:50:36-0500","FRANK BILOTTA",,,90,102,,,102,,,,,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628134507P030083900289005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"COMPUTERTALK ASSOCIATES PROFIT SHARING PLAN","001","1986-10-10","COMPUTERTALK ASSOCIATES",,,"492 NORRISTOWN ROAD",,"BLUE BELL","PA","19422",,,,,,,,,,,,,,,,,,"232144881","6108257686","611000","COMPUTERTALK ASSOCIATES",,"492 NORRISTOWN ROAD",,"BLUE BELL","PA","19422",,,,,,,"232144881","6108257686",,,,"2011-06-28T14:34:55-0500","BRIAN BUCKMAN CPA","2011-06-28T14:35:26-0500","WILLIAM LOCKWOOD","2011-06-28T14:38:12-0500","BRIAN BUCKMAN CPA",4,4,0,0,4,0,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110628105615P040391893360001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"APPANASHA PET CLINIC, S.C. 401(K) SAVINGS PLAN","001","1994-01-01","APPANASHA PET CLINIC, S.C.",,,"1160 APPLETON ROAD",,"MENASHA","WI","54952",,,,,,,,,,,,,,,,,,"391471461","9207258307","541940","APPANASHA PET CLINIC, S.C.",,"1160 APPLETON ROAD",,"MENASHA","WI","54952",,,,,,,"391471461","9207258307",,,,"2011-06-28T10:56:02-0500","ANN C. STEIN",,,,,24,20,0,7,27,0,27,26,2,,"2A2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628141223P040392351632001","2009-08-01","2010-07-31","2",,"0","0","0","0","0","0","0","1","0",,"NASHVILLE SYMPHONY ASSOCIATION RETIREMENT PLAN","002","1994-08-01","NASHVILLE SYMPHONY ASSOCIATION",,,"ONE SYMPHONY PLACE",,"NASHVILLE","TN","372012031",,,,,,,,,,,,,,,,,,"620550979","6156876515","813000","NASHVILLE SYMPHONY ASSOCIATION",,"ONE SYMPHONY PLACE",,"NASHVILLE","TN","372012031",,,,,,,"620550979","6156876515",,,,"2011-06-28T14:05:00-0500","MICHAEL KIRBY",,,,,139,101,3,47,151,1,152,152,0,,"2L",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628144825P030396297136001","2010-01-01","2010-12-31","2",,"1",,"0","0","0","0","0","0","0",,"SCHWARTZ FARMS, INC. MEDICAL PLAN","502","2009-01-01","SCHWARTZ FARMS, INC.",,,"32296 190TH STREET",,"SLEEPY EYE","MN","56085",,,,,,,"32296 190TH STREET",,"SLEEPY EYE","MN","56085",,,,,,,"411595998","5077948905","112210","SCHWARTZ FARMS, INC.",,"32296 190TH STREET",,"SLEEPY EYE","MN","56085",,,,,,,"411595998","5077948905",,,,"2011-06-28T14:48:10-0500","SHEILA SCHMID",,,,,95,100,,,100,,100,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110624135405P030011861826001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THE J. M. COOK CO., INC. 401(K) PLAN","001","1999-01-01","J. M. COOK CO., INC.",,,"23 THORNTON STREET",,"MENDON","MA","01756",,,,,,,"23 THORNTON STREET",,"MENDON","MA","01756",,,,,,,"043144207","5086343300","113210","J. M. COOK CO., INC.",,"23 THORNTON STREET",,"MENDON","MA","01756",,,,,,,"043144207","5086343300",,,,"2011-06-24T13:37:50-0500","THOMAS FECTEAU",,,,,41,16,0,24,40,0,40,30,4,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1",,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624095734P040381261344001","2010-01-01","2010-12-31","2",,"1","0","1","0","0","0","0","0","0",,"LEGACY MANAGEMENT HOLDINGS INC. 401(K) PLAN","001","2007-08-11","LEGACY MANAGEMENT HOLDINGS INC.",,,"105 BRUNSWICK DR",,"TYRONE","GA","302901560",,,,,,,,,,,,,,,,,,"260755686","6786449426","519100","LEGACY MANAGEMENT HOLDINGS INC.",,"105 BRUNSWICK DR",,"TYRONE","GA","302901560",,,,,,,"260755686","6786449426",,,,"2011-06-24T09:57:27-0500","PAUL BROWN","2011-06-24T09:57:27-0500","PAUL BROWN",,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628153010P040392536112001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STEELWORKERS LOCAL 14693 401(K) PLAN","001","1986-12-01","ROADWAY STABILIZATION, INC.","ATLAS SERVICES CORPORATION",,"1024 ROUTE 519","SUITE 500","EIGHTY FOUR","PA","15330",,,,,,,,,,,,,,,,,,"251236324","7242251000","237990","ROADWAY STABILIZATION, INC.",,"1024 ROUTE 519","SUITE 500","EIGHTY FOUR","PA","15330",,,,,,,"251236324","7242251000",,,,"2011-06-28T15:29:59-0500","EDWARD W BRADLEY","2011-06-28T15:29:59-0500","EDWARD W BRADLEY",,,62,34,0,27,61,0,61,50,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628180004P040086485233001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","0","0","0","0",,"FRI-M CORPORATION HOURLY/HCE 401K PLAN","001","2002-07-11","FRI-M CORPORATION",,,"2200 FARADAY AVE","SUITE 250","CARLSBAD","CA","92008",,,,,,,,,,,,,,,,,,"330197057","7608045750","722110","FRI-M CORPORATION",,"2200 FARADAY AVE","SUITE 250","CARLSBAD","CA","92008",,,,,,,"330197057","7608045750",,,,"2011-06-28T16:21:47-0500","KAZUMASA OGAWA",,,,,4615,4419,0,15,4434,0,4434,87,0,,"2J2K3H2E",,"1",,"1",,"1",,"1",,"0",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110624093321P040083993265001","2008-11-01","2009-10-31","2",,"0","0","0","0","0","0","0","1","0",,"TRUE WORLD HOLDINGS LLC VISION PLAN","504","1989-11-01","TRUE WORLD HOLDINGS LLC",,,"24 LINK DRIVE",,"ROCKLEIGH","NJ","07647",,,,,,,,,,,,,,,,,,"541029769","2017500024","424400","TRUE WORLD HOLDINGS LLC",,"24 LINK DRIVE",,"ROCKLEIGH","NJ","07647",,,,,,,"541029769","2017500024",,,,"2011-06-24T09:33:12-0500","ALEXANDER CHOI",,,,,226,216,1,0,217,,,,,,,"4E","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628070007P030012164434003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROBERT J BAUMBICK DC IN PROFIT SHARING PLAN","001","1999-01-01","ROBERT J BAUMBICK DC INC",,,"35410 CENTER RIDGE ROAD",,"NORTH RIDGEVILLE","OH","44039",,,,,,,,,,,,,,,,,,"341876087","4403530707","621310","ROBERT J BAUMBICK DC INC",,"35410 CENTER RIDGE ROAD",,"NORTH RIDGEVILLE","OH","44039",,,,,,,"341876087","4403530707",,,,"2011-06-27T13:19:40-0500","ROVERT J BAUMBICK","2011-06-27T13:20:03-0500","ROBERT J BAUMBICK",,,3,3,0,0,3,0,3,3,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628134748P030083901169001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"PRO-FAB, INC. 401(K) SAVINGS PLAN","001","1996-03-01","PRO-FAB, INC.",,,"910 N. MORGAN ROAD",,"OKLAHOMA CITY","OK","73127",,,,,,,,,,,,,,,,,,"731310251","4054952131","336410","PRO-FAB, INC.",,"910 N. MORGAN ROAD",,"OKLAHOMA CITY","OK","73127",,,,,,,"731310251","4054952131",,,,"2011-06-28T02:47:19-0500","MARTY STEPHENSON",,,,,165,146,4,9,159,0,159,98,6,,"2E2F2G2J2K3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629073234P030012258242002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"BJREO INC TBA VINCENTS WELDING 401 K PLAN","001","1992-04-01","B J R E O , INC",,,"MADISON AVE",,"WEST ELIZABETH","PA","15088",,,,,,,,,,,,,,,,,,"251618646","4123845513","332900","B J R E O INC",,"MADISON AVE",,"WEST ELIZABETH","PA","15088",,,,,,,"251618646","4123845513",,,,"2011-06-27T09:15:38-0500","MARIE OLMSTED",,,,,30,18,,8,26,,26,14,,,"2J2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110624104412P030081566129001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WALTON INTERNATIONAL GROUP US 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","WALTON INTERNATIONAL GROUP USA",,,"4800 N SCOTTSDALE RD STE 4000",,"SCOTTSDALE","AZ","85251",,,,,,,,,,,,,,,,,,"860751315","6022641298","531390","WALTON INTERNATIONAL GROUP USA",,"4800 N SCOTTSDALE RD STE 4000",,"SCOTTSDALE","AZ","85251",,,,,,,"860751315","6022641298",,,,"2011-06-24T10:44:10-0500","WALTON INTERNATIONAL GROUP USA",,,,,91,92,0,11,103,0,103,69,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110624175212P030011876098001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SELTZER CAPLAN MCMAHON VITEK WELFARE BENEFIT PLAN","508","1985-08-01","SELTZER CAPLAN MCMAHON VITEK",,,"2100 SYMPHONY TOWERS 750 B ST",,"SAN DIEGO","CA","92101",,,,,,,,,,,,,,,,,,"952665305","6196853003","541110","SELTZER CAPLAN MCMAHON VITEK",,"2100 SYMPHONY TOWERS 750 B ST",,"SAN DIEGO","CA","92101",,,,,,,"952665305","6196853003",,,,"2011-06-24T17:50:04-0500","SCMV BY JOHN ALSPAUGH","2011-06-24T17:50:04-0500","SCMV BY JOHN ALSPAUGH",,,164,150,0,0,150,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624155210P040084182513001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ALL COAST PHYSICAL THERAPY SERVICES, INC 401K PLAN","001","2004-06-01","ALL COAST THERAPY SERVICES, INC",,,"13940 N US HWY 441","BUILDING 600 SUITE 603","LADY LAKE","FL","32159",,,,,,,"13940 N US HWY 441","BUILDING 600 SUITE 603","LADY LAKE","FL","32159",,,,,,,"562288146","3527511095","621340","ALL COAST THERAPY SERVICES, INC",,"13940 N US HWY 441","BUILDING 600 SUITE 603","LADY LAKE","FL","32159",,,,,,,"562288146","3527511095",,,,"2011-06-24T15:27:43-0500","BEULAH SCOTT",,,,,31,23,0,6,29,0,29,18,0,,"2E2G2J3E",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110628101332P040027026375001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SINGULAR ENTERPRISES, INC. 401(K) PLAN","001","2009-11-18","SINGULAR ENTERPRISES, INC.",,,"1072 BRIARCLIFF ROAD",,"MOORESVILLE","NC","28115",,,,,,,,,,,,,,,,,,"271343502","7049299672","561740","SINGULAR ENTERPRISES, INC.",,"1072 BRIARCLIFF ROAD",,"MOORESVILLE","NC","28115",,,,,,,"271343502","7049299672",,,,"2011-06-28T10:13:27-0500","ERIC ECKERT","2011-06-28T10:13:27-0500","ERIC ECKERT",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110628124755P030026131303001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOSPITAL SURGICAL & DENTAL PREPAID BENEFIT PLAN","503","1946-02-01","BLUE CROSS OF IDAHO HEALTH SERVICE, INC",,,"3000 E. PINE AVE.",,"MERIDIAN","ID","83642",,,,,,,"3000 E. PINE AVE.",,"MERIDIAN","ID","83642",,,,,,,"820344294","2083454550","524140","BLUE CROSS OF IDAHO HEALTH SERVICE, INC",,"3000 E. PINE AVE.",,"MERIDIAN","ID","83642",,,,,,,"820344294","2083454550",,,,"2011-06-28T12:40:28-0500","DAVID SLONAKER",,,,,882,805,84,,889,4,893,,,,,"4A4D4E",,,,"1",,,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110628140227P030083910113002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"EUGENE SCHAFFER MERRILL LYNCH BASIC","004","1992-01-01","EUGENE SCHAFFER",,,"30 SOUTH OCEAN AVENUE",,"FREEPORT","NY","11520",,,,,,,,,,,,,,,,,,"112796661","5163791311","541110","EUGENE SCHAFFER",,"30 SOUTH OCEAN AVENUE",,"FREEPORT","NY","11520",,,,,,,"112796661","5163791311",,,,"2011-06-28T13:34:11-0500","EUGENE SCHAFFER",,,,,3,3,,,3,,3,3,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110629092406P030084378273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"W.J.S. ENTERPRISES, INC. 401K PROFIT SHARING PLAN","002","1987-01-01","W.J.S. ENTERPRISES, INC.",,,"3315 RIDGELAKE DR",,"METAIRIE","LA","700023825",,,,,,,,,,,,,,,,,,"720648973","5048375666","423800","W.J.S. ENTERPRISES, INC.",,"3315 RIDGELAKE DR",,"METAIRIE","LA","700023825",,,,,,,"720648973","5048375666",,,,"2011-06-29T09:09:11-0500","JOHN JACKETTI",,,,,49,38,0,9,47,0,47,44,0,,"2E2F2G2J2K",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110628125329P030396062400001","2007-06-01","2007-12-31","2",,"1","0","0","1","0","0","0","1","0",,"CALISTOGA PHARMACEUTICALS, INC 401K PLAN","001","2007-06-01","CALISTOGA PHARMACEUTICALS, INC",,,"C/O GILEAD SCIENCES","333 LAKESIDE DRIVE","FOSTER CITY","CA","94404",,,,,,,,,,,,,,,,,,"205056247","2067284704","541700","CALISTOGA PHARMACEUTICALS, INC",,"C/O GILEAD SCIENCES","333 LAKESIDE DRIVE","FOSTER CITY","CA","94404",,,,,,,"205056247","2067284704",,,,"2011-06-28T12:53:02-0500","DIANE TANGUAY",,,,,21,21,0,0,21,0,21,18,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-28","Filed with authorized/valid electronic signature",, "20110624083008P040083957569002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DR. CHARLES V. OLIVER, ORTHODONTIST, P.C. PROFIT SHARING PLAN","003","1994-01-01","DR. CHARLES V. OLIVER, ORTHODONTIS P.C.",,,"107 S. EDWARDS STREET",,"ENTERPRISE","AL","36330",,,,,,,,,,,,,,,,,,"630954202","3343470096","621210","DR. CHARLES V. OLIVER, ORTHODONTIS P.C.",,"107 S. EDWARDS STREET",,"ENTERPRISE","AL","36330",,,,,,,"630954202","3343470096",,,,"2011-06-20T10:25:17-0500","CHARLES V. OLIVER","2011-06-24T08:20:05-0500","CHARLES V. OLIVER",,,4,3,0,0,3,0,3,3,,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110624100548P040084010225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"APPLE AIR COMPRESSOR 401(K) PLAN","001","1999-01-01","APPLE AIR COMPRESSOR",,,"150 SOUTH VAN BRUNT",,"ENGLEWOOD","NJ","076310000",,,,,,,,,,,,,,,,,,"222425013","2015691173","812990","APPLE AIR COMPRESSOR",,"150 SOUTH VAN BRUNT",,"ENGLEWOOD","NJ","076310000",,,,,,,"222425013","2015691173",,,,"2011-06-24T10:05:44-0500","LARYSA ATZL",,,,,51,54,0,0,54,0,54,6,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110622122325P030002364339001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LONDONBURY HOMES, INC. PROFIT SHARING PLAN","001","1992-01-01","LONDONBURY HOMES, INC.",,,"432 JANE ST.",,"CARNEGIE","PA","15106",,,,,,,"432 JANE ST.",,"CARNEGIE","PA","15106",,,,,,,"251541385","4129231900","236110","LONDONBURY HOMES, INC.",,"432 JANE ST.",,"CARNEGIE","PA","15106",,,,,,,"251541385","4129231900",,,,"2011-06-22T12:23:16-0500","JAMES D. KRADEL","2011-06-22T12:23:16-0500","JAMES D. KRADEL",,,3,2,0,,2,,2,2,0,,"2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622155831P040082998945001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"GARIUP CONSTRUCTION 401(K) PLAN","001","1989-01-01","GARIUP CONSTRUCTION COMPANY INC.",,,"PO BOX 64879",,"GARY","IN","46401",,,,,,,"3965 HARRISON STREET",,"GARY","IN","46401",,,,,,,"351035122","2198875233","236200","GARIUP CONSTRUCTION COMPANY INC.",,"PO BOX 64879",,"GARY","IN","46401",,,,,,,"351035122","2198875233",,,,"2011-06-22T14:25:07-0500","MATTHEW GARIUP",,,,,24,18,0,4,22,1,23,23,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623143933P040083544337001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"TRI COUNTY OPPORTUNITIES COUNCIL CONTRIBUTORY TAX SHELTERED PLAN","001","1978-10-01","TRI COUNTY OPPORTUNITIES COUNCIL","TRI COUNTY OPPORTUNITIES COUNCIL",,"405 EMMONS AVENUE",,"ROCK FALLS","IL","61071",,,,,,,,,,,,,,,,,,"362559180","8156257830","813000","TRI COUNTY OPPORTUNITIES COUNCIL","TRI COUNTY OPPORTUNITIES COUNCIL","405 EMMONS AVENUE",,"ROCK FALLS","IL","61071",,,,,,,"362559180","8156257830",,,,"2011-06-23T14:39:32-0500","SANDRA JULIFS",,,,,0,,,,0,,0,,,,"2G2L3D",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110621134805P040012077666001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SIEMENS CORPORATION SEVERANCE PLAN","514","1994-03-24","SIEMENS CORPORATION",,,"170 WOOD AVENUE SOUTH",,"ISELIN","NJ","08830",,,,,,,,,,,,,,,,,,"132623356","7325902530","551112","SIEMENS CORPORATION",,"170 WOOD AVENUE SOUTH",,"ISELIN","NJ","08830",,,,,,,"132623356","7325902530",,,,"2011-06-21T13:40:31-0500","DANIEL NAVATTA",,,,,744,0,1030,0,1030,,,,,,,"4I","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110621142700P030079919169001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ISLE AU HAUT COMPANY DISABILITY RETIREMENT PLAN & TRUST","501","1999-01-01","ISLE AU HAUT COMPANY",,,"12 MEADOW LANE",,"BROOKHAVEN","NY","117199630",,,,,,,,,,,,,,,,,,"371458785","6312869286","483000","ISLE AU HAUT COMPANY",,"12 MEADOW LANE",,"BROOKHAVEN","NY","117199630",,,,,,,"371458785","6312869286",,,,"2011-06-21T14:18:59-0500","GEORGE COLE",,,,,2,0,2,0,2,,,,,,,"4H","0","0","1","1","0","0","1","1","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110622113849P040082883073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"L. DELEA & SONS, INC. 401K PROFIT SHARING PLAN","002","1996-01-01","L. DELEA & SONS, INC.",,,"444 ELWOOD RD",,"EAST NORTHPORT","NY","117314003",,,,,,,,,,,,,,,,,,"113136171","6313688022","111400","L. DELEA & SONS, INC.",,"444 ELWOOD ROAD",,"EAST NORTHPORT","NY","117314003",,,,,,,"113136171","6313688022",,,,"2011-06-22T11:37:46-0500","VINCENT SASSO",,,,,75,60,0,9,69,,69,46,2,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622182807P040083060689001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KEEN TRANSPORT HEALTH AND LIFE INSURANCE PLAN","505","1989-09-01","KEEN TRANSPORT, INC.",,,"PO BOX 298",,"NEW KINGSTOWN","PA","17072",,,,,,,,,,,,,,,,,,"340701481","7172436622","484200","KEEN TRANSPORT, INC.",,"PO BOX 298",,"NEW KINGSTOWN","PA","17072",,,,,,,"340701481","7172436622",,,,"2011-06-22T18:28:02-0500","MICHAEL HOKE",,,,,336,394,0,0,394,,,,,,,"4A4B4D4E4F4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623113020P030011760642001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"A AND K EARTH MOVERS, INC. WELFARE PLAN","501","2007-01-01","A AND K EARTH MOVERS, INC.",,,"515 WINDMILL DRIVE",,"FALLON","NV","89406",,,,,,,,,,,,,,,,,,"880097157","7754236085","238900","A AND K EARTH MOVERS, INC.",,"515 WINDMILL DRIVE",,"FALLON","NV","89406",,,,,,,"880097157","7754236085",,,,"2011-06-23T11:30:16-0500","KELLY HIATT","2011-06-23T11:30:16-0500","KELLY HIATT",,,127,118,0,0,118,,,,,,,"4A4B4D4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623075259P030002379747001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JD NORMAN INDUSTRIES, INC. 401(K) PLAN","004","2005-08-01","JD NORMAN INDUSTRIES, INC.","JD NORMAN INDUSTRIES, INC.",,"787 BELDEN ROAD",,"ADDISON","IL","60101",,,,,,,"787 BELDEN ROAD",,"ADDISON","IL","60101",,,,,,,"383712693","6304583700","332610","JD NORMAN INDUSTRIES, INC.",,"787 BELDEN ROAD",,"ADDISON","IL","60101",,,,,,,"383712693","6304583700",,,,"2011-06-23T07:52:37-0500","LINDA MCROBERTS",,,,,97,68,0,15,83,0,83,54,0,,"2E2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623083105P030382256400001","2005-09-01","2006-08-31","2",,"0","1","0","0","0","0","0","0","0",,"HOSPITAL DR. I. GONZALEZ MARTINEZ DE LA LIGA PUERTORRIQUENA CONTRA EL CANCER PENSION PLAN","001","1976-09-01","HOSPITAL DR. I. GONZALEZ MARTINEZ",,,"PO BOX 191811",,"SAN JUAN","PR","009191811",,,,,,,,,,,,,,,,,,"660205634","7877634149","622000","HOSPITAL DR. I. GONZALEZ MARTINEZ",,"PO BOX 191811",,"SAN JUAN","PR","009191811",,,,,,,"660205634","7877634149",,,,"2011-06-22T17:31:16-0500","CARLOS CABRERA BONET","2011-06-22T17:31:16-0500","HOSPITAL DR. I. GONZALEZ MARTINEZ",,,334,275,0,83,358,0,358,341,0,,"2C2H3C",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623161840P030011781858001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"EMERGENCY MEDICAL ASSOCIATION OF NY, PC GROUP LONG TERM & ENHANCED SHORT TERM DISABILITY PLAN","503","2004-11-01","EMERGENCY MEDICAL ASSOCIATION OF NY, PC",,,"651 WEST MOUNT PLEASANT AVENUE",,"LIVINGSTON","NJ","07039",,,,,,,,,,,,,,,,,,"020657245","9737400607","621900","EMERGENCY MEDICAL ASSOCIATION OF NY, PC",,"651 WEST MOUNT PLEASANT AVENUE",,"LIVINGSTON","NJ","07039",,,,,,,"020657245","9737400607",,,,"2011-06-23T05:18:24-0500","RAYMOND IANNACCONE",,,,,107,114,,,114,,114,,,,,"4H4F","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622100047P030379681520001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CEMARK, INC 401 (K) PLAN","001","1993-01-01","CEMARK, INC.",,,"13531 E BOUNDARY ROAD","SUITE A","MIDLOTHIAN","VA","23112",,,,,,,"13531 E BOUNDARY ROAD","SUITE A","MIDLOTHIAN","VA","23112",,,,,,,"541571707","8047634100","424920","CEMARK, INC.",,"13531 E BOUNDARY ROAD","SUITE A","MIDLOTHIAN","VA","23112",,,,,,,"541571707","8047634100",,,,"2011-06-22T10:00:14-0500","KAREN HALDER",,,,,9,9,0,0,9,0,9,8,0,,"2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622100222P030011663474001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MID-STATE MACHINE COMPANY, LLC EMPLOYEE RETIREMENT PLAN","001","2007-03-01","MID-STATE MACHINE COMPANY LLC",,,"2960 CORRIHER GRANGE RD",,"MOUNT ULLA","NC","28125",,,,,,,,,,,,,,,,,,"208169205","7046367029","332700","MID-STATE MACHINE COMPANY LLC",,"2960 CORRIHER GRANGE RD",,"MOUNT ULLA","NC","28125",,,,,,,"208169205","7046367029",,,,"2011-06-22T10:01:23-0500","KEITH ULASZEK",,,,,58,47,0,2,49,0,49,49,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623132722P030011768706001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHI WELFARE BENEFIT PROGRAM","501","1974-01-01","PRESBYTERIAN SENIOR LIVING",,,"ONE TRINITY DRIVE EAST, SUITE 201",,"DILLSBURG","PA","17019",,,,,,,,,,,,,,,,,,"231381404","7175028840","623000","PRESBYTERIAN SENIOR LIVING",,"ONE TRINITY DRIVE EAST, SUITE 201",,"DILLSBURG","PA","17019",,,,,,,"231381404","7175028840",,,,"2011-06-23T13:27:16-0500","JAMES PYNE",,,,,1556,1501,0,0,1501,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623092042P030011750578001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHALLONER & ASSOCIATES, LLC PROFIT SHARING PLAN","001","1999-01-01","CHALLONER & ASSOCIATES, LLC",,,"201 MAIN STREET, STE 2",,"TOMS RIVER","NJ","08753",,,,,,,"201 MAIN STREET, STE 2",,"TOMS RIVER","NJ","08753",,,,,,,"223842100","7328189980","541330","CHALLONER & ASSOCIATES, LLC",,"201 MAIN STREET, STE 2",,"TOMS RIVER","NJ","08753",,,,,,,"223842100","7328189980",,,,"2011-06-23T09:18:16-0500","STUART CHALLONER",,,,,10,,,2,2,,2,,,,"2E3E",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623164053P040083600177001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SUMEER INC. PROFIT SHARING PLAN AND TRUST","001","1985-04-01","SUMEER INC.",,,"1204 TRAVIS CIRCLE S",,"IRVING","TX","75038",,,,,,,"1204 TRAVIS CIRCLE S",,"IRVING","TX","75038",,,,,,,"751694105","9726590655","233110","SUMEER INC.",,"1204 TRAVIS CIRCLE S",,"IRVING","TX","75038",,,,,,,"751694105","9726590655",,,,"2011-06-23T16:40:24-0500","CRYSTAL STARR SHRIDHARANI",,,,,2,2,0,0,2,0,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623171315P030081174993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DANIEL POWERS, M.D., INC. DEFINED BENEFIT PENSION PLAN","002","2002-01-01","DANIEL POWERS, M.D., INC.",,,"6200 WILSHIRE BLVD., STE. 1006",,"LOS ANGELES","CA","900485811",,,,,,,,,,,,,,,,,,"953921716","8002226768","621111","DANIEL POWERS, M.D., INC.",,"6200 WILSHIRE BLVD., STE. 1006",,"LOS ANGELES","CA","900485811",,,,,,,"953921716","8002226768",,,,"2011-06-23T17:06:12-0500","DANIEL POWERS",,,,,6,8,0,0,8,0,8,,0,,"1A1D3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622110225P030011667154001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"FLATLEY COMPANY 401(K) PROFIT SHARING PLAN","004","1994-07-01","FLATLEY MANAGEMENT COMPANY LLC",,,"35 BRAINTREE HILL PARK, SUITE 400",,"BRAINTREE","MA","02184",,,,,,,"35 BRAINTREE HILL PARK, SUITE 400",,"BRAINTREE","MA","02184",,,,,,,"263667851","7818482000","531190","FLATLEY MANAGEMENT COMPANY LLC",,"35 BRAINTREE HILL PARK, SUITE 400",,"BRAINTREE","MA","02184",,,,,,,"263667851","7818482000",,,,"2011-06-22T11:01:45-0500","CHRISTIAN PERROTTA",,,,,96,32,7,51,90,2,92,88,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622070305P040012138306001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPECTAL, LLC LIFE & DISABILITY PLAN","503","2004-09-01","SPECTAL, LLC",,,"1875 CAMPUS COMMONS DRIVE","SUITE 100","RESTON","VA","20191",,,,,,,,,,,,,,,,,,"030608812","7038606180","541990","SPECTAL, LLC",,"1875 CAMPUS COMMONS DRIVE","SUITE 100","RESTON","VA","20191",,,,,,,"030608812","7038606180",,,,"2011-06-21T16:58:37-0500","LOIS HOWARD",,,,,561,561,,,561,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","11","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622151411P030380354272001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","1","0",,"NEWMAN, MCDONOUGH, SCHOFEL AND GIGER PC 401(K) PLAN","003","2002-01-01","NEWMAN, MCDONOUGH, SCHOFEL AND GIGER PC",,,"101 EISENHOWER PARKWAY",,"ROSELAND","NJ","07068",,,,,,,,,,,,,,,,,,"222769714","9734039292","541110","NEWMAN, MCDONOUGH, SCHOFEL AND GIGER PC",,"101 EISENHOWER PARKWAY",,"ROSELAND","NJ","07068",,,,,,,"222769714","9734039292",,,,"2011-06-22T15:04:52-0500","GARY NEWMAN",,,,,11,12,0,0,12,0,12,6,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622151517P040376427712001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ST JOSEPH CARE CENTER TAX SHELTERED ANNUITY PLAN","001","1995-01-01","ST JOSEPH CARE CENTER",,,"2308 RENO DR NE",,"LOUISVILLE","OH","446419083",,,,,,,"2308 RENO DR NE",,"LOUISVILLE","OH","446419083",,,,,,,"340714512","3308755562","623000","ST JOSEPH CARE CENTER",,"2308 RENO DR NE",,"LOUISVILLE","OH","446419083",,,,,,,"340714512","3308755562",,,,"2011-06-22T13:45:39-0500","JOHN BANKS",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623115947P040378786864001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","1","0","0","0",,"LOWER VALLEY HOSPICE 401(K) PLAN","001","2010-01-01","LOWER VALLEY HOSPICE ATTN RONALD K. JETTER",,,"3920 OUTLOOK RD",,"SUNNYSIDE","WA","98944",,,,,,,,,,,,,,,,,,"911067873","5098371676","624100","LOWER VALLEY HOSPICE ATTN RONALD K. JETTER",,"3920 OUTLOOK RD",,"SUNNYSIDE","WA","98944",,,,,,,"911067873","5098371676",,,,"2011-06-23T11:56:58-0500","RONALD JETTER",,,,,38,31,0,0,31,0,31,29,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622204439P030080666785001","2010-09-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"WAYNE FAMILY PRACTICE ASSOCIATES, P.C. PROFIT SHARING PLAN AND TRUST","001","1975-09-01","WAYNE FAMILY PRACTICE ASSOCIATES, P.C.",,,"PO BOX 937",,"JESUP","GA","315980937",,,,,,,,,,,,,,,,,,"581237328","9124276965","621111","WAYNE FAMILY PRACTICE ASSOCIATES, P.C.",,"PO BOX 937",,"JESUP","GA","315980937",,,,,,,"581237328","9124276965",,,,"2011-06-22T20:44:13-0500","KEVIN KEOWN",,,,,23,20,0,2,22,0,22,22,2,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622213132P040083125329001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"DALYN CORP. 401(K) PROFIT SHARING PLAN","001","2007-05-15","DALYN CORP.",,,"8512 HARKERS COURT",,"RALEIGHT","NC","27615",,,,,,,,,,,,,,,,,,"260169227","5613102458","812990","DALYN CORP.",,"8512 HARKERS COURT",,"RALEIGHT","NC","27615",,,,,,,"260169227","5613102458",,,,"2011-06-22T21:30:10-0500","DAVID SILBER",,,,,2,0,0,0,0,0,0,0,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622160328P030002368115001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLART AMERICAS RETIREMENT PLAN","001","1952-09-10","COLART AMERICAS, INC.",,,"11 CONSTITUTION AVENUE",,"PISCATAWAY","NJ","088551396",,,,,,,,,,,,,,,,,,"223141603","7325620770","339900","COLART AMERICAS, INC.",,"11 CONSTITUTION AVENUE",,"PISCATAWAY","NJ","088551396",,,,,,,"223141603","7325620770",,,,"2011-06-22T16:03:02-0500","GARY CEPPOS",,,,,68,24,1,42,67,0,67,,0,,"1A1G",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","3","1","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623104849P030011757186001","2008-12-01","2009-11-30","2",,"0","0","0","0","0","0","0","1","0",,"A.G. BEUKELMAN P.C. PROFIT SHARING PLAN AND TRUST","001","1988-04-01","A.G. BEUKELMAN P.C.",,,"349 N MAIN AVE",,"SIOUX CENTER","IA","51250",,,,,,,,,,,,,,,,,,"421310848","7127222522","541940","A.G. BEUKELMAN P.C.",,"349 N MAIN AVE",,"SIOUX CENTER","IA","51250",,,,,,,"421310848","7127222522",,,,"2011-06-23T10:48:44-0500","ANN LEE",,,,,1,1,0,0,1,0,1,1,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623150518P040379176528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SCHWARTZ & ASSOCIATES, CPAS, PA PROFIT SHARING PLAN","001","2006-01-01","SCHWARTZ & ASSOCIATES CPAS PA",,,"12 ST ANDREWS",,"LITTLE ROCK","AR","72212",,,,,,,"12 ST ANDREWS",,"LITTLE ROCK","AR","72212",,,,,,,"203184517","5012319900","541211","SCHWARTZ & ASSOCIATES CPAS PA",,"12 ST ANDREWS",,"LITTLE ROCK","AR","72212",,,,,,,"203184517","5012319900",,,,"2011-06-23T15:04:33-0500","RICHARD SCHWARTZ",,,,,3,1,,,1,,1,1,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622111415P030080417345001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AWS CONVERGENCE TECHNOLOGIES INC GROUP LIFE AND ACCIDENTAL DEATH AND DISMEMBERMENT PLAN","503","1995-01-01","EARTH NETWORKS INC",,,"12410 MILESTONE CENTER DR STE 300",,"GERMANTOWN","MD","208767103",,,,,,,,,,,,,,,,,,"522252566","3012504166","541990","EARTH NETWORKS INC",,"12410 MILESTONE CENTER DR STE 300",,"GERMANTOWN","MD","208767103",,,,,,,"522252566","3012504166","AWS CONVERGENCE TECHNOLOGIES INC","522252566","503","2011-06-22T11:13:38-0500","KIMBERLY SCHULZE",,,,,152,158,0,0,158,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622084507P040375580320003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VALLEY CALICHE PRODUCTS INC PROFIT SHARING PLAN","001","1980-02-01","VALLEY CALICHE PRODUCTS INC",,,"PO BOX 1086",,"MISSION","TX","785730017",,,,,,,,,,,,,,,,,,"741501906","9565812751","212320","VALLEY CALICHE PRODUCTS INC",,"PO BOX 1086",,"MISSION","TX","785730017",,,,,,,"741501906","9565812751",,,,"2011-06-09T18:37:18-0500","MARK MOTHERAL",,,,,77,65,8,0,73,0,73,65,2,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110621151549P040082362929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"G133 GROUP INSURANCE FOR HOME OFFICE BARGAINING EMPLOYEES","501","1951-09-18","AMERICAN NATIONAL INSURANCE COMPANY",,,"ONE MOODY PLAZA",,"GALVESTON","TX","77550",,,,,,,,,,,,,,,,,,"740484030","4097634661","525100","BENEFITS COMMITTEE","AMERICAN NATIONAL INSURANCE COMPANY","ONE MOODY PLAZA",,"GALVESTON","TX","77550",,,,,,,"741986697","4097634661",,,,"2011-06-21T15:15:37-0500","BRUCE LEPARD","2011-06-21T15:15:37-0500","BRUCE LEPARD",,,80,59,0,0,59,0,,0,0,,,"4A4B4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622094946P040082820529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MASCO CORPORATION EMPLOYEES VISION CARE PLAN","506","2001-01-01","MASCO CORPORATION",,"ATTENTION BENEFITS DEPARTMENT","21001 VAN BORN ROAD",,"TAYLOR","MI","481801340",,,,,,,,,,,,,,,,,,"381794485","3132747400","332110","MASCO CORPORATION",,"21001 VAN BORN ROAD",,"TAYLOR","MI","481801340",,,,,,,"381794485","3132747400",,,,"2011-06-22T09:38:05-0500","JULIE FORRESTER",,,,,16908,15555,0,0,15555,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622120127P030379937136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE CAPITAL CORPORATION OF AMERICA 401(K) PLAN","001","2004-01-01","THE CAPITAL CORPORATION OF AMERICA",,,"84 VILLA ROAD",,"GREENVILLE","SC","29615",,,,,,,,,,,,,,,,,,"570938473","8646728400","523110","THE CAPITAL CORPORATION OF AMERICA",,"84 VILLA ROAD",,"GREENVILLE","SC","29615",,,,,,,"570938473","8646728400",,,,"2011-06-22T12:01:14-0500","JAMES JOYNER",,,,,11,10,0,3,13,0,13,13,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622100749P040375756464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SECURITIES AMERICA FINANCIAL CORPORATION GROUP HEA LTH PLAN","502","1987-05-01","SECURITIES AMERICA FINANCIAL CORPOR ATION",,,"12325 PORT GRACE BLVD",,"LAVISTA","NE","68128",,,,,,,,,,,,,,,,,,"470691275","4023999111","523120","SECURITIES AMERICA FINANCIAL CORPOR ATION",,"12325 PORT GRACE BLVD",,"LAVISTA","NE","68128",,,,,,,"470691275","4023999111",,,,"2011-06-22T10:07:39-0500","KATHLEEN SHOTKOSKI",,,,,337,300,12,0,312,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622153616P030380406560001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"COMMUNITIES SOUTHWEST 401(K) PROFIT SHARING PLAN","002","1994-01-01","COMMUNITIES SOUTHWEST MANAGEMENT, INC",,,"7001 N. SCOTTSDALE RD.","SUITE 1015","SCOTTSDALE","AZ","85253",,,,,,,"7001 N. SCOTTSDALE RD.","SUITE 1015","SCOTTSDALE","AZ","85253",,,,,,,"860968852","4803152600","531390","COMMUNITIES SOUTHWEST MANAGEMENT, INC",,"7001 N. SCOTTSDALE RD.","SUITE 1015","SCOTTSDALE","AZ","85253",,,,,,,"860968852","4803152600",,,,"2011-06-22T15:34:28-0500","JOHN SURIANO",,,,,18,11,0,7,18,0,18,17,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622145156P030080520945001","2010-02-01","2011-01-31","2",,"1","0","1","0","0","0","0","0","0",,"MSDSONLINE INC. DENTAL PLAN","503","2010-02-01","MSDSONLINE INC.",,,"350 N ORLEANS","SUITE 950","CHICAGO","IL","60654",,,,,,,,,,,,,,,,,,"043626476","3128812000","541990","MSDSONLINE INC.",,"350 N ORLEANS","SUITE 950","CHICAGO","IL","60654",,,,,,,"043626476","3128812000",,,,"2011-06-22T14:51:51-0500","GLENN TROUT",,,,,107,123,4,0,127,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623115038P030382715824001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"ALMEGA TRU-FLEX INC. PROFIT SHARING AND 401(K) PLAN","001","1994-12-01","ALMEGA TRU- FLEX INC.",,,"P.O. BOX 67","3917 US 106 EAST","BREMEN","IN","46506",,,,,,,"P.O. BOX 67","3917 US 106 EAST","BREMEN","IN","46506",,,,,,,"351873639","5745462113","335900","ALMEGA TRU- FLEX INC.",,"P.O. BOX 67","3917 US 106 EAST","BREMEN","IN","46506",,,,,,,"351873639","5745462113",,,,"2011-06-23T11:49:49-0500","DOUGLAS POMEROY",,,,,3,0,,,0,,0,,,,"2E2F2H2J",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623154221P030081136673001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WALKERS SHORTBREAD, INC. RETIREMENT PLAN","001","1997-01-01","WALKERS SHORTBREAD, INC.",,,"170 COMMERCE DRIVE",,"HAUPPAUGE","NY","11788",,,,,,,,,,,,,,,,,,"133836419","6312730011","311800","WALKERS SHORTBREAD, INC.",,"170 COMMERCE DRIVE",,"HAUPPAUGE","NY","11788",,,,,,,"133836419","6312730011",,,,"2011-06-23T15:41:35-0500","JOSEPH GADALETA","2011-06-23T15:41:35-0500","JOSEPH GADALETA",,,21,23,0,0,23,0,23,23,0,,"2A2E2G2J3D",,"1",,,,"1",,,,,,,,"1","1","2",,"1",,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622095251P040375724480001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WHITE EARTH RESERVATION LIFE AND DISABILITY PLAN","503","2007-01-01","WHITE EARTH RESERVATION AND ENTERPRISES",,,"PO BOX 418",,"MAHNOMEN","MN","565570418",,,,,,,"777 CASINO ROAD",,"MAHNOMEN","MN","565570418",,,,,,,"411737979","2189833285","713200","WHITE EARTH RESERVATION AND ENTERPRISES",,"PO BOX 418",,"MAHNOMEN","MN","565570418",,,,,,,"411737979","2189833285",,,,"2011-06-22T09:52:45-0500","LARRY KINDSETH",,,,,770,721,10,0,731,,,,,,,"4B4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622125856P030011676082001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REDWINE & COMPANY, INC. 401(K) PROFIT SHARING PLAN","001","1999-01-01","REDWINE & COMPANY, INC.",,,"5955 CARNEGIE BLVD SUITE 225",,"CHARLOTTE","NC","28209",,,,,,,,,,,,,,,,,,"561943573","7043752966","812990","REDWINE & COMPANY, INC.",,"5955 CARNEGIE BLVD SUITE 225",,"CHARLOTTE","NC","28209",,,,,,,"561943573","7043752966",,,,"2011-06-22T12:57:38-0500","J. CRAIGHILL REDWINE, SR.","2011-06-22T12:57:38-0500","J. CRAIGHILL REDWINE, SR.",,,3,2,0,1,3,0,3,3,0,,"2E2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623095252P040083406865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BONFITTO, INC. 401(K) PROFIT SHARING PLAN","001","1991-07-08","BONFITTO, INC.",,,"1029 BROOKE BLVD",,"READING","PA","19607",,,,,,,,,,,,,,,,,,"232628126","6107771333","238220","BONFITTO, INC.",,"1029 BROOKE BLVD",,"READING","PA","19607",,,,,,,"232628126","6107771333",,,,"2011-06-23T09:51:59-0500","JAMES BONFITTO",,,,,27,24,0,1,25,0,25,25,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622161116P030080565473001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MELLON, WEBSTER & SHELLY A PROFESSIONAL CORPORATION","001","1985-10-01","MELLON, WEBSTER & SHELLY, A PROFESSIONAL CORPORATION",,,"87 N. BROAD STREET",,"DOYLESTOWN","PA","18901",,,,,,,,,,,,,,,,,,"232265567","2153487700","541110","MELLON, WEBSTER & SHELLY, A PROFESSIONAL CORPORATION",,"87 N. BROAD STREET",,"DOYLESTOWN","PA","18901",,,,,,,"232265567","2153487700",,,,"2011-06-22T16:11:02-0500","PHILIP HUBER",,,,,27,19,,6,25,,25,25,1,,"2E2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623124753P030081054049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOCANTE IMPLANT INSTITUTE DEFINED BENEFIT PLAN","002","2009-01-01","LOCANTE IMPLANT INSTITUTE",,,"317 SEVEN SPRINGS WAY, SUITE 204",,"BRENTWOOD","TN","37027",,,,,,,,,,,,,,,,,,"263528601","6153730888","541990","LOCANTE IMPLANT INSTITUTE",,"317 SEVEN SPRINGS WAY, SUITE 204",,"BRENTWOOD","TN","37027",,,,,,,"263528601","6153730888",,,,"2011-06-23T12:47:48-0500","JEANNE LOCANTE","2011-06-23T12:47:48-0500","JEANNE LOCANTE",,,4,4,0,0,4,0,4,,0,,"1A3D",,,"1",,,,"1",,,"1",,,,,"1","1",,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623105351P030081002929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GORDON & PIKARSKI CHARTERED PENSION PLAN","001","1990-07-01","GORDON & PIKARSKI CHARTERED",,,"303 W MADISON ST STE 2300",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"651238165","3127829351","541110","GORDON & PIKARSKI CHARTERED",,"303 W MADISON ST STE 2300",,"CHICAGO","IL","60606",,,,,,,"651238165","3127829351",,,,"2011-06-23T10:53:47-0500","JOHN J. PIKARSKI, JR.",,,,,8,7,0,1,8,0,8,8,0,,"2T2C3D2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623183112P030081204353001","2010-11-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"SRI/SURGICAL EXPRESS, INC. CAFETERIA PLAN","501","1994-11-01","SRI/SURGICAL EXPRESS",,,"12425 RACETRACK ROAD",,"TAMPA","FL","33626",,,,,,,,,,,,,,,,,,"593252632","8138919550","812190","SRI/SURGICAL EXPRESS",,"12425 RACETRACK ROAD",,"TAMPA","FL","33626",,,,,,,"593252632","8138919550",,,,"2011-06-23T18:31:05-0500","RAY REILLY",,,,,940,938,0,0,938,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622120747P030379948432001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"HELEN OF TROY NEVADA CORPORATION FSA PLAN","501","2010-01-01","HELEN OF TROY NEVADA CORPORATION",,,"1 HELEN OF TROY PLAZA",,"EL PASO","TX","79912",,,,,,,"1 HELEN OF TROY PLAZA",,"EL PASO","TX","79912",,,,,,,"742804062","9152258000","424300","HELEN OF TROY NEVADA CORPORATION",,"1 HELEN OF TROY PLAZA",,"EL PASO","TX","79912",,,,,,,"742804062","9152258000",,,,"2011-06-22T11:09:59-0500","EDDIE GARCIA","2011-06-22T11:22:31-0500","ROBERT SPEAR",,,218,207,0,0,207,0,207,0,0,0,,"4A",,,,"1",,,,"1",,,,,,,,"1",,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622094114P040375701504001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"RESPONSIBLE SERVICES, INC. 401(K) PLAN","001","2008-03-26","RESPONSIBLE SERVICES, INC.",,,"6442 JAYFIELD DRIVE",,"HAMILTON","OH","45011",,,,,,,,,,,,,,,,,,"262265906",,"561710","RESPONSIBLE SERVICES, INC.",,"6442 JAYFIELD DRIVE",,"HAMILTON","OH","45011",,,,,,,"262265906",,,,,"2011-06-22T09:41:06-0500","JEFFREY TEAGUE","2011-06-22T09:41:06-0500","JEFFREY TEAGUE",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622094121P030379639504001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"IMA LIFE NORTH AMERICA, INC","501","2010-01-01","IMA LIFE NORTH AMERICA, INC",,,"2175 MILITARY RD",,"TONAWANDA","NY","14150",,,,,,,"2175 MILITARY RD",,"TONAWANDA","NY","14150",,,,,,,"203265112","7166956354","325900","IMA LIFE NORTH AMERICA, INC",,"2175 MILITARY RD",,"TONAWANDA","NY","14150",,,,,,,"203265112","7166956354",,,,"2011-06-21T12:31:06-0500","DEBRA DICKMAN",,,,,171,171,,,171,,171,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623131401P030081067265001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"NCA COMP, INC. 401 (K) PLAN","001","1999-01-01","NCACOMP, INC.",,,"14 LAFAYETTE SQUARE","SUITE 700","BUFFALO","NY","14203",,,,,,,,,,,,,,,,,,"161398961","7168420045","524290","NCACOMP, INC.",,"14 LAFAYETTE SQUARE","SUITE 700","BUFFALO","NY","14203",,,,,,,"161398961","7168420045",,,,"2011-06-23T12:17:52-0500","SANDRA JUREK","2011-06-23T12:17:52-0500","SANDRA JUREK",,,47,35,0,14,49,0,49,49,3,,"2E2G2J3D2K2A",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623090343P030382319888001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANKERS FINANCE CAPITAL CORPORATION WELFARE BENEFIT PLAN","501","1995-01-01","BANKERS FINANCE CAPITAL CORPORATION",,,"4600 EAST WEST HIGHWAY",,"BETHESDA","MD","20814",,,,,,,,,,,,,,,,,,"541108624","3016521616","522298","BANKERS FINANCE CAPITAL CORPORATION",,"4600 EAST WEST HIGHWAY",,"BETHESDA","MD","20814",,,,,,,"541108624","3016521616",,,,"2011-06-22T15:21:40-0500","JOHN ELMER","2011-06-22T15:21:40-0500","JOHN ELMER",,,414,643,,,643,,,,,,,"4A4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110623085510P030080945697001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE CITIZENS NATIONAL BANK FLEXIBLE BENEFITS PLAN","501","1985-06-01","THE CITIZENS NATIONAL BANK OF BLUFFTON",,,"102 SOUTH MAIN STREET, BOX 88",,"BLUFFTON","OH","45817",,,,,,,,,,,,,,,,,,"344205025","4193588040","522120","THE CITIZENS NATIONAL BANK OF BLUFFTON",,"102 SOUTH MAIN STREET, BOX 88",,"BLUFFTON","OH","45817",,,,,,,"344205025","4193588040",,,,"2011-05-23T13:09:52-0500","GWYN EASTOM",,,,,95,127,,,127,,127,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623090430P030382321072001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"YORK HILL TRAP ROCK QUARRY CO INC PROFIT SHARING PLAN","002","1967-01-01","YORK HILL TRAP ROCK QUARRY CO INC",,,"975 WESTFIELD ROAD",,"MERIDEN","CT","06450",,,,,,,,,,,,,,,,,,"060598180","2032378421","236200","YORK HILL TRAP ROCK QUARRY CO INC",,"975 WESTFIELD ROAD",,"MERIDEN","CT","06450",,,,,,,"060598180","2032378421",,,,"2011-06-23T09:04:17-0500","LEONARDO H SUZIO",,,,,27,21,1,2,24,1,25,24,2,,"2E2G2T3H2F3D2J","4B","1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623165826P030081168881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GOLD RESERVE KSOP PLAN","001","1990-01-01","GOLD RESERVE CORPORATION",,,"926 W. SPRAGUE AVE., SUITE 200",,"SPOKANE","WA","99201",,,,,,,,,,,,,,,,,,"810266636","5096231500","212200","GOLD RESERVE CORPORATION",,"926 W. SPRAGUE AVE., SUITE 200",,"SPOKANE","WA","99201",,,,,,,"810266636","5096231500",,,,"2011-06-23T16:58:25-0500","ROBERT A MCGUINNESS",,,,,17,11,0,4,15,0,15,15,0,,"2E2G2J2F2R2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623160802P040379327328001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GLOBAL ENERGY & TECHNOLOGY, INC. 401(K) PLAN","002","2009-01-01","GLOBAL ENERGY & TECHNOLOGY, INC.",,,"4219 TRANSPORT STREET",,"VENTURA","CA","93003",,,,,,,"4219 TRANSPORT STREET",,"VENTURA","CA","93003",,,,,,,"943182964","8054779888","812990","GLOBAL ENERGY & TECHNOLOGY, INC.",,"4219 TRANSPORT STREET",,"VENTURA","CA","93003",,,,,,,"943182964","8054779888",,,,"2011-06-23T15:57:29-0500","KELLY DENTON",,,,,8,8,0,0,8,0,8,8,0,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622164448P030011697618001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AFFYMAX CONSOLIDATED WELFARE PLAN","501","1991-08-01","AFFYMAX, INC.",,,"4001 MIRANDA AVE",,"PALO ALTO","CA","943041218",,,,,,,,,,,,,,,,,,"770579396","6508128700","541700","AFFYMAX, INC.",,"4001 MIRANDA AVE",,"PALO ALTO","CA","943041218",,,,,,,"770579396","6508128700",,,,"2011-06-22T16:22:45-0500","MARY ELLEN SILLIVOS",,,,,144,143,0,0,143,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622150511P040082975073001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HART GROUP, INC. EMPLOYEE BENEFIT TRUST PLAN","501","1986-08-01","HART GROUP, INC.",,,"3811 TURTLE CREEK BLVD., SUITE 900",,"DALLAS","TX","75219",,,,,,,"3811 TURTLE CREEK BLVD., SUITE 900",,"DALLAS","TX","75219",,,,,,,"752206906","2145599925","541600","HART GROUP, INC.",,"3811 TURTLE CREEK BLVD., SUITE 900",,"DALLAS","TX","75219",,,,,,,"752206906","2145599925","THE HART GROUP, INC.","752206906","501","2011-06-22T15:00:41-0500","JOHN ROSSITER",,,,,113,110,1,0,111,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623124855P030382842336001","2004-01-01","2004-12-31","2",,"1","0","0","0","0","0","0","1","0",,"GROUP EAP PLAN","507","2004-01-01","AGILYSYS, INC.",,,"28925 FOUNTAIN PARKWAY",,"SOLON","OH","44139",,,,,,,,,,,,,,,,,,"340907152","4405198700","425120","AGILYSYS, INC.",,"28925 FOUNTAIN PARKWAY",,"SOLON","OH","44139",,,,,,,"340907152","4405198700",,,,"2011-06-23T12:48:31-0500","SUSAN GERLACH",,,,,1409,1387,,,1387,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"1","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623135149P030013389542001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DEFERRED COMPENSATION/THIRFT PLAN OF THE BELT RAILWAY COMPANY OF CHICAGO","002","1982-01-01","BELT RAILWAY COMPANY OF CHICAGO",,,"6900 S CENTRAL AVE",,"BEDFORD PARK","IL","606386312",,,,,,,,,,,,,,,,,,"366000256","7084964112","482110","BELT RAILWAY COMPANY OF CHICAGO",,"6900 S CENTRAL AVE",,"BEDFORD PARK","IL","606386312",,,,,,,"366000256","7084964112",,,,"2011-06-23T13:51:38-0500","DENNIS WARFORD",,,,,67,49,11,6,66,0,66,65,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623135357P040012260690001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BURGESS & NIPLE EMPLOYEE BENEFIT PLAN","501","1982-07-01","BURGESS & NIPLE, INC.",,,"5085 REED ROAD",,"COLUMBUS","OH","43220",,,,,,,,,,,,,,,,,,"310885550","6144597272","541330","TRUSTEES OF BURGESS & NIPLE EMPLOYEE BENEFIT TRUST",,"5085 REED ROAD",,"COLUMBUS","OH","43220",,,,,,,"311040732","6144597272",,,,"2011-06-23T13:27:27-0500","PEGGY GARRISON",,,,,496,390,,22,412,,412,,,,,"4A4B4D4F4H",,,"1",,"1",,"1",,,,,"1",,"1","2","1",,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623135426P040083521297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KINGSMILL RIESS, L.L.C. 401K PLAN","002","1997-01-01","KINGSMILL RIESS, L.L.C.",,,"201 SAINT CHARLES AVE STE 3300",,"NEW ORLEANS","LA","701703400",,,,,,,,,,,,,,,,,,"721140481","5045813300","541110","KINGSMILL RIESS, L.L.C.",,"201 SAINT CHARLES AVE STE 3300",,"NEW ORLEANS","LA","701703400",,,,,,,"721140481","5045813300",,,,"2011-06-23T13:51:20-0500","MICHAEL RIESS",,,,,4,4,0,1,5,0,5,3,0,,"2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623141508P030383025968001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SUN LIFE LIFE INSURANCE PLAN SOUTHBRIDGE SAVINGS BANK","503","2009-01-01","SOUTHBRIDGE SAVINGS BANK",,,"PO BOX 370","253-257 MAIN STREET","SOUTHBRIDGE","MA","01550",,,,,,,"PO BOX 370","253-257 MAIN STREET","SOUTHBRIDGE","MA","01550",,,,,,,"263580136","8009399103","522120","SOUTHBRIDGE SAVINGS BANK",,"PO BOX 370","253-257 MAIN STREET","SOUTHBRIDGE","MA","01550",,,,,,,"263580136","8009399103",,,,"2011-06-23T13:48:06-0500","LYNNE ANCTIL",,,,,104,103,,,103,,103,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110622121554P040082901201001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"BROWN EYE CARE CLINICS 401(K) PLAN AND TRUST","001","1993-01-01","T. L. BROWN, O.D., P.C.",,,"P.O. BOX 460",,"JEFFERSON","IA","50129",,,,,,,"117 E. LINCOLNWAY",,"JEFFERSON","IA","50129",,,,,,,"421041460","5153868196","621320","T. L. BROWN, O.D., P.C.",,"P.O. BOX 460",,"JEFFERSON","IA","50129",,,,,,,"421041460","5153868196",,,,"2011-06-22T12:15:44-0500","ERIN KIMBELL",,,,,38,29,0,4,33,0,33,33,0,,"2E2F2G2J2K3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110622133011P030011679522001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"YACHIYO OF AMERICA INC. EMPLOYEE BENEFIT PLAN","501","1997-10-01","YACHIYO OF AMERICA INC.",,,"2285 WALCUTT ROAD",,"COLUMBUS","OH","432283628",,,,,,,,,,,,,,,,,,"311576578","6148708711","336300","YACHIYO OF AMERICA INC.",,"2285 WALCUTT ROAD",,"COLUMBUS","OH","432283628",,,,,,,"311576578","6148708711",,,,"2011-06-22T13:30:10-0500","ROBYN MILLER",,,,,349,364,1,0,365,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623103158P040083421969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"POLYESTER FIBERS, LLC WELFARE BENEFIT PLAN","566","2009-01-01","POLYESTER FIBERS, LLC",,,"1820 EVANS STREET, N.E.","PO BOX 310","CONOVER","NC","28613",,,,,,,"1820 EVANS STREET, N.E.","PO BOX 310","CONOVER","NC","28613",,,,,,,"208436514","8284597064","313000","POLYESTER FIBERS, LLC",,"1820 EVANS STREET, N.E.","PO BOX 310","CONOVER","NC","28613",,,,,,,"208436514","8284597064",,,,"2011-06-23T10:30:31-0500","SCOTT SANNES",,,,,213,258,3,0,261,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110621150438P040082357617007","2010-02-01","2011-01-31","2",,,,,,,,,,,,"MICHELS CORPORATION LONG TERM DISABILITY PLAN","508","2009-03-01","MICHELS CORPORATION",,,"817 W MAIN STREET",,"BROWNSVILLE","WI","53006",,,,,,,,,,,,,,,,,,"390970311","9205833132","237100","MICHELS CORPORATION",,"817 W MAIN STREET",,"BROWNSVILLE","WI","53006",,,,,,,"390970311","9205833132",,,,"2011-06-24T04:10:39-0500","BRIAN P JOHNSON","2011-06-24T04:10:39-0500","PATRICK D MICHELS",,,270,289,,,289,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110621165353P030079987649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BERRY PETROLEUM COMPANY THRIFT PLAN","002","1989-01-01","BERRY PETROLEUM COMPANY",,,"1999 BROADWAY SUITE 3700",,"DENVER","CO","80202",,,,,,,"1999 BROADWAY SUITE 3700",,"DENVER","CO","80202",,,,,,,"770079387","3039994400","211110","BERRY PETROLEUM COMPANY",,"1999 BROADWAY SUITE 3700",,"DENVER","CO","80202",,,,,,,"770079387","3039994400",,,,"2011-06-21T16:46:32-0500","KENNETH OLSON",,,,,361,275,0,108,383,2,385,379,26,,"2F2G2J2K2T3D3I",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-06-21","Filed with authorized/valid electronic signature",, "20110622105233P040082856977001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PAYETTE ASSOCIATES, INC. FLEXIBLE SPENDING ACCOUNT PLAN","503","1992-01-01","PAYETTE ASSOCIATES, INC.",,,"290 CONGRESS STREET","5TH FLOOR","BOSTON","MA","022101503",,,,,,,,,,,,,,,,,,"042379313","6178951000","541310","PAYETTE ASSOCIATES, INC.",,"290 CONGRESS STREET","5TH FLOOR","BOSTON","MA","022101503",,,,,,,"042379313","6178951000",,,,"2011-06-22T10:52:26-0500","ROBERTA HANEY",,,,,158,128,1,0,129,,,,,,,"4A4B4D4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623112416P030382661440001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NAPLES LUMBER & SUPPLY CO., INC. 401 K PROFIT SHARING PLAN & TRUST","001","1993-01-01","NAPLES LUMBER & SUPPLY CO., INC.",,,"3828 RADIO ROAD",,"NAPLES","FL","34104",,,,,,,,,,,,,,,,,,"591353497","2396437000","812990","NAPLES LUMBER & SUPPLY CO., INC.",,"3828 RADIO ROAD",,"NAPLES","FL","34104",,,,,,,"591353497","2396437000",,,,"2011-06-23T11:24:08-0500","CAROLYN COPELAND",,,,,49,43,0,3,46,0,46,19,0,,"2E2F2G2J2K2R3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623072221P030025192167001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TIOGA CORPORATION, PROFIT SHARING PLAN","001","2004-05-05","TIOGA CORPORATION",,,"51541 BITTERSWEET ROAD","SUITE C","GRANGER","IN","46530",,,,,,,,,,,,,,,,,,"201102862","5746790153","811490","TIOGA CORPORATION",,"51541 BITTERSWEET ROAD","SUITE C","GRANGER","IN","46530",,,,,,,"201102862","5746790153",,,,"2011-06-22T12:57:28-0500","WILLIAM TRIBBETT",,,,,4,4,0,0,4,0,4,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623145942P040083554929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EASTERN BANK","505","2006-01-01","EASTERN BANK",,,"195 MARKET STREET",,"LYNN","MA","01901",,,,,,,,,,,,,,,,,,"043067724","7815987590","522110","EASTERN BANK",,"195 MARKET STREET",,"LYNN","MA","01901",,,,,,,"043067724","7815987590",,,,"2011-06-23T14:58:51-0500","EDWARD SARAS","2011-06-23T14:58:51-0500","EDWARD SARAS",,,215,241,,,241,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622113113P030080424689001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FDR MEDICAL SERVICES 401(K) PROFIT SHARING PLAN","003","2004-01-01","FDR MEDICAL SERVICES, PC",,,"3085 SOUTHWESTERN BLVD.",,"ORCHARD PARK","NY","14127",,,,,,,,,,,,,,,,,,"161583967","7166772575","621399","FDR MEDICAL SERVICES, PC",,"3085 SOUTHWESTERN BLVD.",,"ORCHARD PARK","NY","14127",,,,,,,"161583967","7166772575",,,,"2011-06-22T10:08:08-0500","MICHAEL FILICE","2011-06-22T10:08:08-0500","MICHAEL FILICE",,,19,22,1,3,26,0,26,25,0,,"2E2F2G2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622143958P030080512369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TRI STATE COMPANIES, INC. 401(K) PLAN","001","1991-01-01","TRI STATE COMPANIES, INC.",,,"6125 VALLEY DRIVE",,"BETTENDORF","IA","52722",,,,,,,,,,,,,,,,,,"420843247","5633326684","423800","TRI STATE COMPANIES, INC.",,"6125 VALLEY DRIVE",,"BETTENDORF","IA","52722",,,,,,,"420843247","5633326684",,,,"2011-06-22T14:39:54-0500","HUGH A STAFFORD",,,,,50,1,0,11,12,0,12,11,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623154820P040083581745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OXFORD INDUSTRIES INC HEALTH CARE SPENDING ACCOUNT","515","1993-01-01","OXFORD INDUSTRIES, INC.",,,"222 PIEDMONT AVE NE",,"ATLANTA","GA","30308",,,,,,,,,,,,,,,,,,"580831862","4046592424","315990","OXFORD INDUSTRIES, INC.",,"222 PIEDMONT AVE NE",,"ATLANTA","GA","30308",,,,,,,"580831862","4046592424",,,,"2011-06-23T15:48:10-0500","JANICE WILLIAMS","2011-06-23T15:48:10-0500","JANICE WILLIAMS",,,307,221,0,0,221,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110622080147P030379439152004","2010-01-01","2010-12-31","4","C",,,,,,,,,,,"MATC LIFESTYLE AGGRESSIVE GROWTH COLLECTIVE INVESTMENT FUND","005",,"COUNSEL TRUST COMPANY","D/B/A MID ATLANTIC TRUST COMPANY",,,,,,,,,,,,,"224 SAINT CHARLES WAY, SUITE 100",,"YORK","PA","174024644",,,,,,,"260010549","7177181601","523900","COUNSEL TRUST COMPANY D/B/A MID ATLANTIC TRUST COMPANY",,"224 SAINT CHARLES WAY, SUITE 100",,"YORK","PA","174024644",,,,,,,,,,,,"2011-06-15T03:16:31-0500","DAVID L. DOLAN",,,,,2,2,0,0,2,0,2,,0,,,,,,"1",,,,"1",,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-06-22","Filed with authorized/valid electronic signature",, "20110623095105P030080971745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP VOYAGERS, INC. EMPLOYEES 401(K) PLAN","002","1988-06-01","GROUP VOYAGERS, INC.",,,"5301 S FEDERAL CIRCLE",,"LITTLETON","CO","801232980",,,,,,,,,,,,,,,,,,"131996573","3037037000","488990","GROUP VOYAGERS, INC.",,"5301 S FEDERAL CIRCLE",,"LITTLETON","CO","801232980",,,,,,,"131996573","3037037000",,,,"2011-06-23T09:50:53-0500","EVAN HAROLDS",,,,,465,298,3,113,414,0,414,412,11,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",, "20110623205141P030383792688001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"ALBRECHT TOUSI & FARNUM PLLC PROFIT SHARING PLAN","001","2010-03-01","ALBRECHT TOUSI & FARNUM PLLC",,,"STE 300","1701 PENNSYLVANIA AVE NW","WASHINGTON","DC","20006",,,,,,,,,,,,,,,,,,"272010058","2023491490","541110","ALBRECHT TOUSI & FARNUM PLLC",,"STE 300","1701 PENNSYLVANIA AVE NW","WASHINGTON","DC","20006",,,,,,,"272010058","2023491490",,,,"2011-06-23T20:51:32-0500","RALPH P. ALBRECHT","2011-06-23T20:51:32-0500","RALPH P. ALBRECHT",,,0,2,0,0,2,0,2,0,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627153338P040085825457001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RAYMOURS FURNITURE COMPANY, INC. SHORT TERM DISABILITY INSURANCE PLAN","505","2002-01-01","RAYMOURS FURNITURE COMPANY, INC.",,,"PO BOX 220",,"LIVERPOOL","NY","130880220",,,,,,,,,,,,,,,,,,"150556500","3154532500","442110","RAYMOURS FURNITURE COMPANY, INC.",,"PO BOX 220",,"LIVERPOOL","NY","130880220",,,,,,,"150556500","3154532500",,,,"2011-06-27T15:32:47-0500","STEVE MCPEAK",,,,,3007,2992,0,0,2992,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627153610P030083371873001","2010-04-17","2010-12-31","2",,"1","1","0","1","0","0","0","0","0",,"SCREEN MOBILE ENTERPRISES, INC. 401K PLAN","001","2010-04-17","SCREEN MOBILE ENTERPRISES, INC.",,,"10758 PACIFIC CANYON WAY",,"SAN DIEGO","CA","92121",,,,,,,,,,,,,,,,,,"272399177","8583374574","238290","SCREEN MOBILE ENTERPRISES, INC.",,"10758 PACIFIC CANYON WAY",,"SAN DIEGO","CA","92121",,,,,,,"272399177","8583374574",,,,"2011-06-27T09:31:30-0500","DARRICK PIERCE","2011-06-27T09:31:30-0500","DARRICK PIERCE",,,0,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627115916P030083249921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIRECT SUPPLY INC LTD BENEFIT PLAN","510","1994-10-01","DIRECT SUPPLY INC",,,"6767 N INDUSTRIAL RD",,"MILWAUKEE","WI","53223",,,,,,,"6767 N INDUSTRIAL RD",,"MILWAUKEE","WI","53223",,,,,,,"391519806","4143582805","423800","DIRECT SUPPLY INC",,"6767 N INDUSTRIAL RD",,"MILWAUKEE","WI","53223",,,,,,,"391519806","4143582805",,,,"2011-06-24T15:25:26-0500","JOHN LEWIS","2011-06-21T17:08:08-0500","MICHELLE PRIMUS",,,786,803,,,803,,803,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627090007P040085627409001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SNOW FUNERAL HOME, INC. RESTATED PROFIT SHARING PLAN & TRUST","002","1976-05-01","SNOW FUNERAL HOME, INC.",,,"3775 N. CENTER ROAD",,"SAGINAW","MI","48603",,,,,,,,,,,,,,,,,,"382081308","9897914515","812210","SNOW FUNERAL HOME, INC.",,"3775 N. CENTER ROAD",,"SAGINAW","MI","48603",,,,,,,"382081308","9897914515",,,,"2011-06-20T13:57:34-0500","RONALD T. SNOW","2011-06-20T13:57:46-0500","RONALD T. SNOW",,,4,4,0,0,4,0,4,4,,,"2E3D",,"1",,,,"1",,,,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627190203P030012131922001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INFOGIX, INC. TEAM MEMBER BENEFIT PLAN","501","2002-01-01","INFOGIX, INC.",,,"1240 EAST DIEHL ROAD, SUITE 400",,"NAPERVILLE","IL","60563",,,,,,,,,,,,,,,,,,"363164395","6305051800","541519","INFOGIX, INC.",,"1240 EAST DIEHL ROAD, SUITE 400",,"NAPERVILLE","IL","60563",,,,,,,"363164395","6305051800",,,,"2011-06-27T19:01:55-0500","MADHAVAN NAYAR",,,,,410,170,2,0,172,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627140736P030393450816001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FPMI SOLUTIONS, INC. EMPLOYEE BENEFIT PLAN","501","2004-04-01","FPMI SOLUTIONS, INC.",,,"101 QUALITY CIRCLE NW",,"HUNTSVILLE","AL","358064533",,,,,,,,,,,,,,,,,,"200737319","2565620654","541990","FPMI SOLUTIONS, INC.",,"101 QUALITY CIRCLE NW",,"HUNTSVILLE","AL","358064533",,,,,,,"200737319","2565620654",,,,"2011-06-27T14:05:13-0500","TOI GARTH",,,,,91,88,1,0,89,,,,,,,"4A4B4D4E4F4G4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627140906P030083327297001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHARLES STEWART MOTT FOUNDATION TAX DEFERRED SAVINGS PLAN","002","1985-01-01","CHARLES STEWART MOTT FOUNDATION",,,"503 S. SAGINAW, SUITE 1200",,"FLINT","MI","48502",,,,,,,,,,,,,,,,,,"381211227","8102385651","525920","CHARLES STEWART MOTT FOUNDATION",,"503 S. SAGINAW, SUITE 1200",,"FLINT","MI","48502",,,,,,,"381211227","8102385651",,,,"2011-06-27T14:08:49-0500","PHILLIP H. PETERS",,,,,112,81,5,23,109,1,110,105,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627132559P030393359808001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SPREADTRUM COMMUNICATIONS 401K PLAN","001","2004-01-01","SPREADTRUM COMMUNICATIONS",,,"5960 CORNERSTONE COURT, STE 200",,"SAN DIEGO","CA","921213780",,,,,,,,,,,,,,,,,,"861050326","8585460895","541330","SPREADTRUM COMMUNICATIONS",,"5960 CORNERSTONE COURT, STE 200",,"SAN DIEGO","CA","921213780",,,,,,,"861050326","8585460895",,,,"2011-06-27T13:25:43-0500","LON CHRISTENSEN",,,,,80,33,0,30,63,0,63,59,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110625091007P040012437762001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ADVANTAGE BUILDING COMPONENTS, LLC 401(K) PLAN","001","2007-07-01","ADVANTAGE BUILDING COMPONENTS, LLC",,,"1011 PITTSBURGH ROAD",,"VALENCIA","PA","16059",,,,,,,,,,,,,,,,,,"208936487","7248981501","321900","ADVANTAGE BUILDING COMPONENTS, LLC",,"1011 PITTSBURGH ROAD",,"VALENCIA","PA","16059",,,,,,,"208936487","7248981501",,,,"2011-06-25T09:10:02-0500","TIMOTHY P. WILLISON",,,,,30,25,0,2,27,0,27,9,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-25","Filed with authorized/valid electronic signature",, "20110627150507P030393582656001","2001-08-01","2002-07-31","2",,"0","0","0","0","0","0","0","1","0",,"ORCHIDS PAPER PRODUCTS COMPANY HEALTH PLAN","501","1998-08-01","ORCHIDS PAPER PRODUCTS COMPANY",,,"4826 HUNT STREET",,"PRYOR","OK","743614480",,,,,,,,,,,,,,,,,,"232956944","9188250616","322200","ORCHIDS PAPER PRODUCTS COMPANY",,"4826 HUNT STREET",,"PRYOR","OK","743614480",,,,,,,"232956944","9188250616",,,,"2011-06-27T15:04:49-0500","HOGANTAYLOR LLP PREPARER",,,,,284,228,0,0,228,,,,,,,"4A","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110624103005P040084018209001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"PRIME SURFACE CO., INC. 401(K) PROFIT SHARING PLAN & TRUST","001","2000-12-01","PRIME SURFACE COMPANY",,,"12 WALNUT HILL PARK",,"WOBURN","MA","01801",,,,,,,"12 WALNUT HILL PARK",,"WOBURN","MA","01801",,,,,,,"043510958","7819355665","238100","PRIME SURFACE COMPANY",,"12 WALNUT HILL PARK",,"WOBURN","MA","01801",,,,,,,"043510958","7819355665",,,,"2011-06-24T10:26:25-0500","MARK MARRAMA",,,,,1,1,0,0,1,0,1,1,0,,"2E2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-24","Filed with authorized/valid electronic signature",, "20110627123849P040085750209004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SEARCH AND CARE,INC. EMPLOYEE BENEFITS PLAN OF SEARCH & CARE, INC.","001","1983-01-01","SEARCH & CARE, INC.",,,"1844 SECOND AVENUE",,"NEW YORK","NY","101283862",,,,,,,,,,,,,,,,,,"237444790","2122895300","623000","SEARCH & CARE, INC.",,"1844 SECOND AVENUE",,"NEW YORK","NY","101283862",,,,,,,"237444790","2122895300",,,,"2011-06-30T08:21:57-0500","CHRISTINE ROBINSON",,,,,10,7,,1,8,,8,8,1,,"2G",,"1",,,,"1",,,,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627134214P040085777697001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"H AND H DRUG STORES, INC. EMPLOYEE STOCK OWNERSHIP PLAN","001","1998-01-01","H AND H DRUG STORES, INC.",,,"3604 SAN FERNANDO RD.",,"GLENDALE","CA","912045096",,,,,,,,,,,,,,,,,,"953514215","8182425887","446110","H AND H DRUG STORES, INC.",,"3604 SAN FERNANDO RD.",,"GLENDALE","CA","912045096",,,,,,,"953514215","8182425887",,,,"2011-06-27T13:42:03-0500","ALI R. AVAL",,,,,130,0,0,0,0,0,0,0,0,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627134507P030393401536005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"G. LEONE, MD, SC PROFIT SHARING PLAN AND TRUST","002","1972-02-05","G. LEONE, MD, SC",,,"3060 N. ARLINGTON HEIGHTS ROAD",,"ARLINGTON HEIGHTS","IL","60004",,,,,,,,,,,,,,,,,,"362728299","8474988880","621111","G. LEONE, MD, SC",,"3060 N. ARLINGTON HEIGHTS ROAD",,"ARLINGTON HEIGHTS","IL","60004",,,,,,,"362728299","8474988880",,,,"2011-06-27T14:31:35-0500","G. LEONE",,,,,22,20,0,0,20,0,20,20,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627141507P040085791441001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DUPAGE COUNTY FARM BUREAU 401(K) PLAN","002","1998-01-01","DUPAGE COUNTY FARM BUREAU",,,"245 SOUTH GARY AVENUE",,"CAROL STREAM","IL","60188",,,,,,,,,,,,,,,,,,"361011365","6306688161","813000","DUPAGE COUNTY FARM BUREAU",,"245 SOUTH GARY AVENUE",,"CAROL STREAM","IL","60188",,,,,,,"361011365","6306688161",,,,"2011-06-27T14:01:21-0500","MICHAEL ASHBY",,,,,5,5,0,1,6,0,6,4,,,"2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627152649P040085822513001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"UPDEGROVE, COMBS & MCDANIEL, PLC 401K PLAN","001","2005-01-01","UPDEGROVE, COMBS & MCDANIEL, PLC 401K PLAN",,,"5 LOUDOUN ST. SW","SUITE B","LEESBURG","VA","20175",,,,,,,"5 LOUDOUN ST. SW","SUITE B","LEESBURG","VA","20175",,,,,,,"541391150","7037711818","541211","UPDEGROVE, COMBS & MCDANIEL, PLC 401K PLAN",,"5 LOUDOUN ST. SW","SUITE B","LEESBURG","VA","20175",,,,,,,"541391150","7037711818","UPDEGROVE, COMBS, MCDANIEL & WILSON PLC","541391150","001","2011-06-27T15:26:08-0500","MICHELE ZGONC",,,,,35,24,0,5,29,0,29,23,0,,"2F2G2J2K2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627091507P030012088866003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"VAN HORN TITLE AGENCY, INC. 401(K) PLAN","001","2000-01-01","VAN HORN TITLE AGENCY, INC.",,,"109 N. BROAD STREET SUITE 101",,"LANCASTER","OH","43130",,,,,,,,,,,,,,,,,,"311509003","7406875520","524210","VAN HORN TITLE AGENCY, INC.",,"109 N. BROAD STREET SUITE 101",,"LANCASTER","OH","43130",,,,,,,"311509003","7406875520",,,,"2011-06-15T16:11:01-0500","JANICE VAN HORN","2011-06-15T16:11:08-0500","JANICE VAN HORN",,,7,7,0,0,7,0,7,6,,,"2J2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627093746P030012091058001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TENNESSEE VALLEY UROLOGY CENTER, P.C. 401K PROFIT SHARING PLAN","001","1997-01-01","TENNESSEE VALLEY UROLOGY CENTER, P.C.",,,"400 BERYWOOD TRAIL, N.W. SUITE B",,"CLEVELAND","TN","37312",,,,,,,,,,,,,,,,,,"620816934","4234723201","621111","TENNESSEE VALLEY UROLOGY CENTER, P.C.",,"400 BERYWOOD TRAIL, N.W. SUITE B",,"CLEVELAND","TN","37312",,,,,,,"620816934","4234723201",,,,"2011-06-27T09:37:41-0500","TOMMY HORST",,,,,15,11,0,3,14,0,14,12,2,0,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627140104P040085785153001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LEXMARK RETIREMENT GROWTH ACCOUNT PLAN","001","1991-03-27","LEXMARK INTERNATIONAL, INC.",,,"740 WEST NEW CIRCLE ROAD",,"LEXINGTON","KY","40511",,,,,,,,,,,,,,,,,,"061308215","8592322000","334110","LEXMARK INTERNATIONAL, INC.",,"740 WEST NEW CIRCLE ROAD",,"LEXINGTON","KY","40511",,,,,,,"061308215","8592322000",,,,"2011-06-27T09:48:40-0500","JERI ISBELL",,,,,5157,2613,1658,620,4891,125,5016,,,,"1C1G",,,,"1",,,,"1",,"1",,"1","1",,,,"1","1",,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627142334P030012111026001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"STURM & FIX LLP 401(K) PROFIT SHARING PLAN","002","2000-02-01","STURM & FIX LLP",,,"206 SIXTH AVENUE, SUITE 1213",,"DES MOINES","IA","503094076",,,,,,,,,,,,,,,,,,"426138028","5152885311","541110","STURM & FIX LLP",,"206 SIXTH AVENUE, SUITE 1213",,"DES MOINES","IA","503094076",,,,,,,"426138028","5152885311",,,,"2011-06-27T14:23:25-0500","MICHAEL O. STURM",,,,,5,5,0,0,5,0,5,5,0,,"2E2F2G2J2T3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627101145P030392963104001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE INSURANCE PLAN","502","1979-09-01","ILLINOIS CREDIT UNION LEAGUE",,,"PO BOX 3107",,"NAPERVILLE","IL","605667107",,,,,,,"1807 W DIEHL RD",,"NAPERVILLE","IL","605667107",,,,,,,"361255150","6309833400","813000","ILLINOIS CREDIT UNION LEAGUE",,"PO BOX 3107",,"NAPERVILLE","IL","605667107",,,,,,,"361255150","6309833400",,,,"2011-06-27T10:11:37-0500","SARAH EIGEL",,,,,117,110,6,,116,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627102835P030083206049001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","1","0","0","0",,"AMERICAN WATER HEATER COMPANY 401(K) RETIREMENT SAVINGS PLAN FOR THE TENNESSE DIVISION MANUAFACTURING BARGAINING UNIT","004","2006-01-01","AMERICAN WATER HEATER COMPANY",,,"1100 EAST FAIRVIEW AVENUE",,"JOHNSON CITY","TN","37605",,,,,,,,,,,,,,,,,,"340299600","4234341500","335200","AMERICAN WATER HEATER COMPANY",,"1100 EAST FAIRVIEW AVENUE",,"JOHNSON CITY","TN","37605",,,,,,,"340299600","4234341500",,,,"2011-06-27T10:28:11-0500","SHERRY LUNDELL","2011-06-27T10:28:11-0500","SHERRY LUNDELL",,,417,394,0,13,407,0,407,407,6,,"2J2K2G2F2E2T",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","1","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627112040P030083225681001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"GROUP HOSPITAL MEDICAL-SURGICAL PRESCRIPTION DRUG VISION & HEARING BENEFIT","513","1970-05-01","UBE INC",,,"2000 MAXON ROAD",,"ONAWAY","MI","49765",,,,,,,"2000 MAXON ROAD",,"ONAWAY","MI","49765",,,,,,,"061663169","3139265354","721110","UBE INC",,"2000 MAXON ROAD",,"ONAWAY","MI","49765",,,,,,,"061663169","3139265354",,,,"2011-06-27T11:11:27-0500","ROBERT KING",,,,,170,67,104,,171,,171,,,,,"4A4E4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627113923P040085722449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TOWER GENERAL CONTRACTORS 401(K) PLAN","001","2006-01-01","TOWER GENERAL CONTRACTORS",,,"10923 RANDALL STREET","SUITE E","SUN VALLEY","CA","91352",,,,,,,,,,,,,,,,,,"954053179","8187683530","812990","TOWER GENERAL CONTRACTORS",,"10923 RANDALL STREET","SUITE E","SUN VALLEY","CA","91352",,,,,,,"954053179","8187683530",,,,"2011-06-27T11:39:16-0500","HOWARD MILLER",,,,,28,27,0,4,31,0,31,28,2,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627131315P040085762209001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CREDITWATCH 401(K) PROFIT SHARING PLAN","001","1996-04-01","CREDITWATCH SERVICES LTD",,,"4690 DIPLOMACY RD STE 100",,"FORT WORTH","TX","76155",,,,,,,,,,,,,,,,,,"752862187","8178643311","561440","CREDITWATCH SERVICES LTD",,"4690 DIPLOMACY RD STE 100",,"FORT WORTH","TX","76155",,,,,,,"752862187","8178643311",,,,"2011-06-27T13:11:01-0500","JAMES ENGLISH",,,,,74,126,0,0,126,0,126,16,0,,"2E2F2G2J2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627172337P040085872369001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LILIEN SYSTEMS 401(K) PROFIT SHARING PLAN & TRUST","002","2001-01-01","LILIEN SYSTEMS",,,"17 EAST SIR FRANCIS DRAKE BLVD","SUITE 110","LARKSPUR","CA","94939",,,,,,,,,,,,,,,,,,"680319458","4153895534","541990","LILIEN SYSTEMS",,"17 EAST SIR FRANCIS DRAKE BLVD","SUITE 110","LARKSPUR","CA","94939",,,,,,,"680319458","4153895534",,,,"2011-06-27T05:23:34-0500","LILIEN SYSTEMS",,,,,40,39,0,3,42,0,42,27,0,,"2E2G2J2R2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627115421P040085732113001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"IAN D. GARDENSWARTZ & ASSOCIATES, PC CASH BALANCE PLAN","003","2005-01-01","IAN D. GARDENSWARTZ & ASSOCIATES, PC",,,"6825 EAST TENNESSEE AVE., BLDG. 1","SUITE 235","DENVER","CO","80224",,,,,,,"6825 E TENNESSEE AVE, BLDG 1","SUITE 235","DENVER","CO","80224",,,,,,,"841003319","3033883782","541211","IAN D. GARDENSWARTZ & ASSOCIATES, PC",,"6825 EAST TENNESSEE AVE., BLDG. 1","SUITE 235","DENVER","CO","80224",,,,,,,"841003319","3033883782",,,,"2011-06-27T11:21:27-0500","IAN D GARDENSWARTZ","2011-06-27T11:21:27-0500","IAN D GARDENSWARTZ",,,19,0,0,0,0,0,0,,0,,"1A1C1I1H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627082041P040085614529001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SOONER OPTIONS","509","1991-07-01","UNIVERSITY OF OKLAHOMA",,"OFFICE OF HUMAN RESOURCES","905 ASP AVE, RM 244",,"NORMAN","OK","73019",,,,,,,"905 ASP AVE, RM 244",,"NORMAN","OK","73019",,,,,,,"736017987","4053252961","611000","STATE OF OKLAHOMA - UNIVERSITY OF OKLAHOMA","OFFICE OF HUMAN RESOURCES","905 ASP AVE, ROOM 244",,"NORMAN","OK","73019",,,,,,,"736017987","4053252961",,,,"2011-06-27T08:09:00-0500","NICK KELLY",,,,,13886,11898,2050,,13948,,13948,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","9",,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627094233P030025899623001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BUDDY BI-RITE EMPLOYEE STOCK OWNERSHIP PLAN","001","1989-02-01","BI-RITE COMPANY, INC.",,,"6608 ADAMO DRIVE",,"TAMPA","FL","336193416",,,,,,,,,,,,,,,,,,"590998202","8136235461","532310","BI-RITE COMPANY, INC.",,"6608 ADAMO DRIVE",,"TAMPA","FL","336193416",,,,,,,"590998202","8136235461",,,,"2011-06-27T09:42:26-0500","TERRY BEVILLE","2011-06-27T09:42:26-0500","TERRY BEVILLE",,,10,0,0,10,10,0,10,10,0,,"2O2Q",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110627095642P030012092354001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JANE S HARO DEFINED BENEFIT PENSION PLAN","001","1999-01-01","JANE S HARO",,,"2757 DOVE STREET",,"SAN DIEGO","CA","921036121",,,,,,,,,,,,,,,,,,"330772250","6192343381","531210","JANE S HARO",,"2757 DOVE STREET",,"SAN DIEGO","CA","921036121",,,,,,,"330772250","6192343381",,,,"2011-06-27T09:56:25-0500","JANE HARO",,,,,1,1,0,0,1,0,1,,0,,"1A3B3D",,"1","0","1","0","1","0","1","0","1","0","1","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627134925P030083318065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"I.A. FEINGOLD, M.D. PENSION PLAN","001","2003-01-01","I.A. FEINGOLD, M.D. MEDICAL-LEGAL CONSULTATIONS, INC.",,,"6200 SW 73RD STREET, 3RD FL",,"MIAMI","FL","33143",,,,,,,,,,,,,,,,,,"421571092","7862681990","541190","I.A. FEINGOLD, M.D. MEDICAL-LEGAL CONSULTATIONS, INC.",,"6200 SW 73RD STREET, 3RD FL",,"MIAMI","FL","33143",,,,,,,"421571092","7862681990",,,,"2011-06-27T13:47:55-0500","ALLAN FEINGOLD M.D.",,,,,8,6,0,0,6,0,6,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627150055P030393574336001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"TEXAS TRIAL LAWYERS ASSOCIATION 401(K) RETIREMENT SAVINGS PLAN","002","1997-01-01","TEXAS TRIAL LAWYERS ASSOCIATION",,,"1220 COLORADO STREET","SUITE 500","AUSTIN","TX","78701",,,,,,,"1220 COLORADO STREET","SUITE 500","AUSTIN","TX","78701",,,,,,,"741095408","5124763852","813000","TEXAS TRIAL LAWYERS ASSOCIATION",,"1220 COLORADO STREET","SUITE 500","AUSTIN","TX","78701",,,,,,,"741095408","5124763852",,,,"2011-06-27T15:00:25-0500","SCOTT WINTERS",,,,,65,49,0,12,61,0,61,50,0,,"2E2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627094423P040085646529001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"THE GREAT ATLANTIC & PACIFIC TEA COMPANY SAVINGS PLAN TRUST","014","1991-01-01","THE GREAT ATLANTIC & PACIFIC TEA COMPANY, INC",,,"2 PARAGON DRIVE",,"MONTVALE","NJ","07645",,,,,,,"2 PARAGON DRIVE",,"MONTVALE","NJ","07645",,,,,,,"131890974","2015714037","445110","THE GREAT ATLANTIC & PACIFIC TEA COMPANY, INC",,"2 PARAGON DRIVE",,"MONTVALE","NJ","07645",,,,,,,"131890974","2015714037",,,,"2011-06-27T09:43:54-0500","VERONICA TUITT-ABRAHAM",,,,,23446,18568,227,3134,21929,111,22040,7235,111,,"2E2F2G2J2K2S2T3I",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627095859P030083194145001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EARL M. FOSTER ASSOCIATES PROFIT SHARING RETIREMENT PLAN","001","1992-12-31","EARL M. FOSTER ASSOCIATES INC.","EARL M. FOSTER ASSOCIATES",,"7241 SW 168 STREET","SUITE C","MIAMI","FL","33157",,,,,,,"7241 SW 168 STREET","SUITE C","MIAMI","FL","33157",,,,,,,"650886200","3052324000","523900","EARL M. FOSTER ASSOCIATES INC.",,"7241 SW 168 STREET","SUITE C","MIAMI","FL","33157",,,,,,,"650886200","3052324000",,,,"2011-06-27T09:57:23-0500","EARL FOSTER",,,,,5,4,,1,5,,5,,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110627111008P030083220321001","2010-09-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"BETTINGER WEST INTERIORS, INC. 401(K) PROFIT SHARING PLAN","001","1998-09-01","BETTINGER WEST INTERIORS, INC.",,,"7079 BROOKDALE DRIVE",,"ELKRIDGE","MD","21075",,,,,,,,,,,,,,,,,,"521939485","8005354461","238900","BETTINGER WEST INTERIORS, INC.",,"7079 BROOKDALE DRIVE",,"ELKRIDGE","MD","21075",,,,,,,"521939485","8005354461",,,,"2011-06-27T08:44:33-0500","ANJIE AMOS",,,,,66,67,0,6,73,0,73,23,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-27","Filed with authorized/valid electronic signature",, "20110707060909P040091642753001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"VICTORY FACTORY, INC. 401(K) PLAN","001","1994-01-01","VICTORY FACTORY INC",,,"18410 JAMAICA AVE",,"HOLLIS","NY","114232400",,,,,,,"18410 JAMAICA AVE",,"HOLLIS","NY","114232400",,,,,,,"112789180","7184542255","321900","VICTORY FACTORY INC",,"18410 JAMAICA AVE",,"HOLLIS","NY","114232400",,,,,,,"112789180","7184542255",,,,"2011-07-07T06:08:19-0500","LARRY SOLOMON",,,,,8,8,0,2,10,0,10,8,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707075541P030089025137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"APEL STEEL CORPORATION DISCRETIONARY CONTRIBUTION PLAN","001","1986-06-18","APEL STEEL CORPORATION",,,"2345 SECOND AVENUE NW",,"CULLMAN","AL","35058",,,,,,,"2345 SECOND AVENUE NW",,"CULLMAN","AL","35058",,,,,,,"630931480","2567396280","332900","APEL STEEL CORPORATION",,"2345 SECOND AVENUE NW",,"CULLMAN","AL","35058",,,,,,,"630931480","2567396280",,,,"2011-07-07T07:55:15-0500","CATHERINE HAGGARD",,,,,52,45,0,1,46,0,46,42,1,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707162307P040091932673001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"RIDGEWAY COUNTRY CLUB INC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","RIDGEWAY COUNTRY CLUB",,,"P O BOX 1506",,"WHITE PLAINS","NY","10602",,,,,,,"P O BOX 1506",,"WHITE PLAINS","NY","10602",,,,,,,"131727371",,"713900","RIDGEWAY COUNTRY CLUB",,"P O BOX 1506",,"WHITE PLAINS","NY","10602",,,,,,,"131727371",,,,,"2011-07-07T16:22:39-0500","JOSETTE FIRRIOLO",,,,,1,0,0,0,0,0,0,,,,"2E2G2J2T3D",,,,"1","0",,,"1","0",,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707162356P040091933089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RED RIVER FEDERAL CREDIT UNION FLEXIBLE BENEFITS PLAN","502","1992-09-01","RED RIVER FEDERAL CREDIT UNION",,"KAREN RHODES","2700A UNIVERSITY BLVD.",,"TEXARKANA","TX","75503",,,,,,,"2700A UNIVERSITY BLVD.",,"TEXARKANA","TX","75503",,,,,,,"750813510","9037937681","522130","RED RIVER FEDERAL CREDIT UNION","KAREN RHODES","2700A UNIVERSITY BLVD.",,"TEXARKANA","TX","75503",,,,,,,"750813510","9037937681",,,,"2011-07-07T16:03:19-0500","KAREN RHODES",,,,,156,164,0,0,164,0,164,0,0,,,"4A4B4D4E4F4H",,,,"1","1",,,,,,,,,"1","5","1",,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110705124949P040028277319001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CP ROCHESTER FLEX OPTIONS PLAN","505","2000-01-01","UNITED CEREBRAL PALSY ASSOCIATION OF THE ROCHESTER AREA","CP ROCHESTER",,"3399 WINTON ROAD SOUTH",,"ROCHESTER","NY","14623",,,,,,,,,,,,,,,,,,"160743950","5853346000","624310","UNITED CEREBRAL PALSY ASSOCIATION OF THE ROCHESTER AREA",,"3399 WINTON ROAD SOUTH",,"ROCHESTER","NY","14623",,,,,,,"160743950","5853346000",,,,"2011-07-05T12:49:46-0500","PAMELA S. THOMPSON",,,,,127,117,0,0,117,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706180655P040413942000002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HUALI G CHAI A PROFESSIONAL CORPORATION MONEY PURCHASE PENSION PLAN","001","1986-09-01","HUALI G CHAI, A PROFESSIONAL CORP",,,"425 EAST SANTA CLARA STREET 202",,"SAN JOSE","CA","95113",,,,,,,,,,,,,,,,,,"770127472","4082976770","541110","HUALI G CHAI A PROFESSIONAL CORP",,"425 EAST SANTA CLARA STREET 202",,"SAN JOSE","CA","95113",,,,,,,"770127472","4082976770",,,,"2011-07-06T13:32:08-0500","HUALI G CHAI",,,,,2,2,,,2,,2,2,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110705090119P040013281490002","2010-02-01","2011-01-31","2",,,,,,,,,,,,"JOHN P RAY, INC PROFIT SHARING PLAN","002","1994-02-01","JOHN P RAY, INC",,,"6299 CASEY COURT",,"FAIRFIELD","OH","45014",,,,,,,,,,,,,,,,,,"341213195","5139393131","423200","JOHN P RAY, INC",,"6299 CASEY COURT",,"FAIRFIELD","OH","45014",,,,,,,"341213195","5139393131",,,,"2011-06-13T04:26:02-0500","BRIAN J. RAY",,,,,1,1,,,1,,1,1,,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705175553P030088040785001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CR ASSOCIATES, LLC 401(K) PROFIT SHARING PLAN","002","1996-10-01","CR ASSOCIATES, LLC",,,"14771 PLAZA DRIVE","SUITE J","TUSTIN","CA","92780",,,,,,,,,,,,,,,,,,"330724028","7143903997","541519","CR ASSOCIATES, LLC",,"14771 PLAZA DRIVE","SUITE J","TUSTIN","CA","92780",,,,,,,"330724028","7143903997",,,,"2011-07-05T17:54:59-0500","CORNEL RUSTON","2011-07-05T17:54:59-0500","CORNEL RUSTON",,,9,5,0,1,6,0,6,5,0,,"2E2F2G3D2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707112136P040091788881001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GENERAL RADIOLOGY PC SAFE HARBOR 401K PROFIT SHARING PLAN","002","2007-01-01","GENERAL RADIOLOGY PC",,,"415 E 23RD STREET",,"FREMONT","NE","68025",,,,,,,,,,,,,,,,,,"470581350","4027214866","621111","GENERAL RADIOLOGY PC",,"415 E 23RD STREET",,"FREMONT","NE","68025",,,,,,,"470581350","4027214866",,,,"2011-06-16T06:02:53-0500","MARK JOHANNSEN M.D.",,,,,9,8,1,,9,,9,9,0,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707112149P030089125521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LARAMIE GM 401(K) PLAN","001","1992-04-01","LARAMIE GM AUTO CENTER, INC.",,,"3600 EAST GRAND AVE.",,"LARAMIE","WY","820705110",,,,,,,,,,,,,,,,,,"830334721","3077458961","441110","LARAMIE GM AUTO CENTER, INC.",,"3600 EAST GRAND AVE.",,"LARAMIE","WY","820705110",,,,,,,"830334721","3077458961",,,,"2011-07-07T11:06:13-0500","TAMI MILLION",,,,,72,61,0,12,73,0,73,49,0,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707112204P030419890656001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"FERGUS NISSAN, INC. DBA MARTIN NISSAN, INC. 401(K) PLAN","001","2008-01-01","FERGUS NISSAN, INC.","MARTIN NISSAN, INC.",,"5240 GOLF ROAD",,"SKOKIE","IL","60077",,,,,,,,,,,,,,,,,,"363216529","8479653460","812990","FERGUS NISSAN, INC.",,"5240 GOLF ROAD",,"SKOKIE","IL","60077",,,,,,,"363216529","8479653460",,,,"2011-07-07T11:21:57-0500","MARIONNEL GUTIERREZ","2011-07-07T11:21:57-0500","MARIONNEL GUTIERREZ",,,30,20,0,4,24,0,24,24,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707092425P040415717520001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"CCS INFUSION MANAGEMENT LLC","501","1991-01-01","CCS INFUSION MANAGEMENT LLC",,"CHRISTINE HARPER","61 SPIT BROOK ROAD",,"NASHUA","NH","03060",,,,,,,"61 SPIT BROOK ROAD",,"NASHUA","NH","03060",,,,,,,"611516378","6038881500","541990","CCS INFUSION MANAGEMENT LLC","CHRISTINE HARPER","61 SPIT BROOK ROAD",,"NASHUA","NH","03060",,,,,,,"611516378","6038881500",,,,"2011-07-07T09:17:58-0500","CHRISTINE HARPER",,,,,0,0,0,0,0,0,0,0,0,0,,"4F4H",,,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707092538P040091723121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WORMUTH DAIRY & REFRIGERATION, LLC PENSION PLAN","001","1969-12-01","WORMUTH DAIRY & REFRIGERATION, LLC",,,"P. O. BOX 332",,"MORRISVILLE","NY","13408",,,,,,,"P. O. BOX 332",,"MORRISVILLE","NY","13408",,,,,,,"161528005","3156849152","424910","WORMUTH DAIRY & REFRIGERATION, LLC",,"P. O. BOX 332",,"MORRISVILLE","NY","13408",,,,,,,"161528005","3156849152",,,,"2011-07-07T09:09:08-0500","CAROL ROGERS",,,,,10,9,0,0,9,0,9,11,0,,"2C2F3D","4B","1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110703084303P040014890758001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"COMPUTER SERVICES GROUP, INC. 401(K) PLAN","001","2000-10-01","COMPUTER SERVICES GROUP, INC.",,,"22 WEST 38TH STREET","C/O CSG INC","NEW YORK","NY","10018",,,,,,,"22 WEST 38TH STREET","C/O CSG INC","NEW YORK","NY","10018",,,,,,,"133208910","2128190122","541519","COMPUTER SERVICES GROUP, INC.",,"22 WEST 38TH STREET","C/O CSG INC","NEW YORK","NY","10018",,,,,,,"133208910","2128190122",,,,"2011-07-03T08:42:38-0500","GEORGETA TAMPA",,,,,35,23,0,10,33,1,34,20,0,,"2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-03","Filed with authorized/valid electronic signature",, "20110703101325P030409071696001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SADY CONSTRUCTION CORPORATION 401(K) PROFIT SHARING PLAN","002","2004-01-01","SADY CONSTRUCTION CORP.",,,"25 RESERVOIR STREET",,"BETHEL","CT","068012322",,,,,,,,,,,,,,,,,,"061628814","2037904132","236110","SADY CONSTRUCTION CORP.",,"25 RESERVOIR STREET",,"BETHEL","CT","068012322",,,,,,,"061628814","2037904132",,,,"2011-07-03T11:13:21-0500","MARAN SADY",,,,,2,2,0,0,2,0,2,2,0,,"2E2G2J2K2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-03","Filed with authorized/valid electronic signature",, "20110705093400P030087805969005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GREGORY BERGER DDS PROFIT SHARING PLAN","002","1983-01-01","GREGORY BERGER DDS",,,"715 MACARTHUR ST",,"JASPER","IN","47546",,,,,,,,,,,,,,,,,,"351465216","8124826610","621210","GREGORY BERGER DDS",,"715 MACARTHUR ST",,"JASPER","IN","47546",,,,,,,"351465216","8124826610",,,,"2011-07-05T09:20:57-0500","GREGORY BERGER DDS",,,,,6,6,,,6,,6,6,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706154445P040013418882001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MATTRESS GIANT CORPORATION WELFARE PLAN","501","1999-01-01","MATTRESS GIANT CORPORATION",,,"14665 MIDWAY ROAD, SUITE 100",,"ADDISON","TX","75001",,,,,,,,,,,,,,,,,,"752427860","9723922202","442299","MATTRESS GIANT CORPORATION",,"14665 MIDWAY ROAD, SUITE 100",,"ADDISON","TX","75001",,,,,,,"752427860","9723922202",,,,"2011-07-06T15:44:37-0500","RACHEL KLUCHKI",,,,,852,738,12,0,750,,,,,,,"4A4B4D4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706182117P030012909266001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CHECKERS DRIVE-IN RESTAURANTS HEALTH AND WELFARE PLAN","501","1991-04-01","CHECKERS DRIVE-IN RESTAURANTS, INC.",,,"4300 WEST CYPRESS STREET",,"TAMPA","FL","33607",,,,,,,,,,,,,,,,,,"581654960","8132837000","722210","CHECKERS DRIVE-IN RESTAURANTS, INC.",,"4300 WEST CYPRESS STREET",,"TAMPA","FL","33607",,,,,,,"581654960","8132837000",,,,"2011-07-06T18:21:11-0500","BONNIE OBST",,,,,743,659,7,0,666,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706182141P040013431186001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CAFETERIA PLAN WISCONSIN COMMUNITY SERVICES INC","503","1989-01-01","WISCONSIN COMMUNITY SERVICES INC","WCS","LORI SHEETS","3732 WEST WISCONSIN AVENUE","SUITE 200","MILWAUKEE","WI","53208",,,,,,,"3732 WEST WISCONSIN AVENUE","SUITE 200","MILWAUKEE","WI","53208",,,,,,,"390808464","4142900400","624100","WISCONSIN COMMUNITY SERVICES INC","LORI SHEETS","3732 WEST WISCONSIN AVENUE","SUITE 200","MILWAUKEE","WI","53208",,,,,,,"390808464","4142900400",,,,"2011-07-06T18:21:12-0500","LORI SHEETS",,,,,164,155,8,0,163,,163,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707095723P030089082577005","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HMH&Y 401(K) PROFIT SHARING PLAN","001","1983-01-01","HERNDON, MORTON, HERNDON & YAEGER",,"ROBERT J. KRALL","83 EDGINGTON LANE",,"WHEELING","WV","260031541",,,,,,,"83 EDGINGTON LANE",,"WHEELING","WV","260031541",,,,,,,"550589014","3042422300","541110","HERNDON, MORTON, HERNDON & YAEGER","ROBERT J. KRALL","83 EDGINGTON LANE",,"WHEELING","WV","260031541",,,,,,,"550589014","3042422300",,,,"2011-07-07T05:19:23-0500","ROBERT J. KRALL","2011-07-07T05:19:23-0500","ROBERT J. KRALL",,,16,11,,1,12,,12,12,1,,"2E2J3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705160309P030012809314001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"INTEGRE ADVERTISING BY DESIGN, INC. 401(K) PROFIT SHARING PLAN","001","2006-01-01","INTEGRE ADVERTISING BY DESIGN, INC.",,,"N8 W22323 JOHNSON DRIVE, STE D",,"WAUKESHA","WI","53186",,,,,,,,,,,,,,,,,,"391562991","2625448800","541800","INTEGRE ADVERTISING BY DESIGN, INC.",,"N8 W22323 JOHNSON DRIVE, STE D",,"WAUKESHA","WI","53186",,,,,,,"391562991","2625448800",,,,"2011-07-05T15:58:14-0500","MARY MURPHY",,,,,24,13,0,7,20,0,20,20,1,,"2E2J2K2F2G3D2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110703171726P030086866849001","2010-11-01","2010-12-31","2",,"0","0","0","1","0","0","0","0","0",,"BAY BROKERAGE, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2002-11-01","BAY BROKERAGE, INC.",,,"1776 LAUREL STREET",,"SAN CARLOS","CA","940705221",,,,,,,,,,,,,,,,,,"942626809","6505951189","424990","BAY BROKERAGE, INC.",,"1776 LAUREL STREET",,"SAN CARLOS","CA","940705221",,,,,,,"942626809","6505951189",,,,"2011-07-03T17:15:20-0500","KEVIN POPE",,,,,60,49,2,8,59,1,60,60,0,,"2I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-03","Filed with authorized/valid electronic signature",, "20110705084512P030413961840001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OPW FUELING COMPONENTS SHORT TERM DISABILITY PLAN","502","2008-01-01","OPW FUELING COMPONENTS",,,"9393 PRINCETON-GLENDALE RD.",,"HAMILTON","OH","45011",,,,,,,,,,,,,,,,,,"208075511","5138703100","332900","OPW FUELING COMPONENTS",,"9393 PRINCETON-GLENDALE RD.",,"CINCINNATI","OH","452405003",,,,,,,"208075511","5138703100",,,,"2011-06-27T08:48:31-0500","SHERRY PHELPS","2011-06-27T08:48:31-0500","CALVIN BOWMAN",,,111,143,,,143,,,,,,,"4F","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705135953P040090557601001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"OTIS COLLEGE OF ART AND DESIGN","502","1992-01-01","OTIS COLLEGE OF ART AND DESIGN",,"MARILYN SHERMAN","9045 LINCOLN BOULEVARD",,"LOS ANGELES","CA","90045",,,,,,,"9045 LINCOLN BOULEVARD",,"LOS ANGELES","CA","90045",,,,,,,"132981115","3106656911","611000","OTIS COLLEGE OF ART AND DESIGN","MARILYN SHERMAN","9045 LINCOLN BOULEVARD",,"LOS ANGELES","CA","90045",,,,,,,"132981115","3106656911",,,,"2011-07-05T13:34:21-0500","MARILYN SHERMAN",,,,,250,250,,,250,,250,,,250,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","10",,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707150020P030089278241003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"M & K FARMS INC PENSION PLAN TRUST","001","1973-01-01","M & K FARMS, INC",,,"9993 DENT BRIDGE ROAD",,"FLOWEREE","MT","59440",,,,,,,,,,,,,,,,,,"810301748","4067345371","111100","M & K FARMS INC",,"9993 DENT BRIDGE ROAD",,"FLOWEREE","MT","59440",,,,,,,"810301748","4067345371",,,,"2011-07-07T14:15:02-0500","LOGAN GOOD",,,,,3,2,1,,3,,3,3,,,"2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110706142249P040091252065001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"MARTINS RUN","503","2010-01-01","MARTINS RUN",,,"11 MARTINS RUN",,"MEDIA","PA","19063",,,,,,,"11 MARTINS RUN",,"MEDIA","PA","19063",,,,,,,"232090256","6103537660","623000","MARTINS RUN",,"11 MARTINS RUN",,"MEDIA","PA","19063",,,,,,,"232090256","6103537660",,,,"2011-07-06T14:21:33-0500","MARIAN LEVINE",,,,,255,255,,,255,,255,,,,,"4A4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706142416P040091252593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DENTON SPORTS AND PHYSICAL THERAPY PROFIT SHARING PLAN","001","1997-01-01","DENTON SPORTS AND PHYSICAL THERAPY",,"DAN PROCTOR","534 NORTH ELM",,"DENTON","TX","76201",,,,,,,"534 NORTH ELM",,"DENTON","TX","76201",,,,,,,"752195834","9405665714","621340","DENTON SPORTS AND PHYSICAL THERAPY","DAN PROCTOR","534 NORTH ELM",,"DENTON","TX","76201",,,,,,,"752195834","9405665714",,,,"2011-07-06T14:10:03-0500","DAN PROCTOR",,,,,2,4,,,4,,4,,3,,"2A2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110704001744P030087017857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RENEE PATEL MD INC DEFINED BENEFIT PENSION PLAN","001","2000-01-01","RENEE PATEL MD INC",,,"10438 DOLAN AVENUE",,"DOWNEY","CA","90241",,,,,,,"10438 DOLAN AVENUE",,"DOWNEY","CA","90241",,,,,,,"954148808","2136243781","621111","RENEE PATEL MD INC",,"10438 DOLAN AVENUE",,"DOWNEY","CA","90241",,,,,,,"954148808","2136243781",,,,"2011-07-01T12:34:22-0500","RENUKA PATEL","2011-07-01T12:34:22-0500","RENUKA PATEL",,,5,5,0,0,5,0,5,,0,,"1A3D",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-07-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110704081913P040407498800001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"TEAMSTERS LOCAL 957 401K PLAN","003","2007-01-01","DAYTON HEIDELBERG DISTRIBUTING CO",,,"1247 LEO STREET",,"DAYTON","OH","454041660",,,,,,,,,,,,,,,,,,"310620091","9372206433","424800","DAYTON HEIDELBERG DISTRIBUTING CO",,"1247 LEO STREET",,"DAYTON","OH","454041660",,,,,,,"310620091","9372206433",,,,"2011-07-04T08:18:59-0500","THOMAS ROUSE",,,,,92,118,0,7,125,0,125,88,0,,"2E2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-04","Filed with authorized/valid electronic signature",, "20110705092313P030414036864001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DR. DAVID MAYER PROFIT SHARING PLAN","001","1995-01-01","DAVID B. MAYER, DO, PSC",,,"P. O. BOX 1136",,"MONTICELLO","KY","42633",,,,,,,"1 SOUTHCREEK DRIVE, SUITE 112",,"MONTICELLO","KY","42633",,,,,,,"611298993","6063483341","621111","DAVID B. MAYER, DO, PSC",,"P. O. BOX 1136",,"MONTICELLO","KY","42633",,,,,,,"611298993","6063483341",,,,"2011-07-05T09:23:08-0500","DR. DAVID MAYER",,,,,3,3,0,0,3,0,3,3,0,,"3D2G2E2F2T3F",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707103205P030089096993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ESSENTIAL DENTAL SYSTEMS, INC. 401(K) TAX DEFERRED SAVING PLAN","001","1993-01-01","ESSENTIAL DENTAL SYSTEMS, INC.",,,"89 LEUNING ST",,"S HACKENSACK","NJ","07606",,,,,,,,,,,,,,,,,,"133111149","2014879090","339110","ESSENTIAL DENTAL SYSTEMS, INC.",,"89 LEUNING ST",,"S HACKENSACK","NJ","07606",,,,,,,"133111149","2014879090",,,,"2011-07-07T10:29:46-0500","JOEL BURSTEIN",,,,,41,28,0,4,32,0,32,32,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707103306P040415873376001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"STEPHEN V MCLAUGHLIN DMD 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","STEPHEN V. MCLAUGHLIN DMD",,,"59 BEECH STREET",,"WEST ROXBURY","MA","02132",,,,,,,,,,,,,,,,,,"042392046","6173276443","621210","STEPHEN V. MCLAUGHLIN DMD",,"59 BEECH STREET",,"WEST ROXBURY","MA","02132",,,,,,,"042392046","6173276443",,,,"2011-07-07T10:33:03-0500","STEPHEN V. MCLAUGHLIN DMD",,,,,5,13,0,0,13,0,13,4,0,,"2A2E2G2J2T3B3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707115605P040091810177001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"RFXCEL CORPORATION 401(K) PLAN","001","2006-01-31","RFXCEL CORPORATION",,,"12657 ALCOSTA BLVD.","STE 485","SAN RAMON","CA","94583",,,,,,,"12657 ALCOSTA BLVD.","STE 485","SAN RAMON","CA","94583",,,,,,,"201270658","9258240301","518210","RFXCEL CORPORATION",,"12657 ALCOSTA BLVD.","STE 485","SAN RAMON","CA","94583",,,,,,,"201270658","9258240301",,,,"2011-07-07T11:54:39-0500","GLENN ABOOD",,,,,8,8,0,1,9,0,9,5,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707093008P030012969570001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MIKE WOODS & ASSOCIATES, INC. DEFINED BENEFIT PENSION PLAN","001","2003-10-31","MIKE WOODS & ASSOCIATES, INC.",,,"3900 MOUNTAIN LAUREL RIDGE",,"BLACKSBURG","VA","24060",,,,,,,,,,,,,,,,,,"541089246","5409617700","541990","MIKE WOODS & ASSOCIATES, INC.",,"3900 MOUNTAIN LAUREL RIDGE",,"BLACKSBURG","VA","24060",,,,,,,"541089246","5409617700",,,,"2011-06-21T10:08:02-0500","MIKE WOODS","2011-06-21T10:08:08-0500","MIKE WOODS",,,1,1,0,0,1,0,1,,,,"1A3D",,,"1",,,,"1",,,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705101312P030087826161001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DRATHS CORPORATION 401(K) SAVINGS PLAN","001","2008-07-01","DRATHS CORPORATION",,,"4055 ENGLISH OAK DRIVE, STE. A",,"LANSING","MI","48911",,,,,,,,,,,,,,,,,,"204046727","9522490383","325900","DRATHS CORPORATION",,"4055 ENGLISH OAK DRIVE, STE. A",,"LANSING","MI","48911",,,,,,,"204046727","9522490383",,,,"2011-07-05T10:13:05-0500","W. D. BROWN",,,,,29,25,0,11,36,0,36,25,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705113356P040013296562004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JERRY LSPINKSMD PA PROFIT SHARING PLAN","001","1979-07-01","JERRY L SPINKS,MD PA",,,"410 GASLIGHT BLVD",,"LUFKIN","TX","759043123",,,,,,,,,,,,,,,,,,"751570353","9366392338","621111","JERRY L SPINKS MD PA",,"410 GASLIGHT BLVD",,"LUFKIN","TX","759043123",,,,,,,"751570353","9366392338",,,,"2011-06-28T10:00:54-0500","JERRY L SPINKSMD",,,,,6,5,,1,6,,6,6,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705095416P040090424961001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"HUFFMAN KOOS INC. RETIREMENT AND INCENTIVE SAVINGS PLAN","006","1988-09-01","BREUNERS HOME FURNISHINGS CORP. AKA HUFFMAN KOOS INC.",,,"C/O CLAYBROOK AND ASSOCIATES","913 NORTH MARKET STREET, SUITE 900","WILMINGTON","DE","19801",,,,,,,,,,,,,,,,,,"363451329","8003554663","442110","BREUNERS HOME FURNISHINGS CORP. AKA HUFFMAN KOOS INC.",,"C/O CLAYBROOK AND ASSOCIATES","913 NORTH MARKET STREET, SUITE 900","WILMINGTON","DE","19801",,,,,,,"363451329","8003554663",,,,"2011-07-05T09:50:20-0500","MONTY CLAYBROOK","2011-07-05T09:50:20-0500","MONTY CLAYBROOK",,,294,0,0,246,246,0,246,246,0,,"2E2F2G2J2K3H",,"1",,,,"1",,,,,,,"1",,"1","3",,"1",,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705162202P030087992049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DRP MANAGEMENT, INC. PROFIT SHARING PLAN","001","2001-10-10","DRP MANAGEMENT, INC.",,,"579 SPRUCE GLEN ROAD",,"MURRAY","UT","84107",,,,,,,,,,,,,,,,,,"870643332","8015605687","531390","DRP MANAGEMENT, INC.",,"579 SPRUCE GLEN ROAD",,"MURRAY","UT","84107",,,,,,,"870643332","8015605687",,,,"2011-07-01T15:12:19-0500","KRISTEN THOMAS","2011-07-01T15:12:19-0500","KRISTEN THOMAS",,,1,1,0,0,1,0,1,1,0,,"2E2F2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707103610P040013496562001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP INSURANCE PLAN","501","1963-11-01","FARNER-BOCKEN COMPANY","FARNER-BOCKEN COMPANY","DENNIS ANDERSON","PO BOX 368",,"CARROLL","IA","51401",,,,,,,"1751 HIGHWAY 30 EAST",,"CARROLL","IA","51401",,,,,,,"420662937","7127923503","424400","FARNER-BOCKEN COMPANY","DENNIS ANDERSON","PO BOX 368","1751 HIGHWAY 30 EAST","CARROLL","IA","51401",,,,,,,"420662937","7127923503",,,,"2011-07-07T10:27:58-0500","DENNIS ANDERSON","2011-07-07T10:33:57-0500","DENNIS ANDERSON",,,873,863,,,863,,863,,,,,"4A4B4D4F4H","1",,,"1","1",,,"1",,,,,,"1","6",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707101137P040091749953001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP HEALTH PLAN FOR THE EMPLOYEES OF IDD AEROSPACE CORP.","501","1995-10-01","IDD AEROSPACE CORPORATION",,,"18225 NE 76TH STREET",,"REDMOND","WA","98073",,,,,,,,,,,,,,,,,,"911694737","4258854353","336410","IDD AEROSPACE CORPORATION",,"18225 NE 76TH STREET",,"REDMOND","WA","98073",,,,,,,"911694737","4258854353",,,,"2011-07-07T10:11:31-0500","LORI BREWER",,,,,136,129,0,0,129,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707101401P040091751617001","2010-01-01","2010-12-31","2",,"0","1","0","0",,,,,,,"INHAND ELECTRONICS, INC. 401(K) PLAN","001","1984-10-01","INHAND ELECTRONICS",,,"30 WEST GUDE DRIVE","SUITE 550","ROCKVILLE","MD","20850",,,,,,,"30 WEST GUDE DRIVE","SUITE 550","ROCKVILLE","MD","20850",,,,,,,"541285298","2405582014","541330","INHAND ELECTRONICS",,"30 WEST GUDE DRIVE","SUITE 550","ROCKVILLE","MD","20850",,,,,,,"541285298","2405582014",,,,"2011-07-07T10:11:26-0500","CARLOS VALEIRAS",,,,,29,18,0,11,29,0,29,22,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707151643P030089286609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SEQUEIRA & GAVARRETE 401(K) PLAN","001","1999-01-01","SEQUEIRA & GAVARRETE, INC.",,,"811 PONCE DE LEON BLVD.","#200","CORAL GABLES","FL","331340000",,,,,,,,,,,,,,,,,,"592756059","3054411556","541310","SEQUEIRA & GAVARRETE, INC.",,"811 PONCE DE LEON BLVD.","#200","CORAL GABLES","FL","331340000",,,,,,,"592756059","3054411556",,,,"2011-07-07T15:16:35-0500","FERNANDO GAVARRETE",,,,,54,39,0,9,48,0,48,27,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110706162914P030417727696001","2010-01-01","2010-12-31","2",,,,,,"1",,,,,,"CONNECTIONS 401K PLAN FOR STAFF REPRESENTED BY UNION","002","1999-08-01","CONNECTIONS, INC.",,,"15676 FISH POINT ROAD SE",,"PRIOR LAKE","MN","55372",,,,,,,,,,,,,,,,,,"411869835","9528973933","623000","CONNECTIONS, INC.",,"15676 FISH POINT ROAD SE",,"PRIOR LAKE","MN","55372",,,,,,,"411869835","9528973933",,,,"2011-07-06T05:28:55-0500","MICHAEL L. FERRIER",,,,,57,51,0,6,57,0,57,17,0,,"2A2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110705103356P040090443297002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GREAT LAKES FINANCIAL RESOURCES INC EMPLOYEE STOCK OWNERSHIP PLAN","002","1984-01-01","GREAT LAKES FINANCIAL RESOURCES INC",,,"4600 WEST LINCOLN HIGHWAY",,"MATTESON","IL","60443",,,,,,,,,,,,,,,,,,"363152202","7085035400","522110","GREAT LAKES FINANCIAL RESOURCES INC",,"4600 WEST LINCOLN HIGHWAY",,"MATTESON","IL","60443",,,,,,,"363152202","7085035400",,,,"2011-07-05T09:10:25-0500","THOMAS AGLER",,,,,341,163,50,117,330,2,332,332,,,"2O2I",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705123506P040090508273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CIRCLE COMPANY ASSOCIATES, INC. EMPLOYEE BENEFITS PLAN","502","2000-01-01","CIRCLE COMPANY ASSOCIATES, INC.",,,"300 A STREET",,"BOSTON","MA","02210",,,,,,,"300 A STREET",,"BOSTON","MA","02210",,,,,,,"043332351","6176226533","812990","CIRCLE COMPANY ASSOCIATES, INC.",,"300 A STREET",,"BOSTON","MA","02210",,,,,,,"043332351","6176226533",,,,"2011-07-05T12:35:02-0500","DAVID SMITH",,,,,348,337,8,0,345,,,,,,,"4A4B4D4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705123521P040013302210001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"SUNRISE FASTENERS, INC. 401(K) PLAN","001","2000-01-01","SUNRISE FASTENERS, INC.",,,"1109 A UPLAND",,"HOUSTON","TX","770430000",,,,,,,,,,,,,,,,,,"760447379","7134676524","423700","SUNRISE FASTENERS, INC.",,"1109 A UPLAND",,"HOUSTON","TX","770430000",,,,,,,"760447379","7134676524",,,,"2011-07-05T12:35:17-0500","LEANNA GRAHAM",,,,,9,4,0,5,9,0,9,9,0,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705080348P040090373633001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"QLT 401(K) SAVINGS & RETIREMENT PLAN","001","1986-10-01","QLT PLUG DELIVERY, INC.",,,"2573 MIDPOINT DR STE 120",,"FT COLLINS","CO","805254400",,,,,,,,,,,,,,,,,,"205902115","9704825868","325410","QLT PLUG DELIVERY, INC.",,"2573 MIDPOINT DR STE 120",,"FT COLLINS","CO","805254400",,,,,,,"205902115","9704825868","QLT USA, INC.","770652368","001","2011-07-01T16:08:34-0500","NATASHA DATY",,,,,82,22,,30,52,,52,50,,,"2E2F2G2J3E3H",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707072520P040091668241001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"NELSON, MCPHERSON, SUMMERS & PROFIT SHARING PLAN","002","2000-01-01","NELSON, MCPHERSON, SUMMERS &",,,"SANTOS, L.C.","12 NORTH NEW STREET","STAUNTON","VA","24401",,,,,,,,,,,,,,,,,,"540619948","5408850346","541110","NELSON, MCPHERSON, SUMMERS &",,"SANTOS, L.C.","12 NORTH NEW STREET","STAUNTON","VA","24401",,,,,,,"540619948","5408850346",,,,"2011-07-07T07:24:15-0500","SHELIA P. FOX","2011-07-07T07:25:16-0500","VICTOR M. SANTOS",,,9,8,0,1,9,0,9,1,0,,"2T3D2E2G2J2R",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with incorrect/unrecognized electronic signature" "20110707081629P040028668903001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EPISCOPAL CHURCH HOME DENTAL BENEFIT PLAN","505","2004-01-01","THE CHURCH HOME OF THE PROTESTANT EPISCOPAL CHURCH",,,"505 MT HOPE AVE",,"ROCHESTER","NY","146202251",,,,,,,,,,,,,,,,,,"160743962","5855468400","623000","THE CHURCH HOME OF THE PROTESTANT EPISCOPAL CHURCH",,"505 MT HOPE AVE",,"ROCHESTER","NY","146202251",,,,,,,"160743962","5855468400",,,,"2011-07-07T08:16:22-0500","DARLENE MAGRIN",,,,,351,380,5,0,385,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110706131031P030417292800001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"ALIN PARTY SUPPLY COMPANY 401(K) SAVINGS RETIREMENT PLAN","001","1992-01-01","ALIN PARTY SUPPLY CO.",,,"14150 ARTESIA BLVD.",,"CERRITOS","CA","90703",,,,,,,"14150 ARTESIA BLVD.",,"CERRITOS","CA","90703",,,,,,,"330321323","5622820422","453990","ALIN PARTY SUPPLY CO.",,"14150 ARTESIA BLVD.",,"CERRITOS","CA","90703",,,,,,,"330321323","5622820422",,,,"2011-07-06T13:07:53-0500","HEATHER OCAMPO","2011-07-06T13:00:17-0500","LEAH MOODY",,,104,106,0,2,108,0,108,34,1,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705153009P030087963617007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"F.J. RAGAZ, M.D., P.A. PROFIT SHARING PLAN","001","1980-02-01","F.J. RAGAZ, M.D., P.A.",,,"231 EAST COURT STREET",,"MARION","NC","28752",,,,,,,,,,,,,,,,,,"561258500","8286524420","621111","F.J. RAGAZ, M.D.",,"231 EAST COURT STREET",,"MARION","NC","28752",,,,,,,"561258500","8286524420",,,,"2011-07-05T16:26:11-0500","F.J. RAGAZ, M.D.","2011-07-05T16:26:15-0500","F.J. RAGAZ, M.D.",,,3,3,0,0,3,0,3,3,,,"2E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707104451P040091771649001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"INTERFACE & CONTROL SYSTEMS, INC. 401(K) PROFIT SHARING PLAN","002","1994-01-01","INTERFACE & CONTROL SYSTEMS, INC.",,,"4350 FAIR LAKES COURT",,"FAIRFAX","VA","22033",,,,,,,"4350 FAIR LAKES COURT",,"FAIRFAX","VA","22033",,,,,,,"592906895","4102907600","541511","INTERFACE & CONTROL SYSTEMS, INC.",,"4350 FAIR LAKES COURT",,"FAIRFAX","VA","22033",,,,,,,"592906895","4102907600",,,,"2011-07-07T10:40:09-0500","MARSHA PIACENTE",,,,,42,29,0,12,41,0,41,40,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707120014P040091812833005","2010-01-01","2010-12-31","2",,"1",,,,,,,,,,"METLIFE INVESTORS PROFIT SHARING PLAN","002","2010-04-14","KEVIN D ARNDT","FAMILY CHIROPRACTIC OFFICE",,"115 FIRST AVE NW",,"WINNEBAGO","MN","56098",,,,,,,,,,,,,,,,,,"411370901","5078934412","621310","KEVIN D ARNDT",,"115 FIRST AVE NW",,"WINNEBAGO","MN","56098",,,,,,,"411370901","5078934412",,,,"2011-07-06T11:37:01-0500","KEVIN D ARNDT",,,,,1,1,,,1,,1,1,,,"2E",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707155525P040091921137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TURNER PADGET GRAHAM & LANEY, P.A. FLEXIBLE BENEFITS PLAN","502","2002-01-01","TURNER PADGET GRAHAM & LANEY, PA",,,"P.O. BOX 1473",,"COLUMBIA","SC","292021473",,,,,,,"1901 MAIN STREET, 17TH FLOOR",,"COLUMBIA","SC","29201",,,,,,,"570723520","8032274211","541110","TURNER PADGET GRAHAM & LANEY, PA",,"P.O. BOX 1473",,"COLUMBIA","SC","292021473",,,,,,,"570723520","8032274211",,,,"2011-07-07T15:54:31-0500","MIMI LOVE",,,,,124,120,0,0,120,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707155618P030012998338001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QUARTER MOON INC 401(K) PROFIT SHARING PLAN","001","1997-01-01","QUARTER MOON INC.",,,"300 HIGHPOINT AVENUE",,"PORTSMOUTH","RI","02871",,,,,,,,,,,,,,,,,,"050411427","4016830960","336610","QUARTER MOON INC.",,"300 HIGHPOINT AVENUE",,"PORTSMOUTH","RI","02871",,,,,,,"050411427","4016830960",,,,"2011-07-07T15:56:07-0500","RICHARD GAUVIN",,,,,121,82,22,0,104,0,104,54,4,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110706142419P040028509959001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","1","0","0",,"NORTHROP GRUMMAN CORPORATION SEVERANCE PLAN","673","1996-03-01","NORTHROP GRUMMAN CORPORATION",,,"1840 CENTURY PARK EAST",,"LOS ANGELES","CA","90067",,,,,,,"1840 CENTURY PARK EAST",,"LOS ANGELES","CA","90067",,,,,,,"954840775","3102013200","336410","NORTHROP GRUMMAN CORPORATION EMPLOYEE WELFARE BENEFITS COMMITTEE",,"1840 CENTURY PARK EAST",,"LOS ANGELES","CA","90067",,,,,,,"953027197","3102013200",,,,"2011-07-06T14:22:41-0500","KENNETH HEINTZ",,,,,87277,91791,,,91791,,91791,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110704132900P030087313681001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE FAMILY DENTISTS DEFINED BENEFIT PENSION PLAN","002","2005-01-01","THE FAMILY DENTISTS",,,"1680 15TH AVE",,"UNION GROVE","WI","531821525",,,,,,,,,,,,,,,,,,"391841902","2628781500","621210","THE FAMILY DENTISTS",,"1680 15TH AVE",,"UNION GROVE","WI","531821525",,,,,,,"391841902","2628781500",,,,"2011-07-04T13:27:40-0500","JOHN ULLOA",,,,,11,10,0,1,11,0,11,,0,,"1A3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-04","Filed with authorized/valid electronic signature",, "20110705164151P030088002881001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"ROBERTSON AND GABLE LLC 401K PLAN","002","2005-10-01","ROBERTSON AND GABLE LLC",,"DAVID ROBERTSON","5875 PEACHTREE INDUSTRIAL BLVD","SUITE 170","NORCROSS","GA","30092",,,,,,,,,,,,,,,,,,"753079177","7707365182","541110","ROBERTSON AND GABLE LLC","DAVID ROBERTSON","5875 PEACHTREE INDUSTRIAL BLVD","SUITE 170","NORCORSS","GA","30092",,,,,,,"753079177","7707365182",,,,"2011-07-05T16:38:07-0500","DAVID H. ROBERTSON",,,,,8,6,0,1,7,0,7,7,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706153415P030088591921003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"LAW OFFICE OF SHELDON SOROSKY EMPLOYEE PROFIT SHAR FORMERLY KAPLAN & SOROSKY EMPLOYEE PSP","001","1998-01-01","LAW OFFICE OF SHELDON SOROSKY, LTD.",,,"158 WEST ERIE STREET",,"CHICAGO","IL","606103703",,,,,,,"158 WEST ERIE STREET",,"CHICAGO","IL","606103703",,,,,,,"362815854","3126401776","541110","LAW OFFICE OF SHELDON SOROSKY, LTD.",,"158 WEST ERIE STREET",,"CHICAGO","IL","606103703",,,,,,,"362815854","3126401776",,,,"2011-07-06T09:48:33-0500","SHELDON SOROSKY",,,,,8,8,1,,9,,9,7,1,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706173527P030417852592001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SHELLEY C. FERRILL, M.D., P.A. 401(K) PLAN","001","2006-01-01","SHELLEY C. FERRILL, M.D., P.A.",,,"23144 WESTHEIMER",,"KATY","TX","77494",,,,,,,,,,,,,,,,,,"201216082","2813925005","621111","SHELLEY C. FERRILL, M.D., P.A.",,"23144 WESTHEIMER",,"KATY","TX","77494",,,,,,,"201216082","2813925005",,,,"2011-07-06T17:35:19-0500","SHELLY FERRILL",,,,,3,6,0,0,6,0,6,6,0,,"2A2E2F2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706152902P030417590480001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VENATORE, LLC 401(K) PROFIT SHARING PLAN","001","2010-01-01","VENATORE, LLC",,,"400 NORTH ASHLEY DRIVE SUITE 1420",,"TAMPA","FL","33602",,,,,,,,,,,,,,,,,,"208250215","8132297500","541990","VENATORE, LLC",,"400 NORTH ASHLEY DRIVE SUITE 1420",,"TAMPA","FL","33602",,,,,,,"208250215","8132297500",,,,"2011-07-06T15:27:11-0500","TIFFANY TRICE",,,,,17,20,0,2,22,0,22,17,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706170002P040413815504001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"TECHPAD AGENCY LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","TECHPAD AGENCY LLC",,,"6031 N MAIN ST RD 341",,"WEBB CITY","MO","64870",,,,,,,"6031 N MAIN ST RD 341",,"WEBB CITY","MO","64870",,,,,,,"721577883","8888532472","541519","TECHPAD AGENCY LLC",,"6031 N MAIN ST RD 341",,"WEBB CITY","MO","64870",,,,,,,"721577883","8888532472",,,,"2011-07-06T16:59:27-0500","AARON WHITE",,,,,3,4,0,0,4,0,4,3,0,,"2E2G2J2K2R3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707153017P030012996882008","2010-02-01","2011-01-31","2",,,,,,,,,,,,"DEVELOPERS MORTGAGE CORPORATION VIP MONEY PURCHASE PLAN","012","1995-01-30","DEVELOPERS MORTGAGE CORPORATION",,,"221 N LASALLE STREET 3333",,"CHICAGO","IL","60601",,,,,,,,,,,,,,,,,,"363035976","3123322013","522300","DEVELOPERS MORTGAGE CORPORATION",,"221 N LASALLE STREET 3333",,"CHICAGO","IL","60601",,,,,,,"363035976","3123322013",,,,"2011-07-07T15:08:31-0500","ALAN CRAVITZ",,,,,4,4,,,4,,4,4,,,"2G2C",,,,,"1",,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110704191507P040408628864001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MONEY PURCHASE PLAN","001","2002-01-01","MEDIA & ENTERTAINMENT STRATEGIES I",,,"15 RIVER ROAD",,"WILTON","CT","068974065",,,,,,,,,,,,,,,,,,"133854126","2033239039","541910","MEDIA & ENTERTAINMENT STRATEGIES I",,"15 RIVER ROAD",,"WILTON","CT","068974065",,,,,,,"133854126","2033239039",,,,"2011-07-04T20:06:19-0500","DONALD ROBBINS","2011-07-04T20:06:32-0500","ROBERT HUNT","2011-07-04T20:06:43-0500","DONALD ROBBINS",4,4,0,0,4,0,4,4,,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-04","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature","Filed with authorized/valid electronic signature" "20110705120740P040013299474001","2010-01-01","2010-12-31","3",,"0","0","0","0","0","0","0","0","0",,"EVERGREEN INDUSTRIES PROFIT SHARING PLAN","001","1997-01-01","EVERGREEN INDUSTRIES, INC.",,,"7054 HIGHBOURNE LANE",,"DALLASTOWN","PA","17313",,,,,,,"7054 HIGHBOURNE LANE",,"DALLASTOWN","PA","17313",,,,,,,"232659284","7174282774","112900","COMMITTEE","JOHN R & NANCY P BEHRMANN","7054 HIGHBOURNE LANE",,"DALLASTOWN","PA","17313",,,,,,,"232659284","7174282774",,,,"2011-07-05T12:03:36-0500","JOHN BEHRMANN",,,,,9,9,,,9,,9,,,,"2A2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110706175112P040091363089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"TENSILICA, INC 401(K) PLAN","001","1998-01-01","TENSILICA, INC.",,,"3255 SCOTT BLVD.","BLDG. 6","SANTA CLARA","CA","95054",,,,,,,"3255 SCOTT BLVD.","BLDG. 6","SANTA CLARA","CA","95054",,,,,,,"770469495","4085661703","541519","TENSILICA, INC.",,"3255 SCOTT BLVD.","BLDG. 6","SANTA CLARA","CA","95054",,,,,,,"770469495","4085661703",,,,"2011-07-06T17:50:24-0500","VIVIAN LEE",,,,,108,89,0,21,110,0,110,90,0,,"2E2F2G2J2T3D3F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706175925P030088659761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VAN TILBURG, BANVARD & SODERBERGH, AIA 401K PLAN","001","1997-05-01","VAN TILBURG, BANVARD & SODERBERGH, AIA",,,"1738 BERKELEY STREET",,"SANTA MONICA","CA","904044105",,,,,,,,,,,,,,,,,,"954492617","3103940273","541310","VAN TILBURG, BANVARD & SODERBERGH, AIA",,"1738 BERKELEY STREET",,"SANTA MONICA","CA","904044105",,,,,,,"954492617","3103940273",,,,"2011-07-06T17:45:08-0500","NAVY BANVARD",,,,,78,41,0,32,73,0,73,65,1,,"2E2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110707105328P040415920608001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"TRILLIANT, INC. 401K PLAN","001","2007-10-01","TRILLIANT, INC.",,,"1100 ISLAND DRIVE",,"REDWOOD CITY","CA","94065",,,,,,,"1100 ISLAND DRIVE",,"REDWOOD CITY","CA","94065",,,,,,,"980463462","6502045050","541400","TRILLIANT, INC.",,"1100 ISLAND DRIVE",,"REDWOOD CITY","CA","94065",,,,,,,"980463462","6502045050",,,,"2011-07-07T10:13:49-0500","TRICIE DAMASO","2011-07-07T10:16:15-0500","TRICIE DAMASO",,,90,94,0,36,130,0,130,107,0,,"2F2G2J2K2S2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707153209P030089292689001","2010-04-08","2010-09-30","2",,"1","0","0","1","0","1","0","0","0",,"LOVINGCAREAT HOME, INC. PROFIT SHARING PLAN","001","2010-04-08","LOVINGCAREAT HOME, INC.",,,"13210 W SHADOW HILLS DR",,"SUN CITY WEST","AZ","85375",,,,,,,,,,,,,,,,,,"272303511","6235658928","812990","LOVINGCAREAT HOME, INC.",,"13210 W SHADOW HILLS DR",,"SUN CITY WEST","AZ","85375",,,,,,,"272303511","6235658928",,,,"2011-07-07T15:20:07-0500","MARY NIELSON",,,,,1,1,0,0,1,0,1,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707081838P030012963506001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"DEBARON ENTERPRISES INC MONEY PURCHASE PLAN & TRUST","001","1979-08-15","DEBARON ENTERPRISES INC",,,"361 PITTSBURGH ROAD",,"BUTLER","PA","160023962",,,,,,,"361 PITTSBURGH ROAD",,"BUTLER","PA","160023962",,,,,,,"251356950","7245867481","541219","DEBARON ENTERPRISES INC",,"361 PITTSBURGH ROAD",,"BUTLER","PA","160023962",,,,,,,"251356950","7245867481",,,,"2011-07-07T08:18:19-0500","RONALD SNOOK",,,,,3,3,,,3,,3,3,,,"2C3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707113608P040013503634001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NORTH STATE ENVIRONMENTAL, INC. 401(K) PLAN","001","2007-01-01","NORTH STATE ENVIRONMENTAL, INC.",,,"2889 LOWERY STREET",,"WINSTON- SALEM","NC","27101",,,,,,,"2889 LOWERY STREET",,"WINSTON- SALEM","NC","27101",,,,,,,"561890266","3367252010","238900","NORTH STATE ENVIRONMENTAL, INC.",,"2889 LOWERY STREET",,"WINSTON- SALEM","NC","27101",,,,,,,"561890266","3367252010",,,,"2011-07-07T10:38:18-0500","STEPHANIE WESTMORELAND",,,,,40,53,0,0,53,0,53,17,0,,"2E2G2J3E",,"1",,"1",,"1",,,,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707083111P030419517248001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HOWERTON FAMILY MEDICINE PA EMPLOYEE PROFIT SHARING PLAN","001","2006-01-01","HOWERTON FAMILY MEDICINE PA",,"SHAWN HOWERTON MD","304 HIGHWAY 24 WEST",,"ROSEBORO","NC","28382",,,,,,,"304 HIGHWAY 24 WEST",,"ROSEBORO","NC","28382",,,,,,,"202881245","9105255848","621111","HOWERTON FAMILY MEDICINE PA","SHAWN HOWERTON MD","304 HIGHWAY 24 WEST",,"ROSEBORO","NC","28382",,,,,,,"202881245","9105255848",,,,"2011-07-07T08:16:16-0500","SHAWN HOWERTON",,,,,4,4,0,0,4,0,4,4,2,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110706143244P030088564449007","2010-01-01","2010-12-31","2",,,,,,,,,,,,"COLONIAL GROUP,INC GROUP HEALTH INSURANCE PLAN","502","1983-01-01","COLONIAL GROUP, INC.",,,"P.O. BOX 576",,"SAVANNAH","GA","31402",,,,,,,,,,,,,,,,,,"582063421","9122361331","424700","EXECUTIVE COMMITTEE COLONIAL GROUP",,"P.O. BOX 576",,"SAVANNAH","GA","31402",,,,,,,"581868088","9122361331",,,,"2011-07-05T06:42:29-0500","FRANCIS A. BROWN","2011-07-05T06:42:29-0500","FRANCIS A. BROWN",,,547,508,29,0,537,,537,,,,,"4A4B4D4H4Q","1",,,"1","1",,,"1",,,,,,"1","4","1",,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705124522P030014452694001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST FUEL & HEATING, INC. 401(K) PLAN","001","2005-12-31","FIRST FUEL & HEATING, INC.",,,"1840 ROUTE 9H",,"HUDSON","NY","12534",,,,,,,,,,,,,,,,,,"141763397","5188288700","424700","FIRST FUEL & HEATING, INC.",,"1840 ROUTE 9H",,"HUDSON","NY","12534",,,,,,,"141763397","5188288700",,,,"2011-07-05T12:45:13-0500","RICHARD COON",,,,,13,9,0,5,14,0,14,12,1,,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110707092005P040091721761001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JABO SUPPLY CORPORATION EMPLOYEES' PROFIT SHARING PLAN","001","1973-03-31","JABO SUPPLY CORPORATION",,,"5164 BRALEY ROAD","PO BOX 238","HUNTINGTON","WV","25707",,,,,,,,,,,,,,,,,,"550477065","3047368333","423700","JABO SUPPLY CORPORATION",,"5164 BRALEY ROAD","PO BOX 238","HUNTINGTON","WV","25707",,,,,,,"550477065","3047368333",,,,"2011-07-07T09:19:49-0500","JOSEPH T HOLLEY","2011-07-07T09:19:49-0500","JOSEPH T HOLLEY",,,80,74,0,0,74,0,74,69,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707092230P040091722401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROBERT RILEY MD INC EMPLOYEES MONEY PURCHASE PENSION TRUST AND PLAN","002","1984-02-01","ROBERT RILEY MD, INC EMPLOYEES MONEY PURCHASE PENSION TRUST &PLAN",,"ROBERT P RILEY, MD","21245 LORAIN ROAD - SUITE 206",,"FAIRVIEW PARK","OH","44126",,,,,,,"21245 LORAIN ROAD - SUITE 206",,"FAIRVIEW PARK","OH","44126",,,,,,,"341081258","4403339797","621111","ROBERT P RILEY",,"21245 LORAIN ROAD - SUITE 206",,"FAIRVIEW PARK","OH","44126",,,,,,,"341081258","4403339797",,,,"2011-07-07T09:22:09-0500","ROBERT RILEY",,,,,4,3,1,,4,,4,4,,,"2C3F",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707093858P040091728769001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ATTORNEY DOUGLAS NEUMAN 401(K) PLAN","001","2005-07-01","ATTORNEY DOUGLAS J NEUMAN",,,"761 N CEDAR AVE",,"NILES","OH","44446",,,,,,,,,,,,,,,,,,"341902418","3306521749","541110","ATTORNEY DOUGLAS J NEUMAN",,"761 N CEDAR AVE",,"NILES","OH","44446",,,,,,,"341902418","3306521749",,,,"2011-07-07T09:17:58-0500","DOUGLAS NEUMAN",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110705092758P030087803521001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BROOKHAVEN MEMORIAL HOSPITAL WELFARE PLAN GROUP MEDICAL","503","1983-03-01","BROOKHAVEN MEMORIAL HOSPITAL",,"RONALD A. GIRAULO","101 HOSPITAL RD",,"EAST PATCHOGUE","NY","11772",,,,,,,"101 HOSPITAL RD",,"EAST PATCHOGUE","NY","11772",,,,,,,"111704595","6316547370","622000","VIRGINIA RAFFAELE","BMHMC","101 HOSPITAL RD",,"EAST PATCHOGUE","NY","11772",,,,,,,"111704595","6316547370",,,,"2011-06-28T10:04:16-0500","RONALD GIRAULO","2011-06-28T15:35:13-0500","VIRGINIA RAFFAELE",,,1527,1512,,,1512,,1512,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705144452P040410795792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VIVERAE 401(K) PLAN","001","2007-02-01","VIVERAE, INC.",,,"10670 N. CENTRAL EXPRESSWAY","SUITE 700","DALLAS","TX","75204",,,,,,,,,,,,,,,,,,"264218002","2148274400","541990","VIVERAE, INC.",,"10670 N. CENTRAL EXPRESSWAY","SUITE 700","DALLAS","TX","75204",,,,,,,"264218002","2148274400",,,,"2011-07-05T14:30:51-0500","MICHAEL R. NADEAU",,,,,81,129,0,5,134,0,134,33,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110705144507P040090581377001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FRED M. HECTOR PROFIT SHARING PLAN","002","1992-12-31","FMH COMPANY",,"FRED HECTOR","6816 SOUTH UNIVERSITY DRIVE",,"FARGO","ND","58104",,,,,,,,,,,,,,,,,,"450307808","7012326846","111900","FMH COMPANY","FRED HECTOR","6816 SOUTH UNIVERSITY DRIVE",,"FARGO","ND","58104",,,,,,,"450307808","7012326846",,,,"2011-07-05T15:13:37-0500","FRED HECTOR","2011-07-05T15:13:47-0500","FRED HECTOR",,,2,2,0,0,2,0,2,,,,"2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707095608P030089082289001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"EDM INCORPORATED 401(K) PLAN","001","1988-01-01","EDM INCORPORATED",,,"220 MANSION HOUSE CENTER",,"ST LOUIS","MO","63102",,,,,,,"220 MANSION HOUSE CENTER",,"ST LOUIS","MO","63102",,,,,,,"431007373","3142315485","541330","EDM INCORPORATED",,"220 MANSION HOUSE CENTER",,"ST LOUIS","MO","63102",,,,,,,"431007373","3142315485",,,,"2011-07-07T09:54:23-0500","DONNA SCOTT",,,,,36,34,0,4,38,0,38,30,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707111911P040091787969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THEIS DISTRIBUTING COMPANY INC. EMPLOYEE INJURY BENEFIT PLAN","501","2001-08-14","THEIS DISTRIBUTING COMPANY, INC.",,"WAYNE WENDELL","17984 RED IRON RD",,"SCHERTZ","TX","78154",,,,,,,"17984 RED IRON RD",,"SCHERTZ","TX","78154",,,,,,,"741667201","2106514403","484120","THEIS DISTRIBUTING COMPANY, INC.","WAYNE WENDELL","17984 RED IRON RD",,"SCHERTZ","TX","78154",,,,,,,"741667201","2106514403",,,,"2011-07-07T11:18:57-0500","GARY SARLES",,,,,125,107,,,107,,107,,,,,"4A4F4L",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707100415P040091744417001","2010-01-01","2010-12-31","2",,"0","0","0","0","1","0","0","0","0",,"GIANT CEMENT HOLDING INC. RETIREE HRA PLAN","506","2008-11-01","GIANT CEMENT HOLDING INC.",,,"320 MIDLAND PARKWAY SUITE D",,"SUMMERVILLE","SC","29485",,,,,,,,,,,,,,,,,,"570844952","8438519898","327300","GIANT CEMENT HOLDING INC.",,"320 MIDLAND PARKWAY SUITE D",,"SUMMERVILLE","SC","29485",,,,,,,"570844952","8438519898",,,,"2011-07-07T10:04:08-0500","GERARD J GEIER JR","2011-07-07T10:04:08-0500","GERARD J GEIER JR",,,257,0,241,0,241,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110707140743P030089244529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EDWARD W. P. SMITH, M.D., P.A. PROFIT SHARING PLAN & TRUST","002","1981-03-01","EDWARD W. P. SMITH, M.D., P.A.",,,"4479 BAYMEADOWS RD",,"JACKSONVILLE","FL","322174716",,,,,,,,,,,,,,,,,,"592017524","9047318300","621111","EDWARD W. P. SMITH, M.D., P.A.",,"4479 BAYMEADOWS RD",,"JACKSONVILLE","FL","322174716",,,,,,,"592017524","9047318300",,,,"2011-07-07T14:07:04-0500","EDWARD SMITH",,,,,16,11,0,3,14,0,14,14,4,,"2A2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110707155949P030027860199001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"OIB LANDSCAPING 401(K) PROFIT SHARING PLAN","001","2007-01-01","OIB LANDSCAPING",,,"3120 W. CAREFREE HWY., SUITE 1-508",,"PHOENIX","AZ","85086",,,,,,,,,,,,,,,,,,"861042755","6024991222","561730","OIB LANDSCAPING",,"3120 W. CAREFREE HWY., SUITE 1-508",,"PHOENIX","AZ","85086",,,,,,,"861042755","6024991222",,,,"2011-07-07T04:59:42-0500","PREPARER ON BEHALF OF ADMINISTRATOR",,,,,4,4,0,0,4,0,4,4,0,,"2E2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-07","Filed with authorized/valid electronic signature",, "20110706164809P040091335681001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"STAY TAN NORTH INC. PROFIT SHARING PLAN 4 WEST GATE CT. GLEN COVE, NEW YORK, 11542","001","2009-01-01","STAY TAN NORTH INC.",,,"4 WEST GATE CT.",,"GLEN COVE","NY","11542",,,,,,,"1 ELM STREET, SUITE A",,"LOCUST VALLEY","NY","11560",,,,,,,"450587962","5166712826","621399","JOHN TYMANN",,"4 WEST GATE CT.",,"GLEN COVE","NY","11542",,,,,,,"053606988","5166712826",,,,"2011-05-06T04:20:41-0500","JOHN A. TYMANN","2011-07-06T12:47:35-0500","JOHN A. TYMANN",,,2,2,,,2,,2,2,,,"1A",,,,"1",,,,"1",,"1",,"1",,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110705133628P040028286823001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"C & S DEVELOPMENT, LLC PROFIT SHARING 401(K) PLAN","001","2002-01-01","C & S DEVELOPMENT, LLC",,,"1661 SHUG JORDAN PKWY","PO BOX 1249","AUBURN","AL","36830",,,,,,,,,,,,,,,,,,"631218687","3342092332","531390","C & S DEVELOPMENT, LLC",,"1661 SHUG JORDAN PKWY","PO BOX 1249","AUBURN","AL","36830",,,,,,,"631218687","3342092332",,,,"2011-07-05T13:36:23-0500","ROBERT SELBY",,,,,13,5,0,8,13,0,13,12,2,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-05","Filed with authorized/valid electronic signature",, "20110630162416P030085161105001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CEDARS 401(K)","002","1999-04-01","CEDARS NURSING CARE CENTER",,,"630 OCEAN AVE","PO BOX 466","PORTLAND","ME","04112",,,,,,,,,,,,,,,,,,"010211517","2077725456","623000","CEDARS NURSING CARE CENTER",,"630 OCEAN AVE","PO BOX 466","PORTLAND","ME","04112",,,,,,,"010211517","2077725456",,,,"2011-06-30T13:59:50-0500","JOHN WATSON",,,,,291,243,0,38,281,0,281,134,0,,"2F2G2J2K2E2T3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630084145P040397140640001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"AVEKSA, INC. 401(K) PLAN","001","2006-03-01","DEEPAK TANEJA",,,"265 WINTER STREET",,"WALTHAM","MA","02454",,,,,,,"265 WINTER STREET",,"WALTHAM","MA","02454",,,,,,,"800120945","5084048744","541519","DEEPAK TANEJA",,"265 WINTER STREET",,"WALTHAM","MA","02454",,,,,,,"800120945","5084048744",,,,"2011-06-30T08:41:33-0500","DEEPAK TANEJA",,,,,44,34,0,15,49,0,49,34,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630084159P040087509505001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHOTRONICS, INC. CAFETERIA PLAN","501","1989-09-01","PHOTRONICS, INC.",,,"15 SECOR RD",,"BROOKFIELD","CT","068043937",,,,,,,,,,,,,,,,,,"060854886","2037759000","334410","PHOTRONICS, INC.",,"15 SECOR RD",,"BROOKFIELD","CT","068043937",,,,,,,"060854886","2037759000",,,,"2011-06-30T08:27:01-0500","CARLA LAPRADE",,,,,346,344,0,0,344,,,,,,,"4A4B4D4H4Q4F","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701052959P030085496177001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ZARLINK SEMICONDUCTOR BENEFITS PLAN","501","2008-01-01","ZARLINK SEMICONDUCTOR V.N. INC",,,"4509 FREIDRICH LANE MS 357",,"AUSTIN","TX","78744",,,,,,,,,,,,,,,,,,"330668912","8586753459","334110","ZARLINK SEMICONDUCTOR V.N. INC",,"4509 FREIDRICH LANE MS 357",,"AUSTIN","TX","78744",,,,,,,"330668912","8586753459",,,,"2011-06-30T19:23:41-0500","BARB WOLFE",,,,,193,180,0,0,180,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701075419P030085547041001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DR AZUCENA A PORRAL PROFIT SHARING PLAN AND TRUST","001","2002-01-01","DR AZUCENA A PORRAL",,,"5546 ROSEMEAD BLVD H102",,"TEMPLE CITY","CA","917801845",,,,,,,"5546 ROSEMEAD BLVD H102",,"TEMPLE CITY","CA","917801845",,,,,,,"954549679","6262859600","621111","DR AZUCENA A PORRAL",,"5546 ROSEMEAD BLVD H102",,"TEMPLE CITY","CA","917801845",,,,,,,"954549679","6262859600",,,,"2011-07-01T07:38:00-0500","DR AZUCENA A PORRAL",,,,,3,2,0,1,3,0,3,3,0,,"2A2E3B",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706112734P040413063280001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRANSMONTAIGNE SERVICES INC. EMPLOYEES BENEFITS PLAN","503","2009-01-01","TRANSMONTAIGNE SERVICES INC.",,,"1670 BROADWAY, SUITE 3100",,"DENVER","CO","80202",,,,,,,,,,,,,,,,,,"261409042","3036268200","493100","TRANSMONTAIGNE SERVICES INC.",,"1670 BROADWAY, SUITE 3100",,"DENVER","CO","80202",,,,,,,"261409042","3036268200","TRANSMONTAIGNE SERVICES INC.","202055108","503","2011-07-06T11:27:30-0500","CAROL L. CARRILLO",,,,,593,592,16,0,608,,,,,,,"4A4B4D4E4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110701111525P030085651313001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"REPUBLIC TITLE 401(K) PROFIT SHARING PLAN","001","1970-08-01","REPUBLIC TITLE OF TEXAS, INC.",,,"2701 W. PLANO PARKWAY","SUITE 100","PLANO","TX","75075",,,,,,,,,,,,,,,,,,"751825384","2145560335","531390","REPUBLIC TITLE OF TEXAS, INC.",,"2701 W. PLANO PARKWAY","SUITE 100","PLANO","TX","75075",,,,,,,"751825384","2145560335",,,,"2011-07-01T09:21:27-0500","DENNIS EASTLAND","2011-07-01T09:21:27-0500","DENNIS EASTLAND",,,538,498,1,37,536,0,536,521,8,,"2E2F2G2J2K2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110701133653P030085710273001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"T & D FABRICATION INC 401K PLAN","001","2006-08-01","T & D FABRICATION INC",,,"54440 WEST HIGHWAY 16",,"DRUMWRIGHT","OK","74030",,,,,,,,,,,,,,,,,,"731559573","9183528031","621399","T & D FABRICATION INC",,"54440 WEST HIGHWAY 16",,"DRUMWRIGHT","OK","74030",,,,,,,"731559573","9183528031",,,,"2011-07-01T13:36:30-0500","HOGANTAYLOR LLP PREPARER",,,,,35,21,0,1,22,0,22,17,0,0,"2E2F2G2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706082224P030416636288001","2004-01-01","2004-12-31","2",,"0","1","1","0","0","0","0","0","0",,"YH AMERICA INC. LONG TERM DISABILITY PLAN","503","1989-07-01","YH AMERICA INC.",,,"105 KUHLMAN DRIVE",,"VERSAILLES","KY","40383",,,,,,,,,,,,,,,,,,"611161883","8598732188","336300","YH AMERICA INC.",,"105 KUHLMAN DRIVE",,"VERSAILLES","KY","40383",,,,,,,"611161883","8598732188",,,,"2011-07-06T08:20:03-0500","COURTNEY SIDOR",,,,,266,0,0,0,0,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110701093647P040399963344001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"LMI AEROSPACE, INC. PROFIT SHARING AND SAVINGS PLAN AND TRUST","002","1953-07-01","LMI AEROSPACE, INC.",,,"411 FOUNTAIN LAKES BLVD",,"ST CHARLES","MO","633014352",,,,,,,,,,,,,,,,,,"431309065","6369162400","332900","LMI AEROSPACE, INC.",,"411 FOUNTAIN LAKES BLVD",,"ST CHARLES","MO","633014352",,,,,,,"431309065","6369162400",,,,"2011-07-01T09:36:37-0500","LAWRENCE EDWARD DICKINSON, III",,,,,1358,1190,0,184,1374,0,1374,1333,24,,"2E2G2J2K3H2S2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701113639P030085661441001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"ISIKH CORP 401K PLAN","001","2009-08-05","ISIKH CORP",,,"5406 WELLINGTON DRIVE",,"RICHARDSON","TX","75082",,,,,,,,,,,,,,,,,,"270730461","9726717009","722210","ISIKH CORP",,"5406 WELLINGTON DRIVE",,"RICHARDSON","TX","75082",,,,,,,"270730461","9726717009",,,,"2011-07-01T11:36:32-0500","INDERPAL SINGH","2011-07-01T11:36:32-0500","INDERPAL SINGH",,,1,1,0,0,1,0,1,1,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706100130P030012869970002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GLIMCHER REALTY TRUST MEDICAL PLAN","502","1992-09-01","GLIMCHER REALTY TRUST",,,"180 EAST BROAD STREET",,"COLUMBUS","OH","43215",,,,,,,"180 EAST BROAD STREET",,"COLUMBUS","OH","43215",,,,,,,"311390518","6146219000","531120","GLIMCHER REALTY TRUST",,"180 EAST BROAD STREET",,"COLUMBUS","OH","43215",,,,,,,"311390518","6146219000",,,,"2011-07-06T05:22:15-0500","GRACE E. SCHMITT","2011-07-06T05:22:15-0500","LISA A. INDEST",,,901,855,,,855,,,,,,,"4A4E","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630170723P040087760065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLUE CROSS & BLUE SHIELD OF MS, INC. EMPLOYEE GROUP HEALTH PLAN","506","1948-03-01","BLUE CROSS & BLUE SHIELD OF MISSISSIPPI",,,"3545 LAKELAND DRIVE",,"JACKSON","MS","392088839",,,,,,,,,,,,,,,,,,"640295748","6019323704","524290","BLUE CROSS & BLUE SHIELD OF MISSISSIPPI",,"3545 LAKELAND DRIVE",,"JACKSON","MS","392088839",,,,,,,"640295748","6019323704",,,,"2011-06-30T17:07:21-0500","AMY AYERS","2011-06-30T17:07:21-0500","AMY AYERS",,,938,615,252,109,976,,,,,,,"4A",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110701052343P030403408000001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WALBRAN & FURNESS CHARTERED PROFIT SHARING PLAN","002","1992-01-01","WALBRAN & FURNESS CHARTERED",,,"140 E. MAIN STREET","PO BOX 273","OWATONNA","MN","55060",,,,,,,,,,,,,,,,,,"411408757","5074511173","541110","WALBRAN & FURNESS CHARTERED",,"140 E. MAIN STREET","PO BOX 273","OWATONNA","MN","55060",,,,,,,"411408757","5074511173",,,,"2011-06-30T15:52:55-0500","MARK M. WALBRAN",,,,,6,5,0,2,7,0,7,7,0,,"2T3D2E2G2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701052422P030403409760001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WILSON MCSHANE CORPORATION FLEXIBLE BENEFIT PLAN","505","1999-01-01","WILSON MCSHANE CORPORATION",,,"3001 METRO DRIVE STE 500",,"BLOOMINGTON","MN","55425",,,,,,,,,,,,,,,,,,"410956552","9528540795","541990","WILSON MCSHANE CORPORATION",,"3001 METRO DRIVE STE 500",,"BLOOMINGTON","MN","55425",,,,,,,"410956552","9528540795",,,,"2011-06-30T13:54:49-0500","REBECCA KOTNIK",,,,,147,159,,,159,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701150018P030404519680002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE WELLNESS CENTER NATURAL","001","2002-06-15","THE WELLNESS CENTER NATURAL",,,"7304 JARNIGAN ROAD",,"CHATTANOOGA","TN","37421",,,,,,,,,,,,,,,,,,"621207046","4239542585","446110","THE WELLNESS CENTER NATURAL",,"7304 JARNIGAN ROAD",,"CHATTANOOGA","TN","37421",,,,,,,"621207046","4239542585",,,,"2011-06-28T03:29:22-0500","RANDY DAVIS",,,,,0,6,0,0,6,,6,6,,,"2E2F2G2J",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706110639P040013393906004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GARY E FAYE & ASSOCIATES PROFIT SHARING PLAN","001","1985-09-02","GARY E FAYE & ASSOCIATES",,,"PO BOX 745",,"LIGONIER","PA","156580745",,,,,,,"109 NORTH FIELD STREET",,"LIGONIER","PA","15658",,,,,,,"251506511","7242385644","524210","GARY E FAYE & ASSOCIATES",,"PO BOX 745",,"LIGONIER","PA","156580745",,,,,,,"251506511","7242385644",,,,"2011-07-06T10:48:39-0500","GARY E FAYE",,,,,6,5,1,,6,,6,5,,,"3B2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110701095038P040399993456001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"NEW BRUNSWICK PLATING, INC. 401(K) PLAN","003","1997-01-01","NEW BRUNSWICK PLATING, INC.",,,"1010 JERSEY AVE.",,"NEW BRUNSWICK","NJ","089010000",,,,,,,,,,,,,,,,,,"221635263","7325456522","812990","NEW BRUNSWICK PLATING, INC.",,"1010 JERSEY AVE.",,"NEW BRUNSWICK","NJ","089010000",,,,,,,"221635263","7325456522",,,,"2011-07-01T09:50:26-0500","ANTHONY MELCHIONE","2011-07-01T09:50:26-0500","ANTHONY MELCHIONE",,,36,32,0,3,35,0,35,26,0,,"2E2F2G2J2K2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110701091508P040399921792002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DAVID S. DUBOSE DDS PA EMPLOYEES PROFIT SHARING PLAN AND TRUST","001","1977-07-01","DAVID S. DUBOSE DDS, PA",,,"PO BOX 1267",,"MARION","NC","28752",,,,,,,,,,,,,,,,,,"561161496","8286522731","621210","DAVID S. DUBOSE DDS PA",,"PO BOX 1267",,"MARION","NC","28752",,,,,,,"561161496","8286522731",,,,"2011-07-01T10:03:21-0500","DAVID S. DUBOSE","2011-07-01T10:03:25-0500","DAVID S. DUBOSE",,,4,4,0,0,4,0,4,4,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706121439P030012882194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BAY UROLOGY PA 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","BAY UROLOGY PA",,,"1840 MEASE DRIVE, SUITE 403A",,"SAFETY HARBOR","FL","34695",,,,,,,,,,,,,,,,,,"651306977","7274492298","621111","BAY UROLOGY PA",,"1840 MEASE DRIVE, SUITE 403A",,"SAFETY HARBOR","FL","34695",,,,,,,"651306977","7274492298",,,,"2011-07-06T00:14:37-0500","BAY UROLOGY PA",,,,,6,6,0,2,8,0,8,5,0,,"2A2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706072944P040091034913001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SPRINGFIELD HOSPITAL DENTAL PLAN","502","1981-10-01","SPRINGFIELD HOSPITAL INC.",,,"PO BOX 2003",,"SPRINGFIELD","VT","051563050",,,,,,,"25 RIDGEWOOD ROAD",,"SPRINGFIELD","VT","051563050",,,,,,,"030179437","8028852151","622000","SPRINGFIELD HOSPITAL INC.",,"PO BOX 2003",,"SPRINGFIELD","VT","051563050",,,,,,,"030179437","8028852151",,,,"2011-07-06T07:29:33-0500","JANET L. LYLE","2011-07-05T10:51:56-0500","JANET L. LYLE",,,407,387,,,387,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630134659P030085078993001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LAWRENCE I. WOLF, A PROFESSIONAL LAW CORPORATION DEFINED BENEFIT PENSION PLAN","002","1997-01-01","LAWRENCE I. WOLF, A PROFESSIONAL LAW CORPORATION",,,"10390 SANTA MONICA BLVD., SUITE 300",,"LOS ANGELES","CA","900255091",,,,,,,,,,,,,,,,,,"953958887","3102771707","541110","LAWRENCE I. WOLF, A PROFESSIONAL LAW CORPORATION",,"10390 SANTA MONICA BLVD., SUITE 300",,"LOS ANGELES","CA","900255091",,,,,,,"953958887","3102771707",,,,"2011-06-30T13:46:57-0500","LAWRENCE I. WOLF",,,,,8,3,1,4,8,0,8,,0,,"1A1I3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630123457P030401516992001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLORADO DRUG ENDANGERED CHILD 401(K) PROFIT SHARING PLAN & TRUST","001","2008-01-01","COLORADO DRUG ENDANGERED CHILD",,,"2000 W. 120TH ST., STE. 12",,"WESTMINSTER","CO","80234",,,,,,,,,,,,,,,,,,"571185029","3034133460","813000","COLORADO DRUG ENDANGERED CHILD",,"2000 W. 120TH ST., STE. 12",,"WESTMINSTER","CO","80234",,,,,,,"571185029","3034133460",,,,"2011-06-30T00:34:54-0500","COLORADO DRUG ENDANGERED CHILD",,,,,3,2,0,1,3,0,3,3,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701084400P040399858288001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"LYNCHBURG COMMUNITY ACTION GROUP, INC. 401(K) PROFIT SHARING PLAN","001","2002-01-01","LYNCHBURG COMMUNITY ACTION GROUP, INC.",,,"926 COMMERCE STREET",,"LYNCHBURG","VA","24504",,,,,,,,,,,,,,,,,,"540797340","4348462778","813000","LYNCHBURG COMMUNITY ACTION GROUP, INC.",,"926 COMMERCE STREET",,"LYNCHBURG","VA","24504",,,,,,,"540797340","4348462778",,,,"2011-07-01T08:42:55-0500","JAMES H. MUNDY",,,,,148,115,0,33,148,0,148,148,0,,"3D2E2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701134834P030085717217001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"AMF SUPPORT SURFACES, INC. 401(K) PLAN","001","1992-01-01","AMF SUPPORT SURFACES, INC.",,,"1691 N. DELILAH STREET",,"CORONA","CA","928791885",,,,,,,,,,,,,,,,,,"951839885","9515496800","442299","AMF SUPPORT SURFACES, INC.",,"1691 N. DELILAH STREET",,"CORONA","CA","92879",,,,,,,"951839885","9515496800",,,,"2011-07-01T13:38:49-0500","VINCE COSTANTINO",,,,,108,112,0,28,140,0,140,112,2,,"2E2H2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706082543P030088364225001","2005-01-01","2005-12-31","2",,"0","1","0","0","0","0","0","0","0",,"YH AMERICA INC. LIFESTYLE PLAN","504","2011-01-01","YH AMERICA INC.",,,"105 KUHLMAN DRIVE",,"VERSAILLES","KY","40383",,,,,,,,,,,,,,,,,,"611161883","8598732188","336300","YH AMERICA, INC.",,"105 KUHLMAN DRIVE",,"VERSAILLES","KY","40383",,,,,,,"611161883","8598732188",,,,"2011-07-06T08:23:21-0500","COURTNEY SIDOR",,,,,335,395,0,0,395,,,,,,,"4B4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630123712P030085044993001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"FBO STANLEY MAJOCHA KEOGH","001","1989-12-20","STANLEY MAJOCHA",,,"1902 GRANDVIEW AVE",,"WESTFIELD","NJ","070901729",,,,,,,,,,,,,,,,,,"223064978","7323883424","238300","STANLEY MAJOCHA",,"1902 GRANDVIEW AVE",,"WESTFIELD","NJ","070901729",,,,,,,"223064978","7323883424",,,,"2011-06-30T13:31:40-0500","STANLEY MAJOCHA",,,,,1,1,0,0,1,0,1,1,,,"2E3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701100436P040400020528001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEWPARK RESOURCES, INC GROUP WELFARE BENEFIT PLAN","501","1976-12-31","NEWPARK RESOURCES, INC",,,"2700 RESEARCH FOREST DR","STE 100","THE WOODLANDS","TX","77381",,,,,,,,,,,,,,,,,,"721123385","2813626800","213110","NEWPARK RESOURCES, INC",,"2700 RESEARCH FOREST DR","STE 100","THE WOODLANDS","TX","77381",,,,,,,"721123385","2813626800",,,,"2011-07-01T10:04:20-0500","MARK AIROLA",,,,,767,819,6,0,825,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701114507P040088221297001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"IMCG/KC INC PROFIT SHARING 401K PLAN","001","1997-01-01","IMCG/KC, INC.",,,"6811 SHAWNEE MISSION PKWY, STE 221",,"OVERLAND PARK","KS","66202",,,,,,,,,,,,,,,,,,"431642878","9132366786","541600","IMCG/KC, INC.",,"6811 SHAWNEE MISSION PKWY, STE 221",,"OVERLAND PARK","KS","66202",,,,,,,"431642878","9132366786",,,,"2011-07-01T11:35:54-0500","RICK STILWELL",,,,,6,6,0,0,6,0,6,6,,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701135102P030002520611001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORTHEAST BROKERAGE INC 401(K) PROFIT SHARING PLAN & TRUST","001","2003-01-01","NORTHEAST BROKERAGE INC",,,"867 MAIN ST",,"MANCHESTER","CT","06040",,,,,,,,,,,,,,,,,,"200354428","8607838100","524210","NORTHEAST BROKERAGE INC",,"867 MAIN ST",,"MANCHESTER","CT","06040",,,,,,,"200354428","8607838100",,,,"2011-07-01T01:51:00-0500","NORTHEAST BROKERAGE INC",,,,,23,25,0,2,27,0,27,23,0,,"2A2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701142445P040002670499002","2010-01-01","2010-12-31","2",,,,,,,,"1",,,,"HEALTH PROTECTION PLAN FOR EMPLOYEES OF MITEK CORPORATION","501","1990-01-01","MITEK CORPORATION",,,"ONE MITEK PLAZA",,"WINSLOW","IL","61089",,,,,,,,,,,,,,,,,,"363167203","8153673000","334310","MITEK CORPORATION",,"ONE MITEK PLAZA",,"WINSLOW","IL","61089",,,,,,,"363167203","8153673000",,,,"2011-06-23T08:43:52-0500","TERESA STAMM","2011-06-23T08:43:52-0500","TERESA STAMM",,,234,300,,,300,,,,,,,"4B4L","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706100700P030088416065001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DRIFTSTONE INC PROFIT SHARING PLAN","002","1996-01-01","DRIFTSTONE INC","DRIFTSTONE ON THE DELAWARE",,"2731 RIVER RD",,"MOUNT BETHEL","PA","183436115",,,,,,,"2731 RIVER RD",,"MOUNT BETHEL","PA","183436115",,,,,,,"231668103","5708976859","721210","JEFF R ACKERMAN",,"2731 RIVER RD",,"MOUNT BETHEL","PA","183436115",,,,,,,"452632169","5708976859",,,,"2011-07-06T10:03:13-0500","JEFF ACKERMAN",,,,,6,6,,,6,,6,6,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630111605P040012884194001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RADWARE INC 401K PLAN","001","2001-01-01","RADWARE INC",,,"575 CORPORATE DRIVE","LOBBY 1","MAHWAH","NJ","07430",,,,,,,,,,,,,,,,,,"223627044","2017853221","541519","RADWARE INC",,"575 CORPORATE DRIVE","LOBBY 1","MAHWAH","NJ","07430",,,,,,,"223627044","2017853221",,,,"2011-06-29T14:17:09-0500","LINDA KAJIAN",,,,,129,89,0,42,131,0,131,78,6,,"2E2F2G2J2K3D3F",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630140253P030085084817005","2010-01-01","2010-12-31","2",,,,,,,,,"1",,,"SKIDMORE COLLEGE FLEXIBLE BENEFIT PLAN","510","1988-01-01","SKIDMORE COLLEGE",,,"815 NORTH BROADWAY",,"SARATOGA SPRINGS","NY","12866",,,,,,,,,,,,,,,,,,"141338562","5185805810","611000","SKIDMORE COLLEGE",,"815 NORTH BROADWAY",,"SARATOGA SPRINGS","NY","12866",,,,,,,"141338562","5185805808",,,,"2011-06-30T09:21:01-0500","DAVID SPOKOWSKI","2011-06-30T13:53:21-0500","MICHAEL WEST",,,713,713,268,,981,,981,,,,,"4I4H4F4D4B4A","1",,,,"1",,,,,,,"1",,"1","6",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630162943P040398126032001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"THE COLOR WHEEL COMPANY MONEY PURCHASE PENSION PLAN","002","1999-07-01","THE COLOR WHEEL COMPANY",,,"P.O. BOX 130",,"PHILOMATH","OR","973700130",,,,,,,"3266 W. HILLS RD.",,"PHILOMATH","OR","97370",,,,,,,"931270985","5419297526","339900","THE COLOR WHEEL COMPANY",,"P.O. BOX 130",,"PHILOMATH","OR","973700130",,,,,,,"931270985","5419297526",,,,"2011-06-30T16:24:12-0500","KEN HAINES",,,,,7,6,,1,7,,7,,,,"2C2G",,,,"1",,,,"1",,,"0",,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630195340P040398508688001","2004-01-01","2004-12-31","2",,"1","0","0","0","0","0","0","1","0",,"6305 MONEY PURCHASE PLAN","001","2002-12-28","DEMETRIUS POHL","CARLSON POHL ASSOCIATES",,"2179 W. 20TH ST",,"LOS ANGELES","CA","90018",,,,,,,"2179 W. 20TH ST",,"LOS ANGELES","CA","90018",,,,,,,"412030396","3237351027","541600","DEMETRIUS POHL",,"2179 W. 20TH ST",,"LOS ANGELES","CA","90018",,,,,,,"412030396","3237351027",,,,"2011-06-30T19:53:24-0500","DEMETRIUS POHL",,,,,1,1,0,0,1,0,1,1,0,0,"2C","4Q",,,,"1",,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110702112649P040013058514001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"HILLCREST BAPTIST MEDICAL CENTER VOLUNTARY ADANDD PLAN","504","2009-01-01","HILLCREST BAPTIST MEDICAL CENTER",,,"100 HILLCREST MEDICAL BLVD.",,"WACO","TX","76712",,,,,,,,,,,,,,,,,,"741161944","2542022000","622000","HILLCREST BAPTIST MEDICAL CENTER",,"100 HILLCREST MEDICAL BLVD.",,"WACO","TX","76712",,,,,,,"741161944","2542022000",,,,"2011-07-02T11:26:43-0500","DAVID BLACKWELL",,,,,191,283,0,0,283,,,,,,,"4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-02","Filed with authorized/valid electronic signature",, "20110706103324P040412932608001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"FIRST GUARANTEE MORTGAGE 401 K PLAN","001","2001-01-01","FIRST GUARANTEE MORTGAGE LLC",,,"21 CONGRESS STREET SUITE 201",,"SARASOTA SPRINGS","NY","128664122",,,,,,,,,,,,,,,,,,"141822711","5185872500","522292","FIRST GUARANTEE MORTGAGE LLC",,"21 CONGRESS STREET SUITE 201",,"SARASOTA SPRINGS","NY","128664122",,,,,,,"141822711","5185872500",,,,"2011-07-06T10:33:23-0500","WENDY WILSON",,,,,2,0,0,0,0,,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706111309P040091162593001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"CELL PRESERVATION SERVICES, INC. 401(K) PLAN","001","2007-01-01","CELL PRESERVATION SERVICES, INC",,,"2 COURT STREET",,"OWEGO","NY","13827",,,,,,,,,,,,,,,,,,"200641296","6076870166","812990","CELL PRESERVATION SERVICES, INC",,"2 COURT STREET",,"OWEGO","NY","13827",,,,,,,"200641296","6076870166",,,,"2011-07-06T11:12:59-0500","RICHARD OHARA",,,,,6,7,0,0,7,0,7,6,0,,"2E2F2G2J3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706151036P030012896258001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ROUNDARCH, INC. COMPREHENSIVE WELFARE BENEFITS PLAN","501","2000-08-01","ROUNDARCH, INC.",,,"708 GINESI DRIVE, SUITE 203",,"MORGANVILLE","NJ","07751",,,,,,,,,,,,,,,,,,"364370842","7329821776","541511","ROUNDARCH, INC.",,"708 GINESI DRIVE, SUITE 203",,"MORGANVILLE","NJ","07751",,,,,,,"364370842","7329821776",,,,"2011-07-06T15:10:16-0500","CATHERINE SLOCUM","2011-07-06T14:58:25-0500","BRUCE POSNER",,,177,242,4,0,246,,,,,,,"4A4D4B4F4H4E4S","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630151156P030085118929001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PRADIP PATEL & CO LTD","001","2003-01-01","PRADIP PATEL & CO LTD, CERTIFIED PUBLIC ACCOUNTANTS",,,"999 PLAZA DRIVE","SUITE 590","SCHAUMBURG","IL","60173",,,,,,,"999 PLAZA DRIVE","SUITE 590","SCHAUMBURG","IL","60173",,,,,,,"363725095","8474130414","541211","PRADIP PATEL & CO LTD, CERTIFIED PUBLIC ACCOUNTANTS",,"999 PLAZA DRIVE","SUITE 590","SCHAUMBURG","IL","60173",,,,,,,"363725095","8474130414",,,,"2011-06-30T15:11:39-0500","PRADIP PATEL",,,,,2,2,,,2,,2,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701071042P030403611824001","2008-04-01","2008-12-31","2",,"0","1","0","1","0","0","0","0","0",,"NEW YORK STATE NURSES ASSOCIATION LIFE AND LONG TERM DISABILITY PLAN","508","1974-04-01","NEW YORK STATE NURSES ASSOCIATION",,,"11 CORNELL RD",,"LATHAM","NY","121101402",,,,,,,,,,,,,,,,,,"140923749","5187829400","813000","NEW YORK STATE NURSES ASSOCIATION",,"11 CORNELL RD",,"LATHAM","NY","121101402",,,,,,,"140923749","5187829400",,,,"2011-07-01T07:01:25-0500","JOHN J. BARRETT",,,,,164,164,0,0,164,,,,,,,"4B4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701071743P040088107649001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SYSTEMS DISTRIBUTORS, INC. 401(K) PROFIT SHARING PLAN","001","1995-05-01","SYSTEMS DISTRIBUTORS, INC.",,,"2881 AMWILER ROAD",,"ATLANTA","GA","30360",,,,,,,,,,,,,,,,,,"582156253","7704518588","423800","SYSTEMS DISTRIBUTORS, INC.",,"2881 AMWILER ROAD",,"ATLANTA","GA","30360",,,,,,,"582156253","7704518588",,,,"2011-06-28T09:09:07-0500","LAURA BLAND",,,,,29,20,0,7,27,0,27,27,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701154132P030012476354001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REUNION MORTGAGE, INC. EMPLOYEE WELFARE BENEFIT PLAN","501","2008-01-01","REUNION MORTGAGE, INC.",,,"860 HILLVIEW COURT, SUITE 300",,"MILPITAS","CA","950354569",,,,,,,,,,,,,,,,,,"943334010","4089418366","522292","REUNION MORTGAGE, INC.",,"860 HILLVIEW COURT, SUITE 300",,"MILPITAS","CA","950354569",,,,,,,"943334010","4089418366",,,,"2011-07-01T15:39:40-0500","MARSHA BERLINSKI",,,,,282,226,0,0,226,,,,,,,"4A4B4D4E4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701154159P040088322625001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"INTERRA SYSTEMS, INC. 401(K) PLAN","001","2002-05-01","INTERRA SYSTEMS, INC.",,,"20195 STEVENS CREEK BOULEVARD","STE 222","CUPERTINO","CA","95014",,,,,,,"20195 STEVENS CREEK BOULEVARD","STE 222","CUPERTINO","CA","95014",,,,,,,"770560316","4088731212","541519","INTERRA SYSTEMS, INC.",,"20195 STEVENS CREEK BOULEVARD","STE 222","CUPERTINO","CA","95014",,,,,,,"770560316","4088731212",,,,"2011-07-01T15:41:16-0500","SUNIL JAIN",,,,,6,8,0,2,10,0,10,9,0,,"2F2G2J2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701154727P030404613696001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHILLIPS MANUFACTURING CO. GROUP LIFE PLAN","506","2001-08-01","PHILLIPS MANUFACTURING CO.",,,"4949 SOUTH 30TH STREET",,"OMAHA","NE","681071553",,,,,,,,,,,,,,,,,,"470760712","4023393800","332300","PHILLIPS MANUFACTURING CO.",,"4949 SOUTH 30TH STREET",,"OMAHA","NE","681071553",,,,,,,"470760712","4023393800",,,,"2011-07-01T15:21:10-0500","BRAD GARLOCK",,,,,125,110,0,0,110,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110630095257P040087546241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TROTTER-VOGEL REALTY PROFIT SHARING PLAN","001","1987-03-01","TROTTER-VOGEL REALTY DBA PRUDENTIAL CALIF. REALTY",,,"180 EL CAMINO REAL",,"SAN BRUNO","CA","94066",,,,,,,,,,,,,,,,,,"942411420","6505891000","531390","TROTTER-VOGEL REALTY DBA PRUDENTIAL CALIF. REALTY",,"180 EL CAMINO REAL",,"SAN BRUNO","CA","94066",,,,,,,"942411420","6505891000",,,,"2011-06-30T09:52:55-0500","LAWRENCE FRANZELLA",,,,,16,12,0,2,14,0,14,14,1,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630135423P030085082145003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DR. GERI ANN DIFRANCO PROFIT SHARING PLAN","001","1992-01-08","GERI ANN DIFRANCO",,,"500 SOUTH ENGEL BOULEVARD",,"PARK RIDGE","IL","600684459",,,,,,,"500 SOUTH ENGEL BOULEVARD",,"PARK RIDGE","IL","600684459",,,,,,,"363560264","8473180066","621210","GERI ANN DIFRANCO",,"500 SOUTH ENGEL BOULEVARD",,"PARK RIDGE","IL","600684459",,,,,,,"363560264","8473180066",,,,"2011-06-30T08:07:36-0500","GERALDINE DIFRANCO",,,,,4,3,,,3,,3,3,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630123804P030401524304001","2010-07-01","2010-11-30","2",,,,"1","1",,,,,,,"QUESTCO EMPLOYEE BENEFIT PLAN TRUST","501","2009-07-01","QUESTCO, INC.",,,"100 COMMERCIAL CIRCLE, BLDG. B",,"CONROE","TX","77304",,,,,,,,,,,,,,,,,,"760355090","9367561980","561300","QUESTCO, INC.",,"100 COMMERCIAL CIRCLE, BLDG. B",,"CONROE","TX","77304",,,,,,,"760355090","9367561980",,,,"2011-06-29T12:31:10-0500","JEANETTE COLLIER",,,,,46,0,,,0,,,,,,,"4A",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701102507P030012452482001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SOUTHEASTERN UROLOGICAL CENTER, P.A. 401(K) PROFIT SHARING PLAN","003","1990-12-01","SOUTHEASTERN UROLOGICAL CENTER,P.A.",,,"2000 CENTRE POINTE BLVD.",,"TALLAHASSEE","FL","32308",,,,,,,,,,,,,,,,,,"591213296","8503090500","621111","SOUTHEASTERN UROLOGICAL CENTER,P.A.",,"2000 CENTRE POINTE BLVD.",,"TALLAHASSEE","FL","32308",,,,,,,"591213296","8503090500",,,,"2011-07-01T10:50:08-0500","CANITA GUNTER PETERSON",,,,,101,75,,20,95,,95,83,9,,"2E2F2G2J2K2R3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701084852P030403789728001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"SOUTHEAST MISSOURI TRANSPORTATION SERVICES, INC. 403 (B) PLAN","001","1974-07-20","SOUTHEAST MISSOURI TRANSPORTATION",,,"704 E. HIGHWAY 72, PO DRAWER 679",,"FREDERICKTOWN","MO","63645",,,,,,,,,,,,,,,,,,"431015444","5737835505","485990","SOUTHEAST MISSOURI TRANSPORTATION",,"704 E. HIGHWAY 72, PO DRAWER 679",,"FREDERICKTOWN","MO","63645",,,,,,,"431015444","5737835505",,,,"2011-07-01T08:47:44-0500","DENNIS WARD",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701085258P040012968978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MANUS TOOL, INC. 401(K) PLAN","001","1998-01-01","MANUS TOOL, INC.",,,"510 S THIRD ST",,"HARRISVILLE","MI","48740",,,,,,,"P.O. BOX 248",,"HARRISVILLE","MI","48740",,,,,,,"383295375","9897363376","332900","MANUS TOOL, INC.",,"510 S THIRD ST",,"HARRISVILLE","MI","48740",,,,,,,"383295375","9897363376",,,,"2011-07-01T08:50:28-0500","GUY HOLM","2011-07-01T08:50:28-0500","GUY HOLM",,,15,15,0,0,15,0,15,14,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706130010P040091212449001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"OPTIMARKET 401(K) RETIREMENT PLAN","001","2008-01-01","OPTIMARKET LLC",,,"30 OLD KINGS HIGHWAY SOUTH, STE 277",,"DARIEN","CT","06820",,,,,,,,,,,,,,,,,,"061623165","2032021635","541990","OPTIMARKET LLC",,"30 OLD KINGS HIGHWAY SOUTH, STE 277",,"DARIEN","CT","06820",,,,,,,"061623165","2032021635",,,,"2011-07-06T12:59:58-0500","ROBERT SLOANE, TRUSTEE","2011-07-06T12:59:58-0500","ROBERT SLOANE, PRINCIPAL",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J3B3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630103434P030401270912001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HELTON AND HELTON ATTORNEYS PROFIT SHARING PLAN","002","1976-01-01","HELTON AND HELTON ATTORNEYS",,,"ASHER BUILDING","P.O. BOX 1070","PINEVILLE","KY","40977",,,,,,,,,,,,,,,,,,"610863107","6063373087","541110","HELTON AND HELTON ATTORNEYS",,"ASHER BUILDING","P.O. BOX 1070","PINEVILLE","KY","40977",,,,,,,"610863107","6063373087",,,,"2011-06-30T10:34:28-0500","J.C. HELTON",,,,,4,4,0,0,4,0,4,4,0,,"2T3D2E2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701150606P040012994386001","2010-02-01","2011-01-31","2",,"1","1","0","0","0","0","0","0","0",,"C.R. LAURENCE, INC. HEALTH AND WELFARE PLAN","501","2010-02-01","C R LAURENCE CO INC",,,"2503 E VERNON AVE",,"LOS ANGELES","CA","90058",,,,,,,"2503 E VERNON AVE",,"LOS ANGELES","CA","90058",,,,,,,"952267091","3235881281","332300","BENEFIT SERVICE CENTER",,"9500 TOPANGA CANYON BLVD",,"CHATSWORTH","CA","91311",,,,,,,"770287063","8186780040",,,,"2011-07-01T15:04:38-0500","ARTY FELES",,,,,948,981,,,981,,981,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706091650P030088390353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"METZ BAILEY & MCLOUGHLIN PENSION PLAN","001","1974-01-01","METZ BAILEY & MCLOUGHLIN",,,"33 EAST SCHROCK ROAD",,"WESTERVILLE","OH","43081",,,,,,,,,,,,,,,,,,"314418864","6148822327","541110","METZ BAILEY & MCLOUGHLIN",,"33 EAST SCHROCK ROAD",,"WESTERVILLE","OH","43081",,,,,,,"314418864","6148822327",,,,"2011-07-06T09:16:39-0500","WILLIAM MCLOUGHLIN",,,,,13,9,1,2,12,0,12,12,0,,"2T2C3D2G2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706093554P040091101793006","2008-11-01","2009-10-31","2",,,,,,,,,"1",,,"DETHMERS MANUFACTURING GROUP TERM LIFE INSURANCE","505","1999-11-01","DETHMERS MANUFACTURING COMPANY",,,,,,,,,,,,,,"HIGHWAY 18 EAST",,"BOYDEN","IA","51234",,,,,,,"420891425","7127252311","333100","DETHMERS MANUFACTURING COMPANY",,,,,,,,,,,,,"420891425","7127252311",,,,"2011-06-27T08:41:16-0500","KEVIN TEN HAKEN","2011-06-27T08:41:16-0500","KEVIN TEN HAKEN",,,290,287,,,287,,,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706093706P030012867986001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THOMAS B RUTTER LTD EMPLOYEE PROFIT SHARING TRUST","003","1988-01-01","THOMAS B RUTTER LTD",,,"2001 MARKET STREET","SUITE 1100","PHILADELPHIA","PA","19103",,,,,,,,,,,,,,,,,,"231979147","2155641775","541110","THOMAS B RUTTER LTD",,"2001 MARKET STREET","SUITE 1100","PHILADELPHIA","PA","19103",,,,,,,"231979147","2155641775",,,,"2011-07-06T09:36:53-0500","THOMAS B RUTTER",,,,,3,0,0,1,1,0,1,1,0,,"2E3D3F",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706135205P040013408754001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"RODNEY E. SHIVERS, DDS, 401(K) PLAN","001","2006-01-01","RODNEY E. SHIVERS, DDS",,,"13509 N. MERIDIAN SUITE 1",,"OKLAHOMA CITY","OK","73120",,,,,,,,,,,,,,,,,,"731460351","4057554099","621210","RODNEY E. SHIVERS, DDS",,"13509 N. MERIDIAN SUITE 1",,"OKLAHOMA CITY","OK","73120",,,,,,,"731460351","4057554099",,,,"2011-07-06T13:51:51-0500","RODNEY E. SHIVERS, DDS","2011-07-06T13:51:51-0500","RODNEY E. SHIVERS, DDS",,,6,6,0,0,6,0,6,4,0,,"2E2F2G2J2K2T3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630140008P040012899026003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ARTHRITIS CARE & THERAPY CENTER, PC PROFIT SHARING PLAN & TRUST","001","1993-01-01","ARTHRITIS CARE & THERAPY CENTER, P",,,"145 ROGERS COMMERCE BLVD",,"BOILING SPRINGS","SC","29316",,,,,,,,,,,,,,,,,,"570914479","8644313947","621111","ARTHRITIS CARE & THERAPY CENTER, P",,"145 ROGERS COMMERCE BLVD",,"BOILING SPRINGS","SC","29316",,,,,,,"570914479","8644313947",,,,"2011-06-23T16:36:16-0500","ROBERT E DORLON","2011-06-23T16:36:26-0500","ROBERT E DORLON",,,8,8,0,0,8,0,8,,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630151604P030401869808001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRAVEL ACCIDENT INSURANCE PLAN","505","1952-02-06","S.C. JOHNSON & SON, INC.",,,"1525 HOWE ST.",,"RACINE","WI","53403",,,,,,,,,,,,,,,,,,"390379990","2622602000","325600","BENEFITS ADMINISTRATION COMMITTEE",,"1525 HOWE STREET",,"RACINE","WI","534032237",,,,,,,"391246792","2622602000",,,,"2011-06-30T15:14:27-0500","DANIEL DEBAKER","2011-06-30T15:15:58-0500","DANIEL DEBAKER",,,3354,3289,0,0,3289,,,,,,,"4L4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110701032533P030403177616001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SIOUXLAND CYTOLOGY CONSULTANTS, L.L.C. 401(K) PLAN AND TRUST","001","2002-06-01","SIOUXLAND CYTOLOGY CONSULTANTS, L.L .C.",,,"2730 PIERCE STREET, SUITE 405",,"SIOUX CITY","IA","51104",,,,,,,,,,,,,,,,,,"043649300","4024941505","621510","SIOUXLAND CYTOLOGY CONSULTANTS, L.L .C.",,"2730 PIERCE STREET, SUITE 405",,"SIOUX CITY","IA","51104",,,,,,,"043649300","4024941505",,,,"2011-06-30T13:42:47-0500","ERIN KIMBELL",,,,,6,6,0,0,6,0,6,6,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701032632P030085450241001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARBITRAGE PARTNERS LLC PROFIT SHARING PLAN","002","2002-01-01","ARBITRAGE PARTNERS LLC",,,"408 ST PETER STREET","SUITE 444","ST PAUL","MN","55102",,,,,,,,,,,,,,,,,,"411872744","6512510380","523120","ARBITRAGE PARTNERS LLC",,"408 ST PETER STREET","SUITE 444","ST PAUL","MN","55102",,,,,,,"411872744","6512510380",,,,"2011-06-30T15:16:21-0500","ROBERT ROTCHADL",,,,,7,2,0,7,9,0,9,9,0,,"2A2E2G2F3B",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110701073723P030085537377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FAMILY PRACTICE ASSOCIATES, INC. MONEY PURCHASE PENSION PLAN","001","1982-07-01","FAMILY PRACTICE ASSOCIATES, INC.",,,"P.O. BOX 102",,"CAMBRIDGE","VT","05444",,,,,,,,,,,,,,,,,,"030282319","8026445114","621111","FAMILY PRACTICE ASSOCIATES, INC.",,"P.O. BOX 102",,"CAMBRIDGE","VT","05444",,,,,,,"030282319","8026445114",,,,"2011-07-01T07:21:28-0500","SUSAN MILLER",,,,,15,14,0,1,15,0,15,15,0,,"2C2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110630154806P040087723601001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"CARDIOCOM 401(K) SAVINGS PLAN","001","2007-02-12","CARDIOCOM LLC",,,"7980 CENTURY BLVD",,"CHANHASSEN","MN","55317",,,,,,,"7980 CENTURY BLVD",,"CHANHASSEN","MN","55317",,,,,,,"411929175","8882438881","541990","CARDIOCOM LLC",,"7980 CENTURY BLVD",,"CHANHASSEN","MN","55317",,,,,,,"411929175","8882438881",,,,"2011-06-30T15:47:49-0500","JEFFREY PANEK",,,,,42,39,0,6,45,0,45,18,0,,"2F2G2J2T3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110706124619P040091206849001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PEDIATRIC PROFESSIONAL ASSOCIATES, P.C. NEW COMPARABILITY 401(K) PROFIT SHARING PLAN","001","1993-01-01","PEDIATRIC PROFESSIONAL ASSOCIATES, P.C.",,,"413 BROADWAY",,"METHUEN","MA","01844",,,,,,,,,,,,,,,,,,"042919762","9786810711","621111","PEDIATRIC PROFESSIONAL ASSOCIATES, P.C.",,"413 BROADWAY",,"METHUEN","MA","01844",,,,,,,"042919762","9786810711",,,,"2011-07-05T14:08:59-0500","DAVID A. AVILA, DO","2011-07-05T14:08:59-0500","DAVID A. AVILA, DO",,,27,24,0,1,25,0,25,25,0,,"2A2E2F2G2J2T3D",,,,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630164314P030002505219007","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"AMENDED PROFIT SHARING PLAN OF DENVER ARTHRITIS CLINIC, P.C.","001","1973-10-04","DENVER ARTHRITIS CLINIC, P.C.",,,"200 SPRUCE ST.",,"DENVER","CO","80230",,,,,,,"200 SPRUCE ST.",,"DENVER","CO","80230",,,,,,,"840717541","3033027349","621111","DENVER ARTHRITIS CLINIC, P.C.",,"200 SPRUCE ST.",,"DENVER","CO","80230",,,,,,,"840717541","3033942828",,,,"2011-07-08T05:34:16-0500","KENNETH GLASSMAN",,,,,50,60,,,60,,60,60,2,,"2A2E2G2J",,,,"1",,,,"1",,,,,,"1","1","1","1",,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110701031130P030085440337001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ELEMENT K CORPORATION HEALTH & WELFARE PLAN","501","2004-01-01","ELEMENT K CORPORATION",,,"500 CANAL VIEW BLVD",,"ROCHESTER","NY","14623",,,,,,,,,,,,,,,,,,"161599429","5852407500","611000","ELEMENT K CORPORATION",,"500 CANAL VIEW BLVD",,"ROCHESTER","NY","14623",,,,,,,"161599429","5852407500",,,,"2011-06-30T14:12:23-0500","DONNA MAXWELL",,,,,354,348,13,9,370,,,,,,,"4A4B4D4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706083821P030416669040001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIDWEST COMMUNICATIONS, INC. DENTAL PLAN","503","1993-12-01","MIDWEST COMMUNICATIONS, INC.",,,"904 GRAND AVE",,"WAUSAU","WI","54403",,,,,,,,,,,,,,,,,,"391151193","7158421437","515100","MIDWEST COMMUNICATIONS, INC.",,"904 GRAND AVE",,"WAUSAU","WI","54403",,,,,,,"391151193","7158421437",,,,"2011-07-06T08:31:54-0500","PAUL W. RAHMLOW",,,,,144,160,0,0,160,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706124646P030088498657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MADISON LUMBER & HARDWARE, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","1977-01-01","MADISON LUMBER & HARDWARE, INC.",,,"2257 TONGASS AVENUE",,"KETCHIKAN","AK","99901",,,,,,,,,,,,,,,,,,"920036766","9072259828","113310","MADISON LUMBER & HARDWARE, INC.",,"2257 TONGASS AVENUE",,"KETCHIKAN","AK","99901",,,,,,,"920036766","9072259828",,,,"2011-07-06T12:26:15-0500","JANICE HEIKKILA-WALKER",,,,,34,24,5,2,31,1,32,32,2,,"2O2I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706124834P030417245136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW AVENUES TO INDEPENDENCE, INC. GROUP DENTAL PLAN","504","1998-01-01","NEW AVENUES TO INDEPENDENCE, INC.",,,"17608 EUCLID AVENUE",,"CLEVELAND","OH","441121216",,,,,,,,,,,,,,,,,,"340871661","2164811907","623000","NEW AVENUES TO INDEPENDENCE, INC.",,"17608 EUCLID AVENUE",,"CLEVELAND","OH","441121216",,,,,,,"340871661","2164811907",,,,"2011-07-06T12:39:22-0500","THOMAS LEWINS",,,,,116,121,0,0,121,,,,,,,"4D","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110630142040P030401739488001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SPECIAL OLYMPICS INDIANA, INC. OR INDIANA SPECIAL OLYMPICS, INC. TSA","002","1995-01-01","SPECIAL OLYMPICS INDIANA, INC.","INDIANA SPECIAL OLYMPICS, INC.",,"6100 W 96TH STREET, STE 270",,"INDIANAPOLIS","IN","462786006",,,,,,,,,,,,,,,,,,"351262574","3173282000","813000","SPECIAL OLYMPICS INDIANA, INC.",,"6100 W 96TH STREET, STE 270",,"INDIANAPOLIS","IN","462786006",,,,,,,"351262574","3173282000",,,,"2011-06-30T14:20:15-0500","LOUANN GARRETT",,,,,0,,,,0,,0,,,,"2L",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630142158P040087678033001","2010-01-01","2010-12-31","2",,"0",,"0","0",,,,,,,"M R PITTMAN GROUP LLC 401(K) PLAN","001","2007-09-30","M R PITTMAN GROUP, LLC",,,"505 COMMERCE POINT",,"HARAHAN","LA","70123",,,,,,,"505 COMMERCE POINT",,"HARAHAN","LA","70123",,,,,,,"200709842","5047333040","237990","M R PITTMAN GROUP, LLC",,"505 COMMERCE POINT",,"HARAHAN","LA","70123",,,,,,,"200709842","5047333040",,,,"2011-06-30T14:19:45-0500","CHRIS LAICHE",,,,,65,61,0,0,61,0,61,26,0,,"2F2G2J2K2T3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630192132P040398455328001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"HRN SERVICES,INC.","501","1991-01-01","HRN SERVICES, INC.",,,"8383 WILSHIRE BLVD. SUITE 258",,"BEVERLY HILLS","CA","90211",,,,,,,"8383 WILSHIRE BLVD. SUITE 258",,"BEVERLY HILLS","CA","90211",,,,,,,"954311034","3239511450","623000","HRN SERVICES, INC.",,"8383 WILSHIRE BLVD. SUITE 258",,"BEVERLY HILLS","CA","90211",,,,,,,"954311034","3239511450",,,,"2011-06-30T19:14:33-0500","JOHN C HERNANDEZ","2011-06-30T19:19:26-0500","ARTHUR FLASTER",,,430,319,20,,339,,339,,,,,"4A4B4D4E","1","0",,"0","1","0",,"0",,,,,,"1","4",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110701124105P040088242961001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NANCY S TEES INC PROFIT SHARING PLAN","001","2009-04-09","NANCY S TEES INC",,,"975 ORLANDO AVENUE",,"WINTER PARK","FL","32789",,,,,,,,,,,,,,,,,,"264638622","4077406781","424300","NANCY S TEES INC",,"975 ORLANDO AVENUE",,"WINTER PARK","FL","32789",,,,,,,"264638622","4077406781",,,,"2011-07-01T12:08:18-0500","MOSES SALCIDO",,,,,4,2,,,2,,2,1,,,"2E2G2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-01","Filed with authorized/valid electronic signature",, "20110706135355P030417386848001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TRANSFORMATION SYSTEMS, INC. 401K PROFIT SHARING PLAN","001","2002-02-01","TRANSFORMATION SYSTEMS, INC.",,,"PO BOX 1106",,"DUBLIN","VA","240841106",,,,,,,,,,,,,,,,,,"541734641","5406745655","541600","TRANSFORMATION SYSTEMS, INC.",,"PO BOX 1106",,"DUBLIN","VA","240841106",,,,,,,"541734641","5406745655",,,,"2011-07-06T13:49:27-0500","ROBERT WILSON",,,,,17,28,0,2,30,0,30,22,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706141028P040413440736001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RIMCOR, INC. RETIREMENT SAVINGS PLAN","001","1970-07-01","RIMCOR, INC.",,,"10995 SHELTON ROAD",,"BASTROP","LA","71220",,,,,,,,,,,,,,,,,,"720572406","3182816303","238900","RIMCOR, INC.",,"10995 SHELTON ROAD",,"BASTROP","LA","71220",,,,,,,"720572406","3182816303",,,,"2011-07-06T14:05:36-0500","KEITH MYERS",,,,,49,41,0,9,50,0,50,49,4,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110706141512P040091248593001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"MORTON FEDERAL CREDIT UNION 401(K) PLAN","001","1998-01-01","MORTON FEDERAL CREDIT UNION",,,"88 WASHINGTON STREET",,"TAUNTON","MA","02780",,,,,,,,,,,,,,,,,,"042638246","5088287036","522130","MORTON FEDERAL CREDIT UNION",,"88 WASHINGTON STREET",,"TAUNTON","MA","02780",,,,,,,"042638246","5088287036",,,,"2011-07-06T14:14:58-0500","HEIDI FIGUEIREDO","2011-07-06T14:14:58-0500","HEIDI FIGUEIREDO",,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110706141540P030088553585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BRANDON H BARTON JR DDS PC 401(K) PROFIT SHARING PLAN & TRUST","001","2005-03-01","BRANDON H BARTON JR DDS PC",,,"11200 E. MCNICHOLS ROAD",,"DETROIT","MI","48234",,,,,,,,,,,,,,,,,,"382492460","3135216400","621210","BRANDON H BARTON JR DDS PC",,"11200 E. MCNICHOLS ROAD",,"DETROIT","MI","48234",,,,,,,"382492460","3135216400",,,,"2011-07-06T02:15:36-0500","BRANDON H BARTON JR DDS PC",,,,,6,6,0,0,6,0,6,5,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-06","Filed with authorized/valid electronic signature",, "20110629154508P030084556945002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"GREATER ELGIN EMERGENCY SPECIALISTS, LTD. CASH OR DEFERRED PROFIT-SHARING PLAN AND TRUST","001","2004-10-18","GREATER ELGIN EMERGENCY SPCLSTS LT",,,"810 QUAIL RIDGE DRIVE",,"WESTMONT","IL","60559",,,,,,,,,,,,,,,,,,"061724186","6303218300","621111","GREATER ELGIN EMERGENCY SPCLSTS LT",,"810 QUAIL RIDGE DRIVE",,"WESTMONT","IL","60559",,,,,,,"061724186","6303218300",,,,"2011-06-29T16:41:41-0500","FRANK PANGALLO, MD",,,,,32,0,0,33,33,0,33,33,,,"2E2G2J2A",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629162928P030084577025001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COMMONWEALTH ORAL & FACIAL SURGERY PROFIT SHARING PLAN","002","1971-12-01","COMMONWEALTH ORAL & FACIAL SURGERY",,,"P. O. BOX 71930",,"RICHMOND","VA","23255",,,,,,,,,,,,,,,,,,"540897518","8043541600","621210","COMMONWEALTH ORAL & FACIAL SURGERY",,"P. O. BOX 71930",,"RICHMOND","VA","23255",,,,,,,"540897518","8043541600",,,,"2011-06-29T16:28:32-0500","JAMES F. NELSON",,,,,56,46,0,6,52,0,52,52,1,,"2A2E2H2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630085636P040397166848001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"THE PATRIOT-NEWS CO. EMPLOYEE DISABILITY ACCOUNT PLAN","504","1990-06-15","THE PATRIOT-NEWS CO.",,,"2020 TECHNOLOGY PARKWAY","SUITE 300","MECHANICSBURG","PA","17050",,,,,,,,,,,,,,,,,,"231304402","7172558275","511110","THE PATRIOT-NEWS CO.",,"2020 TECHNOLOGY PARKWAY","SUITE 300","MECHANICSBURG","PA","17050",,,,,,,"222846868","7172558275",,,,"2011-06-30T08:55:24-0500","MICHAEL J. MORROW",,,,,371,0,0,0,0,,,,,,,"4H","0","0","0","1","0","0","0","1","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629055354P040394113888001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE HARDY GROUP INC 401(K) PLAN AND TRUST","002","1998-06-01","THE HARDY GROUP INC",,,"1200 PLANTATION ISLAND DR S","SUITE 120","SAINT AUGUSTINE","FL","320803114",,,,,,,"1200 PLANTATION ISLAND DR S","SUITE 120","SAINT AUGUSTINE","FL","320803114",,,,,,,"593501197","9044715800","236200","THE HARDY GROUP INC",,"1200 PLANTATION ISLAND DR S","SUITE 120","SAINT AUGUSTINE","FL","320803114",,,,,,,"593501197","9044715800",,,,"2011-06-29T05:37:39-0500","RICHARD L HARDY",,,,,18,12,0,5,17,0,17,16,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629134907P040086993633001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"ORCHID INTERNATIONAL 401(K) RETIREMENT PLAN","001","1995-09-01","ORCHID INTERNATIONAL GROUP, INC.",,,"94 BELINDA PARKWAY",,"MT. JULIET","TN","371223600",,,,,,,,,,,,,,,,,,"621631025","5198692906","332110","ORCHID INTERNATIONAL GROUP, INC.",,"94 BELINDA PARKWAY",,"MT. JULIET","TN","371223600",,,,,,,"621631025","5198692906",,,,"2011-06-29T13:49:04-0500","CHRIS STRONG","2011-06-29T13:49:04-0500","CHRIS STRONG",,,446,246,0,27,273,0,273,155,8,,"2E2F2G2J2K2T3D",,"1",,"1",,"1",,"1",,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629091357P030084373601001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SCOPE PACKAGING, INC. 401K PLAN","001","1974-09-30","SCOPE PACKAGING, INC.",,,"P O BOX 3768",,"ORANGE","CA","92857",,,,,,,,,,,,,,,,,,"952420984","7149984411","322200","SCOPE PACKAGING, INC.",,"P O BOX 3768",,"ORANGE","CA","92857",,,,,,,"952420984","7149984411",,,,"2011-06-28T18:26:28-0500","MARGARET STEWART",,,,,61,31,0,18,49,0,49,49,0,,"2E2G2J2K3D2F",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629131812P040086979777003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"SILVER LINE PLASTICS CORPORATION GROUP INSURANCE PLAN","501","1997-09-01","SILVER-LINE PLASTICS CORP.",,,"900 RIVERSIDE DRIVE",,"ASHEVILLE","NC","28804",,,,,,,,,,,,,,,,,,"560901346","8282528755","326100","SILVER-LINE PLASTICS CORP.",,"900 RIVERSIDE DRIVE",,"ASHEVILLE","NC","28804",,,,,,,"560901346","8282528755",,,,"2011-06-28T04:21:00-0500","WILLIAM H. BEARD",,,,,186,175,,,175,,,,,,,"4A4B4F4L","1",,,"1","1",,,"1",,,,,,"1","5","1",,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629111257P040086913249001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LOUISIANA CULINARY INSTITUTE L 401(K) PROFIT SHARING PLAN & TRUST","001","2008-02-01","LOUISIANA CULINARY INSTITUTE L",,,"10550 AIRLINE HWY",,"BATON ROUGE","LA","70816",,,,,,,,,,,,,,,,,,"510431235","2257698820","611000","LOUISIANA CULINARY INSTITUTE L",,"10550 AIRLINE HWY",,"BATON ROUGE","LA","70816",,,,,,,"510431235","2257698820",,,,"2011-06-29T11:12:54-0500","LOUISIANA CULINARY INSTITUTE L",,,,,22,21,0,2,23,0,23,16,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","0",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629102916P040086893377001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"GOLDEN MANAGEMENT COMPANY 401(K) PLAN","001","1999-01-01","GOLDEN THREE MANAGEMENT COMPANY, INC. C/O THE WINE EMPORIUM",,,"607 TREMONT ST",,"BOSTON","MA","02118",,,,,,,"THE WINE EMPORIUM","607 TREMONT STREET","BOSTON","MA","02118",,,,,,,"043521908","6172620379","445310","GOLDEN THREE MANAGEMENT COMPANY, INC. C/O THE WINE EMPORIUM",,"607 TREMONT ST",,"BOSTON","MA","02118",,,,,,,"043521908","6172620379",,,,"2011-06-27T12:12:16-0500","MARK GOLDEN","2011-06-27T12:12:16-0500","MARK GOLDEN",,,5,0,,,0,,0,0,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629141735P030398965904001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MIDWEST DENTAL EMPLOYEE DENTAL BENEFIT PLAN","503","1999-01-01","MIDWEST DENTAL INC",,"JAMES MYER","PO BOX 69",,"MONDOVI","WI","54755",,,,,,,"PO BOX 69",,"MONDOVI","WI","54755",,,,,,,"392043208","7159265050","621210","MIDWEST DENTAL INC","JAMES MYER","PO BOX 69",,"MONDOVI","WI","54755",,,,,,,"392043208","7159265050",,,,"2011-06-29T14:05:00-0500","JAMES MYER",,,,,529,558,0,0,558,0,558,0,0,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629184119P030399498464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP BASIC LIFE/ADD, VOL. LIFE/ADD AND LTD","501","2006-05-01","DEVELOPMENT CORPORATION FOR ISRAEL",,,"575 LEXINGTON AVENUE",,"NEW YORK","NY","10022",,,,,,,,,,,,,,,,,,"135639495","2123398835","523120","DEVELOPMENT CORPORATION FOR ISRAEL",,"575 LEXINGTON AVENUE",,"NEW YORK","NY","10022",,,,,,,"135639495","2123398835",,,,"2011-06-29T18:41:13-0500","BARRY LOYAL",,,,,154,456,0,0,456,,,,,,,"4B4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630095739P040087549089001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE LAW OFFICES OF PATRICK E. RICHARDSON, P.C. 401K PROFIT SHARING PLAN","001","1984-01-01","THE LAW OFFICES OF PATRICK E. RICHARDSON, P.C.",,,"620 ROSEWOOD DR","P.O. BOX 987","KIRKSVILLE","MO","635012477",,,,,,,,,,,,,,,,,,"431286073","6606655800","541110","THE LAW OFFICES OF PATRICK E. RICHARDSON, P.C.",,"620 ROSEWOOD DR","P.O. BOX 987","KIRKSVILLE","MO","635012477",,,,,,,"431286073","6606655800",,,,"2011-06-30T09:49:17-0500","PATRICK E. RICHARDSON",,,,,5,4,0,0,4,0,4,4,0,,"2E2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630100825P030084978625001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BUCHBINDER TUNICK & COMPANY LLP EMPLOYEES 401(K) S","001","1981-09-01","BUCHBINDER TUNICK & COMPANY",,,"1 PENNSYLVANIA PLAZA","SUITE 5335","NEW YORK","NY","10119",,,,,,,,,,,,,,,,,,"131578842","2126955003","541211","BUCHBINDER TUNICK & COMPANY",,"1 PENNSYLVANIA PLAZA","SUITE 5335","NEW YORK","NY","10119",,,,,,,"131578842","2126955003",,,,"2011-06-30T10:08:20-0500","HARRY WENDROFF",,,,,107,88,4,18,110,0,110,104,9,,"2E2J2F2H2K2R3B2T",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629210756P040012833698001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VANGUARD PROTTYPE DEFINED CONTRIBUTION PL PROFIT SHARING PLAN","001","1990-01-01","ROBERT JOSEPH MIRABILE MD",,"ROBERT JOSEPH MIRABILE MD","1050 DEKALB PIKE",,"BLUE BELL","PA","19422",,,,,,,"1050 DEKALB PIKE",,"BLUE BELL","PA","19422",,,,,,,"232559709","6102728821","621111","ROBERT JOSEPH MIRABILE MD","ROBERT JOSEPH MIRABILE MD","1050 DEKALB PIKE",,"BLUE BELL","PA","19422",,,,,,,"232559709","6102728821",,,,"2011-06-29T20:57:37-0500","ROBERT MIRABILE",,,,,7,6,0,1,7,0,7,7,0,,"2F2G3B3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630103605P030084991377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RESOLUTION INC. HEALTH AND WELFARE PLAN","507","1988-04-01","RESOLUTION , INC.",,,"327 HOLLY COURT","SUITE 20","WILLISTON","VT","054950000",,,,,,,,,,,,,,,,,,"030284371","8028628881","525990","RESOLUTION , INC.",,"327 HOLLY COURT","SUITE 20","WILLISTON","VT","054950000",,,,,,,"030284371","8028628881",,,,"2011-06-30T10:35:57-0500","HOLLY SUPERNEAU","2011-06-30T10:35:57-0500","HOLLY SUPERNEAU",,,56,37,,,37,,,,,,,"4A4B4D4F4H4R","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629140803P040012799042001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN CANCER SOCIETY, EAST CENTRAL DIVISION, IN FLEXIBLE BENEFITS PLAN","506","1998-01-01","AMERICAN CANCER SOCIETY, EAST CENTRAL DIVISION, INC.",,,"P.O. BOX 897",,"HERSHEY","PA","17033",,,,,,,,,,,,,,,,,,"251798733","7175336144","813000","AMERICAN CANCER SOCIETY, EAST CENTRAL DIVISION, INC.",,"P.O. BOX 897",,"HERSHEY","PA","17033",,,,,,,"251798733","7175336144",,,,"2011-06-29T12:30:38-0500","JAMES PYNE",,,,,382,303,62,0,365,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","7","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629132603P040395026720001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WELLWOOD PLUMBING & HEATING CO., INC. PROFIT SHARING 401(K) PLAN","001","1996-01-01","WELLWOOD PLUMBING & HEATING CO., INC.",,,"274 SOUTH FIRST ST.",,"LINDENHURST","NY","11757",,,,,,,,,,,,,,,,,,"111824293","6319575800","238220","WELLWOOD PLUMBING & HEATING CO., INC.",,"274 SOUTH FIRST ST.",,"LINDENHURST","NY","11757",,,,,,,"111824293","6319575800",,,,"2011-06-29T13:25:12-0500","KENNETH GARRAFFA",,,,,11,11,0,0,11,0,11,11,0,,"2E2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629154747P040006623109001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SES OREGON ENTERPRISES, INC. 401K PLAN","001","2007-10-16","SES OREGON ENTERPRISES, INC.",,,"1500 NW HEALY CT",,"BEND","OR","977015521",,,,,,,,,,,,,,,,,,"261279261","5413188454","812111","SES OREGON ENTERPRISES, INC.",,"1500 NW HEALY CT",,"BEND","OR","977015521",,,,,,,"261279261","5413188454",,,,"2011-06-29T15:47:31-0500","EDWIN STAINS","2011-06-29T15:47:31-0500","EDWIN STAINS",,,7,9,0,0,9,0,9,2,0,,"2E2F2G2J2K3D3F",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630113234P040012884978001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HEARTLAND INDEPENDENT PROVIDER NETWORK SAFE HARBOR 401(K) PLAN","001","2000-04-01","HEARTLAND INDEPENDENT PROVIDER NETWORK",,,"3260 20TH ST S",,"FARGO","ND","58103",,,,,,,,,,,,,,,,,,"450454494","7014783627","541800","HEARTLAND INDEPENDENT PROVIDER NETWORK",,"3260 20TH ST S",,"FARGO","ND","58103",,,,,,,"450454494","7014783627",,,,"2011-06-30T11:32:21-0500","SUE MULLINS",,,,,2,2,0,0,2,0,2,2,0,,"2E2F2G2J2T3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629140822P030084518721001","1998-01-01","1998-12-31","2",,"0","1","0","0","0","0","0","1","0",,"EMPLOYEE BENEFITS PLAN OF THE ARC OF VOLUSIA, INC.","001","1980-10-01","THE ARC OF VOLUSIA, INC.",,,"100 JIMMY HUGER CIRCLE",,"DAYTONA BEACH","FL","32117",,,,,,,"100 JIMMY HUGER CIRCLE",,"DAYTONA BEACH","FL","32117",,,,,,,"591035137","3862744736","624310","THE ARC OF VOLUSIA, INC.",,"100 JIMMY HUGER CIRCLE",,"DAYTONA BEACH","FL","32117",,,,,,,"591035137","3862744736",,,,"2011-06-15T12:26:33-0500","PATRICIA LARKIN",,,,,47,46,2,,48,,48,,10,,"1A3D1G",,"1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629150757P030084542145001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"S & B ENGINEERS AND CONSTRUCTORS, LTD. RETIREMENT SAVINGS PLAN","002","1985-11-01","S&B ENGINEERS AND CONSTRUCTORS,LTD.",,,"7809 PARK PLACE BLVD.",,"HOUSTON","TX","77087",,,,,,,"7809 PARK PLACE BLVD.",,"HOUSTON","TX","77087",,,,,,,"760355284","7136454141","237990","S&B ENGINEERS AND CONSTRUCTORS,LTD.",,"7809 PARK PLACE BLVD.",,"HOUSTON","TX","77087",,,,,,,"760355284","7136454141",,,,"2011-06-29T15:07:22-0500","JOSUE PEREZ",,,,,4933,3400,60,876,4336,19,4355,1993,6,,"2E2F2G2J2K2R2T3H",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629185216P030084636321001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE GOLDEN 1 CREDIT UNION GROUP INSURANCE PLAN","501","1977-02-01","THE GOLDEN 1 CREDIT UNION",,,"8945 CAL CENTER DRIVE",,"SACRAMENTO","CA","95826",,,,,,,,,,,,,,,,,,"940362025","9167322862","522130","THE GOLDEN 1 CREDIT UNION",,"8945 CAL CENTER DRIVE",,"SACRAMENTO","CA","95826",,,,,,,"940362025","9167322862",,,,"2011-06-29T18:52:07-0500","TRACY STRATTON",,,,,1325,1221,18,0,1239,,,,,,,"4A4B4D4E4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629145639P040395224384001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"GORDON BROTHERS GROUP LLC HEALTH BENEFITS PLAN","501","1988-03-25","GORDON BROTHERS GROUP LLC",,,"101 HUNTINGTON AVE FL 10",,"BOSTON","MA","021997607",,,,,,,,,,,,,,,,,,"043403041","6174263233","541990","GORDON BROTHERS GROUP LLC",,"101 HUNTINGTON AVE FL 10",,"BOSTON","MA","021997607",,,,,,,"043403041","6174263233",,,,"2011-06-29T14:56:28-0500","KAREN MEIER",,,,,157,155,0,0,155,,,,,,,"4A4D","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629090724P030084370897004","2010-01-01","2010-12-31","2",,,,,,,,,,,,"WELS VEBA GROUP HEALTH CARE PLAN","501","1984-02-01","WI EVANGELICAL LUTHERAN SYNOD",,,"2929 N. MAYFAIR ROAD",,"MILWAUKEE","WI","53222",,,,,,,,,,,,,,,,,,"391522925","4142563860","813000","VEBA COMMISSION-WELS","JON FLANAGAN","2949 N. MAYFAIR ROAD, 2ND FLOOR",,"MILWAUKEE","WI","53222",,,,,,,"390842084","4142563245",,,,"2011-06-21T03:19:48-0500","JON M. FLANAGAN",,,,,4462,3546,916,35,4497,,,,,,,"4A4B4D4F4H","1",,"1",,"1",,"1",,,,,"1",,"1","4","1",,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630122057P030401487856001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PREMIER PHYSICIANS CENTERS, INC. LONG TERM DISABILITY PLAN","503","2006-01-01","PREMIER PHYSICIANS CENTERS, INC.",,,"20525 CENTER RIDGE ROAD, SUITE 220",,"ROCKY RIVER","OH","44116",,,,,,,,,,,,,,,,,,"341783789","4403330878","621111","PREMIER PHYSICIANS CENTERS, INC.",,"20525 CENTER RIDGE ROAD, SUITE 220",,"ROCKY RIVER","OH","44116",,,,,,,"341783789","4403330878",,,,"2011-06-30T12:20:42-0500","DAVID APPEL",,,,,196,0,0,0,0,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630122355P030085039841001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CROGHAN COLONIAL BANK HEALTH INSURANCE PLAN","505","2001-08-01","THE CROGHAN COLONIAL BANK",,,"323 CROGHAN STREET",,"FREMONT","OH","43420",,,,,,,,,,,,,,,,,,"341415683","4193327301","522110","THE CROGHAN COLONIAL BANK",,"323 CROGHAN STREET",,"FREMONT","OH","43420",,,,,,,"341415683","4193327301",,,,"2011-06-30T12:23:53-0500","KENDALL RIEMAN","2011-06-30T12:23:53-0500","KENDALL RIEMAN",,,111,110,0,0,110,,,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629112317P030002481011001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED WAY OF SOUTH HAMPTON ROADS THRIFT AND RETIREMENT PLAN","002","1993-08-01","UNITED WAY OF SOUTH HAMPTON ROADS",,,"2515 WALMER AVENUE",,"NORFOLK","VA","23513",,,,,,,,,,,,,,,,,,"540506322","7578538500","813000","UNITED WAY OF SOUTH HAMPTON ROADS",,"2515 WALMER AVENUE",,"NORFOLK","VA","23513",,,,,,,"540506322","7578538500",,,,"2011-06-29T10:06:29-0500","WILLIAM REID",,,,,92,54,0,34,88,0,88,70,5,,"2F2G2M2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629125148P030012279314001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JAMES W. KEARNEY, DDS 401(K) PROFIT SHARING PLAN","001","1996-01-01","JAMES W. KEARNEY, DDS",,,"2918 AUSTIN BLUFFS PWY SUITE 100",,"COLORADO SPRINGS","CO","80918",,,,,,,,,,,,,,,,,,"840982430","7195938488","621210","JAMES W. KEARNEY, DDS",,"2918 AUSTIN BLUFFS PWY SUITE 100",,"COLORADO SPRINGS","CO","80918",,,,,,,"840982430","7195938488",,,,"2011-06-29T06:33:37-0500","JAMES W KEARNEY",,,,,4,3,0,0,3,0,3,3,0,,"3B2E2H2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629125237P040086966689001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"SMITH & KRANTZ, L.L.P. RETIREMENT PLAN","001","1999-01-01","SMITH & KRANTZ, L.L.P.",,,"122 EAST 42ND STREET, SUITE 1518",,"NEW YORK","NY","10168",,,,,,,,,,,,,,,,,,"300095550","2126610279","541190","SMITH & KRANTZ, L.L.P.",,"122 EAST 42ND STREET, SUITE 1518",,"NEW YORK","NY","10168",,,,,,,"300095550","2126610279",,,,"2011-06-29T12:49:33-0500","JEREMY KRANTZ",,,,,7,7,0,0,7,0,7,7,0,,"2A2E2F2G3B3D",,"1","0","1","0","0","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630074508P040012869298001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"HOSPICE AT CHARLOTTE FLEXIBLE BENEFITS PLAN","501","1996-11-01","HOSPICE & PALLIATIVE CARE CHARLOTTE REGION",,,"1420 EAST SEVENTH STREET",,"CHARLOTTE","NC","28204",,,,,,,,,,,,,,,,,,"561219017","7043750100","621498","HOSPICE & PALLIATIVE CARE CHARLOTTE REGION",,"1420 EAST SEVENTH STREET",,"CHARLOTTE","NC","28204",,,,,,,"561219017","7043750100",,,,"2011-06-30T07:40:27-0500","PETER BRUNNICK",,,,,305,331,,,331,,,,,,,"4A4B4D4F4H","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630074700P040012869586001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE RETIREMENT SAVINGS PLAN FOR EMPLOYEES OF THE ROCKEFELLER FOUNDATION","002","1967-07-01","THE ROCKEFELLER FOUNDATION",,,"BENEFIT COMMITTEE","420 FIFTH AVENUE","NEW YORK","NY","100182702",,,,,,,,,,,,,,,,,,"131659629","2128698500","813000","THE ROCKEFELLER FOUNDATION",,"BENEFIT COMMITTEE","420 FIFTH AVENUE","NEW YORK","NY","100182702",,,,,,,"131659629","2128698500",,,,"2011-06-29T16:19:04-0500","ELLEN TAUS","2011-06-30T07:46:02-0500","SAMANTHA GILBERT",,,119,111,3,123,237,0,237,236,0,,"2E2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110630101703P030084981697001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BARTON ASSOCIATES, INC. RETIREMENT SAVINGS PLAN","002","1988-07-01","BARTON ASSOCIATES, INC.",,,"SUSQUEHANNA COMMERCE CENTER NO","221 WEST PHILADELPHIA STREET","YORK","PA","17401",,,,,,,,,,,,,,,,,,"231705429","7178457654","541310","BARTON ASSOCIATES, INC.",,"SUSQUEHANNA COMMERCE CENTER NO","221 WEST PHILADELPHIA STREET","YORK","PA","17401",,,,,,,"231705429","7178457654",,,,"2011-06-30T10:16:55-0500","JEFFREY D. ACHE","2011-06-30T10:16:55-0500","JEFFREY D. ACHE",,,68,55,0,9,64,0,64,62,15,,"2E2J2F2G2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629140015P030002484259003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ROBERTS SUPPLY INC PROFIT SHARING","301","1977-03-01","ROBERTS SUPPLY INC",,,"4203 METRIC DRIVE",,"WINTER PARK","FL","32792",,,,,,,,,,,,,,,,,,"591320461","4076575555","423800","ROBERTS SUPPLY INC",,"4203 METRIC DRIVE",,"WINTER PARK","FL","32792",,,,,,,"591320461","4076575555",,,,"2011-06-29T05:38:59-0500","WAYNE P. ROBERTS",,,,,10,8,2,0,10,,10,8,,,"2E",,,,"1",,,,,"1",,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629090858P030084371377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GEM MANUFACTURING, LLC 401K PLAN","001","2007-07-13","GEM MANUFACTURING, LLC",,,"5130 TROMPETER GADE SUITE B-20",,"ST THOMAS","VI","00802",,,,,,,,,,,,,,,,,,"660697126","3407777666","339900","GEM MANUFACTURING, LLC",,"5130 TROMPETER GADE SUITE B-20",,"ST THOMAS","VI","00802",,,,,,,"660697126","3407777666",,,,"2011-06-29T09:08:22-0500","NICOLE PHIPPS",,,,,65,35,0,16,51,0,51,49,0,,"2E2J2K2F2G3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629142751P040395166880001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HUNT FORD INC 401K PLAN","002","2000-01-01","HUNT FORD INC",,,"6825 CRAIN HIGHWAY",,"LA PLATA","MD","20646",,,,,,,,,,,,,,,,,,"520900250","3019348186","441110","HUNT FORD 401K COMMITTEE",,"6825 CRAIN HIGHWAY",,"LA PLATA","MD","20646",,,,,,,"522234262","3019348186",,,,"2011-06-29T14:27:42-0500","MICHELLE RHODERICK","2011-06-29T14:27:42-0500","MICHELLE RHODERICK",,,13,9,0,1,10,0,10,10,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110629144541P040087022161001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ALASKA NATIVE JUSTICE CENTER 401(K) PLAN","001","2008-01-01","ALASKA NATIVE JUSTICE CENTER",,,"3600 SAN JERONIMO DRIVE, SUITE 264",,"ANCHORAGE","AK","99508",,,,,,,"3600 SAN JERONIMO DRIVE, SUITE 264",,"ANCHORAGE","AK","99508",,,,,,,"920145727","9077933550","541190","ALASKA NATIVE JUSTICE CENTER",,"3600 SAN JERONIMO DRIVE, SUITE 264",,"ANCHORAGE","AK","99508",,,,,,,"920145727","9077933550",,,,"2011-06-29T12:52:56-0500","WALT MONEGAN",,,,,11,8,0,7,15,0,15,12,0,,"2E2F2G2J2T",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629144643P030399036320001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"SUB POP RECORDS 401(K) PLAN","001","1992-01-01","SUB POP RECORDS",,,"2013 FOURTH AVENUE","3RD FLOOR","SEATTLE","WA","98121",,,,,,,"2013 FOURTH AVENUE","3RD FLOOR","SEATTLE","WA","98121",,,,,,,"911665266","2064418441","512200","SUB POP RECORDS",,"2013 FOURTH AVENUE","3RD FLOOR","SEATTLE","WA","98121",,,,,,,"911665266","2064418441",,,,"2011-06-29T14:45:45-0500","JAIMI CHAPPELLE",,,,,35,31,0,4,35,2,37,36,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110630082850P030084932369001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"DUER CAROLINA COIL, INC.","501","1974-01-01","DUER CAROLINA COIL, INC.",,,"2375 HIGHWAY 101 SOUTH",,"GREER","SC","29650",,,,,,,,,,,,,,,,,,"570697549","8649894141","333900","DUER CAROLINA COIL, INC.",,"2375 HIGHWAY 101 SOUTH",,"GREER","SC","29650",,,,,,,"570697549",,,,,"2011-06-22T11:36:14-0500","PETER K. NETHERTON",,,,,114,114,,,114,,114,,,,,"4A4B","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110630114300P040012885890001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"BLISS, LTD. EMPLOYEE BENEFIT PLAN","001","1992-07-01","BLISS, LTD.",,,"3232 LAKE STREET",,"WILNETTE","IL","60091",,,,,,,,,,,,,,,,,,"363141734","8472566555","812990","BLISS, LTD.",,"3232 LAKE STREET",,"WILNETTE","IL","60091",,,,,,,"363141734","8472566555",,,,"2011-06-30T11:42:56-0500","PENNY HALONEN",,,,,100,116,0,1,117,0,117,14,0,,"2E2F2G2J2K3B3D2T",,"1","0","0","0","1","0","0","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-06-30","Filed with authorized/valid electronic signature",, "20110629112640P040394767104001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"CO-OP 401 (K) PLAN","001","2001-07-01","MONTANA ENERGY ALLIANCE, LLC",,,"P. O. BOX 629",,"DILLON","MT","59725",,,,,,,,,,,,,,,,,,"810541628","4063885353","115110","MONTANA ENERGY ALLIANCE, LLC",,"P. O. BOX 629",,"DILLON","MT","59725",,,,,,,"810541628","4063885353",,,,"2011-06-29T10:05:46-0500","GERRY GOODY",,,,,14,11,0,4,15,0,15,15,0,,"3D2E2F2G2J2K2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629141508P040087005217001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"NCO CORP. 401(K) PLAN","001","2004-01-01","NCO, CORP.",,,"4228 SOUTHTOWNE DRIVE",,"EAU CLAIRE","WI","54701",,,,,,,,,,,,,,,,,,"391871633","7158336740","561300","NCO, CORP.",,"4228 SOUTHTOWNE DRIVE",,"EAU CLAIRE","WI","54701",,,,,,,"391871633","7158336740",,,,"2011-06-27T16:25:46-0500","DIRK NOHRE",,,,,19,18,2,0,20,0,20,20,,,"2E2F2G2J2R3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629142947P040087012593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MATSON & ISOM TECHNOLOGY CONSULTING 401(K) PLAN","002","2008-01-01","MATSON & ISOM TECHNOLOGY CONSULT",,,"1370 RIDGEWOOD DR STE 5",,"CHICO","CA","95973",,,,,,,,,,,,,,,,,,"680440842","8606247068","541511","MATSON & ISOM TECHNOLOGY CONSULT",,"1370 RIDGEWOOD DR STE 5",,"CHICO","CA","95973",,,,,,,"680440842","8606247068",,,,"2011-06-29T11:43:03-0500","SEAN ISOM",,,,,17,20,0,0,20,0,20,18,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110629143008P030084527233002","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"NOVA POLYMERS INC PROFIT SHARING PLAN","002","1986-01-01","NOVA POLYMERS, INC.",,,"2650 EASTSIDE PARK DRIVE",,"EVANSVILLE","IN","477168466",,,,,,,,,,,,,,,,,,"351604500","8124760339","326100","NOVA POLYMERS, INC.",,"2650 EASTSIDE PARK DRIVE",,"EVANSVILLE","IN","477168466",,,,,,,"351604500","8124760339",,"351604500",,"2011-06-29T15:26:49-0500","ROGER D. CHAPMAN",,,,,45,44,0,0,44,1,45,45,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-06-29","Filed with authorized/valid electronic signature",, "20110712084508P030092066801003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ASSOC. OF PROF. MED. CENTERS, INC. 401(K) PLAN","001","1986-01-01","ASSOC. OF PROF. MED. CENTERS, INC.",,,"623 W. WILLOW AVENUE",,"VISALIA","CA","93291",,,,,,,,,,,,,,,,,,"770287014","5596251691","621111","ASSOC. OF PROF. MED. CENTERS, INC.",,"623 W. WILLOW AVENUE",,"VISALIA","CA","93291",,,,,,,"770287014","5596251691",,,,"2011-07-12T08:34:58-0500","JAN PANTERA",,,,,4,4,0,0,4,0,4,4,,,"2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712141221P040429759280001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"A&J FASTENER CORPORATION PROFIT SHARING PLAN","001","1994-04-12","A&J FASTENER CORPORATION",,"JOSEPH J. RIZZA","312 DIANA DRIVE",,"MCKEES ROCKS","PA","15136",,,,,,,"357 FLAUGHERTY RUN ROAD",,"MOON TOWNSHIP","PA","15108",,,,,,,"251671767","7244572658","444190","A&J FASTENER CORPORATION","JOSEPH J. RIZZA","312 DIANA DRIVE",,"MCKEES ROCKS","PA","15136",,,,,,,"251671767","7244572658",,,,"2011-07-12T14:11:57-0500","JOSEPH RIZZA",,,,,6,6,,,6,,6,6,0,,"2E2G",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712101249P030002709459010","2010-01-01","2010-12-31","2",,,,,,,,,,,,"AMERICAN LAND LEASE FLEXIBLE BENEFIT PLAN","501","2003-02-01","AMERICAN LAND LEASE",,,"380 PARK PLACE BLVD.","SUITE 200","CLEARWATER","FL","33759",,,,,,,,,,,,,,,,,,"841038736","7277268868","531110","AMERICAN LAND LEASE",,"380 PARK PLACE BLVD.","SUITE 200","CLEARWATER","FL","33759",,,,,,,"841038736","7277268868",,,,"2011-07-11T05:57:55-0500","DEBRA GREER",,,,,140,215,6,3,224,,,,,,,"4A4B4D4E4F4H","1",,,,"1",,,,,,,,,"1","7",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712120008P030002712067005","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"GERALD W. SPRINGSTEAD, D.D.S.,P.A. PROFIT SHARING PLAN","002","1997-01-01","GERALD W. SPRINGSTEAD DDS P.A.",,,"650 WEST JEFFERSON STREET",,"BROOKSVILLE","FL","346012538",,,,,,,,,,,,,,,,,,"591951981","3527963348","621210","GERALD W. SPRINGSTEAD DDS P.A.",,"650 WEST JEFFERSON STREET",,"BROOKSVILLE","FL","346012538",,,,,,,"591951981","3527963348",,,,"2011-07-12T13:00:18-0500","GERALD W. SPRINGSTEAD","2011-07-12T13:00:31-0500","GERALD W. SPRINGSTEAD",,,5,0,0,0,0,0,0,,,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712112523P030092163137001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SUNRISE HOME HEALTH SERVICES PROFIT SHARING PLAN","001","2002-01-01","SUNRISE HOME HEALTH SERVICES",,,"14600 FARMINGTON ROAD, SUITE 101",,"LIVONIA","MI","48154",,,,,,,,,,,,,,,,,,"383148202","7345222909","621610","SUNRISE HOME HEALTH SERVICES",,"14600 FARMINGTON ROAD, SUITE 101",,"LIVONIA","MI","48154",,,,,,,"383148202","7345222909",,,,"2011-07-12T11:14:14-0500","KENNETH FRANTZ",,,,,81,31,0,7,38,0,38,11,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713031034P030435191712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"AUSTIN LOGISTICS EMPLOYEES 401K PROFIT SHARING PLAN AND TRUST","001","1997-06-01","AUSTIN LOGISTICS, INC.",,,"2901 VIA FORTUNA","SUITE 300","AUSTIN","TX","78746",,,,,,,,,,,,,,,,,,"742614446","5126515649","541511","AUSTIN LOGISTICS, INC.",,"2901 VIA FORTUNA","SUITE 300","AUSTIN","TX","78746",,,,,,,"742614446","5126515649",,,,"2011-07-12T16:20:23-0500","THOMAS CHASE",,,,,112,43,0,36,79,0,79,79,0,,"2E2F2G2J2K3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712122522P040429526784001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DIVORCE SOURCE, INC. SMITH BARNEY INC. PS PLAN THEODORE K. LONG III, TRUSTEE","001","2001-01-01","DIVORCE SOURCE, INC.",,,"1600 LEHIGH PARKWAY EAST","SUITE 1-K","ALLENTOWN","PA","18103",,,,,,,"1600 LEHIGH PARKWAY EAST","SUITE 1-K","ALLENTOWN","PA","18103",,,,,,,"232857218","6107700700","541990","DIVORCE SOURCE, INC.",,"1600 LEHIGH PARKWAY EAST","SUITE 1-K","ALLENTOWN","PA","18103",,,,,,,"232857218","6107700700",,,,"2011-07-11T14:30:32-0500","THEODORE LONG III",,,,,3,2,,1,3,,3,3,,,"2E2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712123411P040094839153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST DIGITAL COMMUNICATIONS, LLC","001","2008-01-01","FIRST DIGITAL COMMUNICATIONS, LLC",,,"90 S. 400 WEST #200",,"SALT LAKE CITY","UT","84101",,,,,,,,,,,,,,,,,,"870669206","8014561005","517000","FIRST DIGITAL COMMUNICATIONS, LLC",,"90 S. 400 WEST #200",,"SALT LAKE CITY","UT","84101",,,,,,,"870669206","8014561005",,,,"2011-07-12T11:53:46-0500","WESLEY MCDOUGAL","2011-07-12T11:53:46-0500","WESLEY MCDOUGAL",,,25,29,0,0,29,0,29,16,0,,"2E2F2G2J2K3D",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712102207P030433076000001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"S.W. (RED) SMITH 401(K) PLAN","001","2006-07-01","S.W. RED SMITH",,,"4145 S.W. 47TH AVENUE",,"DAVIE","FL","33314",,,,,,,,,,,,,,,,,,"591495752","9545811996","812990","S.W. RED SMITH",,"4145 S.W. 47TH AVENUE",,"DAVIE","FL","33314",,,,,,,"591495752","9545811996",,,,"2011-07-12T10:21:55-0500","TIMOTHY B. FOSTER","2011-07-12T10:21:55-0500","TIMOTHY B. FOSTER",,,25,19,0,6,25,0,25,25,2,,"2E2F2G2J2K3D2T",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712140541P030092254577001","2010-01-01","2010-12-31","2",,"0","0","0","0",,"1",,,,,"AUTO CENTER AUTO BODY, INC. 401(K) PLAN","001","2000-01-01","AUTO CENTER AUTO BODY, INC",,,"120 S. CHAPARRAL COURT","SUITE 130","ANAHEIM HILLS","CA","92808",,,,,,,"120 S. CHAPARRAL COURT","SUITE 130","ANAHEIM HILLS","CA","92808",,,,,,,"330062493","7142792025","811120","AUTO CENTER AUTO BODY, INC",,"120 S. CHAPARRAL COURT","SUITE 130","ANAHEIM HILLS","CA","92808",,,,,,,"330062493","7142792025",,,,"2011-07-12T14:04:39-0500","JIM RILEY",,,,,130,102,0,34,136,0,136,80,2,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1",,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713092227P030092728657001","2008-09-01","2009-08-31","2",,"0","1","0","0","0","0","0","0","0",,"AUGUSTANA COLLEGE DEFINED CONTRIBUTION RETIREMENT PLAN","007","1986-09-01","AUGUSTANA COLLEGE",,,"639 - 38TH STREET",,"ROCK ISLAND","IL","61201",,,,,,,,,,,,,,,,,,"362166962","3097947352","611000","AUGUSTANA COLLEGE",,"639 - 38TH STREET",,"ROCK ISLAND","IL","61201",,,,,,,"362166962","3097947352",,,,"2011-07-13T09:22:22-0500","KAREN PECKENSCHNEIDER",,,,,1004,1079,0,447,1526,0,1526,1047,0,,"2C2G",,"1","0","1","0","1","0","1","0","1","0","0","1","0","1","1","0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110713110608P030092785953001","2008-01-01","2008-12-31","2",,"0","0","1","0","0","0","0","0","0",,"PROFESSIONAL TRADE SUPPLY OF COLORADO, INC. EMPLOYEE STOCK OWNERSHIP PLAN","002","2001-03-01","PROFESSIONAL TRADE SUPPLY OF COLORADO, INC.",,,"13802 E 33RD PLACE",,"AURORA","CO","800111641",,,,,,,"13802 E 33RD PLACE",,"AURORA","CO","800111641",,,,,,,"840634679","3038932400","452900","PROFESSIONAL TRADE SUPPLY OF COLORADO, INC.",,"13802 E 33RD PLACE",,"AURORA","CO","800111641",,,,,,,"840634679","3038932400",,,,"2011-07-13T11:03:27-0500","PETER RINCIONE",,,,,43,24,7,12,43,0,43,0,1,3,"2E2Q2O2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712110031P030013419650001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DANIEL OCONNOR & SONS, INC. PROFIT SHARING PLAN","001","1976-12-12","DANIEL OCONNOR & SONS, INC.",,,"BETHANY ROAD, PO BOX 500",,"MONSON","MA","01057",,,,,,,,,,,,,,,,,,"042395270","4132673410","236200","DANIEL OCONNOR & SONS, INC.",,"BETHANY ROAD, PO BOX 500",,"MONSON","MA","01057",,,,,,,"042395270","4132673410",,,,"2011-07-12T11:00:24-0500","DANIEL W. O'CONNOR","2011-07-12T11:00:24-0500","DANIEL W., O'CONNOR",,,3,3,0,0,3,0,3,2,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712085017P030092069201001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"SHEPLEY BULFINCH RICHARDSON AND ABBOTT, INCORPORATED PROFIT SHARING PLAN","001","1972-01-01","SHEPLEY BULFINCH RICHARDSON AND ABBOTT, INCORPORAT",,,"2 SEAPORT LANE",,"BOSTON","MA","02210",,,,,,,"2 SEAPORT LANE",,"BOSTON","MA","02210",,,,,,,"042504672","6174231700","541310","SHEPLEY BULFINCH RICHARDSON AND ABBOTT, INCORPORAT",,"2 SEAPORT LANE",,"BOSTON","MA","02210",,,,,,,"042504672","6174231700",,,,"2011-07-12T07:54:38-0500","EDWARD HUGHES",,,,,228,116,3,97,216,3,219,213,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712111031P030433207840001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PROFIT SHARING AND 401(K) PLAN FOR EMPLOYEES OF LISTOWEL INC.","002","2008-01-01","LISTOWEL INC.",,,"2 PARK AVE RM 1525",,"NEW YORK","NY","100165701",,,,,,,"2 PARK AVE RM 1525",,"NEW YORK","NY","100165701",,,,,,,"133087645","2126838660","523900","LISTOWEL INC.",,"2 PARK AVE RM 1525",,"NEW YORK","NY","100165701",,,,,,,"133087645","2126838660",,,,"2011-07-12T11:07:20-0500","LEWIS GASOREK",,,,,15,14,0,1,15,0,15,15,0,,"2E2F2G2J2T2R3D",,,,"1",,,,"1",,,,,,"1",,,,"1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712121031P040429495744002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CALIFORNIA REAL ESTATE CONSULTANTS GROUP, INC. 401(K) PROFIT SHARING","002","2008-01-01","CALIFORNIA REAL ESTATE CONSULTANTS GROUP, INC.","THE REAL ESTATE CONSULTANTS GROUP",,"2025 MURPHYS CT",,"GOLD RIVER","CA","95670",,,,,,,,,,,,,,,,,,"680442789","9165262888","531210","CALIFORNIA REAL ESTATE CONSULTANTS GROUP, INC.",,"2025 MURPHYS CT",,"GOLD RIVER","CA","95670",,,,,,,"680442789","9165262888",,,,"2011-07-12T13:10:26-0500","TERRIE HAYWARD",,,,,2,1,0,0,1,0,1,1,0,,"2E2G2J2K2R3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712120151P030092186401001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"LEXICON, INC. FLEX PLAN","501","1993-11-01","LEXICON, INC.",,,"P.O. BOX 16390",,"LITTLE ROCK","AR","72231",,,,,,,"8900 FOURCHE DAM PIKE",,"LITTLE ROCK","AR","72206",,,,,,,"710569150","5014905172","331200","LEXICON, INC.",,"P.O. BOX 16390",,"LITTLE ROCK","AR","72231",,,,,,,"710569150","5014905172",,,,"2011-07-12T11:01:10-0500","MARK WEST",,,,,660,604,23,0,627,,,,,,,"4A4B4D4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712150415P040429867792001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HI-Q ENVIRONMENTAL PRODUCTS COMPANY, INC. PROFIT SHARING PLAN","001","1985-04-30","HI-Q ENVIRONMENTAL PRODUCTS COMPANY, INC.",,,"9362 CABOT DRIVE",,"SAN DIEGO","CA","92126",,,,,,,,,,,,,,,,,,"953169812","8585492820","335900","HI-Q ENVIRONMENTAL PRODUCTS COMPANY, INC.",,"9362 CABOT DRIVE",,"SAN DIEGO","CA","92126",,,,,,,"953169812","8585492820",,,,"2011-07-12T14:55:35-0500","MARC HELD","2011-07-12T14:55:35-0500","MARC HELD",,,12,9,2,1,12,0,12,12,0,,"2A2E2G3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712065427P040094676465001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"HEALTH REIMBURSEMENT ARRANGEMENT","535","2010-01-01","TEXAS ELECTRIC COOPERATIVES, INC.",,,"1122 COLORADO ST.","24TH FLOOR","AUSTIN","TX","78701",,,,,,,"1122 COLORADO ST.","24TH FLOOR","AUSTIN","TX","78701",,,,,,,"741007829","5124866277","221100","TEXAS ELECTRIC COOPERATIVES, INC.",,"1122 COLORADO ST.","24TH FLOOR","AUSTIN","TX","78701",,,,,,,"741007829","5124866277",,,,"2011-07-12T06:54:12-0500","BRIDGET FORD",,,,,0,202,,,202,,202,,,,,"4A4D4E",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712111259P030092152097001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"QUANTUM CORPORATION HEALTH AND WELFARE PLAN","501","1981-02-06","QUANTUM CORPORATION",,,"1650 TECHNOLOGY DRIVE, SUITE 800",,"SAN JOSE","CA","95110",,,,,,,,,,,,,,,,,,"942665054","7195366835","334110","QUANTUM CORPORATION",,"1650 TECHNOLOGY DRIVE, SUITE 800",,"SAN JOSE","CA","95110",,,,,,,"942665054","7195366835",,,,"2011-07-11T18:35:41-0500","STACIA M. FALCE",,,,,1359,1315,12,0,1327,,,,,,,"4A4B4D4E4F4H4I4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","9","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712113125P030092168753003","2010-01-01","2010-12-31","2",,,,,,,,,,,,"JACK ALEXANDER LTD PROFIT SHARING PLAN","001","1995-01-01","JACK ALEXANDER, LTD",,,"P O BOX 150338",,"LUFKIN","TX","759150338",,,,,,,,,,,,,,,,,,"751339560","9366323634","238900","JACK ALEXANDER LTD",,"P O BOX 150338",,"LUFKIN","TX","759150338",,,,,,,"751339560","9366323634",,,,"2011-07-12T11:16:18-0500","JIM R ALEXANDER",,,,,33,31,3,8,42,,42,37,,,"3D2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712123510P040094839489001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ORTHOPAEDIC HOSPITAL VISION PLAN","509","1997-01-01","ORTHOPAEDIC HOSPITAL",,,"2400 S. FLOWER STREET",,"LOS ANGELES","CA","90007",,,,,,,,,,,,,,,,,,"951644604","2137421153","622000","ORTHOPAEDIC HOSPITAL",,"2400 S. FLOWER STREET",,"LOS ANGELES","CA","90007",,,,,,,"951644604","2137421153",,,,"2011-07-12T12:30:17-0500","RICHARD HONDEL",,,,,122,105,4,0,109,,,,,,,"4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713035735P030435304368001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","1","0","0","0",,"PHC DBA DOMINICAN NETWORK GROUP HEALTH PLAN","502","1968-07-15","PHC DBA DOMINICAN NETWORK",,,"5633 N. LIDGERWOOD",,"SPOKANE","WA","992081224",,,,,,,,,,,,,,,,,,"510216586","8886873753","622000","PHC DBA DOMINICAN NETWORK",,"5633 N. LIDGERWOOD",,"SPOKANE","WA","992081224",,,,,,,"510216586","8886873753","DOMINICAN NETWORK","911211963","502","2011-07-12T17:17:53-0500","MARY CRANSTOUN","2011-07-12T17:17:53-0500","MARY CRANSTOUN",,,1605,0,0,0,0,,,,,,,"4A","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712100058P030092108673001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GOLDEN CORRAL CORPORATION LIFE AND LONG TERM DISABILITY PLAN","502","1978-06-02","INVESTORS MANAGEMENT CORPORATION GOLDEN CORRAL",,,"PO BOX 29502","5151 GLENWOOD AVENUE","RALEIGH","NC","276260502",,,,,,,,,,,,,,,,,,"560991150","9197819310","722110","INVESTORS MANAGEMENT CORPORATION GOLDEN CORRAL",,"PO BOX 29502","5151 GLENWOOD AVENUE","RALEIGH","NC","276260502",,,,,,,"560991150","9197819310",,,,"2011-07-12T09:23:16-0500","CHERYL FITZGERALD","2011-07-12T09:23:16-0500","CHERYL FITZGERALD",,,620,660,6,0,666,,,,,,,"4B4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712130348P030092216705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DENTAL PLAN OF THE SUNDT COMPANIES, INC.","508","2003-01-01","THE SUNDT COMPANIES, INC.",,,"2015 W RIVER ROAD, SUITE 101",,"TUCSON","AZ","85704",,,,,,,"2015 W RIVER ROAD, SUITE 101",,"TUCSON","AZ","85704",,,,,,,"860923877","5207504600","551112","THE SUNDT COMPANIES, INC.",,"2015 W RIVER ROAD, SUITE 101",,"TUCSON","AZ","85704",,,,,,,"860923877","5207504600",,,,"2011-07-11T13:21:23-0500","RAYMOND BARGULL",,,,,784,860,,,860,,860,,,,,"4D",,,,"1","1",,,,,,,,,"1","1","1",,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712152523P030092303585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EXPERIENCE COLUMBUS 401K RETIREMENT PLAN","002","1997-07-01","GREATER COLUMBUS CONVENTION & VISITORS BUREAU",,,"277 W NATIONWIDE BLVD STE 125",,"COLUMBUS","OH","432157501",,,,,,,,,,,,,,,,,,"314153118","6143182200","813000","GREATER COLUMBUS CONVENTION & VISITORS BUREAU",,"277 W NATIONWIDE BLVD STE 125",,"COLUMBUS","OH","432157501",,,,,,,"314153118","6143182200",,,,"2011-07-12T15:25:23-0500","PAUL ASTLEFORD",,,,,48,45,0,4,49,0,49,44,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713074948P040095293121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"CANA, INC. 401(K) PLAN AND TRUST","001","1995-01-01","CANA, INC.",,,"29194 PHILLIPS ST",,"ELKHART","IN","46514",,,,,,,,,,,,,,,,,,"351796320","5742624664","321900","CANA, INC.",,"29194 PHILLIPS ST",,"ELKHART","IN","46514",,,,,,,"351796320","5742624664",,,,"2011-07-13T07:49:12-0500","GEORGE FORMAN",,,,,84,72,0,0,72,0,72,31,0,,"2E2F2G2J2K2T",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712135417P040013942530001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"JUDKINS, GLATT & HULME LLP 401(K) PLAN","002","2004-08-01","JUDKINS, GLATT & HULME LLP",,,"600 B ST STE 2350",,"SAN DIEGO","CA","92101",,,,,,,,,,,,,,,,,,"300129458","6192324604","541110","JUDKINS, GLATT & HULME LLP",,"600 B ST STE 2350",,"SAN DIEGO","CA","92101",,,,,,,"300129458","6192324604",,,,"2011-07-12T13:43:27-0500","GREG JUDKINS",,,,,10,10,0,1,11,0,11,11,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","0","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712135527P040429720560001","2010-01-01","2010-12-31","2",,,"1",,,,,,,,,"WHI MANAGED PROPERTIES RETIREMENT PLAN & TRUST-CEDARWOOD HOTEL MGMT","001","1999-04-01","CEDARWOOD HOTEL MANAGEMENT INC.",,,"4243 HUNT ROAD",,"CINCINNATI","OH","45242",,,,,,,,,,,,,,,,,,"581711558","5137942566","721110","WINEGARDNER & HAMMONS, INC","C/O PAYROLL SUPERVISOR","4243 HUNT ROAD",,"CINCINNATI","OH","45242",,,,,,,"310725098","5137942566",,,,"2011-07-12T14:43:16-0500","JOHN SLABOCH",,,,,184,142,,39,181,,181,150,18,,"2F2G2J2K3D3H",,,,"1",,,,"1",,"1",,,"1",,"1","1",,"1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712115524P030092182145001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"ANDREW PORGES, MD, PC 401-K PLAN","001","2005-01-01","ANDREW PORGES MD PC",,,"1044 NORTHERN BLVD STE 104",,"ROSLYN","NY","11576",,,,,,,,,,,,,,,,,,"113662047","5164846880","621111","ANDREW PORGES MD PC",,"1044 NORTHERN BLVD STE 104",,"ROSLYN","NY","11576",,,,,,,"113662047","5164846880",,,,"2011-07-11T13:49:15-0500","ANDREW PORGES, MD",,,,,8,8,,,8,,8,8,,,"2E2G2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712100931P040013927026001","2010-01-01","2010-12-31","2",,"0",,"0","0","0",,,,,,"HILTON LISLE/NAPERVILLE 401(K) PLAN","001","2000-06-01","FIRESIDE WEST LLC",,,"3003 CORPORATE WEST DR",,"LISLE","IL","605323603",,,,,,,,,,,,,,,,,,"363427776","6305050900","721110","FIRESIDE WEST LLC",,"3003 CORPORATE WEST DR",,"LISLE","IL","605323603",,,,,,,"363427776","6305050900",,,,"2011-07-12T10:09:26-0500","NANCILEE BAHLMANN","2011-07-12T10:09:26-0500","NANCILEE BAHLMANN",,,186,151,0,2,153,2,155,33,2,,"2E2F2G2J2K2T3D",,"1",,,,"1",,,,"1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712080119P030092050561002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MIAN BEI MD 401K","001","2005-01-01","MIAN BEI MD 401 K",,,"966 HUNGERFORD DRIVE 31A",,"ROCKVILLE","MD","208501739",,,,,,,,,,,,,,,,,,"431949358","3012792288","621111","MIAN BEI MD 401 K",,"966 HUNGERFORD DRIVE 31A",,"ROCKVILLE","MD","208501739",,,,,,,"431949358","3012792288",,,,"2011-07-11T20:05:01-0500","DR MIAN BEI",,,,,2,2,,,2,,2,2,,,"2K2J2G2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712085813P030432885024001","2010-01-01","2010-12-31","2",,"0","0","0","0",,,,,,,"EVS LIMITED 401(K) PROFIT SHARING PLAN","001","2003-01-01","EVS LIMITED",,,"3702 W SAMPLE ST",,"SOUTH BEND","IN","46619",,,,,,,"3702 W SAMPLE ST",,"SOUTH BEND","IN","46619",,,,,,,"351885348","5742335707","337000","EVS LIMITED",,"3702 W SAMPLE ST",,"SOUTH BEND","IN","46619",,,,,,,"351885348","5742335707",,,,"2011-07-12T08:57:48-0500","SUE MAIS",,,,,27,20,0,6,26,0,26,24,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712114851P030028765863001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN SUGAR MEDICAL AND DENTAL PLAN FOR SALARY EMPLOYEES","512","1976-10-01","AMERICAN SUGAR REFINING, INC.",,,"1 FEDERAL STREET",,"YONKERS","NY","10702",,,,,,,,,,,,,,,,,,"133366163","9147098208","311300","AMERICAN SUGAR REFINING, INC.",,"1 FEDERAL STREET",,"YONKERS","NY","10702",,,,,,,"133366163","9147098208",,,,"2011-07-12T11:24:52-0500","PHILLIP G. NIZZA",,,,,775,609,30,0,639,,,,,,,"4A4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712114933P030092179313001","2010-04-01","2011-03-31","2",,"0","0","0","0","0","0","0","0","0",,"GUS PAULOS CHEVROLET INC. WELFARE BENEFIT PLAN","501","2004-04-01","GUS PAULOS CHEVROLET INC.",,,"4050 WEST 3500 SOUTH",,"WEST VALLEY CITY","UT","84120",,,,,,,,,,,,,,,,,,"870358895","8019698221","441110","GUS PAULOS CHEVROLET INC.",,"4050 WEST 3500 SOUTH",,"WEST VALLEY CITY","UT","84120",,,,,,,"870358895","8019698221",,,,"2011-07-12T11:43:40-0500","EVONNE EVANS",,,,,104,101,,,101,,101,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712115651P030092182881001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"WATSON ENGINEERING, INC. BENEFITS PLAN","501","1996-01-01","WATSON ENGINEERING, INC.",,,"16445 RACHO ROAD",,"TAYLOR","MI","48180",,,,,,,"16445 RACHO ROAD",,"TAYLOR","MI","48180",,,,,,,"382547616","7342852200","541330","WATSON ENGINEERING, INC.",,"16445 RACHO ROAD",,"TAYLOR","MI","48180",,,,,,,"382547616","7342852200",,,,"2011-07-12T11:52:43-0500","JAMES NAIDA",,,,,143,144,,,144,,144,,,,,"4A4B4D4E4F4Q","1",,,"1","1",,,"1",,,,,,"1","3",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713032036P030013489682001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"GROUP LIFE AND AD & D INSURANCE FOR EMPLOYEES OF GREATER TWIN CITIES UNITED WAY","502","1985-07-01","GREATER TWIN CITIES UNITED WAY",,,"404 SOUTH 8TH STREET",,"MINNEAPOLIS","MN","55404",,,,,,,,,,,,,,,,,,"411973442","6123407543","813000","GREATER TWIN CITIES UNITED WAY",,"404 SOUTH 8TH STREET",,"MINNEAPOLIS","MN","55404",,,,,,,"411973442","6123407543",,,,"2011-07-12T15:44:24-0500","CAROL STODIECK","2011-07-12T15:44:24-0500","CAROL STODIECK",,,148,103,9,0,112,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712080452P030092051921001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CONTINENTAL DATALABEL INC. EMPLOYEE HEALTH PLAN","501","1990-01-01","CONTINENTAL DATALABEL, INC",,,"1855 FOX LANE",,"ELGIN","IL","60123",,,,,,,,,,,,,,,,,,"362605525","8477421600","323100","CONTINENTAL DATALABEL, INC",,"1855 FOX LANE",,"ELGIN","IL","60123",,,,,,,"362605525","8477421600",,,,"2011-07-12T07:57:54-0500","THOMAS FLYNN",,,,,165,147,4,0,151,,,,,,,"4B4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712125023P030433470640001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MAINLINE BANCORP, INC. EMPLOYEE STOCK OWNERHIP PLAN WITH 401(K) PLAN PROVISIONS","002","1992-10-01","MAINLINE BANCORP, INC.",,,"325 INDUSTRIAL PARK ROAD P.O. BOX 6",,"EBENSBURG","PA","15931",,,,,,,,,,,,,,,,,,"251700786","8144725400","522110","MAINLINE BANCORP, INC.",,"325 INDUSTRIAL PARK ROAD P.O. BOX 6",,"EBENSBURG","PA","15931",,,,,,,"251700786","8144725400",,,,"2011-07-12T12:50:14-0500","SUSAN RAGER-PARR",,,,,84,75,0,1,76,0,76,68,0,,"2E2J2K2H2I2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713040006P030092604817001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"POMEROY IT SOLUTIONS SALES COMPANY, INC. HEALTH PLAN","501","1990-09-01","POMEROY IT SOLUTIONS SALES COMPANY, INC.",,,"1020 PETERSBURG ROAD",,"HEBRON","KY","410488222",,,,,,,,,,,,,,,,,,"611352158","8595860600","541519","POMEROY IT SOLUTIONS SALES COMPANY, INC.",,"1020 PETERSBURG ROAD",,"HEBRON","KY","410488222",,,,,,,"611352158","8595860600","POMEROY IT SOLUTIONS, INC.","311227808","501","2011-07-12T13:55:58-0500","LISA HURST",,,,,1494,1807,0,0,1807,,,,,,,"4A4B4D4E4F4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","1","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712134001P030092238593001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"J. RANDALL SMITH AND RICHARD D. FEWELL DDS PC 401(K) CROSS TESTED PLAN","002","1978-07-01","J. RANDALL SMITH AND RICHARD D. FEWELL DDS PC",,,"205 S JACKSON STREET",,"TULLAHOMA","TN","37388",,,,,,,,,,,,,,,,,,"621033680","6154550146","621210","J. RANDALL SMITH AND RICHARD D. FEWELL DDS PC",,"205 S JACKSON STREET",,"TULLAHOMA","TN","37388",,,,,,,"621033680","6154550146",,,,"2011-07-12T13:37:08-0500","RICHARD D FEWELL","2011-07-12T13:37:08-0500","RICHARD D FEWELL",,,29,20,0,9,29,0,29,29,0,,"2E2G2J2A2R2F2T3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712151507P040094921553005","2010-02-01","2011-01-31","2",,,,,,,,,,,,"RENZENBERGER INC. WELFARE BENEFIT PLAN","501","1990-10-01","RENZENBERGER INC.",,,"14325 WEST 95TH STREET",,"LENEXA","KS","66215",,,,,,,,,,,,,,,,,,"480986342","9136310450","485990","RENZENBERGER INC.",,"14325 WEST 95TH STREET",,"LENEXA","KS","66215",,,,,,,"480986342","9136310450",,,,"2011-07-12T15:09:53-0500","KAREN SEITTER",,,,,112,135,,,135,,,,,,,"4A4B4D4E4F4H4Q","1",,,,"1",,,,,,,,,"1","5",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712163512P030013451858001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FORUM COMMUNICATIONS COMPANY DENTAL PLAN","507","1995-01-01","FORUM COMMUNICATIONS COMPANY",,"JOHN HAJOSTEK","101 5TH STREET NORTH",,"FARGO","ND","58102",,,,,,,"101 5TH STREET NORTH",,"FARGO","ND","58102",,,,,,,"450129560","7012415499","511110","FORUM COMMUNICATIONS COMPANY","JOHN HAJOSTEK","101 5TH STREET NORTH",,"FARGO","ND","58102",,,,,,,"450129560","7012415499",,,,"2011-07-12T16:34:50-0500","JOHN HAJOSTEK",,,,,1567,1467,24,,1491,,1491,,,,,"4D","1",,,"1","1",,,"1",,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713090356P030092720657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DALTON CORPORATION EMPLOYEES HEALTH BENEFIT PLAN","501","1964-10-15","DALTON CORPORATION",,,"P.O. BOX 1388",,"WARSAW","IN","46581",,,,,,,,,,,,,,,,,,"350259770","5742678111","331110","DALTON CORPORATION",,"P.O. BOX 1388",,"WARSAW","IN","46581",,,,,,,"350259770","5742678111",,,,"2011-07-13T09:03:49-0500","RONALD L. SCHMUCKER",,,,,473,471,0,0,471,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712101930P030092120913001","2010-07-24","2010-12-31","2",,"1","0","0","1","0","0","0","0","0",,"COMMUNITY PARTNERSHIP FOR CHILDREN 401(K) PLAN","001","2010-07-24","COMMUNITY PARTNERSHIP FOR CHILDREN",,,"160 NORTH BEACH STREET",,"DAYTONA BEACH","FL","32114",,,,,,,,,,,,,,,,,,"593614241","3862384900","624100","COMMUNITY PARTNERSHIP FOR CHILDREN",,"160 NORTH BEACH STREET",,"DAYTONA BEACH","FL","32114",,,,,,,"593614241","3862384900",,,,"2011-07-12T10:19:13-0500","TATIANA CHAVEZ","2011-07-12T10:19:13-0500","TATIANA CHAVEZ",,,162,165,0,7,172,0,172,95,0,,"2E2F2G2J2K3D",,"1",,"1",,,,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712111546P030092153969001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"EGAN COMPANY GROUP LIFE INSURANCE PLAN","505","1989-04-01","EGAN COMPANY",,,"7625 BOONE AVENUE NORTH",,"BROOKLYN PARK","MN","55428",,,,,,,,,,,,,,,,,,"411570195","7635444131","236200","EGAN COMPANY",,"7625 BOONE AVENUE NORTH",,"BROOKLYN PARK","MN","55428",,,,,,,"411570195","7635444131",,,,"2011-07-12T11:11:22-0500","JIM JOHNSON",,,,,132,141,0,0,141,,,,,,,"4B4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712121720P040094828865001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"TR - EVERETT G. PARSONS CO PROFIT SHARING PLAN","004","1996-01-23","EVERETT G. PARSONS CO",,"BEVERLY M. DENNIS, PRESIDENT","9797 W. COLFAX AVENUE #3AA",,"LAKEWOOD","CO","80215",,,,,,,"9797 W. COLFAX AVENUE #3AA",,"LAKEWOOD","CO","80215",,,,,,,"840628992","3032321877","424990","EVERETT G. PARSONS CO","BEVERLY M. DENNIS, PRESIDENT","9797 W. COLFAX AVENUE #3AA",,"LAKEWOOD","CO","80215",,,,,,,"840628992","3032321877",,,,"2011-07-12T12:08:39-0500","BEVERLY DENNIS",,,,,2,2,0,0,2,0,2,0,,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712123032P030013429618001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"BGW PRODUCTIONS, INC. 401(K) PLAN","001","2005-01-01","BGW PRODUCTIONS, INC.",,,"4250 AEROTECH CENTER WAY, #G",,"PASO ROBLES","CA","93446",,,,,,,,,,,,,,,,,,"201127711","8052268700","711510","BGW PRODUCTIONS, INC.",,"4250 AEROTECH CENTER WAY, #G",,"PASO ROBLES","CA","93446",,,,,,,"201127711","8052268700",,,,"2011-07-12T12:29:29-0500","DOUGLAS S. HENDRY",,,,,5,3,0,2,5,0,5,5,0,,"2A2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712174508P030092367841002","2010-05-18","2010-12-31","2",,"1",,,"1",,,,,,,"POWELL INVESTMENTS, INC. 401(K) PROFIT SHARING PLAN","001","2010-05-18","POWELL INVESTMENTS, INC.",,,"P. O. BOX 2706",,"GILLETTE","WY","827172706",,,,,,,,,,,,,,,,,,"272566102","3076602020","561900","POWELL INVESTMENTS, INC.",,"P. O. BOX 2706",,"GILLETTE","WY","827172706",,,,,,,"272566102","3076602020",,,,"2011-07-12T17:33:22-0500","TERRY POWELL","2011-07-12T17:33:58-0500","TERRY POWELL",,,2,2,0,0,2,0,2,2,,,"2E2F2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713035238P030092601937001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIESTA MART, INC. OCCUPATIONAL BENEFITS","505","1994-01-01","FIESTA MART, INC.",,,"5235 KATY FREEWAY",,"HOUSTON","TX","77007",,,,,,,,,,,,,,,,,,"741874033","7138695060","445110","FIESTA MART, INC.",,"5235 KATY FREEWAY",,"HOUSTON","TX","77007",,,,,,,"741874033","7138695060",,,,"2011-07-11T18:39:29-0500","STACY WALKER","2011-07-12T14:40:23-0500","LOUIS KATOPODIS",,,7982,7908,0,0,7908,,,,,,,"4Q","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713035307P030092602049001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ARROW FINANCIAL CORPORATION MEDICAL INSURANCE PLAN","508","1997-01-01","ARROW FINANCIAL CORPORATION, INC",,"PETER J LAREAU","250 GLEN STREET",,"GLENS FALLS","NY","128013505",,,,,,,,,,,,,,,,,,"222448962","5187934121","522110","HUMAN RESOURECES DEPARTMENT GLENS FALLS NATIONAL BANK","PETER J. LAREAU","250 GLEN STREET",,"GLENS FALLS","NY","12801",,,,,,,"140696635","5187934121",,,,"2011-07-12T14:49:27-0500","PETER J. LAREAU","2011-07-12T14:49:27-0500","PETER J LAREAU",,,495,383,119,0,502,0,,,,,,"4A4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110712081552P030092055153001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BEC COMPANIES, INC. 401K PROFIT SHARING PLAN AND TRUST","001","1987-01-01","BEC COMPANIES, INC.",,,"3660 HARTSFIELD RD STE 114",,"TALLAHASSEE","FL","323031163",,,,,,,,,,,,,,,,,,"592162323","8505761176","541600","BEC COMPANIES, INC.",,"3660 HARTSFIELD RD STE 114",,"TALLAHASSEE","FL","323031163",,,,,,,"592162323","8505761176",,,,"2011-07-12T08:14:36-0500","CHARLES BENEDICT",,,,,42,25,0,10,35,0,35,31,0,,"2A2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712110505P040094792529001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"T&H GROUP LONG TERM CARE COVERAGE","509","2009-09-01","T&H GROUP INC.",,,"320 WEST 57 STREET",,"NEW YORK","NY","10019",,,,,,,"320 WEST 57 STREET",,"NEW YORK","NY","10019",,,,,,,"203860457","2126030267","524210","T&H GROUP INC.",,"320 WEST 57 STREET",,"NEW YORK","NY","10019",,,,,,,"203860457","2126030267",,,,"2011-07-12T11:04:32-0500","CAROL WILSON",,,,,238,250,0,0,250,0,250,,,,,"4Q","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712125423P030092212513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WILLIAMS SAUSAGE EMPLOYEE BENEFITS PLAN","501","1974-07-01","WILLIAMS SAUSAGE",,,"5132 OLD TROY HICKMAN ROAD",,"UNION CITY","TN","38261",,,,,,,,,,,,,,,,,,"620919614","7318855841","311900","WILLIAMS SAUSAGE",,"5132 OLD TROY HICKMAN ROAD",,"UNION CITY","TN","38261",,,,,,,"620919614","7318855841",,,,"2011-07-12T12:38:12-0500","LISA BELL",,,,,158,134,0,0,134,,,,,,,"4A4B4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712151530P040029702135001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CUSTOM PLASTIC DEVELOPMENTS 401(K) PROFIT SHARING PLAN & TRUST","001","1998-01-01","CUSTOM PLASTIC DEVELOPMENTS",,,"INC","2710 N JOHN YOUNG PARKWAY","KISSIMMEE","FL","34741",,,,,,,,,,,,,,,,,,"591355977","4078473054","326100","CUSTOM PLASTIC DEVELOPMENTS",,"INC","2710 N JOHN YOUNG PARKWAY","KISSIMMEE","FL","34741",,,,,,,"591355977","4078473054",,,,"2011-07-12T03:15:28-0500","CUSTOM PLASTIC DEVELOPMENTS",,,,,54,44,0,1,45,0,45,29,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1",,,"0","1","0","0","0","0",,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110713052418P030092639617001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","1","0","0","0",,"ELECTRIC POWER RESEARCH INSTITUTE SELF INSURED TEMPORARY DISABILITY BENEFIT PLAN","508","1996-11-01","ELECTRIC POWER RESEARCH INSTITUTE",,,"3420 HILLVIEW AVENUE",,"PALO ALTO","CA","94304",,,,,,,,,,,,,,,,,,"237175375","6508552000","813000","ELECTRIC POWER RESEARCH INSTITUTE",,"3420 HILLVIEW AVENUE",,"PALO ALTO","CA","94304",,,,,,,"237175375","6508552000",,,,"2011-07-12T17:03:10-0500","ANN HANABUSA","2011-07-12T17:03:10-0500","ANN HANABUSA",,,419,456,0,0,456,,,,,,,"4F","0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713040253P030092606225001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EMPLOYEE GROUP LONG TERM DISABILITY","502","1973-07-01","MATERIAL SCIENCES CORPORATION",,,"2200 EAST PRATT BLVD",,"ELK GROVE VILLAGE","IL","60007",,,,,,,,,,,,,,,,,,"952673173","8474392210","332810","MATERIAL SCIENCES CORPORATION",,"2200 EAST PRATT BLVD",,"ELK GROVE VILLAGE","IL","60007",,,,,,,"952673173","8474392210",,,,"2011-07-12T15:14:06-0500","DENNIS LEIGH",,,,,312,215,0,0,215,,,,,,,"4H","1","0","0","1","1","0","0","1","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",, "20110712105955P030092143777001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PANEL PROCESSING, INC. EMPLOYEE BENEFIT PLAN","501","1987-01-01","PANEL PROCESSING, INC.",,,"120 NORTH INDUSTRIAL HIGHWAY",,"ALPENA","MI","49707",,,,,,,,,,,,,,,,,,"381946344","9893569007","322100","PANEL PROCESSING, INC.",,"120 NORTH INDUSTRIAL HIGHWAY",,"ALPENA","MI","49707",,,,,,,"381946344","9893569007",,,,"2011-07-11T19:56:39-0500","CHARLES T SMITH",,,,,267,254,4,0,258,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712103609P030092132609001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JOHN HOLMES PUBLISHING CO. 401(K) PLAN & TRUST","001","1996-04-01","JOHN HOLMES PUBLISHING CO.",,,"521 MAIN STREET",,"WHITING","IA","51063",,,,,,,,,,,,,,,,,,"420946853","7124582213","511120","JOHN HOLMES PUBLISHING CO.",,"521 MAIN STREET",,"WHITING","IA","51063",,,,,,,"420946853","7124582213",,,,"2011-07-12T09:33:52-0500","ANN LEE",,,,,23,20,0,0,20,0,20,17,0,,"3D2E2J2K2G2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",, "20110712134513P030092242129008","2010-01-01","2010-12-31","2",,,,,,,,,,,,"J.L. COSTIN, MD, PC PROFIT SHARING PLAN","002","1989-02-01","J.L. COSTIN, MD, PC",,,"1650 W HARPER ST",,"POPLAR BLUFF","MO","63901",,,,,,,,,,,,,,,,,,"431298645","5737858405","621111","J.L. COSTIN, MD, PC",,"1650 W HARPER ST",,"POPLAR BLUFF","MO","63901",,,,,,,"431298645","5737858405",,,,"2011-07-12T14:43:03-0500","J.L. COSTIN, MD","2011-07-12T14:43:07-0500","J.L. COSTIN, MD",,,8,7,0,0,7,0,7,7,1,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110713091527P030092725601001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NEW ENGLAND GALLERY, INC. PROFIT SHARING PLAN","001","1971-01-01","NEW ENGLAND GALLERY, INC.",,,"350 NORTH MAIN STREET",,"ANDOVER","MA","01810",,,,,,,,,,,,,,,,,,"042452959","9784752116","453990","NEW ENGLAND GALLERY, INC.",,"350 NORTH MAIN STREET",,"ANDOVER","MA","01810",,,,,,,"042452959","9784752116",,,,"2011-07-13T09:03:52-0500","ROBERT BLEKICKI","2011-07-13T09:03:52-0500","ROBERT BLEKICKI",,,3,3,0,0,3,0,3,3,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-13","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711102557P030028523815001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KODAK DENTAL ASSISTANCE PLAN","508","1978-06-01","EASTMAN KODAK COMPANY",,,"343 STATE STREET",,"ROCHESTER","NY","146500904",,,,,,,,,,,,,,,,,,"160417150","5857244800","339900","DIRECTOR, GLOBAL BENEFITS EASTMAN KODAK COMPANY",,"343 STATE STREET",,"ROCHESTER","NY","146500305",,,,,,,"161105358","5857244255",,,,"2011-07-11T10:14:25-0500","PATRICIA A. OBSTARCZYK","2011-07-11T10:14:25-0500","PAUL DILS",,,16737,0,15940,0,15940,,,,,,,"4D","0","0","0","1","0","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711133105P040013848866001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DR. D.O. BAXTER, P.C. 401(K) PROFIT SHARING PLAN","002","1973-07-01","DR. D.O. BAXTER, P.C.",,,"152 NORTH BROAD STREET",,"WINDER","GA","30680",,,,,,,"152 NORTH BROAD STREET",,"WINDER","GA","30680",,,,,,,"581164617","7708674175","621210","DR. D.O. BAXTER, P.C.",,"152 NORTH BROAD STREET",,"WINDER","GA","30680",,,,,,,"581164617","7708674175",,,,"2011-07-11T13:31:00-0500","DOUGLAS P. BAXTER","2011-07-11T13:31:00-0500","DOUGLAS P. BAXTER",,,9,8,0,1,9,0,9,9,0,,"2E2J3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110711125101P040013845378001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"EXFO AMERICA INC. HEALTH & WELFARE BENEFITS PLAN","520","2010-01-01","EXFO AMERICA INC.",,,"181 SOUTH MAIN STREET #10",,"CANANDAIGUA","NY","14424",,,,,,,,,,,,,,,,,,"752456766","5853011530","334200","EXFO AMERICA INC.",,"181 SOUTH MAIN STREET #10",,"CANANDAIGUA","NY","14424",,,,,,,"752456766","5853011530",,,,"2011-07-11T12:20:45-0500","SUE YOFFEE",,,,,0,503,0,0,503,0,,,,,,"4A4D4B4F4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711105940P040094164609008","2010-03-01","2011-02-28","2",,,,,,,,,,,,"WATKINS & EAGER PLLC LONG-TERM DISABILTY PLAN","503","2004-03-01","WATKINS & EAGER PLLC",,,"PO BOX 650",,"JACKSON","MS","39205",,,,,,,,,,,,,,,,,,"640261610","6019651900","541110","WATKINS & EAGER PLLC",,"PO BOX 650",,"JACKSON","MS","39205",,,,,,,"640261610","6019651900",,,,"2011-06-23T05:34:42-0500","JAMES J CRONGEYER",,,,,121,117,,,117,,,,,,,"4H","1",,,,"1",,,,,,,,,"1","2",,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, "20110711073008P030091411441002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"R.E.M./ ATHENS LLC PROFIT SHARING PLAN & TRUST","001","1984-03-01","R.E.M./ ATHENS, LLC",,"MICHAEL E. MILLS","P.O. BOX 8032",,"ATHENS","GA","30603",,,,,,,,,,,,,,,,,,"582267208","7063536689","711510","R.E.M./ ATHENS, LLC","MICHAEL E. MILLS","P.O. BOX 8032",,"ATHENS","GA","30603",,,,,,,"582267208","7063536689",,,,"2011-05-11T15:40:37-0500","MICHAEL MILLS","2011-05-11T15:40:45-0500","MICHAEL MILLS",,,13,10,2,0,12,0,12,12,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature" "20110708123737P030013074546001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"SKILLENS SERVICES, INC. 401K PROFIT SHARING PLAN","001","2009-11-06","SKILLENS SERVICES, INC.",,,"210 SOUTH CENTRAL EXPRESSWAY","SUITE 80","ALLEN","TX","75013",,,,,,,,,,,,,,,,,,"271326784","2147856615","541213","SKILLENS SERVICES, INC.",,"210 SOUTH CENTRAL EXPRESSWAY","SUITE 80","ALLEN","TX","75013",,,,,,,"271326784","2147856615",,,,"2011-07-08T12:34:11-0500","LETITIA SKILLENS",,,,,2,2,0,0,2,0,2,1,0,,"2E2J2K2H3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708155536P040419328464001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","1","0","0",,"HARDEN & ASSOCIATES, INC. HEALTH AND WELFARE PLANS","501","1983-03-01","HARDEN & ASSOCIATES, INC.",,,"501 RIVERSIDE AVE SUITE 1000",,"JACKSONVILLE","FL","32202",,,,,,,,,,,,,,,,,,"592142739","9044215314","524210","HARDEN & ASSOCIATES, INC.",,"501 RIVERSIDE AVENUE SUITE 1000",,"JACKSONVILLE","FL","32202",,,,,,,"592142739","9044215314",,,,"2011-07-08T15:47:03-0500","PAUL LUNETTA",,,,,122,120,0,0,120,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110708182540P040092611745001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"DECISIONVIEW 401(K) PLAN","001","2007-07-02","DECISIONVIEW",,,"330 TOWNSEND STREET","SUITE 234","SAN FRANCISCO","CA","94107",,,,,,,"330 TOWNSEND STREET","SUITE 234","SAN FRANCISCO","CA","94107",,,,,,,"593769347","4156946220","511210","DECISIONVIEW",,"330 TOWNSEND STREET","SUITE 234","SAN FRANCISCO","CA","94107",,,,,,,"593769347","4156946220",,,,"2011-07-08T18:23:30-0500","LINDA DRUMRIGHT",,,,,24,16,0,7,23,0,23,17,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110710113334P030028364679001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"GLENN D. FRYDEL MONEY PURCHASE HR10 PLAN","001","1985-01-01","GLENN D. FRYDEL",,,"9698 FALLEN ROCK RD.",,"CONIFER","CO","80433",,,,,,,"9698 FALLEN ROCK RD.",,"CONIFER","CO","80433",,,,,,,"042789877","3038161352","236110","GLENN D. FRYDEL",,"9698 FALLEN ROCK RD.",,"CONIFER","CO","80433",,,,,,,"042789877","3038161352",,,,"2011-07-10T11:33:04-0500","GLENN FRYDEL",,,,,2,2,0,0,2,0,2,2,0,,"2C",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-10","Filed with authorized/valid electronic signature",, "20110708104926P030013067154001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALLEN-EDMONDS SHOE CORPORATION EMPLOYEE HEALTH BENEFIT PLAN","503","1983-01-01","ALLEN-EDMONDS SHOE CORPORATION",,,"201 E. SEVEN HILLS ROAD",,"PORT WASHINGTON","WI","530742504",,,,,,,,,,,,,,,,,,"390258380","2622356000","316210","ALLEN-EDMONDS SHOE CORPORATION",,"201 E. SEVEN HILLS ROAD",,"PORT WASHINGTON","WI","530742504",,,,,,,"390258380","2622356000",,,,"2011-07-08T10:47:43-0500","JAY SCHAUER",,,,,378,343,13,,356,,,,,,,"4A4B4D4H4E4F4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","1","0","0","FILING_RECEIVED","2011-07-08","Filed with authorized/valid electronic signature",, "20110711112039P040013837970006","2010-01-01","2010-12-31","2",,,,,,,,,,,,"THE NATIONAL COAL COUNCIL PROFIT SHARING 401K PLAN","001","1985-09-15","THE NATIONAL COAL COUNCIL, INC.",,,"1730 M STREET, NW, SUITE 907",,"WASHINGTON","DC","20036",,,,,,,"1730 M STREET, NW, SUITE 907",,"WASHINGTON","DC","20036",,,,,,,"541336131","2022231191","813000","THE NATIONAL COAL COUNCIL, INC.",,"1730 M STREET, NW, SUITE 907",,"WASHINGTON","DC","20036",,,,,,,"541336131","2022231191",,,,"2011-07-08T07:06:21-0500","ROBERT A. BECK",,,,,2,2,,,2,,2,2,,,"2E2G2J2R",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-07-11","Filed with authorized/valid electronic signature",, ================================================ FILE: csv/src/main/java/module-info.java ================================================ // CSV Main artifact Module descriptor module tools.jackson.dataformat.csv { requires tools.jackson.core; requires tools.jackson.databind; exports tools.jackson.dataformat.csv; // exports tools.jackson.dataformat.csv.impl; provides tools.jackson.core.TokenStreamFactory with tools.jackson.dataformat.csv.CsvFactory; provides tools.jackson.databind.ObjectMapper with tools.jackson.dataformat.csv.CsvMapper; } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvCharacterEscapes.java ================================================ package tools.jackson.dataformat.csv; import tools.jackson.core.SerializableString; import tools.jackson.core.io.CharTypes; import tools.jackson.core.io.CharacterEscapes; /** * Character escapes for CSV. There are multiple types of escapes. * *
    *
  • no escapes - return all characters the same way they are defined
  • *
  • quote escape - return all characters except the quote character which is escaped (backwards compat)
  • *
  • control escape - same as {@link CharTypes#get7BitOutputEscapes()}, escape all control characters
  • *
  • control and quote escape - do not double up quote, escape control characters and quote.
  • *
*/ public final class CsvCharacterEscapes extends CharacterEscapes { private static final long serialVersionUID = 1L; // No character escapes, every character returned as is. private static final CsvCharacterEscapes sNoEscapesInstance = new CsvCharacterEscapes(new int[0]); // Only escape quotes, controlled by {@link Feature#ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR}. private static final CsvCharacterEscapes sQuoteEscapesInstance; // Only escape control chars, do *not* escape the quote char. See (@link Feature#ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR}. private static final CsvCharacterEscapes sControlEscapesInstance; // Escape control chars and the quote char. private static final CsvCharacterEscapes sControlQuoteEscapesInstance = new CsvCharacterEscapes(CharacterEscapes.standardAsciiEscapesForJSON()); private static final CsvCharacterEscapes [] sEscapes; static { int[] quoteEscapes = new int[(int) '"' + 1]; quoteEscapes[(int) '"'] = '"'; sQuoteEscapesInstance = new CsvCharacterEscapes(quoteEscapes); int[] controlEscapes = CharacterEscapes.standardAsciiEscapesForJSON(); controlEscapes['"'] = 0; // do not escape ", double it up. sControlEscapesInstance = new CsvCharacterEscapes(controlEscapes); sEscapes = new CsvCharacterEscapes[4]; sEscapes[0] = sNoEscapesInstance; sEscapes[1] = sQuoteEscapesInstance; sEscapes[2] = sControlEscapesInstance; sEscapes[3] = sControlQuoteEscapesInstance; } private final int[] escapes; private CsvCharacterEscapes(int[] escapes) { this.escapes = escapes; } public static CsvCharacterEscapes noEscapesInstance() { return sNoEscapesInstance; } public static CsvCharacterEscapes quoteEscapesInstance() { return sQuoteEscapesInstance; } public static CsvCharacterEscapes controlEscapesInstance() { return sControlEscapesInstance; } public static CsvCharacterEscapes controlQuoteEscapesInstance() { return sControlQuoteEscapesInstance; } public static CsvCharacterEscapes fromCsvFeatures(int csvFeatures) { int idx = 0; idx |= CsvWriteFeature.ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR.enabledIn(csvFeatures) ? 1 : 0; idx |= CsvWriteFeature.ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR.enabledIn(csvFeatures) ? 2 : 0; return sEscapes[idx]; } @Override public SerializableString getEscapeSequence(int ch) { return null; // unused for CSV escapes } @Override public int[] getEscapeCodesForAscii() { return escapes; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvFactory.java ================================================ package tools.jackson.dataformat.csv; import java.io.*; import tools.jackson.core.*; import tools.jackson.core.base.TextualTSFactory; import tools.jackson.core.io.IOContext; import tools.jackson.dataformat.csv.impl.CsvEncoder; import tools.jackson.dataformat.csv.impl.CsvParserBootstrapper; import tools.jackson.dataformat.csv.impl.UTF8Writer; public class CsvFactory extends TextualTSFactory implements java.io.Serializable { private static final long serialVersionUID = 1L; /** * Name used to identify CSV format. * (and returned by {@link #getFormatName()} */ public final static String FORMAT_NAME_CSV = "CSV"; /** * Bit field (set of flags) of all parser features that are enabled * by default. */ protected final static int DEFAULT_CSV_PARSER_FEATURE_FLAGS = CsvReadFeature.collectDefaults(); /** * Bit field (set of flags) of all generator features that are enabled * by default. */ protected final static int DEFAULT_CSV_GENERATOR_FEATURE_FLAGS = CsvWriteFeature.collectDefaults(); protected final static CsvSchema DEFAULT_SCHEMA = CsvSchema.emptySchema(); /* /********************************************************************** /* Configuration /********************************************************************** */ protected final CsvCharacterEscapes _characterEscapes; /** * @see CsvFactoryBuilder#maxQuoteCheckChars(int) * * @since 3.2 */ protected final int _maxQuoteCheckChars; /* /********************************************************************** /* Factory construction, configuration /********************************************************************** */ /** * Default constructor used to create factory instances. * Creation of a factory instance is a light-weight operation, * but it is still a good idea to reuse limited number of * factory instances (and quite often just a single instance): * factories are used as context for storing some reused * processing objects (such as symbol tables parsers use) * and this reuse only works within context of a single * factory instance. */ public CsvFactory() { super(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), DEFAULT_CSV_PARSER_FEATURE_FLAGS, DEFAULT_CSV_GENERATOR_FEATURE_FLAGS); _characterEscapes = null; // derive from flags _maxQuoteCheckChars = CsvEncoder.DEFAULT_MAX_QUOTE_CHECK; } protected CsvFactory(CsvFactory src) { super(src); _characterEscapes = src._characterEscapes; _maxQuoteCheckChars = src._maxQuoteCheckChars; } /** * Constructors used by {@link CsvFactoryBuilder} for instantiation. * * @since 3.0 */ protected CsvFactory(CsvFactoryBuilder b) { super(b); _characterEscapes = b.characterEscapes(); _maxQuoteCheckChars = b.maxQuoteCheckChars(); } @Override public CsvFactoryBuilder rebuild() { return new CsvFactoryBuilder(this); } /** * Main factory method to use for constructing {@link CsvFactory} instances with * different configuration. */ public static CsvFactoryBuilder builder() { return new CsvFactoryBuilder(); } @Override public CsvFactory copy() { return new CsvFactory(this); } /** * Instances are immutable so just return `this` */ @Override public TokenStreamFactory snapshot() { return this; } /* /********************************************************************** /* Serializable overrides /********************************************************************** */ /** * Method that we need to override to actually make restoration go * through constructors etc. * Also: must be overridden by sub-classes as well. */ protected Object readResolve() { return new CsvFactory(this); } /* /********************************************************************** /* Capability introspection /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } // Yes; CSV is positional @Override public boolean requiresPropertyOrdering() { return true; } // No, we can't make use of char[] optimizations @Override public boolean canUseCharArrays() { return false; } @Override public boolean canParseAsync() { // 30-Sep-2017, tatu: No async parsing yet return false; } /* /********************************************************************** /* Format support /********************************************************************** */ @Override public String getFormatName() { return FORMAT_NAME_CSV; } @Override public boolean canUseSchema(FormatSchema schema) { return (schema instanceof CsvSchema); } @Override public Class getFormatReadFeatureType() { return CsvReadFeature.class; } @Override public Class getFormatWriteFeatureType() { return CsvWriteFeature.class; } @Override public int getFormatReadFeatures() { return _formatReadFeatures; } @Override public int getFormatWriteFeatures() { return _formatWriteFeatures; } /** * Checked whether specified parser feature is enabled. */ public final boolean isEnabled(CsvReadFeature f) { return (_formatReadFeatures & f.getMask()) != 0; } /** * Check whether specified generator feature is enabled. */ public boolean isEnabled(CsvWriteFeature f) { return (_formatWriteFeatures & f.getMask()) != 0; } /* /********************************************************************** /* Factory methods: parsers /********************************************************************** */ /** * Overridable factory method that actually instantiates desired parser. */ @Override protected CsvParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, InputStream in) { return new CsvParserBootstrapper(ioCtxt, in) .constructParser(readCtxt, readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _getSchema(readCtxt)); } @Override protected CsvParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, byte[] data, int offset, int len) { return new CsvParserBootstrapper(ioCtxt, data, offset, len) .constructParser(readCtxt, readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _getSchema(readCtxt)); } /** * Overridable factory method that actually instantiates desired parser. */ @Override protected CsvParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, Reader r) { return new CsvParser(readCtxt, ioCtxt, readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _getSchema(readCtxt), r); } @Override protected CsvParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, char[] data, int offset, int len, boolean recyclable) { return new CsvParser(readCtxt, ioCtxt, readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _getSchema(readCtxt), new CharArrayReader(data, offset, len)); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, DataInput input) { return _unsupported(); } private final CsvSchema _getSchema(ObjectReadContext readCtxt) { FormatSchema sch = readCtxt.getSchema(); if (sch == null) { return DEFAULT_SCHEMA; } return (CsvSchema) sch; } /* /********************************************************************** /* Factory methods: generators /********************************************************************** */ @Override protected CsvGenerator _createGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, Writer out) { return new CsvGenerator(writeCtxt, ioCtxt, writeCtxt.getStreamWriteFeatures(_streamWriteFeatures), writeCtxt.getFormatWriteFeatures(_formatWriteFeatures), out, _getSchema(writeCtxt), _characterEscapes, _maxQuoteCheckChars); } @SuppressWarnings("resource") @Override protected CsvGenerator _createUTF8Generator(ObjectWriteContext writeCtxt, IOContext ioCtxt, OutputStream out) { return new CsvGenerator(writeCtxt, ioCtxt, writeCtxt.getStreamWriteFeatures(_streamWriteFeatures), writeCtxt.getFormatWriteFeatures(_formatWriteFeatures), new UTF8Writer(ioCtxt, out), _getSchema(writeCtxt), _characterEscapes, _maxQuoteCheckChars); } private final CsvSchema _getSchema(ObjectWriteContext writeCtxt) { FormatSchema sch = writeCtxt.getSchema(); if (sch == null) { return DEFAULT_SCHEMA; } return (CsvSchema) sch; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvFactoryBuilder.java ================================================ package tools.jackson.dataformat.csv; import tools.jackson.core.ErrorReportConfiguration; import tools.jackson.core.JsonGenerator; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.base.DecorableTSFactory.DecorableTSFBuilder; import tools.jackson.dataformat.csv.impl.CsvEncoder; /** * {@link tools.jackson.core.TSFBuilder} * implementation for constructing {@link CsvFactory} * instances. * * @since 3.0 */ public class CsvFactoryBuilder extends DecorableTSFBuilder { /* /********************************************************************** /* Configuration /********************************************************************** */ protected CsvCharacterEscapes _characterEscapes; /** * Maximum length of a column value for which quoting-need check is performed * when not using strict ({@link CsvWriteFeature#STRICT_CHECK_FOR_QUOTING}) checking: * values longer than this threshold will always be quoted. * Default value is {@value tools.jackson.dataformat.csv.impl.CsvEncoder#DEFAULT_MAX_QUOTE_CHECK}. * * @since 3.2 */ protected int _maxQuoteCheckChars = CsvEncoder.DEFAULT_MAX_QUOTE_CHECK; /* /********************************************************************** /* Life cycle /********************************************************************** */ protected CsvFactoryBuilder() { super(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), CsvFactory.DEFAULT_CSV_PARSER_FEATURE_FLAGS, CsvFactory.DEFAULT_CSV_GENERATOR_FEATURE_FLAGS); } public CsvFactoryBuilder(CsvFactory base) { super(base); _characterEscapes = base._characterEscapes; _maxQuoteCheckChars = base._maxQuoteCheckChars; } @Override public CsvFactory build() { // 28-Dec-2017, tatu: No special settings beyond base class ones, so: return new CsvFactory(this); } // // // Parser features public CsvFactoryBuilder enable(CsvReadFeature f) { _formatReadFeatures |= f.getMask(); return _this(); } public CsvFactoryBuilder enable(CsvReadFeature first, CsvReadFeature... other) { _formatReadFeatures |= first.getMask(); for (CsvReadFeature f : other) { _formatReadFeatures |= f.getMask(); } return _this(); } public CsvFactoryBuilder disable(CsvReadFeature f) { _formatReadFeatures &= ~f.getMask(); return _this(); } public CsvFactoryBuilder disable(CsvReadFeature first, CsvReadFeature... other) { _formatReadFeatures &= ~first.getMask(); for (CsvReadFeature f : other) { _formatReadFeatures &= ~f.getMask(); } return _this(); } public CsvFactoryBuilder configure(CsvReadFeature f, boolean state) { return state ? enable(f) : disable(f); } // // // Generator features public CsvFactoryBuilder enable(CsvWriteFeature f) { _formatWriteFeatures |= f.getMask(); return _this(); } public CsvFactoryBuilder enable(CsvWriteFeature first, CsvWriteFeature... other) { _formatWriteFeatures |= first.getMask(); for (CsvWriteFeature f : other) { _formatWriteFeatures |= f.getMask(); } return _this(); } public CsvFactoryBuilder disable(CsvWriteFeature f) { _formatWriteFeatures &= ~f.getMask(); return _this(); } public CsvFactoryBuilder disable(CsvWriteFeature first, CsvWriteFeature... other) { _formatWriteFeatures &= ~first.getMask(); for (CsvWriteFeature f : other) { _formatWriteFeatures &= ~f.getMask(); } return _this(); } public CsvFactoryBuilder configure(CsvWriteFeature f, boolean state) { return state ? enable(f) : disable(f); } // // // Other CSV-specific configuration /** * Method for defining custom escapes factory uses for {@link JsonGenerator}s * it creates. */ public CsvFactoryBuilder characterEscapes(CsvCharacterEscapes esc) { _characterEscapes = esc; return this; } public CsvCharacterEscapes characterEscapes() { if (_characterEscapes == null) { } return _characterEscapes; } /** * Method for configuring the maximum length of column values that are * checked for quoting necessity when not using strict quoting * ({@link CsvWriteFeature#STRICT_CHECK_FOR_QUOTING}). * Values longer than this threshold are always quoted without checking content. *

* Default value is {@value tools.jackson.dataformat.csv.impl.CsvEncoder#DEFAULT_MAX_QUOTE_CHECK}. * * @param maxChars Maximum number of characters to check; values longer * than this will always be quoted. Negative values are normalized to * the default ({@value tools.jackson.dataformat.csv.impl.CsvEncoder#DEFAULT_MAX_QUOTE_CHECK}). * @return this builder (for call chaining) * * @since 3.2 */ public CsvFactoryBuilder maxQuoteCheckChars(int maxChars) { _maxQuoteCheckChars = (maxChars >= 0) ? maxChars : CsvEncoder.DEFAULT_MAX_QUOTE_CHECK; return this; } /** * @return Currently configured maximum quote check length; default * is {@value tools.jackson.dataformat.csv.impl.CsvEncoder#DEFAULT_MAX_QUOTE_CHECK}. * * @since 3.2 */ public int maxQuoteCheckChars() { return _maxQuoteCheckChars; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvGenerator.java ================================================ package tools.jackson.dataformat.csv; import java.io.*; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.charset.StandardCharsets; import java.util.Arrays; import tools.jackson.core.*; import tools.jackson.core.base.GeneratorBase; import tools.jackson.core.io.CharacterEscapes; import tools.jackson.core.json.DupDetector; import tools.jackson.core.util.SimpleStreamWriteContext; import tools.jackson.dataformat.csv.impl.CsvEncoder; import tools.jackson.core.io.IOContext; import tools.jackson.core.util.JacksonFeatureSet; public class CsvGenerator extends GeneratorBase { protected final static long MIN_INT_AS_LONG = Integer.MIN_VALUE; protected final static long MAX_INT_AS_LONG = Integer.MAX_VALUE; private final static CsvSchema EMPTY_SCHEMA = CsvSchema.emptySchema(); /* /********************************************************************** /* Configuration /********************************************************************** */ /** * Bit flag composed of bits that indicate which * {@link CsvWriteFeature}s * are enabled. */ protected final int _formatFeatures; /** * Definition of columns being written, if available. */ protected final CsvSchema _schema; // note: can not be final since we may need to re-create it for new schema protected CsvEncoder _writer; /* /********************************************************************** /* Output state /********************************************************************** */ /** * Object that keeps track of the current contextual state of the generator. */ protected SimpleStreamWriteContext _streamWriteContext; /** * Flag that indicates that we need to write header line, if * one is needed. Used because schema may be specified after * instance is constructed. */ protected boolean _handleFirstLine = true; /** * Index of column that we will be getting next, based on * the property name call that was made. */ protected int _nextColumnByName = -1; /** * Decorator to use for decorating the column value to follow, if any; * {@code null} if none. * * @since 2.18 */ protected CsvValueDecorator _nextColumnDecorator; /** * Flag set when property to write is unknown, and the matching value * is to be skipped quietly. */ protected boolean _skipValue; /** * Flag set when a row has just been finished, used to distinguish between * null values within a row vs null rows. * Only relevant for Array-wrapped rows. * * @since 2.21 */ protected boolean _justFinishedRow = false; /** * Separator to use during writing of (simple) array value, to be encoded as a * single column value, if any. */ protected String _arraySeparator = CsvSchema.NO_ARRAY_ELEMENT_SEPARATOR; /** * Accumulated contents of an array cell, if any */ protected StringBuilder _arrayContents; /** * Additional counter that indicates number of value entries in the * array. Needed because `null` entries do not add content, but need * to be separated by array cell separator */ protected int _arrayElements; /** * When skipping output (for "unknown" output), outermost write context * where skipping should occur */ protected SimpleStreamWriteContext _skipWithin; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public CsvGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, int streamWriteFeatures, int csvFeatures, Writer out, CsvSchema schema, CsvCharacterEscapes characterEscapes, int maxQuoteCheckChars) { super(writeCtxt, ioCtxt, streamWriteFeatures); _formatFeatures = csvFeatures; final DupDetector dups = StreamWriteFeature.STRICT_DUPLICATE_DETECTION.enabledIn(streamWriteFeatures) ? DupDetector.rootDetector(this) : null; _streamWriteContext = SimpleStreamWriteContext.createRootContext(dups); _schema = schema; if (characterEscapes == null) { characterEscapes = CsvCharacterEscapes.fromCsvFeatures(csvFeatures); } boolean useFastDoubleWriter = isEnabled(StreamWriteFeature.USE_FAST_DOUBLE_WRITER); _writer = new CsvEncoder(ioCtxt, csvFeatures, out, schema, characterEscapes, useFastDoubleWriter, maxQuoteCheckChars); } public CsvGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, int streamWriteFeatures, int csvFeatures, CsvEncoder csvWriter) { super(writeCtxt, ioCtxt, streamWriteFeatures); _formatFeatures = csvFeatures; final DupDetector dups = StreamWriteFeature.STRICT_DUPLICATE_DETECTION.enabledIn(streamWriteFeatures) ? DupDetector.rootDetector(this) : null; _streamWriteContext = SimpleStreamWriteContext.createRootContext(dups); _schema = EMPTY_SCHEMA; _writer = csvWriter; } /* /********************************************************************** /* Versioned /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } /* /********************************************************************** /* Overrides: capability introspection methods /********************************************************************** */ @Override public boolean canOmitProperties() { // Nope: CSV requires at least a placeholder return false; } @Override public boolean has(StreamWriteCapability capability) { return DEFAULT_TEXTUAL_WRITE_CAPABILITIES.isEnabled(capability); } @Override public JacksonFeatureSet streamWriteCapabilities() { return DEFAULT_TEXTUAL_WRITE_CAPABILITIES; } /* /********************************************************************** /* Overrides: output state handling methods /********************************************************************** */ @Override public final TokenStreamContext streamWriteContext() { return _streamWriteContext; } @Override public final Object currentValue() { return _streamWriteContext.currentValue(); } @Override public final void assignCurrentValue(Object v) { _streamWriteContext.assignCurrentValue(v); } /* /********************************************************************** /* Overridden methods, configuration /********************************************************************** */ @Override public Object streamWriteOutputTarget() { return _writer.getOutputTarget(); } /** * NOTE: while this method will return some information on amount of data buffered, it * may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized * values. */ @Override public int streamWriteOutputBuffered() { return _writer.getOutputBuffered(); } @Override public CsvGenerator setCharacterEscapes(CharacterEscapes esc) { if (esc != null) { _writer.setOutputEscapes(esc.getEscapeCodesForAscii()); } return this; } @Override public CharacterEscapes getCharacterEscapes() { // Not really true but... we have no access to full original escapes return null; } @Override public PrettyPrinter getPrettyPrinter() { return null; } /* /********************************************************************** /* Overridden methods; writing property names /********************************************************************** */ /* And then methods overridden to make final, streamline some * aspects... */ @Override public JsonGenerator writeName(String name) throws JacksonException { if (!_streamWriteContext.writeName(name)) { _reportError("Cannot write a property name, expecting a value"); } _writeFieldName(name); return this; } @Override public JsonGenerator writePropertyId(long id) throws JacksonException { // 15-Aug-2019, tatu: should be improved to avoid String generation return writeName(Long.toString(id)); } @Override public JsonGenerator writeName(SerializableString name) throws JacksonException { // Object is a value, need to verify it's allowed if (!_streamWriteContext.writeName(name.getValue())) { _reportError("Cannot write a property name, expecting a value"); } _writeFieldName(name.getValue()); return this; } private final void _writeFieldName(String name) throws JacksonException { // just find the matching index -- must have schema for that if (_schema == null) { // not a low-level error, so: _reportCsvWriteError("Unrecognized column '"+name+"', can not resolve without CsvSchema"); } if (_skipWithin != null) { // new in 2.7 _skipValue = true; _nextColumnByName = -1; _nextColumnDecorator = null; return; } // note: we are likely to get next column name, so pass it as hint CsvSchema.Column col = _schema.column(name, _nextColumnByName+1); if (col == null) { _nextColumnByName = -1; _nextColumnDecorator = null; if (isEnabled(StreamWriteFeature.IGNORE_UNKNOWN)) { _skipValue = true; return; } // not a low-level error, so: _reportCsvWriteError("Unrecognized column '"+name+"': known columns: "+_schema.getColumnDesc()); } _skipValue = false; // and all we do is just note index to use for following value write _nextColumnByName = col.getIndex(); _nextColumnDecorator = col.getValueDecorator(); } /* /********************************************************************** /* Extended API, configuration /********************************************************************** */ public final boolean isEnabled(CsvWriteFeature f) { return (_formatFeatures & f.getMask()) != 0; } /* /********************************************************************** /* Public API: low-level I/O /********************************************************************** */ @Override public final void flush() { try { _writer.flush(isEnabled(StreamWriteFeature.FLUSH_PASSED_TO_STREAM)); } catch (IOException e) { throw _wrapIOFailure(e); } } @Override public void close() { try { if (!isClosed()) { // Let's mark row as closed, if we had any... finishRow(); // Write the header if necessary, occurs when no rows written if (_handleFirstLine) { _handleFirstLine(); } } } finally { super.close(); } } @Override protected void _closeInput() throws IOException { _writer.close(_ioContext.isResourceManaged() || isEnabled(StreamWriteFeature.AUTO_CLOSE_TARGET), isEnabled(StreamWriteFeature.FLUSH_PASSED_TO_STREAM)); } /* /********************************************************************** /* Public API: structural output /********************************************************************** */ @Override public JsonGenerator writeStartArray() throws JacksonException { _verifyValueWrite("start an array"); _justFinishedRow = false; // Clear flag when starting new array // Ok to create root-level array to contain Objects/Arrays, but // can not nest arrays in objects if (_streamWriteContext.inObject()) { if ((_skipWithin == null) && _skipValue && isEnabled(StreamWriteFeature.IGNORE_UNKNOWN)) { _skipWithin = _streamWriteContext; } else if (!_skipValue) { // First: column may have its own separator String sep; if (_nextColumnByName >= 0) { CsvSchema.Column col = _schema.column(_nextColumnByName); sep = col.isArray() ? col.getArrayElementSeparator() : CsvSchema.NO_ARRAY_ELEMENT_SEPARATOR; } else { sep = CsvSchema.NO_ARRAY_ELEMENT_SEPARATOR; } if (sep.isEmpty()) { if (!_schema.hasArrayElementSeparator()) { _reportError("CSV generator does not support Array values for properties without setting 'arrayElementSeparator' in schema"); } sep = _schema.getArrayElementSeparator(); } _arraySeparator = sep; if (_arrayContents == null) { _arrayContents = new StringBuilder(); } else { _arrayContents.setLength(0); } _arrayElements = 0; } } else { if (!_arraySeparator.isEmpty()) { // also: no nested arrays, yet _reportError("CSV generator does not support nested Array values"); } } _streamWriteContext = _streamWriteContext.createChildArrayContext(null); streamWriteConstraints().validateNestingDepth(_streamWriteContext.getNestingDepth()); // and that's about it, really return this; } @Override public JsonGenerator writeStartArray(Object currValue) throws JacksonException { writeStartArray(); assignCurrentValue(currValue); return this; } @Override public JsonGenerator writeEndArray() throws JacksonException { if (!_streamWriteContext.inArray()) { _reportError("Current context not Array but "+_streamWriteContext.typeDesc()); } _streamWriteContext = _streamWriteContext.getParent(); // 14-Dec-2015, tatu: To complete skipping of ignored structured value, need this: if (_skipWithin != null) { if (_streamWriteContext == _skipWithin) { _skipWithin = null; } return this; } if (!_arraySeparator.isEmpty()) { String value = _arrayContents.toString(); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations! if (_nextColumnDecorator != null) { value = _nextColumnDecorator.decorateValue(this, value); } _arraySeparator = CsvSchema.NO_ARRAY_ELEMENT_SEPARATOR; _writer.write(_columnIndex(), value); } // 20-Nov-2014, tatu: When doing "untyped"/"raw" output, this means that row // is now done. But not if writing such an array property, so: if (!_streamWriteContext.inObject()) { finishRow(); } return this; } @Override public JsonGenerator writeStartObject() throws JacksonException { _verifyValueWrite("start an object"); _justFinishedRow = false; // No nesting for objects; can write Objects inside logical root-level arrays. // 14-Dec-2015, tatu: ... except, should be fine if we are ignoring the property if (_streamWriteContext.inObject() || // 07-Nov-2017, tatu: But we may actually be nested indirectly; so check (_streamWriteContext.inArray() && !_streamWriteContext.getParent().inRoot())) { if (_skipWithin == null) { // new in 2.7 if (_skipValue && isEnabled(StreamWriteFeature.IGNORE_UNKNOWN)) { _skipWithin = _streamWriteContext; } else { _reportCsvWriteError("CSV generator does not support Object values for properties (nested Objects)"); } } } _streamWriteContext = _streamWriteContext.createChildObjectContext(null); streamWriteConstraints().validateNestingDepth(_streamWriteContext.getNestingDepth()); return this; } @Override public JsonGenerator writeStartObject(Object currValue) throws JacksonException { writeStartObject(); assignCurrentValue(currValue); return this; } @Override public JsonGenerator writeEndObject() throws JacksonException { if (!_streamWriteContext.inObject()) { _reportError("Current context not Object but "+_streamWriteContext.typeDesc()); } _streamWriteContext = _streamWriteContext.getParent(); // 14-Dec-2015, tatu: To complete skipping of ignored structured value, need this: if (_skipWithin != null) { if (_streamWriteContext == _skipWithin) { _skipWithin = null; } return this; } // not 100% fool-proof, but chances are row should be done now finishRow(); return this; } /* /********************************************************************** /* Output method implementations, textual /********************************************************************** */ @Override public JsonGenerator writeString(String text) throws JacksonException { if (text == null) { return writeNull(); } _verifyValueWrite("write String value"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(text); } else { // 26-Aug-2024, tatu: [dataformats-text#495] Decorations! if (_nextColumnDecorator != null) { text = _nextColumnDecorator.decorateValue(this, text); } _writer.write(_columnIndex(), text); } } return this; } @Override public JsonGenerator writeString(char[] text, int offset, int len) throws JacksonException { _verifyValueWrite("write String value"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(new String(text, offset, len)); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations! } else if (_nextColumnDecorator != null) { String str = new String(text, offset, len); _writer.write(_columnIndex(), _nextColumnDecorator.decorateValue(this, str)); } else { _writer.write(_columnIndex(), text, offset, len); } } return this; } @Override public JsonGenerator writeString(SerializableString sstr) throws JacksonException { _verifyValueWrite("write String value"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(sstr.getValue()); } else { // 26-Aug-2024, tatu: [dataformats-text#495] Decorations! String text = sstr.getValue(); if (_nextColumnDecorator != null) { text = _nextColumnDecorator.decorateValue(this, text); } _writer.write(_columnIndex(), text); } } return this; } @Override public JsonGenerator writeRawUTF8String(byte[] text, int offset, int len) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeUTF8String(byte[] text, int offset, int len) throws JacksonException { return writeString(new String(text, offset, len, StandardCharsets.UTF_8)); } /* /********************************************************************** /* Output method implementations, unprocessed ("raw") /********************************************************************** */ @Override public JsonGenerator writeRaw(String text) throws JacksonException { _writer.writeRaw(text); return this; } @Override public JsonGenerator writeRaw(String text, int offset, int len) throws JacksonException { _writer.writeRaw(text, offset, len); return this; } @Override public JsonGenerator writeRaw(char[] text, int offset, int len) throws JacksonException { _writer.writeRaw(text, offset, len); return this; } @Override public JsonGenerator writeRaw(char c) throws JacksonException { _writer.writeRaw(c); return this; } @Override public JsonGenerator writeRawValue(String text) throws JacksonException { _verifyValueWrite("write Raw value"); if (!_skipValue) { // NOTE: ignore array stuff _writer.writeNonEscaped(_columnIndex(), text); } return this; } @Override public JsonGenerator writeRawValue(String text, int offset, int len) throws JacksonException { _verifyValueWrite("write Raw value"); if (!_skipValue) { // NOTE: ignore array stuff _writer.writeNonEscaped(_columnIndex(), text.substring(offset, offset+len)); } return this; } @Override public JsonGenerator writeRawValue(char[] text, int offset, int len) throws JacksonException { _verifyValueWrite("write Raw value"); if (!_skipValue) { // NOTE: ignore array stuff _writer.writeNonEscaped(_columnIndex(), new String(text, offset, len)); } return this; } /* /********************************************************************** /* Output method implementations, base64-encoded binary /********************************************************************** */ @Override public JsonGenerator writeBinary(Base64Variant b64variant, byte[] data, int offset, int len) throws JacksonException { if (data == null) { return writeNull(); } _verifyValueWrite("write Binary value"); if (!_skipValue) { // ok, better just Base64 encode as a String... if (offset > 0 || (offset+len) != data.length) { data = Arrays.copyOfRange(data, offset, offset+len); } String encoded = b64variant.encode(data); if (!_arraySeparator.isEmpty()) { _addToArray(encoded); } else { // 26-Aug-2024, tatu: [dataformats-text#495] Decorations! if (_nextColumnDecorator != null) { encoded = _nextColumnDecorator.decorateValue(this, encoded); } _writer.write(_columnIndex(), encoded); } } return this; } /* /********************************************************************** /* Output method implementations, primitive /********************************************************************** */ @Override public JsonGenerator writeBoolean(boolean state) throws JacksonException { _verifyValueWrite("write boolean value"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(state ? "true" : "false"); } else { // 26-Aug-2024, tatu: [dataformats-text#495] Decorations! if (_nextColumnDecorator != null) { String text = _nextColumnDecorator.decorateValue(this, state ? "true" : "false"); _writer.write(_columnIndex(), text); } else { _writer.write(_columnIndex(), state); } } } return this; } @Override public JsonGenerator writeNull() throws JacksonException { _verifyValueWrite("write null value"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(_schema.getNullValueOrEmpty()); } else if (_streamWriteContext.inObject()) { // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? if (_nextColumnDecorator != null) { String nvl = _nextColumnDecorator.decorateNull(this); if (nvl != null) { _writer.write(_columnIndex(), nvl); return this; } } _writer.writeNull(_columnIndex()); } else if (_streamWriteContext.inArray()) { // [dataformat-csv#106]: Need to make sure we don't swallow nulls in arrays either // 04-Jan-2016, tatu: but check for case of array-wrapping, in which case null stands for absence // of Object. In this case, could either add an empty row, or skip -- for now, we'll // just skip; can change, if so desired, to expose "root null" as empty rows, possibly // based on either schema property, or CsvGenerator.Feature. // Note: if nulls are to be written that way, would need to call `finishRow()` right after `writeNull()` // [dataformats-text#10]: When we have a schema and we haven't just finished a row, // it means we're inside an array-as-row (like Object[]), so null is a column value boolean writeNullValue = !_streamWriteContext.getParent().inRoot() || (_schema.size() > 0 && !_justFinishedRow); if (writeNullValue) { // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? if (_nextColumnDecorator != null) { String nvl = _nextColumnDecorator.decorateNull(this); if (nvl != null) { _writer.write(_columnIndex(), nvl); return this; } } _writer.writeNull(_columnIndex()); } // ... so, for "root-level nulls" (with or without array-wrapping), we would do: /* _writer.writeNull(_columnIndex()); finishRow(); */ } } return this; } @Override public JsonGenerator writeNumber(short v) throws JacksonException { return writeNumber((int) v); } @Override public JsonGenerator writeNumber(int v) throws JacksonException { _verifyValueWrite("write number"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(String.valueOf(v)); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? } else if (_nextColumnDecorator != null) { _writer.write(_columnIndex(), _nextColumnDecorator.decorateValue(this, String.valueOf(v))); } else { _writer.write(_columnIndex(), v); } } return this; } @Override public JsonGenerator writeNumber(long v) throws JacksonException { // First: maybe 32 bits is enough? if (v <= MAX_INT_AS_LONG && v >= MIN_INT_AS_LONG) { return writeNumber((int) v); } _verifyValueWrite("write number"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(String.valueOf(v)); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? } else if (_nextColumnDecorator != null) { _writer.write(_columnIndex(), _nextColumnDecorator.decorateValue(this, String.valueOf(v))); } else { _writer.write(_columnIndex(), v); } } return this; } @Override public JsonGenerator writeNumber(BigInteger v) throws JacksonException { if (v == null) { return writeNull(); } _verifyValueWrite("write number"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(String.valueOf(v)); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? } else if (_nextColumnDecorator != null) { _writer.write(_columnIndex(), _nextColumnDecorator.decorateValue(this, String.valueOf(v))); } else { _writer.write(_columnIndex(), v); } } return this; } @Override public JsonGenerator writeNumber(double v) throws JacksonException { _verifyValueWrite("write number"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(String.valueOf(v)); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? } else if (_nextColumnDecorator != null) { _writer.write(_columnIndex(), _nextColumnDecorator.decorateValue(this, String.valueOf(v))); } else { _writer.write(_columnIndex(), v); } } return this; } @Override public JsonGenerator writeNumber(float v) throws JacksonException { _verifyValueWrite("write number"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(String.valueOf(v)); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? } else if (_nextColumnDecorator != null) { _writer.write(_columnIndex(), _nextColumnDecorator.decorateValue(this, String.valueOf(v))); } else { _writer.write(_columnIndex(), v); } } return this; } @Override public JsonGenerator writeNumber(BigDecimal v) throws JacksonException { if (v == null) { return writeNull(); } _verifyValueWrite("write number"); if (!_skipValue) { boolean plain = isEnabled(StreamWriteFeature.WRITE_BIGDECIMAL_AS_PLAIN); if (!_arraySeparator.isEmpty()) { _addToArray(plain ? v.toPlainString() : v.toString()); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? } else if (_nextColumnDecorator != null) { String numStr = plain ? v.toPlainString() : v.toString(); _writer.write(_columnIndex(), _nextColumnDecorator.decorateValue(this, numStr)); } else { _writer.write(_columnIndex(), v, plain); } } return this; } @Override public JsonGenerator writeNumber(String encodedValue) throws JacksonException { if (encodedValue == null) { return writeNull(); } _verifyValueWrite("write number"); if (!_skipValue) { if (!_arraySeparator.isEmpty()) { _addToArray(encodedValue); // 26-Aug-2024, tatu: [dataformats-text#495] Decorations? } else if (_nextColumnDecorator != null) { _writer.write(_columnIndex(), _nextColumnDecorator.decorateValue(this, encodedValue)); } else { _writer.write(_columnIndex(), encodedValue); } } return this; } /* /********************************************************************** /* Overrides for property write methods /********************************************************************** */ @Override public JsonGenerator writeOmittedProperty(String propName) throws JacksonException { // Hmmh. Should we require a match? Actually, let's use logic: if property found, // assumption is we must add a placeholder; if not, we can merely ignore CsvSchema.Column col = _schema.column(propName); if (col == null) { // assumed to have been removed from schema too } else { // basically combination of "writeName()" and "writeNull()" if (!_streamWriteContext.writeName(propName)) { _reportError("Cannot skip a property, expecting a value"); } // and all we do is just note index to use for following value write _nextColumnByName = col.getIndex(); // We can basically copy what 'writeNull()' does... _verifyValueWrite("skip positional value due to filtering"); _writer.write(_columnIndex(), ""); } return this; } /* /********************************************************************** /* Implementations for methods from base class /********************************************************************** */ @Override protected final void _verifyValueWrite(String typeMsg) throws JacksonException { if (!_streamWriteContext.writeValue()) { _reportError("Cannot "+typeMsg+", expecting a property name"); } if (_handleFirstLine) { _handleFirstLine(); } } @Override protected void _releaseBuffers() { _writer._releaseBuffers(); } /* /********************************************************************** /* Internal methods, error reporting /********************************************************************** */ /** * Method called when there is a problem related to mapping data * (compared to a low-level generation); if so, should be surfaced * as */ protected void _reportCsvWriteError(String msg) throws JacksonException { throw CsvWriteException.from(this, msg, _schema); } /* /********************************************************************** /* Internal methods, other /********************************************************************** */ protected final int _columnIndex() { int ix = _nextColumnByName; if (ix < 0) { // if we had one, remove now ix = _writer.nextColumnIndex(); } return ix; } /** * Method called when the current row is complete; typically * will flush possibly buffered column values, append linefeed * and reset state appropriately. */ protected void finishRow() throws JacksonException { _writer.endRow(); _nextColumnByName = -1; _justFinishedRow = true; } protected void _handleFirstLine() throws JacksonException { _handleFirstLine = false; if (_schema.usesHeader()) { int count = _schema.size(); if (count == 0) { _reportCsvWriteError("Schema specified that header line is to be written; but contains no column names"); } for (CsvSchema.Column column : _schema) { _writer.writeColumnName(column.getName()); } _writer.endRow(); } } protected void _addToArray(String value) { if (_arrayElements > 0) { _arrayContents.append(_arraySeparator); } ++_arrayElements; _arrayContents.append(value); } protected void _addToArray(char[] value) { if (_arrayElements > 0) { _arrayContents.append(_arraySeparator); } ++_arrayElements; _arrayContents.append(value); } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvMapper.java ================================================ package tools.jackson.dataformat.csv; import java.util.Collection; import java.util.Objects; import tools.jackson.core.type.TypeReference; import tools.jackson.databind.*; import tools.jackson.databind.cfg.MapperBuilder; import tools.jackson.databind.cfg.MapperBuilderState; import tools.jackson.databind.introspect.AnnotatedMember; import tools.jackson.databind.introspect.BeanPropertyDefinition; import tools.jackson.databind.util.NameTransformer; import tools.jackson.databind.util.SimpleLookupCache; import tools.jackson.databind.util.ViewMatcher; /** * Specialized {@link ObjectMapper}, with extended functionality to * produce {@link CsvSchema} instances out of POJOs. */ public class CsvMapper extends ObjectMapper { private static final long serialVersionUID = 1; /** * Base implementation for "Vanilla" {@link ObjectMapper}, used with * CSV backend. * * @since 3.0 */ public static class Builder extends MapperBuilder { public Builder(CsvFactory f) { super(f); } public Builder(StateImpl state) { super(state); } @Override public CsvMapper build() { return new CsvMapper(this); } @Override protected MapperBuilderState _saveState() { // nothing extra, just format features return new StateImpl(this); } /* /****************************************************************** /* Format features /****************************************************************** */ public Builder enable(CsvReadFeature... features) { for (CsvReadFeature f : features) { _formatReadFeatures |= f.getMask(); } return this; } public Builder disable(CsvReadFeature... features) { for (CsvReadFeature f : features) { _formatReadFeatures &= ~f.getMask(); } return this; } public Builder configure(CsvReadFeature feature, boolean state) { if (state) { _formatReadFeatures |= feature.getMask(); } else { _formatReadFeatures &= ~feature.getMask(); } return this; } public Builder enable(CsvWriteFeature... features) { for (CsvWriteFeature f : features) { _formatWriteFeatures |= f.getMask(); } return this; } public Builder disable(CsvWriteFeature... features) { for (CsvWriteFeature f : features) { _formatWriteFeatures &= ~f.getMask(); } return this; } public Builder configure(CsvWriteFeature feature, boolean state) { if (state) { _formatWriteFeatures |= feature.getMask(); } else { _formatWriteFeatures &= ~feature.getMask(); } return this; } protected static class StateImpl extends MapperBuilderState implements java.io.Serializable // important! { private static final long serialVersionUID = 3L; public StateImpl(Builder src) { super(src); } // We also need actual instance of state as base class can not implement logic // for reinstating mapper (via mapper builder) from state. @Override protected Object readResolve() { return new Builder(this).build(); } } } /* /********************************************************************** /* Caching of schemas /********************************************************************** */ /** * Simple caching for schema instances, given that they are relatively expensive * to construct; this one is for "loose" (non-typed) schemas */ protected final SimpleLookupCache _untypedSchemas; /** * Simple caching for schema instances, given that they are relatively expensive * to construct; this one is for typed schemas */ protected final SimpleLookupCache _typedSchemas; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public CsvMapper() { this(new Builder(new CsvFactory())); } public CsvMapper(CsvFactory f) { this(new Builder(f)); } /** * @since 3.0 */ public CsvMapper(CsvMapper.Builder b) { super(b); _untypedSchemas = new SimpleLookupCache<>(8,32); _typedSchemas = new SimpleLookupCache<>(8,32); } public static CsvMapper.Builder builder() { return new CsvMapper.Builder(new CsvFactory()); } public static CsvMapper.Builder builder(CsvFactory streamFactory) { return new CsvMapper.Builder(streamFactory); } @SuppressWarnings("unchecked") @Override public Builder rebuild() { return new Builder((Builder.StateImpl) _savedBuilderState); } /* /********************************************************************** /* Life-cycle, shared "vanilla" (default configuration) instance /********************************************************************** */ /** * Accessor method for getting globally shared "default" {@link CsvMapper} * instance: one that has default configuration, no modules registered, no * config overrides. Usable mostly when dealing "untyped" or Tree-style * content reading and writing. */ public static CsvMapper shared() { return SharedWrapper.wrapped(); } /* /********************************************************************** /* Life-cycle: JDK serialization support /********************************************************************** */ // 27-Feb-2018, tatu: Not sure why but it seems base class definitions // are not sufficient alone; sub-classes must re-define. @Override protected Object writeReplace() { return _savedBuilderState; } @Override protected Object readResolve() { throw new IllegalStateException("Should never deserialize `"+getClass().getName()+"` directly"); } /* /********************************************************************** /* Additional typed accessors /********************************************************************** */ /** * Overridden with more specific type, since factory we have * is always of type {@link CsvFactory} */ @Override public CsvFactory tokenStreamFactory() { return (CsvFactory) _streamFactory; } /* /********************************************************************** /* Format-specific /********************************************************************** */ public boolean isEnabled(CsvReadFeature f) { return _deserializationConfig.hasFormatFeature(f); } public boolean isEnabled(CsvWriteFeature f) { return _serializationConfig.hasFormatFeature(f); } /* /********************************************************************** /* Additional ObjectReader factory methods /********************************************************************** */ /** * Convenience method which is functionally equivalent to: *

     *  reader(pojoType).withSchema(schemaFor(pojoType));
     *
* that is, constructs a {@link ObjectReader} which both binds to * specified type and uses "loose" {@link CsvSchema} introspected from * specified type (one without strict inferred typing). *

* @param pojoType Type used both for data-binding (result type) and for * schema introspection. NOTE: must NOT be an array or Collection type, since * these only make sense for data-binding (like arrays of objects to bind), * but not for schema construction (no CSV types can be mapped to arrays * or Collections) */ public ObjectReader readerWithSchemaFor(Class pojoType) { JavaType type = constructType(pojoType); /* sanity check: not useful for structured types, since * schema type will need to differ from data-bind type */ if (type.isArrayType() || type.isCollectionLikeType()) { throw new IllegalArgumentException("Type can NOT be a Collection or array type"); } return readerFor(type).with(schemaFor(type)); } /** * Convenience method which is functionally equivalent to: *

     *  reader(pojoType).withSchema(typedSchemaFor(pojoType));
     *
* that is, constructs a {@link ObjectReader} which both binds to * specified type and uses "strict" {@link CsvSchema} introspected from * specified type (one where typing is inferred). */ public ObjectReader readerWithTypedSchemaFor(Class pojoType) { JavaType type = constructType(pojoType); // sanity check: not useful for structured types, since // schema type will need to differ from data-bind type if (type.isArrayType() || type.isCollectionLikeType()) { throw new IllegalArgumentException("Type can NOT be a Collection or array type"); } return readerFor(type).with(typedSchemaFor(type)); } /* /********************************************************************** /* Additional ObjectWriter factory methods /********************************************************************** */ /** * Convenience method which is functionally equivalent to: *
     *  writer(pojoType).with(schemaFor(pojoType));
     *
* that is, constructs a {@link ObjectWriter} which both binds to * specified type and uses "loose" {@link CsvSchema} introspected from * specified type (one without strict inferred typing). *

* @param pojoType Type used both for data-binding (result type) and for * schema introspection. NOTE: must NOT be an array or Collection type, since * these only make sense for data-binding (like arrays of objects to bind), * but not for schema construction (no root-level CSV types can be mapped to arrays * or Collections) */ public ObjectWriter writerWithSchemaFor(Class pojoType) { JavaType type = constructType(pojoType); // sanity check as per javadoc above if (type.isArrayType() || type.isCollectionLikeType()) { throw new IllegalArgumentException("Type can NOT be a Collection or array type"); } return writerFor(type).with(schemaFor(type)); } /** * Convenience method which is functionally equivalent to: *

     *  writer(pojoType).with(typedSchemaFor(pojoType));
     *
* that is, constructs a {@link ObjectWriter} which both binds to * specified type and uses "strict" {@link CsvSchema} introspected from * specified type (one where typing is inferred). */ public ObjectWriter writerWithTypedSchemaFor(Class pojoType) { JavaType type = constructType(pojoType); // sanity check as per javadoc above if (type.isArrayType() || type.isCollectionLikeType()) { throw new IllegalArgumentException("Type can NOT be a Collection or array type"); } return writerFor(type).with(typedSchemaFor(type)); } /* /********************************************************************** /* CsvSchema construction; overrides, new methods /********************************************************************** */ /** * Convenience method that is same as *
     *   CsvSchema.emptySchema().withHeader();
     *
* and returns a {@link CsvSchema} instance that uses default configuration * with additional setting that the first content line contains intended * column names. */ public CsvSchema schemaWithHeader() { return CsvSchema.emptySchema().withHeader(); } /** * Convenience method that is same as *
     *   CsvSchema.emptySchema()
     *
* that is, returns an "empty" Schema; one with default values and no * column definitions. */ public CsvSchema schema() { return CsvSchema.emptySchema(); } /** * Method that can be used to determine a CSV schema to use for given * POJO type, using default serialization settings including ordering. * Definition will not be strictly typed (that is, all columns are * just defined to be exposed as String tokens). *

* NOTE: the column order in the resulting schema is determined by POJO * property introspection order (which may differ from CSV column order). * If the schema is used with * {@link CsvSchema#withHeader() withHeader()} to read CSV data whose * column order differs from the POJO property order, also enable * {@link CsvSchema#withColumnReordering(boolean) withColumnReordering(true)} * so that columns are matched by name rather than position. */ public CsvSchema schemaFor(JavaType pojoType) { return _schemaFor(pojoType, _untypedSchemas, false, null); } public CsvSchema schemaForWithView(JavaType pojoType, Class view) { return _schemaFor(pojoType, _untypedSchemas, false, view); } public final CsvSchema schemaFor(Class pojoType) { return _schemaFor(constructType(pojoType), _untypedSchemas, false, null); } public final CsvSchema schemaForWithView(Class pojoType, Class view) { return _schemaFor(constructType(pojoType), _untypedSchemas, false, view); } public final CsvSchema schemaFor(TypeReference pojoTypeRef) { return _schemaFor(constructType(pojoTypeRef.getType()), _untypedSchemas, false, null); } public final CsvSchema schemaForWithView(TypeReference pojoTypeRef, Class view) { return _schemaFor(constructType(pojoTypeRef.getType()), _untypedSchemas, false, view); } /** * Method that can be used to determine a CSV schema to use for given * POJO type, using default serialization settings including ordering. * Definition WILL be strictly typed: that is, code will try to * determine type limitations which may make parsing more efficient * (especially for numeric types like java.lang.Integer). *

* NOTE: the column order in the resulting schema is determined by POJO * property introspection order (which may differ from CSV column order). * If the schema is used with * {@link CsvSchema#withHeader() withHeader()} to read CSV data whose * column order differs from the POJO property order, also enable * {@link CsvSchema#withColumnReordering(boolean) withColumnReordering(true)} * so that columns are matched by name rather than position. */ public CsvSchema typedSchemaFor(JavaType pojoType) { return _schemaFor(pojoType, _typedSchemas, true, null); } public CsvSchema typedSchemaForWithView(JavaType pojoType, Class view) { return _schemaFor(pojoType, _typedSchemas, true, view); } public final CsvSchema typedSchemaFor(Class pojoType) { return _schemaFor(constructType(pojoType), _typedSchemas, true, null); } public final CsvSchema typedSchemaForWithView(Class pojoType, Class view) { return _schemaFor(constructType(pojoType), _typedSchemas, true, view); } public final CsvSchema typedSchemaFor(TypeReference pojoTypeRef) { return _schemaFor(constructType(pojoTypeRef.getType()), _typedSchemas, true, null); } public final CsvSchema typedSchemaForWithView(TypeReference pojoTypeRef, Class view) { return _schemaFor(constructType(pojoTypeRef.getType()), _typedSchemas, true, view); } /* /********************************************************************** /* Internal methods /********************************************************************** */ protected CsvSchema _schemaFor(JavaType pojoType, SimpleLookupCache schemas, boolean typed, Class view) { final ViewKey viewKey = new ViewKey(pojoType, view); CsvSchema s = schemas.get(viewKey); if (s != null) { return s; } // 15-Oct-2019, tatu: Since 3.0, need context for introspection final SerializationContext ctxt = _serializationContext(); CsvSchema.Builder builder = CsvSchema.builder(); _addSchemaProperties(ctxt, builder, typed, pojoType, null, view); CsvSchema result = builder.build(); schemas.put(viewKey, result); return result; } protected boolean _nonPojoType(JavaType t) { if (t.isPrimitive() || t.isEnumType()) { return true; } Class raw = t.getRawClass(); // Wrapper types for numbers if (Number.class.isAssignableFrom(raw)) { if ((raw == Byte.class) || (raw == Short.class) || (raw == Character.class) || (raw == Integer.class) || (raw == Long.class) || (raw == Float.class) || (raw == Double.class) ) { return true; } } // Some other well-known non-POJO types if ((raw == Boolean.class) || (raw == String.class) ) { return true; } return false; } protected void _addSchemaProperties(SerializationContext ctxt, CsvSchema.Builder builder, boolean typed, JavaType pojoType, NameTransformer unwrapper, Class view) { // 09-Aug-2015, tatu: From [dataformat-csv#87], realized that one can not have // real schemas for primitive/wrapper if (_nonPojoType(pojoType)) { return; } BeanDescription beanDesc = ctxt.introspectBeanDescription(pojoType); final AnnotationIntrospector intr = ctxt.getAnnotationIntrospector(); final boolean includeByDefault = isEnabled(MapperFeature.DEFAULT_VIEW_INCLUSION); for (BeanPropertyDefinition prop : beanDesc.findProperties()) { if (view != null) { Class[] views = prop.findViews(); if (views == null) { views = beanDesc.findDefaultViews(); } // If property defines no Views AND non-view-enabled included by default, // should include if ((views == null) && includeByDefault) { ; } else if (!ViewMatcher.construct(views).isVisibleForView(view)) { continue; } } // ignore setter-only properties: if (!prop.couldSerialize()) { continue; } // [dataformat-csv#15]: handle unwrapped props AnnotatedMember m = prop.getPrimaryMember(); if (m != null) { NameTransformer nextUnwrapper = intr.findUnwrappingNameTransformer(ctxt.getConfig(), prop.getPrimaryMember()); if (nextUnwrapper != null) { if (unwrapper != null) { nextUnwrapper = NameTransformer.chainedTransformer(unwrapper, nextUnwrapper); } JavaType nextType = m.getType(); _addSchemaProperties(ctxt, builder, typed, nextType, nextUnwrapper, view); continue; } } // Then name wrapping/unwrapping String name = prop.getName(); if (unwrapper != null) { name = unwrapper.transform(name); } if (typed && m != null) { builder.addColumn(name, _determineType(m.getRawType())); } else { builder.addColumn(name); } } } // should not be null since couldSerialize() returned true, so: protected CsvSchema.ColumnType _determineType(Class propType) { // very first thing: arrays if (propType.isArray()) { // one exception; byte[] assumed to come in as Base64 encoded if (propType == byte[].class) { return CsvSchema.ColumnType.STRING; } return CsvSchema.ColumnType.ARRAY; } // First let's check certain cases that ought to be just presented as Strings... if (propType == String.class || propType == Character.TYPE || propType == Character.class) { return CsvSchema.ColumnType.STRING; } if (propType == Boolean.class || propType == Boolean.TYPE) { return CsvSchema.ColumnType.BOOLEAN; } // all primitive types are good for NUMBER, since 'char', 'boolean' handled above if (propType.isPrimitive()) { return CsvSchema.ColumnType.NUMBER; } if (Number.class.isAssignableFrom(propType)) { return CsvSchema.ColumnType.NUMBER; } if (Collection.class.isAssignableFrom(propType)) { // since 2.5 return CsvSchema.ColumnType.ARRAY; } // but in general we will just do what we can: return CsvSchema.ColumnType.NUMBER_OR_STRING; } /* /********************************************************************** /* Helper classes /********************************************************************** */ /** * Simple class in order to create a map key based on {@link JavaType} and a given view. * Used for caching associated schemas in {@code _untypedSchemas} and {@code _typedSchemas}. */ public static final class ViewKey implements java.io.Serializable { private static final long serialVersionUID = 1L; private final JavaType _pojoType; private final Class _view; private final int _hashCode; public ViewKey(final JavaType pojoType, final Class view) { _pojoType = pojoType; _view = view; _hashCode = Objects.hash(pojoType, view); } @Override public int hashCode() { return _hashCode; } @Override public boolean equals(final Object o) { if (o == this) { return true; } if (o == null || o.getClass() != getClass()) { return false; } final ViewKey other = (ViewKey) o; if (_hashCode != other._hashCode || _view != other._view) { return false; } return Objects.equals(_pojoType, other._pojoType); } @Override public String toString() { String viewName = _view != null ? _view.getName() : null; return "[ViewKey: pojoType=" + _pojoType + ", view=" + viewName + "]"; } } /** * Helper class to contain dynamically constructed "shared" instance of * mapper, should one be needed via {@link #shared}. */ private final static class SharedWrapper { private final static CsvMapper MAPPER = CsvMapper.builder().build(); public static CsvMapper wrapped() { return MAPPER; } } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvParser.java ================================================ package tools.jackson.dataformat.csv; import java.io.IOException; import java.io.Reader; import java.io.Writer; import java.math.BigDecimal; import java.math.BigInteger; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.Set; import tools.jackson.core.*; import tools.jackson.core.base.ParserMinimalBase; import tools.jackson.core.exc.StreamReadException; import tools.jackson.core.io.IOContext; import tools.jackson.core.json.DupDetector; import tools.jackson.core.util.ByteArrayBuilder; import tools.jackson.core.util.JacksonFeatureSet; import tools.jackson.core.util.SimpleStreamReadContext; import tools.jackson.core.util.TextBuffer; import tools.jackson.dataformat.csv.impl.CsvDecoder; /** * {@link JsonParser} implementation used to expose CSV documents * in form that allows other Jackson functionality to deal * with it. *

* Implementation is based on a state-machine that pulls information * using {@link CsvDecoder}. */ public class CsvParser extends ParserMinimalBase { // Just to protect against bugs, DoS, limit number of column defs we may read private final static int MAX_COLUMNS = 99999; private final static CsvSchema EMPTY_SCHEMA; static { EMPTY_SCHEMA = CsvSchema.emptySchema(); } /** * CSV is slightly different from defaults, having essentially untyped * scalars except if indicated by schema * * @since 2.12 */ protected final static JacksonFeatureSet STREAM_READ_CAPABILITIES = DEFAULT_READ_CAPABILITIES .with(StreamReadCapability.UNTYPED_SCALARS) ; /* /********************************************************************** /* State constants /********************************************************************** */ /** * Initial state before anything is read from document. */ protected final static int STATE_DOC_START = 0; /** * State before logical start of a record, in which next * token to return will be {@link JsonToken#START_OBJECT} * (or if no Schema is provided, {@link JsonToken#START_ARRAY}). */ protected final static int STATE_RECORD_START = 1; /** * State in which next entry will be available, returning * either {@link JsonToken#PROPERTY_NAME} or value * (depending on whether entries are expressed as * Objects or just Arrays); or * matching close marker. */ protected final static int STATE_NEXT_ENTRY = 2; /** * State in which value matching property name will * be returned. */ protected final static int STATE_NAMED_VALUE = 3; /** * State in which "unnamed" value (entry in an array) * will be returned, if one available; otherwise * end-array is returned. */ protected final static int STATE_UNNAMED_VALUE = 4; /** * State in which a column value has been determined to be of * an array type, and will need to be split into multiple * values. This can currently only occur for named values. */ protected final static int STATE_IN_ARRAY = 5; /** * State in which we have encountered more column values than there should be, * and need to basically skip extra values if callers tries to advance parser * state. */ protected final static int STATE_SKIP_EXTRA_COLUMNS = 6; /** * State in which we should expose name token for a "missing column" * (for which placeholder `null` value is to be added as well); * see {@link CsvReadFeature#INSERT_NULLS_FOR_MISSING_COLUMNS} for details. */ protected final static int STATE_MISSING_NAME = 7; /** * State in which we should expose `null` value token as a value for * "missing" column; * see {@link CsvReadFeature#INSERT_NULLS_FOR_MISSING_COLUMNS} for details. */ protected final static int STATE_MISSING_VALUE = 8; /** * State in which end marker is returned; either * null (if no array wrapping), or * {@link JsonToken#END_ARRAY} for wrapping. * This step will loop, returning series of nulls * if {@link #nextToken} is called multiple times. */ protected final static int STATE_DOC_END = 9; /* /********************************************************************** /* Configuration /********************************************************************** */ protected int _formatFeatures; /** * Definition of columns being read. */ protected CsvSchema _schema; /** * Number of columns defined by schema. */ protected int _columnCount = 0; protected final boolean _cfgEmptyStringAsNull; /** * @since 2.18 */ protected final boolean _cfgEmptyUnquotedStringAsNull; /** * @since 3.1 */ protected final boolean _cfgOnlyUnquotedNullValuesAsNull; /** * @since 3.2 */ protected final boolean _cfgEmptyStringAsMissing; /* /********************************************************************** /* State /********************************************************************** */ /** * Information about parser context, context in which * the next token is to be parsed (root, array, object). */ protected SimpleStreamReadContext _streamReadContext; /** * Name of column that we exposed most recently, accessible after * {@link JsonToken#PROPERTY_NAME} as well as value tokens immediately * following property name. */ protected String _currentName; /** * String value for the current column, if accessed. */ protected String _currentValue; /** * Index of the column we are exposing */ protected int _columnIndex; /** * Current logical state of the parser; one of STATE_ * constants. */ protected int _state = STATE_DOC_START; /** * We will hold on to decoded binary data, for duration of * current event, so that multiple calls to * {@link #getBinaryValue} will not need to decode data more * than once. */ protected byte[] _binaryValue; /** * Pointer to the first character of the next array value to return. */ protected int _arrayValueStart; /** * Contents of the cell, to be split into distinct array values. */ protected String _arrayValue; protected String _arraySeparator; protected String _nullValue; /* /********************************************************************** /* Helper objects /********************************************************************** */ /** * Thing that actually reads the CSV content */ protected final CsvDecoder _reader; /** * Buffer that contains contents of all values after processing * of doubled-quotes, escaped characters. */ protected final TextBuffer _textBuffer; protected ByteArrayBuilder _byteArrayBuilder; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public CsvParser(ObjectReadContext readCtxt, IOContext ioCtxt, int stdFeatures, int csvFeatures, CsvSchema schema, Reader reader) { super(readCtxt, ioCtxt, stdFeatures); if (reader == null) { throw new IllegalArgumentException("Can not pass `null` as `java.io.Reader` to read from"); } _formatFeatures = csvFeatures; DupDetector dups = StreamReadFeature.STRICT_DUPLICATE_DETECTION.enabledIn(stdFeatures) ? DupDetector.rootDetector(this) : null; _streamReadContext = SimpleStreamReadContext.createRootContext(dups); _textBuffer = ioCtxt.constructReadConstrainedTextBuffer(); _reader = new CsvDecoder(ioCtxt, this, reader, schema, _textBuffer, stdFeatures, csvFeatures); _setSchema(schema); _cfgEmptyStringAsNull = CsvReadFeature.EMPTY_STRING_AS_NULL.enabledIn(csvFeatures); _cfgEmptyUnquotedStringAsNull = CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL.enabledIn(csvFeatures); _cfgOnlyUnquotedNullValuesAsNull = CsvReadFeature.ONLY_UNQUOTED_NULL_VALUES_AS_NULL.enabledIn(csvFeatures); _cfgEmptyStringAsMissing = CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING.enabledIn(csvFeatures); } /* /********************************************************************** /* Versioned /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } /* /********************************************************************** /* Overrides: capability introspection methods /********************************************************************** */ @Override public boolean canReadObjectId() { return false; } @Override public boolean canReadTypeId() { return false; } // @since 3.2 @Override public boolean willInternPropertyNames() { return false; } @Override public JacksonFeatureSet streamReadCapabilities() { return STREAM_READ_CAPABILITIES; } /* /********************************************************************** /* Overridden methods /********************************************************************** */ @Override public int releaseBuffered(Writer out) { try { return _reader.releaseBuffered(out); } catch (IOException e) { throw _wrapIOFailure(e); } } // Default close() works fine // // public void close() throws JacksonException @Override protected void _closeInput() throws IOException { _reader.close(); } @Override protected void _releaseBuffers() { } /* /********************************************************************** /* Public API, configuration /********************************************************************** */ // [dataformats-text#604]: remove these 3 methods from 3.1 /* public JsonParser enable(CsvReadFeature f) { _formatFeatures |= f.getMask(); _cfgEmptyStringAsNull = CsvReadFeature.EMPTY_STRING_AS_NULL.enabledIn(_formatFeatures); _cfgEmptyUnquotedStringAsNull = CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL.enabledIn(_formatFeatures); _cfgOnlyUnquotedNullValuesAsNull = CsvReadFeature.ONLY_UNQUOTED_NULL_VALUES_AS_NULL.enabledIn(_formatFeatures); _cfgEmptyStringAsMissing = CsvReadFeature.EMPTY_STRING_AS_MISSING.enabledIn(_formatFeatures); return this; } public JsonParser disable(CsvReadFeature f) { _formatFeatures &= ~f.getMask(); _cfgEmptyStringAsNull = CsvReadFeature.EMPTY_STRING_AS_NULL.enabledIn(_formatFeatures); _cfgEmptyUnquotedStringAsNull = CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL.enabledIn(_formatFeatures); _cfgOnlyUnquotedNullValuesAsNull = CsvReadFeature.ONLY_UNQUOTED_NULL_VALUES_AS_NULL.enabledIn(_formatFeatures); _cfgEmptyStringAsMissing = CsvReadFeature.EMPTY_STRING_AS_MISSING.enabledIn(_formatFeatures); return this; } public JsonParser configure(CsvReadFeature f, boolean state) { if (state) { enable(f); } else { disable(f); } return this; } */ /** * Method for checking whether specified CSV {@link CsvReadFeature} * is enabled. */ public boolean isEnabled(CsvReadFeature f) { return (_formatFeatures & f.getMask()) != 0; } /** * Accessor for getting active schema definition: it may be * "empty" (no column definitions), but will never be null * since it defaults to an empty schema (and default configuration) */ @Override public CsvSchema getSchema() { return _schema; } /* /********************************************************************** /* Location info /********************************************************************** */ @Override public TokenStreamContext streamReadContext() { return _streamReadContext; } @Override public void assignCurrentValue(Object v) { _streamReadContext.assignCurrentValue(v); } @Override public Object currentValue() { return _streamReadContext.currentValue(); } @Override public TokenStreamLocation currentTokenLocation() { return _reader.getTokenLocation(); } @Override public TokenStreamLocation currentLocation() { return _reader.getCurrentLocation(); } @Override public Object streamReadInputSource() { return _reader.getInputSource(); } /* /********************************************************************** /* Parsing, basic /********************************************************************** */ /** * We need to override this method to support coercion from basic * String value into array, in cases where schema does not * specify actual type. */ @Override public boolean isExpectedStartArrayToken() { if (_currToken == null) { return false; } switch (_currToken.id()) { case JsonTokenId.ID_PROPERTY_NAME: case JsonTokenId.ID_START_OBJECT: case JsonTokenId.ID_END_OBJECT: case JsonTokenId.ID_END_ARRAY: return false; case JsonTokenId.ID_START_ARRAY: return true; } // Otherwise: may coerce into array, iff we have essentially "untyped" column if (_columnIndex < _columnCount) { CsvSchema.Column column = _schema.column(_columnIndex); if (column.getType() == CsvSchema.ColumnType.STRING) { _startArray(column); return true; } } // 30-Dec-2014, tatu: Seems like it should be possible to allow this // in non-array-wrapped case too (for 2.5), so let's try that: else if (_currToken == JsonToken.VALUE_STRING) { _startArray(CsvSchema.Column.PLACEHOLDER); return true; } return false; } @Override // since 2.12 public boolean isExpectedNumberIntToken() { JsonToken t = _currToken; if (t == JsonToken.VALUE_STRING) { if (_reader.isExpectedNumberIntToken()) { _updateToken(JsonToken.VALUE_NUMBER_INT); return true; } return false; } return (t == JsonToken.VALUE_NUMBER_INT); } @Override public String currentName() { return _currentName; } @Override public JsonToken nextToken() throws JacksonException { _binaryValue = null; switch (_state) { case STATE_DOC_START: return _updateToken(_handleStartDoc()); case STATE_RECORD_START: return _updateToken(_handleRecordStart()); case STATE_NEXT_ENTRY: return _updateToken(_handleNextEntry()); case STATE_NAMED_VALUE: return _updateToken(_handleNamedValue()); case STATE_UNNAMED_VALUE: return _updateToken(_handleUnnamedValue()); case STATE_IN_ARRAY: return _updateToken(_handleArrayValue()); case STATE_SKIP_EXTRA_COLUMNS: // Need to just skip whatever remains return _skipUntilEndOfLine(); case STATE_MISSING_NAME: return _updateToken(_handleMissingName()); case STATE_MISSING_VALUE: return _updateToken(_handleMissingValue()); case STATE_DOC_END: try { _reader.close(); } catch (IOException e) { throw _wrapIOFailure(e); } if (_streamReadContext.inRoot()) { return null; } // should always be in array, actually... but: boolean inArray = _streamReadContext.inArray(); _streamReadContext = _streamReadContext.clearAndGetParent(); return inArray ? JsonToken.END_ARRAY : JsonToken.END_OBJECT; default: throw new IllegalStateException(); } } /* /********************************************************************** /* Parsing, optimized methods /********************************************************************** */ @Override public boolean nextName(SerializableString str) throws JacksonException { // Optimize for expected case of getting PROPERTY_NAME: if (_state == STATE_NEXT_ENTRY) { _binaryValue = null; final JsonToken t = _updateToken(_handleNextEntry()); if (t == JsonToken.PROPERTY_NAME) { return str.getValue().equals(_currentName); } return false; } // unlikely, but verify just in case return (nextToken() == JsonToken.PROPERTY_NAME) && str.getValue().equals(currentName()); } @Override public String nextName() throws JacksonException { // Optimize for expected case of getting PROPERTY_NAME: if (_state == STATE_NEXT_ENTRY) { _binaryValue = null; final JsonToken t = _updateToken(_handleNextEntry()); if (t == JsonToken.PROPERTY_NAME) { return _currentName; } return null; } // unlikely, but verify just in case return (nextToken() == JsonToken.PROPERTY_NAME) ? currentName() : null; } @Override public String nextStringValue() throws JacksonException { _binaryValue = null; JsonToken t; if (_state == STATE_NAMED_VALUE) { t = _updateToken(_handleNamedValue()); if (t == JsonToken.VALUE_STRING) { return _currentValue; } } else if (_state == STATE_UNNAMED_VALUE) { t = _updateToken(_handleUnnamedValue()); if (t == JsonToken.VALUE_STRING) { return _currentValue; } } else { t = nextToken(); if (t == JsonToken.VALUE_STRING) { return getString(); } } return null; } /* /********************************************************************** /* Parsing, helper methods, regular /********************************************************************** */ /** * Method called to process the expected header line */ protected void _readHeaderLine() throws JacksonException { /* When the header line is present and the settings ask for it to be processed, two different options are possible: a) The schema has been populated. In this case, build a new schema where the order matches the *actual* order in which the given CSV file offers its columns, if _schema.reordersColumns() is set to true; there are cases where the consumer of the CSV file knows about the columns but not necessarily the order in which they are defined. b) The schema has not been populated. In this case, build a default schema based on the columns found in the header. */ final int schemaColumnCount = _schema.size(); if (schemaColumnCount > 0 && !_schema.reordersColumns()) { if (_schema.strictHeaders()) { String name; int ix = 0; for (CsvSchema.Column column : _schema._columns) { name = _reader.nextString(); ++ix; if (name == null) { _reportError(String.format("Missing header column #%d, expecting \"%s\"", ix, column.getName())); } else { // [dataformats-text#634]: validate header name length _streamReadConstraints.validateNameLength(name.length()); if (!column.getName().equals(name)) { _reportError(String.format( "Mismatched header column #%d: expected \"%s\", actual \"%s\"", ix, column.getName(), name)); } } } if ((name = _reader.nextString()) != null) { _reportError(String.format("Extra header column \"%s\"", name)); } } else { int allowed = MAX_COLUMNS; String name; while ((name = _reader.nextString()) != null) { // [dataformats-text#634]: validate header name length _streamReadConstraints.validateNameLength(name.length()); // If we don't care about validation, just skip. But protect against infinite loop if (--allowed < 0) { _reportError("Internal error: skipped "+MAX_COLUMNS+" header columns"); } } } return; } // either the schema is empty or reorder columns flag is set String name; CsvSchema.Builder builder = _schema.rebuild().clearColumns(); int count = 0; // [dataformats-text#327]: Optionally check for duplicate column names final boolean failOnDupHeaders = CsvReadFeature.FAIL_ON_DUPLICATE_HEADER_COLUMNS.enabledIn(_formatFeatures); final Set seenNames = failOnDupHeaders ? new HashSet<>() : null; // [dataformats-text#657]: Optionally match header names case-insensitively final boolean caseInsensitive = CsvReadFeature.CASE_INSENSITIVE_HEADERS.enabledIn(_formatFeatures); final boolean trimHeaderNames = CsvReadFeature.TRIM_HEADER_SPACES.enabledIn(_formatFeatures); while ((name = _reader.nextString()) != null) { // one more thing: always trim names, regardless of config settings // [dataformats-text#31]: Allow disabling of trimming if (trimHeaderNames) { name = name.trim(); } // [dataformats-text#634]: validate header name length _streamReadConstraints.validateNameLength(name.length()); // [dataformats-text#327]: check for duplicate column names if (failOnDupHeaders && !seenNames.add(name)) { _reportCsvReadError(String.format( "Duplicate header column \"%s\"", name)); } // See if "old" schema defined type; if so, use that type... // [dataformats-text#657]: optionally use case-insensitive lookup CsvSchema.Column prev = caseInsensitive ? _schema.columnIgnoreCase(name) : _schema.column(name); if (prev != null) { builder.addColumn(prev.getName(), prev.getType()); } else { builder.addColumn(name); } if (++count > MAX_COLUMNS) { _reportError("Internal error: reached maximum of "+MAX_COLUMNS+" header columns"); } } // [dataformats-text#204]: Drop trailing empty name if so instructed if (CsvReadFeature.ALLOW_TRAILING_COMMA.enabledIn(_formatFeatures)) { builder.dropLastColumnIfEmpty(); } // Ok: did we get any columns? CsvSchema newSchema = builder.build(); int newColumnCount = newSchema.size(); if (newColumnCount < 2) { // 1 just because we may get 'empty' header name String first = (newColumnCount == 0) ? "" : newSchema.columnName(0).trim(); if (first.isEmpty()) { _reportCsvReadError("Empty header line: can not bind data"); } } // [dataformats-text#285]: Are we missing something? if (CsvReadFeature.FAIL_ON_MISSING_HEADER_COLUMNS.enabledIn(_formatFeatures)) { Set oldColumnNames = new LinkedHashSet<>(); _schema.getColumnNames(oldColumnNames); oldColumnNames.removeAll(newSchema.getColumnNames()); int diff = oldColumnNames.size(); if (diff > 0) { _reportCsvReadError(String.format("Missing %d header column%s: [\"%s\"]", diff, (diff == 1) ? "" : "s", String.join("\",\"", oldColumnNames) )); } } // otherwise we will use what we got _setSchema(builder.build()); } /** * Method called to handle details of initializing things to return * the very first token. */ protected JsonToken _handleStartDoc() throws JacksonException { // also, if comments enabled, or skip empty lines, may need to skip leading ones _reader.skipLinesWhenNeeded(); // First things first: are we expecting header line? If so, read, process if (_schema.usesHeader()) { _readHeaderLine(); _reader.skipLinesWhenNeeded(); } // and if we are to skip the first data line, skip it if (_schema.skipsFirstDataRow()) { _reader.skipLine(); _reader.skipLinesWhenNeeded(); } // Only one real complication, actually; empty documents (zero bytes). // Those have no entries. Should be easy enough to detect like so: final boolean wrapAsArray = CsvReadFeature.WRAP_AS_ARRAY.enabledIn(_formatFeatures); if (!_reader.hasMoreInput()) { _state = STATE_DOC_END; // but even empty sequence must still be wrapped in logical array if (wrapAsArray) { _streamReadContext = _reader.childArrayContext(_streamReadContext); return JsonToken.START_ARRAY; } return null; } if (wrapAsArray) { _streamReadContext = _reader.childArrayContext(_streamReadContext); _state = STATE_RECORD_START; return JsonToken.START_ARRAY; } // otherwise, same as regular new entry... return _handleRecordStart(); } protected JsonToken _handleRecordStart() throws JacksonException { _columnIndex = 0; if (_columnCount == 0) { // no schema; exposed as an array _state = STATE_UNNAMED_VALUE; _streamReadContext = _reader.childArrayContext(_streamReadContext); return JsonToken.START_ARRAY; } // otherwise, exposed as an Object _streamReadContext = _reader.childObjectContext(_streamReadContext); _state = STATE_NEXT_ENTRY; return JsonToken.START_OBJECT; } protected JsonToken _handleNextEntry() throws JacksonException { // NOTE: only called when we do have real Schema String next; // [dataformats-text#355]: loop to skip empty unquoted values when // EMPTY_STRING_AS_MISSING enabled (avoids recursion for consecutive empty cells) while (true) { try { next = _reader.nextString(); } catch (RuntimeException e) { // 12-Oct-2015, tatu: Need to resync here as well... _state = STATE_SKIP_EXTRA_COLUMNS; throw e; } if (next == null) { // end of record or input... // 16-Mar-2017, tatu: [dataformat-csv#137] Missing column(s)? if (_columnIndex < _columnCount) { return _handleMissingColumns(); } return _handleObjectRowEnd(); } if (_columnIndex >= _columnCount) { _currentValue = next; return _handleExtraColumn(next); } // [dataformats-text#355]: skip empty unquoted values when EMPTY_STRING_AS_MISSING enabled if (_cfgEmptyStringAsMissing && next.isEmpty() && !_reader.isCurrentTokenQuoted()) { ++_columnIndex; continue; } break; } final CsvSchema.Column column = _schema.column(_columnIndex); _state = STATE_NAMED_VALUE; _currentName = column.getName(); // 25-Aug-2024, tatu: [dataformats-text#442] May have value decorator CsvValueDecorator dec = column.getValueDecorator(); if (dec == null) { _currentValue = next; } else { _currentValue = dec.undecorateValue(this, next); } return JsonToken.PROPERTY_NAME; } protected JsonToken _handleNamedValue() throws JacksonException { // 06-Oct-2015, tatu: During recovery, may get past all regular columns, // but we also need to allow access past... sort of. if (_columnIndex < _columnCount) { CsvSchema.Column column = _schema.column(_columnIndex); ++_columnIndex; if (column.isArray()) { _startArray(column); return JsonToken.START_ARRAY; } } _state = STATE_NEXT_ENTRY; if (_isNullValue(_currentValue)) { return JsonToken.VALUE_NULL; } return JsonToken.VALUE_STRING; } protected JsonToken _handleUnnamedValue() throws JacksonException { String next = _reader.nextString(); if (next == null) { // end of record or input... _streamReadContext = _streamReadContext.clearAndGetParent(); if (!_reader.startNewLine()) { // end of whole thing... _state = STATE_DOC_END; } else { // no, just end of record _state = STATE_RECORD_START; } return JsonToken.END_ARRAY; } // state remains the same _currentValue = next; ++_columnIndex; if (_isNullValue(next)) { return JsonToken.VALUE_NULL; } return JsonToken.VALUE_STRING; } protected JsonToken _handleArrayValue() throws JacksonException { int offset = _arrayValueStart; if (offset < 0) { // just returned last value _streamReadContext = _streamReadContext.clearAndGetParent(); // [dataformats-text#9]: for schema-less case (unnamed values), // need to go back to unnamed value state, not named entry state if (_columnCount == 0) { _state = STATE_UNNAMED_VALUE; } else { _state = STATE_NEXT_ENTRY; } return JsonToken.END_ARRAY; } int end = _arrayValue.indexOf(_arraySeparator, offset); if (end < 0) { // last value _arrayValueStart = end; // end marker, regardless // 11-Feb-2015, tatu: Tricky, As per [dataformat-csv#66]; empty Strings really // should not emit any values. Not sure if trim if (offset == 0) { // no separator // for now, let's use trimming for checking if (_arrayValue.isEmpty() || _arrayValue.trim().isEmpty()) { _streamReadContext = _streamReadContext.clearAndGetParent(); _state = STATE_NEXT_ENTRY; return JsonToken.END_ARRAY; } _currentValue = _arrayValue; } else { _currentValue = _arrayValue.substring(offset); } } else { _currentValue = _arrayValue.substring(offset, end); _arrayValueStart = end+_arraySeparator.length(); } if (isEnabled(CsvReadFeature.TRIM_SPACES)) { _currentValue = _currentValue.trim(); } if (_isNullValue(_currentValue)) { return JsonToken.VALUE_NULL; } return JsonToken.VALUE_STRING; } /* /********************************************************************** /* Parsing, helper methods, extra column(s) /********************************************************************** */ /** * Helper method called when an extraneous column value is found. * What happens then depends on configuration, but there are three * main choices: ignore value (and rest of line); expose extra value * as "any property" using configured name, or throw an exception. */ protected JsonToken _handleExtraColumn(String value) throws JacksonException { // If "any properties" enabled, expose as such String anyProp = _schema.getAnyPropertyName(); if (anyProp != null) { _currentName = anyProp; _state = STATE_NAMED_VALUE; return JsonToken.PROPERTY_NAME; } _currentName = null; // With [dataformat-csv#95] we'll simply ignore extra if (CsvReadFeature.IGNORE_TRAILING_UNMAPPABLE.enabledIn(_formatFeatures)) { _state = STATE_SKIP_EXTRA_COLUMNS; return _skipUntilEndOfLine(); } // 14-Mar-2012, tatu: As per [dataformat-csv#1], let's allow one specific case // of extra: if we get just one all-whitespace entry, that can be just skipped _state = STATE_SKIP_EXTRA_COLUMNS; if (_columnIndex == _columnCount && CsvReadFeature.ALLOW_TRAILING_COMMA.enabledIn(_formatFeatures)) { value = value.trim(); if (value.isEmpty()) { // if so, need to verify we then get the end-of-record; // easiest to do by just calling ourselves again... String next = _reader.nextString(); if (next == null) { // should end of record or input return _handleObjectRowEnd(); } } } // 21-May-2015, tatu: Need to enter recovery mode, to skip remainder of the line return _reportCsvReadError("Too many entries: expected at most %d (value #%d (%d chars) \"%s\")", _columnCount, _columnIndex, value.length(), value); } /* /********************************************************************** /* Parsing, helper methods, missing column(s) /********************************************************************** */ /** * Helper method called when end of row occurs before finding values for * all schema-specified columns. */ protected JsonToken _handleMissingColumns() throws JacksonException { if (CsvReadFeature.FAIL_ON_MISSING_COLUMNS.enabledIn(_formatFeatures)) { // First: to allow recovery, set states to expose next line, if any _handleObjectRowEnd(); // and then report actual problem return _reportCsvReadError("Not enough column values: expected %d, found %d", _columnCount, _columnIndex); } if (CsvReadFeature.INSERT_NULLS_FOR_MISSING_COLUMNS.enabledIn(_formatFeatures)) { _state = STATE_MISSING_VALUE; _currentName = _schema.columnName(_columnIndex); _currentValue = null; return JsonToken.PROPERTY_NAME; } return _handleObjectRowEnd(); } protected JsonToken _handleMissingName() throws JacksonException { if (++_columnIndex < _columnCount) { _state = STATE_MISSING_VALUE; _currentName = _schema.columnName(_columnIndex); // _currentValue already set to null earlier return JsonToken.PROPERTY_NAME; } return _handleObjectRowEnd(); } protected JsonToken _handleMissingValue() throws JacksonException { _state = STATE_MISSING_NAME; return JsonToken.VALUE_NULL; } /* /********************************************************************** /* Parsing, helper methods: row end handling, recover /********************************************************************** */ /** * Helper method called to handle details of state update when end of logical * record occurs. */ protected final JsonToken _handleObjectRowEnd() throws JacksonException { _streamReadContext = _streamReadContext.clearAndGetParent(); if (!_reader.startNewLine()) { _state = STATE_DOC_END; } else { _state = STATE_RECORD_START; } return JsonToken.END_OBJECT; } protected final JsonToken _skipUntilEndOfLine() throws JacksonException { while (_reader.nextString() != null) { } // But once we hit the end of the logical line, get out // NOTE: seems like we should always be within Object, but let's be conservative // and check just in case _streamReadContext = _streamReadContext.clearAndGetParent(); _state = _reader.startNewLine() ? STATE_RECORD_START : STATE_DOC_END; return _updateToken(_streamReadContext.inArray() ? JsonToken.END_ARRAY : JsonToken.END_OBJECT); } /* /********************************************************************** /* String value handling /********************************************************************** */ // For now we do not store char[] representation... @Override public boolean hasStringCharacters() { if (_currToken == JsonToken.PROPERTY_NAME) { return false; } return _textBuffer.hasTextAsCharacters(); } @Override public String getString() throws JacksonException { if (_currToken == JsonToken.PROPERTY_NAME) { return _currentName; } // 08-Sep-2020, tatu: Used to check for empty String wrt EMPTY_STRING_AS_NULL // here, but now demoted to actual "nextToken()" handling return _currentValue; } @Override public char[] getStringCharacters() throws JacksonException { if (_currToken == JsonToken.PROPERTY_NAME) { return _currentName.toCharArray(); } return _textBuffer.contentsAsArray(); } @Override public int getStringLength() throws JacksonException { if (_currToken == JsonToken.PROPERTY_NAME) { return _currentName.length(); } return _textBuffer.size(); } @Override public int getStringOffset() throws JacksonException { return 0; } @Override public int getString(Writer w) throws JacksonException { String value = (_currToken == JsonToken.PROPERTY_NAME) ? _currentName : _currentValue; if (value == null) { return 0; } try { w.write(value); } catch (IOException e) { throw _wrapIOFailure(e); } return value.length(); } /* /********************************************************************** /* Binary (base64) /********************************************************************** */ @Override public Object getEmbeddedObject() throws JacksonException { // in theory may access binary data using this method so... return _binaryValue; } @SuppressWarnings("resource") @Override public byte[] getBinaryValue(Base64Variant variant) throws JacksonException { if (_binaryValue == null) { if (_currToken != JsonToken.VALUE_STRING) { _reportError("Current token (%s) not VALUE_STRING, can not access as binary", _currToken); } ByteArrayBuilder builder = _getByteArrayBuilder(); _decodeBase64(_currentValue, builder, variant); _binaryValue = builder.toByteArray(); } return _binaryValue; } /* /********************************************************************** /* Number accessors /********************************************************************** */ @Override public NumberType getNumberType() throws JacksonException { // 31-May-2025, tatu: in 3.x no longer exception but null for non-number token if (_currToken == JsonToken.VALUE_NUMBER_INT) { return _reader.getNumberType(); } return null; } @Override public Number getNumberValue() throws JacksonException { _verifyNumberToken(); return _reader.getNumberValue(false); } @Override public Number getNumberValueExact() throws JacksonException { _verifyNumberToken(); return _reader.getNumberValue(true); } @Override public int getIntValue() throws JacksonException { _verifyNumberToken(); return _reader.getIntValue(); } @Override public long getLongValue() throws JacksonException { _verifyNumberToken(); return _reader.getLongValue(); } @Override public BigInteger getBigIntegerValue() throws JacksonException { _verifyNumberToken(); return _reader.getBigIntegerValue(); } @Override public float getFloatValue() throws JacksonException { _verifyNumberToken(); return _reader.getFloatValue(); } @Override public double getDoubleValue() throws JacksonException { _verifyNumberToken(); return _reader.getDoubleValue(); } @Override public BigDecimal getDecimalValue() throws JacksonException { _verifyNumberToken(); return _reader.getDecimalValue(); } // not yet supported... @Override public boolean isNaN() { return false; } /* /********************************************************************** /* Helper methods from base class /********************************************************************** */ @Override protected void _handleEOF() throws StreamReadException { // I don't think there's problem with EOFs usually; except maybe in quoted stuff? _reportInvalidEOF(": expected closing quote character", null); } /* /********************************************************************** /* Internal methods, error reporting /********************************************************************** */ /** * Method called when there is a problem related to mapping CSV columns * to property names, i.e. is CSV-specific aspect */ public T _reportCsvReadError(String msg, Object... args) throws JacksonException { if (args.length > 0) { msg = String.format(msg, args); } throw CsvReadException.from(this, msg, _schema); } public T _reportUnexpectedCsvChar(int ch, String msg) throws JacksonException { return super._reportUnexpectedChar(ch, msg); } @Override // just to make visible to decoder public T _reportError(String msg) throws StreamReadException { return super._reportError(msg); } @Override // just to make visible to decoder public JacksonException _wrapIOFailure(IOException e) { return super._wrapIOFailure(e); } protected void _verifyNumberToken() throws JacksonException { if (_currToken != JsonToken.VALUE_NUMBER_INT) { _reportNotNumericError(); } } protected T _reportNotNumericError() throws JacksonException { _reportError("Current token (%s) not numeric, cannot use numeric value accessors", _currToken); return null; } /* /********************************************************************** /* Internal methods /********************************************************************** */ protected void _setSchema(CsvSchema schema) { if (schema == null) { _schema = EMPTY_SCHEMA; } else { _schema = schema; _nullValue = _schema.getNullValueString(); } _columnCount = _schema.size(); _reader.setSchema(_schema); } public ByteArrayBuilder _getByteArrayBuilder() { if (_byteArrayBuilder == null) { _byteArrayBuilder = new ByteArrayBuilder(); } else { _byteArrayBuilder.reset(); } return _byteArrayBuilder; } protected void _startArray(CsvSchema.Column column) { _updateToken(JsonToken.START_ARRAY); _streamReadContext = _streamReadContext.createChildArrayContext(_reader.getCurrentRow(), _reader.getCurrentColumn()); _state = STATE_IN_ARRAY; _arrayValueStart = 0; _arrayValue = _currentValue; String sep = column.getArrayElementSeparator(); if (sep.isEmpty()) { sep = _schema.getArrayElementSeparator(); } _arraySeparator = sep; } /** * Helper method called to check whether specified String value should be considered * "null" value, if so configured. * * @since 2.17.1 */ protected boolean _isNullValue(String value) { if (_nullValue != null) { if (_nullValue.equals(value)) { // [dataformats-text#601]: If `ONLY_UNQUOTED_NULL_VALUES_AS_NULL` is enabled, // only treat unquoted values as null return !_cfgOnlyUnquotedNullValuesAsNull || !_reader.isCurrentTokenQuoted(); } } if (value.isEmpty()) { return _cfgEmptyStringAsNull || (_cfgEmptyUnquotedStringAsNull && !_reader.isCurrentTokenQuoted()); } return false; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvReadException.java ================================================ package tools.jackson.dataformat.csv; import tools.jackson.core.exc.StreamReadException; /** * Format-specific exception used to indicate problems regarding low-level * decoding/parsing issues specific to CSV content; * usually problems with field-to-column mapping as defined by {@link CsvSchema}. *

* In Jackson 2.x this type extends * {@link tools.jackson.databind.DatabindException}, but for Jackson 3.0 * will become streaming-level exception */ public class CsvReadException extends StreamReadException { private static final long serialVersionUID = 3L; protected final CsvSchema _schema; public CsvReadException(CsvParser p, String msg, CsvSchema schema) { super(p, msg); _schema = schema; } public static CsvReadException from(CsvParser p, String msg, CsvSchema schema) { return new CsvReadException(p, msg, schema); } public CsvSchema getSchema() { return _schema; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvReadFeature.java ================================================ package tools.jackson.dataformat.csv; import tools.jackson.core.FormatFeature; /** * Enumeration that defines all togglable features for CSV parsers *

* NOTE: in Jackson 2.x this was named {@code CsvParser.Feature}. */ public enum CsvReadFeature implements FormatFeature { /** * Feature determines whether spaces around separator characters * (commas) are to be automatically trimmed before being reported * or not. * Note that this does NOT force trimming of possible white space from * within double-quoted values, but only those surrounding unquoted * values (white space outside of double-quotes is never included regardless * of trimming). *

* Default value is false, as per RFC-4180. */ TRIM_SPACES(false), /** * Feature determines whether spaces around separator characters * (commas) in header line entries (header names) are to be automatically * trimmed before being reported or not. * Note that this does NOT force trimming of possible white space from * within double-quoted values, but only those surrounding unquoted * values (white space outside of double-quotes is never included regardless * of trimming). *

* Default value is {@code true}. */ TRIM_HEADER_SPACES(true), /** * Feature that determines how stream of records (usually CSV lines, but sometimes * multiple lines when line-feeds are included in quoted values) is exposed: * either as a sequence of Objects (false), or as an Array of Objects (true). * Using stream of Objects is convenient when using * ObjectMapper.readValues(...) * and array of Objects convenient when binding to Lists or * arrays of values. *

* Default value is false, meaning that by default a CSV document is exposed as * a sequence of root-level Object entries. */ WRAP_AS_ARRAY(false), /** * Feature that allows ignoring of unmappable "extra" columns; that is, values for * columns that appear after columns for which types are defined. When disabled, * an exception is thrown for such column values, but if enabled, they are * silently ignored. *

* Feature is disabled by default. */ IGNORE_TRAILING_UNMAPPABLE(false), /** * Feature that allows skipping input lines that are completely empty or blank (composed only of whitespace), * instead of being decoded as lines of just a single column with an empty/blank String value (or, * depending on binding, `null`). *

* Feature is disabled by default. */ SKIP_EMPTY_LINES(false), /** * Feature that allows there to be a trailing single extraneous data * column that is empty. When this feature is disabled, any extraneous * column, regardless of content will cause an exception to be thrown. * Disabling this feature is only useful when * IGNORE_TRAILING_UNMAPPABLE is also disabled. */ ALLOW_TRAILING_COMMA(true), /** * Feature that allows accepting "hash comments" by default, similar to * {@link CsvSchema#withAllowComments(boolean)}. If enabled, such comments * are by default allowed on all columns of all documents. */ ALLOW_COMMENTS(false), /** * Feature that allows failing (with a {@link CsvReadException}) in cases * where number of column values encountered is less than number of columns * declared in the active schema ("missing columns"). *

* Note that this feature has precedence over {@link #INSERT_NULLS_FOR_MISSING_COLUMNS} *

* Feature is disabled by default. */ FAIL_ON_MISSING_COLUMNS(false), /** * Feature that allows failing (with a {@link CsvReadException}) in cases * where number of header columns encountered is less than number of columns * declared in the active schema (if there is one). *

* Feature is enabled by default. */ FAIL_ON_MISSING_HEADER_COLUMNS(true), /** * Feature that allows "inserting" virtual key / `null` value pairs in case * a row contains fewer columns than declared by configured schema. * This typically has the effect of forcing an explicit `null` assigment (or * corresponding "null value", if so configured) at databinding level. * If disabled, no extra work is done and values for "missing" columns are * not exposed as part of the token stream. *

* Note that this feature is only considered if * {@link #FAIL_ON_MISSING_COLUMNS} * is disabled. *

* Feature is disabled by default. */ INSERT_NULLS_FOR_MISSING_COLUMNS(false), /** * Feature that enables coercing an empty {@link String} (quoted or unquoted) * to {@code null}. *

* Note that if this setting is enabled, {@link #EMPTY_UNQUOTED_STRING_AS_NULL} * has no effect. * * Feature is disabled by default for backwards compatibility. */ EMPTY_STRING_AS_NULL(false), /** * Feature that enables coercing an empty un-quoted {@link String} to {@code null}. * This feature allow differentiating between an empty quoted {@link String} and an empty un-quoted {@link String}. *

* Note that this feature is only considered if * {@link #EMPTY_STRING_AS_NULL} * is disabled. *

* Feature is disabled by default for backwards compatibility. */ EMPTY_UNQUOTED_STRING_AS_NULL(false), /** * Feature that enables treating empty unquoted cell values as "missing", * effectively suppressing the token pair (property name + value) for such cells. * This means that if the target POJO field has a default value, it will be * preserved instead of being overwritten with an empty String. *

* This is different from {@link #EMPTY_STRING_AS_NULL} which coerces the value * to {@code null}: this feature causes the value to not be included in the token * stream at all, similar to how truly missing columns (row shorter than schema) * are handled. *

* Only applies to unquoted empty values; a quoted empty string ({@code ""}) is * still reported normally. *

* Feature is disabled by default for backwards compatibility. * * @since 3.2 */ EMPTY_UNQUOTED_STRING_AS_MISSING(false), /** * Feature that enables treating only un-quoted values matching the configured * "null value" String (see {@link CsvSchema#getNullValueString()}) as {@code null}, * but not quoted values: * differentiating between a quoted null value String (like {@code "null"}) * which remains as a String, and an unquoted null value (like {@code null}) * which becomes {@code null}. *

* This is similar to {@link #EMPTY_UNQUOTED_STRING_AS_NULL} but applies to the * explicitly configured null value rather than empty strings. *

* Note: This feature only has an effect if a null value is configured via * {@link CsvSchema.Builder#setNullValue(String)}. *

* Feature is disabled by default for backwards compatibility. * * @since 3.1 */ ONLY_UNQUOTED_NULL_VALUES_AS_NULL(false), /** * Feature that allows skipping input rows that consist solely of column separator * characters (for example, a line containing only {@code ,,} with the default * comma separator). * This is different from {@link #SKIP_EMPTY_LINES} which only skips lines that are * completely empty or blank (whitespace only): this feature skips lines that * contain only consecutive separator characters followed by a linefeed. *

* Feature is disabled by default. * * @since 3.2 */ SKIP_EMPTY_ROWS(false), /** * Feature that enables failing (with a {@link CsvReadException}) when * duplicate column names are encountered in the header line. *

* When enabled, parsing will fail if the header line contains two or more * columns with the same name. When disabled, duplicates are allowed and * the last column with a given name will be the one accessible by name * (earlier columns with the same name are effectively hidden). *

* Feature is enabled by default. * * @since 3.2 */ FAIL_ON_DUPLICATE_HEADER_COLUMNS(true), /** * Feature that enables case-insensitive matching of header column names * against schema column names. When enabled, a CSV header column named * "TEMP_MAX" will match a schema column named "temp_max" (and vice versa). *

* This is useful when used together with * {@code MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES} to allow * case-insensitive header matching at the parser level, preventing * {@link #FAIL_ON_MISSING_HEADER_COLUMNS} from incorrectly reporting * columns as missing when they differ only by case. *

* Feature is disabled by default. * * @since 3.2 */ CASE_INSENSITIVE_HEADERS(false), ; private final boolean _defaultState; private final int _mask; /** * Method that calculates bit set (flags) of all features that * are enabled by default. */ public static int collectDefaults() { int flags = 0; for (CsvReadFeature f : values()) { if (f.enabledByDefault()) { flags |= f.getMask(); } } return flags; } private CsvReadFeature(boolean defaultState) { _defaultState = defaultState; _mask = (1 << ordinal()); } @Override public boolean enabledByDefault() { return _defaultState; } @Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; } @Override public int getMask() { return _mask; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvSchema.java ================================================ package tools.jackson.dataformat.csv; import java.util.*; import java.util.function.UnaryOperator; import tools.jackson.core.FormatSchema; /** * Simple {@link FormatSchema} sub-type that defines properties of * a CSV document to read or write. * Instances are thread-safe and immutable. *

* Properties supported currently are: *

    *
  • {@code columns} (List of {@link Column}) [default: empty List]: Ordered list of columns (which may be empty, see below). * Each column has name (mandatory) as well as type (optional; if not * defined, defaults to "String"). * Note that *
  • *
  • {@code useHeader} (boolean) [default: false]: whether the first line of physical document defines * column names (true) or not (false): if enabled, parser will take * first-line values to define column names; and generator will output * column names as the first line *
  • *
  • {@code quoteChar} (char) [default: double-quote ('")]: character used for quoting values * that contain quote characters or linefeeds. *
  • *
  • {@code columnSeparator} (char) [default: comma (',')]: character used to separate values. * Other commonly used values include tab ('\t') and pipe ('|') *
  • *
  • {@code arrayElementSeparator} (String) [default: semicolon (";")]: string used to separate array elements. *
  • *
  • {@code lineSeparator} (String) [default: "\n"]: character used to separate data rows. * Only used by generator; parser accepts three standard linefeeds ("\r", "\r\n", "\n"). *
  • *
  • {@code escapeChar} (int) [default: -1 meaning "none"]: character, if any, used to * escape values. Most commonly defined as backslash ('\'). Only used by parser; * generator only uses quoting, including doubling up of quotes to indicate quote char * itself. *
  • *
  • {@code skipFirstDataRow} (boolean) [default: false]: whether the first data line (either * first line of the document, if useHeader=false, or second, if useHeader=true) * should be completely ignored by parser. Needed to support CSV-like file formats * that include additional non-data content before real data begins (specifically * some database dumps do this) *
  • *
  • {@code nullValue} (String) [default: "" (empty String)]: When asked to write Java `null`, * this String value will be used instead.
    * Null values will also be recognized during value reads. *
  • *
  • {@code strictHeaders} (boolean) [default: false] (added in Jackson 2.7): whether names of * columns defined in the schema MUST match with actual declaration from * the header row (if header row handling enabled): if true, they must be and * an exception if thrown if order differs: if false, no verification is performed. *
  • *
  • {@code allowComments} (boolean) [default: false]: whether lines that start with character "#" * are processed as comment lines and skipped/ignored. *
  • *
  • {@code anyProperty} (String] [default: none]: if "any properties" (properties for * 'extra' columns; ones not specified in schema) are enabled, they are mapped to * this name: leaving it as {@code null} disables use of * "any properties" (and they are either ignored, or an exception * is thrown, depending on other settings); setting it to a non-null * String value will expose all extra properties under one specified name. * Most often used with Jackson {@code @JsonAnySetter} annotation. *

    * Note that schemas without any columns are legal, but if no columns * are added, behavior of parser/generator is usually different and * content will be exposed as logical Arrays instead of Objects. *

    * There are 4 ways to create CsvSchema instances: *

      *
    • Manually build one, using {@link Builder} *
    • *
    • Modify existing schema (using withXxx methods * or {@link #rebuild} for creating {@link Builder}) *
    • *
    • Create schema based on a POJO definition (Class), using * {@link CsvMapper} methods like {@link CsvMapper#schemaFor(java.lang.Class)}. *
    • *
    • Request that {@link CsvParser} reads schema from the first line: * enable "useHeader" property for the initial schema, and let parser * read column names from the document itself. *
    • *
    */ public class CsvSchema implements FormatSchema, Iterable, java.io.Serializable { private static final long serialVersionUID = 3L; /* /********************************************************************** /* Constants, feature flags /********************************************************************** */ protected final static int ENCODING_FEATURE_USE_HEADER = 0x0001; protected final static int ENCODING_FEATURE_SKIP_FIRST_DATA_ROW = 0x0002; protected final static int ENCODING_FEATURE_ALLOW_COMMENTS = 0x0004; protected final static int ENCODING_FEATURE_REORDER_COLUMNS = 0x0008; protected final static int ENCODING_FEATURE_STRICT_HEADERS = 0x0010; protected final static int DEFAULT_ENCODING_FEATURES = 0; protected final static char[] NO_CHARS = new char[0]; /* /********************************************************************** /* Constants, default settings /********************************************************************** */ /** * Default separator for column values is comma (hence "Comma-Separated Values") */ public final static char DEFAULT_COLUMN_SEPARATOR = ','; /** * Default separator for array elements within a column value is * semicolon. */ public final static String DEFAULT_ARRAY_ELEMENT_SEPARATOR = ";"; /** * Marker for the case where no array element separator is used */ public final static String NO_ARRAY_ELEMENT_SEPARATOR = ""; /** * By default no "any properties" (properties for 'extra' columns; ones * not specified in schema) are used, so null is used as marker. */ public final static String DEFAULT_ANY_PROPERTY_NAME = null; public final static char DEFAULT_QUOTE_CHAR = '"'; /** * By default, nulls are written as empty Strings (""); and no coercion * is performed from any String (higher level databind may, however, * coerce Strings into Java nulls). * To use automatic coercion on reading, null value must be set explicitly * to empty String (""). */ public final static char[] DEFAULT_NULL_VALUE = null; /** * By default, no escape character is used -- this is denoted by * int value that does not map to a valid character */ public final static int DEFAULT_ESCAPE_CHAR = -1; public final static char[] DEFAULT_LINEFEED = "\n".toCharArray(); /* /********************************************************************** /* Constants, other /********************************************************************** */ protected final static Column[] NO_COLUMNS = new Column[0]; /* /********************************************************************** /* Helper classes /********************************************************************** */ /** * Enumeration that defines optional type indicators that can be passed * with schema. If used type is used to determine type of * {@link tools.jackson.core.JsonToken} * that column values are exposed as. */ public enum ColumnType { /** * Default type if not explicitly defined; value will * be presented as VALUE_STRING by parser, * that is, no type-inference is performed, and value is * not trimmed. *

    * Note that this type allows coercion into array, if higher * level application calls * {@link tools.jackson.core.JsonParser#isExpectedStartArrayToken}, * unlike more explicit types. */ STRING, /** * Value is considered to be a String, except that tokens * "null", "true" and "false" are recognized as matching * tokens and reported as such; * and values are trimmed (leading/trailing white space) */ STRING_OR_LITERAL, /** * Value should be a number, but literals "null", "true" and "false" * are also understood, and an empty String is considered null. * Values are also trimmed (leading/trailing white space) * Other non-numeric Strings may cause parsing exception. */ NUMBER, /** * Value is taken to be a number (if it matches valid JSON number * formatting rules), literal (null, true or false) or String, * depending on best match. * Values are also trimmed (leading/trailing white space) */ NUMBER_OR_STRING, /** * Value is expected to be a boolean ("true", "false") String, * or "null", or empty String (equivalent to null). * Values are trimmed (leading/trailing white space). * Values other than indicated above may result in an exception. */ BOOLEAN, /** * Value will be a multi-value sequence, separated by array element * separator. Element type itself may be any scalar type (that is, number * or String) and will not be optimized. * Separator may be overridden on per-column basis. *

    * Note that this type is used for generic concept of multiple values, and * not specifically to match Java arrays: data-binding may match such columns * to {@link java.util.Collection}s as well, or even other types as necessary. */ ARRAY, ; } /** * Representation of info for a single column */ public static class Column implements java.io.Serializable { private static final long serialVersionUID = 1L; public final static Column PLACEHOLDER = new Column(0, ""); private final String _name; private final int _index; private final ColumnType _type; private final String _arrayElementSeparator; /** * Value decorator used for this column, if any; {@code null} if none. * Used to add decoration on serialization (writing) and remove decoration * on deserialization (reading). */ private final CsvValueDecorator _valueDecorator; /** * Link to the next column within schema, if one exists; * null for the last column. */ private final Column _next; public Column(int index, String name) { this(index, name, ColumnType.STRING, ""); } public Column(int index, String name, ColumnType type) { this(index, name, type, ""); } public Column(int index, String name, ColumnType type, String arrayElementSep) { _index = index; _name = name; _type = type; _arrayElementSeparator = _validArrayElementSeparator(arrayElementSep); _valueDecorator = null; _next = null; } public Column(Column src, Column next) { this(src, src._index, src._valueDecorator, next); } protected Column(Column src, int index, Column next) { this(src, index, src._valueDecorator, next); } protected Column(Column src, CsvValueDecorator valueDecorator) { this(src, src._index, valueDecorator, src._next); } protected Column(Column src, int index, CsvValueDecorator valueDecorator, Column next) { _index = index; _name = src._name; _type = src._type; _arrayElementSeparator = src._arrayElementSeparator; _valueDecorator = valueDecorator; _next = next; } public Column withName(String newName) { if (_name == newName) { return this; } return new Column(_index, newName, _type, _arrayElementSeparator); } public Column withType(ColumnType newType) { if (newType == _type) { return this; } return new Column(_index, _name, newType, _arrayElementSeparator); } public Column withArrayElementSeparator(String separator) { String sep = _validArrayElementSeparator(separator); if (_arrayElementSeparator.equals(sep)) { return this; } return new Column(_index, _name, _type, sep); } public Column withValueDecorator(CsvValueDecorator valueDecorator) { if (valueDecorator == _valueDecorator) { return this; } return new Column(this, valueDecorator); } public Column withNext(Column next) { if (_next == next) { return this; } return new Column(this, next); } public Column withNext(int index, Column next) { if ((_index == index) && (_next == next)) { return this; } return new Column(this, index, next); } public int getIndex() { return _index; } public String getName() { return _name; } public ColumnType getType() { return _type; } public Column getNext() { return _next; } /** * Access that returns same as {@link #getNext} iff name of that * column is same as given name */ public Column getNextWithName(String name) { if (_next != null && name.equals(_next._name)) { return _next; } return null; } public boolean hasName(String n) { return (_name == n) || _name.equals(n); } public String getArrayElementSeparator() { return _arrayElementSeparator; } public CsvValueDecorator getValueDecorator() { return _valueDecorator; } public boolean isArray() { return (_type == ColumnType.ARRAY); } } /** * Class used for building {@link CsvSchema} instances. */ public static class Builder { protected final ArrayList _columns = new ArrayList(); /** * Bit-flag for general-purpose on/off features. */ protected int _encodingFeatures = DEFAULT_ENCODING_FEATURES; protected char _columnSeparator = DEFAULT_COLUMN_SEPARATOR; protected String _arrayElementSeparator = DEFAULT_ARRAY_ELEMENT_SEPARATOR; /** * If "any properties" (properties for 'extra' columns; ones * not specified in schema) are enabled, they are mapped to * this name: leaving it as {@code null} disables use of * "any properties" (and they are either ignored, or an exception * is thrown, depending on other settings); setting it to a non-null * String value will expose all extra properties under one specified * name. */ protected String _anyPropertyName = DEFAULT_ANY_PROPERTY_NAME; // note: need to use int to allow -1 for 'none' protected int _quoteChar = DEFAULT_QUOTE_CHAR; // note: need to use int to allow -1 for 'none' protected int _escapeChar = DEFAULT_ESCAPE_CHAR; protected char[] _lineSeparator = DEFAULT_LINEFEED; protected char[] _nullValue = DEFAULT_NULL_VALUE; public Builder() { } /** * "Copy" constructor which creates builder that has settings of * given source schema */ public Builder(CsvSchema src) { for (Column col : src._columns) { _columns.add(col); } _encodingFeatures = src._features; _columnSeparator = src._columnSeparator; _arrayElementSeparator = src._arrayElementSeparator; _quoteChar = src._quoteChar; _escapeChar = src._escapeChar; _lineSeparator = src._lineSeparator; _nullValue = src._nullValue; _anyPropertyName = src._anyPropertyName; } /** * NOTE: does NOT check for duplicate column names so it is possibly to * accidentally add duplicates. */ public Builder addColumn(String name) { int index = _columns.size(); return addColumn(new Column(index, name)); } /** * Add column with given name, and with changes to apply (as specified * by second argument, {@code transformer}). * NOTE: does NOT check for duplicate column names so it is possibly to * accidentally add duplicates. * * @param name Name of column to add * @param transformer Changes to apply to column definition */ public Builder addColumn(String name, UnaryOperator transformer) { Column col = transformer.apply(new Column(_columns.size(), name)); return addColumn(col); } /** * NOTE: does NOT check for duplicate column names so it is possibly to * accidentally add duplicates. */ public Builder addColumn(String name, ColumnType type) { int index = _columns.size(); return addColumn(new Column(index, name, type)); } /** * Add column with given name, and with changes to apply (as specified * by second argument, {@code transformer}). * NOTE: does NOT check for duplicate column names so it is possibly to * accidentally add duplicates. * * @param name Name of column to add * @param type Type of the column to add * @param transformer Changes to apply to column definition */ public Builder addColumn(String name, ColumnType type, UnaryOperator transformer) { Column col = transformer.apply(new Column(_columns.size(), name, type)); return addColumn(col); } /** * NOTE: does NOT check for duplicate column names so it is possibly to * accidentally add duplicates. */ public Builder addColumn(Column c) { _columns.add(c); return this; } /** * NOTE: does NOT check for duplicate column names so it is possibly to * accidentally add duplicates. */ public Builder addColumns(Iterable cs) { for (Column c : cs) { _columns.add(c); } return this; } /** * NOTE: does NOT check for duplicate column names so it is possibly to * accidentally add duplicates. */ public Builder addColumns(Iterable names, ColumnType type) { Builder result = this; for (String name : names) { result = addColumn(name, type); } return result; } /** * NOTE: unlike many other add methods, this method DOES check for, and * discard, possible duplicate columns: that is, if this builder already * has a column with same name as column to be added, existing column * is retained and new column ignored. */ public Builder addColumnsFrom(CsvSchema schema) { Builder result = this; for (Column col : schema) { if (!hasColumn(col.getName())) { result = result.addColumn(col); } } return result; } public Builder addArrayColumn(String name) { int index = _columns.size(); return addColumn(new Column(index, name, ColumnType.ARRAY, "")); } /** * @since 2.7 */ public Builder addArrayColumn(String name, String elementSeparator) { int index = _columns.size(); return addColumn(new Column(index, name, ColumnType.ARRAY, elementSeparator)); } public Builder addNumberColumn(String name) { int index = _columns.size(); return addColumn(new Column(index, name, ColumnType.NUMBER)); } public Builder addBooleanColumn(String name) { int index = _columns.size(); return addColumn(new Column(index, name, ColumnType.BOOLEAN)); } public Builder renameColumn(int index, String newName) { _checkIndex(index); _columns.set(index, _columns.get(index).withName(newName)); return this; } public Builder replaceColumn(int index, Column c) { _checkIndex(index); _columns.set(index, c); return this; } /** * @since 2.16 */ public Builder removeColumn(int index) { _checkIndex(index); _columns.remove(index); return this; } /** * Helper method called to drop the last collected column name if * it is empty: called if {link CsvParser.Feature#ALLOW_TRAILING_COMMA} * enabled to remove the last entry after being added initially. * * @since 2.11.2 */ public void dropLastColumnIfEmpty() { final int ix = _columns.size() - 1; if (ix >= 0) { if (_columns.get(ix).getName().isEmpty()) { _columns.remove(ix); } } } public Builder setColumnType(int index, ColumnType type) { _checkIndex(index); _columns.set(index, _columns.get(index).withType(type)); return this; } public Builder removeArrayElementSeparator(int index) { _checkIndex(index); _columns.set(index, _columns.get(index).withArrayElementSeparator("")); return this; } /** * @since 2.7 */ public Builder setArrayElementSeparator(int index, String sep) { _checkIndex(index); _columns.set(index, _columns.get(index).withArrayElementSeparator(sep)); return this; } public Builder setAnyPropertyName(String name) { _anyPropertyName = name; return this; } public Builder clearColumns() { _columns.clear(); return this; } public int size() { return _columns.size(); } public Iterator getColumns() { return _columns.iterator(); } /** *

    * NOTE: this method requires linear scan over existing columns * so it may be more efficient to use other types of lookups if * available (for example, {@link CsvSchema#column(String)} has a * hash lookup to use). * * @since 2.9 */ public boolean hasColumn(String name) { for (int i = 0, end = _columns.size(); i < end; ++i) { if (_columns.get(i).getName().equals(name)) { return true; } } return false; } /** * Method for specifying whether Schema should indicate that * a header line (first row that contains column names) is to be * used for reading and writing or not. *

    * NOTE: when the schema already has columns defined, enabling this flag * alone will cause the header line to be consumed but will NOT reorder * the schema columns to match the CSV header order — columns are matched * by position. To match columns by header name instead, also call * {@link #setReorderColumns(boolean) setReorderColumns(true)}. * * @see #setReorderColumns(boolean) */ public Builder setUseHeader(boolean b) { _feature(ENCODING_FEATURE_USE_HEADER, b); return this; } /** * Use in combination with {@link #setUseHeader(boolean)}. When the use-header * flag is set, enabling this setting will cause the parser to rebuild the * schema column order from the actual CSV header line, matching columns * by name (while preserving their types from the original schema). * Without this, columns are matched by position only, regardless of header names. * * @param b {@code true} to enable column reordering from CSV header, * {@code false} to disable (default) * @return This Builder instance * * @see #setUseHeader(boolean) * @since 2.7 */ public Builder setReorderColumns(boolean b) { _feature(ENCODING_FEATURE_REORDER_COLUMNS, b); return this; } /** * Use in combination with {@link #setUseHeader}. When `strict-headers` * is set, encoder will ensure the headers are in the order * of the schema; if order differs, an exception is thrown. * * @param b Enable / Disable this setting * @return This Builder instance * * @since 2.7 */ public Builder setStrictHeaders(boolean b) { _feature(ENCODING_FEATURE_STRICT_HEADERS, b); return this; } /** * Method for specifying whether Schema should indicate that * the first line that is not a header (if header handling enabled) * should be skipped in its entirety. */ public Builder setSkipFirstDataRow(boolean b) { _feature(ENCODING_FEATURE_SKIP_FIRST_DATA_ROW, b); return this; } /** * Method for specifying whether Schema should indicate that * "hash comments" (lines where the first non-whitespace character * is '#') are allowed; if so, they will be skipped without processing. * * @since 2.5 */ public Builder setAllowComments(boolean b) { _feature(ENCODING_FEATURE_ALLOW_COMMENTS, b); return this; } protected final void _feature(int feature, boolean state) { _encodingFeatures = state ? (_encodingFeatures | feature) : (_encodingFeatures & ~feature); } /** * Method for specifying character used to separate column * values. * Default is comma (','). */ public Builder setColumnSeparator(char c) { _columnSeparator = c; return this; } /** * Method for specifying character used to separate array element * values. * Default value is semicolon (";") * * @since 2.7 */ public Builder setArrayElementSeparator(String separator) { _arrayElementSeparator = _validArrayElementSeparator(separator); return this; } /** * @since 2.7 */ public Builder disableArrayElementSeparator() { _arrayElementSeparator = NO_ARRAY_ELEMENT_SEPARATOR; return this; } /** * Method for specifying character used for optional quoting * of values. * Default is double-quote ('"'). */ public Builder setQuoteChar(char c) { _quoteChar = c; return this; } /** * @since 2.4 */ public Builder disableQuoteChar() { _quoteChar = -1; return this; } /** * Method for specifying character used for optional escaping * of characters in quoted String values. * Default is "not used", meaning that no escaping used. */ public Builder setEscapeChar(char c) { _escapeChar = c; return this; } /** * Method for specifying that no escape character is to be used * with CSV documents this schema defines. */ public Builder disableEscapeChar() { _escapeChar = -1; return this; } public Builder setLineSeparator(String lf) { _lineSeparator = lf.toCharArray(); return this; } public Builder setLineSeparator(char lf) { _lineSeparator = new char[] { lf }; return this; } public Builder setNullValue(String nvl) { return setNullValue((nvl == null) ? null : nvl.toCharArray()); } public Builder setNullValue(char[] nvl) { _nullValue = nvl; return this; } public CsvSchema build() { Column[] cols = _columns.toArray(new Column[_columns.size()]); return new CsvSchema(cols, _encodingFeatures, _columnSeparator, _quoteChar, _escapeChar, _lineSeparator, _arrayElementSeparator, _nullValue, _anyPropertyName); } protected void _checkIndex(int index) { if (index < 0 || index >= _columns.size()) { throw new IllegalArgumentException("Illegal index "+index+"; only got "+_columns.size()+" columns"); } } } /* /********************************************************************** /* Configuration, construction /********************************************************************** */ /** * Column definitions, needed for optional header and/or mapping * of field names to column positions. */ protected final Column[] _columns; protected final Map _columnsByName; /** * Bitflag for general-purpose on/off features. * * @since 2.5 (final since 2.19) */ protected final int _features; protected final char _columnSeparator; protected final String _arrayElementSeparator; protected final int _quoteChar; protected final int _escapeChar; protected final char[] _lineSeparator; /** * @since 2.5 */ protected final char[] _nullValue; protected transient String _nullValueAsString; /** * If "any properties" (properties for 'extra' columns; ones * not specified in schema) are enabled, they are mapped to * this name: leaving it as null disables use of * "any properties" (and they are either ignored, or an exception * is thrown, depending on other settings); setting it to a non-null * String value will expose all extra properties under one specified * name. * * @since 2.7 */ protected final String _anyPropertyName; /** * @since 2.7 */ public CsvSchema(Column[] columns, int features, char columnSeparator, int quoteChar, int escapeChar, char[] lineSeparator, String arrayElementSeparator, char[] nullValue, String anyPropertyName) { if (columns == null) { columns = NO_COLUMNS; } else { columns = _link(columns); } _columns = columns; _features = features; _columnSeparator = columnSeparator; _arrayElementSeparator = arrayElementSeparator; _quoteChar = quoteChar; _escapeChar = escapeChar; _lineSeparator = lineSeparator; _nullValue = nullValue; _anyPropertyName = anyPropertyName; // and then we may need to create a mapping if (_columns.length == 0) { _columnsByName = Collections.emptyMap(); } else { _columnsByName = new LinkedHashMap<>(4 + _columns.length); for (Column c : _columns) { _columnsByName.put(c.getName(), c); } } } /** * Copy constructor used for creating variants using * withXxx() methods. */ protected CsvSchema(Column[] columns, int features, char columnSeparator, int quoteChar, int escapeChar, char[] lineSeparator, String arrayElementSeparator, char[] nullValue, Map columnsByName, String anyPropertyName) { _columns = columns; _features = features; _columnSeparator = columnSeparator; _quoteChar = quoteChar; _escapeChar = escapeChar; _lineSeparator = lineSeparator; _arrayElementSeparator = arrayElementSeparator; _nullValue = nullValue; _columnsByName = columnsByName; _anyPropertyName = anyPropertyName; } /** * Copy constructor used for creating variants using * sortedBy() methods. */ protected CsvSchema(CsvSchema base, Column[] columns) { _columns = _link(columns); _features = base._features; _columnSeparator = base._columnSeparator; _quoteChar = base._quoteChar; _escapeChar = base._escapeChar; _lineSeparator = base._lineSeparator; _arrayElementSeparator = base._arrayElementSeparator; _nullValue = base._nullValue; _anyPropertyName = base._anyPropertyName; // and then we may need to create a mapping if (_columns.length == 0) { _columnsByName = Collections.emptyMap(); } else { _columnsByName = new LinkedHashMap<>(4 + _columns.length); for (Column c : _columns) { _columnsByName.put(c.getName(), c); } } } /** * Copy constructor used for creating variants for on/off features * * @since 2.5 */ protected CsvSchema(CsvSchema base, int features) { _columns = base._columns; _features = features; _columnSeparator = base._columnSeparator; _quoteChar = base._quoteChar; _escapeChar = base._escapeChar; _lineSeparator = base._lineSeparator; _arrayElementSeparator = base._arrayElementSeparator; _nullValue = base._nullValue; _anyPropertyName = base._anyPropertyName; _columnsByName = base._columnsByName; } /** * Helper method used for chaining columns together using next-linkage, * as well as ensuring that indexes are correct. */ private static Column[] _link(Column[] orig) { int i = orig.length; Column[] result = new Column[i]; Column prev = null; for (; --i >= 0; ) { Column curr = orig[i].withNext(i, prev); result[i] = curr; prev = curr; } return result; } public static Builder builder() { return new Builder(); } /** * Accessor for creating a "default" CSV schema instance, with following * settings: *

      *
    • Does NOT use header line *
    • *
    • Uses double quotes ('"') for quoting of field values (if necessary) *
    • *
    • Uses comma (',') as the field separator *
    • *
    • Uses Unix linefeed ('\n') as row separator *
    • *
    • Does NOT use any escape characters *
    • *
    • Does NOT have any columns defined *
    • *
    */ public static CsvSchema emptySchema() { return builder().build(); } /** * Helper method for constructing Builder that can be used to create modified * schema. */ public Builder rebuild() { return new Builder(this); } /* /********************************************************************** /* Mutant factories /********************************************************************** */ public CsvSchema withUseHeader(boolean state) { return _withFeature(ENCODING_FEATURE_USE_HEADER, state); } /** * Returns a clone of this instance with column reordering enabled or disabled. * Only meaningful when used in combination with {@link #withHeader()}. *

    * When this is enabled (and the schema uses a header line), the parser will * rebuild the column ordering from the actual CSV header, matching columns * by name against those defined in the schema (preserving their types). * This allows parsing CSV files whose column order differs from the order * in which columns were defined in the schema (for example, via * {@link CsvMapper#schemaFor(Class)}). *

    * When disabled (the default), columns are matched by position only: * the first CSV value maps to the first schema column, the second to the * second, and so on — regardless of what the header names say. * * @param state {@code true} to enable column reordering from CSV header, * {@code false} to disable (default) * @return A copy of this schema with the updated setting * * @see #withHeader() * @since 2.7 */ public CsvSchema withColumnReordering(boolean state) { return _withFeature(ENCODING_FEATURE_REORDER_COLUMNS, state); } /** * Returns a clone of this instance by changing or setting the * strict headers flag * * @param state New value for setting * @return A copy of itself, ensuring the setting for * the strict headers feature. * @since 2.7 */ public CsvSchema withStrictHeaders(boolean state) { return _withFeature(ENCODING_FEATURE_STRICT_HEADERS, state); } /** * Helper method for constructing and returning schema instance that * is similar to this one, except that it will be using header line * (first row of CSV content used for reading and/or writing column names). *<p> * NOTE: when this schema already has columns defined (for example, via * {@link CsvMapper#schemaFor(Class)}), and the CSV input has a header line * with columns in a different order than defined in the schema, columns * will be matched by their position in the schema — not by * the header names — unless {@link #withColumnReordering(boolean)} is * also enabled. Without column reordering, the header line is consumed * (validated or skipped) but does NOT change the column order of the schema. * This can lead to values being mapped to wrong properties if the CSV column * order differs from the schema column order. *

    * To use header names for column matching regardless of order, call: *

         *   schema.withHeader().withColumnReordering(true)
         *
    * Alternatively, if you do not need type information from the schema, * use {@link CsvSchema#emptySchema()}{@code .withHeader()} which always * builds its column definitions from the header line. * * @see #withColumnReordering(boolean) */ public CsvSchema withHeader() { return _withFeature(ENCODING_FEATURE_USE_HEADER, true); } /** * Helper method for constructing and returning schema instance that * is similar to this one, except that it will not be using header line. */ public CsvSchema withoutHeader() { return _withFeature(ENCODING_FEATURE_USE_HEADER, false); } public CsvSchema withSkipFirstDataRow(boolean state) { return _withFeature(ENCODING_FEATURE_SKIP_FIRST_DATA_ROW, state); } /** * Method to indicate whether "hash comments" are allowed * for document described by this schema. * * @since 2.5 */ public CsvSchema withAllowComments(boolean state) { return _withFeature(ENCODING_FEATURE_ALLOW_COMMENTS, state); } /** * Method to indicate that "hash comments" ARE allowed * for document described by this schema. * * @since 2.5 */ public CsvSchema withComments() { return _withFeature(ENCODING_FEATURE_ALLOW_COMMENTS, true); } /** * Method to indicate that "hash comments" are NOT allowed for document * described by this schema. * * @since 2.5 */ public CsvSchema withoutComments() { return _withFeature(ENCODING_FEATURE_ALLOW_COMMENTS, false); } protected CsvSchema _withFeature(int feature, boolean state) { int newFeatures = state ? (_features | feature) : (_features & ~feature); return (newFeatures == _features) ? this : new CsvSchema(this, newFeatures); } public CsvSchema withColumnSeparator(char sep) { return (_columnSeparator == sep) ? this : new CsvSchema(_columns, _features, sep, _quoteChar, _escapeChar, _lineSeparator, _arrayElementSeparator, _nullValue, _columnsByName, _anyPropertyName); } public CsvSchema withQuoteChar(char c) { return (_quoteChar == c) ? this : new CsvSchema(_columns, _features, _columnSeparator, c, _escapeChar, _lineSeparator,_arrayElementSeparator, _nullValue, _columnsByName, _anyPropertyName); } public CsvSchema withoutQuoteChar() { return (_quoteChar == -1) ? this : new CsvSchema(_columns, _features, _columnSeparator, -1, _escapeChar, _lineSeparator, _arrayElementSeparator, _nullValue, _columnsByName, _anyPropertyName); } public CsvSchema withEscapeChar(char c) { return (_escapeChar == c) ? this : new CsvSchema(_columns, _features, _columnSeparator, _quoteChar, c, _lineSeparator, _arrayElementSeparator, _nullValue, _columnsByName, _anyPropertyName); } public CsvSchema withoutEscapeChar() { return (_escapeChar == -1) ? this : new CsvSchema(_columns, _features, _columnSeparator, _quoteChar, -1, _lineSeparator, _arrayElementSeparator, _nullValue, _columnsByName, _anyPropertyName); } /** * @since 2.7 */ public CsvSchema withArrayElementSeparator(String separator) { String sep = separator == null ? "" : separator; return (_arrayElementSeparator.equals(sep)) ? this : new CsvSchema(_columns, _features, _columnSeparator, _quoteChar, _escapeChar, _lineSeparator, separator, _nullValue, _columnsByName, _anyPropertyName); } /** * @since 2.5 */ public CsvSchema withoutArrayElementSeparator() { return (_arrayElementSeparator.isEmpty()) ? this : new CsvSchema(_columns, _features, _columnSeparator, _quoteChar, _escapeChar, _lineSeparator, "", _nullValue, _columnsByName, _anyPropertyName); } public CsvSchema withLineSeparator(String sep) { return new CsvSchema(_columns, _features, _columnSeparator, _quoteChar, _escapeChar, sep.toCharArray(), _arrayElementSeparator, _nullValue, _columnsByName, _anyPropertyName); } /** * @since 2.5 */ public CsvSchema withNullValue(String nvl) { return new CsvSchema(_columns, _features, _columnSeparator, _quoteChar, _escapeChar, _lineSeparator, _arrayElementSeparator, (nvl == null) ? null : nvl.toCharArray(), _columnsByName, _anyPropertyName); } public CsvSchema withoutColumns() { return new CsvSchema(NO_COLUMNS, _features, _columnSeparator, _quoteChar, _escapeChar, _lineSeparator, _arrayElementSeparator, _nullValue, _columnsByName, _anyPropertyName); } /** * Mutant factory method that will try to combine columns of this schema with those * from `toAppend`, starting with columns of this instance, and ignoring * duplicates (if any) from argument `toAppend`. * All settings aside from column sets are copied from `this` instance. *

    * As with all `withXxx()` methods this method never modifies `this` but either * returns it unmodified (if no new columns found from `toAppend`), or constructs * a new instance and returns that. * * @return Either this schema (if nothing changed), or newly constructed {@link CsvSchema} * with appended columns. * * @since 2.9 */ public CsvSchema withColumnsFrom(CsvSchema toAppend) { int addCount = toAppend.size(); if (addCount == 0) { return this; } Builder b = rebuild(); for (int i = 0; i < addCount; ++i) { Column col = toAppend.column(i); if (column(col.getName()) == null) { b.addColumn(col); } } return b.build(); } /** * Mutant factory method that will try to replace specified column with * changed definition (but same name), leaving other columns as-is. *

    * As with all `withXxx()` methods this method never modifies `this` but either * returns it unmodified (if no change to column), or constructs * a new schema instance and returns that. * * @param columnName Name of column to replace * @param transformer Transformation to apply to the column * * @return Either this schema (if column did not change), or newly constructed {@link CsvSchema} * with changed column * * @since 2.18 */ public CsvSchema withColumn(String columnName, UnaryOperator transformer) { Column old = column(columnName); if (old == null) { throw new IllegalArgumentException("No column '"+columnName+"' in CsvSchema (known columns: " +getColumnNames()+")"); } Column newColumn = transformer.apply(old); if (newColumn == old) { return this; } return _withColumn(old.getIndex(), newColumn); } /** * Mutant factory method that will try to replace specified column with * changed definition (but same name), leaving other columns as-is. *

    * As with all `withXxx()` methods this method never modifies `this` but either * returns it unmodified (if no change to column), or constructs * a new schema instance and returns that. * * @param columnIndex Index of column to replace * @param transformer Transformation to apply to the column * * @return Either this schema (if column did not change), or newly constructed {@link CsvSchema} * with changed column * * @since 2.18 */ public CsvSchema withColumn(int columnIndex, UnaryOperator transformer) { if (columnIndex < 0 || columnIndex >= size()) { throw new IllegalArgumentException("Illegal index "+columnIndex+"; `CsvSchema` has "+size()+" columns"); } Column old = _columns[columnIndex]; Column newColumn = transformer.apply(old); if (newColumn == old) { return this; } return _withColumn(old.getIndex(), newColumn); } /** * @since 2.18 */ protected CsvSchema _withColumn(int ix, Column toReplace) { Objects.requireNonNull(toReplace); if (ix < 0 || ix >= size()) { throw new IllegalArgumentException("Illegal index for column '"+toReplace.getName()+"': " +ix+" (column count: "+size()+")"); } return rebuild() .replaceColumn(ix, toReplace) .build(); } /** * @since 2.7 */ public CsvSchema withAnyPropertyName(String name) { return new CsvSchema(_columns, _features, _columnSeparator, _quoteChar, _escapeChar, _lineSeparator, _arrayElementSeparator, _nullValue, _columnsByName, name); } /** * Mutant factory method that will construct a new instance in which columns * are sorted based on names given as argument. Columns not listed in argument * will be sorted after those within list, using existing ordering. *

    * For example, schema that has columns: *

    "a", "d", "c", "b"
         *
    * ordered with schema.sortedBy("a", "b"); * would result instance that columns in order: *
    "a", "b", "d", "c"
         *
    * * @since 2.4 */ public CsvSchema sortedBy(String... columnNames) { LinkedHashMap map = new LinkedHashMap<>(); for (String colName : columnNames) { Column col = _columnsByName.get(colName); if (col != null) { map.put(col.getName(), col); } } for (Column col : _columns) { map.put(col.getName(), col); } return new CsvSchema(this, map.values().toArray(new Column[map.size()])); } /** * Mutant factory method that will construct a new instance in which columns * are sorted using given {@link Comparator} over column names. * * @since 2.4 */ public CsvSchema sortedBy(Comparator cmp) { TreeMap map = new TreeMap<>(cmp); for (Column col : _columns) { map.put(col.getName(), col); } return new CsvSchema(this, map.values().toArray(new Column[map.size()])); } /* /********************************************************************** /* Public API, FormatSchema /********************************************************************** */ @Override public String getSchemaType() { return "CSV"; } /* /********************************************************************** /* Public API, extended, properties /********************************************************************** */ public boolean usesHeader() { return (_features & ENCODING_FEATURE_USE_HEADER) != 0; } /** * Whether column reordering from the CSV header line is enabled. * * @see #withColumnReordering(boolean) * @since 2.7 */ public boolean reordersColumns() { return (_features & ENCODING_FEATURE_REORDER_COLUMNS) != 0; } public boolean skipsFirstDataRow() { return (_features & ENCODING_FEATURE_SKIP_FIRST_DATA_ROW) != 0; } public boolean allowsComments() { return (_features & ENCODING_FEATURE_ALLOW_COMMENTS) != 0; } public boolean strictHeaders() { return (_features & ENCODING_FEATURE_STRICT_HEADERS) != 0; } public char getColumnSeparator() { return _columnSeparator; } public String getArrayElementSeparator() { return _arrayElementSeparator; } public int getQuoteChar() { return _quoteChar; } public int getEscapeChar() { return _escapeChar; } public char[] getLineSeparator() { return _lineSeparator; } /** * @return Null value defined, as char array, if one is defined to be recognized; Java null * if not. * * @since 2.5 */ public char[] getNullValue() { return _nullValue; } /** * Same as {@link #getNullValue()} except that undefined null value (one that remains as null, * or explicitly set as such) will be returned as empty char[] * * @since 2.6 */ public char[] getNullValueOrEmpty() { if (_nullValue == null) { return NO_CHARS; } return _nullValue; } /** * @since 2.6 */ public String getNullValueString() { String str = _nullValueAsString; if (str == null) { if (_nullValue == null) { return null; } str = (_nullValue.length == 0) ? "" : new String(_nullValue); _nullValueAsString = str; } return str; } public boolean usesQuoteChar() { return _quoteChar >= 0; } public boolean usesEscapeChar() { return _escapeChar >= 0; } /** * @since 2.5 */ public boolean hasArrayElementSeparator() { return !_arrayElementSeparator.isEmpty(); } /** * @since 2.7 */ public String getAnyPropertyName() { return _anyPropertyName; } /* /********************************************************************** /* Public API, extended; column access /********************************************************************** */ @Override public Iterator iterator() { return Arrays.asList(_columns).iterator(); } /** * Accessor for finding out how many columns this schema defines. * * @return Number of columns this schema defines */ public int size() { return _columns.length; } /** * Accessor for column at specified index (0-based); index having to be within *
         *    0 <= index < size()
         *
    */ public Column column(int index) { return _columns[index]; } /** * Method for finding index of a named column within this schema. * * @param name Name of column to find * @return Index of the specified column, if one exists; {@code -1} if not * * @since 2.18 */ public int columnIndex(String name) { Column col = column(name); return (col == null) ? -1 : col.getIndex(); } /** * @since 2.6 */ public String columnName(int index) { return _columns[index].getName(); } public Column column(String name) { return _columnsByName.get(name); } /** * Case-insensitive variant of {@link #column(String)}: looks up a column * by name, ignoring case differences. * * @param name Column name to look up (case-insensitive) * @return Column with matching name, or {@code null} if not found * * @since 3.2 */ public Column columnIgnoreCase(String name) { // Try exact match first for efficiency Column col = _columnsByName.get(name); if (col != null) { return col; } for (Column c : _columns) { if (c.getName().equalsIgnoreCase(name)) { return c; } } return null; } /** * Optimized variant where a hint is given as to likely index of the column * name. * * @since 2.6 */ public Column column(String name, int probableIndex) { if (probableIndex < _columns.length) { Column col = _columns[probableIndex]; if (col.hasName(name)) { return col; } } return _columnsByName.get(name); } /** * Accessor for getting names of included columns, in the order they are * included in the schema. * * @since 2.14 */ public List getColumnNames() { return (List) getColumnNames(new ArrayList(_columns.length)); } /** * Accessor for getting names of included columns, added in given * {@code Collection}. * * @since 2.14 */ public Collection getColumnNames(Collection names) { final int len = _columns.length; for (int i = 0; i < len; ++i) { names.add(_columns[i].getName()); } return names; } /** * Method for getting description of column definitions in * developer-readable form */ public String getColumnDesc() { StringBuilder sb = new StringBuilder(100); sb.append('['); for (Column col : _columns) { if (sb.length() > 1) { sb.append(','); } sb.append('"'); sb.append(col.getName()); sb.append('"'); } sb.append(']'); return sb.toString(); } /* /********************************************************************** /* Other overrides /********************************************************************** */ @Override public String toString() { StringBuilder sb = new StringBuilder(150); sb.append("[CsvSchema: ") .append("columns=["); boolean first = true; for (Column col : _columns) { if (first) { first = false; } else { sb.append(','); } sb.append('"'); sb.append(col.getName()); sb.append("\"/"); sb.append(col.getType()); } sb.append(']'); sb.append(", header? ").append(usesHeader()); sb.append(", skipFirst? ").append(skipsFirstDataRow()); sb.append(", comments? ").append(allowsComments()); sb.append(", any-properties? "); String anyProp = getAnyPropertyName(); if (anyProp == null) { sb.append("N/A"); } else { sb.append("as '").append(anyProp).append("'"); } sb.append(']'); return sb.toString(); } /* /********************************************************************** /* Helper methods /********************************************************************** */ protected static String _validArrayElementSeparator(String sep) { if (sep == null || sep.isEmpty()) { return NO_ARRAY_ELEMENT_SEPARATOR; } return sep; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvValueDecorator.java ================================================ package tools.jackson.dataformat.csv; import tools.jackson.core.JacksonException; /** * Interface defining API for handlers that can add and remove "decorations" * to CSV values: for example, brackets around Array (List) values encoded * in a single physical String column. *

    * Decorations are handled after handling other encoding aspects such as * optional quoting and/or escaping. *

    * Decorators can be registered on specific columns of {@link CsvSchema}. * * @since 2.18 */ public interface CsvValueDecorator { /** * Method called during serialization when encoding a value, * to produce "decorated" value to include in output (possibly * escaped and/or quoted). * Note that possible escaping and/or quoting (as per configuration * of {@link CsvSchema} is applied on decorated value. * * @param gen Generator that will be used for actual serialization * @param plainValue Value to decorate * * @return Decorated value (which may be {@code plainValue} as-is) but * Must Not be {@code null} * * @throws JacksonException if attempt to decorate the value somehow fails */ public String decorateValue(CsvGenerator gen, String plainValue) throws JacksonException; /** * Method called instead of {@link #decorateValue} in case where value being * written is from Java {@code null} value: this is often left as-is, without * decoration (and this is the default implementation), but may be * decorated. * To let default Null Value Replacement be used, should return {@code null}: * this is the default implementation. * * @param gen Generator that will be used for actual serialization * * @return Decorated value to use, IF NOT {@code null}: if {@code null} will use * default null replacement value. * * @throws JacksonException if attempt to decorate the value somehow fails */ public default String decorateNull(CsvGenerator gen) throws JacksonException { return null; } /** * Method called during deserialization, to remove possible decoration * applied with {@link #decorateValue}. * Call is made after textual value for a cell (column * value) has been read using {@code parser} and after removing (decoding) * possible quoting and/or escaping of the value. Value passed in * has no escaping or quoting left. * * @param parser Parser that was used to decode textual value from input * @param decoratedValue Value from which to remove decorations, if any * (some decorators can allow optional decorations; others may fail * if none found) * * @return Value after removing decorations, if any. * * @throws JacksonException if attempt to un-decorate the value fails */ public String undecorateValue(CsvParser parser, String decoratedValue) throws JacksonException; } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvValueDecorators.java ================================================ package tools.jackson.dataformat.csv; import java.util.Objects; import tools.jackson.core.JacksonException; /** * Container class for default {@link CsvValueDecorator} implementations * * @since 2.18 */ public class CsvValueDecorators { /** * {@link StringPrefixSuffixDecorator} that uses square brackets ({@code []}) * around decorated value, but does not require their use (removes if used, * ignores it not). */ public final static CsvValueDecorator OPTIONAL_BRACKETS_DECORATOR = new StringPrefixSuffixDecorator("[", "]", true); /** * {@link StringPrefixSuffixDecorator} that uses square brackets ({@code []}) * around decorated value, and requires their use (if value has no matching * decoration, an exception is thrown when attempting to read the value). */ public final static CsvValueDecorator STRICT_BRACKETS_DECORATOR = new StringPrefixSuffixDecorator("[", "]", false); /** * Factory method for constructing a {@link StringPrefixSuffixDecorator} with * given prefix and suffix, both optional. */ public static CsvValueDecorator optionalPrefixSuffixDecorator(String prefix, String suffix) { return new StringPrefixSuffixDecorator(prefix, suffix, true); } /** * Factory method for constructing a {@link StringPrefixSuffixDecorator} with * given prefix and suffix, both required. */ public static CsvValueDecorator requiredPrefixSuffixDecorator(String prefix, String suffix) { return new StringPrefixSuffixDecorator(prefix, suffix, false); } /** * Decorated that adds static prefix and suffix around value to decorate value; * removes the same when un-decorating. Handling of the case where decoration * is missing on deserialization (reading) depends on where decorator is * created with "optional" or "strict" setting * (see {@link StringPrefixSuffixDecorator#StringPrefixSuffixDecorator}). */ public static class StringPrefixSuffixDecorator implements CsvValueDecorator { /** * Decoration added before value being decorated: for example, if decorating * with brackets, this would be opening bracket {@code [ }. */ protected final String _prefix; /** * Decoration added after value being decorated: for example, if decorating * with brackets, this would be closing bracket {@code ] }. */ protected final String _suffix; /** * Whether existence of prefix and suffix decoration is optional * ({@code true}) or required ({@code false}): if required * and value does does not have decorations, deserialization (reading) * will fail with an exception; if optional value is exposed as is. */ protected final boolean _optional; public StringPrefixSuffixDecorator(String prefix, String suffix, boolean optional) { _prefix = Objects.requireNonNull(prefix); _suffix = Objects.requireNonNull(suffix); _optional = optional; } @Override public String decorateValue(CsvGenerator gen, String plainValue) throws JacksonException { return new StringBuilder(plainValue.length() + _prefix.length() + _suffix.length()) .append(_prefix) .append(plainValue) .append(_suffix) .toString() ; } @Override public String undecorateValue(CsvParser parser, String decoratedValue) throws JacksonException { if (!decoratedValue.startsWith(_prefix)) { if (!_optional) { parser._reportCsvReadError(String.format( "Decorated value of column '%s' does not start with expected prefix (\"%s\"); value: \"%s\"", parser.currentName(), _prefix, decoratedValue)); } return decoratedValue; } if (!decoratedValue.endsWith(_suffix)) { if (!_optional) { parser._reportCsvReadError(String.format( "Decorated value of column '%s' does not end with expected suffix (\"%s\"); value: \"%s\"", parser.currentName(), _suffix, decoratedValue)); } return decoratedValue; } int start = _prefix.length(); int end = decoratedValue.length() - _suffix.length(); // One minor complication: suffix and prefix could overlap if (start >= end) { return ""; } return decoratedValue.substring(start, end); } } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvWriteException.java ================================================ package tools.jackson.dataformat.csv; import tools.jackson.core.exc.StreamWriteException; /** * Format-specific exception used to indicate problems regarding low-level * generation issues specific to CSV content; * usually problems with field-to-column mapping as defined by {@link CsvSchema}. */ public class CsvWriteException extends StreamWriteException { private static final long serialVersionUID = 3L; protected final CsvSchema _schema; public CsvWriteException(CsvGenerator gen, String msg, CsvSchema schema) { super(gen, msg); _schema = schema; } public static CsvWriteException from(CsvGenerator gen, String msg, CsvSchema schema) { return new CsvWriteException(gen, msg, schema); } public CsvSchema getSchema() { return _schema; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvWriteFeature.java ================================================ package tools.jackson.dataformat.csv; import tools.jackson.core.FormatFeature; /** * Enumeration that defines all togglable features for CSV writers *

    * NOTE: in Jackson 2.x this was named {@code CsvGenerator.Feature}. */ public enum CsvWriteFeature implements FormatFeature { /** * Feature that determines how much work is done before determining that * a column value requires quoting: when set as true, full * check is made to only use quoting when it is strictly necessary; * but when {@code false}, a faster but more conservative check * is made, and possibly quoting is used for values that might not need it. * Trade-off is basically between optimal/minimal quoting ({@code true}), and * faster handling ({@code false}). * Faster check involves only checking first N characters of value, as well * as possible looser checks. *

    * Note, however, that regardless setting, all values that need to be quoted * will be: it is just that when set to {@code false}, other values may * also be quoted (to avoid having to do more expensive checks). *

    * Default value is {@code false} for "loose" (approximate, conservative) * checking. */ STRICT_CHECK_FOR_QUOTING(false), /** * Feature that determines whether columns without matching value may be omitted, * when they are the last values of the row. * If {@code true}, values and separators between values may be omitted, to slightly reduce * length of the row; if {@code false}, separators need to stay in place and values * are indicated by empty Strings. */ OMIT_MISSING_TAIL_COLUMNS(false), /** * Feature that determines whether values written as Strings (from java.lang.String * valued POJO properties) should be forced to be quoted, regardless of whether they * actually need this. * Note that this feature has precedence over {@link #STRICT_CHECK_FOR_QUOTING}, when * both would be applicable. * Note that this setting does NOT affect quoting of typed values like {@code Number}s * or {@code Boolean}s. */ ALWAYS_QUOTE_STRINGS(false), /** * Feature that determines whether values written as empty Strings (from java.lang.String * valued POJO properties) should be forced to be quoted. */ ALWAYS_QUOTE_EMPTY_STRINGS(false), /** * Feature that determines whether String values with leading or trailing * whitespace (any character {@code <= 0x0020}, including space and tab) * should be forced to be quoted. * This is useful for interoperability with CSV parsers that trim unquoted * whitespace. *

    * Default value is {@code false} so that leading/trailing whitespace * does not by itself trigger quoting. * * @since 3.2 */ QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE(false), /** * Feature that determines whether values written as Nymbers (from {@code java.lang.Number} * valued POJO properties) should be forced to be quoted, regardless of whether they * actually need this. */ ALWAYS_QUOTE_NUMBERS(false), /** * Feature that determines whether quote characters within quoted String values are escaped * using configured escape character, instead of being "doubled up" (that is: a quote character * is written twice in a row). *

    * Default value is false so that quotes are doubled as necessary, not escaped. */ ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR(false), /** * Feature that determines whether control characters (non-printable) are escaped using the * configured escape character. This feature allows LF and CR characters to be output as

    \n
    * and
    \r
    instead of being echoed out. This is a compatibility feature for some * parsers that can not read such output back in. *

    * Default value is false so that control characters are echoed out (backwards compatible). */ ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR(false), /** * Feature that determines whether a line-feed will be written at the end of content, * after the last row of output. *

    * NOTE! When disabling this feature it is important that * {@link CsvGenerator#flush()} is NOT called before {@link CsvGenerator#close()} is called; * the current implementation relies on ability to essentially remove the * last linefeed that was appended in the output buffer. *

    * Default value is {@code true} so all rows, including the last, are terminated by * a line feed. */ WRITE_LINEFEED_AFTER_LAST_ROW(true) ; private final boolean _defaultState; private final int _mask; /** * Method that calculates bit set (flags) of all features that * are enabled by default. */ public static int collectDefaults() { int flags = 0; for (CsvWriteFeature f : values()) { if (f.enabledByDefault()) { flags |= f.getMask(); } } return flags; } private CsvWriteFeature(boolean defaultState) { _defaultState = defaultState; _mask = (1 << ordinal()); } @Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; } @Override public boolean enabledByDefault() { return _defaultState; } @Override public int getMask() { return _mask; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/PackageVersion.java.in ================================================ package @package@; import tools.jackson.core.Version; import tools.jackson.core.Versioned; import tools.jackson.core.util.VersionUtil; /** * Automatically generated from PackageVersion.java.in during * packageVersion-generate execution of maven-replacer-plugin in * pom.xml. */ public final class PackageVersion implements Versioned { public final static Version VERSION = VersionUtil.parseVersion( "@projectversion@", "@projectgroupid@", "@projectartifactid@"); @Override public Version version() { return VERSION; } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/BufferedValue.java ================================================ package tools.jackson.dataformat.csv.impl; import tools.jackson.core.JacksonException; /** * Helper class used for holding values for a while until output * can proceed in expected order. */ public abstract class BufferedValue { protected BufferedValue() { } public abstract void write(CsvEncoder w) throws JacksonException; public static BufferedValue buffered(String v) { return new TextValue(v); } public static BufferedValue bufferedRaw(String v) { return new RawValue(v); } public static BufferedValue buffered(int v) { return new IntValue(v); } public static BufferedValue buffered(long v) { return new LongValue(v); } public static BufferedValue buffered(float v) { return new FloatValue(v); } public static BufferedValue buffered(double v) { return new DoubleValue(v); } public static BufferedValue bufferedNumber(String numStr) { return new BigNumberValue(numStr); } public static BufferedValue buffered(boolean v) { return v ? BooleanValue.TRUE : BooleanValue.FALSE; } public static BufferedValue bufferedNull() { return NullValue.std; } protected final static class TextValue extends BufferedValue { private final String _value; public TextValue(String v) { _value = v; } @Override public void write(CsvEncoder w) throws JacksonException { w.appendValue(_value); } } /** * @since 2.5 */ protected final static class RawValue extends BufferedValue { private final String _value; public RawValue(String v) { _value = v; } @Override public void write(CsvEncoder w) throws JacksonException { w.appendRawValue(_value); } } protected final static class IntValue extends BufferedValue { private final int _value; public IntValue(int v) { _value = v; } @Override public void write(CsvEncoder w) throws JacksonException { w.appendValue(_value); } } protected final static class LongValue extends BufferedValue { private final long _value; public LongValue(long v) { _value = v; } @Override public void write(CsvEncoder w) throws JacksonException { w.appendValue(_value); } } // @since 2.16 protected final static class FloatValue extends BufferedValue { private final float _value; public FloatValue(float v) { _value = v; } @Override public void write(CsvEncoder w) throws JacksonException { w.appendValue(_value); } } protected final static class DoubleValue extends BufferedValue { private final double _value; public DoubleValue(double v) { _value = v; } @Override public void write(CsvEncoder w) throws JacksonException { w.appendValue(_value); } } protected final static class BigNumberValue extends BufferedValue { private final String _value; public BigNumberValue(String v) { _value = v; } @Override public void write(CsvEncoder w) throws JacksonException { w.appendNumberValue(_value); } } protected final static class BooleanValue extends BufferedValue { public final static BooleanValue FALSE = new BooleanValue(false); public final static BooleanValue TRUE = new BooleanValue(true); private final boolean _value; public BooleanValue(boolean v) { _value = v; } @Override public void write(CsvEncoder w) throws JacksonException { w.appendValue(_value); } } protected final static class NullValue extends BufferedValue { public final static NullValue std = new NullValue(); private NullValue() { } @Override public void write(CsvEncoder w) throws JacksonException { w.appendNull(); } } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvDecoder.java ================================================ package tools.jackson.dataformat.csv.impl; import java.io.IOException; import java.io.Reader; import java.io.Writer; import java.math.BigDecimal; import java.math.BigInteger; import java.util.Arrays; import tools.jackson.core.*; import tools.jackson.core.JsonParser.NumberType; import tools.jackson.core.StreamReadFeature; import tools.jackson.core.exc.StreamReadException; import tools.jackson.core.io.NumberInput; import tools.jackson.core.io.IOContext; import tools.jackson.core.util.SimpleStreamReadContext; import tools.jackson.core.util.TextBuffer; import tools.jackson.dataformat.csv.CsvParser; import tools.jackson.dataformat.csv.CsvReadFeature; import tools.jackson.dataformat.csv.CsvSchema; /** * Low-level helper class that handles actual reading of CSV, * purely based on indexes given without worrying about reordering etc. */ public class CsvDecoder { private final static int INT_SPACE = 0x0020; private final static int INT_CR = '\r'; private final static int INT_LF = '\n'; /* /********************************************************************** /* Input handling, configuration /********************************************************************** */ /** * Unfortunate back reference, needed for error reporting */ protected final CsvParser _owner; /** * I/O context for this reader. It handles buffer allocation * for the reader. */ protected final IOContext _ioContext; /** * Input stream that can be used for reading more content, if one * in use. May be null, if input comes just as a full buffer, * or if the stream has been closed. *

    * NOTE: renamed in 2.13 from {@code _inputSource}. */ protected Reader _inputReader; /** * Flag that indicates whether the input buffer is recycable (and * needs to be returned to recycler once we are done) or not. *

    * If it is not, it also means that parser can NOT modify underlying * buffer. */ protected boolean _bufferRecyclable; protected boolean _autoCloseInput; /** * Configuration flag that determines whether spaces surrounding * separator characters are to be automatically trimmed or not. */ protected boolean _trimSpaces; protected boolean _allowComments; protected boolean _skipBlankLines; protected boolean _skipEmptyRows; /** * Number of separator characters consumed by {@link #_trySkipEmptyRow()} when * a row starting with separators turns out to contain non-empty values. * These consumed separators are replayed as empty String values by * {@link #nextString()}. * * @since 3.2 */ protected int _pendingEmptyColumns; /** * Maximum of quote character, linefeeds (\r and \n), escape character. */ protected int _maxSpecialChar; protected int _separatorChar; protected int _quoteChar; protected int _escapeChar; /* /********************************************************************** /* Input handling, state /********************************************************************** */ /** * Buffer that contains contents of all values after processing * of doubled-quotes, escaped characters. */ protected final TextBuffer _textBuffer; /** * Current buffer from which data is read; generally data is read into * buffer from input source, but in some cases pre-loaded buffer * is handed to the parser. */ protected char[] _inputBuffer; /** * Pointer to next available character in buffer */ protected int _inputPtr = 0; /** * Index of character after last available one in the buffer. */ protected int _inputEnd = 0; /** * Lazily-allocated buffer for tracking leading whitespace consumed * while looking ahead for a quote character ([dataformats-text#643]). * Reused across calls to avoid repeated allocation. * * @since 3.2 */ protected char[] _leadingSpaceBuf; /** * Marker to indicate that a linefeed was encountered and now * needs to be handled (indicates end-of-record). */ protected int _pendingLF = 0; /** * Flag that indicates whether parser is closed or not. Gets * set when parser is either closed by explicit call * ({@link #close}) or when end-of-input is reached. */ protected boolean _closed; /* /********************************************************************** /* Current input location information /********************************************************************** */ /** * Number of characters/bytes that were contained in previous blocks * (blocks that were already processed prior to the current buffer). */ protected long _currInputProcessed = 0L; /** * Current row location of current point in input buffer, starting * from 1, if available. */ protected int _currInputRow = 1; /** * Current index of the first character of the current row in input * buffer. Needed to calculate column position, if necessary; benefit * of not having column itself is that this only has to be updated * once per line. */ protected int _currInputRowStart = 0; /** * Flag that indicates whether the current token has been quoted or not. * * @since 2.18 */ protected boolean _currInputQuoted = false; // // // Location info at point when current token was started /** * Total number of bytes/characters read before start of current token. * For big (gigabyte-sized) sizes are possible, needs to be long, * unlike pointers and sizes related to in-memory buffers. */ protected long _tokenInputTotal = 0; /** * Input row on which current token starts, 1-based */ protected int _tokenInputRow = 1; /** * Column on input row that current token starts; 0-based (although * in the end it'll be converted to 1-based) */ protected int _tokenInputCol = 0; /* /********************************************************************** /* Constants and fields of former 'JsonNumericParserBase' /********************************************************************** */ final protected static int NR_UNKNOWN = 0; // First, integer types final protected static int NR_INT = 0x0001; final protected static int NR_LONG = 0x0002; final protected static int NR_BIGINT = 0x0004; // And then floating point types final protected static int NR_DOUBLE = 0x008; final protected static int NR_BIGDECIMAL = 0x0010; // Also, we need some numeric constants (copied from ParserBase) final static BigInteger BI_MIN_INT = BigInteger.valueOf(Integer.MIN_VALUE); final static BigInteger BI_MAX_INT = BigInteger.valueOf(Integer.MAX_VALUE); final static BigInteger BI_MIN_LONG = BigInteger.valueOf(Long.MIN_VALUE); final static BigInteger BI_MAX_LONG = BigInteger.valueOf(Long.MAX_VALUE); final static BigDecimal BD_MIN_LONG = new BigDecimal(Long.MIN_VALUE); final static BigDecimal BD_MAX_LONG = new BigDecimal(Long.MAX_VALUE); final static BigDecimal BD_MIN_INT = new BigDecimal(Long.MIN_VALUE); final static BigDecimal BD_MAX_INT = new BigDecimal(Long.MAX_VALUE); final static long MIN_INT_L = Integer.MIN_VALUE; final static long MAX_INT_L = Integer.MAX_VALUE; // These are not very accurate, but have to do... (for bounds checks) final static double MIN_LONG_D = Long.MIN_VALUE; final static double MAX_LONG_D = Long.MAX_VALUE; final static double MIN_INT_D = Integer.MIN_VALUE; final static double MAX_INT_D = Integer.MAX_VALUE; // Digits, numeric final protected static int INT_0 = '0'; final protected static int INT_1 = '1'; final protected static int INT_2 = '2'; final protected static int INT_3 = '3'; final protected static int INT_4 = '4'; final protected static int INT_5 = '5'; final protected static int INT_6 = '6'; final protected static int INT_7 = '7'; final protected static int INT_8 = '8'; final protected static int INT_9 = '9'; final protected static int INT_MINUS = '-'; final protected static int INT_PLUS = '+'; final protected static int INT_DECIMAL_POINT = '.'; final protected static int INT_e = 'e'; final protected static int INT_E = 'E'; final protected static char CHAR_NULL = '\0'; // Numeric value holders: multiple fields used for // for efficiency /** * Bitfield that indicates which numeric representations * have been calculated for the current type */ protected int _numTypesValid = NR_UNKNOWN; // First primitives protected int _numberInt; protected long _numberLong; protected double _numberDouble; // And then object types protected BigInteger _numberBigInt; protected BigDecimal _numberBigDecimal; /** * Textual number representation captured from input in cases lazy-parsing * is desired. *

    * As of 2.14, this only applies to {@link BigInteger} and {@link BigDecimal}. * * @since 2.14 */ protected String _numberString; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public CsvDecoder(IOContext ctxt, CsvParser owner, Reader r, CsvSchema schema, TextBuffer textBuffer, int stdFeatures, int csvFeatures) { _owner = owner; _ioContext = ctxt; _inputReader = r; _textBuffer = textBuffer; _autoCloseInput = StreamReadFeature.AUTO_CLOSE_SOURCE.enabledIn(stdFeatures); _allowComments = CsvReadFeature.ALLOW_COMMENTS.enabledIn(csvFeatures); _trimSpaces = CsvReadFeature.TRIM_SPACES.enabledIn(csvFeatures); _skipBlankLines = CsvReadFeature.SKIP_EMPTY_LINES.enabledIn(csvFeatures); _skipEmptyRows = CsvReadFeature.SKIP_EMPTY_ROWS.enabledIn(csvFeatures); _inputBuffer = ctxt.allocTokenBuffer(); _bufferRecyclable = true; // since we allocated it _tokenInputRow = -1; _tokenInputCol = -1; setSchema(schema); } public void setSchema(CsvSchema schema) { _separatorChar = schema.getColumnSeparator(); _quoteChar = schema.getQuoteChar(); _escapeChar = schema.getEscapeChar(); if (!_allowComments) { _allowComments = schema.allowsComments(); } int max = Math.max(_separatorChar, _quoteChar); max = Math.max(max, _escapeChar); max = Math.max(max, '\r'); max = Math.max(max, '\n'); _maxSpecialChar = max; } /* /********************************************************************** /* JsonParser implementations passed-through by CsvParser /********************************************************************** */ public Object getInputSource() { return _inputReader; } public void close() throws IOException { _pendingLF = 1; // just to ensure we'll also check _closed flag later on if (!_closed) { _closed = true; try { _closeInput(); } finally { // Also, internal buffer(s) can now be released as well releaseBuffers(); } } } public int releaseBuffered(Writer out) throws IOException { int count = _inputEnd - _inputPtr; if (count < 1) { return 0; } // let's just advance ptr to end int origPtr = _inputPtr; out.write(_inputBuffer, origPtr, count); return count; } public SimpleStreamReadContext childArrayContext(SimpleStreamReadContext context) { int col = _inputPtr - _currInputRowStart + 1; // 1-based return context.createChildArrayContext(_currInputRow, col); } public SimpleStreamReadContext childObjectContext(SimpleStreamReadContext context) { int col = _inputPtr - _currInputRowStart + 1; // 1-based return context.createChildObjectContext(_currInputRow, col); } public TokenStreamLocation getTokenLocation() { return new TokenStreamLocation(_ioContext.contentReference(), getTokenCharacterOffset(), getTokenLineNr(), getTokenColumnNr()); } public TokenStreamLocation getCurrentLocation() { int ptr = _inputPtr; // One twist: when dealing with a "pending LF", need to // go back one position when calculating location if (_pendingLF > 1) { // 1 is used as marker for end-of-input --ptr; } int col = ptr - _currInputRowStart + 1; // 1-based return new TokenStreamLocation(_ioContext.contentReference(), _currInputProcessed + ptr - 1L, _currInputRow, col); } public final int getCurrentRow() { return _currInputRow; } public final int getCurrentColumn() { int ptr = _inputPtr; // One twist: when dealing with a "pending LF", need to // go back one position when calculating location if (_pendingLF > 1) { // 1 is used as marker for end-of-input --ptr; } return ptr - _currInputRowStart + 1; // 1-based } /** * Tell if the current token has been quoted or not. * @return True if the current token has been quoted, false otherwise * * @since 2.18 */ public final boolean isCurrentTokenQuoted() { return _currInputQuoted; } /* /********************************************************************** /* Helper methods, input handling /********************************************************************** */ protected final long getTokenCharacterOffset() { return _tokenInputTotal; } protected final int getTokenLineNr() { return _tokenInputRow; } protected final int getTokenColumnNr() { // note: value of -1 means "not available"; otherwise convert from 0-based to 1-based int col = _tokenInputCol; return (col < 0) ? col : (col + 1); } protected void releaseBuffers() throws JacksonException { _textBuffer.releaseBuffers(); char[] buf = _inputBuffer; if (buf != null) { _inputBuffer = null; _ioContext.releaseTokenBuffer(buf); } } protected void _closeInput() throws IOException { _pendingLF = 1; // just to ensure we'll also check _closed flag later on /* 25-Nov-2008, tatus: As per [JACKSON-16] we are not to call close() * on the underlying Reader, unless we "own" it, or auto-closing * feature is enabled. * One downside is that when using our optimized * Reader (granted, we only do that for UTF-32...) this * means that buffer recycling won't work correctly. */ if (_inputReader != null) { if (_autoCloseInput || _ioContext.isResourceManaged()) { _inputReader.close(); } _inputReader = null; } } protected final boolean loadMore() throws JacksonException { _currInputProcessed += _inputEnd; _currInputRowStart -= _inputEnd; // [dataformats-text#613]: enforce max document length _ioContext.streamReadConstraints().validateDocumentLength(_currInputProcessed); try { if (_inputReader != null) { int count = _inputReader.read(_inputBuffer, 0, _inputBuffer.length); _inputEnd = count; _inputPtr = 0; if (count > 0) { return true; } // End of input; close here -- but note, do NOT yet call releaseBuffers() // as there may be buffered input to handle _closeInput(); // Should never return 0, so let's fail if (count == 0) { throw new IOException("InputStream.read() returned 0 characters when trying to read "+_inputBuffer.length+" bytes"); } } } catch (IOException e) { throw _owner._wrapIOFailure(e); } return false; } /* /********************************************************************** /* Actual parsing, access methods /********************************************************************** */ public String getText() throws JacksonException { return _textBuffer.contentsAsString(); } /** * Method that can be called to see if there is at least one more * character to be parsed. */ public boolean hasMoreInput() throws JacksonException { if (_inputPtr < _inputEnd) { return true; } return loadMore(); } /** * Method called to handle details of starting a new line, which may * include skipping a linefeed. * * @return True if there is a new data line to handle; false if not */ public boolean startNewLine() throws JacksonException { _pendingEmptyColumns = 0; // first: if pending LF, skip it if (_pendingLF != 0) { if (_inputReader == null) { return false; } _handleLF(); } return skipLinesWhenNeeded(); } /** * Optionally skip lines that are empty or are comments, depending on the feature activated in the parser * * @return false if the end of input was reached * @throws JacksonException */ public boolean skipLinesWhenNeeded() throws JacksonException { if (_allowComments) { return _skipCommentLines(); } if (!_skipBlankLines && !_skipEmptyRows) { return hasMoreInput(); } // only need to skip fully empty lines (and optionally empty rows) while (hasMoreInput()) { char ch = _inputBuffer[_inputPtr]; if (ch == '\r' || ch == '\n') { ++_inputPtr; _pendingLF = ch; _handleLF(); continue; } if (ch == ' ' && _skipBlankLines) { ++_inputPtr; continue; } // [dataformats-text#368]: Row of only separator characters? if (_skipEmptyRows && ch == _separatorChar) { if (_trySkipEmptyRow()) { continue; } } return true; // processing can go on } return false; // end of input } public boolean _skipCommentLines() throws JacksonException { while ((_inputPtr < _inputEnd) || loadMore()) { char ch = _inputBuffer[_inputPtr]; switch (ch) { case '#': ++_inputPtr; _skipCommentContents(); continue; case '\r': case '\n': ++_inputPtr; _pendingLF = ch; _handleLF(); continue; case ' ': // skip all blanks (in both comments/blanks skip mode) ++_inputPtr; continue; default: // [dataformats-text#368]: Check if line consists only of separators if (_skipEmptyRows && ch == _separatorChar) { if (_trySkipEmptyRow()) { continue; } } return true; } } return false; // end of input } protected void _skipCommentContents() throws JacksonException { while ((_inputPtr < _inputEnd) || loadMore()) { char ch = _inputBuffer[_inputPtr++]; if (ch == '\r' || ch == '\n') { _pendingLF = ch; _handleLF(); break; } } } /** * Helper method called when we see a separator character at the start of a line * and need to determine if the entire row consists only of consecutive separator * characters (no other content) followed by a linefeed or EOF. *

    * Consumes separator characters one at a time. If a linefeed or EOF is reached, * the row is empty and is skipped (returns {@code true}). If any other character * is found, the consumed separators are recorded in {@link #_pendingEmptyColumns} * so that {@link #nextString()} can replay them as empty values. * * @return {@code true} if the row was determined to be empty and was skipped; * {@code false} if the row contains non-empty content (consumed separators * will be replayed via {@link #_pendingEmptyColumns}) */ protected boolean _trySkipEmptyRow() throws JacksonException { int separatorCount = 0; while (true) { // Consume the separator character at current position ++_inputPtr; ++separatorCount; // Need more input? if (_inputPtr >= _inputEnd) { if (!loadMore()) { // EOF after separators only: empty row at end of input return true; } } char ch = _inputBuffer[_inputPtr]; if (ch == _separatorChar) { continue; } if (ch == '\r' || ch == '\n') { // Row consisted only of separators: skip it ++_inputPtr; _pendingLF = ch; _handleLF(); return true; } // Found non-separator content: not an empty row. // Record consumed separators so nextString() replays them. _pendingEmptyColumns = separatorCount; return false; } } /** * Method called to blindly skip a single line of content, without considering * aspects like quoting or escaping. Used currently simply to skip the first * line of input document, if instructed to do so. */ public boolean skipLine() throws JacksonException { if (_pendingLF != 0) { if (_inputReader == null) { return false; } _handleLF(); } while (_inputPtr < _inputEnd || loadMore()) { char c = _inputBuffer[_inputPtr++]; if (c == '\r' || c == '\n') { // important: handle trailing linefeed now, so caller need not bother _pendingLF = c; _handleLF(); return true; } } return false; } /** * Method called to parse the next token when we don't have any type * information, so that all tokens are exposed as basic String * values. * * @return Column value if more found; null to indicate end of line * of input */ public String nextString() throws JacksonException { _numTypesValid = NR_UNKNOWN; _currInputQuoted = false; // Reset; set to true below only if opening quote found // [dataformats-text#368]: Replay separator characters consumed by _trySkipEmptyRow() // as empty column values if (_pendingEmptyColumns > 0) { --_pendingEmptyColumns; _textBuffer.resetWithString(""); return ""; } if (_pendingLF > 0) { // either pendingLF, or closed if (_inputReader != null) { // if closed, we just need to return null _handleLF(); } return null; // end of line without new value } int i; if (_trimSpaces) { i = _skipLeadingSpace(); } else { i = _nextChar(); // [dataformats-text#643]: Even without TRIM_SPACES, spaces before // a quoted value are insignificant and should be skipped. // Consume whitespace across buffer boundaries; if a quote follows, // discard the spaces and parse as quoted. If not, restore consumed // spaces into the unquoted output. if (i <= ' ' && i > 0 && i != _separatorChar && i != INT_CR && i != INT_LF) { // Lazily allocate / reuse buffer for consumed whitespace char[] spaceBuf = _leadingSpaceBuf; if (spaceBuf == null) { _leadingSpaceBuf = spaceBuf = new char[16]; } int spaceCount = 0; spaceBuf[spaceCount++] = (char) i; boolean foundQuote = false; while (true) { if (_inputPtr >= _inputEnd) { if (!loadMore()) { break; } } final char ch = _inputBuffer[_inputPtr]; if (ch == _quoteChar) { // Found quote: discard leading spaces, proceed as quoted _inputPtr++; i = _quoteChar; foundQuote = true; break; } if (ch > ' ' || ch == _separatorChar || ch == '\r' || ch == '\n') { break; } // Consume this whitespace character, tracking it for restoration _inputPtr++; if (spaceCount >= spaceBuf.length) { _leadingSpaceBuf = spaceBuf = Arrays.copyOf(spaceBuf, spaceBuf.length * 2); } spaceBuf[spaceCount++] = ch; } if (!foundQuote && spaceCount > 0) { // Not a quoted value: restore consumed whitespace into unquoted output _tokenInputTotal = _currInputProcessed + _inputPtr - 1; _tokenInputRow = _currInputRow; _tokenInputCol = _inputPtr - _currInputRowStart - 1; _textBuffer.resetWithCopy(spaceBuf, 0, spaceCount); return _nextUnquotedString(_textBuffer.getBufferWithoutReset(), _textBuffer.getCurrentSegmentSize()); } } } // First, need to ensure we know the starting location of token _tokenInputTotal = _currInputProcessed + _inputPtr - 1; _tokenInputRow = _currInputRow; _tokenInputCol = _inputPtr - _currInputRowStart - 1; if (i < 0) { // EOF at this point signifies empty value _textBuffer.resetWithString(""); return ""; } if (i == INT_CR || i == INT_LF) { // end-of-line means end of record; but also need to handle LF later on _pendingLF = i; _textBuffer.resetWithString(""); return ""; } // two modes: quoted, unquoted _currInputQuoted = i == _quoteChar; // Keep track of quoting if (_currInputQuoted) { // offline quoted case (longer) return _nextQuotedString(); } if (i == _separatorChar) { _textBuffer.resetWithString(""); return ""; } char[] outBuf = _textBuffer.emptyAndGetCurrentSegment(); outBuf[0] = (char) i; int outPtr = 1; if (i == _escapeChar) { // Reset the escaped character outBuf[0] = _unescape(); return _nextUnquotedString(outBuf, outPtr); } int ptr = _inputPtr; if (ptr >= _inputEnd) { if (!loadMore()) { // ok to have end-of-input but... return _textBuffer.finishAndReturn(outPtr, _trimSpaces); } ptr = _inputPtr; } final int end; { int max = Math.min(_inputEnd - ptr, outBuf.length - outPtr); end = ptr + max; } // handle unquoted case locally if it can be handled without // crossing buffer boundary... char[] inputBuffer = _inputBuffer; while (ptr < end) { char c = inputBuffer[ptr++]; if (c <= _maxSpecialChar) { if (c == _separatorChar) { // end of value, yay! _inputPtr = ptr; return _textBuffer.finishAndReturn(outPtr, _trimSpaces); } if (c == '\r' || c == '\n') { _pendingLF = c; _inputPtr = ptr; return _textBuffer.finishAndReturn(outPtr, _trimSpaces); } if (c == _escapeChar) { --ptr; break; } } outBuf[outPtr++] = c; } // ok, either input or output across buffer boundary, offline _inputPtr = ptr; return _nextUnquotedString(outBuf, outPtr); } public JsonToken nextStringOrLiteral() throws JacksonException { _numTypesValid = NR_UNKNOWN; // !!! TODO: implement properly String value = nextString(); if (value == null) { return null; } return JsonToken.VALUE_STRING; } public JsonToken nextNumber() throws JacksonException { _numTypesValid = NR_UNKNOWN; // !!! TODO: implement properly String value = nextString(); if (value == null) { return null; } return JsonToken.VALUE_STRING; } public JsonToken nextNumberOrString() throws JacksonException { _numTypesValid = NR_UNKNOWN; // !!! TODO: implement properly String value = nextString(); if (value == null) { return null; } return JsonToken.VALUE_STRING; } /* /********************************************************************** /* Actual parsing, private helper methods /********************************************************************** */ protected String _nextUnquotedString(char[] outBuf, int outPtr) throws JacksonException { int c; final char[] inputBuffer = _inputBuffer; main_loop: while (true) { int ptr = _inputPtr; if (ptr >= _inputEnd) { if (!loadMore()) { // ok to have end-of-input, are done _inputPtr = ptr; break main_loop; } ptr = _inputPtr; } if (outPtr >= outBuf.length) { outBuf = _textBuffer.finishCurrentSegment(); outPtr = 0; } final int max = Math.min(_inputEnd, (ptr + (outBuf.length - outPtr))); while (ptr < max) { c = inputBuffer[ptr++]; if (c <= _maxSpecialChar) { if (c == _separatorChar) { // end of value, yay! _inputPtr = ptr; break main_loop; } if (c == '\r' || c == '\n') { // end of line is end of value as well _inputPtr = ptr; _pendingLF = c; break main_loop; } if (c == _escapeChar) { _inputPtr = ptr; outBuf[outPtr++] = _unescape(); // May have passed input boundary, need to re-set continue main_loop; } } outBuf[outPtr++] = (char) c; } _inputPtr = ptr; } return _textBuffer.finishAndReturn(outPtr, _trimSpaces); } protected String _nextQuotedString() throws JacksonException { char[] outBuf = _textBuffer.emptyAndGetCurrentSegment(); int outPtr = 0; final char[] inputBuffer = _inputBuffer; boolean checkLF = false; // marker for split CR+LF main_loop: while (true) { int ptr = _inputPtr; if (ptr >= _inputEnd) { if (!loadMore()) { // not ok, missing end quote _owner._reportError("Missing closing quote for value"); // should indicate start position? } ptr = _inputPtr; if (checkLF) { checkLF = false; // better reset if (inputBuffer[ptr] == '\n') { // undo earlier advancement, to keep line number correct --_currInputRow; } } } // 11-Feb-2024, tatu: Not quite sure what was supposed to happen here; // but nothing was done. Leaving for now, remove from 2.18 or later /* if (checkLF) { // had a "hanging" CR in parse loop; check now } */ if (outPtr >= outBuf.length) { outBuf = _textBuffer.finishCurrentSegment(); outPtr = 0; } final int max = Math.min(_inputEnd, (ptr + (outBuf.length - outPtr))); inner_loop: while (true) { char c = inputBuffer[ptr++]; if (c <= _maxSpecialChar) { if (c == _quoteChar) { _inputPtr = ptr; break; } // Embedded linefeeds are fine if (c == '\r') { // bit crappy check but has to do: if (ptr >= max) { checkLF = true; // will need to be checked in beginning of next loop ++_currInputRow; _currInputRowStart = ptr; } else if (inputBuffer[ptr] != '\n') { ++_currInputRow; _currInputRowStart = ptr; } } else if (c == '\n') { ++_currInputRow; _currInputRowStart = ptr; } else if (c == _escapeChar) { _inputPtr = ptr; c = _unescape(); outBuf[outPtr++] = c; // May have passed input boundary, need to re-set continue main_loop; } } outBuf[outPtr++] = c; if (ptr >= max) { _inputPtr = ptr; continue main_loop; } continue inner_loop; } // We get here if we hit a quote: check if it's doubled up, or end of value: if (_inputPtr < _inputEnd || loadMore()) { if (_inputBuffer[_inputPtr] == _quoteChar) { // doubled up, append // note: should have enough room, is safe outBuf[outPtr++] = (char) _quoteChar; ++_inputPtr; continue main_loop; } } // Not doubled; leave next char as is break; } // note: do NOT trim from within quoted Strings String result = _textBuffer.finishAndReturn(outPtr, false); // good, but we also need to locate and skip trailing space, separator // (note: space outside quotes never included, but must be skipped) while (_inputPtr < _inputEnd || loadMore()) { // end-of-input is fine int ch = _inputBuffer[_inputPtr++]; if (ch == _separatorChar) { // common case, separator between columns break; } if (ch <= INT_SPACE) { // extra space, fine as well if (ch == INT_CR || ch == INT_LF) { // but end-of-line can't be yet skipped _pendingLF = ch; break; } continue; } _owner._reportUnexpectedCsvChar(ch, String.format( "Expected column separator character (%s) or end-of-line", _getCharDesc(_separatorChar))); } return result; } protected final void _handleLF() throws JacksonException { // already skipped past first part; but may get \r\n so skip the other char too? if (_pendingLF == INT_CR) { if (_inputPtr < _inputEnd || loadMore()) { if (_inputBuffer[_inputPtr] == '\n') { ++_inputPtr; } } } _pendingLF = 0; ++_currInputRow; _currInputRowStart = _inputPtr; } protected char _unescape() throws JacksonException { if (_inputPtr >= _inputEnd) { if (!loadMore()) { _reportError("Unexpected EOF in escaped character"); } } // Some characters are more special than others, so: char c = _inputBuffer[_inputPtr++]; switch (c) { case '0': return '\0'; case 'n': return '\n'; case 'r': return '\r'; case 't': return '\t'; } // others, return as is... return c; } protected final int _nextChar() throws JacksonException { if (_inputPtr >= _inputEnd) { if (!loadMore()) { return -1; } } return _inputBuffer[_inputPtr++]; } protected final int _skipLeadingSpace() throws JacksonException { final int sep = _separatorChar; while (true) { if (_inputPtr >= _inputEnd) { if (!loadMore()) { return -1; } } char ch = _inputBuffer[_inputPtr++]; if ((ch > ' ') || (ch == sep)) { return ch; } switch (ch) { case '\r': case '\n': return ch; } } } /* /********************************************************************** /* Numeric accessors for CsvParser /********************************************************************** */ /** * Method used by {@link CsvParser#isExpectedNumberIntToken()} to coerce * current token into integer number, if it looks like one. */ public boolean isExpectedNumberIntToken() throws JacksonException { if (looksLikeInt()) { _parseIntValue(); return true; } return false; } /** * @param exact Whether we should try to retain maximum precision or not; * passed as {@code true} by {@code getNumberValueExact()}, and as * {@code false} by regular {@code getNumberValue)}. */ public Number getNumberValue(boolean exact) throws JacksonException { if (_numTypesValid == NR_UNKNOWN) { _parseNumericValue(exact); // will also check event type } // Separate types for int types if ((_numTypesValid & NR_INT) != 0) { return Integer.valueOf(_numberInt); } if ((_numTypesValid & NR_LONG) != 0) { return Long.valueOf(_numberLong); } if ((_numTypesValid & NR_BIGINT) != 0) { return _getBigInteger(); } // And then floating point types. But here optimal type // needs to be big decimal, to avoid losing any data? if ((_numTypesValid & NR_BIGDECIMAL) != 0) { return _getBigDecimal(); } if ((_numTypesValid & NR_DOUBLE) == 0) { // sanity check _throwInternal(); } return Double.valueOf(_numberDouble); } public NumberType getNumberType() throws JacksonException { if (_numTypesValid == NR_UNKNOWN) { _parseNumericValue(false); // will also check event type } if ((_numTypesValid & NR_INT) != 0) { return NumberType.INT; } if ((_numTypesValid & NR_LONG) != 0) { return NumberType.LONG; } if ((_numTypesValid & NR_BIGINT) != 0) { return NumberType.BIG_INTEGER; } // And then floating point types. Here optimal type // needs to be big decimal, to avoid losing any data? // However... using BD is slow, so let's allow returning // double as type if no explicit call has been made to access data as BD? if ((_numTypesValid & NR_BIGDECIMAL) != 0) { return NumberType.BIG_DECIMAL; } return NumberType.DOUBLE; } public int getIntValue() throws JacksonException { if ((_numTypesValid & NR_INT) == 0) { if (_numTypesValid == NR_UNKNOWN) { // not parsed at all _parseNumericValue(false); // will also check event type } if ((_numTypesValid & NR_INT) == 0) { // wasn't an int natively? convertNumberToInt(); // let's make it so, if possible } } return _numberInt; } public long getLongValue() throws JacksonException { if ((_numTypesValid & NR_LONG) == 0) { if (_numTypesValid == NR_UNKNOWN) { _parseNumericValue(false); } if ((_numTypesValid & NR_LONG) == 0) { convertNumberToLong(); } } return _numberLong; } public BigInteger getBigIntegerValue() throws JacksonException { if ((_numTypesValid & NR_BIGINT) == 0) { if (_numTypesValid == NR_UNKNOWN) { _parseNumericValue(true); } if ((_numTypesValid & NR_BIGINT) == 0) { convertNumberToBigInteger(); } } return _getBigInteger(); } public float getFloatValue() throws JacksonException { double value = getDoubleValue(); // Bounds/range checks would be tricky here, so let's not bother... return (float) value; } public double getDoubleValue() throws JacksonException { if ((_numTypesValid & NR_DOUBLE) == 0) { if (_numTypesValid == NR_UNKNOWN) { _parseNumericValue(false); } if ((_numTypesValid & NR_DOUBLE) == 0) { convertNumberToDouble(); } } return _numberDouble; } public BigDecimal getDecimalValue() throws JacksonException { if ((_numTypesValid & NR_BIGDECIMAL) == 0) { if (_numTypesValid == NR_UNKNOWN) { _parseNumericValue(true); } if ((_numTypesValid & NR_BIGDECIMAL) == 0) { convertNumberToBigDecimal(); } } return _getBigDecimal(); } /** * Internal accessor that needs to be used for accessing number value of type * {@link BigInteger} which -- as of 2.14 -- is typically lazily parsed. */ protected BigInteger _getBigInteger() throws JacksonException { if (_numberBigInt != null) { return _numberBigInt; } else if (_numberString == null) { throw new IllegalStateException("cannot get BigInteger from current parser state"); } _ioContext.streamReadConstraints().validateIntegerLength(_numberString.length()); _numberBigInt = NumberInput.parseBigInteger( _numberString, _owner.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); _numberString = null; return _numberBigInt; } /** * Internal accessor that needs to be used for accessing number value of type * {@link BigDecimal} which -- as of 2.14 -- is typically lazily parsed. */ protected BigDecimal _getBigDecimal() throws JacksonException { if (_numberBigDecimal != null) { return _numberBigDecimal; } else if (_numberString == null) { throw new IllegalStateException("cannot get BigDecimal from current parser state"); } _ioContext.streamReadConstraints().validateFPLength(_numberString.length()); _numberBigDecimal = NumberInput.parseBigDecimal( _numberString, _owner.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); _numberString = null; return _numberBigDecimal; } /* /********************************************************************** /* Conversion from textual to numeric representation /********************************************************************** */ /** * Method that will parse actual numeric value out of a syntactically * valid number value. Type it will parse into depends on whether * it is a floating point number, as well as its magnitude: smallest * legal type (of ones available) is used for efficiency. * * @param exactNumber Whether to try to retain the highest precision for * floating-point values or not */ protected void _parseNumericValue(boolean exactNumber) throws JacksonException { if (looksLikeInt()) { _parseIntValue(); return; } /* if (_hasFloatToken() == JsonToken.VALUE_NUMBER_FLOAT) { _parseSlowFloatValue(expType); return; } _reportError("Current token ("+_currToken+") not numeric, can not use numeric value accessors"); */ _parseSlowFloatValue(exactNumber); } private boolean looksLikeInt() throws JacksonException { final char[] ch = _textBuffer.contentsAsArray(); final int len = ch.length; if (len == 0) { return false; } int i = 0; char c = ch[0]; if (c == '-' || c == '+') { if (len == 1) { return false; } ++i; } for (; i < len; ++i) { c = ch[i]; if (c > '9' || c < '0') { return false; } } return true; } // @since 2.12 protected void _parseIntValue() throws JacksonException { char[] buf = _textBuffer.getTextBuffer(); int offset = _textBuffer.getTextOffset(); char c = buf[offset]; boolean neg; if (c == '-') { neg = true; ++offset; } else { neg = false; if (c == '+') { ++offset; } } int len = buf.length - offset; if (len <= 9) { // definitely fits in int int i = NumberInput.parseInt(buf, offset, len); _numberInt = neg ? -i : i; _numTypesValid = NR_INT; return; } if (len <= 18) { // definitely fits AND is easy to parse using 2 int parse calls long l = NumberInput.parseLong(buf, offset, len); if (neg) { l = -l; } // [JACKSON-230] Could still fit in int, need to check if (len == 10) { if (neg) { if (l >= MIN_INT_L) { _numberInt = (int) l; _numTypesValid = NR_INT; return; } } else { if (l <= MAX_INT_L) { _numberInt = (int) l; _numTypesValid = NR_INT; return; } } } _numberLong = l; _numTypesValid = NR_LONG; return; } _parseSlowIntValue(buf, offset, len, neg); } private final void _parseSlowFloatValue(boolean exactNumber) throws JacksonException { /* Nope: floating point. Here we need to be careful to get * optimal parsing strategy: choice is between accurate but * slow (BigDecimal) and lossy but fast (Double). For now * let's only use BD when explicitly requested -- it can * still be constructed correctly at any point since we do * retain textual representation */ try { if (exactNumber) { _numberBigDecimal = null; _numberString = _textBuffer.contentsAsString(); _numTypesValid = NR_BIGDECIMAL; } else { // Otherwise double has to do _numberDouble = _textBuffer.contentsAsDouble(_owner.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); _numTypesValid = NR_DOUBLE; } } catch (NumberFormatException nex) { // Can this ever occur? Due to overflow, maybe? throw _constructReadException(nex, "Malformed numeric value '" + _textBuffer.contentsAsString() + "'"); } } private final void _parseSlowIntValue(char[] buf, int offset, int len, boolean neg) throws JacksonException { String numStr = _textBuffer.contentsAsString(); try { if (NumberInput.inLongRange(buf, offset, len, neg)) { // Probably faster to construct a String, call parse, than to use BigInteger _numberLong = Long.parseLong(numStr); _numTypesValid = NR_LONG; } else { // nope, need the heavy guns... (rare case) _numberBigInt = null; _numberString = numStr; _numTypesValid = NR_BIGINT; } } catch (NumberFormatException nex) { // Can this ever occur? Due to overflow, maybe? throw _constructReadException(nex, "Malformed numeric value '" + numStr + "'"); } } /* /********************************************************************** /* Numeric conversions /********************************************************************** */ protected void convertNumberToInt() throws JacksonException { // First, converting from long ought to be easy if ((_numTypesValid & NR_LONG) != 0) { // Let's verify it's lossless conversion by simple roundtrip int result = (int) _numberLong; if (result != _numberLong) { _reportError("Numeric value (" + getText() + ") out of range of int"); } _numberInt = result; } else if ((_numTypesValid & NR_BIGINT) != 0) { final BigInteger bigInteger = _getBigInteger(); if (BI_MIN_INT.compareTo(bigInteger) > 0 || BI_MAX_INT.compareTo(bigInteger) < 0) { reportOverflowInt(); } _numberInt = bigInteger.intValue(); } else if ((_numTypesValid & NR_DOUBLE) != 0) { // Need to check boundaries if (_numberDouble < MIN_INT_D || _numberDouble > MAX_INT_D) { reportOverflowInt(); } _numberInt = (int) _numberDouble; } else if ((_numTypesValid & NR_BIGDECIMAL) != 0) { final BigDecimal bigDecimal = _getBigDecimal(); if (BD_MIN_INT.compareTo(bigDecimal) > 0 || BD_MAX_INT.compareTo(bigDecimal) < 0) { reportOverflowInt(); } _numberInt = bigDecimal.intValue(); } else { _throwInternal(); // should never get here } _numTypesValid |= NR_INT; } protected void convertNumberToLong() throws JacksonException { if ((_numTypesValid & NR_INT) != 0) { _numberLong = _numberInt; } else if ((_numTypesValid & NR_BIGINT) != 0) { final BigInteger bigInteger = _getBigInteger(); if (BI_MIN_LONG.compareTo(bigInteger) > 0 || BI_MAX_LONG.compareTo(bigInteger) < 0) { reportOverflowLong(); } _numberLong = bigInteger.longValue(); } else if ((_numTypesValid & NR_DOUBLE) != 0) { // Need to check boundaries if (_numberDouble < MIN_LONG_D || _numberDouble > MAX_LONG_D) { reportOverflowLong(); } _numberLong = (long) _numberDouble; } else if ((_numTypesValid & NR_BIGDECIMAL) != 0) { final BigDecimal bigDecimal = _getBigDecimal(); if (BD_MIN_LONG.compareTo(bigDecimal) > 0 || BD_MAX_LONG.compareTo(bigDecimal) < 0) { reportOverflowLong(); } _numberLong = bigDecimal.longValue(); } else { _throwInternal(); // should never get here } _numTypesValid |= NR_LONG; } protected void convertNumberToBigInteger() throws JacksonException { if ((_numTypesValid & NR_BIGDECIMAL) != 0) { // here it'll just get truncated, no exceptions thrown final BigDecimal bd = _getBigDecimal(); _ioContext.streamReadConstraints().validateBigIntegerScale(bd.scale()); _numberBigInt = bd.toBigInteger(); } else if ((_numTypesValid & NR_LONG) != 0) { _numberBigInt = BigInteger.valueOf(_numberLong); } else if ((_numTypesValid & NR_INT) != 0) { _numberBigInt = BigInteger.valueOf(_numberInt); } else if ((_numTypesValid & NR_DOUBLE) != 0) { _numberBigInt = BigDecimal.valueOf(_numberDouble).toBigInteger(); } else { _throwInternal(); // should never get here } _numTypesValid |= NR_BIGINT; } protected void convertNumberToDouble() throws JacksonException { // 05-Aug-2008, tatus: Important note: this MUST start with // more accurate representations, since we don't know which // value is the original one (others get generated when // requested) if ((_numTypesValid & NR_BIGDECIMAL) != 0) { _numberDouble = _getBigDecimal().doubleValue(); } else if ((_numTypesValid & NR_BIGINT) != 0) { _numberDouble = _getBigInteger().doubleValue(); } else if ((_numTypesValid & NR_LONG) != 0) { _numberDouble = _numberLong; } else if ((_numTypesValid & NR_INT) != 0) { _numberDouble = _numberInt; } else { _throwInternal(); // should never get here } _numTypesValid |= NR_DOUBLE; } protected void convertNumberToBigDecimal() throws JacksonException { if ((_numTypesValid & NR_DOUBLE) != 0) { // Let's actually parse from String representation, to avoid // rounding errors that non-decimal floating operations could incur final String text = getText(); _ioContext.streamReadConstraints().validateFPLength(text.length()); _numberBigDecimal = NumberInput.parseBigDecimal( text, _owner.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); } else if ((_numTypesValid & NR_BIGINT) != 0) { _numberBigDecimal = new BigDecimal(_getBigInteger()); } else if ((_numTypesValid & NR_LONG) != 0) { _numberBigDecimal = BigDecimal.valueOf(_numberLong); } else if ((_numTypesValid & NR_INT) != 0) { _numberBigDecimal = BigDecimal.valueOf(_numberInt); } else { _throwInternal(); // should never get here } _numTypesValid |= NR_BIGDECIMAL; } /* /********************************************************** /* Number handling exceptions /********************************************************** */ protected void reportUnexpectedNumberChar(int ch, String comment) throws StreamReadException { String msg = "Unexpected character (" + _getCharDesc(ch) + ") in numeric value"; if (comment != null) { msg += ": " + comment; } _reportError(msg); } protected void reportInvalidNumber(String msg) throws StreamReadException { _reportError("Invalid numeric value: " + msg); } protected void reportOverflowInt() throws StreamReadException { _reportError("Numeric value (" + getText() + ") out of range of int (" + Integer.MIN_VALUE + " - " + Integer.MAX_VALUE + ")"); } protected void reportOverflowLong() throws StreamReadException { _reportError("Numeric value (" + getText() + ") out of range of long (" + Long.MIN_VALUE + " - " + Long.MAX_VALUE + ")"); } protected final StreamReadException _constructReadException(Throwable t, String msg) { return new StreamReadException(_owner, msg, t); } protected final static String _getCharDesc(int ch) { char c = (char) ch; if (Character.isISOControl(c)) { return "(CTRL-CHAR, code " + ch + ")"; } if (ch > 255) { return "'" + c + "' (code " + ch + " / 0x" + Integer.toHexString(ch) + ")"; } return "'" + c + "' (code " + ch + ")"; } private void _throwInternal() { throw new IllegalStateException("Internal error: code path should never get executed"); } /** * Method for reporting low-level decoding (parsing) problems */ protected final void _reportError(String msg) throws StreamReadException { throw new StreamReadException(_owner, msg); } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvEncoder.java ================================================ package tools.jackson.dataformat.csv.impl; import java.io.IOException; import java.io.Writer; import java.math.BigDecimal; import java.math.BigInteger; import java.util.Arrays; import tools.jackson.core.JacksonException; import tools.jackson.core.exc.JacksonIOException; import tools.jackson.core.io.CharTypes; import tools.jackson.core.io.CharacterEscapes; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.NumberOutput; import tools.jackson.dataformat.csv.CsvSchema; import tools.jackson.dataformat.csv.CsvWriteException; import tools.jackson.dataformat.csv.CsvWriteFeature; /** * Helper class that handles actual low-level construction of * CSV output, based only on indexes given without worrying about reordering, * or binding from logical properties. */ public class CsvEncoder { // Default set of escaped characters (none) private static final int [] sOutputEscapes = new int[0]; // Upper case hex chars: protected final static char[] HEX_CHARS = CharTypes.copyHexChars(true); /** * As an optimization we try coalescing short writes into * buffer; but pass longer directly. */ protected final static int SHORT_WRITE = 32; /** * Default maximum length of a column value that will be inspected * character-by-character to determine whether quoting is needed * (when not using {@link CsvWriteFeature#STRICT_CHECK_FOR_QUOTING}). * Values longer than this are always quoted as a performance optimization. *

    * Configurable via {@link tools.jackson.dataformat.csv.CsvFactoryBuilder#maxQuoteCheckChars(int)}. * * @since 3.2 */ public final static int DEFAULT_MAX_QUOTE_CHECK = 24; protected final BufferedValue[] NO_BUFFERED = new BufferedValue[0]; private final static char[] TRUE_CHARS = "true".toCharArray(); private final static char[] FALSE_CHARS = "false".toCharArray(); /** * Currently active set of output escape code definitions (whether * and how to escape or not). */ protected int[] _outputEscapes = sOutputEscapes; /* /********************************************************************** /* Configuration /********************************************************************** */ protected final IOContext _ioContext; /** * Underlying {@link Writer} used for output. */ protected final Writer _out; protected final char _cfgColumnSeparator; protected final int _cfgQuoteCharacter; protected final int _cfgEscapeCharacter; protected final char[] _cfgLineSeparator; protected final char[] _cfgNullValue; protected final int _cfgLineSeparatorLength; protected final int _cfgMaxQuoteCheckChars; /** * Lowest-valued character that is safe to output without using * quotes around value, NOT including possible escape character. */ protected final int _cfgMinSafeChar; protected final int _csvFeatures; /** * Marker flag used to determine if to do optimal (aka "strict") quoting * checks or not (looser conservative check) */ protected final boolean _cfgOptimalQuoting; protected final boolean _cfgAllowsComments; protected final boolean _cfgIncludeMissingTail; protected final boolean _cfgAlwaysQuoteStrings; protected final boolean _cfgAlwaysQuoteEmptyStrings; // @since 2.16 protected final boolean _cfgAlwaysQuoteNumbers; // @since 3.2 protected final boolean _cfgQuoteLeadingTrailingWhitespace; protected final boolean _cfgEscapeQuoteCharWithEscapeChar; protected final boolean _cfgEscapeControlCharWithEscapeChar; /** * @since 2.14 */ protected final boolean _cfgUseFastDoubleWriter; protected final char _cfgQuoteCharEscapeChar; protected final char _cfgControlCharEscapeChar; /* /********************************************************************** /* Output state /********************************************************************** */ protected int _columnCount; /** * Index of column we expect to write next */ protected int _nextColumnToWrite = 0; /** * And if output comes in shuffled order we will need to do * bit of ordering. */ protected BufferedValue[] _buffered = NO_BUFFERED; /** * Index of the last buffered value */ protected int _lastBuffered = -1; protected boolean _trailingLFRemoved = false; /* /********************************************************************** /* Output buffering, low-level /********************************************************************** */ /** * Intermediate buffer in which contents are buffered before * being written using {@link #_out}. */ protected char[] _outputBuffer; /** * Flag that indicates whether the _outputBuffer is recyclable (and * needs to be returned to recycler once we are done) or not. */ protected boolean _bufferRecyclable; /** * Pointer to the next available char position in {@link #_outputBuffer} */ protected int _outputTail = 0; /** * Offset to index after the last valid index in {@link #_outputBuffer}. * Typically same as length of the buffer. */ protected final int _outputEnd; /** * Let's keep track of how many bytes have been output, may prove useful * when debugging. This does not include bytes buffered in * the output buffer, just bytes that have been written using underlying * stream writer. */ protected int _charsWritten; /* /********************************************************************** /* Construction, (re)configuration /********************************************************************** */ /** * @since 3.2 */ public CsvEncoder(IOContext ctxt, int csvFeatures, Writer out, CsvSchema schema, CharacterEscapes esc, boolean useFastDoubleWriter, int maxQuoteCheckChars) { _ioContext = ctxt; _csvFeatures = csvFeatures; _cfgUseFastDoubleWriter = useFastDoubleWriter; _cfgOptimalQuoting = CsvWriteFeature.STRICT_CHECK_FOR_QUOTING.enabledIn(csvFeatures); _cfgIncludeMissingTail = !CsvWriteFeature.OMIT_MISSING_TAIL_COLUMNS.enabledIn(_csvFeatures); _cfgAlwaysQuoteStrings = CsvWriteFeature.ALWAYS_QUOTE_STRINGS.enabledIn(csvFeatures); _cfgAlwaysQuoteEmptyStrings = CsvWriteFeature.ALWAYS_QUOTE_EMPTY_STRINGS.enabledIn(csvFeatures); _cfgAlwaysQuoteNumbers = CsvWriteFeature.ALWAYS_QUOTE_NUMBERS.enabledIn(csvFeatures); _cfgQuoteLeadingTrailingWhitespace = CsvWriteFeature.QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE.enabledIn(csvFeatures); _cfgEscapeQuoteCharWithEscapeChar = CsvWriteFeature.ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR.enabledIn(csvFeatures); _cfgEscapeControlCharWithEscapeChar = CsvWriteFeature.ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR.enabledIn(csvFeatures); _outputBuffer = ctxt.allocConcatBuffer(); _bufferRecyclable = true; _outputEnd = _outputBuffer.length; _out = out; _cfgColumnSeparator = schema.getColumnSeparator(); _cfgQuoteCharacter = schema.getQuoteChar(); _cfgEscapeCharacter = schema.getEscapeChar(); _cfgLineSeparator = schema.getLineSeparator(); _cfgLineSeparatorLength = (_cfgLineSeparator == null) ? 0 : _cfgLineSeparator.length; _cfgNullValue = schema.getNullValueOrEmpty(); _cfgAllowsComments = schema.allowsComments(); _columnCount = schema.size(); _outputEscapes = (esc == null) ? sOutputEscapes : esc.getEscapeCodesForAscii(); _cfgMinSafeChar = _calcSafeChar(); _cfgMaxQuoteCheckChars = maxQuoteCheckChars; _cfgQuoteCharEscapeChar = _getQuoteCharEscapeChar( _cfgEscapeQuoteCharWithEscapeChar, _cfgQuoteCharacter, _cfgEscapeCharacter ); _cfgControlCharEscapeChar = _cfgEscapeCharacter > 0 ? (char) _cfgEscapeCharacter : '\\'; _verifyConfiguration(schema); } @Deprecated // @since 3.2 public CsvEncoder(IOContext ctxt, int csvFeatures, Writer out, CsvSchema schema, CharacterEscapes esc, boolean useFastDoubleWriter) { this(ctxt, csvFeatures, out, schema, esc, useFastDoubleWriter, DEFAULT_MAX_QUOTE_CHECK); } public CsvEncoder(CsvEncoder base, CsvSchema newSchema) { _ioContext = base._ioContext; _csvFeatures = base._csvFeatures; _cfgUseFastDoubleWriter = base._cfgUseFastDoubleWriter; _cfgOptimalQuoting = base._cfgOptimalQuoting; _cfgIncludeMissingTail = base._cfgIncludeMissingTail; _cfgAlwaysQuoteStrings = base._cfgAlwaysQuoteStrings; _cfgAlwaysQuoteEmptyStrings = base._cfgAlwaysQuoteEmptyStrings; _cfgAlwaysQuoteNumbers = base._cfgAlwaysQuoteNumbers; _cfgQuoteLeadingTrailingWhitespace = base._cfgQuoteLeadingTrailingWhitespace; _cfgEscapeQuoteCharWithEscapeChar = base._cfgEscapeQuoteCharWithEscapeChar; _cfgEscapeControlCharWithEscapeChar = base._cfgEscapeControlCharWithEscapeChar; _outputBuffer = base._outputBuffer; _bufferRecyclable = base._bufferRecyclable; _outputEnd = base._outputEnd; _out = base._out; _cfgMaxQuoteCheckChars = base._cfgMaxQuoteCheckChars; _outputEscapes = base._outputEscapes; _cfgColumnSeparator = newSchema.getColumnSeparator(); _cfgQuoteCharacter = newSchema.getQuoteChar(); _cfgEscapeCharacter = newSchema.getEscapeChar(); _cfgLineSeparator = newSchema.getLineSeparator(); _cfgLineSeparatorLength = _cfgLineSeparator.length; _cfgNullValue = newSchema.getNullValueOrEmpty(); _cfgAllowsComments = newSchema.allowsComments(); _cfgMinSafeChar = _calcSafeChar(); _columnCount = newSchema.size(); _cfgQuoteCharEscapeChar = _getQuoteCharEscapeChar( base._cfgEscapeQuoteCharWithEscapeChar, newSchema.getQuoteChar(), newSchema.getEscapeChar() ); _cfgControlCharEscapeChar = _cfgEscapeCharacter > 0 ? (char) _cfgEscapeCharacter : '\\'; _verifyConfiguration(newSchema); } private void _verifyConfiguration(CsvSchema schema) { // 21-Feb-2023, tatu: [dataformats-text#374]: Need to verify that Escape character // is defined if need to use it if (_cfgEscapeQuoteCharWithEscapeChar || _cfgEscapeControlCharWithEscapeChar) { if (!schema.usesEscapeChar()) { throw CsvWriteException.from(null, "Cannot use `CsvGenerator.Feature.ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR` or `CsvGenerator.Feature.ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR`" +" if no escape character defined in `CsvSchema`", schema); } } } private final char _getQuoteCharEscapeChar( final boolean escapeQuoteCharWithEscapeChar, final int quoteCharacter, final int escapeCharacter) { final char quoteEscapeChar; if (escapeQuoteCharWithEscapeChar && escapeCharacter > 0) { quoteEscapeChar = (char) escapeCharacter; } else if (quoteCharacter > 0) { quoteEscapeChar = (char) quoteCharacter; } else { quoteEscapeChar = '\\'; } return quoteEscapeChar; } private final int _calcSafeChar() { // note: quote char may be -1 to signify "no quoting": int min = Math.max(_cfgColumnSeparator, _cfgQuoteCharacter); // 06-Nov-2015, tatu: We will NOT apply escape character, because it usually // has higher ascii value (with backslash); better handle separately. // 23-Sep-2020, tatu: Should not actually need to consider anything but the // first character when checking... but leaving rest for now for (int i = 0; i < _cfgLineSeparatorLength; ++i) { min = Math.max(min, _cfgLineSeparator[i]); } return min+1; } public CsvEncoder withSchema(CsvSchema schema) { return new CsvEncoder(this, schema); } public CsvEncoder setOutputEscapes(int[] esc) { _outputEscapes = (esc != null) ? esc : sOutputEscapes; return this; } /* /********************************************************************** /* Read-access to output state /********************************************************************** */ public Object getOutputTarget() { return _out; } /** * NOTE: while value does indeed indicate amount that has been written in the buffer, * there may be more intermediate data that is buffered as values but not yet in * buffer. */ public int getOutputBuffered() { return _outputTail; } public int nextColumnIndex() { return _nextColumnToWrite; } /* /********************************************************************** /* Writer API, writes from generator /********************************************************************** */ public final void write(int columnIndex, String value) throws JacksonException { // easy case: all in order if (columnIndex == _nextColumnToWrite) { // inlined 'appendValue(String)` if (_outputTail >= _outputEnd) { _flushBuffer(); } if (_nextColumnToWrite > 0) { appendColumnSeparator(); } final int len = value.length(); if (_cfgAlwaysQuoteStrings || _mayNeedQuotes(value, len, columnIndex)) { if (_cfgEscapeCharacter > 0) { _writeQuotedAndEscaped(value, (char) _cfgEscapeCharacter); } else { _writeQuoted(value); } } else { writeRaw(value); } ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.buffered(value)); } public final void write(int columnIndex, char[] ch, int offset, int len) throws JacksonException { // !!! TODO: optimize write(columnIndex, new String(ch, offset, len)); } public final void write(int columnIndex, int value) throws JacksonException { // easy case: all in order if (columnIndex == _nextColumnToWrite) { // inlined 'appendValue(int)' // up to 10 digits and possible minus sign, leading comma, possible quotes if ((_outputTail + 14) > _outputEnd) { _flushBuffer(); } if (_nextColumnToWrite > 0) { _outputBuffer[_outputTail++] = _cfgColumnSeparator; } if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } _outputTail = NumberOutput.outputInt(value, _outputBuffer, _outputTail); if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.buffered(value)); } public final void write(int columnIndex, long value) throws JacksonException { // easy case: all in order if (columnIndex == _nextColumnToWrite) { // inlined 'appendValue(int)' // up to 20 digits, minus sign, leading comma, possible quotes if ((_outputTail + 24) > _outputEnd) { _flushBuffer(); } if (_nextColumnToWrite > 0) { _outputBuffer[_outputTail++] = _cfgColumnSeparator; } if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } _outputTail = NumberOutput.outputLong(value, _outputBuffer, _outputTail); if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.buffered(value)); } public final void write(int columnIndex, BigInteger value) throws JacksonException { // easy case: all in order final String numStr = value.toString(); if (columnIndex == _nextColumnToWrite) { appendNumberValue(numStr); ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.bufferedNumber(numStr)); } public final void write(int columnIndex, float value) throws JacksonException { // easy case: all in order if (columnIndex == _nextColumnToWrite) { appendValue(value); ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.buffered(value)); } public final void write(int columnIndex, double value) throws JacksonException { // easy case: all in order if (columnIndex == _nextColumnToWrite) { appendValue(value); ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.buffered(value)); } public final void write(int columnIndex, BigDecimal value, boolean plain) throws JacksonException { final String numStr = plain ? value.toPlainString() : value.toString(); // easy case: all in order if (columnIndex == _nextColumnToWrite) { appendNumberValue(numStr); ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.bufferedNumber(numStr)); } public final void write(int columnIndex, boolean value) throws JacksonException { // easy case: all in order if (columnIndex == _nextColumnToWrite) { appendValue(value); ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.buffered(value)); } public final void writeNonEscaped(int columnIndex, String rawValue) throws JacksonException { if (columnIndex == _nextColumnToWrite) { appendRawValue(rawValue); ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.bufferedRaw(rawValue)); } public final void writeNull(int columnIndex) throws JacksonException { if (columnIndex == _nextColumnToWrite) { appendNull(); ++_nextColumnToWrite; return; } _buffer(columnIndex, BufferedValue.bufferedNull()); } public final void writeColumnName(String name) throws JacksonException { appendValue(name); ++_nextColumnToWrite; } public void endRow() throws JacksonException { // First things first; any buffered? if (_lastBuffered >= 0) { final int last = _lastBuffered; _lastBuffered = -1; for (; _nextColumnToWrite <= last; ++_nextColumnToWrite) { BufferedValue value = _buffered[_nextColumnToWrite]; if (value != null) { _buffered[_nextColumnToWrite] = null; value.write(this); } else if (_nextColumnToWrite > 0) { // ) { // note: write method triggers prepending of separator; but for missing // values we need to do it explicitly. appendColumnSeparator(); } } } else if (_nextColumnToWrite <= 0) { // empty line; do nothing return; } // Any missing values? if (_nextColumnToWrite < _columnCount) { if (_cfgIncludeMissingTail) { do { appendColumnSeparator(); } while (++_nextColumnToWrite < _columnCount); } } // write line separator _nextColumnToWrite = 0; if ((_outputTail + _cfgLineSeparatorLength) > _outputEnd) { _flushBuffer(); } System.arraycopy(_cfgLineSeparator, 0, _outputBuffer, _outputTail, _cfgLineSeparatorLength); _outputTail += _cfgLineSeparatorLength; } /* /********************************************************************** /* Writer API, writes via buffered values /********************************************************************** */ protected void appendValue(String value) throws JacksonException { if (_outputTail >= _outputEnd) { _flushBuffer(); } if (_nextColumnToWrite > 0) { appendColumnSeparator(); } // First: determine if we need quotes; simple heuristics; // only check for short Strings, stop if something found final int len = value.length(); if (_cfgAlwaysQuoteStrings || _mayNeedQuotes(value, len, _nextColumnToWrite)) { if (_cfgEscapeCharacter > 0) { _writeQuotedAndEscaped(value, (char) _cfgEscapeCharacter); } else { _writeQuoted(value); } } else { writeRaw(value); } } protected void appendRawValue(String value) throws JacksonException { if (_outputTail >= _outputEnd) { _flushBuffer(); } if (_nextColumnToWrite > 0) { appendColumnSeparator(); } writeRaw(value); } protected void appendValue(int value) throws JacksonException { // up to 10 digits and possible minus sign, leading comma, possible quotes if ((_outputTail + 14) > _outputEnd) { _flushBuffer(); } if (_nextColumnToWrite > 0) { _outputBuffer[_outputTail++] = _cfgColumnSeparator; } if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } _outputTail = NumberOutput.outputInt(value, _outputBuffer, _outputTail); if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } } protected void appendValue(long value) throws JacksonException { // up to 20 digits, minus sign, leading comma, possible quotes if ((_outputTail + 24) > _outputEnd) { _flushBuffer(); } if (_nextColumnToWrite > 0) { _outputBuffer[_outputTail++] = _cfgColumnSeparator; } if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } _outputTail = NumberOutput.outputLong(value, _outputBuffer, _outputTail); if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } } protected void appendValue(float value) throws JacksonException { String str = NumberOutput.toString(value, _cfgUseFastDoubleWriter); final int len = str.length(); if ((_outputTail + len) >= _outputEnd) { // >= to include possible comma too _flushBuffer(); } if (_nextColumnToWrite > 0) { _outputBuffer[_outputTail++] = _cfgColumnSeparator; } writeNumber(str); } protected void appendValue(double value) throws JacksonException { String str = NumberOutput.toString(value, _cfgUseFastDoubleWriter); final int len = str.length(); if ((_outputTail + len) >= _outputEnd) { // >= to include possible comma too _flushBuffer(); } if (_nextColumnToWrite > 0) { _outputBuffer[_outputTail++] = _cfgColumnSeparator; } writeNumber(str); } // @since 2.16: pre-encoded BigInteger/BigDecimal value protected void appendNumberValue(String numStr) throws JacksonException { // Same as "appendRawValue()", except may want quoting if (_outputTail >= _outputEnd) { _flushBuffer(); } if (_nextColumnToWrite > 0) { appendColumnSeparator(); } writeNumber(numStr); } protected void appendValue(boolean value) throws JacksonException { _append(value ? TRUE_CHARS : FALSE_CHARS); } protected void appendNull() throws JacksonException { _append(_cfgNullValue); } protected void _append(char[] ch) throws JacksonException { final int len = ch.length; if ((_outputTail + len) >= _outputEnd) { // >= to include possible comma too _flushBuffer(); } if (_nextColumnToWrite > 0) { _outputBuffer[_outputTail++] = _cfgColumnSeparator; } if (len > 0) { System.arraycopy(ch, 0, _outputBuffer, _outputTail, len); } _outputTail += len; } protected void appendColumnSeparator() throws JacksonException { if (_outputTail >= _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = _cfgColumnSeparator; } /* /********************************************************************** /* Output methods, unprocessed ("raw") /********************************************************************** */ public void writeRaw(String text) throws JacksonException { // Nothing to check, can just output as is int len = text.length(); int room = _outputEnd - _outputTail; if (room == 0) { _flushBuffer(); room = _outputEnd - _outputTail; } // But would it nicely fit in? If yes, it's easy if (room >= len) { text.getChars(0, len, _outputBuffer, _outputTail); _outputTail += len; } else { writeRawLong(text); } } public void writeRaw(String text, int start, int len) throws JacksonException { // Nothing to check, can just output as is int room = _outputEnd - _outputTail; if (room < len) { _flushBuffer(); room = _outputEnd - _outputTail; } // But would it nicely fit in? If yes, it's easy if (room >= len) { text.getChars(start, start+len, _outputBuffer, _outputTail); _outputTail += len; } else { writeRawLong(text.substring(start, start+len)); } } public void writeRaw(char[] text, int offset, int len) throws JacksonException { // Only worth buffering if it's a short write? if (len < SHORT_WRITE) { int room = _outputEnd - _outputTail; if (len > room) { _flushBuffer(); } System.arraycopy(text, offset, _outputBuffer, _outputTail, len); _outputTail += len; return; } // Otherwise, better just pass through: _flushBuffer(); try { _out.write(text, offset, len); } catch (IOException e) { throw _wrapIOFailure(e); } } public void writeRaw(char c) throws JacksonException { if (_outputTail >= _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = c; } private void writeRawLong(String text) throws JacksonException { int room = _outputEnd - _outputTail; // If not, need to do it by looping text.getChars(0, room, _outputBuffer, _outputTail); _outputTail += room; _flushBuffer(); int offset = room; int len = text.length() - room; while (len > _outputEnd) { int amount = _outputEnd; text.getChars(offset, offset+amount, _outputBuffer, 0); _outputTail = amount; _flushBuffer(); offset += amount; len -= amount; } // And last piece (at most length of buffer) text.getChars(offset, offset+len, _outputBuffer, 0); _outputTail = len; } // @since 2.16 private void writeNumber(String text) throws JacksonException { final int len = text.length(); if ((_outputTail + len + 2) > _outputEnd) { _flushBuffer(); } if (_cfgAlwaysQuoteNumbers) { _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; text.getChars(0, len, _outputBuffer, _outputTail); _outputTail += len; _outputBuffer[_outputTail++] = (char) _cfgQuoteCharacter; } else { text.getChars(0, len, _outputBuffer, _outputTail); _outputTail += len; } } /* /********************************************************************** /* Output methods, with quoting and escaping /********************************************************************** */ public void _writeQuoted(String text) throws JacksonException { final int[] escCodes = _outputEscapes; final int escLen = escCodes.length; if (_outputTail >= _outputEnd) { _flushBuffer(); } // NOTE: caller should guarantee quote char is valid (not -1) at this point: final char q = (char) _cfgQuoteCharacter; _outputBuffer[_outputTail++] = q; // simple case: if we have enough room, no need for boundary checks final int len = text.length(); if ((_outputTail + len + len) >= _outputEnd) { _writeLongQuoted(text, q); return; } // 22-Jan-2015, tatu: Common case is that of no quoting needed, so let's // make a speculative copy, then scan // 06-Nov-2015, tatu: Not sure if copy actually improves perf; it did with // older JVMs (1.5 at least), but not sure about 1.8 and later final char[] buf = _outputBuffer; int ptr = _outputTail; text.getChars(0, len, buf, ptr); final int end = ptr+len; for (; ptr < end; ++ptr) { char c = buf[ptr]; // see if any of the characters need escaping. // if yes, fall back to the more convoluted write method if ((c == q) || (c < escLen && escCodes[c] != 0)) { break; // for } } if (ptr == end) { // all good, no quoting or escaping! _outputBuffer[ptr] = q; _outputTail = ptr+1; } else { // doh. do need quoting _writeQuoted(text, q, ptr - _outputTail); } } protected void _writeQuoted(String text, char q, int i) throws JacksonException { final int[] escCodes = _outputEscapes; final int escLen = escCodes.length; final char[] buf = _outputBuffer; _outputTail += i; final int len = text.length(); for (; i < len; ++i) { char c = text.charAt(i); if (c < escLen) { int escCode = escCodes[c]; if (escCode != 0) { // for escape control and double quotes, c will be 0 _appendCharacterEscape(c, escCode); continue; // for } } if (c == q) { // double up if (_outputTail >= _outputEnd) { _flushBuffer(); } buf[_outputTail++] = _cfgQuoteCharEscapeChar; // this will be the quote } if (_outputTail >= _outputEnd) { _flushBuffer(); } buf[_outputTail++] = c; } if (_outputTail >= _outputEnd) { _flushBuffer(); } buf[_outputTail++] = q; } private final void _writeLongQuoted(String text, char q) throws JacksonException { final int[] escCodes = _outputEscapes; final int escLen = escCodes.length; final int len = text.length(); for (int i = 0; i < len; ++i) { if (_outputTail >= _outputEnd) { _flushBuffer(); } char c = text.charAt(i); if (c < escLen) { int escCode = escCodes[c]; if (escCode != 0) { // for escape control and double quotes, c will be 0 _appendCharacterEscape(c, escCode); continue; // for } } if (c == q) { // double up _outputBuffer[_outputTail++] = _cfgQuoteCharEscapeChar; if (_outputTail >= _outputEnd) { _flushBuffer(); } } _outputBuffer[_outputTail++] = c; } if (_outputTail >= _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = q; } public void _writeQuotedAndEscaped(String text, char esc) throws JacksonException { final int[] escCodes = _outputEscapes; final int escLen = escCodes.length; if (_outputTail >= _outputEnd) { _flushBuffer(); } // NOTE: caller should guarantee quote char is valid (not -1) at this point: final char q = (char) _cfgQuoteCharacter; _outputBuffer[_outputTail++] = q; final int len = text.length(); if ((_outputTail + len + len) >= _outputEnd) { _writeLongQuotedAndEscaped(text, esc); return; } final char[] buf = _outputBuffer; int ptr = _outputTail; text.getChars(0, len, buf, ptr); final int end = ptr+len; for (; ptr < end; ++ptr) { char c = buf[ptr]; if ((c == q) || (c == esc) || (c < escLen && escCodes[c] != 0)) { break; } } if (ptr == end) { // all good, no quoting or escaping! _outputBuffer[ptr] = q; _outputTail = ptr+1; } else { // quoting AND escaping _writeQuotedAndEscaped(text, q, esc, ptr - _outputTail); } } protected void _writeQuotedAndEscaped(String text, char q, char esc, int i) throws JacksonException { final int[] escCodes = _outputEscapes; final int escLen = escCodes.length; final char[] buf = _outputBuffer; _outputTail += i; final int len = text.length(); for (; i < len; ++i) { char c = text.charAt(i); if (c < escLen) { int escCode = escCodes[c]; if (escCode != 0) { // for escape control and double quotes, c will be 0 _appendCharacterEscape(c, escCode); continue; // for } } if (c == q) { // double up if (_outputTail >= _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = _cfgQuoteCharEscapeChar; } else if (c == esc) { // double up if (_outputTail >= _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = _cfgControlCharEscapeChar; } if (_outputTail >= _outputEnd) { _flushBuffer(); } buf[_outputTail++] = c; } if (_outputTail >= _outputEnd) { _flushBuffer(); } buf[_outputTail++] = q; } private final void _writeLongQuotedAndEscaped(String text, char esc) throws JacksonException { final int[] escCodes = _outputEscapes; final int escLen = escCodes.length; final int len = text.length(); // NOTE: caller should guarantee quote char is valid (not -1) at this point: final char q = (char) _cfgQuoteCharacter; // 23-Sep-2020, tatu: Why was this defined but not used? Commented out in 2.11.3 // final char quoteEscape = _cfgEscapeQuoteCharWithEscapeChar ? esc : q; for (int i = 0; i < len; ++i) { if (_outputTail >= _outputEnd) { _flushBuffer(); } char c = text.charAt(i); if (c < escLen) { int escCode = escCodes[c]; if (escCode != 0) { // for escape control and double quotes, c will be 0 _appendCharacterEscape(c, escCode); continue; // for } } if (c == q) { // double up _outputBuffer[_outputTail++] = _cfgQuoteCharEscapeChar; if (_outputTail >= _outputEnd) { _flushBuffer(); } } else if (c == esc) { // double up _outputBuffer[_outputTail++] = _cfgControlCharEscapeChar; if (_outputTail >= _outputEnd) { _flushBuffer(); } } _outputBuffer[_outputTail++] = c; } if (_outputTail >= _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = q; } /* /********************************************************************** /* Writer API, state changes /********************************************************************** */ public void flush(boolean flushStream) throws IOException { _flushBuffer(); if (flushStream) { _out.flush(); } } public void close(boolean autoClose, boolean flushStream) throws IOException { // May need to remove the linefeed appended after the last row written // (if not yet done) if (!CsvWriteFeature.WRITE_LINEFEED_AFTER_LAST_ROW.enabledIn(_csvFeatures)) { _removeTrailingLF(); } try { _flushBuffer(); } finally { if (autoClose) { _out.close(); } else if (flushStream) { // If we can't close it, we should at least flush _out.flush(); } // Internal buffer(s) generator has can now be released as well _releaseBuffers(); } } private void _removeTrailingLF() throws IOException { if (!_trailingLFRemoved) { _trailingLFRemoved = true; // Remove trailing LF if (but only if) it appears to be in output // buffer (may not be possible if `flush()` has been called) _outputTail = Math.max(0, _outputTail - _cfgLineSeparatorLength); } } /* /********************************************************************** /* Internal methods /********************************************************************** */ /** * Helper method that determines whether given String is likely * to require quoting; check tries to optimize for speed. */ protected boolean _mayNeedQuotes(String value, int length, int columnIndex) { // 21-Mar-2014, tatu: If quoting disabled, don't quote if (_cfgQuoteCharacter < 0) { return false; } // [dataformats-text#210]: check for leading/trailing whitespace if (_cfgQuoteLeadingTrailingWhitespace && length > 0) { char first = value.charAt(0); char last = value.charAt(length - 1); if (first <= ' ' || last <= ' ') { return true; } } // may skip checks unless we want exact checking if (_cfgOptimalQuoting) { // 31-Dec-2014, tatu: Comment lines start with # so quote if starts with # // 28-May-2021, tatu: As per [dataformats-text#270] only check if first column if (_cfgAllowsComments && (columnIndex == 0) && (length > 0) && (value.charAt(0) == '#')) { return true; } if (_cfgEscapeCharacter > 0) { return _needsQuotingStrict(value, _cfgEscapeCharacter); } return _needsQuotingStrict(value); } if (length > _cfgMaxQuoteCheckChars) { return true; } if (_cfgEscapeCharacter > 0) { return _needsQuotingLoose(value, _cfgEscapeCharacter); } if (_cfgAlwaysQuoteEmptyStrings && length == 0) { return true; } return _needsQuotingLoose(value); } /** * @since 2.4 */ protected final boolean _needsQuotingLoose(String value) { char esc1 = _cfgQuoteCharEscapeChar; char esc2 = _cfgControlCharEscapeChar; for (int i = 0, len = value.length(); i < len; ++i) { char c = value.charAt(i); if ((c < _cfgMinSafeChar) || (c == esc1) || (c == esc2)) { return true; } } return false; } protected final boolean _needsQuotingLoose(String value, int esc) { for (int i = 0, len = value.length(); i < len; ++i) { int ch = value.charAt(i); if ((ch < _cfgMinSafeChar) || (ch == esc)) { return true; } } return false; } protected boolean _needsQuotingStrict(String value) { final int minSafe = _cfgMinSafeChar; final int[] escCodes = _outputEscapes; final int escLen = escCodes.length; // 23-Sep-2020, tatu: [dataformats-text#217] Must also ensure line separator // leads to quoting // 17-Dec-2025, tatu: [dataformats-text#479] Must check for ALL line separators // (LF, CR) per RFC 4180, not just the configured schema line separator. // NOTE: escCodes is empty by default (unless custom CharacterEscapes provided), // so we cannot rely on `escCodes[c] != 0` check to catch newlines - we must // check for them explicitly. final int lfFirst = (_cfgLineSeparatorLength == 0) ? 0 : _cfgLineSeparator[0]; for (int i = 0, len = value.length(); i < len; ++i) { int c = value.charAt(i); if (c < minSafe) { if (c == _cfgColumnSeparator || c == _cfgQuoteCharacter || (c < escLen && escCodes[c] != 0) || (c == lfFirst) // Per RFC 4180: must quote if contains LF or CR || (c == '\n') || (c == '\r')) { return true; } } } return false; } protected boolean _needsQuotingStrict(String value, int esc) { final int minSafe = _cfgMinSafeChar; final int[] escCodes = _outputEscapes; final int escLen = escCodes.length; // 23-Sep-2020, tatu: [dataformats-text#217] Must also ensure line separator // leads to quoting // 17-Dec-2025, tatu: [dataformats-text#479] Must check for ALL line separators // (LF, CR) per RFC 4180, not just the configured schema line separator. // NOTE: escCodes is empty by default (unless custom CharacterEscapes provided), // so we cannot rely on `escCodes[c] != 0` check to catch newlines - we must // check for them explicitly. final int lfFirst = (_cfgLineSeparatorLength == 0) ? 0 : _cfgLineSeparator[0]; for (int i = 0, len = value.length(); i < len; ++i) { int c = value.charAt(i); if (c < minSafe) { if (c == _cfgColumnSeparator || c == _cfgQuoteCharacter || (c < escLen && escCodes[c] != 0) || (c == lfFirst) // Per RFC 4180: must quote if contains LF or CR || (c == '\n') || (c == '\r')) { return true; } } else if (c == esc) { return true; } } return false; } protected void _buffer(int index, BufferedValue v) { _lastBuffered = Math.max(_lastBuffered, index); if (index >= _buffered.length) { _buffered = Arrays.copyOf(_buffered, Math.max(index+1, _columnCount)); } _buffered[index] = v; } protected void _flushBuffer() throws JacksonException { if (_outputTail > 0) { _charsWritten += _outputTail; try { _out.write(_outputBuffer, 0, _outputTail); } catch (IOException e) { throw _wrapIOFailure(e); } _outputTail = 0; } } public void _releaseBuffers() { char[] buf = _outputBuffer; if (buf != null && _bufferRecyclable) { _outputBuffer = null; _ioContext.releaseConcatBuffer(buf); } } /** * Method called to append escape sequence for given character, at the * end of standard output buffer; or if not possible, write out directly. */ private void _appendCharacterEscape(char ch, int escCode) throws JacksonException { if (escCode >= 0) { // \\N (2 char) if ((_outputTail + 2) > _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = _cfgControlCharEscapeChar; _outputBuffer[_outputTail++] = (char) escCode; return; } if ((_outputTail + 5) >= _outputEnd) { _flushBuffer(); } int ptr = _outputTail; char[] buf = _outputBuffer; buf[ptr++] = '\\'; buf[ptr++] = 'u'; // We know it's a control char, so only the last 2 chars are non-0 if (ch > 0xFF) { // beyond 8 bytes int hi = (ch >> 8) & 0xFF; buf[ptr++] = HEX_CHARS[hi >> 4]; buf[ptr++] = HEX_CHARS[hi & 0xF]; ch &= 0xFF; } else { buf[ptr++] = '0'; buf[ptr++] = '0'; } buf[ptr++] = HEX_CHARS[ch >> 4]; buf[ptr++] = HEX_CHARS[ch & 0xF]; _outputTail = ptr; return; } // @since 3.0: defined by basic JsonParser/JsonGenerator but since we are // not extending need to copy here protected JacksonException _wrapIOFailure(IOException e) { return JacksonIOException.construct(e); } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvParserBootstrapper.java ================================================ package tools.jackson.dataformat.csv.impl; import java.io.*; import tools.jackson.core.*; import tools.jackson.core.exc.JacksonIOException; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.MergedStream; import tools.jackson.core.io.UTF32Reader; import tools.jackson.dataformat.csv.CsvParser; import tools.jackson.dataformat.csv.CsvSchema; /** * This class is used to determine the encoding of byte stream * that is to contain CSV document. * Since there is no real specification for how this should work * with CSV, it will be based on rules used with JSON (which themselves * are similar to those used with XML); main points are to check for * BOM first, then look for multi-byted fixed-length encodings * (UTF-16, UTF-32). And finally, if neither found, must decide * between most likely alternatives, UTF-8 and Latin-1. */ public final class CsvParserBootstrapper { final static byte UTF8_BOM_1 = (byte) 0xEF; final static byte UTF8_BOM_2 = (byte) 0xBB; final static byte UTF8_BOM_3 = (byte) 0xBF; /* /********************************************************************** /* Configuration /********************************************************************** */ protected final IOContext _context; /* /********************************************************************** /* Input buffering /********************************************************************** */ protected final InputStream _in; protected final byte[] _inputBuffer; private int _inputPtr; private int _inputEnd; /* /********************************************************************** /* Input location /********************************************************************** */ /** * Current number of input units (bytes or chars) that were processed in * previous blocks, * before contents of current input buffer. *

    * Note: includes possible BOMs, if those were part of the input. */ protected int _inputProcessed; /* /********************************************************************** /* Data gathered /********************************************************************** */ protected boolean _bigEndian = true; protected int _bytesPerChar = 0; // 0 means "dunno yet" /* /********************************************************************** /* Life-cycle /********************************************************************** */ public CsvParserBootstrapper(IOContext ctxt, InputStream in) { _context = ctxt; _in = in; _inputBuffer = ctxt.allocReadIOBuffer(); _inputEnd = _inputPtr = 0; _inputProcessed = 0; } public CsvParserBootstrapper(IOContext ctxt, byte[] inputBuffer, int inputStart, int inputLen) { _context = ctxt; _in = null; _inputBuffer = inputBuffer; _inputPtr = inputStart; _inputEnd = (inputStart + inputLen); // Need to offset this for correct location info _inputProcessed = -inputStart; } /* /********************************************************************** /* Public API /********************************************************************** */ public CsvParser constructParser(ObjectReadContext readCtxt, int parserFeatures, int csvFeatures, CsvSchema schema) throws JacksonException { boolean foundEncoding = false; // First things first: BOM handling if (ensureLoaded(4)) { int quad = (_inputBuffer[_inputPtr] << 24) | ((_inputBuffer[_inputPtr+1] & 0xFF) << 16) | ((_inputBuffer[_inputPtr+2] & 0xFF) << 8) | (_inputBuffer[_inputPtr+3] & 0xFF); if (handleBOM(quad)) { foundEncoding = true; } else { /* If no BOM, let's see if it's a fixed-width multi-byte * (since we can be fairly certain no CSV document should * start with null bytes otherwise...) */ // UTF-32? if (checkUTF32(quad)) { foundEncoding = true; } else if (checkUTF16(quad >>> 16)) { foundEncoding = true; } } } else if (ensureLoaded(2)) { int i16 = ((_inputBuffer[_inputPtr] & 0xFF) << 8) | (_inputBuffer[_inputPtr+1] & 0xFF); if (checkUTF16(i16)) { foundEncoding = true; } } JsonEncoding enc; /* Not found yet? As per specs, this means it must be UTF-8. */ if (!foundEncoding || _bytesPerChar == 1) { enc = JsonEncoding.UTF8; } else if (_bytesPerChar == 2) { enc = _bigEndian ? JsonEncoding.UTF16_BE : JsonEncoding.UTF16_LE; } else if (_bytesPerChar == 4) { enc = _bigEndian ? JsonEncoding.UTF32_BE : JsonEncoding.UTF32_LE; } else { throw new RuntimeException("Internal error"); // should never get here } _context.setEncoding(enc); final boolean autoClose = _context.isResourceManaged() || StreamReadFeature.AUTO_CLOSE_SOURCE.enabledIn(parserFeatures); return new CsvParser(readCtxt, _context, parserFeatures, csvFeatures, schema, _createReader(enc, autoClose)); } @SuppressWarnings("resource") private Reader _createReader(JsonEncoding enc, boolean autoClose) throws JacksonException { switch (enc) { case UTF32_BE: case UTF32_LE: return new UTF32Reader(_context, _in, autoClose, _inputBuffer, _inputPtr, _inputEnd, enc.isBigEndian()); case UTF16_BE: case UTF16_LE: { // First: do we have a Stream? If not, need to create one: InputStream in = _in; if (in == null) { in = new ByteArrayInputStream(_inputBuffer, _inputPtr, _inputEnd); } else { // Also, if we have any read but unused input (usually true), // need to merge that input in: if (_inputPtr < _inputEnd) { in = new MergedStream(_context, in, _inputBuffer, _inputPtr, _inputEnd); } } try { return new InputStreamReader(in, enc.getJavaName()); } catch (IOException e) { throw _wrapIOFailure(e); } } case UTF8: // Important: do not pass context, if we got byte[], nothing to release return new UTF8Reader((_in == null) ? null : _context, _in, autoClose, _inputBuffer, _inputPtr, _inputEnd - _inputPtr); default: throw new RuntimeException(); } } /* /********************************************************************** /* Internal methods, parsing /********************************************************************** */ /** * @return True if a BOM was successfully found, and encoding * thereby recognized. */ private boolean handleBOM(int quad) throws JacksonException { // Handling of (usually) optional BOM (required for // multi-byte formats); first 32-bit charsets: switch (quad) { case 0x0000FEFF: _bigEndian = true; _inputPtr += 4; _bytesPerChar = 4; return true; case 0xFFFE0000: // UCS-4, LE? _inputPtr += 4; _bytesPerChar = 4; _bigEndian = false; return true; case 0x0000FFFE: // UCS-4, in-order... reportWeirdUCS4("2143"); // throws exception case 0xFEFF0000: // UCS-4, in-order... reportWeirdUCS4("3412"); // throws exception } // Ok, if not, how about 16-bit encoding BOMs? int msw = quad >>> 16; if (msw == 0xFEFF) { // UTF-16, BE _inputPtr += 2; _bytesPerChar = 2; _bigEndian = true; return true; } if (msw == 0xFFFE) { // UTF-16, LE _inputPtr += 2; _bytesPerChar = 2; _bigEndian = false; return true; } // And if not, then UTF-8 BOM? if ((quad >>> 8) == 0xEFBBBF) { // UTF-8 _inputPtr += 3; _bytesPerChar = 1; _bigEndian = true; // doesn't really matter return true; } return false; } private boolean checkUTF32(int quad) throws JacksonException { /* Handling of (usually) optional BOM (required for * multi-byte formats); first 32-bit charsets: */ if ((quad >> 8) == 0) { // 0x000000?? -> UTF32-BE _bigEndian = true; } else if ((quad & 0x00FFFFFF) == 0) { // 0x??000000 -> UTF32-LE _bigEndian = false; } else if ((quad & ~0x00FF0000) == 0) { // 0x00??0000 -> UTF32-in-order reportWeirdUCS4("3412"); } else if ((quad & ~0x0000FF00) == 0) { // 0x0000??00 -> UTF32-in-order reportWeirdUCS4("2143"); } else { // Can not be valid UTF-32 encoded JSON... return false; } // Not BOM (just regular content), nothing to skip past: //_inputPtr += 4; _bytesPerChar = 4; return true; } private boolean checkUTF16(int i16) { if ((i16 & 0xFF00) == 0) { // UTF-16BE _bigEndian = true; } else if ((i16 & 0x00FF) == 0) { // UTF-16LE _bigEndian = false; } else { // nope, not UTF-16 return false; } // Not BOM (just regular content), nothing to skip past: //_inputPtr += 2; _bytesPerChar = 2; return true; } /* /********************************************************************** /* Internal methods, problem reporting /********************************************************************** */ private void reportWeirdUCS4(String type) throws JacksonException { throw _createIOFailure("Unsupported UCS-4 endianness ("+type+") detected"); } /* /********************************************************************** /* Internal methods, raw input access /********************************************************************** */ protected boolean ensureLoaded(int minimum) throws JacksonException { /* Let's assume here buffer has enough room -- this will always * be true for the limited used this method gets */ int gotten = (_inputEnd - _inputPtr); while (gotten < minimum) { int count; if (_in == null) { // block source count = -1; } else { try { count = _in.read(_inputBuffer, _inputEnd, _inputBuffer.length - _inputEnd); } catch (IOException e) { throw _wrapIOFailure(e); } } if (count < 1) { return false; } _inputEnd += count; gotten += count; } return true; } /* /********************************************************************** /* Internal methods, exception handling /********************************************************************** */ private static JacksonException _createIOFailure(String msg) throws JacksonException { // 12-Jan-2021, tatu: Couple of alternatives, but since this is before // actual parser created, seems best to simply fake this was "true" // IOException return _wrapIOFailure(new IOException(msg)); } private static JacksonException _wrapIOFailure(IOException e) throws JacksonException { return JacksonIOException.construct(e); } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/UTF8Reader.java ================================================ package tools.jackson.dataformat.csv.impl; import java.io.*; import java.util.Objects; import tools.jackson.core.io.IOContext; /** * Optimized Reader that reads UTF-8 encoded content from an input stream. * In addition to doing (hopefully) optimal conversion, it can also take * array of "pre-read" (leftover) bytes; this is necessary when preliminary * stream/reader is trying to figure out underlying character encoding. */ public final class UTF8Reader extends Reader { /** * IO context to use for returning input buffer, iff * buffer is to be recycled when input ends. */ private final IOContext _ioContext; private InputStream _inputSource; private final boolean _autoClose; private byte[] _inputBuffer; /** * Flag set to indicate {@code inputBuffer} is read-only, and its * content should not be modified. This is the case when caller * has passed in a buffer of contents already read, instead of Jackson * allocating read buffer. * * @since 2.19 */ private final boolean _inputBufferReadOnly; /** * Pointer to the next available byte (if any), iff less than * mByteBufferEnd */ private int _inputPtr; /** * Pointed to the end marker, that is, position one after the last * valid available byte. */ private int _inputEnd; /** * Decoded first character of a surrogate pair, if one needs to be buffered */ private int _surrogate = -1; /** * Total read character count; used for error reporting purposes */ private int _charCount = 0; /** * Total read byte count; used for error reporting purposes */ private int _byteCount = 0; /** * Flag that is set when a pending decode error has been detected; needed * to properly handle deferred reporting. */ private int _decodeErrorOffset; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public UTF8Reader(IOContext ctxt, InputStream in, boolean autoClose, byte[] buf, int ptr, int len) { super((in == null) ? buf : in); _ioContext = ctxt; _inputSource = in; _inputBuffer = buf; _inputPtr = ptr; _inputEnd = ptr+len; _autoClose = autoClose; // Unmodifiable if there is no stream to actually read from // (ideally caller should pass explicitly) _inputBufferReadOnly = (in == null); } public UTF8Reader(IOContext ctxt, byte[] buf, int ptr, int len) { super(new Object()); _ioContext = ctxt; _inputSource = null; _inputBuffer = buf; _inputPtr = ptr; _inputEnd = ptr+len; _autoClose = true; // This is the case when we have a buffer of contents already read _inputBufferReadOnly = true; } public UTF8Reader(IOContext ctxt, InputStream in, boolean autoClose) { super(in); _ioContext = ctxt; _inputSource = in; _inputBuffer = ctxt.allocReadIOBuffer(); _inputPtr = 0; _inputEnd = 0; _autoClose = autoClose; // Buffer allocated above, modifiable as needed _inputBufferReadOnly = false; } /* /********************************************************************** /* Reader API /********************************************************************** */ @Override public void close() throws IOException { InputStream in = _inputSource; if (in != null) { _inputSource = null; if (_autoClose) { in.close(); } } freeBuffers(); } private char[] _tmpBuffer = null; /** * Although this method is implemented by the base class, AND it should * never be called by parser code, let's still implement it bit more * efficiently just in case */ @Override public int read() throws IOException { if (_tmpBuffer == null) { _tmpBuffer = new char[1]; } if (read(_tmpBuffer, 0, 1) < 1) { return -1; } return _tmpBuffer[0]; } @Override public int read(char[] cbuf) throws IOException { return read(cbuf, 0, cbuf.length); } @Override public int read(final char[] cbuf, final int start, int len) throws IOException { // validate input parameters Objects.requireNonNull(cbuf, "cbuf == null"); Objects.checkFromIndexSize(start, len, cbuf.length); // Already EOF? if (_inputBuffer == null) { return -1; } else if (len == 0) { // if len=0, we don't need to return anything return 0; } len += start; int outPtr = start; // Ok, first; do we have a surrogate from last round? if (_surrogate >= 0) { cbuf[outPtr++] = (char) _surrogate; _surrogate = -1; // No need to load more, already got one char // 15-Sep-2022, tatu: But need to avoid having empty buffer if (_inputPtr >= _inputEnd) { _charCount += 1; return 1; } // otherwise let things work the way they should } else { if (_decodeErrorOffset != 0) { reportDeferredInvalid(); } // To prevent unnecessary blocking (esp. with network streams), // we'll only require decoding of a single char int left = (_inputEnd - _inputPtr); // So; only need to load more if we can't provide at least one more character. // We need not do thorough check here, but let's check the common cases here: // either completely empty buffer (left == 0), or one with less than max. byte // count for a single char, and starting of a multi-byte encoding (this leaves // possibility of a 2/3-byte char that is still fully accessible... // but that can be checked by the load method) if (left < 4) { // Need to load more? if (left < 1 || _inputBuffer[_inputPtr] < 0) { if (!loadMore(left)) { // (legal) EOF? return -1; } } } } final byte[] buf = _inputBuffer; int inPtr = _inputPtr; final int inBufLen = _inputEnd; main_loop: while (outPtr < len) { // At this point we have at least one byte available int c = buf[inPtr++]; // Let's first do the quickie loop for common case; 7-bit ASCII if (c >= 0) { // ASCII? can probably loop, then cbuf[outPtr++] = (char) c; // ok since MSB is never on // Ok, how many such chars could we safely process without overruns? // (will combine 2 in-loop comparisons into just one) int outMax = (len - outPtr); // max output int inMax = (inBufLen - inPtr); // max input int inEnd = inPtr + ((inMax < outMax) ? inMax : outMax); ascii_loop: while (true) { if (inPtr >= inEnd) { break main_loop; } c = buf[inPtr++]; if (c < 0) { // or multi-byte break ascii_loop; } cbuf[outPtr++] = (char) c; } } int needed; // Ok; if we end here, we got multi-byte combination if ((c & 0xE0) == 0xC0) { // 2 bytes (0x0080 - 0x07FF), from 110xxxxx c = (c & 0x1F); needed = 1; } else if ((c & 0xF0) == 0xE0) { // 3 bytes (0x0800 - 0xFFFF), from 1110xxxx c = (c & 0x0F); needed = 2; } else if ((c & 0xF8) == 0xF0) { // 4 bytes from 11110xxx (double-char w/ surrogates and all) c = (c & 0x0F); needed = 3; } else { reportInvalidInitial(c & 0xFF, outPtr-start); // 25-Aug-2016, tatu: As per [dataformat-csv#132], only returns // if we are ok to return already decoded content and defer error reporting --inPtr; break main_loop; } /* Do we have enough bytes? If not, let's just push back the * byte and leave, since we have already gotten at least one * char decoded. This way we will only block (with read from * input stream) when absolutely necessary. */ if ((inBufLen - inPtr) < needed) { --inPtr; break main_loop; } int d = buf[inPtr]; if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start, 2); break main_loop; } ++inPtr; c = (c << 6) | (d & 0x3F); if (needed > 1) { // needed == 1 means 2 bytes total d = buf[inPtr]; // 3rd byte if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start, 3); break main_loop; } ++inPtr; c = (c << 6) | (d & 0x3F); if (needed > 2) { // 4 bytes? (need surrogates) d = buf[inPtr]; if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start, 4); break main_loop; } ++inPtr; c = (c << 6) | (d & 0x3F); /* Ugh. Need to mess with surrogates. Ok; let's inline them * there, then, if there's room: if only room for one, * need to save the surrogate for the rainy day... */ c -= 0x10000; // to normalize it starting with 0x0 cbuf[outPtr++] = (char) (0xD800 + (c >> 10)); // hmmh. can this ever be 0? (not legal, at least?) c = (0xDC00 | (c & 0x03FF)); // Room for second part? if (outPtr >= len) { // nope _surrogate = c; break main_loop; } // sure, let's fall back to normal processing: } // Otherwise, should we check that 3-byte chars are // legal ones (should not expand to surrogates? // For now, let's not... /* else { if (c >= 0xD800 && c < 0xE000) { reportInvalid(c, outPtr-start, "(a surrogate character) "); } } */ } cbuf[outPtr++] = (char) c; if (inPtr >= inBufLen) { break main_loop; } } _inputPtr = inPtr; final int actualLen = outPtr - start; _charCount += actualLen; return actualLen; } /* /********************************************************************** /* Internal/package methods: /********************************************************************** */ protected final InputStream getStream() { return _inputSource; } /** * Method for reading as many bytes from the underlying stream as possible * (that fit in the buffer), to the beginning of the buffer. */ protected final int readBytes() throws IOException { _inputPtr = 0; _inputEnd = 0; if (_inputSource != null) { int count = _inputSource.read(_inputBuffer, 0, _inputBuffer.length); if (count > 0) { _inputEnd = count; } return count; } return -1; } /** * Method for reading as many bytes from the underlying stream as possible * (that fit in the buffer considering offset), to the specified offset. * * @return Number of bytes read, if any; -1 to indicate none available * (that is, end of input) */ protected final int readBytesAt(int offset) throws IOException { // shouldn't modify mBytePtr, assumed to be 'offset' if (_inputSource != null) { int count = _inputSource.read(_inputBuffer, offset, _inputBuffer.length - offset); if (count > 0) { _inputEnd += count; } return count; } return -1; } /** * This method should be called along with (or instead of) normal * close. After calling this method, no further reads should be tried. * Method will try to recycle read buffers (if any). */ public final void freeBuffers() { if (_ioContext != null) { byte[] buf = _inputBuffer; if (buf != null) { _inputBuffer = null; _ioContext.releaseReadIOBuffer(buf); } } } /* /********************************************************************** /* Internal methods /********************************************************************** */ /** * @param available Number of "unused" bytes in the input buffer * * @return True, if enough bytes were read to allow decoding of at least * one full character; false if EOF was encountered instead. */ private boolean loadMore(int available) throws IOException { _byteCount += (_inputEnd - available); if (available > 0) { // Should we move bytes to the beginning of buffer? if (_inputPtr > 0) { // Can only do so if buffer mutable if (!_inputBufferReadOnly) { for (int i = 0; i < available; ++i) { _inputBuffer[i] = _inputBuffer[_inputPtr+i]; } _inputPtr = 0; _inputEnd = available; } } } else { // Ok; here we can actually reasonably expect an EOF, so let's do a separate read right away: int count = readBytes(); if (count < 1) { freeBuffers(); // to help GC? if (count < 0) { // -1 return false; } // 0 count is no good; let's err out reportStrangeStream(); } } // We now have at least one byte... and that allows us to // calculate exactly how many bytes we need! @SuppressWarnings("cast") int c = (int) _inputBuffer[_inputPtr]; if (c >= 0) { // single byte (ascii) char... cool, can return return true; } // Ok, a multi-byte char, let's check how many bytes we'll need: int needed; if ((c & 0xE0) == 0xC0) { // 2 bytes (0x0080 - 0x07FF) needed = 2; } else if ((c & 0xF0) == 0xE0) { // 3 bytes (0x0800 - 0xFFFF) needed = 3; } else if ((c & 0xF8) == 0xF0) { // 4 bytes; double-char BS, with surrogates and all... needed = 4; } else { // 25-Aug-2016, tatu: As per [dataformat-csv#132], let's not throw // exception from here but let caller handle return true; } // And then we'll just need to load up to that many bytes; // if an EOF is hit, that'll be an error. But we need not do // actual decoding here, just load enough bytes. while ((_inputPtr + needed) > _inputEnd) { int count = readBytesAt(_inputEnd); if (count < 1) { if (count < 0) { // -1, EOF... no good! freeBuffers(); reportUnexpectedEOF(_inputEnd - _inputPtr, needed); } // 0 count is no good; let's err out reportStrangeStream(); } } return true; } protected void reportBounds(char[] cbuf, int start, int len) throws IOException { throw new ArrayIndexOutOfBoundsException("read(buf,"+start+","+len+"), cbuf["+cbuf.length+"]"); } protected void reportStrangeStream() throws IOException { throw new IOException("Strange I/O stream, returned 0 bytes on read"); } protected void reportInvalidInitial(int mask, int outputDecoded) throws IOException { // 25-Aug-2016, tatu: As per [dataformat-csv#132] defer error reporting if // (but only if) some content has been decoded successfully if (_decodeErrorOffset == 0) { if (outputDecoded > 0) { _decodeErrorOffset = 1; return; } } // input (byte) ptr has been advanced by one, by now: int bytePos = _byteCount + _inputPtr - 1; int charPos = _charCount + outputDecoded + 1; throw new CharConversionException(String.format( "Invalid UTF-8 start byte 0x%s (at char #%d, byte #%d): check content encoding, does not look like UTF-8", Integer.toHexString(mask), charPos, bytePos)); } protected void reportInvalidOther(int mask, int outputDecoded, int errorPosition) throws IOException { // 25-Aug-2016, tatu: As per [dataformat-csv#132] defer error reporting if // (but only if) some content has been decoded successfully if (_decodeErrorOffset == 0) { if (outputDecoded > 0) { _decodeErrorOffset = errorPosition; return; } } int bytePos = _byteCount + _inputPtr - 1; int charPos = _charCount + outputDecoded + 1; throw new CharConversionException(String.format( "Invalid UTF-8 middle byte 0x%s (at char #%d, byte #%d): check content encoding, does not look like UTF-8", Integer.toHexString(mask), charPos, bytePos)); } protected void reportDeferredInvalid() throws IOException { int ch = _inputBuffer[_inputPtr] & 0xFF; if (_decodeErrorOffset == 1) { reportInvalidInitial(ch, 0); } else { reportInvalidOther(ch, 0, _decodeErrorOffset); } } protected void reportUnexpectedEOF(int gotBytes, int needed) throws IOException { int bytePos = _byteCount + gotBytes; int charPos = _charCount; throw new CharConversionException(String.format( "Unexpected EOF in the middle of a multi-byte UTF-8 character: got %d, needed %d, at char #%d, byte #%d)", gotBytes, needed, charPos, bytePos)); } } ================================================ FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/UTF8Writer.java ================================================ package tools.jackson.dataformat.csv.impl; import java.io.*; import tools.jackson.core.io.IOContext; /** * Efficient UTF-8 backed writer. *

    * Note: original implementation based on writer from Jackson core package; * modified slightly, copied to reduce dependency to impl details. */ public final class UTF8Writer extends Writer { final private static int SURR1_FIRST = 0xD800; final private static int SURR1_LAST = 0xDBFF; final private static int SURR2_FIRST = 0xDC00; final private static int SURR2_LAST = 0xDFFF; final private IOContext _context; private OutputStream _out; private byte[] _outBuffer; final private int _outBufferEnd; private int _outPtr; /** * When outputting chars from BMP, surrogate pairs need to be coalesced. * To do this, both pairs must be known first; and since it is possible * pairs may be split, we need temporary storage for the first half */ private int _surrogate = 0; public UTF8Writer(IOContext ctxt, OutputStream out) { _context = ctxt; _out = out; _outBuffer = ctxt.allocWriteEncodingBuffer(); // Max. expansion for a single char (in unmodified UTF-8) is 4 bytes (or 3 depending // on how you view it -- 4 when recombining surrogate pairs) _outBufferEnd = _outBuffer.length - 4; _outPtr = 0; } @Override public Writer append(char c) throws IOException { write(c); return this; } @Override public void close() throws IOException { if (_out != null) { if (_outPtr > 0) { _out.write(_outBuffer, 0, _outPtr); _outPtr = 0; } OutputStream out = _out; _out = null; byte[] buf = _outBuffer; if (buf != null) { _outBuffer = null; _context.releaseWriteEncodingBuffer(buf); } out.close(); /* Let's 'flush' orphan surrogate, no matter what; but only * after cleanly closing everything else. */ int code = _surrogate; _surrogate = 0; if (code > 0) { throwIllegal(code); } } } @Override public void flush() throws IOException { if (_out != null) { if (_outPtr > 0) { _out.write(_outBuffer, 0, _outPtr); _outPtr = 0; } _out.flush(); } } @Override public void write(char[] cbuf) throws IOException { write(cbuf, 0, cbuf.length); } @Override public void write(char[] cbuf, int off, int len) throws IOException { if (len < 2) { if (len == 1) { write(cbuf[off]); } return; } // First: do we have a leftover surrogate to deal with? if (_surrogate > 0) { char second = cbuf[off++]; --len; write(convertSurrogate(second)); // will have at least one more char } int outPtr = _outPtr; byte[] outBuf = _outBuffer; int outBufLast = _outBufferEnd; // has 4 'spare' bytes // All right; can just loop it nice and easy now: len += off; // len will now be the end of input buffer output_loop: for (; off < len; ) { /* First, let's ensure we can output at least 4 bytes * (longest UTF-8 encoded codepoint): */ if (outPtr >= outBufLast) { _out.write(outBuf, 0, outPtr); outPtr = 0; } int c = cbuf[off++]; // And then see if we have an ASCII char: if (c < 0x80) { // If so, can do a tight inner loop: outBuf[outPtr++] = (byte)c; // Let's calc how many ascii chars we can copy at most: int maxInCount = (len - off); int maxOutCount = (outBufLast - outPtr); if (maxInCount > maxOutCount) { maxInCount = maxOutCount; } maxInCount += off; ascii_loop: while (true) { if (off >= maxInCount) { // done with max. ascii seq continue output_loop; } c = cbuf[off++]; if (c >= 0x80) { break ascii_loop; } outBuf[outPtr++] = (byte) c; } } // Nope, multi-byte: if (c < 0x800) { // 2-byte outBuf[outPtr++] = (byte) (0xc0 | (c >> 6)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); } else { // 3 or 4 bytes // Surrogates? if (c < SURR1_FIRST || c > SURR2_LAST) { outBuf[outPtr++] = (byte) (0xe0 | (c >> 12)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); continue; } // Yup, a surrogate: if (c > SURR1_LAST) { // must be from first range _outPtr = outPtr; throwIllegal(c); } _surrogate = c; // and if so, followed by another from next range if (off >= len) { // unless we hit the end? break; } c = convertSurrogate(cbuf[off++]); if (c > 0x10FFFF) { // illegal in JSON as well as in XML _outPtr = outPtr; throwIllegal(c); } outBuf[outPtr++] = (byte) (0xf0 | (c >> 18)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 12) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); } } _outPtr = outPtr; } @Override public void write(int c) throws IOException { // First; do we have a left over surrogate? if (_surrogate > 0) { c = convertSurrogate(c); // If not, do we start with a surrogate? } else if (c >= SURR1_FIRST && c <= SURR2_LAST) { // Illegal to get second part without first: if (c > SURR1_LAST) { throwIllegal(c); } // First part just needs to be held for now _surrogate = c; return; } if (_outPtr >= _outBufferEnd) { // let's require enough room, first _out.write(_outBuffer, 0, _outPtr); _outPtr = 0; } if (c < 0x80) { // ascii _outBuffer[_outPtr++] = (byte) c; } else { int ptr = _outPtr; if (c < 0x800) { // 2-byte _outBuffer[ptr++] = (byte) (0xc0 | (c >> 6)); _outBuffer[ptr++] = (byte) (0x80 | (c & 0x3f)); } else if (c <= 0xFFFF) { // 3 bytes _outBuffer[ptr++] = (byte) (0xe0 | (c >> 12)); _outBuffer[ptr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); _outBuffer[ptr++] = (byte) (0x80 | (c & 0x3f)); } else { // 4 bytes if (c > 0x10FFFF) { // illegal throwIllegal(c); } _outBuffer[ptr++] = (byte) (0xf0 | (c >> 18)); _outBuffer[ptr++] = (byte) (0x80 | ((c >> 12) & 0x3f)); _outBuffer[ptr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); _outBuffer[ptr++] = (byte) (0x80 | (c & 0x3f)); } _outPtr = ptr; } } @Override public void write(String str) throws IOException { write(str, 0, str.length()); } @Override public void write(String str, int off, int len) throws IOException { if (len < 2) { if (len == 1) { write(str.charAt(off)); } return; } // First: do we have a leftover surrogate to deal with? if (_surrogate > 0) { char second = str.charAt(off++); --len; write(convertSurrogate(second)); // will have at least one more char (case of 1 char was checked earlier on) } int outPtr = _outPtr; byte[] outBuf = _outBuffer; int outBufLast = _outBufferEnd; // has 4 'spare' bytes // All right; can just loop it nice and easy now: len += off; // len will now be the end of input buffer output_loop: for (; off < len; ) { /* First, let's ensure we can output at least 4 bytes * (longest UTF-8 encoded codepoint): */ if (outPtr >= outBufLast) { _out.write(outBuf, 0, outPtr); outPtr = 0; } int c = str.charAt(off++); // And then see if we have an Ascii char: if (c < 0x80) { // If so, can do a tight inner loop: outBuf[outPtr++] = (byte)c; // Let's calc how many ascii chars we can copy at most: int maxInCount = (len - off); int maxOutCount = (outBufLast - outPtr); if (maxInCount > maxOutCount) { maxInCount = maxOutCount; } maxInCount += off; ascii_loop: while (true) { if (off >= maxInCount) { // done with max. ascii seq continue output_loop; } c = str.charAt(off++); if (c >= 0x80) { break ascii_loop; } outBuf[outPtr++] = (byte) c; } } // Nope, multi-byte: if (c < 0x800) { // 2-byte outBuf[outPtr++] = (byte) (0xc0 | (c >> 6)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); } else { // 3 or 4 bytes // Surrogates? if (c < SURR1_FIRST || c > SURR2_LAST) { outBuf[outPtr++] = (byte) (0xe0 | (c >> 12)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); continue; } // Yup, a surrogate: if (c > SURR1_LAST) { // must be from first range _outPtr = outPtr; throwIllegal(c); } _surrogate = c; // and if so, followed by another from next range if (off >= len) { // unless we hit the end? break; } c = convertSurrogate(str.charAt(off++)); if (c > 0x10FFFF) { // illegal, as per RFC 4627 _outPtr = outPtr; throwIllegal(c); } outBuf[outPtr++] = (byte) (0xf0 | (c >> 18)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 12) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); } } _outPtr = outPtr; } /* /********************************************************** /* Internal methods /********************************************************** */ /** * Method called to calculate UTF code point, from a surrogate pair. */ private int convertSurrogate(int secondPart) throws IOException { int firstPart = _surrogate; _surrogate = 0; // Ok, then, is the second part valid? if (secondPart < SURR2_FIRST || secondPart > SURR2_LAST) { throw new IOException("Broken surrogate pair: first char 0x"+Integer.toHexString(firstPart)+", second 0x"+Integer.toHexString(secondPart)+"; illegal combination"); } return 0x10000 + ((firstPart - SURR1_FIRST) << 10) + (secondPart - SURR2_FIRST); } private void throwIllegal(int code) throws IOException { if (code > 0x10FFFF) { // over max? throw new IOException("Illegal character point (0x"+Integer.toHexString(code)+") to output; max is 0x10FFFF as per RFC 4627"); } if (code >= SURR1_FIRST) { if (code <= SURR1_LAST) { // Unmatched first part (closing without second part?) throw new IOException("Unmatched first part of surrogate pair (0x"+Integer.toHexString(code)+")"); } throw new IOException("Unmatched second part of surrogate pair (0x"+Integer.toHexString(code)+")"); } // should we ever get this? throw new IOException("Illegal character point (0x"+Integer.toHexString(code)+") to output"); } } ================================================ FILE: csv/src/main/resources/META-INF/LICENSE ================================================ This copy of Jackson JSON processor CSV module is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the specific rights regarding derivative works. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 ================================================ FILE: csv/src/main/resources/META-INF/NOTICE ================================================ # Jackson JSON processor Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers. ## Copyright Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) ## Licensing Jackson components are licensed under Apache (Software) License, version 2.0, as per accompanying LICENSE file. ## Credits A list of contributors may be found from CREDITS file, which is included in some artifacts (usually source distributions); but is always available from the source code management (SCM) system project uses. ================================================ FILE: csv/src/main/resources/META-INF/services/tools.jackson.core.TokenStreamFactory ================================================ tools.jackson.dataformat.csv.CsvFactory ================================================ FILE: csv/src/main/resources/META-INF/services/tools.jackson.databind.ObjectMapper ================================================ tools.jackson.dataformat.csv.CsvMapper ================================================ FILE: csv/src/test/java/module-info.java ================================================ // CSV unit test Module descriptor module tools.jackson.dataformat.csv { // Since we are not split from Main artifact, will not // need to depend on Main artifact -- but need its dependencies requires tools.jackson.core; requires tools.jackson.databind; // Additional test lib/framework dependencies requires org.assertj.core; requires org.junit.jupiter.api; requires org.junit.jupiter.params; // Further, need to open up some packages for JUnit et al opens tools.jackson.dataformat.csv; opens tools.jackson.dataformat.csv.deser; opens tools.jackson.dataformat.csv.filter; opens tools.jackson.dataformat.csv.fuzz; opens tools.jackson.dataformat.csv.limits; opens tools.jackson.dataformat.csv.schema; opens tools.jackson.dataformat.csv.ser; opens tools.jackson.dataformat.csv.ser.dos; opens tools.jackson.dataformat.csv.testutil; opens tools.jackson.dataformat.csv.testutil.failure; opens tools.jackson.dataformat.csv.tofix; } ================================================ FILE: csv/src/test/java/perf/BogusOutputStream.java ================================================ package perf; import java.io.IOException; import java.io.OutputStream; public class BogusOutputStream extends OutputStream { protected int _bytes; @Override public void write(byte[] buf) { write(buf, 0, buf.length); } @Override public void write(byte[] buf, int offset, int len) { _bytes += len; } @Override public void write(int b) throws IOException { _bytes++; } public int length() { return _bytes; } } ================================================ FILE: csv/src/test/java/perf/F5500Entry.java ================================================ package perf; import com.fasterxml.jackson.annotation.JsonProperty; /** * POJO representing data from form F-5500 */ public class F5500Entry { // 1 - 10 @JsonProperty("ACK_ID") public String ackId; @JsonProperty("SF_PLAN_YEAR_BEGIN_DATE") public String sfPlanYearBeginDate; @JsonProperty("SF_TAX_PRD") public String sfTaxPrd; @JsonProperty("SF_PLAN_ENTITY_CD") public String sfPlanEntityCD; @JsonProperty("SF_INITIAL_FILING_IND") public String sfInitialFilingInd; @JsonProperty("SF_AMENDED_IND") public String sfAmendedInd; @JsonProperty("SF_FINAL_FILING_IND") public String sfFinalFilingInd; @JsonProperty("SF_SHORT_PLAN_YR_IND") public String sfShortPlanYearInd; @JsonProperty("SF_5558_APPLICATION_FILED_IND") public String sf5558ApplicationFiledInd; @JsonProperty("SF_EXT_AUTOMATIC_IND") public String sfExtAutomaticInd; // 11 - 20 @JsonProperty("SF_DFVC_PROGRAM_IND") public String sfDFVCProgramInd; @JsonProperty("SF_EXT_SPECIAL_IND") public String sfExtSpecialInd; @JsonProperty("SF_EXT_SPECIAL_TEXT") public String sfExtSpecialText; @JsonProperty("SF_PLAN_NAME") public String sfPlanName; @JsonProperty("SF_PLAN_NUM") public long sfPlanNumber; @JsonProperty("SF_PLAN_EFF_DATE") public String sfPlanEffectiveDate; @JsonProperty("SF_SPONSOR_NAME") public String sfSponsorName; @JsonProperty("SF_SPONSOR_DFE_DBA_NAME") public String sfSponsorDFEDBAName; @JsonProperty("SF_SPONS_US_ADDRESS1") public String sfSponsorUSAddress1; @JsonProperty("SF_SPONS_US_ADDRESS2") public String sfSponsorUSAddress2; // 21 - 30 @JsonProperty("SF_SPONS_US_CITY") public String sfSponsorUSCity; @JsonProperty("SF_SPONS_US_STATE") public String sfSponsorUSState; @JsonProperty("SF_SPONS_US_ZIP") public String sfSponsorUSZip; @JsonProperty("SF_SPONS_FOREIGN_ADDRESS1") public String sfSponsorForeignAddress1; @JsonProperty("SF_SPONS_FOREIGN_ADDRESS2") public String sfSponsorForeignAddress2; @JsonProperty("SF_SPONS_FOREIGN_CITY") public String sfSponsorForeignCity; @JsonProperty("SF_SPONS_FOREIGN_PROV_STATE") public String sfSponsorForeignProvinceOrState; @JsonProperty("SF_SPONS_FOREIGN_CNTRY") public String sfSponsorForeignCountry; @JsonProperty("SF_SPONS_FOREIGN_POSTAL_CD") public String sfSponsorForeignPostalCD; @JsonProperty("SF_SPONS_EIN") public String sfSponsorEIN; // 31 - 40 @JsonProperty("SF_SPONS_PHONE_NUM") public String sfSponsorPhoneNumber; @JsonProperty("SF_BUSINESS_CODE") public String sfBusinessCode; @JsonProperty("SF_ADMIN_NAME") public String sfAdminName; @JsonProperty("SF_ADMIN_CARE_OF_NAME") public String sfAdminCareOfName; @JsonProperty("SF_ADMIN_US_ADDRESS1") public String sfAdminUSAddress1; @JsonProperty("SF_ADMIN_US_ADDRESS2") public String sfAdminUSAddress2; @JsonProperty("SF_ADMIN_US_CITY") public String sfAdminUSCity; @JsonProperty("SF_ADMIN_US_STATE") public String sfAdminUSState; @JsonProperty("SF_ADMIN_US_ZIP") public String sfAdminUSZip; @JsonProperty("SF_ADMIN_FOREIGN_ADDRESS1") public String sfAdminForeignAddress1; // 41-50 @JsonProperty("SF_ADMIN_FOREIGN_ADDRESS2") public String sfAdminForeignAddress2; @JsonProperty("SF_ADMIN_FOREIGN_CITY") public String sfAdminForeignCity; @JsonProperty("SF_ADMIN_FOREIGN_PROV_STATE") public String sfAdminForeignProvinceState; @JsonProperty("SF_ADMIN_FOREIGN_CNTRY") public String sfAdminForeignCountry; @JsonProperty("SF_ADMIN_FOREIGN_POSTAL_CD") public String sfAdminForeignPostalCD; @JsonProperty("SF_ADMIN_EIN") public String sfAdminEin; @JsonProperty("SF_ADMIN_PHONE_NUM") public String sfAdminPhoneNumber; @JsonProperty("SF_LAST_RPT_SPONS_NAME") public String sfLastRptSponsorName; @JsonProperty("SF_LAST_RPT_SPONS_EIN") public String sfLastRptSponsorEIN; @JsonProperty("SF_LAST_RPT_PLAN_NUM") public String sfLastRptPlanNumber; // 51-60 @JsonProperty("SF_TOT_PARTCP_BOY_CNT") public int sfTotalParcpBoyCount; @JsonProperty("SF_TOT_ACT_RTD_SEP_BENEF_CNT") public int sfTotalAccountRtdSepBenefCount; @JsonProperty("SF_PARTCP_ACCOUNT_BAL_CNT") public int sfPartcpAccountBalanceCount; @JsonProperty("SF_ELIGIBLE_ASSETS_IND") public String sfEligibleAssetsInd; @JsonProperty("SF_IQPA_WAIVER_IND") public String sfIQPAWaiverInd; @JsonProperty("SF_TOT_ASSETS_BOY_AMT") public int sfTotalAssetsBoyAmount; @JsonProperty("SF_TOT_LIABILITIES_BOY_AMT") public int sfTotalLiabilitiesBoyAmount; @JsonProperty("SF_NET_ASSETS_BOY_AMT") public int sfNetAssetsBoyAmt; @JsonProperty("SF_TOT_ASSETS_EOY_AMT") public int sfTotAssetsEoyAmt; @JsonProperty("SF_TOT_LIABILITIES_EOY_AMT") public int sfTotalLiabilitiesEOYAmount; // 61-70 @JsonProperty("SF_NET_ASSETS_EOY_AMT") public int sfNetAssetsEoyAmount; @JsonProperty("SF_EMPLR_CONTRIB_INCOME_AMT") public int sfEmployerContribIncomeAmount; @JsonProperty("SF_PARTICIP_CONTRIB_INCOME_AMT") public int sfParticipContribIncomeAmount; @JsonProperty("SF_OTH_CONTRIB_RCVD_AMT") public int sfOtherContribReceivedAmount; @JsonProperty("SF_OTHER_INCOME_AMT") public int sfOtherIncomeAmount; @JsonProperty("SF_TOT_INCOME_AMT") public int sfTotalIncomeAmount; @JsonProperty("SF_TOT_DISTRIB_BNFT_AMT") public int sftotalDistribuBenefitAmount; @JsonProperty("SF_CORRECTIVE_DEEMED_DISTR_AMT") public int sfCorrectiveDeemedDistrAmount; @JsonProperty("SF_ADMIN_SRVC_PROVIDERS_AMT") public int sfAdminSrvcProvidersAmount; @JsonProperty("SF_OTH_EXPENSES_AMT") public int sfOtherExpensesAmount; // 71-80 @JsonProperty("SF_TOT_EXPENSES_AMT") public int sfTotalExpensesAmount; @JsonProperty("SF_NET_INCOME_AMT") public int sfNetIncomeAmount; @JsonProperty("SF_TOT_PLAN_TRANSFERS_AMT") public int sfTotalPlanTransfersAmount; @JsonProperty("SF_TYPE_PENSION_BNFT_CODE") public String sfTypePensionBenefitCode; @JsonProperty("SF_TYPE_WELFARE_BNFT_CODE") public String sfTypeWelfareBenefitCode; @JsonProperty("SF_FAIL_TRANSMIT_CONTRIB_IND") public String sfFailTransmitContribInd; @JsonProperty("SF_FAIL_TRANSMIT_CONTRIB_AMT") public int sfFailTransmitContribAmount; @JsonProperty("SF_PARTY_IN_INT_NOT_RPTD_IND") public String sfPartyInIntNotRptdInd; @JsonProperty("SF_PARTY_IN_INT_NOT_RPTD_AMT") public int sfPartyInIntNotRptdAmount; @JsonProperty("SF_PLAN_INS_FDLTY_BOND_IND") public String sfPanInsFidelityBondInd; // 81-90 @JsonProperty("SF_PLAN_INS_FDLTY_BOND_AMT") public long sfPlanInsFidelityBondAmount; @JsonProperty("SF_LOSS_DISCV_DUR_YEAR_IND") public String sfLossDiscvDuringYearInd; @JsonProperty("SF_LOSS_DISCV_DUR_YEAR_AMT") public int sfLossDiscvDuringYearAmount; @JsonProperty("SF_BROKER_FEES_PAID_IND") public String sfBrokerFeesPaidInd; @JsonProperty("SF_BROKER_FEES_PAID_AMT") public int sfBrokerFeesPaidAmount; @JsonProperty("SF_FAIL_PROVIDE_BENEF_DUE_IND") public String sfFailProvideBenefitDueInd; @JsonProperty("SF_FAIL_PROVIDE_BENEF_DUE_AMT") public int sfFailProvideBenefitDueAmount; @JsonProperty("SF_PARTCP_LOANS_IND") public String sfPartcpLoansInd; @JsonProperty("SF_PARTCP_LOANS_EOY_AMT") public int sfPartcpLoansEOYAmount; @JsonProperty("SF_PLAN_BLACKOUT_PERIOD_IND") public String sfPlanBlackoutPeriodInd; // 91-100 @JsonProperty("SF_COMPLY_BLACKOUT_NOTICE_IND") public String sfComplyBlackoutNoticeInd; @JsonProperty("SF_DB_PLAN_FUNDING_REQD_IND") public String sfDBPlanFundingRequiredInd; @JsonProperty("SF_DC_PLAN_FUNDING_REQD_IND") public String sfDCPlanFundingRequiredInd; @JsonProperty("SF_RULING_LETTER_GRANT_DATE") public String sfRulingLetterGrantDate; @JsonProperty("SF_SEC_412_REQ_CONTRIB_AMT") public int sfSec412RequiredContribAmount; @JsonProperty("SF_EMPLR_CONTRIB_PAID_AMT") public int sfEmployerContribPaidAmount; @JsonProperty("SF_FUNDING_DEFICIENCY_AMT") public int sfFundingDeficiencyAmount; @JsonProperty("SF_FUNDING_DEADLINE_IND") public String sfFundingDeadlineInd; @JsonProperty("SF_RES_TERM_PLAN_ADPT_IND") public String sfResTermPlanAdptInd; @JsonProperty("SF_RES_TERM_PLAN_ADPT_AMT") public int sfResTermPlanAdptAmount; // 100-109 @JsonProperty("SF_ALL_PLAN_AST_DISTRIB_IND") public String sfAllPlanAstDistribInd; @JsonProperty("SF_ADMIN_SIGNED_DATE") public String sfAdminSignedDate; @JsonProperty("SF_ADMIN_SIGNED_NAME") public String sfAdminSignedName; @JsonProperty("SF_SPONS_SIGNED_DATE") public String sfSponsorSignedDate; @JsonProperty("SF_SPONS_SIGNED_NAME") public String sfSponsorSignedName; @JsonProperty("FILING_STATUS") public String filingStatus; @JsonProperty("DATE_RECEIVED") public String dateReceived; @JsonProperty("VALID_ADMIN_SIGNATURE") public String validAdminSignature; @JsonProperty("VALID_SPONSOR_SIGNATURE") public String validSponsorSignature; } ================================================ FILE: csv/src/test/java/perf/F5500Reader.java ================================================ package perf; import java.io.File; import java.io.IOException; import java.util.Map; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvSchema; /** * Manual test for checking how fast a F-5500 file * (from http:///www.dol.gov/) can be read from a file */ public final class F5500Reader { public static void main(String[] args) throws Exception { if (args.length != 1) { System.err.println("Usage: java .... [input file]"); System.exit(1); } new F5500Reader().read(new File(args[0])); } private void read(File inputFile) throws IOException, InterruptedException { int x = 1; while (true) { Class cls = ((x & 1) == 0) ? Map.class : F5500Entry.class; ++x; long now = System.currentTimeMillis(); int count = readAll(inputFile, cls); long time = System.currentTimeMillis() - now; System.out.printf("DONE! Read %d rows as %s in %.1f seconds.\n", count, cls.getName(), time / 1000.0); Thread.sleep(500L); } } private int readAll(File inputFile, Class cls) throws IOException { System.out.print("Reading input as "+cls.getName()+" instances: "); int count = 0; CsvMapper mapper = new CsvMapper(); CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .build(); MappingIterator it = mapper.readerFor(cls) .with(schema).readValues(inputFile); while (it.hasNext()) { @SuppressWarnings("unused") T row = it.nextValue(); ++count; if ((count & 0x3FFF) == 0) { System.out.print('.'); } } System.out.println(); it.close(); return count; } } ================================================ FILE: csv/src/test/java/perf/ManualPerfComparison.java ================================================ package perf; import java.io.*; import java.util.ArrayList; import java.util.Iterator; import tools.jackson.core.JsonGenerator; import tools.jackson.databind.*; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvSchema; /** * Simple manual performance micro-benchmark for testing of CSV * reading and writing performance. */ @SuppressWarnings("resource") public final class ManualPerfComparison { private ObjectMapper jsonMapper; private ObjectReader csvReader; private ObjectWriter csvWriter; public ManualPerfComparison() { jsonMapper = new ObjectMapper(); CsvMapper mapper = new CsvMapper(); CsvSchema schema = mapper.schemaFor(RequestEntry.class) .withColumnSeparator('|') .withUseHeader(true) .withSkipFirstDataRow(true) ; csvReader = mapper.readerFor(RequestEntry.class).with(schema); csvWriter = mapper.writer(schema); } private RequestEntry[] readCsv(byte[] csvInput) throws IOException { ArrayList entries = new ArrayList(); Iterator it = csvReader.readValues(new ByteArrayInputStream(csvInput)); while (it.hasNext()) { entries.add(it.next()); } return entries.toArray(new RequestEntry[entries.size()]); } private byte[] writeAsJson(RequestEntry[] entries) throws IOException { ByteArrayOutputStream bytes = new ByteArrayOutputStream(256 + entries.length * 100); JsonGenerator jgen = jsonMapper.createGenerator(bytes); for (RequestEntry entry : entries) { jsonMapper.writeValue(jgen, entry); } jgen.close(); return bytes.toByteArray(); } private void test(byte[] csvInput) throws IOException { final RequestEntry[] entries = readCsv(csvInput); final byte[] jsonInput = writeAsJson(entries); // Let's try to guestimate suitable size... to get to 10 megs to process final int REPS = (int) ((double) (10 * 1000 * 1000) / (double) csvInput.length); System.out.printf("Input: %d entries; %d bytes as CSV, %d bytes as JSON\n", entries.length, csvInput.length, jsonInput.length); System.out.printf("Will do %d repetitions per test.\n\n", REPS); int i = 0; while (true) { try { Thread.sleep(100L); } catch (InterruptedException ie) { } int round = (i++ % 4); // if (true) round = 0; String msg; boolean lf = (round == 0); long msecs; switch (round) { case 0: msg = "CSV, read"; msecs = testCsvRead(REPS, csvInput); break; case 1: msg = "CSV, write"; msecs = testCsvWrite(REPS, entries); break; case 2: msg = "JSON, read"; msecs = testJsonRead(REPS, jsonInput); break; case 3: msg = "JSON, write"; msecs = testJsonWrite(REPS, entries); break; default: throw new Error(); } if (lf) { System.out.println(); } System.out.println("Test '"+msg+"' -> "+msecs+" msecs"); } } private final long testJsonRead(int REPS, byte[] input) throws IOException { long start = System.currentTimeMillis(); while (--REPS >= 0) { Iterator it = jsonMapper.readerFor(RequestEntry.class).readValues( input, 0, input.length); while (it.hasNext()) { it.next(); } } return System.currentTimeMillis() - start; } private final long testCsvRead(int REPS, byte[] input) throws IOException { long start = System.currentTimeMillis(); while (--REPS >= 0) { Iterator it = csvReader.readValues(input, 0, input.length); while (it.hasNext()) { it.next(); } } return System.currentTimeMillis() - start; } private final long testJsonWrite(int REPS, RequestEntry[] entries) throws IOException { long start = System.currentTimeMillis(); @SuppressWarnings("unused") int size = 0; while (--REPS >= 0) { BogusOutputStream bogus = new BogusOutputStream(); jsonMapper.writeValue(bogus, entries); size = bogus.length(); } return System.currentTimeMillis() - start; } private final long testCsvWrite(int REPS, RequestEntry[] entries) throws IOException { long start = System.currentTimeMillis(); @SuppressWarnings("unused") int size = 0; while (--REPS >= 0) { BogusOutputStream bogus = new BogusOutputStream(); csvWriter.writeValue(bogus, entries); size = bogus.length(); } return System.currentTimeMillis() - start; } public static void main(String[] args) throws IOException { if (args.length != 1) { System.err.println("Usage: java ... [file]"); System.exit(1); } new ManualPerfComparison().test(readAll(args[0])); } public static byte[] readAll(String filename) throws IOException { File f = new File(filename); ByteArrayOutputStream bytes = new ByteArrayOutputStream((int) f.length()); byte[] buffer = new byte[4000]; int count; FileInputStream in = new FileInputStream(f); while ((count = in.read(buffer)) > 0) { bytes.write(buffer, 0, count); } in.close(); return bytes.toByteArray(); } } ================================================ FILE: csv/src/test/java/perf/RequestEntry.java ================================================ package perf; import com.fasterxml.jackson.annotation.JsonProperty; public class RequestEntry { @JsonProperty("APP_ID") public long appId; @JsonProperty("USER_SCREEN_NAME") public String userScreenName; @JsonProperty("REPORTER_SCREEN_NAME") public String reportScreenName; @JsonProperty("EVENT_DATE") public String eventDate; @JsonProperty("HOST") public String host; @JsonProperty("PATH") public String path; @JsonProperty("USER_AGENT") public String userAgent; @JsonProperty("IP") public String ip; @JsonProperty("COOKIE") public String cookie; @JsonProperty("SUBDOMAIN") public String subdomain; @JsonProperty("REQUEST_METHOD") public String requestMethod; // or Enum @JsonProperty("TRACE") public String trace; @JsonProperty("REFERRER") public String referrer; @JsonProperty("RELOAD_COUNT") public int reloadCount; @JsonProperty("SESSION_ID") public String sessionId; @JsonProperty("ACTION") public String action; @JsonProperty("CONTENT") public String content; @JsonProperty("KILL_COUNT") public int killCount; @JsonProperty("ABUSE_TYPE") public String abuseType; } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/CSVFactoryFeaturesTest.java ================================================ package tools.jackson.dataformat.csv; import java.io.StringReader; import java.io.StringWriter; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadFeature; import tools.jackson.core.StreamWriteFeature; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import tools.jackson.core.*; public class CSVFactoryFeaturesTest extends ModuleTestBase { @Test public void testFactoryFeatures() throws Exception { final CsvMapper mapper = mapperForCsv(); CsvFactory f = mapper.tokenStreamFactory(); assertFalse(f.canHandleBinaryNatively()); assertFalse(f.canUseCharArrays()); assertTrue(f.canUseSchema(CsvSchema.emptySchema())); JsonParser p = mapper.createParser(""); assertFalse(p.canReadObjectId()); assertFalse(p.canReadTypeId()); p.close(); JsonGenerator g = mapper.createGenerator(new StringWriter()); assertFalse(g.canOmitProperties()); assertFalse(g.canWriteObjectId()); assertFalse(g.canWriteTypeId()); g.close(); } @Test public void testFactoryFastFeatures() throws Exception { CsvFactory f = CsvFactory.builder() .enable(StreamReadFeature.USE_FAST_DOUBLE_PARSER) .enable(StreamWriteFeature.USE_FAST_DOUBLE_WRITER) .build(); assertTrue(f.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); assertTrue(f.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); assertTrue(f.isEnabled(StreamWriteFeature.USE_FAST_DOUBLE_WRITER)); final CsvMapper mapper = mapperForCsv(f); JsonParser parser = mapper.createParser(new StringReader("")); assertTrue(parser.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); assertTrue(parser.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); JsonGenerator generator = mapper.createGenerator(new StringWriter()); assertTrue(generator.isEnabled(StreamWriteFeature.USE_FAST_DOUBLE_WRITER)); } @Test public void testFactoryFastBigNumberFeature() throws Exception { CsvFactory f = CsvFactory.builder() .disable(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER) .build(); assertTrue(f.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); assertFalse(f.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); final CsvMapper mapper = mapperForCsv(f); JsonParser parser = mapper.createParser(new StringReader("")); assertTrue(parser.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); assertFalse(parser.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); } @Test public void testFactoryBuilderFastFeatures() throws Exception { CsvFactory f = CsvFactory.builder() .disable(StreamReadFeature.USE_FAST_DOUBLE_PARSER) .disable(StreamWriteFeature.USE_FAST_DOUBLE_WRITER) .build(); assertFalse(f.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); assertTrue(f.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); assertFalse(f.isEnabled(StreamWriteFeature.USE_FAST_DOUBLE_WRITER)); final CsvMapper mapper = mapperForCsv(f); JsonParser parser = mapper.createParser(new StringReader("")); assertFalse(parser.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); assertTrue(parser.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); JsonGenerator generator = mapper.createGenerator(new StringWriter()); assertFalse(generator.isEnabled(StreamWriteFeature.USE_FAST_DOUBLE_WRITER)); } @Test public void testFactoryBuilderFastBigNumberFeature() throws Exception { CsvFactory f = CsvFactory.builder() .disable(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER) .build(); assertFalse(f.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); assertTrue(f.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); final CsvMapper mapper = mapperForCsv(f); JsonParser parser = mapper.createParser(new StringReader("")); assertFalse(parser.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); assertTrue(parser.isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); } // for [dataformats-text#581] @Test void testFormatFeatureDefaults() { CsvMapper mapper = CsvMapper.shared(); assertFalse(mapper.isEnabled(CsvReadFeature.ALLOW_COMMENTS)); assertFalse(mapper.isEnabled(CsvWriteFeature.ALWAYS_QUOTE_EMPTY_STRINGS)); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ModuleTestBase.java ================================================ package tools.jackson.dataformat.csv; import java.io.*; import java.nio.charset.StandardCharsets; import java.util.*; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; public abstract class ModuleTestBase { public enum Gender { MALE, FEMALE }; public static class Address { private String streetName; private String city; public Address(String streetName, String city) { this.streetName = streetName; this.city = city; } public String getStreetName() { return streetName; } public void setStreetName(String streetName) { this.streetName = streetName; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } } public static class LocalizedValue { private String value; public LocalizedValue(String value) { this.value = value; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } } /** * Slightly modified sample class from Jackson tutorial ("JacksonInFiveMinutes") */ @JsonPropertyOrder({"firstName", "lastName", "gender" ,"verified", "userImage"}) public static class FiveMinuteUser { private Gender _gender; public String firstName, lastName; private boolean _isVerified; private byte[] _userImage; public FiveMinuteUser() { } public FiveMinuteUser(String first, String last, boolean verified, Gender g, byte[] data) { firstName = first; lastName = last; _isVerified = verified; _gender = g; _userImage = data; } public boolean isVerified() { return _isVerified; } public Gender getGender() { return _gender; } public byte[] getUserImage() { return _userImage; } public void setVerified(boolean b) { _isVerified = b; } public void setGender(Gender g) { _gender = g; } public void setUserImage(byte[] b) { _userImage = b; } @Override public boolean equals(Object o) { if (o == this) return true; if (o == null || o.getClass() != getClass()) return false; FiveMinuteUser other = (FiveMinuteUser) o; if (_isVerified != other._isVerified) return false; if (_gender != other._gender) return false; if (!firstName.equals(other.firstName)) return false; if (!lastName.equals(other.lastName)) return false; byte[] otherImage = other._userImage; if (otherImage.length != _userImage.length) return false; for (int i = 0, len = _userImage.length; i < len; ++i) { if (_userImage[i] != otherImage[i]) { return false; } } return true; } @Override public int hashCode() { // not really good but whatever: return firstName.hashCode(); } } public static class TenMinuteUser extends FiveMinuteUser { private Address _address; public TenMinuteUser(String first, String last, boolean verified, Gender g, byte[] data, Address address) { super(first, last, verified, g, data); _address = address; } public Address getAddress() { return _address; } public void setAddress(Address address) { this._address = address; } } public static class FifteenMinuteUser extends FiveMinuteUser { private Map localizedName; public FifteenMinuteUser(String first, String last, boolean verified, Gender g, byte[] data, Map localizedName) { super(first, last, verified, g, data); this.localizedName = localizedName; } public Map getLocalizedName() { return localizedName; } public void setLocalizedName(Map localizedName) { this.localizedName = localizedName; } } @JsonPropertyOrder({"id", "desc"}) public static class IdDesc { public String id, desc; protected IdDesc() { } public IdDesc(String id, String desc) { this.id = id; this.desc = desc; } } @JsonPropertyOrder({ "x", "y" }) public static class Point { public int x, y; protected Point() { } public Point(int x0, int y0) { x = x0; y = y0; } } public static class Points { public List p; protected Points() { } public Points(Point... p0) { p = Arrays.asList(p0); } } protected ModuleTestBase() { } /* /********************************************************************** /* Helper methods, setup /********************************************************************** */ protected CsvFactoryBuilder streamFactoryBuilder() { return CsvFactory.builder(); } protected CsvMapper mapperForCsv() { return new CsvMapper(); } protected CsvMapper mapperForCsv(CsvFactory f) { return new CsvMapper(f); } protected CsvMapper newObjectMapper() { return CsvMapper.builder().build(); } protected CsvMapper.Builder mapperBuilder() { return CsvMapper.builder(); } protected CsvMapper.Builder mapperBuilder(CsvFactory f) { return CsvMapper.builder(f); } /* /********************************************************** /* Helper methods; low-level /********************************************************** */ public String q(String str) { return '"'+str+'"'; } public byte[] utf8(String str) { return str.getBytes(StandardCharsets.UTF_8); } protected String a2q(String json) { return json.replace("'", "\""); } protected static Map mapOf(Object...strings) { final Map map = new LinkedHashMap<>(); for (int i = 0, end = strings.length; i < end; i += 2) { map.put(strings[i].toString(), strings[i+1]); } return map; } protected void assertToken(JsonToken expToken, JsonToken actToken) { if (actToken != expToken) { fail("Expected token "+expToken+", current token "+actToken); } } protected void assertToken(JsonToken expToken, JsonParser jp) { assertToken(expToken, jp.currentToken()); } protected void assertType(Object ob, Class expType) { if (ob == null) { fail("Expected an object of type "+expType.getName()+", got null"); } Class cls = ob.getClass(); if (!expType.isAssignableFrom(cls)) { fail("Expected type "+expType.getName()+", got "+cls.getName()); } } /** * Method that gets textual contents of the current token using * available methods, and ensures results are consistent, before * returning them */ protected String getAndVerifyText(JsonParser jp) { // Ok, let's verify other accessors int actLen = jp.getStringLength(); char[] ch = jp.getStringCharacters(); String str2 = new String(ch, jp.getStringOffset(), actLen); String str = jp.getString(); if (str.length() != actLen) { fail("Internal problem (jp.token == "+jp.currentToken()+"): jp.getText().length() ['"+str+"'] == "+str.length()+"; jp.getTextLength() == "+actLen); } assertEquals("String access via getText(), getTextXxx() must be the same", str, str2); return str; } protected void verifyFieldName(JsonParser p, String expName) { assertEquals(expName, p.getString()); assertEquals(expName, p.currentName()); } protected void verifyIntValue(JsonParser jp, long expValue) { // First, via textual assertEquals(String.valueOf(expValue), jp.getString()); } protected void verifyException(Throwable e, String... matches) { String msg = e.getMessage(); String lmsg = (msg == null) ? "" : msg.toLowerCase(); for (String match : matches) { String lmatch = match.toLowerCase(); if (lmsg.indexOf(lmatch) >= 0) { return; } } fail("Expected an exception with one of substrings ("+Arrays.asList(matches)+"): got one with message \""+msg+"\""); } protected byte[] readResource(String ref) { ByteArrayOutputStream bytes = new ByteArrayOutputStream(); final byte[] buf = new byte[4000]; try (InputStream in = getClass().getResourceAsStream(ref)) { if (in != null) { int len; while ((len = in.read(buf)) > 0) { bytes.write(buf, 0, len); } } } catch (IOException e) { throw new RuntimeException("Failed to read resource '"+ref+"': "+e); } if (bytes.size() == 0) { throw new IllegalArgumentException("Failed to read resource '"+ref+"': empty resource?"); } return bytes.toByteArray(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/NullReader122Test.java ================================================ package tools.jackson.dataformat.csv; import java.io.Reader; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectReader; import static org.junit.jupiter.api.Assertions.fail; public class NullReader122Test extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); // for [dataformats-text#122]: passing `null` Reader leads to infinite loop @Test public void testEmptyStream() throws Exception { CsvSchema columns = CsvSchema.emptySchema().withHeader().withColumnSeparator(';'); ObjectReader r = MAPPER.readerFor(Map.class).with(columns); try { /*Object ob =*/ r.readValue((Reader) null); fail("Should not pass"); } catch (IllegalArgumentException e) { verifyException(e, "Argument \"r\" is null"); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/SchemaCaching288Test.java ================================================ package tools.jackson.dataformat.csv; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonView; import static org.junit.jupiter.api.Assertions.assertEquals; public class SchemaCaching288Test extends ModuleTestBase { static class ViewA { } static class ViewB { } @JsonPropertyOrder({ "a", "aa", "b" }) static class Bean288 { @JsonView({ ViewA.class, ViewB.class }) public String a = "1"; @JsonView({ViewA.class }) public String aa = "2"; @JsonView(ViewB.class) public String b = "3"; } /* /********************************************************** /* Test methods /********************************************************** */ // [dataformats-text#288]: caching should not overlap with View @Test public void testCachingNoViewFirst() throws Exception { CsvMapper mapper1 = mapperForCsv(); CsvSchema schemaNoView = mapper1.schemaFor(Bean288.class); assertEquals("1,2,3", mapper1.writer(schemaNoView).writeValueAsString(new Bean288()).trim()); assertEquals(1, mapper1._untypedSchemas.size()); CsvSchema schemaB = mapper1.schemaForWithView(Bean288.class, ViewB.class); assertEquals("1,3", mapper1.writer(schemaB).withView(ViewB.class) .writeValueAsString(new Bean288()).trim()); assertEquals(2, mapper1._untypedSchemas.size()); // check hash mapper1.schemaFor(Bean288.class); assertEquals(2, mapper1._untypedSchemas.size()); mapper1.schemaForWithView(Bean288.class, ViewA.class); assertEquals(3, mapper1._untypedSchemas.size()); mapper1.schemaForWithView(Bean288.class, ViewB.class); assertEquals(3, mapper1._untypedSchemas.size()); } // [dataformats-text#288]: caching should not overlap with View @Test public void testCachingWithViewFirst() throws Exception { CsvMapper mapper1 = mapperForCsv(); CsvSchema schemaA = mapper1.schemaForWithView(Bean288.class, ViewA.class); assertEquals("1,2", mapper1.writer(schemaA).withView(ViewA.class) .writeValueAsString(new Bean288()).trim()); assertEquals(1, mapper1._untypedSchemas.size()); CsvSchema schemaNoView = mapper1.schemaFor(Bean288.class); assertEquals("1,2,3", mapper1.writer(schemaNoView).writeValueAsString(new Bean288()).trim()); assertEquals(2, mapper1._untypedSchemas.size()); // check hash mapper1.schemaFor(Bean288.class); assertEquals(2, mapper1._untypedSchemas.size()); mapper1.schemaForWithView(Bean288.class, ViewA.class); assertEquals(2, mapper1._untypedSchemas.size()); mapper1.schemaForWithView(Bean288.class, ViewB.class); assertEquals(3, mapper1._untypedSchemas.size()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/TestVersions.java ================================================ package tools.jackson.dataformat.csv; import java.io.*; import tools.jackson.core.*; import tools.jackson.databind.MapperFeature; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; public class TestVersions extends ModuleTestBase { public void testMapperVersions() throws IOException { // Test shared instance for funsies CsvMapper mapper = CsvMapper.shared(); assertVersion(mapper.tokenStreamFactory()); JsonParser p = mapper.createParser("abc"); assertVersion(p); p.close(); JsonGenerator g = mapper.createGenerator(new ByteArrayOutputStream()); assertVersion(g); g.close(); } // Mostly to verify #11 public void testMapperDefaults() { CsvMapper mapper = new CsvMapper(); assertTrue(mapper.isEnabled(MapperFeature.SORT_PROPERTIES_ALPHABETICALLY)); } /* /********************************************************** /* Helper methods /********************************************************** */ private void assertVersion(Versioned vers) { assertEquals(PackageVersion.VERSION, vers.version()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/AnySetterTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.LinkedHashMap; import java.util.Map; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonAnySetter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class AnySetterTest extends ModuleTestBase { static class Entry { Map stuff = new LinkedHashMap(); public int age; public String name; @JsonAnySetter public void set(String key, Object value) { // for secondary test, where name remains empty: if (key.isEmpty()) { key = String.valueOf(stuff.size()); } stuff.put(key, value); } } /* /********************************************************************** /* Test methods /********************************************************************** */ @Test public void testSimpleHeader() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = CsvSchema.emptySchema().withHeader(); Entry entry = mapper.readerFor(Entry.class).with(schema).readValue( "name,age,gender,extra\nBarbara,35,F,1246\n"); assertEquals(35, entry.age); assertEquals("F", entry.stuff.get("gender")); assertEquals("1246", entry.stuff.get("extra")); assertEquals(2, entry.stuff.size()); } // [dataformat-csv@109]: allow "any-setter-like" @Test public void testWithMapToAny() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = CsvSchema.emptySchema().withHeader() .withAnyPropertyName(""); Entry entry = mapper.readerFor(Entry.class).with(schema) .readValue("name,age\nJoe,28,first,second\n"); assertEquals("Joe", entry.name); assertEquals(28, entry.age); assertEquals("first", entry.stuff.get("0")); assertEquals("second", entry.stuff.get("1")); assertEquals(2, entry.stuff.size()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ArrayReadTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; // for [dataformat-csv#57] public class ArrayReadTest extends ModuleTestBase { @JsonPropertyOrder({"id", "values", "extra"}) static class ValueEntry { public String id, extra; public int[] values; @JsonCreator public ValueEntry(@JsonProperty("id") String id, @JsonProperty("extra") String extra, @JsonProperty("values") int[] values) { this.id = id; this.extra = extra; this.values = values; } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); @Test public void testSimpleExplicitLooseTyping() throws Exception { ValueEntry value = MAPPER.readerWithSchemaFor(ValueEntry.class) .readValue("foo,1;2;3,stuff"); assertNotNull(value); assertEquals("foo", value.id); assertEquals("stuff", value.extra); int[] v = value.values; assertNotNull(v); assertEquals(3, v.length); assertEquals(1, v[0]); assertEquals(2, v[1]); assertEquals(3, v[2]); } // Same as above, but Array value in double-quotes: @Test public void testSimpleExplicitLooseTypingWithQuotes() throws Exception { ValueEntry value = MAPPER.readerWithSchemaFor(ValueEntry.class) .readValue("foo,\"1;2;3\",stuff"); assertNotNull(value); assertEquals("foo", value.id); assertEquals("stuff", value.extra); int[] v = value.values; assertNotNull(v); assertEquals(3, v.length); assertEquals(1, v[0]); assertEquals(2, v[1]); assertEquals(3, v[2]); } @Test public void testSimpleExplicitStrictTyping() throws Exception { ValueEntry value = MAPPER.readerWithTypedSchemaFor(ValueEntry.class) .readValue("foo,1;2;3,stuff"); assertNotNull(value); assertEquals("foo", value.id); assertEquals("stuff", value.extra); int[] v = value.values; assertNotNull(v); assertEquals(3, v.length); assertEquals(1, v[0]); assertEquals(2, v[1]); assertEquals(3, v[2]); // one more thing: for [dataformat-csv#66]: value = MAPPER.readerWithTypedSchemaFor(ValueEntry.class) .readValue("foo,,stuff"); assertNotNull(value); assertEquals("foo", value.id); assertEquals("stuff", value.extra); v = value.values; assertNotNull(v); assertEquals(0, v.length); } @Test public void testSeparatorOverrideSpace() throws Exception { ValueEntry input = new ValueEntry("foo", "stuff", new int[] {1, 2, 3}); String csv = MAPPER.writer(CsvSchema.builder() .addColumn("id") .addArrayColumn("values", " ") .addColumn("extra") .build()) .writeValueAsString(input) .trim(); // gets quoted due to white space assertEquals("foo,\"1 2 3\",stuff", csv); ValueEntry value = MAPPER.reader(MAPPER.schemaFor(ValueEntry.class).withArrayElementSeparator(" ")).forType(ValueEntry.class) .readValue(csv); assertEquals("foo", value.id); assertEquals("stuff", value.extra); int[] v = value.values; assertNotNull(v); assertEquals(3, v.length); assertEquals(1, v[0]); assertEquals(2, v[1]); assertEquals(3, v[2]); } @Test public void testSeparatorOverrideMulti() throws Exception { ValueEntry input = new ValueEntry("foo", "stuff", new int[] {1, 2, 3}); String csv = MAPPER.writer(CsvSchema.builder() .addColumn("id") .addArrayColumn("values", "::") .addColumn("extra") .build()) .writeValueAsString(input) .trim(); assertEquals("foo,1::2::3,stuff", csv); ValueEntry value = MAPPER.reader(MAPPER.schemaFor(ValueEntry.class).withArrayElementSeparator("::")).forType(ValueEntry.class) .readValue(csv); assertEquals("foo", value.id); assertEquals("stuff", value.extra); int[] v = value.values; assertNotNull(v); assertEquals(3, v.length); assertEquals(1, v[0]); assertEquals(2, v[1]); assertEquals(3, v[2]); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/BasicCSVParserTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.ByteArrayOutputStream; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.JsonParser; import tools.jackson.core.JsonToken; import tools.jackson.core.exc.StreamReadException; import tools.jackson.databind.*; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class BasicCSVParserTest extends ModuleTestBase { @JsonPropertyOrder({"x", "y", "z"}) public static class Point { public int x; public Integer y; public Integer z = 8; } final static CsvSchema SIMPLE_SCHEMA = CsvSchema.builder() .addColumn("firstName") .addColumn("lastName") .addColumn("gender") .addColumn("userImage") .addColumn("verified") .build(); /* /********************************************************** /* Test methods /********************************************************** */ final CsvMapper MAPPER = mapperForCsv(); @Test public void testSimpleExplicit() throws Exception { ObjectReader r = MAPPER.reader(SIMPLE_SCHEMA); _testSimpleExplicit(r, false); _testSimpleExplicit(r, true); } private void _testSimpleExplicit(ObjectReader r, boolean useBytes) throws Exception { r = r.forType(FiveMinuteUser.class); FiveMinuteUser user; final String INPUT = "Bob,Robertson,MALE,AQIDBAU=,false\n"; if (useBytes) { user = r.readValue(INPUT); } else { user = r.readValue(utf8(INPUT)); } assertEquals("Bob", user.firstName); assertEquals("Robertson", user.lastName); assertEquals(Gender.MALE, user.getGender()); assertFalse(user.isVerified()); assertArrayEquals(new byte[]{1, 2, 3, 4, 5}, user.getUserImage()); } @Test public void testSimpleExplicitWithBOM() throws Exception { ObjectReader r = MAPPER.reader(SIMPLE_SCHEMA); r = r.forType(FiveMinuteUser.class); FiveMinuteUser user; ByteArrayOutputStream b = new ByteArrayOutputStream(); // first, UTF-8 BOM: b.write(new byte[]{(byte) 0xEF, (byte) 0xBB, (byte) 0xBF}); b.write(utf8("Bob,Robertson,MALE,AQIDBAU=,false\n")); b.close(); user = r.readValue(b.toByteArray()); String fn = user.firstName; if (!fn.equals("Bob")) { fail("Expected 'Bob' (3), got '" + fn + "' (" + fn.length() + ")"); } assertEquals("Robertson", user.lastName); assertEquals(Gender.MALE, user.getGender()); assertFalse(user.isVerified()); assertArrayEquals(new byte[]{1, 2, 3, 4, 5}, user.getUserImage()); } @Test public void testSimpleWithAutoSchema() throws Exception { CsvSchema schema = MAPPER.schemaFor(FiveMinuteUser.class); // NOTE: order different from above test (as per POJO def!) FiveMinuteUser user = MAPPER.reader(schema).forType(FiveMinuteUser.class).readValue("Joe,Josephson,MALE,true,AwE=\n"); assertEquals("Joe", user.firstName); assertEquals("Josephson", user.lastName); assertEquals(Gender.MALE, user.getGender()); assertTrue(user.isVerified()); assertArrayEquals(new byte[]{3, 1}, user.getUserImage()); } /** * Test to verify that we can mix "untyped" access as Maps * with schema information... */ @Test public void testSimpleAsMaps() throws Exception { CsvSchema schema = MAPPER.schemaFor(FiveMinuteUser.class); MappingIterator> it = MAPPER.reader(schema).forType(Map.class).readValues( "Joe,Smith,MALE,false," ); assertTrue(it.hasNext()); Map result = it.nextValue(); assertEquals(5, result.size()); assertEquals("Joe", result.get("firstName")); assertEquals("Smith", result.get("lastName")); assertEquals("MALE", result.get("gender")); assertEquals("false", result.get("verified")); assertEquals("", result.get("userImage")); assertFalse(it.hasNextValue()); it.close(); } // Test for [Issue#10] @Test public void testMapsWithLinefeeds() throws Exception { _testMapsWithLinefeeds(false); _testMapsWithLinefeeds(true); } private void _testMapsWithLinefeeds(boolean useBytes) throws Exception { String CSV = "A,B,C\n" + "data11,data12\n" + "data21,data22,data23\r\n" + "data31,\"data32 data32\ndata32 data32\",data33\n" + "data41,\"data42 data42\r\ndata42\",data43\n"; CsvSchema cs = CsvSchema.emptySchema().withHeader(); ObjectReader or = MAPPER.readerFor(HashMap.class).with(cs); MappingIterator> mi; if (useBytes) { mi = or.readValues(utf8(CSV)); } else { mi = or.readValues(CSV); } assertTrue(mi.hasNext()); Map map = mi.nextValue(); assertNotNull(map); assertEquals("data11", map.get("A")); assertEquals("data12", map.get("B")); assertEquals(2, map.size()); assertTrue(mi.hasNext()); map = mi.nextValue(); assertNotNull(map); assertEquals(3, map.size()); // then entries with linefeeds assertTrue(mi.hasNext()); map = mi.nextValue(); assertNotNull(map); assertEquals(3, map.size()); assertEquals("data31", map.get("A")); assertEquals("data32 data32\ndata32 data32", map.get("B")); assertEquals("data33", map.get("C")); assertTrue(mi.hasNext()); map = mi.nextValue(); assertNotNull(map); assertEquals(3, map.size()); assertEquals("data41", map.get("A")); assertEquals("data42 data42\r\ndata42", map.get("B")); assertEquals("data43", map.get("C")); assertFalse(mi.hasNext()); mi.close(); } // [dataformat-csv#12] @Test public void testEmptyHandlingForInteger() throws Exception { CsvSchema schema = MAPPER.typedSchemaFor(Point.class).withoutHeader(); // First: empty value, to be considered as null Point result = MAPPER.readerFor(Point.class).with(schema) .without(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) .readValue(",,\n"); assertEquals(0, result.x); assertNull(result.y); assertNull(result.z); } @Test public void testStringNullHandlingForInteger() throws Exception { CsvSchema schema = MAPPER.typedSchemaFor(Point.class).withoutHeader(); // First: empty value, to be considered as null Point result = MAPPER.readerFor(Point.class).with(schema) .without(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) .readValue("null,null,null\n"); assertEquals(0, result.x); assertNull(result.y); assertNull(result.z); } @Test public void testLeadingZeroesForInts() throws Exception { CsvSchema schema = MAPPER.typedSchemaFor(Point.class).withoutHeader(); Point result = MAPPER.readerFor(Point.class).with(schema).readValue("012,\"090\",\n"); assertEquals(12, result.x); assertEquals(Integer.valueOf(90), result.y); assertNull(result.z); } // [dataformat-csv#41] @Test public void testIncorrectDups41() throws Exception { final String INPUT = "\"foo\",\"bar\",\"foo\""; CsvSchema schema = CsvSchema.builder().addColumn("Col1").addColumn("Col2") .addColumn("Col3").build(); MappingIterator iter = MAPPER.readerFor(Object.class) .with(schema).readValues(INPUT); Map m = (Map) iter.next(); assertFalse(iter.hasNextValue()); iter.close(); if (m.size() != 3) { fail("Should have 3 entries, but got: " + m); } assertEquals("foo", m.get("Col1")); assertEquals("bar", m.get("Col2")); assertEquals("foo", m.get("Col3")); } // for [dataformat-csv#89] @Test public void testColumnReordering() throws Exception { String CSV = "b,a,c\nvb,va,vc\n"; /* Test first column reordering, by setting the columns in a different order to the ones found in the CSV example */ CsvSchema schemaWithReordering = CsvSchema.builder() .addColumn("a") .addColumn("b") .addColumn("c") .setLineSeparator('\n') .setUseHeader(true) // must be set for column reordering .setReorderColumns(true) // set column reordering .build(); // Create a parser and ensure data is processed in the // right order, as per header JsonParser parser = MAPPER.reader() .with(schemaWithReordering) .createParser(CSV); assertEquals(JsonToken.START_OBJECT, parser.nextToken()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("b", parser.currentName()); assertEquals("b", parser.getString()); assertEquals("b", parser.getValueAsString()); assertEquals("b", parser.getValueAsString("x")); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("vb", parser.getValueAsString()); assertEquals("vb", parser.getValueAsString()); assertEquals("vb", parser.getValueAsString("x")); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a",parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("va", parser.getValueAsString()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("c", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("vc", parser.getValueAsString()); assertEquals(JsonToken.END_OBJECT, parser.nextToken()); parser.close(); /* Now make a copy of the schema but set the reordering flag to false. In this case the columns values are reported as per the schema order, not the header. */ CsvSchema schemaWithoutReordering = schemaWithReordering.withColumnReordering(false); parser = MAPPER.reader(). with(schemaWithoutReordering).createParser(CSV); assertEquals(JsonToken.START_OBJECT, parser.nextToken()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("vb", parser.getValueAsString()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("b", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("va", parser.getValueAsString()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("c", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("vc", parser.getValueAsString()); assertEquals(JsonToken.END_OBJECT, parser.nextToken()); parser.close(); /* From the schema with reordering, disabling use header flag causes the same effect as the previous test. */ CsvSchema schemaWithoutHeader = schemaWithReordering .withUseHeader(false) .withSkipFirstDataRow(true); parser = MAPPER.reader() .with(schemaWithoutHeader) .createParser(CSV); assertEquals(JsonToken.START_OBJECT, parser.nextToken()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("vb", parser.getValueAsString()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("b", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("va", parser.getValueAsString()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("c", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("vc", parser.getValueAsString()); assertEquals(JsonToken.END_OBJECT, parser.nextToken()); parser.close(); /* Finally, test an empty schema, where the header is use to set the columns, independently of the reordering flag. */ CsvSchema emptySchema = CsvSchema.builder() .setLineSeparator('\n') .setUseHeader(true) .build(); parser = MAPPER.reader() .with(emptySchema) .createParser(CSV); assertEquals(JsonToken.START_OBJECT, parser.nextToken()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("b", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("vb", parser.getValueAsString()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("va", parser.getValueAsString()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("c", parser.currentName()); assertEquals(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("vc", parser.getValueAsString()); assertEquals(JsonToken.END_OBJECT, parser.nextToken()); parser.close(); } @Test public void testColumnFailsOnOutOfOrder() throws Exception { String CSV = "b,a,c\nvb,va,vc\n"; CsvSchema schema = CsvSchema.builder() .addColumn("a") .addColumn("b") .addColumn("c") .setLineSeparator('\n') .setUseHeader(true) .setStrictHeaders(true) .build(); try (JsonParser parser = MAPPER.reader() .with(schema) .createParser(CSV)) { parser.nextToken(); fail("Should have failed"); } catch (StreamReadException e) { verifyException(e, "Mismatched header column #1: expected \"a\", actual \"b\""); } } @Test public void testColumnFailsOnTooFew() throws Exception { String CSV = "a,b\nvb,va,vc\n"; CsvSchema schema = CsvSchema.builder() .addColumn("a") .addColumn("b") .addColumn("c") .setLineSeparator('\n') .setUseHeader(true) .setStrictHeaders(true) .build(); try (JsonParser parser = MAPPER.reader() .with(schema) .createParser(CSV)) { parser.nextToken(); fail("Should have failed"); } catch (StreamReadException e) { verifyException(e, "Missing header c"); } } @Test public void testColumnFailsOnTooMany() throws Exception { String CSV = "a,b,c,d\nvb,va,vc\n"; CsvSchema schema = CsvSchema.builder() .addColumn("a") .addColumn("b") .addColumn("c") .setLineSeparator('\n') .setUseHeader(true) .setStrictHeaders(true) .build(); JsonParser parser = MAPPER.reader() .with(schema) .createParser(CSV); try { parser.nextToken(); fail("Should have failed"); } catch (StreamReadException e) { verifyException(e, "Extra header column \"d\""); } parser.close(); } @Test public void testStrictColumnReturnsExpectedData() throws Exception { CsvSchema schema = MAPPER.schemaFor(Point.class).withHeader().withStrictHeaders(true); String CSV = "x,y,z\n1,2,3\n4,5,6\n7,8,9"; final MappingIterator iter = MAPPER.readerFor(Point.class).with(schema).readValues(CSV); final List values = iter.readAll(new ArrayList()); assertEquals(3, values.size()); assertEquals(1, values.get(0).x); assertEquals(2, values.get(0).y.intValue()); assertEquals(3, values.get(0).z.intValue()); assertEquals(4, values.get(1).x); assertEquals(5, values.get(1).y.intValue()); assertEquals(6, values.get(1).z.intValue()); assertEquals(7, values.get(2).x); assertEquals(8, values.get(2).y.intValue()); assertEquals(9, values.get(2).z.intValue()); iter.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/BlogPost2021AprilTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.type.TypeReference; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; // Tests written to support a blog post written about Jackson // CSV module... public class BlogPost2021AprilTest extends ModuleTestBase { @JsonPropertyOrder({ "x", "y", "visible" }) static class Point { public int x, y; public boolean visible; } private final String SIMPLE_CSV = "1,2,true\n" +"2,9,false\n" +"-13,0,true\n"; private final String HEADER_CSV = "x, y, visible\n" + SIMPLE_CSV; private final CsvMapper MAPPER = new CsvMapper(); @Test public void testAsListOfLists() throws Exception { List> all = MAPPER .readerFor(new TypeReference>>() {} ) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValue(SIMPLE_CSV); _assertListOfLists(all); } @Test public void testAsSequenceOfListsOfStrings() throws Exception { MappingIterator> it = MAPPER .readerForListOf(String.class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(SIMPLE_CSV); List> all = it.readAll(); /* while (it.hasNextValue()) { List line = it.nextValue(); System.out.println("Line: "+line); } */ _assertListOfLists(all); } private void _assertListOfLists(List> all) { assertEquals(3, all.size()); assertEquals(Arrays.asList("1", "2", "true"), all.get(0)); assertEquals(Arrays.asList("2", "9", "false"), all.get(1)); assertEquals(Arrays.asList("-13", "0", "true"), all.get(2)); } @Test public void testAsSequenceOfMaps() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("x") .addColumn("y") .addColumn("visible") .build(); try (MappingIterator> it = MAPPER .readerForMapOf(String.class) .with(schema) .readValues(SIMPLE_CSV)) { assertTrue(it.hasNextValue()); Map map = it.nextValue(); assertEquals(3, map.size()); assertEquals("1", map.get("x")); assertEquals("2", map.get("y")); assertEquals("true", map.get("visible")); assertTrue(it.hasNextValue()); map = it.nextValue(); assertEquals(3, map.size()); assertEquals("2", map.get("x")); assertEquals("9", map.get("y")); assertEquals("false", map.get("visible")); assertTrue(it.hasNextValue()); map = it.nextValue(); assertEquals(3, map.size()); assertEquals("-13", map.get("x")); assertEquals("0", map.get("y")); assertEquals("true", map.get("visible")); assertFalse(it.hasNextValue()); } } @Test public void testAsSequenceOfPOJOsWithHeader() throws Exception { CsvSchema schemaWithHeader = CsvSchema.emptySchema().withHeader(); try (MappingIterator it = MAPPER .readerFor(Point.class) .with(schemaWithHeader) .readValues(HEADER_CSV)) { assertTrue(it.hasNextValue()); Point p = it.nextValue(); assertEquals(1, p.x); assertEquals(2, p.y); assertEquals(true, p.visible); assertTrue(it.hasNextValue()); p = it.nextValue(); assertEquals(2, p.x); assertEquals(9, p.y); assertEquals(false, p.visible); assertTrue(it.hasNextValue()); p = it.nextValue(); assertEquals(-13, p.x); assertEquals(0, p.y); assertEquals(true, p.visible); assertFalse(it.hasNextValue()); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/BrokenEncodingTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.ByteArrayOutputStream; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonParser; import tools.jackson.core.JsonToken; import tools.jackson.core.exc.JacksonIOException; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class BrokenEncodingTest extends ModuleTestBase { /* /********************************************************************** /* Test methods /********************************************************************** */ private final ObjectMapper MAPPER = mapperForCsv(); // Simple test where a Latin-1 character is encountered; first byte wrong @Test public void testLatin1AsUTF8() throws Exception { String CSV = "1,2\nabc,\u00A0\n"; CsvSchema schema = CsvSchema.builder() .addColumn("a") .addColumn("b") .build(); // So: take Latin-1 bytes, but construct without specifying to lead to UTF-8 handling JsonParser parser = MAPPER.reader(schema) .createParser(CSV.getBytes("ISO-8859-1")); assertToken(JsonToken.START_OBJECT, parser.nextToken()); assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); assertToken(JsonToken.VALUE_STRING, parser.nextToken()); assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertToken(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("2", parser.getString()); assertToken(JsonToken.END_OBJECT, parser.nextToken()); // problem should only be triggered now assertToken(JsonToken.START_OBJECT, parser.nextToken()); assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); assertToken(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("abc", parser.getString()); try { parser.nextToken(); fail("Should trigger exception for invalid UTF-8 char"); } catch (JacksonIOException e) { verifyException(e, "Invalid UTF-8 start byte"); verifyException(e, "0xA0"); } parser.close(); } // Then a test with "middle" byte broken @Test public void testBrokenUTF8MiddleByte() throws Exception { ByteArrayOutputStream bytes = new ByteArrayOutputStream(); bytes.write('1'); bytes.write(','); bytes.write(0xD7); // this is fine bytes.write(0x41); // this not bytes.write('\n'); CsvSchema schema = CsvSchema.builder() .addColumn("a") .addColumn("b") .build(); // So: take Latin-1 bytes, but construct without specifying to lead to UTF-8 handling JsonParser parser = MAPPER.reader(schema) .createParser(bytes.toByteArray()); assertToken(JsonToken.START_OBJECT, parser.nextToken()); assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); assertToken(JsonToken.VALUE_STRING, parser.nextToken()); assertEquals("1", parser.getString()); try { assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("b", parser.currentName()); parser.nextToken(); fail("Should trigger exception for invalid UTF-8 char"); } catch (JacksonIOException e) { verifyException(e, "Invalid UTF-8 middle byte"); verifyException(e, "0x41"); } parser.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/CaseInsensitiveHeader657Test.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for [dataformats-text#657]: CSV header validation should support * case-insensitive matching via {@link CsvReadFeature#CASE_INSENSITIVE_HEADERS}. */ public class CaseInsensitiveHeader657Test extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); // [dataformats-text#657]: case-insensitive header should match schema columns @Test public void testCaseInsensitiveHeaderMatch() throws Exception { CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn("name") .addColumn("temp_max") .build(); // Header has upper-case "TEMP_MAX" but schema defines "temp_max" String CSV = "name,TEMP_MAX\nRoger,42\n"; MappingIterator> it = MAPPER .readerFor(Map.class) .with(schema) .with(CsvReadFeature.CASE_INSENSITIVE_HEADERS) .readValues(CSV); assertTrue(it.hasNext()); Map result = it.nextValue(); assertEquals("Roger", result.get("name")); assertEquals("42", result.get("temp_max")); } // [dataformats-text#657]: without the feature, case mismatch should still fail @Test public void testCaseSensitiveHeaderStillFails() throws Exception { CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn("name") .addColumn("temp_max") .build(); String CSV = "name,TEMP_MAX\nRoger,42\n"; try { MappingIterator> it = MAPPER .readerFor(Map.class) .with(schema) .readValues(CSV); it.nextValue(); fail("Should fail with missing column when case-insensitive is disabled"); } catch (CsvReadException e) { verifyException(e, "Missing 1 header column: [\"temp_max\"]"); } } // [dataformats-text#657]: case-insensitive with reordered columns @Test public void testCaseInsensitiveReorderedColumns() throws Exception { CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn("firstName") .addColumn("lastName") .addColumn("age") .build(); // All upper-case and reordered String CSV = "AGE,FIRSTNAME,LASTNAME\n25,John,Doe\n"; MappingIterator> it = MAPPER .readerFor(Map.class) .with(schema) .with(CsvReadFeature.CASE_INSENSITIVE_HEADERS) .readValues(CSV); assertTrue(it.hasNext()); Map result = it.nextValue(); assertEquals("John", result.get("firstName")); assertEquals("Doe", result.get("lastName")); assertEquals("25", result.get("age")); } // [dataformats-text#657]: case-insensitive should still detect truly missing columns @Test public void testCaseInsensitiveStillDetectsMissing() throws Exception { CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn("name") .addColumn("age") .build(); // "agee" is a typo, not a case difference String CSV = "name,agee\nRoger,18\n"; try { MappingIterator> it = MAPPER .readerFor(Map.class) .with(schema) .with(CsvReadFeature.CASE_INSENSITIVE_HEADERS) .readValues(CSV); it.nextValue(); fail("Should fail: 'agee' is not a case-insensitive match for 'age'"); } catch (CsvReadException e) { verifyException(e, "Missing 1 header column: [\"age\"]"); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/CommentsTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvReadFeature; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; // Tests for [csv#56] public class CommentsTest extends ModuleTestBase { final String CSV_WITH_COMMENTS = "x,y\n# comment!\na,b\n # another...\n"; @Test public void testWithoutComments() throws Exception { CsvMapper mapper = mapperForCsv(); // First, with comments disabled: String[] row; MappingIterator it = mapper.readerFor(String[].class) // to handle comments that follow leading spaces .with(CsvReadFeature.TRIM_SPACES) // should not be needed but seems to be... .with(CsvReadFeature.WRAP_AS_ARRAY) .with(mapper.schema().withoutComments()).readValues(CSV_WITH_COMMENTS); row = it.nextValue(); assertEquals(2, row.length); assertEquals("x", row[0]); assertEquals("y", row[1]); // next, comment visible assertTrue(it.hasNext()); row = it.nextValue(); assertEquals("# comment!", row[0]); assertEquals(1, row.length); assertTrue(it.hasNext()); row = it.nextValue(); assertEquals(2, row.length); assertEquals("a", row[0]); assertEquals("b", row[1]); assertTrue(it.hasNext()); row = it.nextValue(); assertEquals("# another...", row[0]); assertEquals(1, row.length); assertFalse(it.hasNext()); it.close(); } @Test public void testSimpleComments() throws Exception { CsvMapper mapper = mapperForCsv(); MappingIterator it = mapper.readerFor(String[].class) .with(mapper.schema().withComments()) .with(CsvReadFeature.TRIM_SPACES) // should not be needed but seems to be... .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(CSV_WITH_COMMENTS); // first row the same String[] row = it.nextValue(); assertEquals(2, row.length); assertEquals("x", row[0]); assertEquals("y", row[1]); // next, comment NOT visible assertTrue(it.hasNext()); row = it.nextValue(); assertEquals("a", row[0]); assertEquals(2, row.length); assertEquals("b", row[1]); // and ditto for second comment assertFalse(it.hasNext()); it.close(); } @Test public void testLeadingComments() throws Exception { CsvMapper mapper = mapperForCsv(); MappingIterator it = mapper.readerFor(String[].class) .with(mapper.schema().withComments()) // should not be needed but seems to be... .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues("# first\n#second\n1,2\n"); // first row the same String[] row = it.nextValue(); assertEquals("1", row[0]); assertEquals(2, row.length); assertEquals("2", row[1]); assertFalse(it.hasNextValue()); it.close(); } @Test public void testCommentsWithHeaderRow() throws Exception { CsvMapper mapper = mapperForCsv(); MappingIterator> it = mapper.readerFor(Map.class) .with(mapper.schema().withComments().withHeader()) .readValues("# headers:\nid,value\n# values:\nab#c,#13\n"); // first row the same Map row = it.nextValue(); assertEquals("ab#c", row.get("id")); assertEquals("#13", row.get("value")); assertEquals(2, row.size()); assertFalse(it.hasNextValue()); it.close(); } // Alternate test to ensure comments may be enabled @Test public void testSimpleCommentsWithDefaultProp() throws Exception { CsvMapper mapper = mapperBuilder() .enable(CsvReadFeature.ALLOW_COMMENTS) .enable(CsvReadFeature.WRAP_AS_ARRAY) .build(); final String CSV = "# comment!\na,b\n"; MappingIterator it = mapper.readerFor(String[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(CSV); String[] row = it.nextValue(); // assertEquals(2, row.length); assertEquals("a", row[0]); assertEquals("b", row[1]); assertFalse(it.hasNext()); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyStringAsMissingTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for {@link CsvReadFeature#EMPTY_UNQUOTED_STRING_AS_MISSING} * (see {@code dataformats-text#355}). */ public class EmptyStringAsMissingTest extends ModuleTestBase { @JsonPropertyOrder({"id", "value"}) static class PojoWithDefault { public Integer id; public String value = "default"; } @JsonPropertyOrder({"firstName", "middleName", "lastName"}) static class ThreeFields { public String firstName; public String middleName = "M"; public String lastName; } /* /********************************************************** /* Test methods /********************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); // [dataformats-text#355]: empty cell in present column should use POJO default @Test public void testEmptyCellUsesPOJODefault() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withHeader(); ObjectReader r = MAPPER.readerFor(PojoWithDefault.class) .with(schema) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING); // Empty cell with trailing comma PojoWithDefault result = r.readValue("id,value\n1,"); assertEquals(Integer.valueOf(1), result.id); assertEquals("default", result.value); } // Missing column (no header) should still use defaults regardless of feature @Test public void testMissingColumnStillUsesDefault() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withHeader(); ObjectReader r = MAPPER.readerFor(PojoWithDefault.class) .with(schema) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING); PojoWithDefault result = r.readValue("id\n1"); assertEquals(Integer.valueOf(1), result.id); assertEquals("default", result.value); } // Quoted empty string should NOT be treated as missing @Test public void testQuotedEmptyStringNotMissing() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withHeader(); ObjectReader r = MAPPER.readerFor(PojoWithDefault.class) .with(schema) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING); PojoWithDefault result = r.readValue("id,value\n1,\"\""); assertEquals(Integer.valueOf(1), result.id); assertEquals("", result.value); } // Non-empty values should be unaffected @Test public void testNonEmptyValuesUnaffected() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withHeader(); ObjectReader r = MAPPER.readerFor(PojoWithDefault.class) .with(schema) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING); PojoWithDefault result = r.readValue("id,value\n1,hello"); assertEquals(Integer.valueOf(1), result.id); assertEquals("hello", result.value); } // Empty cell in the middle of a row should be skipped, surrounding values OK @Test public void testEmptyMiddleCellSkipped() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withHeader(); ObjectReader r = MAPPER.readerFor(ThreeFields.class) .with(schema) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING); ThreeFields result = r.readValue("firstName,middleName,lastName\nGrace,,Hopper"); assertEquals("Grace", result.firstName); assertEquals("M", result.middleName); assertEquals("Hopper", result.lastName); } // Feature disabled: empty cell should produce empty string (backwards compat) @Test public void testFeatureDisabledGivesEmptyString() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withHeader(); ObjectReader r = MAPPER.readerFor(PojoWithDefault.class) .with(schema); PojoWithDefault result = r.readValue("id,value\n1,"); assertEquals(Integer.valueOf(1), result.id); assertEquals("", result.value); } // Using fixed schema (not header-based) @Test public void testWithFixedSchema() throws Exception { CsvSchema schema = MAPPER.schemaFor(PojoWithDefault.class); ObjectReader r = MAPPER.readerFor(PojoWithDefault.class) .with(schema) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING); PojoWithDefault result = r.readValue("1,"); assertEquals(Integer.valueOf(1), result.id); assertEquals("default", result.value); } // All columns empty: all should use POJO defaults (tests loop, not recursion) @Test public void testAllColumnsEmpty() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withHeader(); ObjectReader r = MAPPER.readerFor(ThreeFields.class) .with(schema) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING); ThreeFields result = r.readValue("firstName,middleName,lastName\n,,"); assertNull(result.firstName); assertEquals("M", result.middleName); assertNull(result.lastName); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyStringAsNullTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for {@code CsvParser.Feature.EMPTY_STRING_AS_NULL} * (see {@code dataformats-text#7}). */ public class EmptyStringAsNullTest extends ModuleTestBase { @JsonPropertyOrder({"firstName", "middleName", "lastName"}) static class TestUser { public String firstName, middleName, lastName; } /* /********************************************************** /* Test methods /********************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); @Test public void testEmptyStringAsNullDisabled() throws Exception { // setup test data TestUser expectedTestUser = new TestUser(); expectedTestUser.firstName = "Grace"; expectedTestUser.middleName = ""; expectedTestUser.lastName = "Hopper"; ObjectReader objectReader = MAPPER.readerFor(TestUser.class).with(MAPPER.schemaFor(TestUser.class)); String csv = "Grace,,Hopper"; // execute TestUser actualTestUser = objectReader.readValue(csv); // test assertNotNull(actualTestUser); assertEquals(expectedTestUser.firstName, actualTestUser.firstName); assertEquals(expectedTestUser.middleName, actualTestUser.middleName); assertEquals(expectedTestUser.lastName, actualTestUser.lastName); } @Test public void testEmptyStringAsNullEnabled() throws Exception { // setup test data TestUser expectedTestUser = new TestUser(); expectedTestUser.firstName = "Grace"; expectedTestUser.lastName = "Hopper"; ObjectReader objectReader = MAPPER .readerFor(TestUser.class) .with(MAPPER.schemaFor(TestUser.class)) .with(CsvReadFeature.EMPTY_STRING_AS_NULL); String csv = "Grace,,Hopper"; // execute TestUser actualTestUser = objectReader.readValue(csv); // test assertNotNull(actualTestUser); assertEquals(expectedTestUser.firstName, actualTestUser.firstName); assertNull(actualTestUser.middleName, "The column that contains an empty String should be deserialized as null "); assertEquals(expectedTestUser.lastName, actualTestUser.lastName); } // [dataformats-text#222] @Test public void testEmptyStringAsNullNonPojo() throws Exception { String csv = "Grace,,Hopper"; ObjectReader r = MAPPER.reader() .with(CsvReadFeature.EMPTY_STRING_AS_NULL) .with(CsvReadFeature.WRAP_AS_ARRAY); try (MappingIterator it1 = r.forType(Object[].class).readValues(csv)) { Object[] array1 = it1.next(); assertEquals(3, array1.length); assertEquals("Grace", array1[0]); assertEquals("Hopper", array1[2]); assertNull(array1[1]); } try (MappingIterator it2 = r.forType(String[].class).readValues(csv)) { String[] array2 = it2.next(); assertEquals("Grace", array2[0]); assertEquals("Hopper", array2[2]); assertNull(array2[1]); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyUnquotedStringAsNullTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.IOException; import java.util.List; import java.util.Map; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for {@code CsvParser.Feature.EMPTY_UNQUOTED_STRING_AS_NULL} */ public class EmptyUnquotedStringAsNullTest extends ModuleTestBase { @JsonPropertyOrder({"firstName", "middleName", "lastName"}) static class TestUser { public String firstName, middleName, lastName; } /* /********************************************************** /* Test methods /********************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); @Test public void testDefaultParseAsEmptyString() throws IOException { // setup test data TestUser expectedTestUser = new TestUser(); expectedTestUser.firstName = "Grace"; expectedTestUser.middleName = ""; expectedTestUser.lastName = "Hopper"; ObjectReader objectReader = MAPPER.readerFor(TestUser.class).with(MAPPER.schemaFor(TestUser.class)); String csv = "Grace,,Hopper"; // execute TestUser actualTestUser = objectReader.readValue(csv); // test assertNotNull(actualTestUser); assertEquals(expectedTestUser.firstName, actualTestUser.firstName); assertEquals(expectedTestUser.middleName, actualTestUser.middleName); assertEquals(expectedTestUser.lastName, actualTestUser.lastName); } @Test public void testSimpleParseEmptyUnquotedStringAsNull() throws IOException { // setup test data TestUser expectedTestUser = new TestUser(); expectedTestUser.firstName = "Grace"; expectedTestUser.lastName = "Hopper"; ObjectReader objectReader = MAPPER .readerFor(TestUser.class) .with(MAPPER.schemaFor(TestUser.class)) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL); String csv = "Grace,,Hopper"; // execute TestUser actualTestUser = objectReader.readValue(csv); // test assertNotNull(actualTestUser); assertEquals(expectedTestUser.firstName, actualTestUser.firstName); assertNull(actualTestUser.middleName, "The column that contains an empty String should be deserialized as null "); assertEquals(expectedTestUser.lastName, actualTestUser.lastName); } @Test public void testSimpleParseEmptyQuotedStringAsNonNull() throws IOException { // setup test data TestUser expectedTestUser = new TestUser(); expectedTestUser.firstName = "Grace"; expectedTestUser.middleName = ""; expectedTestUser.lastName = "Hopper"; ObjectReader objectReader = MAPPER .readerFor(TestUser.class) .with(MAPPER.schemaFor(TestUser.class)) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL); String csv = "Grace,\"\",Hopper"; // execute TestUser actualTestUser = objectReader.readValue(csv); // test assertNotNull(actualTestUser); assertEquals(expectedTestUser.firstName, actualTestUser.firstName); assertEquals(expectedTestUser.middleName, actualTestUser.middleName); assertEquals(expectedTestUser.lastName, actualTestUser.lastName); } // [dataformats-text#222] @Test public void testEmptyUnquotedStringAsNullNonPojo() throws Exception { String csv = "Grace,,Hopper"; ObjectReader r = MAPPER.reader() .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL) .with(CsvReadFeature.WRAP_AS_ARRAY); try (MappingIterator it1 = r.forType(Object[].class).readValues(csv)) { Object[] array1 = it1.next(); assertEquals(3, array1.length); assertEquals("Grace", array1[0]); assertNull(array1[1]); assertEquals("Hopper", array1[2]); } try (MappingIterator it2 = r.forType(String[].class).readValues(csv)) { String[] array2 = it2.next(); assertEquals(3, array2.length); assertEquals("Grace", array2[0]); assertNull(array2[1]); assertEquals("Hopper", array2[2]); } } @Test public void testEmptyQuotedStringAsNonNullNonPojo() throws Exception { String csv = "Grace,\"\",Hopper"; ObjectReader r = MAPPER.reader() .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL) .with(CsvReadFeature.WRAP_AS_ARRAY); try (MappingIterator it1 = r.forType(Object[].class).readValues(csv)) { Object[] array1 = it1.next(); assertEquals(3, array1.length); assertEquals("Grace", array1[0]); assertEquals("", array1[1]); assertEquals("Hopper", array1[2]); } try (MappingIterator it2 = r.forType(String[].class).readValues(csv)) { String[] array2 = it2.next(); assertEquals(3, array2.length); assertEquals("Grace", array2[0]); assertEquals("", array2[1]); assertEquals("Hopper", array2[2]); } } // [dataformats-text#615]: EMPTY_UNQUOTED_STRING_AS_NULL fails when preceding column is quoted @Test public void testEmptyUnquotedStringAsNullAfterQuotedColumn615() throws Exception { // Column C is always empty unquoted (trailing comma); columns A and B vary in quoting. // With EMPTY_UNQUOTED_STRING_AS_NULL enabled, C must be null in all rows. String csv = "A,B,C\n" + "1,2,\n" // row 1: all unquoted -> C should be null (currently works) + "1,\"2\",\n" // row 2: B quoted -> C should be null (currently broken) + "\"1\",2,\n" // row 3: A quoted -> C should be null (currently works) + "\"1\",\"2\","; // row 4: A+B quoted -> C should be null (currently broken) CsvSchema schema = CsvSchema.builder() .addColumn("A") .addColumn("B") .addColumn("C") .build() .withHeader(); ObjectReader r = MAPPER.readerFor(Map.class) .with(CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL) .with(schema); try (MappingIterator> it = r.readValues(csv)) { List> rows = it.readAll(); assertEquals(4, rows.size()); for (int i = 0; i < rows.size(); i++) { Map row = rows.get(i); assertNull(row.get("C"), "Row " + (i + 1) + ": expected C=null but got C=" + q(String.valueOf(row.get("C")))); } } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/FastParserStreamingCSVReadTest.java ================================================ package tools.jackson.dataformat.csv.deser; import tools.jackson.core.StreamReadFeature; import tools.jackson.dataformat.csv.CsvFactory; import tools.jackson.dataformat.csv.CsvMapper; public class FastParserStreamingCSVReadTest extends StreamingCSVReadTest { private final CsvFactory CSV_F = CsvFactory.builder() .enable(StreamReadFeature.USE_FAST_DOUBLE_PARSER) .enable(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER) .build(); @Override protected CsvMapper csvMapper() { return new CsvMapper(CSV_F); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/IgnoreUnmappableTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Test(s) for [dataformat-csv#95] */ public class IgnoreUnmappableTest extends ModuleTestBase { final CsvMapper MAPPER = mapperForCsv(); @JsonPropertyOrder({ "first", "second" }) static class StringPair { public String first, second; } @Test public void testSimpleIgnoral() throws Exception { final String INPUT = "a,b,c,foo\nd,e\nf,g,h,i\n"; final CsvSchema schema = MAPPER.schemaFor(StringPair.class); // first: throw exception(s) with default settings MappingIterator it = MAPPER.readerFor(StringPair.class) .with(schema) .without(CsvReadFeature.IGNORE_TRAILING_UNMAPPABLE) .readValues(INPUT); try { it.nextValue(); fail("Should not have passed"); } catch (CsvReadException e) { verifyException(e, "Too many entries"); } // yet second one ought to work StringPair pair = it.nextValue(); assertEquals("d", pair.first); assertEquals("e", pair.second); // and not third, again try { it.nextValue(); fail("Should not have passed"); } catch (CsvReadException e) { verifyException(e, "Too many entries"); } it.close(); // But with settings... it = MAPPER.readerFor(StringPair.class) .with(schema) .with(CsvReadFeature.IGNORE_TRAILING_UNMAPPABLE) .readValues(INPUT); pair = it.nextValue(); assertEquals("a", pair.first); assertEquals("b", pair.second); pair = it.nextValue(); assertEquals("d", pair.first); assertEquals("e", pair.second); pair = it.nextValue(); assertEquals("f", pair.first); assertEquals("g", pair.second); assertFalse(it.hasNextValue()); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/IntOverflow485Test.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.exc.StreamReadException; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; public class IntOverflow485Test extends ModuleTestBase { // [dataformats-text#485] @JsonPropertyOrder({ "testInt", "testLong" }) static class Numbers485 { public int intValue; public long longValue; } private final CsvMapper MAPPER = mapperForCsv(); private final ObjectReader READER = MAPPER.readerWithSchemaFor(Numbers485.class); // [dataformats-text#485] // First test that regular parsing works @Test public void testNoOverflow485() throws Exception { Numbers485 result = READER.readValue(csv485(13, 42L)); assertEquals(13, result.intValue); assertEquals(42L, result.longValue); } @Test public void testIntOverflow() throws Exception { try { Numbers485 result = READER.readValue(csv485("111111111111111111111111111111111111111111", "0")); fail("Should not pass; got: "+result.intValue); } catch (StreamReadException e) { verifyException(e, "Numeric value"); verifyException(e, "out of range of int"); } } @Test public void testLongOverflow() throws Exception { try { Numbers485 result = READER.readValue(csv485("0", "2222222222222222222222222222222222222222")); fail("Should not pass; got: "+result.longValue); } catch (StreamReadException e) { verifyException(e, "Numeric value"); verifyException(e, "out of range of long"); } } private static String csv485(Object intValue, Object longValue) { return intValue+","+longValue+"\n"; } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ListField199Test.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonProperty; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class ListField199Test extends ModuleTestBase { // [dataformats-text#199] static class ModelString199 { @JsonProperty("STRINGS") List strings; @JsonProperty("OTHER_FIELD") String otherField; } static class ModelLong199 { @JsonProperty("LONGS") List longs; @JsonProperty("OTHER_FIELD") String otherField; } enum ABC { A, B, C }; static class ModelEnums199 { public EnumSet enums; public String extra; } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); private final CsvSchema WITH_ARRAY_SCHEMA = MAPPER.schemaWithHeader() .withArrayElementSeparator(",") .withColumnSeparator(';') .withEscapeChar('"'); // [dataformats-text#199] @Test public void testReadEmptyStringList() throws Exception { ObjectReader r = MAPPER.readerFor(ModelString199.class) .with(WITH_ARRAY_SCHEMA); ModelString199 result; // First, non-empty List result = r.readValue("STRINGS;OTHER_FIELD\n" + "stuff;other"); assertNotNull(result); assertEquals("other", result.otherField); assertEquals(Collections.singletonList("stuff"), result.strings); // then empty result = r.readValue("STRINGS;OTHER_FIELD\n" + ";Hello"); assertNotNull(result); assertEquals("Hello", result.otherField); assertEquals(Collections.emptyList(), result.strings); } // [dataformats-text#199] @Test public void testReadEmptyLongList() throws Exception { ObjectReader r = MAPPER.readerFor(ModelLong199.class) .with(WITH_ARRAY_SCHEMA); ModelLong199 result; // First, non-empty List result = r.readValue("LONGS;OTHER_FIELD\n" + "123;other"); assertNotNull(result); assertEquals("other", result.otherField); assertNotNull(result.longs); assertEquals(Collections.singletonList(Long.valueOf(123)), result.longs); // then empty result = r.readValue("LONGS;OTHER_FIELD\n" + ";Hello"); assertNotNull(result); assertEquals("Hello", result.otherField); assertNotNull(result.longs); assertEquals(Collections.emptyList(), result.longs); } @Test public void testReadEmptyEnumSet() throws Exception { ObjectReader r = MAPPER.readerFor(ModelEnums199.class) .with(WITH_ARRAY_SCHEMA); ModelEnums199 result; // First, non-empty List result = r.readValue("enums;extra\n" + "B;other"); assertNotNull(result); assertEquals("other", result.extra); assertNotNull(result.enums); assertEquals(EnumSet.of(ABC.B), result.enums); // then empty result = r.readValue("enums;extra\n" + ";stuff"); assertNotNull(result); assertEquals("stuff", result.extra); assertNotNull(result.enums); assertEquals(EnumSet.noneOf(ABC.class), result.enums); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/MappingIteratorEnd9Test.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; // for [dataformats-text#9] (was [dataformat-csv#119]) public class MappingIteratorEnd9Test extends ModuleTestBase { @Test public void testDefaultSimpleQuotes() throws Exception { CsvMapper mapper = mapperForCsv(); MappingIterator it = mapper.readerFor(String[].class) .without(CsvReadFeature.WRAP_AS_ARRAY) .readValues("\"te,st\""); assertTrue(it.hasNextValue()); String[] row = it.nextValue(); assertEquals(1, row.length); assertEquals("te,st", row[0]); assertFalse(it.hasNextValue()); assertFalse(it.hasNext()); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumns285Test.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for cases where one more of schema-declared columns is * missing; various handling choices include "null-injection" * as well as failure (throw exception) and just skipping (default). */ public class MissingColumns285Test extends ModuleTestBase { /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); private final CsvSchema csvSchema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn("name") .addColumn("age") .build(); private final String CSV = "name\nRoger\n"; // [dataformats-text#285]: fail by default @Test public void testFailOnMissingWithReorder() throws Exception { // Need to have it all inside try block since construction tries to read // the first token try { MappingIterator> it = MAPPER .readerFor(Map.class) .with(csvSchema) .readValues(CSV); it.nextValue(); fail("Should not pass with missing columns"); } catch (CsvReadException e) { verifyException(e, "Missing 1 header column: [\"age\"]"); } } // [dataformats-text#285]: optionally allow @Test public void testAllowMissingWithReorder() throws Exception { MappingIterator> it = MAPPER .readerFor(Map.class) .with(csvSchema) .without(CsvReadFeature.FAIL_ON_MISSING_HEADER_COLUMNS) .readValues(CSV); assertTrue(it.hasNext()); Map result = it.nextValue(); assertEquals(1, result.size()); assertEquals("Roger", result.get("name")); assertNull(result.get("age")); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumns579Test.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvReadException; import tools.jackson.dataformat.csv.CsvSchema; import tools.jackson.dataformat.csv.ModuleTestBase; import java.util.Map; import static org.junit.jupiter.api.Assertions.fail; /** * Tests for cases where csv doesn't contain columns from predefined schema */ public class MissingColumns579Test extends ModuleTestBase { /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); private final CsvSchema csvSchema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn("name") .addColumn("age") .build(); private final String CSV = "name,agee\nRoger,18\n"; // [dataformats-text#579]: fail when predefined schema have the same number // of columns as the populated, but column names are differs @Test public void testFailOnMissingWithReorder() throws Exception { try { MappingIterator> it = MAPPER .readerFor(Map.class) .with(csvSchema) .readValues(CSV); it.nextValue(); fail("Should not pass with missing columns"); } catch (CsvReadException e) { verifyException(e, "Missing 1 header column: [\"age\"]"); } } // [dataformats-text#579]: fail when all columns differ but count is the same @Test public void testFailOnAllColumnsDifferent() throws Exception { CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn("a") .addColumn("b") .build(); String csv = "c,d\n1,2\n"; try { MappingIterator> it = MAPPER .readerFor(Map.class) .with(schema) .readValues(csv); it.nextValue(); fail("Should not pass with all columns different"); } catch (CsvReadException e) { verifyException(e, "Missing 2 header columns"); verifyException(e, "\"a\""); verifyException(e, "\"b\""); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumnsTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for cases where one more of schema-declared columns is * missing; various handling choices include "null-injection" * as well as failure (throw exception) and just skipping (default). */ public class MissingColumnsTest extends ModuleTestBase { @JsonPropertyOrder({ "a", "b", "c" }) static class ABC { public String a = "a"; public String b = "b"; public String c = "c"; } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); private final CsvSchema SCHEMA_ABC = MAPPER.schemaFor(ABC.class); // by default, just... ignore @Test public void testDefaultMissingHandling() throws Exception { ObjectReader r = MAPPER.readerFor(ABC.class).with(SCHEMA_ABC); final ABC DEFAULT = new ABC(); ABC result = r.readValue("first,second,third\n"); assertEquals("first", result.a); assertEquals("second", result.b); assertEquals("third", result.c); // then with one missing result = r.readValue("first,second\n"); assertEquals("second", result.b); assertEquals(DEFAULT.c, result.c); // etc result = r.readValue("first\n"); assertEquals("first", result.a); assertEquals(DEFAULT.b, result.b); assertEquals(DEFAULT.c, result.c); result = r.readValue("\n"); // 16-Mar-2017, tatu: Actually first value is just empty, not null... since // logical "empty String" does exist no matter what. assertEquals("", result.a); assertEquals(DEFAULT.b, result.b); assertEquals(DEFAULT.c, result.c); } // [dataformat-csv#137]: inject `null`s in place of missing @Test public void testInjectMissingAsNulls() throws Exception { ObjectReader r = MAPPER.readerFor(ABC.class) .with(SCHEMA_ABC) .with(CsvReadFeature.INSERT_NULLS_FOR_MISSING_COLUMNS); // check with various number of missing; but first with no missing ABC result = r.readValue("first,second,third\n"); assertEquals("third", result.c); // then with one missing result = r.readValue("first,second\n"); assertEquals("second", result.b); assertNull(result.c); // etc result = r.readValue("first\n"); assertEquals("first", result.a); assertNull(result.b); assertNull(result.c); result = r.readValue("\n"); // 16-Mar-2017, tatu: Actually first value is just empty, not null... since // logical "empty String" does exist no matter what. assertEquals("", result.a); assertNull(result.b); assertNull(result.c); } // [dataformat-csv#140]: report error for missing columns @Test public void testFailOnMissingColumns() throws Exception { ObjectReader r = MAPPER.readerFor(ABC.class) .with(SCHEMA_ABC) .with(CsvReadFeature.FAIL_ON_MISSING_COLUMNS); // check with various number of missing, as well as recovery MappingIterator it = r.readValues( // First line, one misses one column "first,second\n" // second has it all +"1,2,3\n" // third only has one +"one\n" ); try { it.nextValue(); fail("Should not pass"); } catch (CsvReadException e) { verifyException(e, "Not enough column values"); verifyException(e, "expected 3, found 2"); } // next value ok ABC value = it.nextValue(); assertEquals("1", value.a); assertEquals("2", value.b); assertEquals("3", value.c); // then another miss try { it.nextValue(); fail("Should not pass"); } catch (CsvReadException e) { verifyException(e, "Not enough column values"); verifyException(e, "expected 3, found 1"); } assertFalse(it.hasNextValue()); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/NullReadTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import tools.jackson.databind.*; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class NullReadTest extends ModuleTestBase { // [dataformats-text#330]: empty String as null static class Row330 { public Integer id; public String value = "default"; } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); // For [dataformat-csv#72]: recognize "null value" for reading too @Test public void testReadNullValue72() throws Exception { CsvSchema schema = CsvSchema.builder() .setNullValue("n/a") .addColumn("id") .addColumn("desc") .build(); // start by writing, first String csv = MAPPER.writer(schema).writeValueAsString(new IdDesc("id", null)); // MUST use doubling for quotes! assertEquals("id,n/a\n", csv); // but read back ObjectReader r = MAPPER.readerFor(IdDesc.class) .with(schema); IdDesc result = r.readValue(csv); assertNotNull(result); assertEquals("id", result.id); assertNull(result.desc); // also try the other combination result = r.readValue("n/a,Whatevs\n"); assertNotNull(result); assertNull(result.id); assertEquals("Whatevs", result.desc); } @Test public void testReadNullValueFromEmptyString() throws Exception { // first: empty String should work as default CsvSchema schemaWithDefault = CsvSchema.builder() .addColumn("id") .addColumn("desc") .build(); // start by writing, first String csv = MAPPER.writer(schemaWithDefault).writeValueAsString(new IdDesc("id", null)); assertEquals("id,\n", csv); // but read back. Note: no null coercion unless explicitly defined ObjectReader r = MAPPER.readerFor(IdDesc.class).with(schemaWithDefault); IdDesc result = r.readValue(csv); assertNotNull(result); assertEquals("id", result.id); assertEquals("", result.desc); // also try the other combination result = r.readValue(",Whatevs\n"); assertNotNull(result); assertEquals("", result.id); assertEquals("Whatevs", result.desc); // And then with explicit Empty String CsvSchema schemaWithExplicitEmpty = CsvSchema.builder() .setNullValue("") .addColumn("id") .addColumn("desc") .build(); csv = MAPPER.writer(schemaWithExplicitEmpty).writeValueAsString(new IdDesc("id", null)); assertEquals("id,\n", csv); r = MAPPER.readerFor(IdDesc.class).with(schemaWithExplicitEmpty); result = r.readValue(csv); assertNotNull(result); assertEquals("id", result.id); assertNull(result.desc); // and finally with explicit `null`, which once again disables coercion CsvSchema schemaWithExplicitNull = CsvSchema.builder() .setNullValue((String) null) .addColumn("id") .addColumn("desc") .build(); csv = MAPPER.writer(schemaWithExplicitNull).writeValueAsString(new IdDesc("id", null)); assertEquals("id,\n", csv); r = MAPPER.readerFor(IdDesc.class).with(schemaWithExplicitNull); result = r.readValue(csv); assertNotNull(result); assertEquals("id", result.id); assertEquals("", result.desc); } // [dataformats-text#330]: empty String as null @Test public void testEmptyStringAsNull330() throws Exception { CsvSchema headerSchema = CsvSchema.emptySchema().withHeader(); final String DOC = "id,value\n" + "1,\n"; MappingIterator iterator = MAPPER .readerFor(Row330.class) .with(CsvReadFeature.EMPTY_STRING_AS_NULL) .with(headerSchema) .readValues(DOC); Row330 row = iterator.next(); assertEquals(Integer.valueOf(1), row.id); assertNull(row.value); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/NullValueUnquotedAsNullTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for {@code CsvReadFeature.NULL_VALUE_UNQUOTED_AS_NULL} * (see [dataformats-text#601]) */ public class NullValueUnquotedAsNullTest extends ModuleTestBase { @JsonPropertyOrder({"firstName", "middleName", "lastName"}) static class TestUser { public String firstName, middleName, lastName; } private final CsvMapper MAPPER = mapperForCsv(); // Default behavior: both quoted and unquoted null values become null @Test public void testDefaultBothQuotedAndUnquotedAsNull() throws Exception { CsvSchema schema = MAPPER.schemaFor(TestUser.class).withNullValue("N/A"); ObjectReader reader = MAPPER.readerFor(TestUser.class).with(schema); // Unquoted N/A -> null TestUser user1 = reader.readValue("Grace,N/A,Hopper"); assertEquals("Grace", user1.firstName); assertNull(user1.middleName); assertEquals("Hopper", user1.lastName); // Quoted "N/A" -> also null (default behavior) TestUser user2 = reader.readValue("Grace,\"N/A\",Hopper"); assertEquals("Grace", user2.firstName); assertNull(user2.middleName); assertEquals("Hopper", user2.lastName); } // With feature enabled: only unquoted null values become null @Test public void testUnquotedNullValueAsNull() throws Exception { CsvSchema schema = MAPPER.schemaFor(TestUser.class).withNullValue("N/A"); ObjectReader reader = MAPPER.readerFor(TestUser.class) .with(schema) .with(CsvReadFeature.ONLY_UNQUOTED_NULL_VALUES_AS_NULL); // Unquoted N/A -> null TestUser user1 = reader.readValue("Grace,N/A,Hopper"); assertEquals("Grace", user1.firstName); assertNull(user1.middleName); assertEquals("Hopper", user1.lastName); // Quoted "N/A" -> remains as string "N/A" TestUser user2 = reader.readValue("Grace,\"N/A\",Hopper"); assertEquals("Grace", user2.firstName); assertEquals("N/A", user2.middleName); assertEquals("Hopper", user2.lastName); } // Test with array binding (non-POJO) @Test public void testUnquotedNullValueAsNullWithArrays() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withNullValue("null"); ObjectReader reader = MAPPER.reader() .with(schema) .with(CsvReadFeature.ONLY_UNQUOTED_NULL_VALUES_AS_NULL) .with(CsvReadFeature.WRAP_AS_ARRAY); // Unquoted null -> null try (MappingIterator it = reader.forType(String[].class) .readValues("a,null,b")) { String[] arr = it.next(); assertEquals(3, arr.length); assertEquals("a", arr[0]); assertNull(arr[1]); assertEquals("b", arr[2]); } // Quoted "null" -> string "null" try (MappingIterator it = reader.forType(String[].class) .readValues("a,\"null\",b")) { String[] arr = it.next(); assertEquals(3, arr.length); assertEquals("a", arr[0]); assertEquals("null", arr[1]); assertEquals("b", arr[2]); } } // Test with Object[] binding @Test public void testUnquotedNullValueAsNullWithObjectArrays() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withNullValue("NULL"); ObjectReader reader = MAPPER.reader() .with(schema) .with(CsvReadFeature.ONLY_UNQUOTED_NULL_VALUES_AS_NULL) .with(CsvReadFeature.WRAP_AS_ARRAY); // Unquoted NULL -> null try (MappingIterator it = reader.forType(Object[].class) .readValues("first,NULL,last")) { Object[] arr = it.next(); assertEquals(3, arr.length); assertEquals("first", arr[0]); assertNull(arr[1]); assertEquals("last", arr[2]); } // Quoted "NULL" -> string "NULL" try (MappingIterator it = reader.forType(Object[].class) .readValues("first,\"NULL\",last")) { Object[] arr = it.next(); assertEquals(3, arr.length); assertEquals("first", arr[0]); assertEquals("NULL", arr[1]); assertEquals("last", arr[2]); } } // Test feature disabled has no effect (same as default) @Test public void testFeatureDisabledSameAsDefault() throws Exception { CsvSchema schema = MAPPER.schemaFor(TestUser.class).withNullValue("N/A"); ObjectReader reader = MAPPER.readerFor(TestUser.class) .with(schema) .without(CsvReadFeature.ONLY_UNQUOTED_NULL_VALUES_AS_NULL); // Both quoted and unquoted should become null TestUser user1 = reader.readValue("Grace,N/A,Hopper"); assertNull(user1.middleName); TestUser user2 = reader.readValue("Grace,\"N/A\",Hopper"); assertNull(user2.middleName); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/NumberDeserWithCSVTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.math.BigDecimal; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonUnwrapped; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; // Tests copied from databind "JDKNumberDeserTest" (only a small subset) public class NumberDeserWithCSVTest extends ModuleTestBase { // [databind#2784] static class BigDecimalHolder2784 { public BigDecimal value; } static class DoubleHolder2784 { public Double value; } static class FloatHolder2784 { public Float value; } static class NestedBigDecimalHolder2784 { @JsonUnwrapped public BigDecimalHolder2784 holder; } static class NestedDoubleHolder2784 { @JsonUnwrapped public DoubleHolder2784 holder; } static class NestedFloatHolder2784 { @JsonUnwrapped public FloatHolder2784 holder; } static class DeserializationIssue4917 { public DecimalHolder4917 decimalHolder; public double number; } static class DecimalHolder4917 { public BigDecimal value; private DecimalHolder4917(BigDecimal value) { this.value = value; } @JsonCreator(mode = JsonCreator.Mode.DELEGATING) static DecimalHolder4917 of(BigDecimal value) { return new DecimalHolder4917(value); } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = newObjectMapper(); // [databind#2784] @Test public void testBigDecimalUnwrapped() throws Exception { CsvSchema schema = MAPPER.schemaFor(NestedBigDecimalHolder2784.class).withHeader() .withStrictHeaders(true); final String DOC = "value\n5.123\n"; NestedBigDecimalHolder2784 result = MAPPER.readerFor(NestedBigDecimalHolder2784.class) .with(schema) .readValue(DOC); assertEquals(new BigDecimal("5.123"), result.holder.value); } @Test public void testDoubleUnwrapped() throws Exception { CsvSchema schema = MAPPER.schemaFor(NestedDoubleHolder2784.class).withHeader() .withStrictHeaders(true); final String DOC = "value\n125.123456789\n"; NestedDoubleHolder2784 result = MAPPER.readerFor(NestedDoubleHolder2784.class) .with(schema) .readValue(DOC); assertEquals(Double.parseDouble("125.123456789"), result.holder.value); } @Test public void testFloatUnwrapped() throws Exception { CsvSchema schema = MAPPER.schemaFor(NestedFloatHolder2784.class).withHeader() .withStrictHeaders(true); final String DOC = "value\n125.123\n"; NestedFloatHolder2784 result = MAPPER.readerFor(NestedFloatHolder2784.class) .with(schema) .readValue(DOC); assertEquals(Float.parseFloat("125.123"), result.holder.value); } @Test public void testFloatEdgeCase() throws Exception { CsvSchema schema = MAPPER.schemaFor(NestedFloatHolder2784.class).withHeader() .withStrictHeaders(true); final String DOC = "value\n1.199999988079071\n"; NestedFloatHolder2784 result = MAPPER.readerFor(NestedFloatHolder2784.class) .with(schema) .readValue(DOC); assertEquals(Float.parseFloat("1.199999988079071"), result.holder.value); } // [databind#4917] @Test public void bigDecimal4917() throws Exception { CsvSchema schema = MAPPER.schemaFor(DeserializationIssue4917.class).withHeader() .withStrictHeaders(true); DeserializationIssue4917 issue = MAPPER .readerFor(DeserializationIssue4917.class) .with(schema) .readValue("decimalHolder,number\n100.00,50\n"); assertEquals(new BigDecimal("100.00"), issue.decimalHolder.value); assertEquals(50.0, issue.number); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserAutoCloseTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.*; import java.nio.charset.StandardCharsets; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadFeature; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; public class ParserAutoCloseTest extends ModuleTestBase { @Test public void testParseReaderWithAutoClose() throws IOException { ObjectMapper mapper = mapperForCsv(); CloseTrackerReader reader = new CloseTrackerReader("foo,bar"); mapper.readTree(reader); assertEquals(true, reader.isClosed()); reader.close(); } @Test public void testParseStreamWithAutoClose() throws IOException { ObjectMapper mapper = mapperForCsv(); CloseTrackerOutputStream stream = new CloseTrackerOutputStream("foo,bar"); mapper.readTree(stream); assertEquals(true, stream.isClosed()); stream.close(); } @Test public void testParseReaderWithoutAutoClose() throws IOException { ObjectMapper mapper = mapperBuilder() .disable(StreamReadFeature.AUTO_CLOSE_SOURCE) .build(); CloseTrackerReader reader = new CloseTrackerReader("foo,bar"); mapper.readTree(reader); assertEquals(false, reader.isClosed()); reader.close(); } @Test public void testParseStreamWithoutAutoClose() throws IOException { ObjectMapper mapper = mapperBuilder() .disable(StreamReadFeature.AUTO_CLOSE_SOURCE) .build(); CloseTrackerOutputStream stream = new CloseTrackerOutputStream("foo,bar"); mapper.readTree(stream); assertEquals(false, stream.isClosed()); stream.close(); } public static class CloseTrackerReader extends StringReader { private boolean closed; public CloseTrackerReader(String s) { super(s); } @Override public void close() { closed = true; super.close(); } public boolean isClosed() { return closed; } } public static class CloseTrackerOutputStream extends ByteArrayInputStream { private boolean closed; public CloseTrackerOutputStream(String s) { super(s.getBytes(StandardCharsets.UTF_8)); } @Override public void close() throws IOException { closed = true; super.close(); } public boolean isClosed() { return closed; } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserLocation483Test.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.core.JacksonException; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class ParserLocation483Test extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); // [dataformats-text#483]: Location incorrect @Test public void testAsSequence() throws Exception { try (MappingIterator> reader = MAPPER .readerForListOf(String.class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues("name,dob\n\"string without end")) { reader.readAll(); } catch (JacksonException e) { verifyException(e, "Missing closing quote"); assertEquals(2, e.getLocation().getLineNr()); // This is not always accurate but should be close: assertEquals(20, e.getLocation().getColumnNr()); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserQuotes643Test.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; // for [dataformats-text#643] public class ParserQuotes643Test extends ModuleTestBase { @JsonPropertyOrder({"s1", "s2", "s3"}) protected static class ThreeString { public String s1, s2, s3; } /* /********************************************************************** /* Test methods /********************************************************************** */ // For #643: need to handle spaces outside quotes, even if not trimming @Test public void testSimpleQuotesWithSpaces() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(ThreeString.class); ThreeString result = mapper.reader(schema).forType(ThreeString.class).readValue( "\"abc\" , \"def\", \"gh\" \n"); // start by trailing space trimming (easiest one to work) assertEquals("abc", result.s1); // follow by leading space trimming assertEquals("def", result.s2); // and then both assertEquals("gh", result.s3); } // Verify unquoted values with leading spaces are preserved without TRIM_SPACES @Test public void testUnquotedLeadingSpacesPreserved() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(ThreeString.class); ThreeString result = mapper.reader(schema).forType(ThreeString.class).readValue( "abc, def, gh\n"); assertEquals("abc", result.s1); assertEquals(" def", result.s2); assertEquals(" gh", result.s3); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserTrimSpacesTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class ParserTrimSpacesTest extends ModuleTestBase { /* /********************************************************************** /* Helper types /********************************************************************** */ @JsonPropertyOrder({"a", "b", "c"}) protected static class Entry { public String a, b, c; } /* /********************************************************************** /* Test methods /********************************************************************** */ // Test to verify default behavior of not trimming spaces @Test public void testNonTrimming() throws Exception { CsvMapper mapper = mapperForCsv(); MappingIterator it = mapper.readerWithSchemaFor(Entry.class) .without(CsvReadFeature.TRIM_SPACES) .readValues( "a, b, c \n 1,2,\"3 \"\n" ); Entry entry; assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals("a", entry.a); assertEquals(" b", entry.b); assertEquals(" c ", entry.c); assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals(" 1", entry.a); assertEquals("2", entry.b); assertEquals("3 ", entry.c); assertFalse(it.hasNext()); it.close(); // [dataformat-csv#81]: also need to be able to re-enable it = mapper.readerWithSchemaFor(Entry.class) .with(CsvReadFeature.TRIM_SPACES) .readValues("a, b, c \n"); assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals("a", entry.a); assertEquals("b", entry.b); assertEquals("c", entry.c); it.close(); } @Test public void testTrimming() throws Exception { CsvMapper mapper = mapperForCsv(); MappingIterator it = mapper.readerWithSchemaFor(Entry.class) .with(CsvReadFeature.TRIM_SPACES) .readValues( "a, b, c\t\n 1,2,\" 3\" \n\"ab\t\" ,\"c\", \n" ); Entry entry; assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals("a", entry.a); assertEquals("b", entry.b); assertEquals("c", entry.c); assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals("1", entry.a); assertEquals("2", entry.b); assertEquals(" 3", entry.c); // note: space within quotes is preserved assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals("ab\t", entry.a); assertEquals("c", entry.b); assertEquals("", entry.c); assertFalse(it.hasNext()); it.close(); } // for [dataformat-csv#100]: Do not eat tabs when trimming space @Test public void testTrimmingTabSeparated() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(Entry.class).withColumnSeparator('\t'); MappingIterator it = mapper.readerFor(Entry.class).with(schema) .with(CsvReadFeature.TRIM_SPACES) .readValues( "a\t\t c\n 1\t2\t\" 3\" \n\"ab\" \t\"c \t\"\t \n" ); Entry entry; assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals("a", entry.a); assertEquals("", entry.b); assertEquals("c", entry.c); assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals("1", entry.a); assertEquals("2", entry.b); assertEquals(" 3", entry.c); // note: space within quotes is preserved assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals("ab", entry.a); assertEquals("c \t", entry.b); assertEquals("", entry.c); assertFalse(it.hasNext()); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserWithHeaderTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.ArrayList; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.JsonToken; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class ParserWithHeaderTest extends ModuleTestBase { @JsonPropertyOrder({ "age", "name", "cute" }) protected static class Entry { public int age; public String name; public boolean cute; } /* /********************************************************************** /* Test methods, success /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); @Test public void testSimpleHeader() throws Exception { try (CsvParser parser = (CsvParser) MAPPER.reader(CsvSchema.emptySchema().withHeader()) .createParser("name, age, other\nfoo,2,xyz\n")) { assertToken(JsonToken.START_OBJECT, parser.nextToken()); CsvSchema schema = parser.getSchema(); assertEquals(3, schema.size()); // verify that names from first line are trimmed: assertEquals("name", schema.columnName(0)); assertEquals("age", schema.columnName(1)); assertEquals("other", schema.columnName(2)); assertEquals("name", parser.nextName()); assertEquals("foo", parser.nextStringValue()); assertEquals("age", parser.nextName()); assertEquals("2", parser.nextStringValue()); assertEquals("other", parser.nextName()); assertEquals("xyz", parser.nextStringValue()); assertToken(JsonToken.END_OBJECT, parser.nextToken()); } // But! Can change header name trimming: // [dataformats-text#31]: Allow disabling header row trimming try (CsvParser parser = (CsvParser) MAPPER.reader(CsvSchema.emptySchema().withHeader()) .without(CsvReadFeature.TRIM_HEADER_SPACES) .createParser( "name, age,other \nfoo,2,xyz\n")) { assertToken(JsonToken.START_OBJECT, parser.nextToken()); CsvSchema schema = parser.getSchema(); assertEquals(3, schema.size()); // Verify header names are NOT trimmed when disabled assertEquals("name", schema.columnName(0)); assertEquals(" age", schema.columnName(1)); assertEquals("other ", schema.columnName(2)); assertEquals("name", parser.nextName()); assertEquals("foo", parser.nextStringValue()); assertEquals(" age", parser.nextName()); assertEquals("2", parser.nextStringValue()); assertEquals("other ", parser.nextName()); assertEquals("xyz", parser.nextStringValue()); assertToken(JsonToken.END_OBJECT, parser.nextToken()); } } @Test public void testSimpleQuotes() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withHeader(); Entry entry = MAPPER.readerFor(Entry.class).with(schema).readValue( "name,age,\"cute\" \nLeo,4,true\n"); assertEquals("Leo", entry.name); assertEquals(4, entry.age); assertTrue(entry.cute); } @Test public void testSkipFirstDataLine() throws Exception { CsvSchema schema = MAPPER.schemaFor(Entry.class).withSkipFirstDataRow(true); MappingIterator it = MAPPER.readerFor(Entry.class).with(schema).readValues( "12354\n6,Lila,true"); Entry entry; assertTrue(it.hasNext()); assertNotNull(entry = it.next()); assertEquals(6, entry.age); assertEquals("Lila", entry.name); assertFalse(it.hasNext()); it.close(); } @Test public void testLongHeader() throws Exception { StringBuilder sb = new StringBuilder(650); ArrayList names = new ArrayList(); do { if (sb.length() > 0) { sb.append(','); } String name = "COLUMN"+names.size(); names.add(name); sb.append(name); } while (sb.length() < 600); sb.append("\nabc\n"); final String CSV = sb.toString(); // Ok, then, first let's try reading columns: CsvSchema schema = CsvSchema.emptySchema().withHeader(); CsvParser p = (CsvParser) MAPPER.reader() .with(schema) .createParser(CSV); // need to read something to ensure header line is processed assertEquals(JsonToken.START_OBJECT, p.nextToken()); CsvSchema actual = p.getSchema(); assertEquals(names.size(), actual.size()); for (int i = 0, len = names.size(); i < len; ++i) { CsvSchema.Column col = actual.column(i); assertEquals(names.get(i), col.getName()); } p.close(); } @Test public void testLongColumnName() throws Exception { StringBuilder sb = new StringBuilder(650); sb.append("COLUMN"); for (int i = 0; i < 600; ++i) { sb.append((char) ('0' + i%10)); } final String COLUMN = sb.toString(); sb.append("\nabc\n"); final String CSV = sb.toString(); // Ok, then, first let's try reading columns: CsvSchema schema = CsvSchema.emptySchema().withHeader(); CsvParser p = (CsvParser) MAPPER.reader() .with(schema) .createParser(CSV); // need to read something to ensure header line is processed assertEquals(JsonToken.START_OBJECT, p.nextToken()); CsvSchema actual = p.getSchema(); assertEquals(1, actual.size()); assertEquals(COLUMN, actual.columnName(0)); p.close(); } /* /********************************************************************** /* Test methods, fail /********************************************************************** */ @Test public void testInvalidMissingHeader() throws Exception { try { MAPPER.readerFor(Entry.class).with(CsvSchema.emptySchema().withHeader()).readValue(" \nJoseph,57,false"); fail("Should have failed with exception"); } catch (Exception e) { verifyException(e, "Empty header line"); } } // [dataformats-text#327]: Detect duplicate column names in header @Test public void testFailOnDuplicateHeaderColumns() throws Exception { final CsvSchema schema = CsvSchema.emptySchema().withHeader(); final String CSV = "name,age,name\nfoo,2,bar\n"; // By default, should fail on duplicate header columns try { MAPPER.readerFor(Entry.class).with(schema).readValue(CSV); fail("Should have failed with exception"); } catch (CsvReadException e) { verifyException(e, "Duplicate header column \"name\""); } } // [dataformats-text#327]: Allow disabling duplicate header check @Test public void testAllowDuplicateHeaderColumns() throws Exception { final CsvSchema schema = CsvSchema.emptySchema().withHeader(); final String CSV = "name,age,name\nfoo,2,bar\n"; // When disabled, should allow duplicates (last one wins) Entry entry = MAPPER.readerFor(Entry.class) .with(schema) .without(CsvReadFeature.FAIL_ON_DUPLICATE_HEADER_COLUMNS) .readValue(CSV); assertEquals("bar", entry.name); assertEquals(2, entry.age); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ReadBracketedArray442Test.java ================================================ package tools.jackson.dataformat.csv.deser; import java.net.URL; import java.nio.charset.StandardCharsets; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.exc.StreamReadException; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import tools.jackson.dataformat.csv.CsvSchema.ColumnType; import static org.junit.jupiter.api.Assertions.*; // [dataformats-text#442] public class ReadBracketedArray442Test extends ModuleTestBase { // [dataformats-text#442] @JsonPropertyOrder({"id", "title", "url", "score", "time", "comments", "author", "embeddings" }) static class Article { public String id, title; public URL url; public int score; public long time; // Unix time public int comments; public String author; public double[] embeddings; } /* /********************************************************************** /* Test methods, success cases /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); private final byte[] FILE_100 = readResource("/data/story-100.csv"); private final byte[] STRING_1 = ("id,title,url,score,time,comments,author,embeddings\n" + "a1,Cool title,http://foo.org,123,0,3,unknown,\"[1.0, 2.0]\"\n") .getBytes(StandardCharsets.UTF_8); // [dataformats-text#442] @Test public void testBracketsReadAutoSchema() throws Exception { final CsvSchema schema1 = _automaticSchema(true); final CsvSchema schema2 = _automaticSchema(false); _testArrayWithBracketsRead1(schema1); _testArrayWithBracketsRead1(schema2); _testArrayWithBracketsRead100(schema1); _testArrayWithBracketsRead100(schema2); } // [dataformats-text#442] @Test public void testBracketsManualSchemaArray() throws Exception { final CsvSchema schema = _manualSchema(ColumnType.ARRAY, true); _testArrayWithBracketsRead1(schema); _testArrayWithBracketsRead100(schema); } // [dataformats-text#442] @Test public void testBracketsManualSchemaString() throws Exception { final CsvSchema schema = _manualSchema(ColumnType.STRING, true); _testArrayWithBracketsRead1(schema); _testArrayWithBracketsRead100(schema); } /* /********************************************************************** /* Test methods, fail cases /********************************************************************** */ @Test public void testBracketReadAutoSchemaFail() throws Exception { final CsvSchema schema = _automaticSchema(true); MappingIterator
    it = MAPPER.readerFor(Article.class) .with(schema) .readValues("id,title,url,score,time,comments,author,embeddings\n" + "a1,Cool title,http://foo.org,123,0,3,unknown,\"1.0, 2.0\"\n"); try { /*Article first =*/ it.nextValue(); fail("Should not pass"); } catch (StreamReadException e) { verifyException(e, "Decorated value of column 'embeddings' does not start with"); } it = MAPPER.readerFor(Article.class) .with(schema) .readValues("id,title,url,score,time,comments,author,embeddings\n" + "a1,Cool title,http://foo.org,123,0,3,unknown,\"[1.0, 2.0\"\n"); try { /*Article first =*/ it.nextValue(); fail("Should not pass"); } catch (CsvReadException e) { verifyException(e, "Decorated value of column 'embeddings' does not end with"); } } /* /********************************************************************** /* Helper methods /********************************************************************** */ private CsvSchema _automaticSchema(boolean required) { return MAPPER.schemaFor(Article.class) .withHeader() .withArrayElementSeparator(",") .withColumn("embeddings", col -> col.withValueDecorator(_bracketDecorator(required))); } private CsvSchema _manualSchema(ColumnType ct, boolean required) { // second schema: manual construction return CsvSchema.builder() .setUseHeader(true) .setArrayElementSeparator(",") .addColumn("id", ColumnType.STRING) .addColumn("title", ColumnType.STRING) .addColumn("url", ColumnType.STRING) .addColumn("score", ColumnType.NUMBER) .addColumn("time", ColumnType.NUMBER) .addColumn("comments", ColumnType.NUMBER) .addColumn("author", ColumnType.STRING) // and then the interesting one; may mark as "String" or "Array" .addColumn("embeddings", ct, col -> col.withValueDecorator(_bracketDecorator(required))) .build(); } private CsvValueDecorator _bracketDecorator(boolean required) { return required ? CsvValueDecorators.STRICT_BRACKETS_DECORATOR : CsvValueDecorators.OPTIONAL_BRACKETS_DECORATOR; } private void _testArrayWithBracketsRead1(CsvSchema schema) throws Exception { MappingIterator
    it = MAPPER.readerFor(Article.class) .with(schema) .readValues(STRING_1); Article first = it.nextValue(); assertNotNull(first); assertNotNull(first.embeddings); assertEquals(2, first.embeddings.length); assertFalse(it.hasNextValue()); } private void _testArrayWithBracketsRead100(CsvSchema schema) throws Exception { MappingIterator
    it = MAPPER.readerFor(Article.class) .with(schema) .readValues(FILE_100); Article first = it.nextValue(); assertNotNull(first); assertNotNull(first.embeddings); assertEquals(1536, first.embeddings.length); int count = 1; while (it.hasNextValue()) { Article article = it.nextValue(); assertNotNull(article); assertNotNull(article.embeddings); assertEquals(1536, article.embeddings.length); ++count; } assertEquals(100, count); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ReadSequencesTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.IOException; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.databind.ObjectWriter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for verifying behavior of enclosing input stream as * a logical array. */ public class ReadSequencesTest extends ModuleTestBase { @JsonPropertyOrder({"x", "y"}) protected static class Entry { public int x, y; public Entry() { } public Entry(int x, int y) { this.x = x; this.y = y; } public boolean equals(Entry e) { // simplified just for testing return e.x == this.x && e.y == this.y; } @Override public String toString() { return "["+x+","+y+"]"; } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = new CsvMapper(); // Test using non-wrapped sequence of entries @Test public void testAsSequence() throws Exception { MappingIterator it = MAPPER.readerWithSchemaFor(Entry.class) .without(CsvReadFeature.WRAP_AS_ARRAY) .readValues( "1,2\n-3,0\n5,6\n"); Entry entry; assertTrue(it.hasNext()); assertNotNull(entry = it.next()); assertEquals(1, entry.x); assertEquals(2, entry.y); assertTrue(it.hasNext()); assertNotNull(entry = it.next()); assertEquals(-3, entry.x); assertEquals(0, entry.y); assertTrue(it.hasNext()); assertNotNull(entry = it.next()); assertEquals(5, entry.x); assertEquals(6, entry.y); assertFalse(it.hasNext()); it.close(); } // Test using sequence of entries wrapped in a logical array. @Test public void testAsWrappedArray() throws Exception { Entry[] entries = MAPPER.readerWithSchemaFor(Entry.class).forType(Entry[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValue("1,2\n0,0\n123,123456789\n"); assertEquals(3, entries.length); assertEquals(1, entries[0].x); assertEquals(2, entries[0].y); assertEquals(0, entries[1].x); assertEquals(0, entries[1].y); assertEquals(123, entries[2].x); assertEquals(123456789, entries[2].y); } // Test for teasing out buffer-edge conditions... @Test public void testLongerUnwrapped() throws Exception { // how many? about 10-20 bytes per entry, so try to get at ~100k -> about 10k entries List entries = generateEntries(9999); CsvSchema schema = MAPPER.schemaFor(Entry.class); ObjectWriter writer = MAPPER.writer(schema); // First, using bytes; note byte[] bytes = writer.writeValueAsBytes(entries); // ... we just happen to know this is expected length... final int EXPECTED_BYTES = 97640; assertEquals(EXPECTED_BYTES, bytes.length); MappingIterator it = MAPPER.readerFor(Entry.class).with(schema) .without(CsvReadFeature.WRAP_AS_ARRAY) .readValues(bytes, 0, bytes.length); verifySame(it, entries); bytes = null; // and then chars: NOTE: ASCII, so bytes == chars String text = writer.writeValueAsString(entries); assertEquals(EXPECTED_BYTES, text.length()); it.close(); it = MAPPER.readerFor(Entry.class).with(schema) .without(CsvReadFeature.WRAP_AS_ARRAY) .readValues(text); verifySame(it, entries); it.close(); } // Verify that code sample from the page works: @Test public void testRawObjectArrays() throws Exception { final String CSV = "a,b\nc,d\ne,f\n"; MappingIterator it = MAPPER.readerFor(Object[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(CSV); assertTrue(it.hasNext()); Object[] row = it.next(); assertEquals(2, row.length); assertEquals("a", row[0]); assertEquals("b", row[1]); assertTrue(it.hasNext()); it.next(); assertTrue(it.hasNext()); row = it.next(); assertEquals(2, row.length); assertEquals("e", row[0]); assertEquals("f", row[1]); assertFalse(it.hasNext()); it.close(); } /* /********************************************************************** /* Helper methods /********************************************************************** */ private List generateEntries(int count) throws IOException { Random rnd = new Random(count); ArrayList entries = new ArrayList(count); while (--count >= 0) { entries.add(new Entry(rnd.nextInt() % 9876, 50 - (rnd.nextInt() % 987))); } return entries; } private void verifySame(Iterator it, List exp) { Iterator expIt = exp.iterator(); int count = 0; while (it.hasNext()) { if (!expIt.hasNext()) { fail("Expected "+exp.size()+" entries; got more"); } Entry expEntry = expIt.next(); Entry actualEntry = it.next(); if (!expEntry.equals(actualEntry)) { fail("Entry at "+count+" (of "+exp.size()+") differs: exp = "+expEntry+", actual = "+actualEntry); } ++count; } if (expIt.hasNext()) { fail("Expected "+exp.size()+" entries; got only "+count); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/SequenceRecoveryTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.exc.StreamReadException; import tools.jackson.databind.MappingIterator; import tools.jackson.databind.exc.InvalidFormatException; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class SequenceRecoveryTest extends ModuleTestBase { @JsonPropertyOrder({"x", "y"}) protected static class Entry { public int x, y; public Entry() { } public Entry(int x, int y) { this.x = x; this.y = y; } public boolean equals(Entry e) { // simplified just for testing return e.x == this.x && e.y == this.y; } @Override public String toString() { return "["+x+","+y+"]"; } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = new CsvMapper(); @Test public void testSequenceRecovery() throws Exception { // can not reuse shared instance because we need: CsvMapper mapper = mapperForCsv(); MappingIterator it = mapper.readerWithSchemaFor(Entry.class) .without(CsvReadFeature.WRAP_AS_ARRAY) .readValues( "1,2\n3,invalid\n5,6\n1,2,3,5\n13,-4\ngarbage\n"); Entry entry; assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals(1, entry.x); assertEquals(2, entry.y); assertTrue(it.hasNext()); // second row, invalid: try { it.nextValue(); fail("Shouldn't have passed"); } catch (InvalidFormatException e) { verifyException(e, "not a valid `int` value"); verifyException(e, "from String \"invalid\""); } // but third is fine again assertNotNull(entry = it.nextValue()); assertEquals(5, entry.x); assertEquals(6, entry.y); // fourth not assertTrue(it.hasNext()); try { it.nextValue(); fail("Shouldn't have passed"); } catch (CsvReadException e) { verifyException(e, "Too many entries"); } // fifth ok assertTrue(it.hasNext()); assertNotNull(entry = it.nextValue()); assertEquals(13, entry.x); assertEquals(-4, entry.y); // and sixth busted again assertTrue(it.hasNext()); try { it.nextValue(); fail("Shouldn't have passed"); } catch (InvalidFormatException e) { verifyException(e, "not a valid `int` value"); verifyException(e, "from String \"garbage\""); } assertFalse(it.hasNext()); it.close(); } // for [dataformat-csv#91]: ensure recovery works for extra columns @Test public void testRecoverFromExtraColumns91() throws Exception { CsvSchema schema = MAPPER.schemaFor(Entry.class); final String CSV = "1,2\n3,4,\n5,6\n7,8,,foo,\n9,10\n"; MappingIterator it = MAPPER.readerFor(Entry.class) .with(schema) .readValues(CSV); Entry entry; assertTrue(it.hasNext()); entry = it.nextValue(); assertNotNull(entry); assertEquals(1, entry.x); assertEquals(2, entry.y); // one extra empty column always allowed assertTrue(it.hasNext()); entry = it.nextValue(); assertEquals(3, entry.x); assertEquals(4, entry.y); assertTrue(it.hasNext()); entry = it.nextValue(); assertEquals(5, entry.x); assertEquals(6, entry.y); assertTrue(it.hasNext()); try { entry = it.nextValue(); fail("Should fail"); } catch (CsvReadException e) { verifyException(e, "Too many entries"); } // this SHOULD skip 7,8,, entry assertTrue(it.hasNext()); entry = it.nextValue(); assertEquals(9, entry.x); assertEquals(10, entry.y); assertFalse(it.hasNext()); it.close(); } // for [dataformat-csv#91]: ensure recovery works for extra columns @Test public void testRecoveryFromMissingQuote91() throws Exception { CsvSchema schema = MAPPER.schemaFor(IdDesc.class); final String CSV = "a,\"desc\"\nb,\"Broken\nc,\"good\"\nd,foo"; MappingIterator it = MAPPER.readerFor(IdDesc.class) .with(schema) .readValues(CSV); IdDesc value; assertTrue(it.hasNext()); value = it.nextValue(); assertEquals("a", value.id); assertEquals("desc", value.desc); // Should choke on 'g', because it's not a separator after what parser // thinks is closing quote (but user probably meant as opening) assertTrue(it.hasNext()); try { value = it.nextValue(); fail("Should fail"); } catch (StreamReadException e) { verifyException(e, "Expected column separator"); } // and because of this, synchronization skips the rest of 3rd line... assertTrue(it.hasNext()); value = it.nextValue(); assertEquals("d", value.id); assertEquals("foo", value.desc); it.close(); } @JsonPropertyOrder({"s1", "s2", "s3"}) protected static class ThreeString { public String s1, s2, s3; } // Additional test for [dataformat-csv#91]: should skip only line with error // and do not fail on next line @Test public void testRecoveryFromUnclosedQuotes() throws Exception { String toParse = a2q( "'value1','value2','value3'\n" + "'value4','value5','value6\n" + // missing closing quote "'value7','value8','value9'\n"+ "'value10','value11','value12'\n" ); CsvSchema schema = MAPPER.schemaFor(ThreeString.class); MappingIterator it = MAPPER.reader(schema).forType(ThreeString.class).readValues(toParse); ThreeString value; assertTrue(it.hasNext()); value = it.nextValue(); assertEquals("value1", value.s1); assertEquals("value2", value.s2); assertEquals("value3", value.s3); // second row has the problem, missing closing quote assertTrue(it.hasNext()); try { value = it.nextValue(); fail("Should fail"); } catch (StreamReadException e) { verifyException(e, "Expected column separator"); } // and this means that since error was encountered on 3rd row, that gets // skipped and we'll see the 4th row next. assertTrue(it.hasNext()); value = it.nextValue(); assertEquals("value10", value.s1); assertEquals("value11", value.s2); assertEquals("value12", value.s3); assertFalse(it.hasNext()); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyLines15Test.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.junit.jupiter.api.Assertions.assertEquals; // for [dataformats-text#15]: Allow skipping of empty lines public class SkipEmptyLines15Test extends ModuleTestBase { private static final String CSV_WITH_EMPTY_LINE = "1,\"xyz\"\n\ntrue,\n"; private static final String CSV_WITH_BLANK_LINE = "1,\"xyz\"\n \ntrue,\n"; private static final String CSV_WITH_BLANK_LINE_AND_COMMENT = "1,\"xyz\"\n \n #comment\n\ntrue,\n"; private static final String CSV_WITH_FIRST_BLANK_LINE = "\n1,\"xyz\"\ntrue,\n"; private static final String CSV_WITH_TRAILING_BLANK_LINES = "1,\"xyz\"\ntrue,\n \n\n"; @JsonPropertyOrder({ "age", "name", "cute" }) protected static class Entry { public int age; public String name; public boolean cute; } // for [dataformats-text#15]: Allow skipping of empty lines @Test public void testSkipEmptyLinesFeature() throws Exception { final String CSV = "1,\"xyz\"\n\ntrue,\n"; CsvMapper mapper = mapperForCsv(); // First, verify default behavior: String[][] rows = mapper .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValue(CSV); assertEquals(3, rows.length); String[] row; row = rows[0]; assertEquals(2, row.length); assertEquals("1",row[0]); assertEquals("xyz", row[1]); row = rows[1]; assertEquals(1, row.length); assertEquals("", row[0]); row = rows[2]; assertEquals(2, row.length); assertEquals("true", row[0]); assertEquals("", row[1]); // when wrapped as an array, we'll get array of Lists: rows = mapper.readerFor(String[][].class) .with(CsvReadFeature.SKIP_EMPTY_LINES) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValue(CSV); assertEquals(2, rows.length); row = rows[0]; assertEquals(2, row.length); assertEquals("1",row[0]); assertEquals("xyz", row[1]); row = rows[1]; assertEquals(2, row.length); assertEquals("true", row[0]); assertEquals("", row[1]); } @Test public void testCsvWithEmptyLineSkipBlankLinesFeatureDisabled() throws Exception { String[][] rows = mapperForCsvAsArray().readValue(CSV_WITH_EMPTY_LINE); // First, verify default behavior: assertArrayEquals(expected( row("1", "xyz"), row(""), row("true", "") ), rows); } @Test public void testCsvWithEmptyLineSkipBlankLinesFeatureEnabled() throws Exception { String[][] rows = mapperForCsvAsArray() .with(CsvReadFeature.SKIP_EMPTY_LINES) .readValue(CSV_WITH_EMPTY_LINE); // empty line is skipped assertArrayEquals(expected( row("1", "xyz"), row("true", "") ), rows); } @Test public void testCsvWithBlankLineSkipBlankLinesFeatureDisabled() throws Exception { String[][] rows = mapperForCsvAsArray() .readValue(CSV_WITH_BLANK_LINE); // First, verify default behavior: assertArrayEquals(expected( row("1", "xyz"), row(" "), row("true", "") ), rows); } @Test public void testCsvWithBlankLineSkipBlankLinesFeatureEnabled() throws Exception { String[][] rows = mapperForCsvAsArray() .with(CsvReadFeature.SKIP_EMPTY_LINES) .readValue(CSV_WITH_BLANK_LINE); // blank line is skipped assertArrayEquals(expected( row("1", "xyz"), row("true", "") ), rows); } @Test public void testCsvWithBlankLineAndCommentSkipBlankLinesFeatureDisabled() throws Exception { String[][] rows = mapperForCsvAsArray() .readValue(CSV_WITH_BLANK_LINE_AND_COMMENT); // First, verify default behavior: assertArrayEquals(expected( row("1", "xyz"), row(" "), row(" #comment"), row(""), row("true", "") ), rows); } // 14-Apr-2020, tatu: Due to [dataformats-text#191], can not retain leading spaces // when trimming empty lines and/or comments, so test changed for 2.11 @Test public void testCsvWithBlankLineAndCommentSkipBlankLinesFeatureEnabled() throws Exception { String[][] rows = mapperForCsvAsArray() .with(CsvReadFeature.SKIP_EMPTY_LINES) .readValue(CSV_WITH_BLANK_LINE_AND_COMMENT); // blank/empty lines are skipped assertArrayEquals(expected( row("1", "xyz"), // As per: [dataformats-text#191] // row(" #comment"), row("#comment"), row("true", "") ), rows); } @Test public void testCsvWithBlankLineAndCommentSkipBlankLinesFeatureEnabledAndAllowComments() throws Exception { String[][] rows = mapperForCsvAsArray() .with(CsvReadFeature.SKIP_EMPTY_LINES) .with(CsvReadFeature.ALLOW_COMMENTS) .readValue(CSV_WITH_BLANK_LINE_AND_COMMENT); // blank/empty/comment lines are skipped assertArrayEquals(expected( row("1", "xyz"), row("true", "") ), rows); } @Test public void testCsvWithFirstBlankLineSkipBlankLinesFeatureDisabled() throws Exception { String[][] rows = mapperForCsvAsArray() .readValue(CSV_WITH_FIRST_BLANK_LINE); // First, verify default behavior: assertArrayEquals(expected( row(""), row("1", "xyz"), row("true", "") ), rows); } @Test public void testCsvWithFirstBlankLineSkipBlankLinesFeatureEnabled() throws Exception { String[][] rows = mapperForCsvAsArray() .with(CsvReadFeature.SKIP_EMPTY_LINES) .readValue(CSV_WITH_FIRST_BLANK_LINE); // blank line is skipped assertArrayEquals(expected( row("1", "xyz"), row("true", "") ), rows); } @Test public void testCsvWithTrailingBlankLineSkipBlankLinesFeatureDisabled() throws Exception { String[][] rows = mapperForCsvAsArray() .readValue(CSV_WITH_TRAILING_BLANK_LINES); // First, verify default behavior: assertArrayEquals(expected( row("1", "xyz"), row("true", ""), row(" "), row("") ), rows); } @Test public void testCsvWithTrailingBlankLineSkipBlankLinesFeatureEnabled() throws Exception { String[][] rows = mapperForCsvAsArray() .with(CsvReadFeature.SKIP_EMPTY_LINES) .readValue(CSV_WITH_TRAILING_BLANK_LINES); // blank lines are skipped assertArrayEquals(expected( row("1", "xyz"), row("true", "") ), rows); } private ObjectReader mapperForCsvAsArray() { // when wrapped as an array, we'll get array of Lists: return mapperForCsv() .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY); } private String[][] expected(String[]... rowInputs) { return rowInputs; } private String[] row(String... cellInputs) { return cellInputs; } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyLines191Test.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.*; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; // [dataformats-text#191] // [dataformats-text#174] public class SkipEmptyLines191Test extends ModuleTestBase { // [dataformats-text#174] @JsonPropertyOrder({ "timestamp", "random" }) static class Row174 { private int timestamp; private String random; public int getTimestamp() { return timestamp; } public void setTimestamp(int timestamp) { this.timestamp = timestamp; } public String getRandom() { return random; } public void setRandom(String random) { this.random = random; } @Override public String toString() { return "Row{timestamp=" + timestamp + ", random='" + random + "'}"; } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final static CsvMapper MAPPER = new CsvMapper(); // [dataformats-text#174] @Test public void testEmptyLines174() throws Exception { final StringWriter sw = new StringWriter(50000); int lineCount = 0; final Random rnd = new Random(); while (lineCount < 4000) { sw.append("\"" + System.currentTimeMillis()/1000 + "\",\"" + randomString(rnd) + "\"\n"); ++lineCount; } final String doc = sw.toString(); ObjectReader objectReader = MAPPER .readerFor(Row174.class) .with(CsvReadFeature.SKIP_EMPTY_LINES) .with(MAPPER.schemaFor(Row174.class)); MappingIterator iterator = objectReader.readValues(doc); Row174 data = null; lineCount = 0; while (iterator.hasNext()) { ++lineCount; try { data = iterator.next(); } catch (Exception e) { fail("Failed on row #"+lineCount+", previous row: "+data); } } iterator.close(); } private String randomString(Random rnd) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < 10; ++i) { sb.append((char) ('A' + (rnd.nextInt() & 0xF))); } return sb.toString(); } // [dataformats-text#191]: IndexArrayOutOfBounds at 4000 @Test public void testBigCsvFile() throws Exception { final String COL_1 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; final String COL_2 = "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"; CsvSchema schema = CsvSchema .emptySchema() .withHeader() .withColumnSeparator(';') .withNullValue("null") .withComments(); try (Reader r = new StringReader(_generate4kDoc())) { List> result = MAPPER .readerFor(Map.class) .with(schema) .>readValues(r) .readAll(); for (Map row : result) { assertEquals(row.get("COL_1"), COL_1); assertEquals(row.get("COL_2"), COL_2); } } } private String _generate4kDoc() { StringBuilder sb = new StringBuilder(5000) .append("COL_1;COL_2\n") .append("# csv file with a newline at char 4000 (the buffer size) to verify a bug\n") .append("# LF has to be used for newlines to work\n") .append("# alignment chars to have the newline as the 4000s char: ----------------\n"); for (int i = 0; i < 40; ++i) { sb.append("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb\n"); } return sb.toString(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyRows368Test.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.FilterReader; import java.io.IOException; import java.io.StringReader; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; // for [dataformats-text#368]: Skip CSV rows with only empty values (commas only) public class SkipEmptyRows368Test extends ModuleTestBase { @JsonPropertyOrder({ "id", "color", "shape" }) protected static class Entry { public String id; public String color; public String shape; } // Basic case: row with only commas should be skipped @Test public void testSkipRowsWithOnlyCommas() throws Exception { final String CSV = "ID,Color,Shape\n" + "1,red,circle\n" + ",,\n" + "2,blue,square\n"; CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(Entry.class).withHeader(); MappingIterator it = mapper.readerFor(Entry.class) .with(schema) .with(CsvReadFeature.SKIP_EMPTY_ROWS) .readValues(CSV); assertTrue(it.hasNext()); Entry first = it.next(); assertEquals("1", first.id); assertEquals("red", first.color); assertEquals("circle", first.shape); assertTrue(it.hasNext()); Entry second = it.next(); assertEquals("2", second.id); assertEquals("blue", second.color); assertEquals("square", second.shape); // Should only have 2 entries, the comma-only row should be skipped assertEquals(false, it.hasNext()); it.close(); } // Array mode: row with only commas should be skipped @Test public void testSkipRowsWithOnlyCommasArrayMode() throws Exception { final String CSV = "1,red,circle\n" + ",,\n" + "2,blue,square\n"; String[][] rows = mapperForCsv() .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .with(CsvReadFeature.SKIP_EMPTY_ROWS) .readValue(CSV); assertArrayEquals(new String[][] { {"1", "red", "circle"}, {"2", "blue", "square"} }, rows); } // Verify feature is disabled by default (comma-only rows are NOT skipped) @Test public void testEmptyRowsNotSkippedByDefault() throws Exception { final String CSV = "1,red\n,,\n2,blue\n"; String[][] rows = mapperForCsv() .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValue(CSV); assertEquals(3, rows.length); assertArrayEquals(new String[]{"1", "red"}, rows[0]); assertArrayEquals(new String[]{"", "", ""}, rows[1]); assertArrayEquals(new String[]{"2", "blue"}, rows[2]); } // Commas with spaces are NOT considered empty rows (only consecutive separators qualify) @Test public void testRowsWithCommasAndSpacesNotSkipped() throws Exception { final String CSV = "1,red\n , , \n2,blue\n"; String[][] rows = mapperForCsv() .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .with(CsvReadFeature.SKIP_EMPTY_ROWS) .readValue(CSV); assertEquals(3, rows.length); } // Multiple consecutive empty rows @Test public void testSkipMultipleEmptyRows() throws Exception { final String CSV = "1,red\n,,\n,,\n2,blue\n"; String[][] rows = mapperForCsv() .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .with(CsvReadFeature.SKIP_EMPTY_ROWS) .readValue(CSV); assertArrayEquals(new String[][] { {"1", "red"}, {"2", "blue"} }, rows); } // Trailing empty row @Test public void testSkipTrailingEmptyRow() throws Exception { final String CSV = "1,red\n2,blue\n,,\n"; String[][] rows = mapperForCsv() .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .with(CsvReadFeature.SKIP_EMPTY_ROWS) .readValue(CSV); assertArrayEquals(new String[][] { {"1", "red"}, {"2", "blue"} }, rows); } // Leading empty row @Test public void testSkipLeadingEmptyRow() throws Exception { final String CSV = ",,\n1,red\n2,blue\n"; String[][] rows = mapperForCsv() .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .with(CsvReadFeature.SKIP_EMPTY_ROWS) .readValue(CSV); assertArrayEquals(new String[][] { {"1", "red"}, {"2", "blue"} }, rows); } // Test that an empty row at a buffer boundary is correctly handled. // Uses a Reader that delivers data in tiny chunks to force buffer refills // within the empty row. @Test public void testEmptyRowAtBufferBoundary() throws Exception { final String CSV = "1,red\n,,\n2,blue\n"; // Use a Reader that returns only 7 chars at a time ("1,red\n," then ",\n2,bl" etc.) // This forces the decoder's buffer to refill mid-row. StringReader base = new StringReader(CSV); FilterReader throttled = new FilterReader(base) { @Override public int read(char[] cbuf, int off, int len) throws IOException { return super.read(cbuf, off, Math.min(len, 7)); } }; CsvMapper mapper = mapperForCsv(); MappingIterator it = mapper .readerFor(String[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .with(CsvReadFeature.SKIP_EMPTY_ROWS) .readValues(throttled); assertTrue(it.hasNext()); assertArrayEquals(new String[]{"1", "red"}, it.next()); assertTrue(it.hasNext()); assertArrayEquals(new String[]{"2", "blue"}, it.next()); assertEquals(false, it.hasNext()); it.close(); } // Verify that a row starting with commas but containing real content is NOT skipped @Test public void testRowWithLeadingCommasNotSkipped() throws Exception { final String CSV = "1,red\n,,hello\n2,blue\n"; String[][] rows = mapperForCsv() .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .with(CsvReadFeature.SKIP_EMPTY_ROWS) .readValue(CSV); assertArrayEquals(new String[][] { {"1", "red"}, {"", "", "hello"}, {"2", "blue"} }, rows); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/StreamingCSVReadTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.*; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.core.JsonParser.NumberType; import tools.jackson.core.exc.StreamReadException; import tools.jackson.core.io.SerializedString; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Container for some low-level tests that use parser directly; * needed for exercising certain methods that are difficult to * trigger via data-binding */ public class StreamingCSVReadTest extends ModuleTestBase { private final CsvMapper VANILLA_CSV_MAPPER = mapperForCsv(); private final CsvSchema ABC_SCHEMA = CsvSchema.builder() .addColumn("a") .addColumn("b") .addColumn("c") .setUseHeader(false) .build(); protected CsvMapper csvMapper() { return VANILLA_CSV_MAPPER; } @Test public void testIntRead() throws Exception { _testInts(1, 59, -8); _testInts(10093525, -123456789, 123456789); _testInts(-123451, 0, -829); _testInts(Integer.MAX_VALUE, Integer.MIN_VALUE, 3); } @Test public void testLongRead() throws Exception { _testLongs(1L, -3L); _testLongs(1234567890L, -9876543212345679L); _testLongs(Long.MIN_VALUE, Long.MAX_VALUE); } @Test public void testFloatRead() throws Exception { _testDoubles(1.0, 125.375, -900.5); _testDoubles(10093525.125, -123456789.5, 123456789.0); _testDoubles(-123451.75, 0.0625, -829.5); } private void _testInts(int a, int b, int c) throws Exception { _testInts(false, a, b, c); _testInts(true, a, b, c); _testIntsExpected(false, a, b, c); _testIntsExpected(true, a, b, c); } private void _testLongs(long a, long b) throws Exception { _testLongs(false, a, b); _testLongs(true, a, b); } private void _testDoubles(double a, double b, double c) throws Exception { _testDoubles(false, a, b, c); _testDoubles(true, a, b, c); } private void _testInts(boolean useBytes, int a, int b, int c) throws Exception { CsvParser parser = _parser(String.format("%d,%d,%d\n", a, b, c), useBytes, ABC_SCHEMA); assertToken(JsonToken.START_OBJECT, parser.nextToken()); assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); StringWriter w = new StringWriter(); assertEquals(1, parser.getString(w)); assertEquals("a", w.toString()); String numStr = String.valueOf(a); assertEquals(numStr, parser.nextStringValue()); char[] ch = parser.getStringCharacters(); String str2 = new String(ch, parser.getStringOffset(), parser.getStringLength()); assertEquals(numStr, str2); w = new StringWriter(); assertEquals(numStr.length(), parser.getString(w)); assertEquals(numStr, w.toString()); // 31-May-2025, tatu: as per [dataformats-text#564] must coerce first assertTrue(parser.isExpectedNumberIntToken()); assertEquals(a, parser.getIntValue()); assertEquals((long) a, parser.getLongValue()); assertEquals("b", parser.nextName()); assertEquals(""+b, parser.nextStringValue()); assertTrue(parser.isExpectedNumberIntToken()); assertEquals((long) b, parser.getLongValue()); assertEquals(b, parser.getIntValue()); assertTrue(parser.nextName(new SerializedString("c"))); assertToken(JsonToken.VALUE_STRING, parser.nextToken()); assertTrue(parser.isExpectedNumberIntToken()); assertEquals(c, parser.getIntValue()); assertEquals((long) c, parser.getLongValue()); assertToken(JsonToken.END_OBJECT, parser.nextToken()); assertNull(parser.nextToken()); parser.close(); } private void _testIntsExpected(boolean useBytes, int a, int b, int c) throws Exception { try (CsvParser parser = _parser(String.format("%d,%d,%d\n", a, b, c), useBytes, ABC_SCHEMA)) { _verifyGetNumberTypeFail(parser, "null"); assertToken(JsonToken.START_OBJECT, parser.nextToken()); _verifyGetNumberTypeFail(parser, "START_OBJECT"); assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); _verifyGetNumberTypeFail(parser, "FIELD_NAME"); // Reported as String BUT may be coerced assertToken(JsonToken.VALUE_STRING, parser.nextToken()); // Exception before conversion try { parser.getIntValue(); fail("Should not pass"); } catch (StreamReadException e) { _verifyNonNumberTypeException(e, "VALUE_STRING"); } assertTrue(parser.isExpectedNumberIntToken()); assertEquals(a, parser.getIntValue()); assertToken(JsonToken.VALUE_NUMBER_INT, parser.currentToken()); assertEquals("b", parser.nextName()); assertToken(JsonToken.VALUE_STRING, parser.nextToken()); assertTrue(parser.isExpectedNumberIntToken()); assertEquals(NumberType.INT, parser.getNumberType()); assertEquals(b, parser.getIntValue()); assertToken(JsonToken.VALUE_NUMBER_INT, parser.currentToken()); assertEquals("c", parser.nextName()); assertToken(JsonToken.VALUE_STRING, parser.nextToken()); assertTrue(parser.isExpectedNumberIntToken()); assertEquals(NumberType.INT, parser.getNumberType()); assertEquals(c, parser.getIntValue()); assertToken(JsonToken.VALUE_NUMBER_INT, parser.currentToken()); assertToken(JsonToken.END_OBJECT, parser.nextToken()); _verifyGetNumberTypeFail(parser, "END_OBJECT"); parser.close(); _verifyGetNumberTypeFail(parser, "null"); assertNull(parser.currentToken()); } } private void _testLongs(boolean useBytes, long a, long b) throws Exception { CsvParser parser = _parser(String.format("%d,%d\n", a, b), useBytes, ABC_SCHEMA); assertToken(JsonToken.START_OBJECT, parser.nextToken()); assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); assertEquals(""+a, parser.nextStringValue()); // 31-May-2025, tatu: as per [dataformats-text#564] must coerce first assertTrue(parser.isExpectedNumberIntToken()); assertEquals(a, parser.getLongValue()); assertEquals("b", parser.nextName()); assertEquals(""+b, parser.nextStringValue()); // Exception before conversion try { parser.getLongValue(); fail("Should not pass"); } catch (StreamReadException e) { _verifyNonNumberTypeException(e, "VALUE_STRING"); } assertTrue(parser.isExpectedNumberIntToken()); assertEquals(b, parser.getLongValue()); assertToken(JsonToken.END_OBJECT, parser.nextToken()); assertNull(parser.nextToken()); parser.close(); } private void _testDoubles(boolean useBytes, double a, double b, double c) throws Exception { CsvParser parser = _parser(String.format("%s,%s,%s\n", a, b, c), useBytes, ABC_SCHEMA); assertToken(JsonToken.START_OBJECT, parser.nextToken()); assertToken(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("a", parser.currentName()); assertEquals(""+a, parser.nextStringValue()); // 31-May-2025, tatu: as per [dataformats-text#564] shouldn't work // assertEquals(a, parser.getDoubleValue()); // assertEquals((float) a, parser.getFloatValue()); assertEquals("b", parser.nextName()); assertEquals(""+b, parser.nextStringValue()); // assertEquals((float) b, parser.getFloatValue()); // assertEquals(b, parser.getDoubleValue()); assertTrue(parser.nextName(new SerializedString("c"))); assertToken(JsonToken.VALUE_STRING, parser.nextToken()); // assertEquals(c, parser.getDoubleValue()); // assertEquals((float) c, parser.getFloatValue()); assertToken(JsonToken.END_OBJECT, parser.nextToken()); assertNull(parser.nextToken()); parser.close(); } private CsvParser _parser(String csv, boolean useBytes, CsvSchema schema) throws IOException { JsonParser p; ObjectReader r = csvMapper().reader().with(schema); if (useBytes) { p = r.createParser(new ByteArrayInputStream(utf8(csv))); } else { p = r.createParser(csv); } return (CsvParser) p; } // In Jackson 3.x, non-Number token should NOT throw exception for parser.getNumberType() // but return null; private void _verifyGetNumberTypeFail(JsonParser p, String token) throws Exception { assertNull(p.getNumberType()); } private void _verifyNonNumberTypeException(Exception e, String token) throws Exception { verifyException(e, "Current token ("+token+") not numeric, cannot use numeric"); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserEscapes.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.Arrays; import java.util.List; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class TestParserEscapes extends ModuleTestBase { @JsonPropertyOrder({"id", "description"}) protected static class Desc { public String id, desc; } /* /********************************************************************** /* Test methods /********************************************************************** */ @Test public void testSimpleEscapesInQuotes() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(Desc.class).withColumnSeparator('|').withEscapeChar('\\'); final String id = "abc\\\\def"; // doubled for javac final String desc = "Desc with\\\nlinefeed"; String input = q(id)+"|"+q(desc)+"\n"; Desc result = mapper.reader(schema).forType(Desc.class).readValue(input); assertEquals("abc\\def", result.id); assertEquals("Desc with\nlinefeed", result.desc); } /* Specs are unclear as to whether escapes should work in unquoted values; * but since escape themselves are not officially supported, let's allow * them for now (can add a config setting if need be) */ @Test public void testSimpleEscapesInUnquoted() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(Desc.class).withColumnSeparator('|').withEscapeChar('\\'); final String id = "abc\\\\def"; // doubled for javac final String desc = "Desc with\\\nlinefeed"; String input = id+"|"+desc+"\n"; Desc result = mapper.reader(schema).forType(Desc.class).readValue(input); assertEquals("abc\\def", result.id); assertEquals("Desc with\nlinefeed", result.desc); } @Test public void testEscapesAtStartInUnquoted() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(Desc.class).withColumnSeparator('|').withEscapeChar('\\'); final String id = "\\|abcdef"; // doubled for javac final String desc = "Desc with\\\nlinefeed"; String input = id+"|"+desc+"\n"; Desc result = mapper.reader(schema).forType(Desc.class).readValue(input); assertEquals("|abcdef", result.id); assertEquals("Desc with\nlinefeed", result.desc); } // [dataformats-text#374]: suspected bug, was missing enabling of escape char @Test public void testEscaping374() throws Exception { CsvSchema schema = CsvSchema.emptySchema().withColumnSeparator(';') .withEscapeChar('\\'); CsvMapper mapper = CsvMapper.builder() .enable(CsvWriteFeature.ALWAYS_QUOTE_STRINGS) .enable(CsvWriteFeature.ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR) .enable(CsvReadFeature.WRAP_AS_ARRAY) .build(); List row1 = Arrays.asList("\"The\"", "foo"); List> content = Arrays.asList(row1); String csv = mapper.writer(schema).writeValueAsString(content); //String csv = a2q("'\\'The\\';'foo'\n"); MappingIterator> it = mapper .readerForListOf(String.class) .with(schema) .readValues(csv); List> rows = it.readAll(); assertEquals(1, rows.size()); assertEquals(row1, rows.get(0)); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserNoSchema.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.List; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonParser; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Test to verify that CSV content can be parsed without schema * (or more precisely: using Schema that does not define any columns); * if so, content will be exposed as a sequence of JSON Arrays, instead * of JSON Objects. */ public class TestParserNoSchema extends ModuleTestBase { /* /********************************************************************** /* Test methods /********************************************************************** */ @Test public void testUntypedAsSequence() throws Exception { CsvMapper mapper = mapperForCsv(); final String CSV = "1,null\nfoobar\n7,true\n"; JsonParser p = mapper.createParser(CSV); // as usual, reading elements as arrays requires wrapping, due to // how `MappingIterator` works MappingIterator it = mapper .readerFor(Object[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(CSV); Object[] row; assertTrue(it.hasNext()); row = it.next(); assertEquals(2, row.length); assertEquals("1", row[0]); assertEquals("null", row[1]); assertTrue(it.hasNext()); row = it.next(); assertEquals(1, row.length); assertEquals("foobar", row[0]); assertTrue(it.hasNext()); row = it.next(); assertEquals(2, row.length); assertEquals("7", row[0]); assertEquals("true", row[1]); assertFalse(it.hasNext()); p.close(); it.close(); } @Test public void testUntypedAsObjectArray() throws Exception { CsvMapper mapper = mapperForCsv(); // when wrapped as an array, we'll get array of Lists: Object[] rows = mapper.readerFor(Object[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValue( "1,\"xyz\"\n\ntrue,\n" ); assertEquals(3, rows.length); List row; row = (List) rows[0]; assertEquals(2, row.size()); assertEquals("1", row.get(0)); assertEquals("xyz", row.get(1)); row = (List) rows[1]; assertEquals(1, row.size()); assertEquals("", row.get(0)); row = (List) rows[2]; assertEquals(2, row.size()); assertEquals("true", row.get(0)); assertEquals("", row.get(1)); } @Test public void testUntypedAsStringArray() throws Exception { CsvMapper mapper = mapperForCsv(); // when wrapped as an array, we'll get array of Lists: String[][] rows = mapper .readerFor(String[][].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValue("1,\"xyz\"\n\ntrue,\n"); assertEquals(3, rows.length); String[] row; row = (String[]) rows[0]; assertEquals(2, row.length); assertEquals("1",row[0]); assertEquals("xyz", row[1]); row =(String[]) rows[1]; assertEquals(1, row.length); assertEquals("", row[0]); row = (String[])rows[2]; assertEquals(2, row.length); assertEquals("true", row[0]); assertEquals("", row[1]); } @Test public void testUntypedViaReadValues() throws Exception { CsvMapper mapper = mapperForCsv(); MappingIterator it = mapper.readerFor(String[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues("1,\"xyz\"\n\ntrue,\n"); assertTrue(it.hasNextValue()); String[] row = it.nextValue(); assertEquals(2, row.length); assertEquals("1",row[0]); assertEquals("xyz", row[1]); assertTrue(it.hasNextValue()); row = it.nextValue(); assertEquals(1, row.length); assertEquals("", row[0]); assertTrue(it.hasNextValue()); row = it.nextValue(); assertEquals(2, row.length); assertEquals("true", row[0]); assertEquals("", row[1]); assertFalse(it.hasNextValue()); it.close(); } @Test public void testUntypedWithHeaderAsMap() throws Exception { CsvMapper mapper = mapperForCsv(); MappingIterator> it = mapper .readerFor(Map.class) .with(mapper.schemaWithHeader()) .readValues("a,b\n1,2\n3,4\n"); Map first = it.nextValue(); assertNotNull(first); assertEquals("1", first.get("a")); assertEquals("2", first.get("b")); Map second = it.nextValue(); assertNotNull(first); assertEquals("3", second.get("a")); assertEquals("4", second.get("b")); assertFalse(it.hasNextValue()); it.close(); } /* Let's also allow varying number of columns, if no * schema has been defined. */ @Test public void testUntypedAsSequenceVarLengths() throws Exception { CsvMapper mapper = mapperForCsv(); final String CSV = "1,2\n1,2,3,4\n"; // 10-Oct-2017, tatu: We do need to enable "wrap-as-array" because we // are trying to read Array/Collection values. MappingIterator it = mapper .readerFor(String[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(CSV); Object[] row; assertTrue(it.hasNext()); row = it.next(); assertEquals(2, row.length); assertEquals("1", row[0]); assertEquals("2", row[1]); assertTrue(it.hasNext()); row = it.next(); assertEquals(4, row.length); assertEquals("1", row[0]); assertEquals("2", row[1]); assertEquals("3", row[2]); assertEquals("4", row[3]); assertFalse(it.hasNext()); it.close(); } @Test public void testDelimiterAtBufferBoundary() throws Exception { CsvMapper mapper = mapperForCsv(); final String col1 = "hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh" + "hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh" + "hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh" + "hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh"; final String col2 = "H"; // 10-Oct-2017, tatu: We do need to enable "wrap-as-array" because we // are trying to read Array/Collection values. String content = col1 + " ," + col2 +"\n" + col2 + "," + col1 + "\n"; MappingIterator it = mapper.readerFor(Object[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .with(CsvReadFeature.TRIM_SPACES) .readValues(content); Object[] row; assertTrue(it.hasNext()); row = it.next(); assertEquals(2, row.length); assertEquals(col1, row[0]); assertEquals(col2, row[1]); assertTrue(it.hasNext()); row = it.next(); assertEquals(2, row.length); assertEquals(col2, row[0]); assertEquals(col1, row[1]); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserQuotes.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.*; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class TestParserQuotes extends ModuleTestBase { @JsonPropertyOrder({"age", "name"}) protected static class AgeName { public int age; public String name; public AgeName() { } public AgeName(int age, String name) { this.age = age; this.name = name; } } @JsonPropertyOrder({"s1", "s2", "s3"}) protected static class ThreeString { public String s1, s2, s3; } /* /********************************************************************** /* Test methods /********************************************************************** */ @Test public void testSimpleQuotes() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(AgeName.class); AgeName user = mapper.reader(schema).forType(AgeName.class).readValue(" 13 ,\"Joe \"\"Sixpack\"\" Paxson\""); assertEquals(13, user.age); assertEquals("Joe \"Sixpack\" Paxson", user.name); } @Test public void testSimpleMultiLine() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(AgeName.class); MappingIterator it = mapper.reader(schema).forType(AgeName.class) .without(CsvReadFeature.WRAP_AS_ARRAY) .readValues( "-3,\"\"\"Unknown\"\"\"\n\"13\" ,\"Joe \"\"Sixpack\"\" Paxson\""); assertTrue(it.hasNext()); AgeName user = it.nextValue(); assertEquals(-3, user.age); assertEquals("\"Unknown\"", user.name); assertTrue(it.hasNext()); user = it.nextValue(); assertEquals(13, user.age); assertEquals("Joe \"Sixpack\" Paxson", user.name); assertFalse(it.hasNext()); it.close(); } // [dataformat-csv#32] @Test public void testDisablingQuotes() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(AgeName.class) .withoutQuoteChar() ; // First, read something and expect quotes to be retained final String RAW_NAME = "\"UNKNOWN\""; final String RAW_NAME2 = "a\"b"; MappingIterator it = mapper.reader(schema).forType(AgeName.class) .without(CsvReadFeature.WRAP_AS_ARRAY) .readValues("38,"+RAW_NAME+"\n" +"27,"+RAW_NAME2+"\n"); assertTrue(it.hasNext()); AgeName user = it.nextValue(); assertEquals(38, user.age); assertEquals(RAW_NAME, user.name); AgeName user2 = it.nextValue(); assertEquals(27, user2.age); assertEquals(RAW_NAME2, user2.name); assertFalse(it.hasNext()); it.close(); String csv = mapper.writer(schema).writeValueAsString(user).trim(); assertEquals("38,"+RAW_NAME, csv); } // for [dataformat-csv#117] @Test public void testDefaultSimpleQuotes() throws Exception { CsvMapper mapper = mapperForCsv(); // first without array wrapping: MappingIterator it = mapper.readerFor(String[].class) .without(CsvReadFeature.WRAP_AS_ARRAY) .readValues("\"te,st\""); assertTrue(it.hasNextValue()); String[] row = it.nextValue(); assertEquals(1, row.length); assertEquals("te,st", row[0]); // [dataformats-text#9] fixed assertFalse(it.hasNextValue()); it.close(); // then with array wrapping mapper = mapperForCsv(); it = mapper.readerFor(String[].class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues("\"te,st\""); assertTrue(it.hasNextValue()); row = it.nextValue(); assertEquals(1, row.length); assertEquals("te,st", row[0]); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserStrictQuoting.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; // Tests for [dataformat-csv#26] public class TestParserStrictQuoting extends ModuleTestBase { @JsonPropertyOrder({"a", "b"}) protected static class AB { public String a, b; public AB() { } public AB(String a, String b) { this.a = a; this.b = b; } } /* /********************************************************************** /* Test methods /********************************************************************** */ @Test public void testStrictQuoting() throws Exception { final String NUMS = "12345 6789"; final String LONG = NUMS + NUMS + NUMS + NUMS; // 40 chars should do it CsvMapper mapper = mapperForCsv(); assertFalse(mapper.tokenStreamFactory().isEnabled(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING)); CsvSchema schema = mapper.schemaFor(AB.class).withoutHeader(); final AB input = new AB("x", LONG); // with non-strict, should quote String csv = mapper.writer(schema).writeValueAsString(input); assertEquals(a2q("x,'"+LONG+"'"), csv.trim()); // should be possible to hot-swap // and with strict/optimal, no quoting csv = mapper.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(input); assertEquals(a2q("x,"+LONG), csv.trim()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserWorkarounds.java ================================================ package tools.jackson.dataformat.csv.deser; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.*; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests that verify that various minor workarounds * work as expected. */ public class TestParserWorkarounds extends ModuleTestBase { /** * Test for [#1]; in case we get an extra empty element, * we can just ignore it. */ @Test public void testIgnoringOptionalTrailing() throws Exception { ObjectMapper mapper = mapperForCsv(); CsvSchema schema = CsvSchema.builder() .addColumn("first") .addColumn("second") .build(); MappingIterator> it = mapper.reader(schema).forType(Map.class).readValues( "a,b\nc,d,\ne,f, \nfoo,bar,x\n"); assertTrue(it.hasNext()); // first should have no problems anyway: Map result = it.nextValue(); assertEquals(2, result.size()); assertEquals("a", result.get("first")); assertEquals("b", result.get("second")); // but second and third should skip empty trailing values assertTrue(it.hasNextValue()); result = it.nextValue(); assertEquals(2, result.size()); assertEquals("c", result.get("first")); assertEquals("d", result.get("second")); assertTrue(it.hasNextValue()); result = it.nextValue(); assertEquals(2, result.size()); assertEquals("e", result.get("first")); assertEquals("f", result.get("second")); // but then the fourth row should give an error; last entry not empty assertTrue(it.hasNextValue()); try { result = it.nextValue(); fail("Expected an error"); } catch (CsvReadException e) { verifyException(e, "Too many entries"); } it.close(); } // also ensure [databind-csv#1] also works appropriately for failing case @Test public void testOptionalTrailFailing() throws Exception { ObjectMapper mapper = mapperForCsv(); CsvSchema schema = CsvSchema.builder() .addColumn("first") .addColumn("second") .build(); MappingIterator> it = mapper.reader(schema).forType(Map.class).readValues( "a,b,\nc,d,,,\n"); assertTrue(it.hasNext()); // first should have no problems with extra entry Map result = it.nextValue(); assertEquals(2, result.size()); assertEquals("a", result.get("first")); assertEquals("b", result.get("second")); // but second is problematic try { result = it.nextValue(); fail("Should have failed"); } catch (CsvReadException e) { verifyException(e, "Too many entries: expected at most 2"); } it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TrailingCommaCSVTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class TrailingCommaCSVTest extends ModuleTestBase { @JsonPropertyOrder({ "a", "b" }) static class StringPair { public String a, b; } static class Person { public String name; public int age; } private final CsvMapper MAPPER = mapperForCsv(); @Test public void testDisallowTrailingComma() throws Exception { final String INPUT = "s,t\nd,e,\n"; final CsvSchema schema = MAPPER.schemaFor(StringPair.class); MappingIterator it = MAPPER.readerFor(StringPair.class) .with(schema) .without(CsvReadFeature.ALLOW_TRAILING_COMMA) .readValues(INPUT); it.nextValue(); try { it.nextValue(); fail("Should not have passed"); } catch (CsvReadException e) { verifyException(e, "Too many entries: expected at most 2 (value #2 (0 chars) \"\")"); } it.close(); } // [dataformats-text#204]: should also work for header line @Test public void testWithTrailingHeaderComma() throws Exception { final String INPUT = "name,age,\n" + "Roger,27,\n" + "Chris,53,\n"; final CsvSchema schema = CsvSchema.emptySchema().withHeader(); MappingIterator persons = MAPPER .readerFor(Person.class) .with(CsvReadFeature.ALLOW_TRAILING_COMMA) .with(schema) . readValues(INPUT); assertTrue(persons.hasNextValue()); Person p = persons.nextValue(); assertNotNull(p); assertEquals("Roger", p.name); assertTrue(persons.hasNextValue()); p = persons.nextValue(); assertNotNull(p); assertEquals(53, p.age); assertFalse(persons.hasNextValue()); persons.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/UTF8ReaderTest.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.*; import java.nio.charset.StandardCharsets; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.core.io.ContentReference; import tools.jackson.core.io.IOContext; import tools.jackson.core.util.BufferRecycler; import tools.jackson.dataformat.csv.impl.UTF8Reader; import static org.junit.jupiter.api.Assertions.assertEquals; public class UTF8ReaderTest { @Test public void testSurrogatePairAtBufferBoundary() throws IOException { // Test that pending surrogate doesn't cause ArrayIndexOutOfBoundsException // when buffer has no space. Uses emoji (4-byte UTF-8) to create surrogate pair. String emojiStr = "\uD83D\uDE00"; // U+1F600, encoded as surrogate pair in UTF-16 byte[] utf8Bytes = emojiStr.getBytes(StandardCharsets.UTF_8); IOContext ioCtxt = new IOContext( StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), new BufferRecycler(), ContentReference.rawReference(utf8Bytes), false, JsonEncoding.UTF8); UTF8Reader reader = new UTF8Reader(ioCtxt, new ByteArrayInputStream(utf8Bytes), true); // First read with buffer size 1 - should read first surrogate char[] buf1 = new char[1]; int read1 = reader.read(buf1, 0, 1); assertEquals(1, read1); // Second read with buffer size 0 - should return 0, not throw exception char[] buf0 = new char[0]; int read0 = reader.read(buf0, 0, 0); assertEquals(0, read0); // Third read with buffer size 1 - should read second surrogate char[] buf2 = new char[1]; int read2 = reader.read(buf2, 0, 1); assertEquals(1, read2); // Verify we got the emoji correctly String result = new String(buf1) + new String(buf2); assertEquals(emojiStr, result); reader.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/UnicodeCSVRead497Test.java ================================================ package tools.jackson.dataformat.csv.deser; import java.io.ByteArrayInputStream; import java.nio.charset.StandardCharsets; import org.junit.jupiter.api.Test; import tools.jackson.databind.JsonNode; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; // [dataformats-text#497]: 3-byte UTF-8 character at end of content // (fixed for YAML in 2.20) public class UnicodeCSVRead497Test extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); // [dataformats-text#497] @Test public void testUnicodeAtEnd() throws Exception { _testUnicodeAtEnd(3999); _testUnicodeAtEnd(4000); _testUnicodeAtEnd(4001); } private void _testUnicodeAtEnd(int len) throws Exception { String doc = buildTestString(len); JsonNode o = MAPPER.reader() //.with(schema) .readTree(doc.getBytes(StandardCharsets.UTF_8)); assertNotNull(o); assertTrue(o.isArray()); assertEquals(1, o.size()); assertEquals(o.get(0).stringValue(), doc); } @Test public void testUnicodeAtEnd2() throws Exception { _testUnicodeAtEnd2(3999); _testUnicodeAtEnd2(4000); _testUnicodeAtEnd2(4001); } private void _testUnicodeAtEnd2(int len) throws Exception { String doc = buildTestString2(len); final byte[] bytes = doc.getBytes(StandardCharsets.UTF_8); JsonNode o = MAPPER.reader() //.with(schema) .readTree(bytes); assertNotNull(o); assertTrue(o.isArray()); assertEquals(1, o.size()); assertEquals(o.get(0).stringValue(), doc); // check byte array was not modified assertArrayEquals(doc.getBytes(StandardCharsets.UTF_8), bytes); } @Test public void testUnicodeAtEndStream() throws Exception { _testUnicodeAtEndStream(3999); _testUnicodeAtEndStream(4000); _testUnicodeAtEndStream(4001); } private void _testUnicodeAtEndStream(int len) throws Exception { String doc = buildTestString(len); JsonNode o = MAPPER.reader() //.with(schema) .readTree(new ByteArrayInputStream(doc.getBytes(StandardCharsets.UTF_8))); assertNotNull(o); assertTrue(o.isArray()); assertEquals(1, o.size()); assertEquals(o.get(0).stringValue(), doc); } @Test public void testUnicodeAtEndStream2() throws Exception { _testUnicodeAtEndStream2(3998); _testUnicodeAtEndStream2(3999); _testUnicodeAtEndStream2(4000); _testUnicodeAtEndStream2(4001); } private void _testUnicodeAtEndStream2(int len) throws Exception { String doc = buildTestString2(len); JsonNode o = MAPPER.reader() //.with(schema) .readTree(new ByteArrayInputStream(doc.getBytes(StandardCharsets.UTF_8))); assertNotNull(o); assertTrue(o.isArray()); assertEquals(1, o.size()); assertEquals(o.get(0).stringValue(), doc); } // // // Helper methods private static String buildTestString(int len) { StringBuilder sb = new StringBuilder(len + 1); for (int i = 0; i < len; ++i) { sb.append('a'); } sb.append('\u5496'); return sb.toString(); } private static String buildTestString2(int len) { StringBuilder sb = new StringBuilder(len + 2); for (int i = 0; i < len; ++i) { sb.append('a'); } sb.append('\u5496'); sb.append('b'); return sb.toString(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/UnwrappingWithCSVTest.java ================================================ package tools.jackson.dataformat.csv.deser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonUnwrapped; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; // for #12 public class UnwrappingWithCSVTest extends ModuleTestBase { @JsonPropertyOrder({"x", "y"}) final static class Location { public int x; public int y; public Location() { } public Location(int x, int y) { this.x = x; this.y = y; } } // IMPORTANT: ordering DOES matter here @JsonPropertyOrder({ "name", "location" }) static class Unwrapping { public String name; @JsonUnwrapped(prefix="loc.") public Location location; public Unwrapping() { } public Unwrapping(String str, int x, int y) { name = str; location = new Location(x, y); } } /* /********************************************************** /* Tests /********************************************************** */ /** * Simple test to verify that explicit schema mapping works fine * with unwrapped entities */ @Test public void testSimpleUnwrappingRoundtrip() throws Exception { final String CSV = "Joe,15,27\n"; ObjectMapper mapper = mapperForCsv(); CsvSchema schema = CsvSchema.builder() .addColumn("name") .addColumn("loc.x") .addColumn("loc.y") .build(); Unwrapping wrapper = mapper.reader(schema).forType(Unwrapping.class).readValue(CSV); assertNotNull(wrapper); assertNotNull(wrapper.location); assertEquals(15, wrapper.location.x); assertEquals(27, wrapper.location.y); // should also write out the same way assertEquals(CSV, mapper.writer(schema).writeValueAsString(wrapper)); } /** * Another simple test, but this time auto-generating Schema from * POJO. */ /* NOTE: the problem here is that Unwrapped properties should be further * detected to find sub-properties -- but that information is not yet * available via BeanProperty/POJOPropertyBuilder. But it needs to be * made; and when this occurs, we can handle this case reasonably well. */ @Test public void testSimpleWithAutoSchema() throws Exception { final String CSV = "Henry,28,12\n"; CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(Unwrapping.class); Unwrapping wrapper = mapper.reader(schema).forType(Unwrapping.class).readValue(CSV); assertNotNull(wrapper); assertNotNull(wrapper.location); assertEquals(28, wrapper.location.x); assertEquals(12, wrapper.location.y); // should also write out the same way assertEquals(CSV, mapper.writer(schema).writeValueAsString(wrapper)); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/filter/JsonViewFilteringTest.java ================================================ package tools.jackson.dataformat.csv.filter; import java.io.BufferedReader; import java.io.StringReader; import java.util.Arrays; import java.util.List; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonFilter; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonView; import tools.jackson.databind.ser.std.SimpleBeanPropertyFilter.FilterExceptFilter; import tools.jackson.dataformat.csv.*; import tools.jackson.databind.DeserializationFeature; import tools.jackson.databind.ser.std.SimpleFilterProvider; import static org.junit.jupiter.api.Assertions.*; public class JsonViewFilteringTest extends ModuleTestBase { // Classes that represent views static class ViewA { } static class ViewAA extends ViewA { } static class ViewB { } static class ViewBB extends ViewB { } @JsonPropertyOrder({ "a", "aa", "b" }) static class Bean { @JsonView({ ViewA.class, ViewB.class }) public String a = "1"; @JsonView({ViewAA.class }) public String aa = "2"; @JsonView(ViewB.class) public String b = "3"; } static final String COMPANY_FILTER = "COMPANY_FILTER"; @JsonPropertyOrder({ "id", "name", "ticker" }) @JsonFilter(COMPANY_FILTER) public static class Company { public int id; public String name; public String ticker; Company() { } Company(int id, String name, String ticker) { this.id = id; this.name = name; this.ticker = ticker; } } /* /********************************************************** /* Test methods /********************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); @Test public void testWithJsonView() throws Exception { CsvSchema schema = MAPPER.schemaFor(Bean.class).withLineSeparator("\n").withHeader(); String actual = MAPPER.writer(schema).withView(ViewB.class).writeValueAsString(new Bean()); // System.out.println(actual); BufferedReader br = new BufferedReader(new StringReader(actual.trim())); assertEquals("a,aa,b", br.readLine()); assertEquals("1,,3", br.readLine()); assertNull(br.readLine()); // plus read back? final String INPUT = "a,aa,b\n5,6,7\n"; Bean result = MAPPER .readerFor(Bean.class) .with(schema) .without(DeserializationFeature.FAIL_ON_UNEXPECTED_VIEW_PROPERTIES) .withView(ViewB.class).readValue(INPUT); assertEquals("5", result.a); // due to filtering, ought to use default assertEquals("2", result.aa); assertEquals("7", result.b); } @Test public void testSchemaWithJsonViewSerialization() throws Exception { CsvSchema schema = MAPPER.schemaForWithView(Bean.class, ViewB.class).withLineSeparator("\n").withHeader(); String actual = MAPPER.writer(schema).withView(ViewB.class).writeValueAsString(new Bean()); MAPPER.writer(schema).withView(ViewB.class); BufferedReader br = new BufferedReader(new StringReader(actual.trim())); assertEquals("a,b", br.readLine()); assertEquals("1,3", br.readLine()); assertNull(br.readLine()); } @Test public void testSchemaWithJsonViewDeserialization() throws Exception { CsvSchema schema = MAPPER.schemaForWithView(Bean.class, ViewB.class).withLineSeparator("\n").withHeader(); final String input = "a,b\n5,7\n"; Bean result = MAPPER.readerFor(Bean.class).with(schema).withView(ViewB.class).readValue(input); assertEquals("5", result.a); // due to filtering, ought to use default assertEquals("2", result.aa); assertEquals("7", result.b); } @Test public void testSchemaWithJsonViewDeserializationFail() throws Exception { CsvSchema schema = MAPPER.schemaForWithView(Bean.class, ViewB.class).withLineSeparator("\n").withHeader(); final String input = "a,aa,b\n5,6,7\n"; try { MAPPER.readerFor(Bean.class).with(schema).withView(ViewB.class).readValue(input); fail(); } catch (CsvReadException e) { verifyException(e, "Too many entries: expected at most 2"); } } @Test public void testWithJsonFilter() throws Exception { CsvSchema schema = MAPPER.schemaFor(Company.class).withLineSeparator("\n").withHeader(); SimpleFilterProvider filterProvider = new SimpleFilterProvider() .addFilter(COMPANY_FILTER, FilterExceptFilter.filterOutAllExcept("name", "ticker")); List companies = Arrays.asList( new Company(1, "name1", "ticker1") , new Company(2, "name2", "ticker2") , new Company(3, "name3", "ticker3")); String actual = MAPPER.writer(filterProvider).with(schema).writeValueAsString(companies); // System.out.println(actual); BufferedReader br = new BufferedReader(new StringReader(actual.trim())); assertEquals("id,name,ticker", br.readLine()); assertEquals(",name1,ticker1", br.readLine()); assertEquals(",name2,ticker2", br.readLine()); assertEquals(",name3,ticker3", br.readLine()); assertNull(br.readLine()); } @Test public void testWithJsonFilterFieldSuppressed() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("name") .addColumn("ticker") .setLineSeparator("\n").setUseHeader(true) .build(); SimpleFilterProvider filterProvider = new SimpleFilterProvider() .addFilter(COMPANY_FILTER, FilterExceptFilter.filterOutAllExcept("name", "ticker")); List companies = Arrays.asList( new Company(1, "name1", "ticker1") , new Company(2, "name2", "ticker2") , new Company(3, "name3", "ticker3")); String actual = MAPPER.writer(filterProvider).with(schema).writeValueAsString(companies); BufferedReader br = new BufferedReader(new StringReader(actual.trim())); assertEquals("name,ticker", br.readLine()); assertEquals("name1,ticker1", br.readLine()); assertEquals("name2,ticker2", br.readLine()); assertEquals("name3,ticker3", br.readLine()); assertNull(br.readLine()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/filter/StreamingDecoratorsTest.java ================================================ package tools.jackson.dataformat.csv.filter; import java.io.*; import java.util.Arrays; import org.junit.jupiter.api.Test; import tools.jackson.databind.MappingIterator; import tools.jackson.databind.SequenceWriter; import tools.jackson.dataformat.csv.*; import tools.jackson.dataformat.csv.testutil.PrefixInputDecorator; import tools.jackson.dataformat.csv.testutil.PrefixOutputDecorator; import static org.junit.jupiter.api.Assertions.*; public class StreamingDecoratorsTest extends ModuleTestBase { @Test public void testInputDecorators() throws IOException { final byte[] DOC = utf8("foo,"); final CsvMapper mapper = mapperBuilder( streamFactoryBuilder().inputDecorator(new PrefixInputDecorator(DOC)) .enable(CsvReadFeature.WRAP_AS_ARRAY) .build()) .build(); try (MappingIterator r = mapper.readerFor(String[].class) .readValues(utf8("bar"))) { assertTrue(r.hasNext()); String[] row = r.nextValue(); assertEquals(2, row.length); assertEquals("foo", row[0]); assertEquals("bar", row[1]); assertFalse(r.hasNext()); } // and then via Reader as well try (MappingIterator r = mapper.readerFor(String[].class) .readValues("zipfoo")) { assertTrue(r.hasNext()); String[] row = r.nextValue(); assertEquals(2, row.length); assertEquals("foo", row[0]); assertEquals("zipfoo", row[1]); assertFalse(r.hasNext()); } } @Test public void testOutputDecorators() throws IOException { final byte[] DOC = utf8("a,b\n"); final CsvMapper mapper = mapperBuilder( streamFactoryBuilder().outputDecorator(new PrefixOutputDecorator(DOC)) .enable(CsvReadFeature.WRAP_AS_ARRAY) .build()) .build(); ByteArrayOutputStream bytes = new ByteArrayOutputStream(); try (SequenceWriter w = mapper.writer().writeValues(bytes)) { w.write(Arrays.asList("first", "second")); } assertEquals("a,b\nfirst,second", bytes.toString("UTF-8").trim()); // and same with char-backed too StringWriter sw = new StringWriter(); try (SequenceWriter w = mapper.writer().writeValues(sw)) { w.write(Arrays.asList("x", "yz")); } assertEquals("a,b\nx,yz", sw.toString().trim()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz499695465Test.java ================================================ package tools.jackson.dataformat.csv.fuzz; import org.junit.jupiter.api.Test; import tools.jackson.core.JacksonException; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.csv.ModuleTestBase; public class CSVFuzz499695465Test extends ModuleTestBase { // https://issues.oss-fuzz.com/issues/499695465 @Test public void testReadTree() throws Exception { ObjectMapper mapper = mapperForCsv(); byte[] input = readResource("/data/clusterfuzz-testcase-minimized-CSVFuzzer-499695465.csv"); try { mapper.readTree(input); // Ok; don't care about content, just buffer reads } catch (JacksonException e) { verifyException(e, "Unexpected character"); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz50036Test.java ================================================ package tools.jackson.dataformat.csv.fuzz; import java.io.ByteArrayInputStream; import org.junit.jupiter.api.Test; import tools.jackson.core.JacksonException; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.assertj.core.api.Assertions.fail; import static org.junit.jupiter.api.Assertions.assertArrayEquals; /** * Collection of OSS-Fuzz found issues for CSV format module. */ public class CSVFuzz50036Test extends ModuleTestBase { private final CsvMapper CSV_MAPPER = mapperForCsv(); private final byte[] INPUT = new byte[] { 0x20, (byte) 0xCD }; private final byte[] CLONED = INPUT.clone(); // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50036 @Test public void testUTF8Decoding50036() throws Exception { try { CSV_MAPPER.readTree(INPUT); fail("Should not pass"); /* } catch (JacksonException e) { verifyException(e, "End-of-input after first 1 byte"); verifyException(e, "of a UTF-8 character"); */ } catch (JacksonException e) { verifyException(e, "Unexpected EOF in the middle of a multi-byte UTF-8 character"); // check input was not modified assertArrayEquals(CLONED, INPUT); } } @Test public void testUTF8Decoding50036Stream() throws Exception { try { CSV_MAPPER.readTree(new ByteArrayInputStream(INPUT)); fail("Should not pass"); } catch (JacksonException e) { verifyException(e, "Unexpected EOF in the middle of a multi-byte UTF-8 character"); // check input was not modified assertArrayEquals(CLONED, INPUT); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz50402Test.java ================================================ package tools.jackson.dataformat.csv.fuzz; import org.junit.jupiter.api.Test; import tools.jackson.core.JacksonException; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.csv.ModuleTestBase; public class CSVFuzz50402Test extends ModuleTestBase { // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50402 @Test public void testReadBoundary50402() throws Exception { ObjectMapper mapper = mapperForCsv(); byte[] input = readResource("/data/fuzz-50402.csv"); try { mapper.readTree(input); // Ok; don't care about content, just buffer reads } catch (JacksonException e) { verifyException(e, "Unexpected character"); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVBigNumberReadLimitsTest.java ================================================ package tools.jackson.dataformat.csv.limits; import java.math.BigDecimal; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonUnwrapped; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; // Tests copied from databind "JDKNumberDeserTest" (only a small subset) public class CSVBigNumberReadLimitsTest extends ModuleTestBase { // [databind#2784] static class BigDecimalHolder2784 { public BigDecimal value; } static class NestedBigDecimalHolder2784 { @JsonUnwrapped public BigDecimalHolder2784 holder; } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = newObjectMapper(); @Test public void testVeryBigDecimalUnwrapped() throws Exception { final int len = 1200; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append(1); } final String value = sb.toString(); CsvSchema schema = MAPPER.schemaFor(NestedBigDecimalHolder2784.class).withHeader() .withStrictHeaders(true); final String DOC = "value\n" + value + "\n"; try { MAPPER.readerFor(NestedBigDecimalHolder2784.class) .with(schema) .readValue(DOC); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "Number value length (1200) exceeds the maximum allowed"); } } @Test public void testVeryBigDecimalUnwrappedWithNumLenUnlimited() throws Exception { final int len = 1200; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append(1); } final String value = sb.toString(); CsvFactory factory = CsvFactory.builder() .streamReadConstraints(StreamReadConstraints.builder().maxNumberLength(Integer.MAX_VALUE).build()) .build(); CsvMapper mapper = CsvMapper.builder(factory).build(); CsvSchema schema = mapper.schemaFor(NestedBigDecimalHolder2784.class).withHeader() .withStrictHeaders(true); final String DOC = "value\n" + value + "\n"; NestedBigDecimalHolder2784 result = mapper.readerFor(NestedBigDecimalHolder2784.class) .with(schema) .readValue(DOC); assertEquals(new BigDecimal(value), result.holder.value); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVBigStringLimitsTest.java ================================================ package tools.jackson.dataformat.csv.limits; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.CsvFactory; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvReadFeature; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; public class CSVBigStringLimitsTest extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); private final static int TOO_LONG_STRING_VALUE_LEN = StreamReadConstraints.DEFAULT_MAX_STRING_LEN + 100; private CsvMapper newCsvMapperWithUnlimitedStringSizeSupport() { CsvFactory csvFactory = CsvFactory.builder() .streamReadConstraints(StreamReadConstraints.builder().maxStringLength(Integer.MAX_VALUE).build()) .build(); return CsvMapper.builder(csvFactory).build(); } @Test public void testBigString() throws Exception { try { MappingIterator> it = MAPPER .readerForListOf(String.class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(generateCsv(TOO_LONG_STRING_VALUE_LEN)); it.readAll(); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { final String message = e.getMessage(); assertTrue(message.startsWith("String value length"), "unexpected exception message: " + message); assertTrue(message.contains("exceeds the maximum allowed ("), "unexpected exception message: " + message); } } @Test public void testBiggerString() throws Exception { try { MappingIterator> it = MAPPER .readerForListOf(String.class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(generateCsv(TOO_LONG_STRING_VALUE_LEN)); it.readAll(); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { final String message = e.getMessage(); // this test fails when the TextBuffer is being resized, so we don't yet know just how big the string is // so best not to assert that the String length value in the message is the full 20_000_000 value assertTrue(message.startsWith("String value length"), "unexpected exception message: " + message); assertTrue(message.contains("exceeds the maximum allowed ("), "unexpected exception message: " + message); } } @Test public void testUnlimitedString() throws Exception { final int len = TOO_LONG_STRING_VALUE_LEN; MappingIterator> it = newCsvMapperWithUnlimitedStringSizeSupport() .readerForListOf(String.class) .with(CsvReadFeature.WRAP_AS_ARRAY) .readValues(generateCsv(len)); List> results = it.readAll(); assertEquals(1, results.size()); assertEquals(1, results.get(0).size()); assertEquals(len, results.get(0).get(0).length()); } private String generateCsv(final int len) { final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append('a'); } return sb.toString(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVLargeDocReadLimitsTest.java ================================================ package tools.jackson.dataformat.csv.limits; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonParser; import tools.jackson.core.ObjectReadContext; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.dataformat.csv.CsvFactory; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.fail; // Tests for StreamReadConstraints.maxDocumentLength() enforcement in CSV parser public class CSVLargeDocReadLimitsTest extends ModuleTestBase { private static final int DOC_LEN_LIMIT = 10_000; private CsvFactory csvFactoryWithDocLenLimit(long limit) { return CsvFactory.builder() .streamReadConstraints(StreamReadConstraints.builder() .maxDocumentLength(limit) .build()) .build(); } @Test public void testDocumentExceedingLimitFails() throws Exception { final String doc = generateCsv(DOC_LEN_LIMIT + 5_000); CsvFactory f = csvFactoryWithDocLenLimit(DOC_LEN_LIMIT); try (JsonParser p = f.createParser(ObjectReadContext.empty(), doc)) { while (p.nextToken() != null) { } fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "Document length"); verifyException(e, "exceeds the maximum allowed ("); } } @Test public void testDocumentWithinLimitSucceeds() throws Exception { final String doc = generateCsv(1_000); CsvFactory f = csvFactoryWithDocLenLimit(DOC_LEN_LIMIT); try (JsonParser p = f.createParser(ObjectReadContext.empty(), doc)) { while (p.nextToken() != null) { } } } private String generateCsv(int targetLen) { // "value1,value2,value3\n" = 22 chars per row final String row = "value1,value2,value3\n"; final StringBuilder sb = new StringBuilder(targetLen + row.length()); while (sb.length() < targetLen) { sb.append(row); } return sb.toString(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVNameLengthLimitsTest.java ================================================ package tools.jackson.dataformat.csv.limits; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.databind.MappingIterator; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for {@link StreamReadConstraints#validateNameLength(int)} enforcement * in CSV header parsing. * * @see [dataformats-text#634] */ public class CSVNameLengthLimitsTest extends ModuleTestBase { private final static int MAX_NAME_LEN = 100; private final CsvMapper MAPPER = CsvMapper.builder( CsvFactory.builder() .streamReadConstraints(StreamReadConstraints.builder() .maxNameLength(MAX_NAME_LEN) .build()) .build()) .build(); // Test with header-from-schema path (schema has columns, useHeader, reordersColumns) @Test public void testHeaderNameTooLong_withReorder() throws Exception { final String longName = "a".repeat(MAX_NAME_LEN + 50); final String csv = longName + ",b\n1,2\n"; CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn(longName) .addColumn("b") .build(); try { MappingIterator> it = MAPPER.readerForListOf(String.class) .with(schema) .readValues(csv); it.readAll(); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "Name length"); verifyException(e, "exceeds the maximum allowed"); } } // Test with header-from-schema, strict headers path @Test public void testHeaderNameTooLong_strictHeaders() throws Exception { final String longName = "a".repeat(MAX_NAME_LEN + 50); final String csv = longName + ",b\n1,2\n"; CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .setStrictHeaders(true) .addColumn(longName) .addColumn("b") .build(); try { MappingIterator> it = MAPPER.readerForListOf(String.class) .with(schema) .readValues(csv); it.readAll(); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "Name length"); verifyException(e, "exceeds the maximum allowed"); } } // Test with non-strict, non-reorder path (schema has columns, header skipped but validated) @Test public void testHeaderNameTooLong_noReorder() throws Exception { final String longName = "a".repeat(MAX_NAME_LEN + 50); final String csv = longName + ",b\n1,2\n"; CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .addColumn(longName) .addColumn("b") .build(); try { MappingIterator> it = MAPPER.readerForListOf(String.class) .with(schema) .readValues(csv); it.readAll(); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "Name length"); verifyException(e, "exceeds the maximum allowed"); } } // Test that names within the limit work fine @Test public void testHeaderNameWithinLimit() throws Exception { final String name = "a".repeat(MAX_NAME_LEN); final String csv = name + ",b\nvalue1,value2\n"; CsvSchema schema = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .addColumn(name) .addColumn("b") .build(); // Should complete without exception MappingIterator it = MAPPER.readerFor(Object.class) .with(schema) .readValues(csv); assertTrue(it.hasNextValue()); it.nextValue(); assertFalse(it.hasNextValue()); it.close(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/schema/CsvSchemaTest.java ================================================ package tools.jackson.dataformat.csv.schema; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.dataformat.csv.*; import tools.jackson.dataformat.csv.CsvSchema.Column; import static org.junit.jupiter.api.Assertions.*; public class CsvSchemaTest extends ModuleTestBase { @JsonPropertyOrder({ "a", "b", "c", "d" }) static class Mixed { public int a, b, c, d; } @JsonPropertyOrder({ "a", "b", "c" }) static class ArrayWrapper { public int[] a; public int b; public List c; } // for [dataformat-csv#74] static class Point { public int y; public int x; } @JsonPropertyOrder() public static class PointWithAnnotation extends Point {} // for [dataformats-text#142] interface Named { public String getFirstName(); public String getLastName(); } static abstract class YZ { public abstract int getY(); public abstract int getZ(); } // for [dataformats-text#115] static class PointWithExplicitIndices115 { public int z; @JsonProperty(required = true, value = "y", index = 1) public int y; @JsonProperty(required = true, value = "x", index = 2) public int x; } /* /********************************************************************** /* Test methods /********************************************************************** */ final CsvMapper MAPPER = mapperForCsv(); @Test public void testUserWithTypedAutoSchema() throws Exception { CsvSchema schema = MAPPER.typedSchemaFor(FiveMinuteUser.class); assertEquals("[\"firstName\",\"lastName\",\"gender\",\"verified\",\"userImage\"]", schema.getColumnDesc()); assertEquals(5, schema.size()); Iterator it = schema.iterator(); CsvSchema.Column col; col = it.next(); assertEquals("firstName", col.getName()); assertEquals(CsvSchema.ColumnType.STRING, col.getType()); col = it.next(); assertEquals("lastName", col.getName()); assertEquals(CsvSchema.ColumnType.STRING, col.getType()); col = it.next(); assertEquals("gender", col.getName()); assertEquals(CsvSchema.ColumnType.NUMBER_OR_STRING, col.getType()); col = it.next(); assertEquals("verified", col.getName()); assertEquals(CsvSchema.ColumnType.BOOLEAN, col.getType()); col = it.next(); assertEquals("userImage", col.getName()); assertEquals(CsvSchema.ColumnType.STRING, col.getType()); assertFalse(it.hasNext()); // Then verify linkage _verifyLinks(schema); // and then modify it a bit CsvSchema.Builder b = schema.rebuild(); b.removeColumn(1); // lastName; assertEquals(4, b.build().size()); } @Test public void testArrayWithTypedAutoSchema() throws Exception { CsvSchema schema = MAPPER.typedSchemaFor(ArrayWrapper.class); assertEquals("[\"a\",\"b\",\"c\"]", schema.getColumnDesc()); assertEquals(3, schema.size()); Iterator it = schema.iterator(); CsvSchema.Column col; col = it.next(); assertEquals("a", col.getName()); assertEquals(CsvSchema.ColumnType.ARRAY, col.getType()); col = it.next(); assertEquals("b", col.getName()); assertEquals(CsvSchema.ColumnType.NUMBER, col.getType()); col = it.next(); assertEquals("c", col.getName()); // List: assertEquals(CsvSchema.ColumnType.ARRAY, col.getType()); assertFalse(it.hasNext()); _verifyLinks(schema); } // for [dataformat-csv#42] @Test public void testReorderByName() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(Mixed.class); assertEquals(a2q("['a','b','c','d']"), schema.getColumnDesc()); schema = schema.sortedBy("b", "c"); assertEquals(a2q("['b','c','a','d']"), schema.getColumnDesc()); _verifyLinks(schema); } // for [dataformat-csv#42] @Test public void testReorderWithComparator() throws Exception { CsvSchema schema = MAPPER.schemaFor(Mixed.class); schema = schema.sortedBy(Collections.reverseOrder()); assertEquals(a2q("['d','c','b','a']"), schema.getColumnDesc()); _verifyLinks(schema); } @Test public void testColumnDescForEmptyScheme() throws Exception { CsvSchema schema = CsvSchema.emptySchema(); assertEquals("[]", schema.getColumnDesc()); } private void _verifyLinks(CsvSchema schema) { List all = new ArrayList(); for (Column col : schema) { all.add(col); } Column prev = null; for (int i = all.size(); --i >= 0; ) { Column curr = all.get(i); assertSame(prev, curr.getNext()); prev = curr; } } // For [dataformat-csv#74]: problems applying default do-sort handling @Test public void testSchemaWithOrdering() throws Exception { CsvSchema schema1 = MAPPER.schemaFor(Point.class); CsvSchema schema2 = MAPPER.schemaFor(PointWithAnnotation.class); assertEquals(schema1.size(), schema2.size()); assertEquals(schema1.column(0).getName(), schema2.column(0).getName()); } // For pull request 89 @Test public void testSchemaWithReordering() { // Checks flags are handled properly through builder, getters // and with* functions CsvSchema schemaWithReordering = CsvSchema.builder() .setUseHeader(true) .setReorderColumns(true) .build(); assertTrue(schemaWithReordering.reordersColumns()); CsvSchema schemaWithoutReordering = schemaWithReordering.withColumnReordering(false); assertFalse(schemaWithoutReordering.reordersColumns()); } // For [dataformat-csv#142]: append columns from POJOs @Test public void testSchemaComposition() throws Exception { CsvSchema pointSchema = MAPPER.typedSchemaFor(Point.class); CsvSchema yzSchema = MAPPER.typedSchemaFor(YZ.class); CsvSchema namedSchema = MAPPER.typedSchemaFor(Named.class); // should only add `z` since there's already `y` CsvSchema schema = pointSchema; schema = schema.withColumnsFrom(yzSchema); // but then two name properties schema = schema.withColumnsFrom(namedSchema); assertEquals(5, schema.size()); Iterator it = schema.iterator(); assertEquals("x", it.next().getName()); assertEquals("y", it.next().getName()); assertEquals("z", it.next().getName()); assertEquals("firstName", it.next().getName()); assertEquals("lastName", it.next().getName()); // and try alternate way as well. CsvSchema.Builder builder = CsvSchema.builder(); builder.addColumnsFrom(yzSchema) .addColumnsFrom(namedSchema) .addColumnsFrom(pointSchema); schema = builder.build(); assertEquals(5, schema.size()); it = schema.iterator(); assertEquals("y", it.next().getName()); assertEquals("z", it.next().getName()); assertEquals("firstName", it.next().getName()); assertEquals("lastName", it.next().getName()); assertEquals("x", it.next().getName()); } // For [dataformat-csv#115]: honor JsonProperty index @Test public void testSchemaWithExplicitIndices() { CsvSchema pointSchema = MAPPER.typedSchemaFor(PointWithExplicitIndices115.class); assertEquals("y", pointSchema.column(0).getName()); assertEquals("x", pointSchema.column(1).getName()); assertEquals("z", pointSchema.column(2).getName()); _verifyLinks(pointSchema); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/schema/PropertyOrder74Test.java ================================================ package tools.jackson.dataformat.csv.schema; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvSchema; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; // For [dataformat-csv#74]: problems applying default do-sort handling public class PropertyOrder74Test extends ModuleTestBase { static class Point { public int y; public int x; } @JsonPropertyOrder() public static class PointWithAnnotation extends Point {} private final CsvMapper MAPPER = new CsvMapper(); @Test public void testSchemaWithOrdering() throws Exception { CsvSchema schema1 = MAPPER.schemaFor(Point.class); CsvSchema schema2 = MAPPER.schemaFor(PointWithAnnotation.class); assertEquals(schema1.size(), schema2.size()); assertEquals(schema1.column(0).getName(), schema2.column(0).getName()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/schema/SchemaDefaultView308Test.java ================================================ package tools.jackson.dataformat.csv.schema; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonView; import tools.jackson.databind.MapperFeature; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; public class SchemaDefaultView308Test extends ModuleTestBase { interface BaseView {} @JsonView(BaseView.class) interface BaseViewMixIn {} interface ExtendedView extends BaseView {} @JsonView(ExtendedView.class) interface ExtendedViewMixIn {} interface OtherView {} @JsonView(OtherView.class) interface OtherViewMixIn {} static class ViewTestPojo { @JsonProperty boolean flag; @JsonProperty @JsonView(BaseView.class) char character; @JsonProperty @JsonView(ExtendedView.class) int number; @JsonProperty @JsonView(OtherView.class) String text; ViewTestPojo(final boolean flag, final char character, final int number, final String text) { this.flag = flag; this.character = character; this.number = number; this.text = text; } } private final ViewTestPojo POJO = new ViewTestPojo(true, '!', 1234, "dummy"); private CsvMapper _createMapper(boolean inclusion, Class defaultViewMixin) { final CsvMapper.Builder builder = CsvMapper.builder().configure(MapperFeature.DEFAULT_VIEW_INCLUSION, inclusion); if (defaultViewMixin != null) { builder.addMixIn(ViewTestPojo.class, defaultViewMixin); } return builder.build(); } private void _verifyExpected(final CsvMapper csvMapper, final Class view, final String... expectedNames) { final Set actualCsvNames = new HashSet<>(); final CsvSchema schema = csvMapper.schemaForWithView(POJO.getClass(), view); schema.rebuild().getColumns().forEachRemaining(c -> assertTrue(actualCsvNames.add(c.getName()))); assertEquals( new HashSet<>(Arrays.asList(expectedNames)), actualCsvNames, view == null ? "null" : view.getSimpleName() + " misses fields/columns" ); } @Test public void testSchemaWithImplicitDefaultViewAndDefaultViewInclusionDisabled() { CsvMapper csvMapper = _createMapper(false, null); _verifyExpected(csvMapper, null, "flag", "character", "number", "text"); _verifyExpected(csvMapper, BaseView.class, "character"); _verifyExpected(csvMapper, ExtendedView.class, "character", "number"); _verifyExpected(csvMapper, OtherView.class, "text"); } @Test public void testSchemaWithDefaultBaseViewAndDefaultViewInclusionDisabled() { CsvMapper csvMapper = _createMapper(false, BaseViewMixIn.class); _verifyExpected(csvMapper, null, "flag", "character", "number", "text"); _verifyExpected(csvMapper, BaseView.class, "flag", "character"); _verifyExpected(csvMapper, ExtendedView.class, "flag", "character", "number"); _verifyExpected(csvMapper, OtherView.class, "text"); } @Test public void testSchemaWithDefaultExtendedViewAndDefaultViewInclusionDisabled() { CsvMapper csvMapper = _createMapper(false, ExtendedViewMixIn.class); _verifyExpected(csvMapper, null, "flag", "character", "number", "text"); _verifyExpected(csvMapper, BaseView.class, "character"); _verifyExpected(csvMapper, ExtendedView.class, "flag", "character", "number"); _verifyExpected(csvMapper, OtherView.class, "text"); } @Test public void testSchemaWithDefaultOtherViewAndDefaultViewInclusionDisabled() { CsvMapper csvMapper = _createMapper(false, OtherViewMixIn.class); _verifyExpected(csvMapper, null, "flag", "character", "number", "text"); _verifyExpected(csvMapper, BaseView.class, "character"); _verifyExpected(csvMapper, ExtendedView.class, "character", "number"); _verifyExpected(csvMapper, OtherView.class, "flag", "text"); } @Test public void testSchemaWithImplicitDefaultViewAndDefaultViewInclusionEnabled() { CsvMapper csvMapper = _createMapper(true, null); _verifyExpected(csvMapper, null, "flag", "character", "number", "text"); _verifyExpected(csvMapper, BaseView.class, "flag", "character"); _verifyExpected(csvMapper, ExtendedView.class, "flag", "character", "number"); _verifyExpected(csvMapper, OtherView.class, "flag", "text"); } @Test public void testSchemaWithDefaultBaseViewAndDefaultViewInclusionEnabled() { CsvMapper csvMapper = _createMapper(true, BaseViewMixIn.class); _verifyExpected(csvMapper, null, "flag", "character", "number", "text"); _verifyExpected(csvMapper, BaseView.class, "flag", "character"); _verifyExpected(csvMapper, ExtendedView.class, "flag", "character", "number"); _verifyExpected(csvMapper, OtherView.class, "text"); } @Test public void testSchemaWithDefaultExtendedViewAndDefaultViewInclusionEnabled() { CsvMapper csvMapper = _createMapper(true, ExtendedViewMixIn.class); _verifyExpected(csvMapper, null, "flag", "character", "number", "text"); _verifyExpected(csvMapper, BaseView.class, "character"); _verifyExpected(csvMapper, ExtendedView.class, "flag", "character", "number"); _verifyExpected(csvMapper, OtherView.class, "text"); } @Test public void testSchemaWithDefaultOtherViewAndDefaultViewInclusionEnabled() { CsvMapper csvMapper = _createMapper(true, OtherViewMixIn.class); _verifyExpected(csvMapper, null, "flag", "character", "number", "text"); _verifyExpected(csvMapper, BaseView.class, "character"); _verifyExpected(csvMapper, ExtendedView.class, "character", "number"); _verifyExpected(csvMapper, OtherView.class, "flag", "text"); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/schema/SchemaFromBuilder207Test.java ================================================ package tools.jackson.dataformat.csv.schema; import org.junit.jupiter.api.Test; import tools.jackson.databind.annotation.JsonDeserialize; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvSchema; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; // Trying to reproduce [dataformats-text#207], with mixed success public class SchemaFromBuilder207Test extends ModuleTestBase { @JsonDeserialize(builder=SimpleBuilderXY.class) static class ValueClassXY { final int _x, _y, _z; protected ValueClassXY(int x, int y, int z) { _x = x+1; _y = y+1; _z = z+1; } public int getX() { return _x; } public int getY() { return _y; } public void setZ(int z) { } } static class SimpleBuilderXY { public int x, y, z; public SimpleBuilderXY withX(int x0) { this.x = x0; return this; } public SimpleBuilderXY withY(int y0) { this.y = y0; return this; } public SimpleBuilderXY withZ(int z0) { this.z = z0; return this; } public ValueClassXY build() { return new ValueClassXY(x, y, z); } } private final CsvMapper MAPPER = newObjectMapper(); @Test public void testSimple() throws Exception { CsvSchema schema = MAPPER.schemaFor(ValueClassXY.class).withHeader(); String output = MAPPER.writer().with(schema) .writeValueAsString(new ValueClassXY(1, 3, 5)); assertEquals("x,y\n2,4", output.trim()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/ArrayWriteTest.java ================================================ package tools.jackson.dataformat.csv.ser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; // Tests for verifying that it is possible to write "simple" arrays // (ones with scalar serializations) as CSV public class ArrayWriteTest extends ModuleTestBase { @JsonPropertyOrder({"id", "values", "extra"}) static class ValueEntry { public String id, extra; public int[] values; public ValueEntry(String id, String extra, int... v) { this.id = id; this.extra = extra; values = v; } } @JsonPropertyOrder({"a", "b", "c"}) static class Pojo90 { public String[] a = new String[]{"", "foo"}; public String[] b = new String[]{null, "bar"}; public String[] c = new String[]{"baz",null}; } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = CsvMapper.shared(); @Test public void testSimpleExplicit() throws Exception { ValueEntry input = new ValueEntry("foo", "stuff", 1, 2, 3); String csv = MAPPER.writerWithSchemaFor(ValueEntry.class) .writeValueAsString(input) .trim(); assertEquals("foo,1;2;3,stuff", csv); } @Test public void testSeparatorOverride() throws Exception { ValueEntry input = new ValueEntry("foo", "stuff", 1, 2, 3); String csv = MAPPER.writer(CsvSchema.builder() .addColumn("id") .addArrayColumn("values", " ") .addColumn("extra") .build()) .writeValueAsString(input) .trim(); // gets quoted due to white space assertEquals("foo,\"1 2 3\",stuff", csv); } @Test public void testArraysWithNulls() throws Exception { Pojo90 value = new Pojo90(); String csvContent = MAPPER.writer(MAPPER.schemaFor(Pojo90.class) .withHeader()) .writeValueAsString(value); String[] lines = csvContent.split("\\n"); assertEquals(2, lines.length); assertEquals("a,b,c", lines[0]); assertEquals(";foo,;bar,baz;", lines[1]); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVGeneratorQuotingTest.java ================================================ package tools.jackson.dataformat.csv.ser; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class CSVGeneratorQuotingTest extends ModuleTestBase { /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); // [dataformats-text#220] @Test public void testQuotingOfLinefeedsStd() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); String csv; csv = MAPPER.writer(schema) .without(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(new IdDesc("12\n3", "Foo")); assertEquals("\"12\n3\",Foo\n", csv); csv = MAPPER.writer(schema.withEscapeChar('\\')) .without(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(new IdDesc("12\n3", "Foo")); assertEquals("\"12\n3\",Foo\n", csv); csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(new IdDesc("12\n3", "Foo")); assertEquals("\"12\n3\",Foo\n", csv); csv = MAPPER.writer(schema.withEscapeChar('\\')) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(new IdDesc("12\n3", "Foo")); assertEquals("\"12\n3\",Foo\n", csv); } @Test public void testQuotingOfLinefeedsCustom() throws Exception { // '-' is bigger than max('"', ','): final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("-"); final IdDesc value = new IdDesc("12-3", "Foo"); // with loose(default) quoting String csv = MAPPER.writer(schema) .without(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); assertEquals("\"12-3\",Foo-", csv); // with loose(default) quoting and escape char csv = MAPPER.writer(schema.withEscapeChar('\\')) .without(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); assertEquals("\"12-3\",Foo-", csv); // with strict/optimal csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); assertEquals("\"12-3\",Foo-", csv); // with strict/optimal and escape char csv = MAPPER.writer(schema.withEscapeChar('\\')) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); assertEquals("\"12-3\",Foo-", csv); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVGeneratorTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.File; import java.io.StringWriter; import java.math.BigDecimal; import java.math.BigInteger; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.JsonGenerator; import tools.jackson.core.StreamWriteFeature; import tools.jackson.databind.ObjectWriter; import tools.jackson.databind.node.ObjectNode; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.*; public class CSVGeneratorTest extends ModuleTestBase { @JsonPropertyOrder({"id", "amount"}) static class Entry { public String id; public double amount; public Entry(String id, double amount) { this.id = id; this.amount = amount; } } @JsonPropertyOrder({"id", "amount"}) static class Entry2 { public String id; public float amount; public Entry2(String id, float amount) { this.id = id; this.amount = amount; } } @JsonPropertyOrder({"id", "amount", "enabled"}) static class Entry3 { public String id; public BigDecimal amount; public boolean enabled; public Entry3(String id, BigDecimal amount, boolean enabled) { this.id = id; this.amount = amount; this.enabled = enabled; } } @JsonPropertyOrder({"id", "amount"}) static class NumberEntry { public String id; public T amount; public boolean enabled; public NumberEntry(String id, T amount, boolean enabled) { this.id = id; this.amount = amount; this.enabled = enabled; } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); @Test public void testSimpleExplicit() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("firstName") .addColumn("lastName") .addColumn("gender") .addColumn("userImage") .addColumn("verified") .build(); // from base, default order differs: // @JsonPropertyOrder({"firstName", "lastName", "gender" ,"verified", "userImage"}) FiveMinuteUser user = new FiveMinuteUser("Silu", "Seppala", false, Gender.MALE, new byte[] { 1, 2, 3, 4, 5}); assertEquals("Silu,Seppala,MALE,AQIDBAU=,false\n", MAPPER.writer(schema).writeValueAsString(user)); // 14-Jan-2024, tatu: [dataformats-text#45] allow suppressing trailing LF: assertEquals("Silu,Seppala,MALE,AQIDBAU=,false", MAPPER.writer(schema) .without(CsvWriteFeature.WRITE_LINEFEED_AFTER_LAST_ROW) .writeValueAsString(user)); } @Test public void testSimpleWithAutoSchema() throws Exception { _testSimpleWithAutoSchema(false); _testSimpleWithAutoSchema(true); } @Test public void testWriteHeaders() throws Exception { CsvSchema schema = MAPPER.schemaFor(FiveMinuteUser.class).withHeader(); FiveMinuteUser user = new FiveMinuteUser("Barbie", "Benton", false, Gender.FEMALE, null); assertEquals("firstName,lastName,gender,verified,userImage\n" +"Barbie,Benton,FEMALE,false,\n", MAPPER.writer(schema).writeValueAsString(user)); // 14-Jan-2024, tatu: [dataformats-text#45] allow suppressing trailing LF: assertEquals("firstName,lastName,gender,verified,userImage\n" +"Barbie,Benton,FEMALE,false,", MAPPER.writer(schema) .without(CsvWriteFeature.WRITE_LINEFEED_AFTER_LAST_ROW) .writeValueAsString(user)); } /** * Test that verifies that if a header line is needed, configured schema * MUST contain at least one column */ @Test public void testFailedWriteHeaders() throws Exception { CsvSchema schema = CsvSchema.builder().setUseHeader(true).build(); FiveMinuteUser user = new FiveMinuteUser("Barbie", "Benton", false, Gender.FEMALE, null); try { MAPPER.writer(schema).writeValueAsString(user); fail("Should fail without columns"); } catch (CsvWriteException e) { verifyException(e, "contains no column names"); } } @Test public void testExplicitWithDouble() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") .build(); String result = MAPPER.writer(schema).writeValueAsString(new Entry("abc", 1.25)); assertEquals("abc,1.25\n", result); } @Test public void testExplicitWithFloat() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") .build(); float amount = 1.89f; assertFalse(Double.toString(amount).equals("1.89")); String result = MAPPER.writer(schema).writeValueAsString(new Entry2("abc", amount)); assertEquals("abc,1.89\n", result); } @Test public void testExplicitWithFastFloat() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") .build(); float amount = 1.89f; assertFalse(Double.toString(amount).equals("1.89")); CsvMapper mapper = CsvMapper.builder().enable(StreamWriteFeature.USE_FAST_DOUBLE_WRITER).build(); String result = mapper.writer(schema).writeValueAsString(new Entry2("abc", amount)); assertEquals("abc,1.89\n", result); } @Test public void testExplicitWithQuoted() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("desc") .build(); String result = MAPPER.writer(schema) .writeValueAsString(new IdDesc("id", "Some \"stuff\"")); // MUST use doubling for quotes! assertEquals("id,\"Some \"\"stuff\"\"\"\n", result); } // [dataformat-csv#14]: String values that cross buffer boundary won't be quoted properly @Test public void testLongerWithQuotes() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("desc") .build(); String base = "Longer sequence with bunch of words to test quoting with needs to be at least one line " +"long to allow for appropriate indexes and boundary crossing conditions as well"; StringBuilder sb = new StringBuilder(); do { for (String word : base.split("\\s")) { sb.append(' '); sb.append('"'); sb.append(word); sb.append('"'); } } while (sb.length() < 1050); final String inputDesc = sb.toString(); String expOutputDesc = inputDesc.replace("\"", "\"\""); String expOutput = "id,\""+expOutputDesc+"\""; String result = MAPPER.writer(schema).writeValueAsString(new IdDesc("id", inputDesc)).trim(); assertEquals(expOutput, result); } @Test public void testWriteInFile() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("firstName") .addColumn("lastName") .build(); ObjectNode node = MAPPER.createObjectNode() .put("firstName", "David") .put("lastName", "Douillet"); File file = File.createTempFile("file", ".csv"); try { MAPPER.writer(schema.withHeader()).writeValue(file, node); } finally { file.delete(); } } @Test public void testForcedQuoting60() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") .build(); String result = mapper.writer(schema) .with(CsvWriteFeature.ALWAYS_QUOTE_STRINGS) .writeValueAsString(new Entry("abc", 1.25)); assertEquals("\"abc\",1.25\n", result); // Also, as per [dataformat-csv#81], should be possible to change dynamically result = mapper.writer(schema) .without(CsvWriteFeature.ALWAYS_QUOTE_STRINGS) .writeValueAsString(new Entry("xyz", 2.5)); assertEquals("xyz,2.5\n", result); } // [dataformats-csv#438]: Should not quote BigInteger/BigDecimal (or booleans) @Test public void testForcedQuotingOfBigDecimal() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") .addColumn("enabled") .build(); String result = MAPPER.writer(schema) .with(CsvWriteFeature.ALWAYS_QUOTE_STRINGS) .writeValueAsString(new Entry3("abc", BigDecimal.valueOf(2.5), true)); assertEquals("\"abc\",2.5,true\n", result); // Also, as per [dataformat-csv#81], should be possible to change dynamically result = MAPPER.writer(schema) .without(CsvWriteFeature.ALWAYS_QUOTE_STRINGS) .writeValueAsString(new Entry3("xyz", BigDecimal.valueOf(1.5), false)); assertEquals("xyz,1.5,false\n", result); } @Test public void testForcedQuotingWithQuoteEscapedWithBackslash() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") .setEscapeChar('\\') .build(); String result = mapper.writer(schema) .with(CsvWriteFeature.ALWAYS_QUOTE_STRINGS) .with(CsvWriteFeature.ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR) .writeValueAsString(new Entry("\"abc\"", 1.25)); assertEquals("\"\\\"abc\\\"\",1.25\n", result); } // [dataformats-text#374]: require escape char if needed @Test public void testMissingEscapeCharacterSetting() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") //.setEscapeChar('\\') .build(); try { String result = MAPPER.writer(schema) .with(CsvWriteFeature.ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR) .writeValueAsString(new Entry("\"abc\"", 1.25)); fail("Should not pass, got: "+result); } catch (CsvWriteException e) { verifyException(e, "Cannot use `CsvGenerator.Feature.ESCAPE"); } } @Test public void testForcedQuotingEmptyStrings() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") .build(); String result = mapper.writer(schema) .with(CsvWriteFeature.ALWAYS_QUOTE_EMPTY_STRINGS) .writeValueAsString(new Entry("", 1.25)); assertEquals("\"\",1.25\n", result); // Also, as per [dataformat-csv#81], should be possible to change dynamically result = mapper.writer(schema) .without(CsvWriteFeature.ALWAYS_QUOTE_EMPTY_STRINGS) .writeValueAsString(new Entry("", 2.5)); assertEquals(",2.5\n", result); } // Must quote '#' when it starts the line @Test public void testQuotingOfCommentCharForFirstColumn() throws Exception { // First, with default quoting final CsvSchema schema = MAPPER.schemaFor(IdDesc.class).withComments(); String csv = MAPPER.writer(schema) .writeValueAsString(new IdDesc("#123", "Foo")); assertEquals("\"#123\",Foo\n", csv); // then with strict/optimal csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(new IdDesc("#123", "Foo")); assertEquals("\"#123\",Foo\n", csv); } // In strict mode when the second column starts with '#', does not have to quote it @Test public void testQuotingOfCommentCharForSecondColumn() throws Exception { // First, with default quoting final CsvSchema schema = MAPPER.schemaFor(IdDesc.class).withComments(); String csv = MAPPER.writer(schema) .writeValueAsString(new IdDesc("123", "#Foo")); assertEquals("123,\"#Foo\"\n", csv); // then with strict/optimal csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(new IdDesc("123", "#Foo")); assertEquals("123,#Foo\n", csv); } // In strict mode when comments are disabled, does not have to quote '#' @Test public void testQuotingOfCommentCharWhenCommentsAreDisabled() throws Exception { // First, with default quoting final CsvSchema schema = MAPPER.schemaFor(IdDesc.class).withoutComments(); String csv = MAPPER.writer(schema) .writeValueAsString(new IdDesc("#123", "Foo")); assertEquals("\"#123\",Foo\n", csv); // then with strict/optimal csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(new IdDesc("#123", "Foo")); assertEquals("#123,Foo\n", csv); } // for [dataformat-csv#98] @Test public void testBackslashEscape() throws Exception { // First, with default quoting final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withEscapeChar('\\'); String csv = MAPPER.writer(schema) .writeValueAsString(new IdDesc("123", "a\\b")); // Escaping also leads to quoting assertEquals("123,\"a\\\\b\"\n", csv); } @Test public void testRawWrites() throws Exception { StringWriter w = new StringWriter(); JsonGenerator gen = MAPPER.createGenerator(w); gen.writeStartArray(); gen.writeString("a"); // just to ensure no quoting goes on: gen.writeRawValue("b,c"); gen.writeString("d,e"); gen.writeEndArray(); gen.close(); assertEquals("a,b,c,\"d,e\"\n", w.toString()); // also, verify use of other methods w = new StringWriter(); gen = MAPPER.createGenerator(w); gen.writeStartArray(); gen.writeRawValue("a,b"); gen.writeRaw(",foobar"); gen.writeEndArray(); gen.close(); assertEquals("a,b,foobar\n", w.toString()); } // for [dataformat-csv#87] @Test public void testSerializationOfPrimitivesToCsv() throws Exception { CsvMapper mapper = new CsvMapper(); testSerializationOfPrimitiveToCsv(mapper, String.class, "hello world", "\"hello world\"\n"); testSerializationOfPrimitiveToCsv(mapper, Boolean.class, true, "true\n"); testSerializationOfPrimitiveToCsv(mapper, Integer.class, 42, "42\n"); testSerializationOfPrimitiveToCsv(mapper, Long.class, 42L, "42\n"); testSerializationOfPrimitiveToCsv(mapper, Short.class, (short)42, "42\n"); testSerializationOfPrimitiveToCsv(mapper, Double.class, 42.33d, "42.33\n"); testSerializationOfPrimitiveToCsv(mapper, Float.class, 42.33f, "42.33\n"); } private void testSerializationOfPrimitiveToCsv(final CsvMapper mapper, final Class type, final T value, final String expectedCsv) throws Exception { CsvSchema schema = mapper.schemaFor(type); ObjectWriter writer = mapper.writer(schema); String csv = writer.writeValueAsString(value); assertEquals(expectedCsv, csv); } // [dataformats-csv#198]: Verify quoting of Numbers @Test public void testForcedQuotingOfNumbers() throws Exception { final CsvSchema schema = CsvSchema.builder() .addColumn("id") .addColumn("amount") .addColumn("enabled") .build(); final CsvSchema reorderedSchema = CsvSchema.builder() .addColumn("amount") .addColumn("id") .addColumn("enabled") .build(); ObjectWriter w = MAPPER.writer(schema); _testForcedQuotingOfNumbers(w, reorderedSchema, new NumberEntry("id", Integer.valueOf(42), true)); _testForcedQuotingOfNumbers(w, reorderedSchema, new NumberEntry("id", Long.MAX_VALUE, false)); _testForcedQuotingOfNumbers(w, reorderedSchema, new NumberEntry("id", BigInteger.valueOf(-37), true)); _testForcedQuotingOfNumbers(w, reorderedSchema, new NumberEntry("id", 2.25, false)); _testForcedQuotingOfNumbers(w, reorderedSchema, new NumberEntry("id", BigDecimal.valueOf(-10.5), true)); } private void _testForcedQuotingOfNumbers(ObjectWriter w, CsvSchema reorderedSchema, NumberEntry bean) throws Exception { // First verify with quoting ObjectWriter w2 = w.with(CsvWriteFeature.ALWAYS_QUOTE_NUMBERS); assertEquals(String.format("%s,\"%s\",%s\n", bean.id, bean.amount, bean.enabled), w2.writeValueAsString(bean)); // And then dynamically disabled variant ObjectWriter w3 = w2.without(CsvWriteFeature.ALWAYS_QUOTE_NUMBERS); assertEquals(String.format("%s,%s,%s\n", bean.id, bean.amount, bean.enabled), w3.writeValueAsString(bean)); // And then quoted but reordered to force buffering ObjectWriter w4 = MAPPER.writer(reorderedSchema) .with(CsvWriteFeature.ALWAYS_QUOTE_NUMBERS); assertEquals(String.format("\"%s\",%s,%s\n", bean.amount, bean.id, bean.enabled), w4.writeValueAsString(bean)); } /* /********************************************************************** /* Secondary test methods /********************************************************************** */ private void _testSimpleWithAutoSchema(boolean wrapAsArray) throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(FiveMinuteUser.class); FiveMinuteUser user = new FiveMinuteUser("Veltto", "Virtanen", true, Gender.MALE, new byte[] { 3, 1 }); String result; // having virtual root-level array should make no difference: if (wrapAsArray) { result = mapper.writer(schema).writeValueAsString(new FiveMinuteUser[] { user }); } else { result = mapper.writer(schema).writeValueAsString(user); } assertEquals("Veltto,Virtanen,MALE,true,AwE=\n", result); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVJDKSerializationTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvSchema; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; /** * Tests to verify that most core Jackson components can be serialized * using default JDK serialization: this feature is useful for some * platforms, such as Android, where memory management is handled * much more aggressively. */ public class CSVJDKSerializationTest extends ModuleTestBase { @JsonPropertyOrder({ "x", "y" }) static class MyPojo { public int x; protected int y; public MyPojo() { } public MyPojo(int x0, int y0) { x = x0; y = y0; } public int getY() { return y; } public void setY(int y) { this.y = y; } } static class MyPojo2 extends MyPojo { } /* /********************************************************** /* Tests for individual objects /********************************************************** */ // Let's not use the shared instance, but local one here. private final CsvMapper MAPPER = mapperForCsv(); private final CsvSchema SCHEMA_POJO = MAPPER.schemaFor(MyPojo.class); @Test public void testSchema() throws Exception { byte[] ser = jdkSerialize(SCHEMA_POJO); CsvSchema out = (CsvSchema) jdkDeserialize(ser); assertNotNull(out); } @Test public void testMapperJDKSerialization() throws Exception { final String EXP_CSV = "2,3"; final MyPojo p = new MyPojo(2, 3); assertEquals(EXP_CSV, MAPPER.writerFor(MyPojo.class) .with(SCHEMA_POJO).writeValueAsString(p).trim()); byte[] bytes = jdkSerialize(MAPPER); CsvMapper mapper2 = jdkDeserialize(bytes); assertEquals(EXP_CSV, mapper2.writerFor(MyPojo.class) .with(SCHEMA_POJO).writeValueAsString(p).trim()); MyPojo p2 = mapper2.readerFor(MyPojo.class).with(SCHEMA_POJO).readValue(EXP_CSV); assertEquals(p.x, p2.x); assertEquals(p.y, p2.y); // and just to be sure, try something different... String csv = mapper2.writerFor(MyPojo2.class) .with(mapper2.schemaFor(MyPojo2.class)) .writeValueAsString(new MyPojo2()); assertNotNull(csv); } public void testMapperCopy() throws Exception { CsvMapper mapper2 = MAPPER.rebuild().build(); assertNotSame(MAPPER, mapper2); // but underlying factory need not be copied (immutable!) assertSame(MAPPER.tokenStreamFactory(), mapper2.tokenStreamFactory()); } /* /********************************************************** /* Helper methods /********************************************************** */ protected byte[] jdkSerialize(Object o) throws Exception { ByteArrayOutputStream bytes = new ByteArrayOutputStream(1000); ObjectOutputStream obOut = new ObjectOutputStream(bytes); obOut.writeObject(o); obOut.close(); return bytes.toByteArray(); } @SuppressWarnings("unchecked") protected T jdkDeserialize(byte[] raw) throws Exception { ObjectInputStream objIn = new ObjectInputStream(new ByteArrayInputStream(raw)); try { return (T) objIn.readObject(); } catch (ClassNotFoundException e) { fail("Missing class: "+e.getMessage()); return null; } finally { objIn.close(); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/FilteringTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.*; import java.util.*; import org.junit.jupiter.api.Test; import tools.jackson.databind.*; import tools.jackson.databind.cfg.MapperConfig; import tools.jackson.databind.introspect.Annotated; import tools.jackson.databind.introspect.JacksonAnnotationIntrospector; import tools.jackson.databind.ser.FilterProvider; import tools.jackson.databind.ser.std.SimpleBeanPropertyFilter; import tools.jackson.databind.ser.std.SimpleFilterProvider; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; @SuppressWarnings("serial") public class FilteringTest extends ModuleTestBase { static class Entity { public String name; public String unusedFieldBetween; public String description; public String unusedField; public Entity(String name, String description, String unusedField) { this.name = name; this.description = description; this.unusedField = unusedField; } } private final static String CSV_FILTER_NAME = "csvFilter"; static class CsvJacksonWriter { public void writeObjects(OutputStream outputStream, List objects, CsvSchema csvSchema ) throws IOException { HashSet columnNames = new HashSet(); for (CsvSchema.Column column : csvSchema) { columnNames.add( column.getName() ); } SimpleBeanPropertyFilter csvReponseFilter = new SimpleBeanPropertyFilter.FilterExceptFilter(columnNames); FilterProvider filterProvider = new SimpleFilterProvider().addFilter( CSV_FILTER_NAME, csvReponseFilter ); CsvMapper csvMapper = CsvMapper.builder() .annotationIntrospector(new CsvAnnotationIntrospector()) .filterProvider(filterProvider) .build(); ObjectWriter objectWriter = csvMapper.writer(csvSchema); objectWriter.writeValue( outputStream, objects); } } static class CsvAnnotationIntrospector extends JacksonAnnotationIntrospector { @Override public Object findFilterId(MapperConfig config, Annotated a) { return CSV_FILTER_NAME; } } @Test public void testWriteObjects() throws Exception { List entities = new ArrayList(); entities.add( new Entity("Test entity 1", "Test description 1", "Test unused field")); entities.add(new Entity("Test entity 2", "Test description 2", "Test unused field")); CsvSchema csvSchema = CsvSchema.builder() .addColumn("name") .addColumn("description") .setUseHeader( true ) .build() .withLineSeparator("\r\n"); CsvJacksonWriter csvWriter = new CsvJacksonWriter(); ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); csvWriter.writeObjects(outputStream, entities, csvSchema); StringBuffer expectedResults = new StringBuffer(); expectedResults.append( "name,description\r\n" ); expectedResults.append( "\"Test entity 1\",\"Test description 1\"\r\n" ); expectedResults.append( "\"Test entity 2\",\"Test description 2\"\r\n"); assertEquals( expectedResults.toString(), outputStream.toString() ); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorFileCloseOnErrorTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.*; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonGenerator; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvSchema; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.assertj.core.api.Assertions.assertThat; /** * Test to verify that CSV output streams are properly closed even when * an error occurs during generator close (see jackson-dataformats-text#109). * * @since 3.2 */ public class GeneratorFileCloseOnErrorTest extends ModuleTestBase { private final CsvMapper MAPPER = newObjectMapper(); // [jackson-dataformats-text#109]: Output not closed on error @Test public void testOutputClosedWhenFlushFailsDuringClose() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("key") .build(); FailOnDemandWriter writer = new FailOnDemandWriter(); JsonGenerator gen = MAPPER.writer(schema).createGenerator(writer); gen.writeStartObject(); gen.writeStringProperty("key", "value"); gen.writeEndObject(); // Arm the writer so close()'s finishRow/flush calls fail writer.shouldFail = true; try { gen.close(); } catch (Exception e) { // Expected: writer failure during finishRow in close() } assertThat(writer.closed) .as("Underlying writer should be closed even when finishRow during close() fails") .isTrue(); } @Test public void testOutputClosedOnSuccessfulWrite() throws Exception { FailOnDemandWriter writer = new FailOnDemandWriter(); CsvSchema schema = MAPPER.schemaFor(Pojo.class); MAPPER.writer(schema).writeValue(writer, new Pojo("bar")); assertThat(writer.closed) .as("Writer should be closed after successful write") .isTrue(); } static class FailOnDemandWriter extends Writer { boolean closed; volatile boolean shouldFail; private final StringWriter _delegate = new StringWriter(); @Override public void write(char[] cbuf, int off, int len) throws IOException { if (shouldFail) { throw new IOException("Simulated write failure"); } _delegate.write(cbuf, off, len); } @Override public void flush() throws IOException { if (shouldFail) { throw new IOException("Simulated flush failure"); } _delegate.flush(); } @Override public void close() throws IOException { closed = true; _delegate.close(); } } static class Pojo { public String foo; public Pojo() { } Pojo(String foo) { this.foo = foo; } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorIgnoreUnknown51Test.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.StringWriter; import java.util.LinkedHashSet; import java.util.Set; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.StreamWriteFeature; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.CsvSchema; import tools.jackson.dataformat.csv.CsvWriteException; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.fail; public class GeneratorIgnoreUnknown51Test extends ModuleTestBase { // [dataformats-text#51] @JsonPropertyOrder({ "address", "people", "phoneNumber" }) protected static class MyClass { public String address; public Set people; public String phoneNumber; public MyClass() { } } @JsonPropertyOrder({ "name", "surname" }) protected static class Person { public String name, surname; protected Person() { } public Person(String name, String surname) { this.name = name; this.surname = surname; } // 07-Nov-2017, tatu: This would be a work-around: //@JsonValue public String asString() { return ""+name+" "+surname; } } /* /********************************************************** /* Test methods /********************************************************** */ // for [dataformats-text#51] @Test public void testIgnoreEmbeddedObject() throws Exception { CsvMapper mapper = CsvMapper.builder() .enable(StreamWriteFeature.IGNORE_UNKNOWN) .build(); CsvSchema schema = CsvSchema.builder() .addColumn("address") .addColumn("people") // here I'm skipping phoneNumber so I need to use IGNORE_UNKNOWN feature .build() .withHeader(); Person firstPerson = new Person("Barbie", "Benton"); Person secondPerson = new Person("Veltto", "Virtanen"); Set people = new LinkedHashSet<>(); people.add(firstPerson); people.add(secondPerson); MyClass myClass = new MyClass(); myClass.people = people; myClass.address = "AAA"; myClass.phoneNumber = "123"; StringWriter sw = new StringWriter(); try { mapper.writer(schema).writeValue(sw, myClass); fail("Should not pass"); } catch (CsvWriteException e) { // 23-Jan-2021, tatu: Not ideal that this gets wrapped, but let's verify contents verifyException(e, "CSV generator does not support"); verifyException(e, "nested Objects"); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorIgnoreUnknownTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.StreamWriteFeature; import tools.jackson.databind.*; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class GeneratorIgnoreUnknownTest extends ModuleTestBase { @JsonPropertyOrder({ "x", "y", "z" }) public static class Point { public int x; public Integer y; public Integer z = 8; } @JsonPropertyOrder({ "x", "extra", "y" }) public static class PointAndExtra { public int x = 1, y = 2; public Point extra = new Point(); } @JsonPropertyOrder({ "x", "stuff", "y" }) public static class PointAndStuff { public int x = 1, y = 2; public Object stuff; public PointAndStuff(Object s) { stuff = s; } } @JsonPropertyOrder({ "x", "points", "y" }) public static class PointAndArray { public int x = 1, y = 2; public List points = new ArrayList(); { points.add(new Point()); points.add(new Point()); } protected PointAndArray() { } protected PointAndArray(int x, int y) { this.x = x; this.y = y; } } /* /********************************************************** /* Test methods /********************************************************** */ @Test public void testSimpleIgnore() throws Exception { ObjectMapper mapper = mapperForCsv(); final CsvSchema schema = CsvSchema.builder() .addColumn("x") .addColumn("z") .build(); ObjectWriter writer = mapper.writerFor(Point.class) .with(schema) .with(StreamWriteFeature.IGNORE_UNKNOWN); String csv = writer.writeValueAsString(new Point()); assertNotNull(csv); } // Also verify that it is possible to ignore more complex object output too @Test public void testIgnorePOJO() throws Exception { ObjectMapper mapper = mapperForCsv(); final CsvSchema schema = CsvSchema.builder() .addColumn("x") .addColumn("y") .build(); ObjectWriter writer = mapper.writerFor(PointAndExtra.class) .with(schema) .with(StreamWriteFeature.IGNORE_UNKNOWN); String csv = writer.writeValueAsString(new PointAndExtra()); assertNotNull(csv); assertEquals("1,2\n", csv); } @Test public void testIgnoreObject() throws Exception { ObjectMapper mapper = mapperForCsv(); final CsvSchema schema = CsvSchema.builder() .addColumn("x") .addColumn("y") .build(); ObjectWriter writer = mapper.writerFor(PointAndStuff.class) .with(schema) .with(StreamWriteFeature.IGNORE_UNKNOWN); List l = Arrays.asList("a", "b"); String csv = writer.writeValueAsString(new PointAndStuff(l)); assertNotNull(csv); assertEquals("1,2\n", csv); Map m = new HashMap(); m.put("foo", "bar"); csv = writer.writeValueAsString(new PointAndStuff(m)); assertNotNull(csv); assertEquals("1,2\n", csv); } @Test public void testIgnoreNested() throws Exception { ObjectMapper mapper = mapperForCsv(); final CsvSchema schema = CsvSchema.builder() .addColumn("x") .addColumn("y") .build(); ObjectWriter writer = mapper.writerFor(PointAndArray.class) .with(schema) .with(StreamWriteFeature.IGNORE_UNKNOWN); String csv = writer.writeValueAsString(new PointAndArray(3,5)); //System.err. println("CSV:\n"+csv); assertNotNull(csv); assertEquals("3,5\n", csv); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/HeaderWriteTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.IOException; import java.io.StringWriter; import java.util.Arrays; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.databind.SequenceWriter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; // Tests for verifying that headers are emitted public class HeaderWriteTest extends ModuleTestBase { /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); @Test public void testNoLines() throws Exception { List headers = Arrays.asList("TestHeader1", "TestHeader2"); List> dataSource = Arrays.asList(); String result = runTest(headers, dataSource); assertEquals("TestHeader1,TestHeader2\n", result, "Headers should have been written even with no other data"); } @Test public void testOneLine() throws Exception { List headers = Arrays.asList("TestHeader1", "TestHeader2"); List> dataSource = Arrays.asList(Arrays.asList("TestValue1", "TestValue2")); String result = runTest(headers, dataSource); assertEquals("TestHeader1,TestHeader2\nTestValue1,TestValue2\n", result, "Headers should have been written before line"); } private String runTest(List headers, List> dataSource) throws IOException { StringWriter writer = new StringWriter(); CsvSchema.Builder builder = CsvSchema.builder(); for (String nextHeader : headers) { builder = builder.addColumn(nextHeader); } CsvSchema schema = builder.setUseHeader(true).build(); try (SequenceWriter csvWriter = MAPPER.writerFor(List.class) .with(schema) .writeValues(writer)) { for(List nextRow : dataSource) { csvWriter.write(nextRow); } } return writer.toString(); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/MaxQuoteCheckCharsTest.java ================================================ package tools.jackson.dataformat.csv.ser; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; // [dataformats-text#280]: make MAX_QUOTE_CHECK configurable public class MaxQuoteCheckCharsTest extends ModuleTestBase { @Test public void testDefaultMaxQuoteCheck() throws Exception { // Default behavior: strings > 24 chars are always quoted CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(IdDesc.class).withLineSeparator("\n"); // 24 chars: should NOT be quoted (within default threshold) String csv24 = mapper.writer(schema) .writeValueAsString(new IdDesc("a23456789012345678901234", "x")); assertEquals("a23456789012345678901234,x\n", csv24); // 25 chars: SHOULD be quoted (exceeds default threshold of 24) String csv25 = mapper.writer(schema) .writeValueAsString(new IdDesc("a234567890123456789012345", "x")); assertEquals("\"a234567890123456789012345\",x\n", csv25); } @Test public void testCustomMaxQuoteCheckHigher() throws Exception { // Increase threshold to 50: strings up to 50 chars should not be quoted CsvMapper mapper = CsvMapper.builder( CsvFactory.builder() .maxQuoteCheckChars(50) .build() ).build(); CsvSchema schema = mapper.schemaFor(IdDesc.class).withLineSeparator("\n"); // 25 chars: should NOT be quoted now (within custom threshold of 50) String csv25 = mapper.writer(schema) .writeValueAsString(new IdDesc("a234567890123456789012345", "x")); assertEquals("a234567890123456789012345,x\n", csv25); // 51 chars: SHOULD be quoted (exceeds custom threshold of 50) String longValue = "a" + "1234567890".repeat(5); assertEquals(51, longValue.length()); String csv51 = mapper.writer(schema) .writeValueAsString(new IdDesc(longValue, "x")); assertEquals("\"" + longValue + "\",x\n", csv51); } @Test public void testCustomMaxQuoteCheckLower() throws Exception { // Decrease threshold to 5: strings > 5 chars should be quoted CsvMapper mapper = CsvMapper.builder( CsvFactory.builder() .maxQuoteCheckChars(5) .build() ).build(); CsvSchema schema = mapper.schemaFor(IdDesc.class).withLineSeparator("\n"); // 5 chars: should NOT be quoted (within threshold) String csv5 = mapper.writer(schema) .writeValueAsString(new IdDesc("abcde", "x")); assertEquals("abcde,x\n", csv5); // 6 chars: SHOULD be quoted (exceeds custom threshold of 5) String csv6 = mapper.writer(schema) .writeValueAsString(new IdDesc("abcdef", "x")); assertEquals("\"abcdef\",x\n", csv6); } // Verify setting survives rebuild() round-trip @Test public void testRebuildPreservesMaxQuoteCheck() throws Exception { CsvFactory original = CsvFactory.builder() .maxQuoteCheckChars(50) .build(); // Round-trip through rebuild CsvFactory rebuilt = original.rebuild().build(); CsvMapper mapper = CsvMapper.builder(rebuilt).build(); CsvSchema schema = mapper.schemaFor(IdDesc.class).withLineSeparator("\n"); // 25 chars: should NOT be quoted (within custom threshold of 50) String csv = mapper.writer(schema) .writeValueAsString(new IdDesc("a234567890123456789012345", "x")); assertEquals("a234567890123456789012345,x\n", csv); } // STRICT_CHECK_FOR_QUOTING should bypass maxQuoteCheckChars entirely @Test public void testStrictQuotingIgnoresMaxQuoteCheck() throws Exception { CsvMapper mapper = CsvMapper.builder( CsvFactory.builder() .maxQuoteCheckChars(5) .enable(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .build() ).build(); CsvSchema schema = mapper.schemaFor(IdDesc.class).withLineSeparator("\n"); // With strict quoting, a plain alphanumeric string > 5 chars should NOT // be quoted, because strict check examines content, not just length String csv = mapper.writer(schema) .writeValueAsString(new IdDesc("abcdefghij", "x")); assertEquals("abcdefghij,x\n", csv); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/MultipleWritesTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.StringWriter; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.JsonGenerator; import tools.jackson.databind.*; import tools.jackson.dataformat.csv.*; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; public class MultipleWritesTest extends ModuleTestBase { @JsonPropertyOrder({ "a", "b", "c" }) public static class Pojo { public int a, b, c; public Pojo(int a, int b, int c) { this.a = a; this.b = b; this.c = c; } } private final CsvMapper MAPPER = mapperForCsv(); /** * To reproduce [dataformat-csv#71]: Although ideally one uses * `ObjectWriter.writeValues()` for sequences, we should not * write headers more than once regardless, as long as target * is CsvGenerator which tracks state. */ @Test public void testMultipleListWrites() throws Exception { StringWriter sw = new StringWriter(); CsvSchema.Builder builder = CsvSchema.builder(); builder.addColumn("col1"); builder.addColumn("col2"); CsvSchema csvSchema = builder.build().withHeader(); JsonGenerator gen = MAPPER .writer() .with(csvSchema) .createGenerator(sw); ObjectWriter csvWriter = MAPPER.writer(); List line1 = new ArrayList(); line1.add("line1-val1"); line1.add("line1-val2"); csvWriter.writeValue(gen, line1); List line2 = new ArrayList(); line2.add("line2-val1"); line2.add("line2-val2"); csvWriter.writeValue(gen, line2); gen.close(); String csv = sw.toString().trim(); // may get different linefeed on different OSes? csv = csv.replaceAll("[\\r\\n]", "/"); assertEquals("col1,col2/line1-val1,line1-val2/line2-val1,line2-val2", csv); } @Test public void testWriteValuesWithPOJOs() throws Exception { final CsvSchema schema = MAPPER.schemaFor(Pojo.class).withUseHeader(true); ObjectWriter writer = MAPPER.writer(schema); StringWriter sw = new StringWriter(); try (SequenceWriter seqw = writer.writeValues(sw)) { seqw.write(new Pojo(1, 2, 3)); seqw.write(new Pojo(0, 15, 9)); seqw.write(new Pojo(7, 8, 9)); } assertEquals("a,b,c\n1,2,3\n0,15,9\n7,8,9\n", sw.toString()); // 14-Jan-2024, tatu: [dataformats-text#45] allow suppressing trailing LF. // NOTE! Any form of `flush()` will prevent ability to "remove" trailing LF so... writer = writer .without(SerializationFeature.FLUSH_AFTER_WRITE_VALUE) .without(CsvWriteFeature.WRITE_LINEFEED_AFTER_LAST_ROW); sw = new StringWriter(); try (SequenceWriter seqw = writer.writeValues(sw)) { seqw.write(new Pojo(1, 2, 3)); seqw.write(new Pojo(0, 15, 9)); seqw.write(new Pojo(7, 8, 9)); } assertEquals("a,b,c\n1,2,3\n0,15,9\n7,8,9", sw.toString()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/NullWritingTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.ByteArrayOutputStream; import java.io.StringWriter; import java.util.Arrays; import java.util.List; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.*; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; // for [dataformat-csv#69], other null value serialization public class NullWritingTest extends ModuleTestBase { public static class Nullable { public String a, b, c, d; } // for [jackson-dataformat-csv#83] @JsonPropertyOrder({ "prop1", "prop2", "prop3" }) static class Pojo83 { public String prop1; public String prop2; public int prop3; protected Pojo83() { } public Pojo83(String a, String b, int c) { prop1 = a; prop2 = b; prop3 = c; } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper csv = mapperForCsv(); @Test public void testObjectWithNullMembersToString() throws Exception { CsvSchema schema = csv.schemaFor(Nullable.class).withUseHeader(true); ObjectWriter writer = csv.writer(schema); String nullMembers = writer.writeValueAsString(new Nullable()); assertEquals("a,b,c,d\n,,,\n", nullMembers); } @Test public void testNullToString() throws Exception { CsvSchema schema = csv.schemaFor(Nullable.class).withUseHeader(true); ObjectWriter writer = csv.writer(schema); String nullObject = writer.writeValueAsString(null); assertEquals("a,b,c,d\n", nullObject); } @Test public void testObjectWithNullMembersToStream() throws Exception { CsvSchema schema = csv.schemaFor(Nullable.class).withUseHeader(true); ObjectWriter writer = csv.writer(schema); // Write an object with null members ByteArrayOutputStream stream = new ByteArrayOutputStream(); SequenceWriter writeValues = writer.writeValues(stream); writeValues.write(new Nullable()); writeValues.write(new Nullable()); writeValues.flush(); String nullMembers = stream.toString("UTF-8"); assertEquals("a,b,c,d\n,,,\n,,,\n", nullMembers); writeValues.close(); } @Test public void testNullToStream() throws Exception { CsvSchema schema = csv.schemaFor(Nullable.class).withUseHeader(true); ObjectWriter writer = csv.writer(schema); // Write a null value StringWriter sw = new StringWriter(); SequenceWriter writeValues = writer.writeValues(sw); writeValues.write(null); writeValues.write(null); writeValues.flush(); String nullObject = sw.toString(); // 11-Feb-2015, tatu: Two ways to go; either nulls get ignored, or they trigger serialization of // empty Object. For now, former occurs: assertEquals("a,b,c,d\n", nullObject); // assertEquals("a,b,c,d\n\n\n", nullObject); writeValues.close(); } // [dataformat-csv#53] @Test public void testCustomNullValue() throws Exception { CsvSchema schema = CsvSchema.builder() .setNullValue("n/a") .addColumn("id") .addColumn("desc") .build(); String result = csv.writer(schema).writeValueAsString(new IdDesc("id", null)); // MUST use doubling for quotes! assertEquals("id,n/a\n", result); } // [dataformat-csv#83] @Test public void testNullIssue83() throws Exception { CsvSchema schema = csv.schemaFor(Pojo83.class); final ObjectWriter writer = csv.writer(schema); List list = Arrays.asList( new Pojo83("foo", "bar", 123), null, new Pojo83("test", "abc", 42)); String actualCsv = writer.writeValueAsString(list); assertEquals("foo,bar,123\ntest,abc,42\n", actualCsv); } @Test public void testNullFieldsOfListsContainedByMainLevelListIssue106() throws Exception { CsvSchema schema = CsvSchema.builder().build(); List row1 = Arrays.asList("d0", null, "d2"); List row2 = Arrays.asList(null, "d1", "d2"); List row3 = Arrays.asList("d0", "d1", null); List> dataList = Arrays.asList(row1, row2, row3); String result = csv.writer(schema).writeValueAsString(dataList); assertEquals("d0,,d2\n,d1,d2\nd0,d1,\n", result); schema = schema.withNullValue("n/a"); result = csv.writer(schema).writeValueAsString(dataList); assertEquals("d0,n/a,d2\nn/a,d1,d2\nd0,d1,n/a\n", result); } @Test public void testNullElementsOfMainLevelListIssue106() throws Exception { CsvSchema schema = CsvSchema.builder().build(); List row1 = Arrays.asList("d0", null, "d2"); List row2 = Arrays.asList(null, "d1", "d2"); List row3 = Arrays.asList("d0", "d1", null); // when serialized, the added root level nulls at index 1 and 3 // should be absent from the output List> dataList = Arrays.asList(row1, null, row2, null, row3); String result = csv.writer(schema).writeValueAsString(dataList); assertEquals("d0,,d2\n,d1,d2\nd0,d1,\n", result); schema = schema.withNullValue("n/a"); result = csv.writer(schema).writeValueAsString(dataList); assertEquals("d0,n/a,d2\nn/a,d1,d2\nd0,d1,n/a\n", result); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/ObjectArrayNullWrite10Test.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.StringWriter; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectWriter; import tools.jackson.databind.SequenceWriter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class ObjectArrayNullWrite10Test extends ModuleTestBase { // for [dataformats-text#10] @Test public void testNullsOnObjectArrayWrites2Col() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("a", CsvSchema.ColumnType.NUMBER) .addColumn("b", CsvSchema.ColumnType.NUMBER) .setUseHeader(true) .build(); ObjectWriter writer = mapperForCsv().writer(schema); StringWriter out = new StringWriter(); try (SequenceWriter sequence = writer.writeValues(out)) { sequence.write(new Object[]{ null, 2 }); sequence.write(new Object[]{ null, null }); sequence.write(new Object[]{ 1, null }); } final String csv = out.toString().trim(); assertEquals("a,b\n" + ",2\n" + ",\n" + "1,", csv); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/ObjectArrayNullWrite116Test.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.StringWriter; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectWriter; import tools.jackson.databind.SequenceWriter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class ObjectArrayNullWrite116Test extends ModuleTestBase { // for [dataformats-text#116] @Test public void testWithObjectArray() throws Exception { CsvSchema schema = CsvSchema.builder() .addColumn("a", CsvSchema.ColumnType.NUMBER) .addColumn("b", CsvSchema.ColumnType.NUMBER) .setUseHeader(true) .build(); ObjectWriter writer = mapperForCsv().writer(schema); StringWriter out = new StringWriter(); try (SequenceWriter sequence = writer.writeValues(out)) { sequence.write(new Object[]{ 1, 2 }); sequence.write(new Object[]{ null, 2 }); sequence.write(new Object[]{ null, null }); sequence.write(new Object[]{ 1, null }); } assertEquals("a,b\n" + "1,2\n" + ",2\n" + ",\n" + "1,\n", out.toString()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/QuoteLeadingTrailingWhitespace210Test.java ================================================ package tools.jackson.dataformat.csv.ser; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; // [dataformats-text#210]: Quote strings with leading/trailing whitespace public class QuoteLeadingTrailingWhitespace210Test extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); @Test public void testLeadingSpaceQuoted() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); String csv = MAPPER.writer(schema) .with(CsvWriteFeature.QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE) .writeValueAsString(new IdDesc(" hello", "world")); assertEquals("\" hello\",world\n", csv); } @Test public void testTrailingSpaceQuoted() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); String csv = MAPPER.writer(schema) .with(CsvWriteFeature.QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE) .writeValueAsString(new IdDesc("hello", "world ")); assertEquals("hello,\"world \"\n", csv); } @Test public void testBothLeadingAndTrailingSpaceQuoted() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); String csv = MAPPER.writer(schema) .with(CsvWriteFeature.QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE) .writeValueAsString(new IdDesc(" both ", " ends ")); assertEquals("\" both \",\" ends \"\n", csv); } @Test public void testTabCountsAsWhitespace() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); String csv = MAPPER.writer(schema) .with(CsvWriteFeature.QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE) .writeValueAsString(new IdDesc("\thello", "world")); assertEquals("\"\thello\",world\n", csv); } @Test public void testNoQuotingWithoutFeature() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); // With strict quoting (optimal), leading spaces should NOT trigger quoting // unless the new feature is enabled String csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .without(CsvWriteFeature.QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE) .writeValueAsString(new IdDesc(" hello", "world ")); assertEquals(" hello,world \n", csv); } @Test public void testNoWhitespaceNoQuoting() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); // Strings without leading/trailing whitespace should not be affected String csv = MAPPER.writer(schema) .with(CsvWriteFeature.QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(new IdDesc("hello", "world")); assertEquals("hello,world\n", csv); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/SchemaReorderTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.util.Arrays; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class SchemaReorderTest extends ModuleTestBase { // should work ok since CsvMapper forces alphabetic ordering as default: static class Reordered { public int a; public long b; public long c; public int d; } private final CsvMapper MAPPER = new CsvMapper(); @Test public void testSchemaWithOrdering() throws Exception { CsvSchema schema = MAPPER.schemaFor(Reordered.class); assertEquals(a2q("['a','b','c','d']"), schema.getColumnDesc()); schema = schema.sortedBy("b", "c"); assertEquals(a2q("['b','c','a','d']"), schema.getColumnDesc()); Reordered value = new Reordered(); value.a = 1; value.b = Long.MIN_VALUE; value.c = Long.MAX_VALUE; value.d = 4; schema = schema.withHeader(); String csv = MAPPER.writer(schema).writeValueAsString(Arrays.asList(value)); assertEquals("b,c,a,d\n"+Long.MIN_VALUE+","+Long.MAX_VALUE+",1,4\n", csv); // _verifyLinks(schema); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/StrictQuotingNewline479Test.java ================================================ package tools.jackson.dataformat.csv.ser; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; /** * Test for issue #479: STRICT_CHECK_FOR_QUOTING should properly quote * values containing newline characters per RFC 4180. *

    * According to RFC 4180, fields containing special characters (including * newlines, carriage returns) MUST be enclosed in double quotes. * When STRICT_CHECK_FOR_QUOTING is enabled, this requirement should * still be met. */ public class StrictQuotingNewline479Test extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); /** * Test that values with Unix line separator (\n) are properly quoted * when STRICT_CHECK_FOR_QUOTING is enabled. */ @Test public void testStrictQuotingWithUnixLineSeparator() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); final IdDesc value = new IdDesc("line1\nline2", "description"); // With STRICT_CHECK_FOR_QUOTING enabled, newlines should still be quoted String csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); // Expected: value with newline should be quoted per RFC 4180 assertEquals("\"line1\nline2\",description\n", csv); } /** * Test that values with Windows line separator (\r\n) are properly quoted * when STRICT_CHECK_FOR_QUOTING is enabled. */ @Test public void testStrictQuotingWithWindowsLineSeparator() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); final IdDesc value = new IdDesc("line1\r\nline2", "description"); // With STRICT_CHECK_FOR_QUOTING enabled, CR+LF should still be quoted String csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); // Expected: value with CRLF should be quoted per RFC 4180 assertEquals("\"line1\r\nline2\",description\n", csv); } /** * Test that values with Mac line separator (\r) are properly quoted * when STRICT_CHECK_FOR_QUOTING is enabled. */ @Test public void testStrictQuotingWithMacLineSeparator() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); final IdDesc value = new IdDesc("line1\rline2", "description"); // With STRICT_CHECK_FOR_QUOTING enabled, CR should still be quoted String csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); // Expected: value with CR should be quoted per RFC 4180 assertEquals("\"line1\rline2\",description\n", csv); } /** * Test that values with multiple newlines are properly quoted * when STRICT_CHECK_FOR_QUOTING is enabled. */ @Test public void testStrictQuotingWithMultipleNewlines() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); final IdDesc value = new IdDesc("line1\nline2\nline3", "description"); // With STRICT_CHECK_FOR_QUOTING enabled, multiple newlines should be quoted String csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); // Expected: value with multiple newlines should be quoted assertEquals("\"line1\nline2\nline3\",description\n", csv); } /** * Verify that comma-containing values ARE properly quoted with * STRICT_CHECK_FOR_QUOTING (this should work as per the issue report). */ @Test public void testStrictQuotingWithCommaWorks() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); final IdDesc value = new IdDesc("line1,line2", "description"); // With STRICT_CHECK_FOR_QUOTING enabled, commas should be quoted String csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); // Expected: value with comma should be quoted (this works according to issue) assertEquals("\"line1,line2\",description\n", csv); } /** * Test newline in second column to ensure the bug affects any column position. */ @Test public void testStrictQuotingNewlineInSecondColumn() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); final IdDesc value = new IdDesc("id123", "desc\nwith\nnewlines"); // With STRICT_CHECK_FOR_QUOTING enabled, newlines in any column should be quoted String csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); // Expected: second column with newlines should be quoted assertEquals("id123,\"desc\nwith\nnewlines\"\n", csv); } /** * Test with custom line separator in schema (Windows-style). */ @Test public void testStrictQuotingWithCustomLineSeparatorCRLF() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\r\n"); final IdDesc value = new IdDesc("line1\nline2", "description"); // Even with different schema line separator, embedded newlines should be quoted String csv = MAPPER.writer(schema) .with(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); // Expected: embedded newline should be quoted assertEquals("\"line1\nline2\",description\r\n", csv); } /** * Comparison test: verify that WITHOUT STRICT_CHECK_FOR_QUOTING, * newlines ARE properly quoted (as mentioned in the issue). */ @Test public void testQuotingWithoutStrictCheckWorks() throws Exception { final CsvSchema schema = MAPPER.schemaFor(IdDesc.class) .withLineSeparator("\n"); final IdDesc value = new IdDesc("line1\nline2", "description"); // WITHOUT STRICT_CHECK_FOR_QUOTING (default loose mode), should be quoted String csv = MAPPER.writer(schema) .without(CsvWriteFeature.STRICT_CHECK_FOR_QUOTING) .writeValueAsString(value); // This should work correctly per the issue report assertEquals("\"line1\nline2\",description\n", csv); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorNoSchema.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.StringWriter; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonGenerator; import tools.jackson.databind.ObjectWriter; import tools.jackson.databind.SequenceWriter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class TestGeneratorNoSchema extends ModuleTestBase { private final CsvSchema SCHEMA = CsvSchema.emptySchema() .withoutHeader() .withEscapeChar('\\') .withQuoteChar('"') .withColumnSeparator(';') .withLineSeparator("\r\n") ; private final CsvMapper MAPPER = mapperForCsv(); @Test public void testUntypedAsSequenceStreaming() throws Exception { StringWriter sw = new StringWriter(); JsonGenerator gen = MAPPER .writer() .with(SCHEMA) .createGenerator(sw); assertEquals(0, gen.streamWriteOutputBuffered()); gen.writeStartArray(); gen.writeString("foo"); // this will be buffered because we output in correct order, so: assertEquals(3, gen.streamWriteOutputBuffered()); gen.writeNumber(1234567890L); gen.writeBoolean(true); gen.writeEndArray(); gen.writeStartArray(); gen.writeString("bar"); gen.writeNumber(-1250000000000L); gen.writeBoolean(false); gen.writeEndArray(); gen.close(); assertEquals(0, gen.streamWriteOutputBuffered()); String csv = sw.toString(); assertEquals("foo;1234567890;true\r\n" +"bar;-1250000000000;false\r\n", csv); } @Test public void testUntypedAsSequenceDatabind() throws Exception { ObjectWriter writer = MAPPER.writer(SCHEMA); String csv = writer.writeValueAsString(new Object[] { new Object[] { "foo", 13, true }, new Object[] { "bar", 28, false } }); assertEquals("foo;13;true\r\n" +"bar;28;false\r\n", csv); } @Test public void testUntypedWithSequenceWriter() throws Exception { try (StringWriter strW = new StringWriter()) { SequenceWriter seqW = MAPPER.writer() .writeValues(strW); seqW.write(new Object[] { "foo", 13, true }); seqW.write(new Object[] { "bar", 28, false }); seqW.close(); String csv = strW.toString(); assertEquals("foo,13,true\n" +"bar,28,false\n", csv); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorWithCustomSeparators.java ================================================ package tools.jackson.dataformat.csv.ser; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class TestGeneratorWithCustomSeparators extends ModuleTestBase { // [dataformats-text#17] @Test public void testOtherSeparator() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(FiveMinuteUser.class).withoutHeader().withColumnSeparator(';'); FiveMinuteUser user = new FiveMinuteUser("Barbie", "Benton", false, Gender.FEMALE, null); String result = mapper.writer(schema).writeValueAsString(user); assertEquals("Barbie;Benton;FEMALE;false;\n", result); } @Test public void testTSV() throws Exception { CsvMapper mapper = mapperForCsv(); CsvSchema schema = mapper.schemaFor(FiveMinuteUser.class).withoutHeader().withColumnSeparator('\t'); FiveMinuteUser user = new FiveMinuteUser("Barbie", "Benton", false, Gender.FEMALE, null); String result = mapper.writer(schema).writeValueAsString(user); assertEquals("Barbie\tBenton\tFEMALE\tfalse\t\n", result); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorWithSequences.java ================================================ package tools.jackson.dataformat.csv.ser; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class TestGeneratorWithSequences extends ModuleTestBase { @JsonPropertyOrder({"x", "y"}) protected static class Entry { public int x, y; public Entry() { } public Entry(int x, int y) { this.x = x; this.y = y; } } /* /********************************************************************** /* Test methods /********************************************************************** */ /** * Verify that we should be able to just serialize sequences as is * because any "array" markers are all but ignored by generator. */ @Test public void testAsSequence() throws Exception { CsvMapper mapper = mapperForCsv(); List entries = new ArrayList(); entries.add(new Entry(1, 2)); entries.add(new Entry(7, 8)); CsvSchema schema = mapper.schemaFor(Entry.class) .withLineSeparator("\n"); String csv = mapper.writer(schema) .writeValueAsString(entries); assertEquals("1,2\n7,8\n", csv); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestWriterWithMissingValues.java ================================================ package tools.jackson.dataformat.csv.ser; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectWriter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; //[dataformats-text#33] public class TestWriterWithMissingValues extends ModuleTestBase { private final CsvSchema SCHEMA = new CsvSchema.Builder() .addColumn("timestamp", CsvSchema.ColumnType.STRING) .addColumn("value", CsvSchema.ColumnType.NUMBER) .addColumn("id", CsvSchema.ColumnType.STRING) .build(); private final CsvMapper MAPPER = mapperForCsv(); final ObjectWriter WRITER = MAPPER.writer().with(SCHEMA); @Test public void testWrite_NoNulls() { final String csv = WRITER.writeValueAsString( mapOf("timestamp", "2014-03-10T23:32:47+00:00", "value", 42, "id", "hello")); assertEquals("\"2014-03-10T23:32:47+00:00\",42,hello\n", csv); } public void testWrite_NullFirstColumn() { final String csv = WRITER.writeValueAsString( mapOf("value", 42, "id", "hello")); assertEquals(",42,hello\n", csv); } public void testWrite_NullSecondColumn() { final String csv = WRITER.writeValueAsString( mapOf("timestamp", "2014-03-10T23:32:47+00:00", "id", "hello")); assertEquals("\"2014-03-10T23:32:47+00:00\",,hello\n", csv); } public void testWrite_NullThirdColumn() { assertFalse(MAPPER.tokenStreamFactory().isEnabled(CsvWriteFeature.OMIT_MISSING_TAIL_COLUMNS)); String csv = MAPPER.writer(SCHEMA).writeValueAsString( mapOf("timestamp", "2014-03-10T23:32:47+00:00", "value", 42)); assertEquals("\"2014-03-10T23:32:47+00:00\",42,\n", csv); ObjectWriter w = MAPPER.writer().with(CsvWriteFeature.OMIT_MISSING_TAIL_COLUMNS); csv = w.with(SCHEMA).writeValueAsString( mapOf("timestamp", "2014-03-10T23:32:47+00:00", "value", 42)); assertEquals("\"2014-03-10T23:32:47+00:00\",42\n", csv); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestWriterWithSomeMoreMissingValues.java ================================================ package tools.jackson.dataformat.csv.ser; import java.util.LinkedHashMap; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectWriter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class TestWriterWithSomeMoreMissingValues extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); @Test public void testWithAStringAndAUuid() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = mapOf( "string1", "hello", "string2", "2a36b911-9699-45d2-abd5-b9f2d2c9c4a3" ); final String csv = writer.writeValueAsString(map); assertEquals("hello,\"2a36b911-9699-45d2-abd5-b9f2d2c9c4a3\"\n", csv); } @Test public void testWithTwoStringsAndAUuid() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .addColumn("string3", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = mapOf( "string1", "hello", "string2", "world", "string3", "2a36b911-9699-45d2-abd5-b9f2d2c9c4a3" ); final String csv = writer.writeValueAsString(map); assertEquals("hello,world,\"2a36b911-9699-45d2-abd5-b9f2d2c9c4a3\"\n", csv); } @Test public void testWithANullAStringAndAUuid() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .addColumn("string3", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = mapOf( "string2", "world", "string3", "2a36b911-9699-45d2-abd5-b9f2d2c9c4a3" ); final String csv = writer.writeValueAsString(map); assertEquals(",world,\"2a36b911-9699-45d2-abd5-b9f2d2c9c4a3\"\n", csv); } @Test public void testWithAStringANullAndAUuid() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .addColumn("string3", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = mapOf( "string1", "hello", "string3", "2a36b911-9699-45d2-abd5-b9f2d2c9c4a3" ); final String csv = writer.writeValueAsString(map); assertEquals("hello,,\"2a36b911-9699-45d2-abd5-b9f2d2c9c4a3\"\n", csv); } @Test public void testWithThreeStringsAndAUuid() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .addColumn("string3", CsvSchema.ColumnType.STRING) .addColumn("string4", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = mapOf( "string1", "hello", "string2", "dear", "string3", "world", "string4", "2a36b911-9699-45d2-abd5-b9f2d2c9c4a3" ); final String csv = writer.writeValueAsString(map); assertEquals("hello,dear,world,\"2a36b911-9699-45d2-abd5-b9f2d2c9c4a3\"\n", csv); } @Test public void testWithANullAStringAStringAndAUuid() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .addColumn("string3", CsvSchema.ColumnType.STRING) .addColumn("string4", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = mapOf( "string2", "hello", "string3", "world", "string4", "2a36b911-9699-45d2-abd5-b9f2d2c9c4a3" ); final String csv = writer.writeValueAsString(map); assertEquals(",hello,world,\"2a36b911-9699-45d2-abd5-b9f2d2c9c4a3\"\n", csv); } @Test public void testWithAStringANullAStringAndAUuid() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .addColumn("string3", CsvSchema.ColumnType.STRING) .addColumn("string4", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = mapOf( "string1", "hello", "string3", "world", "string4", "2a36b911-9699-45d2-abd5-b9f2d2c9c4a3" ); final String csv = writer.writeValueAsString(map); assertEquals("hello,,world,\"2a36b911-9699-45d2-abd5-b9f2d2c9c4a3\"\n", csv); } @Test public void testWithTwoStringsANullAndAUuid() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .addColumn("string3", CsvSchema.ColumnType.STRING) .addColumn("string4", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = mapOf( "string1", "hello", "string2", "world", "string4", "2a36b911-9699-45d2-abd5-b9f2d2c9c4a3" ); final String csv = writer.writeValueAsString(map); assertEquals("hello,world,,\"2a36b911-9699-45d2-abd5-b9f2d2c9c4a3\"\n", csv); } @Test public void testWithTwoStringsANullAndAString() throws Exception { final CsvSchema schema = new CsvSchema.Builder() .addColumn("string1", CsvSchema.ColumnType.STRING) .addColumn("string2", CsvSchema.ColumnType.STRING) .addColumn("string3", CsvSchema.ColumnType.STRING) .addColumn("string4", CsvSchema.ColumnType.STRING) .build(); final ObjectWriter writer = MAPPER.writer().with(schema); final Map map = new LinkedHashMap<>(); map.put("string1", "hello"); map.put("string2", "world"); map.put("string4", "again"); final String csv = writer.writeValueAsString(map); assertEquals("hello,world,,again\n", csv); } // [Issue#45] @Test public void testWriteNullThirdColumn() throws Exception { final CsvSchema.Builder csvSchemaBuilder = new CsvSchema.Builder(); csvSchemaBuilder.addColumn("timestamp", CsvSchema.ColumnType.STRING); csvSchemaBuilder.addColumn("value", CsvSchema.ColumnType.NUMBER); csvSchemaBuilder.addColumn("id", CsvSchema.ColumnType.STRING); final CsvSchema schema = csvSchemaBuilder.build(); final ObjectWriter writer = MAPPER.writer().with(schema); final String string = writer.writeValueAsString( mapOf("timestamp", 0L, "value", 42)); assertEquals("0,42,\n", string); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/UnicodeWritingTest.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.ByteArrayOutputStream; import org.junit.jupiter.api.Test; import tools.jackson.databind.SequenceWriter; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; /** * Tests to try to see if Unicode writing, reading work as expected. */ public class UnicodeWritingTest extends ModuleTestBase { /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); @Test public void testSimpleStringSequence() throws Exception { // 16-Mar-2017, tatu: Actually, this assumes that read/write defaults are the same, // and for real Unicode support, UTF-8 (or UTF-16). Whereas many CSV impls assume // Latin-1 default. Oh well. We'll go UTF-8 unless punched in the face. ByteArrayOutputStream bytes = new ByteArrayOutputStream(); SequenceWriter w = MAPPER.writer() .writeValues(bytes); // turns out this writes 2 columns... fine final String STRING1 = "R\u00F6ck!"; final String STRING2 = "Smile (\u263A)..."; w.write(STRING1); w.write(STRING2); w.close(); byte[] b = bytes.toByteArray(); String[] stuff = MAPPER.readerFor(String[].class) .readValue(b); assertEquals(2, stuff.length); assertEquals(STRING1, stuff[0]); assertEquals(STRING2, stuff[1]); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/UnwrappedWriteTest.java ================================================ package tools.jackson.dataformat.csv.ser; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import com.fasterxml.jackson.annotation.JsonUnwrapped; import tools.jackson.dataformat.csv.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class UnwrappedWriteTest extends ModuleTestBase { @JsonPropertyOrder({ "f1", "f2", "f3" }) static class Inner { public String f1; public String f2; public String f3; } @JsonPropertyOrder({ "a", "inner" }) static class Outer { public String a; @JsonUnwrapped public Inner inner = new Inner(); } // for [dataformat-csv#125] @Test public void testWriteUnwrapped() throws Exception { CsvMapper mapper = mapperForCsv(); // Set null value to 'null' final CsvSchema schema = mapper.schemaFor(Outer.class).withNullValue("null"); // Create an object. All the fields are NULLs String csv = mapper.writer(schema).writeValueAsString(new Outer()); assertEquals("null,null,null,null", csv.trim()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/WriteBracketedArray495Test.java ================================================ package tools.jackson.dataformat.csv.ser; import java.io.StringWriter; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.SequenceWriter; import tools.jackson.dataformat.csv.*; import tools.jackson.dataformat.csv.CsvSchema.ColumnType; import static org.junit.jupiter.api.Assertions.assertEquals; // [dataformats-text#495] public class WriteBracketedArray495Test extends ModuleTestBase { // [dataformats-text#495]: @JsonPropertyOrder({"id", "embeddings", "title", "extra" }) static class Article { public int id; public String title; public double[] embeddings; public int extra; protected Article() { } public Article(int id, String title, int extra, double[] embeddings) { this.id = id; this.title = title; this.extra = extra; this.embeddings = embeddings; } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final CsvMapper MAPPER = mapperForCsv(); // [dataformats-text#495] @Test public void testBracketsWriteAutoSchema() throws Exception { final CsvSchema schema = _automaticSchema(); _testArrayWithBracketsWrite(schema); } @Test public void testBracketsManualSchemaArray() throws Exception { final CsvSchema schema = _manualSchema(ColumnType.ARRAY); _testArrayWithBracketsWrite(schema); } @Test public void testBracketsManualSchemaString() throws Exception { final CsvSchema schema = _manualSchema(ColumnType.STRING); _testArrayWithBracketsWrite(schema); } private CsvSchema _automaticSchema() { return MAPPER.schemaFor(Article.class) .withHeader() .withArrayElementSeparator(",") .withColumn("embeddings", col -> col.withValueDecorator(_bracketDecorator())) .withColumn("title", col -> col.withValueDecorator(_parenthesisDecorator())) .withColumn("extra", col -> col.withValueDecorator(_curlyDecorator())); } private CsvSchema _manualSchema(ColumnType ct) { return CsvSchema.builder() .setUseHeader(true) .setArrayElementSeparator(",") .addColumn("id", ColumnType.NUMBER) // and then the interesting one; may mark as "String" or "Array" .addColumn("embeddings", ct, col -> col.withValueDecorator(_bracketDecorator())) .addColumn("title", ColumnType.STRING, col -> col.withValueDecorator(_parenthesisDecorator())) .addColumn("extra", ColumnType.NUMBER, col -> col.withValueDecorator(_curlyDecorator())) .build(); } private CsvValueDecorator _bracketDecorator() { return CsvValueDecorators.STRICT_BRACKETS_DECORATOR; } private CsvValueDecorator _parenthesisDecorator() { return CsvValueDecorators.requiredPrefixSuffixDecorator("(", ")"); } private CsvValueDecorator _curlyDecorator() { return CsvValueDecorators.requiredPrefixSuffixDecorator("{", "}"); } private void _testArrayWithBracketsWrite(CsvSchema schema) throws Exception { StringWriter stringW = new StringWriter(); SequenceWriter sw = MAPPER.writerFor(Article.class) .with(schema) .writeValues(stringW); sw.write(new Article(123, "Title!", 42, new double[] { 0.5, -0.25, 2.5 })); sw.close(); assertEquals("id,embeddings,title,extra\n" +"123,\"[0.5,-0.25,2.5]\",\"(Title!)\",{42}", stringW.toString().trim()); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/dos/CyclicCSVDataSerTest.java ================================================ package tools.jackson.dataformat.csv.ser.dos; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.dataformat.csv.CsvMapper; import tools.jackson.dataformat.csv.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; /** * Simple unit tests to verify that we fail gracefully if you attempt to serialize * data that is cyclic (eg a list that contains itself). */ public class CyclicCSVDataSerTest extends ModuleTestBase { private final CsvMapper MAPPER = mapperForCsv(); @Test public void testListWithSelfReference() throws Exception { List list = new ArrayList<>(); list.add(list); try { MAPPER.writeValueAsString(list); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { String exceptionPrefix = String.format("Document nesting depth (%d) exceeds the maximum allowed", StreamWriteConstraints.DEFAULT_MAX_DEPTH + 1); assertTrue(e.getMessage().startsWith(exceptionPrefix), "DatabindException message is as expected?"); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/PrefixInputDecorator.java ================================================ package tools.jackson.dataformat.csv.testutil; import java.io.*; import java.nio.charset.StandardCharsets; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.InputDecorator; @SuppressWarnings("serial") public class PrefixInputDecorator extends InputDecorator { protected final byte[] _prefix; public PrefixInputDecorator(byte[] p) { _prefix = p; } @Override public InputStream decorate(IOContext ctxt, InputStream in) { if (in instanceof MySequenceInputStream) { throw new IllegalStateException("Trying to decorate MySequenceInputStream (double-decoration!)"); } return new MySequenceInputStream(new ByteArrayInputStream(_prefix), in); } @Override public InputStream decorate(IOContext ctxt, byte[] src, int offset, int length) { return decorate(ctxt, new ByteArrayInputStream(src, offset, length)); } @Override public Reader decorate(IOContext ctxt, Reader r) { if (r instanceof SequenceReader) { throw new IllegalStateException("Trying to decorate SequenceReader (double-decoration!)"); } String str = new String(_prefix, StandardCharsets.UTF_8); return new SequenceReader(new StringReader(str), r); } // sub-class only so we can check for "double decoration" static class MySequenceInputStream extends SequenceInputStream { public MySequenceInputStream(InputStream in1, InputStream in2) { super(in1, in2); } } static class SequenceReader extends Reader { protected Reader _reader1, _reader2; public SequenceReader(Reader r1, Reader r2) { _reader1 = r1; _reader2 = r2; } @Override public int read(char[] cbuf, int off, int len) throws IOException { if (_reader1 != null) { int count = _reader1.read(cbuf, off, len); if (count > 0) { return count; } _reader1 = null; } if (_reader2 != null) { int count = _reader2.read(cbuf, off, len); if (count > 0) { return count; } _reader2 = null; } return -1; } @Override public void close() throws IOException { _reader1 = _reader2 = null; } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/PrefixOutputDecorator.java ================================================ package tools.jackson.dataformat.csv.testutil; import java.io.*; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.OutputDecorator; @SuppressWarnings("serial") public class PrefixOutputDecorator extends OutputDecorator { protected final byte[] _prefix; public PrefixOutputDecorator(byte[] p) { _prefix = p; } @Override public OutputStream decorate(IOContext ctxt, OutputStream out) { if (out instanceof BufferedOut) { throw new IllegalStateException("Trying to decorate `Buffered` (double-decoration!)"); } return new BufferedOut(out, _prefix); } @Override public Writer decorate(IOContext ctxt, Writer w) { try { for (byte b : _prefix) { w.write((char) (b & 0xFF)); } } catch (IOException e) { throw new RuntimeException(e); } return w; } static class BufferedOut extends FilterOutputStream { protected byte[] _prefix; public BufferedOut(OutputStream b, byte[] prefix) { super(b); _prefix = prefix; } @Override public void write(int b) throws IOException { if (_prefix != null) { out.write(_prefix); _prefix = null; } super.write(b); } @Override public void write(byte[] b, int offset, int len) throws IOException { if (_prefix != null) { out.write(_prefix); _prefix = null; } super.write(b, offset, len); } } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/failure/JacksonTestFailureExpected.java ================================================ package tools.jackson.dataformat.csv.testutil.failure; import org.junit.jupiter.api.extension.ExtendWith; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** *

    * Annotation used to indicate that a JUnit-5 based tests method is expected to fail. * *

    * When a test method is annotated with {@code @JacksonTestFailureExpected}, the * {@link JacksonTestFailureExpectedInterceptor} will intercept the test execution. * If the test passes, which is an unexpected behavior, the interceptor will throw an exception to fail the test, * indicating that the test was expected to fail but didn't. *

    * *

    Usage Example:

    * *
    
     *
     *     @Test
     *     @JacksonTestFailureExpected
     *     public void testFeatureNotYetImplemented() {
     *         // Test code that is expected to fail
     *     }
     * }
     * 
    * *

    * * @since 2.19 */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @ExtendWith(JacksonTestFailureExpectedInterceptor.class) public @interface JacksonTestFailureExpected { } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/failure/JacksonTestFailureExpectedInterceptor.java ================================================ package tools.jackson.dataformat.csv.testutil.failure; import org.junit.jupiter.api.extension.ExtensionContext; import org.junit.jupiter.api.extension.InvocationInterceptor; import org.junit.jupiter.api.extension.ReflectiveInvocationContext; import java.lang.reflect.Method; /** * Custom {@link InvocationInterceptor} that intercepts test method invocation. * To pass the test ***only if*** test fails with an exception, and fail the test otherwise. * * @since 2.19 */ public class JacksonTestFailureExpectedInterceptor implements InvocationInterceptor { @Override public void interceptTestMethod(Invocation invocation, ReflectiveInvocationContext invocationContext, ExtensionContext extensionContext) throws Throwable { try { invocation.proceed(); } catch (Throwable t) { // do-nothing, we do expect an exception return; } handleUnexpectePassingTest(invocationContext); } private void handleUnexpectePassingTest(ReflectiveInvocationContext invocationContext) { // Collect information we need Object targetClass = invocationContext.getTargetClass(); Object testMethod = invocationContext.getExecutable().getName(); //List arguments = invocationContext.getArguments(); // Create message String message = String.format("Test method %s.%s() passed, but should have failed", targetClass, testMethod); // throw exception throw new JacksonTestShouldFailException(message); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/failure/JacksonTestShouldFailException.java ================================================ package tools.jackson.dataformat.csv.testutil.failure; /** * Exception used to alert that a test is passing, but should be failing. * * WARNING : This only for test code, and should never be thrown from production code. * * @since 2.19 */ public class JacksonTestShouldFailException extends RuntimeException { private static final long serialVersionUID = 1L; public JacksonTestShouldFailException(String msg) { super(msg); } } ================================================ FILE: csv/src/test/java/tools/jackson/dataformat/csv/tofix/package-info.java ================================================ /** * Test(s) for known issues not yet fixed: if an issue gets fixed, * move test(s) from here to appropriate package. */ package tools.jackson.dataformat.csv.tofix; ================================================ FILE: csv/src/test/resources/data/story-100.csv ================================================ id,title,url,score,time,comments,author,embeddings 26836923,Nobody is joining Google's FLoC,https://www.theverge.com/2021/4/16/22387492/google-floc-ad-tech-privacy-browsers-brave-vivaldi-edge-mozilla-chrome-safari,269,1618594993,173,Analemma_,"[-0.0027551164, 0.0045935838, 0.019918164, -0.018939488, 0.011978467, 0.015589927, -0.0420418, -0.013315534, -0.035425387, -0.013701492, 0.032668546, 0.007078185, 0.011695892, -0.0075123874, -0.007464143, 0.0012155939, 0.017561067, -0.021779032, 0.007746719, -0.013549866, -0.013019174, 0.02472885, 0.0007150552, -0.0013430978, -0.020317907, -0.012812411, 0.02781651, -0.02282663, 0.002169288, 9.5035575e-05, 0.026948106, 0.008236058, -0.0064682346, 0.0024087885, -0.015093696, -0.027003242, -0.0015601988, -0.01802973, -0.009249196, 0.00017004099, 0.017023483, -0.0028602208, -0.01244713, 0.001434418, -0.012695245, 0.008773642, 0.010090033, 0.002098644, -0.013039851, 0.025362924, 0.014404486, 0.014080557, -0.01441827, -0.016348058, -0.010262335, -0.010544911, -0.00049580034, 0.0056136143, 0.022743925, -0.017492147, 0.027899215, 0.02413613, -0.026948106, 0.00599268, -0.0043178997, -0.0054861107, -0.014804228, 0.008387684, 0.0033202686, -0.00995219, 0.016830504, 0.00952488, 0.00084686663, -0.007064401, 0.04102177, 0.0009847085, -0.02703081, -0.018043514, 0.03054578, -0.015934533, 0.009600693, -0.029305203, -0.0071815667, 0.05612925, 0.026713774, 0.009111354, 0.034598336, 0.010799918, -0.028588425, 0.021765247, 0.02085549, 0.013839334, 0.014652601, 0.0204971, -0.01829163, 0.025197512, 0.009607585, -0.0014955854, -0.03123499, -0.0049002822, 0.004734872, 0.014693954, -0.02883654, -0.014473407, -0.02834031, -0.0029274188, 0.022123637, -0.016623741, 0.021475779, -0.012833088, 0.003358175, 0.035315115, 0.006213227, -0.0061443057, -0.015079912, -0.024908043, -0.00033814358, -0.02489426, -0.012584972, -0.0073676533, 0.02033169, 0.0019401257, 0.0039216042, -0.010579371, 0.0015171232, -0.0038664674, -0.0006780102, -0.013804873, 0.020717649, -0.018140003, 0.026589716, -0.006802501, 0.0030842142, -0.010979113, -0.03435022, 0.011558049, -0.0083394395, 0.0034805099, -0.013791089, -0.0061270758, 0.00095283263, 0.0040766764, 0.004889944, -0.0051897503, -0.017037267, 0.04223478, -0.009759212, 0.03589405, 0.0051897503, 0.00028645285, 0.0012181784, 0.020014655, -0.006440666, 0.006364853, 0.031703655, 0.006292486, 0.011475344, 0.0138324415, 0.009483527, -0.016720232, -0.006209781, 0.012157662, -0.008842562, 0.0119922515, 0.0147077385, 0.027912999, 0.01077235, -0.024384245, 0.0070127104, 0.013053635, -0.006985142, 0.0060581546, -0.015631279, -0.0077880714, 0.022096068, 0.01605859, -0.0045935838, 0.01848461, -0.012309288, -0.032696117, -0.010379501, -0.0018556976, 0.00867026, -0.005796255, -0.020814138, -0.013026066, 0.01235064, 0.014804228, -0.008449713, -0.011475344, -0.0068679764, 0.007884561, 0.012853764, -0.019890597, -0.6210608, -0.009828133, 0.006557832, -0.033881556, -0.00643722, 0.0011018743, 0.0046211523, -0.005968557, 0.0008632353, 0.017905673, -0.011309934, 0.0017144096, 0.0053103617, -0.0028516059, -0.015576143, -0.015755337, 0.036445417, 0.0052276566, 0.029773867, 0.022082284, -0.019863028, 0.020042222, 0.009869485, -0.008304979, 0.009056218, -0.0007167783, 0.005675643, -0.002598321, -0.029718729, -0.0026982566, -0.020083575, 0.014790444, 0.014142586, -0.0063820835, 0.057121713, -0.011137632, -0.0062442413, 0.011771704, 0.018608667, 0.028560856, -0.024012072, -0.00435236, 0.022357969, 0.010220982, 0.018346766, -0.0057583484, 0.012977822, -0.008277411, -0.0031962108, 0.01399096, 0.0008813271, -0.02213742, -0.045129463, -0.005365499, -0.01106871, 0.0029825557, 0.022344183, -0.001816068, -0.012267935, 0.010413961, -0.0045039863, 0.016665094, -0.02594186, -0.03412967, -0.030600918, 0.017671341, -0.014376918, 0.009614478, 0.02318502, -0.03093174, 0.00712643, 0.004869268, 0.008980405, -0.019656265, 0.017588636, -0.0029756636, 0.042620737, -0.020841707, 0.0018315752, 0.0026431198, 0.012357533, -0.0027051487, 0.013329319, 0.0005767825, 0.013239722, -0.00047641632, -0.02164119, -0.008518633, -0.007760503, -0.026079701, 0.0026620731, 0.00949042, -0.00035881987, -0.012143877, 0.036886513, 0.03175879, -0.007670906, 0.008422145, -0.007009264, -0.014542328, -0.0218066, -0.011103171, -0.006709458, -0.007912129, 0.030352803, 0.012626325, 0.0030514766, 0.019794106, 0.020827921, -0.03936767, -0.00080723705, -0.027430553, -0.009835024, -0.0021968565, 0.0133637795, -0.017726477, 0.012598756, 0.0014792166, 0.007539956, -0.036500555, 0.023143668, -0.025542118, -0.009194059, -0.00010925053, 0.023570977, -0.028395446, 0.018470824, -0.016637526, -0.03109715, 0.013646355, 0.011502912, -0.023433136, 0.006233903, -0.005244887, 0.010110709, 0.025693744, -0.016416978, 0.004824469, 0.014583681, -0.0010553526, -0.018746508, -0.002930865, 0.006006464, 0.004969203, -0.023570977, -0.016210215, 0.00060564314, 0.016706446, -0.021475779, 0.0024174035, 0.0039560646, -0.020111144, -0.0037251792, 0.01681672, -0.015617495, 0.015093696, -0.012454022, -0.025376707, -0.01743701, -0.009586909, 0.008373899, -0.0027051487, 0.023557194, -0.003787208, 0.016554821, -0.0042593167, 0.011323718, 0.009269873, 0.0014766321, -0.029911708, 0.0040249857, -0.04082879, 0.006440666, 0.038568184, 0.009311225, 0.024067208, -0.02798192, 0.016113726, -0.009318117, -0.0056308447, 0.013157017, -0.016609957, -0.0033960815, -0.02689297, 0.030242529, 0.0017161325, 0.005606722, 0.049485266, -0.026727559, 0.017740263, 0.017395657, 0.0070919693, -0.0054792184, -0.025004534, -0.008139568, -0.007912129, 0.006502695, 0.0035253083, 0.038375206, 0.022771494, 0.047279797, 0.019752754, 0.0361973, -0.020814138, 0.026217543, -0.03713463, 0.014818012, -0.022399321, 0.020221418, 0.009111354, 0.008029295, -0.006295932, -0.020193849, -0.022523379, -0.0037561937, 0.02594186, 0.0058548376, -0.0021227663, 0.0069575734, 0.0074986033, -0.0058410536, 0.008980405, 0.0047314255, -0.010524235, -0.01441827, -0.013060527, 0.011854409, 0.018953271, 0.018939488, -0.06544737, -0.021489564, 0.018608667, 0.008904591, 0.01684429, -0.007615769, 0.01796081, 0.013570542, -0.01796081, 0.028588425, -0.022592299, 0.007574416, 0.047362503, 0.03727247, -0.0037424096, 0.004145597, -0.00034331265, 0.041407727, -0.0056136143, -0.022592299, 0.012240367, -0.00074219285, 0.005220765, -0.02104847, -0.0046693967, 0.029250067, -0.0017385319, 0.007987943, -0.021503348, 0.019077329, 0.03484645, 0.0071953507, 0.0025449074, 0.0064441124, -0.007546848, 0.0014774937, 0.010007327, -0.0027671775, -0.0068955445, -0.019187603, 0.006643983, -0.021475779, -0.009669614, -0.011489129, -0.0159621, 0.012295504, 0.011599402, -0.0054826643, 0.02052467, 0.023832876, 0.0050208936, -0.016554821, -0.012715922, 0.0052621174, -0.0012095633, -0.019463286, -0.016802937, -0.0073676533, -0.027017027, 0.022523379, -0.016113726, -0.009387039, -0.0034029738, 0.0040318775, 0.0071746744, -0.017147541, 0.0029498183, 0.010861947, -0.0049312967, -0.004479864, 0.0022726695, -0.00600991, 0.008442821, 0.006561278, -0.02157227, 0.04394402, -0.0005065692, 0.02026277, -0.017919457, -0.010145169, -1.3050566e-05, 0.01235064, -0.008897699, 0.01940815, -0.013480945, -0.010014219, 0.025238866, 0.0058996365, -0.0128675485, 0.010283011, 0.005651521, -0.0002092398, -0.004124921, -0.007471035, 0.01993195, 0.07482062, 0.006557832, -0.0072367033, 0.010000435, -0.014025421, -0.004600476, -0.009676507, -0.016761584, 0.031538244, 0.00962137, -0.019160034, -0.008773642, -0.014039204, 0.008684044, 0.010372608, 0.01888435, 0.005665305, -0.0064716805, 0.00020320922, 0.0020745217, -0.0071815667, -0.034570765, 0.0072918404, 0.0048864977, 0.005234549, 0.0040766764, 0.004190396, 0.029250067, -0.00446608, -0.00078785303, 0.009635154, -0.00420418, -0.010779242, 0.011709675, -0.011103171, 0.036693532, -0.030270098, 0.007636445, -0.009835024, 0.014500976, 0.036638398, 0.01133061, -0.014032313, -0.015521006, -0.016044805, -0.022964472, 0.0032375634, 0.033357758, -0.02137929, -0.0034339882, 0.03592162, 0.009235412, -0.029939277, -0.0029825557, -0.00052595325, -0.0072918404, 0.026644854, 0.015989669, 0.0022916228, -0.042179644, -0.024122344, -0.024246402, -0.007250488, -0.023309078, -0.028064625, -0.01017963, 0.002718933, -0.026203759, -0.009387039, -0.012702138, 0.024756419, -0.026189975, -0.050202046, -0.0002948526, 0.004455742, 0.0013112217, 0.0063855294, -0.0097729955, 0.0020073238, 0.025004534, 0.0022588854, -0.02489426, 0.0032358402, -0.019807892, 0.014638818, 0.0048727137, -0.019711401, -0.016706446, -0.015452085, 0.00978678, -0.021089822, -0.0032892541, 0.013046742, 0.008870131, 0.0060340324, 0.0034115887, 0.009373254, 0.009642046, 0.03225502, -0.04410943, 0.017919457, 0.0042489786, -0.020455748, 0.0026052133, -0.0050588003, 0.02470128, 0.008904591, 0.00078871456, -0.011289258, -0.00073745457, -0.008449713, -0.008325655, -0.009662722, -0.0034581104, 0.0055412473, 0.0038113305, -0.013839334, 0.026686206, -0.001573983, -0.045791104, 0.004142151, -0.024025856, 0.0033374988, -0.0036390282, -0.015341812, 0.003358175, 0.018705156, -0.014321781, -0.014693954, -0.026768912, -0.013901363, 0.021489564, 0.009256088, -0.0159621, -0.048989035, -0.016830504, -0.018774077, -0.024591008, -0.038016815, -0.0040904605, -0.027830293, -0.01750593, -0.0009330179, -0.033357758, 0.019490855, -0.035783775, 0.0029584332, -0.031841494, -0.01938058, 0.013873794, -0.03156581, 0.0041662734, -0.0106482925, -0.021668758, 0.01553479, -0.0105311265, 0.008594447, -0.036280006, 0.027899215, 0.04176612, 0.012178338, -0.014280428, 0.011241013, -0.0005905667, 0.008008619, -0.007202243, -0.010710321, 0.018443257, -0.0004992464, -0.0039526187, 0.006502695, 0.022440674, 0.015548575, -0.017657558, 0.010096924, 0.0030600918, -0.008601339, 0.000665949, -0.009979758, -0.02361233, -0.03484645, 0.010317472, -0.00952488, 0.0070988615, 0.007925914, -0.0002750378, -0.0020538454, 0.009380146, 0.029746298, -0.0004137413, 0.025666175, -0.0025690298, 0.01146156, 0.028478151, 0.002308853, -0.017905673, -0.036721103, -0.025804017, -0.0033254377, 0.020083575, -0.00377687, -0.009125139, -0.0002769762, 0.0018091758, -0.022385536, 0.03465347, -0.0019849243, -0.0045212167, 0.012743491, -0.008559986, 0.018498393, -0.029029518, -0.006423436, -0.009352578, -0.02026277, -0.0026310587, -0.0109101925, 0.014170155, 0.005031232, -0.027733805, -0.003938834, 0.020731432, 0.029057087, 0.0012276551, 0.026065918, -0.019353013, -0.008229165, -0.013143232, 0.0002838683, -0.0032168871, 0.0100348955, 0.03073876, 0.013150124, -0.01572777, -0.012171446, 0.0012285166, 0.006709458, -0.016403195, -0.04071852, 0.020731432, 0.007071293, -0.0033754052, -0.04410943, -0.02867113, -0.016182648, 0.0044488497, -0.0044626337, 0.006840408, 0.014790444, -0.016954562, -0.0111445235, 0.05185615, 0.00712643, 0.009517988, -0.010627616, 0.006513033, 0.001955633, -0.0086633675, -0.014404486, 0.022399321, 0.0071126455, 0.017685125, -0.0022985148, -0.014666386, 0.01060694, 0.035756208, -0.0053551607, -0.005120829, -0.032034475, 0.015948316, 0.00377687, 0.0059754495, -0.0029997858, -0.016265353, 0.0061856583, -0.021696327, -0.009573125, -0.008442821, 0.004807239, -0.014128802, 0.03258584, -0.014115018, -0.021599837, -0.012902008, 0.004889944, -0.0013568819, -0.011778597, -0.005596384, 0.022895552, -0.016224, -0.006781825, 0.010600047, -0.0048658215, 0.020869274, 0.009028649, -0.019325444, -0.0028257605, 0.0204971, -0.03468104, 0.031869065, 0.026658637, 0.022275263, -0.04432998, 0.013191476, -0.004700411, -0.03537025, 0.0029980629, -0.023502056, -0.04082879, 0.006826624, 0.0077949637, 0.0215447, 0.036886513, 0.0096833985, 0.0023174682, 0.03264098, 0.011399531, 0.019463286, -0.007333193, 0.0034615565, -0.010055572, 0.0013094987, 0.013735953, -0.0068955445, 0.014625033, -0.019132465, 0.01021409, 0.010041787, -0.02268879, -0.026231328, 0.021227663, 0.027706236, -0.0059168665, 0.011709675, -0.03040794, -0.0072918404, -0.002941203, -0.022578515, -0.005162182, 0.0068438537, 8.523588e-05, -0.004421281, -0.013260398, 0.02584537, 0.008594447, -0.022247694, -0.021324152, -0.0547784, -0.037851404, -0.004545339, -0.021779032, 0.034377787, 0.009138923, -0.031538244, -0.028285172, -0.0047417637, -0.018388119, 0.0011277196, -0.00271721, 0.007746719, 0.02118631, 0.018084867, -0.003787208, 0.012398886, -0.013308642, 0.024935612, 0.0029722175, 0.008987296, 0.032062043, -0.017519714, 0.014666386, 0.009414607, -0.035342682, 0.00097523193, 0.018277846, -0.012881332, -0.003769978, 0.03435022, -0.013804873, 0.032006904, -0.010579371, 0.016637526, 0.0084290365, 0.013108771, 0.031979337, -0.03330262, 0.015975885, 0.014170155, 0.011826841, -0.0028447136, -0.0012474698, -0.016416978, -0.01796081, 0.0038251148, 0.0054826643, -2.4930014e-05, 0.007925914, 0.0034839557, 0.018222708, 0.011661431, -0.0022071947, 0.017023483, 0.0020521223, -0.004193842, -0.00995219, -0.0020383382, 0.0063476227, -0.003780316, 0.0012155939, -0.027940568, 0.02137929, 0.005568816, 0.011254797, 0.0025828138, 0.011682107, -0.010420853, -0.021820385, -0.007119538, 0.01244713, -0.00042881776, 0.017616205, 0.010103816, -0.0033202686, 0.0054757725, -0.030518213, -0.0012569465, 0.0121094175, -0.01162697, 0.0054757725, 0.027692452, -0.011206552, -0.048299827, 0.033716146, -0.0034805099, 0.015589927, -0.020938195, 0.23025122, 5.1475363e-05, 0.008752965, 0.015645064, -0.027306495, 0.012564296, 0.009455959, 0.019187603, -0.00038488064, 0.0021606728, 0.01231618, 0.0012483314, -0.029387908, 0.006199443, 0.012336857, -0.0040801223, -0.0076640137, -0.051635604, -0.008559986, 0.0033926356, 0.013039851, -0.0013947885, -0.0017635158, -0.00978678, -0.00090717245, -0.013094988, 0.0041628275, 0.010834379, 0.01589318, 0.01051045, -0.011399531, -0.011854409, -0.008987296, 0.0119922515, 0.007140214, -0.0035528769, 0.011468452, 0.019656265, 0.013605002, 0.016472116, 0.009600693, -0.021227663, 0.0061822124, -0.02936034, 0.03038037, 0.020510886, 0.022468241, 0.0073125167, -0.024080992, -0.0043454682, -0.023129882, -0.005875514, 0.030297665, 0.012267935, -0.017285382, -0.00013698047, -0.0118750855, 0.049154446, -0.02577645, 0.010041787, -0.030683624, -0.0031324588, 0.021654975, 0.026258895, -0.01976654, 0.03173122, -0.012454022, -0.006013356, -0.0027447783, 0.012026712, 0.022082284, 0.009297441, -0.012964037, -0.007601985, 0.015355595, -0.017354304, 0.0070850775, 0.03980876, 0.0159621, 0.029773867, 0.0015584758, -0.006936897, -0.014514759, 0.015259107, 0.0013215599, -0.021958226, 0.022247694, -0.00474521, -0.0086909365, -0.017257815, -0.013928931, -0.01645833, -0.029084656, 0.008794318, 0.01352919, 0.0008266211, -0.0057445643, 0.013046742, -0.009731643, -0.024591008, -0.0030583688, 0.058500133, 0.036831375, 0.03228259, -0.016072374, 0.004142151, -0.029829003, -0.0006982557, -0.00096833985, -0.019559776, 0.008808102, -0.014693954, 0.0074434667, -0.013281074, -0.009152707, 0.01776783, 0.00034051275, -0.015672632, 0.0074848193, -0.0009502481, -0.0021779032, -0.024315324, 0.00017047176, 0.011502912, -0.003983633, -0.0054034055, -0.01829163, -0.006230457, -0.0086633675, -0.009256088, 0.008456605, -0.012681462, -0.00044087894, -0.026024565, -0.008842562, -0.0049967715, -0.0142115075, -0.02380531, -0.00517252, -0.0036493663, -0.01579669, -0.004338576, 0.03636271, -0.015314243, 0.004455742, -0.016210215, -0.001468017, 0.0074986033, -0.025211297, 0.00089941884, -0.00045918606, -0.008980405, -0.004338576, -0.008463497, 0.014039204, -0.009593802, 0.006430328, -0.017326735, 0.009897053, 0.0046521667, -0.038843866, -0.005679089, 0.03054578, 0.014776659, -0.027802726, -0.022716356, -0.17533499, 0.022261478, 0.009262981, 0.022109853, 0.0040870146, 0.0007714843, -0.008945944, -0.007670906, -0.0015498607, -0.019863028, 0.023543408, -0.012715922, -0.03195177, -0.020193849, 0.0053448225, 0.0006405344, -0.0009485251, 0.00021376275, 0.034377787, -0.00068533304, 0.021365507, -0.01691321, 0.0015481376, -0.03021496, -0.0057066577, -0.00041611044, 0.00012944223, -0.011813057, -0.010158953, -0.044798642, -0.0071677826, -0.0013698046, 0.016375626, 0.008491065, -0.00013321135, -0.003008401, 0.006330393, -0.025431843, 0.0032565165, 0.022550946, 0.019104898, 0.029029518, 0.006985142, 0.017712694, -0.00059702806, 0.022757709, 0.025307786, -0.014997207, -0.0007624384, 0.020579806, 0.024935612, -0.0025517994, 0.010682753, 0.020745216, -0.020510886, 0.010096924, -0.00024703867, 0.0054826643, 0.00033771285, -0.015038559, -0.012936469, -0.044137, 0.009442175, -0.023598546, -0.020827921, -0.02584537, -0.00025953059, 0.024646144, -0.014128802, 0.018498393, -0.0047073034, 0.026286464, 0.017023483, -0.0052896854, -0.010820595, 0.049760953, -0.014611249, -0.012371317, 0.027499473, 0.029470613, -0.00035300467, -0.005182858, -0.033330187, 0.0108826235, -0.009049325, 0.0016179201, 0.007395222, 0.004393713, -0.014845581, 0.0053103617, 0.01425286, -0.018553529, -0.010283011, -0.007346977, -0.009476636, 0.012061172, 0.023998287, -0.0016403195, 0.008649584, -0.005751456, -0.0051931962, -0.008849455, -0.043172106, 0.014693954, 0.026948106, 0.0022985148, -0.019421933, -0.0015205692, 0.036721103, -0.033385325, -0.015396948, 0.0025414613, 0.024232619, -0.012068065, -0.02577645, 0.015079912, 0.030270098, -0.0014774937, 0.02318502, -0.03156581, 0.057617944, -0.027692452, 0.0012104248, 0.0009140646, -0.016306706, -0.007960374, -0.11975711, -0.030793896, 0.003842345, 0.0075054956, 0.0043041157, 0.018898135, 0.00068145624, 0.040966634, -0.01938058, 0.02781651, -0.0037975463, -0.0060547087, 0.008566879, 0.002017662, 0.015603711, 0.01103425, -0.016527252, -0.01826406, -0.016637526, 0.0075330636, -0.018236494, -0.033054505, 0.015355595, -0.0042248564, 0.003418481, 0.0011983636, -0.0016937333, 0.028450582, 0.008008619, 0.0023536517, -0.0048727137, -0.01261254, -0.010655184, 0.0033374988, -0.005589492, -0.011737244, -0.0049347426, -0.030132255, 0.040387698, -0.01826406, 0.024191266, 0.0054998947, -0.0123437485, -0.024825338, -0.020621158, -0.037658427, -0.026741343, 0.017133757, -0.015052344, 0.013446485, -0.0044488497, -0.042510465, -0.0018195141, -0.02380531, 0.011930223, -0.012977822, -0.0055757076, 0.005737672, -0.031648517, -0.0033357758, -0.005644629, -0.015755337, -0.027885431, 0.01287444, 0.024149913, 0.015948316, -0.0204971, -0.003006678, -0.001812622, 0.011785489, 0.0064062057, 0.0020486764, -0.023116099, 0.045625694, -0.021834169, 0.009910838, 0.005382729, -0.011606294, 0.012012928, -0.0012802073, 0.006785271, -0.007987943, 0.0040284316, -0.015713984, 0.0023260834, 0.019077329, 0.017616205, 0.012557403, -0.0109101925, -0.043116968, 0.019063545, 0.01938058, -0.010675861, -0.0031824266, -0.028037056, 0.002712041, -0.0073263007, -0.0066164145, 0.020221418, 0.017285382, 0.011654539, -0.0041042445, -0.04587381, 0.007615769, 0.009042433, 0.0109033, -0.012192123, -0.010682753, 0.012853764, -0.028450582, -0.008091324, 0.024990749, -0.013046742, 0.015989669, -0.021337938, -0.0024932167, -0.04460566, -0.018388119, 0.023212587, -0.025404276, 0.015286675, 0.026644854, 0.035783775, -0.0034667256, 0.018346766, -0.014280428, -0.013522297, 0.015713984, -0.0027085948, 0.03090417, -0.007856992, -0.015038559, -0.005372391, 0.0035907833, -0.026327817, -0.013494729, 0.016554821, 0.004772778, -0.002034892, 0.015148832, 0.016926995, 0.033219915, 0.0026500118, -0.032310158, 0.019256523, -0.021448212, -0.03073876, -0.0046556126, -0.024094777, -0.010427745, 0.0034029738, 0.0119922515, 0.022040932, 0.002941203, -0.02472885, -0.027940568, 0.0011466729, -0.009697183, 0.02042818, 0.0020073238, -0.013556758, -0.01809865, 0.042786147, 0.031979337, 0.018801644, -0.0028998505, 0.018870566, -0.0041593816, -0.06059533, 0.00217618, 0.03352317, -0.005251779, -0.00893216, 0.0034357111, 0.020703863, 0.008229165, 0.017657558, -0.009972867, -0.007863885, 0.006164982, -0.0223304, 0.024260188, 0.004903728, -0.029718729, 0.0043041157, 0.008904591, 0.018525962, 0.015286675, -0.0047658863, 0.00932501, 0.0012569465, 0.018319199, -0.016706446, 0.013343103, 0.029911708, 0.019642482, -0.0009157876, -0.019366797, -0.029167362, 0.041959096, 0.010234767, -0.008739181, 0.007209135, 0.01034504, 0.0056377365, 0.0210209, -0.039891466, 0.02213742, -0.012509159, -0.0016368735, 0.010841271, 0.0553022, 0.0020934748, -0.014611249, 0.021503348, 0.009014865, -0.011006681, 0.013177693, -0.0041766115, -0.0029739405, -0.0076295533, -0.006354515, 0.018043514, 0.0038802514, 0.027678668, -0.005496449, 0.022812847, 0.00074994646, 0.035259977, -0.055715725, 0.018594882, -0.0032530706, 0.01510748, -0.0044867564, -0.033026937, -0.013191476, -0.005506787, -0.028588425, 0.006361407, 0.012192123, -0.00031919032, 0.07592336, 0.052407518, -0.027278926, 0.003938834, 0.0035735532, 0.01826406, -0.009704075, 0.0022244249, -0.016375626, -0.019463286, -0.0030652608, 0.016734015, -0.019270308, -0.036996786, -0.005375837, -0.010806811, -0.012074957, -0.019063545, 0.017299168, 0.0010450145, 0.009056218, -0.024908043, 0.012571188, -0.011751028, -0.0027275481, 0.00018727125, 0.02883654, -0.016306706, -0.0042868853, -0.029084656, 0.02118631, 0.022785278, -0.041407727, -0.027802726, 0.006161536, 0.007402114, -0.0048864977, -0.031124717, 0.008870131, 0.014542328, 0.0065922923, 0.009814348, -0.0048554833, -0.019173818, -0.005534355, -0.013157017, -0.0031341817, -0.010165845, -0.012812411]" 8252568,Weird pricing of Dropbox Pro,https://gist.github.com/kgabis/d06211c29439ee01a5ab,130,1409575764,139,kgabis,"[-0.0133309, -0.03383398, 0.017904464, -0.0557663, -0.0036283175, -0.0070682354, -0.019203773, -0.028558789, 0.012135536, -0.015032994, 0.004070082, 0.0023809818, 0.0033051146, 0.00033619595, 0.01265526, 0.032222837, 0.011817206, 0.012291454, 0.0022754131, 0.0046840054, -0.029052526, 0.019060848, -0.02653187, -0.0058338926, -0.00888077, -0.00014393896, 0.025076644, 0.010108616, 0.038407546, 0.0024881747, 0.009290052, -0.004148041, 0.0005237835, 0.0015729747, -0.02506365, -0.01535782, -0.010654326, 0.008757336, 0.024336038, 0.0013220459, 0.02746737, 0.00089571043, -0.010751774, -0.004245489, -0.013694706, 0.008348053, 0.002936436, -0.018164326, 0.00435593, 0.008023227, -0.03336623, 0.028844638, -0.036172733, -0.01451327, -0.021438582, -0.012642266, -0.022309119, 0.0023387542, 0.012181012, -0.006194451, -0.03882332, 0.006317885, -0.030819586, -0.009186108, -0.033054397, -0.007919282, -0.003755, -0.02185436, -0.0097902855, 0.02493372, 0.01383763, 0.012414888, 0.031105433, -0.016150398, -0.0078023444, -0.008315571, -0.00062529196, -0.0029104499, 0.0038816826, 0.011908158, 0.026544861, -0.0097643, -0.0023647405, 0.007737379, 0.024543928, 0.016124412, -0.038407546, 0.008965225, -0.037316125, 0.00666545, 0.009471955, 0.013012569, -0.014396332, 0.009309541, 0.013226955, -0.0036543037, -0.013421851, 0.027181523, 0.0195286, -0.01999635, -0.0012668252, 0.022945778, -0.051920347, -0.008802812, -0.022880813, -0.0029672945, 0.047814533, -0.0148510905, -0.015058979, 0.0023241371, 0.0031556943, 0.0245959, 0.018852958, -0.01417545, 0.010725787, -0.019060848, 0.002010679, -0.012310943, -0.014305381, -0.009517431, 0.032014947, 0.004485861, 0.04433239, -0.0283509, 0.0009769172, 0.0034106835, 0.011732751, -0.0038459515, 0.024920726, 0.017228823, 0.011213028, 0.017319776, 8.080072e-05, 0.022218166, -0.027233494, 0.032976437, 0.003767993, 0.010719291, -0.011732751, -0.0028698465, 0.02493372, 0.010901194, -0.003272632, -0.00027975725, -0.006353616, 0.037472043, 0.00921859, 7.506549e-05, 0.004547578, 0.010037154, -0.0089067565, -0.008062206, 0.023517475, 0.010901194, 0.021659464, 0.0073670764, 0.007613945, 0.0068408563, -0.010186574, 0.016527198, -0.015994482, 0.024647873, 0.014578235, 0.007613945, -0.0066914363, 0.021997284, -0.028792664, 0.0015737868, 0.006717422, -0.013174983, -0.017488685, 0.0163323, -0.022413062, 0.023738356, 0.025908202, 0.021139741, -0.0139805535, -0.0048106876, -0.011576834, -0.02134763, -0.003621821, 0.01742372, 0.007016263, 0.023907267, -0.009634369, 0.013499809, -0.003069615, -0.005453845, 0.0075229933, 0.020061316, -0.0037972275, 0.016384274, -0.0016858521, -0.023140674, -0.6373885, -0.016306315, 0.022517007, -0.022179186, -0.00786731, 0.040824257, -0.0025433954, 0.008244109, -0.054155156, 0.01502, 0.021867353, -0.0110571105, -0.011719758, -0.002780519, -0.011765234, -0.0028454845, -0.0029981532, -0.022659931, -0.033184327, 0.009842258, -0.025076644, 0.020347163, -0.02485576, 0.0005189111, -0.0015218145, -0.014799118, 0.002609985, -0.008458495, -0.00113121, 0.022452042, -0.0032076666, -0.011187042, 0.009809775, 0.008451998, 0.04932173, -0.0291045, -0.001695597, 0.007613945, 0.02080192, 0.010985649, -0.021542527, -0.01809936, -0.006532271, -0.0041447924, 0.00081044337, -0.00888077, 0.010725787, -0.0084260125, 0.027415399, 0.018398201, -0.009017197, 0.014708166, -0.0050965357, -0.017384741, 0.011849688, 0.029494291, 0.01650121, -0.023855295, 0.01661815, -0.011063607, -0.010823236, -0.021945313, 0.005882617, 0.009173114, -0.037601974, -0.005567535, -0.004612543, -0.00070325047, 0.018541126, -0.012570805, 0.016163392, 0.0022559236, 0.017995415, -0.025804257, 0.0007048746, 0.02341353, 0.05535052, -0.01817732, -0.03851149, -0.00047099913, 0.019021869, -0.011758737, -0.020204239, -0.02033417, 0.031677127, 0.025037665, 0.0036900346, -0.00024686853, 0.0029494292, -0.019307716, 0.026635813, 0.02489474, 0.0075489795, -0.0021714685, -0.0025206574, 0.008120675, -0.028194983, -0.001793045, 0.015617682, -0.0016663625, -0.013200969, 0.011628807, 0.03591287, 0.0061684647, 0.016085433, 0.017358754, -0.04737277, 0.022478027, 0.05015329, 0.008088192, 0.008016731, -0.011986116, -0.0017573141, 0.017644603, -0.006464057, -0.024842769, 0.032300796, -0.022945778, 0.021126747, -0.019307716, -0.011576834, -0.02392026, 0.022776868, -0.02100981, -0.015955502, 0.0212177, 0.035159275, -0.015799586, 0.0048171845, 0.013993547, 0.015786592, -0.019944377, 0.02733744, -0.0038459515, 0.014812111, 0.0027837674, 0.010641333, -0.006161968, 0.0025791263, -0.02767526, -0.0035341177, -0.006717422, 0.0150459865, -0.011576834, 0.0035406142, -0.015617682, -0.0061814575, -0.011843192, -0.0055902726, 0.024686852, -0.020438114, -0.00039304065, 0.010290519, -0.019463634, -0.004901639, -0.021321643, -0.017241817, -0.032352768, -0.048074394, -0.018255277, 0.006116492, 0.014136471, -0.0035146282, 0.022594966, -0.020944845, 0.0013228579, 0.013071038, 0.009445969, 0.0048106876, -0.018632077, 0.004284468, 0.0032060423, 0.002467061, 0.022335105, 0.025726298, 0.00035061015, -0.013421851, 0.0035243728, -0.0058663753, -0.023777336, 0.0045573227, 0.004248737, -0.0052654454, 0.01179122, 0.031183392, 0.011245511, 0.016423253, 0.0208409, -0.020996816, 0.028298927, 0.03365208, 0.033937924, 0.021620484, -0.020100294, -0.015812578, -0.014890069, 0.0002777271, 0.021971298, 0.013863616, 0.009322534, 0.015097959, 0.021477561, 0.029702181, 0.006847353, 0.0060742646, -0.026999619, -0.0035438626, -0.008737846, 0.013538789, 0.037550002, 0.012064074, -0.012960597, -0.0046482743, 0.0041090613, -0.006918815, 0.0140715055, 0.018580103, 0.027831176, -0.016761072, -0.0017946692, 0.00023448448, -0.01830725, 0.015539723, 0.0018612586, 0.0067693945, -0.0011044118, 0.0026213538, 0.017241817, 0.015084965, -0.048152354, -0.008296082, 0.014045519, -0.03877135, -0.005353149, 0.0015234386, 0.0023420027, -0.0131035205, -0.0266618, 0.01042045, -0.0063341265, -0.005489576, 0.00025438014, 0.028584775, -0.011732751, 0.01040096, 0.0034204281, 0.008101185, 0.0053823832, -0.025713304, 0.028117025, -0.017865485, -0.010426947, 0.016644135, -0.029702181, -0.013408858, -0.011888668, 0.0022299374, 0.012694239, 0.009179611, 0.01691699, 0.012609784, 0.0057949135, 0.021204706, -0.007178677, 0.021529533, 0.0004115152, -0.0100826295, -0.01379865, 0.013863616, -0.0072501386, -0.010050147, -0.018502146, 0.012388902, -0.00025072583, -0.022504015, 0.003959641, -0.0064185816, -9.998581e-05, 0.011381938, 0.014539257, -0.021607492, -0.027649274, 0.015500744, 0.039810795, 0.01045943, -0.012148529, 0.003742007, -0.009335528, 0.019762475, 0.02915647, -0.015565709, 0.018865952, -0.013239948, 0.012336929, 0.008685874, -0.028117025, 0.01650121, -0.0074190483, 0.0044111507, -0.012142033, -0.0014771507, 0.016072439, -0.024842769, -0.009608382, 0.055506438, 0.014825104, -0.0026522125, -0.004560571, 0.018489152, -0.0130970245, -0.023907267, -0.037238166, -0.027649274, -0.0009890982, 0.0064673056, 0.017488685, 0.00416753, -0.0028227465, 0.034951385, 0.027961107, -0.039602906, -0.011869178, -0.040746298, 0.0059410855, 0.06610879, 0.026375951, 0.0059865615, 0.025167596, -0.0035146282, -0.006762898, -0.0060742646, -0.026921662, 0.01932071, 0.009504437, -0.0009249449, 0.0019846929, -0.005440852, -0.015760606, 0.00082871487, -0.0073475866, 0.017137872, -0.020892872, 0.0031865528, -0.0072891177, -0.023088703, 0.019957371, 0.03302841, 0.035756957, 0.03796578, 0.015071972, 0.029390346, 0.004368923, 0.027155537, -0.015292855, 0.0030127703, -0.0030777357, 0.009400493, 0.002562885, -0.012194006, 0.0127137285, -0.00092088454, -0.009510934, 0.0011141566, 0.007990744, 0.019021869, 0.036380623, 0.0032904975, 0.009277059, 0.0015299352, -0.004823681, -0.0266618, 0.027649274, -0.01194064, -0.017956436, 0.005210225, 0.012096557, -0.01094667, 0.004303958, -0.0028536052, 0.0030517497, 0.018255277, -0.0094979415, -0.011550848, -0.046099447, -0.020113287, -0.025869222, 0.015955502, 0.02104879, -0.005522059, -0.02463488, -0.0077308826, 0.0086209085, -0.0104724225, -0.028168997, 0.015409793, -0.026518876, 0.00081287953, 0.0068538496, 0.014240416, 0.009173114, 0.0030614943, -0.0038297102, 0.0073800692, 0.044982042, 0.00081409764, -0.008978218, 0.025934188, 0.0033879455, -0.01759263, 0.002514161, 0.020009343, -0.016215364, 0.003897924, 0.0147601385, 0.0014178698, -0.0040960684, 0.01898289, -0.013071038, -0.0061814575, -0.0057656793, 0.0022819096, 0.007919282, -0.0090107005, -0.0052751903, 0.012739715, 0.012674749, -0.0032044183, -0.015851557, 0.020126281, 0.027753219, 0.005596769, -0.024024205, 0.002333882, -0.005064053, 0.0013155494, 0.010784256, -0.011342959, 0.024011211, 0.014149464, 0.0023030234, -0.00443064, -0.005307673, 0.03004, -0.01400654, -0.018528132, -0.04960758, 0.00012810365, 0.01472116, -0.0012611408, 0.0022819096, 0.004661267, -0.034951385, -0.009731817, -0.005859879, -0.0020058067, 0.014578235, -0.0031556943, -0.0045508263, -0.042123564, -0.024777804, -0.00021377676, 0.036796402, -0.011277993, -0.034899414, -0.023803322, 0.011583331, -0.011570337, -0.019385675, -0.00095823966, -0.02358244, -0.016981956, -0.011745744, -0.02653187, 0.027493358, 0.011414421, -0.010771263, -0.03391194, -0.01248635, 0.002117872, -0.016942976, 0.02269891, -0.016813045, 0.0057169553, 0.020658996, 0.019463634, 0.024388012, 0.0044436334, 0.022607958, 0.018749014, 0.0010662446, 0.029130485, -0.00038573207, -0.008744342, -0.0021990787, 0.005103032, 0.017826505, -0.004778205, -0.017098892, -0.006535519, 0.003103722, -0.005681224, -0.0057202033, -0.029728167, -0.030481765, -0.011589827, -0.02337455, -0.018593097, 0.0011620686, -0.012499343, -0.022685917, 0.034769483, -0.010790753, 0.039628893, -0.0050250734, 0.01468218, 0.008627405, 0.027259482, 0.019775467, -0.0030273877, -0.009699334, 0.007925779, -0.010641333, -0.0013918837, 0.0036055797, -0.01674808, 0.012018599, 0.0014349233, -0.0006817306, -0.011187042, 0.0059963064, -0.037913807, -0.0133309, -0.004950363, -0.009738313, 0.017748548, -0.019515606, -0.014565242, -0.0030956012, -0.028168997, 0.026895676, 0.004934122, -0.0003355869, 0.005837141, -0.020736955, 0.004079827, 0.010316505, 0.014435312, 0.008309075, 0.02915647, 0.0024589403, -0.0003897924, -0.018424187, -0.025245555, 0.002899081, -0.0040863235, 0.025128616, 0.027389413, -0.017839499, 0.0010841101, -0.0016663625, -0.022880813, -0.011817206, -0.020775935, 0.012291454, 0.00086322776, 0.012018599, -0.0048691565, -0.013356886, 0.005859879, 0.030299863, 0.0108557185, 0.021074776, -0.0004344561, -0.013291921, -0.011680779, 0.024167128, 0.0018174071, 0.020827906, -0.01090769, -0.008958728, 0.0025482678, -0.04087623, -4.9231592e-05, -0.0020626513, -0.006619974, 0.009192604, -0.01637128, 0.01822929, -0.01023205, -0.005587024, -0.024388012, -0.011700268, -0.005304425, 0.014825104, -0.02227014, -0.017774533, 0.0053856317, 0.003670545, -0.010836229, -0.012700736, -0.03484744, -0.020814914, 0.006762898, -0.020529065, 0.0035438626, -0.005567535, -0.029182456, 0.010063141, 0.016929982, -0.0089132525, -0.013603754, 0.004901639, 0.024284067, -0.006087258, -0.027701246, 0.015526731, 0.011180545, 0.008042716, -0.004690502, 0.0018222794, 0.0009639241, 0.020697976, -0.015825571, 0.006944801, 0.037342113, 0.011576834, -0.015539723, 0.043942597, -0.025752284, -0.00149258, 0.009796782, -0.01194064, -0.03274256, 0.0011685651, -0.011453399, 0.0040603373, 0.003647807, -0.013993547, 0.006483547, 0.0085234605, -0.001010212, -0.009673348, -0.044774152, 0.0036413106, 0.010030658, -0.013174983, 0.0065387674, -0.011817206, -0.0052849352, -0.014773131, 0.013928582, -0.015643667, -0.018775001, -0.010004671, -0.005232963, 0.01932071, -0.010258037, 0.0062983953, -0.022945778, -0.0027009365, 0.0016395643, 0.017319776, 0.015630675, 0.009770796, 0.0042909645, 0.023153668, 0.019021869, 0.0006516842, 0.020892872, -0.022633946, 0.002369613, -0.020658996, -0.017280797, -0.013239948, 0.0034756488, 0.03357412, 0.004196765, -0.04467021, -0.026739758, -0.008283088, -0.04100616, -0.008003737, -0.025882214, 0.016111419, 0.025206575, 0.048386227, -0.012284957, 0.02514161, 0.01898289, 0.05020526, -0.035341177, -0.011804213, -0.01657917, -0.016774066, 0.011615814, -0.017111886, -0.029312387, -0.016929982, 0.01999635, 0.014214429, 0.019957371, 0.010693304, -0.035341177, -0.002624602, 0.010206064, 0.024336038, 0.007074732, 0.034691524, 0.012512336, -0.017501678, 0.008328564, 0.0023874785, 0.033132352, -0.019853426, -0.025024671, 0.0057169553, -0.004141544, 0.010329498, -0.008114179, 0.016085433, 0.0063698576, -0.012765701, -0.008088192, 0.0028243707, -0.009439472, 0.0030761117, 0.008075199, -0.034067854, -0.012941107, 0.025193581, -0.018826973, 0.006243175, 0.0029981532, -0.036926333, 0.0163323, -0.009491445, 0.008198634, -0.028922595, -0.0014000044, -0.039161142, -0.013525796, -0.0024459474, 0.008198634, 0.013272431, -0.03282052, 0.012726721, -0.008601419, 0.008939239, 0.006545264, 0.009173114, 0.0043494334, -0.04175976, -0.010751774, -0.0013983803, 0.0020723962, -0.03965488, 0.010485415, 0.012518832, 0.014916056, -0.006879836, 0.20009343, 0.017280797, 0.030897543, 0.06257467, 0.021243686, 0.016137404, 0.007516497, -0.0015494247, -0.020568045, -0.008484481, -0.009225086, 0.014656194, -0.021464568, -0.0020123033, 0.0009842258, -0.027103564, -0.034431662, -0.015422786, -0.017774533, 0.0424354, 0.0020123033, -0.012603288, -0.023426523, 0.0012652011, -0.022919793, -0.011083097, -0.017293788, 0.019606557, 0.014318374, 0.0017638105, -0.011901661, -0.011973123, -0.003131332, 0.0025190334, -0.02527154, -0.01179122, 0.008958728, -0.016553184, 0.011265, 0.013655727, 0.0099786855, 0.024323046, -0.00906917, -0.018969897, -0.016566176, -0.0051452597, -0.0047847014, -0.013408858, 0.017007941, 0.00478795, -0.0033359732, -0.015318841, 0.0104724225, 0.010095623, 0.005570783, -0.008367543, -0.016306315, 0.014162457, -0.016722094, 0.013889602, -0.004921129, 0.024920726, -0.0027756467, 0.0014381715, -0.024401003, -0.0026181056, -0.023894275, 0.020581039, -0.009933209, 0.0037842344, -0.02029519, 0.0063146367, -0.01687801, 0.008614412, -0.017241817, -0.008322068, 0.051738445, 0.038667407, 0.010193071, 0.022659931, 0.0208409, 0.021516541, 0.006964291, -0.037368096, 0.018463166, -0.023660399, 0.032560658, -0.005174494, -0.024751818, -0.0020870133, -0.00026026764, -0.02202327, -0.023257613, -0.0028341154, -0.012752708, 0.013941575, 0.010647829, 0.030091973, -0.025388477, -0.008744342, 3.1492993e-05, 0.048152354, 0.02236109, 0.016475225, -0.029416332, -0.015292855, -0.0098877335, 0.014903063, 0.032170866, 0.0024508196, 0.009361514, -0.022750882, 0.021308651, -0.020827906, 0.019762475, 0.011628807, -0.0027106812, -0.02632398, -0.0011352703, -0.013343893, 0.028636748, -0.029390346, 0.007159187, -0.0012213495, -0.015123945, -0.015747612, -0.0010605601, 0.013616747, 0.0068928287, -0.045034014, -0.0013082407, 0.0010402584, 0.020529065, -0.015578703, -0.0020642756, 0.009920216, 0.013538789, -0.03682239, -0.004307206, 0.007087725, -0.006434823, 0.030014014, 0.017072907, 0.012161523, 0.00046896897, 0.009283556, 0.0019944378, 0.00091357593, -0.01227846, -0.0072696283, -0.017475693, -0.0052881837, -0.034249756, -0.022581972, 0.024907734, -0.0140715055, -0.037238166, -0.026544861, -0.011635303, -0.0053369077, -0.03300242, -0.012609784, 0.012765701, -0.037056264, -0.03289848, -0.017267803, -0.1627773, 0.040200587, 0.01197962, 0.024881748, 0.021074776, 0.014357354, -0.0051485077, 0.0006439695, 0.023140674, -0.015903529, -0.03004, -0.0033489664, -0.031988963, -0.006957794, 0.015981488, -0.0011044118, -0.007159187, 0.037601974, 0.024569914, 0.002345251, 0.024180122, -0.0149550345, 0.029936057, -0.011784723, -0.011609317, 0.013207465, -0.0121225435, 0.0063698576, 0.00033538387, -0.025648339, 0.007399559, 0.0059670717, 0.0029916565, 0.020957837, 0.010284022, -0.033314258, 0.001648497, -0.00149258, 0.003742007, 0.03599083, -0.023660399, 0.010102119, -0.0053401557, 0.0030257634, 0.020113287, 0.04991941, 0.022971764, -0.021763409, -0.012642266, 0.021477561, 0.020477094, -0.018515138, -0.0012725098, 0.011531359, -0.019879412, -0.002393975, 0.0018060381, 0.022010278, -0.0019587069, -0.038173668, -0.021022802, -0.04376069, 0.024920726, -0.020723961, -0.031521212, -0.012356419, 0.011258503, 0.0007194918, 0.0010378222, 0.0024962954, 0.02780519, 0.0043104542, 0.013759672, 0.0018174071, 0.005353149, -0.014981021, -0.028844638, -0.018632077, 0.009101653, -0.010680311, 0.017774533, 0.022010278, -0.010985649, 0.04256533, -0.0039888755, -0.0022575476, 0.03573097, 0.009952699, -0.023062717, -0.0059150998, 0.0032498941, 5.6590954e-05, 0.01299308, 0.02392026, 0.0071072145, 0.003105346, 0.029520277, -0.0027610294, -0.009400493, 0.013811644, 0.004826929, 0.0046937503, -0.028480832, 0.001119029, 0.045683667, 0.04188969, 0.010452933, -0.0033489664, 0.007828331, -0.013304913, -0.05251803, 0.01518891, 0.040850244, 0.02754533, -0.0037972275, 0.033184327, -0.013499809, -0.009478452, -0.0002840206, -0.012661756, 0.04443633, -0.018424187, -0.020217232, -0.021594498, -0.004034351, -0.00030168306, -0.081232734, -0.017774533, 0.01242788, -0.005811155, -0.015903529, -0.028402872, -0.030014014, 0.03159917, 0.017293788, 0.022374084, -0.016059447, 0.0060840095, -0.006486795, -0.017033927, 0.027155537, -0.011187042, -0.0044111507, -0.030481765, 0.0017378244, 0.022452042, 0.0036413106, 0.0047717085, -0.005304425, -0.0052264663, -0.019983357, -0.022828842, -0.03126135, 0.01573462, 0.011375441, -0.01027103, 0.0036997795, -0.010751774, 0.014487284, -0.013012569, -0.012557812, 0.019463634, -0.006097003, -0.0022088236, -0.015799586, -0.035263218, -0.006561505, -0.006425078, 0.01674808, -0.030273875, -0.0090107005, -0.012018599, 0.009523927, -0.021997284, -0.0021357376, -0.010803746, -0.010154092, 0.0017638105, -0.014838097, -0.032040935, 0.0034074353, -0.023634411, -0.0073800692, -0.019892406, -0.008023227, -0.0055253073, -0.017878478, 7.963337e-05, -0.033470172, 0.02547943, 0.024232093, -0.016098427, 0.00030269814, -0.0053141695, 0.002756157, -0.0048594116, 0.0021974547, 0.011044118, 0.010186574, 0.0037647448, -0.011316973, 0.008503971, -0.019736487, -0.009816272, 0.009342024, 0.000830339, -0.017462699, -0.025960173, 9.20174e-05, -0.01898289, 0.0050315703, 0.006243175, -0.0005919972, -0.016189378, 0.028662734, -0.032222837, 0.014149464, 0.026233029, 3.570559e-05, 0.019047854, -0.01935969, 0.009712327, -0.014578235, -0.015123945, 0.009673348, -0.0070097665, -0.027909135, -0.0013009321, -0.049087856, 0.0068928287, 0.0071072145, 0.0097643, 0.015344827, 0.0066979327, -0.013642734, -0.015162924, -0.013408858, -0.00054570934, 0.0062951474, -0.0020171755, -0.00435593, -0.031001488, -0.004040848, 0.0037127726, 0.013694706, 0.0039498964, 0.023114689, 0.025999153, 0.0012327185, 0.0027870156, -0.014396332, 0.020555053, -0.043059066, 0.0019781964, -0.005908603, 0.03552308, 0.031625155, -0.054155156, 0.0043364405, -0.0057364446, -0.0024816783, 0.013499809, 0.0024134645, -0.003439918, -0.011297483, 0.0078023444, 0.0019716998, -0.006532271, -0.0060125478, -0.013538789, 0.02375135, -0.016761072, -0.039291073, -0.031703115, 0.007120208, -0.0029543014, 0.011843192, 0.001552673, 0.0424354, -0.0009233207, -0.0040083653, -0.01928173, -0.008029724, -0.027571315, 0.0012725098, 0.0014178698, -0.012531825, 0.0006200135, 0.024193114, 0.024102163, 0.004248737, -0.0023891025, 0.008614412, -0.0075035035, -0.041447923, -0.012064074, -0.019957371, -0.019008875, 0.0066264705, -0.008796315, 0.024881748, 0.0022932785, 0.007639931, 0.02054206, -0.013642734, -0.015825571, -0.018930918, 0.025505416, 0.018554118, -0.024336038, -0.0332363, 0.028246956, 0.022179186, 0.0129995765, -0.0047814534, -0.0071332008, -0.0032450217, 0.014890069, -0.020061316, 0.007613945, -0.005184239, 0.011044118, 0.03295045, 0.012226488, -0.0032060423, -0.020425122, -0.009075666, 0.031209378, 0.024413997, 0.00064031524, -0.013538789, -0.009562907, -0.0009533672, -0.0068083736, -0.008614412, -0.010335995, -0.0017345762, 0.021230692, 0.0019294723, -0.00021276168, -0.016813045, 0.017579637, -0.031729102, -0.0053791353, 0.01945064, -0.009484949, -0.007919282, 0.017124878, 0.0067109256, 0.031547196, 0.014110484, -0.02455692, 0.040512424, -0.018398201, -0.008120675, -0.0027740225, 0.0049438667, -0.007945268, -4.4359185e-05, -0.009562907, -0.019541591, -0.027311454, -0.0064575607, 0.004726233, -0.007471021, 0.02240007, 0.004141544, 0.07894595, 0.005229715, -0.009491445, 0.016839031, 0.021516541, 0.003657552, 0.017410727, 0.03580893, -0.0063828505, -0.0149550345, 0.015526731, 0.005548045, 0.004739226, 0.01661815, -0.032560658, 0.0044533783, -0.010134602, 0.001997686, -0.021438582, 0.014240416, 0.03287249, -0.012863149, 0.0026034883, 0.0012367788, -0.012609784, -0.0018433932, -6.56252e-05, 0.018346228, 0.008952232, 0.0007138073, -0.01318148, 0.013486817, -0.013681713, -0.018710034, 0.009173114, 0.008127172, -0.027779205, -0.0017345762, -0.014929049, -0.015318841, 0.0010020913, 0.025726298, -0.0020285447, -0.01965853, 0.0046775085, -0.022542993, 5.3989797e-06, -0.010836229, -0.006269161]" 34582385,The Parallel Port,https://computer.rip/2023-01-29-the-parallel-port.html,108,1675097152,73,PreInternet01,"[-0.0065235244, -0.0043943417, 0.004881865, -0.010659181, -0.013299102, 0.016861007, 0.00708401, -0.010466824, -0.015282359, -0.03268727, 0.0032484962, 0.026027769, -0.0254706, 0.01164086, -0.008934609, 0.009266257, 0.020509139, 0.0046397615, 0.019209076, -0.018983556, -0.01792228, 0.0034823085, -0.010732143, -0.0030196588, -0.028946275, 0.022127582, 0.028097255, -0.024144005, -0.00938565, -0.0039499328, 0.0028438852, 0.0010082112, -0.010705611, -0.032368887, -0.013491457, -0.0004473108, 0.005890076, -0.011494935, 0.005392603, -0.027672743, 0.016861007, -0.0041688206, 0.0070110476, -0.024329728, -0.012761831, -0.010029049, 0.028389106, -0.04290204, -0.0032103567, 0.024144005, 0.026943117, -0.0065168915, -0.02337458, -0.0071901376, 0.006997782, -0.015958922, 0.00056255865, -0.0003318557, -0.0117071895, -0.0152027635, 0.01235722, 0.027858468, -0.010738776, 0.013531256, -0.026041035, -0.013770042, 0.016131379, -0.026863523, -0.008901443, -0.00793303, 0.013438394, 0.031652525, 0.0025503763, 0.005220146, 0.024833834, -0.020005032, -0.01962032, -0.014194553, -0.038338557, 0.011766886, -0.013610851, -0.01769676, 0.0018588894, 0.00014955271, -0.0038040073, -0.011819949, 0.01825393, 0.015361954, -0.008748885, -0.008974406, -0.018731503, 0.030564718, 0.001945118, -0.002732783, 0.033191375, 0.019129481, 0.0025885159, 0.05054322, -0.005299742, -0.023891952, 0.00048337757, -0.0025669588, -0.004875232, -0.02167654, 0.0050244736, 0.00065915124, 0.017404908, -0.00393335, 0.008258046, -0.0074753556, -0.012450081, 0.031944375, 0.0058270628, -0.012317423, 0.024528718, -0.0022021455, -0.024873631, -0.012503145, -0.008855013, 0.023653165, 0.011727088, -0.00018675951, -0.015269093, 2.5832303e-05, 0.035128202, 0.04913703, -0.0114485035, 0.008629492, 0.0070176804, -0.006274788, -0.0050742207, 0.013040416, 0.00690492, 0.016940601, 0.011614327, 0.019567257, -0.017656961, -0.019355, -0.012151598, -0.037197687, 0.024435855, 0.0020794356, -0.0071901376, -0.020999977, 0.016953867, 0.013000618, 0.022804145, -0.00974383, 0.0022469182, 0.0021938542, 0.0017610531, 0.019116215, 0.013192974, -0.016025253, 0.0071835048, 0.0062349904, -0.014804785, 0.024144005, 0.022353103, -0.02145102, -0.0031937743, 0.025669588, -0.0051869815, -0.007773839, -0.0062681553, 0.033483226, 0.027858468, -0.005143867, 0.0049879923, -0.023891952, -0.020257086, 0.003691247, -0.022963338, 0.011647493, -0.002910215, 0.0136373835, -0.029583039, 0.005734201, -0.022976603, -0.001520608, -0.011892912, 0.0033115095, 0.016662017, 0.029981017, -0.007442191, 0.023666432, -0.0025354521, -0.033615883, 0.0043744426, -0.0028571512, 0.023321517, 0.015560944, -0.014446605, -0.023891952, -0.6380385, 0.003013026, -0.020601999, -0.01906315, -0.007773839, 0.018758034, 0.0013871195, 0.015255827, -0.008642758, 0.026571672, 0.01077194, -0.001822408, 0.005253311, -0.0016872614, -0.016436495, -0.00557501, 0.015109902, -0.002006473, -0.009929554, 0.011256147, -0.023188857, 0.018917225, -0.0061155967, -0.004036161, -0.020456074, 0.0023513874, 0.026518608, 0.0032352305, -0.012887858, 0.028150318, -0.016184444, -0.0024061094, 0.03738341, -0.0321301, 0.04773084, -0.006642918, 0.009478512, 0.030936165, 0.009246358, 0.04460008, -0.020257086, -0.010599484, 0.01168729, 0.00042181535, -0.017723292, 0.004762471, 0.031174952, 0.009186661, -0.015507881, -0.025311407, 0.002732783, 0.00074289244, 0.005342856, -0.022698019, 0.008403971, 0.0031606094, 0.024767505, -0.005054322, 0.015030307, -0.01072551, -0.0065931706, 0.010937765, -0.038550813, -0.006997782, -0.002295007, 0.021265296, -0.019315204, -0.02471444, 0.02308273, 0.007501887, -0.010632648, 0.004527001, -0.0072564674, -0.008045791, -0.020734658, 0.0033231173, 0.01733858, -0.0057541, 0.0040427945, 0.020336682, 0.0028687587, 0.014446605, -0.03144027, -0.0036414997, 0.052612707, 0.009637703, -0.042636722, -0.0056977198, 0.019673385, -0.027699277, 0.0058336956, 0.0020761192, -0.023825623, -0.04332655, -0.015972188, 0.027354361, -0.0059099747, -0.027938062, -0.0076942435, -0.0110306265, -0.016330369, -0.024329728, 0.023785824, -0.0058933925, 0.04507765, 0.017869217, -0.0006595658, 0.020257086, 0.0043412778, -0.038179368, -0.01097093, 0.013080214, 0.016025253, 0.024648111, 0.010811739, -0.017683493, 0.014738455, -0.014711924, 0.0055783265, -0.0006467144, 0.037436474, 9.1721515e-05, -0.023069464, 0.0008353395, -0.008145285, 0.012171497, 0.0038305393, -0.02210105, -0.004417557, -0.009982618, -0.006211775, -0.011388807, 0.0046264953, -0.009392283, -0.0026316303, 0.025059355, 0.0020313466, -0.01430068, 0.025842045, -0.010679079, -0.0137435105, -0.0040427945, 0.009279523, -0.018426387, 0.02598797, -0.030140208, -0.012775097, -0.011110222, -0.002218728, -0.010460191, -0.0011682316, -0.02500629, -0.01642323, 0.009524942, -0.03130761, -0.010015782, -0.014977243, -0.0072697336, -0.0025056037, -0.004102491, -0.012881225, 0.017670227, -0.0254706, 0.009040736, -0.009226459, 0.0010563002, 0.024183802, 0.020217288, -0.0045303176, -0.028574828, 0.013338899, -0.012045471, -0.004026212, 0.01054642, -0.013955765, -0.005744151, -0.0031954325, -0.0071901376, -0.008277944, -0.0017726608, -0.0051173354, -0.002362995, -0.004815535, -0.000911204, 0.014884382, 0.00069273065, 0.03613641, 0.00357517, -0.014645594, 0.017842686, 0.0012387069, 0.012343954, -0.0070044147, 0.005104069, -0.013663915, 0.0478635, 0.010844903, 0.02194186, -0.0041323393, 0.021066308, -0.002931772, 0.0053660716, 0.0015123168, -0.032819927, 0.012251093, -0.030219804, 0.010765308, -0.023480708, 0.02598797, -0.005846962, 0.0040295282, -0.01345166, 0.009193295, -0.02947691, -0.0047591547, 0.024860365, -0.024197068, 0.031785186, -0.012980719, 0.0047558383, -0.005846962, 0.0007192625, 0.0060360013, 0.024568515, 0.012390385, 0.028999338, 0.015521146, -0.0008705771, 0.0014211135, -0.023666432, 0.0040162625, 0.009843325, 0.00393335, -0.0005053493, 0.019633587, 0.030352464, 0.015468082, -0.015945656, 0.020482607, 0.011972508, 0.020296883, 0.021888796, 0.009637703, 0.01296082, -0.007853434, 0.010082112, 0.043300018, -0.016701814, 0.007740674, -0.007979461, 0.0044407723, 0.017179389, -0.026385948, 0.004590014, 0.013597585, 0.00087223534, 0.0109775625, -0.0070309467, 0.03809977, 0.009372384, 0.013783309, -0.010586218, 0.021596946, -0.0094652455, -0.0017726608, 0.013179708, -0.005429085, -0.024276664, -0.0044905194, 0.0025719334, -0.0037841084, -0.0068717552, 0.0023613367, 0.012980719, 0.01012191, 0.011521466, -0.0056811376, 0.005780632, 0.03199744, 0.00563139, -0.044812333, -0.030617783, 0.005903342, 0.005077537, 0.0013547838, -0.022061253, -0.019991767, 0.0058171134, 0.014247616, -0.0040792758, 0.005691087, 0.0224327, 0.023454176, -0.00040917125, 0.0037111458, -0.013982298, 0.047332864, -0.022313306, 0.020456074, 0.014619063, -0.008450402, 0.014181286, -0.028813615, -0.012436816, 0.024820568, -0.0016325393, -0.01664875, -0.024117474, 0.0015156333, -0.03979781, 0.0067822104, -0.004377759, -0.009352486, -0.0009443689, -0.012914389, 0.010128543, 0.011793418, 0.034066927, 0.041973423, -0.014353744, -0.009757097, -0.023069464, -0.0052864756, 0.001376341, 0.06993802, 0.011408705, -0.0019948652, 0.022644954, -0.033350565, -0.029901423, -0.025125684, -0.006623019, 0.03128108, 0.004294847, 0.028813615, 0.0072233025, 0.02082752, -0.013252671, 0.018267196, -0.0025420852, -0.02082752, -0.039957, 0.006152078, -0.020097895, 0.02399808, 0.007780472, 0.017285516, 0.024820568, 0.020681595, -0.0021208916, 0.02386542, 0.017710026, 0.025868576, -0.013146544, -0.02011116, 0.0038438053, 0.017086526, 0.0015438234, -0.033642415, -0.0008245609, -0.010115277, 0.0068916543, 0.01380984, 0.018280461, 0.010944398, 0.028521765, 0.017033463, -0.01932847, 0.0009418815, -0.01897029, -0.016953867, 0.01629057, -0.0040096296, -0.017895749, 0.031519867, -0.022047987, -0.016516091, -0.003459093, 0.0051339176, -0.012105167, 0.01671508, -0.004779054, -0.027699277, 0.010002516, 0.009054002, 0.010095378, 0.019248875, -0.002938405, 0.001958384, -0.030219804, 0.006460511, 0.000821659, -0.032766864, 0.01838659, -0.0047492054, -0.018519247, -0.003896869, -0.0021457653, 0.029264657, 0.0076743443, 0.012237826, 0.00884838, -0.0028040875, 0.03313831, -0.024515452, -0.02761968, -0.0181876, -0.034226116, 0.0057972143, 0.020257086, 0.01910295, 0.017988611, -0.019726448, 0.017484505, 0.023958283, 0.007873333, -0.002177272, -0.017258983, 0.021955125, 0.024236867, 0.008821848, 0.00074081967, 0.009113698, -0.01867844, -0.014552733, -0.0037907416, -0.021185702, -0.044626612, 0.01278173, 0.008662657, -0.004384392, -0.003542005, -0.011992407, -0.020721393, 0.019898904, -0.015308891, -0.00048006108, 0.01242355, -0.004328012, 0.017935546, -0.014937445, 0.024369527, 0.0016582421, -0.00093441946, -0.017564101, -0.022114316, 0.014764988, 0.0010032365, -0.01242355, 0.025682854, 0.011547998, -0.036746643, -0.015335423, -0.0067457287, 0.010201505, 0.032475013, 0.013650649, -0.019222343, -0.036162943, 0.0024226918, -0.0015902541, 0.012284257, -0.020548936, 0.0076411795, -0.016184444, 0.008463668, 0.005843645, 0.0031771918, -0.0055086804, -0.025934907, -0.012728666, 0.0014484745, 0.038073238, 0.03650786, -0.0013746828, 0.008437136, 0.0052300957, 0.0053063747, -0.010864803, -0.049508475, -0.0073028984, -0.014499669, 0.01883763, 0.008503466, 0.026624735, -0.02265822, -0.0074886214, 0.0057972143, 0.00866929, -0.0150435725, -0.014433339, -0.006785527, -0.009770363, 0.010679079, -0.013491457, 0.023679698, 0.017431442, 0.0163569, 0.033509757, 0.007090643, 0.004410924, 0.0049614604, -0.018797832, -0.033615883, -0.0010256227, 0.007588116, -0.0038471217, 0.021756137, -0.027646212, -0.008118753, 0.0053063747, -0.000766937, 0.026425745, 0.007176872, 0.030007549, 0.0021142587, -0.0010082112, 0.0019915488, 0.040063128, -0.010155074, 0.014818052, -0.0369589, -0.004284898, 0.021437755, 0.022286775, -0.00082829193, 0.011070425, 0.008649391, -0.012615906, 0.03231582, -0.012722033, -0.008344274, 0.0038338557, -0.012005673, -0.014672126, -0.024316462, -0.021490818, 0.0060990145, -0.030485123, 0.017272249, 0.007137074, 0.013232772, -0.011793418, -0.04048764, 0.0051936144, -0.013577687, 0.012377119, 0.0013282519, 0.014963977, 0.035764966, 0.004192036, -0.0015861086, -0.042026486, 0.017524302, -0.006198509, 0.015972188, 0.019474395, -0.024595046, -0.007800371, -0.0049282955, -0.014154755, -0.0051936144, -0.045369502, -0.008947874, 0.033377096, -0.020363213, -0.0072564674, -0.016595688, -0.008835114, -0.012675603, -0.020097895, 0.0127485655, -0.02634615, -0.0060990145, -0.0070110476, 0.015746666, -0.018466184, 0.020907117, 0.0017792938, 0.018665174, 0.0029898104, -0.0013025491, -0.005409186, -0.011554631, 0.0020164223, -0.007375861, -0.028654424, 0.017948812, 0.023056198, 0.014128223, -0.030723909, -0.02308273, 0.005402553, 0.03125455, 0.0057839486, 0.011786785, 0.0034060292, -0.009458613, 0.0053329067, -0.016011985, -0.005309691, -0.015560944, -0.005223463, 0.0010446925, 0.021663275, 0.0054324013, 0.0068518566, -0.006274788, -0.0054158187, 0.0015529437, -0.026133895, 0.01423435, 0.008927976, -0.026160428, -0.009604538, -0.011919444, 0.004573432, -0.008709088, 0.0025802248, -0.004185403, -0.0038139569, 0.016184444, 0.0012834794, 0.025351206, 0.010208138, 0.0009020837, -0.015534412, 0.008490199, -0.01465886, -0.018943759, 0.030989228, -0.017749824, -0.017962078, -0.01465886, -0.0055915923, 0.022220444, -0.017272249, -0.0014410124, 0.021769403, 0.010964297, -0.008476933, -0.0036182844, -0.040408045, -0.011567897, -0.0068717552, 0.0015902541, 0.025404269, -0.014711924, 0.0108714355, -0.017059995, -0.0019500927, 0.019991767, -0.054443404, -0.0199785, -0.015680337, -0.0063112695, -0.018505981, -0.010798473, -0.011276047, -0.00064298336, -0.03650786, -0.008198349, 0.008470301, 0.0022469182, -0.016874272, -0.0022303357, 0.016038518, 0.022737816, -0.0008946216, -0.010201505, -0.011667391, -0.0077207754, -0.023945017, 0.00014861995, -0.022804145, 0.027964596, -0.013796574, -0.011116855, -0.038179368, 0.0020180806, -0.034040395, -0.0218092, 0.0058801267, 0.005959722, 0.019766245, 0.021079574, 0.016967133, 0.019301938, 0.011103589, 0.016131379, -0.02918506, -0.018028408, 0.009929554, 0.023241922, -0.010208138, 0.00046679514, -0.0430347, -0.01841312, 0.024794037, 0.0004410924, 0.0048851813, 0.036454793, 0.019845841, -0.0033595986, 0.0012693843, -0.011349009, 0.017431442, -0.0055020475, 0.017020198, -0.040381514, -0.015428284, 0.025245078, 0.005528579, -0.015494614, 0.010002516, 0.006118913, 0.014539467, -0.012576108, -0.021039777, -0.009942819, 0.017378377, -0.0025802248, 0.013332266, -0.0012984036, -0.0053528054, 0.012443448, -0.002445907, -0.022193912, -0.017656961, 0.00048420668, -0.0007304556, 0.030087145, 0.019898904, -0.016701814, 0.019859107, 0.0018273828, 0.0025851994, -0.014685392, 0.007362595, -0.024966493, -0.019553991, -0.02399808, 0.023945017, 0.012655703, -0.0096775, -0.007893233, 0.011620961, -0.0072365687, -0.008702454, -0.034491435, -0.013849638, -0.031068824, 0.0135843195, 0.00074537983, 0.010082112, -0.015892593, -0.0005393432, 0.019129481, -0.012576108, -0.013836372, 0.19400106, 0.00045974762, 0.02223371, 0.028840147, -0.0008021746, -0.0020810938, -0.00018033382, 0.012788363, -0.016940601, 0.0030495073, 0.00014675442, 0.0019368267, -0.025125684, -0.010705611, 0.026823724, 0.00016727517, -0.02960957, -0.04205302, -0.019182544, 0.013663915, 0.0021407905, -0.024396058, -0.0008378268, -0.016250772, 0.011713822, 0.012483247, -0.0076942435, 0.0047293063, 0.020296883, 0.021756137, -0.024223601, -0.019766245, 0.020615267, 0.010924499, -0.02987489, 0.010752042, 0.029105466, 0.0026067565, -0.0020628532, -0.006898287, 0.007826903, 0.006108964, 0.0022004873, -0.034597564, -0.0035386886, 0.011408705, 0.009982618, -0.033324033, 0.0020114477, -0.018161068, -0.011541365, -0.0026432378, -0.004444089, 0.008742252, -0.0051936144, -0.007893233, 0.009425448, 0.00612223, 0.023520507, 0.0128546925, -0.011727088, 0.021185702, -0.019766245, 0.017312048, -0.014897647, 0.023653165, 0.0020429543, 0.022180647, -0.018718237, -0.029344251, -0.007767206, 0.008941242, -0.005445667, 0.018651906, -0.0028787083, -0.024316462, 0.026385948, 0.028707488, 0.046218526, -0.0027211753, 0.0063378015, -0.02527161, -0.0073957597, -0.0152027635, -0.0080059925, -0.030962696, 0.024515452, -0.014393541, -0.0028952907, -0.016967133, 0.0033595986, -0.026399214, -0.011700557, -0.0060559004, -0.0023032983, -0.0023447543, -0.012509778, 0.004540267, -0.004881865, -0.0009534892, -0.013703713, 0.032077037, 0.008344274, -0.011276047, -0.0033430161, 0.01430068, 0.005972988, 0.035605773, 0.025391003, -0.025536928, 0.00466961, -0.0062781046, 0.020721393, -0.0028173532, 0.004795636, 0.015388487, 0.011826582, -0.04022232, -0.011309211, 0.026571672, -0.0020446125, -0.016768144, -0.022512294, 0.0035983853, 0.007541685, -0.0030694061, -0.00931932, 0.030776974, -0.010526521, 0.006938085, -0.0018870796, -0.010241304, -0.0086825555, -0.026226757, -0.021530615, 0.005054322, 0.006152078, -0.012045471, 0.016011985, -0.007826903, -0.0059696715, 0.020495873, 0.018306993, -0.0014542784, 0.001643318, -0.021955125, 0.034836352, 0.012343954, -0.013418495, -0.011116855, -0.018174333, 0.0103009995, 0.027221702, -0.00799936, -0.0018638641, 0.0036481326, -0.031811718, -0.033960797, 0.018240662, -0.0016134696, -0.02328172, 0.005870177, 0.030219804, 0.009524942, -0.014486403, -0.04189383, -0.16683242, 0.02670433, 0.010102011, -0.011156653, 0.03496901, 0.04035498, 0.04632465, 0.011760253, 0.006145445, -0.0045535327, 0.006205142, 0.0016176152, -0.0054523, -0.024462387, 0.0009360777, 0.016277304, -0.0017179388, 0.019832576, 0.037171155, 0.0092596235, 0.04388372, -0.030060614, 0.029131997, 0.0006272301, 0.011647493, 0.019049885, -0.034013864, 0.0048520165, 0.0044938363, -0.032528076, 0.022485763, 0.0008191716, 0.03706503, -0.0024691224, 0.03242195, -0.01266897, -0.008689188, 0.011110222, 0.006692665, 0.03003408, 0.024979759, 0.012324056, 0.025019556, 3.782865e-05, -0.011043892, 0.020323414, 0.0017046729, -0.039161045, -0.015056838, -0.015056838, 0.026638001, -0.023759292, 0.0128016295, -0.019089684, -0.0012917706, -0.00065915124, -0.0003832612, 0.016953867, -0.009279523, 0.030352464, 0.013398596, -0.016688548, 0.0004883523, 0.011979141, -0.008218247, -0.02151735, -0.017577367, 0.007946297, -0.025298141, 0.015242562, -0.044944994, -0.019355, 0.019859107, -0.023414379, 0.00654674, 0.0015255827, -0.024621578, 0.0067921598, -0.020456074, -0.0003148587, 0.02171634, 0.012085268, -0.009126965, 0.016330369, -0.008224881, -0.009306055, 0.028017659, 0.0018323575, -0.0009501727, 0.0014352086, 0.03679971, -0.024462387, -0.004198669, -0.023799092, -0.0010380596, 0.0029549873, 0.020655064, -0.019169278, -0.0027725808, -0.021530615, 0.020721393, 0.0051173354, -0.01284806, 0.005830379, 0.020920383, -0.0011831557, -0.0046132295, 0.011017361, 0.03313831, 0.027566617, -0.03526086, -0.015308891, 0.0067623113, 0.04316736, -0.019859107, 0.011534732, 0.024608312, -0.004248416, 0.011614327, -0.02719517, 0.02889321, 0.015879326, -0.012012306, -0.00041559694, 0.010798473, -0.021928594, -0.11366255, -0.023095995, 0.044149037, 0.020509139, -0.018598843, 0.006656184, 0.004241783, 0.017511036, -0.005439034, 0.031970907, -0.015162966, -0.035711903, 0.014128223, -0.0012171497, 1.1329162e-05, 0.0015040255, 0.0022701335, -0.00039652715, -0.02634615, 0.019845841, 0.0056877704, -0.0033032182, 0.00071221497, -0.015136434, -0.026757395, -0.006639601, -0.034279183, 0.00039113784, 0.006145445, -0.010128543, 0.00039445434, -0.014778254, -0.007680977, -0.037171155, -0.001562064, 0.0132195065, -0.008025892, 0.0061056474, 0.023666432, -0.024754237, -0.012728666, -0.014831318, 0.02037648, 0.0015695262, 0.004828801, 0.016701814, -0.007992727, 0.008457035, 0.012078635, -0.020615267, -0.035711903, 0.016741613, -0.042397935, 0.02478077, 0.029052401, -0.016330369, -0.015759934, 0.025351206, -0.005538529, 0.0048321174, -0.033085246, 0.008496832, 0.008728987, -0.0017113058, 0.007787105, -0.028999338, 0.012085268, -0.0050742207, 0.013226139, -0.01847945, -0.01792228, 0.00963107, -0.016409963, 0.004019579, -0.000777301, -0.0067722606, 0.0069513507, 0.011979141, 0.021132637, 0.011209717, -0.021689806, -0.013153177, -0.021265296, -0.008457035, 0.0067987926, -0.00064132514, 0.011017361, 0.010499989, -0.00032688098, -0.044149037, 0.00653679, 0.023639899, -0.013610851, 0.033589352, -0.009538208, 0.0019633586, 0.00072589546, 0.016051784, 0.0046629766, 0.028707488, -0.0315464, -0.0072100367, -0.05282496, 0.0016035201, 0.00375426, -0.02732783, -0.0004085494, 0.005429085, 0.016476294, -0.0045502163, 0.00031651696, -0.02504609, 0.0006135496, 0.0327138, -0.002883683, -0.022790879, -0.00165078, -0.016383432, 0.014552733, -0.0037741591, 0.0004286556, -0.0053528054, -0.010897967, -0.009803527, 0.019447863, 0.029264657, -0.02670433, 0.01615791, -0.027301298, 0.0110306265, 0.002560326, -0.040832553, -0.01932847, -0.00715034, -0.00065086, -0.0056015416, 0.019381534, 0.026226757, 0.004138972, 0.02719517, 0.0029085567, 0.04505112, -0.018466184, -0.026266554, 0.0088417465, -0.014579264, 0.0037575767, 0.0034325612, 0.020349948, 0.0070110476, 0.0145262005, 0.002074461, 0.020084629, 0.020522404, -0.006918186, -0.03966515, -0.0018124586, -0.0091534965, 0.0059630387, -0.0012088584, -0.011793418, -0.022499029, 0.05847625, -0.013551154, -0.0084238695, -0.013677181, 0.0027510237, -0.024011346, -0.020296883, -0.013000618, 0.00057375175, -0.009471879, -0.0010123568, 0.0045933304, -0.019699916, -0.00021722971, 0.021278562, -0.0012337321, -0.03186478, 0.014778254, -0.02504609, -0.0049548275, 0.01593239, -0.005505364, -0.03881613, -0.014075159, 0.054708723, -0.0024890215, 0.024833834, 0.012662337, -0.004251733, 0.025881844, 0.017166123, 0.0033446744, -0.008563162, -0.002616706, -0.009120331, 0.02775234, -0.019965235, 0.0025387686, 0.004984676, -0.0029500127, 0.03552618, 0.0006562493, -0.008987673, -0.02889321, -0.011773519, 0.013969031, -0.04656344, -0.030378995, -0.032554608, 0.010261202, -0.0070641115, 0.005223463, 0.006705931, 0.013969031, -0.017948812, 0.011070425, -0.037144624, -0.010460191, -0.032740332, 0.029529976, 0.011203083, 0.021769403, -0.0060857483, -0.032077037, 0.035632305, 0.019885639, 0.015361954, -0.029291188, 0.008344274, 0.0026996182, 0.0042119347, 0.006294687, -0.00082704826, -0.037728325, 0.009942819, -0.017670227, -0.018280461, 0.028707488, 0.01423435, 0.06187233, 0.017909015, -0.007767206, 0.0020794356, -0.014446605, 0.025218546, 0.007946297, -0.008165184, 0.017444707, -0.027248234, 0.017099792, 0.012768464, 0.00793303, -0.031970907, -0.0057541, 0.031174952, -0.0013614168, 0.0005439034, -0.03231582, -0.022406166, 0.009186661, -0.023971548, -0.004583381, 0.005157133, -0.01919581, 0.0059696715, 0.003664715, 0.00260344, -0.035340454, -0.035499647, 0.007409026, 0.003883603, -0.03764873, -0.01720592, 0.008569796, 0.020389745, -0.016516091, -0.015852794, 0.02435626, 0.01229089, 0.026041035, 0.008616226, -0.028654424, -0.027725808, 0.009140231, -0.026173694, 0.013955765, -0.00065168913, -0.014738455]" 9065476,An Open Letter to Tim Cook Regarding the App Store 70/30 Revenue Split,http://blog.anylistapp.com/2015/02/open-letter-to-tim-cook-regarding-app-store-revenue-split/,389,1424211333,216,dirtae,"[0.007840452, 0.0008707011, 0.027279206, -0.022109678, 0.0034330974, -0.0062531414, -0.00032516668, -0.016065305, 0.0032143865, -0.028021498, 0.028975872, 0.025370456, 0.004304627, 0.0040660333, 0.0013603151, 0.017510122, 0.028445665, 0.011127742, -0.02160598, 0.0011117801, -0.027570821, 0.015892988, -0.021791553, -0.0057726405, 0.0062829657, 0.0014961809, 0.02591392, 0.000581572, 0.02519814, 0.0011813699, 0.020704625, -0.009046676, 0.0024720952, 0.01701968, -0.023355667, 0.0015119215, -0.008728551, 0.0036650633, 0.03016884, -0.01607856, 0.029691653, 0.027067123, -0.026576681, -0.00025474842, 0.0020694684, 0.00029182155, -0.0111409975, -0.024628166, -0.011737482, 0.017523378, 0.002771994, 0.014050514, -0.033853788, -0.00548434, -0.030699048, 0.01671481, -0.024031682, 0.022149444, -0.0117573645, 0.0059515857, -0.013314851, 0.018888664, -0.024959546, 0.0042648613, -0.02138064, -0.015786946, -0.008953889, -0.0098817535, 0.022944756, 0.009762457, 0.050263725, 0.026735744, 0.015641138, 0.010875894, -0.016065305, 0.00013762628, -0.0025864213, -0.008708668, 0.0024704384, -0.012565931, 0.02295801, 0.00687945, -0.005862113, 0.021049261, 0.014328874, -0.011180763, -0.003456294, 0.022162698, -0.020041866, 0.0014771266, 0.019432126, -0.007396403, 0.0019336026, 0.025542775, 0.010942169, 0.019790016, -0.013838431, 0.031043684, 0.009702808, -0.025993451, 0.013321478, -0.0018557283, -0.026112748, -0.009974539, -0.023143584, 0.01602554, 0.023064053, -0.020373246, 0.005239119, 6.824358e-05, -0.0025980195, -0.0009535461, 0.021009495, 0.0045763585, -0.001253445, -9.905157e-05, -0.018504262, 0.014646999, -0.014183067, -0.014037259, 0.04395425, 0.014010749, 0.02588741, -0.018862152, 0.0151374405, 0.009000283, -0.005368357, -0.026802018, -0.0006838856, -0.009079814, 0.027093634, -0.0007588603, 0.0075223274, 0.019843038, -0.01279127, 0.023965405, -0.019233298, 0.0005915134, 0.0050767423, -0.027279206, 0.024535378, 0.015044655, 0.001203738, 0.0041323095, -0.017563144, 0.045438834, 0.011293433, -0.01185015, 0.013281712, 0.0025052333, 0.0001529526, -0.013957728, -0.018623559, 0.022626631, -0.0011382905, 0.019087492, 0.034940712, 0.0026046473, -0.012367103, 0.006024489, 0.017947543, -0.0106704375, 0.002856496, 0.021791553, 0.015216972, 0.028922852, 0.021473428, 0.017337805, -0.0018010506, 0.0007389775, 0.008151949, -0.013268458, -0.01572067, 0.00801277, 0.015680904, 0.012691856, -0.008589371, 0.015163952, 0.0063260454, -0.039102845, 0.0275178, 0.0045929276, 0.009762457, 0.06696528, 0.008218225, -0.014673509, 0.027623842, -0.0036021012, 0.0019352596, -0.02323637, -0.016396685, 0.019763507, -0.010246271, 0.0017662557, -0.6256455, -0.012506283, -0.009397938, -0.025357202, 0.021407152, 0.019829782, 0.014739784, 0.014739784, -0.027941966, 0.008145322, 0.0023494845, -0.0132883405, 0.010915659, 0.0015467164, -0.0011101232, -0.018848898, 0.0011581733, -0.01666179, -0.043158937, 0.0069854916, -0.031812485, 0.019856293, -0.019829782, 0.0068993326, -0.021712022, 0.000371767, 0.0045631034, 0.007979631, -0.009974539, 0.017854758, -0.017629419, 0.026815275, 0.0050800564, 0.017311294, 0.046234146, 2.6031457e-05, -0.0013172358, 0.0014655283, 0.019829782, 0.035656493, -0.03403936, -0.013003353, -0.0067502116, -0.0099811675, -0.013586583, -0.012221296, 0.024416082, 0.011333198, 0.0061471, -0.016542492, 0.006491735, -0.01077648, -0.013931218, -0.009397938, 0.017947543, -0.009795594, -0.0006577894, -0.0295591, 0.03022186, 0.020134652, -0.02619228, 0.007495817, 0.0035457667, -0.011651323, -0.030619517, -0.013719134, -0.0019799958, -0.007562093, -0.00647848, 0.009523863, -0.007164437, -0.0008214083, -0.010962052, -0.020306969, -0.003008931, 0.016224368, 0.018795876, -0.026523659, -0.021460172, 0.014461426, 0.022414546, -0.020214183, 0.001477955, 0.0032524953, 0.016529238, 0.006826429, 0.012168275, 0.00013596939, 0.015336269, -0.0025383711, 0.007396403, 0.038466595, 0.03014233, -0.0074361684, -0.0021258031, 0.031229256, -0.017417336, -0.009596766, -0.020320226, -0.041435763, -0.021433663, 0.0018126488, 0.0034463527, -0.0053087086, 0.05439935, 0.005431319, -0.006925843, -0.0135335615, 0.046313677, -0.043980762, -0.00704514, -0.01770895, -0.017258273, -0.00020224538, 0.009046676, -0.01892843, 0.012274317, -0.0062829657, 0.012141765, -0.018848898, -0.006031117, -0.00017801323, 0.03600113, -0.019259809, -0.013586583, 0.004367589, 0.012029096, -0.012420124, 0.017271528, 0.0034960597, -0.00037590924, -0.015429055, 0.01666179, 0.003506001, 0.017457101, 0.01066381, 0.0019567993, -0.02326288, -0.022997776, -0.03984514, -0.016595513, -0.0106704375, 0.0005003839, -0.006647484, -0.011697716, -0.023899129, -0.0052755703, -0.0029211151, 0.02193736, 0.001071186, 0.003023843, -0.010610789, -0.017271528, -0.015654394, -0.0022533843, 0.008337522, -0.005017094, -0.039076336, -0.026722487, -0.007475934, -0.013467286, 0.040958576, -0.0037611637, 0.004337765, -0.0308316, -0.024389572, -0.014222832, -0.015999028, 0.0077542933, -0.0145939775, -0.017364316, -0.0061205896, 0.0076349964, 0.009291897, -0.014328874, 0.00352257, -0.00028954333, -0.0060509997, 0.0016983228, -0.020757647, 0.012141765, 0.004337765, -0.0072174575, -0.01080299, 0.01732455, -0.015959263, 0.0012832693, 0.03531186, -0.025834389, 0.031229256, 0.005189412, 0.01765593, 0.0076018586, 0.016184602, -0.03016884, 0.005169529, 0.005925075, 0.01511093, -0.014567467, 0.02354124, 0.000469317, 0.018106606, 0.00853635, -0.018862152, 0.008748434, -0.0041289954, 0.015349524, -0.0044769445, -0.015468821, 0.028101029, -0.0011399474, -0.0011366336, -0.023501474, -0.025025822, 0.0006586179, 0.027915455, -0.007741038, 0.022533843, 0.0071710646, -0.004602869, 0.004423924, -0.016834106, 0.012380359, -0.011585047, -0.006932471, -0.015760435, -0.03019535, 0.014275853, -0.011015073, -0.040401857, 0.0013959385, -0.006110648, -0.004049464, -0.00029472113, 0.029028893, 0.038811233, -0.01477955, -0.0013437461, 0.026059728, 0.0047884416, 0.01049812, 0.009298524, 0.011167508, -0.03663738, 0.024018425, 0.013540189, 0.027226185, 0.010730086, -0.017748715, 0.028313112, 0.017748715, 0.025171628, -0.0035325114, -0.0011838552, 0.0025549403, -0.01538929, 0.0012799555, -0.00078744185, 0.0050071524, 0.026815275, 0.017125722, -0.004950818, 0.001761285, -0.024800483, 0.00617361, 0.010736714, -0.008967144, -0.0067502116, 0.029930247, -0.0056069507, -0.0125725595, -0.013301595, 0.015561608, 0.00900691, 0.0031282278, 0.016476216, -0.01806684, -0.022388037, 0.009517235, 0.01671481, -0.022361526, -0.0137589, 0.0061338446, 0.02290499, -8.755682e-05, 0.017775226, 0.002622873, -0.02685504, 0.032713838, 0.030115819, -0.0014199635, -0.008940634, -0.0043311375, 0.011207273, 0.011247039, -0.020015355, 0.0328729, -0.024084702, -0.029108424, -0.021486683, 0.00020193472, 0.039182376, -0.025622306, 0.0014605576, 0.03138832, 0.006113962, -0.018000565, -0.023024287, -0.005431319, -0.010020933, 0.004616124, -0.031282276, -0.016171347, -0.0056897956, 0.020598585, -0.019312829, -0.016250879, -0.010657183, 0.029400038, 0.022891734, -0.00092952105, -0.013116023, -0.020625094, 0.020863688, 0.10068651, 0.008735178, -0.020121397, 0.021712022, -0.004569731, 0.0067005046, -0.004814952, -0.017523378, 0.021075772, -0.020134652, 0.02163249, -0.025768112, -0.0098817535, -0.017616164, 0.026510404, -0.0055473023, 0.0005012123, -0.020015355, 0.0005828147, -0.006011234, -0.014222832, 0.011379591, 0.018106606, 0.035683006, 0.021526448, 0.013599837, 0.029373528, 0.03793639, -0.0054710847, -0.023793088, -0.025542775, 0.009788967, -0.011213901, 0.022825459, 0.00088478473, 0.009305152, -0.016343664, 0.018358456, 0.011114487, 0.026483893, 0.019710485, 0.021566214, 0.0048447764, -0.012731622, 0.015999028, -0.015866477, -0.024031682, 0.012234552, -0.030752068, -0.015654394, 0.004622752, 0.017868012, -0.010557769, 0.024933035, -0.022030147, 0.015906243, 0.00029679225, -0.0047055967, 0.0009800565, -0.03936795, -0.036504827, -0.017775226, 0.0030205292, -0.0036252977, -0.018676579, -0.018769367, 0.005669913, -0.0003191604, -0.016926894, -0.023103818, 0.0203865, -0.025476499, -0.017245019, -0.0018325316, 0.009086441, 0.004390786, 0.006912588, 0.0041323095, 0.022136187, 0.016250879, -0.0017198625, -0.016781086, -0.0040295813, -0.022613375, -0.023209859, 0.013381126, -0.015985774, 0.011200646, -0.0052788844, -0.0009800565, -0.014408405, 0.00029989894, 0.039606545, -0.01666179, 0.01602554, 0.0020760961, 0.004467003, 0.008854475, 0.01212851, -0.027358737, 0.0022351586, 0.006932471, -0.019246554, -0.03605415, -0.0044504344, 0.013374499, 0.0011010102, -0.0043576476, 0.0015019801, 0.006965609, 0.011790503, 0.022215718, 0.017112466, 0.006640856, 0.011266922, 0.011525398, 0.014567467, -0.011280177, 0.009815477, 0.021751788, -0.013851686, -0.04390123, 0.017987309, 0.015044655, -0.023448452, 0.021844573, -0.007946494, -0.008456819, -0.03857264, -0.024933035, -0.014580722, 0.016184602, -0.0091726, -0.0075024446, -0.011969447, -0.022533843, -0.005113194, -0.010822873, -0.03393332, -0.003721398, 0.0052092946, 0.0029509393, -0.015004889, -0.0056036366, 0.038201492, -0.038519617, 0.01177062, 0.004271489, -0.010179996, 0.026338087, 0.0021556274, -0.016250879, -0.023912385, 0.0068927053, 0.012135138, -0.011903171, 0.012711739, -0.017748715, 0.025728347, 0.02191085, 0.011353081, 0.010365568, 0.015150696, -0.0125725595, 0.032342695, -0.0063260454, 0.0075289547, -0.0039831884, -0.007363265, 0.0068198014, 0.012990098, 0.010378824, 0.0052855117, 0.0069987467, 0.00884122, 0.016290644, 0.01016674, 0.002909517, -0.026086237, -0.02397866, 0.0072240853, 0.007078278, -0.022228975, -0.011889916, -0.007343382, -0.006428773, 0.03157389, -0.0053749844, 0.025317436, 0.006150414, 0.031679932, 0.010783107, 0.04119717, -0.013957728, 0.008218225, -0.021142047, 0.022175953, -0.03072556, -0.021659, -0.015150696, -0.011942937, 0.01610507, 0.004702283, 0.0005252374, -7.10396e-05, 0.0359216, -0.040083732, -0.021009495, 0.0060874517, -0.00063583546, 0.022414546, -0.020359991, -0.024933035, 0.001238533, -0.007774176, 0.022494078, 0.0060012927, -0.008118811, -0.018093351, -0.039765608, 0.013169044, 0.004947504, 0.005182784, -0.0026295008, 0.0025400282, 0.007257223, 0.006912588, -0.020797413, -0.00046186094, 0.0048083244, -0.005500909, 0.02099624, 0.028657747, -0.0037346531, -0.016237622, 0.021367386, -0.01975025, -0.035709515, -0.0105975345, 0.013082884, -0.00013296625, 0.00274217, -0.034596078, 0.0016444735, 0.0017480298, 0.041621335, 0.015919497, 0.016860617, 0.0005600323, -0.016489472, -0.010020933, 0.057262473, 0.034171913, 0.015230227, -0.0033767628, -0.020797413, -0.013652858, -0.007780804, -0.0006432915, 0.02812754, 0.011213901, 0.009351545, -0.03329707, 0.0341454, -0.013321478, 0.00352257, -0.030699048, -0.018544028, -0.003058638, 0.023673791, -0.02461491, -0.0091659725, -0.01245989, -0.008079045, -0.01666179, -0.036372274, -0.01870309, -0.006428773, -0.012479773, -6.311754e-05, 0.039739095, -0.00455979, -0.027358737, 0.018464496, 0.016065305, 0.009305152, -0.013652858, -0.008423681, 0.03019535, -0.00089969684, -0.00019965648, -0.015588118, -0.0075024446, 0.006733643, -0.0008491614, -0.014819316, -0.010252899, 0.016131582, -0.0055108503, 0.0021788238, 0.033350088, -0.0108295, -0.04122368, 0.025396967, -0.038095452, -0.012466517, 0.035258837, -0.036451805, -0.033058476, -0.012658718, 0.009218993, -0.015641138, -0.009729318, 0.0038638914, -0.0138781965, 0.023634026, 0.003655122, -0.015336269, -0.053365443, 0.008443564, -0.0040130126, -0.015548352, 0.0023660536, 0.03358868, -0.0073367544, -0.035232328, 0.016781086, -0.023355667, -0.033906806, -0.008503213, -0.009477469, 0.027438268, -0.0183452, 0.010047443, -0.010822873, -0.002644413, -0.0042085266, 0.0049375626, 0.019657465, -0.023501474, -0.008688785, 0.004904425, 0.013931218, 0.005020408, 0.01773546, -0.008231481, -0.012797898, -0.008390543, -0.035868578, -0.019763507, -0.0049773282, 0.03684946, 0.0091726, -0.013825176, -0.025688581, -0.009026793, -0.05492956, -0.025118608, 0.00491768, 0.01633041, 0.006097393, -0.0065712663, -0.0062531414, 0.020359991, -0.0075289547, 0.009649787, -0.029400038, -0.011260294, 0.008463447, -0.025741603, 0.01298347, -0.020850433, -0.01030592, -0.03279337, 0.013811921, 0.024575144, 0.029665142, 0.0074494234, -0.0055903816, 0.01801382, -0.0066806218, 0.029718162, 0.017258273, 0.004904425, 0.014434915, -0.019246554, -0.01411679, 0.01823916, 0.012724994, -0.018477751, -0.0014257627, 0.015535097, 0.0026858354, -0.010849383, 0.018080097, -0.007853707, -0.023382178, -0.0054710847, 0.033350088, 0.012526166, -0.011061466, 0.004423924, 0.019312829, -0.02677551, -0.0011929682, 0.017642675, -0.029161444, 0.018557282, 0.0040759747, -0.002889634, -0.008609254, -0.0040958575, 0.017629419, -0.014448171, 0.00285981, -0.011087976, -0.011280177, 0.00058447156, -0.0044902, 0.01660877, -0.0027521113, 0.024111213, 0.00886773, 0.0026676094, -0.0068728225, -0.0030023032, 0.009994422, -0.010160113, -0.0068860776, -0.011432612, -0.029797694, -0.040428367, 0.018809132, -0.012559304, -0.03016884, 0.0014050514, 0.21908198, 0.020293714, 0.022162698, 0.040879045, 0.017059445, -0.0062233172, 0.021924105, 0.012095372, -0.006024489, 0.012082117, -0.016847363, 0.017099211, -0.030699048, 0.0022401293, 0.008589371, -0.023090562, -0.01870309, -0.007310244, -0.01992257, 0.027888946, 0.009450959, -0.0035855323, -0.01597252, 0.003423156, 0.019432126, 0.0016204484, -0.011359708, 0.014580722, -0.004433865, 0.013314851, -0.011008445, 0.005948272, -0.0020628409, -0.008059163, -0.0020031924, -0.009775711, 0.0081784595, 0.012857546, 0.024323296, 0.022281995, 0.008973772, 0.0049740146, 0.005467771, -0.034993734, 0.02218921, -0.0015160637, -0.013851686, -0.0019004646, 0.02746478, -0.011677833, -0.037671283, -0.0041654473, 0.04339753, -0.0062531414, -0.02265314, 0.0071843197, 0.0015748837, 0.008059163, -0.0045465343, 0.030115819, -0.017563144, 0.0196177, -0.013513679, 0.018968195, -0.03743269, 0.016144836, -0.01163144, 0.019843038, -0.0030271567, -0.015919497, -0.0051098806, -0.014633743, -0.032925922, 0.0007335926, -0.007051768, -0.026947826, 0.03486118, 0.01014023, 0.022573609, 0.008688785, -0.016728066, 0.008138694, 0.014845827, -0.004735421, -0.010590906, -0.028366134, 0.025304182, -0.013666114, -0.0036982014, -0.0053219637, 0.0027769648, -0.02318335, -0.0011324914, -0.030301392, 0.0041621337, 0.010233016, -0.010571023, 0.004622752, -0.014567467, -0.007025257, -0.0079001, 0.042363625, 0.024840249, 0.019551422, -0.0044305515, -0.024124468, 0.004897797, 0.016396685, 0.033747744, 0.0029360272, 0.00077915733, -0.011081349, 0.01615809, -0.013931218, 0.015243483, 0.02265314, -0.00848333, -0.046154615, -0.011691089, -0.010292664, -0.004049464, -0.015535097, -0.0005252374, -0.0021125479, -0.011280177, 0.004920994, -0.02193736, -0.020200929, 0.005331905, -0.030301392, 0.02425702, -0.0043245098, 0.011697716, -0.029930247, -0.0047055967, 0.00548434, 0.02591392, -0.01674132, 0.008874358, 0.0054975953, 0.0022832085, 0.03467561, 0.017775226, -0.0067932913, 0.0051065665, -0.007886846, 0.026338087, -0.0040759747, -0.0022252172, -0.021234835, -0.014527702, 0.003423156, -0.017854758, -0.0065679527, 0.011684461, -0.014302364, -0.024349807, -0.021062516, 0.012612325, -0.0020976358, -0.036186703, 0.023156838, 0.04268175, -0.0017248332, -0.030433943, -0.002491978, -0.1663793, 0.017099211, 0.006945726, 0.010882521, 0.031043684, -0.00089472614, 0.0036451805, 0.015097675, -0.0031514242, -0.024243765, 0.002675894, -0.018477751, -0.010511375, -0.014474681, 0.006528187, 0.013182298, -0.020929964, 0.025980197, 0.025741603, 0.00401964, 0.02163249, -0.022692906, 0.027199674, -0.0057229334, 0.0151374405, 0.020068375, -0.0110415835, 0.027385248, -0.0013296625, 0.0017132349, -0.0047884416, 0.013414265, 0.0016055363, -0.0088213375, 0.0026676094, -0.012579187, 0.0013164072, 0.009079814, 0.012632208, 0.035046756, 0.032899413, -0.008516467, 0.00044239237, 0.0079001, -0.0024671245, 0.025039077, 0.022666397, 0.011942937, 0.0101534845, -0.0071047884, -0.013626348, -0.029400038, 0.008443564, 0.0022152758, -0.0092388755, -0.00768139, -0.013825176, 0.026033217, -0.008231481, -0.03486118, 0.007031885, -0.029479569, 0.0063326727, -0.02033348, -0.023276135, -0.029612122, 0.011008445, 0.00066690234, -0.024416082, 0.008761689, -0.021645745, -0.006776722, 0.035815556, -0.003837381, 0.000872358, -0.013560072, 0.0021009496, -0.013984239, 0.014169811, 0.017404081, 0.005749444, 0.016781086, -0.030274881, 0.011863406, -0.040613938, 0.016542492, 0.01898145, -0.0030337845, -0.030539986, -0.033827275, 0.006398949, -0.014978378, -0.027000846, -0.0031945037, -0.013970983, 0.013420892, 0.0183452, -0.006833057, -0.014514446, -0.015402545, 0.004520024, -0.0016005656, -0.010339058, 0.03205108, 0.012188158, 0.00798626, -0.007031885, 0.004135623, 0.016807597, -0.009225621, -0.04721503, 0.013222064, 0.020850433, 0.0013578298, -0.033880297, 0.04726805, -0.0026394422, -0.013626348, -0.002424045, -0.00030839056, 0.066700175, -0.021287855, 0.007164437, 0.014991634, 0.0028515253, -0.020359991, -0.11166182, -0.0333766, 0.0316004, 0.019047726, 0.01243338, 0.043689147, -0.018583793, 0.030248372, -0.017616164, 0.026802018, -0.038095452, -0.031096704, -0.018901918, 0.00041422507, 0.0022749242, -0.024946291, -0.0068065464, -0.0100805815, -0.018530773, 0.022639886, -0.018636813, -0.03610717, -0.0015980803, -0.0067667807, -0.01875611, -0.002641099, -0.021950616, 0.017258273, -9.325242e-05, 0.011406101, 0.04467003, 0.0034596077, -0.0039301673, -0.023634026, -0.01574718, -0.009344918, -0.0050767423, -0.007409658, 0.019153766, -0.02759733, 0.008788199, 0.004437179, -0.0045001414, -0.018782621, -0.0011167508, -0.018106606, -0.036716912, 0.015574862, 0.031785976, -0.015601373, -0.0084501915, 0.009139462, -0.0010455041, -0.042946856, 0.004470317, -0.01992257, 0.0028316425, -0.013003353, 0.011551909, 0.0093648005, -0.0131624155, -0.0042085266, -0.0019336026, 0.0031464535, 0.028048009, 0.0027852494, 0.016237622, 0.015256737, 0.0009576884, -0.011200646, -0.0021639117, -0.008311012, -0.015733926, 0.028313112, -0.030646028, -0.012287572, -0.031229256, -0.0179608, 0.016197857, -0.0019534854, -0.0078338245, -0.028684258, -0.0138781965, 0.008251363, 0.02063835, -0.0124864, -0.02033348, 0.009895008, 0.019577933, -0.043450553, 0.0044636894, 0.0104252165, 0.008695412, 0.022228975, 0.00031957464, -0.012519538, 0.007509072, -0.013169044, 0.024442593, -0.007509072, -0.0021672256, 0.015269993, -0.03403936, 0.027093634, 0.012082117, 0.012327338, 0.0179608, -0.005868741, -0.0018524145, 0.0015599716, -0.007641624, -0.0010347342, -0.0139047075, 0.036266234, -0.013811921, -0.024323296, -0.017390825, -0.0064055766, -0.0038837742, -0.0041753887, 0.01002756, 0.008470074, 0.003106688, 0.002145686, -0.024906525, 0.0034927458, 0.012227924, 0.021367386, -0.014951868, 0.0131889265, 0.018901918, -0.023793088, 0.012711739, -0.0066673667, -0.011372964, 0.0151374405, -0.012062234, -0.020240694, -0.0031331985, -0.01127355, 0.011459122, 0.00086324505, -0.002526773, -0.020359991, 0.01163144, -0.03663738, -0.031865507, -0.005766013, 0.009411193, -0.0055704988, 0.021592725, 0.01906098, 0.052861746, 0.013281712, -0.022573609, -0.015892988, -0.017510122, -0.049707007, 0.0049408767, -0.004271489, -0.040773, -0.021804808, 0.01607856, 0.009550373, 0.008774944, -0.01182364, 0.022851968, -0.01132657, -0.038466595, 0.011525398, 0.031918526, 0.009901636, 0.016118325, -0.018305434, 0.0039102845, -0.004539907, 0.024018425, 0.0029989895, -0.011790503, -0.014792806, -0.012963587, 0.035020243, -0.0041654473, -0.023170093, -0.009371428, 0.012778015, 0.03737967, 0.015349524, 0.0051927255, 0.028551705, -0.014050514, -0.0012501313, -0.0025317436, 0.020532308, -0.017178742, -0.014130046, 0.021062516, 0.0014133359, -0.0036584358, -0.003920226, -0.0024555263, 0.004235037, 0.016091816, 0.013215437, 0.0044504344, -0.012970216, -0.001187169, 0.008032653, -0.017496867, -0.027703373, -0.012771388, -0.012247806, 0.026802018, 0.03411889, 0.023103818, 0.004533279, -0.025821134, 0.0036982014, -0.0065083043, -0.023634026, -0.012539421, 0.01132657, 0.023673791, 0.008377288, 0.012738249, -0.033827275, 0.04339753, 0.035152797, -0.009212365, -0.010557769, 0.029850716, -0.008059163, -0.00418533, 0.0075024446, 0.005245746, -0.006213376, 0.0017546574, -0.017125722, 0.006730329, 0.016926894, 0.005046918, 0.057792682, 0.0013570014, -0.004801697, -0.016979914, 0.00674027, 0.018994704, 0.0065679527, 7.699408e-05, -0.02033348, -0.021393897, 0.032475244, 0.003956678, 0.011174136, -0.016834106, -0.005215922, -0.008940634, 0.00014746412, 0.01607856, -0.011492261, 0.012082117, -0.0020197614, -0.0024141036, -0.0014961809, 0.0113133155, -0.0295591, -0.020890199, 0.0018739542, 0.01842473, -0.017854758, -0.046181124, -0.0062895934, 0.004374217, -0.03077858, -0.010657183, 0.0067435843, 0.011717599, -0.009828732, 0.0011258638, -0.004085916, -0.002110891, -0.0047453623, 0.016277388, -0.023527984, -0.021804808, -0.0025151747, -0.009563629, -0.010073953, -0.0074494234, -0.0017662557]" 25549171,Physicists challenge Google’s ‘quantum advantage’,https://www.nature.com/articles/d41586-020-03434-7,124,1609048358,73,mardiyah,"[-0.005506529, -0.016486052, 0.00685801, -0.015399502, 0.016016554, 0.01274349, -0.033294044, -0.035681773, -0.021771247, -0.015090975, 0.0076796296, 0.042120587, -0.026291832, 0.0014151981, 0.004634606, 0.0052583665, 0.023783376, -0.023837034, 0.0037023192, -0.0039739567, -0.029591724, 0.025352838, 0.008504603, -0.007035748, -0.018846951, 0.01052344, 0.027552767, -0.012421549, -0.0027297896, -0.016123869, 2.7313092e-06, 0.007136354, -0.02449433, -0.02657353, -0.015533644, 0.0066433824, 0.017639672, -0.00922897, 0.0061872997, -0.034313522, 0.038793866, 0.03420621, -0.0020154836, 0.012273993, 0.004413272, 0.0012835712, 0.008310097, 0.01110025, -0.018310383, -0.008900322, 0.009363112, 0.016177526, -0.022401715, 0.008960686, -0.023743134, -0.04544731, -0.00094318594, -0.0015744917, 0.011784375, -0.0033485196, 0.0059793796, 0.007907671, -0.012401428, 0.0007382002, -0.008860079, -0.010188085, 0.002541991, 0.01750553, 0.0010178024, -0.017975029, 0.005768106, 0.016915306, -0.0052583665, -0.009671638, 0.023702892, -0.022093188, -0.026654016, 0.028921016, 0.0057412777, 0.008102177, 0.005992794, -0.0010043882, 0.008980807, 0.005644025, 0.003420621, -0.0014202284, -0.004872708, 0.02338095, -0.00031942563, 0.009121656, 0.023595577, 0.007243668, 0.007766822, 0.021288335, -0.03168434, 0.02449433, -0.032757476, 0.021435892, -0.030047808, -0.013816626, 0.009973458, 0.013816626, -0.015788514, -0.016526295, -0.020845667, -0.017478703, 0.01718359, 0.00433614, 0.019504247, 0.011341706, -0.016432395, 0.014004425, 0.00030643062, -0.020456655, 0.03466229, -0.0043965043, 0.013709312, 1.4173988e-05, -0.007324153, -0.026747914, 0.030557547, 0.010302106, 0.033481844, 0.021690762, 0.022522442, 0.017921371, -0.03002098, -0.021476135, 0.004450161, -0.009792366, -0.008444238, 0.023394365, 0.0015736533, 0.04091331, -0.011046594, 0.033079416, -0.013078845, 0.00066316454, -0.009799073, -0.0033518733, -0.0007830539, 0.017076276, -0.028974673, -0.010858795, 0.001691866, 0.026265003, -0.0056306105, 0.02798202, -0.00034457727, -0.0037123798, -0.0026291832, 0.0141251525, 0.00075622555, 0.022240743, 0.01855184, 0.0032009634, -0.0087930085, 0.029323442, 0.008725937, -0.038096327, 0.010858795, -0.0077399933, -0.014138567, -0.028733216, 0.0070022126, 0.011663646, 0.036942706, 0.0035078132, 0.0244675, -0.029296612, -0.013521514, 0.019209135, -0.006090047, 0.02574185, -0.007183304, -0.0040041385, 0.031442884, -0.0025017483, -0.025728436, -0.007921085, 0.010094185, -0.0062409565, 0.005271781, 0.019933501, -0.023649234, -0.0018645738, 0.017331146, -0.008591795, 0.01961156, -0.009141778, 0.010992937, 0.0010270247, -0.007518659, -0.014393437, -0.65461296, -0.021100536, -0.018940851, -0.031094115, 0.0066836253, 0.018914022, 0.02136882, 0.0070089195, -0.01181791, 0.020872496, 0.0007453265, -0.0039236536, 0.0037090264, -0.023233395, -0.028760044, -0.035950057, 0.011663646, -0.016029969, -0.0024631824, -0.0025922942, 0.0038398148, 0.018015271, -0.017264076, 0.013494685, 0.004014199, -0.004476989, 0.01833721, -0.0045373533, -0.01625801, 0.0067037465, -0.010543562, 0.013534928, -0.007672922, 0.0078406, 0.050893474, -0.011697182, 0.0025570819, -0.0056540854, 0.015909242, 0.031898968, -0.010852088, -0.037854873, 0.016365323, 0.017425045, -0.051215414, -0.015077561, 0.023702892, -0.0015736533, -0.025889406, -0.015922656, -0.00438309, 0.017907957, -0.013474564, 0.023971176, 0.0056306105, 0.00029280683, 0.018149413, -0.021194436, 0.0003617642, -0.0037090264, 0.011542919, -0.00052902254, -0.017384803, -0.03702319, -0.023555335, 0.026399145, -0.028116163, 0.023072423, 0.0042657154, 0.0089740995, 0.0028656085, 0.030933145, -0.0058821267, 0.013400786, -0.00026325366, 0.018243313, 0.04512537, -0.013561756, -0.023796791, 0.011576454, -0.0104764905, -0.015345844, -0.036969535, -0.020550555, 0.029269785, 0.004292544, 0.002877346, -0.021596862, 0.02935027, 0.0024883342, 0.01750553, 0.0039035322, -0.007854014, -0.016338496, -0.016177526, 0.015077561, 0.007847307, -0.01609704, -0.012642884, -0.008216198, -0.025097968, -0.019128649, 0.031120945, -0.008122298, 0.011589869, -0.011777667, 0.009215555, -0.0028857298, 0.04407906, -0.04225473, -0.0154129155, -0.024601642, -0.01110025, 0.018417697, -0.0037526225, -0.040027972, 0.03654028, 0.009825901, -0.019692045, -0.023971176, 0.025607707, -0.0033300752, 0.0029980736, -0.0104764905, -0.0030282557, 0.0020305745, -0.020644454, -0.027002785, -0.023152908, -0.00084383704, 0.009497253, 0.012468499, 0.0224822, 0.004849233, 0.038498756, -0.007579023, -0.0035815914, 0.005151053, 0.009067999, 0.0025939709, -0.016311668, -0.014004425, 0.00871923, 0.0083302185, 0.0007905994, -0.016995791, -0.02650646, 0.0065226546, -0.012864218, 0.015708027, -0.005030325, 0.018001856, 0.0056507317, 0.008055227, -0.01059051, -0.011844738, -0.03168434, -0.026935713, -0.012334357, -0.011308171, -0.011724011, 0.0126898335, -0.017331146, 0.008243026, -0.005754692, -0.012595934, 0.0006153764, 0.036003713, -0.031818483, -0.03688905, -0.008370461, -0.017961614, -0.008591795, 0.02130175, -0.0059559047, 0.023112666, -0.0034541565, -0.01517146, -0.01845794, -0.0113014635, -0.002265323, -0.0077601145, -0.00011339191, -0.010322227, 0.013025188, 0.031979453, 0.015479987, 0.02458823, -0.003980664, 0.0082966825, 0.03670125, 0.031845313, 0.0032831253, 0.0006208259, -0.012857511, -0.010074064, 0.009953337, 0.0064924727, 0.023582164, 0.027043028, -0.0068009994, 0.015493401, 0.0020976455, -0.012864218, 0.013447735, -0.02574185, 0.022723654, -0.01641898, 0.011267928, 0.023984589, 0.017492117, -0.011489262, -0.0222005, -0.027955193, 0.010650875, 0.032328222, -0.0017128256, 0.0069150203, -0.0075991442, -0.009416768, -0.010664289, -0.014380022, 0.026452802, -0.0034474493, 0.0060062082, 0.005174528, 0.018565252, 0.0060296827, 0.022683412, -0.015037318, -0.017049449, -0.01232765, -0.011247806, 0.008444238, 0.01718359, 0.042174246, -0.013072138, -0.011019765, 0.045715593, 0.032220908, -0.037774388, -0.003890118, 0.013461149, -0.021663932, -0.017384803, 0.005174528, 0.027136927, 0.024910169, -0.011650233, 0.011683769, -0.012542277, 0.014004425, -0.03036975, 0.024708956, 0.040484056, -0.025701607, 0.016190939, 0.009872851, 0.037774388, 0.006854656, 0.009497253, 0.017639672, 0.0013196219, -0.0044166255, 0.0023458083, -0.021449305, 0.020845667, 0.008618624, 0.0053489124, -0.007397931, -0.012334357, -0.00494984, -0.013005067, -0.016647022, 0.01919572, 0.007558902, -0.0014981985, 0.016284838, 0.020295685, 0.0018377454, -0.038096327, -0.024776027, -0.00649918, 0.01269654, -0.0006782555, -0.012320942, -0.010053943, 0.003279772, 0.02037617, -0.008464361, -0.00980578, 0.0075387806, 0.0012450054, -0.002585587, -0.021771247, -0.028411275, 0.026654016, -0.0021328577, -0.010261863, -0.023769962, 0.015801927, -0.01584217, -0.019182306, -0.00835034, 0.01778723, 0.009416768, -0.011227685, -0.026493045, 0.015345844, -0.019987158, 0.009235676, -0.024319945, -0.016888477, 0.009725295, -0.0069887983, 0.0034776314, -0.010275277, 0.026171105, 0.029564897, 0.009054585, 0.0060967538, -0.016727507, -0.015305602, 0.012180094, 0.080216914, 0.0072839106, -0.02053714, -0.0010421156, -0.012019123, -0.026332075, -0.018162826, 0.00036847132, 0.028545417, -0.03388427, 0.00871923, 0.012810561, 0.014661721, 0.004108099, 0.033964753, 0.019074993, -0.0007553871, -0.020389585, 0.006653443, -0.018149413, 0.013461149, -0.00018643642, 0.014487336, 0.01644581, 0.007874136, -0.009906387, 0.015882412, 0.00603639, 0.01970546, -0.01299836, 0.01371602, -0.009765537, 0.017398218, 0.004034321, 0.022240743, 0.0044166255, 0.0062845526, 0.01928962, 0.0024346772, 6.0783095e-05, 0.003980664, 0.021663932, 0.0062711383, -0.010483197, -0.012381307, 0.00459101, 0.038498756, 0.01517146, -0.014997075, -0.01670068, 0.032113593, 0.0068948986, -0.036164682, -0.03318673, -0.015761685, 0.034581807, -0.01526536, -0.025956476, -0.002741527, -0.037640244, -0.013467857, -0.015131217, 0.017720157, -0.0035078132, -0.009799073, -0.029403927, -0.012381307, 0.0056373174, -0.013400786, 0.02028227, -0.002669426, -0.028303962, -0.02596989, -0.017331146, 0.01759943, -0.0039672498, 0.011455727, 0.008477774, -0.0066064936, 0.016378738, -0.009188727, -0.03324039, -0.022602927, -0.032918446, 0.010000286, 0.0074314666, 0.014165395, 0.007766822, -0.009544203, -0.0007654478, 0.010885623, -0.011274635, 0.019960329, 0.019624975, 0.004312665, 0.008088763, 0.00088198367, 0.023998003, 0.004775455, -0.011462434, 0.015225117, -0.0066869785, 0.009879558, -0.008055227, -0.0077332864, 0.0031439532, 0.01036247, 0.011677061, 0.0052885483, -0.033803783, 0.005976026, -0.032220908, 0.016110454, -6.272186e-05, 0.012267286, 0.03358916, 0.028303962, -0.0017689976, -0.0015409562, -0.012153265, -0.014165395, 0.011630111, 0.0051678205, -0.006177239, 0.008390582, 0.009202141, -0.0028153053, -0.011200857, -0.01910182, 0.013145916, 0.0071430616, 0.010281985, 0.006817767, -0.041637678, -0.010536854, -0.028867358, -0.012307528, -0.005483054, -0.0004627899, 0.00045775957, -0.01175084, 0.012186801, -0.010241741, 0.009872851, -0.0008082056, -0.022844383, -0.013179451, -0.007672922, 0.0045105247, 0.019732289, -0.022898039, 0.00050680526, -0.034823265, -0.011536212, 0.0042891903, -0.04238887, -0.004077917, 0.001021156, 0.034286696, 0.0037760972, 0.059612706, -0.014554407, -0.005395862, 0.020523725, -0.009282626, -0.007880842, 0.035976883, -0.002362576, -0.009685053, -0.005633964, 0.0016574921, -0.004007492, -0.005717803, 0.010382591, 0.0066836253, 0.02523211, -0.0034440958, 0.009309455, -0.017492117, -0.02999415, -0.016231181, 0.0008618623, -0.0026560116, 0.0074180528, -0.029081985, -0.012448378, 0.008196076, 0.016029969, 0.017907957, -0.011489262, 0.03120143, -0.00058226014, 0.0039001787, 0.02321998, 0.012924582, -0.010536854, -0.020510312, -0.0224822, 0.028974673, 0.009738709, 0.009611274, -0.0002544506, 0.016821407, 0.00943689, -0.00985273, 0.024601642, -0.018565252, -0.024521157, -0.0104764905, 0.0042120586, -0.007572316, -0.03871338, 0.013454443, 0.0046312525, 0.009577739, 0.02146272, -0.016928721, 0.00054117915, -0.0026895471, -0.024226045, 0.018243313, 0.016271425, 0.025916234, -0.0064354623, 0.03036975, 0.020429827, -0.0062778457, -0.0022418483, -0.024413845, 0.008129005, 0.008249733, 0.045018055, 0.027579594, -0.009121656, -0.0034440958, 0.028679559, -0.009778952, -0.047808208, -0.04716433, -0.0065930793, -0.0071296473, 0.0046513737, -0.030986803, -0.002429647, 0.004627899, 0.010885623, -0.019960329, 0.0113014635, -0.010959402, 0.0017924724, -0.009886266, -0.0063113812, 0.0027884769, 0.040805995, 0.0036855515, -1.543157e-05, 0.022629755, 0.005060507, -0.011106958, 0.0056540854, -0.0059357835, 0.016043384, -0.013789797, -0.015614129, -0.0024061722, 0.009188727, -0.0222944, -0.0020708172, -0.0033032468, 0.028303962, 0.0027398504, 5.8791924e-05, 0.020040816, 0.007961328, 0.0223883, 0.00010390765, 0.003286479, -0.014017839, 0.0014068142, 0.022817554, 0.00068747776, 0.005382448, 0.0055098827, -0.007136354, 0.008920443, -0.01625801, -0.011422192, -0.004309312, 0.01311238, -0.023837034, 0.0018561899, 0.018256726, 0.0049599004, 0.008095469, 0.022763897, 0.008055227, -0.019557904, 0.001438673, -0.034313522, 0.019048164, 0.04324738, -0.00029092046, -0.021543205, 0.010617339, -0.007625973, -0.0018964325, 0.009705174, -0.019598147, -0.0056674997, -0.022187088, -0.025379667, 0.023179738, 0.008665573, -6.780459e-05, 0.0014269355, 0.025594294, 0.008464361, -0.007994863, -0.022978524, 0.007652801, 0.0040410277, 0.0066802716, 0.011039887, -0.011938638, 0.016244596, -0.014447093, -0.011281342, 0.0057949345, -0.024936998, -0.027271068, -0.016405568, 0.011965467, 0.006700393, -0.016432395, -0.025285767, 0.0007968873, -0.00938994, -0.01175084, -0.009678345, 0.025312595, 0.0044166255, 0.0059357835, 0.020094471, -0.012528863, -0.019893259, -0.01274349, 0.0052281846, -0.0010790047, -0.018001856, -0.0041248663, 0.010630754, 0.039142635, 0.015909242, -0.02613086, -0.018793294, -0.013843454, -0.022683412, -0.018726224, -0.012361186, 0.0068009994, 0.013897112, 0.019946916, 0.021033466, 0.02951124, -0.0035882986, 0.01175084, -0.03305259, -0.020081058, 0.008108884, -0.019665217, -0.00023076616, 0.0010580451, -0.022160258, -0.010463076, 0.015962899, -0.00578152, -0.0021496254, 0.024373602, -0.0014562791, -0.010161256, 0.013441028, -0.0018461293, 0.008269854, 0.018149413, 0.024387015, -0.02641256, 0.0037828044, 0.007444881, -0.020322513, -0.00913507, 0.014527579, -0.000830842, 0.0013632181, 0.0050403858, -0.01299836, -0.032301392, 0.018042099, -0.014058081, 0.021999288, -0.007236961, -0.0022753836, 0.02835762, -0.012810561, -0.027633252, -0.015439744, -0.0012642883, -0.010342348, 0.0011024795, 0.0117642535, -0.018095756, 0.0074985377, -0.018766467, -0.010630754, -0.010027114, -0.008182662, -0.018256726, -0.013011774, -0.021744419, 0.028947843, 0.02104688, -0.008779594, 0.0017321085, -0.039679203, -0.006552837, -0.014326366, -0.013246522, -0.0046111313, -0.032274567, 0.0044300393, 0.0221066, -0.026654016, -0.025446737, 0.012113023, 0.009054585, 0.037989013, -0.005543418, 0.21612959, 0.009262505, -0.003345166, 0.02698937, 0.0044702822, 0.0021747772, 0.019249378, -0.00964481, -0.024440672, -0.0075924373, 0.012475206, 0.028867358, -0.021731004, -0.0052281846, 0.009537497, -0.013280058, -0.025245525, -0.026640601, -0.029242955, 0.03251602, 0.01928962, -0.011522798, 0.0043797363, -0.01827014, 0.0030718518, -0.009168605, 0.011006352, 0.00515776, 0.0017186943, 0.008786301, -0.01951766, -0.00065981096, 0.0052114166, 0.0005499822, -0.012475206, 0.009101534, 0.01211973, 0.009141778, 0.005194649, 0.025352838, -0.005633964, 0.0027750626, 0.020094471, -0.01059051, 0.0136958985, 0.011811203, -0.001449572, -0.026425974, -0.004285837, 0.006975384, -0.026654016, -0.011858153, 0.010121014, 0.01253557, -0.02136882, -0.0020993224, -0.011046594, 0.024427257, 0.016740922, 0.01517146, -0.00763268, 0.0037526225, -0.007465002, 0.017586017, -0.017706744, 0.016231181, -0.023045596, 0.029699039, 0.0014973601, 0.0015116127, -0.03053072, 0.0109057445, -0.0022217268, 0.009752124, -0.0061001075, -0.016365323, 0.03466229, 0.008061934, 0.029028328, 0.027324725, 0.016539708, 0.008739351, -0.014393437, -0.022535857, -0.006968677, -0.015748272, 0.03324039, 0.0071430616, 0.013058724, -0.002042312, 0.00526172, 0.0007277203, -0.02321998, -0.008403996, 0.012260579, 0.009483839, 0.00029930435, 0.0034222978, 0.016553123, -0.004248948, -0.013239816, 0.041852303, -0.0042154123, 0.004715091, 0.017062861, 0.013400786, -0.01017467, 0.0030500537, 0.0015510169, -0.008524724, 8.9026275e-05, -0.00788755, 0.011375242, -0.01855184, 0.0011452374, 0.020832252, 0.0008576704, -0.023622407, 0.0042053517, -0.024226045, 0.0200274, -0.015184875, -0.01660678, 0.0049565467, -0.007505245, -0.038659725, 0.01362212, -0.00067490194, -0.004299251, -0.005949198, 0.021006636, 0.0065696044, -0.0023709598, -0.010550268, 0.0049666073, -4.7499892e-05, 0.013481271, -0.0036922586, -0.016244596, 0.008712523, -0.0311746, -0.0063583306, 0.0012584196, 0.011670354, -0.0022552623, -0.0012542277, 0.0010136105, -0.016016554, 0.009718588, -0.02056397, -0.008269854, -0.02171759, -0.0067708176, -0.0016901892, 0.014487336, 0.015372673, -0.03927678, -0.0078070643, 0.001356511, 0.00922897, -0.01718359, -0.016486052, 0.015345844, 0.01211973, 0.008417411, -0.005902248, -0.1711652, 0.014071496, 0.016579952, -0.016995791, 0.007257082, 0.005992794, 0.01718359, -0.01584217, 0.0030835893, -0.007820479, -0.01635191, 0.006485766, -0.016901892, -0.013883697, 0.039867003, 0.0069887983, -0.046735074, 0.027633252, 0.0061906534, 0.010449662, 0.030101465, -0.023689477, 0.013045309, -0.017103106, 0.01274349, 0.027203998, -0.0009876204, -0.0009851053, -0.014889762, -0.033911098, 0.013098966, -0.019316448, 0.0139105255, -0.009282626, 0.035520803, 0.008839957, 0.0009943276, 0.0072101327, -0.0007641902, -0.0021948984, 0.005080628, 0.05065202, -0.008035106, 0.003450803, 0.0036721372, -0.0072772037, 0.021570034, -0.020040816, 0.011663646, -0.025527222, 0.021194436, -0.020496897, 0.021771247, -0.01352822, 0.03839144, -0.0071698898, -0.001479754, 0.020805424, -0.00029050128, -0.019651802, -0.008564967, -0.022656584, 0.0041483412, 0.009416768, -0.01063746, -0.01450075, -0.009416768, -0.025701607, -0.01315933, 0.0072034253, -0.019571317, -0.0104764905, 0.0245614, -0.0011980557, 0.0033736713, 0.009604568, -0.004309312, -0.0020003926, -0.010664289, 0.0022099894, 0.010248449, 0.029269785, 0.023394365, -0.0076595084, 0.0019584731, -0.008021692, -0.00010888558, 0.014742206, -0.015922656, -0.009503961, -0.0013607029, -0.03466229, 0.004248948, -0.019624975, -0.008886907, 0.012870925, 0.0023877276, 0.014353194, 0.003548056, -0.017478703, -0.0003154433, 0.010369177, -0.012361186, 0.008618624, 0.011757546, 0.01362212, -0.012844097, 0.010771602, 0.033267215, -0.0010781663, -0.03672808, 0.015882412, -0.009108242, 0.032328222, -0.01352822, 0.015077561, -0.027794223, -0.006717161, -0.01810917, -0.0041919374, 0.044669285, 0.006968677, -0.025191868, 0.018068928, -0.014366608, -0.007860721, -0.11031838, -0.037693903, -0.0045138784, 0.03235505, -0.0074314666, 0.0047217985, -0.006059865, 0.023582164, -0.030959973, 0.03871338, 0.009503961, -0.018498182, -0.016660437, -0.0054964684, -0.024856513, -0.030262435, 0.021690762, -0.028867358, 0.0021177668, 0.029725866, -0.012823976, -0.022522442, 0.012555691, -0.0075521944, -0.013313593, -0.013347129, -0.012676419, 0.009423476, 0.009651517, 0.0070022126, 0.0115160905, -0.016714092, -0.018753052, -0.025527222, -0.0006765787, 0.015708027, -0.0015879059, -0.016378738, 0.033133075, -0.01759943, 0.005335498, 0.0024162328, -0.0028203356, 0.0023793436, 0.003890118, 0.012475206, -0.030691689, 0.022093188, -0.01938352, -0.00051518914, -0.016754337, 0.00032236, -0.0058888337, 0.002085908, 0.01817624, -0.039786518, 0.01725066, 0.007652801, -0.013072138, -0.006559544, 0.0033787016, 0.01165694, -0.017760402, 0.021435892, 0.01417881, -0.025983306, -0.022267573, -0.011824617, 0.007163183, -0.006489119, 0.00964481, 0.010456369, -0.007981449, 0.020228613, -0.0029678917, -0.00763268, -0.016901892, -0.006059865, 0.007646094, 0.023743134, -0.015788514, -0.018954264, -0.0037760972, 0.0011871567, 0.018283555, 0.008518017, -0.005690974, 0.016016554, 0.03943775, -0.035306174, -0.015868999, 0.025004068, -0.012730076, 0.003160721, 0.009711881, 0.011469141, -0.029645381, -0.02983318, 0.008403996, 0.028250305, -0.039625548, -0.021918803, -0.0473253, 0.016110454, -0.0023005353, -0.0124416705, 0.0052214772, 0.0151982885, 0.020604212, -0.03321356, 0.007465002, -0.014769034, -0.03535983, 0.0052348915, -0.007438174, -0.012830682, -0.025862578, -0.009872851, 0.040859655, -0.019745702, 0.020979809, 0.019410348, 0.013883697, 0.0032361757, 0.012414842, 0.03973286, -0.012602641, -1.1947021e-05, -0.01855184, 0.007874136, -0.008960686, -0.0027851232, -0.004248948, -0.010919158, -0.011905102, 0.013628827, 0.0077064577, -0.0051208707, -0.013702605, 0.016311668, 0.009041171, 0.042683985, -0.022307815, -0.03774756, 0.006321442, -0.009913093, -0.012408135, -0.0074046385, -0.0067238677, -0.001624795, 0.02884053, 0.020832252, 0.008819836, 0.015305602, 0.017116519, -0.023461435, -0.002728113, -0.0023391012, -0.036647595, -0.0049364255, -0.0015954514, -0.0045943633, 0.014970248, 0.025943063, 0.018283555, 0.009839316, -0.0050269715, -0.011106958, -0.03710368, -0.016244596, 0.006968677, -0.03841827, -0.008678988, 0.005714449, 0.018967679, -0.0064924727, -0.0117307175, -0.009503961, -0.017921371, -0.001841099, -0.016164111, -0.010510026, 0.03157703, 0.013219694, -0.01641898, -0.01417881, 0.024132146, 0.014862933, -0.019088406, 0.013145916, -0.0038331077, -0.0065897256, 0.020456655, 0.0029393865, -0.013749555, 0.008471067, 0.020094471, 0.0015082591, 0.009296041, -0.0006950232, 0.026372317, 0.017612845, 0.020939566, 0.016875064, 0.0027264361, -0.0023961114, -0.0121935075, -0.005922369, -0.008383875, -0.021704176, -0.006334856, 0.021489548, 0.013327008, 0.010382591, 0.014849519, -0.00035757228, -0.017921371, 0.014970248, -0.0078674285, -0.003786158, -0.02072494, 0.014192224, 0.0066802716, -0.0077064577, -0.0057245097, -0.005127578, 0.05580307, 0.028196648, 0.021677347, -0.008839957, 0.015359259, -0.021945631, 0.0048089908, 0.001382501, -0.030611204, -0.015708027, -0.013964182, -0.018887194, -0.002391081, 0.002436354, -0.012528863, 0.0666954, 0.033428185, -0.004352908, 0.020698112, -0.024454087, 0.0028136284, 0.00737781, -0.019343276, -0.013139209, -0.030477062, 0.016016554, -0.0040577953, 0.003487692, 0.018135998, -0.015372673, 0.013327008, -0.00069586164, 0.024802856, -0.026090618, -0.023917519, 0.027767394, 0.0015711382, 0.0007574831, 0.0022016056, -0.009443597, -0.022307815, 0.00015740725, 0.015466573, -0.0063449168, -0.041664504, 0.0134142, -0.010966108, -0.035869572, -0.02606379, 0.022334643, -0.015225117, -0.010852088, -0.02935027, 0.0010890653, 0.015305602, -0.0066366754, 0.015949484, -0.005731217, -0.015882412, -0.0061973603, 0.004091331, -0.019048164, 0.008135713, -0.012569105]" 31102089,Memray: a memory profiler for Python,https://github.com/bloomberg/memray,495,1650484459,48,shcheklein,"[-0.026268546, -0.011450567, 0.0035590527, -0.053002506, -0.018110102, 0.007672496, 0.014605804, -0.029348496, -0.0053522675, -0.01444154, -0.006354962, 0.010512894, -0.0042229528, -0.01731616, -0.0146331815, -0.013250627, -0.005109294, -0.008377463, 0.012073401, -0.0041100215, 0.0075561423, -0.010779823, -0.03403002, -0.006816955, 1.9436833e-05, 0.02183342, 0.004551481, -0.0117654065, 0.018466007, -0.0062899413, 0.014482606, -0.020094959, -0.0033930775, -0.015810408, -0.027883809, -0.011108351, 0.015714586, 0.011341058, 0.027596347, -0.00042627356, 0.02202506, 0.009924281, -0.008048935, -0.0020464552, -0.00025259863, 0.009109806, 0.017631, -0.0058416375, -0.0032031473, 0.008473283, 0.0223399, 0.011313681, 0.0022586295, 0.0046746787, 0.027500525, -0.011094662, -0.012805745, 0.028445045, -0.021600712, -0.02049193, 0.006758778, 0.005454933, -0.03994352, -0.0015100307, 0.027705856, 0.004489882, -0.006108566, 0.013955593, 0.0096641965, -0.004082644, 0.03695939, 0.023120154, -0.0066663795, 0.0046746787, 0.017480424, -0.01978012, -0.021942928, 0.0033982107, 0.0065671364, 0.0010155278, 0.015221794, 0.0030765273, -0.016535906, 0.022969577, 0.005177737, 0.013175339, 0.0055165314, 0.012135001, -0.014290965, -0.019396836, 0.022805315, 0.019588478, 0.005790305, 0.0029653069, -0.001042905, -6.94058e-05, 0.025625179, -0.0049997843, -0.025638867, -0.012552504, -0.023941474, 0.02797963, -0.029923419, -0.0030166393, -0.008733368, -0.003648029, 0.0030850826, -0.013230094, 0.022791626, 0.0015656409, -0.01813748, 0.04413225, 0.0068785534, -0.050045755, 0.010115922, 0.0074876994, 0.040299427, -0.04087435, 0.01546819, -0.0121007785, 0.0063378513, 0.014674248, 0.024133114, -0.0020378998, 0.023229662, 0.01546819, 0.002883175, -0.021285873, -0.002311673, -0.00071437715, -0.0105471155, 0.0148248235, -0.003648029, -0.0034974536, -0.01414039, -0.0013671553, 0.008562259, 0.008678613, -0.026391745, -0.011067285, -0.0062625636, 0.0061154105, -0.020560373, -0.018602895, -0.02355819, 0.06674592, -0.0058655925, 0.0038122928, -0.016111558, -0.0042571747, 0.0131274285, -0.036849882, -0.042352725, -0.017192962, -0.013613377, 0.007905204, 0.0038636255, 0.006142788, -0.0461308, 0.0055986634, 0.0146331815, 0.035179865, -0.0022107193, -0.0011669586, -0.008664925, 0.042188462, 0.018616583, -0.021477513, -0.01671386, 0.0048355204, 0.028527176, 0.018383875, -0.0291021, 0.0070222844, 0.0020686993, 0.0021559645, -0.016891811, 0.0109783085, -0.0036617175, -0.019232573, 0.0049039638, -0.020300288, -0.0148248235, 0.018479696, -0.020204468, -0.0024382933, 0.007891514, -0.0023972273, 0.008035245, -0.0018462585, 0.007645119, 0.020683572, -0.021737598, -0.0505933, -0.6027393, -0.008726523, -0.035426263, -0.023955163, -0.026323302, 0.0036377625, 0.017398292, 0.0069196196, -0.026405433, 0.037068903, -0.014961709, 0.016919188, -0.0058074156, -0.0149206435, 0.0012105912, 0.0025460916, -0.004770499, -0.03676775, -0.027308885, -0.0033109456, -0.040491067, 0.009260382, 0.010054324, 0.0067450893, -0.019369459, 0.019985449, 0.0034153217, -0.008240576, -0.009801083, 0.031702947, -0.018767158, 0.02858193, 0.019985449, -0.008794966, 0.039505485, -0.018479696, 0.012354019, 0.055822372, 0.0004722589, 0.025898952, -0.013134273, -0.01607049, 0.004630191, 0.0061325217, 0.001194336, -0.017576244, 0.02131325, 0.0093288245, 0.012730458, -0.006529493, 0.002951618, 0.009342513, 0.0004401761, -0.015919916, 0.017083453, 0.012662014, -0.00391838, 0.007385034, -0.0169055, -0.013866616, -0.03482396, 0.036822505, 0.039259087, -0.015399747, -0.026022151, 0.008329552, -0.013873461, -0.010170678, 0.00055781304, -0.004541214, 0.0076588076, -0.0043427288, 0.016262133, -0.01608418, 0.0013363558, 0.041558784, 0.031319663, -0.01403088, -0.00072164927, -0.004352995, 0.019040931, 0.017083453, -0.012757835, -0.034002643, 0.0169055, -0.001774393, 0.011539544, -0.021696532, 0.027952252, 0.014359408, -0.0028797528, 0.034057397, -0.01638533, -0.070962034, 0.0040929103, 0.030553099, -0.036630865, 0.011279459, -0.015208106, -0.018383875, -0.014948021, -0.0028506643, 0.015550322, 0.0013603109, 0.017877394, -0.001533986, -0.024885992, 0.011128884, 0.04405012, 0.007843604, -0.022860069, -0.020984722, 0.026254857, -0.023927785, 0.0022158525, -0.02796594, 0.021039477, 0.012182911, 0.011498477, -0.0023133843, 0.007528765, -0.019191507, 0.030717362, 0.0077409395, 0.027692167, 0.0051880036, 0.029540136, -0.00902083, -0.01752149, 0.012456684, 0.0070838835, -0.00022949901, 0.010615559, -0.022367276, 0.038684163, 0.025036566, 0.021819731, -0.012819434, -0.003973135, 0.0051435153, -0.015043842, 0.008959231, 0.011683275, -0.0054309773, -0.011984426, -0.017850017, -0.017904773, 0.0077956943, -0.0065260706, -0.003651451, -0.0069743744, 0.0127236135, -0.013503867, 0.034714453, 0.006108566, -0.0035693191, -0.0066903345, -0.013380669, -0.03186721, -0.021942928, -0.0155640105, 0.015454502, -0.012128157, 0.021176362, -0.0049381857, -0.026597073, 0.0005586686, 0.031921964, -0.008986608, -0.04498095, -0.007754628, 0.013955593, -0.02509132, 0.020875212, -0.012833122, 0.017713131, -0.0043632616, 0.007501388, -0.011149417, -0.018835602, -0.0077135623, 0.045555875, -0.010841422, -0.028253403, 0.024940746, 0.011560077, 0.002783932, -0.0016828502, 0.013120584, 0.035946433, -0.0016546173, 0.025337717, -0.046459325, 0.017056076, -0.026200103, 0.007939425, -0.0031894587, -0.0007935147, 0.013674975, 0.04054582, -0.0034324324, 0.015249171, 0.0072892136, 0.027432082, -0.01812379, -0.015536633, 0.02254523, -0.009787395, -0.005314624, -0.026898224, 0.0023989384, -0.0230654, -0.008767589, -0.037862845, 0.0032117027, 0.036110695, -0.0036582954, 0.026802404, -0.031620815, -0.020040205, 0.02570731, 0.031100644, 0.020149713, -0.012976853, 0.0031620814, -0.01137528, 0.009636819, 0.031839833, 0.0004181459, -0.028691439, 0.0061975424, 0.00840484, 0.017247716, 0.012354019, 0.055685487, 0.008788122, 0.01873978, -0.0124840615, 0.007186549, 0.007528765, -0.012025491, 0.016522218, -0.0012020358, -0.015687209, 0.0012508017, 0.015194417, 0.01843863, 0.015303927, -0.00519827, 0.001339778, -0.018876668, 0.02131325, -0.017754197, 0.009958503, -0.012990542, 0.008788122, 0.004000512, -0.001834281, 0.022654738, 0.017986905, 0.01925995, 0.013298537, 0.02744577, -0.000115284216, 0.027705856, -0.014195144, 0.022175636, -0.038054485, 0.014277277, -0.017562555, -0.01793215, -0.0125798825, -0.027637413, -0.017658377, 0.030388834, 0.00548231, 0.01947897, 0.030607853, 0.017589932, -0.011635364, -0.038355637, -0.028746195, 0.03575479, 0.00519827, -0.014893266, -0.026145348, -0.032633774, 0.0013072675, 0.00014127129, -0.0021679422, 0.01516704, 4.9594673e-06, -0.013846084, 0.006183854, -0.020094959, 0.006409717, 0.046185553, -0.0067622, -0.0044214386, -0.008699146, 0.0027103554, 0.008131066, -0.005910081, -0.028937835, 0.019328393, 0.0028472422, 0.001113915, -0.020382421, -0.00804209, -0.008001024, -0.008610169, -0.013757107, 0.01199127, -0.027158309, 0.021231119, -0.0007340546, -0.0066663795, 0.022504164, 0.0052085365, 0.051086094, -0.029047346, -0.020231845, -0.0045857024, 0.016152624, 0.04640457, 0.02726782, 0.004103177, -0.006577403, -0.037041526, -0.009280914, -0.018383875, -0.01680968, 0.030580476, -0.008931853, -0.01598836, -0.0060264342, -0.007925737, -3.4729637e-05, 0.009636819, 0.0074876994, 0.0019283906, -0.009096117, -0.0050134733, 0.0015066086, 0.020656195, -9.549982e-05, 0.0036343404, 0.0041955756, 0.007419256, 0.021737598, 0.024434265, 0.015344992, 0.00058134046, -0.030142438, 0.0036411847, 0.001960901, -0.004116866, 0.009198782, -0.010731912, 0.045391608, 0.03564528, 0.00025238475, 0.028171271, -0.0025614912, 0.01854814, 0.012792056, -0.00522907, -0.008794966, 0.0109303985, -0.0024776482, 0.01009539, 0.008548571, -0.010512894, 0.005458355, 0.02244941, -0.016125247, -0.03923171, -0.0029926843, -0.007823071, 0.0038875805, 0.017863706, 0.00758352, 0.0050613834, -0.013688664, -0.011484789, 0.011738029, -0.006354962, -0.006454205, -0.0028780417, 0.008213199, 0.01444154, 0.016125247, -0.01039654, 0.01649484, 0.003983401, -0.01598836, -0.025036566, 0.0024827814, 0.0022979844, 0.0052940906, 0.007159171, -0.010423917, 0.022244079, -0.0028352644, 0.022463098, 0.0066287355, -0.004086066, -0.04087435, -0.019615855, -0.014099324, 0.0067177117, -0.030662607, -0.031401794, 0.03277066, -0.00018319282, -0.013421735, 0.044104874, -0.010519738, -0.0128605, 0.037452184, -0.00013988104, -0.000101969854, 0.012511439, -0.02652863, 0.024557464, -0.020683572, -0.028226025, -0.013031608, -0.015071219, -0.016043114, -0.015084907, 0.01142319, -0.0013055563, 0.0036343404, 0.011943359, 0.002001967, 0.006786155, 0.01414039, 0.032305248, -0.009424645, -0.032113604, 0.013989815, 0.00055481866, -0.0065192264, 0.02539247, -0.026254857, 0.036932014, 0.026104283, 0.013380669, 0.006673224, -0.0013064118, -0.015303927, -0.001072849, 0.013757107, 0.009876371, 0.030060306, -0.0048765866, -0.013497023, 0.016357953, -0.02223039, -0.013189028, 0.013722885, -0.021997683, 0.026761338, -0.039614994, 0.00902083, -0.0012644903, 0.002659023, 0.011868072, -0.033071812, -0.0034580987, 0.030963758, -0.014742691, 0.012182911, -0.020546684, 0.0110262185, -0.023215974, -0.0003770799, -0.012785212, 0.0041065994, -0.0063002077, 0.014564739, 0.027240442, 0.0046644122, 0.01997176, 0.0028044651, 0.010950931, 0.0019283906, 0.0016965388, -0.005855326, -0.014236211, 0.00758352, -0.0068374877, -0.011813317, 0.023229662, 0.0009607731, -0.0023612946, -0.021669155, 0.004595969, 0.0038020264, -0.0048731645, 0.012525127, -0.013627065, -0.0096641965, -0.017891083, 0.010629248, 0.011108351, 0.01782264, -0.02150489, 0.009842149, 0.032360002, -0.028636685, 0.035919055, 0.0034272992, -0.014222522, -0.022969577, 0.05185266, 0.0111220395, 0.016207378, -0.017192962, 0.018780846, -0.035152487, -0.004767077, -0.015180728, 0.005964835, 0.01331907, 0.00906874, 0.02437951, -0.0072618364, 0.03545364, 0.00037066336, -0.012730458, 0.022901135, -0.024050983, -0.013852928, -0.020382421, -0.014865889, -0.03832826, -0.0042434856, 0.0003627496, 0.020341355, 0.023133842, 0.0015451079, -0.010369163, -0.0056568403, 0.01567352, 0.04692474, 0.01567352, 0.013134273, 0.047089003, -0.00045258144, -0.020971034, 0.008144755, 0.03893056, -0.0017196384, 0.029266363, 0.04415963, -0.031566057, -0.0037575383, 0.018561829, 0.011320525, -0.0037198944, -0.025118697, 0.039067447, 0.009910593, -0.01249775, -0.0311554, -0.016152624, -0.019930694, 0.018999865, -0.03389313, -0.005910081, 0.022860069, -0.0030166393, -0.006040123, 0.051359866, 0.020012828, -0.0073918784, -0.009718952, 0.0063138963, -0.023886718, -0.0034478323, -0.008877099, -0.0077067176, 0.007131794, 0.025241897, -0.003483765, -0.011457412, 0.013120584, -0.008938697, -0.00993797, -0.028773572, -0.022079814, 0.032743283, -0.015125974, -0.015605077, 0.012942632, -0.010239121, -0.003215125, -0.015837785, -0.024584841, -0.021915551, 0.0029550404, 0.0057423944, 0.039587617, -0.018315433, -0.030060306, -0.020820457, -0.01680968, -0.00069127756, -0.018698715, 0.016412709, -0.015550322, -0.024338445, -0.012846811, 0.0035795856, -0.0018223034, 0.01579672, 0.008391151, -0.005420711, -0.030580476, 0.04131239, -0.022422032, 0.046377193, -0.0009924282, 0.025105009, -0.024160491, 0.024639595, -0.012114468, -0.024680661, 0.022422032, -0.021587024, -0.058258954, -0.024762793, 0.0041134437, 0.020409798, 0.013750263, 0.0028575086, 0.0051024496, 0.013620221, 0.0018821913, -0.0135107115, -0.0016426396, 0.007857293, -0.05453564, -0.008883943, 0.002043033, -0.025871575, -0.008028401, 0.002927663, -0.009787395, -0.005085339, -0.00097617286, -0.014783757, -0.025625179, -0.0037164723, -0.01701501, 0.0018000593, -0.019150442, -0.021272184, -0.010362319, 0.013483334, 0.0028284201, -0.00014533511, -0.006577403, 0.035809547, 0.02232621, 0.0104512945, 0.005075072, -0.0043837945, -0.023092777, -0.005995635, -0.033865754, -0.026117971, -0.026501253, 0.04640457, -0.0010394829, -0.015837785, -0.028445045, -0.0005064806, -0.052427582, -0.008534882, -0.0088291885, 0.04413225, 0.018082725, 0.02929374, -0.0036446068, 0.011840695, 0.027623724, 0.020971034, 0.00432904, -0.018424941, 0.0046986337, 0.0022363854, 0.00973264, 0.011676431, -0.018808225, -0.017781574, -0.0077956943, -0.0052256472, -0.004780766, 0.04621293, -0.004804721, -0.015235483, 0.01794584, 0.0035350975, -0.0024211823, -0.020026516, 0.038163994, -0.029238986, -0.010328097, 0.036329713, -0.0028780417, -0.029950798, -0.00527698, 0.016262133, -0.013278004, -0.0094794, -0.029622268, -0.013585999, 0.016275821, -0.008028401, 0.024584841, -0.020108648, 0.0056123524, 0.031100644, -0.0018599472, -0.027952252, -0.028527176, 0.0067108674, -0.013613377, 0.00039269356, 0.02726782, -0.004411172, 0.006950419, -0.015700897, 0.022244079, 0.008226887, -0.010670314, -0.027089866, -0.02591264, -0.01598836, -0.008945541, -0.008384307, -0.002722333, 0.014578427, -0.009677885, -0.03422166, 0.0055541755, -0.00819951, -0.012162378, -0.02377721, 0.005379645, 0.021915551, -0.0053728004, -0.021874486, -0.012128157, -0.000681011, 0.0027753767, 0.029266363, 0.19645971, -0.018356498, 0.037260544, 0.025269274, -0.008062623, -0.008959231, 0.014742691, 0.01137528, -0.0034118996, 0.034002643, -0.021751286, -0.023900406, -0.024735415, 0.006081189, -0.0074876994, -0.0070359735, -0.0068751313, -0.019150442, -0.017302472, -0.0074876994, -0.005461777, 0.006354962, -0.0120528685, -0.018835602, 0.02479017, 0.010793512, -0.012374552, -0.007275525, 0.0013603109, -0.018917734, -0.024420576, 0.0011815028, -0.030388834, -0.03279804, -0.021491202, 0.011553233, 0.0037370052, -0.0042366413, 0.0109303985, -0.014304654, 0.003750694, -0.032934926, 0.033208698, -0.027787987, 0.018069036, -0.015755652, -0.021778664, -0.013948749, 0.0018445475, 0.03266115, -0.017562555, -0.028362911, 0.013401202, 0.004890275, 0.004264019, -0.05390596, 0.015687209, 0.0038088707, 0.012511439, 0.016262133, -0.031401794, 0.0096162865, -0.031100644, 0.018397564, -0.03983401, 0.008945541, -0.024831237, 0.0030200614, 0.0117654065, 0.0045685917, -0.019999137, -0.009342513, 0.008904476, -0.018301744, -0.008500661, -0.018493384, 0.015810408, 0.009650508, 0.013147961, 0.034550186, 0.012744146, -0.023845652, -0.010622404, 0.010115922, -0.030060306, -0.027911186, 0.0066047804, -0.0065808254, -0.00037515495, -0.011642208, -0.010204899, -0.019711677, 0.004886853, -0.016700171, 0.0064884266, -0.00018971633, -0.00060914556, -0.005797149, -0.0038910026, -0.0043598395, -0.04240748, 0.035152487, 0.019766431, -0.013086363, -0.0056123524, -0.018794535, -0.018110102, 0.028116515, -0.0019215462, -0.008274797, -0.0047739213, -0.041257635, 0.019684298, -0.0076519633, -0.0008948964, 0.008439061, -0.0070633506, -0.033865754, 0.0068272213, 0.012997386, -0.0119570475, 0.005300935, 0.014058257, -0.032113604, -0.008938697, -0.028664062, -0.02162809, 0.015139663, -0.003836248, 0.0014278988, 0.0045925467, -0.005903236, 0.03597381, 0.01290841, -0.02603584, 0.006419983, -0.012853655, -0.00028575087, -0.01671386, -0.012894722, -0.022367276, 0.006515804, -0.024064671, -0.0060093235, 0.03966975, 0.020929968, -0.010115922, 0.02652863, 0.0058450596, -0.009657352, -0.022983266, 0.014222522, 0.0038259816, 0.010772979, 0.014154078, -0.03257902, -0.044022743, -0.033975262, 0.0120528685, -0.0073508127, -0.04306454, -0.0075766756, 0.006512382, 0.015728274, -0.012059713, 0.00028617863, -0.17258668, -0.016344264, 0.0016169734, -0.022736872, -0.0014989087, 0.003952602, -0.00897292, -0.0076588076, -0.02314753, -0.009746329, -0.009185093, 0.010745601, -0.010177522, 0.0049176523, -0.0010283609, -0.0034906093, 0.026610762, 0.00096505083, 0.015399747, 0.0030183503, 0.03219574, -0.028691439, 0.022189325, 0.014236211, 0.023448681, -0.037123658, 0.0037541161, -0.01854814, 0.009315136, -0.033400342, 0.010026947, 0.015249171, 0.01331907, -0.0015014753, 0.018000593, 0.024625907, -0.0021320095, -0.013887149, -0.016631726, -0.006929886, 0.014071947, 0.0112657705, 0.015372369, 0.0007541598, -0.007521921, 0.038027108, 0.020574061, -0.037643827, -0.0076245856, 0.0012893011, 0.029430628, -0.0210121, -0.014660559, 0.0013953882, 0.026706584, 0.007186549, 0.018726092, 0.0137023525, 0.010649781, -0.014249899, -0.020574061, -0.028472422, 0.016357953, -0.000479531, -0.016316887, -0.01639902, -0.00065106706, 0.026788715, -0.01290841, 0.008103689, -0.0039354907, -0.008055779, -0.0072070817, 0.006265986, 0.008035245, 0.017740509, 0.0045651696, 0.018507075, 0.022928512, 0.013325915, -0.012189755, 0.03022457, 0.016440086, -0.0037541161, -0.0011960471, -0.029321117, -0.0021679422, 0.0060298564, -0.022463098, -0.030279325, 0.024872303, -0.019602166, 0.016453775, -0.016043114, 0.018301744, 0.014865889, 0.005420711, -0.008644391, 0.023325484, -0.03411215, -0.001938657, 0.0037814935, -0.00932198, -0.011560077, 0.022709493, 0.016248444, -0.020108648, -0.005913503, 0.027815364, -0.024393199, -0.013585999, 0.011738029, 0.022558918, 0.011341058, -0.0012704792, 0.019506346, 0.023270728, -0.010896176, -0.0011353035, 0.00071309385, 0.05286562, -0.016221067, -0.0046473015, 0.0208889, -0.0051264046, -0.024927057, -0.09888691, -0.03605594, -0.012531972, -0.013189028, -0.0043393066, -0.0050956053, 0.020505618, -0.00013656581, 0.014154078, 0.02232621, -0.021888174, 0.0021302984, -0.013408046, 0.009506777, -0.014715314, -0.006946997, -0.014318342, -0.011724341, -0.032606397, 0.018274367, 0.013462801, 0.005379645, 0.014085636, -0.012162378, -0.013900838, 0.010950931, -0.018288055, 0.00047995878, 0.003464943, 0.007610897, 0.009814772, -0.010636092, 0.006081189, -0.0073165908, 0.004205842, -0.0019677454, -0.020163402, -0.017494112, 0.023038022, -0.007980491, -0.008842877, 0.015837785, 0.019246262, -0.009883216, -0.0012798901, 0.0007417545, -0.027952252, 0.01802797, 0.013777641, -0.024530087, -0.03329083, 0.018575517, -0.0070565064, -0.012504594, 0.01804166, -0.020040205, -0.011936515, 0.005957991, -0.026994046, -0.012374552, -0.027404705, 0.015755652, 0.00804209, 0.025679933, 0.021587024, 0.031018512, 0.023640323, -0.0046062353, 0.025994772, 0.006447361, -0.02099841, 0.0074534775, -0.01598836, 0.0012114467, -0.016412709, 0.013585999, -0.010752445, 0.0074876994, 0.0022654738, -0.00993797, -0.034385923, -0.005424133, -0.0057766163, -0.017247716, 0.0029926843, 0.022175636, 0.0020686993, 0.012997386, -3.7643826e-05, -0.019013554, -0.0051229824, 0.022613673, 0.009397267, 0.010711379, -0.01925995, -0.005167471, -0.0072002374, 0.021641778, -0.01579672, 0.022819003, -0.014852201, -0.0028181537, -0.06838857, 0.0022141414, 0.013380669, 0.0015117418, 0.033537228, -0.03605594, 0.017713131, -0.008281642, 0.019520035, 0.0023630057, -0.039368596, 0.0056123524, 0.0037986042, -0.00507165, -0.008459594, 0.00507165, 0.025118697, -0.010848266, 0.021874486, -0.00078795373, 0.009773706, 0.009842149, 0.00077298173, -0.0041545094, -0.023530813, -0.0043872166, -0.01587885, 0.032332625, -0.007823071, -0.016932877, 0.0005047695, -0.007405567, 0.012566194, -0.0071728597, 0.008007868, -0.024133114, 0.01967061, -0.01368182, 0.022901135, -0.003280146, -0.015208106, -0.008418528, 0.02355819, -0.0018428364, 0.02521452, -0.03945073, 0.015646143, -0.011546388, -0.0040450003, -0.0040552667, 0.049854115, 0.0025751798, -0.021463824, -0.027404705, -0.024913369, 0.012689391, 0.012531972, -0.0061462102, -0.011888605, -0.01967061, 0.032305248, 0.016659103, -0.00024062104, -0.007891514, 0.009540998, -0.017275093, -0.019739054, -0.00311246, 0.010670314, -0.027130932, -0.022517852, -0.0216144, 0.037342675, -0.0010976597, 0.037068903, -0.025556736, -0.023448681, -0.00049065304, -0.044597667, 0.023914095, 0.013873461, -0.00789836, -0.014934332, -0.010225432, 0.039587617, -0.003938913, -0.014537361, -0.010403384, -0.004390639, 0.024420576, -0.0020036781, 0.0055815526, 0.011156261, -0.009458867, 0.008028401, 0.012792056, -0.004366684, -0.015208106, 0.014742691, 0.01475638, 0.012867345, -0.007816227, 0.0022141414, -0.033674113, 0.0022415188, 0.009582065, -0.011238393, 0.0021080542, 0.0002297129, 0.03361936, 0.026733961, -0.008096845, -0.042681254, 0.01372973, -0.018096413, 0.0045857024, 0.015947293, -0.00016704448, 0.014811134, 0.012812589, 0.022860069, 0.015783029, 0.041558784, 0.0015793296, 0.02069726, 0.024489019, 0.014893266, 0.0027993317, 0.00048808643, -0.033947885, 0.0021525424, -0.01701501, -0.01824699, -0.03052572, 0.006615047, -0.0014432985, -0.005502843, 0.025241897, 0.001205458, 0.094835065, 0.0074945437, -0.015605077, -0.018671338, -0.0051880036, 0.028554553, 0.023503436, -0.0011164816, 0.022175636, -0.008521194, 0.001720494, -0.018726092, 0.005649996, -0.015851473, 0.028527176, -0.012682547, 0.005999057, 0.021422759, -0.011080974, -0.0053283125, 0.03862941, 0.0026846891, 0.011566921, 0.0059716795, -0.01455105, 0.019205196, 0.018151168, 0.017494112, 0.010622404, -0.035617903, 0.015413435, 0.004715745, 0.026076905, -0.0058827032, 0.0015374081, 0.009048207, 0.0012816011, 0.004804721, -0.010957776, 0.020012828, 0.0024228934, -0.0031227265, -0.019109376, -0.026775027, 0.00886341, 0.007604053, 0.009445178, -0.008788122, -0.04344782]" 29162015,Suppose I Wanted to Kill a Lot of Pilots (2020),https://newsletter.butwhatfor.com/p/invert-always-invert-avoid-failure,172,1636467473,123,stanrivers,"[0.0035436098, 0.010330878, -0.0054374877, -0.028041951, 0.015192878, 0.029520782, -0.03454322, -0.016560098, -0.030106733, -0.018834148, 0.024916878, 0.044671807, 0.006344317, 0.0076452685, 0.016978635, 0.009744927, 0.022880001, 0.0043179025, 0.02779083, 0.0040353904, -0.025935318, 0.005549098, -0.009270585, -0.018722536, -0.007170927, 0.011147025, 0.026242245, -0.005953683, 0.0001394032, -0.0043179025, 0.018387707, 0.01749483, -0.02561444, -0.012423561, -0.02949288, -0.012053854, -3.3379383e-05, -0.011893415, 0.018834148, -0.011656244, 0.01749483, 0.013979122, -0.003791244, -0.019461952, -0.009347317, 0.010149512, -0.010309951, -0.016085757, 0.008761366, 0.0015224268, 0.020410635, 0.014481366, -0.0089636585, -0.0018398172, -0.018206341, -0.018513268, 0.012318927, 0.014537171, -0.0041016587, 0.009451952, 0.014830147, -0.014355805, -0.016769366, 0.019350342, 0.0064838296, -0.009005512, -0.004398122, -0.017369268, -0.022740489, 0.00025700763, 0.029548684, 0.019517757, -0.014774342, 0.0044992683, 0.027204879, -0.008886927, -0.0029838171, -0.0047364393, -0.023661269, 0.017327415, 0.0106447805, 0.0047329515, -0.011907366, 0.01785756, -0.0021851098, -0.001536378, 0.00088590244, 0.035296585, -0.021415122, 0.0026890975, -0.0069093416, 0.0059501952, 0.020661756, 0.023758927, -0.023340391, 0.008321903, -0.018610926, -0.0038191464, 0.008649756, -0.019629367, 0.006407098, -0.017313464, -0.0017360549, -0.009814683, -0.022168487, 0.0067837806, 0.014265122, -0.020605952, 0.0067837806, -0.0023891465, -0.008761366, 0.017564585, 0.018569073, -0.016434537, 0.025363317, -0.031501856, 0.0020299025, -0.022238245, -0.022698635, -0.023382245, 0.027762927, -0.0106796585, 0.021945268, -0.01647639, 0.0054549268, 0.006131561, -0.02275444, 0.0023455487, 0.00668961, -0.013588488, 0.02356361, 0.027651317, -0.019531708, -0.009179902, -0.009249658, 0.0026053903, -0.036301073, 0.005182878, -0.007317415, -0.037696198, 0.019810732, 0.023842635, -0.008831122, -0.01865278, -0.018276097, 0.037333462, 0.0066826344, 0.008531171, 0.0006757622, -0.0031756463, 0.0032122685, -0.00056022865, 0.008133561, -0.00026049544, -0.0034808293, 0.03166927, -0.0027728048, 0.020061854, -0.010888927, -0.012632829, 0.01750878, -0.01577883, 0.0058385856, -0.0009190366, 0.016267123, 0.028014049, 0.01646244, 0.0092287315, 0.019587513, -0.007875464, -0.0033744513, 0.016783318, -0.036775414, 0.0059432196, 0.008217269, 0.018903904, 0.011419074, 0.023856586, -0.019182928, -0.001162311, 0.013225757, 0.007742927, 0.020075805, 0.034013074, -0.0057374393, 0.009005512, 0.016950732, 0.013525708, -0.0058943904, -0.013588488, 0.0016828659, 0.014732488, -0.019057367, -0.011167952, -0.64331865, -0.04082127, 0.0012268354, -0.011481854, 0.0075406344, 0.0074499515, -0.0100239515, 0.0023089268, -0.026116684, 0.030218342, -0.008921805, -0.009744927, 0.0034093293, -0.008440488, -0.023228781, -0.023159025, -0.008852049, -0.018150536, 0.015402147, 0.011495805, -0.026744489, 0.013065318, -0.010393659, 0.0027257195, 0.0021014025, 0.016825171, 0.0055595613, -0.023800781, -0.019880489, 0.016448488, -0.015485854, 0.020717561, -0.008726488, 0.018178439, 0.058037072, 5.705831e-05, 0.011530683, 0.02780478, 0.01155161, 0.025628392, -0.008189366, -0.025851611, 0.029074343, 0.0071255853, 0.0020264147, 0.016490342, 0.020229269, 0.0022444024, -0.006511732, -0.0040005124, 0.015820684, 0.0051235855, -0.01785756, 0.013316439, 0.01223522, 0.00048349696, 0.01943405, -0.020145562, -0.0060652927, -0.0021659269, -0.016016, 0.017076293, -0.03638478, 0.0041574636, -0.03524078, 0.01886205, -0.019224782, 0.0011753903, -0.004666683, -0.00019618902, 0.002022927, 0.025321463, -0.0037249757, -0.01796917, 0.004645756, 0.019029465, 0.030971708, -0.0035348902, 0.015639318, -3.8583843e-05, -0.0028059392, 0.0024100733, -0.009730976, -0.011167952, 0.027721073, 0.017480878, -0.016197367, 0.01069361, 0.006061805, 0.008852049, 0.005074756, 0.010114634, -0.0055735125, -0.015164976, 0.012284049, 0.012507268, 0.0017909878, -0.012751414, 0.023172976, -0.0041086343, -0.01589044, -0.030692684, 0.009005512, 0.013965171, 0.0059467074, 0.002861744, -0.0064454637, -0.022377757, 0.03674751, -0.03007883, 0.0037633416, 0.0029210367, -0.0077499026, 0.015597464, 0.0077289757, -0.024428586, 0.019503806, 0.020843122, 0.0085730245, -0.03178088, 0.01646244, -0.008852049, -7.214034e-06, -0.01498361, 0.022196392, 0.017201854, 0.0066059027, -0.008203317, -0.023186928, -0.01075639, -0.0051375367, -0.007854537, 0.015918342, -0.004004, -0.003271561, -0.0022984634, 0.004485317, -0.0063024634, 0.008349805, -0.008656732, -0.01762039, -0.007007, 0.0034075854, 0.018945757, -0.0033674757, -0.028906927, -0.006986073, -0.0014456952, -0.010491317, -0.01623922, 0.024275122, 0.0030152074, 0.005685122, 0.015625367, -0.0046004145, -0.0026908414, -0.0032837684, -0.051173072, -0.029939318, -0.020745464, 0.0069058537, 0.021373268, -0.02275444, 0.017899415, -0.00082355796, -0.0025495854, 0.014209317, -0.0045829755, -0.018917855, -0.018903904, -0.0038296098, -0.013790781, -0.0029977683, 0.013755903, -0.018345853, 0.009849561, -0.02481922, -0.00011814939, 0.0049491953, -0.0063164146, -0.0003163003, -0.011502781, -0.009249658, 0.0017107683, 0.019517757, 0.0021240732, 0.012179415, 0.02195922, 0.001699433, 0.03214361, -0.0063129268, 0.01520683, 0.010965658, -0.02000605, -0.021010537, 0.02985561, -0.0016113659, 0.007596439, -0.0031913414, 0.027274635, 0.007966147, 0.0049770977, 0.021345366, -0.038449563, 0.011844586, -0.005667683, 0.0011021463, -0.024456488, 0.012304976, 0.027456, 0.0038749513, 0.0039795856, -0.0155277075, -0.025084293, 0.0052142683, 0.0331481, -0.013274586, 0.012897903, -0.0071779024, -0.0021763903, -0.0021415122, 0.009005512, 0.027428098, -0.023172976, 0.011370244, 0.004610878, 0.018792294, 0.009242683, 0.022349855, -0.029185953, -0.013860537, 0.0138465855, 0.009403123, 0.0118655125, 0.02275444, 0.033343416, 0.0041260733, -0.006183878, 0.046234343, -0.020061854, -0.000111446265, 0.004506244, -0.0038051952, -0.018457463, 0.021582536, 0.019461952, 0.028530244, -0.012514244, -0.018959709, 0.031641368, -0.021247707, 0.023172976, -0.005008488, -0.03133444, -0.0017194878, -0.032673758, 0.021694146, 0.0049945368, 0.015164976, 0.023856586, 0.018345853, -0.0015119634, -0.0021589512, -0.0083079515, 0.00948683, 0.0031372805, 0.0058385856, -0.00034529268, 0.008949707, 0.007980098, -0.014355805, -0.019838635, 0.009535659, -0.013372244, 0.024972683, 0.0027815246, -0.006794244, 0.017815707, 0.01646244, 0.0029262684, -0.012381707, -0.003076244, 0.02011766, 0.018150536, -0.0040493417, -0.022907903, 0.003203549, -0.009354292, -0.0094938055, 0.013407122, -0.01760644, -0.008203317, -0.025237756, 0.026925854, -0.022768391, -0.035184976, 0.0143, -0.027316488, 0.0070139756, 0.0036970733, 0.01001, -0.0049770977, -0.016504293, -0.015946245, 0.033092294, 0.00948683, -0.0048585124, -0.034682732, 0.0004521067, -0.029883513, 0.0018310976, -0.011886439, -0.015583512, -0.016364781, 0.007184878, 0.014313951, -0.017690146, -0.011251659, 0.0131560005, -0.0013855305, -0.007673171, -0.0042446586, -0.024679707, 0.022154536, 0.11462322, 0.02138722, -0.01657405, 0.016825171, 0.006511732, 0.006776805, -0.007205805, -0.057060488, 0.04093288, -0.030329952, 0.0082730735, -0.012284049, 0.006741927, -0.008705561, 0.02413561, 0.0076103904, 0.011677171, -0.02640966, 0.0063861706, -0.023940293, -0.00846839, -0.0019915367, -0.0008122226, 0.014055854, 0.014104683, 0.008789268, 0.03306439, 0.027958244, 0.02229405, -0.015834635, -0.004868976, 0.007477854, 0.0014875488, 0.01795522, -0.022503318, 0.0045167073, 0.002233939, -0.004010976, -0.0044922926, -0.019824684, -0.0019200366, -0.0015512012, 0.0049945368, -0.008482342, 0.012479366, -0.029353367, -0.018903904, 0.017285561, -0.01520683, -0.017634341, 0.026130635, -0.0012067806, -0.02195922, -0.02046644, -0.0063129268, 0.0144674145, -0.011481854, -0.011579513, -0.0032802806, -0.007652244, -0.007638293, -0.027497854, 0.032645855, -0.0013157744, 0.008028927, -0.016867025, -0.0027885002, -0.0037703172, -0.02186156, 0.0049596587, -0.00031019666, -0.014565074, -0.043053463, 0.0038854147, 0.024791317, -0.009821659, 0.009124097, -0.009612391, -0.0056990734, 0.010777317, -0.010512244, -0.034152586, -0.001734311, -0.039509855, 0.0077359513, -0.0045690243, -0.0114051225, -0.012618878, -0.022308001, -0.00794522, 0.0067140246, 0.014104683, 0.00938917, -0.009828635, 0.027065367, 0.023926342, 0.0022600975, 0.04015161, 0.010868, -0.008656732, -0.008838098, -0.016016, -0.004886415, -0.04082127, -0.02240566, 0.007903366, 0.009068293, 0.019852586, 0.007742927, 0.00053407013, 0.026660781, -0.011600439, 0.01886205, 0.006686122, -0.0037284635, 0.017522732, 0.025893465, 0.022852099, -0.0140767805, -0.00041722867, -0.013246683, -0.016141562, 0.020452488, 0.027051415, -0.024679707, 0.01075639, 0.00511661, -0.01309322, -0.03303649, -0.0004560305, -0.02105239, 0.011816683, -0.007184878, -0.03454322, -0.02127561, -0.015192878, -0.0125909755, -0.0140767805, -0.011174927, -0.018206341, -0.00039739176, 0.018583024, -0.010463415, 0.0008710793, 0.013190879, -0.024163513, -0.010205317, 0.030469464, -0.0150673175, 0.0040667807, -0.029688196, -0.0069232928, -4.073647e-05, -0.027386244, 0.0069093416, -0.04665288, -0.006881439, -0.0017569817, 0.017341366, -0.003609878, 0.035296585, -0.0011867257, 0.009710049, 0.009054341, -0.010540146, 0.0068919025, -0.011140049, 0.009291512, -0.018889952, 0.016727513, 0.041714147, -0.004024927, 0.002753622, -0.017146049, 0.0038191464, 0.011516732, -0.01509522, -0.008147513, -0.0059780977, -0.05055922, -0.02437278, 0.027009562, -0.017118147, 0.0055770003, -0.02551678, 0.0041260733, 0.030357854, 0.004520195, 0.027400196, 0.014537171, 0.013330391, -0.016755415, 0.020592, -0.0012634574, 0.031920392, -0.021024488, -0.012911854, -0.021917365, -0.0027204878, 0.013972146, 0.031613465, -0.004520195, 0.013295513, -0.0007298232, -0.0025007562, 0.0015668963, -0.0078824395, -0.010923805, 0.016085757, -0.019308489, -0.0028547684, -0.010379707, -0.010651756, 0.0028495367, 0.008496293, 0.016629854, 0.029660294, 0.009131073, -0.03303649, -0.03007883, 0.0010838354, -0.013149025, 0.035436098, 0.011698098, 0.017341366, 0.016183415, -0.00805683, 0.0024902928, 0.019936293, 0.022838147, 0.01784361, 0.013142049, 0.005130561, -0.016364781, -0.01943405, 0.01806683, 0.006532659, -0.025991123, -0.012451463, 0.0043004635, -0.017466927, 0.011977122, -0.01795522, -0.036468487, -0.014453463, 0.006459415, 0.010135561, 0.018290048, -0.0017892439, -0.019699123, -0.012479366, 0.03409678, -0.0030326464, 0.021177951, 0.0049980246, -0.0016854818, -0.0005589207, -0.018290048, 0.0036412685, 0.017020488, -0.0022199878, 0.024330927, -0.03259005, 0.004234195, 0.006187366, 0.014704586, -0.0064280247, -0.021652292, -0.008859024, 0.028181463, 0.0004204985, -0.0037982196, -0.016308976, -0.043974243, 0.00977283, -0.019601464, -0.00726161, -0.022824196, 0.01565327, -0.019727025, 0.024637854, 0.023270635, -0.016295025, -0.0089636585, -0.013239708, -0.02002, 0.0060652927, 0.007910342, 0.032087807, -0.016364781, -0.026172489, -0.013218781, -0.015151025, -0.01978283, -0.003609878, -0.013176927, -0.010289025, 0.01452322, -0.019880489, 0.0033535245, -0.0073941466, -0.0068744635, -0.026925854, 0.015736977, -0.0038017074, -0.00651522, 0.013037415, -0.017885463, -0.0075057563, -0.023298537, 0.01623922, 0.02882322, 0.004167927, -0.008991561, 0.02103844, 0.014844098, 0.012053854, -0.013218781, -0.013302488, 0.021373268, 0.0020438537, 0.013400147, -0.008775317, -0.018876001, -0.004739927, -0.0021537195, 0.0072895125, -0.006780293, -0.03019044, -0.008035903, -0.009117122, -0.018011024, 0.019615415, -0.006497781, -0.016029952, 0.007097683, -0.020061854, -0.003958659, 0.020326927, -0.007163951, -0.0019427073, -0.0016671708, -0.004795732, -0.0106796585, -0.017676195, 0.0035523293, -0.012416585, -0.0025600488, -0.029102245, -0.011147025, 0.0070662927, 0.050391804, 0.009242683, -0.003308183, -0.0021345366, -0.008475366, -0.041658342, -0.0066407807, -0.010819171, 0.0033169026, 0.025558634, 0.015248683, -0.0068570245, 0.021791805, -0.010163464, 0.020438537, 0.014788293, -0.032311026, 0.005151488, -0.0089985365, -0.0022112683, -0.0036412685, -0.029520782, -0.021247707, 0.031083317, -0.02253122, -0.028334927, 0.023535708, -0.0032140124, 0.005238683, 0.024400683, 0.014153512, 0.027149074, -0.0029280123, 0.016420586, -0.035296585, -6.207203e-05, 0.001430872, -0.015485854, -0.011384196, 0.0049980246, -0.004935244, 0.011433025, -0.011739952, -0.0038575123, 0.01498361, -0.011160976, 0.00058943906, 0.029771904, 0.0019723538, 0.016378732, 0.0112446835, -9.9456935e-05, 0.0033849147, -0.01886205, 0.007840586, -0.00075510977, -0.0039621466, 0.029213855, -0.012604927, 0.016588, 0.0031739024, 0.012116634, 0.0017761646, -0.0016567074, -0.010037903, -0.006762854, -0.021317463, 0.008552098, 0.011181903, 0.01703444, 0.008872976, 0.007568537, 0.008356781, -0.01269561, -0.01760644, 0.023856586, -0.011300488, -0.003665683, 0.0015232988, 0.0053189024, -0.03582673, -0.025740001, 0.01647639, -0.018387707, 0.010051854, 0.23996098, -0.0087683415, 0.023019513, 0.029604489, -0.025433073, 0.0028024514, 0.015583512, -0.0060304147, -0.0030239269, 0.015192878, 0.019768879, -0.004778293, -0.020410635, -0.0054793414, 0.009012488, -0.015960196, -0.022210343, -0.033650342, -0.01463483, 0.01148883, 0.0065745125, 0.013016488, -0.004865488, -0.0042795367, 0.008426537, 0.029297562, -0.016434537, 0.0027571097, 0.029213855, -0.0069058537, -0.02675844, -0.021024488, 0.012709561, -0.0009199086, -0.012458439, 0.0039795856, 0.022907903, -0.008280049, 0.018011024, 0.0025984147, 0.027288586, 0.015513756, 0.0114051225, -0.029995123, 0.01919688, 0.011160976, -0.016769366, -0.008419561, 0.010651756, -8.288986e-05, -0.026312001, -0.01023322, 0.014341854, 0.034375805, 0.007854537, 0.011223757, 0.0063931462, 0.0017848841, 0.016657757, 0.015709074, -0.0013794268, 0.012988586, -0.031278636, -0.004307439, 0.0061210976, 0.021191902, -0.011321415, -0.00089069817, 0.0125909755, -0.02378683, 0.015137074, -0.029074343, -0.020033952, 0.0112098055, -0.025698148, -0.01612761, 0.03189249, 0.0068012197, 0.03214361, 0.012702585, -0.009933269, -0.00783361, 0.010086732, -0.004488805, -0.019936293, -0.026660781, 0.02448439, 0.0062292195, -0.015192878, -0.0077708294, -0.029716099, -0.034264196, -0.01183761, 0.014495317, 0.018917855, 0.014565074, 0.00875439, 0.015736977, 0.0018467928, -0.016336879, -0.029716099, 0.010658732, 0.023591513, 0.020326927, -0.01366522, 0.0031058902, 0.0040179514, -0.003414561, 0.010602927, -0.03674751, -0.0015180671, -0.012821171, 0.015318439, -0.006421049, 0.0036726587, 0.015402147, 0.009521708, -0.033706147, 0.04163044, -0.02105239, 0.0054444633, -0.0077010733, 0.0025827195, 0.012137561, 0.01498361, -0.0066128783, -0.049164098, 0.00954961, -0.023996098, -0.020787317, 0.028767414, -0.005029415, -0.008991561, -0.017564585, -0.0062954878, -0.0045306585, -0.002075244, -0.016839122, -0.0028756952, -0.006344317, -0.013818683, -0.0135815125, 0.008796244, 0.014899903, 0.019141074, 0.0033134148, 0.0080777565, -0.0025007562, -0.0044434634, -0.01727161, 0.016908878, -0.004216756, -0.00072371954, -0.004743415, 0.0048933905, -0.0077847806, -0.03819844, -0.034571122, 0.010951707, 0.018959709, -0.01831795, 0.02985561, 0.038896002, -0.02162439, -0.014676684, -0.010037903, -0.18080781, 0.04391844, 0.0071081463, -0.018806245, 0.04221639, 0.0065710247, 0.04372312, 0.015318439, -0.003721488, 0.003273305, 0.0097588785, 0.004541122, -0.014090732, -0.037361365, 0.000697997, 0.007687122, -0.016378732, 0.02996722, 0.0075197075, 0.023731025, 0.030664781, -0.010735463, 0.019964196, 0.024456488, 0.009968147, 0.016322928, -0.00057461584, -0.021568585, -0.018248195, -0.02985561, -0.003381427, -0.02551678, 0.018304, -0.010323903, 0.019113172, -0.0037493904, -0.020884976, -0.018931806, -0.01865278, 0.02367522, 0.014355805, 0.025977172, 0.03328761, 0.0021014025, -0.021680195, 0.0068779513, 0.0074150735, -0.0056432686, -0.0010132074, -0.023940293, 0.0009704817, -0.016434537, -0.00783361, 0.01808078, 0.022391709, -0.0067523904, -0.00041722867, 0.0021885976, 0.0018555123, -0.004112122, -0.010554098, -0.01349083, 0.02391239, -0.014286049, -0.0067349514, -0.008489317, -0.023758927, 0.023800781, -0.0091938535, 0.015723025, -0.014195366, 0.0020194391, 0.024861073, -0.021987122, 0.009786781, 0.013400147, -0.029409172, -0.024763415, 0.003669171, -0.014230244, -0.013065318, 0.017550634, 0.011921317, -0.018038927, 0.003414561, -0.004080732, 0.0071220975, 0.00035641008, -0.013560586, -0.019001562, -0.002380427, -0.0066128783, -0.028307024, -0.014495317, 0.0027553658, 0.003200061, 0.00880322, -0.011328391, -0.0003808247, -0.009626342, 0.007317415, -0.0073034638, -0.019768879, 0.007952196, 0.012025951, 0.00954961, 0.009807708, 0.0080777565, 0.017829658, 0.012221268, -0.048048, 0.014118634, -0.012374732, 0.003920293, -0.009877464, 0.018290048, 0.003993537, -0.01795522, 0.010763366, 0.011516732, 0.050949853, 0.0012111403, -0.014844098, 0.013239708, -0.0034389757, -0.015318439, -0.115627706, -0.011991073, 0.026563123, 0.0045306585, 0.002753622, 0.013344342, 0.0019060854, 0.0013654756, -0.031697173, 0.050252292, 0.0026960731, -0.039286636, 0.011495805, -0.0030012561, 0.002340317, -0.02105239, -0.004882927, -0.039984196, -0.019936293, 0.030581074, 0.0027762929, -0.003895878, -0.0007354909, 0.0010315183, -0.0143, -0.007722, -0.018108683, 0.016713561, 0.015736977, -0.03839376, -0.0017552378, -0.015918342, -0.015388195, -0.04026322, 0.005524683, 0.0077638538, 0.0066965856, -0.0146069275, 0.01965727, -0.02378683, -0.0008492805, 0.019155025, 0.005517707, -0.017550634, 0.009856537, -3.66492e-05, -0.022042926, 0.034347903, 0.0045515853, -0.009458927, -0.01566722, -0.010163464, -0.032394733, 0.0022566097, 0.024763415, 0.008642781, 0.0063512926, 0.004150488, -0.0008671555, -0.0031128658, 0.0027257195, -0.01120283, -0.012737463, 0.013225757, 0.021763902, -0.010051854, -0.019685172, -0.034347903, 0.0005680762, -0.008712537, -0.0059118294, 0.014969659, -0.021708097, 0.028906927, -0.023452, -0.02607483, 0.010582, 0.006480342, 0.017745951, -0.015192878, 0.006166439, -0.025000585, 0.015513756, -0.028153561, 0.017090244, 0.014816196, 0.0013855305, 0.00055325305, 0.0044957804, -0.02092683, 0.0002790244, 0.008670683, -0.008391659, 0.0136163905, 0.00022474542, 0.02391239, 0.01796917, -0.016783318, 0.01441161, 0.025865562, -0.008796244, -0.025126146, -0.048103806, 0.036301073, 0.0026611951, -0.019838635, 0.003271561, 0.0064698784, 0.027428098, 0.006564049, -0.00064611586, 0.010065805, -0.023061367, -0.009591464, -0.0033727074, -0.009444976, -0.01831795, -0.029883513, 0.0075057563, 0.008921805, 0.0009495549, -0.004642268, 0.014216293, 0.0022932317, 0.0064454637, -0.0021014025, 0.013344342, -0.012611902, -0.004167927, 0.016336879, -0.007617366, -0.005723488, 0.012053854, -0.017690146, -0.0066582197, 0.005517707, -0.0007638293, -0.016183415, 0.00021395503, -6.098209e-05, -0.005486317, 0.048410732, -0.014397658, -0.020215318, -0.00074290246, -0.020145562, -0.011056341, 0.009996049, -0.004436488, -0.0005959787, 0.018248195, 0.0030500854, -0.0068779513, 0.016448488, -0.030553171, -0.013162976, -0.020619903, 0.011230732, 0.011126098, -0.0018450489, -0.014592976, -0.030023025, 0.05134049, 0.0068012197, -0.004572512, -0.03225522, 0.008454439, -0.01989444, -0.024693659, 0.012856049, -0.0032262197, -0.023479903, -0.009479854, 0.0009190366, 0.011802732, 0.03828215, 0.0032767928, -0.0029001099, -0.002933244, -0.0041016587, -0.021094244, 0.02140117, 0.009361268, -0.013058342, -0.019336391, -0.011998049, 0.015946245, -0.0044434634, -0.010247171, 0.024051903, 0.0114748785, 0.0061385366, 0.015248683, 0.01738322, -0.022670733, -0.033678245, -0.0014770854, 0.012751414, -0.021931317, 0.008845073, 0.020299025, -0.013930293, 0.028028, 0.013476878, 0.024149561, -0.020340879, -0.0056607076, 0.017425073, -0.018150536, -0.010595951, -0.0097588785, 0.010323903, 0.040095806, 0.023814732, -0.0101843905, 0.016615903, -0.020173464, 0.0033465489, 0.016839122, -0.029213855, -0.017076293, 0.038812295, 0.0059467074, -0.0035488415, 0.024875024, -0.008949707, 0.016741464, 0.01474644, 0.026312001, -0.020438537, 0.0036447563, -0.017243708, 0.0047190003, 0.007422049, -3.5341272e-05, -0.01877834, 0.004844561, -0.029018536, 0.013211805, -0.01657405, -0.007219756, 0.070760585, 0.039147124, 0.00737322, -0.008314927, -0.010030927, 0.00282861, 0.021024488, -0.006438488, -0.0020107196, -0.03501756, 0.015192878, 0.012179415, 0.035436098, -0.022475416, 0.0037877562, -0.0066303173, -0.011600439, 0.03233893, -0.011942244, -0.021568585, 0.020312976, -0.011607415, 0.026046928, 0.017132098, -0.017718049, -0.03384566, 0.027414147, -0.006382683, -0.0039970246, -0.0377241, -0.016643805, 0.01498361, -0.019489855, -0.03420839, -0.006288512, -0.008740439, -0.0064873174, -0.021596488, 0.023633366, 0.0033221343, 0.0053014634, 0.006330366, -0.011160976, -0.06311532, -0.006989561, 0.0025844635, 0.010575024, 0.014774342, -0.013316439]" 12487771,Facebook Collaborating with Israeli Government on What Should Be Censored,https://theintercept.com/2016/09/12/facebook-is-collaborating-with-the-israeli-government-to-determine-what-should-be-censored/,145,1473771654,160,marcusgarvey,"[-0.025710054, 0.010276045, -0.0074511296, -0.011592124, -0.0027351829, -0.010993906, -0.042619664, -0.024779493, -0.0068396186, -0.03913671, 0.0037056243, 0.013599475, 0.0036192152, -0.019501887, 0.009731003, 0.016962785, 0.035946216, -0.00036329243, -0.0055002766, -0.0035361294, -0.017228661, 0.0315327, -0.01458321, 0.01930248, -0.01320731, 0.012196988, 0.015487183, -0.022306861, 0.009877234, -0.023091191, 0.0095382435, -0.0027335212, -0.015340952, 0.008687446, -0.030868016, -0.010355808, -0.0017132281, -0.058226492, 0.01274203, 0.0051978445, 0.013154135, 0.013918525, -0.0144502735, 0.010754619, -0.011080315, 0.0018179162, 0.015061785, 0.0010610049, 0.008893498, 0.02948547, 0.031851754, 0.028315622, -0.026614027, -0.01794652, -0.027079307, -0.024035044, -0.0029744697, 0.0068396186, 0.008321868, 0.017627472, 0.023848932, 0.019927286, -0.025377711, 0.014051462, -0.012296691, -0.010934085, -0.0060353484, 0.02315766, -0.0034198093, 0.00022661638, 0.054982822, 0.019847523, 0.02186817, -0.013021198, -0.003881766, -0.022320155, 0.0050914944, -0.0071653146, 0.00050931564, -0.0016293115, 0.027517999, -0.03187834, -0.0024028397, 0.026773551, 0.026720377, 0.012263456, 0.015779644, 0.020525502, 0.028714433, -0.024048338, 0.0022865199, 0.02186817, 0.0038319146, 0.0030941132, -0.030921191, 0.006726622, -0.009790825, 0.015447302, 0.008541214, -0.016936198, 0.022971546, 0.0099769365, -0.011419305, -0.006653507, -0.009365425, 0.002278211, -0.0014016565, -0.0010676518, 0.01458321, -0.028289035, 0.0055036, 0.018451683, -0.004446749, -0.046049446, -0.0023529883, -0.009312251, 0.008281987, -0.011751648, -0.009358779, -0.025563823, 0.024500325, 0.018345334, 0.0024028397, -0.016364569, 0.018092752, -0.017733822, -0.015447302, -0.012429628, -0.003212095, -0.016058814, 0.028262448, 0.006517246, -0.0010128153, -0.004327106, -0.009983583, 0.023529883, -0.0023878843, -0.015739763, -0.039482348, -0.021243364, 0.026680496, 0.006337781, -0.014835791, -0.008062641, 0.003124024, 0.014756029, -0.021323126, 0.027491411, 0.007265018, 0.0054703658, -0.017986402, -0.005496953, -0.017720528, 0.0047026533, 0.0072251367, 0.0010867616, -0.0018960168, 0.024261039, -0.0029628377, -0.026175333, -0.022865197, 0.010442217, -0.029565232, 0.01125978, 0.02430092, 0.027438236, -0.011990935, -0.004087819, -0.0022964901, -0.00327524, -0.010176342, 0.027783874, -0.012369806, -0.010176342, 0.010202929, 0.007584067, 0.01111355, 0.0026570822, -0.017388185, -0.024327507, -0.026667202, 0.027331887, 0.015952464, 0.016696911, -0.016444331, 0.008175638, 0.01801299, -0.017733822, -0.026029103, -0.017202074, -0.012037463, -0.00747107, -0.006597008, -0.045118883, -0.6440541, -0.01740148, 0.048282787, 0.020073516, -0.011153431, 0.01869097, -0.008421571, 0.0043304292, -0.01149242, 0.004612921, -0.018504858, 0.02669379, -0.0066668005, -0.006653507, -0.008574449, -0.011857998, -0.004091142, -0.006477365, 0.025577117, 0.005875824, 0.0009629638, -0.0015453949, -0.002914648, 0.010335867, 0.0035660402, 0.027225537, 0.001586107, -0.00986394, -0.0074644233, 0.041901805, -0.0190499, 0.006254695, 0.01680326, 0.03698313, 0.051127646, 0.003944911, -0.020033635, -0.00065679284, 0.010143108, 0.014569917, -0.033978745, -0.014343923, 0.011273074, 0.00019587464, 0.0108543215, -0.0044035446, 0.035653755, -0.011778235, 0.009259076, -0.033048186, 0.00069335056, 0.0075707734, 0.0011706782, 0.008235459, 0.0038784426, -0.011299661, 0.0023330478, -0.0138786435, 0.022293568, 0.010395689, -0.015979052, -0.004230726, -0.010947378, -0.018425096, -0.024433857, 0.013559594, -0.011146784, 0.0015512109, 0.0014066417, 0.017494535, 0.004779092, 0.035653755, -0.01805287, -0.0098439995, 0.0027684171, 0.017507829, 0.02823586, -0.030681904, 0.0009023112, -0.02019316, -0.00827534, -0.022998136, -0.014662973, 0.0015229618, 0.00527096, 0.011645298, -0.0059356457, 0.01572647, 0.0018694293, -0.005613273, 0.010674857, 0.033393823, -0.019913992, -0.011020494, -0.021509238, 0.0060419957, -0.011585477, -0.013027845, 0.00021934637, 0.015394127, 0.014357217, -0.016922904, -0.009684474, 0.011140137, 0.022532854, 0.01740148, -0.023277303, -0.004004733, 0.022213805, -0.039641872, 0.015487183, -0.008780502, -0.004669419, -0.019674705, 0.0029312652, -0.02059197, 0.013346895, 0.008647565, 0.0049419403, -0.0035195122, 0.0034065156, -0.009797472, -0.0029179715, 0.012449568, 0.0034796312, 0.037514877, 0.006008761, -0.029910868, -0.00884697, -0.011419305, 0.008587743, -0.007152021, 0.02387552, -0.016710205, 0.029698169, 0.025510648, -0.0050682304, 0.0053141643, 0.015832819, -0.029006897, -0.019594943, 0.0029545291, 0.004081172, 0.01572647, -0.01479591, -0.00952495, -0.015088372, -0.004772445, -0.024646556, 0.04142323, 0.012921495, -0.000722846, 0.013021198, 0.01858462, -0.0015545343, 0.0155935325, -0.014157811, -0.024340801, -0.005177904, -0.0020223071, 0.006789767, 0.017534416, -0.00058616995, -0.018558033, 0.0108543215, -0.028634671, 0.018371921, -0.0042672837, -0.0075109513, -0.0001639905, 0.015181428, -0.016789967, -0.016444331, 0.0135463, 0.017494535, 0.006464071, 0.011725061, -0.007437836, 0.009279016, 0.0015952464, 0.013719118, -0.019010019, -0.016005639, -0.020020342, 0.004224079, 0.0090131415, -0.014091343, 0.024713024, -0.012336572, 0.02337036, -0.003328415, 0.0069924966, -0.011784882, 0.01572647, 0.0011424291, 0.02298484, 0.030442618, -0.0034164859, 0.023862226, 0.04711294, 0.008554509, -0.0014764337, 0.027544586, 0.0017830201, 0.004606274, -0.040918067, -0.01411793, -0.031266827, 0.028687846, -0.00597885, 0.020844553, 0.0016525754, -0.0017614178, -0.004270607, -0.021429475, 0.010016818, 0.008614331, -0.0034430732, -0.007158668, 0.02330389, 0.016603855, -0.013552947, 0.005437131, -0.01011652, -0.017202074, 0.013905231, 0.016470918, 0.017069135, 0.022492973, -0.035334706, -0.017933227, 0.0105020385, -0.032941837, 0.02469973, -0.00607523, 0.008840323, -0.012456215, -0.00085245975, 0.022280274, -0.002098746, 0.005806032, 0.03913671, 0.019142956, 0.004453396, -0.0015213001, -0.010741325, 0.029432295, -0.026534265, -0.004948587, 0.0068927933, -0.0026720376, 0.014078049, -0.01765406, 0.005064907, 0.008335162, -0.011286368, 0.0077834725, 0.00298444, 0.018916963, 0.00096961064, 0.010947378, -0.020139985, 0.020060223, -0.012835086, -0.012968023, 0.00084207405, 0.0056265667, 0.0027368446, -0.020259628, -0.027757287, -0.019754468, -0.03198469, 0.016497506, -0.014530036, 0.019036606, -0.020618558, 0.019435417, 0.019820936, 0.004260637, 0.0061018174, -0.00882703, -0.026614027, 0.0025108512, 0.02226698, -0.017374892, -0.014782616, -0.03073508, -0.0011906187, -0.004104436, -0.0054005734, -0.013772293, 0.008036054, -0.008933379, -0.012070697, -0.00040379673, -0.023463415, 0.0066834176, -0.0075308923, 0.0026338182, 0.01740148, 0.016417744, 0.0055767153, -0.007770179, -0.0059489394, 0.021363007, -0.002401178, 0.021323126, -0.0065704207, -0.012044109, -0.015434008, 0.0041177296, 0.0044434257, 0.007763532, 0.02491243, 0.00505826, 0.023835639, -0.010402336, -0.01250939, -0.009551537, -0.028315622, -0.00241281, -0.021509238, -0.022532854, -0.01125978, 0.1297467, 0.013386776, -0.011472479, 0.02055209, -0.012768618, -0.00022100809, -0.014662973, -0.016563974, 0.0031605817, -0.0027551234, -0.018385215, 0.008886851, 0.011266427, -0.0070921993, 0.024633262, 0.008408277, 0.032117628, -0.012210282, -0.0061948732, -0.012356512, 0.00895332, 0.004971851, 0.007849941, 0.022466386, 0.016085401, -0.017521122, 0.021057252, 0.040253382, -0.0110736685, -0.0004337076, -0.03251644, 0.022944959, -0.001905987, -0.021775112, -0.003095775, 0.031851754, 0.019528475, 0.0013617753, 0.020804672, 0.014343923, 0.027225537, 0.026906488, 0.0016293115, -0.021788405, 0.010123167, -0.003841885, -0.02226698, 0.013479832, -0.0019242659, -0.016244926, 0.0315327, -0.0213763, -0.044613723, -0.017667353, -0.022572735, -0.0066501833, 0.006025378, 0.014051462, 0.0028880606, 0.008747268, 0.00872068, -0.02959182, -0.011572183, -0.02548406, -0.019993754, -0.030283093, 0.014383804, 0.0033001658, 0.0008113323, -0.020605264, -0.0027135804, -0.02387552, -0.028501734, -0.005722946, 0.031798575, 0.02008681, 0.025045367, 0.015633414, 0.008182284, 0.004516541, -0.0016982727, 0.00059946364, -0.0061649624, -0.027079307, 0.005224432, -0.0009804118, -0.0039648516, -0.013825468, -0.050409783, 0.016417744, 0.034297798, 0.012642327, 0.0024111483, 0.011339542, 0.0011050404, 0.013147488, -0.0012745353, 0.031080715, 0.02874102, -0.021163601, 0.00028124524, 0.0144502735, -0.019435417, -0.005596656, -0.006813031, 0.014264161, -0.0039914395, -0.0059655565, 0.01655068, -0.012143813, 0.0064108963, -0.020937609, -0.02641462, 0.00965124, 0.015673295, 0.021097133, 0.011180018, 0.021363007, 0.006626919, -0.036637492, -0.0021419507, -0.029352533, 0.008780502, 0.002319754, -0.0032503144, 0.027517999, -0.023490002, -0.032835487, -0.019501887, 0.0050782007, -0.011219899, 0.03360652, 0.012761971, -0.0003572687, -0.025417592, -0.00528093, 0.016643737, 0.0007569112, 0.0026072308, -0.0035926276, -0.0072051957, -0.0012413011, 0.001206405, -0.05107447, 0.012190341, -0.036398202, -0.007969585, -0.0060852002, 0.025324535, 0.039827984, -0.04110418, 0.0003815713, -0.007929703, 0.019236011, 0.01576635, -0.025577117, -0.012934789, 0.0010352484, 0.03456367, 0.021602293, 0.03230374, -0.005526864, 0.015500477, 0.026746964, 0.011505715, -0.005118082, 0.014383804, -0.00059198594, 0.0011291353, 0.018784026, 0.019900698, 0.029751344, 0.03384581, -0.0014232588, -0.015314365, 0.0075707734, -0.0065704207, -0.015753057, -0.009026435, -0.003961528, -0.014304042, 0.014968728, -0.021456063, 0.0027268743, -0.028501734, 0.007710357, 0.017148899, 0.017707234, 0.023715995, -0.010781206, -0.010448864, -0.037195828, -0.017534416, -0.0056099496, 0.0073780143, -0.011944407, -0.015420714, -0.0123831, -0.0053773094, 0.0051081115, 0.012236869, -0.0044666897, -0.010754619, -0.00070664426, -0.021456063, 0.008541214, -0.01562012, 0.00020864909, -0.0155935325, -0.044826422, 0.006603655, 0.002838209, -0.01972788, -0.012542624, 0.008581096, -0.00872068, -0.025723347, 0.021349713, 0.012855027, -0.035254944, -0.015885994, 0.017893346, 0.031399764, -0.0074178954, 0.03113389, 0.011519008, 0.017773703, -0.026015809, 0.02044574, -0.011186665, 0.0247662, 0.02937912, 0.02480608, -0.0023480032, -0.0054471013, -0.0026504353, 0.00897326, -0.002721889, -0.017813584, 0.02033939, -0.0033898985, -0.01940883, -0.019847523, -0.017281836, -0.020671735, -0.0030209979, -0.00689944, 0.007756885, -0.0004627876, -0.022532854, -0.010455511, -0.0018328716, -0.007896469, -0.00079554605, -0.003089128, -0.025098542, 0.018185807, -0.0018910316, 0.0051812273, 0.023609646, -0.006819678, -0.0056863884, -0.022758847, 0.0038684723, 0.013639356, -0.010914144, -0.010269398, -0.0005188705, -0.013559594, 0.016696911, 0.014157811, -0.0012271765, -0.027278712, -0.011126843, 0.026401326, -0.028049748, -0.017428067, -0.014463567, -0.007843294, -0.00017686878, 0.028102923, -0.0064042495, -0.04195498, -0.019342361, 0.004463366, -0.023955282, 0.0054338076, -0.0077834725, 0.01676338, 0.0015121606, -0.01733501, 0.012236869, -0.03030968, -0.01908978, 9.959904e-05, -0.0005151316, -0.002057203, 0.0138786435, -0.02916642, 0.011751648, -0.0035992744, 0.017029254, -0.007670476, 0.014716147, -0.001095901, -0.009784178, 0.020817965, -0.031612463, -0.024925724, -0.0277307, 0.0030924515, 0.044693485, 0.021495944, 0.008767208, 0.010189636, 0.024726318, -0.015965758, -0.019023312, -0.0024061631, 0.0029395737, -0.006224784, -0.015407421, 0.0065139225, -0.005915705, 0.012190341, -0.045810156, -0.0115123615, 0.010987259, -0.014078049, -0.0072184894, 0.013606122, 0.034935895, -0.018066164, -0.0070921993, -0.02698625, 0.0065903612, -0.011060375, -0.009943702, -0.015540358, -0.005081524, 0.021416182, 0.020831259, 0.001072637, 0.013984993, 0.004995115, 4.4139302e-05, 0.012855027, -0.033792634, -0.0053473986, -0.008155697, -0.021243364, 0.01972788, 0.005716299, 0.006417543, -0.005938969, -0.009411953, -0.044294674, 0.004722594, -0.022386624, 0.0005014225, 0.014556623, -0.014330629, 0.00027439068, -0.002588952, 0.006218137, 0.007876528, -0.022679085, -0.021309832, -0.0009937055, -0.008268693, 0.021070546, 0.0008948335, -0.032463264, 0.0058492366, 0.01701596, -0.002261594, -0.004353693, 0.025364418, -0.015952464, 0.002879752, 0.0064906585, -0.008521274, 0.0028681199, -0.013852056, 0.00131774, -0.036743842, 0.01754771, 0.010568507, 0.008607684, -0.028528322, 0.0058259727, -0.015473889, 0.0044434257, -0.006337781, 0.0002716904, -0.002663729, -0.015234603, -0.0026022457, 0.028581496, 0.009491716, -0.013406716, 0.010003524, 0.00042290645, -0.010648269, -0.0036590963, 0.024580088, -0.007823354, 0.001055189, 0.018066164, -0.021562412, 0.010774559, -0.0025108512, 0.03251644, -0.023463415, 0.008168991, 0.0022416534, -0.029698169, -0.016577268, 0.015008609, 0.0028082982, -0.011027141, 0.010156401, 0.0037255648, -0.0033367237, -0.010628329, -0.016524093, -0.010894203, -0.014676266, 0.034723196, 0.008627624, -0.003835238, -0.0059024114, 0.030283093, 0.031293415, -0.0035593933, 0.010847675, 0.22673768, -0.006789767, 0.028475147, -0.003065864, -0.025404299, 0.005104788, 0.013732412, 0.016417744, 0.015075078, -0.022572735, -0.027996574, -0.015128253, -0.016829848, -0.00066717854, -0.00086159917, -0.016949492, -0.021349713, -0.0054936297, -0.006178256, -0.029246183, -0.008215519, -0.017640766, 0.003001057, 0.0036823603, 0.012476156, 0.013626062, -0.005357369, 0.0070722587, 0.02044574, -0.010163048, -0.0112930145, -0.007258371, -0.014091343, -0.014330629, -0.0009853969, 0.0038651489, -0.0015495492, 0.0048289434, -0.00038780272, -0.009438541, 0.020897727, -0.006580391, 0.018903669, -0.00907961, 0.016351275, 0.009212548, 0.0037621227, -0.009159373, 0.0021485975, 0.0067232987, -0.018823907, -0.0060552894, 0.005556775, 0.022240393, -0.0140115805, 0.0022998136, -0.011519008, 0.029006897, -0.0048289434, -0.01263568, -0.027358474, 0.010428923, 0.010129814, 0.024726318, -0.013307014, -0.0043935743, -0.013626062, 0.017414773, -0.003974822, -0.01043557, -0.0016583916, -0.0069393218, -0.027677523, 0.018823907, -0.0140115805, -0.028873958, 0.013772293, 0.030655317, 0.015168134, 0.030256506, 0.017973108, 0.012688856, 0.01168518, 0.011990935, -0.008009466, -0.026933076, 0.046554606, -0.011226546, -0.019820936, -0.006912734, -0.002349665, -0.012575858, -0.016311394, 0.006002114, -0.015899288, 0.0060552894, 0.015673295, 0.012968023, -0.03631844, 0.0022931667, -0.010349161, 0.04152958, 0.038046625, 0.02548406, -0.0009031421, -0.009112844, 0.008853617, 0.009112844, -0.011146784, -0.018318746, -6.958431e-05, -0.019767761, 0.0022283597, -0.003060879, -0.0031057452, 0.02594934, -0.0021319801, -0.051047884, 0.012117226, -0.009485069, -0.019368948, -0.023117779, -0.0033300768, 0.012236869, -0.008780502, -0.0026687142, -0.0031273474, 0.022918371, 0.0013343571, -0.029724756, 0.03052238, 0.012057403, -0.0018694293, 0.011286368, -0.01252933, -0.027517999, -0.0025789817, -0.015447302, 0.009225842, 0.03448391, 0.00046777274, 0.010236164, 0.018611208, 0.01794652, 0.011538949, 0.0056099496, 0.008036054, 0.0005188705, -0.0097575905, -0.0028963692, -0.023038017, 0.010927438, 0.014397098, -0.029113246, 0.023835639, -0.008707386, -0.018464977, -0.017042547, -0.0019840875, 0.00929231, -0.03310136, 0.009312251, 0.026321564, -0.0073580737, -0.012203635, -0.012575858, -0.16803262, 0.004470013, 0.0109008495, -0.0031805225, 0.0054603955, 0.0038219444, 0.0032785635, -0.02097749, 0.010847675, -0.0064142197, 0.035015658, 0.007982879, -0.005025026, -0.023383653, -0.0072384304, 0.0055534514, -0.029512057, 0.035946216, 0.019820936, -0.0034796312, 0.03599939, -0.013552947, 0.024460444, -0.007723651, -0.03469661, 0.01680326, -0.0037089477, 0.012629033, -0.0054338076, -0.0068063843, -0.0006264665, -0.015686588, 0.003363311, 0.015965758, -0.01854474, -4.842341e-05, -0.034085095, -0.01744136, -0.02630827, 0.035015658, 0.011479126, 0.018810613, -0.019103074, 0.01701596, 0.0073248395, 0.033048186, 0.03062873, -0.012409687, 0.0033732813, 0.0070921993, 0.007856588, -0.024779493, 0.007012437, 0.011319602, -0.017494535, 0.025603704, 0.0072783115, -0.016484212, 0.016789967, -0.0038717957, -0.0004656956, -0.0030342916, 0.013785587, -0.02616204, -0.010528626, -0.029618407, -0.0162981, 0.022080868, -0.036610905, 0.011439245, -0.027677523, 0.0032453293, -0.0054936297, -0.019103074, 0.00310076, 0.009731003, -0.012203635, -0.018823907, -0.0040246737, 0.050835185, 0.011632005, 0.022572735, -0.025563823, 0.0020339391, -0.020817965, -0.0013567902, 0.009252429, 0.038232736, -0.047485165, 0.00041397472, 0.00078640657, -0.005081524, 0.006487335, -0.010880909, 0.006038672, 0.0008715695, 0.036398202, 0.015580239, -0.0101098735, -0.026800139, -0.015992345, -0.0062679886, -0.0041709044, 0.0015470566, 0.023689408, 0.0016799938, -0.00292628, 0.0078300005, 0.02823586, -0.0051679336, -0.011711767, 0.025577117, 0.035866454, -0.0045796866, 0.0028564879, -0.008913439, 0.0017381539, -0.0222271, 0.0047923857, -0.000352699, 0.06939322, 0.01215046, 0.0052044913, -0.00025174982, -0.027225537, -0.02287849, -0.12666255, -0.03655773, 0.023941988, -0.0042440197, 0.00013781848, 0.013134195, 0.007903116, 0.010182989, 0.0047093, 0.018252276, -0.016710205, -0.00355607, -0.017494535, 0.008680799, 0.01551377, 0.0067831203, -0.013945112, -0.0021236716, -0.028900547, 0.029458882, 0.0034596904, -0.020259628, -0.013606122, -0.04078513, -0.004280578, -0.00032860413, -0.015952464, 0.008341809, 0.019329067, -0.00344972, -0.010674857, -0.02101737, 0.0019840875, -0.017521122, -0.0043403995, -0.009591418, -0.029804518, -0.012183694, 0.016111989, -0.031771988, -0.0017514476, -0.00024946497, -0.0015046828, -0.038684722, -0.02029951, -0.004955234, -0.01615187, 0.014131224, 0.033872396, 0.010475451, -0.01322725, -0.03052238, 0.007590714, -0.010382395, 0.015753057, 0.0058326195, 0.01718878, -0.0015570269, -0.021137014, -0.01479591, 0.034164857, -0.0024310888, 0.0016052166, 0.008262047, -0.0009995216, 0.00042103702, -0.022851903, -0.008168991, 0.02759776, -0.01680326, -0.012196988, 0.002052218, 0.0006759025, 0.022958253, -0.019462006, -0.0008549523, -0.024008457, -0.015925877, 0.002308122, -0.0025656878, -0.0037255648, -0.020007048, 0.020179866, 0.009212548, 0.023995163, 0.005217785, 0.014423685, 0.004832267, -0.023144366, -0.02705272, 0.014569917, 0.005806032, 0.000984566, 0.00048688246, -0.0077967662, 0.0064142197, -0.013140841, 0.008747268, -0.005287577, 0.024593381, 0.0067000347, 0.015660001, -0.05096812, 0.017055841, -0.01022287, 0.00050806935, -0.016431037, -0.012030816, -0.007756885, -0.007145374, 0.009279016, 0.011538949, -0.028049748, 0.03685019, 0.008634271, 0.0050283493, -0.044773247, -0.02190805, 0.018079458, 0.0029694845, 0.010156401, -0.010176342, -0.0038983831, -0.0064108963, 0.00884697, -0.015394127, 0.022293568, 0.02531124, -0.014317336, 0.026148746, -0.00030201668, 0.0001482042, 0.016524093, -0.0026487736, -0.0066302423, -0.013579534, 0.004160934, 0.004343723, -0.011106903, 0.032729138, -0.015952464, 0.034643434, -0.015035197, -0.028900547, 0.005420514, -0.035547405, -0.010156401, 0.011060375, -0.015208015, 0.0005263482, 0.011499068, 0.010621682, 0.017095724, 0.00413767, -0.024207864, -0.03113389, 0.00035352985, -0.0017846818, 0.03860496, -0.008288634, -0.009850646, -0.010229517, 0.015713176, 0.011678533, 0.020924315, 0.005304194, 0.01919613, 0.0017065812, -0.032569613, -0.009598065, 0.010262751, -0.013998287, -0.004533158, -0.008474746, 0.018132633, 0.011086962, 0.01157883, -0.004722594, -0.011013847, 0.01718878, 0.005327458, 0.00425399, 0.020219747, -0.0023014753, -0.020897727, 0.009179314, 0.03384581, 0.028767608, -0.01562012, 0.00596888, -0.022532854, 0.008394984, -0.014131224, 0.01379888, 0.0058625303, 0.00027833725, 0.006563774, 0.019594943, -0.006105141, 0.00045489447, 0.0029827782, 0.0066302423, 0.016976079, -0.012044109, 0.009744297, 0.021349713, -0.029086659, 0.0033782665, -0.013692531, -0.019887405, 0.0135463, 0.01744136, -0.00897326, -0.015979052, 0.031851754, 0.013307014, -0.043151412, 0.036690667, 0.0031738756, -0.006517246, -0.03291525, 0.034457322, 0.025351124, -0.0277307, 0.033659697, -0.020259628, 0.026786845, -0.009704415, 0.029246183, -0.01479591, 0.0090131415, 0.008966614, 0.009438541, 0.0053008706, -0.007803413, -0.009219195, -0.02544418, 0.009744297, -0.0031871693, -0.0061815795, -0.019714586, 0.02844856, 0.022812022, -0.0052044913, 0.00367239, -0.014676266, 0.018651089, -0.013034492, 0.004636185, -0.00020584493, -0.014277454, 0.023317184, 0.005669771, 0.034111682, -0.020326097, 0.0001892278, -0.0043869275, -0.008587743, 0.024500325, 0.008767208, 0.01352636, 0.019342361, 0.0030392767, 0.024633262, 0.0038784426, -0.018956844, -0.017414773, 0.011013847, -0.024340801, -0.026547559, -0.005496953, 0.009392013, 0.013945112, -0.010349161, -0.025523942, 0.035733517, 0.0040014097, 0.0073248395, -0.0056332136, 0.0101962825, 0.0051579634, 0.0028182685, 0.019701293, -0.021642175, -0.041901805, -0.007949644, 0.0005209476, 0.0015570269, -0.008993201, -0.017534416]" 14883551,Qbrt – Cross-platform HTML/JS desktop apps using the Firefox Gecko runtime,https://mykzilla.org/2017/03/15/introducing-qbrt/,165,1501371390,92,roryisok,"[-0.00839376, 0.02549374, -0.009892139, -0.010978641, -0.0032541798, 0.013797864, -0.009167804, -0.01802315, -0.01081531, -0.0077688443, 0.014557706, -0.011276896, -0.014515098, 0.013414393, -0.00075895357, -0.009409249, 0.0006488831, -0.009167804, -0.0043282546, -0.0036820343, -0.00543251, -0.009984456, 0.0036997877, -0.01748345, -0.010879222, 0.011205883, 0.020039925, -0.021531202, 0.0036021445, 0.0074918927, 0.015140014, 0.0032790345, -0.02533751, -0.0065935757, -0.006210104, -0.007790148, 0.0005898534, -0.0035524352, -0.011241389, -0.0153246485, 0.004654915, -0.004981576, -0.0023452109, 0.011688773, -0.027695147, 7.872479e-05, 0.004917664, -0.029711923, 0.017909529, 0.0014948278, -0.002270647, 0.025522145, -0.029115412, -0.0002363408, -0.00053082366, -0.005517726, 0.010673284, -0.00930983, 0.02253959, 0.008727523, 0.016915344, 0.018577052, -0.03045046, -0.007875364, 0.025593158, 0.031785507, -0.029825544, -0.0009941848, -0.001603123, -0.02280944, 0.028391078, 0.016389847, -0.004445426, -0.002254669, 0.051669203, -0.016020577, -0.042579513, 0.0013696671, 0.01495538, -0.008095505, -0.0010820637, 0.007278853, -0.03695527, 0.02942787, 0.017242005, 0.013570623, 0.0033021139, 0.015239432, -0.025238091, -0.008727523, 8.477201e-05, -0.005347294, 0.0061674966, 0.026530532, 0.0016164379, 0.012988314, -0.0032186732, 0.023391748, -0.007790148, -0.017043168, 0.0027304576, 0.012434411, -0.026431113, -0.01597797, -0.0007500769, 0.013996702, 0.013840472, -0.003367801, 0.026104452, -0.02130396, -0.014010904, 0.015906956, 0.0023895942, -0.02082107, 0.006632633, -0.0018321406, 0.0024179996, -0.0049993293, -0.005670404, -0.0006484393, 0.02765254, 0.00737117, 0.013151645, -0.013435697, 0.016475063, 0.025351712, -0.008436368, -0.021176137, 0.019883696, -0.034143146, 0.020508612, -0.0026061845, -0.0058514876, -0.0025689024, -0.011234288, 0.0018374665, -0.023093492, 0.008478976, -0.041386493, -0.0039341315, 0.008557091, 0.017014762, 0.015154216, -0.008415064, 0.0013314974, 0.04363051, 0.025962425, 0.022823643, 0.029115412, -0.012995415, 0.004566149, -0.004960272, -0.00064133795, -0.018165177, -0.01366294, 0.015764931, 0.0008166518, 0.009835328, 0.00010873896, -0.012278182, 0.02371841, 0.020508612, 0.00554258, 0.00060538755, 0.018605458, 0.03911407, 0.024741, -0.010090976, 0.020948894, -0.0041294177, -0.015665513, 0.026047641, -0.044795126, 0.024826214, 0.009877936, 0.005091646, -0.01495538, 0.039000448, 0.0004975362, 0.005627796, -0.008862447, 0.003987391, 0.0043495586, 0.046669874, -0.019670656, -0.016986357, 0.005837285, -0.008862447, 0.010197495, 0.0011495262, 0.017682286, 0.007633919, -0.033660255, -0.04593134, -0.5917388, -0.010936033, 0.006977047, -0.034569226, -0.007996086, 0.016574482, 0.023789423, -0.01070879, -0.031274214, 0.031188997, -0.0050738933, 9.370413e-05, 0.028916575, -0.013109037, -0.03610311, -0.011653266, 0.01786692, -0.00019295618, 0.029072804, 0.028646724, -0.030251622, 0.0006826144, -0.033006936, 0.003987391, 0.00839376, 0.013705548, -0.0065438664, -0.0204518, -0.00887665, 0.03286491, -0.046499442, 0.011212984, 0.0056135934, 0.0279792, 0.05794677, -0.015111608, -0.03459763, 0.03357504, -0.0023824929, 0.02834847, -0.016006375, -0.010694588, 0.018974727, -0.017710691, -0.014323362, -0.00382051, 0.048345786, -0.012477019, -0.007321461, 0.007974782, -0.0007016992, -0.0094660595, 0.017412437, 0.013833371, -0.021147732, -0.015523486, 0.01286049, -0.004480933, -0.007278853, -0.008834042, -0.0075345007, 0.016418252, 0.013109037, -0.04434064, -0.01942921, 0.0038382635, -0.0034476907, -0.00812391, -0.00088677736, -0.02539432, 0.029626707, -0.0094660595, -0.006973496, 0.0013465878, 0.017625475, 0.03885842, 0.04039231, -0.02244017, -0.0019368851, 0.0094873635, 0.01522523, -0.010573866, -0.0094447555, -0.0094873635, 0.03695527, -0.014223943, -0.013329177, -0.02549374, 0.03905726, 0.015580296, 0.000114952614, 0.012398905, -0.012455715, 0.0017850943, 0.015182622, 0.033489823, 0.013670041, -0.014223943, -0.006462201, -0.019315591, 0.0027854927, -0.01861966, 0.014081918, -0.0017185195, 0.019869493, 0.010531258, 0.0003987835, 0.005982862, 0.017767502, -0.018250393, -0.049652427, -0.029285844, -0.024144487, -0.020622233, 0.016503468, -0.036017895, 0.01409612, -0.027297474, 0.028973386, -0.03635876, 0.015793335, -0.011937319, 0.009657796, -0.0058088796, 0.009544174, -0.004093911, 0.030336838, -0.017639678, -0.02361899, -0.0009977354, -0.008777232, 0.004346008, -0.0010332421, 0.0032541798, 0.032239992, 0.027723553, 0.013322076, -0.02496824, 0.0005055252, -0.027041826, -0.000877013, -0.020352382, 0.014110323, 0.029399464, -0.003346497, -0.03996623, 0.0049354173, -0.01156805, 0.0094021475, 0.013790763, -0.0038489155, -0.0032470785, 0.010808209, 0.005286933, 0.001043894, 0.00048688424, -0.0007891342, -0.029087007, -0.016347239, -0.019912101, 0.013613231, 0.02222713, -0.0031512107, -0.015921159, 0.0013341604, -0.0020558322, 0.010197495, 0.013258165, -0.0067711086, -0.034228362, -0.0028387527, -0.0025884311, -0.019244578, -0.008088403, 0.021346567, 0.02942787, -0.016290428, 0.008478976, -0.0042110826, -0.007598412, 0.01436597, 0.02560736, -0.0042749946, -0.01786692, 0.025323307, 0.026985016, 0.0023221315, 0.033489823, -0.01651767, 0.020877881, 0.015963767, 0.021176137, -0.02931425, 0.0007123512, -0.002103766, 0.008038694, 0.01861966, 0.03405793, 0.018846903, 0.026246479, 0.007818554, 0.017142586, 0.027666742, -0.014770745, -0.004917664, -0.020125141, 0.027581526, -0.029115412, 0.00088544586, 0.014756543, 0.00559584, -0.012121953, -0.006171047, -0.023476964, -0.013009618, -0.0009418126, -0.0093808435, 0.012903098, 0.0019457616, -0.0049567213, 0.0075131967, -0.007392474, -0.0065651704, -0.0027961447, -0.0036305499, 0.030706108, -0.010204596, 0.01140472, 0.0014025107, -0.033546634, 0.0033287436, 0.008031593, -0.00039390134, -0.005212369, 0.03368866, 0.014728137, 0.016886938, 0.0011255592, 0.024243906, -0.027581526, -0.008301443, 0.0021321713, 0.020579625, 0.008237531, 0.016006375, 0.008961866, 0.027680945, -0.0072220424, -0.020366585, 0.008692016, -0.032524046, 0.015154216, -0.03158667, 0.020508612, 0.01597797, -0.014614517, 0.017540261, 0.004608757, 0.04039231, 0.0142452475, 0.017540261, 0.002765964, -0.017043168, -0.019841088, -0.0035062768, -0.021502797, -0.0016643718, -0.025479537, 0.012519627, -0.0034352636, 0.008869548, -0.0040228977, -0.022894656, -0.009281425, 0.02028137, -2.360634e-05, -0.016901141, 0.010161988, 0.031274214, 0.010701689, -0.013002517, -0.019059943, 0.018960524, -0.013797864, -0.016546076, -0.028802954, 0.0003182279, 0.0030517923, 0.014799151, 0.005954457, -0.00091873325, -0.0075060953, 0.014941177, 0.025167078, -0.018221987, -0.0024339773, 0.020877881, -0.009544174, -0.008883751, -0.018008947, 0.025096064, 0.02238336, -0.031529862, -0.0040584044, 0.016730709, -0.001557852, -0.019031538, -0.033887498, 0.0028689334, 0.018719079, 0.0039341315, -0.017625475, 0.012413107, -0.029882355, 0.0023842682, -0.009920544, -0.022255536, -0.004853752, 0.006962844, 0.0070232055, -0.039625365, -0.010744297, -0.02996757, 0.022496982, 0.051640797, 0.014046411, -0.0035772899, 0.022127712, -0.032154776, -0.0038737701, -0.040363904, -0.026331695, 0.0041010124, -0.027411096, 0.0083653545, 0.0024304267, -0.022496982, -0.004772087, 0.027226461, -0.0063663335, 0.0071474784, -0.01974167, 0.019940507, -0.018932119, 0.0015880327, -0.00032399772, 0.01000576, 0.016063185, 0.037466563, 0.0020203255, 0.015054799, 0.017327221, 0.011333707, 0.0019759422, 0.0057769236, -0.017227802, 0.0074279807, 0.02184366, 0.0040477524, 0.019826885, -0.0016421803, 0.021644823, -0.011426024, -0.0058443863, -0.009075487, 0.012505424, 0.0073782713, -0.004260792, 0.023306532, -0.017937934, 0.0027020522, 0.01102835, -0.01016909, -0.02136077, 0.03877321, 0.009643593, -0.028163835, -0.0049212147, -0.0036678317, 0.0035169288, 0.0027286822, -0.009011575, -0.019244578, -0.062037133, -0.0049673733, -0.012661654, -0.0037317437, 1.7878128e-05, -0.011418923, -0.012881794, 0.008677813, -0.02641691, -0.0025760038, 0.014131627, -0.01528204, -0.044084996, -0.040278688, -0.0019226824, 0.017710691, 0.0036394265, 0.0142665515, 0.03840394, 0.010019963, 0.027723553, 0.007598412, -0.03243883, 0.001557852, -0.03260926, 0.018364014, 0.00021548067, 0.019230375, 0.0009968478, -0.007633919, 0.01286049, 0.0103750285, -0.0066397344, 0.028760346, -0.001388308, 0.0004058848, 0.032637667, 0.014451186, 0.020835273, 0.025167078, -0.007633919, 0.0004369531, -0.004750783, 0.036926866, -0.005911849, 0.013201354, -0.008052897, 0.025422726, -4.022232e-05, -0.0355066, -0.02695661, 0.021062516, -0.017071573, -0.01748345, 0.008045795, 0.024087677, 0.015523486, 0.0037956554, 0.035961084, -0.016119996, -0.0076907296, 0.0067498046, -0.024698392, 0.036443975, 0.02173004, 0.0043708626, 0.015338851, -0.012761072, 0.003529356, -0.020181952, 0.011816597, 0.01447249, 0.018633863, -0.021090921, -0.0328081, 0.00013259496, -0.015679715, -0.013066429, -0.003330519, 0.0009879711, 0.009814024, -0.036926866, 0.010794006, 0.0002334559, 0.023533775, -0.010630676, -0.030251622, 0.013201354, 0.0016404049, -0.0047436818, 0.0042110826, -0.018974727, 0.01059517, -0.029072804, -0.030024381, -0.0134641025, -0.039852608, 0.01474234, -0.022340752, 0.006881179, 0.0204518, 0.030904945, 0.01979848, 0.019145159, 0.004008695, 0.005276281, -0.010034165, -0.02199989, 0.006874078, -0.013854675, 0.0042856466, -0.010737196, 0.009856632, -0.024925632, -0.015097407, -0.019145159, 0.013137442, -0.007875364, -0.0013394865, -0.017313018, -0.057236638, -0.023690004, 0.027538918, -0.022085106, 0.0029150918, -0.018335609, 0.016063185, 0.03760859, 0.027027624, 0.031188997, 0.034711253, 0.013627433, -0.008741725, 0.018591255, -0.00812391, 0.035052117, 0.0007540714, -0.0011655041, -0.016446657, 0.00076783024, -0.014926975, 0.026530532, 0.009785619, 0.01210775, 0.0155376885, -0.012384702, 0.023974055, -0.0037423957, -0.026473721, -0.005336642, 0.006327276, 0.0002716255, -0.043715727, 0.015296243, -0.015864348, -0.017128384, -0.0014681979, 0.0046265097, -0.0034636687, 0.008244633, -0.0037104397, -0.0048999107, 0.0038027568, 0.03195594, 0.014515098, 0.0046513644, 0.010907628, -0.0029896556, -0.005933153, -0.011333707, 0.008180721, -0.00040100268, 0.032580856, 0.034711253, 0.02060803, -0.035705436, 0.02931425, -0.011724279, -0.047351602, -0.04434064, 0.0062917694, -0.0044631795, -0.010694588, -0.051328342, 0.0035613119, -0.031103782, 0.019557035, -0.030081192, 0.016063185, 0.012952807, 0.009941848, -0.02776616, 0.024258109, -0.01328657, 0.020110939, 0.015040596, 0.021346567, 0.0016989908, 0.016475063, -0.027879782, 0.0071474784, 0.023235518, 0.0004571475, -0.022014093, -0.019926304, 0.03718251, 0.017398234, -0.010765601, -0.025081862, 0.0016696978, 0.04428383, -0.011347909, 0.011845002, -0.0043531093, -0.011923117, 0.0014486692, 0.021502797, -0.003998043, -0.011710077, -0.00833695, 0.011575151, 0.010687486, 0.012597742, -0.029513085, -0.010467346, -0.0038418141, 0.006153294, -0.045363232, -0.019159362, -0.0056526507, -0.040250283, -0.007839858, -0.011369213, 0.004541294, 0.02157381, 0.010794006, 0.0074634873, -0.0041791266, 0.014983785, -0.02028137, 0.009352438, 0.010680385, 0.013946992, -0.023732612, -0.016020577, -0.00672495, -0.01700056, 0.006043223, -0.029740328, -0.020892084, -0.04502237, -0.006820818, 0.019315591, 0.03275129, -0.008528685, 0.028930778, 0.010090976, 0.016659698, -0.017242005, -0.0042323866, -0.0053082365, 0.0008157641, 0.005617144, 0.017355626, -0.0017611274, -0.015764931, -0.021801053, -0.0033482723, 0.022610603, -0.0104815485, -0.024741, 0.015963767, -0.0028281007, -0.017838515, -0.022269739, -0.012363398, -0.014685529, -0.012768174, 0.005400554, -0.0025848805, -0.01727041, 0.0073285624, 0.0047330298, -0.013875979, 0.015793335, -0.006451549, -0.004676219, -0.017568666, -0.00704806, -0.043346457, -0.0268998, -0.008301443, 0.024726797, 0.034995306, -0.046130173, -0.022241333, -0.021545405, -0.048516218, 0.028930778, -0.0144582875, 0.0029701272, 0.017327221, -0.012327892, 0.018889511, 0.026459519, 0.007161681, 0.008734624, -0.025380118, -0.008258835, 0.013215557, -0.0038418141, 0.008443469, 0.0024606073, -0.027411096, 0.005265629, 0.0014797376, 0.0047152764, 0.013613231, 0.03593268, -0.007861162, 0.0056562014, -0.014408578, 0.006788862, 0.0024677087, 0.009281425, 0.019997317, -0.039568555, -0.02265321, 0.013109037, -0.013705548, -0.011788191, -0.025152875, 0.02867513, -0.024755202, -0.010957337, -0.026061844, -0.019102551, 0.01215746, -0.006874078, 0.022894656, -0.0066787913, 0.00392703, 0.005574536, -0.013322076, -0.009537073, -0.0018356912, 0.02039499, -0.014799151, -0.0032453032, -0.0017833189, -0.029456275, 0.011589354, -0.0033109905, 0.007790148, 0.006810166, -0.0010394558, -0.0011930218, -0.019187767, -0.03243883, -0.005311787, 0.027155448, 0.021005705, -0.020863678, 0.00050596904, -0.019216172, -0.01974167, -0.018889511, -0.0073995753, -0.030904945, 0.0188327, 0.003465444, -0.0134427985, -0.05459495, 0.0096791, 0.025806196, 0.007889567, 0.0059580076, 0.21872066, 0.006316624, 0.028802954, 0.02641691, -0.0037921048, -0.0019972462, -0.0009613412, 0.0015782684, 0.0038666688, 0.026218073, -0.0020221008, 0.013577724, -0.026544735, 0.0009924094, 0.003696237, -0.00016710293, -0.021829458, -0.011830799, -0.019613845, 0.023448559, 0.018761687, -0.014813353, -0.0016546076, 0.0043992675, 0.016418252, 0.010836614, -0.01065198, 0.009025778, 0.026345897, 0.0107585, -0.01624782, 0.0036926863, -0.010424738, 0.009068386, 0.01624782, 0.013229759, 0.035591815, -0.0018427925, 0.00063601194, 0.02350537, 0.0114118215, -0.010872121, 0.012271081, -0.031927533, -0.0057982276, 0.013996702, 0.008791435, -0.003449466, 0.0070871175, -0.0011903588, -0.04007985, 0.030081192, 0.05675375, -0.0015161318, -0.010282711, -0.011212984, -0.018349811, -0.008954764, 0.027794566, 0.024669986, -0.014174235, 0.019599643, -0.024187095, 0.041074034, -0.01248412, 0.019343996, -0.011518341, 0.02807862, 0.029200628, -0.00037170973, -0.018690674, 0.000104910905, 0.003076647, 0.0023913695, 0.018307203, -0.029711923, -0.004115215, 0.014238146, 0.063627824, 0.008777232, 0.0143730715, 0.016602887, 0.005418307, -0.02136077, -0.014238146, -0.012043838, 0.026871394, -0.01285339, -0.014536402, -0.02599083, 0.0041187657, -0.011589354, -0.007811452, -0.0154098645, 0.0024517307, -0.0019013784, -0.019684859, 0.0209773, -0.005901197, -0.0039128275, -0.033773877, 0.050589804, 0.030535676, -0.0073995753, 0.002485462, 0.014855961, -0.016347239, 0.022639008, 0.021247149, -4.0527455e-05, -0.0133788865, -0.01727041, 0.01409612, -0.014238146, 0.022667414, 0.015026393, -0.012192966, -0.02157381, 0.006600677, -0.0133149745, -0.00607873, -0.030422054, -0.007119073, -0.0032737085, -0.026885597, -0.0143730715, 0.0016989908, -0.0030837483, -0.016489265, -0.0062598134, -0.0145435035, 0.0012720239, 0.0093382355, -0.007825655, 0.0107585, -0.009096791, 0.00020982181, -0.021928877, -0.01942921, 0.022127712, -0.011078059, 0.01582174, 0.0048786066, -0.015637107, -0.0039909417, -0.018520242, -0.002093114, 0.0134001905, -0.006643285, -0.012583539, -0.020409193, 0.0056348974, -0.018264595, -0.015310446, 0.012718464, -0.007268201, -0.009032879, -0.033205774, -0.0020292022, -0.0075487033, -0.050532993, -0.02296567, 0.017114181, -0.008251734, -0.012022534, -0.009693302, -0.1817938, 0.018221987, 0.03530776, -0.01661709, 0.0021499246, 0.0025866558, 0.02570678, -0.016574482, -0.01108516, 0.0012737992, 0.008010289, -0.026715165, -0.033319395, -0.015026393, -0.0033269683, -0.012654552, -0.009018676, 0.016205212, 0.05729345, 0.018491838, 0.018051555, -0.023817828, 0.010360826, -0.0005028622, 0.019940507, 0.0023576382, -0.010495751, -0.018335609, 0.004417021, -0.038489155, -0.00019506438, -0.01570812, 4.9931157e-05, 0.009643593, 0.02726907, -0.006032571, 0.008919258, 0.00989924, 0.006277567, 0.019301388, 0.026942408, 0.034398794, 0.0039909417, -0.0031512107, 0.0039838403, 0.0360463, -0.001054546, -0.0041223164, -0.0018055106, 0.019116754, -0.0040442017, -0.014728137, -0.021460189, -0.0076907296, 0.016475063, -0.01543827, -0.015083204, 0.016262023, -0.0032701578, -0.029342653, -0.0076836282, -0.03647238, 0.0103324205, -0.012086446, -0.008301443, -0.014401477, -0.009565478, -0.011830799, -0.020877881, -0.005102298, -0.012895997, -0.011007046, 0.0051307036, 0.0029204178, 0.006920236, 0.0041187657, -0.003749497, 0.026246479, 0.025919817, 0.034995306, 0.016830128, 0.022184523, 0.007655223, 0.0056988094, -0.0056206947, 0.026601546, 0.0058443863, 0.0021108673, -0.021247149, -0.0045164395, 0.0022262638, -0.017085776, 0.00893346, -0.02726907, 0.017838515, -0.00037614803, 0.027808769, 0.013123239, 0.0032914618, -0.029030196, 0.022156117, -0.018790092, -0.016290428, -0.024741, 0.051583987, 0.0016989908, -0.016105793, 0.022724224, 0.025834601, 0.020934692, -0.05067502, 0.0065403157, 0.007090668, 0.03303534, -0.0027180302, 0.017170992, 0.025536347, 0.007839858, -0.015083204, -0.031501457, 0.039142475, 0.009096791, -0.013208455, 0.010261407, 0.009075487, -0.043289647, -0.10884903, 0.00023412165, 0.0040477524, 0.01748345, -0.012114852, 0.03519414, -0.0010305791, 0.03093335, 0.007541602, 0.030620892, -0.01742664, -0.007182985, 0.007030307, 0.018591255, -0.018747484, 0.030336838, 0.021772647, -0.02217032, -0.0061248885, 0.01979848, -0.019031538, -0.02948468, -0.018662268, 0.01823619, 0.0003277703, -0.0011743808, 0.006298871, -0.0068243686, -0.0052088182, 0.00021681217, 0.004970924, -0.0020505062, 0.013172949, -0.028064417, -0.018662268, -0.0166739, -0.022340752, -0.01904574, 0.03417155, -0.009892139, -0.0242155, -0.008557091, 0.022994075, 6.0139304e-05, -0.0114757335, -0.0030216116, -0.026445316, 0.014784948, 0.018946322, -0.016957952, -0.008287241, 0.0105667645, -0.0113905175, -0.027141245, 0.014671327, -0.008699117, 0.005301135, 0.022454374, -0.04169895, -0.004502237, 0.009182007, -0.012647451, 0.017497653, 0.0018143873, 0.0036784837, 0.0015400988, -0.019059943, -0.021048313, -0.003941233, -0.014529301, -0.00012993197, 0.027013421, -0.008798535, 0.0011255592, -0.018349811, -0.015750729, -0.0020327528, -0.019315591, 0.016134199, -0.00209844, -0.024144487, -0.0067746593, 0.0094873635, 0.010474447, 0.00823043, 0.009941848, 0.01027561, 0.021460189, -0.013854675, -0.04993648, 0.006171047, 0.023860436, -0.020082533, -0.0263601, -0.0104815485, -0.007026756, 0.009877936, -0.020480206, 0.01624782, 0.021701634, -0.022014093, -0.02716965, -0.06788862, 0.0046265097, 0.009835328, -0.03405793, -0.01582174, -0.0052833823, 0.009245919, -0.022212928, 0.0059153996, -0.012526728, -0.04567569, 0.006966395, -0.039199285, -0.021659026, -0.030848134, 0.0020469555, 0.02506766, -0.027127042, 0.016744912, 0.007896667, 0.008862447, -0.01786692, -0.006405391, 0.012256878, -0.012690059, 0.0057378667, -0.0040761577, 0.020096736, -0.002545823, -0.023974055, 0.014110323, -0.00031578683, -0.0095086675, -0.0022351404, -0.0029665765, 0.026104452, -0.014103222, 0.022710022, 9.298291e-05, 0.036926866, -0.031103782, -0.01587855, -0.0014628719, -0.011532543, -0.003410409, -0.012789478, 0.009224615, -0.007697831, 0.011639063, 0.012782376, 0.020522814, 0.0069166855, -0.0073285624, -0.040193472, -0.023121897, -0.026970813, -0.006945091, 0.01528204, -0.014003803, -0.01661709, 0.04422702, 0.034143146, 0.0016910018, -0.0085144825, 0.019315591, -0.020963097, -0.030620892, -0.014067715, 0.039256096, -0.022283942, -0.03652919, -0.027510514, 0.034228362, -0.00090231147, 0.02356218, -0.030706108, -0.026502127, -0.019812683, -0.03363185, 0.011880509, 0.0105241565, -0.021602215, -0.02410188, 0.0011930218, 0.029569896, 0.013890182, -0.015551891, -0.0057556196, -0.011788191, 0.02695661, -0.008990271, 0.00747769, 0.022525387, 0.017256208, -0.0014087243, -0.007083567, 0.020679044, 0.0188327, 0.011426024, 0.0048892586, 0.0011956848, -0.002238691, 0.01027561, -0.0025546998, 0.013393089, 0.019471819, -0.027723553, -0.013847574, -0.0014939402, -0.003351823, 0.0038240608, -0.0047152764, 0.010978641, 0.018321406, -0.011816597, 0.012526728, 0.0025049907, -0.0317571, -0.016318833, 0.025905615, 0.021161934, -0.0012143257, 0.021644823, -0.021744242, 0.0268998, -0.013904384, 0.032211587, -0.015395662, 0.00022513403, -0.027780363, 0.021957282, 0.009182007, -0.010048368, -0.029371059, -0.0023203562, -0.0036891357, -0.005965109, -0.010176191, 0.0052940343, 0.09850951, 0.044738315, -0.015381459, 0.0067498046, 0.0046407124, 0.0033589243, -0.0047046244, 0.041670546, -0.0041791266, -0.029371059, 0.026842989, -0.006153294, 0.025465334, -0.00893346, -0.019230375, 0.00392703, -0.020309774, 0.0010820637, -0.00026829675, 0.0062172054, 0.043062404, 0.019755872, 0.01355642, 0.0166739, -0.032410424, -0.0032204485, 0.009799821, 0.015551891, -0.02055122, -0.024840416, 0.029087007, -0.008862447, -0.035364572, -0.024939835, 0.008642307, 0.011305301, 0.00034663317, -0.0038489155, 0.024982443, 0.009693302, 0.0073782713, -0.002861832, -0.01904574, -0.0069699455, 0.018946322, 0.00030713208, 0.006274016, 0.0005783137, -0.038943637]" 33049231,Rammstein Get Restraining Order Blocking Viagogo from Reselling Concert Tickets,https://consequence.net/2022/10/rammstein-block-resell-concert-tickets/,205,1664652152,263,nabilhat,"[-0.030862154, -0.028604595, -0.0057069752, -0.028657714, -0.008817758, 0.016705934, -0.03821914, -0.035642866, -0.027940607, -0.02727662, 0.021911599, -0.010517567, 0.021659283, -0.026771989, 0.0076093003, 0.011965061, 0.037847307, -0.021539764, 0.004807272, -0.010504288, 0.0154177975, 0.0032419206, -0.00018612409, 0.009554785, -0.008127211, 0.017648796, 0.01908301, -0.0039075683, 0.001968724, 0.018658059, -0.01689185, 0.0027372898, -0.013047361, 0.0091298325, -0.026838388, -0.008499044, -0.0023023777, -0.007821777, 0.023730924, -0.01802063, 0.013704709, 0.005288663, 0.025297936, -0.025364336, -0.0056936955, 0.028073406, -0.01581619, 0.0037150118, -0.03256196, 0.020623462, 0.043929435, 0.01851198, -0.027940607, 0.015019405, 0.00055318483, -0.021460086, 0.015895868, 0.03046376, 0.0027688292, -0.014913167, -0.01307392, -0.0024268755, -0.025922084, -0.007848336, 0.0070714704, -0.006115328, -0.031844854, -0.007250747, -0.01199162, -0.01851198, 0.02897643, 0.0045416765, -0.016573137, -0.02727662, 0.007861616, -0.026944626, -0.009601264, -0.0051558656, 0.030729357, -0.008366247, 0.023319252, -0.018976772, -0.026041603, 0.02727662, 0.025961924, -0.0072374674, -0.010657004, 0.0072175474, -0.004398919, 0.0021098212, 0.0027953887, 0.020862497, -0.02614784, -0.00925599, -0.008233449, 0.011951781, -0.031738617, 0.015550595, -0.018299505, -0.0065635196, 0.020092271, -0.00051998545, -0.017250404, -0.011486989, -0.009607904, -0.021287449, -0.009109913, 0.0024052958, -0.013319596, -0.017263683, 0.0015587114, 0.017675355, 0.012708727, -0.03657245, 0.029879453, 0.0026791908, 0.046054196, -0.01147371, 0.0027389498, -0.062043022, 0.015550595, 0.035271034, 0.033491544, -0.010803082, 0.015988827, -0.008426005, -0.015218601, -0.021101533, 0.008094012, -0.0027173702, 0.009727421, 0.0042395624, -0.0043557603, 0.0037150118, 0.0067361565, 0.03388994, -0.0066099986, 0.018272946, -0.034128975, -0.011613147, 0.017276963, 0.012609129, -0.024089478, -0.017861273, -0.006878914, 0.029799774, -0.013233277, 0.008937276, 0.0061186478, 0.0065203602, 0.0050363475, -0.037847307, -0.02396996, -0.022827901, 0.023784043, 0.008034253, -0.016134905, 0.020464106, -0.0044321185, -0.021353848, -0.015311559, 0.019547801, 0.007921374, 0.0044985176, 0.024341794, 0.02674543, 0.014567893, -0.0058530527, -0.0014250838, -0.030755917, 0.027409418, 0.0039540473, -0.024487872, -0.0015960607, 0.0032369406, 0.028445238, -0.009939898, -0.0038046502, -0.01582947, -0.014554613, -0.007795217, 0.010564046, 0.0164005, 0.03495232, -0.03001225, 0.023558289, 0.033677462, 0.017290242, -0.0020052432, -0.028551476, -0.0002944371, 0.003930808, -0.008884157, -0.01740976, -0.63870317, -0.0020318027, 0.024965942, 0.021991277, 0.022549026, 0.015311559, 0.014448375, 0.007735458, -0.024408191, 0.026944626, 0.006918753, 0.0039075683, -0.012688807, -0.018658059, 0.0014624331, -0.012854804, -0.005242184, -0.009229431, 0.0014624331, 0.02179208, 0.010564046, 0.009534865, 0.009508305, 0.005394901, 0.010696844, 0.0068390747, 0.012861444, 0.0049666287, 0.010265252, 0.011101876, -0.006590079, 0.019587642, -0.0022841182, 0.013877345, 0.055668738, -0.0052787033, -0.0055841375, 0.025908805, 0.01199826, 0.037953544, -0.019202529, -0.011095236, 0.018272946, -0.0061252876, 0.019614201, -0.0073769046, 0.021991277, -0.007576101, -0.0057036555, -0.0038013302, -0.018923653, 0.020796098, -0.005657176, 0.017728474, 0.020742979, 0.007861616, 0.0028169684, -0.0074366634, 0.008426005, 0.02455427, -0.029188905, 0.0043955995, 0.025364336, -0.023332532, 0.005617337, 0.009076714, 0.01147371, 0.0018558459, 0.00070590206, -0.020862497, -0.009860219, 0.03999863, -0.024859704, -0.017595677, 0.020530503, 0.027077423, 0.01146043, -0.0023936762, -0.024926104, 0.022323271, -0.034288332, -1.3146829e-06, -0.0154177975, 0.0007548712, 0.028046846, 0.0072042677, -0.014926447, -0.014753809, 0.0020102232, 0.016785612, -0.0063543636, 0.048683587, -0.017011369, -0.008439285, -0.0048172316, 0.0008573743, -0.01035157, 0.02887019, 0.0029016268, -0.005079507, -0.014820208, -0.0057468144, 0.0137179885, -0.0037714508, 0.0034228573, 0.03543039, -0.04039702, -0.0049400693, 0.032402605, -0.0036120939, -0.00380797, 0.0062448056, -0.008970476, -0.025271377, -0.0051392657, -0.024793305, 0.012370093, 0.022442788, -0.010066056, -0.024394913, 0.001363665, -0.022456069, 0.030198166, 0.02015867, 0.005245504, 0.013704709, -0.001416784, -0.010099255, -0.033571225, 0.001304736, -0.0071577886, -0.022137353, 0.021871759, -0.024222275, 0.030224726, 0.035085116, 0.014275738, -0.0064705615, 0.00982702, -0.008518964, -0.026519673, -0.008452565, 0.0021579603, -0.031871416, -0.031685498, -0.018219827, -0.012170897, 0.028737392, 0.0005722745, 0.015696673, -0.009076714, 0.015192041, 0.014448375, 0.0016832091, 0.013525432, -0.0010051116, 0.0013404255, -0.034075856, -0.02727662, -0.017184004, 0.032376047, -0.0033929779, -0.036970843, -0.027914047, -0.015497476, -0.028551476, 0.029002989, 0.008711521, -0.010278531, -0.008240089, 0.004697714, -0.010703484, 0.0025198339, 0.02839212, -0.00095033256, -0.012761846, 0.011659626, 0.009747341, 0.014674131, 0.005650536, -0.0036452932, -0.019614201, -0.0034029377, 0.012907923, 0.011520188, 0.03808634, 0.0077819373, 0.030171607, -0.032854117, 0.035058558, -0.003867729, 0.016759053, -0.018326065, -0.0024766745, -0.03163238, -0.016612975, 0.010205492, 0.0063012443, -0.010690204, 0.026559513, -0.0044420785, 0.016214583, 0.019136129, -0.01310048, -0.010039496, -0.0035822142, 0.0058198534, -0.014381976, 0.029481059, 0.009023595, 0.012648968, -0.023770764, -0.024766745, -0.014514774, -0.007416744, 0.024886264, 0.003595494, 0.012270495, 0.0012026479, 0.008034253, 0.0066299182, -0.018299505, 0.04645259, 0.008034253, -0.01747616, 0.00041208745, 0.011905301, 0.017091047, 0.0020019233, -0.018963492, -0.027595334, 0.025311215, 0.009468466, 0.014674131, 0.03598814, -0.009548144, 0.0131336795, -0.015537315, 0.032349486, -0.011566668, 0.022562306, 0.013319596, 0.023584848, -0.0053882613, 0.01524516, -0.0046678344, 0.0037515312, 0.022110794, -0.016998088, 0.018432302, 0.00057891436, 0.03495232, -0.012217376, -0.017396482, 0.013903905, -0.01581619, 0.01802063, -0.01142723, 0.00982702, 0.0070581906, 0.0010491008, 0.011759224, 0.02780781, -0.026254078, 0.0011528488, 0.019335326, 0.020942176, -0.004531717, -0.0024600748, 0.01578963, -0.0059692506, -0.00492347, -0.0074366634, 0.017051207, 0.018897094, -0.018658059, -0.026041603, -0.0072308276, -0.008518964, 0.024514431, -0.025736168, -0.03373058, 0.016041946, 0.007569461, -0.0065236804, -0.015670113, 0.018233106, -0.03107463, -0.021712402, -0.001475713, 0.008797838, 0.018724456, -0.012761846, 0.00016983564, 0.008379526, -0.0010814702, 0.029534178, -0.0092028715, -0.00978718, 0.009289189, 0.015484196, 0.012502891, -0.0052089845, -0.027223501, 0.046426028, -0.003485936, -0.024633948, -0.035828784, -0.009375508, 0.023053657, 0.00543142, 0.008485764, -0.032960355, -0.017569117, -0.00875136, 9.482576e-05, -0.016214583, 0.00036685326, -0.0060256897, 0.0007843356, 0.0022044396, -0.019401724, -0.016812172, -0.024872983, 0.11016886, -0.007038271, -0.0001445211, 0.008206889, -0.02017195, -0.03322595, -0.009176312, -0.040051747, -0.0011893682, 0.007522982, -0.0034427769, -0.007881535, 0.014355416, 0.02565649, 0.019202529, 0.001039141, 0.02126089, 0.021221051, 0.0020982015, -0.0106835645, -0.0011246294, 0.0065104007, -0.014036703, 0.041618757, 0.05343774, -0.032296367, 0.03434145, 0.019521242, -0.0057966136, -0.017237123, -0.0024750147, -0.0123103345, -0.0020816019, 0.021619443, -0.014554613, 0.016533297, 0.00709139, -0.017276963, 0.0052322242, 0.011633066, 0.015431077, 0.018830694, 0.017396482, -0.0039108885, -0.0047209533, -0.028259322, -0.009607904, 0.02452771, 0.013273116, -0.013890625, -0.005245504, -0.007702259, -0.030065369, -0.016493458, -0.01694497, -0.00598585, -0.00089638354, -0.0072905864, -0.041300043, 0.0022658585, 0.015484196, -0.045629244, 0.004803952, 0.010437888, -0.011878742, -0.02134057, -0.019786837, -0.0038909686, -0.018219827, -0.00822017, 0.033013474, -0.015630273, -0.036864605, 0.009554785, 0.008837678, -0.008844318, 0.012224016, 0.027648453, 0.01910957, -0.007755378, -0.0031390025, -0.027409418, -0.0092759095, -0.00818033, -0.026121281, 0.0133527955, 0.0051923846, 0.0037382515, -0.005175785, 0.037156757, 0.02402308, -0.0017164085, 0.018126868, 0.0060754884, 0.013917184, 0.0053152223, 0.025457293, 0.010816362, 0.008485764, -0.004083525, -0.0022592186, -0.00045441667, -0.010431249, 0.010789802, 0.012994242, 0.01090268, -0.0041632038, -0.0049832286, 0.030702798, 0.012396652, 0.0077288183, 0.015869308, -0.013346155, -0.008113931, 0.008286568, -0.028046846, -0.003044384, 0.0083264075, 0.026904786, -0.0023007179, 0.0025463933, -0.018445581, 0.03774107, 0.0030344243, -0.0055874577, -0.0039507276, -0.008339687, -0.03590846, -0.0067759957, 0.003436137, 0.004959989, 0.036413092, 0.00923607, 0.0057534543, -0.010125814, -0.02456755, -0.007815137, 0.0043424806, -0.028099965, 0.001749608, -0.00816041, -0.016480178, -0.0036818124, -0.0026310517, -0.010590605, -0.02023835, -0.01795423, -0.012589209, -0.026493113, 0.023359092, -0.016241143, 0.009222791, -0.003960687, 0.0045615966, -0.0045649162, -0.044991814, -0.010491008, -0.01693169, 0.0037515312, 0.021619443, 0.004624675, 0.0054214606, -0.016028667, -0.005783334, 0.0009428627, -0.0042362423, -0.011128436, 0.029374821, -0.01253609, -0.010052776, -0.0014358737, 0.010544127, 0.00871816, 0.0014541333, -0.0051591853, -0.008465845, -0.0032552003, 0.012768486, -0.015404518, -0.010809721, 0.03867065, -0.004681114, -0.013266477, 0.00709139, -0.023173176, -0.005650536, 0.020304747, -0.011765864, 0.0041698436, 0.008950556, 0.0038511294, -0.030277845, 0.029321702, 0.008485764, 0.011706105, 0.0174496, 0.01255601, -0.008890797, -0.009196231, -0.0023505169, 0.012157617, -0.017011369, -0.025178418, -0.018419022, -0.011480349, 0.009860219, 0.002290758, -0.019932915, 0.009641103, -0.0028501677, -0.009322389, -0.004594796, -0.0058563724, -0.014514774, -0.008870877, -0.004203043, 0.0053816214, -0.0030825634, -0.049267896, -0.0010598906, -0.005829813, -0.026254078, 0.012463052, 0.0065303203, 0.017104326, 0.0035158156, -0.0030742637, -0.00436572, -0.01908301, 0.0012665568, -0.011852182, -0.0019836635, 0.027648453, -0.018365903, -0.032508843, 0.009388788, 0.023159895, -0.03829882, -0.020942176, 0.020782819, -0.006204966, 0.014860047, -0.0011918581, -0.017635517, -0.014966286, 0.013478952, -0.018392462, 0.023159895, 0.011301072, -0.043238886, -0.01581619, 0.02727662, -0.012648968, 0.0063975225, 0.0027688292, -0.013273116, -0.0045615966, -0.0059692506, -0.021911599, -0.00042121726, 0.0022758183, 0.0102453325, 0.005408181, 0.012157617, 0.023186455, 0.0014391936, -0.0036718526, -0.018711178, -0.0049666287, 0.019773558, -0.0064207623, -0.015045964, -0.003009525, -0.007874896, -0.019029891, 0.008837678, -0.004143284, -0.0106835645, 0.0069851517, -0.020384425, 0.00017886172, 0.0054745795, -0.017051207, 0.0025314535, -0.012396652, -0.038378496, -0.016971529, -0.01964076, 0.011792424, 0.0024434752, -0.0021928197, 0.018140147, -0.0039341277, 0.030782476, -0.027117264, 0.0069386726, -0.00036145837, 0.0024451353, -0.048710145, 0.014806928, 0.022469347, 0.021327289, -0.00020687371, 0.00053160527, 0.021008575, -0.017024647, 0.006384243, -0.0008648441, -0.0067826356, 0.015138922, -0.0031639019, 0.0014491534, 0.0035622946, -0.034474246, 0.014342137, 0.013983583, 0.013093839, -0.025550252, -0.0110487575, 0.00762922, -0.01689185, 0.011035478, -0.002461735, -0.032986917, -0.010935879, 0.02559009, 0.027568774, -0.0043458003, -0.005135946, -0.03434145, 0.010417969, 0.035111677, -0.01906973, -0.012648968, -0.020264909, 0.010444528, -0.007901455, -0.0010731703, -0.005650536, -0.000435327, 0.010119175, 0.052109763, 0.031499583, 0.016705934, -0.015510756, 0.0048637106, 0.02134057, -0.014541334, -0.02889675, -0.024806585, -0.032774437, 0.027993727, -0.015842749, 0.004847111, -0.03165894, 0.019800117, -0.030623117, 0.030729357, -0.001472393, 0.01419606, 0.017037928, -0.010099255, -0.010145734, 0.019322045, -0.00059800403, 0.034155533, 0.00875136, -0.005129306, 0.003651933, 0.018644778, -0.013047361, 0.02839212, -0.04581516, -0.0025397534, 0.030649677, 0.01306728, 0.013731268, 0.024740186, -0.017157445, -0.019255647, 0.028604595, 0.0099531775, 0.003334879, -0.0117990635, 0.036917724, -0.017276963, -0.0037780907, -0.009966457, -0.0012242276, -0.020928897, 0.023226295, 0.028498357, -0.013485593, 0.00055318483, 0.00089057366, -0.012416572, 0.018870534, -0.03226981, 0.036784925, 0.013173519, -0.004309281, 0.0042926813, 0.028020287, -0.027542215, 0.009747341, 0.009289189, 0.012363453, 0.0010831301, 0.0074433037, -0.008897437, -0.0007386865, 0.0052322242, 0.030277845, -0.008399446, 0.020344587, -0.018259665, 0.013996864, -0.010092615, 0.012044739, 0.00050587574, 0.013312955, -0.010444528, -0.031552702, 0.0026825108, 0.01644034, -0.025231536, 0.0047707525, -0.027568774, -0.0138640655, 0.0074433037, -0.005033028, -0.026373597, -0.0032419206, -0.025829127, -0.02337237, -0.005511099, 0.18878502, -0.005550938, -0.025178418, 0.021513205, 0.0028983068, -0.019255647, 0.023146616, -0.0013802646, -0.0014931426, -0.023784043, -0.030755917, 0.014275738, -0.007941294, -0.0048271916, 0.0078084967, -0.02294742, -0.031977654, -0.020995295, -0.00925599, 0.017316801, -0.003924168, -0.005836453, -0.00014524734, -0.0046379548, 0.020251628, -0.0038312096, 0.0018110268, 0.025576811, 0.017316801, 0.003482616, 0.005786654, 0.001415124, -0.023505168, 0.0031971014, -0.015895868, -0.0055940975, -0.0029132466, 0.017356642, 0.0038013302, 0.0128216045, 0.028312441, 0.023053657, 0.02237639, -0.017648796, 0.0013014161, 0.021526486, -0.005663816, 0.0021529805, 0.012263855, -0.009979737, -0.036147498, -0.00095531245, 0.0020766219, 0.033996176, 0.0039872467, -0.03327907, -0.0013902246, 0.0059194514, -0.046638504, 0.012715367, -0.02732974, -0.012868084, 0.011732665, 0.026479835, -0.00599249, 0.0022060995, -0.011261233, 0.013166878, -0.011334272, 0.007131229, -0.0036286935, -0.03261508, -0.018551819, -0.010597246, -0.012828245, -0.025497133, 0.0071644285, 0.010524207, 0.017184004, 0.02897643, -0.015324838, -0.0066863573, 0.017330082, -0.0053085824, -0.0008299848, -0.018087028, 0.026227519, 0.024713626, 0.015922427, -0.0025447332, 0.006779316, -0.028259322, -0.0020650022, -0.012801685, 0.036625568, -0.002894987, 0.022509187, 0.005823173, -0.0017778274, -0.0023355773, -0.008877517, 0.039918948, 0.02118121, 0.0009968117, -0.010769882, 0.008193609, 0.019175969, 0.033040036, -0.020570343, -0.0069320328, -0.00047060137, -0.014860047, 0.006480521, -0.015895868, 0.0044453987, 0.0029182264, -0.013246557, -0.00081421505, 0.0049832286, -0.0005357552, 0.0016524997, -0.0038577693, 0.0141695, -0.0074964226, -0.006317844, -0.012316974, -0.030198166, 0.01685201, -0.00036208087, -0.0014425135, 0.016533297, 0.0019322046, 0.030569999, -0.019853236, -0.010517567, 0.008811118, 0.020450825, -0.018551819, 0.015165482, -0.0014134641, 0.008392806, 0.018166706, -0.005570858, 0.014461655, 0.019322045, 0.007576101, -0.0064141224, 0.007197628, -0.025337776, -0.039839268, 0.0006689677, -0.015099083, -0.007748738, -0.013146959, 0.014899887, -0.0053152223, -0.050941147, -0.032535404, 0.02071642, 0.015178761, -0.011141716, -0.016798891, 0.009010315, -0.02678527, -0.019282207, -0.009448547, -0.16774988, 0.017741755, 0.027117264, 0.002896647, 0.01576307, -0.022124074, -0.0007905605, -0.0060290094, -0.023890281, 0.01634738, 0.040742293, -0.0120381, -0.018206546, -0.026944626, 0.016586415, -0.013419194, 0.020503944, 0.040450137, 0.03553663, 0.015975546, 0.04485902, -0.02560337, 0.016453618, -0.0090567935, -0.010776523, -0.00982702, 0.0033033395, 0.0037282917, 0.0033083193, -0.00051708054, -0.010291811, 0.01853854, 0.027728131, 0.020822657, -0.022137353, -0.0033863378, 0.009402067, -0.015404518, -0.017303523, 0.022203753, 0.025165139, -0.0016441998, -0.010749963, 0.0011096896, 0.012084578, 0.029906012, 0.015630273, 0.008426005, 0.0021646002, -0.035111677, 0.00873808, -0.0071511487, -0.010052776, 0.022681825, -0.0001855016, 0.0040602856, 0.016639534, -0.021991277, -0.013970303, -0.022097515, -0.0074499436, -0.022734944, 0.016174743, -0.008306487, -0.015948987, -0.04400911, -0.012947762, 0.004531717, -0.02292086, 0.0083264075, 0.0008399446, 0.005401541, 0.0023654567, -0.023000538, 0.016134905, 0.015019405, -0.02565649, 0.0015313219, -0.0033332189, -0.0024202357, -0.011719385, 0.024753466, -0.0020434225, 0.007569461, -0.010842921, 0.003920848, 0.011613147, -0.0075893807, -0.01253609, 0.0207297, 0.028445238, -0.01307392, -0.002989605, -0.004189763, 0.021646002, -0.014342137, 0.015842749, 0.031552702, -0.027356299, -0.023173176, 0.014116381, -0.0053816214, -0.039228402, 0.015324838, 0.003927488, -0.00598917, 0.014023423, 0.015510756, 0.01035157, -0.020995295, -0.025271377, 0.017383201, 0.021061694, -0.01088276, -0.008060812, 0.00012263026, 0.034102414, -0.022442788, 0.005321862, 0.0009868519, 0.055403143, -0.013485593, 0.007536262, 0.011593227, -0.021699121, -0.028710833, -0.10018248, -0.029534178, 0.00601905, 0.0029680256, -0.036067817, 0.0058530527, 0.0039407676, 0.03157926, 0.01795423, 0.010796442, 0.0054778997, -0.004740873, -0.021738961, -0.009415347, 0.027515655, -0.0042760815, -0.008379526, -0.0120181795, -0.024859704, 0.029560737, -0.003167222, 0.00163839, 0.02780781, -0.015643554, -0.019282207, -0.013366075, -0.013877345, -0.0047176336, 0.0125294505, 0.025815846, -0.030171607, -0.000817535, 0.020251628, -0.0059161317, 0.008226809, -0.023744205, -0.015643554, -0.013213358, 0.011560028, -0.040131424, -0.004518437, 0.017423041, -0.01036485, -0.023903562, -0.0076491395, -0.00926927, -0.026559513, 0.011148356, 0.044779338, -0.0012931162, 0.0071644285, -0.03973303, -0.0155638745, -0.005657176, 0.058749642, 0.0056870556, 0.020278187, 0.043955993, -0.039573673, -0.004588156, 0.0024700346, 0.0008494894, -0.012834884, 0.019906355, -0.0055774976, 0.013565271, 0.0072773066, -0.023677805, 0.01366487, -0.013744548, 0.019561082, -0.009382148, -0.005574178, -0.0101722935, -0.010178933, 0.012702087, -0.015603714, -0.024288675, 0.009468466, -0.014899887, -0.005398221, -0.012582569, 0.021088254, 0.008392806, 0.025802568, -0.0044819177, 0.009475106, 0.008997035, 0.006812515, -0.047382172, -0.010524207, 0.024474591, 0.01691841, 0.017144166, -0.0015387918, 0.015059244, -0.01746288, -0.019468123, -0.013824226, 0.025882246, -0.03646621, 0.0034062576, -0.05056931, 0.020304747, 0.014142941, -0.010371489, 0.0067261965, 0.0137179885, 0.032030772, -0.007051551, 0.021141373, -0.0058596926, -0.01957436, 0.01685201, 0.0028070086, 0.0056438963, -0.041857794, -0.020278187, 0.019972753, 0.007144509, -0.002888347, -0.0029696855, 0.00046064155, -0.002665911, -0.012157617, 0.004037046, 0.0046379548, -0.0018890454, -0.01851198, 0.031897973, -0.009680943, 1.45636395e-05, 0.013273116, -0.018060468, -0.02126089, -0.011838903, -0.017290242, -0.023332532, -0.028046846, 0.0056007374, -0.0047076736, 0.018485421, 0.0031273826, -0.027130542, 0.004647915, -0.025324496, 0.010730043, -0.004302641, -0.0011785784, 0.007410104, 0.030729357, 0.0009910018, -0.0014433435, 0.0056306166, -0.01747616, -0.013850786, -0.0065867594, 0.0076756994, 0.006158487, -0.0021712403, 0.002504894, 0.012449772, 0.04634635, 0.008990395, 0.008592002, -0.014235899, 0.007582741, -0.008605282, -0.021367129, -0.014607732, 0.008930637, -0.011480349, -0.008445925, -0.009481746, -0.007483143, 0.019720439, 0.0029066068, 0.013014161, 0.016546577, 0.0056339367, -0.016785612, 0.02614784, -0.010630445, -0.01472725, -0.04092821, 0.017582398, 0.017330082, 0.019415004, -0.024155878, 0.019335326, -0.014142941, 0.017688636, -0.037236437, 0.014328857, -0.008260009, -0.016214583, -0.0037415714, 0.02404964, -0.017489439, 0.01418278, 0.046240114, 0.011506909, 0.023584848, 0.012516171, -0.017184004, -0.018684618, 0.006865634, 0.013372715, 0.011380752, -0.014953006, 0.006341084, 0.03657245, 0.0064672413, -0.011878742, -0.003867729, -0.0074565834, -0.014820208, 0.013890625, 0.0050463076, -0.013412554, -0.02011883, 0.0369974, 0.023080217, 0.012290414, 3.1286536e-06, -0.007861616, -0.00011816908, -0.025815846, 0.0050396677, -0.026479835, 0.008538883, -0.015670113, -0.015882589, -0.0024833144, -0.028471798, -0.009866859, -0.032960355, -0.009634463, -0.0026858307, 0.004618035, -0.01901661, 0.059918262, 0.0077752974, 0.02342549, 0.029082667, 0.0063377637, 0.025404174, -0.0044819177, 0.01254937, -0.010431249, -0.024833145, 0.007516342, -0.002496594, 0.03171206, -0.006417442, -0.014528054, 0.010630445, -0.023186455, 0.018843975, -0.021606164, 0.011320992, 0.021579605, -0.023903562, 0.020610182, 0.0025912125, 0.00025314535, -0.009481746, 0.0103914095, -0.0038610892, -0.017130885, 0.0004635465, 0.0027920688, -0.0057102954, -0.016174743, -0.020477384, -0.011699465, -0.01847214, -0.009016954, 0.012350174, -0.012489611, 0.006271365, -0.005833133, 0.023558289, -0.024952663, -0.03434145, -0.009003675, -0.0071577886, -0.0025181738, -0.003983927, -0.015537315]" 17896973,The Performance Cost of CORS Requests on Single-Page Applications,https://medium.com/@ankur_anand/the-terrible-performance-cost-of-cors-api-on-the-single-page-application-spa-6fcf71e50147,120,1535895838,70,ankuranand,"[0.015428225, 0.0075716353, 0.021710781, 0.0060383114, -0.0011253988, 0.012191961, 0.01033976, -0.009118528, -0.020218166, -0.031670604, 0.038075283, 0.0012941662, -0.011900223, 0.0019098703, 0.008290805, -0.00066574075, 0.033407465, -0.016160963, 0.011533853, -0.00935599, -0.023569768, -0.0059094033, -0.01764001, 0.021425828, -0.012449777, 0.0079515735, 0.012775438, -0.03490008, -0.016011702, -0.024275368, 0.0010982603, -0.018494872, -0.017626442, -0.004599972, 0.008731805, 0.009071036, -0.004250564, -0.024180384, 0.0057872804, -0.01835918, 0.006397896, -0.015726747, 0.0067846193, -0.01907835, 0.007965143, 0.008087266, -8.4966756e-05, -0.025116662, -0.0052716495, 0.017802842, 0.038021006, 0.012253023, -0.030639341, -0.011520283, 0.010950375, -0.009837698, -0.02210429, 0.03316322, 0.03614845, -0.017395765, 0.016296655, 0.032756142, -0.010102298, -0.0026561785, -0.025238784, -0.020272443, 0.018522011, 0.004633895, 0.0036772636, -0.016486624, 0.03831953, 0.035768513, -0.013107885, -0.010550084, 0.01925475, -0.012694023, -0.027925493, -0.012076623, 0.0061502573, -0.011330314, 0.0021541168, -0.015428225, -0.024003983, 0.050938923, 0.022552075, -0.014383393, 0.030612202, 0.00917959, -0.0032515288, 0.010075159, 0.02318983, 0.00793122, 0.018155642, 0.0033872211, 0.004810295, 0.00820939, -0.006102765, 0.011717037, -0.019159766, -0.011479576, -0.018969797, 0.020177457, -0.03614845, -0.013894901, -0.03248476, -0.0027477709, 0.011072499, -0.004952772, 0.02477743, -0.011635622, -0.013650654, 0.022524936, 0.021507243, -0.0066014347, -0.011832376, -0.00044100027, -0.010448314, -0.026962077, -0.010007313, -0.0046712104, 0.0042539565, 0.023746168, 0.01568604, -0.0065641194, 0.02871251, -0.0064386036, -0.014396963, 0.005268257, 0.023054136, -0.00979699, 0.01891552, -0.014329116, 0.0010592487, -0.009695221, 0.010916453, -0.0052275495, -0.019444719, 0.0004948532, -0.021588659, -0.056827974, 0.03150777, 0.024343215, 0.009254221, -0.0012339527, 0.014505516, 0.02816974, 0.021330843, -0.005509111, -0.0023729207, 0.0031277095, -0.0032684903, -0.0059501114, -0.0047254874, -0.01641878, 0.008406144, 0.029879464, -0.014329116, 0.023420505, 0.0076734046, -0.0030038902, 0.026934939, 0.031643465, 0.007110281, -0.017382195, 0.00037485023, 0.0263786, 0.0068083657, -0.008053343, 0.008406144, -0.0026103824, -0.0056821187, 0.01426127, -0.013772777, 0.0017945318, 0.008331513, 0.021656506, 0.0076055583, 0.013080746, -0.012829715, -0.022158567, -0.017490748, -0.0016249163, 0.023664752, 0.03243048, -0.018155642, 0.002016728, 0.021235859, 0.017870687, -0.0143155465, -0.011126776, -0.00017056958, 0.020204596, 0.0040741637, -0.022592783, -0.6226652, 0.0025883324, 0.009858052, -0.02032672, 0.010570437, 0.016676594, 0.02762697, 0.014274839, -0.008229744, 0.03907941, -0.019906074, 0.017477179, 0.0016562953, -0.013094315, -0.015943855, -0.022904875, 0.0061604343, -0.022959152, 0.00044778487, 0.002749467, -0.0029648787, 0.011343883, -0.018766258, 0.015238255, -0.010651852, -0.009858052, 0.010977514, -0.013664223, -0.0027155438, 0.005319142, -0.025591584, 0.010075159, 0.017545026, 0.004087733, 0.050477568, 0.0131553775, 0.004844218, 0.029933741, 0.027667677, 0.06111585, -0.01907835, 0.022050014, 0.015808163, 0.011432083, -0.0030496863, 0.0026917977, 0.016106686, -0.00051647914, 0.007096712, -9.265246e-05, 0.002662963, -0.016961548, -0.017585734, 0.0049934797, -0.041114792, -0.015903147, 0.024519615, -0.015767455, 0.021100167, 0.023230536, -0.0044642794, 0.020923765, -0.026649985, -0.02207715, 0.004677995, -0.0028342747, 0.0098309135, -0.017707856, -0.02156152, 0.0027732132, 0.027844079, 0.00039647619, -0.013297854, -0.020245304, 0.0049934797, 0.015346809, 0.030937864, -0.015455363, -0.009403482, 0.018237056, 0.015468932, 0.00820939, -0.033733126, -0.028739648, 0.040870547, 0.008480774, -0.03118211, 0.005749965, 0.030042294, -0.010204067, 0.019471858, 0.0035144328, -0.018440595, -0.02977091, 0.020543827, 0.025673, -0.012076623, 0.010299052, 0.015319671, -0.037993867, -0.017070102, 0.0040232795, 0.0049866955, 0.023678321, 0.068931736, -0.019526135, 0.0023763129, -0.0045219488, 0.03354316, -0.036609806, 0.0036569098, -0.0010159968, -0.01800638, -0.012795792, 0.01624238, -0.02120872, 0.008514698, -0.024546754, -0.00801942, -0.010794329, 0.0013331777, -0.0061536497, 0.008575759, -0.0011593219, 0.0051020337, -0.015645333, 0.0004096214, -0.02386829, 0.021832906, -0.015658902, 0.013962747, -0.008141544, -0.007809097, -0.013040039, 0.04046347, -0.0021727744, -0.009640944, 0.014383393, 0.015563917, -0.03248476, -0.017355056, -0.016554471, -0.009729144, 0.00854862, -0.020842351, -0.016975118, -0.04149473, -0.014112009, 0.009552744, 0.019756813, 0.016432349, -0.0032447441, 0.008894636, 0.009199944, -0.025157368, 0.011282822, 0.01872555, -0.042308886, -0.0031718095, -0.009199944, -0.012178392, 0.01837275, -0.00038163483, 0.0063266577, -0.024628168, -0.013596377, -0.0074766506, 0.008331513, -0.004192895, -0.03641984, 0.0066014347, -0.028983895, -0.003999533, -0.002016728, -0.0061706114, 0.013867762, -0.029119587, 0.017911395, 0.013202869, -0.01533324, -0.0021117127, -0.0024136284, -0.008630035, -0.0258494, -0.0017996203, 0.012639746, 0.013962747, 0.02370546, -0.0040232795, 0.0060756267, 0.01675801, 0.0055192877, -0.01709724, 0.017436473, -0.026405739, 0.00400971, -0.0016376375, 0.038075283, -0.022674197, 0.018481303, 0.012721161, -0.00775482, 0.009566314, -0.008161897, 0.012843285, -0.019797519, -0.0042878794, -0.026351461, 0.024492476, -0.014139147, 0.013684577, -0.00423021, -0.014193424, -0.0395679, -0.015278962, 0.008989621, 0.007612343, -0.0013289374, -0.030883588, 0.019716104, 0.0036229868, 0.012266592, 0.02636503, -0.0014968567, -0.003319375, 0.0019760204, 0.012388715, 0.0031175327, 0.0014578451, -0.018427026, -0.026704261, 0.0021303706, -0.010081944, -0.010550084, 0.025795123, 0.030530788, 0.020638812, -0.027898354, 0.03408593, -0.04814366, 0.032566175, 0.005410734, 0.002442463, -0.009023543, 0.004677995, 0.020991612, 0.04472421, 0.011832376, -0.008677528, 0.0254966, -0.016852995, -0.012965407, 0.007734466, -0.013182515, 0.0011194622, -0.0011771314, -0.00031590884, 0.015916716, 0.03191485, 0.014559793, 0.013460685, -0.004162364, 0.04277024, -0.029092448, 0.015468932, 0.017680718, -0.010400821, -0.019091919, -0.008528267, -0.0037620715, -0.020299582, -0.018779827, -0.00011915488, 0.008501128, 0.0018708588, 0.010855391, 0.0083450815, 0.016310224, 0.031290665, 0.03677264, -0.031073557, -0.020788074, 0.016201671, 0.006825327, -0.009342421, -0.017178657, -0.009607021, -0.0027867823, 0.012090192, 0.020394566, 0.012090192, 0.009593451, -0.0066523193, -0.015753886, -0.017395765, 0.013589593, 0.038238116, 0.0105093755, 0.0062147113, -0.0040470255, 0.01907835, -0.0033329444, -0.017422903, -0.004257349, 0.04673246, 0.0097223595, -0.0002476386, -0.031969126, -0.027789801, -0.021765059, -0.001708876, -0.041114792, -0.017395765, 0.0011576257, 0.016310224, -0.022443522, -0.022429952, -0.0043862564, 0.027694816, 0.0067303423, -9.323551e-05, -0.020068904, 0.0029173864, 0.012883992, 0.0434487, 0.0038570561, -0.013827055, 0.011337099, -0.023135552, -0.009396698, -0.013175731, -0.027070632, 0.025347339, -0.02282346, -0.012361577, -0.0022304435, 0.0026476977, 0.0023288205, 0.030937864, 0.009125313, 0.013447115, -0.012890777, 0.0029445249, 4.688278e-05, -0.0008552861, -0.012409069, 0.008433281, 0.04510415, 0.012877207, 0.023610476, -0.005159703, 0.009837698, -0.012816146, -0.024166815, 0.0133657, -0.0074223736, 0.0050986414, -0.006167219, 0.0030208519, 0.03207768, 0.018684842, -0.0013331777, -0.01624238, -0.010997868, -0.0051902337, 0.014125577, -0.014396963, 0.022579214, 0.0079515735, -0.0044778488, -0.003918118, 0.00970879, 0.0012526104, 0.0063809347, 0.00970879, 0.017300779, -0.026880663, -0.010746837, 0.004471064, -0.011092853, 0.009261006, -0.0038197406, -0.025184507, -0.021154443, -0.010801114, -0.0073206043, -0.019865366, 0.0058992268, -0.013148593, -9.901304e-05, -0.0066421423, -0.008222959, 0.015577486, -0.001840328, 0.0064759194, -0.02336623, -0.012232669, 0.022050014, 0.023976846, 0.033081803, 0.0028325785, -0.0034601558, 0.0038977638, 0.01132353, -0.014546224, -0.020584535, -0.006889781, -0.04917492, 0.007992282, 0.009891975, 0.013250362, 0.0019929819, -0.043041624, 0.0008044014, -0.0052546877, 0.025198076, -0.0012195354, -0.0010134525, 0.013521747, 0.011533853, 0.010414391, 0.034113068, 0.004925634, -0.03224051, 0.0005847494, -0.0102244215, -0.0019505781, -0.007876943, 0.016337363, -0.014899024, 0.00900319, -0.009098175, 0.011778099, -0.023135552, 0.018793397, -0.00819582, 0.015523209, 0.009932683, -0.00962059, 0.009654514, -0.0062350654, 0.03707116, -0.0051325643, 0.0055294647, 0.0011389679, -0.023651183, 0.01498044, 0.0022474052, -0.030693619, 0.004688172, -0.022796322, -0.0057160417, -0.015143271, -0.0069304886, -0.0003078521, 0.01677158, -0.013922039, -0.029201003, -0.010482237, -0.010889314, 0.0068219346, -0.0067880116, -0.01675801, -0.0023152514, -0.012687238, -0.012911131, -0.009776637, 0.0013755816, 0.011242114, -0.033108942, 0.0012322565, -0.0056990804, -0.024316076, 0.014193424, -0.023569768, 0.00378921, -0.025700139, -0.005417519, -0.030367956, -0.017653579, -0.021249428, -0.025564445, 0.032566175, 0.02157509, 0.013745639, -0.008765728, 0.014342685, 0.006781227, -0.011425299, -0.013704931, -0.007829451, -0.022945583, -0.0095459595, -0.005363242, 0.01659518, 0.015306101, -0.01622881, 0.0012127507, -0.003823133, 0.03156205, -0.0048577874, -0.00044863296, -0.009478114, -0.0260258, 0.014383393, 0.023746168, -0.026080078, -0.011174268, -0.018304903, -0.011934145, 0.01675801, -0.01819635, 0.02299986, -0.021982167, 0.036664084, -0.009769852, 0.03452014, 0.012035915, -3.328704e-05, -0.011615268, -0.013637085, -0.010475452, -0.0017690895, 0.013209654, 0.014695486, 0.011167483, 0.016975118, 0.0011661064, 0.006781227, 0.037152577, -0.01095716, -0.019987488, -0.004898495, -0.0065335883, -0.007218835, -0.03565996, -0.013148593, -0.02157509, -0.001401872, -0.005444657, 0.0057431804, 0.021480106, -0.02816974, -0.020258874, 0.0003689137, -0.0031701133, 0.011662761, -0.00058220513, 0.030883588, 0.0058551263, 0.0006496273, -0.026527861, -0.028196879, 0.008962482, -0.009674868, 0.02352906, 0.0128365, -0.0269078, -0.012531192, -0.005946719, -0.017436473, -0.004545695, -0.029255278, 0.037016883, 0.0039282944, 0.015346809, -0.023257675, -0.007734466, -0.009023543, 0.043204457, -0.0089556975, 0.009491683, 0.00021837994, -0.02139869, -0.037396822, 0.031616326, -0.0017673933, 0.009986959, -0.0040673795, 0.009166021, 0.001916655, -0.021127304, -0.014098439, -0.010536514, 0.022742044, 0.034275897, 0.00027138478, 0.016975118, 0.02458746, 0.036962606, -0.0030208519, 0.0017555202, 0.016188102, 0.03259331, -0.0008663111, 0.0009651121, 0.014586932, -0.027477708, 0.00092186016, -0.017965673, -0.0040368484, -0.021520812, -0.02781694, -0.015075425, 0.037342545, 0.0073341737, -0.038590916, -0.01149993, -0.012334438, -0.01745004, -0.016106686, -0.020136751, 0.02282346, 0.0061604343, -0.03101928, -0.014098439, -0.0068422887, 0.03688119, 0.0065539423, -0.020760935, -0.0031735057, 0.021480106, -0.02583583, 0.018114934, 0.00374511, 0.0017826587, -0.02335266, 0.024913123, -0.0073206043, -0.033027526, 0.019132627, -0.01726007, -0.031344943, 0.004372687, 0.025388045, 0.012348007, 0.006408073, -0.006944058, 0.030286541, -0.0051189954, -0.009145667, -0.0088471435, -0.015577486, -0.00067082926, -0.039350793, -0.018318472, 0.015088993, -0.03316322, -0.0087385895, -0.0063334424, 0.017205795, 0.011805238, 0.0011092853, -0.012877207, 0.015563917, 0.0017385588, -0.02922814, 0.007591989, -0.0068219346, -0.023434075, -0.03259331, -0.014274839, 0.0026392168, -0.009864837, -0.003779033, -0.016486624, 0.0030310287, 0.014546224, -0.013725285, -0.004830649, -0.023963276, -0.0057906727, -0.020448843, -0.014831178, -0.0068592504, 0.02226712, 0.03210482, -0.034303036, -0.021168012, -0.0048917104, -0.051264584, 0.0011092853, 0.0015180586, 0.015251825, 0.039296515, 0.00854862, 0.019946782, 0.017504318, 0.009213513, 0.0126736695, -0.03636556, -0.005461619, -0.006540373, -0.0009277967, 0.015251825, 0.0066760653, -0.02833257, -0.033814542, 0.002484867, -0.011309961, 0.005532857, 0.03226765, 0.017897826, -0.010889314, -0.022144997, -0.006143473, 0.0029275632, -0.010231206, 0.0101158675, -0.033977374, 0.009552744, 0.023963276, -0.0030496863, -0.003867233, 0.016852995, 0.0032243903, -0.015536779, -0.035225745, -0.00042340264, -0.015984563, 0.015767455, -0.031073557, 0.015821733, 0.02689423, 0.0071713426, 0.01426127, -0.0010143006, 0.015482501, 0.00838579, -0.004589795, 0.0076530506, 0.0015986259, 0.014152716, 0.00096426404, 0.017165087, -0.007150989, 0.014899024, -0.0055803494, -0.021018751, -0.022212844, 0.003989356, -0.005926365, 0.014573363, -0.010638284, -0.0074834353, 0.014057731, 0.028251154, -0.0049561644, -0.023963276, 0.00020512873, -0.012103761, -0.023841152, 0.0012195354, -0.00646235, -0.025998661, -0.030747894, 0.0041793254, 0.012246238, 0.008379005, -0.0010753622, 0.22123288, 0.0024441592, -0.0056448034, 0.020665951, -0.008087266, -0.016676594, 0.0072798966, 0.0069813733, -0.05278434, 0.03831953, -0.0003188771, 0.010977514, -0.008406144, -0.0034262328, 0.030585064, -0.003066648, -0.02816974, -0.031290665, -0.0099191135, 0.0013357219, 0.0076937582, 0.0017656971, -0.010828253, 0.005115603, 0.038048144, 0.019811088, -0.0045117717, 0.010536514, 0.003724756, 0.009118528, 0.009871622, 0.00061188784, 0.0015986259, 0.025808692, -0.0048476104, 0.006058665, 0.040192086, -0.00646235, 0.00387741, 0.0153875165, 0.008189036, -0.006045096, 0.0029988019, -0.009593451, 0.027369155, 0.0055498187, -0.008277236, -0.0029275632, 0.0134539, 0.024356784, -0.026785677, 0.013793131, 0.016907271, -0.0064793117, -0.0036026328, 0.00455248, 0.011384591, 0.02139869, -0.014152716, 0.022701336, -0.028929617, 0.013182515, -0.002123586, 0.019648258, -0.0071781273, 0.03354316, 0.0108146835, -0.010048022, 0.011594915, -0.0039282944, -0.012483699, 0.0052309413, 0.015061855, 0.015129701, 0.014532655, -0.011106422, 0.012951839, 0.0018759472, 0.04776372, 0.017585734, -0.03283756, 0.007558066, 0.0021897359, 0.007218835, -0.003887587, -0.022864167, 0.034655835, -0.005363242, -0.018250626, -0.0065369806, 0.0020523474, -0.0037010098, -0.0063164807, -0.0063945036, -0.010244776, -0.010305837, 0.013168946, 0.0058653033, -0.0069745886, -0.022226414, -0.0154960705, 0.041440457, -0.0059195803, 0.027192755, -0.016988687, -0.0071713426, -0.013182515, 0.031344943, 0.0031243172, -0.0025510169, -0.001238193, -0.013976316, -0.0018267587, -0.0006581081, 0.0048510027, 0.030177986, -0.009559529, -0.028766787, 0.015645333, -0.0011957892, -0.02175149, -0.010068376, 0.015278962, -0.0013136719, 0.0063029113, -0.0034262328, -0.03831953, -0.015088993, -0.0017453433, -0.016961548, 0.020665951, -0.024438199, 0.008046559, 0.021317273, -0.010984299, -0.018942658, 0.009735929, -0.033081803, 0.0041555795, -0.002990321, 0.012001991, -0.016269518, 0.03153491, 0.01044153, 0.010000529, -0.0026544824, -0.015428225, 0.023379799, -0.0074020196, -0.008752159, -0.0033448173, -0.012259807, -0.00414201, -0.008589328, 0.030612202, 0.0025900286, 0.015088993, 0.0023389976, 0.017490748, -0.0072120503, -0.025238784, 0.026351461, -0.004447318, 0.031589188, -0.008752159, -0.024031121, -0.17184085, 0.028142601, 0.010991083, -0.015740316, 0.0036772636, 0.0019980704, 0.013501393, -0.010991083, 0.010014098, -0.020543827, 0.018440595, 0.0036874407, -0.01656804, -0.022117859, -0.01113356, 0.006486096, -0.019132627, 0.025089523, 0.03316322, 0.004983303, 0.02175149, -0.01728721, 0.03509005, -0.028196879, -0.00014406715, 0.004501595, -0.01603884, 0.017083671, -0.013508177, -0.024370354, 0.0027783017, 0.017843548, 0.022918444, 0.0025985092, 0.0014756548, 0.0059976038, -0.007022081, 0.0066523193, -0.0060654497, 0.031941988, 0.035958484, 0.017531456, -0.003132798, -0.0083654355, -0.0069745886, 0.017721426, 0.010563652, 0.0020913589, 0.024763862, 0.0037552868, -0.0013263931, -0.0032193018, 0.0073952354, 0.017558595, -0.009471329, 0.007076358, -0.008772513, 0.031046418, 0.017422903, -0.009980175, -0.004535518, -0.022036444, 0.004952772, -0.0073409583, 0.0020540436, -0.010570437, 0.0045287334, 0.03422162, -0.038753744, 0.016540902, -0.0048069027, 0.032159097, -0.010326191, -0.017124379, 0.0039690025, 0.03655553, -0.0070152963, 0.007096712, -0.00396561, -0.009172806, -0.0064691347, -0.016323794, -0.013711716, -0.0016045625, -0.033678852, 0.03511719, 0.009640944, -0.0058856574, 0.019539705, 0.004108087, 0.02568657, -0.034682974, -0.014166285, -0.013304639, 0.00014618735, 0.0052173724, 0.016676594, 0.013528531, 0.014071301, -0.015984563, -0.018603425, -0.018047087, -0.008555405, -0.022253552, 0.005936542, 0.019458288, 0.0075648506, 0.00757842, 0.02618863, -0.0367455, -0.016500194, 0.0057092574, 0.016093118, 0.01622881, -0.013352131, 0.031589188, 0.038943715, 0.0012475218, 0.0035008637, -0.0069949427, 0.047899414, -0.013243577, 0.0022779359, 0.016378071, -0.014234131, -0.020475982, -0.1151757, -0.022809891, 0.043231595, 0.007469866, -0.010122652, 0.01835918, -0.003989356, 0.030015156, -0.017843548, 0.028142601, -0.025944384, -0.013216439, 0.005193626, -0.00919316, -0.0027630362, -0.022579214, -0.0021269782, -0.016554471, -0.019987488, 0.012137684, -0.016988687, -0.026772108, -0.017734995, -0.011248899, -0.030747894, 0.014586932, -0.003636556, 0.0002913146, -0.0051868414, -0.0024373746, 0.013962747, -0.0051630954, 0.014966871, -0.019566841, 0.010678991, -0.017626442, -0.0015689433, -0.03348888, 0.040273502, 0.017192226, -0.002301682, 0.024478907, 0.0070356503, -0.027016355, 0.0015647028, -0.0069372733, -0.021778628, 0.049147785, 0.0024441592, -0.019173335, -0.0096341595, 0.008602898, -0.01533324, -0.023027, 0.004121656, -0.008535051, -0.0030988748, -0.0037858177, -0.021168012, 0.008521482, -0.017056534, -0.0143155465, 0.0057431804, 0.0029292593, 0.020991612, 0.0050138338, 0.0053598494, -0.008948913, 0.01220553, 0.0011237026, -0.00900319, -0.0037518945, -0.01426127, 0.003952041, -0.043285873, -0.032756142, -0.018820534, -0.008324728, 0.0049324185, 0.0036297713, -0.0065573347, -0.017599303, -0.020435274, -0.028549679, 0.010590791, 0.016717302, 0.028983895, 0.013514962, 0.00014215898, -0.031317804, -0.0021201936, 0.028386848, 0.0127483, 0.003449979, -0.019105488, -0.017341487, 0.022850597, -0.019634688, -0.017422903, 0.045266982, -0.002881767, -0.0128365, -0.036094174, 0.005380203, -0.0015876009, 0.016961548, 0.006933881, -0.03313608, 0.010848606, -0.0034686367, -0.002155813, 0.033298913, -0.012721161, 0.004589795, -0.0144241005, 0.00080228125, -0.026229339, -0.009166021, 0.012992546, -0.0059535033, -0.0073138196, 0.006187573, -0.0034805099, 0.008921774, 0.027735524, -0.011662761, -0.0110114375, 0.03047651, -0.03544285, 0.0156046245, 0.015713178, -0.014912593, 0.016269518, -0.027586263, -0.015618194, 0.019621119, -0.0154960705, 0.0116898995, -0.0037417177, 0.013691362, 0.02656857, 0.021995736, -0.025767984, -0.057533573, -0.025645861, -0.008046559, -0.02282346, 0.020611674, -0.027355585, 0.0044676717, -0.0011203103, 0.0074630813, 0.032756142, 0.0012941662, -0.018996933, -0.016337363, -0.014057731, -0.03066648, 0.015672471, 0.008501128, -0.013514962, -0.037288267, 0.06290699, 0.029418109, -0.0056990804, -0.03172488, 0.017151518, 0.0029089055, -0.045891166, 0.018454164, -0.014668347, -0.008175466, -0.011805238, -0.020557396, -0.0014315547, 0.02816974, 0.026582139, -0.011113207, -0.008609682, -0.0034245367, -0.00041089352, 0.017816411, 0.0017300779, -0.008440066, -0.01709724, 0.021615798, -0.00659465, -0.0010787544, 7.9613266e-05, 0.013643869, -0.028061185, 0.024478907, -0.011825591, 0.0009820736, 0.00011979094, 0.025455892, 0.016608749, -0.014342685, -0.004739057, -0.0050884644, 0.03511719, -0.013650654, 0.035198607, -0.009735929, 0.011845945, -0.020964473, -0.035334297, 0.0079515735, -0.0441543, -0.03354316, 0.011520283, -0.0073952354, -0.004874749, -0.01818278, -0.00058771763, 0.0089353435, -0.006004388, 0.01924118, 0.013392839, -0.022348536, -0.02088306, -0.015129701, 0.0019251357, 0.015658902, 0.013318208, -0.02139869, 0.02405826, 0.003494079, 0.023298383, -0.02922814, 0.021982167, -0.014274839, 0.04116907, -0.0058686957, -0.014139147, -0.00023958187, -0.027477708, -0.041087653, 0.014939732, 0.02351549, 0.00044524064, 0.07805026, 0.027491277, 0.011113207, -0.019892504, -0.0019997666, 0.004881534, -0.018752689, 0.016147394, -0.005363242, -0.030259402, 0.03316322, 0.018861242, -0.01185273, -0.023732599, -0.017192226, 0.0254966, -0.021262998, -0.010109083, 0.012639746, -0.004515164, 0.040219225, -0.015021147, -0.0036501253, -0.012096976, -0.018427026, 0.0052275495, 0.02835971, 0.0015197548, -0.021480106, -0.023800446, 0.002344086, 0.018250626, -0.042281747, -0.03443873, 0.009858052, 0.011825591, 0.0013340258, -0.020150319, 0.0058008498, 0.0013162162, 0.011031792, 0.010387252, -0.019173335, -0.009430621, -0.0012907739, 0.003405879, 0.007503789, -0.0029496134, -0.025930814]" 28038856,Dollar stores make up nearly half of all new store openings in the U.S.,https://nextcity.org/daily/entry/dollar-stores-make-up-nearly-half-of-all-new-store-openings-this-year,147,1627921866,251,paulpauper,"[-0.013053674, -0.009207986, -0.01675041, -0.015951483, -0.030440519, 0.008571552, 0.01451612, 0.0023070744, 0.008178858, -0.02448241, 0.013493762, 0.018957619, -0.02002737, 0.0020430218, -0.009268922, 0.020528393, 0.020298192, -0.014949436, -0.025687573, -0.020108618, -0.019634677, 0.016344175, -0.023223083, -0.0017874326, 0.011069895, 0.014367167, 0.036750697, 0.0103860665, 0.011929759, 0.019377394, -0.01534213, -0.025457373, -0.024089716, 2.2136617e-05, -0.00044178023, -0.00060046563, 0.003866, 0.01451612, 0.041625515, -0.027786452, 0.018876372, -0.004214685, -0.005308133, -0.020866921, -0.017833702, -0.00049129006, -0.011983924, -0.003926935, -0.017468091, 0.009675156, 0.017021233, 0.036750697, -0.031686306, 0.007928347, 0.008375205, -0.0079960525, 0.015233801, -0.0020785674, -0.011428736, -0.011164683, -0.027894782, 0.00948558, -0.036046557, 0.033825807, -0.00515241, -0.015504624, -0.008165318, -0.008700193, -2.9330356e-05, -0.0033598994, 0.027583335, 0.03664237, 0.03279668, 0.00030848448, 0.008937163, -0.006195079, 0.012396929, 0.015558789, -0.0032786524, -0.017711833, 0.013642715, -0.019296147, -0.03406955, -0.003974329, -0.0021496585, 0.0040860437, -0.022342907, 0.03350082, -0.023263706, 0.013507304, 0.0074544065, 0.0069026044, -0.001147613, 0.025240716, -0.01428592, 0.007589818, -0.015287966, 0.018294102, 0.0029316603, -0.027732288, -0.011333948, 0.0029587427, -0.01347345, -0.0067976606, 0.019688841, 0.016818115, 0.005105016, -0.021354403, 0.0028673399, -0.00031038868, -0.0022698364, -0.024414705, 0.030494684, -0.0039404766, 0.03171339, -0.0048646606, 0.0058870176, 0.00785387, 0.016885823, -0.013500533, 0.037563168, 0.012342764, 0.029573886, 0.006946613, 0.010392837, -0.0009512662, -0.018090984, -0.0016427115, -0.005308133, -0.004837578, 0.02354807, 0.025267798, 0.020663805, -0.0010138941, -0.024577199, 0.014583825, -0.00509486, 0.024577199, -0.027001066, 0.0019871646, 0.015111931, 0.013906768, 0.0015479234, 0.0034106788, 0.009810568, 0.042329654, 0.016059812, 0.0018111296, 0.02004091, -0.010061079, 0.015477542, 0.0033497436, -0.0067942753, 0.0010079698, 0.01463799, 0.02635109, 0.030575931, 0.0048409635, -0.031171741, -0.011875594, 0.0061578406, -0.013947391, -0.0066961017, 0.0012694834, -0.014367167, 0.0187545, 0.012688063, 0.024848022, 0.0024627978, 0.0048646606, -0.0139338495, 0.03745484, -0.052648015, 0.03314875, 0.0054604714, 0.017251434, -0.007704918, 0.020650264, -0.026296925, -0.017806621, -0.009390792, -0.0005759223, 0.015220259, 0.011801118, 0.030982165, -0.012132876, 0.031469647, 0.0042722346, 0.009939209, -0.009241839, -0.0019025324, 0.00017254395, 0.00020671422, 0.0017248048, -0.65647525, 0.00832104, -0.01499006, -0.017549338, -0.020921087, 0.0049120546, 0.021097122, 0.0133922035, -0.021774178, 0.002103957, 0.009343398, -0.014597367, 0.0057245237, -0.016466046, -0.00901841, -0.006289867, 0.02563341, -0.0064929845, 0.013575009, 0.0026557592, -0.012444323, 0.022694977, -0.015721282, -0.012816705, 0.018185772, 0.04530871, -0.015775448, -0.0108058425, -0.005270895, -0.010054309, -0.022491861, 0.029465556, -0.0007743849, 0.031930048, 0.04522746, 0.029573886, -0.0028690326, 0.024306376, 0.030278025, 0.023128295, -0.02154398, 0.012105794, 0.0040014116, -0.010155867, 0.008456452, -0.005108401, 0.004587067, -0.003119544, 0.009993373, 0.00055137894, 2.7135207e-05, 0.004309473, -0.010575643, -0.009031951, 0.038592294, 0.002618521, -0.006641937, -0.028030192, 0.014367167, 0.0051591806, 0.0012677908, -0.0110021895, -0.010270967, -0.015369212, -0.027461465, 0.01568066, -0.012559422, -0.0054300036, 0.017996196, 0.009973061, -0.034854937, 0.01685874, 0.0013575009, -0.0057177534, 0.010981877, 0.017237892, 0.03585698, -0.008490305, 0.0013507303, 0.023520987, 0.008943934, -0.01570774, 0.0021648924, 0.019269066, 0.0054638567, -0.003618874, 0.012166729, -0.008233023, -0.002190282, 0.007982512, 0.0008044293, 0.004082659, 0.010338672, -0.014583825, 0.0011061432, 0.032363363, -0.025457373, 0.0063778847, 0.009797026, -0.0045362874, -0.039892245, 0.012275058, 0.0026134432, 0.017779538, 0.0066080843, 0.02775937, 0.013358351, 0.0010849851, 0.046689905, -0.02448241, -0.00971578, 0.0021581217, -0.023128295, -0.020081535, -0.014231755, -0.02073151, 0.03615489, -0.024495952, -0.01838889, -0.012078712, -0.003970944, 0.008876228, 0.0051964186, -0.027705206, 0.008625717, -0.009417874, -0.0014065877, -0.004014953, -0.010853237, 0.00074857206, -0.008449681, -0.009417874, 0.027664581, 0.010602726, 0.003747515, 0.0069127604, 0.010372526, -0.012085482, 0.016100435, -0.049723126, -0.014949436, -0.012925033, 0.010081391, -0.0353695, -0.010765219, -0.040623467, 0.010453773, -0.01568066, -0.023277247, -0.013432827, -0.008530929, -0.020122157, -0.020447146, 0.0031127732, -0.022979341, 0.0040792734, -0.019390935, -0.002009169, -0.014962978, -0.008172087, 0.0032786524, -0.0031990982, -0.027095854, -0.0043602525, -0.024644904, -0.003403908, 0.0017942032, -0.023263706, -0.005105016, -0.012139646, 0.0077184592, -0.026161514, -0.004898513, 0.0010883705, 0.016005646, 0.021462733, -0.018334726, 0.019350313, 0.0077726236, 0.0016080122, 0.012606816, -0.010325132, -0.021557521, 0.0023646243, -0.0018195929, -0.010934483, 0.011855282, 0.004952678, 0.008585093, 0.003527471, 0.023859518, 0.009810568, 0.009966291, 0.00021126319, -0.017725373, 0.0034445317, -0.008977787, 0.018673254, -0.014543202, 0.00972255, 0.0040589618, 0.016005646, 0.009323086, -0.007318995, 0.018104525, -0.03293209, 0.010128785, -0.023060588, -0.009329856, 0.025403209, 0.014692155, -0.025037598, 0.013243251, -0.015139013, -0.020528393, 0.033121668, -0.0056839003, 0.029763462, -0.0073867007, 0.009654844, -0.005355527, -0.0103860665, -0.00018269982, 0.020866921, 0.0037881385, -0.022925178, -0.020596098, 0.009268922, -0.001885606, -0.004356867, -0.0066216253, 0.0064625167, -0.005880247, 0.007914806, 0.0052404273, -0.0077252295, 0.0203659, -0.014475496, 0.014705695, -0.011056354, 0.012126106, 0.011882365, 0.009539745, 0.038483966, -0.006008888, -0.02472615, 0.020772133, -0.005846394, -0.0101152435, 0.02751563, 0.018605549, 0.010494396, 0.009803797, -0.003248185, 0.004089429, -0.0161546, 0.02190959, 0.0023612392, 0.009966291, 0.026324008, -0.004532902, -0.0071023363, -0.012512028, -0.01147613, -0.0063914256, -0.012512028, -0.0024340227, 0.014610908, 0.0042112996, -0.017237892, -0.0161546, 0.020244028, 0.006076594, -0.024617823, 0.0029062706, 0.0066724047, -0.006371114, -0.007420554, 0.01570774, 0.001628324, -0.005799, -0.0068213576, 0.002775937, 0.023818893, -0.017170185, 0.03068426, -0.006347417, -0.0028554914, 0.0023341568, 0.013771356, -0.021273157, 0.02659483, -0.033527903, 0.008862686, -0.013947391, 0.0026134432, 0.015802529, -0.014651531, 0.0040691174, -0.0049628336, 0.026527125, 0.0035173153, 0.00029663596, -0.0019008399, 0.035396583, 0.0042349966, -0.016086893, 0.014380708, -0.015260883, -0.0151660945, -0.007014319, -0.030034285, -0.013155233, 0.019201359, 0.015030683, -0.026026102, -0.008029906, -0.0024966507, 0.03149673, 0.029655132, -0.00913351, -0.010392837, -0.021584604, 0.008869457, 0.12057046, 0.022193955, -0.0194451, 0.019282607, -0.005866706, -0.009031951, -0.015599412, -0.0029824397, -0.0003634954, -0.012491717, 0.008327811, -0.044929557, 0.013019822, -0.03233628, 0.019336771, 0.008862686, -0.014177591, -0.020352358, 0.007691377, 0.009675156, -0.004042035, 0.007989282, 0.0097699445, 0.02167939, 0.015030683, 0.012315681, 0.030061366, 0.034475785, -0.0010545176, 0.009431415, 0.01616814, 0.0070684836, -0.0037881385, 0.04300671, -0.01779308, -0.0023307714, -0.013209398, -0.008029906, 0.034150794, 0.009864733, 0.044794146, 0.0048409635, -0.009526203, -0.015951483, 0.010013685, -0.014123426, 0.0086866515, 0.006550534, -0.019174278, -0.031469647, 0.023724105, -0.028409345, -0.0038490735, -0.008564781, 0.018009737, -0.0016994152, 0.004766487, -0.002247832, -0.030250942, -0.03301334, -0.011313636, -0.0067401105, 0.010392837, 0.008632487, -0.0073528476, -0.0146244485, -0.0066724047, -0.0030179853, -0.027231265, -0.023818893, 0.012559422, -0.031821717, -0.032038376, -0.001971931, 0.024577199, -0.019255525, 0.0032600334, 0.019688841, 0.03141548, -0.00024585662, 0.0005183724, -0.01910657, -0.019377394, -0.038673542, -0.00178574, 0.022207497, 5.390015e-05, -0.0051828776, -0.035531994, -0.0035545535, -0.016899362, 0.009323086, 0.03114466, -0.012078712, 0.006256014, 0.0076033594, 0.02951972, 0.0020684116, -0.00937048, -0.0128979515, 0.0047732578, 0.010873549, -0.004099585, -0.027976029, -9.320124e-05, -0.000575076, 0.001607166, -0.00638127, 0.006303408, -0.0030518381, 0.014204673, -0.017075397, 0.013053674, 0.015612953, -0.007095566, 0.008334582, -0.00071175705, 0.014922354, -0.0047698724, -0.033094585, -0.0037068916, -0.031550895, 0.019377394, 0.022803307, -0.0006482829, 0.015152554, -0.0008230484, -0.03434037, -0.025714656, -0.007623671, -0.017765997, 0.007704918, 0.019959664, -0.004651387, 0.0079960525, -0.008029906, 0.0020921086, 0.006719799, -0.019120112, -0.030115532, -0.0021530439, -0.00632372, 0.001809437, -0.010447002, -0.0014514427, -0.029925955, 0.004461811, 0.0012991047, -0.005937797, 0.008381976, 0.016520211, -0.01768475, 0.0017298827, 0.00075745845, -0.0072919126, -0.048071105, 0.014922354, -0.027447924, 0.0015673889, 0.013676568, 0.062776804, 0.01664208, 0.021462733, -0.00030869604, -0.0006152763, -0.004136823, 0.0076642944, 0.0047224783, -0.015897317, 0.0013346502, -0.01136103, 0.017549338, -0.014340084, -0.0051828776, 0.0074070124, 0.03314875, -0.019350313, -0.04473998, -0.014719237, -0.01897116, -0.0028064046, -0.018415973, -0.022857472, 0.0093501685, -0.030575931, -0.009634533, 0.04005474, 0.014326544, 0.020081535, -0.015003601, 0.031009248, 0.006022429, 0.02658129, -0.007420554, -0.019864876, -0.02681149, -0.015409836, -0.028436428, -0.0061646113, 0.0019770088, 0.013595321, 0.016560834, 0.001833134, 0.020067994, 0.001018972, 0.026852112, -0.006909375, -0.027840618, 0.0032312584, -0.005470627, 0.009790256, -0.022207497, -0.018686796, -0.031225907, -0.00842937, 0.011780806, -0.010264196, 0.021354403, -0.0013117995, -0.03734651, -0.0051117865, -0.0032701893, 0.00808407, -0.006581002, 0.00937725, 0.017386844, 0.01252557, -0.02436054, 0.014949436, 0.016872281, -0.03512576, 0.024536574, -0.0024797241, -0.025457373, 0.008761128, 0.01170633, -0.014204673, -0.032255035, -0.021801261, 0.032011293, 0.018483678, -0.00057338335, -0.015802529, -0.0028825735, -0.013412516, 0.0038693855, -0.011449047, -0.003666268, -0.019499265, -0.051943876, -0.01838889, 0.032634187, 0.0079215765, 0.021381486, -0.004593837, -0.024766775, -0.013960932, -0.010440231, 0.008354893, 0.015829612, -0.025606327, 0.033771645, -0.013690109, 0.03393414, -0.0023849362, 0.011144372, -0.03455703, -0.010379296, -0.013304186, 0.025728196, -0.018632632, 0.01113083, 0.016791034, -0.0014404405, -0.0032651112, -0.0089574745, -0.022789765, -0.02505114, -0.012681292, -0.012247976, 0.0146244485, 0.0007087949, 0.0071497303, -0.0069059897, -0.008903311, -0.036750697, -0.032986257, -0.029221816, 0.04414417, -0.0007566121, 0.0103860665, 0.013764585, -0.0020650264, -0.00219536, -0.0133177275, 0.01499006, 0.0044516553, -0.0073934714, -0.012254747, 0.034692444, -0.0027725517, 0.0016139365, -0.027326053, -0.0025101919, -0.010047538, -0.01932323, 0.031577975, -0.0349091, -0.015044224, -0.0015386139, 0.013696879, 0.014719237, -0.015125471, 0.013656256, -0.008646028, -0.006861981, 0.009499121, 0.026175056, -0.044685815, 0.04815235, -0.03323, -0.027921865, 0.020203406, -0.0005797307, 0.01782016, -0.006780734, 0.0015479234, 0.006184923, 0.0047766427, -0.0040488057, -0.027556254, 0.01193653, -0.005812541, -0.0056940564, -0.016005646, 0.020988792, -0.0038863118, 0.014692155, 0.0042722346, -0.023128295, 0.0070684836, 0.00078369444, 0.0051253275, 0.009709009, 0.027610417, -0.0059581087, -0.0134666795, -0.007799706, -0.0077726236, -0.025362585, -0.009478809, 0.040894292, 0.024712611, -0.015992105, -0.001751887, 0.013608862, -0.023087671, 0.0030162926, 0.02154398, 0.009160592, 0.026093809, 0.024414705, -0.015220259, 0.03336541, 0.014015096, 0.015369212, -0.017522257, 0.0026608373, 0.004214685, -0.021029416, 0.021530438, 0.017603504, -0.010487625, 0.004661543, -0.0033869818, -0.0015843153, 0.019512806, 0.0037407444, -0.016493129, 0.0034834624, 0.013128151, 0.02691982, 0.024428247, -0.0006482829, 0.032498773, -0.025592785, 0.0055315625, 0.022789765, 0.013202627, -0.004648002, 0.007637212, -0.025335504, -0.011232389, -0.0038456884, 0.00832104, -0.007799706, 0.0036730387, -0.009478809, 0.021638768, -0.010954795, 0.01534213, 0.018592007, 0.020812757, -0.013771356, -0.013947391, 0.002219057, -0.014556743, 0.0032211025, 0.0026879194, -0.000113724556, 0.053379238, -0.035748653, -0.00544693, 0.017942032, 0.018185772, -0.026378172, -0.021720015, -0.025240716, 0.036236133, 0.0048071104, -0.01779308, 0.012545881, 0.003899853, -0.008544469, -0.011015731, -0.017644126, 0.0054063066, -0.0276375, -0.013060445, -0.0052912068, -0.030223861, -0.04086721, -0.01782016, 0.0014920662, -0.039648507, 0.005260739, 0.194451, 0.00462769, -0.005656818, 0.045823272, 0.0021530439, 0.004180832, 0.0362903, -0.0028537987, -0.031957127, 0.018564925, -0.02295226, -0.01568066, -0.013344809, 0.0027844002, 0.008971016, -0.022302285, -0.026188595, -0.01756288, -0.027569793, 0.033311244, 0.007732, -0.007955429, -0.02226166, -0.0002549546, 0.03642571, 0.015978564, -0.009648073, 0.014935895, 0.017711833, 0.012674523, -0.011922988, -8.38388e-05, 0.023290789, -0.01347345, 0.018700337, -0.011157913, -0.002061641, -0.0028267163, 0.008449681, -0.0014277457, 0.036398627, -0.0047631017, -0.021706473, -0.0059141, 0.003524086, 0.034746606, 0.0034089861, 0.007637212, -0.005074548, -0.0076169004, -0.02941139, -0.004309473, -0.0018754501, 0.021489816, -0.0058700913, -0.0028825735, 0.026418796, 0.007000778, -0.0063135643, 0.0077658533, 0.0057008266, 0.051023077, -0.00785387, 0.024441786, -0.028680168, 0.00079088815, -0.01886283, 0.026039643, 0.008761128, -0.0236564, 0.0076575237, 0.002166585, -0.0019109957, 0.0006292406, 0.007542424, -0.027326053, 0.03994641, 0.021747097, 0.0064117373, 0.016804574, -0.014001556, -0.0026946901, -0.0065302225, -0.014786943, 0.031794634, -0.045254543, 0.009106427, 0.0023155378, -0.02119191, -0.01288441, 0.0017400386, -0.0073867007, -0.012600046, -0.022234578, 0.01757642, 0.0067502665, -0.0047631017, 0.02517301, -0.00971578, -0.009404333, -0.021692932, 0.051808465, 0.014719237, -0.009668386, -0.010067849, -0.005765147, -0.010548561, 0.010061079, 0.010839695, -0.006713028, 0.01171987, -0.032498773, 0.01825348, -0.0015978564, -0.004648002, 0.016005646, 0.0131213805, -0.025240716, 0.026797948, -0.006899219, -0.02001383, -0.015612953, -0.008734046, 0.007914806, -0.0056026536, -0.010704284, -0.020095076, -0.0058328533, 0.01113083, -0.01639834, -0.011970382, -0.0063609583, 0.013486992, -0.0018822207, -6.0882307e-05, 0.006063053, 0.01779308, -0.014313002, -0.013419285, -0.0027877856, 0.0018923766, 0.005866706, 0.017427469, -0.0274073, 0.007786165, -0.0025152697, 6.092859e-06, -0.02037944, -0.006327105, -0.0017772767, 0.0054130773, 0.002770859, 0.01685874, -0.0076575237, -0.009641304, -0.01662854, 0.0035647093, -0.002500036, 0.021002334, 0.012559422, -0.03642571, 0.006628396, 0.04790861, 0.0023273863, -0.02330433, 0.006567461, -0.17300181, 0.04977729, -0.0058734766, 0.0007583047, 0.017914949, 0.008984557, 0.010000144, 0.01451612, -0.026364632, -0.005023769, 0.009194445, 0.00444827, -0.026107349, -0.0069872364, 0.01861909, -0.008720505, -0.036696535, 0.005727909, 0.014949436, 0.010047538, 0.017075397, -0.017589962, 0.010020455, -0.01311461, 0.01159123, 0.014164049, 0.0063778847, 0.015951483, 0.013514074, 0.0005259893, -0.007576277, -0.0031567821, 0.014313002, -0.0030416823, -0.011909447, -0.01897116, 0.0016647159, -0.00972255, -0.0079960525, 0.018984701, 0.009458497, 0.0014082802, -0.01265421, -0.011049584, 0.0155858705, -2.2705239e-05, 0.01849722, -0.0146244485, -0.011225618, 0.0063744993, 0.0075153415, -0.023466824, 0.0026066725, 0.015504624, -0.01744101, 0.007474718, -0.0061104465, 0.015139013, 0.0023104597, -0.022898095, 0.015748365, -0.015843153, 0.018916994, 0.011557377, -0.0013134922, -0.04100262, -0.017021233, -0.024184505, -0.032255035, 0.017711833, -0.0040318794, 0.0049560633, 0.015883775, -0.0061409143, -0.016438963, 0.014814025, 0.017413927, -0.009756403, 0.007867412, 0.008754358, -0.015220259, 0.019458642, -0.02941139, -0.0072309775, -0.024631362, 0.020555476, 0.0076575237, -0.0014658301, 0.008239794, -0.010406379, -0.009268922, -0.012498487, -0.003466536, 0.0071971244, -0.0077793943, 0.01534213, 0.014814025, -0.009282462, -0.007041401, 0.004624305, -0.008632487, -0.0011780806, -0.007968971, 0.0093501685, 0.026283383, 0.0044279583, -0.001147613, 0.030440519, 0.019282607, -0.017982656, -0.004346711, 0.009851191, 0.0063880403, -0.011570918, 0.010670431, 0.0060833646, 0.020338817, 0.0090793455, 0.02892391, -0.005169336, 0.041869257, -0.011300094, -0.025971938, 0.013764585, -0.007061713, -0.010968337, -0.10318361, -0.00015794489, -0.0024306376, 0.024861563, -0.009194445, 0.03899853, -0.022153331, 0.042194244, -0.028896827, 0.039377682, -0.016466046, 0.0037813678, 0.011774035, 0.0042688493, 0.031171741, -0.016872281, 0.011875594, 0.0027776298, -0.0065166815, 0.011327177, 0.0034089861, 0.008205941, -0.006547149, -0.023290789, 0.027813535, 0.00018037243, -0.029953038, 0.01731914, 0.0025321962, 0.009316316, 0.00010113551, -0.012755769, -0.00018164191, -0.010629808, 0.0040792734, 0.000509486, 0.008815292, -0.013453139, 0.014692155, -0.046581578, 0.0029655132, 0.00784033, 0.00808407, -0.0042112996, -0.011983924, -0.016723327, -0.015748365, 0.0061883084, -0.0064083524, 0.00971578, -0.008138235, 0.0148952715, -0.012071941, -0.025579244, -0.0018585237, 0.00037513234, -0.0148952715, -0.0120584, -0.004610764, -0.022383532, 0.0043196287, 0.018551383, -0.013866144, 0.008964245, 0.008706964, -0.008774669, -0.011279783, -0.012166729, -0.009681927, -0.02517301, -0.018700337, 0.02050131, -0.007914806, 0.0079960525, -0.036859028, 0.016195223, -0.02987179, -0.011157913, 0.017847244, -0.010636578, -0.0112730125, -0.018077444, 0.0073934714, -0.013805209, 0.006113832, -0.0011780806, -0.0140557205, 0.007880953, 0.0050542364, -0.04265464, -0.004299317, 0.027976029, 0.010047538, -0.026973983, -0.0003059455, 0.037156932, 0.0044279583, 0.0035884064, 0.024333458, 0.006371114, -0.019526348, -0.018294102, -0.06272264, 0.014123426, -0.01452966, -0.005169336, -0.007671065, -0.016262928, -0.009478809, -0.020663805, 0.010453773, -0.004641231, -0.018524302, 0.019973205, -0.010623037, -0.010717825, -0.043196287, -0.030223861, 0.00948558, 0.019201359, 3.7529102e-05, 0.028680168, 0.017481633, 0.0015276116, 0.026960442, 0.0066351667, -0.00089456263, 0.0106568895, -0.007745541, 0.024523035, -0.017955573, -0.008456452, -0.0024627978, -0.014123426, -0.009675156, 0.009736091, -0.00083870534, -0.022979341, -0.014340084, 0.024441786, -0.0004036957, -0.005270895, -0.053000085, -0.03371748, -0.015640035, 0.0037847531, -0.035207007, -0.018822208, 0.018646171, -0.0022105938, 0.022193955, -0.013879685, 0.042140078, 0.025091762, -0.025971938, -0.010277738, -0.006994007, -0.028328098, -0.005975035, 0.011956841, -0.0048071104, -0.007982512, 0.01907949, 0.025213633, 0.017522257, -0.003771212, -0.00076084374, -0.025200091, -0.0010849851, 0.0038287619, 0.008334582, -0.013087528, 0.0077658533, -0.0049120546, 0.019891959, 0.0003362015, -0.005903944, -0.018226396, -0.030630095, -0.012931804, -0.016615, 0.022031462, -0.023060588, 0.0059208707, -0.008483535, 0.030223861, 0.027366677, 0.01918782, -0.004014953, 0.007481489, -0.0062153907, -0.0013888149, -0.02226166, 0.0028351797, -0.016493129, 0.0058396235, 0.003920165, 0.012708375, -0.012735457, 0.018903455, 0.0012542496, -0.005843009, 0.023263706, -0.004167291, -0.0017772767, -0.01323648, -0.023818893, 0.01744101, -0.024333458, -0.013087528, -0.015626494, 0.017495174, -0.020758592, 0.011171454, 0.0083075, 0.00544693, -0.008727275, -0.000561958, 0.020338817, -0.026256302, -0.006357573, 0.011259471, -0.008469993, 0.025457373, 0.0050779334, 0.0016240925, 0.014096344, 0.00808407, 0.017305598, -0.024306376, 0.022004379, -0.016736869, -0.0037407444, 0.0050271545, -0.029925955, -0.017914949, 0.0034462241, -0.002452642, 0.007928347, 0.033446655, 0.026648995, 0.047854446, 0.01311461, -0.006161226, 0.012918263, -0.0062492434, 0.021395028, -0.025132386, 0.009411104, 0.0031229293, -0.019621136, 0.024902185, -0.015518165, 0.0026676077, -0.007528883, -0.018795125, -0.012241205, -0.018537844, 0.005799, 0.006090135, 0.026269844, 0.020541934, -0.013879685, 0.013101068, 0.016845198, -0.030711342, -0.011997464, 0.0046446165, 0.017508715, -0.020474229, -0.024780316, 0.007732, 0.0047258637, -0.028219769, -0.018415973, 0.007109107, -0.001975316, -0.024766775, 0.005047466, -0.009512662, -0.013723962, -0.013243251, 0.011449047, -0.012044858, -0.028382264, -0.0065776166, -0.014245296, 0.008361664, 0.005284436, -0.005714368]" 13146315,Cryptomancer RPG,http://cryptorpg.com/,189,1481386745,57,Tomte,"[0.004308198, -0.018758541, 0.0008097028, -0.027422616, -0.025229352, 0.0168786, -0.02205525, -0.045690738, -0.0017505247, -0.02028429, 0.036645226, 0.00340569, -0.016224707, 0.003100881, 0.022613782, 0.024929652, 0.034438338, -0.003174103, 0.0015640631, -0.016769618, -0.015489078, -0.0011919915, -0.010816472, -0.002131962, -0.016592521, -0.016265575, -0.00094337616, -0.018227253, 0.008711755, 0.0051221577, 0.017219169, -0.007880767, -0.0059156837, -0.022491178, -0.03631828, 0.008125977, 0.016565276, -0.020202553, -0.0024640167, 0.03108714, 0.016360935, 0.013833913, 0.0023754688, 0.017055696, 0.013581892, 5.598103e-05, -0.011014001, -0.022545667, 0.0005653445, 0.001295865, 0.010448657, 0.016156593, -0.01599312, -0.019943722, -0.014603599, -0.013976952, 0.0055444636, 0.0045908703, 0.027231898, -0.016933091, -0.008125977, -0.024807047, -0.014453748, -0.0017947986, 0.022886237, -0.0020161686, -0.017450755, 0.0065423306, -0.019698512, -0.017478002, 0.0080578625, 0.053673677, 0.025638035, 0.0041719703, -0.008303072, -0.0036985795, -0.02368998, -0.008214524, -0.0063039325, -0.01796842, 0.01401782, -0.005432076, -0.007581066, 0.012839451, 0.009222609, 0.001368236, -0.0014652981, -0.006600227, 0.0034806153, -0.017369019, 0.02205525, 0.0063141496, 0.024343872, 0.036590733, -0.02630555, 0.031850014, -0.0025968386, 0.025733395, 0.018281745, -0.025406448, 0.038089238, 0.002867591, -0.014794318, -0.0121174455, -0.030705702, -0.017995667, 0.0036747395, 0.013629572, 0.0520117, 0.011981217, -0.005789673, 0.0135342125, 0.01663339, -0.034765285, 0.0013988871, 0.0011221749, 0.040486842, -0.016320067, 0.007615123, -0.028689533, 0.026932197, 0.009549555, 0.021701057, 0.0013852644, 0.028498814, -0.00015336247, -0.002537239, -0.014276653, 0.016347311, -0.0117087625, -0.0025542676, 0.0024844508, 0.014331143, -0.002448691, -0.00032737196, 0.0021030137, -0.016129348, -0.0032490282, 0.0022205098, -0.01090502, 0.024194023, 0.03138684, -0.010632564, -0.002726255, 0.0045942757, -0.0050029587, -0.002692198, 0.027109293, -0.0009186849, -0.0031230177, 0.00922942, 0.010462279, -0.002261378, -0.027395371, -0.0020451169, 0.0138475355, -0.010680244, 0.023771716, -0.004277547, -0.013731742, -0.013098284, 0.014181294, -0.0044614538, -0.008398431, 0.020842822, 0.033348516, 0.02195989, 0.0222051, -0.00043550262, 0.016606145, 0.0021251505, 0.016524408, -0.02270914, 0.015203, -0.03392067, 0.0012005058, -0.0013205563, -0.0017019936, -0.0033477934, -0.016415427, 0.009508687, -0.011947161, 0.006229007, 0.009174929, -0.016783241, -9.285827e-05, 0.026741479, 0.020706596, -0.01189267, -0.0025900272, 0.00863683, 0.03563714, -0.0018101243, -0.003426124, -0.650841, -0.026523514, -0.009236231, -0.02542007, -0.031659294, -0.008807114, 0.0049484675, 0.0066615297, 0.007220063, 0.01791393, 0.030406, -0.0067841345, 0.005030204, -0.02877127, -0.03528295, -0.019521415, -0.0103396755, -0.016510785, -0.007982938, 0.023798961, -0.023172315, 0.020488631, -0.0136772515, -0.023254052, -0.037135646, 0.014358389, 0.0009944615, -0.001098335, 0.010462279, -0.007077024, 0.0026411125, 0.013506967, 0.008963776, -0.011988029, 0.04274822, -0.0037700988, -0.0065457365, 0.015271114, 0.0021592076, 0.026482645, -0.011286457, -0.015352851, 0.030950911, 0.03138684, -0.02743624, 0.011783687, 0.034520075, -0.011272834, 0.008296261, -0.009345214, -0.009808388, -0.017859438, 0.012580619, -0.025256598, 0.025174862, 0.00087185664, 0.031414084, -0.0301063, 0.010925454, 0.0034550726, -0.010087654, 0.04032337, -0.03637277, -0.019848362, -0.025202107, 0.00016698524, -0.006852248, -0.012498883, -0.024166776, -0.034220375, 0.020856446, 0.003637277, -0.01164746, -0.025338333, -0.018513331, 0.018962882, 0.030487737, -0.024902405, 0.008493791, 0.0136772515, 0.014072311, -0.012941622, -0.041876364, -0.02610121, 0.042312294, -0.007260931, -0.0012728766, -0.0038824866, 0.006331178, 0.015788779, 0.008221336, 0.020570368, -0.015257492, -0.022695519, -0.0072881766, 0.005844164, 0.010196636, 0.0095699895, -0.0033273592, -0.019044619, -0.0057862676, -0.013793045, 0.00725412, -0.0054865666, 0.023976058, 0.00621879, -0.007621934, 0.008568716, 0.05710661, -0.05073116, 0.0056636627, -0.013254946, -0.02131962, 0.00056193885, -0.006154082, -0.029098216, 0.024820669, 0.022014381, 0.021033542, -0.0571611, 0.019725757, 0.0034874266, 0.00056577026, -0.011960783, -0.0009399704, 0.001352059, 0.021006295, -0.018581444, -0.0014440126, 0.0059803915, 0.023335788, -0.0049961475, -0.0017675532, -0.012996113, 0.017559739, 0.007233686, 0.018254498, -0.01480794, 0.0038041559, -0.0020587395, -0.00725412, -0.02803564, -0.018227253, 0.0030242528, 0.0039029208, -0.017709589, 0.0006138756, -0.0040902337, -0.008929719, 0.008016994, 0.005309471, 0.023771716, -0.011667894, 0.0044342084, -0.014290275, -0.028716778, -0.01396333, -0.012274107, -0.015925007, -0.018608691, 0.016442671, 0.0005606617, -0.008132787, 0.0076015, 0.012928, 0.028907496, -0.0042809523, 0.011088927, 0.010060408, -0.023962434, -0.010060408, -0.013207266, -0.011313702, 0.010428223, 0.00947463, 0.0222051, -0.014862431, 0.0067705116, -0.0040595825, 0.0001534689, -0.001555549, 0.004955279, -0.0040493654, 0.001747119, 0.00019870073, -0.0038620525, 0.022014381, 0.0005236248, 0.0016279198, 0.017532492, 0.015352851, 0.029288935, 0.006593416, -0.017219169, 0.0001602803, -0.00077351736, 0.019630397, -0.00947463, 0.005660257, 0.044491936, 0.0017181706, -0.02255929, 0.023771716, -0.015611683, 0.006964636, -0.05225691, 0.010101276, -0.012015275, 0.030051809, 0.002779043, 0.019167224, -0.0208292, -0.010148956, 0.00071264064, 0.0064129145, 0.029724862, -0.006348206, 0.029234443, -0.014154048, 0.0028607796, 0.017110188, -0.022763632, 0.033430252, 0.0057385876, 0.00828945, 0.02610121, -0.002121745, 0.010591696, -0.0051698377, -0.042666484, -0.0055887373, -0.011865424, -0.017001204, 0.0014968008, 0.031032648, -0.0059293066, 0.014685336, -0.013772611, 0.036699716, 0.0029322992, -0.019221714, 0.042312294, 0.019562284, -0.0028726996, 0.017096564, 0.011197909, 0.016401803, 0.023158692, -0.0028829167, 0.034819774, -0.023962434, 0.007860333, 0.003681551, -0.017110188, 0.011061681, 0.0028386426, 0.0019735973, 0.0037156078, 0.026564382, 0.03125061, 0.011838179, 0.012464826, 0.0014712581, 0.0071996287, 0.003020847, 0.012226427, 0.0036508997, -0.0047611548, -0.0007105121, 0.003242217, -0.0077990303, -0.009038702, -0.0019650832, 0.011375004, -0.0040663937, 0.0053230934, -0.021142524, 0.003218377, 0.0068624653, 0.015856894, -0.014331143, -0.03757157, 0.027599713, 0.021183392, 0.013411608, -0.030869175, -0.03193175, 0.004999553, -0.009433761, 0.012028897, 0.005289037, -0.01268279, 0.01791393, -0.01248526, -0.009406516, -0.01712381, 0.01890839, -0.028144622, -0.0047100694, 0.012955245, -0.0068624653, 0.014971414, -0.01924896, -0.024425609, 0.031604804, 0.029125461, -0.039260793, -0.003810967, -0.0038484298, -0.025651658, 0.0016015257, -0.002285218, 0.006320961, -0.018227253, -0.005558086, 0.0080578625, -0.0089229075, -0.017014828, 0.014985036, 0.02852606, 0.02073384, -0.026019473, -0.011592969, -0.019766625, 0.06658805, 0.013336683, -0.021728303, -0.0044512367, -0.015121263, -0.028008396, -0.021973513, -0.018976506, 0.0036577112, -0.026332796, 0.024071418, 0.012056143, -0.0009842444, 0.009678971, -0.009862878, 0.020025458, -0.020951806, -0.00380075, -0.033294026, -0.0011400548, 0.018322613, -0.015434587, -0.009072758, 0.0001851844, -0.00033929187, 0.0018526954, 0.0022034815, 0.0037258249, -0.020992674, -0.0211289, -0.013295814, 0.00012005057, -0.013316249, -0.012580619, -0.014290275, 0.01465809, -0.0071723834, 0.02122426, -0.026264682, 0.0025729989, 0.019371565, 0.0062869038, 0.011606592, -0.0047747777, 0.0014874351, -0.029452408, -0.0050846953, 0.021292374, 0.0024657196, -0.047161996, 0.010775603, 0.019221714, -0.022750009, 0.015652552, -0.014562731, -0.0053026592, 0.010707489, 0.0032677597, -0.013050605, -0.014222162, -0.017014828, -0.014385635, 0.006515085, -0.0044444255, -0.016102104, -0.01480794, 0.0039199493, 0.0155027015, 0.0028113972, 0.015734289, -0.0017505247, -0.03266738, 0.0033886617, 0.011620214, -0.0052141114, -0.015625305, 0.009161307, -0.0029544362, -0.00962448, 0.0027500947, -0.0033290621, -0.012893942, -0.011218343, -0.041140735, -0.013384362, -0.015734289, 0.0058986554, 0.0019293234, -0.034574565, 0.0030004128, -0.01450824, 0.0042128386, 0.008064674, 0.008807114, -0.014698958, 0.016892223, 0.0092771, 0.010026352, 0.011429496, 0.010394166, -0.0016032286, -0.039642233, -0.0084665455, -0.012921188, 0.022572914, -0.018104648, 0.0025678903, 0.037489835, 0.014848809, 0.009338402, -0.014617221, -0.016919468, -0.0039948747, -0.009338402, 0.013295814, -0.013118718, 0.011320514, -0.00056108745, -0.01169514, 0.005251574, 0.012383089, 0.0020144656, 0.0048633255, 0.014521862, -0.021782793, 0.005152809, 0.014194916, -0.018990127, -0.0014014414, 0.003923355, -0.032830853, 0.019357942, -0.015257492, -0.011170663, -0.02931618, -0.020842822, 0.014045066, 0.000661981, 0.0073154224, -0.017627852, -0.052502118, -0.0031706975, -0.033185042, -0.013636383, -0.0012226427, -0.029397916, -0.024493722, -0.0016219598, 0.0004063414, 0.010155768, -0.035364684, -0.0028709967, -0.02003908, -0.0019872203, -0.0028113972, -0.024425609, -0.03413864, -0.011034436, 0.027136538, 0.03351199, 0.020665728, 0.00014548682, 0.021987135, 0.00012760695, 0.022545667, -0.00014133613, 0.014072311, 0.007935258, -0.03898834, 0.0134865325, 0.004539785, 0.021483094, 0.00466239, -0.033838935, 0.002714335, 0.021006295, 0.0049927416, 0.01569342, -0.020338781, -0.022763632, -0.025406448, 0.0007756459, 0.00017017807, 0.024793424, -0.02882576, -0.011177475, 0.033294026, 0.011327325, 0.025093125, -0.012226427, 0.016442671, -0.0037087966, -0.0121174455, -0.00034567754, 0.029152706, 0.008807114, -0.0057624276, -0.017873062, -0.0061438647, -0.0027517977, 0.017014828, 0.021987135, 0.00078075443, 0.0063924803, 0.009944615, 0.017709589, 0.010557639, -0.00828945, 0.0010429926, -0.025692526, -0.020420518, -0.023008842, -0.014317521, -0.019589528, -0.005902061, -0.008929719, -0.026182946, 0.014494617, -0.011048059, -0.01031243, 0.009856067, 0.0008126828, 0.0444102, -0.014467372, 0.010026352, 0.016006744, -0.006733049, 0.009256666, 0.0007237091, -0.00094422756, -0.026169322, 0.04487337, 0.0030787438, -0.018785786, 0.01614297, -0.0060825623, -0.016442671, -0.02700031, -0.025174862, 0.009072758, 0.013234512, 0.02314507, -0.038824867, -0.011770065, -0.02956139, -0.0112523995, -0.017900307, 0.024371117, -0.0035078607, -0.031059893, -0.01342523, 0.009535932, -0.012062954, 0.0072813653, -0.0055648973, 0.007349479, 0.011729197, -0.025828753, -0.018295366, -0.0002796923, 0.00049339933, 0.028961988, -0.004042554, -0.008160033, 0.008882039, 0.02792666, -0.0033171421, -0.014562731, -0.020774709, 0.025869621, -0.021673812, 0.011804122, -0.0026751696, 0.00072030345, 0.017627852, 0.013009736, 0.008269016, -0.014985036, -0.010646187, 0.006055317, 0.011558912, -0.027163783, -0.031604804, 0.00037930874, -0.025256598, -0.02551543, -0.00072413485, -0.005946335, 0.016415427, -0.03413864, -0.006109808, -0.01110255, -0.017300906, 0.012859886, 0.011620214, 0.0045772474, -0.0123899, 0.032204207, 0.00046232244, 0.011770065, 0.008037428, 0.016837731, -0.025978604, 0.018826654, 0.019453302, -0.039642233, 0.026591629, -0.020801954, -0.028090132, -0.040405106, -1.9343255e-05, -0.023771716, -0.006876088, -0.030378755, 0.010544016, 0.019848362, -0.0043388493, 0.008343941, -0.013820291, 0.017900307, 0.0084393, -0.007764973, 0.0031843202, -0.009202175, 0.010714301, -0.03228594, 0.0014099557, -0.0098356325, -0.02788579, -0.017695965, 0.0007833087, 0.00054576184, 0.0027109294, -0.014998659, -0.011906292, -0.002133665, -0.0093315905, -0.0022903266, 0.013949706, -0.00819409, 0.012955245, 0.007233686, 0.017627852, -0.008207713, -0.010332864, 0.010012729, -0.027272766, -0.020243421, -0.033811692, 0.00977433, -0.009617669, 0.053510204, 0.0051255636, -0.014535485, -0.041821875, -0.0045738416, -0.039260793, -0.010973133, -0.005261791, 0.03729912, 0.047543433, 0.021905398, 0.016674258, 0.045745227, 0.007839899, -0.0066853696, 5.369283e-05, 0.021592075, 0.0056023602, -0.019371565, 0.0079148235, 0.010721113, -0.019562284, -0.004550002, 0.028498814, 0.008064674, -0.01544821, 0.033484746, 0.0019208092, -0.030978156, -0.022967974, 0.0067296433, 0.014617221, -0.0039948747, -0.008847983, -0.038443428, 0.020856446, -0.0013035279, -0.0073903473, -0.0013810074, -0.0011766659, 0.0026734667, -0.017137432, -0.0035623517, -0.0044886996, -0.014698958, 0.019712133, -0.006831814, 0.03016079, 0.0014005901, -0.013036981, 0.0120902, 0.010864152, -0.020011835, -0.015570815, 0.0051800543, -0.0027977743, -0.027013933, 0.018567823, -0.033048816, 0.032204207, 0.0057590217, -0.0015921601, 0.010012729, -0.019943722, -0.0247798, 0.017655097, 0.0129824905, 0.016851354, 0.012219616, -0.0005274562, 0.0015521433, -0.01159978, -0.0078058415, 0.021687435, -0.013922461, -0.011919915, -0.005040421, 0.0040459596, -0.00025776817, -0.002218807, -0.003284788, 0.0012728766, -0.006855654, 0.010373732, 0.0033137365, 0.1964947, -0.0058986554, 0.0092771, 0.02131962, -0.006855654, 0.02245031, 0.02122426, -0.0019718946, -0.002978276, 0.00977433, 0.016020367, 0.010884586, -0.0024537996, -0.0016304741, -0.0030957724, 0.006647907, -0.027054802, -0.010952699, -0.014344767, -0.020297913, 0.0070157214, -0.0065525477, -0.0052481685, -0.014685336, 0.021946266, 0.0026138672, -0.009440573, -0.0012549968, 0.0301063, 0.0029612475, -0.012853074, 0.018145517, 0.007969315, -0.0043252264, -0.002537239, 0.0013077849, 0.019262582, -0.014113179, -0.018676804, 0.0067875404, -0.0084188655, 0.0038382127, 0.0020910937, -0.0089229075, 0.0040732054, -0.007901201, -0.028117377, -0.0116610825, -0.003099178, 0.002847157, -0.033539236, -0.009188551, 0.021115279, 0.01554357, 0.0013307733, 0.009011456, 0.0138952155, 0.014739826, -0.0026870894, 0.0037394478, -0.010012729, 0.017559739, -0.0045908703, 0.004648767, -0.017382642, 0.053673677, 0.009590423, 0.02304971, 0.008432489, -0.004018714, -0.028471569, -0.008895663, -0.021782793, -0.0016645311, -0.016183838, -0.021292374, 0.020665728, 0.008950153, 0.013976952, 0.025106747, 0.019194469, -0.0048360797, 0.015148509, 0.028199114, 0.0120697655, 0.000900805, 0.010966322, -0.021251505, -0.012049331, 0.024153154, 0.010128522, -0.0062460355, -1.5126053e-05, -0.013813479, 0.01830899, -0.0036100314, 0.056234755, 0.02655076, 0.011415873, -0.002154099, -0.027272766, 0.033838935, 0.008991022, 0.007669614, -0.020692972, 0.023090579, -0.018445218, -0.005571709, 0.016864978, -0.0034363412, 0.0039267605, -0.030514983, -0.008016994, -0.009583612, 0.017478002, 0.020992674, 0.0007305205, -0.008759435, -0.0058884383, -0.015897762, -0.022096118, -0.016783241, -0.006944202, -0.002637707, 0.0050608553, -0.035964087, -0.017232792, -0.011429496, -0.014739826, -0.023008842, 0.018922014, -0.012750903, 0.00050319073, -0.0019514604, 0.012546563, 0.017355397, 0.02561079, -0.005166432, 0.007240497, 0.015121263, -0.0036100314, 0.0014440126, 0.005088101, 0.008275826, 0.00043039408, -0.0066649355, 0.007151949, 0.023172315, -0.0028386426, 0.0009161306, -0.033811692, -0.009713028, -0.02956139, -0.016061235, 0.023989681, -0.013922461, -0.014467372, -0.017954798, -0.010217071, 0.014072311, -0.05097637, 0.014154048, 0.02975211, 0.010155768, 0.009965049, 0.0049484675, -0.17469828, 0.028471569, 0.006297121, -0.02679597, 0.032612886, 0.0049178163, 0.007151949, -0.009052324, -0.015529946, 0.009045512, 0.0136772515, 0.013547835, -0.024847915, -0.012975679, 0.03705391, 0.02792666, 0.0054763495, 0.03272187, 0.0331578, 0.025856, 0.041059, -0.0020229798, -0.013268569, 0.021197015, 0.01909911, -0.01924896, 0.0035180778, 0.017804947, 0.006569576, -0.019712133, -0.024616327, -0.036100313, 0.018363481, 0.027368125, 0.025311088, -0.0064912452, 0.011947161, 0.0029050536, -0.013316249, -0.0006743266, 0.012512505, 0.03441109, 0.0010515068, 0.0057079364, -0.001158786, 0.006072345, 0.014549108, -0.012035709, 0.007758162, 0.0067398604, 0.014344767, -0.011415873, 0.010217071, -0.03424762, 0.026659742, 0.026387287, 0.035064984, 0.0034005814, 0.016919468, 0.005561492, -0.013609137, -0.032749116, 0.0005976986, -0.001648354, -0.009508687, -0.011136606, 0.008160033, 0.024575459, -0.017641475, 0.015107641, -0.02073384, 0.024561837, 0.01480794, -0.00054235617, 0.009147683, -0.0027858545, -0.0062562525, 0.00907957, 0.0021030137, 0.011272834, 0.030950911, 0.015162132, 0.006232413, -0.010380543, 0.021973513, -0.015584438, 0.007635557, 0.0061404593, -0.018322613, -0.009849256, 0.0013316248, -0.009365648, -0.0075197634, -0.01796842, 0.008895663, 0.024548214, 0.027395371, -0.013479721, 0.01766872, -0.02926169, 0.0075197634, 0.0054797553, -0.0063686403, 0.002067254, 0.010223881, -0.0002456354, 0.02195989, -0.0026836838, 0.019071864, -0.0301063, -7.056164e-05, 0.019998211, 0.026686987, 0.008282638, 0.0012073171, 0.011191097, -0.005152809, -0.030269774, -0.008568716, -0.012669167, 0.06854973, 0.0096925935, -0.010523582, 0.018077403, -0.01830899, -0.010278373, -0.103478484, -0.016129348, 0.0033052221, -0.0045976816, -0.024071418, 0.015870515, -0.021537583, 0.0062834984, -0.01036692, 0.013942895, -0.008180467, -0.026033094, -0.012008463, -0.012308164, -0.028253606, -0.0027535004, 0.00022200841, -0.018050157, 0.020679351, 0.029343426, -0.009025078, 0.011940349, -0.009590423, -0.016197462, -0.009849256, -0.0005512961, -0.009154495, 0.01248526, 0.0010242612, 0.013350305, 0.0043218206, -0.013152775, 0.0016270684, -0.028744023, 0.0077513508, 0.014794318, -0.0117087625, -0.013023359, 0.03544642, -0.026332796, -0.0038177785, -0.006109808, 0.004679418, -0.0045534074, -0.0065763877, 0.01342523, -0.030923666, 0.024602706, 0.020692972, -0.013016547, -0.050159004, -0.032258697, -0.0058850325, -0.01623833, 0.019821117, 0.007969315, -0.0015393719, 0.010332864, 0.00065942673, -0.01085734, 0.0059701744, -0.014644467, -0.012362655, 0.0031775087, -0.012587431, -0.0047611548, -0.03212247, 0.0052141114, 0.009283911, -0.019139979, 0.0032541368, 0.008085108, -0.024561837, -0.0058816266, -0.021346865, -0.011395439, -0.007948881, -0.0018526954, 0.052284155, -0.010278373, -0.012887131, -0.018431595, 0.021728303, -0.03460181, 0.038279958, 0.005987203, 0.031659294, -0.012097011, -0.005459321, -0.021088032, 0.0013103392, 0.0022494583, 0.011095738, -0.0074107815, -0.00602126, -0.011804122, 0.017096564, -0.0016730452, 0.0049484675, 0.017954798, -0.022967974, -0.0059701744, -0.0736174, 0.010877774, -0.0031894287, -0.011872236, 0.010285184, -0.03174103, 0.025392825, -0.0060246657, 0.014235784, 0.021237884, -0.011953972, 0.00037334877, 0.0035521346, 0.015352851, -0.027953904, -0.02013444, 0.020243421, -0.009038702, 0.015720665, 0.011020813, -0.008452923, 0.031196121, 0.006821597, 0.017219169, 0.0076423683, 0.012008463, 0.009072758, 0.010230693, -0.0107960375, -0.019998211, -0.00977433, -0.01465809, -0.00069774076, 0.0070361556, -0.009140872, -0.0049689016, -0.0054865666, 0.02956139, 0.024071418, 0.058359906, -0.011770065, -0.014113179, 0.013806667, -0.01347291, -0.024807047, -0.012103822, -0.019139979, 0.014617221, 0.013793045, 0.003868864, 0.00858915, 0.008616396, -0.031904504, -0.04056858, -0.02743624, -0.0032047543, 0.036236543, -0.010080842, -0.024888784, -0.020897314, 0.022041626, 0.020706596, 0.002087688, -0.02403055, 0.009699405, -0.0031366406, -0.015638929, -0.0060280715, 0.024847915, -0.017900307, -0.005483161, -0.011061681, 0.0028199113, -0.008350752, -0.034710795, 0.027109293, 0.0039267605, 0.006174516, -0.021660188, 0.019289829, 0.004658984, -0.009992295, -0.016320067, 0.0015351148, 0.008527848, 0.011381816, 0.00725412, 0.00075734034, -0.0061166193, -0.0014618925, -0.009263477, 0.012648733, 0.018295366, -0.016946714, -0.009120438, 0.018240876, -0.017655097, 0.03084193, 0.029779354, 0.015557192, 0.019058242, -0.009065947, -0.008214524, -0.024820669, 0.008527848, -0.017995667, -0.005384396, -0.018363481, 0.001094078, 0.019344319, 0.02986109, -0.0020263856, -0.021360489, -0.0057862676, -0.0010634267, 0.032858096, 0.008500602, -0.015271114, -0.015243868, 0.0049382504, -0.00029395364, 0.006239224, -0.01204252, -0.024548214, 0.030732946, 0.01712381, 0.015788779, -0.02161932, -0.002261378, -0.012587431, -0.0048190514, 0.009181741, 0.0036679283, 0.003593003, -0.009951427, -0.005571709, -0.015325605, 0.024684442, -0.010155768, 0.05912278, 0.03108714, -0.010503148, 0.013786233, 0.0037428534, -0.012907566, -0.0006509125, 0.0014329441, -0.0029476248, -0.034710795, 0.032449413, 0.01648354, -0.0145899765, -0.007233686, -0.028880252, 0.021850908, 0.003671334, 0.03125061, -0.0065253023, 0.0052583856, 0.024057794, 0.029942827, 0.008766246, -0.0077036708, -0.0070361556, 0.0052583856, 0.047053013, -0.004802023, -0.0054797553, -0.0094269505, -0.0079148235, -0.021701057, -0.019671265, -0.016211085, -0.010830094, -0.012376278, 0.018785786, -0.0058611925, -0.0020331969, 0.029779354, -0.019330697, 0.024466477, -0.0112047205, -0.039914686, 0.012103822, -0.007131515, -0.008139599, -0.010973133, -0.009311156]" 26832636,A top audio engineer explains NPR’s signature sound (2015),https://current.org/2015/06/a-top-audio-engineer-explains-nprs-signature-sound/,286,1618573153,187,paulpauper,"[0.035632484, -0.0023956948, 0.035291877, -0.010801096, 0.0017324985, 0.0049682423, 0.009202874, -0.01771144, -0.046951037, 0.001165097, 0.014934203, 0.010447391, -0.011246502, -0.023907823, -0.021641493, 0.003926778, 0.020541077, 0.007997658, 0.019139359, -0.031964432, -0.021562893, -0.00056658266, 0.0013566872, 0.024287729, -0.0070347954, -0.0034420716, 0.021811796, 0.0010627519, -0.023265915, -0.0025004963, 0.017239833, 0.016689627, -0.03550148, 0.0042280825, -0.031335626, -0.021431891, -0.027877178, -0.026671961, 0.016702726, -0.030602014, 0.006579564, 0.006294635, -0.0020141522, -0.012170065, 0.0004228901, 0.015078304, -0.0031063796, 0.022047598, 0.008593717, 0.0052007707, 0.012202815, -0.012287967, -0.019493064, -0.0062455097, -0.013859988, -0.026095554, 0.013191879, 0.020069472, 0.015667813, -0.0220607, -0.0021189537, 0.015707113, -0.014252993, 0.014252993, -0.038750324, 4.0810122e-05, 0.01327703, 0.01616562, -0.019584766, -0.0044769854, 0.020527977, 0.03034001, -0.0041298307, -0.0015278081, 0.009353527, 0.006576289, -0.003026141, 0.004002104, 0.019021457, -0.013139478, 0.017397035, 0.018248547, -0.017331535, 0.025597747, 0.005393998, 0.0005850048, 0.01615252, 0.015222406, -0.002731387, 0.014894902, 0.01182291, 0.041448962, 0.043151986, 0.008960522, 0.004047955, 0.03620889, 0.007919057, 0.02517854, -0.0073754, -0.017449437, -0.0055479254, 0.0012019413, -0.0036877, -0.010702845, -0.00087853067, 0.012772673, 0.008691967, -0.00554465, -0.0028918642, -0.03542288, 0.004702964, 0.014724599, 0.007329549, -0.03385086, 0.018602252, 0.022217901, 0.012386218, -0.023724422, -0.013506283, 0.0019928645, 0.033379253, 0.00138125, 0.016859928, -0.013715886, 0.008587167, 0.0040938053, -0.03104742, 0.0017898118, -0.007847006, -0.005682202, 0.024602134, -0.026069352, 0.02061968, 0.027510373, -0.01323118, 0.029816004, -0.0072574983, 0.016008416, -0.020357676, -0.03476787, 0.026737463, 0.013015026, -0.03398186, -0.008194161, -0.0011544531, 0.029920805, 0.0036549496, 0.006579564, 0.030654415, 0.02724837, 0.0036647746, -0.010879697, 0.00020540669, 0.019008357, -0.014239893, 0.02056728, 0.013755186, 0.02882039, -0.012438619, 0.005832854, 0.027798576, 0.02000397, 0.023829224, 0.0020583654, -0.0025299718, 0.02669816, 0.005377623, 0.0042477325, -0.0047848397, 0.017213633, 0.009071873, -0.010630794, 0.001966664, 0.013191879, 0.0221655, 0.015392709, -0.017921044, 0.0068710432, -0.015379609, -0.03159763, 0.023318317, 0.0060064313, 0.020816183, 0.032567043, -0.0002965962, 0.012255216, 0.015471309, -0.0110631, -0.0016760039, -0.003926778, -0.015222406, -0.00043025895, -0.011685358, 0.004869991, -0.63886946, -0.0110893, 0.017423237, 0.0020845658, 0.010670095, -0.0029868404, -0.012346917, -0.00662869, -0.019689567, 0.0017439611, -0.0034551718, -0.00808936, 0.016859928, -0.022270301, -0.029213395, -0.021654593, -0.0025692724, -0.00010889523, 0.01401719, -0.012019413, -0.034951273, 0.022021398, -0.032698043, 0.0028296383, 0.020056373, -0.0099168345, -0.0018487625, -0.008541316, 0.0060391817, -0.00514182, -0.023095613, 0.012517219, 0.010467042, -0.0007385225, 0.044776406, 0.017410137, -0.017632838, 0.037990514, 0.015143805, 0.016087018, -0.0026069353, -0.020095672, 0.008790219, 0.0032979697, -0.030628216, -0.005678927, 0.021261588, 0.02282051, 0.021890396, -0.014541197, -0.003088367, 0.012667872, 0.0067072907, 0.010689745, 0.020816183, -0.018379549, 0.024824837, -0.017226733, -0.013768286, -0.0018291123, 0.01697783, 0.026108654, -0.027955778, 0.0013411307, -0.028898992, 0.013185329, 0.0005686296, -0.026960164, 0.023724422, -0.00810901, 0.0073622996, 0.03167623, -0.019401362, -0.022571607, 0.0020616404, 0.0016129593, 0.01032294, -0.01183601, 0.016545525, 0.02574185, 0.003933328, -0.013519383, -0.020292174, -0.01776384, 0.03026141, -0.015942916, -0.024785535, -0.01616562, 0.023174213, -0.03995554, -0.024130527, 0.019493064, 0.004002104, -0.016597925, -0.01917866, 0.009405928, -0.005233521, 0.023803022, -0.00014686528, -0.008266212, -0.010021635, -0.014986603, 0.007820806, 0.00405123, 0.03034001, -0.0046341876, 0.014436396, -0.010860047, 0.020934084, -0.017148132, -0.0034322464, -0.018366449, 0.00067875296, -0.019047659, 0.02136639, -0.022021398, 0.040165145, 0.0026102103, 0.008973622, -0.004359084, 0.023134913, 0.0060457317, 0.0112006515, 0.0032357438, -0.0008711618, 0.014148192, 0.013859988, 0.0047619147, -0.0044016596, -0.010539093, 0.002574185, 0.025322642, 0.022348903, 0.0047389893, 0.0071461466, 0.023082513, 0.0221131, -0.022977712, 0.0074212505, -0.04262798, -0.019296562, -0.012720272, 0.0015621962, -0.01767214, -0.015851215, -0.037387908, -0.013545584, -0.012379668, 0.007840456, -0.0011315278, 0.011318553, -0.01404339, 0.0063634114, -0.0015843028, 0.0010242701, 0.0065369885, -0.0031849807, -0.03403426, -0.027719976, 0.004866716, 0.011881861, 0.019414462, -0.011325103, -0.008298962, -0.0075064017, -0.020069472, -0.019702667, -0.0047389893, 0.0035010225, -0.015615411, 0.03172863, 0.007617753, 0.012333817, -0.01851055, -0.0021975548, -0.0019928645, -0.015602311, 0.002772325, -0.024890337, -0.039772138, -0.0047520893, 0.006134158, -0.0116067575, 0.00810246, 0.036444694, -0.0044638854, 0.011875311, -0.004149481, -0.03846212, 0.038226318, 0.0014696762, 0.0069037937, -0.026016952, 0.030523414, -0.0038449022, -0.0049616923, 0.0065861144, -0.01554991, 0.016034618, 0.008312062, -0.0103556905, 0.006517338, 0.014200592, -0.026200354, 0.025244042, -0.01703023, 0.01108275, -0.02285981, 0.023069413, 0.0133425305, 0.004856891, -0.0018569501, -0.0044082096, -0.02004327, -0.006055557, 0.009563129, 0.00028779454, 0.01399099, 0.015156905, 0.010958298, -0.016755126, 0.011338203, 0.03468927, 0.0064321873, -0.024025725, -0.013152578, -0.006726941, 0.002176267, 0.0035173977, -0.024837937, 0.0033798458, 0.009419028, -0.0016145969, -0.006049007, 0.008292412, -0.023017012, -0.0038842026, -0.0063666864, 0.023161113, 0.0069103437, 0.02060658, 0.005695302, 0.005040293, -0.025414344, 0.013119828, -0.023383817, 0.018798755, -0.0070478953, 0.0024169828, -0.011364404, -0.003766301, -0.0026707987, -0.008718168, -0.011488856, 0.015890514, 0.003314345, -0.0014778638, -0.011541257, -0.002135329, 0.017593538, 0.009006372, 0.005983506, 0.008626467, -0.024169827, -0.0065435385, 0.0026151228, 0.0036221992, -0.013152578, -0.0010103512, 0.003135855, -0.0055086245, -0.01621802, -0.0011110588, -0.002690449, 0.019859869, 0.0050501185, 0.004490086, 0.013794486, 0.024300829, 0.020423176, -0.0025938351, -0.0025201465, 0.023698222, -0.012988826, -0.014331594, -0.011148251, 0.016126318, -0.029763604, -0.023829224, -0.0086788675, -0.010237789, 0.014619798, -0.0133097805, 0.02806058, 0.0055479254, -0.020174274, 0.004945317, -0.009857884, -0.016047718, 0.0069627445, -0.005701852, -0.014698399, -0.028217781, -0.026134854, 0.017187433, 0.0056003258, -0.016414523, -0.029082393, -0.0073622996, -0.02058038, 0.010041286, 0.008377563, -0.01324428, 0.013185329, 0.023357617, -0.015301007, -0.010113337, 0.0067040157, 0.025532246, 0.020999584, -0.0132966805, -0.006576289, -0.026357558, 0.014344694, 0.09453088, 0.023370717, 0.017357735, 0.02001707, -0.01847125, -0.0099364845, -0.026056252, -0.018982157, 0.022047598, -0.0008265393, -0.002295806, 0.016611025, 0.02288601, -0.013663485, -0.011397154, -0.0030850917, -0.0007725011, -0.046374626, -0.009700681, -0.0046145376, -0.01324428, -0.0010390078, 0.00066810905, 0.031440426, -0.008312062, -0.00027428498, 0.011744309, 0.009451778, 0.019715767, -0.025257142, 0.009884084, -0.0013517746, 0.010735596, -0.012464819, -0.0141612915, 0.0037237254, -0.00092929386, -0.0057215025, -0.008344813, -0.010257439, -0.0012666234, 0.018798755, 0.017960344, -0.018392649, 0.012392768, -0.018746354, 0.015392709, 0.011560907, -0.010224689, 0.007591553, 0.004372184, -0.029973205, -0.025781149, 0.017829342, 0.01852365, -0.01843195, 0.018183047, -0.01255652, -0.023554118, -0.0044147596, -0.0073622996, -0.0017668864, 0.013728986, 0.01103035, -0.022781208, -0.016820628, 0.012117664, 0.014318494, -0.026724363, 0.016571725, 0.013493183, -0.011678808, -0.029606402, -0.002032165, 0.043309186, 0.012189715, 0.035684884, 0.0034060462, -0.013493183, -0.018824955, 0.014960403, -0.0141612915, 0.023947125, -0.042365976, -0.019728867, 0.008999822, -0.0043492587, -0.0040807053, -0.0058688796, -0.011508506, -0.00027878815, 0.0086526675, 0.031859633, -0.012412419, -0.009229075, 0.018838055, 0.015772613, 0.029370598, 0.01923106, -0.0103622405, -0.012366568, -0.020462478, -0.009458328, -0.011731209, 0.008999822, -0.008521666, 0.017907942, -0.0028673012, -0.015392709, -0.027772376, 0.009864434, -0.017370835, -0.0058230287, -0.007067546, 0.03102122, 0.0145804975, -0.012753023, 0.019519264, 0.004932217, 0.012248666, 0.0077291047, -0.046034023, 0.018667754, 0.027641375, -0.027169768, 0.018169947, -0.00554465, -0.0037499259, -0.026737463, 0.00034654062, 0.0041167308, 0.031361826, -0.0056429016, -0.028427385, -0.04574582, -0.0369687, 0.005040293, -0.00059401116, -0.013886188, 0.0076505034, -0.017947244, 0.00059237366, 0.005692027, 0.0052793715, 0.016414523, -0.023724422, -0.013401481, 0.0076308534, -0.0016219657, 0.01695163, 0.0019486514, 0.015916716, -0.02517854, -0.015222406, 0.0058787046, -0.027038766, 0.015235506, 0.009412478, 0.012366568, 0.007283699, 0.03248844, 0.019728867, -0.012818524, 0.027117368, 0.016781328, -0.0012248666, -0.0120390635, -0.013466982, 0.0029770152, 0.004706239, 0.032593243, 5.6596862e-05, -0.013571784, 0.009877534, 0.0056527266, 0.0047324393, -0.017174333, 7.246036e-05, -0.01771144, -0.0025054088, -0.008606817, -0.006838293, -0.024824837, 0.021549791, -0.010119887, 0.002543072, 0.007899407, -0.014148192, 0.0074867513, -0.02658026, 0.01773764, -0.0069103437, 0.022728808, -0.0013615997, -0.008377563, -0.018733254, -0.029318197, -0.03964114, -0.00810246, 0.0001990613, 0.000589508, 0.004801215, 0.000983332, 0.012458269, 0.024851037, 0.0051188944, -0.0120456135, -0.041082155, 0.0048470655, -0.004113456, -0.021995198, -0.0023400192, -0.026213456, -0.0036516744, -0.00079010444, 0.010178838, 0.0006783436, 0.004928942, -0.033012446, -0.039405335, 0.027719976, -0.009975785, 0.021143686, 0.013218079, 0.016663427, 0.01769834, -0.024143627, -0.015196206, -0.003907128, 0.0061505334, -0.008783669, 0.024051925, -0.0029983032, -0.011095851, -0.00050190056, 0.007925607, 0.0037564759, 0.0069758445, -0.02654096, 0.023920923, 0.004883091, -0.008325162, 0.004218257, -0.0024759336, -0.009189774, 0.0063765114, 0.013015026, 0.015104504, -0.005138545, -0.017501837, -0.020724481, 0.029685002, 0.025257142, 0.019073859, 0.022728808, -0.0049944427, -0.00812866, -0.007218198, -0.0018978883, -0.014816301, -0.024274629, 0.021851096, -0.025375044, 0.018890455, -0.0040348545, 0.01852365, -0.013571784, 0.011567457, 0.0133097805, 0.024759335, -0.00084496144, 0.0043066833, 0.0008629742, 0.008312062, -0.007224748, -0.016611025, -0.03159763, -0.0147639, 0.012019413, -0.005308847, 0.012753023, 0.018078245, -0.033353053, 0.0028329133, 0.0035992737, -0.0014934202, -0.0019421013, 0.015156905, 0.008633017, -0.020750681, -0.017881742, -0.02058038, -0.0112006515, -0.011501956, 0.00222048, -0.008488915, 0.00096286304, 0.0078077056, -0.01180326, -0.008567516, 0.011488856, -0.0008711618, -0.013755186, 0.016453823, -0.014357794, -0.013899288, 0.029737404, -0.0221786, -0.0295016, -0.0076439534, -0.009215975, 0.018248547, 0.005980231, 0.014121992, -0.004699689, 0.020999584, 0.0029278896, -0.0061014076, 0.0069037937, 0.01029674, -0.0026347733, -0.006733491, 0.024746235, 0.0058099288, 0.0057935533, -0.0021877296, 0.01030984, 0.013440782, -0.016676527, 0.013571784, 0.013859988, 0.014239893, -0.027798576, -0.016519323, 0.02141879, -0.00516802, -0.037938114, 0.005904905, -0.014266093, 0.0062062093, -0.0010332766, 0.021851096, 0.014934203, -0.016545525, -0.014881802, -0.004162581, -0.029082393, -0.003979179, -0.022414403, -0.018012743, -0.0018340248, 0.0517195, -0.008999822, 0.004945317, -0.021995198, -0.0052204207, -0.033615056, -0.0065337135, -0.0009407565, -0.0049584173, 0.015484409, -0.0024104326, 0.010218139, -0.014698399, -0.011953912, 0.009340427, 0.003995554, -0.018052045, -0.000102140446, 0.019165559, 0.008030409, -0.0035861735, -0.042287372, -0.00961553, 0.013571784, -0.0020108772, 0.026396858, 0.03835732, -0.010794546, -0.013060877, 0.017449437, 0.0035763485, 0.020920983, 0.0056036008, 0.013571784, -0.020737581, -0.0076963543, 0.0147377, 0.011547807, -0.01183601, -0.009543479, 0.0062684347, 0.01258927, 0.02078998, -0.017174333, -0.020252874, 0.020698281, -0.005836129, 0.018012743, 0.011325103, -0.036418494, 0.0057837283, 0.02364582, -0.024877237, -0.02646236, -0.01627042, -0.023449318, 0.024143627, 0.0018078245, -0.026056252, 0.0023940573, -0.00036086896, 0.00481759, -0.03306485, -0.012268316, -0.020265974, -0.022741908, -0.016519323, 0.013886188, -0.009477979, -0.003998829, 0.020187374, -0.016283521, -0.014462596, -0.00147377, -0.0058197537, 0.013624185, 0.0072443984, 0.015825015, 0.007991108, -0.012242116, -0.059998814, -0.013408031, 0.010067486, -0.020698281, 0.008043509, 0.21306129, 0.0015016078, -0.012032513, -0.0018831505, -0.0133425305, 0.010578393, 0.0031636928, 0.025506046, -0.0120587135, -0.008384113, 0.021523591, 0.018733254, -0.033746056, 0.0009784196, 0.009772733, -0.037911914, -0.047684647, -0.042365976, -0.0221262, -0.0030097659, 0.013964789, -0.0145935975, 0.014252993, 0.0099233845, 0.0368377, 0.033667456, 0.006864493, 0.0039464287, 0.046086423, 0.013912388, -0.012759573, -0.01256307, 0.0116067575, 0.017606638, -0.013427682, 0.0045523117, -0.0147639, -0.003546873, -0.0036287492, 0.01324428, 0.0044573355, -0.007912507, 0.0067596915, -0.005904905, 0.015222406, 0.0024824836, 0.00056535454, -0.0022532304, 8.489529e-05, 0.023737522, -0.0033094324, 0.01182946, 0.01995157, 0.023999525, 0.01106965, -0.00056699204, -0.0010103512, 0.003933328, 0.007892857, 0.018589152, -0.01105, 0.047710847, -0.015196206, 0.01032294, -0.028401185, 0.038671724, 0.011298903, 0.008626467, 0.024497332, -0.027929578, -0.011351304, -0.0017848992, -0.019833669, -0.01554991, -0.0045162863, -0.022388203, 0.04157996, 0.01771144, 0.048968464, 0.038226318, 0.01182946, 0.016715826, -0.020960284, -0.01108275, 0.01033604, -0.022990812, 0.026226556, -0.0116395075, 0.017174333, -0.021051984, 0.007663604, -0.01179671, -0.02140569, -0.011167902, -0.005692027, -0.017462537, 0.008436514, -0.006573014, -0.03607789, 0.0012346917, -0.009307676, 0.026409958, 0.0043394337, 0.024182927, 0.008914671, -0.016480023, 0.016558625, 0.032278836, 0.019610966, -0.019388262, 0.012150414, -0.020737581, 0.013938589, -0.009373177, 0.030706815, 0.029396798, -0.0019715766, -0.020410076, 0.004712789, -0.0033405453, -0.008724718, -0.010408091, 0.012687522, 0.01697783, 0.0033569206, -0.0023744071, 0.0019895895, 0.025440544, -0.0046145376, -0.032567043, 0.020685181, 0.013021576, 0.013689686, -0.011947362, 0.00092028745, -0.03534428, 0.017331535, -0.029291997, 0.0050009927, -0.011888411, 0.016571725, -0.0022794309, 0.02591215, -0.013355631, 0.011436455, -0.022270301, 0.021051984, -0.010539093, -0.012399318, 0.0020550904, 0.011226852, 0.0031342173, -0.020737581, -0.011292353, -0.0025790974, 0.0037335507, -0.00404468, -0.02443183, -0.0053546974, 0.018903555, -0.045929223, 0.006566464, 0.020265974, -0.013453882, -0.014462596, -0.0052695465, -0.16453823, 0.0145804975, 0.026816063, -0.013689686, 0.015877414, 0.005410373, 0.033431653, -0.002656061, -0.019152459, 0.0041724066, -0.009012922, -0.0038842026, -0.0060850326, -0.011554357, -0.019021457, -0.025584647, -0.018196147, 0.01768524, -0.008344813, 0.019126259, 0.024785535, -0.011449555, 0.02654096, -0.015379609, -0.0031997184, 0.015353408, 0.0150259035, 0.02291221, 0.00057108584, -0.023318317, -0.008993272, -0.013558684, -0.008495465, -0.013584884, 0.023017012, -0.007604653, -0.00016651554, 0.001994502, 0.008580617, 0.02584665, 0.02291221, 0.009838234, -0.00888847, 0.013597984, -0.009903735, 0.0039529786, 0.0025021338, 0.015327208, -0.0012412418, 0.0046734884, 0.0024841211, -0.027536573, 0.005410373, 0.009884084, 0.00016559444, -0.011364404, -0.005754253, 0.007106846, 0.022990812, -0.0014410195, -0.0069627445, -0.022191701, 0.026082454, 0.0062422347, -0.020279074, -0.015314108, -0.011416805, 0.0221, -0.009759632, -0.0025414345, -0.018366449, -0.012530319, 0.018130645, -0.032069236, 0.0072574983, 0.01767214, -0.026737463, -0.049702074, 0.017449437, 0.024274629, 0.00039464285, 0.010414641, -0.043099582, 0.018589152, -0.039064728, -0.0054267487, -0.012333817, 0.012032513, -0.012969175, 0.01549751, 0.017462537, 0.004264108, -0.013951689, -0.011580557, 0.014121992, 0.02439253, -0.006196384, 0.007100296, -0.005086144, -0.023265915, -0.0006402712, -0.022558505, -0.0221131, 0.0221393, 0.040138945, -0.0041724066, -0.017488737, 0.014200592, 0.03780711, 0.0064649377, -0.037440307, 0.02137949, 0.03243604, 0.033772256, -0.022794308, 0.018405749, 0.01616562, -0.0038842026, 0.010938648, -0.01553681, 0.06440047, -0.003690975, -0.02798198, 0.006274985, -0.008764018, -0.029265797, -0.111194305, -0.028505987, 0.017226733, 0.010558743, -0.012523769, 0.026305156, -0.0030310536, 0.02727457, -0.028139181, 0.053265322, 0.00078846695, -0.04202537, -0.0009988885, 0.0054365736, 0.01108275, 0.007905957, -0.00964173, -0.030733017, -0.023148013, 0.017855542, -0.008613367, -0.018654652, -0.007015145, -0.0030965544, -0.0221655, -0.009785833, -0.025008239, 0.021903496, 0.0064714877, -0.011246502, 0.02285981, -0.018366449, 0.0007041345, -0.044776406, -0.024851037, 0.0013165679, 0.010853497, -0.012654771, 0.0099495845, -0.032671843, -0.017226733, 0.00884262, 0.008744368, -0.023501718, 0.033746056, 0.0062553347, -0.030130409, 0.035056073, -0.014397095, -0.0013976252, -0.035711084, -0.008462715, -0.032776643, -0.028270183, 0.0443048, -0.006288085, 0.0069168936, -0.007604653, -0.042994782, -0.025401244, -0.019362062, 0.0049027414, -0.017501837, -0.0017996369, 0.0034453466, -0.009857884, -0.025427444, -0.015091404, 0.0019814018, -0.024602134, -0.0075784526, 0.010434291, -0.0017979994, 0.041710965, -0.023226615, 0.009818583, -0.03406046, -0.012287967, 0.011678808, 0.019086959, 0.004355809, -0.01844505, 0.01625732, -0.015877414, -0.0149997035, 0.01326393, 0.028453585, 0.008390664, -0.013414581, -0.028427385, -0.02291221, 0.023803022, 0.012340367, 0.0055610253, -0.021968998, -0.0028083506, 0.018025843, -0.00738195, 0.009124273, -0.0086788675, 0.0039726286, -0.018222347, -0.034165263, 0.008731268, 0.029632602, -0.005318672, -0.0071330466, -0.019715767, -0.0035763485, -0.01768524, -0.00012496341, -0.0006963563, -0.020069472, 0.012844724, -0.011849111, -0.013951689, -0.030602014, -0.0063666864, 0.014239893, -0.01257617, 0.013820687, 0.000921925, 0.007322999, 0.028243983, 0.00025381593, -0.0046833134, -0.009104623, -0.02077688, -0.014449496, -0.0065238886, 0.00042575577, -0.004142931, 0.020816183, -0.032095436, 0.0062193093, 0.02512614, -0.0055118995, -0.018811855, -0.0013746999, 0.013833787, -0.00066565274, 0.0004101993, -0.034296263, -0.026344458, -0.004663663, -0.017213633, -0.0067072907, -0.0028083506, -0.027012566, 0.013820687, 0.0099168345, 0.013702786, 0.039772138, -0.00019547921, 0.0016981105, -0.015563011, -0.032147836, 0.007984558, -0.0035697983, 0.010041286, 0.014082691, -0.032881446, 0.0295016, 0.031519026, 0.0037171755, -0.024720035, -0.012196265, -0.009962685, 0.014698399, 0.0017112107, -0.004444235, -0.034191463, -0.016335921, -0.0016645413, 0.039064728, 0.041606165, 0.013702786, -0.0013837062, -0.016519323, -0.006514063, -0.018982157, 0.012831624, 0.00020530434, 0.01615252, 0.015969116, 0.005583951, 0.03479407, 0.005367798, -0.010801096, -0.005315397, 0.013506283, 0.02059348, -0.01403029, -0.0061505334, 0.0027674125, 0.018169947, 0.025650147, 0.0041920566, 0.0075653526, -0.0040315795, -0.005633076, 0.011154801, 0.014724599, 0.005243346, 0.0028771264, -0.040924955, -0.006510788, 0.01182946, -0.035239477, -0.0514575, 0.021117486, 0.010630794, -0.012019413, 0.013100177, 0.005308847, 0.0029933907, -0.019846769, 0.01848435, -0.0518505, -0.00885572, -0.018628452, 0.004719339, 0.027746176, -0.00589508, 0.020449378, 0.015078304, 0.017082632, 0.0030245036, 0.019414462, -0.007336099, 0.007617753, 0.0022303052, 0.012523769, 0.005413648, -0.009805483, -0.0065271636, -0.023986425, 0.021012684, 0.026881564, 0.034243863, -0.022663306, 0.0884524, -0.006507513, -0.004362359, 0.019715767, -0.016008416, 0.0075653526, -0.004575237, -0.015261707, 0.015065204, -0.0067040157, 0.02282051, -0.0014516634, 0.036339894, -0.010467042, -0.005839404, 0.020331476, 0.0046702134, 0.023947125, -0.018196147, -0.014292293, 0.0006398618, 0.005256446, 0.0075064017, -0.008750918, -0.029265797, 0.009451778, 0.021602193, -0.017868642, -0.008731268, -0.028139181, 0.009884084, 0.0020812906, -0.058583993, -0.0052695465, 0.009124273, -0.01179671, 0.002471021, -0.018785654, 0.013427682, 0.0060850326, 0.030759217, 0.0052171457, -0.022781208, -0.008397214, 0.04813005, -0.014645998, -0.014174392, -0.022663306, -0.013755186]" 29138991,Arcane Algorithm Archive,https://www.algorithm-archive.org/,130,1636289132,15,max10541,"[0.01584703, -0.009890684, -0.0030912673, -0.04373012, 0.01267351, 0.004753423, -0.017286422, -0.006227087, -0.029116858, -0.026347741, 0.022290025, 0.0009861554, 0.006895377, 0.0057267267, -0.0055553704, -0.0010521276, 0.019438656, -0.010445879, 0.00956168, -0.006772, -0.023688292, 0.0084033115, 0.0036190446, -0.012783178, -0.03185856, 0.016038947, 0.0025891934, -0.038027383, 0.015051936, -0.02829435, 0.036738787, -0.0075945104, 0.00239042, -0.013242413, -0.013468604, -0.011343786, 0.024044713, 0.011755041, 0.0216046, -0.011789312, 0.011569976, -0.0021333857, 0.003930913, -0.024277758, 0.006741156, 0.008924235, 0.010295086, -0.01573736, 0.005788415, 0.0196717, 0.010363627, 0.01130266, -0.016532453, -0.015175312, 0.0074642794, 0.025141394, -0.012529571, 0.0161212, 0.009438303, 0.0010701199, 0.010322502, -0.006281921, -0.013681085, -0.0010341351, 0.0102196885, 0.018451644, -0.012413049, 0.008485563, 0.0016347389, 0.0051920954, 0.01573736, 0.026786413, -0.0010255673, -0.003343161, 0.0195072, -0.023578623, -0.0108023, -0.029637782, 0.00090561796, 0.0055759335, 0.0041399677, 0.012467883, 0.017135628, 0.017039668, -0.0183831, 0.0008383606, 0.022728696, 0.0064190063, -0.037643548, -0.0183831, 0.0057575707, 0.00485281, 0.003941194, -0.006552664, -0.03279074, 0.0077041783, -0.015942989, 0.0146406805, 0.0038520892, -0.0050858543, 0.0029439009, 0.01212517, -0.015408357, -0.0039788927, -0.03150214, -0.025867943, 0.020302292, 0.02086434, 0.03131022, 0.022893198, -0.0033174576, 0.030103872, 0.009979789, -0.046800826, 0.011419183, -0.02488093, 0.02489464, -0.01675179, -0.0012877424, -0.022290025, 0.026731579, 0.022550486, 0.019726535, 0.020055538, 0.020096663, 0.021426389, -0.017259004, -0.013489166, 0.004427846, -0.031145716, 0.02792422, -0.0017581154, -0.002621751, 0.026375158, -0.012858575, 0.0123307975, 0.0020357126, 0.012694073, 0.005431994, -0.0073820283, -0.0045683584, 0.03196823, -0.0053977226, -0.034792177, -0.030597378, 0.03174889, -0.0041056965, 0.0004643755, -0.0051681055, 0.009027049, 0.0020682702, -0.003769838, 1.5207869e-05, 0.017656552, 0.040851336, -0.015490607, 0.031255387, -0.0020716975, -0.0209603, -0.00050678616, 0.009787871, 0.029665198, -0.013879859, -0.010610381, 0.020384543, 0.014969684, 0.02900719, 0.007717887, -0.009938664, -0.0039926013, 0.002697148, 0.014160883, -0.030898964, 0.0045512225, -0.00050293066, 0.010582964, -0.00030715612, -0.0034888138, -0.03377775, 0.007772721, 0.018794356, 0.0026834393, 0.029802283, 0.03405192, -0.0015953269, 0.0034374068, 0.028431434, 0.014942267, 0.0032386337, -0.008375895, 0.029308777, -0.0012106322, -0.010500712, 0.0018677834, -0.6242304, -0.021919895, -0.006549237, -0.02884269, -0.013242413, -0.015668819, -0.0057644253, 0.020549044, -0.0051509696, 0.009068174, -0.009671348, -0.00095531123, 0.0068165525, -0.019479781, -0.003769838, -0.015545442, 0.02113851, -0.04921352, -0.0021882197, 0.020384543, -0.009637077, 0.017012252, 0.007676761, -0.00619967, -0.010925677, 0.02415438, 0.012550134, -0.03835639, -0.005678747, -0.026950914, -0.00050935656, 0.01638166, -0.015819611, -0.0003270763, 0.042249605, -0.011474016, -0.0059323544, 0.00056419056, 0.023016576, 0.039946575, -0.022961741, -0.021837644, 0.017217878, 0.012975098, -0.0216046, -0.014928559, 0.034298673, 0.010624089, -0.021796519, -0.012728345, 0.0023013148, -0.018424228, -0.0072243805, -0.006388162, -0.0014839454, -0.009232677, 0.025950195, -0.013235559, 0.0069776275, 0.0011300946, 0.0019997277, 0.0055519436, -0.015490607, -0.02626549, -0.007539676, -0.009643931, 0.0039960286, -0.012892846, -0.009410887, 0.0035128037, 0.023016576, -0.011645373, -0.018451644, -0.02168685, 0.0076630525, 0.028595936, 0.015668819, -0.021165928, -0.010589818, -0.021755394, 0.006614352, 0.011364348, -0.0032454878, -0.010487004, 0.017533174, 0.016628413, -0.013256121, -0.0040782792, 0.017176753, 0.02781455, 0.021727975, 0.008225101, -0.004945342, -0.0488571, 0.023167368, 0.011042198, -0.009678203, 0.0040028826, 0.008636356, -0.031090884, -0.0011146726, -0.017807344, 0.034161586, -0.006957065, 0.045978315, -0.0161212, -0.019150777, -0.002810243, 0.042304438, -0.018451644, -0.034189004, -0.026539661, -0.011583684, 0.0114671625, 0.027567798, -0.022550486, -0.00947943, -0.006607498, 0.0062990566, -0.0048219655, 0.029720033, -0.009506846, -0.009506846, -0.023222202, 0.011405474, -0.007347757, 0.019548325, -0.026251782, -0.03287299, -0.01812264, 0.009952373, -0.0016364525, -0.00960966, 0.0050310204, 0.028513685, 0.0046163383, 0.02442855, -0.016162325, 0.0039720386, -0.020905467, 0.0006117419, -0.013667377, 0.012296527, -0.023510082, -0.023948753, -0.009966081, -0.018067805, -0.00828679, 0.004475826, 0.020795798, -0.005082427, 0.009972936, -0.017231587, 0.040549748, 0.0026286053, 0.008444438, 0.008471854, -0.022660155, -0.0322424, -0.013879859, 0.0056924555, 0.014928559, -0.022002146, 0.00024996596, -0.0037732653, -0.005702737, 0.00018956288, 0.028952356, -0.030186122, -0.035121184, 0.006744583, -0.0058363946, 0.007950931, 0.024565635, 0.01565511, 0.049926367, -0.023441538, 0.00933549, -0.0017889595, -0.023208493, -6.5222484e-05, 0.018999984, -0.013194433, -0.004695162, 0.008622648, 0.013804462, 0.0366017, -0.004420992, 0.004253063, -0.017272713, 0.005946063, 0.012440465, -0.0108982595, -0.014270551, -0.0074025914, 0.015147895, -0.018808065, -0.01812264, 0.016422786, 0.044881634, 0.025045434, -0.008211393, 0.024140673, -0.0037047227, 0.010870842, -0.03690329, 0.0035984819, -0.031611808, 0.024126964, -0.013989527, 0.021248179, -0.013907275, -0.015038227, -0.005483401, 0.00241441, 0.012687218, 0.016724372, 0.020453086, -0.012406195, -0.009726183, 0.004157103, -0.0016604423, 0.0007312629, -0.014106049, -0.0005367735, 0.02755409, 0.016628413, 0.023948753, -0.013249268, -0.055766188, -0.005737008, -0.0018215172, -0.008108579, 0.012070336, 0.030981215, 0.013379498, 0.0216046, -0.016463911, 0.017163044, -0.0107131945, -0.024579344, 0.012879138, 0.03295524, -0.0032437744, 0.01949349, 0.013187579, 0.035011515, 0.016696956, -0.033613246, 0.009595952, -0.016189741, 0.01555915, -0.018108932, 0.0022036417, 0.0038726518, -0.011474016, 0.0030073028, 0.0094657205, 0.021563474, 0.026498536, -5.079107e-05, 0.0054525565, -0.021741685, 0.009266947, -0.02754038, -0.022440817, 0.013619397, 0.0039926013, -0.024168089, 0.0047362875, -0.021001425, -0.035313103, -0.005209231, 0.0029267652, 0.030707045, 0.0065321014, -0.006631488, -0.0088488385, 0.016792916, 0.032626234, -0.02829435, -0.018835481, 0.02608728, 0.027746009, 0.006038595, -0.015120478, -0.0035265123, -0.002018577, -0.015051936, -0.016792916, -0.0065903626, 0.028266931, 0.010226543, -0.009356053, -0.014339093, -0.0070256074, 0.01584703, -0.0084033115, -0.01638166, -0.010809154, -0.0013879859, 0.0003726999, -0.014914851, -0.013050494, 0.054587256, 0.013304101, -0.011234118, 0.008334769, -0.013406916, -0.016710665, -0.017368672, -0.011864709, 0.02205698, 0.005760998, 0.034380924, -0.015312397, -0.005188668, -0.012159442, -0.0014256842, 0.017272713, 0.00054576976, -0.011926397, -0.008931089, 0.003068991, 0.058507886, 0.0161212, -0.02261903, -0.0038863604, -0.022742406, 0.025004309, -0.012180004, -0.015367231, 0.001555915, -0.005459411, -0.00097244687, 0.03616303, 0.0068096984, -0.0057438626, 0.028157264, 0.007148984, 0.017588008, 0.0033620102, 0.0038795061, -0.012844866, 0.0054731197, -0.0008747738, 0.012618676, -0.014860016, 0.0079098055, 0.0032626234, 0.03605336, 0.005188668, -0.028595936, -0.010843425, -0.005459411, 0.013071056, 0.018986275, 0.017108211, -0.026018737, 0.046170235, 0.021563474, 0.029418446, -0.0013896994, -0.0061345547, 0.018835481, -0.01675179, -0.004451836, -0.004427846, 0.016313117, 0.0041879476, -0.014668098, 0.035751775, -0.009828996, -0.028979775, 0.014421345, -0.023962462, -0.040165912, 0.0018403664, 0.013989527, 0.02213923, 0.0009784444, 0.015682526, -0.001093253, -0.05091338, -0.005346316, -0.009369762, -0.004595775, -0.020480502, 0.0048630913, -0.022207774, 0.00074882695, -0.004157103, -0.035751775, 0.03569694, -0.011604247, -0.032434314, -0.040467497, -0.008937944, -0.0028051022, 0.012406195, 0.038657974, 0.0020391396, 0.002841087, -0.003985747, -0.021549765, -0.033256825, -0.020645004, -0.048116844, 0.0049007894, -0.009123008, -0.0009750172, -0.010007206, -0.009554826, 0.022893198, 0.014585846, -0.0037218584, 0.019068526, 0.015120478, 0.009979789, 0.036738787, 0.016230866, 0.040961005, 0.01217315, -0.037561297, 0.004311324, -0.005435421, -0.0006490119, -0.008327915, -0.016354242, 0.0027674038, -0.008773441, 0.025785692, -0.010151146, -0.014901142, -0.006885095, 0.009143571, 0.026169531, -0.0070735873, -0.0022858928, 0.004907644, 0.022098105, -0.007532822, 0.0004969332, -0.042139936, 0.0017975273, -0.025566356, 0.008711753, 0.03816447, -0.029253943, 0.006775427, -0.017834762, -0.01812264, -0.010144291, 0.00037120053, 0.012180004, 0.023592332, -0.03651945, -0.009678203, -0.010295086, -0.028157264, 0.011439745, -0.020261167, -0.013694794, 0.00087306026, -0.00081180036, 0.008608939, -0.0039549028, 0.0036087632, -0.018629855, -0.034353506, -0.0069125122, -0.00033500153, -0.011480871, 0.027444422, -0.0089105265, 0.0014291113, 0.0097536, -0.025744567, -0.030268373, 0.010617235, -0.015353522, -0.006275067, 0.039836906, 0.0057164454, 0.04532031, -0.015613984, 0.0060694395, 0.006604071, 0.011789312, -0.018547604, 0.002697148, -0.0038109636, -0.007388883, 0.008081162, 0.0322424, 0.033092324, 0.017875887, -0.033750333, 0.008389603, 0.029418446, 0.004277053, -0.00878715, 0.0008250805, -0.027129127, -0.020905467, 0.0007449714, 0.015339814, 0.014476178, -0.018684689, -0.010644652, 0.024661595, 0.0027091426, 0.029747449, 0.020384543, 0.025826817, 0.003742421, 0.0037869737, 0.02159089, 0.017546883, -0.020823214, 0.0019603157, -0.040385246, 0.006168826, 0.004061144, 0.014942267, 0.014078632, 0.0072655063, -0.022440817, 0.0050138845, -0.004013164, -0.0010298513, -0.005863812, 0.0045477957, -0.014599555, -0.02518252, -0.0024229777, -0.014599555, 0.0017666832, -0.02900719, 0.0075945104, 0.012138879, 0.016820332, -0.013790754, -0.0009964368, -0.012029211, -0.0064018704, 0.03695812, 0.029363612, 0.012001794, 0.015518025, 0.0042462084, -0.0062442226, 0.026717871, 0.011974377, 0.016820332, 0.020946592, 0.021426389, -0.032187562, -0.010185417, -0.0031837996, -0.0065629454, -0.017217878, -0.013537146, 0.003927486, 0.016710665, 0.03205048, -0.023660874, -0.021357846, -0.015819611, -0.0025514949, -0.014722931, 0.009129862, 0.0041365405, 0.0019431802, -0.014914851, 0.03213273, -0.001759829, 0.025237352, -0.005867239, 0.006137982, 0.008691191, -0.012241692, -0.04271569, 0.014064923, 0.011090178, 0.014503595, -0.025676025, 0.0057575707, 0.011542559, 0.0190274, -0.0066417693, -0.016875166, -0.008074308, 0.034847014, -0.011494579, -0.02068613, -0.012001794, -0.0033842865, -0.017245296, 0.0006580081, -0.01647762, -0.007944077, -0.013900422, -0.005891229, 0.017437214, -0.0112067005, -0.0042976155, -0.004198229, -0.0023167368, -0.010514421, -0.015984114, -0.005617059, 0.02315366, -0.03120055, -0.0056341942, -0.030871548, -0.0249906, 0.010034624, 0.018437935, -0.013338373, -0.0101580005, 0.019479781, -0.027211377, 0.0013896994, 0.024551928, -0.008841984, -0.025018016, 0.01986362, -0.029747449, -0.022262607, 0.021357846, -0.013119036, -0.027759718, -0.016998542, -0.005459411, 0.010171709, -0.007861826, -0.0041399677, -0.014983393, -0.0053428886, 0.0054388484, 0.024743846, -0.008794004, 0.013489166, -0.016683247, -0.004660891, 0.034600258, -0.011227263, 0.020370834, -0.012885992, 0.0070324615, -0.012776324, -0.020425668, -0.012851721, 0.007813847, -0.00482882, 0.0017546883, 0.0021128228, -0.019452365, -0.0031889402, -0.0366017, -0.021577183, -0.005178387, 0.001638166, 0.0008614937, 0.02781455, 0.0014214003, -0.008883109, -0.003480246, 0.016326826, -0.011686498, 0.009767308, -0.037396792, -0.014942267, -0.0156414, -0.0027879667, 0.013201288, -0.013722211, -0.019630576, -0.009458867, -0.019932162, -0.0037252854, -0.003941194, 0.033805165, 0.019178195, 0.01849277, 0.023729417, 0.027581507, -0.006717166, 0.01528498, -0.0011438031, 0.0014830886, 0.009520555, 0.008129142, -0.00039990272, 0.0016347389, -0.023907628, -0.019973287, 0.009637077, 0.012618676, -0.0249906, 0.034929264, -0.012413049, 0.011617956, -0.0002163373, 0.0013631391, -0.0156414, 0.006422433, 0.0031341063, -0.04227702, -0.005647903, -0.0036498888, 0.0024709576, -0.013598834, -0.017327547, -0.008821421, -0.013982672, 0.01102849, -0.012687218, -0.026512243, -0.0051166983, -0.013852442, 0.034435757, -0.018835481, -0.0014702368, 0.018520186, 0.0023355861, -0.008375895, -0.005404577, 0.0014428198, -0.022358567, 0.0013108755, 0.017779928, -0.021618308, -0.006062585, -0.03202306, 0.02919911, 0.0061791074, 0.007669907, -0.013975818, -0.017533174, -0.03835639, 0.008581522, 0.024743846, 0.011604247, 0.008506126, -0.001011002, -0.0190274, -0.00627164, -0.029665198, -0.0020836922, -0.009328635, 0.014928559, 0.010493859, -0.021549765, -0.0146406805, 0.0015610557, 0.0022293453, -0.03819189, -0.034518007, 0.2263548, -0.016738081, -0.00082979276, 0.012241692, -0.026676746, 0.0020716975, 0.004715725, 0.019246737, -0.018246016, 0.0011746472, -0.006600644, 0.0130230775, -0.025429271, 0.0020117227, 0.0122691095, -0.020055538, -0.02626549, -0.013434332, 0.02004183, 0.019726535, -0.011508288, 0.0062887752, -0.028897522, -0.0038520892, 0.0009630223, 0.0036670244, -0.014297968, 0.0025634898, 0.0056958827, -0.0152575625, -0.021371555, 0.0070804413, -0.017917013, -0.00096387905, -0.020014413, -0.02234486, 0.054258253, -0.015161604, 0.014572138, 0.006035168, -0.0049590506, -0.011234118, -0.0022516216, -0.0073066317, 0.012193712, -0.010253959, -0.001963743, -0.017779928, -0.016546162, -0.005195522, -0.015422065, -0.03926115, 0.027334753, 0.014352802, -0.0048562367, -0.0021008279, 0.006391589, 0.03588886, 0.015709944, 0.034326088, 0.0013665663, 0.019205611, -0.003248915, 0.0062887752, -0.008677482, 0.008471854, -0.01875323, -0.027951635, 0.00851298, -0.029253943, 0.023468956, -0.035943694, -0.004235927, 0.011131303, -0.0034442612, -0.014202008, 0.047239497, 0.008499271, 0.006007751, 0.020782089, 0.010144291, -0.006326474, 0.009260093, -0.013694794, -0.018904025, -0.0325714, 0.023112535, -0.0021967874, -0.008465, -0.016902583, -0.032708485, -0.011240972, -0.00015015094, -0.0055279536, 0.019342696, 0.0120223565, 0.0043764394, 0.011487725, 0.0035882005, 0.0013931266, -0.012618676, 0.031885978, 0.0052812006, 0.014832599, -0.022632737, -0.006494403, -0.02690979, -0.0040234453, 0.0311183, 0.0025686305, 0.0038075366, -0.02947328, -0.002006582, -0.012707782, 0.016984833, 0.016176032, 0.0063744537, -0.019822495, 0.0071626925, -0.0041365405, -0.032461733, -0.014709223, -0.02690979, 0.002237913, 0.011816729, -0.031365052, -0.026046155, 0.00045023861, -0.036738787, -0.007395737, 0.021536058, 0.0073614656, 0.0076493444, 0.01629941, -0.012008648, -0.038685393, -0.0038383806, -0.011933251, -0.016340535, 0.0096507855, -0.033969667, 0.0042016557, 0.017999263, 0.004503243, 0.008492417, -0.011474016, -0.0012243406, -0.004235927, 0.014791474, -0.002222491, 0.015682526, -0.0026148967, -0.031913392, 0.005185241, 0.016422786, -0.012296527, -0.010521275, -0.034792177, 0.008622648, 0.0022550486, -0.013537146, 0.0119606685, 0.05080371, 0.0023218775, 0.0013297247, -0.016189741, -0.17492048, 0.025566356, 0.0019363259, -0.040165912, 0.033695497, 0.019452365, 0.03303749, 0.0023561488, -0.027238794, -1.4913351e-05, 0.010007206, 0.0025874798, -0.001787246, -0.025223644, 0.004259917, -0.0018043816, 0.015120478, 0.021275595, 0.03588886, 0.006895377, 0.029857118, -0.02407213, -0.0032780457, 0.026046155, -0.0051715323, -0.0067582917, -0.003123825, 0.00022619028, 0.003601909, -0.024675304, 0.00542514, -0.010582964, 0.01702596, 0.011487725, 0.010041478, -0.0048562367, -0.0019688837, -0.00040075948, -0.003339734, 0.007539676, 0.024551928, 0.053545408, 0.009808433, 0.013482312, -0.009527409, 0.017300129, 0.040522333, -0.040906172, -0.020206332, 0.003386, 0.011761894, -0.01655987, 0.01939753, -0.012831158, 0.02810243, 0.008560959, 0.0041879476, 0.020727254, 0.010116874, 0.0010709767, 0.007148984, -0.024922056, 0.020946592, -0.006408725, 0.022934325, -0.012248547, -0.021426389, 0.023400413, -0.010226543, 0.0031066893, 0.011994939, 0.013461749, -0.00096987654, 0.0031563826, 0.0019226174, 0.0077932836, -0.035916276, 0.02234486, 0.024469675, 0.002045994, 0.0030929807, 0.001434252, 0.0076904697, 0.0046540364, 0.040302996, -0.012461028, 0.003903496, 0.006525247, -0.017272713, 0.006062585, 0.00050293066, -0.0042976155, -0.0021248178, -0.004801403, 0.018616145, 0.015435774, 0.012742053, -0.014695514, 0.024730138, -0.048363596, 0.01775251, 0.0056136316, 0.0037252854, -0.011501433, 0.050200537, 0.011974377, -0.036190446, -0.0032540557, -0.008608939, -0.01377019, -0.053792164, 0.010240251, 0.0038452349, 0.004133113, 0.01386615, 0.016984833, 0.003303749, -0.04447038, 0.0125158625, 0.024099547, 0.048336178, 0.0133932065, -0.013448041, 0.005832968, -0.011131303, -0.0151341865, -0.09343715, -0.011844146, -0.005243502, 0.027677465, -0.015435774, 0.018999984, -0.01602524, 0.016861457, -0.038685393, 0.037670963, -0.019260446, -0.02149493, -0.0061551174, 0.00024204074, -0.005212658, 0.0050104577, -0.032626234, -0.014147175, -0.03311974, 0.017656552, 0.010062041, 0.00823881, 0.020507919, 0.0048973626, -0.0076561985, -0.0067857085, -0.014380218, 0.028705604, 0.014722931, -0.012652948, -0.0034699647, -0.008273081, -0.019753952, -0.050392453, 0.0019620294, -0.010329356, 0.026375158, -0.009637077, 0.020603878, -0.018451644, 0.0046711722, -0.013262976, 0.0175743, -0.03177631, 0.014777766, 0.005349743, -0.022550486, 0.016148616, 0.011823583, -0.013125891, -0.015696235, -0.0217691, -0.01620345, -0.009904393, 0.035998527, 0.031365052, -0.00878715, 0.0016998543, -0.008800859, -0.011727624, 0.0031306793, -0.005904937, -0.002594334, 0.010487004, 0.028979775, -0.0062922025, -0.019438656, 0.010178563, 0.00801262, -0.013496021, -0.0038383806, 0.03937082, -0.03303749, 0.018506479, -0.007347757, -0.011426036, -0.012563842, -0.0031409606, 0.02636145, 0.008684336, -0.0014034079, -0.02150864, -0.0038657975, -0.009294365, 0.011151867, -0.018808065, -0.008581522, 0.010548692, 0.0057335813, -0.068981186, 0.029610366, 0.011035345, -0.004115978, -0.010582964, -0.010569255, 0.000550482, 0.006655478, -0.013406916, -0.004393575, 0.029610366, -0.028870106, 0.009164134, -0.05713704, 0.028513685, -0.0020871195, -0.01575107, -0.0012774611, -0.025936486, 0.00014640253, -0.0015704803, 0.028678186, -0.008931089, -0.03386, -0.020494211, -0.018191183, 0.007813847, 0.023893919, -0.02865077, 0.0054936823, -0.010370482, 0.019932162, 0.007635636, 0.008656919, 0.034271255, 1.7711278e-05, 0.002625178, -0.009129862, -0.006117419, -0.023112535, 0.010521275, -0.0071695466, 0.018931441, -0.01639537, -0.022303734, 0.00026795838, 0.014119757, 0.004211937, -0.0054799737, -4.725685e-05, 0.013571417, 0.028870106, 0.05061179, -0.010192271, -0.023633458, 0.010473296, -0.024538219, -0.007183255, 0.006501257, 0.003045001, 0.0016236007, 0.013029931, 0.0039720386, 0.037479047, 0.032077894, -0.0150108095, -0.041481927, 0.0040474352, -0.021207053, 0.035998527, 0.005161251, 0.00036734503, -0.021289304, 0.05436792, 0.003821245, 0.008040036, -0.013221851, -0.0061242734, -0.005123553, -0.0075945104, 0.015298689, 0.018890316, -0.03597111, 0.0070256074, 0.0012800314, -0.001548204, 0.02873302, -0.0027142835, 0.006501257, -0.012481592, 0.02013779, -0.020974008, -0.0015653396, 0.0049830405, -0.0018455071, -0.011364348, 0.011768749, 0.02818468, -0.021549765, 0.0152575625, 0.0056307674, 0.0020048684, -0.0002578912, -0.006161972, 0.003762984, 0.0016321685, 0.004390148, -0.01157683, -0.010322502, -0.0071147126, 0.009225822, 0.014914851, -0.0055348077, 0.008588376, 0.007436862, -0.00078524015, -0.011220409, -0.027567798, -0.0019774514, -0.012892846, -0.03311974, 0.0064806943, 0.0063470365, 0.012831158, 0.024757555, 0.0038041093, 0.0005607634, -0.010055186, 0.021069968, -0.0016295982, 0.0043044696, -0.021303013, 0.01657358, 0.0031769455, 0.012831158, 0.01976766, -0.0060694395, 0.021385264, 0.016820332, 0.011234118, -0.024209214, 0.018725814, -0.009863268, -0.025676025, 0.0038075366, -0.01139862, -0.0036087632, -0.005075573, 0.006720593, -0.0023098825, 0.0018317986, -0.0031169706, 0.087789245, 0.039672405, -0.007101004, -0.0035299393, -0.01793072, 0.0027931074, 0.013125891, 0.010247106, 0.021371555, -0.033942252, -0.021892479, 0.0054799737, 0.0033997085, -0.021796519, -0.0025634898, 0.014215717, -0.015518025, 0.023016576, 0.0061345547, -0.02141268, 0.028486267, -0.0050070304, -0.00058646686, 0.0073546115, -0.024044713, -0.0036635972, 0.015874445, -0.005706164, 0.0068199798, -0.02919911, -0.0041845203, 0.0050961357, -0.023839084, -0.007148984, -0.007388883, -0.0018489342, 0.01949349, 0.00074240105, 0.027951635, 0.0143939275, 0.016052656, -0.0019620294, 0.011165575, -0.022207774, -0.018150058, 0.00025596344, -0.0094657205, -0.009801579, -0.032379482]" 4613413,The Most Revealing Job Interview Question,http://refer.ly/blog/most-revealing-interview-question/,578,1349372559,235,kevin_morrill,"[0.0022004591, -0.010671253, 0.008366938, -0.027651789, -0.008535705, 0.015253921, -0.0054849205, -0.018849952, -0.023419637, -0.012592599, -0.0023400164, 0.011008787, -0.0010726427, -0.01373502, -0.010093552, -0.0048487997, 0.037647974, -0.0302482, 0.0061340234, -0.010956859, -0.034558244, -0.027625825, -0.020187104, 0.011034751, -0.036012236, 0.021498293, 0.025431857, -0.0147086745, -0.0049234466, -0.012910659, 0.0059652566, 0.003180605, 0.0042061876, 0.027937394, -0.012865222, 0.02066744, -0.01777244, 0.00058175856, -0.004063385, -0.017227193, 0.016344413, 0.02627569, -0.013916769, -0.013812913, -0.012170682, 0.0009525587, 0.0004985923, -0.023510512, -0.0098339105, 0.01883697, 0.007529595, 0.010619326, -0.047851875, 0.019200467, -0.0022880882, 0.0143062305, -0.022445982, 0.028119143, 0.03042995, -0.009697599, 0.009373047, 0.036635373, -0.030455913, 0.0066240965, -0.0026791727, -8.30649e-05, -0.012871712, -0.0007249669, -0.002664568, -0.0054297466, 0.029780846, 0.03170219, -0.008983586, -0.015111119, -0.002515274, -0.008392902, 0.0025120287, -0.015799167, 0.008399393, -0.0023270342, -0.0069648754, -0.018434526, -0.012105771, -0.008587633, 0.0016763086, -0.021381453, 0.013488361, -3.0705614e-05, -0.023861026, 0.010035133, 0.004605386, 0.013579235, -0.00667927, 0.030637663, 0.0037647975, 0.03554488, 0.004232152, -0.000540784, 0.021459347, -0.0022410282, -0.00887973, 0.015370759, -0.028586498, -0.02791143, -0.0067961086, 0.016915625, 0.011579998, -0.0042386428, 0.032766722, -0.017344033, -0.0021761179, 0.030274166, -0.004141277, 0.0031643773, 0.01777244, -0.02772968, 0.0020901118, -0.007062241, -0.010138989, -0.0006572168, 0.028093178, 0.012183663, 0.009035514, -0.004222415, -0.0007829805, 0.011261937, -0.018823987, 0.0018320932, 0.0034564736, -0.013280648, 0.017357014, 0.022588786, 0.01216419, 0.008912184, -0.020498673, 0.02369226, -0.015864078, 0.018382598, -0.027885465, -0.011060716, 0.020485692, 0.022108449, -0.0065429583, -0.008327992, 0.019706767, 0.0072439895, 0.022199323, -0.015331813, 0.018629257, -0.0023789625, 0.012229101, -0.029702954, -0.00052536774, -0.006893474, -0.0010442445, 0.0014393859, -0.007107678, 0.016928608, -0.022484928, -0.025847282, -0.0012543916, 0.023938918, 0.0002537587, 0.015163046, -0.00054402946, 0.02166706, 0.023912955, 0.006250862, -0.0017363506, 0.005845173, -0.0026142625, 0.016344413, -0.044528466, 0.017668584, -0.011391758, -0.007860637, -0.019382216, -0.0008543818, -0.017486835, -0.024146633, 0.028638424, -0.024912573, 0.01342345, 0.03113098, -0.0033753356, 0.0031757366, -0.0026580768, -0.00573158, 0.015227957, -0.0006105625, -0.0013590595, 0.02495152, -0.0062541077, -0.037881654, -0.63061655, 0.0066435696, 0.032013763, -0.025107305, 0.013475379, 0.012183663, 0.0034791923, 0.0014572362, -0.009171826, -0.0010426217, 0.0019116084, 0.0021404172, 0.025250107, -0.019252395, 0.011521579, -0.0056991247, 0.017928226, -0.036219947, 0.013449415, -0.015448652, -0.026119906, 0.016292486, -0.002643472, -0.016188629, 0.014773585, 0.008587633, -0.013553271, -0.0074387207, -0.012235592, 0.020511655, -0.012190155, -0.0027732926, 0.0013898918, 0.002623999, 0.03811533, -0.020057283, 0.009898821, 0.022601767, 0.017058427, 0.043775506, 0.0061340234, -0.013371523, 0.0061340234, -0.002964778, 0.0153577775, -0.0074971397, 0.012865222, -0.0024243998, -0.02073235, -0.009788473, -0.0035960306, 0.0039530373, -0.030793447, -0.004365218, 0.01669493, 0.00831501, 0.012683473, -0.02135549, -0.008633071, 0.019992374, 0.02092708, 0.022965265, -0.006400156, -0.019758696, -0.013475379, 0.013196264, 0.0076139783, 0.0024649687, 0.0025542204, 0.0075685414, 0.019823607, -0.0001611601, 0.007704853, -0.03224744, -0.01084002, 0.02689883, 0.012443305, 0.005643951, -0.025250107, 0.008347465, 0.012495233, -0.0066857613, -0.01733105, -0.036453627, 0.0016795541, 0.0034564736, -0.009314628, -0.020550601, 0.0101974085, 0.0037518155, 0.014267284, -0.0040179477, -0.028378785, -0.02495152, -0.0018256023, 0.021407418, -0.01991448, 0.00039291018, -0.00111808, -0.019187486, -0.017616656, 0.0062800716, 0.018577328, 0.017227193, 0.04156856, -0.0033023115, -0.016409324, 0.004202942, 0.03414282, -0.005764035, 0.0018353388, -0.054109227, 0.020550601, -0.0069843484, 0.023095086, -0.012170682, 0.01625354, -0.020459726, 0.025743425, -0.030715555, -0.00712066, -0.005660178, 0.012378395, 0.0014150445, -0.003988738, 0.027573897, -0.002529879, -0.00083572016, 0.012449796, 0.0035051564, -0.020693405, -0.015318831, -0.009801456, 0.01128141, 0.00472547, -0.029806811, -0.0071790796, -0.0080943145, 0.009301647, -0.03930968, -0.012599089, 0.010314247, 0.011521579, -0.0054459744, -0.006513749, -0.0022069502, -0.030014524, -0.0038037437, -0.015227957, -0.0084967585, -0.0038783906, -0.012469269, 0.0014840118, 0.02506836, -0.028145107, 0.00743223, -0.021017956, -0.032013763, -0.027625825, -0.030819412, 0.008366938, -0.0019099857, -0.0132936295, -0.02073235, -0.0016827995, -0.014124482, -0.0010848134, -0.0063352454, 0.0007988024, -0.035570845, 0.016383361, 9.5337e-05, -0.02009623, 0.032948468, -0.0062541077, 0.019447127, -0.016668966, 0.00059392926, 0.0057413164, -0.0036836597, -0.008587633, -0.0104830135, -0.001214634, -0.011696836, 0.037777796, -0.019369233, 0.037336405, 0.0074581937, -0.024808718, 0.029625062, -0.017564727, 0.015526544, -0.001381778, 0.008470794, -0.015214975, -0.015305849, -0.006380683, 0.024769772, 0.0035181383, 0.0054524653, 0.014137464, 0.0008166527, 0.022965265, -0.02596412, -0.010801074, -0.027314255, 0.021212686, -0.015370759, 0.019356253, 0.036142055, 0.0046216133, -0.017110355, 0.009736545, -0.04408708, 0.004900728, 0.020862171, 0.03471403, 0.019434145, -0.002497424, -0.0010531696, -0.010859493, 0.0069648754, 0.016357396, -0.015020244, 0.019421162, 0.017214213, -0.007088205, 0.0052220337, -0.025237126, -0.034064926, 0.019576946, 0.0064618206, -0.011398249, -0.0034013, 0.038972147, 0.0030264428, 0.021342507, -0.018161902, 0.012417341, -0.024990465, 0.016565109, 0.0316243, -0.0062995446, -0.023835063, 0.03951739, 0.03951739, 0.01790226, 0.009295155, -0.0062768264, 0.0088018365, -0.012027879, 0.014643764, -0.010489505, 0.03383125, 0.006413138, -0.019005736, 0.0069454024, 0.027366184, 0.011820166, 0.007341355, 0.007893093, 0.011002297, 0.0067831264, -0.027521968, 0.03214358, 0.011586489, -0.013644146, -0.015214975, 0.014916387, -0.0033558626, 0.006319018, 0.010366175, -0.004475565, 0.020589547, 0.01865522, 0.030637663, -0.006750671, 0.022420019, -0.0272104, 0.0199015, -0.029443312, -0.013540289, 0.03414282, 0.01026881, -0.0052609798, 0.003641468, -0.019706767, -0.007834674, -0.013306612, 0.007600996, -0.031832013, 0.0022475193, -0.028820174, 0.018317686, 0.015487598, -0.013929751, -0.0011862358, -0.00090712146, 0.013040479, 0.0038232168, 0.00021582676, 0.0032893296, -0.026587259, -0.04743645, 0.043074477, 0.006672779, -0.007094696, -0.028508605, -0.010385648, -0.015721275, 0.0025915438, -0.022692641, -0.0047352067, -0.01846049, 0.044190932, -0.0062054247, -0.0005736448, -0.009171826, 0.008652544, 0.02614587, -0.0018596802, -0.010593361, 0.0028430712, 0.0151241, 0.08744716, -0.012151209, -0.010476523, 0.028716318, -0.012819785, -0.0073673194, -0.017993135, -0.02791143, 0.024588022, -0.002737592, -0.021394435, 0.0122420825, -0.0028138617, -0.003547348, 0.024471184, 0.010444067, 0.017214213, -0.00907446, -0.0026012803, 0.0051636146, -0.002375717, 0.004517757, 0.009470413, 0.024120668, 0.027625825, 0.011255447, 0.023030175, 0.03118291, -0.0035084018, -0.012196646, 0.0064228745, 0.031598333, 0.0012195023, 0.01739596, 0.003339635, 0.02972892, -0.01209928, 0.02179688, -0.022575803, 0.013527307, 0.025003448, 0.020628493, 0.007990458, 0.0024390046, -0.0041996967, -0.01026881, 0.013540289, 0.009275682, 0.0076594157, -0.008483777, 0.015682328, 0.011417722, -0.017149301, -0.0040990855, -0.0010977954, 0.001208143, -0.009191299, 0.019226432, -0.015150065, -0.027573897, -0.032221474, -0.0153967235, -0.02217336, -0.011326848, -0.018174885, -0.0025412384, -0.00472547, -0.00970409, 0.020485692, 0.0076853796, 0.015214975, -0.027132506, -0.03780376, 0.01039863, 0.017655602, 0.02884614, 0.0045794216, 0.0042451336, 0.0045761764, 0.022277215, 0.012780839, -0.013137845, -0.00021359546, -0.038478825, -0.00027992568, -0.0038037437, -0.0039854925, -0.020862171, -0.02652235, 0.00011825846, -0.016591074, 0.0023335253, -0.0048747635, -0.015967933, 0.027132506, 0.033363894, 0.014436051, 0.0028739036, 0.023471566, -0.0147086745, -0.00570237, -0.006289808, -0.011210009, -0.005546585, -0.012735401, 0.011748765, 0.006062622, -0.004498284, 0.0045567034, -0.02413365, 0.0042126784, 0.011495614, 0.016980534, -0.004585913, -0.009399012, 0.0080943145, -0.00228322, -0.0039660195, 0.021095848, 0.014436051, 0.012423832, -0.04504775, 0.028119143, 0.016928608, -0.01839558, -0.01146965, 0.019187486, -0.036245912, 0.025483785, -0.023536475, -0.015474616, 0.03585645, -0.00086087285, -0.0016016617, -0.034013, -0.02506836, -0.01947309, 0.019200467, -0.036375735, 0.0024649687, -0.0036998873, 0.00038783904, 0.01713632, -0.006380683, 0.028975958, -0.029702954, -0.021056902, 0.02135549, 0.0076594157, 0.034817886, -0.0020300697, 0.024795735, -0.04455443, -0.034895778, 0.036245912, -0.009645671, -0.008470794, 0.0015984162, 0.03699887, 0.03250708, -0.0017298595, -0.011625435, 0.01625354, -0.009347083, 0.013592217, -0.007815201, -0.0025947893, -0.013696074, 0.016110737, 0.03011838, 0.0088213105, 0.0081332605, 0.014449033, 0.010470032, 0.023172978, 0.00311894, -0.014929369, -0.019434145, -0.031364657, -0.01795419, -0.0020787525, -0.014449033, -0.03188394, 0.022134412, -0.002383831, 0.0140206255, 0.016863696, -0.0009785228, 0.027080579, 0.014111499, 0.014332195, 0.0027505741, 0.029625062, 0.03113098, 0.013228719, -0.045203533, -0.0071920613, -0.055667076, -0.007088205, 0.010028642, 0.013319594, 0.0069648754, 0.0067831264, -0.007737308, -0.021160759, 0.009898821, -0.016733875, -0.03551892, 0.005394046, -0.0070103128, -0.004546967, -0.036219947, -0.022991229, -0.010664763, -0.0400886, 0.0067961086, 0.01839558, 0.0060204305, -0.009859875, -0.0007728383, 0.012664, 0.0006267901, 0.03338986, 0.011709819, 0.02382208, 0.0032146827, 0.013475379, 0.0030264428, -0.035077527, -0.010450559, -0.0017623147, 0.016266521, 0.027963359, -0.0071660974, -0.04548914, 0.0036090128, -0.02759986, -0.009918294, -0.031935867, 0.0067182165, 0.008600615, 0.0067571625, -0.004108822, -0.008185189, 0.00932112, 0.02936542, -0.008081333, -0.006101568, 0.01576022, -0.0336495, -0.010340211, 0.032974433, 0.0032812157, -0.0012552029, 0.0033023115, -0.013748002, -0.006380683, 0.001398817, -0.012943114, -0.0234456, -0.010878966, 0.021212686, -0.017084392, -0.007094696, 0.0017379733, 0.01669493, 0.0024438729, 0.023744188, -0.004439865, 0.022757553, 0.023043158, -0.031079052, -0.0019959917, -0.0043067983, -0.025315018, -0.004546967, -0.01128141, 0.010671253, -0.021913718, -0.013001533, 0.04821537, -0.010359684, 0.00016166722, 0.025276072, 0.022718607, -0.0063482276, 0.008464304, 0.018304706, 0.021498293, -0.0037583064, -0.011294393, -0.0035246294, -0.011300883, 0.017837351, -0.010794583, 0.018979773, -0.011106153, 0.016565109, -0.026950758, 0.017110355, -0.00034301038, 0.004202942, -0.021693023, 0.020329908, -0.0047481884, -0.023562439, 0.039205823, 0.019810624, -0.03232533, 0.02791143, 0.006912947, 0.008594124, 0.014955333, -0.014539908, 0.0133325765, -0.00083166326, -0.018045064, -0.0084578125, -0.011417722, 0.004699506, -0.0031351675, 0.0020657703, 0.03271479, -0.014500962, -0.010547924, -0.01133983, 0.043022547, -0.005549831, -0.036401697, -0.012715928, 0.0037063782, -0.012436814, 0.017162284, -0.019589929, 0.0039725103, 0.027314255, -0.022160377, 0.023796117, -0.0026807955, -0.00012424238, -0.011826657, 0.0143062305, -0.010547924, 0.005828945, -0.004744943, -0.012612072, -0.026769008, -0.011015278, -0.06080797, 0.0067571625, -0.025107305, 0.041049276, 0.017486835, -0.031598333, -0.002810616, -0.012527688, -0.057121065, 0.0019521774, 0.01644827, 0.0042126784, -0.0016462875, 0.033182148, -0.0012673737, 0.022121431, 0.012170682, 0.023679279, -0.04580071, -0.020083247, -0.0062216525, -0.013786948, -0.002690532, -0.017447889, -0.03988089, 0.00030467272, 0.016344413, -0.015409706, 0.029105779, 0.0109049305, -0.0035246294, 0.00014939511, 0.03087134, 0.028949995, 0.007250481, -0.004215924, 0.013760984, -0.026574278, -0.0027067596, 0.00507274, -0.011359303, 0.008542196, -0.009769, 0.0078087095, 0.015253921, -0.01165789, 0.008399393, -0.020342888, -0.032377258, 0.0014531794, 0.011443687, -0.031286765, -0.0006470746, 0.013566253, -0.024172597, -0.029001923, -0.0018385843, 0.02168004, 0.02469188, -0.0064423475, 0.001767183, -0.0131703, -0.019992374, 0.00094525627, 0.017344033, 0.0087628905, -0.007919057, 0.0091263885, -0.010054606, -0.028067214, -0.0013744757, -0.0075166128, 0.010229863, 0.012449796, -0.015214975, -0.021277597, -0.0023319025, -0.00945094, 0.02369226, 0.0071466244, 0.00024381932, 0.0026613225, -0.0121577, 0.016084773, 0.017915243, 0.015578472, -0.0119370045, 0.017928226, 0.20823225, 0.012514707, -0.026223762, 0.019563965, -0.0054524653, 0.0070232945, 0.005462202, 0.00017738769, -0.009749527, 0.015253921, 0.0009241604, 0.02130356, -0.009113407, -0.00020994426, 0.0029712692, -0.033286, 0.0010896816, -0.0007221271, -0.0054459744, 0.018006118, 0.0019197222, 0.026613224, -0.03523331, 0.016097754, 0.010470032, 0.038452864, -0.0064942758, -0.012664, 0.025860265, 0.019135557, -0.009347083, 0.0059652566, 0.007867129, -0.0054070284, -0.0165002, 0.0064066467, 0.013786948, -0.004082858, 0.030533805, 0.029027887, -0.024250489, 0.0054784296, -0.0071725883, -0.020135175, 0.006886983, -0.014903406, -0.016915625, 0.01235243, 0.022199323, 0.012670491, -0.02267966, 0.009775491, 0.021238651, 0.010612834, -0.0243154, -0.008730436, 0.0087564, 0.0073543373, 0.0023189206, 0.017798405, -0.01859031, 0.026769008, -0.017850334, -0.0019229677, -0.018382598, -0.016487217, -0.018979773, 0.02256282, 0.012268047, 0.012203136, -0.017214213, 0.010340211, -0.017928226, 0.010827038, -0.0048293266, -0.006023676, 0.0095288325, 0.025198178, 0.028949995, 0.035389096, -0.016785804, 0.022887373, -0.018577328, -0.0060756044, 0.009334101, -0.02759986, 0.0084578125, -0.012469269, -0.0028544306, 0.018551365, -0.016552128, -0.0054329922, -0.0153577775, -0.02866439, 0.009736545, -0.031208873, 0.003065389, 0.013228719, -0.007360828, 0.0108659845, -0.011080189, 0.08246205, 0.014111499, 0.033104256, -0.0029469277, -0.02204354, 0.005455711, 0.018006118, 0.0023676034, -0.0035441024, 0.009308137, -0.02331578, 0.016045827, -0.018304706, 0.0034727012, 0.03131273, -0.0016592696, -0.036946945, -0.006912947, 0.0026402266, -0.018940827, -0.002570448, -0.005040285, -0.0058906097, 0.00416075, 0.029183673, -0.0147086745, 0.003742079, -0.0037063782, -0.0038913726, 0.017993135, -0.0056342143, -0.007289427, -0.02545782, -0.024717843, -0.010891949, 0.018862933, -0.025522731, 0.0020057284, -0.001505919, -0.022666678, 0.027859502, 0.0019083628, 0.0017785423, -0.008204662, -0.025302036, 0.019745713, 0.036064163, -0.021212686, -0.0057672802, -0.014773585, 0.016967554, -0.019057665, -0.018109974, 0.028041251, 0.005468693, -0.012780839, -0.015137083, 0.026042012, -0.0024243998, -0.04920201, 0.00075498794, 0.016058808, 0.008198171, -0.012209628, -0.00037566837, -0.16056213, -0.008016422, -0.00579649, 0.020836206, 0.01914854, -0.012806803, -0.02053762, 0.03042995, -0.011372285, -0.0039140913, 0.017318068, -0.012956096, -0.014358159, -0.00027586878, 0.004076367, 0.0020722614, 0.00021501537, 0.035570845, 0.052836984, 0.010405121, 0.021251634, -0.015591455, -0.0058938554, -0.0014783321, -0.015967933, 0.012170682, -0.014267284, -0.016863696, -0.01713632, -0.035207346, -0.0017217457, 0.0112294825, 0.008295537, -0.016746858, -0.0044690743, -0.01739596, 0.01235243, -0.005527112, 0.010236355, 0.031987797, 0.013046971, -0.0014044966, -0.020316925, 0.00093146286, 0.021056902, 0.0071790796, 0.030144345, -0.016837733, -0.0037226058, -0.00497862, 0.0006730387, -0.00907446, 0.0026288673, -0.0060334126, -0.011774729, -0.002745706, -0.011125626, 0.016837733, 0.0039465465, -0.012384886, 0.024730826, -0.029313492, 0.00579649, -0.01298206, -0.004326272, -0.04670945, -0.005329136, 0.0009184808, -0.030741518, 0.009379539, 0.024678897, 0.0031416586, -0.022407036, -0.0044009183, -0.006672779, -0.004144523, -0.031650264, 0.029521205, 0.020576566, -0.0074387207, 0.009658653, 0.022835445, 0.006822073, 0.033052325, -0.020252014, -0.0054102736, -0.005997712, 0.009158843, -0.0018223567, -0.033883177, 0.020018337, -0.036142055, -0.018006118, 0.014228338, 0.0076399427, 0.008749909, 0.023354726, -0.0032909524, 0.003198455, 0.0026077714, -0.0048033623, -0.011424213, -0.032974433, 0.011008787, 0.04821537, -0.011956478, -0.017863315, -0.005488166, -0.004014702, -0.012196646, -0.027444076, 0.018979773, 0.025665533, 0.0069648754, -0.020719368, 0.023523493, 0.0029031134, -0.00775029, 0.0043522357, -0.011677363, 0.058575056, -0.017850334, -0.0025996575, 0.003065389, -0.0049980935, -0.015098136, -0.114449844, -0.03357161, 0.0008219267, 0.012430323, -0.034739994, 0.0064066467, -0.005481675, 0.047540307, -0.0012065202, 0.016266521, -0.0054329922, -0.014150446, -0.0019310815, -4.079714e-05, 0.017538764, -0.014552889, 0.0024811963, -0.030689592, -0.010379157, -0.0055368487, 0.009522341, -0.011398249, 0.0012195023, 0.0032974433, -0.026366565, -0.014500962, -0.0062476164, -0.0051116864, 0.003855672, -0.0021387944, 0.0022134413, -0.016227575, 0.031598333, -0.027573897, 0.012105771, 0.004361972, -0.010379157, -0.032974433, 0.03346775, -0.0001824588, 0.0021047166, 0.004089349, 0.013118372, -0.023095086, -0.0053583453, 0.0023432618, -0.028456677, 0.004598895, 0.0014588591, -0.029858738, -0.035051562, -0.01663002, -0.025353964, -0.011450177, 0.0066662882, -0.01235243, -0.0072569717, -0.0015310717, -0.014955333, -0.00895113, -0.0052058063, 0.006085341, -0.019018719, -0.005400537, 0.012521197, -0.024081722, 0.0005087345, -0.014747621, 0.01039214, 0.00023935674, -0.0058614, -0.01859031, -0.016110737, 0.01644827, -0.0016649492, -0.0042289062, -0.02558764, -0.02406874, 0.017357014, -0.017967172, -0.0048845, -0.013709056, 0.013046971, -0.04922797, 0.026769008, 0.0010783224, 0.021095848, -0.021693023, -0.010989314, -0.041932054, 0.030170308, 0.016357396, -0.015201992, 0.0074062655, 0.0105219595, -0.013890805, -0.03494771, -0.024601005, 0.012553653, 0.026535332, -0.020252014, 0.017551746, -0.043022547, -0.002710005, -0.011605962, -0.0029956105, 0.0034499825, -0.015098136, 0.00302482, -0.028430711, -0.0054070284, -0.006526731, -0.031053089, 0.04058192, -0.006344982, -0.029832775, -0.007451703, 0.020991992, 0.009061478, -0.013514325, 0.0032520061, 0.022588786, 0.00976251, 0.004297062, 0.011768238, 0.0078087095, -0.020615513, 0.020641476, -0.003459719, 0.02702865, -0.0076399427, 0.022069503, 0.0024000583, -0.0035084018, 0.009476904, 0.023224907, -0.019550983, 0.00014685956, 0.0075166128, 0.0037485699, 0.014189392, -0.0170065, -0.0074581937, -0.023796117, 0.013124863, -0.022316162, -0.026003066, 0.00028580817, 0.025977103, 0.0074192476, 0.010723182, -0.014046589, 0.022017574, -0.002503915, -0.02652235, -0.03440246, -0.007211535, -0.014384123, 0.012255065, -0.015838115, -0.018798023, -0.018875916, 0.04242537, 0.013397486, 0.03785569, -0.013540289, 0.0129496055, -0.023017192, -0.018187867, 0.018759077, 0.0060139396, -0.027366184, -0.0060074483, -0.003086485, -0.004423637, 0.003346126, 0.02029096, -0.020888135, -0.010911422, -0.0016544013, -0.035570845, 0.017538764, 0.025665533, -0.017447889, 0.016305467, 0.019836588, 0.040607885, -0.004744943, -0.009301647, -0.021718986, -0.023224907, 0.00623788, -0.015513563, -0.0009598611, -0.007042768, 0.0151241, 0.023640333, 0.029858738, 0.010190917, 0.008970603, 0.01795419, 0.004680033, 0.012495233, 0.012423832, 0.00570237, -0.0005391612, -0.020875154, 0.0095483055, -0.017344033, -0.020615513, -0.0039076004, -0.012547161, 0.00021034994, 0.006445593, 0.00976251, -0.0034694558, 0.0009485018, -0.01594197, 0.0084578125, -0.026119906, -0.015137083, -0.008308519, 0.024094705, 0.018135939, 0.0292356, 0.0054589566, 0.031053089, -0.003339635, -0.02451013, -0.016863696, -0.0034013, -0.028768245, 0.0005545774, 0.008386411, -0.010035133, -0.0012925264, -0.040867526, -0.022497911, 0.02879421, -0.0023075612, 0.012456287, 0.07062241, 0.022445982, -0.0081332605, 0.029417349, -0.003660941, 0.013196264, 0.012956096, 9.6199095e-05, 0.022069503, -0.0006746614, 0.02155022, 0.017032463, 0.021147776, -0.00036796028, 0.020862171, -0.012371903, -0.009502868, 0.0058062267, -0.031650264, 0.02349753, 0.0020300697, 0.0044658286, 0.013618181, 0.005689388, -0.026574278, -0.02451013, 0.013488361, 0.0112294825, 0.0062411255, -0.021835826, -0.0020398062, 0.023172978, 0.0010369421, -0.025302036, -0.0021647585, 0.0023529984, -0.010100043, -0.023341745, 0.007321882, 0.040659815, 0.0052999263, 0.0119175315, -0.023043158, -0.03011838, 0.004994848, -0.007834674, 0.003800498, -0.02003132, -0.0011773106]" 23843965,New Leaks of the Lenovo ThinkPad X1 Nano,https://www.notebookcheck.net/Leak-Lenovo-ThinkPad-X1-Nano-with-a-16-10-screen-Intel-Tiger-Lake-weighs-less-than-1-kg.481319.0.html,117,1594814526,143,arketyp,"[0.024933048, -0.009662752, 0.01797149, -0.014319748, 0.0023524323, 0.015482287, -0.048744585, -0.02474157, -0.014442841, -0.019161383, 0.038268056, 0.033180237, -0.037611563, 0.005313488, 0.0026670017, -0.019913614, 0.005720377, -0.006499962, 0.01961272, -0.012302401, -0.0056280578, 0.0018976743, 0.008616467, 0.014948887, -0.026670018, -0.019667428, 0.029405404, -0.0062742927, 0.013800024, -0.0038090255, 0.015687441, 0.003990245, -0.03936221, -0.00056417345, 0.004359522, 0.0075086355, -0.00200538, 0.0022601131, 0.024085077, -0.042015534, 0.01515404, 0.0032773349, -0.009696945, 0.02006406, -0.022006184, 0.0062708734, -0.014606964, 0.024481708, -0.0026088748, -0.0056109615, -0.009095159, 0.0135196475, -0.025876755, 0.0038192833, -0.035778854, -0.018751074, -0.021253953, -0.0054844497, 0.014743733, 0.0127469, 0.0033371714, 0.03914338, -0.01350597, 0.022649, -0.027572695, -0.008698529, -0.002237888, -0.006790597, -0.023305492, -0.013936793, 0.02625971, 0.025069816, 0.02817448, 0.015126687, 0.007823206, -0.005563092, -0.015263456, 0.0038261218, 0.0037508986, 0.0049954993, 0.010756907, -0.008137775, -0.0128152855, 0.004195399, 0.014046209, -0.005826373, -0.0019917032, 0.0059734, 0.006547831, -0.017246611, 0.026533248, -0.0067837583, 0.020706875, 0.021513814, -0.0066367313, 0.0010377372, -0.0031234694, -0.009396052, -0.014962563, -0.020706875, -0.018258704, 0.017656919, -0.02170529, -0.009095159, -0.021896768, -0.017150873, 0.0077548204, 0.0035286485, 0.03588827, 0.010661169, -0.024317585, 0.027777849, 0.017684273, -0.011406561, 0.026027203, -0.006852143, 0.033535838, -0.016056718, 0.012828962, -0.028201833, 0.04382089, 0.009067806, 0.019407567, -0.020884676, 0.0072692893, 0.009779006, -0.014018855, -0.018149288, 0.008630144, -0.0045612566, 0.017369704, -0.022936216, -0.0014189817, 0.025685279, -0.008322413, 0.0034448772, -0.0130341165, 0.03214079, -0.027476957, -0.034438513, 0.0249604, 0.02367477, -0.009095159, 0.004622803, 0.006944462, 0.030034542, -0.010585945, 0.009690106, 0.011557007, 0.00068897544, 0.0037167063, 0.0042159143, 0.012548585, 0.008452344, 0.007645405, 0.004930534, -0.009197737, 0.0023780765, -0.0024054304, -0.0017292771, 0.007248774, 0.014306071, -0.032168142, 0.0048040226, 0.012186146, 0.043492645, 0.04007341, -0.018258704, -0.0015685732, -0.016658504, -0.016398642, 0.005043369, -0.019462274, 0.022252368, 0.018764751, -0.025781017, -0.0012728095, 0.008520729, -0.009840553, -0.008965229, 0.032742575, 0.017643243, 0.014319748, -0.010592784, -0.009881583, -0.023524323, 0.029542172, 0.009847391, 0.013293978, -0.017930457, -0.0077821743, 0.011878416, -0.012404977, -0.014442841, -0.63373435, -0.027271802, 0.005402388, -0.013902602, 0.0071393587, 0.003713287, 0.007276128, -0.0074334126, -0.013841055, 0.017232934, 0.0022806283, -0.0048792455, 0.027736818, -0.019503305, -0.009067806, -0.032277558, -0.010756907, -0.0018258705, -0.004578353, -0.01738338, -0.025781017, 0.003263658, -0.0029901192, -0.019462274, 0.0008680578, -0.0027388057, -0.020159798, 0.017438088, -0.03348113, 0.035231777, -0.0231824, 0.028475372, 0.020200828, -0.0103807915, 0.03709184, -0.03843218, 0.002687517, 0.033180237, 0.0122545315, 0.018354442, -0.01635761, 0.0019096417, -0.023100339, -0.0067085354, -0.008370282, -0.009949968, -0.0022703707, -0.0009556756, -0.023278138, -0.02233443, 0.032469038, -0.010271376, -0.008377121, 0.016220842, 0.001600201, -0.0065238965, 0.0339735, -0.015974656, 0.011885254, -0.0020122186, 0.0066538276, 0.02803771, -0.013458101, -0.036271226, -0.037666272, 0.041824058, -0.03525913, -0.0019267378, 0.008848975, -0.009772168, 0.0038637333, 0.034657344, 0.012753739, 0.01092103, 0.015660087, 0.02647854, 0.0048040226, -0.0029576365, 0.013581194, 0.02665634, -0.0023643996, -0.026560603, -0.022580614, -0.020570105, 0.03142959, -0.00054664986, -0.0009907228, -0.0066880197, 0.0030738905, 0.024481708, 0.024577446, 0.0024755248, 0.00035709614, -0.026314417, -0.0016010558, 0.02817448, 0.0011548459, -0.013123016, -0.016261872, -0.0013941922, -0.039608397, 0.011837385, 0.030608974, -0.016644826, 0.027709464, -0.0031405655, -0.003468812, -0.02902245, 0.024139784, -0.023620062, -0.009443922, -0.018149288, -0.01457961, 0.014128271, -0.015536995, -0.019489627, 0.032523744, 0.0052998113, 0.014128271, -0.029569527, 0.022813123, -0.013608548, 0.019284474, -0.00423643, -0.01912035, 0.010866323, 0.014005179, -0.0025558767, -0.025890432, -0.014647994, -0.017752659, -0.008602791, -0.0048347954, -0.008561759, -0.008315574, 0.007830043, -0.005166461, -0.0074812816, -0.0026584538, -0.018559597, -0.023879923, -0.004356103, -0.017629566, -0.008903683, -0.010278215, -0.017082488, -0.035614733, -0.022416491, -0.0057032807, -0.0056554116, -0.0037748332, -0.009293475, -0.011652746, 0.014059886, 0.0109415455, 0.0044791955, -0.00050177245, -0.031265467, -0.035477962, 0.0018822878, -0.0013514519, 0.025261294, -0.005522061, 0.008397636, 0.017903104, -0.016562765, 0.019270798, 0.04105815, -0.0036449025, -0.03320759, 0.016932042, 0.0026755498, 0.00927296, -0.00276445, 0.0064897044, -0.019407567, -0.015017271, 0.00945076, 0.012151954, 0.0024892017, -0.006366612, -0.006547831, -0.0077274665, 0.006134104, 0.029870419, 0.024782602, 0.036271226, 0.0074197357, -0.015687441, 0.010066222, -0.00025174103, 0.003003796, -0.0059494656, -0.0023165303, -0.01890152, 0.009642237, 0.014196656, -0.013273463, -0.0034671023, 0.0022925958, -0.010462853, 0.025698956, 0.009594368, -0.021500137, 0.002728548, -0.028858326, 0.009149867, 0.00068470143, 0.022854153, 0.02055643, 0.01645335, -0.04622803, -0.040757257, -0.010011515, -0.005898177, 0.02679311, 0.011283469, 0.020829968, -0.011994669, -0.017041458, -0.0063631926, 0.029405404, -0.013512809, -0.0095533375, -0.0076248897, 0.015359195, 0.0038842487, 0.022649, 0.0036790948, -0.044422675, 0.0040757256, 0.0057579884, 0.00039748583, 0.0038192833, 0.009881583, 0.035860915, 0.018805781, -0.030472204, 0.021199245, -0.005238265, 0.0053305845, -0.0029969576, -0.0068555623, -0.013806863, 0.023045631, 0.027832557, 0.032168142, 0.035067655, 0.016248195, 0.0067564044, -0.004677511, 0.021924121, -0.0005577624, -0.015454933, 0.023414908, -0.022457523, 0.011714293, 0.013307655, 0.00048424889, 0.007809528, -0.00032632306, -0.0037782525, 0.011741647, -0.020447014, 0.010770584, -0.018299734, 0.004622803, 0.00088387175, -0.010626976, 0.0026447768, -0.00842499, -0.0072556124, 0.021431753, -0.016330257, 0.002973023, -0.008295059, 0.037146546, 0.0005483595, 0.017725304, 0.032469038, -0.011755323, -0.024632154, -0.004226172, 0.00873956, -0.0074881203, -0.017314997, -0.021896768, -0.0021968572, 0.015550672, 0.028940389, -0.000971917, 0.012911024, -0.012528069, 0.0033371714, -0.016371287, -0.017178226, 0.027928295, -0.025151879, 0.011262953, 0.000976191, 0.019516982, 0.0026328093, -0.036298577, -0.01943492, 0.04092138, 0.0012018604, -0.002501169, -0.0063324193, 0.0060623, 0.0014993337, -0.0059939153, -0.033563193, 0.010620138, -0.020898351, -0.0096012065, -0.0071256817, 0.0074676047, 0.012466524, 0.0128152855, 0.015646411, -0.025439093, -0.025753664, -0.039936643, 0.018969905, 0.07489488, 0.045079168, -0.0057853423, -0.0042740414, 0.0045886105, -0.024946725, -0.010914192, 0.002861898, 0.042836152, -0.0019746071, -0.01355384, -0.00182758, -0.0034312003, -0.0237158, 0.009731137, 0.0099431295, 0.0067119543, -0.00539555, 0.008322413, -0.013635901, 0.0010821873, 0.0010411565, 0.019694783, -0.014442841, 0.022389138, -0.009019936, 0.012952055, 0.0029832807, 0.018354442, -0.030171312, 0.00904729, -0.0070367814, -0.011358692, -0.007830043, -0.025726309, 0.018450182, 0.003873991, 0.009437083, -0.017232934, 0.0037167063, -0.013088824, -0.0045270645, 0.030061897, -0.00851389, -0.025698956, -0.0012275047, 0.0007338529, -0.0012343432, -0.007098328, -0.018422827, 0.032359622, -0.001698504, -0.024413323, 0.00378851, -0.027750496, 0.023551676, -0.015851565, -0.026191324, 0.004157787, -0.0105244, -0.02095306, -0.016220842, 0.014894179, -0.002767869, 0.00021530483, -0.0026054555, -0.012692193, 0.0061238464, -0.025042463, -0.0035183907, -0.014155624, -0.0014360779, -0.023784185, 0.026697371, 0.04650157, 0.0049339533, -0.0034619735, -0.018682688, -0.0024567188, 0.044942398, 0.015988333, -0.020050382, -0.018395474, -0.0070504583, 0.016302902, 0.016398642, 0.010011515, -0.014114594, 0.009464437, -0.011009931, 0.021390721, -0.018039873, 0.029405404, 0.014894179, -0.013335009, 0.007118843, 0.013129855, 0.031757835, 0.014237686, -0.017055133, 0.002523394, 0.0124733625, 0.008534405, 0.003116631, 0.0008466876, 0.0033935888, 0.011399723, -0.001832709, -0.002567844, -0.0063768695, 0.020255536, -0.019024612, -0.014114594, 0.0015856693, -0.023920953, 0.020323921, 0.0065409928, -0.0061546196, -0.01992729, -0.020214505, -0.011481784, -0.02095306, 0.020378629, -0.0007812947, 0.004677511, 0.010093576, -0.0016617472, 0.025890432, -0.016343934, 0.019763166, -0.01012093, 0.015195072, 0.015058302, -0.018641658, -0.011741647, -0.008855813, 0.010066222, -0.00015899434, 0.016617473, -0.007734305, -0.033727314, 0.016754242, 0.0058332114, 0.03080045, -0.0039663105, -0.021281306, -0.025384385, 0.021732645, 0.012336593, 0.017615888, -0.023209754, 0.014606964, -0.012056216, -0.008896844, -0.0029319923, -0.02113086, -0.005402388, -0.01979052, 0.027531665, -0.0027063228, 0.014319748, -0.010250861, -0.0013095662, 0.011009931, -0.016439673, 0.028913034, -0.019694783, -0.015345518, -0.019489627, 0.004359522, 0.013191401, -0.0056314766, 0.0018976743, -0.018299734, -0.023620062, 0.015413903, -0.017246611, -0.017150873, 0.002193438, -0.059795547, -0.007070974, -0.03679095, -0.03348113, 0.030909866, -0.01957169, -0.007337674, -0.004297976, 0.0039355373, 0.040319595, 0.009204575, 0.010045706, 0.017410735, 0.020488044, 0.01921609, 0.024686862, 0.0014736895, -0.034411162, -0.024276555, 0.001841257, 0.023770507, -0.015482287, 0.010968899, 0.014182978, 0.0069683967, -0.004739057, 0.009963645, -0.003116631, -0.020734228, -0.019640075, 0.01462064, -0.027764171, -0.022170307, -0.013177724, -0.05180822, 0.00927296, -0.011085154, -0.0215822, 0.012357108, -0.018135613, -0.019804198, 0.01979052, 0.01858695, 0.018422827, 0.015427579, 0.010373953, 0.023879923, -0.0039218604, -0.0138615705, -0.011303985, 0.035915624, 0.0038671526, 0.033043467, 0.022717385, -0.030663682, 0.004397134, 0.011440754, -0.00033615335, -0.0014557384, -0.0242492, -0.0020737648, -0.0009266121, -0.002099409, -0.016562765, -0.03375467, -0.026711049, -0.015277133, -0.0039081834, 0.017506473, 0.007248774, -0.011331338, -0.0074676047, 0.016261872, -0.0111467, 0.014401809, 0.002550748, -0.00095653045, 8.073931e-06, -0.0016608924, 0.01706881, -0.011474946, -0.0059904964, 0.032168142, -0.0210488, 0.0023832053, 0.008254029, -0.013369201, -0.0011480075, 0.0033200753, 0.022402816, 0.024153462, -0.018162966, -0.015331841, -0.0012933249, -0.003682514, 0.013717962, -0.022498554, -0.0040688873, 0.012740063, -0.0008586549, -0.010216668, -0.0044962913, -0.0010573978, -0.013690609, -0.03121076, -0.005946046, -0.02233443, -0.007323997, -0.012336593, -0.00459203, -0.024235524, 0.0081651285, 0.010784261, -0.0035594215, 0.011878416, 0.007016266, -0.0082882205, -0.013218755, 0.026738402, -0.021035122, -0.0035457446, 0.040894028, 0.012357108, -0.012740063, 0.015865242, 0.007877913, -0.015536995, 0.009348183, -0.023496969, -0.010551753, 0.007871075, 0.00087404146, -0.019407567, 0.0135196475, 0.009307153, 0.021459106, 0.013984663, -0.0033850407, -0.005074142, -0.016726889, -0.001760905, -0.019352859, 0.008958391, 0.014347102, 0.025138201, -0.013574355, -0.024016693, -0.013834217, 0.0011078315, -0.016261872, -0.026355447, 0.0017540666, 0.016343934, 0.017191904, -0.010517561, -0.029350696, 0.017041458, -0.020392306, 0.0002790949, -0.00338846, 0.021554844, -0.00047185415, 0.01756118, 0.005881081, 0.001042866, -0.03008925, -0.024946725, 0.015331841, -0.016384965, -0.019188736, -0.021896768, -0.010319245, 0.025192909, 0.013013601, 0.0029832807, -0.013888924, -0.013307655, -0.029788358, -0.018928874, -0.016439673, 0.015331841, 0.0077821743, 0.007966813, 0.0022532747, 0.05478979, -0.0013138403, 0.01925712, -0.011502299, -0.005310069, 0.0014138529, 0.009984161, 0.023866246, 0.013013601, -0.03071839, -0.018026197, 0.02803771, 0.023387553, -0.008048874, -0.007146197, -0.015851565, -0.017916782, -0.0047185416, 0.0007359899, 0.021226598, 0.0038056064, 0.038404826, -0.009580691, 0.0007962539, 0.004198818, 0.011139861, 0.003249981, -0.006021269, 0.008144613, 0.029542172, 0.025124524, 0.00918406, -0.010367114, -0.005915273, -0.0110578, 0.017314997, 0.007850559, 0.000931741, 0.041468456, -0.004229591, -0.011953639, -0.008076228, 0.0076659205, -0.03566944, -0.0038192833, 0.033453777, -0.036900364, -0.009608045, 0.0063153235, 0.014962563, -0.012015184, -0.010127768, 9.102372e-06, -0.008048874, -0.011980993, 0.02166426, 0.0228268, -0.0023695284, -0.019899936, -0.02742225, 0.007659082, 0.022033537, -0.01529081, 0.0029627655, -0.029323343, 0.0011437334, 0.008390798, -0.03405556, -0.02924128, -0.008411313, 0.007016266, 0.016836304, -0.015126687, 0.21817441, 0.011139861, 0.01769795, 0.036298577, 0.0038910871, 0.008315574, 0.01698675, 0.0043082335, 0.007412897, -0.00013698303, -0.021076152, 0.026738402, -0.023387553, -0.009026775, 0.010093576, -3.3284097e-05, -0.044860337, -0.028639495, -0.00516988, 0.032332268, 0.011468108, -0.006766662, 0.025822047, -0.015249779, 0.010408145, 0.022512231, -0.030116605, -0.010278215, 0.02973365, 0.019708458, -0.012104085, -0.008254029, -0.0043219104, -4.883092e-05, -0.004376618, 0.013287139, 0.008199321, 0.023072984, 0.0004256945, 0.022813123, 0.005781923, -0.00030794466, 0.004961307, -0.004841634, -0.015167718, 0.0034072658, -0.008684852, 0.00815829, 0.009587529, -0.005327165, -0.028338604, 0.009204575, 0.035368547, 0.018942552, -0.010845807, -0.009874745, -0.005542577, 0.004988661, -0.013970986, 0.007775336, -0.021541169, 0.020843644, -0.0028653173, 0.02434494, 0.0059699807, -0.007843721, -0.021978829, 0.031156052, 0.017957812, -0.01020983, -0.037365377, -0.005060465, -0.0011693777, 0.0076659205, -0.0039663105, -0.037885103, 0.047322184, 0.008124097, 0.01511301, 0.029186573, 0.025329677, -0.016425995, -0.00013228158, -0.004137272, 0.011112507, -0.0056280578, -0.0014959144, -0.023387553, 0.007570182, -6.181332e-05, 0.0048006033, -0.01627555, -0.018805781, -0.006031527, 0.002947379, 0.023565354, -0.019448597, 0.017615888, -0.0011941672, -0.012917862, -0.025548508, 0.040866673, 0.0116801, -0.015646411, -0.01769795, 0.013752155, -0.014565933, 0.025165554, 0.0021695034, -0.0017455184, -0.014730056, -0.0122066615, 0.009375537, -0.0015386549, -0.011659585, 0.023620062, -0.011837385, -0.018737396, 0.020132445, -0.021185568, 0.027353864, -0.036517408, -0.00013805153, -0.0006654682, -0.023373878, -0.0051391074, 0.019380212, 0.03389144, 0.00378851, 0.0046296413, 0.018286059, -0.002684098, -0.008616467, -0.0062024887, -0.0017814204, -0.015509641, 0.010237183, -0.0133008165, -0.0025473286, -0.02063849, -0.006253777, 0.013984663, -0.00081249524, -0.01350597, 0.0012779384, -0.034164976, 0.011030446, -0.01574215, -0.0064315773, -0.025507478, -0.02416714, 0.003482489, -0.004243268, -0.0060623, -0.001658328, 0.026355447, 0.0076795975, -0.023004599, -0.01582421, 0.0113792075, -0.023100339, -0.026533248, 0.00025109993, -0.016508058, -0.037693623, -0.0028824133, -0.1748459, 0.018039873, 0.007529151, -0.01734235, 0.0050809802, 0.021759998, 0.018477535, -0.0024003016, 0.0049715647, -0.0039252797, 0.01422401, -0.009799521, -0.049209602, -0.04135904, -0.002978152, -0.004721961, -0.028995097, 0.012234015, 0.03367261, 0.007029943, 0.0022190823, -0.041933473, 0.011639069, -0.0044826143, -0.009478114, 0.028584788, 0.0061375233, 0.021199245, 0.004376618, -0.017588535, 0.021828383, -0.039936643, 0.046556275, -0.008411313, 0.044860337, -0.0039355373, -0.010626976, -0.0254938, -0.018080905, 0.03241433, 0.029815711, 0.0099431295, 0.039799873, -0.010250861, -0.0037953486, 0.00062828406, 0.006411062, -0.017096166, 0.018928874, -0.037474792, 0.030745743, -0.046474215, 0.0210488, -0.013321332, 0.018751074, -0.015769502, 0.0023746574, 0.0072556124, 0.0115912, -0.022019861, -0.026752079, -0.028229188, -0.0035867754, 0.017807366, 0.0032294656, -0.035286486, 0.013929956, -0.0005547706, -0.013164047, 0.0087258825, -0.00027695787, -0.004462099, -0.0049271146, -0.041085504, 0.0069752354, 0.014675348, -0.02046069, -0.029843066, 0.014976241, 0.014675348, -0.0056896037, 0.014059886, -0.011167215, 0.009567014, -0.025534833, -0.0051459456, 0.018340766, -0.0075633433, -0.008500214, -0.004663834, 0.0109894145, -0.0124802, -0.020994091, -0.0039252797, 0.015769502, 0.029979834, 0.016412318, 0.0008488246, -0.005812696, -0.00798049, -0.014661672, 0.0004851037, -0.011830546, -0.0006116153, 0.02866685, 0.011789516, 0.019010935, 0.017670596, 0.039252795, -0.014839471, -0.0026550344, 0.015318164, 0.029678943, 0.029624235, 0.0109894145, 0.012828962, -0.007987328, -0.027135033, 0.011939961, -0.010237183, 0.04765043, -0.01850489, -0.004150949, 0.0045407414, -0.020912029, -0.03194931, -0.08490639, -0.034575284, -0.0006915399, 0.028010357, 0.0010727843, 0.00076890003, 0.00815829, 0.019352859, -0.0045817723, 0.024427, 0.00054664986, -0.009525984, 0.012986247, 0.012637485, 0.017369704, -0.014730056, -0.020925706, -0.0039560525, -0.035313837, 0.027777849, 0.007323997, -0.014647994, 0.0110372845, -0.011310823, -0.010613299, -0.01979052, -0.019010935, 0.0063358387, 0.032359622, 0.015714794, -0.011030446, 0.009532821, 0.011447592, 0.007556505, -0.011980993, 0.02487834, -0.026546925, 0.009580691, 0.015208748, -0.005956304, 0.009525984, 0.009649076, -0.001863482, -0.038322765, -0.029706296, -0.007057297, -0.010490207, 0.015906272, 0.02134969, -0.034438513, 0.030472204, -0.00566225, -0.033344362, -0.027052972, 0.01515404, -0.024194492, 0.0053716153, 0.036271226, 0.0063358387, -0.009573853, -0.010709038, 0.01627555, -0.0019558014, 0.003945795, -0.007146197, -0.02059746, 0.0039868257, -0.004684349, 0.018299734, -0.0102850525, 0.0057169576, -0.01907932, -0.005381873, 0.029350696, 1.9112978e-05, 0.006677762, -0.010394468, -0.0050125956, 0.0016164425, 0.006824789, -0.019995674, -0.012247693, -0.004711703, -0.014866825, 0.013430747, 0.02625971, 0.016467026, -0.010893676, -0.0030875674, -0.04734954, -0.002121634, 0.040675197, 0.02063849, 0.010483368, 0.01083213, 0.0037167063, -0.0008189063, 0.022621647, -0.001760905, 0.0030277309, -0.01649438, -0.032469038, -0.0736366, 0.028639495, -0.010777422, -0.02108983, -0.0021695034, 0.016713211, 0.005634896, -0.011570685, 0.004390295, 0.022498554, -0.030061897, 0.010975738, -0.01943492, -0.021377046, -0.022457523, -0.013635901, 0.009587529, -0.016822627, 0.020939384, 0.0005881081, 0.018395474, 0.0063460963, 0.00691027, 0.02322343, 0.011748484, 0.00035730985, -0.018149288, -0.0009779007, 0.0146890255, -0.010914192, 0.012288723, -0.0016557636, -1.1773648e-05, -0.0022276302, -0.018737396, 0.005593865, -0.018436505, -0.0132529475, -0.0060041733, 0.01288367, 0.013013601, -0.035231777, 0.01479844, 0.0007697548, -0.023879923, 0.0030961155, 0.011358692, -0.018340766, 0.022183985, 0.010811615, 0.023004599, 0.009614883, 0.008684852, -0.027654756, 0.010093576, -0.0049715647, 0.010066222, -0.007761659, -5.898177e-05, 0.011577523, 0.04899077, 0.012575939, -0.008377121, -0.003771414, -0.0005492143, 0.0017198742, -0.03170313, 0.0007842866, -0.0010009805, 0.015208748, 0.016644826, -0.003080729, 0.025808372, 0.010825291, 0.0072009047, 0.0017557761, -0.013936793, -0.04431326, -0.035368547, 0.021144537, -0.02184206, -0.01965375, -0.032195497, -0.00028742928, 0.033262298, 0.0074470895, -0.018983582, 0.001841257, 0.024057724, 0.010811615, -0.008807944, 0.0021814706, -0.0010043997, 0.008397636, 0.023155047, 0.0017309868, -0.024003016, -0.013813701, -0.0001861345, 0.00472538, 0.01479844, 0.009567014, 0.007084651, -0.019311829, -0.008185644, 0.013608548, 0.000867203, -0.009861068, 0.01872372, -0.01408724, 0.006794016, -0.02063849, 0.0056246384, 0.019831551, -0.02625971, -0.0018463858, -0.030143958, 0.013512809, -0.024714217, 0.033262298, 0.029295988, 0.001533526, 0.026109263, 0.0067290505, 0.037201256, 0.018928874, 0.035286486, -0.019065643, 0.01462064, 0.009204575, 0.006452093, 0.0054947073, 0.011345015, -0.022211337, -0.02541174, -0.026191324, -0.00016989314, 0.02134969, -0.00018100564, 0.07675494, 0.02665634, -0.031539004, 0.0022601131, -0.007351351, 0.0329067, 0.01653541, -0.0047800876, -0.0077411435, -0.013382878, 0.0035149716, -0.00044236326, -0.013211916, -0.002090861, -0.014647994, 0.01747912, -0.005515223, -0.0074881203, -0.01560538, -0.0075017973, 0.023948308, -0.012336593, 0.016672181, 0.004328749, 0.0027319673, -0.0011386046, 0.018162966, 0.00023037083, -0.030034542, -0.031019282, 0.00010225644, -0.017766334, -0.025822047, -0.032168142, 0.0058468883, 0.005853727, -0.016726889, 0.0130819855, -0.0021780515, 0.0011300566, 0.011488623, 0.019872582, -0.020624813, -0.02134969, 0.029104512, -0.023168722, 0.0031781772, -0.019188736, -0.027094003]" 34410870,Official SkiFree Home Page,https://ski.ihoc.net/,185,1673950000,32,generichuman,"[-0.004967378, -0.031791218, -0.020170981, -0.020513559, -0.008893319, 0.013182393, -0.023130853, -0.032339346, -0.008742586, -0.049523044, 0.027776208, 0.024583383, -0.011085818, -0.0024768375, -0.006697396, 0.0011887449, 0.010674724, 0.001564724, -0.0023894801, -0.016964452, -0.00069372, 0.017594796, 0.006988587, 0.0040184376, -0.010256779, 0.007899844, -0.007879289, -0.031462345, 0.018745856, -0.019622857, 0.014758252, -0.0066871187, -0.010537693, -0.009729209, -0.025213726, -0.002192498, -0.0027937219, -0.008954983, -0.005337362, 0.004398699, 0.026666256, 0.029735753, -0.017498873, 0.0057758614, -0.0014088512, 0.01625189, 0.00752986, -0.022212744, -0.0026190071, 0.01686853, 0.0016700667, 0.036231026, -0.0112297, -0.010489732, -0.007988914, 0.0023809157, 0.02721438, -0.0022490232, -0.008324641, -0.01875956, -0.007516157, 0.016388921, -0.007372274, 0.0050324677, -0.011880598, -0.0009686387, -0.01444308, -0.009359226, -0.00651583, -0.02144537, 0.008680921, 0.026337381, -0.012045035, 0.02448746, 0.005529206, -0.003826594, -0.020897245, 0.008077985, 0.0022147654, 0.0022353202, 0.0117572695, -0.024980772, -0.011777825, 0.006001963, 0.030064628, 0.007797071, 0.024912257, 0.03368225, -0.029790565, -0.02188387, 0.03236675, 0.017293327, 0.015648954, 0.027132161, -0.010380107, 0.010633615, 0.012188918, 0.0069954386, -0.012017629, -0.0069920127, 0.007235243, -0.0016075463, -0.013840143, -0.003977328, -0.047412768, 0.033161532, 0.013778479, 0.010661021, 0.03702581, -0.030174252, -0.023747493, 0.038039837, 0.029132815, -0.022431994, 0.01505972, -0.0012726765, 0.030393502, -0.0176085, -0.012600011, -0.0033538367, 0.002899921, 0.018046997, 0.020732809, 0.00032009612, 0.026131835, 0.014360861, -0.021280933, -0.0027115033, -0.00986624, -0.020801324, 0.026638849, -0.00070014334, 0.002483689, -0.024953367, -0.018704748, 0.008605554, -0.03140753, 0.004957101, -0.010756942, -0.01527897, 0.030366097, 0.014127908, 0.004566562, -0.00022267556, -0.003319579, 0.021870166, -0.009825131, -0.0022473102, 0.016334109, -0.030832002, 0.0065809195, -0.025734443, -0.0072969072, -0.00030382368, 0.014141612, -0.0020263477, 0.0019955155, 0.010804904, -0.027406223, -0.024583383, 0.02012987, 0.021650916, -0.0054401355, -0.0071393214, 0.010352701, 0.033791874, 0.021637214, -0.008420562, -0.014730846, -0.013901807, 0.000994332, 0.028776534, -0.04341146, 0.017485172, 0.016525952, 0.009729209, -0.013333128, 0.025460381, 0.0010371542, -0.00291705, 0.010386959, 0.014717142, 0.017115187, 0.014963798, -0.019143248, -0.017293327, 0.013333128, -0.019485826, -0.005645682, -0.022980118, 0.011736715, 0.014333455, -0.011825785, -0.02659774, -0.6358244, -0.011195443, -0.013990877, -0.024405243, 0.010489732, 0.017937373, 0.006406205, 0.021390557, -0.027789911, 0.026611444, -0.008715179, 0.013709963, 0.030420909, -0.0017608498, -0.020897245, -0.0057347524, 0.0081396485, -0.0123396525, -0.016210781, 0.009934756, -0.012538347, 0.0060225176, -0.0215824, 0.01880067, 0.006508978, 0.034339998, 0.018608825, -0.014854173, -0.010935083, 0.025926288, 0.007988914, 0.017211108, 0.015662657, -0.0008487365, 0.05275698, -0.017718123, -0.010880271, 0.0017214534, 0.017992185, 0.023308992, -0.022514213, -0.028502472, 0.0027954348, 0.023103446, 0.010291037, 0.012997402, 0.016306704, -0.0077696643, 0.013716815, -0.011921708, 0.011613388, -0.0136208935, 0.017444061, 0.0061732517, 0.021075387, 0.015525626, 0.015183048, -0.016950749, 0.013196097, 0.0021171307, -0.007605227, 0.037272464, -0.017539984, 0.012216324, -0.019431012, 0.0118120825, -0.008824804, 0.003192825, 0.0018122365, -0.024295617, 0.020143574, 0.013860698, -0.015470813, -0.026035912, -0.01153802, 0.011969668, 0.020815026, -0.016224485, -0.010989896, 0.021130199, 0.0022147654, -0.019691372, -0.04028715, -0.021198714, 0.04738536, -0.03250378, -0.026309974, 0.024651898, 0.020390231, -0.004258242, -0.0012486961, 0.0064507397, -0.015525626, -0.035079967, -0.0033829557, 0.027584365, -0.017951077, 0.0049879327, 0.0009617872, -0.025967397, 0.0061287167, -0.019965434, -0.004583691, 0.018828075, 0.009982717, 0.014127908, -0.01929398, 0.005080429, 0.03672434, -0.038012434, 0.015923016, -0.034422215, -0.011400989, -0.024761522, 0.012798706, -0.01444308, 0.0072900555, -0.00937978, -0.008009469, -0.012510941, 0.01440197, -0.01770442, -0.016334109, 0.025049288, -0.00033743912, 0.010236224, 0.019568043, -0.0035765122, -0.03206528, -0.0021000018, 0.006258896, 0.0040698242, 0.023267884, -0.005368194, -0.006553513, 0.0036141956, 0.03527181, 0.007817625, -0.001805385, -0.025200022, -0.04768683, 0.0044774916, -0.024446351, 0.0054401355, 0.008934429, -0.027296599, -0.009948459, -0.0044500856, 0.014648627, 0.030420909, 0.0017077503, -0.017444061, 0.0034668874, 0.003100329, 0.0008932716, -0.01669039, 0.008331492, -0.037053213, -0.008927577, 0.009037202, -0.013703112, -0.004583691, -0.0061526974, 0.014703439, 0.010051233, -0.0047309995, -0.019211764, 0.026268866, -0.023350103, -0.027666584, 0.01845809, 0.004100656, 0.0062246383, -0.0022199042, -0.036669526, 0.022623837, -0.00046890337, 0.0011553436, 0.004247965, -0.010023827, 0.0030489424, 0.0012581169, 0.006258896, -0.019705074, 0.016525952, -0.001088541, 0.0066734157, 0.029735753, -0.0036484536, -0.0146212205, 0.028091379, -0.017019264, -0.011435247, 0.01021567, -0.01897881, 0.025104102, -0.004508324, -0.0016255316, 0.01418272, 0.031380124, 0.019211764, 0.011428395, 0.0043233316, -0.0041417656, 0.025871474, -0.031681594, -0.0022199042, -0.015251564, 0.016978156, -0.0031208836, -0.0064507397, -0.0042993515, 0.0038711291, -0.009927904, 0.009064608, 0.0059060412, 0.00011433534, 0.00438157, -0.011764121, 7.986345e-05, -0.011613388, -0.010859716, 0.022747166, -0.015251564, 0.007797071, 0.025282241, -0.018732155, -0.0011373583, 0.013716815, -0.023308992, 0.0025778979, -0.007975211, -0.007899844, 0.0007262649, 0.03184603, 0.025432976, 0.036340654, -0.0018499201, 0.04905714, -0.019581746, -0.010763794, 0.006416482, 0.010414365, -0.015813392, 0.014319751, -0.005652534, 0.0479883, -0.0005836669, -0.029927596, 0.026584037, -0.018636232, 0.01625189, -0.017635904, 0.008557593, -0.009838834, -0.0074476413, 0.022185339, 0.013154987, 0.020732809, 0.030585345, -0.011997075, -0.007331165, -0.00849593, -0.0035593833, -0.026022209, -0.00200408, -0.019047325, -0.025378164, -0.0003485729, -0.018485498, -0.014114205, -0.030311283, -0.01782775, 0.0090577565, 0.018252544, -0.00067102426, 0.003316153, -0.0031243095, 0.02180165, 0.017992185, -0.027817316, -0.018375874, 0.007406532, 0.00010491445, -0.0040252893, 0.0028759406, -0.016580766, -0.014141612, 0.020102466, 0.009359226, -0.009763467, 0.010325295, -0.018211436, 0.0024545698, -0.0061321426, -0.010517138, 0.033216342, -0.018718451, -0.02439154, 0.0028622374, -0.0109487865, 0.009749764, -0.037847996, -0.0122574335, 0.0554976, -0.020308012, 0.0005267134, -0.0065774936, 0.0004140909, -0.006125291, 0.004210281, 0.001173329, -0.011633942, -0.014922689, -0.019115841, 0.0026549778, -0.00493312, -0.012593159, 0.035819933, 0.01615597, -0.016567063, -0.02232237, -0.004953675, -0.01188745, 0.063582435, 0.0032476375, -0.012805558, 0.0061355685, 0.00062648917, 0.005364768, -0.038505744, -0.02681699, 0.02104798, 0.004487769, 0.01527897, -0.00964699, 0.0019458418, -0.00398418, 0.014991204, -0.01484047, 0.013799033, -0.019170653, -0.013524971, -0.014045689, 0.0059951115, 0.028475067, 0.017512577, 0.029927596, -0.02034912, 0.003973902, 0.016882233, 0.006570642, 0.02188387, -0.023185665, -0.022980118, 0.009612733, 0.00796836, 0.014025135, -0.0017779787, 0.013682557, -0.018416982, 0.023939336, -0.017211108, 0.0026926615, 0.022514213, 0.015073423, 0.011743567, -0.0154845165, 0.0054367096, -0.0057621584, -0.019540638, -0.0024151735, 0.01070213, -0.033462998, 0.002298697, -0.0054641156, -0.0034377682, 0.0048371986, -0.03395631, 0.0005485527, -0.015210454, -0.00299413, -0.010044381, -0.00623149, -0.0176085, -0.028612098, 0.0064473143, -0.0024751246, 0.0031962509, -0.00042757991, -0.013730518, 0.0022473102, 0.0009763467, 0.017457765, 0.0145938145, -0.0391909, -0.051633324, -0.003054081, 0.025076695, -0.005813545, 0.012147808, 0.008817952, 0.0032733309, -0.0041623204, -0.010873419, -0.036450278, -0.0074544926, -0.023021229, -0.012223176, 0.01730703, 0.001634096, 0.019663965, -0.027844723, 0.005412729, 0.030667564, -0.004922843, -0.0037203948, -0.02148648, 0.01607375, -0.0017933948, 0.009489405, 0.027077349, 0.01929398, -0.032394156, 0.010976193, -0.0140114315, -0.0014619507, -0.0356555, 0.007481899, -0.015566735, 0.01505972, 0.017718123, 0.0063376892, -0.0028570988, 0.0022318943, 0.0002290989, 0.016717797, -0.0021222695, 0.028612098, 0.0032887468, 0.019800996, 0.0054606902, -0.005289401, -0.026529225, 0.017718123, -0.034888122, 0.02413118, -0.014813064, -0.043658115, 0.011496911, 0.009181085, -0.008132797, -0.019828403, -0.0040629725, 0.0013257761, 0.015827093, -0.00023595046, -0.012579457, -0.02347343, 0.0015707192, 0.009482553, 0.0051420927, -0.003268192, -0.003317866, -0.009777171, 0.032229718, -0.0021102792, -0.014936392, -0.0065843454, -0.032476377, -0.0021342596, -0.0002310259, -0.0027902962, 0.019581746, -0.008516484, -0.0026035912, 0.006519255, -0.022007197, 0.0038745548, -0.048563827, -0.009537366, 0.01021567, 0.03853315, 0.017156295, 0.02311715, -0.0044843433, 0.024994476, -0.00792725, 0.0024614215, -0.00299413, -0.022651244, 0.000493312, -0.028529879, 0.0017402952, 0.005943725, 0.011908004, 0.02478893, -0.018691044, -3.5060697e-05, 0.007947804, -0.0051318156, 0.0006277738, -0.010147154, -0.031106064, 0.018334763, 0.01039381, -0.006217787, 0.00929071, -0.01127081, -0.00206917, 0.0067830402, 0.0096881, 0.0046487805, 0.034065936, 0.0068447045, -0.007495602, -0.0065603647, 0.0071050636, 0.009386632, -0.027570661, 0.0127850035, -0.025405569, 0.016539656, 0.0026275716, 0.0052106082, 0.006683693, 0.022925306, 0.0073106103, 0.011469505, 0.034833312, -0.018046997, -0.023404915, 0.016731499, 0.00080634246, -0.0007742258, -0.028310629, 0.012415019, 0.000225459, -0.012401316, 0.0051866276, 0.0043473123, 0.010935083, -0.0054332837, -0.038779806, 0.007954656, -0.015251564, 0.03549106, 0.0013471872, 0.022623837, 0.019335091, 0.0031962509, -0.03192825, -0.011085818, 0.005967705, 0.010092342, 0.020170981, 0.021733135, -0.017320734, -0.020677995, 0.0025162338, 0.00933867, -0.03055794, -0.03883462, 0.008365749, 0.01686853, -0.011866895, -0.033271156, -0.020417636, -0.05226367, 0.044096615, -0.017471468, -0.013017956, -0.015553032, -0.018211436, -0.020445043, 0.020061355, -0.018951403, 0.009345522, 0.035600685, -0.01070213, 0.0008470236, -0.018307358, 0.011215997, 0.014634923, 0.0081396485, 0.010674724, -0.025570007, 0.019143248, 0.005628553, 0.012928886, -0.021253526, -0.00801632, -0.0036553051, 0.02615924, 0.0070571024, 0.013627744, -0.01677261, 0.01607375, 0.010770646, 0.0058717835, -0.017074076, -0.026008505, -0.002687523, -6.7659115e-05, 0.039848648, -0.011599684, 0.0054880963, -0.0039293673, -0.016662983, 0.0037923362, -0.00089498446, 0.02536446, -0.01867734, -0.050975576, -0.0025213726, -0.021130199, 0.021500183, -0.01567636, 0.0046110973, 0.0027132162, 0.012819261, 0.039300524, -0.022925306, 0.011263958, 0.014100502, 0.016676687, -0.029653534, 0.004402125, -0.040616024, -0.020020247, 0.031599376, -0.0031260224, -0.017512577, -0.026967725, 0.0127027845, 0.022747166, 0.0062897285, -0.010030678, 0.013429049, -0.0026018783, 0.020006543, -0.024364132, -0.020143574, 0.0082218675, 0.024693007, -0.0014097076, 0.011003599, -0.0015904175, 0.0064473143, -0.031489752, -0.007920398, -0.0073243133, -0.05500429, -0.0064610173, 2.6268759e-05, 0.009736061, 0.016608171, -0.007851883, -0.044096615, 0.00072797784, -0.007858735, 0.016087454, 0.027570661, -0.007392829, 0.0048988624, 0.010016975, -0.0010097481, 0.01784145, -0.0048783077, -0.02461079, -6.701678e-05, -0.007845031, -0.03571031, 0.0006144989, 0.0059814085, 0.03949237, 0.012538347, 0.006697396, -0.022267556, -0.012654824, -0.069666624, -0.021911277, 0.004922843, 0.0068447045, 0.063582435, 0.009270155, -0.018786967, 0.013052214, -0.012613715, -0.0061355685, -0.020897245, -0.010811755, 0.024651898, 0.0031602802, -0.00036827114, -0.0034480456, 0.0077696643, -0.02188387, -0.01219577, 0.0054743933, -0.003129448, 0.0058580805, 0.004148617, -0.0062246383, 0.0006466156, 0.0037546526, 0.0013232067, 0.010688427, 0.006711099, -0.04223299, 0.0005870927, 0.01391551, -0.0009814854, -0.008557593, -0.00031345867, -9.929403e-05, 0.00299413, -0.013346831, 0.017265921, -0.019184357, 0.0064130565, -0.018937701, 0.015690062, -0.000986624, -0.010983044, 0.02500818, 0.013846994, -0.021212418, -0.003024962, 0.019787293, -0.017690718, -0.0006213505, -0.00020083624, 0.0154022975, 0.0018995939, 0.0009412325, 0.042178176, -0.015388595, -0.018512905, -0.008084836, 0.004268519, -0.030832002, 0.012353355, 0.0113119185, 0.009359226, 0.0057758614, -0.012038183, 0.01897881, -0.0027491867, -0.015827093, -0.014566408, -0.011421544, -0.0067179506, 0.028173598, -0.0017291615, -0.017348139, 0.023240477, 0.009811428, 0.011106372, 0.014867877, 0.19765368, 0.011866895, 0.0036039185, 0.045658767, 0.016786313, 0.023665274, 0.0075846724, 0.00253165, 0.001986951, 0.02888616, -0.010578802, 0.016567063, 0.0074133836, -0.00023937624, 0.030530533, 0.013449605, -0.00043464557, -0.021253526, -0.018691044, -0.018882887, 0.031215688, -0.0068926653, 0.016060047, -0.0030163976, 0.010777498, 0.010695279, -0.018910294, 0.021459073, 0.02470671, -0.011880598, -0.006214361, 0.017197406, 0.006711099, -0.0070571024, -0.0004063829, -0.004552859, 0.018293655, 0.003055794, 0.0070571024, 0.017060375, 0.024103774, -0.003734098, -0.01836217, -0.029763158, 0.0108665675, 0.050208203, -0.0071187667, -0.014127908, -0.011202293, -0.0057621584, -0.027707692, -0.0067522083, 0.031818625, 0.018855482, -0.009564772, 0.014607517, 0.01237391, 0.00012921606, 0.00015597996, 0.018910294, -0.019225465, 0.02241829, -0.02315826, 0.025967397, -0.030612752, 0.0007682307, -0.0043164804, 0.03077719, 0.0030797743, -0.016800014, -0.016854828, 0.01915695, -0.022884198, 0.015169345, -0.015073423, -0.023569353, 0.022911603, 0.011243403, 0.012668527, 0.021143902, -0.02888616, -0.009461999, 0.0031482899, -0.006926923, -0.031160876, -0.035463654, 0.020595778, -0.00023081178, -0.012072441, -0.0091399755, -0.004645355, -0.013709963, -0.011277661, -0.018101811, 0.011017302, -0.016060047, -0.019170653, 0.029708346, -0.022431994, -0.0046248003, -0.006663138, 0.009818279, 0.019828403, -0.011723012, 0.0060362206, 0.026858099, -0.0009874805, 0.015731173, -0.0024768375, -0.018554013, 0.008838507, -0.021253526, 0.020445043, 0.0011793241, -0.011736715, 0.023185665, -0.0028930695, -0.03686137, -0.002548779, 0.015470813, -0.001443109, -0.006944052, 0.01281241, 0.013888104, -0.011291364, -0.018814372, -0.049468234, 0.0095579205, -0.022596432, -0.022527916, 0.019088434, -0.015320079, -0.009434593, 0.00043593024, -0.010688427, -0.00068429916, 0.011709309, 0.007872438, -0.010167709, 0.0023877672, 0.006663138, 0.007845031, 0.018704748, 0.015470813, 0.028721722, -0.032777842, -0.0010500009, 0.0039156643, 0.0036621566, -0.020061355, -0.018416982, -0.0035525318, 0.010907677, -0.0044192537, 0.01845809, -0.020842433, -0.027885832, -0.015977828, -0.012880925, 0.004261668, -0.03184603, 0.019033622, 0.039519776, -0.016416328, -0.016183374, -0.026268866, -0.17561908, 0.002038338, -0.025104102, -0.031791218, 0.020403933, 0.001319781, 0.026542928, -0.008941281, -0.013477011, -0.003932793, -0.010996747, 0.032531187, -0.012442426, -0.0057004946, 0.018937701, 0.008441117, -0.013004253, 0.0046008197, 0.034285184, 0.015621548, 0.029927596, -0.008434265, 0.00827668, -0.017471468, 0.029297253, 0.013662002, 0.0074613444, -0.005385323, -0.003036952, -0.02787213, 0.023459727, 0.0009138263, -0.013723667, -0.002747474, 0.022144228, -0.014634923, 0.012901479, -0.0005408447, -0.010907677, 0.00850278, 0.0040184376, 0.017348139, 0.03143494, -0.024898553, -0.010695279, 0.020198386, 0.011764121, -0.033051904, 0.024843741, 0.013223503, 0.03250378, -0.025282241, 0.0041794493, 0.020061355, 0.021212418, -0.017224811, 0.007173579, 0.0034840163, -0.0014191285, 0.016101157, 0.0053476393, -0.029763158, -0.011702457, 0.010839161, 0.008310937, -0.01615597, -0.01858142, -0.0010911103, -0.03606659, 0.008098539, -0.009105718, -0.01875956, 0.009564772, -0.00046248003, 0.010887123, -0.0057621584, -0.020321716, 0.010887123, 0.009448295, 0.003191112, -0.019828403, 0.029571315, 0.0072969072, -0.014333455, 0.0041931523, 0.015374891, -0.0037820588, 0.004566562, -0.003271618, -0.033216342, -0.003132874, -0.023446023, -0.022048308, 0.008317789, 0.013668854, 0.0050667254, 0.022829384, -0.015333782, -0.017855154, -0.043493677, 0.011921708, -0.031160876, -0.017060375, -0.0002751328, 0.03447703, 0.0135934865, -0.013819588, 0.04187671, 0.01440197, 0.0074339383, -0.028091379, 0.024227101, 0.016594468, 0.012805558, 0.0029821398, 0.0049091396, 0.01647114, -0.034065936, -0.005354491, -0.0026566908, 0.02224015, -0.002764603, -0.017553687, 0.026268866, 0.0023809157, -0.0073106103, -0.10825458, -0.04149302, 0.010558248, 0.02003395, 0.004703593, 0.041054524, -0.008290383, 0.014580111, -0.007523008, 0.024884852, 0.009064608, -0.028091379, 0.01792367, 2.4314993e-05, 0.0017317308, 0.00026271434, -0.0029701495, -0.02056837, -0.017471468, 0.019842105, -0.0057313265, -0.0072420947, -0.014991204, -0.02104798, -0.017498873, -0.014484189, -0.019307684, -0.004676187, 0.022130525, 0.030009815, 0.02078762, -0.009612733, 0.0038814065, -0.023610462, -0.0051763505, -0.0075709694, -0.016498547, -0.0035730863, -0.0014062818, -0.009427741, 0.0013069343, -0.0041863006, 0.012695933, -0.021253526, 0.015046016, 0.0015878481, -0.033462998, 0.022555321, 0.026570333, -0.026460709, -0.03140753, 0.0004791807, -0.018951403, -0.02522743, 0.016101157, 0.01281241, 0.0040801014, 0.031489752, -0.029626127, -0.0032287957, 0.011544872, 0.0022575876, 0.018101811, 0.0032150927, -6.407275e-05, -0.019335091, 0.012038183, 0.001976674, 0.015991531, -0.012949441, -0.02241829, 0.029187629, -0.03554587, 0.011565426, 0.009777171, -0.016621875, -0.03412075, -0.022431994, 0.02118501, 0.0047721085, -0.022843087, -0.024569679, -0.009174233, 0.0060156663, 0.00254364, 0.021239823, 0.0034017975, -0.0021650917, -0.0066049, -0.016210781, 0.014676033, 0.0108665675, 0.0072557977, -0.007468196, 0.0008731452, -0.0006029369, 0.015690062, 0.013833292, -0.021774245, 0.0202532, -0.018046997, -0.004408976, -0.06155438, 0.018499201, 0.0076942975, -0.007975211, 0.022911603, 0.010619911, -0.005351065, -0.026885506, -0.016827421, -0.022911603, -0.048865296, 0.021075387, -0.00995531, 0.01677261, -0.019951731, -0.027419927, 0.03206528, 0.004984507, 0.030640159, 0.006974884, 0.0011519179, -0.02399415, 0.013065917, 0.012997402, 0.0006508978, -0.01444308, -0.022363478, 0.029023191, -0.0044398084, -0.0034651745, 0.008310937, 0.008674069, 0.023569353, 0.010243076, -0.034778498, 0.030749783, -0.0030455166, 0.010297889, 0.012689082, 0.040451586, -0.024843741, -0.024761522, -0.0054846704, -0.019485826, -0.010606209, -0.00032673357, 0.009619584, 0.0022867068, 0.003809465, -0.0021342596, -0.010428068, 0.018704748, -0.0312705, -0.024569679, -0.0027389096, -0.008002617, -0.007975211, -0.008961835, -0.0044226795, -0.025693335, 0.019389903, 0.020856136, 0.00067102426, -0.008831656, 0.027789911, -0.03902646, -0.0058717835, 0.0118120825, 0.0070433994, 0.0003845436, -0.02307604, 0.0058512287, 0.029023191, 0.0017951076, 0.010469178, 0.016841125, 0.00031474335, 0.0045597106, -0.008537038, 0.018088108, 0.015525626, -0.01593672, -0.026844395, 0.011969668, 0.049687482, 0.012325949, -0.0041109337, 0.010496584, -0.015470813, 0.028831348, 0.0032270828, -0.00929071, -0.010023827, -0.024323024, 0.018279951, 0.018636232, 0.010222522, 0.032421563, 0.010599357, -0.0030866258, 0.009181085, 0.0048783077, -0.006536384, -0.031709, -0.0146212205, 0.024994476, -0.01973248, -0.038204275, -0.013401643, -0.008310937, 0.0031088935, 0.007872438, 0.016635578, 0.0113667315, -0.025994804, 0.03447703, -0.0135934865, -0.028858753, -0.014950095, 0.017074076, 0.01814292, 0.009503108, 0.051907387, -0.008927577, 0.0027800188, 0.015580438, 0.025405569, -0.0321475, -0.005518928, -0.017992185, -0.013812737, -0.004148617, 0.0081396485, -0.025378164, 0.010455474, -0.028338036, -0.01131877, 0.020513559, 0.007851883, 0.07169468, 0.015155641, 0.005354491, 0.0036655825, 0.004833773, -0.010880271, 0.021952385, 0.003531977, 0.0006487567, -0.028858753, 0.03351781, -0.01268223, 0.012839816, -0.007934102, -0.0062863026, -0.00933182, -0.012915183, 0.011969668, -0.010147154, 0.0015809966, 0.037053213, -0.0029324659, 0.027789911, 0.004268519, -0.016539656, 0.0023774898, 0.02355565, 0.02311715, -0.04056121, -0.021308338, -0.0022935583, -0.004402125, -0.03250378, -0.025021883, 0.017115187, -0.011469505, 0.0067385053, 0.011873746, 0.031160876, 0.012778152, -0.000125255, 0.0073517193, -0.023596758, -0.008331492, 0.0012375623, -0.0131755425, -0.03077719, -0.0061835293, -0.020883542]" 2763022,What Google's Famous Cafeterias Can Teach Us About Health,http://www.theatlantic.com/life/print/2011/07/what-googles-famous-cafeterias-can-teach-us-about-health/241876/,210,1310651835,66,sasvari,"[0.007709079, -0.010437207, -0.0051111714, -0.022970973, -0.01618646, 0.028961135, 0.0041377703, 0.004827941, -0.009753548, -0.017384494, 0.00370153, 0.011765461, 0.0066608004, -0.039717384, 0.0057264655, 0.015261893, 0.024312248, -0.012800718, -0.009480083, -0.020054024, -0.02040562, 0.010170255, -0.0132890465, 0.019311763, -0.021733873, -0.030002903, -0.0046814424, -0.008848513, 0.01910341, -0.020106113, -0.0017905378, -0.0002738709, -0.006074806, -0.04099355, -0.0026679013, -0.0070514632, 0.0029804315, -0.01972847, 0.0064296583, -0.026591115, 0.018335108, 0.0001857683, 0.026239518, -0.008073698, -0.009421485, 0.02470291, -0.022319868, -0.009714481, -0.013712264, 0.027085954, 0.01642086, 0.0035843311, -0.006618479, -0.029586196, 0.02992477, -0.01884297, -0.014415457, 0.01597811, 0.0035843311, -0.02457269, -0.010085611, 0.002977176, -0.020496774, -0.012520743, -0.016277617, 6.439832e-05, -0.005990163, 0.0074746814, -0.0033206337, -0.0077481456, 0.012989538, 0.009916324, 0.006953798, -0.027606837, 0.026773423, -0.017905379, -0.011068779, 0.008861534, 0.005791576, 0.024481535, 0.017319383, -0.01642086, -0.020444686, -0.004795386, 0.025497258, 0.017840268, 0.033492822, -0.008868045, -0.01580882, -0.008269029, 0.009134999, 0.016381793, 0.0068951985, 0.008907111, 0.012833273, 0.016095307, -0.009441017, 0.025848854, -0.0136731975, -0.03203435, 0.00696682, 0.013946662, -0.0035127096, -0.007298883, -0.031825997, 0.0036233973, 0.013074181, -0.0042712465, -0.012475166, 0.003961972, -0.009213131, 0.0032945895, -0.009421485, 0.0058208755, 0.017202185, 0.015431181, 0.01069765, -0.031904127, -0.008282051, -0.019129455, 0.009564728, 0.011661285, 0.010346053, 0.008119275, 0.0046065655, -0.016342727, -0.035368007, -0.009506128, 0.0018084432, -0.0003735713, 0.023999717, 0.014480568, 0.0043396126, 0.0064980243, -0.0060422514, 0.014467546, -0.013907596, 0.0019272697, 0.00090829097, -0.0029804315, 0.0060520177, 0.047192067, 0.0066477787, -0.00066127814, 0.015131672, 0.010098633, 0.018504394, -0.006507791, -0.0007068555, 0.0022414278, 0.029325753, 0.0039912714, -0.004336357, -0.019689405, 0.018621594, -0.0039456943, -0.020457707, 0.012924427, -0.016512014, -0.026578093, -0.0004692023, 0.003926161, 0.013347645, 0.012104035, 0.023400702, 0.014519634, 0.026148362, -0.021942226, -0.010183277, 0.0105218515, -0.031461377, 0.013295557, 0.021265078, -0.0047400417, -0.0049972283, 0.0072272616, -0.009174065, -0.011081801, -0.0077937227, 0.019155499, -0.014962385, -0.00081835716, 0.015574424, 0.020431664, -0.020197267, 0.0059869075, 0.037425496, 0.004342868, 0.015079584, -0.015340026, 0.0132434685, 0.0059999293, 0.00740306, -0.0026874344, -0.66381425, -0.017215207, 0.015379092, 0.021668764, -0.012722585, 0.0058697085, -0.0022967716, 0.014128971, -0.023426745, 0.006856132, -0.010482785, -0.0011117612, -0.021265078, -0.022840751, 0.0038903502, -0.0042224135, -0.013738308, -0.017762136, -0.0069212425, -0.0024025762, 0.027476616, -0.0012460515, -0.00058640115, 0.00696682, -0.005215348, -0.007546303, 0.021929204, -0.009141509, -0.026213473, 0.018960167, -0.0100791, -0.0048865406, 0.0073119053, -0.018738791, 0.05294783, -0.0011988465, -0.016954765, 0.0012061713, -0.008119275, 0.058078535, -0.036435816, 0.0015829982, 0.020861393, -0.020353531, 0.00122896, -0.0072467946, -0.008256007, -0.0056776325, -0.008236473, -0.010632539, 0.04641074, -0.004919096, -0.0031985517, 0.0024986141, 0.012800718, 0.009929346, 0.03435228, -0.0041019595, -0.004648887, 0.00752677, -0.0048084077, -0.0107627595, -0.016577125, -0.024338292, -0.039509032, -0.0031855295, -0.0038870948, 0.0018068154, 0.027606837, -0.0032262236, 0.0021112068, 0.034925252, -0.009688437, 0.03203435, -0.013113248, 0.04398863, -0.005996674, 0.024012739, -0.0023390935, 0.012839784, 0.0072077285, -0.018621594, 0.003372722, -0.013803419, 0.024169005, -0.0034052774, -0.023231413, -0.0096168155, 0.0039456943, 0.0246378, 0.037086923, -0.013647154, 0.019702427, -0.022384979, -0.023049105, -0.0014405691, -0.002951132, 0.021538543, 0.007129596, -0.013477867, -0.003942439, -0.007012397, 0.006331993, -0.012787695, 0.023869496, 0.026851555, -0.016121352, -0.006888687, 0.023439767, -0.006315715, -0.017124053, -0.0050493167, -0.0047139977, -0.0022642165, 0.008308096, -0.023596033, -0.010769271, 0.0044014673, -0.029273665, -0.024442468, 0.009493106, 0.0017449604, -0.01275514, -0.0202754, 0.01785329, 0.0015113767, -0.00039859812, -0.012162635, -0.03435228, -0.008861534, 0.014011772, -0.01431128, 0.016603168, 0.0008594581, 0.015183761, 0.028883003, 0.013399734, -0.010593473, 0.020744195, -0.014376391, -0.013699242, -0.0146758985, -0.004782364, -0.006488258, 0.0042256694, -0.0024074595, 0.004909329, 0.0040401043, -0.015795799, 0.025067529, -0.030028947, -0.008874556, 0.00581762, 0.02961224, 0.01219519, 0.007539792, -0.0031676241, -0.010626028, -0.008594582, -0.020731172, 0.0053618466, 0.019507095, -0.032112483, -0.008679225, -0.0015105628, -0.006364548, -0.019129455, 0.029976858, -0.043051038, -0.018100709, -0.005033039, 0.0112380665, -0.015457224, 0.029846637, 0.016603168, -0.0013713891, -0.008939667, 0.0024351315, 0.0041280035, -0.01368622, 0.015965085, -0.0035387538, -0.0012484932, -0.035680536, 0.0062636267, 0.02519775, 0.022632398, 0.024494557, -0.011615707, 0.02407785, -0.0045219217, 0.01823093, -0.027320351, -0.00024701282, 0.0077155903, 0.031643685, -0.017319383, 0.0257577, -0.021512497, 0.011531063, 0.03252919, 0.021199968, 0.03776407, 0.01107529, 0.011192489, -0.014376391, 0.001666828, -0.023036083, 0.027398484, -0.00033104603, 0.022398, -0.0052772034, 0.010482785, -0.027164087, 0.016082285, 0.019481052, 0.009740526, 0.0126704965, -0.0090438435, -0.0044698333, -0.009421485, -0.014285236, 0.019051323, -0.023999717, -0.009414974, 0.004658654, 0.0024530368, 0.025900943, 0.014923318, -0.011374799, 0.00027651602, 0.0018458817, -0.008275541, 0.012390521, -0.014975407, 0.009323819, 0.033701178, -0.022593332, 0.045837767, 0.015261893, 0.004209392, 0.018999234, 0.025848854, -0.006123639, -0.008451339, 0.01406386, 0.02040562, -0.001167105, -0.027606837, 0.026903644, -0.011179467, 0.0011687329, -0.0060520177, -0.0024269926, 0.021812007, -0.010417675, 0.008562027, -0.012038925, 0.014597766, 0.035289872, 0.020587929, -0.006602201, 0.028153766, -0.0014120833, -0.005150238, -0.0035517758, -0.00085864426, -0.008229963, 0.009623326, 0.015001452, -0.01132271, -0.024090873, 0.03028939, -0.027320351, -0.0010254899, -0.0010621145, 0.00017956246, -0.011101334, -0.018569505, -0.014272214, -0.014024794, -0.030575875, 0.016381793, 0.0007011583, -0.0033857443, -0.017879333, -0.009369396, 0.0028323052, -0.030680051, 0.030211257, 0.0006441867, 0.008607604, 0.032893807, -0.0062603713, 0.009180576, -0.014324303, 0.024025762, 0.0061854944, 0.016433882, 0.01823093, -0.0064231474, -0.009799125, 0.007259817, 0.00021323678, 0.009349863, 0.010098633, 0.0036950188, -0.035081517, 0.008360184, -0.03161764, -0.03278963, -0.007552814, -0.014363369, 0.006810555, -0.009681926, -0.013608087, -0.017150097, -0.0039652274, 0.011498508, -0.0034410881, 0.015274915, -0.027320351, 0.0077481456, -0.011472464, 0.078705534, 0.01760587, 0.013634131, 0.0019370364, 0.0123775, -0.0027525448, -0.025458192, -0.049796484, 0.018217908, 0.0073900376, -0.016616192, -0.009258708, 0.008868045, -0.0036168864, 0.02956015, 0.017827246, 0.02172085, 0.0020102856, -0.004827941, -0.0058957525, -0.003188785, 0.0043656565, 0.0033434224, 0.014089905, 0.013907596, 0.006449192, 0.012468654, 0.0021942228, 0.004616332, -0.008125786, 0.0044568116, 0.008620625, 0.00054000993, 0.014727987, -0.010847404, 0.0391965, 0.010111655, -0.012149612, 0.022541244, 0.025497258, 0.0069603086, 0.021512497, -0.0019305253, -0.016095307, 0.025393082, -0.007930455, -0.006331993, 0.034508545, 0.0027232452, -0.017775157, 0.039587162, 0.006152939, -0.015157716, 3.6548336e-05, 0.022176625, 0.018660659, -0.024650821, -0.027815191, -0.0120975245, -0.021186946, -0.01847835, -0.0010393258, -0.016876632, -0.010417675, -0.0066152234, -0.03377931, -0.006208283, -0.0100921225, -0.016290639, -0.023973674, 0.022176625, -0.039066277, 0.011999859, 0.019585228, 0.012279834, 0.011049246, 0.0010962974, 0.023049105, 0.013634131, 0.03377931, 0.00065802265, -0.039274633, 0.0078002336, -0.024807088, -0.002109579, -0.012748629, -0.019741492, -0.01045023, -0.025354015, 0.03305007, 0.021877116, -0.0009115465, 0.014493589, 0.00035057915, 0.00852296, 0.004287524, 0.009304286, 0.02836212, -0.0054106796, 0.0005542528, -0.018777858, -0.021694807, -0.012963493, 0.018699726, 0.020679085, 0.006973331, -0.0012240767, 0.014727987, 0.01823093, -0.010261409, 0.015300959, -0.030315433, -0.0054399795, -0.02221569, 0.0067584664, 0.0059771407, 0.017267296, 0.020444686, 0.018777858, -0.027216174, 0.022840751, -0.02420807, 0.023218391, 0.006152939, 0.02867465, 0.013178358, -0.026213473, -0.056984678, -0.008080209, -0.011296666, -0.033753265, 0.007813256, -0.0050297836, -0.029872682, -0.039587162, -0.0044340226, 0.006667312, 0.008282051, -0.007272839, -0.027554749, -0.01599113, -0.009727503, 0.001038512, -0.007852322, -0.024338292, -0.032060392, 0.0012916288, -0.030706096, 0.008438316, 0.03403975, 0.0009497989, 0.0054399795, -0.025406104, -0.015144695, 0.010150721, -0.03521174, -0.013197891, 0.012891872, 0.034456458, 0.023622077, 0.020054024, -0.026604136, -0.010756249, 0.009714481, 0.0010417674, -0.002936482, 0.0043265903, -0.014272214, -0.011856616, -0.00026939454, 0.016069263, 0.017058942, 0.033128206, -0.017657958, 0.018100709, -0.0036754857, -0.0023781597, 0.012227746, -0.011511531, 0.0020916737, -0.008269029, -0.0022690997, -0.020692106, 0.0026125575, -0.0019516862, -0.009896791, 0.010964602, 0.008067187, -0.0073509715, 0.008203919, 0.02538006, 0.002335838, 0.013712264, 0.008288562, 0.0041410257, 0.009278242, -0.022697508, -0.027346395, 0.0027688225, 0.0019223865, -0.0069407756, 0.021069746, -0.02836212, -0.010593473, -0.025796767, 0.026486937, 0.015274915, -0.023934606, -0.0062310714, -0.00034325424, -0.047582727, -0.030914448, -0.016329704, -0.008444827, 0.0030406588, 0.014923318, -0.018152798, 0.0067584664, -0.012976516, -0.010443719, -0.02040562, -0.02170783, 0.022476133, 0.017345428, 0.03664417, 0.030784229, 0.00031782046, -0.00914802, -0.008028121, 0.007377016, 0.013269513, 0.015821842, 0.0324771, 0.00650128, -0.029508064, -0.017527737, 0.0132890465, -0.019012256, -0.03976947, 0.003708041, -0.010280943, 0.024129938, 0.0027346394, -0.0023195604, -0.01916852, 0.012077991, -0.02674738, 0.0044275117, -0.009916324, -0.0014763798, -0.018009555, 0.026643202, -0.019441985, 0.042764552, 0.027711013, -0.0039554606, -0.0014560327, 0.019194566, -0.018243952, -0.008575048, -0.0001512801, 0.019520117, -0.009766569, 0.023713231, 0.004495878, 0.03351887, -0.014233148, -0.01487123, -0.003708041, 0.012064969, -0.014376391, -0.025223793, -0.0034248105, -0.0052576703, 0.011231556, -0.008555515, -0.010573939, -0.005374869, 0.0029250877, -0.007936966, 0.016199484, -0.0054269573, -0.0017270551, -0.005853431, 0.003721063, -0.01966336, -0.013276024, -0.017931422, 0.0064622136, -0.0146758985, -0.023752298, -0.010398141, -0.012292856, 0.034873165, 0.007422593, -0.021785961, -0.0025116361, 0.0041149813, -0.017540758, 0.024403403, -0.024247138, 0.00096119323, -0.018439284, 0.024286203, 0.004671676, -0.013660176, 0.012449121, -0.019415941, -0.03396162, -0.015691623, 0.004303802, -0.014493589, -0.0040889373, -0.0064817467, 0.00022483457, 0.022528222, 0.0145326555, 0.0016074146, -0.04484809, 0.036878567, -0.014636832, 0.011029713, 0.011283644, -0.010482785, 0.009356374, -0.0013331368, 0.012839784, 0.008249496, 0.004547966, -0.0246378, -0.008164852, 0.0037666403, -0.0053781243, -0.030784229, -0.036618125, -0.014701943, -0.022658441, 0.037086923, 0.020314464, 0.010183277, 0.019832648, 0.03127907, 0.019298742, 0.016290639, -0.027320351, -0.004896307, -0.026356716, -0.015144695, -0.013022093, -0.021916183, -0.004381934, 0.015379092, 0.008067187, -0.03234688, -0.03802451, -0.01362111, -0.044144895, -0.0021193456, -0.00035627632, 0.024247138, 0.036670215, 0.016199484, -0.0041377703, 0.033987664, -0.02233289, 0.025340993, -0.003708041, 0.0017677491, 0.007819767, 0.007813256, 0.00045984267, -0.0058631976, -0.0139596835, -0.025236817, 0.009493106, 0.004534944, 0.0062440936, 0.028336074, 0.0047400417, -0.008203919, 0.009694948, -0.008868045, 0.0047888746, 0.009167554, 0.008640159, -0.02083535, 0.014285236, -0.016212506, 0.0070840186, -0.017618893, 0.016902678, 0.017553782, 0.0045870324, 0.0044144895, -0.022749597, 0.0026402294, -0.01014421, -0.031643685, 0.019923802, -0.006725911, -0.023635099, 0.0036754857, 0.0015130044, -0.0030243811, 0.012605386, -0.0011972187, -0.0029055546, -0.013894574, 0.0077611674, -0.038493305, -0.023218391, 0.005645077, 0.014324303, -0.017280318, -0.0041963696, -0.007520259, -0.010873448, -0.04198323, 0.014024794, -0.000160538, -0.005729721, -0.00082039187, 0.014115949, -0.017488671, 0.0039847605, -0.00033084257, 0.011798017, -0.008262518, -0.008770379, 0.0118110385, -0.002220267, -0.027528705, 0.0131002255, 0.0052576703, 0.016004153, 0.02407785, 0.21939622, -0.0023390935, -0.0073444606, 0.014467546, -0.00045455244, -0.0015748594, -0.016134374, 0.013725286, -0.020744195, 0.005150238, 0.007409571, 2.7290442e-05, -0.009929346, -0.0020574906, 0.006823577, -0.0141029265, -0.038910013, -0.008555515, -0.034326237, 0.022384979, -0.010971113, -0.0014780075, 0.0053618466, -0.011101334, 0.036722302, -0.0067975326, -0.014519634, 0.0066640563, 0.014819142, -0.007949987, -0.023635099, 0.005645077, 0.01599113, 0.012859317, -0.005853431, -0.011394331, 0.010359075, -0.017462626, 0.012787695, 0.018061643, -0.0012314017, -0.002096557, 0.015509313, 0.0050981496, -1.3225564e-05, 0.00088387454, -0.0018963423, -0.012540275, 0.009961901, 0.009050354, -0.0032701732, -0.016381793, 0.021486454, 0.029898725, -0.00014242914, -0.010502318, -0.012898384, 0.0004814105, -0.02028842, -0.0024937307, 0.0011622218, 0.014545678, 0.0089592, 0.018530438, -0.01300256, 0.023400702, -0.003968483, 0.029039267, 0.010860425, 0.0068170656, -0.0050753606, -0.008034632, 0.017032897, 0.010437207, -0.003789429, -0.0036819968, 0.006856132, 0.019259676, 0.030680051, 0.0054790457, -0.013490888, 0.0029950815, -0.027632881, -0.009369396, -0.0070514632, -0.044717867, 0.01618646, 0.018491372, 0.02394763, 0.0013502283, 0.0065598795, -0.016824543, -0.009994457, -0.009017799, 0.008509938, 0.026031164, 0.024116917, 0.035967022, 0.0019777303, 0.012117058, 0.008451339, 0.02482011, 0.008770379, -0.008640159, -4.1940297e-05, 0.0017042664, 0.01480612, 0.03193017, 0.0031708796, -0.0138164405, -0.010704161, -0.0020119133, 0.02812772, -0.003776407, -0.0016448532, -0.0006572088, -0.0031806463, -0.027138041, -0.012162635, -0.011609196, 0.00939544, -0.007585369, -0.0031187914, -0.018152798, 0.014910297, -0.011114356, -0.011101334, 0.0046000546, 0.008926645, -0.039665297, 0.01741054, -0.00088387454, -0.014767054, -0.020444686, -0.023504877, 0.00090259383, 0.020561885, -0.009753548, -0.009551705, -0.012182168, -0.0040140604, -0.0015317237, 0.015157716, -0.0068951985, -0.009987946, -0.018530438, 0.012618409, -0.00958426, -0.029195532, -0.0042354357, -0.016498992, -0.030002903, 0.0029608984, 0.0072077285, 0.02961224, -0.023283502, -0.017384494, -0.014207103, 0.008451339, 0.017449604, -0.021134857, -0.019507095, 0.014467546, 0.0071947062, -0.0071816845, -0.0034182994, -0.1657452, 0.013946662, -0.016707346, -0.00360712, 0.025223793, 0.0133867115, 0.0030764695, 0.0056580994, -0.006302693, 0.013725286, 0.011902194, -0.011374799, -0.023010038, 0.015340026, 0.020470731, -0.01368622, -0.025028463, 0.0028567216, 0.009011288, -0.012611897, 0.0110948235, -0.0103330305, 0.007982543, -0.019676384, -0.006569646, 0.016212506, -0.027580794, 0.010183277, 0.012286345, -0.008828979, -0.020796282, 0.004766086, 0.033675134, 0.016642235, 0.019936824, -0.023986695, -0.0066738226, 0.008503427, -0.014298258, 0.018569505, 0.001195591, 0.030914448, 0.02121299, 0.011850105, -0.017215207, 0.023439767, 0.011185978, 0.0142461695, -0.003864306, -0.0065208133, 0.0017368217, -0.04299895, -0.006569646, 0.00060878287, 0.01144642, 0.028961135, -0.009610305, 0.0021486455, 0.015418158, -0.011472464, -0.018934123, -0.004691209, -0.008802935, 0.00506885, -0.0067194, 0.016941743, -0.025744678, 0.005423702, -0.00506885, 0.013647154, 0.022853773, -0.018400218, 0.0015593957, 0.0036331639, 0.014155015, -0.009245686, -0.041175857, 0.009929346, -0.000826089, -0.019988913, 0.0020981848, 0.0268776, -0.017501693, -0.0043461234, -0.020679085, 0.0062310714, -0.0007247609, -0.00017671387, 0.0075983913, 0.00933684, 0.00970146, -0.03291985, 0.004486111, -0.036123287, 0.03677439, 0.0061627054, -9.213385e-06, 0.0029332265, 0.016759435, -0.012898384, 0.010098633, 0.008802935, -0.018022576, 0.016043218, 0.030367522, 0.010508829, -0.015639534, -0.008965711, 0.008672714, -0.020014957, -0.0059055192, 0.030133123, 0.013080693, 0.0033434224, -0.017879333, 0.007852322, 0.0025979076, -0.007995565, 0.0054855566, -0.0145326555, 0.040524755, -0.012123569, -0.03252919, 0.002295144, 0.0023260715, 0.0065045357, -0.09276939, -0.04062893, 0.0028241666, -0.010027012, -0.018582527, 0.025432147, -0.0026711568, 0.01511865, -0.008379717, 0.011511531, 0.0061431723, -0.03820682, -0.021629697, -0.0096623935, 0.020119134, 0.00247257, 0.015834866, 0.0032799398, -0.013054648, 0.01175895, -0.010671605, -0.010736716, -0.014506612, 0.0029885704, -0.03482108, -0.009193597, -0.025666546, -0.0049223513, 0.019064344, 0.008796424, -0.0047693416, -0.0036233973, 0.0052218596, -0.012227746, -0.009284752, -0.019064344, -0.045160618, 0.002970665, 0.03627955, -0.02831003, 0.0027232452, -0.02885696, -0.01704592, -0.041071683, -0.01256632, -0.0009587516, -0.0060064406, 0.022853773, -0.009323819, -0.011264111, -0.0065208133, 0.011999859, -0.001017351, -0.027346395, 0.037790116, 0.0050655943, 0.0047693416, 0.007272839, -0.021291122, 0.0055083456, -0.010814848, -0.004733531, -0.02028842, 0.010098633, 0.0047791083, 0.02600512, 0.0070644855, 0.009017799, 0.01847835, -0.022033382, 0.010632539, 0.014610789, -0.015795799, 0.0073444606, -0.03557636, -0.00870527, -0.0034866654, -0.00618875, 0.01318487, -0.0068040434, -0.007565836, -0.006419892, -0.0022983993, 0.01375133, -0.008802935, -0.01991078, 0.02613534, -0.0009961901, 0.020626996, -0.041540477, 0.031904127, 0.011876149, 0.009069888, -0.006123639, -0.018178841, 0.014910297, -0.020679085, -0.03005499, -0.0010368841, 0.02172085, -0.018243952, -0.01841324, -0.06870456, 0.016902678, 0.0018279763, -0.016850589, -0.0022398, -0.007949987, -0.004505644, -0.012038925, 0.0118110385, 0.004684698, 0.008171364, 0.020574907, 0.024898242, 0.0017237996, -0.030966537, 0.0061431723, 0.033102162, -0.011251088, 0.027919367, 0.0018654148, -0.013347645, -0.024364335, 0.011902194, 0.023804387, -0.029950814, 0.03833704, -0.010482785, 0.003769896, -0.010359075, -0.013276024, 0.005885986, -0.02028842, 0.009909813, 0.024911264, 0.014819142, -0.038857926, 0.0146758985, 0.041853007, 0.007500726, -0.015183761, -0.02618743, -0.022046404, 0.0013542977, -0.00883549, -0.015287938, 0.010593473, -0.04112377, 0.010424186, 0.020366553, -0.016147396, 0.016199484, 0.011316199, -0.0073314384, -0.008262518, 0.00945404, -0.0093303295, 0.020496774, -0.025171706, 0.030263344, -0.0018279763, 0.026552048, -0.0024628034, 0.02172085, -0.0004057196, 0.03802451, 0.03341469, 6.541567e-05, 0.014714966, -0.019324787, -0.017749112, 0.0040042936, 0.028909046, 0.00457401, 0.0145587, 0.0067845103, 0.024989396, -0.010163744, -0.00094817113, -0.029455975, -0.019871714, -0.019428963, 0.010463252, -0.03140929, 0.013608087, 0.0073249275, 0.027164087, -0.00073696906, 0.006869154, 0.0048930515, 0.0072663277, -0.055578295, 0.0008952689, 0.0039587165, 0.014024794, 0.007292372, -0.0061854944, 0.004238691, 0.03403975, 0.008562027, 0.04565546, 0.0032750564, 0.028257942, -0.017137075, -0.0020444687, -0.03857144, -0.016603168, -0.023895541, -0.028778825, -0.018530438, 0.019376874, -0.03489921, 0.011439909, 0.017592847, 0.021759918, -0.013503911, 0.0032538956, 0.0042842687, -0.0044796, -0.027841235, 0.020626996, -0.01597811, 0.03515965, 0.0052218596, 0.0023814153, 0.027085954, -0.006234327, -0.010840893, -0.033883486, -0.0069407756, 0.014024794, -0.017957466, -0.016564103, -0.005579967, -0.009727503, -0.00032636622, 0.015600467, -0.0011687329, 0.022619376, 0.00063035067, 0.060526688, 0.023934606, -0.006475236, -0.00067226554, -0.0039163944, 0.0056027556, -0.0003052053, 0.0024937307, 0.0024904753, -0.022424044, 0.019246653, 0.002047724, 0.0075723473, -0.006725911, -0.013256491, 0.0024400146, -0.011563619, -0.004228925, -0.0038154733, 0.0058697085, 0.01058045, 0.0021812005, 0.013477867, -0.0013787141, -0.007546303, -0.007565836, -0.010958091, 0.0005082686, -0.01207148, -0.02831003, 0.02028842, -0.011713373, -0.00618875, 0.008685736, -0.00014771937, 0.010599984, -0.01169384, 0.011505019, 0.016446903, 0.013087204, -0.0133867115, 0.03750363, -0.015965085, -0.01778818, -0.035055473, 0.014714966, 0.015587445, -0.014272214, -0.003769896]" 11341955,The text/markdown media type,https://tools.ietf.org/html/rfc7763,152,1458703964,63,treve,"[0.013555319, 0.02053342, 0.00026201853, -0.024827637, 0.032505587, -0.003105153, -0.030494371, -0.012352666, 0.00055461295, -0.02859187, 0.010613237, 0.0345168, -0.0140513275, -0.0006900812, -0.010035692, 0.02746396, 0.009750317, 0.01064721, 0.019595759, -0.0052318773, -0.0014370676, 0.01744865, -0.02186517, 0.0043621627, -0.032369692, 0.013453399, 0.0073925746, -0.03011387, -0.010959764, -0.0025276083, 0.027694976, -0.008812656, -0.016157668, 0.0063903644, -0.023142563, -0.027015513, -0.0025547869, -0.05256338, 0.02764062, -0.03533216, -0.009750317, 0.00997454, 0.011836274, -0.019147312, -0.006247677, -0.0034448856, 0.053433094, -0.015084114, 0.0022490278, 0.0143231135, 0.0387023, -0.0028792312, 0.005636159, -0.020003438, -0.007976915, -0.012420612, -0.022476688, 0.034462444, 0.020682903, 0.009573656, 0.011415005, -0.020424705, -0.010579264, -0.014757971, 0.010518112, -0.015301542, -0.015328721, 0.011041299, -0.023577422, 0.0114421835, 0.005017846, 0.020193689, 0.023074618, -0.007596414, 0.037832588, -0.012841881, 0.0012544615, -0.008527281, 0.001081198, -0.012434202, 0.009342638, -0.018848348, 0.0122643355, 0.018209651, 0.012977773, -0.020655723, 0.029488763, 0.027939584, -0.01845426, -0.02743678, 0.004270435, 0.028673407, -0.002609144, 0.00873112, 0.006753878, 0.027504727, -0.0007312738, 0.038919732, 0.005062011, -0.0032903072, -0.0049566943, 0.015369489, 0.015369489, -0.0054221274, -0.021172117, 0.016973026, 0.02243592, -0.0032716221, 0.0073789856, -0.0068863737, -0.020030616, 0.039028447, -0.009587245, -0.010817076, 0.016606115, -0.009363022, 0.011462567, -0.030358478, -0.007080021, -0.017217632, -0.0066519585, 0.00738578, 0.029869264, -0.016782776, 0.013793131, -0.008785477, -0.021063402, -0.024134582, 0.0049363105, -0.014173632, 0.02935287, -0.01402415, -0.014988989, 0.0061593466, 0.0016961135, 0.03239687, -0.013698006, -0.0019025009, -0.027110638, -0.036337767, 0.022408742, 0.036799803, -0.028510334, -0.008602022, -0.019269615, -0.010124022, 0.0037676312, 0.017937865, 0.009091237, -0.005554623, -0.0061695385, -0.004542221, -0.012692398, 0.0030321109, -0.02054701, 0.021525439, -0.0345168, 0.022055421, 0.018060168, -0.01323597, 0.006271458, 0.0027739143, -0.016212026, 0.014608488, 0.018658098, 0.028537514, 0.014961811, -0.004154926, -0.009206745, 0.0006183128, -0.006838811, 0.022993082, -0.012937006, 0.0010642115, -0.0067878515, 0.0125361215, 0.025452744, 0.0067606727, -0.00546969, -0.022965902, -0.012230363, 0.006658753, 0.014961811, 0.032179445, -0.023998689, 0.0082487, 0.04103966, -0.0073721907, -0.021362366, -0.017611722, 0.044491343, 0.008282674, 0.012162416, -0.0042874217, -0.61401856, -0.024596618, 0.0132223815, -0.011116041, 0.011224755, 0.009451352, -0.009451352, 0.001851541, -0.010137612, 0.021946706, -0.01181589, 0.009920183, 0.0041990913, -0.021593384, 0.006617985, -0.00902329, -0.016266383, 0.006940731, -0.017598134, 0.015029757, -0.008955344, 0.026322458, -0.0012459682, -0.0032427448, -0.0003085194, 0.0021420121, 0.0085680485, -0.00374385, 0.020152919, 0.038158733, -0.040767875, 0.008724325, 0.03872948, -0.0054662926, 0.039816625, -0.009981335, -0.020696491, 0.015410257, 0.0057109, 0.002699173, -0.017489418, 0.0061695385, 0.010552085, 0.0034788586, -0.0048751584, 0.013684417, 0.031581514, 0.0018787197, 0.023088207, -0.024501493, -0.025792476, 0.02571094, -0.004059801, -0.0060880026, -0.00041680905, -0.0058943555, 0.03584855, -0.012108059, 0.023088207, 0.028918013, -0.015260775, 0.029896442, -0.009512505, -0.041365806, 0.0024070034, 0.0026312266, 0.022585403, -0.00047774854, 0.0056225695, -0.0038729482, 0.0009614424, 0.034842946, -0.018128116, -0.0145948995, 0.011496541, 0.021430314, -0.010450166, 0.02629528, 0.015247186, 0.024270475, -0.0004412273, -0.00020394554, 0.009050468, -0.025004297, 0.033701442, 0.0047596493, -0.021715688, 0.0003696712, 0.016538167, -0.013181613, 0.001540686, 0.007990504, -0.010103638, -0.019500634, -0.010912201, 0.01594024, 0.0041888994, 0.017380705, -0.00012378996, -0.017299168, -0.0052454667, -0.01035504, 0.02051983, 0.01844067, 0.017204044, 0.005299824, -0.013195203, 0.0068829763, 0.016918669, -0.011544104, 0.0013793132, 0.0022592198, -0.025384797, -0.016633293, -0.0021912733, -0.028102655, 0.014146453, 0.010110433, 0.004165118, -0.027015513, 0.016334329, 0.0062510744, -0.007657566, 0.014703614, -0.009920183, 0.025194548, -0.003186689, -0.020628545, 0.007949736, -0.0024613605, 0.008493307, -0.0036555196, 0.019908313, -0.02053342, 0.017734027, 0.032559942, 0.035957266, -0.008744709, 0.008044861, 0.0062035117, -0.025371209, -0.0013529839, 0.0035196266, -0.0050925873, -0.017910687, -0.028537514, -0.02455585, 0.008133192, -0.008072039, 0.00015702003, -0.0118023, 0.008146781, -0.007807048, 0.02034317, 0.0013309013, -0.025248904, -0.014608488, -0.036446482, -0.01151013, -0.00034249263, -0.01902501, 0.0059249313, -0.033918872, -0.01879399, -0.0018872129, -0.006784454, -0.023061028, 0.022762064, 0.006166141, -0.02496353, -0.0035671892, 0.0043927385, -0.028999548, -0.012053702, -0.011075273, 0.007175146, -0.019650117, 0.009811468, -0.005153739, -0.019908313, 0.00015213637, -0.002729749, -0.013371863, 0.014880274, 0.015695632, 0.024338422, 0.025452744, 0.013874667, 0.0139154345, 0.006437927, -0.0013869571, -0.0053168107, -0.005354181, 0.026050672, -0.011020916, 0.040441733, -0.020044206, -0.006553436, -0.008595227, 0.03340248, 0.0049668862, 0.008894191, 0.008812656, -0.021539027, -0.013799926, -0.023699725, 0.030603085, 0.0016417563, 0.03190766, 0.037642337, 0.02840162, -0.020139331, -0.034788586, 0.015981007, -0.000772891, 0.035794195, -0.016551757, 0.008072039, -0.011347059, 0.010144406, -0.001399697, -0.0045829886, 0.029733371, 0.008411772, -0.01554615, 0.005099382, 0.037886947, 0.0077187177, -0.019147312, -0.05490074, -0.0040156357, 0.010531701, 0.024922762, -0.004470877, 0.010823871, 0.005670132, 0.022558225, -0.013256354, 0.054465882, -0.018114526, 0.0066213827, 0.0010141009, 0.028265728, -0.0022745077, 0.03821309, 0.035767015, 0.01352814, 0.017068151, -0.0054662926, -0.009784291, 0.0012816401, 0.017312758, -0.0068863737, 0.010864639, 0.030738978, 0.0153559, 0.009628014, 0.0066009983, 0.003492448, 0.006665548, 0.023264868, -0.016375097, 0.023441529, 0.00029386845, -0.008099218, -0.018399902, -0.006719905, -0.028374441, -0.015056935, -0.011313085, -0.023658957, -0.024977118, 0.005248864, -0.0019959272, -0.009220335, 0.015233596, 0.014377471, -0.013704801, 0.0007418904, 0.017761204, -0.031336907, -0.00864279, 0.021430314, 0.012216774, -0.022340795, -0.016089723, -0.019663705, 0.0224631, -0.015559739, 0.008690353, 0.004267038, 0.020261634, -0.0043927385, -0.0031272357, 0.0058298064, -0.006111784, 0.012807908, -0.018535795, -0.033266585, 0.010606443, 0.012583684, 0.0035535998, -0.0025004297, -0.025248904, 0.042643197, -0.01917449, -0.0005788189, -0.019799598, -0.02569735, -0.033918872, 0.008669968, -0.003954484, -0.0010225942, 0.014853096, 0.021049812, 0.010436576, 0.017992223, 0.0024681552, 0.03166305, -0.012739961, 0.0073450124, -0.036745444, -0.011788711, 0.017734027, 0.040197127, 0.042507306, 0.023957921, 0.017503008, -0.0040122382, -0.012828291, -0.019337563, -0.04508927, 0.009750317, -0.01304572, 0.01936474, 0.031255372, 0.0009928676, 0.0034312962, 0.041909378, 0.0051707258, -0.008004093, -0.006767467, 0.008588432, -0.022789242, 0.026947565, -0.037343375, 0.0017581147, 0.0468287, 0.017163275, -0.012672015, -0.0024868404, 0.03435373, 0.013453399, -0.019527812, 0.015396668, -0.00031913602, 0.020302402, -0.010008514, -0.028157013, 0.006665548, 0.03014105, -0.00092916784, 0.025887601, 0.0004722279, 0.0060642217, -0.009050468, 0.0026821864, 0.007773075, -0.0043995334, -0.025941959, -0.022028241, 0.010552085, -0.0038967296, -0.006465106, 0.0122575415, 0.0040733903, -0.03188048, -0.033891693, 0.007202325, -0.0139154345, 0.009104826, 0.022340795, -0.025357619, -0.02186517, -0.003060988, -0.028646227, 0.01667406, -0.002529307, -0.008595227, 0.006111784, -0.0143231135, -0.00091557857, -0.02109058, 0.019296795, 0.020574188, -0.013106872, -0.023495886, -0.0038457697, 0.002238836, 0.0042636404, -0.0047392654, -0.0054764845, 0.0067912485, 0.013643649, -0.00465773, 0.013602881, 0.0077458965, -0.039599195, 0.005024641, -0.008065245, -0.0017869918, 0.00056310627, -0.007304244, -0.009036879, -0.00738578, 0.0035841758, -0.0016264684, -0.010980148, 0.016320739, 0.053106952, 0.004457288, -0.0027161597, 0.005187712, -0.009899799, -0.011387827, -0.004851377, -0.017734027, -0.0053032213, 0.035603944, 0.008900986, -0.011183987, 0.019595759, -0.00074741105, -0.0046917032, 0.0019347754, -0.011978961, 0.012780729, 0.008860218, 0.021511849, 0.032723013, 0.022381565, -0.015451025, 0.010667594, -0.01993549, -0.002413798, -0.030983586, 0.009777496, 0.010912201, -0.008500102, 0.039952517, -0.010966559, -0.017475829, -0.019133722, -0.0038151937, 0.00090708525, 0.013575703, -0.005846793, -0.019853955, -0.0117139695, -0.01920167, -0.009804674, 0.0034992427, -0.021987474, -0.0051673283, 0.0027569276, 0.00046670725, 0.0066213827, -0.0032223607, -0.006155949, -0.028673407, -0.018005813, 0.024515083, 0.008873807, 0.028890835, -0.029135441, 0.0071071996, 0.02802112, 0.00029684108, 0.00044207665, -0.03201637, -0.005907945, -0.004752855, 0.046964593, 0.0012765441, 0.007311039, -0.026947565, 0.018889116, 0.0057142973, 0.014662846, 0.00090963324, -0.0044470956, -0.010409398, -0.002434182, 0.011258728, 0.022082599, 0.021579796, 0.0014990688, -0.00085994735, -0.002077463, -0.017584544, 0.015206418, 0.018100936, -0.00988621, -0.03568548, -0.020628545, 0.01047055, -0.00023929894, 0.019405508, -0.040577624, -0.026743727, 0.034489624, -0.018128116, 0.013779542, 0.010402603, 0.022218492, -0.021484671, -0.004596578, 0.012352666, 0.0031544145, -0.023550242, -0.023903564, -0.02244951, -0.020220866, 0.006889771, 0.03973509, 0.020614956, 0.011537309, -0.027287299, 0.014336703, 0.017217632, -0.006709713, -0.0033939257, -0.003920511, -0.007623593, -0.03190766, -0.029896442, -0.02534403, -0.023536654, 0.024800457, 0.015328721, -0.0013376959, 0.016565347, -0.011727558, -0.004688306, -0.014757971, -0.0077662803, 0.034951657, -0.00873112, 0.017965043, 0.028157013, 0.010728746, -0.024786869, 0.013711596, -0.002247329, -0.012345872, 0.04723638, -0.0037404527, 0.0157364, 0.0004210557, -0.0065908064, -0.003407515, 0.0011771724, -0.009926978, 0.008282674, -0.006563628, 0.003923908, -0.0015338913, -0.004576194, -0.0407407, 0.02761344, -0.0007384931, -0.017829152, -0.0064447215, 0.009988129, -0.026539886, 0.03840334, -0.01994908, 0.0042024883, 0.029814906, -0.0015576726, 0.0067368913, -0.0026278293, -0.026186565, 0.024827637, -0.0045829886, 0.013052515, -0.016443044, 0.011136425, 0.01786992, 0.047480986, -0.025860423, -0.015505382, -0.0009121812, 0.024107404, -0.016850721, -0.0017445254, -0.009492121, -0.019296795, 0.0053405915, -0.01993549, -0.009363022, -0.012604068, -0.027790101, -0.021036224, 0.0056429533, 0.0007329724, 0.007521673, -0.011516925, -0.011204371, -0.01880758, -0.008635995, -0.036120337, 0.013969792, -0.030222585, -0.018943474, -0.011150014, -0.01342622, 0.026050672, 0.006859195, 0.0064515164, -0.0019942287, 0.048133273, -0.014336703, 0.004440301, 0.012780729, -0.006950923, -0.0032750193, 0.0077255126, 0.014363881, -0.03220662, 0.01784274, 0.0110277105, -0.011041299, -0.029896442, -0.015220007, -0.004596578, -0.022666939, 0.0058671767, 0.007983709, 0.0031798943, 0.00527944, 0.00071641046, -0.023142563, 0.03353837, -0.016742008, 0.007426548, 0.010246326, 0.00075378106, 0.009138798, 0.005428922, 0.012305104, -0.017557366, -0.018141706, -0.036174696, -0.015315132, 0.000873112, 0.0029896442, -0.010056076, -0.00013334493, -0.005024641, -0.0104841385, 0.006237485, -0.018508615, 0.0067470833, 0.015872292, 0.020859564, 0.02420253, 0.0037200686, -0.024854815, -0.03549523, -0.025262494, -0.019527812, -0.037778232, -0.021593384, -0.032342516, 0.022191314, -0.017516598, -0.006155949, -0.026539886, -0.0022490278, -0.03968073, -0.022327207, -0.01074913, 0.013779542, -0.0013334493, 0.012556505, 0.0049940646, 0.03201637, -0.0068625924, 0.033456836, -0.01651099, -0.013534934, 0.024528671, 0.004083582, -0.0014311223, -0.017367115, -0.015165649, -0.014948221, 0.04587745, -0.019541401, 0.012026523, 0.054031026, -0.0067504807, -0.016361507, -0.0037676312, 0.014662846, -0.02091392, -0.0045727966, 0.038267445, -0.029760549, -0.015029757, -0.0018804183, 0.010314273, -0.0002390866, 0.0010548688, 0.015315132, 0.032614302, 0.0012264336, -0.009179567, -0.013555319, 0.011082067, -0.014988989, 0.008547665, 0.0009580451, -0.026417583, 0.02686603, -0.0082487, -0.006699521, 0.008235111, 0.01917449, -0.04334984, -0.022082599, 0.02897237, 0.011652818, 0.013011747, 0.020383937, 0.021321598, -0.001520302, -0.019065777, 0.012067291, -0.02628169, -0.021267243, -0.012672015, 0.004881953, -0.038811017, -0.022965902, -0.024297655, 0.019636527, 0.005153739, -0.029923622, 0.000541873, -0.020329582, 0.004093774, 0.01880758, -0.004977078, 0.020832384, 0.017489418, -0.024012279, 0.011931398, 0.0310923, 0.19633809, -0.013704801, 0.019731652, 0.02051983, -0.013127256, -0.0036657115, 0.0243656, -0.005670132, -0.00805845, 0.015029757, 0.013704801, 0.008561254, -0.010314273, 0.010232736, 0.029515943, 0.0027637223, -0.03149998, -0.029407227, -0.006665548, -0.0027739143, -0.0107559245, -0.011061683, -0.016728418, -0.007711923, 0.0209411, -0.005187712, -0.0027892021, 0.013004952, 0.011347059, 0.0059419177, -0.02283001, -0.011646023, -0.012339077, -0.0020740656, -0.033647086, -0.008602022, 0.01803299, 0.0130932825, 3.9175382e-05, 0.007915762, 0.01594024, -0.023088207, -0.00050577644, -0.02647194, 0.02511301, 0.02686603, -0.013385452, 0.010436576, -0.029624656, -0.032777373, -0.01667406, -0.011095657, 0.028646227, -0.009240719, 0.011285907, -0.017625311, -0.022096189, 0.02053342, 0.019432688, -0.010334657, -0.013725185, 0.0013682719, -0.041637592, 0.022734886, -0.012658426, 0.025452744, -0.025941959, 0.00051936577, -0.0077187177, -0.01765249, -0.018644508, -0.038267445, -0.010687978, 0.0117139695, -0.024161762, -0.018223241, 0.014418239, 0.020750849, 0.014377471, 0.0640871, -0.039218698, 0.008581637, -0.0129573895, 0.009322254, -0.020166509, -0.03720748, 0.019989848, -0.017693259, 0.018386312, -0.01803299, -0.00090963324, -0.0006076961, -0.01313405, 0.0016876202, 0.014744381, 0.023142563, -0.0031340304, -0.01574999, -0.005809422, -0.026172977, -0.017570954, 0.09262461, 0.043078054, 0.00546969, 0.0082487, -0.008771888, 0.0013597786, -0.0032121688, 0.01902501, 0.0006501627, -0.00030151242, -0.00062340876, 0.0031034546, -0.015858704, -3.2301108e-05, 0.008867013, 0.010008514, -0.014445418, 0.00042509002, -0.030630264, 0.00035034894, -0.015451025, -0.01668765, -0.004066596, -0.024093814, -0.01727199, -0.016973026, 0.01151013, -0.0144590065, -0.03511473, 0.009716344, 0.018372722, 0.009825058, -0.0073789856, -0.009512505, -0.009994924, 0.037316196, -0.004532029, 0.02244951, 0.017353525, 0.0031900862, -0.002624432, -0.0016935655, -0.0088398345, 0.021960296, -0.033511195, 0.012753551, -0.008873807, -0.020954689, -0.0031883877, -0.007086816, -0.032723013, 0.003920511, 0.007046048, 0.025765298, -0.022082599, 0.021158528, -0.029325692, 0.012753551, 0.001643455, -0.02187876, 0.008445745, 0.033918872, -0.0031629077, -0.01651099, 0.006026851, -0.1728558, 0.022123367, 0.008371004, -0.009736728, 0.025778886, 0.025575047, 0.026403993, -0.00369289, 0.01371839, -0.0085680485, 0.007854611, -0.0075284676, -0.016973026, -0.0057176948, -0.011958577, 0.026200155, 0.021960296, 0.011381032, 0.004661127, 0.002809586, 0.034462444, -0.01352814, 0.0063767754, -0.023889976, -0.0096619865, -0.00922713, -0.006111784, -0.00086292, -0.027939584, -0.0011567884, -0.022232082, -0.006638369, 0.028727762, 0.005133355, 0.017965043, 0.0047086896, 0.018821169, 0.0015958925, -0.024025869, 0.020234456, 0.01477156, 0.006679137, 0.007222709, -0.0025378002, -0.016809953, -0.0069475253, -0.0014718901, -0.012631247, -0.011333469, -0.0076915394, -0.0067980434, -0.03761516, 0.0023271663, -0.0010565674, 0.016402276, -0.005364373, -0.0329948, 0.002383222, -0.001073554, 0.0103482455, -0.0144590065, -0.025887601, 0.0060947975, -0.0070936102, -0.00835062, -0.031554338, -0.016728418, -0.0015840018, -0.0051741228, 0.003893332, -0.018848348, -0.053976666, 0.0060744137, -0.021525439, 0.027083458, -0.0019942287, -0.041691948, 0.006322418, -0.0095260935, 0.004100569, 0.0008650434, 0.0064209406, 0.0018532397, 0.021987474, 0.015287953, 0.0016612909, -0.0024171954, -0.0038423722, 0.018481437, 0.012311898, 0.0053779623, -0.019160902, 0.00671311, -0.04256166, 0.0017215934, -0.0041447342, -0.006482092, 0.0035162293, 0.0010183476, 0.0037166714, 0.022232082, -0.017000204, 0.0033905283, 0.027858049, 0.0062952396, -0.004661127, -0.008085629, 0.0056395563, 0.025982726, -0.013405836, -0.015586918, 0.0075012892, 0.030575907, -0.006312226, 0.010137612, 0.0161169, 0.0061049894, -0.051856738, -0.014921042, 0.010422987, 0.030738978, -0.026186565, 0.018345544, -0.0010523208, -0.018182473, -0.036120337, -0.06974024, -0.016293561, 0.00084678276, -0.004525234, -0.01189063, 0.026757317, -0.004440301, -0.0066247797, 0.0046373457, 0.003356555, -0.010259915, 0.0013988478, -0.027355244, -0.012869059, 0.012440997, -0.003140825, -0.013242765, -0.04661127, -0.022775654, 0.040414553, -0.023468707, -0.013759158, -0.013799926, -0.011265523, 0.004807212, -0.018535795, -0.04084941, 0.018399902, 0.012522533, 0.005163931, -0.0051061762, -0.02283001, -0.003397323, 3.731747e-05, 0.0040631983, -0.0069577172, 0.021172117, -0.0112994965, 0.018481437, -0.011686791, -0.0010064569, 0.029570298, 0.014526953, -0.0232241, 0.00031234138, -0.012909828, -0.029216977, 0.024922762, 0.018223241, -0.010191969, -0.0037268633, -0.0061899223, -0.018712455, 0.0072091194, 0.023930743, -0.006482092, -0.0037846179, 0.02610503, 0.0016315643, -0.0028078875, -0.015790757, -0.0036011625, -0.014173632, 0.007412959, 0.004640743, 0.032451227, -0.0016765789, -0.0004450493, 0.01352814, -0.026254512, -0.007976915, 0.012434202, -0.02802112, 0.008004093, -0.00441652, -0.018196061, -0.01918808, -0.00064336805, 0.0019381727, -0.028129835, -0.014581311, -0.016470222, -0.0228436, -0.0024002087, 0.030440014, 0.016225614, -0.00037646585, -0.008744709, 0.04256166, -0.036364947, 0.014554132, 0.0322338, 0.028347263, 0.02053342, -0.0015653166, 0.01708174, 0.013242765, -0.0057075024, 0.012080881, 0.014173632, -0.027287299, 0.0032155663, -0.080829106, 0.017598134, -0.0021793826, -0.028918013, 0.0051265606, -0.021620564, -0.0069984854, -0.01670124, 0.013487373, -0.009084442, -0.018209651, 0.0016196737, -0.021525439, 0.00071683514, -0.009471737, -0.013494167, 0.0046747164, -0.029216977, -0.0013325999, -0.011020916, -0.0016570443, -0.012447791, -0.006108387, -0.011639228, 0.007983709, 0.023849208, -0.008167164, -0.004552413, -0.0236046, -0.017136097, 0.009641603, -0.017720437, -0.008547665, -0.0052114935, -0.026947565, -0.00988621, -0.0054561007, 0.046149235, 0.00153559, 0.028347263, -0.0015092607, -0.029515943, 0.007562441, -0.024800457, -0.019473456, 0.0029488762, -0.029679013, 0.0061491546, 0.016035365, 0.0102123525, 0.043295484, 0.0100764595, -0.046719987, -0.02628169, 0.020112151, -0.03688134, 0.022653349, 0.02859187, 0.006648561, -0.0013258053, 0.057020668, -0.009152388, 0.008106013, -0.012305104, -0.009267897, 0.03171741, -0.019038597, 0.006237485, 0.019894723, -0.019704474, -0.008506897, -0.006135565, 0.0016927161, 0.020003438, 0.011061683, 0.0148666855, -0.0056837215, 0.013290327, 0.0037914123, 0.010823871, 0.015559739, -0.0015542753, -0.021973886, 0.0057312837, 0.013704801, -0.012699193, -0.027667798, 0.012012934, 0.012705988, -0.005313413, -0.026186565, 0.026363226, 0.019813187, 0.030440014, 0.006448119, -0.024678154, 0.006366583, 0.015192828, 0.009845442, 0.024583029, 0.013004952, -0.0043281894, -0.013385452, -0.02091392, -0.022218492, 0.024800457, -0.042942163, -0.033837337, -0.008635995, 0.0038627563, 0.011183987, 0.009994924, -0.012739961, 0.011639228, -0.02894519, 0.017000204, -0.0008595227, 0.0047188816, -0.019554991, 0.04968245, 0.016089723, 0.01305931, 0.045605663, -0.014554132, 0.0036962873, 0.021430314, 0.014825918, -0.00700528, 0.014662846, 0.009437763, -0.020737259, 0.033701442, 0.010096844, -0.042724732, -0.012196389, 0.014812328, 0.027966762, 0.019215258, 0.029244157, 0.08224239, 0.03128255, -0.022300027, 0.005452703, 0.016932258, 0.028129835, 0.013405836, -0.020981867, -0.0022456304, -0.023156153, 0.007888584, -0.01342622, -0.0062238956, -0.029896442, -0.009791085, 0.0069475253, -0.015328721, 0.02821137, -0.008595227, 0.0018175677, 0.0013512853, 0.0039816624, 0.019052187, -0.005398346, -0.03628341, 0.0068218247, 0.0418822, -0.0059385207, -0.020954689, -0.043458555, 0.004304408, -0.0009359625, -0.030657442, -0.0129573895, 0.007990504, -0.015505382, 0.009430968, -0.018562973, 0.01994908, -0.0006905059, 0.013419426, -0.029896442, -0.007773075, -0.015043346, 0.004827596, -0.0026838852, -0.024814047, 0.00025755956, -0.027966762]" 11319233,South Korea announces $860M AI fund after AlphaGo 'shock',http://www.nature.com/news/south-korea-trumpets-860-million-ai-fund-after-alphago-shock-1.19595,254,1458406302,95,20tibbygt06,"[-0.0012233871, -0.03184999, 0.014113812, -0.0071910676, -0.008210697, 0.028012965, -0.03823609, 0.027087249, -0.025584638, -0.0043434855, 0.0077277147, 0.02484675, -0.016059157, -0.007372186, -0.022700163, 0.013617414, 0.014744372, -0.026778677, 0.008438772, 0.009384612, -0.009693184, 0.013248469, 0.011853187, -0.014704124, -0.0077008824, -0.0018430465, 0.015965244, -0.028281288, 0.009572438, 0.0069160364, 0.021439042, 0.0038839816, -0.017360525, 0.0155761745, -0.012356293, 0.00083431817, 0.007835044, -0.009921258, 0.01499928, -0.008613182, 0.02543706, 0.013684494, -0.0012871139, -0.022794075, -0.010820142, 0.011054925, 0.018460652, -0.011034801, 0.016984873, 0.025396813, 0.0025809358, 0.05315487, -0.01919854, 0.007761255, -0.030374212, -0.019896181, -0.0034982667, 0.007439267, 0.014596795, -0.0006733241, 0.013718035, -0.004984108, 0.002274041, 0.02487358, 0.007372186, -0.010370701, -0.022015937, -0.0005831842, -0.02512849, -0.0026295695, 0.04043634, 0.03641149, -0.016018908, -0.00390746, 0.008579642, 0.00321485, 0.000863666, 0.0045950385, -0.009216909, 0.012255672, 0.006828831, -0.024189357, 0.019533945, 0.0023629232, 0.011215919, -0.014663875, -0.007466099, -0.0005907308, -0.006714794, 0.0043300693, 0.012262381, 0.020580407, -0.00053371204, 0.021640284, -0.04134864, 0.009646227, -0.014033315, 0.006493427, -0.013563749, -0.029113092, -0.0037028634, -0.009538897, -0.020191338, -0.011839771, -0.020137673, -0.0034814964, 0.02515532, -0.010887223, 0.017937422, 0.013308842, 0.0022757181, 0.00404833, 0.008049702, -0.036009002, -0.0056851027, -0.012175175, 0.001257766, -0.0034328627, -0.0037364038, -0.026792094, 0.009894426, 0.035794344, 0.03461372, -0.006174793, 0.0035385152, -0.0006360104, -0.027583648, -0.020097425, -0.0027872096, -0.021224383, 0.02428327, -0.012195299, 0.046661444, 0.022512335, -0.02080848, 0.011618405, -0.024390599, -0.008982127, -0.0051316856, -0.029864397, -0.009820637, -0.010659148, 0.00784846, -0.017991086, -0.01068598, 0.024954079, 0.010712813, 0.023223393, 0.0018682019, 0.014395552, -0.008861381, -0.013872321, -0.017199531, 0.026121285, 0.01906438, -0.0040516835, 0.009451693, 0.0033238565, -0.012363002, -0.0062586437, -0.0048767785, -0.007580137, -0.023907617, -0.0014539775, -0.0046788896, 0.033272106, 0.0022874572, -0.0030974585, 0.0016166486, -0.035794344, -0.0019201895, 0.0021264632, -0.029864397, 0.004316653, -0.00034861083, 0.0041891993, 0.025530973, 0.011256168, -0.023719791, 0.0005534171, 0.017964253, 0.021412209, 0.02039258, 0.01604574, 0.023290474, 0.006335787, 0.026590852, 0.017575184, 0.023008734, -0.015200522, 0.022861157, 0.00959927, -0.0005387431, -0.01608599, -0.6388244, -0.023625877, 0.0063760355, 0.014462632, 0.009766973, -0.0019000652, 0.023491716, -0.012309337, -0.00086618157, 0.026282279, 0.001605748, 0.0024467742, -0.025732215, 0.0016963071, 0.0049908157, -0.018728975, 0.011826355, -0.024162523, 0.0058561587, 0.022257429, -0.017186115, 0.0025306253, 0.0015923318, -0.012570952, -0.00392423, 0.01222884, 0.009129705, -0.014301638, -0.022498919, 0.0397387, -0.008921754, -0.0031024895, 0.008499145, 0.015468845, 0.04776157, -0.0053698225, -0.015589591, 0.01787034, 0.01878264, 0.04663461, -0.0074057267, -0.0051383935, 0.00066410046, -0.018138664, -0.0062116873, 0.025101656, 0.010451198, -0.014073564, -0.0014204371, -0.008626598, -0.00066368125, 0.011215919, -0.012148343, 0.005557649, 0.00020606401, 0.010914056, 0.004128827, -0.03673348, 0.007244732, -0.018621646, 0.0041690753, 0.0075667207, -0.023531964, -0.020929227, -0.029622907, 0.02056699, -0.026027372, 0.011551323, -0.010800018, -0.011095174, 0.0072514405, 0.01752152, -0.0009324239, 0.012926481, 0.02589321, 0.023961281, 0.051330272, 0.008660139, -0.0063928054, 0.016340896, -0.0044944175, 0.0025457186, 0.014006482, -0.0058092023, 0.0077277147, -0.016595803, -0.013154556, -0.012785611, -0.017669097, -0.019440033, 0.022297677, 0.017669097, 0.010571943, -0.00865343, 0.0238942, 0.02989123, -0.00011802038, -0.011323248, 0.00910958, -0.023974698, -0.0065538, -0.0081302, 0.030347379, 0.012470331, 0.033298936, 0.014180893, -0.031447504, -0.0047258465, 0.043951377, -0.03447956, -0.030186385, 0.0005052027, -0.009793805, 0.010290204, 0.0044273366, -0.013483252, -0.016287232, 0.0045044795, 0.02134513, -0.0040181433, 0.030266883, -0.017642265, -0.0016745059, 0.009176661, -0.01012921, -0.011437286, -0.011511075, -0.028898433, -0.016381145, -0.00234783, -0.01702512, -0.024726003, 0.012309337, -0.017628849, 0.035230864, 0.008103367, 0.012067846, -0.0062217494, 0.010149334, 0.0004779511, -0.020084009, 0.0003031216, 0.014824869, 0.01303381, 0.00018772158, -0.009699891, -0.019949846, -0.019466864, -0.021854943, -0.0009584177, 0.017373942, 0.025691967, -0.0048164055, 0.012094678, 0.0023914324, 0.004524604, -0.01730686, 0.00021906092, -0.005249077, -0.017078785, 0.0030840423, 0.0004963983, -0.02274041, -0.013590582, 0.023706375, -0.019909598, -0.0154956775, 0.031796325, -0.030776696, -0.02274041, 0.028710606, -0.01569692, -0.007902125, 0.01919854, 0.00893517, 0.010001755, -0.016568972, 0.0038034846, -0.0020509972, -0.003531807, -0.0021717427, 0.0033288875, 0.018339906, -0.017508103, 0.021707365, 0.009834054, 0.032923285, 0.017669097, -0.013027103, -0.011296416, 0.015267603, 0.044327028, 3.1522763e-05, -0.008472312, -0.012799027, 0.012980145, -0.004766095, -0.00019369597, 0.022861157, 0.028200792, 0.027637312, 0.03437223, 0.01471754, 0.01082685, 0.011350081, 0.00064271846, 0.012604493, -0.022592831, 0.006671191, -0.0036357823, 0.010276787, -0.015401765, -0.010417657, -0.01608599, 0.0037800062, 0.024404015, -0.006449824, -0.006433054, -0.015200522, 0.013577165, 0.012295921, 0.027234828, -0.0020828606, -0.025530973, -0.0020795066, 0.022646496, 0.012409958, 0.025490725, 0.017763011, -0.024726003, -0.013416171, 0.00028341662, -0.02025842, 0.025987124, 0.027288493, 0.01699829, 0.0043200073, -0.0009810575, 0.016018908, 0.004766095, -0.019493697, 0.004715784, 0.034989376, -0.019493697, 0.011222627, -0.0011613374, 0.037082296, 0.008049702, -0.029542409, 0.024645507, -0.025141904, -0.0016191641, -0.007828336, 0.015213938, -0.0011546293, -0.028603276, 0.00438038, -0.00690262, 0.009156537, 0.029408248, 0.0059232395, 0.0056046057, 0.0040282053, 0.0028123648, -0.00658734, 0.0010791633, 0.024122275, 0.01348996, -0.0020107487, -0.02004376, -0.019748604, 0.0049002566, -0.005316158, -0.027529983, 0.011839771, -0.0060171527, 0.020969475, -0.007197776, 0.01752152, 0.012470331, -0.0039745406, -0.04558815, 0.0014145676, 0.023518547, -0.0077075902, -0.016837295, -0.014744372, 0.00024987618, -0.030535206, 0.011638529, -0.028388618, 0.020714568, -0.03735062, 0.008029578, -0.029971726, -0.0316085, 0.01647506, -0.000783169, 0.008391815, -0.015683504, 0.010377408, 0.011122006, -0.022887988, -0.03611633, 0.028334953, 0.0056079593, 0.006895912, 0.0021348482, -0.010632316, -0.018943634, -0.0029733588, -0.013080767, 0.010357284, 0.012664866, 0.0027687624, 0.010256663, 0.000605824, -0.020660903, 0.009451693, -0.0042864666, 0.006838893, -0.032359805, -0.0036324284, -0.0063290787, 0.11956492, 0.004464231, -0.012497163, 0.007144111, 0.0043770256, 0.013543624, -0.010363992, -0.039363045, 0.009485233, -0.007130695, -0.01552251, 0.022901405, 0.012376418, -0.011792814, 0.043226905, 0.0154956775, 0.025235819, -0.01902413, 0.007882001, 0.0037162795, 0.01156474, -0.0071239867, -0.009351071, 0.018621646, -0.0017474563, -0.0059802583, 0.02228426, 0.008432063, -0.0018765869, -0.014355303, 0.0022203764, -0.001960438, -0.0019486989, -0.007197776, -0.0072581484, 0.02056699, 0.017347109, 0.020016927, -0.010766477, 0.0062351655, 0.034425896, 0.0017960899, -0.003676031, -0.016461642, -0.0035821176, 0.00516858, 0.023612462, 0.021922024, -0.02676526, -0.03654565, 0.009646227, -0.031528004, -0.036089502, 0.009015667, 0.003914168, 0.025973707, -0.001807829, 0.0024870227, 0.008814424, -0.013194804, 0.0009919582, -0.03777994, -0.0010942564, 1.720257e-05, -0.014905366, -0.036572482, 0.008787592, 0.020795066, 0.0033037323, 0.010712813, 0.021948855, -0.044434357, -0.04456852, -0.006359265, 0.019238789, -0.011175671, 0.010907347, -0.013697911, -0.021049973, 0.023116063, 0.013006978, -0.022887988, -0.017186115, -0.013603997, 0.024243021, 0.021922024, 0.0025641657, -0.012819151, -0.0004943021, 0.002277395, 0.024658922, 0.021613453, 0.010773186, 0.010806726, -0.009720016, -0.013993067, 0.026335943, 0.00998834, -0.0028777688, -0.01945345, 0.026617683, -0.013925985, -0.019077795, -0.0068690795, -0.017159283, 0.009062624, 0.026161535, -0.010907347, -0.0005068797, -0.0021080158, 0.020526743, -0.013074059, 0.025906626, -0.02267333, 0.005165226, -0.011799523, 0.008411939, 0.00057060656, -0.00048717472, -0.013818656, -0.023330722, -0.03002539, 0.019668108, 0.018769223, -0.0074593914, 0.0009978277, 0.0048164055, -0.01177269, -0.019641275, 0.0011059956, -0.03445273, -0.007741131, 0.010887223, -0.014529713, 0.02302215, -0.006436408, -0.014784621, -0.0069965334, -0.0229819, -0.021318296, -0.0019268976, -0.01836674, -0.015831081, -0.017186115, 0.0068623717, -0.027100665, -0.017145867, 0.013308842, -0.0009642873, 0.0075063477, -0.020365749, 0.018353323, -0.026899423, -0.007902125, -0.0026379547, -0.03187682, -0.01040424, -0.0063190167, 0.041214477, 0.014234558, 0.03549919, -0.007593553, 0.02365271, 0.026657932, 0.00091313815, -0.02078165, 0.00893517, 0.011933684, -0.0010238215, -0.005101499, -0.0014539775, 0.017816676, -1.242044e-05, -0.010310328, -0.013818656, 0.011410453, -0.004752679, -0.0058393884, -0.010699397, -0.02852278, -0.028603276, -0.013074059, 0.00016822621, -0.0035821176, -0.021667117, 0.0034982667, 0.019077795, 0.01300027, 0.017078785, 0.014663875, 0.009505358, -0.016206734, -0.0044373986, 0.042663425, -0.0017860278, -0.041268144, -0.012953313, -0.02673843, 0.00036223663, 0.011343373, 0.014583378, 0.011839771, 0.008948586, 0.013738159, -0.009404736, 0.016689718, -0.01769593, -0.014274806, -0.013724743, -0.025396813, -0.0071843597, -0.026859175, 0.01188002, -0.03300378, -0.019990096, -0.0070166574, -0.0015906548, 0.003682739, -0.018514317, -0.033701424, 0.019507114, 0.029300919, 0.044863675, -0.015012695, 0.02589321, 0.024726003, 0.015965244, -0.010256663, 0.030991355, 0.008707095, 0.013738159, 0.02673843, 0.008680263, -0.058226183, 0.0047560325, 0.0023193206, 0.013691203, -0.029810732, -0.029837565, 0.009860886, 0.0059802583, 0.008244237, -0.014301638, -0.020660903, -0.027637312, 0.03184999, -0.011336665, 0.0016292263, -0.022780659, -0.040731497, -0.011920268, -0.012067846, -0.0066946694, 0.01506636, 0.007063614, -0.0016141331, -0.00060079293, 0.0015327976, 0.0007647218, 0.034211237, -0.0059198854, 0.023988115, -0.016850712, 0.0070904465, -0.02432352, -0.002594352, -0.0067315637, -0.015267603, -0.02771781, 0.019252205, -0.020419413, 2.5535272e-05, 0.0037162795, -0.00092990836, 0.01619332, -0.025987124, -0.014315055, 0.023599045, -0.016112821, -0.0009584177, 0.0077344226, 0.011041509, -0.0019386368, 0.008089951, -0.00907604, -0.031688996, -0.007774671, 0.013738159, 0.0018011209, 0.01836674, 0.0054972763, 0.004326715, -0.017481271, -0.014757789, 0.021291465, -0.04236827, -0.0033389495, 0.008103367, -0.02715433, -0.00072447327, 0.003920876, 0.009545606, 0.004866716, 0.006204979, -0.00058737677, -0.008056411, 0.019010715, -0.018903386, -0.002894539, -0.004219386, -0.018098416, 0.015844498, -0.0071709435, 0.00844548, -0.0065135513, 0.014127228, -0.012101387, -0.009874302, -0.010149334, 0.010679272, 0.0194132, 0.0027218058, 0.01432847, -0.0073185214, 0.005882991, 0.005550941, 0.017964253, -0.0020224878, -0.03394291, -0.012557536, 0.018728975, 0.01958761, -0.021828111, 0.009921258, -0.018192329, 0.003281931, -0.012443499, -0.006191563, -0.0016065865, 0.005812556, -0.023679541, 0.030079056, 0.034077074, 0.0027016816, 0.015455429, 0.006671191, -0.023746623, -0.03423807, -0.040168017, -0.004913673, -0.013127724, 0.030535206, 0.008036287, -0.023840535, -0.023773456, 0.0049639833, -0.04102665, 0.0038202547, 0.023438051, 0.020969475, 0.024202773, 0.024028363, 0.0061513144, 0.024511345, -0.01878264, 0.015388348, -0.015026112, -0.014194309, 0.025343148, -0.02691284, -0.012564245, 0.008157033, -0.0288716, -0.006194917, -0.0075063477, -0.009921258, -0.03332577, 0.019788852, 0.016059157, -0.014355303, 0.015884746, 0.008432063, -0.01919854, 0.0058360347, 0.007895417, -0.03227931, 0.023209976, 0.003380875, -0.012134926, -0.010370701, 0.016984873, -0.0031075208, 0.00918337, 0.014140644, 0.015281019, -0.010987844, -0.008693679, -0.0067315637, 0.03227931, -0.015428597, -0.010102377, 0.030749865, 0.001799444, -0.0070434897, -0.00830461, -0.00045950388, -0.0075533045, -0.012094678, 0.0021331713, -0.02186836, -0.009666352, -0.03633099, 0.020191338, -0.029971726, 0.0013139462, -0.016179902, -0.007902125, -0.027664145, 0.037753105, -0.0019218666, -0.0028593214, 0.012409958, -0.011343373, 0.0014304993, -0.029569242, -0.020660903, -0.004776157, -0.010867098, 0.006188209, 0.007445975, -0.010914056, -0.015012695, 0.018715559, 0.015106609, -0.02593346, 0.010357284, 0.21981055, -0.0015051267, -0.009149829, 0.025906626, -0.011926976, 0.006054047, 0.039470375, -0.0025926752, -0.011712317, 0.0019168354, -0.013194804, 0.011819647, -0.037645776, -0.010766477, 0.002976713, 0.0023226747, -0.020365749, -0.025208985, -7.5361146e-05, 0.025839545, 0.029166756, 0.00376659, -0.029944895, -0.0011152192, 0.0011252813, -0.004132181, 0.0052423687, 0.01986935, 0.019279039, 0.012564245, -0.016018908, 0.007935666, -0.0025222402, 0.008908338, -0.015079777, -0.011370205, -0.003461372, 0.002498762, 0.021640284, 0.015468845, 0.005976904, 0.015683504, -0.0007705913, -0.017642265, 0.03198415, 0.031071853, -0.0025977062, 0.00211137, -0.019802269, -0.0037464658, -0.028495947, -0.025799297, 0.0015730461, 0.034694217, -0.011383621, -0.0019101274, -0.00016833103, -0.0065705697, 0.0013122692, 0.030749865, -0.0153481, 0.012061138, 0.0020124256, 0.025624886, -0.03128651, -0.02049991, -0.030535206, 0.029113092, 0.011967225, -0.007211192, 0.00037837794, -0.017494688, -0.022552583, -0.014395552, -0.024149109, -0.037323788, 0.062412027, 0.017454438, 0.024578426, 0.025598055, -0.015012695, 0.007741131, 0.011705609, -0.00068883656, -0.01489195, -0.022217179, 0.007056906, 0.0020157797, -0.034667388, 0.0081302, 0.005812556, -0.0072514405, -0.012148343, -0.0023981405, 0.011551323, -0.013858905, 0.020741401, 0.011497659, 0.0017793197, -0.012926481, -0.008271069, 0.014382135, 0.006104358, 0.03745795, 0.019507114, -0.0061211283, -0.018997299, 0.013429588, -0.0021365252, 0.0018950342, 0.0059366557, -0.012953313, 0.02785197, -0.00095338665, -0.012242257, 0.021184135, -0.0001318558, -0.029810732, 0.016622636, -0.013691203, -0.017883757, -0.030266883, -0.016099405, 0.008391815, -0.027234828, -0.031179182, -0.016072573, 0.012664866, -0.02687259, -0.02435035, -0.0011823, -0.041375473, 0.008452188, 0.0008678586, 0.0030840423, -0.004152305, 0.031420674, 0.0007538211, -0.005031064, 0.0013734805, -0.009438276, 0.00953219, 0.008854673, 0.008599766, 0.017950837, -0.010437781, 0.014060147, 0.023344139, -0.010659148, 0.0040282053, -0.02404178, 0.002746961, 0.0025390105, -0.002658079, 0.011833063, 0.0021264632, -0.016864127, 0.016461642, -0.006332433, 0.01096772, -0.040060688, 0.0212378, 0.018433819, -0.017950837, -0.035526022, -0.011283, -0.17043903, 0.02134513, 0.024296686, -0.020325499, 0.0153346835, 0.0070233657, 0.0011873312, -0.011464118, -0.006422992, -0.013201512, 0.00045782686, 0.011618405, -0.021640284, -0.01222884, 0.025115073, 0.01268499, -0.020714568, 0.04607113, 0.016756797, -0.006057401, 0.008371691, -0.027194578, -0.00035867296, -0.011826355, -0.0013575489, 0.01047803, -0.0031762784, -0.007056906, -0.00861989, -0.036250494, -0.011752566, -0.0061546685, 0.020164505, 0.00360895, 0.024430849, -0.007841752, -0.0034412479, -0.018903386, -0.04226094, 0.027771475, 0.014529713, 0.023746623, 0.0041590133, -0.00097015686, -0.009116288, 0.023223393, 0.008928462, -0.031528004, 0.02502116, -0.011175671, 0.015361516, -0.021881776, 0.037082296, 0.0017441022, 0.010223122, 0.014677292, 0.014771204, 0.008002746, -0.008499145, 0.0054536737, -0.019279039, -0.0010322067, 0.025557807, 0.0017608724, -0.011537908, -0.0034680802, -0.02634936, 0.016823879, -0.027556816, 0.010122501, -0.0020040406, 0.007902125, -0.00017923166, -0.03311111, -0.011859896, 0.008049702, -0.008646722, 0.016166486, 0.00038361864, -0.0021298171, -0.01391257, 0.019265622, -0.010015172, -0.005862867, -0.010471322, 0.026496937, 0.011786106, 0.032493968, -0.024269853, -0.00676175, 0.031447504, -0.014019899, 0.0037263415, 0.005943364, 0.01471754, 0.018554565, 0.010900639, -0.0030152844, -0.014690707, -0.008727219, 0.012316045, 0.004618517, -0.015468845, -0.013255177, 0.030508373, 0.013718035, -0.011846479, 0.01506636, 0.029837565, -0.005735413, -0.017051954, 0.0019302516, 0.011672069, 0.02841545, -0.011484243, 0.04212678, -0.019225374, -0.025571221, 0.008069827, 0.0047359085, 0.0505253, -0.011457411, 2.225984e-05, 0.024082027, -0.020030344, -0.021707365, -0.11151522, -0.022686746, 0.007855169, 0.022887988, -0.00453802, 0.015106609, -0.0007835883, 0.027409237, -0.04295858, 0.025517557, -0.017655682, -0.030105889, -0.001722301, 0.0037934224, 0.020446245, -0.018406987, -0.0035854718, -0.020325499, -0.0003196822, 0.011893435, 0.017145867, -0.0044910633, 0.012477039, -0.028844768, -0.012215424, -0.031340174, -0.010109085, 0.03437223, 0.014623627, 0.011698902, 0.0038806275, -0.025249233, 0.008364983, -0.012195299, 0.008801009, -0.02782514, -0.030776696, -0.015777417, 0.00089049834, -0.009304115, 0.011336665, -0.006832185, 0.03332577, -0.017548352, 0.0055542947, 0.0066175265, -0.015509094, 0.03622366, 0.008089951, -0.024310103, -0.035096705, -0.018809471, -0.023988115, 0.016649468, 0.024685755, -0.010290204, 0.053101204, -0.0042629885, -0.010659148, 0.01093418, 0.020969475, 0.015884746, -0.009820637, -0.021667117, 0.022579417, 0.006741626, -0.02382712, -0.0154151805, 0.0154956775, 0.01591158, 0.01282586, 0.012537412, -0.009015667, -0.010437781, -0.025302898, 0.004236156, -0.021734197, -0.020607239, 0.016112821, 0.022203764, -0.027006753, -0.013704618, 0.001134505, -0.0007014142, 0.015535926, 0.0004762741, -0.03549919, -0.0006552961, -0.0023713082, -0.039685033, 0.0017591955, 0.014395552, -0.0076338015, -0.013087475, 0.021573203, 0.020432828, -0.006895912, -0.0034949125, -0.003843733, 0.020768233, -0.017092202, -0.018085, -0.059245814, 0.00027146784, 0.0015998784, -0.01562984, -0.024578426, -0.003224912, 0.012778903, -0.011591572, -0.00625529, -0.007774671, -0.031098684, -0.00890163, -0.028254457, 0.015052944, -0.01608599, -0.017226364, 0.022311093, -0.013208221, 0.0023864014, -0.0019923013, 0.020137673, 0.009129705, 0.027690977, 0.011088465, -0.019547362, 0.00017388616, -0.018420404, 0.009411444, 0.009035791, -0.020352332, 0.01380524, -0.0041724294, -0.02302215, 0.0022539168, -0.0044239825, -0.010893931, 0.012222132, 0.020647487, -0.0017591955, 0.04789573, -0.028898433, -0.024229605, 0.018863136, -0.008894921, -0.0216537, 0.011222627, 0.007211192, -0.013074059, 0.011692193, 0.002906278, 0.0067852284, 0.025987124, -0.02943508, -0.035311364, -0.002503793, -0.016984873, 0.018272825, 0.005664978, 0.010209707, 0.011028092, 0.007694174, 0.020862145, 0.01815208, 0.008177157, 0.003917522, 0.009800513, -0.018138664, 0.005101499, 0.022244012, -0.011833063, -0.026684765, -0.012980145, 0.01930587, 0.020727985, -0.0022220532, -0.010397533, -0.003211496, -0.013161264, -0.021398794, 0.008814424, 0.0057588913, -0.008264362, -0.0059366557, -0.00033917758, 0.009411444, -0.002423296, -0.0042965286, 0.011081757, 0.001965469, 0.0017139158, -0.011611696, 0.015509094, 0.004155659, -0.0042831125, 0.0075868447, 0.004075162, -0.004242864, 0.015294435, 0.014784621, 0.0024467742, 0.024269853, -0.0049706916, -0.00041694945, 0.004984108, -0.029247254, -0.004118765, -0.0013852196, 0.0035385152, 0.016206734, -0.009277282, 0.010759769, 0.009512065, 0.01068598, 0.021049973, -0.010249955, 0.0026077682, 0.0072581484, -0.017186115, -0.036572482, 0.017159283, 0.02134513, -2.241706e-05, 0.021184135, -0.013711327, 0.023344139, 0.014798037, 0.035579685, -0.02610787, -0.009787097, -0.011189086, -0.013248469, 0.008707095, -0.035901673, -0.014744372, -0.033916082, 1.7006045e-05, 0.011182379, 0.020097425, -0.023558797, 0.06530992, 0.02922042, 0.0010959335, 0.01997668, 0.00026979082, -0.0064766565, 0.0006372681, 0.009834054, -0.028603276, -0.012785611, -0.011021385, -0.023411218, 0.01769593, -0.010384116, 0.007224608, -0.0018396925, -0.005192058, 0.034694217, -0.00890163, -6.157813e-05, 0.03721646, 0.01489195, 0.006875788, 0.01917171, -0.004387088, -0.015281019, 0.0072983974, -0.01096772, -0.0018313074, -0.02526265, 0.0063391407, 0.00033205023, -0.03815559, -0.026376193, -0.013208221, 0.008344859, 0.0017323631, -0.010504862, 0.019399783, 0.009780389, -0.0044441065, 0.0072849807, -0.008271069, -0.019547362, -0.017293444, 0.015549342, -0.02989123, -0.013738159, -0.007211192]" 32553958,Why does everything on Netflix look like that?,https://www.vice.com/en/article/ake3j5/why-does-everything-on-netflix-look-like-that,163,1661186806,210,cpeterso,"[0.017965699, -0.03215619, 0.035449456, -0.026051603, 0.021955103, 0.023374151, -0.006295358, -0.029103898, -0.021098318, -0.014659047, 0.013012414, 0.016653748, 0.026439834, -0.0013144613, 0.0053381687, 0.0023176689, 0.04045629, 0.009692375, -0.0016717338, -0.026372897, -0.024378195, 0.005030262, -0.026774514, -0.007269281, -0.017738117, 0.012456843, 0.014980341, -0.0074031535, 0.0076508177, -0.010843678, -0.006599918, -0.01328016, 0.0004781761, -0.015261473, -0.015194537, 0.0050771176, -0.008848977, -0.033173624, 0.023360765, -0.033869762, 0.007824852, 0.008326874, -0.016653748, -0.028809378, -0.022169298, 0.01171385, -0.010013669, 0.0026908386, -0.0050704237, 0.03129941, 0.038234007, 0.022811886, -0.011171666, -0.04187534, 0.0046821935, -0.0084674405, 0.010549159, 0.0034120772, 0.050496735, -0.03231684, 0.003711617, 0.0025502725, -0.018487802, -0.02348125, -0.01300572, -0.00015112958, -0.0025034172, 0.0039258134, -0.0072425064, -0.015274861, 0.05271902, 0.05081803, -0.004404408, 0.0014391302, 0.008648168, -0.008621394, -0.023748994, -0.015154376, -0.00052544987, -0.0023896254, 0.01811296, -0.010770049, -0.013126206, 0.021861391, 0.0037718597, 0.0048227594, -0.0054921224, 0.018956356, 0.0053147413, 0.011988289, 0.014779532, 0.015047277, 0.03769852, 0.009471484, 0.0028715667, 0.0020867388, 0.0019444992, 0.03684173, -0.022423657, -0.017175851, 0.0022222847, 0.023320602, -0.025890956, -0.0070015355, -0.008507602, -0.030148104, 0.012028451, 0.0040295646, 0.022196073, -0.02172752, -0.0063689877, 0.0027778558, 0.001608981, -0.012563941, -0.0021469814, -0.023735607, 0.00634556, -0.0013872546, -0.0031142107, -0.04457957, 0.020977832, 0.020870734, 0.019987175, -0.005351556, 0.02211575, 0.0123028895, -0.019398136, -0.008581232, -0.01149296, -0.02558305, 0.03759142, 0.0008718452, 0.010415287, 0.002622229, -0.018153122, 0.014310978, -0.013567985, 0.008132759, -0.02547595, -0.010334963, 0.037993036, 0.009257289, -0.021660583, -0.0019093576, 0.006010879, 0.028541634, -0.018527964, 0.01883587, 0.011024406, 0.0087351855, 0.023588348, -0.018407479, -0.011365782, 0.009203739, 0.0037350447, 0.018340543, -0.01435114, -0.0043374714, -0.027738398, -0.03652044, 0.008286713, 0.02270479, -0.024284486, -0.02119203, 0.00839381, 0.012610797, 0.020469116, -0.009063173, 0.0024214203, -0.009170271, -0.0061514447, 0.0144984, -0.057832953, 0.027497428, -0.03290588, 0.0042571477, 0.011928046, -0.0033049793, -0.024418358, -0.019063454, 0.023454474, -0.0036848427, 0.0070483913, 0.00077018567, -0.01269112, 0.0044813845, 0.019237489, -0.015984386, -0.0022038773, -0.027470652, -0.009284063, 0.0038387962, -0.030549722, -0.029478742, -0.6293082, -0.00852099, 0.007262587, -0.0020582909, 0.017242787, 0.031326182, 0.0033267336, 0.009672293, -0.02235672, -0.010696419, -0.00815284, -0.0065697967, 0.016238743, -0.026787901, 0.0043876735, -0.00944471, -0.006164832, -0.0029937255, -0.010073911, 0.0068040737, -0.0289968, 0.023896255, -0.018701999, -0.00996012, 0.0023477902, 0.009966813, 0.0086682495, -0.026439834, -0.010877146, 0.025342079, -0.03301298, 0.03660076, 0.015877288, 0.0121355485, 0.053174186, -0.011586672, -0.009384467, 0.02864873, 0.013494356, 0.023762383, -0.017858602, -0.014725983, 0.00671371, -0.0018089531, -0.007496864, 0.008326874, 1.0837926e-05, -0.010448755, 0.0017888723, -0.002018129, 0.021366064, -0.0052377647, 0.014177105, 0.026252411, 0.022852048, -0.011077955, 0.019210715, -0.012624184, 0.025690148, 0.027162746, -0.0034338315, 0.006686935, -0.02431126, 0.0032012279, 0.019063454, 0.014324365, 0.024445131, -0.01826022, -0.009819553, 0.0068810503, 0.0019244183, 0.019317813, -0.011673689, 0.010408592, 0.007831546, 0.017189238, 0.04120598, -0.009692375, 0.0193312, -0.0017805053, 0.009404548, 0.0023829318, -0.017992474, 0.001894297, 0.03119231, -0.0053113946, 0.002913402, 0.019826528, -0.0034254645, -0.009317531, 0.009330918, -0.0065497155, -0.013266772, -0.039519183, 0.002901688, 0.018541351, -0.008748572, 0.051139325, 9.512274e-05, -0.02440497, -0.016265517, -0.017831827, 0.0046621123, 0.0022339986, 0.03226329, 0.01305927, -0.013661697, 0.0046955803, 0.03475332, -0.0077043665, 0.0032045748, -0.0009036399, -0.025569662, -0.02036202, 0.0075236387, -0.022088975, 0.025181431, 0.029023575, -0.004357552, -0.01149296, 0.007302749, -0.004431182, -0.011780786, 0.024806589, 0.0015596155, 0.006405803, -0.01117836, 0.018902808, -0.021245578, -0.0013671736, 0.003243063, 0.014418077, 0.011057875, 0.00057732547, 0.0036881894, 0.024070289, 0.01674746, -0.0070952466, 0.019692656, -0.036145594, 0.0051440536, 0.014337753, -0.026587093, -0.0025402321, -0.022865435, -0.024431745, -0.013065963, -0.011419331, -0.017149078, 0.012322971, -0.013494356, -0.011559897, -0.008440666, 0.0048963893, -0.0039559347, -0.0050469963, -0.011559897, -0.013099431, -0.014966954, -0.02377577, 0.021740906, 0.015381959, -0.054834206, -0.004237067, -0.015288248, -0.0017336499, -0.0049499385, 0.029291319, -0.002379585, -0.0276313, 0.017845213, -0.018916195, 0.01125199, 0.019023294, -0.00852099, 0.024043515, -0.011974902, -0.0007413194, -0.023561573, -0.004146703, 0.016894719, 0.008822203, 0.007537026, -0.026587093, 0.039224666, 0.0063053984, 0.060510404, -0.0007036677, -0.022088975, 0.011907966, 0.012737975, -0.0114996545, -0.017858602, 0.0046085636, -0.010047137, 0.0005994981, -0.0016524896, -0.017590856, 0.0063689877, 0.00543188, 0.016386002, 0.007657511, -0.0010567566, -0.0007065962, 0.009250595, -0.025569662, 0.03167425, -0.0289968, 0.0029769915, 0.016145032, 0.017001817, -0.023146568, -0.008092597, -0.023936417, 0.009143497, 0.0145653365, 0.013092738, 0.026319347, -0.017537307, 0.013494356, -0.030014232, -0.012925397, 0.012851767, -0.009558502, -0.00226412, -0.011111423, 0.010127461, -0.010488916, -0.0030188265, -0.03925144, -0.018273607, 0.014043233, -0.031808123, 0.0019863343, -0.010709806, -0.0024214203, 0.01058932, -0.0033970166, 0.019545397, -0.016292293, 0.0005999165, 0.034833644, 0.0007567984, -0.010883841, 0.03290588, 0.0068141143, 0.013166368, 0.009257289, -0.011666995, -0.007342911, 0.012992334, 0.0048026787, -0.019933626, -0.00051917456, 0.018755548, -0.015448895, 0.00013021199, -0.0010676337, 0.01855474, 0.0040161773, 0.0069680675, -0.025944505, 0.020388793, -0.01684117, 0.005880353, -0.0053950646, -0.0022457123, -0.0063924156, -0.014297591, -0.017925538, 0.0033953432, -0.016386002, 0.015930837, -0.012630877, -0.009464791, -0.0021804497, -0.00996012, 0.0226914, 0.014685822, 0.018916195, -0.0011513041, -0.031406507, 0.018474415, 0.0048294533, -0.01884926, -0.021660583, 0.00059322285, -0.009799472, 0.011171666, 0.013688471, -0.026895, 0.0083335675, -0.0115331225, 0.0028213644, -0.001405662, -0.039679833, -0.00030769774, -0.002610515, -0.00990657, -0.0046085636, 0.010522384, 0.008253245, 0.001730303, 0.00021147683, 0.009103335, 0.0010626136, -0.026975324, 0.0045550144, -0.014364528, -0.0042236797, -0.018782321, -0.0061347107, -0.03686851, 0.022236235, 0.0008852324, -0.019906852, -0.022276396, -0.008219776, 0.0016098177, 0.018862646, 0.0018089531, -0.025154658, -0.0031426586, -0.006703669, 0.11823626, 0.03777884, 0.0014315998, 0.006850929, -0.021834617, -0.009250595, -0.024619166, -0.01962572, 0.013661697, -0.006221728, 0.009043093, -0.0023779117, 0.023762383, 0.012296196, 0.017256174, -0.0057565207, -0.0033133463, 0.0036982298, -0.02045573, -0.00672375, -0.0052544987, -0.01942491, -0.0071153273, 0.01654665, 0.012088694, -0.017604243, 0.0037082704, 0.0011362435, 0.008815509, -0.029719712, -0.004655419, -0.0067672585, 0.009732536, 0.038956918, -0.019545397, 0.014672434, 0.0055657523, 0.006720403, 0.018782321, 0.0011454473, -0.0059272083, 0.006994842, 0.010924002, -0.020067498, 0.004826106, -0.016760847, 0.0123698255, 0.0087017175, -0.0016215316, -0.030549722, 0.026372897, -0.007664205, -0.031941995, 0.014752758, 0.024137225, -0.02001395, -0.0023093019, -0.0031443322, -0.01110473, 0.009625438, -0.009692375, -0.035717204, 0.0033183664, 0.0065731434, -0.015261473, -0.01728295, 0.012778137, 0.018407479, -0.002893321, 0.0032982857, 0.010020362, -0.042196635, -0.0063622943, 0.009699068, 0.020589601, 0.018153122, 0.014525174, -0.025449177, 0.010020362, -0.013708551, -0.01601116, 0.0059004338, 0.0047491295, -0.007423234, 0.004421142, -0.020509278, 0.005438573, -0.011794174, -0.008621394, 0.0055389777, 0.032718457, 0.014377914, -0.022718176, -0.001795566, 0.013454194, 0.021017995, 0.016278906, 0.032129418, 0.02781872, -0.03119231, 0.0064995135, -0.016640361, 0.014538562, 0.0075169452, 0.019532008, -0.026613869, -0.026225638, 0.0050938516, -0.027256457, -0.013708551, 0.0031543726, -0.013454194, -0.016386002, -0.0044244886, 0.012731282, 0.00070743286, -0.028140016, 0.034967516, -0.001775485, -0.0039057324, 0.024271097, -0.03901047, 0.0226914, -0.0030472744, -0.00913011, -0.0063924156, 0.025730308, -0.03475332, -0.011419331, 0.0071688765, -0.0008124392, 0.03392331, -0.005535631, -0.01938475, -0.032102644, -0.030228427, 0.0032932654, -0.009531727, -0.00091786386, -0.018126346, -0.0081662275, -0.003336774, -0.0032246558, -0.021513322, 0.017296337, -0.037993036, -0.0026406366, -0.01056924, 0.006439271, 0.018461028, -0.03012133, -0.002026496, -8.602359e-05, -0.0055624056, 0.005465348, -0.028755829, -0.013869199, -0.028621957, 0.022182686, -0.006010879, 0.04021532, 0.0120686125, 0.013628229, 0.014418077, -0.016412778, -3.0931886e-05, 0.0055824863, -0.0061949533, -0.010950777, 0.0044177948, 0.0145653365, 0.004478038, 0.016667135, 0.013648309, 0.008527683, 0.011171666, -0.0092706755, -0.002215591, -0.0033434676, -0.026787901, 0.007838239, 0.018862646, -0.028970025, -0.007222425, -0.007496864, 0.0029502169, 0.03231684, 0.024190774, -0.010575933, -0.026239024, 0.02846131, 0.008574539, 0.008139453, 0.008018968, 0.010970858, 0.00256868, -0.011144892, -0.021714132, -0.0151677625, 0.002436481, 0.01776489, -0.008387117, 0.002461582, 0.012724589, 0.016238743, 0.014391302, 0.020790411, -0.001013248, -0.012162323, -0.009350999, -0.013895974, -0.026466608, -0.046775077, -0.029987456, 0.017805053, -0.0077646095, -0.020750249, 0.016171807, -0.017055366, -0.044338595, 0.013688471, -0.025007397, 0.010897228, 0.004237067, 0.022370107, 0.0164931, -0.04672153, 0.001101102, 0.015007116, -0.003085763, -0.0041935584, -0.0058167633, 0.004327431, -0.028193565, 0.0052745794, -0.02265124, -0.009197046, -0.033709113, -0.037457548, 0.022999309, 0.01125199, 0.02099122, -0.014551949, -0.007188957, -0.0055791396, 0.013829037, -0.017416822, -0.03617237, -0.0030556414, -0.021339288, -0.02045573, -0.010703112, 0.00015426723, 0.017724728, 0.015381959, 0.0015303309, -0.0146322725, 0.012262728, 0.0019411524, 0.009866409, -0.0037250044, 0.040188547, -0.024338035, 0.0185949, 0.029023575, 0.03563688, -0.020683313, -0.014070008, -0.029050348, 0.017965699, -0.009973506, 0.009632132, 0.015756803, -0.014511787, 0.012162323, -0.00468554, -0.013480968, -0.0011948127, 0.0031794736, -0.0023762381, 0.029291319, -0.008949381, 0.008621394, 0.0007936134, -0.016386002, -0.002207224, 0.019639106, -0.01879571, 0.0090698665, -0.0079319505, -0.004970019, 0.0050536897, -0.024364809, 0.021714132, 0.0050871577, -0.012061919, 0.017095529, 0.0153685715, -0.018367317, 0.025127882, 0.0289968, 0.0117673995, -0.028220339, 0.013936135, 0.0071287146, -0.029880358, 0.034137506, -0.003788594, -0.02739033, -0.01215563, 0.00071914674, 0.0012425048, 0.028059691, -0.012630877, -0.010120766, 0.003822062, -0.010703112, -0.015890675, -0.009136803, 0.00047524765, -0.004277229, 0.009571889, -0.011787481, 0.0089694625, 0.008487522, -0.03071037, 0.00068777037, 0.010883841, -0.03154038, 0.0062485025, -0.0029518902, 0.013420725, -0.0045181992, -0.019947013, -0.006760565, -0.00035622655, -0.025489338, 0.027550977, -0.0045148525, 0.014337753, 0.017912151, 0.024672715, 0.0064426176, 0.016734071, -0.012416681, 0.0004844514, -0.039920803, -0.031861674, -0.009123416, -0.013112819, -0.009926652, 0.040509842, 0.013708551, 0.0004965836, -0.011432718, 0.008360342, -0.048595745, 0.014592111, -0.0008894159, 0.013735326, 0.045115057, 0.0015579421, -0.0017771585, 0.012363132, 0.010662951, 0.012778137, -0.008052436, -0.006834195, 0.010408592, 0.029933907, 0.026453221, 8.638965e-05, -0.033066526, 0.00041856096, 0.023534799, 0.005970717, 0.0003610376, 0.021111704, 0.0074366215, 0.0068609696, -0.0030522947, 0.011586672, -0.0012918704, -0.016104871, -0.0075571067, -0.025368853, 0.007496864, -0.021834617, 0.01826022, -0.0089359945, 0.01702859, 0.029773261, 0.020228146, -0.022664627, -0.0276313, -0.0043341247, -0.018862646, -0.0010149215, 0.019960402, 0.0031861672, 0.0007220752, 0.041259527, -0.0060142255, -0.004140009, 0.026131926, -0.012182404, 0.006181566, -0.00868833, -0.0009546788, -0.022289785, 0.002247386, 0.020964446, 0.029103898, -0.018996518, -0.00012299542, -0.03129941, 0.009089948, -0.0022942412, 0.029103898, 0.0060142255, -0.009163578, 0.04045629, -0.024806589, -0.0087351855, 0.01018101, -0.0013730306, -0.009598664, -0.026479995, -0.00071036135, -0.0151008265, 0.007389766, -0.018635063, -0.021459773, -0.010669644, -0.030817466, 0.00015991497, 0.1988811, -0.005913821, -0.023026083, 0.031058438, -0.022048812, 0.008895833, 0.009699068, 0.007958724, 0.00452824, 0.008112678, 0.015863901, 0.0145653365, -0.015930837, 0.0038421429, 0.019009905, -0.047712184, -0.020482505, -0.021245578, 0.002334403, -0.01027472, 0.0010835312, -0.011626833, -0.017778277, -0.01702859, 0.04115243, 0.028032918, -0.004026218, 0.0172294, 0.018527964, 0.01352113, -0.015649704, -0.017992474, -0.00076558377, -0.019237489, -0.011881191, -0.009879796, -0.019853303, 0.0038354492, -0.018193282, 0.013547905, 0.021901553, 0.020616377, 0.0025536194, -0.010997632, 0.015341797, -0.014364528, -0.0153016355, 0.0050369557, 0.024806589, -0.012015063, -0.017912151, -0.00890922, 0.03325395, 0.023641897, -0.005877006, 0.0076374304, 0.004946592, 0.025703534, -0.0018825831, 0.0011496308, -0.003714964, 0.032531034, -0.033762664, 0.03231684, 0.013976296, 0.017296337, -0.0062150345, 0.017483758, 0.0015663091, 0.004953285, -0.0119682085, -0.012021758, -0.012383213, 0.004963326, 0.004578442, -0.005880353, 0.014485013, 0.013253385, 0.033173624, 0.043803107, -0.025208205, 0.0009563522, -0.02123219, 0.01147288, -0.009096641, -0.02601144, 0.022289785, -0.0006128854, 0.018313767, -0.023026083, -0.00256868, -0.0026640643, -0.0028531593, 0.029077124, 0.029933907, 0.007771303, 0.012182404, 0.021339288, -0.02445852, -0.003336774, -0.003912426, -0.0110311005, 0.023508023, 0.033200398, -0.0035677042, -0.012550554, -0.004544974, 0.03925144, 0.01405662, -0.011687076, 0.0023126488, -0.01781844, 0.029451966, -0.009940038, 0.011874497, 0.021553485, -0.0088355895, -0.018461028, 0.018541351, -0.030790692, 0.008808816, -0.0037618193, 0.0017554042, -0.002461582, -0.010281414, -0.02787227, 0.01518115, 0.010662951, 0.0017704648, -0.026948549, 0.031460054, -0.0035576636, 0.012430069, -0.02348125, -0.00025205695, -0.006472739, 0.024819976, -0.01571664, 0.01381565, 0.017149078, -0.006221728, 0.0117673995, 0.01601116, -0.011486267, -0.00047064578, -0.036734633, -0.004253801, -0.010676337, -0.013146287, 0.00097559637, -0.012704507, -0.0023979924, -0.015529219, -0.010984245, -0.004946592, -0.011506348, -0.018046023, -0.03826078, -0.0067003225, 0.02757775, -0.03890337, 0.017617632, 0.01957217, -0.0018859298, -0.026935162, -0.0030874363, -0.16932203, 0.01420388, 0.034432027, 0.0023946457, 0.032531034, -0.003932507, 0.01811296, 0.011144892, -0.052263852, -0.0040864605, -0.011754012, 0.028434535, -0.024471907, -0.017711341, 0.0032380428, 0.013414032, -0.014966954, 0.029157447, 0.013179755, 0.0005836008, 0.047016047, -0.0055155503, 0.0015914103, -0.003460606, 0.018273607, 0.003291592, 0.030790692, 0.034967516, 0.0020499239, -0.015582767, -0.014244042, -0.019947013, 0.014217268, 0.0031510256, 0.018728774, 0.01674746, 0.0021754294, -0.004866268, -0.0088355895, 0.022062201, 0.0044847312, 0.002413053, -0.008721799, 0.01835393, 0.024819976, 0.0019177246, 0.0085343765, 0.024605779, 0.009049786, -0.006469392, 0.020951059, -0.045436352, 0.0118008675, -0.006703669, 0.003070702, 0.010254639, 0.021848004, 0.0046754996, -0.0055557117, -0.009598664, -0.02318673, -0.016466327, 0.01684117, 0.009290757, -0.01261749, -0.011961514, -0.013353789, 0.00035518067, -0.02089751, 0.0004852881, -0.012758057, 0.00075261487, -0.007972112, -0.014886631, 0.008561151, -6.960328e-05, -0.03791271, -0.0006388232, -0.017470371, 0.01117836, 0.0064760856, 0.018996518, -0.019076843, -0.0009128436, -0.0040295646, -0.013541211, -0.008179614, -0.005030262, -0.027738398, 0.009089948, 0.019826528, 0.0026406366, 0.017671179, -0.01601116, 0.03973338, 0.0002855251, 0.035743978, 0.0012115468, 0.022972533, -0.016399391, 0.0080658225, -0.0023762381, -0.014672434, 0.039224666, 0.0073696855, 0.02611854, 0.003130945, 0.002707573, 0.009933345, -0.03743077, -0.026828064, -0.0030405808, 0.015288248, 0.0031041703, -0.018273607, 0.012175711, 0.017604243, -0.0046286443, 0.00045684015, -0.009397855, 0.061688483, 0.012443456, -0.026332736, -0.0131329, -0.021499936, -0.036573987, -0.10511675, -0.0045483205, -0.006044347, 0.012891929, -0.010401899, 0.019933626, 0.001081021, 0.011740625, -0.0023444435, 0.02113848, -0.0033719155, -0.027443878, -0.0036346405, 0.014337753, 0.010040443, 0.0031978812, 0.0047089676, -0.009063173, -0.008460747, 0.027256457, -0.013708551, 0.005187562, -0.023615122, 0.0010006975, -0.044285048, -0.0070082294, -0.01957217, 0.0007111981, 0.016827783, 0.023494637, 0.0068944376, -0.015997773, -0.007818159, -0.026640642, -0.01269112, -0.0036513745, -0.005793336, -0.027443878, 0.0152346995, -0.04792638, -0.0034539124, -0.0068308483, -0.021366064, -0.018768935, -0.010535772, 0.0069279056, -0.005010181, 0.041366626, 0.010361738, 0.007978805, -0.011205135, -0.00094547507, -0.008186308, -0.029773261, 0.056012284, 0.012041838, 0.006653467, -0.029666163, -0.026573706, 0.016171807, -0.012865154, 0.019786367, -0.013976296, 0.012276115, 0.0011989962, -0.0033602016, -0.027765172, -0.0037752066, 0.0025586395, -0.01776489, -0.028809378, 0.008012273, -0.016037935, 0.013735326, -0.037029155, 0.0037651663, -0.028755829, 0.0005057873, -0.0019344587, -0.005264539, -0.009739229, -0.013922748, 0.025877569, -0.036547214, 0.0074700895, 0.021433, 0.015756803, -0.003912426, -0.014123556, -0.044606343, -0.0040697264, 0.012356439, 0.017202625, 0.012858461, -0.0008810489, -0.01913039, 0.008942688, -0.0031409853, 0.026868226, 0.029907133, -0.012771443, -0.017470371, -0.042892773, 0.008648168, -0.004648725, 0.017015204, 0.006546369, -0.018474415, 0.01883587, 0.002486683, -0.0061380574, -0.0005794172, -0.030041005, -0.00023762383, -0.012095387, -0.0014985361, -0.03301298, 0.0002064566, -0.013032495, -0.0086147, 0.004809372, 0.016586812, -0.017363273, 0.0063723344, 0.010669644, 0.00039555161, -0.011720544, -0.025810633, 0.0046420316, 0.0016667135, -0.017430209, -0.018942969, 0.045704097, -0.008855671, 0.0058870465, -0.0029569105, -0.016934881, -0.02001395, -0.031165535, 0.014083395, -0.00040684713, 0.0145653365, -0.02757775, -0.035101388, 0.001335379, -0.015127601, -0.009043093, -0.008755267, -0.024083676, -0.016104871, 0.011606752, 0.029773261, 0.029050348, 0.016854556, -0.021058155, -0.00286822, 0.0016642035, -0.029451966, 0.037082702, 0.002828058, 0.005913821, -0.013460888, 0.029773261, 0.0019796407, -0.0031962078, -0.019732818, 0.026961936, 0.028380986, -0.018246831, 0.014618885, 0.0028330784, 0.0023059552, 0.0024582352, -0.010696419, 0.013621534, 0.016519876, 0.0050001405, 0.004795985, 0.009183658, -0.024418358, -0.027711622, 0.020830574, 0.00010898065, 0.021218803, -0.03338782, 0.0077512222, 0.02787227, -0.009190353, -0.029344868, 0.030041005, 0.036038496, 0.0077512222, -0.0185949, -0.008193001, 0.006519594, 0.006332173, 0.0015746761, 0.016640361, -0.025864182, 0.014324365, 0.0012257708, 0.015890675, -0.0048194127, -0.0022992615, 0.004668806, -0.013052576, -0.04235728, 0.02064315, -0.0043709395, -0.03178135, 0.020054111, 0.016519876, 0.012771443, -0.03408396, 0.0003809093, 0.00034681364, -0.011051181, 0.025797246, -0.014940179, 0.00012592389, 0.00096137245, 0.004705621, 0.016626975, 0.010602708, 0.019050067, 0.0051139323, 0.026466608, -0.0045717484, 0.030228427, -0.02484675, 0.027109196, 0.0128049115, 0.0068141143, -0.030576495, -0.0032932654, 0.013641615, -0.023467863, -0.029559065, 0.021392837, 0.03684173, -0.0046119103, 0.06581176, 0.03694883, -0.01032827, 0.0155024445, -0.018942969, 0.026881613, -0.016734071, 0.0018123, -0.0030840894, -0.010482223, 0.004059686, -0.009980201, 0.037885938, -0.01728295, -0.0045349333, 0.027791947, -0.021111704, 0.038796272, -0.0276313, -0.0047892914, 0.010268026, 0.02894325, 0.033200398, 0.002921769, 0.0014893324, -0.02226301, 0.022771725, 0.011426024, -0.017858602, -0.004725702, -0.00023197607, -0.0025653332, -0.016345842, 0.0006158138, 0.015261473, -0.00445461, -0.013735326, -0.0025201512, -0.007978805, 0.017430209, -0.016332455, 0.03274523, -0.027229682, -0.03480687, 0.010334963, -0.006415843, 0.01909023, -0.015904061, -0.018527964]" 27549164,Hasura GraphQL Engine and SQL Server,https://github.com/hasura/graphql-engine/blob/master/architecture/sql-server.md,182,1624013832,83,tango12,"[0.013756401, 0.0036142997, -0.017636744, -0.022152996, -0.025137875, 0.0046719853, -0.03125039, -0.017221456, -0.015339685, -0.034339093, 0.031561855, -0.005956781, -0.0018298608, -0.007637398, 0.003906299, 0.0006598368, 0.02368437, -0.015274796, 0.011770807, -0.011842185, 0.001688728, -0.029147996, 0.014054889, 0.0101096565, -0.03125039, 0.024865344, 0.03932254, -0.012562449, -0.013354091, 0.0048406958, 0.00859775, -0.006703001, -0.015041197, 0.0058756704, -0.0052851834, 0.0282136, 0.0075725093, 0.016507681, -0.005745893, 0.01645577, 0.030938923, -0.016897013, 0.0041820756, -0.015028219, -0.008007264, 0.022088109, -0.01714359, -0.03119848, -0.013600668, -0.01118032, 0.02046589, 0.038803432, -0.038803432, 0.0040393206, -0.0029248574, -0.009564592, -0.009486726, 0.011264675, 0.036052153, -0.0018931273, 0.019855937, 0.012043339, -0.01467782, 0.00052519277, -0.011446363, 0.003698655, -0.012607872, -0.0005783204, -0.015170974, -0.014457199, 0.02855102, 0.041009646, -0.007786642, -0.020089537, 0.0010455189, -0.033612337, -0.0066218902, -0.03195119, -0.0030238125, -0.020907134, 0.0042631864, -0.011563163, 0.015183952, 0.009188238, 0.0099539235, 0.044461727, -0.0035364332, 0.013367069, -0.01169943, -0.020323135, 0.008493928, 0.017286345, 0.012990714, 0.012121206, 0.0077087753, 0.029122042, 0.0002978796, 0.012127695, -0.011232231, -0.006748423, -0.0062585133, 0.010278367, -0.006560246, -0.011082987, -0.027954044, -0.0046882075, 0.011349031, -0.00745571, 0.025605075, -0.020621624, 0.01944065, 0.03262603, 0.003773277, -0.0019417938, -0.008669128, 0.0022629928, 0.048718423, -0.02115371, 0.0059892256, -0.0056777596, 0.0078061083, 0.01491142, 0.00837064, 0.0020667044, 0.0053825164, -0.00097414135, 0.004594119, 0.0068327785, 0.01690999, -0.009700858, 0.013626623, 0.011803252, 0.0025647252, 0.0041593644, -0.03195119, 0.020102514, -0.039763786, 0.008305752, -0.01702679, -0.022217885, 0.021036912, 0.0012758737, -0.007864509, -0.023762235, -0.015054175, 0.004753096, 0.009992857, 0.012679249, 0.014548043, 0.0061157583, 0.010226456, -0.006054114, 0.001837972, -0.008701572, 0.012880404, -0.004493541, -0.009214193, 0.022282774, -0.021244556, -0.0015102841, 0.038336232, 0.025332542, -0.0037473214, -0.012153651, 0.0007648753, 0.015988572, 0.0075270873, -0.013250269, -0.019388739, -0.009330993, 0.008935171, 0.03732397, -0.015897727, 0.0132308025, 0.0017552389, 0.011790274, 0.021893442, 0.011349031, -0.03846601, -0.029096086, 0.03163972, -0.0074297544, 0.036778904, 0.03410549, -0.02798, 0.0005564205, 0.01800012, -0.004633052, 0.014262533, -0.011907074, -0.01875283, 0.032262653, 0.0045551853, -0.016287059, -0.6287454, 0.0030692348, 0.0006521313, -0.022036197, 0.015352663, -0.006242291, -0.0035396777, 0.006112514, 0.012977737, -0.009512681, -0.011342542, -0.011193298, -0.0009003305, -0.01944065, -0.010570367, -0.010297834, 0.0055414937, -0.035792597, 0.011855163, 0.010421122, -0.01077801, 0.01249756, -0.011946007, 0.020102514, 0.005097006, 0.013977022, -0.012166628, 0.0033807005, 0.0029086352, 0.020271225, -0.023697346, 0.0070728664, 0.00035526554, 0.013717468, 0.05933421, -0.011563163, -0.0032087453, 0.03457269, 0.014119778, 0.06369473, -0.014301466, -0.010667699, 0.023295037, 0.01593666, -0.013457913, 0.011082987, 0.015015242, -0.01559924, 0.0025371476, -0.0038122102, -0.012393738, -0.00016222171, 0.035455175, 0.014470176, 0.0019839716, -0.0128544485, 0.054714136, -0.013548757, 0.005642071, 0.01382129, 0.0039030542, 0.014755687, -0.029719017, -0.039582096, -0.03698655, 0.0031811676, 0.0128933815, -0.017390167, -0.008759973, -0.011199786, 0.028862486, 0.029329685, 0.010239434, -0.008526373, 0.0036110552, 0.01576795, 0.026202051, 0.011563163, 0.006508335, 0.012977737, 0.018428385, -0.019077273, -0.020076558, -0.0068846894, 0.025358498, -0.011245209, -0.058451727, -0.010596322, 0.007235088, 0.017506966, 0.02470961, 0.008435529, -0.039426364, -0.03371616, 0.017000835, 0.033119183, -0.000244752, 0.008338196, 0.013328136, -0.014561021, 0.0059665143, -0.0099669015, 0.013769379, 0.022685084, 0.025085965, 0.020167403, -0.045136567, -0.0037894992, 0.021659842, -0.041373026, 0.0049120733, -2.1519723e-05, -0.01238725, -0.003348256, -0.0050483397, -0.026253961, 0.010706632, 0.0071637104, -0.014210622, -0.019168116, -2.9757544e-05, 0.0015419173, 0.026124183, -0.0064142463, -0.005953537, 0.019505538, -0.008844327, -0.010187523, -0.010680677, 0.014807598, 0.033326827, -0.006456424, 0.024592811, -0.005697226, 0.018726874, 0.006531046, 0.02987475, 0.02878462, 0.0010649855, -0.018402431, 0.004788785, 0.0129972035, 0.005259228, 0.014885464, -0.017286345, -0.011757829, -0.055129424, 0.013769379, 0.0021088822, 0.013003692, -0.00802673, -0.008104596, 0.0070209554, 0.019181095, -0.014664843, 0.00020713684, -0.006995, -0.03807668, -0.01783141, -0.019064294, -0.014599954, 0.011108942, -0.009168771, 0.009253127, -0.016663413, -0.022140019, -0.005612871, 0.023554591, -0.017870342, 0.001389429, -0.014002978, 0.0021169933, 0.0040295874, 0.026682226, 0.013483868, 0.008162997, -0.024008812, -0.0041885646, 0.012335339, -0.0036078107, 0.01358769, 0.020426957, -0.0027772356, -0.010245923, 0.011829207, 0.029329685, 0.003945232, 0.040101208, -0.02396988, 0.0054668714, 0.014418266, 0.010025302, -0.038699612, 0.014898442, -0.024748543, 0.0015751728, -0.012841471, -0.018649008, -0.008279796, 0.003078968, 0.002996235, 0.02012847, -0.003825188, -0.013393024, 0.0132308025, -0.015015242, 0.011082987, -0.007351888, 0.024891298, 0.0038154547, 0.020141447, -0.018882606, -0.0063104243, -0.022724018, 0.009720325, 0.018947495, -0.004334564, -0.024748543, -0.018220741, 0.00018300637, 0.022892727, 0.009305038, -0.0014178178, -0.012588404, -0.015741995, 0.051910948, -0.00484394, 0.015858794, 0.032600075, -0.0049964287, 0.013444935, 0.010888321, -0.01318538, 0.012367783, 0.018389452, 0.033638295, 0.0036954104, -0.014262533, 0.017130611, -0.02482641, 0.007007978, -0.0006075203, -0.01536564, -0.022711039, 0.009298548, 0.009272593, 0.028862486, -0.01583284, -0.019765092, 0.011329564, -0.025488274, 0.0128544485, 0.012517027, 0.0041755866, 0.035818554, -0.017390167, -0.01690999, 0.019726159, 0.016325993, 0.0056453156, 0.017312301, 0.013393024, 0.015508396, -0.00038000435, 0.00590487, -0.01289987, -0.009655436, -0.006479135, -0.030341947, -0.007209133, -0.016676392, -0.010589833, -0.006300691, -0.026708182, -0.001076341, -0.0058270036, 0.0026361027, 0.054195028, 0.0014405288, 0.022568284, -0.024073701, -0.025682941, 0.010790988, 0.024307301, 0.0018541941, -0.011206276, -0.021010956, -0.009019527, -0.0029313462, -0.0016538503, -0.009447793, 0.01639088, -0.028862486, -0.002331126, -0.022736995, 0.02224384, 0.04069818, -0.010784499, 0.014067867, -0.005372783, -0.0035850997, 0.0063850465, -0.016845101, -0.019103229, 0.050509352, -0.0057815816, -0.011232231, -0.01835052, 0.03091297, -0.05481796, 0.0100188125, -0.011031076, -0.0206346, -0.005551227, 0.002556614, 0.012750627, -0.034261223, 0.0035656332, 0.028628888, -0.006102781, -0.0002944324, -0.024566855, 0.0011963851, -0.0006391535, 0.049341355, 0.006044381, -0.0072675324, 0.008039708, -0.010622278, 0.0056810044, -0.011089476, -0.048329093, 0.004506519, -0.000105951054, -0.00060022034, 0.003400167, 0.0174291, -0.004684963, 0.03773926, 0.008480951, 0.024761522, -0.033612337, -0.005888648, 0.008837839, -0.0018639275, 0.0004319153, 0.016585547, 0.034391, 0.04230742, 0.010401656, 0.014638887, 0.007137755, -0.008078641, -0.018986428, 0.007903442, 0.010985654, 0.008351173, -0.0026928803, -0.01278307, 0.05497369, 0.0064207353, 0.022801884, -0.001502173, 0.018272653, -0.004334564, 0.02120562, 0.009097394, 0.012692226, -0.0012742515, -0.015248841, -0.023995835, 0.02546232, -0.02155602, 0.004049054, -0.029199908, -0.00745571, -0.02150411, 0.006151447, 0.0013253513, -0.009330993, 0.0025436364, -0.0050094062, -0.0016806169, -0.012283428, -0.025488274, 0.007585487, 0.009947435, 0.009084416, -0.0028307687, -0.020401003, -0.017117634, -0.00039663207, -0.024527922, 0.023061438, -0.005022384, -0.04752447, -0.027253246, 0.0038381657, 0.0488482, 0.021400288, 0.004879629, 0.007812598, -0.008059175, -0.0056388266, -0.000500454, -0.00928557, -0.011641029, -0.029719017, -0.02556614, -0.012964759, -0.013393024, 0.003818699, 0.0066316235, 0.003646744, -0.0043150974, -0.038543876, 0.013003692, 0.010382189, -0.0041755866, 0.007702287, 0.026007384, -0.0106093, -0.0047401185, -0.006852245, -0.029381596, -0.011920051, -0.012822004, -0.027772356, 0.021257533, -0.0072221104, 0.011829207, -0.01583284, 0.019985715, -0.021984287, -0.0036402552, -0.014132755, -0.008708062, -0.021581976, 0.0023197704, -0.0023359926, 0.022049174, 0.022749972, 0.00012998014, 0.0049120733, 0.010803966, -0.021322422, 0.039841652, -0.017961187, -0.015586262, 0.005453894, 0.00037209605, 0.0011931406, -0.024800455, -0.011264675, 0.004493541, 0.01794821, -0.01261436, 0.012685738, -0.010343256, -0.009895524, 0.007286999, 0.0130491145, 0.00091087486, 0.0068717115, -0.03314514, -0.015664129, -0.005148917, -0.013678534, -0.019233005, -0.028161688, -0.014548043, -0.015145019, 0.011679963, 0.009168771, 6.777826e-05, -0.0004935595, -0.014885464, -0.027486846, -0.005165139, -0.0068846894, -0.010570367, -0.023801168, 0.030757235, -0.0033077006, 0.0132308025, -0.0047693183, 0.01944065, 0.008876772, -0.0048861178, -0.018674962, -0.003077346, -0.017558878, -0.0036954104, -0.012374272, 0.014716754, 0.01491142, 0.0130750695, -0.0022175708, -0.014223599, 8.658584e-05, 0.012465116, 0.0031341233, -0.036259796, -0.04565568, -0.006232558, 0.039140854, 0.00790993, 0.0024819921, -0.036519352, -0.005752382, 0.024320278, -0.044513635, 0.043605193, -0.008182463, 0.036052153, -0.007501132, -0.0013399513, 0.0014575621, 0.008227885, 5.8197038e-05, 0.005716693, -0.027486846, -0.006664068, 0.023723302, 0.013665557, 0.031717587, 0.03314514, 0.0071766884, 0.0035558997, 0.016416837, -0.012530005, -0.009571081, 0.001278307, -0.019207051, -0.0040685204, -0.03135421, 0.023424815, -0.006404513, -0.035870463, 0.012867426, 0.025553163, 0.019453628, -0.018090965, 0.0040750094, 0.030004527, -0.0071247774, 0.033638295, 0.026253961, 0.01915514, 0.01714359, 0.009635969, -0.02425539, -0.010745566, 0.0011347409, -0.013457913, 0.010012324, 0.023035482, -0.0025452585, -0.032132875, 0.0131529365, -0.01989487, -0.022672106, -0.015145019, 0.0071117994, -0.00023481592, 0.015625196, -0.0176627, -0.023697346, 0.0072740214, 0.02276295, -0.012036851, 0.016948923, 0.007883975, -0.007001489, 0.000844364, -0.0005949481, -0.0039030542, 0.01829861, -0.0010941854, 0.009220682, -0.012633827, 0.0008005641, -0.017273368, -0.02712347, 0.01783141, 0.017961187, -0.023204193, 0.01989487, 0.02304846, 0.010875343, 0.017857365, 0.009480237, 0.009038993, 0.026993692, -0.0067289565, -0.01875283, -0.017870342, 0.013081558, 0.0098630795, -0.008130552, -0.008695084, -0.009415348, -0.0026409694, 0.0097333025, 0.020037625, -0.007896952, -0.019622337, -0.009811169, 0.012400228, -0.01909025, -0.004603852, 0.011595608, 0.028395288, -0.012134184, -0.016585547, -0.0027253246, -0.033794027, 0.015754972, 0.013029648, 0.0052430057, -0.01032379, 0.022464462, -0.016287059, -0.0056388266, 0.033404693, 0.008292774, -0.030861057, 0.027954044, -0.018181808, -0.01829861, -0.002705858, -0.00774122, -0.009233659, -0.02764258, 0.012744137, -0.0017179279, -0.0007956975, -0.004941273, 0.011141387, -0.0006217147, 0.014885464, -0.0020066826, -0.008941661, 0.004055543, -0.014119778, -0.027279202, -0.00016506058, -0.009369926, 0.014067867, -0.0071831774, -0.0070793554, -0.01749399, -0.02534552, -0.014093822, -0.00415612, -0.010654721, -0.0071182884, 0.011790274, -0.0282136, 0.0047174073, -0.03166568, -0.0013707734, -0.004581141, -0.022555307, 0.017325278, 0.010966187, 0.035818554, 0.02138731, -0.009136327, -0.016948923, -0.005109984, -0.001360229, -0.02557912, 0.0013772623, 0.011465831, 0.041762356, 0.015404574, -0.0049347845, -0.018739851, -0.0053695384, -0.02878462, 0.010447078, -0.005940559, 0.006806823, 0.027876178, 0.025527207, 0.022464462, 0.031016791, -0.01123872, -0.0063785575, -0.014586976, 0.007533576, -0.03807668, -0.028473154, 0.025371475, -0.007488154, -0.0076309093, -0.019635316, 0.0099539235, -0.01273116, -0.0022159484, 0.02660436, 0.0010106412, -0.0050483397, -0.009084416, -0.01565115, 0.008909216, 0.01089481, 0.01209525, -0.02873271, -0.01800012, 0.03337874, -0.025150854, -0.013393024, 0.019687226, -0.0013448179, -0.013211336, 0.011628052, -0.012348317, 0.0007206699, -0.004019854, -0.0068133115, 0.028135734, -0.012886892, 0.0050872727, 0.04036076, -0.0004939651, -0.009395882, 0.011751341, 0.0059600254, 0.0053825164, 0.009038993, 0.0051294505, -0.01588475, 0.007981308, -0.020894157, -0.006083314, 0.0014964952, -0.028317422, -0.014431243, 0.031432077, -0.011822718, 0.012796048, -0.014522087, -0.006806823, -0.002331126, 0.01112192, -0.0038446544, -0.0021948598, -0.021257533, 0.028343378, 0.003951721, -0.013561735, 0.0061319806, 0.018441364, -2.3192635e-05, 0.011550185, 0.0060735806, -0.010460055, 0.012335339, 0.21657246, 0.012919337, 0.00521705, 0.025397431, -0.00018260081, 0.0075789983, 0.014132755, 0.014976308, -0.04477319, 0.009246637, -0.031042745, 0.005155406, -0.0047563403, -0.012276939, 0.023359926, -0.0002652325, -0.043527327, -0.029667106, -0.02373628, -0.010680677, 0.013574713, -0.015716039, -0.004610341, -0.010589833, 0.002405748, -0.0012612737, -0.01169943, -0.00019932992, 0.015858794, 0.03192523, -0.0033352782, 0.00084841956, 0.009616503, 0.01278307, -0.0098371245, 0.0017730832, 0.024566855, -0.015170974, -0.022062153, 0.018168831, 0.0054311827, -0.023749258, 0.005898381, 0.0103173, 0.00599247, -0.0038511434, -0.0073194434, 0.03893321, 0.016066438, 0.005239761, -0.024398144, -0.01318538, -0.008519884, 0.012977737, 0.013198358, -0.018259676, -0.001584095, -0.002413859, 0.00085247506, -0.011777296, -0.0034975, 0.021646865, -0.013574713, 0.031847365, -0.043189906, -0.010648233, -0.012555961, 0.031458035, 0.007890464, -0.0039290097, -0.039737828, -0.007235088, -0.008513395, -0.008656151, -0.017338255, -0.009811169, 0.012828493, 0.0074297544, 0.014548043, 0.010486011, -0.0017292834, -0.0030757235, -0.002496592, 0.015625196, 0.006151447, -0.020894157, 0.012510538, -0.009051971, -0.0171955, -0.010200501, -0.0019904603, 0.0034780335, -0.007546554, -0.039711874, -0.022542328, -0.00957757, 0.022516374, 0.025021076, -0.02356757, -0.01169943, -0.0015078507, 0.05131397, 0.006553757, 0.010868855, -0.023775214, 0.025111921, -0.0013837512, 0.025968451, 0.0006594312, -0.01358769, 0.014197644, -0.023126327, -0.0013659068, -0.008033219, 0.007299977, 0.00028814632, -0.012530005, -0.03760948, -0.010077212, -0.018765807, 0.007306466, -0.014184666, -0.014470176, 0.015508396, -0.002473881, -0.02259424, -0.0077087753, 0.0050029173, -0.022542328, -0.056271467, 0.015638173, -0.027149426, -0.012601382, -0.0057718484, -0.009071438, 0.035922375, 0.009330993, 0.0064888685, -0.0031487234, -0.008591262, 0.0022759705, 0.0046817185, 0.005359805, 0.026786048, 0.0048179845, -0.017922254, -0.001330218, 0.01221205, -0.0036564772, -0.030212171, -0.0024268366, 0.036649127, 0.008766461, -0.0017682166, 0.030523637, -0.010466545, 0.0008605862, -0.008266818, -0.0034845222, 0.021049889, -0.031042745, 0.028836532, 0.0348582, -0.0046590073, -0.0056161154, -0.026708182, -0.1617545, -0.003795988, -0.007092333, -0.03285963, 0.025942495, 0.012523516, 0.010440589, -0.016948923, -0.0075725093, 0.0026036585, 0.024813432, 0.012049829, -0.040412672, -0.021114778, 0.0012515405, 0.0033612337, 0.0052365167, 0.009026016, 0.0526377, 0.0033044561, 0.041009646, -0.029407552, 0.014690798, -0.01565115, 0.012880404, -0.010356233, -0.00097170804, 0.032080963, 0.008435529, -0.026500538, 0.0132308025, -0.0035883442, 0.028966308, -0.019635316, -0.006949578, 0.003100057, 0.019492561, -0.010168057, -0.01427551, 0.027071558, 0.021114778, 0.009064949, 0.008240863, 0.0097852135, 0.02236064, 0.0040230984, 0.010336767, -0.0013221069, 0.0244241, -0.010174545, 0.024450056, -0.04433195, -0.006664068, -0.0013610402, 0.003422878, 0.010181034, 0.007501132, 0.004311853, -0.024878321, -0.028005956, 0.00768282, -0.005784826, -0.008961127, 0.005655049, -0.0019855937, -0.012471605, -0.0070793554, -0.0010949966, -0.031120613, 0.015547329, 0.0025809475, 0.035507087, -0.030809147, 0.016351948, -0.006741934, -0.014898442, -0.026760092, 0.010083701, 0.011718896, 0.002032638, -0.0024949699, 0.002227304, -0.011829207, -0.010362723, -0.018934518, -0.0024317035, -0.02855102, 0.011394452, -0.02167282, 0.01685808, 0.023204193, -0.017558878, -0.031691633, -0.0074167764, 0.0013212959, 0.002652325, 0.038569834, -0.009610014, -0.0021283487, -0.022659129, 0.007306466, 0.005418205, -0.028888442, 0.0038641212, 0.022334686, 0.006891178, 0.008734017, 0.004045809, 0.015897727, 0.0040814984, -0.027954044, 0.03978974, 0.033586383, 0.019544471, -0.0007437865, 0.03158781, 0.0061092693, -0.0014591842, 0.0018541941, -0.016832124, 0.052248366, -0.006359091, -0.015573284, 0.005350072, 0.03514371, -0.019064294, -0.10210883, -0.0386477, 0.004600608, 0.018415408, -0.014950353, 0.0052300277, -0.006839267, 0.023606503, -0.039296586, 0.006988511, -0.03779117, -0.03039386, -0.0024300811, -0.0005515538, -0.018090965, 0.010388678, 0.007598465, -0.0032071231, 0.010829921, 0.020037625, 0.0051521612, 0.0010211857, -0.01674128, -0.01100512, -0.022230864, -8.922194e-05, -0.017013812, 0.0098371245, 0.012607872, 0.032548163, 0.017636744, -0.004454608, 0.0014608065, 0.004454608, 0.003377456, -0.026396716, -0.019544471, -0.012938803, 0.02574783, -0.014379332, -0.0031892788, -0.012484582, 0.027019648, -0.007585487, -0.0012247739, -0.008454995, -0.021231577, 0.00046070965, 0.028914398, -0.024268368, -0.023256104, -0.0064012688, -0.014262533, -0.022321707, 0.004110698, 0.015093108, -0.003503989, 0.004564919, -0.008266818, 0.009084416, -0.011368497, -0.03859579, -0.006054114, 0.03773926, 0.013133469, 0.017818432, -0.022412552, -0.009168771, 0.017013812, 0.00035972663, -0.027746402, 0.0042923866, -0.028576976, 0.015313729, -0.008993572, 0.0061774026, -0.008922194, -0.020401003, 0.000725131, 0.009064949, -0.012250983, -0.0100317905, -0.015988572, -0.025838673, 0.021685798, 0.017961187, 0.010155079, -0.00026361027, 0.02178962, -0.049549, -0.008480951, 0.034183357, 0.011887607, -0.014366355, 0.026682226, 0.01583284, -0.025384452, 0.022801884, -0.0045908745, 0.013003692, -0.018207764, -0.03618193, -0.066653654, -0.0067678895, 0.02740898, 0.005343583, 0.0024025035, -0.014833553, -0.011089476, -0.011478808, -0.0040912316, 0.013977022, -0.036078107, -0.008857305, -0.005603138, -0.014015956, -0.0132567575, -0.010395167, 0.020621624, -0.008331707, 0.00036783773, -0.01639088, -0.016767235, -0.01989487, -0.010583344, -0.011537208, -0.010680677, 0.00087113056, -0.009661925, 0.012160139, -0.016948923, -0.02311335, 0.0066413567, -0.018467318, 0.0012937181, 0.037998814, 0.004490297, -0.017558878, 0.013678534, 0.0065050903, 0.017312301, 0.031432077, -0.020608645, -0.035351355, 0.017442077, -0.02396988, 0.007793131, 0.006644601, 0.0097462805, -0.0012296406, 0.012458627, 0.01583284, 0.023087393, 0.021322422, -0.016793191, -0.047784027, 0.007870997, -0.017039768, 0.018363498, 0.009038993, -0.0056777596, -0.0049769618, 0.04184022, 0.00791642, 0.01858412, -0.01158263, 0.013393024, -0.02310037, -0.02660436, -0.0046590073, 0.018843673, -0.029744972, -0.014444221, 0.0043313196, 0.0038576322, 0.0180131, -0.0035591442, -0.0050645615, 0.00019213134, 0.01032379, -0.01450911, 0.0027464135, 0.02522872, -0.02522872, -0.029459462, 0.026915826, 0.027720446, 0.024735566, 0.0023116593, 0.0033515005, 0.008175974, -0.0012474849, -0.005249494, -0.012860937, -0.01118032, 0.023502681, -0.012134184, -0.0025241699, -0.0013845622, -0.007650376, 0.035559, 0.02688987, -0.0021153712, 0.009013038, 0.0103173, -0.01169294, -0.020102514, 0.0132308025, -0.02746089, -0.040179074, 0.0025809475, -0.010440589, -0.012581916, -0.007299977, 0.014989286, 0.009648947, -0.008104596, 0.010998632, 0.0041269204, -0.016520659, -0.020478869, -0.00016465504, 0.005940559, 0.030341947, 0.024865344, 0.0068846894, 0.028862486, 0.034910113, 0.0024154813, -0.016248126, 0.00515865, -0.00023623536, 0.0025468809, 0.0030887013, -0.026344806, -0.014625909, -0.024307301, -0.024553878, -0.014937375, 0.01399, 0.0049282955, 0.09977284, 0.0132178245, -0.011362009, -0.011563163, -0.008500418, -0.014846531, 0.008383618, 0.016715325, -0.009947435, -0.033638295, 0.025682941, -0.009330993, -0.018077986, -0.025968451, -0.002973524, 0.004298875, -0.022801884, -0.00318279, 0.004759585, 0.009019527, 0.018843673, -0.0028064356, -0.0045681633, -0.013133469, -0.016261104, 0.008227885, 0.021478154, 0.020855222, 0.00670949, -0.04490297, 0.026708182, -0.0018039054, -0.027876178, -0.019518515, -0.010427611, 0.022801884, -0.006806823, -0.020660557, 0.012309384, 0.0044351416, -0.0011907073, 0.026357783, -0.022866772, -0.020076558, -0.0046654963, 0.0061254916, -0.01640386, 0.0028291466, 0.0033742115]" 5965517,Deleted Article by The Guardian,http://pastebin.com/NTJvUZdJ,158,1372594801,17,harrisonpowers,"[0.00805729, -0.019619467, 0.018802539, -0.05196721, -0.012346166, 0.028987795, -0.02561467, 0.0029317203, -0.00097504404, -0.039845042, 0.021569556, 0.024283867, -0.021016153, -0.011226183, 0.00038211184, 0.017050095, 0.033230554, -0.0048389854, 0.008557988, -0.014599308, -0.019461352, 0.024889976, -0.011568766, 0.021082032, 0.009223389, -0.018459955, 0.0059194397, -0.008590928, -0.018341368, -0.012912746, 0.0048126327, -0.0088215135, -0.033678547, 0.0097767925, -0.007233773, -0.005214509, -0.0068253083, -0.0071283625, 0.011450179, -0.001755738, 0.01840725, -0.0018216195, -0.006551901, -0.014480721, -0.019527234, 0.034390066, 0.0024046695, -0.010178669, 0.003315479, 0.027749225, 0.014493898, 0.023045298, -0.029672962, -0.028618861, -0.0295412, -0.016299047, -0.028803328, 0.0030338364, -0.0044008745, -0.011647823, 0.021332383, 0.012596515, -0.036761794, 0.0038244126, -0.0006299904, -0.014177667, -0.0073918877, -0.000274437, -0.019487705, 0.0067363684, 0.035734046, 0.019882992, 0.022847654, -0.0065057836, 0.019487705, 0.005214509, 0.0074248286, 0.0024244338, -0.047434576, -0.0035213584, 0.010508076, -0.026537009, -0.021029329, 0.018881597, 0.025153501, 0.011206418, -0.001239393, 0.027406644, 0.015324003, 0.0013884496, 0.0034126542, 0.008669986, -0.011496296, 0.002235025, -0.04374522, 0.005000395, -0.014968243, 0.023664583, -0.010975834, -0.011924525, 0.018459955, 0.00068928365, -0.018591719, -0.014955067, -0.026207604, 0.011338181, -0.006871425, -0.021793552, 0.0016000934, -0.00282631, 0.0047467514, 0.006805544, 0.020713098, -0.032439977, 0.017379502, -0.0051288633, 0.010125964, 0.00010551311, -0.020752627, -0.016905155, 0.018631248, 0.017300444, 0.001798561, -0.019553585, 0.033863015, 0.012899569, 0.020831684, -0.012715101, 0.013821908, 0.018064667, 0.009994201, -0.022953063, 0.019026535, 0.021754023, -0.008432813, 0.0022449072, 0.0048818085, 0.008571164, -0.0073260064, -0.037262496, 0.025641022, 0.020568158, -0.007398476, -0.018130548, 0.0017787965, 0.035075232, -0.00476981, 0.00014133609, -0.021042505, -0.009440798, -0.0013546853, -0.0062982575, 0.011410651, -0.017550793, 0.012194639, -0.0023239648, -0.0057020313, 0.030120956, -0.011970642, -0.0014584485, -0.0290405, 0.0020719685, 0.012787571, -0.020871213, 0.00847893, 0.03141223, -0.023308823, -0.0056690904, 0.007648825, -0.0046479297, -0.017221386, 0.037789546, -0.024850447, 0.0086370455, 0.010527841, 0.014085433, -0.012181463, 0.00025117266, -0.024297044, -0.019197827, 0.012273696, 0.014889186, 0.03006825, 0.012958862, -0.027722875, 0.017366325, 0.011522649, 0.011120773, 0.012313225, -0.0067100157, 0.009954672, -0.016760217, -0.002473845, -0.038659178, -0.6480617, -0.019369118, 0.040424798, 0.010751837, 0.0055241515, 0.01452025, 0.010797954, -0.0054648584, -0.018670775, 0.03328326, -0.024415629, 0.011990407, -0.0104026655, -0.03080612, -0.035549577, 0.011759821, -0.01462566, -0.01155559, 0.046828467, -0.02243919, -0.033151496, 0.022794949, 0.017893376, 0.0012056287, 0.010962658, 0.010738661, -0.0008366932, -0.020093814, -0.017089624, 0.0063806092, -0.017379502, 0.008044113, 0.0041702897, -0.0019813818, 0.05057053, -0.0049411017, 0.02395446, 0.017998787, 0.021780375, -0.007787176, -0.0068846014, -0.006611194, 0.03958152, 0.02042322, -0.007945292, 0.0037420609, 0.027301233, -0.006871425, 0.003359949, -0.0069966, 0.025891373, -0.012115581, -0.0104949, -0.011278888, 0.011680764, 0.0037222966, -0.006667193, -0.029409437, 0.022597304, -0.0005414624, -0.016509868, 0.028065456, -0.017010566, -0.0114370035, -0.009789969, -0.0078991745, -0.0048126327, 0.005751442, -0.0003847883, 0.008037525, -0.003165599, 0.04134714, 0.009579149, -0.009276095, -0.008604105, 0.013874613, 0.042374887, -0.0044008745, -0.019988403, 0.0069373064, -0.013597911, -0.016246341, -0.022992592, -0.0048719263, 0.04638047, -0.009052098, -0.0068780133, -0.00084986945, 0.019052887, -0.0060281437, 0.0012970392, 0.012003583, 0.0063839033, 0.009052098, -0.0044996967, 0.037473314, -0.0002657901, -0.035286054, -0.0044931085, -0.007115186, 0.002195496, 0.002042322, 0.03204469, -0.02922497, 0.01766938, -0.0012970392, -0.016404457, 0.015982816, 0.026774183, -0.031148704, 0.018960653, 0.030358128, -0.0097175, 0.010284079, -0.020251928, -0.02168814, 0.023269294, -0.0057646185, -0.0070295404, -0.0064135497, 0.0077081183, -0.012425223, 0.008294462, -0.0039133523, 0.010356549, 0.02996284, 0.015284474, -0.03346773, -0.0023684346, -0.0004768163, -0.009269507, -0.021648614, 0.009757029, -0.01363744, 0.02384905, 0.0005612268, 0.0060017915, -0.007833293, -0.0046874583, -0.01409861, -0.036972616, -0.006014968, -0.0079387035, -0.0046643997, -0.011213006, 0.003656415, -0.0036827677, -0.0036168864, -0.013584735, 0.0049839243, 0.02286083, 0.024494687, 0.0061566127, -0.010685955, 0.011226183, 0.0041077025, 0.011720293, -0.028039103, -0.038553767, -0.013261916, 0.007813528, 0.029093206, -0.03183387, -0.009104803, 0.030410834, 0.010633251, 0.013914142, -0.013808732, 0.013479325, -0.013202623, 0.018222783, 0.013347562, -0.00595238, 0.009467151, -0.001288804, 0.027749225, -0.0015655056, -0.015482118, -0.004084644, 0.010013966, 0.019830288, -0.00515851, -0.028803328, -0.014362135, 0.03433736, -0.010198434, 0.01345956, -0.005510975, -0.0012039817, -0.0005719325, -0.004766516, -0.023585524, 0.005550504, -0.0068780133, -0.012108993, -0.007200832, 0.030384481, -0.0062093176, 0.017656203, 0.040398445, 0.0049345135, 0.010593722, 0.027854636, 0.0022119666, 0.013861437, -0.018618071, 0.009144332, -0.026207604, 0.035944868, -0.008419637, 0.027643817, -0.033151496, -0.0053166253, -0.0132158, -0.0086370455, 0.029514847, -0.002383258, 0.0025018444, -0.012062876, 0.0036630032, 0.0029498376, -0.0043679336, 0.013288269, -0.0015498588, -0.024402453, 0.0018562071, 0.0057283835, 0.005504387, 0.011153713, -0.034917116, -0.004654518, -0.008413048, -0.0015440942, 0.0057053254, 0.0041307607, 0.024916328, -0.023045298, -0.0026978415, 0.0044041686, -0.016931508, -0.022992592, 0.023730464, 0.028539803, -0.01137771, 0.020120166, -0.00634108, 0.035707694, 0.0064366083, -0.032808915, 0.025324792, -0.025482908, 0.041136317, 0.015047302, -0.017405855, -3.757296e-05, -0.028645212, 0.03887, 0.00632461, 0.017379502, 0.012043112, 0.015126359, -0.01685245, 0.005955674, -0.014599308, 0.008485518, 0.0021016153, 0.008432813, 0.004506285, -0.0016709159, 0.0002408787, 0.0018051491, -0.0025693728, -0.002819722, -0.011338181, 0.03763143, -0.0014362135, 0.0057020313, 0.0009453974, 0.024125751, 0.0130181555, -0.025825491, -0.020739451, 0.0074116522, 0.031069646, -0.01876301, -0.014045904, 0.019237356, -0.016707512, -0.017063271, -0.01084407, 0.0001878648, 0.021042505, -0.03805307, -0.010277491, -0.0007403417, -0.008327403, 0.015824702, -0.010455371, 0.017959258, 0.007115186, 0.008696339, -0.0079716435, -0.0342056, 0.0043053464, 0.016826097, -0.011015362, -0.013400268, -0.004035233, 0.022096606, -0.02767017, -0.0069241305, 0.0067791915, -0.028355334, 0.0077147065, -0.0059655565, 0.0046611056, -0.03444277, -0.0071217744, 0.03027907, -0.002627019, -0.010613486, -0.038132127, -0.020436397, 0.00023737876, 0.10314385, 0.018894773, -0.024916328, 0.001384332, -0.009289271, -0.022267899, -0.008643634, -0.041136317, 0.028882386, 0.008505283, -0.007233773, 0.028039103, -0.009210213, 0.01070572, 0.030621653, -0.0020143224, -0.0069438946, -0.012892981, -0.015218593, -0.024692332, -0.0116939405, -0.017498087, 0.010633251, 0.041426197, 0.012524045, -0.016009169, 0.021912139, 0.02840804, 0.021609085, -0.005840382, 0.008926923, 0.007141539, 0.005629562, 0.007253537, -0.029672962, 0.02328247, 0.0022498483, 0.01678657, -0.004229583, -0.0041999365, 0.00964503, -0.001317627, 0.00095610315, -0.029620256, -0.0066869576, -0.01929006, -0.003302303, 0.029646609, -0.008340579, -0.011186654, 0.007846469, -0.023519643, -0.007405064, -0.0024474922, 0.008986217, 0.004147231, 0.032387275, 0.010567369, -0.019316413, -0.0065453127, -0.023967637, -0.0056196796, 0.0006106378, -0.02218884, -0.017537616, -0.020370515, -0.0054714466, 0.004473344, -0.0071349507, 0.0065321364, 0.016826097, -0.030305423, -0.029093206, 0.01890795, 0.027222175, 0.0045556957, 0.02222837, 0.016667983, 0.0027999575, -0.001312686, -0.0025512555, -0.025496084, 0.00886763, -0.030200012, 0.016760217, -0.011911348, -0.004232877, -0.02120062, -0.0018199724, 0.00911798, -0.0069966, -0.00084204605, -6.819749e-05, 0.023572348, 0.014454369, 0.003351714, 0.005596621, 0.015640233, 0.011239359, 0.0059161456, 0.0073589473, 0.0001904383, -0.028539803, -0.01452025, 0.027459348, 0.022689538, 0.007161303, -0.024889976, -0.011331593, -0.0052606263, 0.014138139, -0.019658996, -0.00022934946, -0.012076052, 0.013136742, 0.03267715, -0.0010804542, 0.01102195, 0.01607505, -0.01918465, 0.0027439585, -0.029145911, 0.005398977, 0.021714494, -0.02120062, 0.021055682, -0.023387881, -0.015363532, -0.015218593, 8.8064844e-05, -0.014243549, 0.019764407, -0.013980024, 0.004819221, -0.010541016, -0.006957071, 0.0035279465, 0.023335176, -0.010119376, -0.0034225364, 0.00062834343, 0.00901257, -0.013874613, -0.0010763366, -0.006614488, -0.025983606, -0.00823517, -0.01179935, -0.027090413, 0.028355334, -0.011516061, -0.009579149, -0.0038540591, 0.020436397, -0.0013489207, -0.046301417, -0.0065387245, -0.0037881779, 0.022992592, 0.033415023, 0.0074511813, -0.007905763, -0.0077081183, 0.0383693, 0.005273802, 0.0034357125, 0.00027320173, 0.020976624, -0.00016810039, -0.0046380474, -0.004374522, 0.011456767, 0.0007514592, 0.023519643, 0.008030937, 0.0026583127, -0.003906764, -0.017432205, -0.022333778, -0.02996284, 0.012102405, -0.011516061, -0.017195033, 0.029936487, -0.042190418, -0.009038921, 0.005497799, 0.004954278, 0.0056657963, -0.022149311, -0.008360344, -0.019698525, 0.02462645, 0.00989538, 0.0028839563, -0.021082032, -0.013914142, -0.009302448, 0.0090059815, 0.015468942, -2.2839727e-07, -0.010165493, 0.00044346385, -0.029119559, -0.0055307397, 0.023440586, -0.022307426, -0.004822515, -0.016615277, -0.018710304, -0.011390886, -0.008604105, -0.034073837, -0.012622868, -0.010929717, -0.018249135, 0.002961367, 0.003557593, -0.0108111305, -0.031675756, -0.0023239648, 0.02342741, 0.042269476, 0.012853452, 0.03180752, 0.022386484, 0.0024656097, -0.020238752, -0.0070427167, 4.6271358e-05, -0.007299654, 0.030516243, -0.0058733225, -0.028592508, -0.007352359, -0.0052276854, 0.014269901, -0.0012953922, -0.029330378, 0.04717105, 0.016760217, 0.0065057836, -0.025127148, -0.033046085, -0.023216588, 0.009579149, 0.0016857391, -0.010969246, -0.0024096104, -0.017260915, -0.012642632, 0.03797401, -0.00720742, 0.021635437, -0.008142935, -0.010554193, 0.013716497, -0.029330378, 0.013676969, -0.009625265, -0.01678657, 0.0030601888, -0.012952275, -0.017260915, -0.0010071612, 0.018749833, -0.02780193, -0.005751442, -0.012609691, 0.017801141, -0.004054997, -0.0068384847, -0.00830105, 0.0003271421, 0.02508762, -0.0036761796, -0.0042559355, 0.0024969033, 0.00096927944, -0.0113250045, 0.013380503, 0.0051420396, -0.016338576, -0.019435, -0.010903364, -0.00904551, -0.018249135, -0.004565578, -0.0032545389, 0.026405247, -0.019685348, 0.00399241, -0.0018380898, 0.011674176, -0.0027933693, -0.0024524333, -0.0060610846, 0.023177061, -0.02166179, 0.01925053, 0.0148233045, 0.026734654, -0.023651406, 0.006327904, -0.00012023347, 0.0021016153, 0.021437792, -0.028882386, -0.016061874, -0.0073194182, 0.014493898, -0.004466756, 0.023796344, -0.015284474, 0.005211215, 0.0015259768, -0.0020489101, -0.012161698, 0.020752627, 0.011812527, -0.0077674114, -0.0021839668, -0.011476532, 0.005254038, 0.009882203, -0.0020307926, 0.004038527, 0.0050530997, 0.013835085, -0.028592508, 0.007148127, 0.024824094, -0.019579938, 0.0050926288, 0.0081627, -0.0011389239, -0.0070295404, 0.006133554, 0.029172264, 0.0060973195, 0.016615277, 0.011661, 0.028039103, 0.018420426, -0.013821908, -0.0209898, -0.012807335, -0.0030338364, -0.017063271, 0.0018067962, -0.008564576, 0.029409437, -0.0008902218, -0.015218593, -0.026761007, -0.0032759504, -0.007286478, -0.0067100157, -0.019553585, 0.020357339, 0.04790892, 0.03981869, -0.003936411, 0.01021161, 0.002918544, 0.013354151, -0.013782379, -0.016391281, 0.020792155, -0.0061170836, 0.012372518, 0.010027142, -0.057606656, 0.01353203, 0.0053429776, -0.018894773, -0.021213796, 0.007438005, -0.013492501, -0.025917724, -0.003840883, 0.014032728, -0.00770153, -0.002963014, 0.022017548, -0.039159875, 0.02523256, -0.004295464, 0.017432205, -0.03971328, -0.014138139, 0.01685245, -0.019461352, -0.009981025, -7.3344477e-06, 0.008926923, 0.002724194, -0.021925315, 0.02727488, 0.0124384, -0.01268216, 0.0264316, 0.0030750122, -0.00017036506, -0.037157085, 0.0038244126, -0.0037684136, 0.0031441876, 0.025127148, -0.0209898, 0.02384905, -0.01233299, -0.0007613414, -0.017287267, 0.015468942, -0.02208343, -0.0037190025, -0.019382294, 0.009743853, 0.015350356, -0.04055656, 0.027432995, -0.01130524, -0.009829498, 0.008735867, -0.014704718, 0.0016042109, -0.02830263, -0.024441982, 0.010573957, -0.010099611, -0.018578542, 0.016351752, -0.0074116522, -0.012774395, -0.0046611056, 0.21271771, -0.0147706, 0.016417634, 0.04010857, -0.026194427, 0.00918386, 0.013070861, 0.030410834, -0.0067429566, -0.0326508, -0.036419213, 0.008854454, -0.023401057, 0.003015719, 0.024086224, -0.022333778, -0.022531424, -0.02840804, 0.01529765, 0.020752627, -0.012662396, -0.006459667, -0.009862439, -0.0033731253, -0.0031293642, 0.01836772, -0.020818507, 0.016312223, 0.022689538, -0.0031293642, -0.015943287, -0.005211215, 0.006630958, 0.02586502, -0.02239966, 0.012214403, -0.003933117, 0.00731283, 0.012530633, 0.00720742, 0.013505678, -0.007530239, -0.0066573108, -0.015692938, 0.0132421525, 0.026418423, 0.020620864, -0.006897778, -0.014217196, 0.019263707, -0.02706406, -0.018525837, -0.010521253, 0.004414051, -0.0043415814, 0.01907924, 0.00078975275, 0.038211185, -0.01954041, 0.016338576, -0.0070954217, -0.0018232665, -0.0011397474, 0.029119559, -0.019211004, 0.044825673, 0.002132909, 0.011048303, 0.022636833, -0.023769993, -0.009915144, -0.0017672674, -0.014586132, 0.002580902, -0.029488495, -0.008439401, -0.0005118158, 0.024152104, 0.013558383, 0.025522437, 0.0008008702, -0.0022745538, -0.0018232665, 0.03433736, 0.00022523188, -0.014006376, 0.014111786, -0.0039034702, -0.0077674114, -0.018459955, -0.0039594695, -0.024455158, -0.012596515, -0.007536827, 0.0023519644, 0.013004979, 0.011581942, 0.01314333, -0.0042098183, -0.023756817, -0.013360739, 0.03080612, 0.03162305, 0.007694942, -0.027143117, -0.00918386, -0.004038527, 0.020778978, -0.0073853, -0.008472342, -0.0059721447, -0.00023758464, 0.013729674, -0.01784067, 0.016048698, 0.03710438, 0.0016503279, -0.035127938, 0.0042625237, -0.016233165, 0.00021030563, -0.04145255, 0.0077739996, 0.020186046, -0.020133343, -0.00397594, -0.0012731572, -0.009309036, -0.0055735623, -0.01275463, 0.004058291, -0.016891979, 0.022109782, -0.005804147, -0.024916328, 0.0037618254, 0.009104803, 0.0048455736, 0.018064667, 0.04645953, 0.007833293, -0.013176271, 0.047935273, -0.003646533, 0.0012089228, 0.010718896, 0.0055570924, 0.0015333885, -0.012405459, -0.0084525775, 0.016615277, 0.015679762, 0.013966847, -0.017010566, 0.034917116, -0.005448388, -0.025812315, -0.013808732, -0.013914142, 0.01805149, -0.04179513, 0.0055570924, 0.037921306, -0.010158905, -0.006179671, 0.0077805878, -0.16654806, 0.024955858, 0.010448783, 0.008136347, 0.008788573, -0.010461959, 0.012201226, 0.011858644, 0.0017425618, -0.0077147065, 0.036445566, -0.002533138, -0.025390673, -0.017998787, -0.0035477108, 0.009783381, -0.039344344, 0.038738236, -0.00170468, 0.0029580728, 0.033942074, -0.02925132, 0.024995387, -0.013433208, 0.0125767505, 0.02275542, -0.0011282181, 0.00982291, -0.029409437, -0.012570162, -0.0026418422, 0.0003162305, 0.031254113, 0.012161698, 0.019593114, -0.0027488994, -0.002292671, 0.004427227, -0.023256117, 0.027828284, 0.031570345, 0.0018907948, 0.0019220886, -0.001045043, 0.014968243, 0.0032199512, 0.0056130914, -0.015165888, -0.014138139, 0.0015671527, -0.000618873, -0.005155216, 0.016575748, -0.0059721447, -0.01254381, 0.018275488, 0.009783381, -8.034437e-05, 0.023190236, -0.0077542355, -0.008597516, -0.01236593, 0.013380503, -0.01918465, -0.012425223, -0.029066853, -0.0057217954, 0.0118784085, -0.03246633, 0.011674176, -0.0038606473, -0.0030766593, -0.0128336875, -0.036630034, 0.033678547, 0.00048505148, -0.023453763, -0.01452025, -0.003946293, 0.00961209, -0.008281286, 0.008129759, -0.0063904915, 0.0048126327, -0.024903152, -0.012431812, 0.013196035, 0.028065456, -0.0021757318, 0.010751837, 0.012721689, -0.025206206, 0.016707512, -0.0025561966, 0.005155216, -0.013123565, 0.003649827, 0.01830184, -0.016523043, -0.011707117, 0.0073853, 0.0064761373, -0.02767017, 0.01685245, -0.016812922, 0.007642237, 0.008663398, 0.003162305, 0.010890188, -0.0015679762, -0.017076448, 0.027775578, 0.015995992, 0.011061479, -0.018275488, 0.008439401, 0.0017573851, -0.008663398, -0.004618283, -0.021385087, 0.048831258, -0.0015589176, 0.019698525, -0.019263707, -0.003157364, -0.00050646294, -0.11637282, -0.03381031, 0.0235987, 0.006812132, -0.0043580513, 0.008854454, 0.0064003738, 0.0019336178, -0.007892586, 0.030463537, -0.05383824, -0.03349408, 0.001703033, -0.007148127, 0.028987795, -0.009203625, -0.011245947, -0.030015545, -0.010890188, 0.032624446, -0.0103697255, -0.0010475136, 0.006456373, -0.021464145, -0.009467151, -0.015047302, -0.032439977, 0.008241758, 0.009763617, -0.00604132, -0.0058766166, -0.021226972, -0.011983818, -0.022663185, -0.027643817, -0.0043152287, -0.011048303, -0.0013579794, 0.009724088, -0.028776975, 0.0041142907, 0.011581942, -0.0058272057, -0.03691991, -0.0072140084, -0.012958862, -0.022847654, 0.021925315, 0.00067034276, 0.01674704, -0.010989009, -0.013584735, -7.787382e-05, 0.013420031, 0.005926028, 0.026009958, -0.0069241305, -0.0012780983, -0.04002951, -0.011924525, 0.018591719, -0.004084644, -0.0004599342, 0.0047236932, -0.002773605, 0.0086370455, -0.03143858, -0.009421034, 0.02067357, -0.008966452, -0.0018166783, 0.0022679656, -0.0101457285, 0.004437109, -0.015916934, 0.0069438946, -0.008735867, -0.009809733, 0.034917116, -0.006215906, -0.002141144, -0.003643239, 0.011819115, 0.00496416, 0.01607505, 0.004384404, 0.02183308, -0.0012657455, 0.003942999, -0.033125143, -0.0066013117, 0.028961442, 0.015798349, 0.0038013542, 0.010363137, 0.022267899, -0.01031702, -0.0025578435, -0.0027208999, 0.009427622, -0.01664163, -0.0058272057, -0.060716256, 0.017300444, -0.006617782, -0.013808732, 0.007741059, 0.014612485, -0.0013563323, -0.002045616, -0.01498142, 0.02307165, -0.0059589683, 0.010224787, -0.0057020313, -0.0011965701, -0.021912139, -0.022320602, 0.017432205, -0.006752839, 0.029119559, 0.015337179, 0.027011355, 0.009796557, 0.024455158, 0.008215405, 0.00901257, 0.018394073, -0.023203412, 0.019052887, 0.0015572705, 0.006370727, 0.01353203, -0.02536432, -0.01975123, -0.015468942, -0.008182464, -0.015745644, -0.0028839563, 0.022465542, 0.028750623, 0.039133523, -0.02780193, -0.031043295, 0.023387881, -0.0070427167, 0.004809339, 0.012036524, -0.011186654, 0.011964054, -0.026985003, 0.0059029693, 0.024073048, 0.0059392042, -0.037789546, -0.021226972, -0.011608294, -0.011127361, 0.027353939, 0.021424616, -0.018341368, -0.01836772, 0.030753417, 0.007049305, 0.026510658, 0.01720821, 0.009322211, 0.0038837057, -0.032281864, 0.008439401, 0.0052210973, -0.0321501, 0.012029936, 0.012563574, 0.000704107, 0.012385694, 0.016154109, 0.0085514, 0.0076027084, 0.0070954217, -0.023308823, 0.017695732, 0.0141249625, -0.00953962, -0.0036630032, 0.003063483, 0.02691912, -0.004832397, -0.009137744, 0.007820116, -0.008169288, 0.0027324292, 0.018077843, 0.020660393, 0.020225575, 0.0050728642, -0.018222783, 0.028487097, -0.001530918, 0.0023684346, -0.004657812, 0.017129151, 0.025746433, 0.0015646821, 0.014704718, -0.0112525355, -0.01197723, 0.0059721447, -0.02575961, -0.036893558, -0.019896168, 0.017115977, 0.0054417998, 0.01268216, 0.004091232, 0.011173477, -0.02996284, 0.026774183, 5.4403587e-05, -0.03296703, -0.025667375, -0.0031244233, 0.015244945, 0.013795556, 0.0050794524, -0.041742425, 0.027828284, 0.015363532, 0.024652803, -0.018170077, 0.009763617, -0.0064431964, -0.010797954, 0.006805544, 0.028697917, -0.0060676727, -0.03212375, 0.008577752, 0.0014436252, 0.008920335, -0.014164492, 0.05101852, 0.027854636, 0.0029251322, 0.005389095, 0.0130576845, 0.0045787543, -0.0066770753, 0.017498087, 0.0045095785, -0.021635437, -0.00904551, -0.0024606686, 0.0012566869, -0.025680551, 0.007233773, 0.00020093813, -0.0071547152, 0.012767807, -0.007339183, 0.01190476, 0.022650009, -0.008880806, -0.015100006, -0.021358736, 0.003850765, -0.014941891, 0.02380952, -0.02218884, -0.01070572, -0.016667983, -0.015205417, 0.0036860618, -0.022162488, -0.013690146, -0.0074182404, -0.002282789, -0.016022345, -0.038422007, -0.0038112362, 0.017063271, -0.012161698, 0.013927318, -0.010093023, -0.042058658, 0.0021526732, -0.023216588, 0.0067857793, -0.0028345452, -0.013808732]" 2881406,"""When you're done talking, stop""",http://www.theatlantic.com/technology/archive/2009/03/-quot-when-you-apos-re-done-talking-stop-quot/9827/,139,1313255435,13,jseliger,"[0.007709079, -0.010437207, -0.0051111714, -0.022970973, -0.01618646, 0.028961135, 0.0041377703, 0.004827941, -0.009753548, -0.017384494, 0.00370153, 0.011765461, 0.0066608004, -0.039717384, 0.0057264655, 0.015261893, 0.024312248, -0.012800718, -0.009480083, -0.020054024, -0.02040562, 0.010170255, -0.0132890465, 0.019311763, -0.021733873, -0.030002903, -0.0046814424, -0.008848513, 0.01910341, -0.020106113, -0.0017905378, -0.0002738709, -0.006074806, -0.04099355, -0.0026679013, -0.0070514632, 0.0029804315, -0.01972847, 0.0064296583, -0.026591115, 0.018335108, 0.0001857683, 0.026239518, -0.008073698, -0.009421485, 0.02470291, -0.022319868, -0.009714481, -0.013712264, 0.027085954, 0.01642086, 0.0035843311, -0.006618479, -0.029586196, 0.02992477, -0.01884297, -0.014415457, 0.01597811, 0.0035843311, -0.02457269, -0.010085611, 0.002977176, -0.020496774, -0.012520743, -0.016277617, 6.439832e-05, -0.005990163, 0.0074746814, -0.0033206337, -0.0077481456, 0.012989538, 0.009916324, 0.006953798, -0.027606837, 0.026773423, -0.017905379, -0.011068779, 0.008861534, 0.005791576, 0.024481535, 0.017319383, -0.01642086, -0.020444686, -0.004795386, 0.025497258, 0.017840268, 0.033492822, -0.008868045, -0.01580882, -0.008269029, 0.009134999, 0.016381793, 0.0068951985, 0.008907111, 0.012833273, 0.016095307, -0.009441017, 0.025848854, -0.0136731975, -0.03203435, 0.00696682, 0.013946662, -0.0035127096, -0.007298883, -0.031825997, 0.0036233973, 0.013074181, -0.0042712465, -0.012475166, 0.003961972, -0.009213131, 0.0032945895, -0.009421485, 0.0058208755, 0.017202185, 0.015431181, 0.01069765, -0.031904127, -0.008282051, -0.019129455, 0.009564728, 0.011661285, 0.010346053, 0.008119275, 0.0046065655, -0.016342727, -0.035368007, -0.009506128, 0.0018084432, -0.0003735713, 0.023999717, 0.014480568, 0.0043396126, 0.0064980243, -0.0060422514, 0.014467546, -0.013907596, 0.0019272697, 0.00090829097, -0.0029804315, 0.0060520177, 0.047192067, 0.0066477787, -0.00066127814, 0.015131672, 0.010098633, 0.018504394, -0.006507791, -0.0007068555, 0.0022414278, 0.029325753, 0.0039912714, -0.004336357, -0.019689405, 0.018621594, -0.0039456943, -0.020457707, 0.012924427, -0.016512014, -0.026578093, -0.0004692023, 0.003926161, 0.013347645, 0.012104035, 0.023400702, 0.014519634, 0.026148362, -0.021942226, -0.010183277, 0.0105218515, -0.031461377, 0.013295557, 0.021265078, -0.0047400417, -0.0049972283, 0.0072272616, -0.009174065, -0.011081801, -0.0077937227, 0.019155499, -0.014962385, -0.00081835716, 0.015574424, 0.020431664, -0.020197267, 0.0059869075, 0.037425496, 0.004342868, 0.015079584, -0.015340026, 0.0132434685, 0.0059999293, 0.00740306, -0.0026874344, -0.66381425, -0.017215207, 0.015379092, 0.021668764, -0.012722585, 0.0058697085, -0.0022967716, 0.014128971, -0.023426745, 0.006856132, -0.010482785, -0.0011117612, -0.021265078, -0.022840751, 0.0038903502, -0.0042224135, -0.013738308, -0.017762136, -0.0069212425, -0.0024025762, 0.027476616, -0.0012460515, -0.00058640115, 0.00696682, -0.005215348, -0.007546303, 0.021929204, -0.009141509, -0.026213473, 0.018960167, -0.0100791, -0.0048865406, 0.0073119053, -0.018738791, 0.05294783, -0.0011988465, -0.016954765, 0.0012061713, -0.008119275, 0.058078535, -0.036435816, 0.0015829982, 0.020861393, -0.020353531, 0.00122896, -0.0072467946, -0.008256007, -0.0056776325, -0.008236473, -0.010632539, 0.04641074, -0.004919096, -0.0031985517, 0.0024986141, 0.012800718, 0.009929346, 0.03435228, -0.0041019595, -0.004648887, 0.00752677, -0.0048084077, -0.0107627595, -0.016577125, -0.024338292, -0.039509032, -0.0031855295, -0.0038870948, 0.0018068154, 0.027606837, -0.0032262236, 0.0021112068, 0.034925252, -0.009688437, 0.03203435, -0.013113248, 0.04398863, -0.005996674, 0.024012739, -0.0023390935, 0.012839784, 0.0072077285, -0.018621594, 0.003372722, -0.013803419, 0.024169005, -0.0034052774, -0.023231413, -0.0096168155, 0.0039456943, 0.0246378, 0.037086923, -0.013647154, 0.019702427, -0.022384979, -0.023049105, -0.0014405691, -0.002951132, 0.021538543, 0.007129596, -0.013477867, -0.003942439, -0.007012397, 0.006331993, -0.012787695, 0.023869496, 0.026851555, -0.016121352, -0.006888687, 0.023439767, -0.006315715, -0.017124053, -0.0050493167, -0.0047139977, -0.0022642165, 0.008308096, -0.023596033, -0.010769271, 0.0044014673, -0.029273665, -0.024442468, 0.009493106, 0.0017449604, -0.01275514, -0.0202754, 0.01785329, 0.0015113767, -0.00039859812, -0.012162635, -0.03435228, -0.008861534, 0.014011772, -0.01431128, 0.016603168, 0.0008594581, 0.015183761, 0.028883003, 0.013399734, -0.010593473, 0.020744195, -0.014376391, -0.013699242, -0.0146758985, -0.004782364, -0.006488258, 0.0042256694, -0.0024074595, 0.004909329, 0.0040401043, -0.015795799, 0.025067529, -0.030028947, -0.008874556, 0.00581762, 0.02961224, 0.01219519, 0.007539792, -0.0031676241, -0.010626028, -0.008594582, -0.020731172, 0.0053618466, 0.019507095, -0.032112483, -0.008679225, -0.0015105628, -0.006364548, -0.019129455, 0.029976858, -0.043051038, -0.018100709, -0.005033039, 0.0112380665, -0.015457224, 0.029846637, 0.016603168, -0.0013713891, -0.008939667, 0.0024351315, 0.0041280035, -0.01368622, 0.015965085, -0.0035387538, -0.0012484932, -0.035680536, 0.0062636267, 0.02519775, 0.022632398, 0.024494557, -0.011615707, 0.02407785, -0.0045219217, 0.01823093, -0.027320351, -0.00024701282, 0.0077155903, 0.031643685, -0.017319383, 0.0257577, -0.021512497, 0.011531063, 0.03252919, 0.021199968, 0.03776407, 0.01107529, 0.011192489, -0.014376391, 0.001666828, -0.023036083, 0.027398484, -0.00033104603, 0.022398, -0.0052772034, 0.010482785, -0.027164087, 0.016082285, 0.019481052, 0.009740526, 0.0126704965, -0.0090438435, -0.0044698333, -0.009421485, -0.014285236, 0.019051323, -0.023999717, -0.009414974, 0.004658654, 0.0024530368, 0.025900943, 0.014923318, -0.011374799, 0.00027651602, 0.0018458817, -0.008275541, 0.012390521, -0.014975407, 0.009323819, 0.033701178, -0.022593332, 0.045837767, 0.015261893, 0.004209392, 0.018999234, 0.025848854, -0.006123639, -0.008451339, 0.01406386, 0.02040562, -0.001167105, -0.027606837, 0.026903644, -0.011179467, 0.0011687329, -0.0060520177, -0.0024269926, 0.021812007, -0.010417675, 0.008562027, -0.012038925, 0.014597766, 0.035289872, 0.020587929, -0.006602201, 0.028153766, -0.0014120833, -0.005150238, -0.0035517758, -0.00085864426, -0.008229963, 0.009623326, 0.015001452, -0.01132271, -0.024090873, 0.03028939, -0.027320351, -0.0010254899, -0.0010621145, 0.00017956246, -0.011101334, -0.018569505, -0.014272214, -0.014024794, -0.030575875, 0.016381793, 0.0007011583, -0.0033857443, -0.017879333, -0.009369396, 0.0028323052, -0.030680051, 0.030211257, 0.0006441867, 0.008607604, 0.032893807, -0.0062603713, 0.009180576, -0.014324303, 0.024025762, 0.0061854944, 0.016433882, 0.01823093, -0.0064231474, -0.009799125, 0.007259817, 0.00021323678, 0.009349863, 0.010098633, 0.0036950188, -0.035081517, 0.008360184, -0.03161764, -0.03278963, -0.007552814, -0.014363369, 0.006810555, -0.009681926, -0.013608087, -0.017150097, -0.0039652274, 0.011498508, -0.0034410881, 0.015274915, -0.027320351, 0.0077481456, -0.011472464, 0.078705534, 0.01760587, 0.013634131, 0.0019370364, 0.0123775, -0.0027525448, -0.025458192, -0.049796484, 0.018217908, 0.0073900376, -0.016616192, -0.009258708, 0.008868045, -0.0036168864, 0.02956015, 0.017827246, 0.02172085, 0.0020102856, -0.004827941, -0.0058957525, -0.003188785, 0.0043656565, 0.0033434224, 0.014089905, 0.013907596, 0.006449192, 0.012468654, 0.0021942228, 0.004616332, -0.008125786, 0.0044568116, 0.008620625, 0.00054000993, 0.014727987, -0.010847404, 0.0391965, 0.010111655, -0.012149612, 0.022541244, 0.025497258, 0.0069603086, 0.021512497, -0.0019305253, -0.016095307, 0.025393082, -0.007930455, -0.006331993, 0.034508545, 0.0027232452, -0.017775157, 0.039587162, 0.006152939, -0.015157716, 3.6548336e-05, 0.022176625, 0.018660659, -0.024650821, -0.027815191, -0.0120975245, -0.021186946, -0.01847835, -0.0010393258, -0.016876632, -0.010417675, -0.0066152234, -0.03377931, -0.006208283, -0.0100921225, -0.016290639, -0.023973674, 0.022176625, -0.039066277, 0.011999859, 0.019585228, 0.012279834, 0.011049246, 0.0010962974, 0.023049105, 0.013634131, 0.03377931, 0.00065802265, -0.039274633, 0.0078002336, -0.024807088, -0.002109579, -0.012748629, -0.019741492, -0.01045023, -0.025354015, 0.03305007, 0.021877116, -0.0009115465, 0.014493589, 0.00035057915, 0.00852296, 0.004287524, 0.009304286, 0.02836212, -0.0054106796, 0.0005542528, -0.018777858, -0.021694807, -0.012963493, 0.018699726, 0.020679085, 0.006973331, -0.0012240767, 0.014727987, 0.01823093, -0.010261409, 0.015300959, -0.030315433, -0.0054399795, -0.02221569, 0.0067584664, 0.0059771407, 0.017267296, 0.020444686, 0.018777858, -0.027216174, 0.022840751, -0.02420807, 0.023218391, 0.006152939, 0.02867465, 0.013178358, -0.026213473, -0.056984678, -0.008080209, -0.011296666, -0.033753265, 0.007813256, -0.0050297836, -0.029872682, -0.039587162, -0.0044340226, 0.006667312, 0.008282051, -0.007272839, -0.027554749, -0.01599113, -0.009727503, 0.001038512, -0.007852322, -0.024338292, -0.032060392, 0.0012916288, -0.030706096, 0.008438316, 0.03403975, 0.0009497989, 0.0054399795, -0.025406104, -0.015144695, 0.010150721, -0.03521174, -0.013197891, 0.012891872, 0.034456458, 0.023622077, 0.020054024, -0.026604136, -0.010756249, 0.009714481, 0.0010417674, -0.002936482, 0.0043265903, -0.014272214, -0.011856616, -0.00026939454, 0.016069263, 0.017058942, 0.033128206, -0.017657958, 0.018100709, -0.0036754857, -0.0023781597, 0.012227746, -0.011511531, 0.0020916737, -0.008269029, -0.0022690997, -0.020692106, 0.0026125575, -0.0019516862, -0.009896791, 0.010964602, 0.008067187, -0.0073509715, 0.008203919, 0.02538006, 0.002335838, 0.013712264, 0.008288562, 0.0041410257, 0.009278242, -0.022697508, -0.027346395, 0.0027688225, 0.0019223865, -0.0069407756, 0.021069746, -0.02836212, -0.010593473, -0.025796767, 0.026486937, 0.015274915, -0.023934606, -0.0062310714, -0.00034325424, -0.047582727, -0.030914448, -0.016329704, -0.008444827, 0.0030406588, 0.014923318, -0.018152798, 0.0067584664, -0.012976516, -0.010443719, -0.02040562, -0.02170783, 0.022476133, 0.017345428, 0.03664417, 0.030784229, 0.00031782046, -0.00914802, -0.008028121, 0.007377016, 0.013269513, 0.015821842, 0.0324771, 0.00650128, -0.029508064, -0.017527737, 0.0132890465, -0.019012256, -0.03976947, 0.003708041, -0.010280943, 0.024129938, 0.0027346394, -0.0023195604, -0.01916852, 0.012077991, -0.02674738, 0.0044275117, -0.009916324, -0.0014763798, -0.018009555, 0.026643202, -0.019441985, 0.042764552, 0.027711013, -0.0039554606, -0.0014560327, 0.019194566, -0.018243952, -0.008575048, -0.0001512801, 0.019520117, -0.009766569, 0.023713231, 0.004495878, 0.03351887, -0.014233148, -0.01487123, -0.003708041, 0.012064969, -0.014376391, -0.025223793, -0.0034248105, -0.0052576703, 0.011231556, -0.008555515, -0.010573939, -0.005374869, 0.0029250877, -0.007936966, 0.016199484, -0.0054269573, -0.0017270551, -0.005853431, 0.003721063, -0.01966336, -0.013276024, -0.017931422, 0.0064622136, -0.0146758985, -0.023752298, -0.010398141, -0.012292856, 0.034873165, 0.007422593, -0.021785961, -0.0025116361, 0.0041149813, -0.017540758, 0.024403403, -0.024247138, 0.00096119323, -0.018439284, 0.024286203, 0.004671676, -0.013660176, 0.012449121, -0.019415941, -0.03396162, -0.015691623, 0.004303802, -0.014493589, -0.0040889373, -0.0064817467, 0.00022483457, 0.022528222, 0.0145326555, 0.0016074146, -0.04484809, 0.036878567, -0.014636832, 0.011029713, 0.011283644, -0.010482785, 0.009356374, -0.0013331368, 0.012839784, 0.008249496, 0.004547966, -0.0246378, -0.008164852, 0.0037666403, -0.0053781243, -0.030784229, -0.036618125, -0.014701943, -0.022658441, 0.037086923, 0.020314464, 0.010183277, 0.019832648, 0.03127907, 0.019298742, 0.016290639, -0.027320351, -0.004896307, -0.026356716, -0.015144695, -0.013022093, -0.021916183, -0.004381934, 0.015379092, 0.008067187, -0.03234688, -0.03802451, -0.01362111, -0.044144895, -0.0021193456, -0.00035627632, 0.024247138, 0.036670215, 0.016199484, -0.0041377703, 0.033987664, -0.02233289, 0.025340993, -0.003708041, 0.0017677491, 0.007819767, 0.007813256, 0.00045984267, -0.0058631976, -0.0139596835, -0.025236817, 0.009493106, 0.004534944, 0.0062440936, 0.028336074, 0.0047400417, -0.008203919, 0.009694948, -0.008868045, 0.0047888746, 0.009167554, 0.008640159, -0.02083535, 0.014285236, -0.016212506, 0.0070840186, -0.017618893, 0.016902678, 0.017553782, 0.0045870324, 0.0044144895, -0.022749597, 0.0026402294, -0.01014421, -0.031643685, 0.019923802, -0.006725911, -0.023635099, 0.0036754857, 0.0015130044, -0.0030243811, 0.012605386, -0.0011972187, -0.0029055546, -0.013894574, 0.0077611674, -0.038493305, -0.023218391, 0.005645077, 0.014324303, -0.017280318, -0.0041963696, -0.007520259, -0.010873448, -0.04198323, 0.014024794, -0.000160538, -0.005729721, -0.00082039187, 0.014115949, -0.017488671, 0.0039847605, -0.00033084257, 0.011798017, -0.008262518, -0.008770379, 0.0118110385, -0.002220267, -0.027528705, 0.0131002255, 0.0052576703, 0.016004153, 0.02407785, 0.21939622, -0.0023390935, -0.0073444606, 0.014467546, -0.00045455244, -0.0015748594, -0.016134374, 0.013725286, -0.020744195, 0.005150238, 0.007409571, 2.7290442e-05, -0.009929346, -0.0020574906, 0.006823577, -0.0141029265, -0.038910013, -0.008555515, -0.034326237, 0.022384979, -0.010971113, -0.0014780075, 0.0053618466, -0.011101334, 0.036722302, -0.0067975326, -0.014519634, 0.0066640563, 0.014819142, -0.007949987, -0.023635099, 0.005645077, 0.01599113, 0.012859317, -0.005853431, -0.011394331, 0.010359075, -0.017462626, 0.012787695, 0.018061643, -0.0012314017, -0.002096557, 0.015509313, 0.0050981496, -1.3225564e-05, 0.00088387454, -0.0018963423, -0.012540275, 0.009961901, 0.009050354, -0.0032701732, -0.016381793, 0.021486454, 0.029898725, -0.00014242914, -0.010502318, -0.012898384, 0.0004814105, -0.02028842, -0.0024937307, 0.0011622218, 0.014545678, 0.0089592, 0.018530438, -0.01300256, 0.023400702, -0.003968483, 0.029039267, 0.010860425, 0.0068170656, -0.0050753606, -0.008034632, 0.017032897, 0.010437207, -0.003789429, -0.0036819968, 0.006856132, 0.019259676, 0.030680051, 0.0054790457, -0.013490888, 0.0029950815, -0.027632881, -0.009369396, -0.0070514632, -0.044717867, 0.01618646, 0.018491372, 0.02394763, 0.0013502283, 0.0065598795, -0.016824543, -0.009994457, -0.009017799, 0.008509938, 0.026031164, 0.024116917, 0.035967022, 0.0019777303, 0.012117058, 0.008451339, 0.02482011, 0.008770379, -0.008640159, -4.1940297e-05, 0.0017042664, 0.01480612, 0.03193017, 0.0031708796, -0.0138164405, -0.010704161, -0.0020119133, 0.02812772, -0.003776407, -0.0016448532, -0.0006572088, -0.0031806463, -0.027138041, -0.012162635, -0.011609196, 0.00939544, -0.007585369, -0.0031187914, -0.018152798, 0.014910297, -0.011114356, -0.011101334, 0.0046000546, 0.008926645, -0.039665297, 0.01741054, -0.00088387454, -0.014767054, -0.020444686, -0.023504877, 0.00090259383, 0.020561885, -0.009753548, -0.009551705, -0.012182168, -0.0040140604, -0.0015317237, 0.015157716, -0.0068951985, -0.009987946, -0.018530438, 0.012618409, -0.00958426, -0.029195532, -0.0042354357, -0.016498992, -0.030002903, 0.0029608984, 0.0072077285, 0.02961224, -0.023283502, -0.017384494, -0.014207103, 0.008451339, 0.017449604, -0.021134857, -0.019507095, 0.014467546, 0.0071947062, -0.0071816845, -0.0034182994, -0.1657452, 0.013946662, -0.016707346, -0.00360712, 0.025223793, 0.0133867115, 0.0030764695, 0.0056580994, -0.006302693, 0.013725286, 0.011902194, -0.011374799, -0.023010038, 0.015340026, 0.020470731, -0.01368622, -0.025028463, 0.0028567216, 0.009011288, -0.012611897, 0.0110948235, -0.0103330305, 0.007982543, -0.019676384, -0.006569646, 0.016212506, -0.027580794, 0.010183277, 0.012286345, -0.008828979, -0.020796282, 0.004766086, 0.033675134, 0.016642235, 0.019936824, -0.023986695, -0.0066738226, 0.008503427, -0.014298258, 0.018569505, 0.001195591, 0.030914448, 0.02121299, 0.011850105, -0.017215207, 0.023439767, 0.011185978, 0.0142461695, -0.003864306, -0.0065208133, 0.0017368217, -0.04299895, -0.006569646, 0.00060878287, 0.01144642, 0.028961135, -0.009610305, 0.0021486455, 0.015418158, -0.011472464, -0.018934123, -0.004691209, -0.008802935, 0.00506885, -0.0067194, 0.016941743, -0.025744678, 0.005423702, -0.00506885, 0.013647154, 0.022853773, -0.018400218, 0.0015593957, 0.0036331639, 0.014155015, -0.009245686, -0.041175857, 0.009929346, -0.000826089, -0.019988913, 0.0020981848, 0.0268776, -0.017501693, -0.0043461234, -0.020679085, 0.0062310714, -0.0007247609, -0.00017671387, 0.0075983913, 0.00933684, 0.00970146, -0.03291985, 0.004486111, -0.036123287, 0.03677439, 0.0061627054, -9.213385e-06, 0.0029332265, 0.016759435, -0.012898384, 0.010098633, 0.008802935, -0.018022576, 0.016043218, 0.030367522, 0.010508829, -0.015639534, -0.008965711, 0.008672714, -0.020014957, -0.0059055192, 0.030133123, 0.013080693, 0.0033434224, -0.017879333, 0.007852322, 0.0025979076, -0.007995565, 0.0054855566, -0.0145326555, 0.040524755, -0.012123569, -0.03252919, 0.002295144, 0.0023260715, 0.0065045357, -0.09276939, -0.04062893, 0.0028241666, -0.010027012, -0.018582527, 0.025432147, -0.0026711568, 0.01511865, -0.008379717, 0.011511531, 0.0061431723, -0.03820682, -0.021629697, -0.0096623935, 0.020119134, 0.00247257, 0.015834866, 0.0032799398, -0.013054648, 0.01175895, -0.010671605, -0.010736716, -0.014506612, 0.0029885704, -0.03482108, -0.009193597, -0.025666546, -0.0049223513, 0.019064344, 0.008796424, -0.0047693416, -0.0036233973, 0.0052218596, -0.012227746, -0.009284752, -0.019064344, -0.045160618, 0.002970665, 0.03627955, -0.02831003, 0.0027232452, -0.02885696, -0.01704592, -0.041071683, -0.01256632, -0.0009587516, -0.0060064406, 0.022853773, -0.009323819, -0.011264111, -0.0065208133, 0.011999859, -0.001017351, -0.027346395, 0.037790116, 0.0050655943, 0.0047693416, 0.007272839, -0.021291122, 0.0055083456, -0.010814848, -0.004733531, -0.02028842, 0.010098633, 0.0047791083, 0.02600512, 0.0070644855, 0.009017799, 0.01847835, -0.022033382, 0.010632539, 0.014610789, -0.015795799, 0.0073444606, -0.03557636, -0.00870527, -0.0034866654, -0.00618875, 0.01318487, -0.0068040434, -0.007565836, -0.006419892, -0.0022983993, 0.01375133, -0.008802935, -0.01991078, 0.02613534, -0.0009961901, 0.020626996, -0.041540477, 0.031904127, 0.011876149, 0.009069888, -0.006123639, -0.018178841, 0.014910297, -0.020679085, -0.03005499, -0.0010368841, 0.02172085, -0.018243952, -0.01841324, -0.06870456, 0.016902678, 0.0018279763, -0.016850589, -0.0022398, -0.007949987, -0.004505644, -0.012038925, 0.0118110385, 0.004684698, 0.008171364, 0.020574907, 0.024898242, 0.0017237996, -0.030966537, 0.0061431723, 0.033102162, -0.011251088, 0.027919367, 0.0018654148, -0.013347645, -0.024364335, 0.011902194, 0.023804387, -0.029950814, 0.03833704, -0.010482785, 0.003769896, -0.010359075, -0.013276024, 0.005885986, -0.02028842, 0.009909813, 0.024911264, 0.014819142, -0.038857926, 0.0146758985, 0.041853007, 0.007500726, -0.015183761, -0.02618743, -0.022046404, 0.0013542977, -0.00883549, -0.015287938, 0.010593473, -0.04112377, 0.010424186, 0.020366553, -0.016147396, 0.016199484, 0.011316199, -0.0073314384, -0.008262518, 0.00945404, -0.0093303295, 0.020496774, -0.025171706, 0.030263344, -0.0018279763, 0.026552048, -0.0024628034, 0.02172085, -0.0004057196, 0.03802451, 0.03341469, 6.541567e-05, 0.014714966, -0.019324787, -0.017749112, 0.0040042936, 0.028909046, 0.00457401, 0.0145587, 0.0067845103, 0.024989396, -0.010163744, -0.00094817113, -0.029455975, -0.019871714, -0.019428963, 0.010463252, -0.03140929, 0.013608087, 0.0073249275, 0.027164087, -0.00073696906, 0.006869154, 0.0048930515, 0.0072663277, -0.055578295, 0.0008952689, 0.0039587165, 0.014024794, 0.007292372, -0.0061854944, 0.004238691, 0.03403975, 0.008562027, 0.04565546, 0.0032750564, 0.028257942, -0.017137075, -0.0020444687, -0.03857144, -0.016603168, -0.023895541, -0.028778825, -0.018530438, 0.019376874, -0.03489921, 0.011439909, 0.017592847, 0.021759918, -0.013503911, 0.0032538956, 0.0042842687, -0.0044796, -0.027841235, 0.020626996, -0.01597811, 0.03515965, 0.0052218596, 0.0023814153, 0.027085954, -0.006234327, -0.010840893, -0.033883486, -0.0069407756, 0.014024794, -0.017957466, -0.016564103, -0.005579967, -0.009727503, -0.00032636622, 0.015600467, -0.0011687329, 0.022619376, 0.00063035067, 0.060526688, 0.023934606, -0.006475236, -0.00067226554, -0.0039163944, 0.0056027556, -0.0003052053, 0.0024937307, 0.0024904753, -0.022424044, 0.019246653, 0.002047724, 0.0075723473, -0.006725911, -0.013256491, 0.0024400146, -0.011563619, -0.004228925, -0.0038154733, 0.0058697085, 0.01058045, 0.0021812005, 0.013477867, -0.0013787141, -0.007546303, -0.007565836, -0.010958091, 0.0005082686, -0.01207148, -0.02831003, 0.02028842, -0.011713373, -0.00618875, 0.008685736, -0.00014771937, 0.010599984, -0.01169384, 0.011505019, 0.016446903, 0.013087204, -0.0133867115, 0.03750363, -0.015965085, -0.01778818, -0.035055473, 0.014714966, 0.015587445, -0.014272214, -0.003769896]" 24103725,The Most Counterintuitive Recession Ever,https://awealthofcommonsense.com/2020/08/the-most-counterintuitive-recession-ever/,100,1597014526,123,elsewhen,"[-0.029999282, -0.030346869, 0.0062498506, -0.039972305, 0.003562749, -0.011470314, -0.013261715, 0.0039972304, -0.016055766, -0.023622429, 0.027058177, 0.024170544, -0.010561245, 0.01621619, 0.003180071, 0.01066151, 0.019384563, -0.018435389, 0.0027121678, -0.04224498, -0.022673255, 0.03002602, -0.020881854, 0.014932798, -0.024464656, 0.009765809, 0.012392752, 0.004665664, 0.010206975, 0.004872878, -0.014451526, -0.028100932, -0.02511972, -0.0012466279, -0.033448398, -0.0100866575, -0.014571844, -0.0063501154, 0.022699991, -0.019638568, 0.014665425, 0.009331328, -0.015868604, 0.0006993482, -0.005116856, 0.0007699515, -0.020534268, -0.008642841, -0.016403351, 0.021750817, 0.017740218, 0.008963689, -0.0023027523, 0.0044952133, 0.012987657, -0.0011488696, -0.008769844, 0.01870276, 0.0023010813, -0.0104008205, -0.009264484, 0.0014805796, -0.020133208, 0.008215044, -0.018074434, -0.008649526, -0.005818711, 0.015534388, 0.014157415, 0.010494402, 0.02823462, 0.03363556, 0.022339039, 0.01331519, 0.02021342, -0.0037298573, -0.00068263744, 0.0034758528, -0.005541311, 0.004391606, -0.002291055, -0.03141636, -0.023903172, -0.015160065, 0.020052996, -0.0034992478, 0.00834873, 0.024892453, -0.024772136, -0.0039337296, 0.025681203, 0.01669746, 0.016831148, 0.031763945, 0.0040540476, 0.007981093, -0.020587742, 0.027084913, -0.019371195, -0.031255938, -0.013669459, 0.0064503807, -0.008743106, -0.009398171, -0.007961039, 0.0072525004, 0.0036262502, -0.007546611, -0.011878058, -0.0127537055, 0.014919429, -0.006924968, 0.004124233, -0.05224474, 0.027913772, 0.008569314, -0.025948577, 0.0022793573, 0.015066485, -0.011202941, 0.030480554, 0.01380983, 0.020454057, 0.007867459, 0.0007310988, 0.019651936, -0.031095512, 0.008469049, 0.027191862, 0.007225763, 0.0062064026, 0.016938098, 0.020280264, 0.0113433115, -0.006660937, 0.024945928, -0.02220535, -0.0036730405, -0.022085033, -0.01901024, 0.00370312, 0.018943397, 0.012700231, 0.0049798274, 0.012720284, 0.011136097, 0.031068776, 0.001871613, 0.019758886, -0.012446227, -0.007352765, -0.0028391702, 0.0060626892, 0.012573229, -0.0013493996, 0.015935447, 0.01106257, 0.006196376, -0.029090213, -0.019103821, -0.013656091, 0.0043214206, 0.009571964, 0.012038482, -0.0036295922, 0.026403112, -0.0017613216, 0.014224258, -0.0029060133, -0.004832772, -0.011744372, 0.005731815, -0.009150851, 0.01911719, -0.0020270238, 0.01340877, -0.019050347, -0.0061662965, -0.033368185, -0.027887033, 0.020962065, 0.0013744658, 0.022766836, 0.015480913, 0.021256177, -0.018502232, 0.031282675, 0.013783093, -0.0024080307, -0.021670604, -0.0063701686, 0.0016167728, -0.020761536, -0.021550287, -0.6404125, 0.0046055047, 0.0013460574, 0.040186204, -0.033689033, -0.0054778103, 0.0010135119, 0.0010786841, -0.0243176, 0.018194752, 0.013488982, -0.008890161, 0.014665425, -0.032004584, -0.008816634, -0.0064537227, 0.007867459, -6.7052206e-05, -0.037271835, -0.012078588, -0.018488863, 0.016777674, -0.014986273, 0.016229559, -0.002937764, 0.00078666233, 0.011871374, -0.014531738, 0.0014722241, 0.01991931, -0.005674998, 0.022887154, 0.009364749, 0.009231063, 0.03740552, -0.014384682, -0.0073327124, 0.03023992, 0.026924489, 0.025627729, -0.023809591, -0.0072190785, 1.4687254e-07, -0.013087923, 0.03411683, 0.02330158, -0.010841987, 0.003462484, 0.028635679, 0.0010803551, 0.02291389, 0.014598581, -0.009678913, -0.016737567, 0.02382296, 0.0008154885, -0.011356681, -0.012994342, 0.014852586, -0.028261356, 0.0046890588, -0.0060693733, 0.01421089, -0.030373605, -0.027485974, 0.035400223, -0.013134712, 0.023702642, 0.025106352, -0.002110578, -0.0038702283, 0.022405881, 0.0063701686, -0.015841868, 0.02411707, -0.0014195851, 0.03772637, -0.0018582443, 0.015480913, 0.03395641, -0.023729378, -0.027833559, 0.0035059322, -0.016069135, 0.0024197283, -0.0107083, -0.013622669, 0.006283272, 0.007914249, 0.020146577, -0.010567929, -0.0017479529, 0.004872878, -0.004007257, 0.010146816, 0.041068535, 0.0044350545, -0.0027305498, 0.004973143, 0.0040139416, -0.0019133901, 0.0026119028, 0.042779725, 0.018488863, 0.025988683, 0.03692425, 0.009424908, 0.00825515, 0.0372451, -0.028074196, 0.0018298359, -0.014357945, -0.01700494, -0.0041576545, 0.0074129244, -0.025641099, 0.033769246, 0.0029026712, -0.0033287974, -0.004531977, 0.01265344, 0.0021774212, 0.007646876, -0.020774905, 0.004107522, 0.006193034, 0.023194632, -0.00027948862, 0.016630618, -0.030774664, 0.007874143, 0.0051001455, 0.03943756, 0.0036095392, 0.0013343598, 0.0009650504, 0.0046790326, -0.006460407, 0.009565279, -0.033689033, -0.0033137577, 0.0020153262, -0.00018058141, -0.018288333, 0.0047258227, -0.03943756, 0.04550693, -0.009023848, -0.005992504, -0.013402086, 0.0029043423, -0.008729738, 0.009063954, 0.019170664, -0.014224258, 0.008642841, -0.007693666, -0.040480316, -0.012847287, 0.011095991, -0.01641672, 0.023154527, -0.0055680485, 0.014357945, -0.0009775836, -0.0007298455, -0.022994103, 0.0041175485, -0.018542338, -0.014852586, -0.0025717968, -0.008936952, 0.012947551, 0.009919548, 0.007439662, 0.023154527, -0.03352861, -0.0035560646, -0.005855475, 0.0018365203, 0.0040139416, 0.004107522, -0.008783212, -0.014652056, 0.008067989, -0.0007164769, 0.016643986, 0.0130678695, -0.009023848, 0.011583948, 0.012239012, 0.0146386875, -0.017031679, -0.0025500727, 0.004324763, -0.018528968, -0.010460979, -0.015948817, 0.006818019, 0.014357945, 0.032485854, 0.024785504, -0.0117310025, 0.0092243785, 0.015494281, -0.013014395, 0.0050199335, -0.025159827, -0.0016125952, 0.035239797, 0.015654705, -0.02382296, -0.0037733056, -0.0027823532, -0.02391654, 0.037592683, 0.0032151637, 0.0071188137, -0.014558475, 0.01336198, -0.015293752, -0.016831148, 0.017071784, -0.009872759, -0.00755998, -0.00027196878, 0.009398171, 0.002575139, -0.024905821, -0.007152235, -0.003139965, 0.015841868, -0.0047659287, 0.028796103, -0.009398171, 0.028796103, -0.005855475, -0.014291102, 0.035694335, -0.005273938, -0.022967365, 0.0062465086, 0.016443457, 0.00527728, 0.0123660145, 0.0064904867, 0.01931772, 0.0046790326, -0.002436439, 0.0053975983, -0.0013385375, 0.019959416, 0.01296092, 0.02101554, -0.0024280837, -0.025373725, 0.01180453, -0.0024314257, 0.034705054, 0.023234738, 0.012680178, -0.0069918116, -0.0064904867, -0.019571725, 0.024076965, 0.0027739978, -0.01669746, -0.008355415, 0.009899496, 0.0043581845, -0.011677528, 0.022860415, -0.004147628, -0.01802096, 0.025788153, -0.016256295, 0.006945021, -0.01621619, 0.0030480553, -0.0038334643, -0.015480913, -0.03900976, 0.013107975, 0.027312182, -0.009184272, -0.001529041, 0.031710472, -0.016443457, 0.0051770154, 0.03240564, -0.01681778, 0.0075399266, -0.011878058, 0.0039337296, 0.005939029, -0.018234858, 0.028769365, 0.0020253526, 0.0052204635, -0.012419489, 0.008261834, -0.010447611, -0.021536918, -0.002555086, 0.024892453, 0.0071589197, -0.008636157, -0.01331519, -0.027111651, -0.011998376, 0.019798992, -0.022445988, -0.015654705, 0.037378784, -0.006179665, 0.0011689225, 0.0073327124, 0.0022793573, 0.013669459, 0.013916779, -0.003038029, -0.000614123, -0.023127789, -0.007058655, 0.1251307, 0.032084793, -0.0071388665, 0.0069115995, 0.010427558, 0.015975554, 0.00015697736, -0.015253646, 0.01081525, 0.004511924, -0.00093747757, -0.04232519, 0.0017696769, 0.0010394136, 0.016189452, 0.0013577549, -0.008308625, -0.017900642, 0.023568954, -0.02211177, 0.004749218, 0.0013560839, 0.016563775, 0.039785143, 0.015988922, 0.0072591845, 0.027205233, 0.024451287, 0.01669746, -0.0017579794, 0.0008831674, 0.022699991, -0.017365895, 0.047699396, -0.0027923798, -0.0009934589, -0.009090692, -0.0017813744, -0.012138747, 0.002210843, 0.002434768, -0.003079806, 0.0014830861, -0.028368305, 0.0073594498, 0.015427439, 0.0060125566, 0.019732147, -0.013248346, -0.019785622, 0.028742628, -0.005491179, -0.033287972, 0.012025113, -0.005698393, 0.0047358493, 0.006607462, -0.02220535, -0.03823438, -0.01691136, -0.029036738, -0.012907445, -0.0022826993, 0.0048595094, -4.4962577e-05, -0.021269545, 0.0032903624, 0.019237507, -0.0037465682, -0.010989042, 0.013014395, -0.023448637, -0.021777553, 0.0026002051, 0.011704265, 0.0015649693, -0.0055914437, 0.015494281, -0.001931772, 0.009043901, -0.010547876, -0.017753586, -0.014598581, -0.037967008, -0.00026591108, -0.01191148, -0.0017128601, -0.001600062, 0.034170307, 0.019304352, 0.00012292905, -0.0028876315, 0.018181384, -0.01470553, 0.03023992, 0.011878058, 0.00901048, 0.027699873, 0.015066485, 0.0006015899, 0.016349876, -0.00093079323, -0.012874024, 0.00014903971, -0.002093867, -0.015801761, 0.009231063, -0.0057685785, -0.021229438, -0.027913772, 0.03013297, -0.009491752, -0.019798992, -0.0019150611, 4.6529218e-05, -0.002334503, 0.020093102, -0.027058177, 0.00655733, -0.013656091, 0.0046456107, -0.021884503, 0.0068514403, 0.031496573, -0.010741722, 0.011624053, 0.007834037, -0.037057936, -0.01831507, 0.0056482605, -0.0029628302, 0.005253885, -0.007834037, -0.0005698393, -0.015467544, -0.015601231, -0.0065105394, -0.010180238, 0.012165484, -0.0034892214, -0.02101554, -0.01140347, -0.002677075, -0.017058415, 0.021149227, -0.03392967, 0.013121344, -0.0118914265, 0.00078206684, 0.02462508, -0.019544987, -0.02530688, 0.00032586118, 0.007312659, 0.021550287, -0.024691923, 0.010828618, 0.002352885, 0.03572107, 0.034865476, 0.049223423, -0.01050777, 0.004224498, -0.00885674, 0.013542457, -0.028047457, -0.008261834, -0.006821361, -0.015173434, 0.008936952, -0.012058535, 0.011476998, -0.008228413, -0.019371195, 0.0024832294, 0.0061863493, 0.0034925635, -0.01470553, -0.027379025, -0.013074554, -0.0015624627, -0.0077404566, -0.018970134, 0.027887033, -0.03780658, -0.019438038, 0.047886554, 0.022646517, 0.016884623, -0.012706915, 0.012533123, -0.0109489355, 0.024892453, 0.0079677235, -0.02251283, -0.003038029, -0.036977727, -0.045587145, -0.0053508077, 0.03163026, 0.019705411, 0.024611712, -0.0058822124, 0.0044551073, 0.00455203, 0.006119506, -0.012680178, -0.019237507, 0.0043214206, -0.014344577, 0.0012833917, -0.034357466, -0.00251498, -0.005541311, -0.009184272, 0.011055885, -0.02652343, 0.018782973, -0.009518489, -0.017900642, -0.0075399266, 0.009959655, 0.018261595, -0.0028425122, 0.015975554, 0.001681945, 0.020881854, -0.006924968, -0.031389624, -0.0041944184, -0.012472964, 0.019170664, 0.017633269, -0.0064670914, -0.015988922, 0.023234738, 0.009237747, -0.021189332, -0.02291389, 0.016002292, 0.005210437, 0.008328678, -0.019384563, -0.012138747, -0.010728353, 0.024397813, -0.004167681, -0.010608035, 0.010066604, -0.032058056, 0.00064378476, 0.021550287, -0.004789324, 0.028261356, -0.01871613, -0.010093342, -0.0070920764, -0.015454176, -0.011416839, 0.015748287, -0.018475493, 0.023261476, -0.019250877, 0.019544987, 0.004461792, -0.026082264, -0.03652319, 0.006035952, -0.028395044, 0.023007471, -0.042458877, -0.003038029, 0.017847167, -0.017660005, -0.0076669287, 0.0071722884, -0.018996872, -0.013689512, -0.024785504, 0.003763279, 0.011336627, -0.0039069923, 0.013662775, 0.0024932558, -0.011831268, -0.0392504, -0.025908472, -0.018194752, 0.036469717, -0.018034328, 0.003079806, 0.006500513, 0.013602616, 0.012239012, -0.010915514, -0.0015073168, -0.0025066244, 0.00061370526, -0.007506505, 0.031202462, 0.017165365, 0.020159945, -0.0272186, -0.01612261, -0.0016259638, -0.0074530304, 0.014879324, -0.021911241, -0.029304111, -0.023341687, 0.007272553, -0.0007712048, -0.018462125, 0.023181263, 0.019839097, 0.0051469356, -0.012579913, 0.0020637875, -0.012486332, 0.040908113, 0.005537969, -0.006600778, -0.008368784, 0.005949056, 0.020133208, -0.017058415, 0.003602855, 0.030159706, -0.023863066, -0.01521354, -0.016135978, 0.021978084, -0.014852586, 0.0024080307, -0.01421089, 0.011390102, 0.0067979656, 0.009612069, 0.00077245815, -0.0056315497, 0.02612237, 0.0054243356, 0.0067578596, -0.0022676596, 0.014357945, -0.019705411, -0.017579794, 0.016135978, 0.004044021, -0.004264604, 0.011042517, 0.017245578, 0.002474874, -0.03342166, -0.019224139, 0.018756235, -0.042405404, -0.0016535367, 0.0049263528, 0.03411683, 0.053955927, -0.002112249, -0.025908472, 0.026536798, 0.0055847596, 0.012733652, -0.017726848, -0.010487717, 0.017780323, -0.0025701257, 0.0033471794, -0.0033187708, -0.038555227, 0.0073193437, 0.01882308, -0.0112630995, 0.0077805626, 0.014197522, -0.013047816, 0.005053355, 0.009043901, -0.011523789, -0.0052672536, 0.0021657236, -0.0034658262, -0.04154981, 0.009184272, 0.020921959, 0.00760677, -0.020587742, -0.016176084, -0.0058822124, -0.0223123, -0.013783093, -0.025387093, -0.023475375, -0.010434242, -0.04114875, 0.0086695785, -0.011590632, -0.025346987, 0.032592803, 0.008462365, -0.037485734, -0.0034992478, 0.009685597, 0.0013903411, -0.011202941, 0.008743106, -0.022472724, 0.03892955, -0.016643986, 0.012078588, 0.018983504, 0.014264365, -0.026857646, -0.0038902813, -0.019130558, 0.022579674, 0.0028358279, -0.024036858, 0.01191148, -0.005691709, -0.013863305, 0.00263864, -0.009017164, -0.0014296116, -0.015948817, -0.04072095, 0.010354031, -0.00031270142, -0.017379263, 0.0034457732, 0.0019802335, -0.0010644799, 0.011443577, 0.22245458, -0.0018749551, 0.003238559, 0.03339492, 0.0130678695, 0.0069717583, 0.014037098, 0.007867459, -0.016162716, -0.010420874, -0.0123660145, 0.018301701, -0.03339492, -0.0041175485, -0.0077605094, 0.007125498, -0.034063358, -0.00820836, 0.0050199335, 0.04363532, 0.002456492, -0.0018582443, -0.01581513, -0.004184392, 0.022967365, 0.006497171, -0.006360142, 0.020561006, 0.019464776, -0.00219079, -0.02402349, -0.00048586738, 0.007940986, 0.0012315882, -0.0093781175, -0.0004142197, 0.00017118157, 0.0034257201, 0.0030530686, 0.010654826, 0.024437917, 0.024451287, -0.019531619, -0.016069135, 0.0014195851, 0.022579674, 0.010915514, 0.0053975983, -0.00039771775, -0.0061429013, -0.01862255, -0.004184392, 0.012907445, 0.0020186682, -0.0016577144, 0.005133567, 0.027566185, 0.019785622, -0.010501086, 0.010648141, -0.010728353, 0.024544867, 0.0014513356, 0.035346746, -0.042351928, 0.00010689709, 0.00860942, 0.02683091, 0.008696316, -0.02382296, 0.012994342, -0.0033187708, -0.012847287, -0.010374083, -0.0049798274, -0.019264245, 0.012793812, 0.0043515004, 0.03593497, 0.009150851, 0.016897991, 0.012686863, -0.019103821, -0.018422019, 0.01820812, -0.020641217, 0.01991931, -0.010788512, -0.007526558, 0.011410155, 0.014652056, 0.014197522, -0.021470075, 0.0078006154, 0.029357586, 0.016884623, 0.0038702283, 0.019638568, -0.012693547, -0.022339039, -0.010066604, 0.024758765, 0.026510062, -0.011456945, 0.0011212967, -0.0069182836, -0.025988683, 0.014344577, 0.01901024, -0.03072119, 0.008729738, -0.008241781, 0.026844278, 0.008081358, 0.00720571, 0.007065339, -0.004023968, 0.0067110695, -0.0013234977, -0.007586717, -0.01246628, -0.016537037, 0.0022442646, 0.016176084, -0.015253646, -0.03834133, -0.009077323, -0.02493256, 0.006884862, -0.01590871, 0.01612261, -0.00076243165, 0.005531285, -0.042351928, 0.0046121893, 0.010434242, 0.024879085, 0.002092196, -0.012860655, 0.0060125566, -0.009912864, -0.0008497457, 0.014531738, -0.028395044, 0.01641672, -0.024290863, 0.023288213, -0.00118814, -0.02121607, -0.008315309, -0.0074931365, 0.029812122, -0.006487144, -0.00047040987, 0.0031650313, -0.015681444, -0.022753466, -0.0033287974, -0.007940986, -0.0038802547, -0.051656518, -0.0003628339, 0.023127789, -0.014919429, -0.012606651, 0.005698393, -0.16919382, 0.021309651, 0.0027856955, -0.015373964, -0.002999594, 0.0061763227, 0.016256295, -0.0027389051, -0.026617011, 0.00840889, 0.031015301, -0.012780443, -0.009384803, -0.0074530304, 0.013428823, -0.016523669, 0.0016251282, 0.0073393965, 0.040801164, 0.012526439, 0.025627729, -0.010821934, 0.0005055026, -0.02501277, 0.014103941, 0.021577025, -0.0072926064, 0.026884384, 0.011550526, -0.034598105, -0.029812122, 0.0123660145, 0.030106232, 0.02402349, 0.0039337296, 0.016884623, 0.015053116, -0.00810141, 0.0044350545, 0.03812743, 0.026991334, 0.015414069, 0.011824584, -0.009939602, 0.0018064408, 0.01950488, -0.011864689, -0.005156962, -0.023448637, -0.015026378, 0.0046021626, -0.029170426, 0.0132216085, -0.010768459, -0.011684213, 0.026790803, -0.009344696, -0.0016485234, 0.010654826, -0.026082264, 5.7234593e-05, -0.007245816, 0.00901048, -0.00785409, 0.0033789298, -0.0370312, -0.0350259, -0.033555347, -0.032860175, 0.010474348, -0.01511996, -0.012245696, 0.0070920764, -0.009531857, -0.019384563, 0.015226909, -0.0062531927, 0.011249731, -0.002112249, -0.0023879777, 0.004267946, 0.018234858, -0.008629473, 0.008395521, -0.022445988, 0.01681778, -0.0033555347, -0.005654945, -0.006821361, -0.023702642, -2.4974857e-05, -0.013341927, 0.009063954, 0.005253885, -0.017165365, 0.003846833, 0.005193726, 0.01882308, -0.004488529, 0.0010277161, -0.006139559, 0.014424789, -0.013542457, 0.025360355, 0.02941106, -0.014652056, -0.037352048, 0.015841868, 0.023127789, -0.021242807, -0.0024414524, -0.008816634, 0.010046551, 0.009150851, -0.0017178734, 0.033047337, -0.01151042, 0.006320036, -0.002210843, -0.009438277, 0.051282197, -0.006704385, -0.03334145, 0.017780323, -0.028341569, -0.020694692, -0.12192222, -0.004328105, 0.0039069923, 0.05232495, 0.04045358, 0.04122896, -0.02511972, 0.029571485, -0.011884742, 0.015066485, 0.0023044236, -0.008957005, -0.012740337, -0.007686982, 0.034491155, -0.0025600991, -0.0015357253, -0.01481248, -0.019865835, 0.015507651, -0.017178733, -0.036576666, -0.000116662486, 0.005918976, -0.0053641764, -0.009551911, -0.016537037, 0.023756117, -0.009117429, 0.020855116, -0.014491632, 0.019304352, 0.01760653, -0.0152670145, -0.019638568, 0.008783212, -0.027191862, -0.016443457, 0.018448757, -0.053234022, 0.012319224, 0.018983504, 0.011938217, -0.03665688, 0.0015465873, -0.003927045, -0.010354031, 0.020373844, -0.016296402, -0.014464894, -0.0061295326, -0.010186922, -0.019491512, -0.0040674163, 0.002855881, 0.012987657, 0.006617489, -0.0011321588, -0.014785742, -0.016109241, 0.00458211, 0.010828618, -0.018582443, -0.011844637, -0.002919382, -0.015962185, -0.0133820325, -0.014491632, 0.0030480553, -0.021470075, -0.01950488, 0.024344338, -0.037485734, 0.011416839, -0.025146458, 0.04414333, -0.027231969, -0.024170544, 0.032191742, 0.011055885, -0.029651698, -0.016831148, -0.005858817, 0.00054727966, 0.034544628, 0.0010452624, -0.016737567, -0.00975244, -0.017472845, -0.021389863, 0.009531857, 0.033902932, -0.017325789, 0.0031082144, 0.009745756, 0.039651457, -0.013622669, 0.0011756069, 0.012379383, 0.003930387, -0.0015332187, -0.015668074, -0.046576425, 0.023101052, 0.0010603021, 0.009645491, -0.010922199, 0.0016334837, -0.012693547, -0.025707942, -0.029892333, -0.0005932345, -0.037352048, 0.011985008, -0.014197522, 0.005126883, -0.045105875, -0.041389383, 0.025293512, -0.002150684, 0.031443097, 0.02693786, 0.004287999, 0.018689392, 0.010862039, 0.025400462, 0.0028358279, -0.008021198, -0.010093342, 0.009465015, -0.006196376, -0.026175845, 0.014759005, -0.0036362766, 0.00065506453, 0.00985939, -0.00825515, -0.017887272, 0.012867339, 0.012479648, 0.010454295, 0.005257227, -0.017686743, -0.013001026, 0.0018665998, -0.019438038, -0.033983145, -0.004809377, -0.008789897, 0.018154645, 0.0067177536, -0.014291102, 0.022085033, 0.0038501753, -0.010380768, -0.019732147, -0.014665425, -0.017138628, 0.017873904, -0.014197522, -0.0023428584, -0.03173721, 0.01691136, 0.008275203, 0.0011271455, -0.021750817, 0.012853971, -0.009792547, -0.015053116, -0.016897991, 0.010541191, -0.017406002, 0.029731909, -0.015026378, 0.01911719, -0.01195827, -0.009518489, -0.018689392, -0.017392632, -0.00054811523, -0.01780706, -0.00350259, -0.02101554, 0.021911241, -0.029678434, 0.013181503, 0.013529088, 0.016951466, 0.0012942539, 0.0020086418, 0.008736422, 0.0052004103, -0.0073728184, 0.01692473, -0.013255031, 0.003442431, 0.007506505, 0.032459117, -0.017058415, 0.021429969, -0.0038167536, 0.020667955, 0.022085033, -0.0046857167, -0.014745637, -0.019143928, -7.5877615e-05, -0.022098402, -0.01115615, -0.036175605, -0.0043180785, 0.02001289, 0.0056883665, 0.014852586, 0.008268518, 0.002575139, 0.0012198907, -0.00068639737, -0.031951107, -0.020708062, -0.019705411, 0.026991334, 0.004328105, 0.026683854, -0.013669459, 0.0013844923, 0.025039509, 0.0016351547, 0.021336388, 0.009912864, -0.0029093556, 0.008629473, -0.012853971, 0.025667835, -0.011376733, -0.024050226, -0.0012934182, -0.02002626, 0.0017178734, 0.015494281, 0.019143928, 0.032779966, 0.016403351, -0.014692162, 0.019170664, 0.011336627, 0.037084676, 0.0053608343, -0.00028512854, 0.0043147365, -0.020186683, 0.025106352, -0.012940867, -0.009886127, -0.025801523, -0.015293752, 0.031656995, -0.00088483846, 0.018034328, -0.030346869, 0.021737449, 0.010313924, -0.020694692, 0.019879203, -0.01246628, -0.03213827, -0.010340662, 0.015721548, -0.003562749, -0.021282913, -0.0312292, 0.0043548425, -0.012767075, -0.012225644, -0.008843372, 0.020641217, -0.0030630953, -0.02553415, -0.022873785, 0.0060125566, -0.01401036, -0.014023729, 0.021764185, -0.013575879, -0.027272075, -0.009157535, 0.0055914437, -0.007947671, 0.0019601805, -0.014652056]" 28213587,Zink (OpenGL over Vulkan) allocator improves performance in 1000% in some games,https://cgit.freedesktop.org/mesa/mesa/commit/?id=40fdb3212c3ded2150faf952dc2b669991bfbf94,220,1629227093,65,marcodiego,"[-0.018917816, -0.0012241462, 0.009586923, -0.024621608, -0.026044, 0.031605553, -0.035901178, -0.0343081, -0.0024571824, -0.019173846, 0.014188361, -0.0015112916, -0.0053304145, 0.0011085769, -0.01832041, 0.00089921855, -0.0038120109, 0.0059207072, 0.03598652, -0.001982459, 0.01610148, 0.003259056, -0.005383754, -0.0013237137, -0.019643236, 0.01958634, 0.023697052, -0.019927714, -0.034820158, -0.019472549, 0.02807802, 0.006116286, -0.010440358, -0.030240057, -0.037664942, -0.033511557, 0.0031221507, -0.020197969, 0.01738163, -0.0032039382, 0.024308681, -0.021321658, -0.0032750578, -0.016073031, -0.016997585, 0.021634584, 0.0033390655, -0.0065074437, -0.02255914, 0.0011263568, 0.009928297, 0.020852268, 0.008377889, -0.011791631, -0.0016081921, -0.009850065, -0.020894941, 0.018277738, -0.017139824, -0.014451504, 0.0028234483, 0.011876974, -0.015475626, 0.0036982195, -0.013022, 0.012410372, -0.0009787836, 0.016741555, -0.004505427, -0.021975959, 0.029187486, 0.014081682, 0.008747712, 0.014031898, 0.024806518, -0.040651966, -0.028021125, -0.015248043, -0.0018348858, -0.014238145, 0.02676942, -0.011080435, -0.020795373, 0.015802776, 0.011926758, 0.025275908, 0.019614788, 0.017779902, -0.0062834173, -0.024038427, 0.016855346, 0.021719927, 0.014259481, -0.01806438, 0.019458324, 0.007929836, 0.013278031, 0.014316376, -0.025076773, -0.0065927873, -0.00031603774, 0.01824929, -0.018021708, -0.016343286, -0.03743736, -0.014679086, 0.004565879, 0.021264762, 0.020553567, 0.02031176, -0.01563209, 0.015802776, 0.0116351675, -0.014607967, 0.027366824, -0.010347903, 0.023384126, 0.0018900036, -0.011059099, -0.017296288, 0.0017468754, 0.0030421412, 0.0017788791, 0.011165778, 0.028376723, 0.0056468965, -0.032743465, -0.029614205, 0.011976542, -0.011059099, 0.016599316, 0.01015588, -0.006336757, -0.0031523765, -0.022231989, -0.009878513, 0.0051881755, -0.008299658, -0.019557891, -0.023270335, -0.0044307513, 0.025560386, -0.04176143, 0.0008578802, -0.02194751, 0.023241887, -0.006297641, 0.00801518, 0.0025691958, -0.013960779, -0.0022064857, -0.023313006, 0.00545843, -0.0036484357, 0.004893029, 0.006521668, -0.014863998, 0.0012979328, -0.01567476, 0.006205186, 0.004523207, 0.011699175, -0.012794417, 0.015304939, 0.012837089, 0.03225985, 0.0078089326, -0.009103309, -0.007631134, 0.004480535, -0.0002078026, 0.032658122, -0.033170186, 0.010369238, 0.002915904, 0.022032853, 0.008171643, 0.019714355, -0.013164239, -0.0003158155, 0.008377889, 0.010532814, 0.02122209, 0.0217626, -0.037408914, -0.0006676353, 0.01965746, -0.0036768836, -0.023512142, -0.0027238808, 0.011393361, -0.0011485816, -0.024223337, -0.025147893, -0.5994529, -0.023569038, -0.02543237, -0.01411013, -0.00038382362, 0.02391041, 0.005952711, 0.0112866815, -0.021051403, 0.009615371, -0.031946927, 0.02365438, -0.02585909, -0.004338296, -0.0056789005, -0.016257942, -0.0042138365, -0.024280233, 0.0055082133, -0.015945015, -0.012666401, 0.00013712748, -0.002878566, 0.004647666, 0.015276492, 0.009238437, 0.024806518, -0.028817665, 0.001986015, 0.01628639, -0.0144870635, -0.010675053, -0.0035666483, 0.02300008, 0.051604386, -0.024536263, -0.039201126, 0.026058223, 0.0019362313, 0.019017383, -0.04272866, -0.02234578, 0.01940143, 0.010995091, 0.024166442, 0.015831225, 0.0322883, 0.024351353, -0.0062834173, -0.036555476, -0.001071239, -0.012765969, 0.03797787, 0.030809013, 0.0016064141, -0.0105114775, 0.02440825, 0.017936364, 0.013292254, 0.0051063877, -0.026541837, 0.04984062, -0.00680259, -0.035047743, -0.020951835, -0.001084574, -0.012211236, 0.00823565, 0.012026326, 0.019998834, 0.009714938, 0.008171643, 0.0015681873, -0.027011227, 0.010838628, 0.014195473, 0.030012473, 0.010042088, -0.0027683307, -0.0029319057, 0.0217626, -0.010895523, -0.02775087, -0.009800281, 0.05035268, 0.009231325, -0.009565587, -0.017936364, 0.017438527, 0.0044307513, 0.027765093, 0.009672266, -0.018334635, -0.046995837, -0.007737813, 0.04207436, -0.024550488, 0.020994507, 0.019273413, -0.01958634, -0.016371733, -0.0035595363, -0.012431707, 0.019899266, 0.035531357, 0.001820662, -0.029813338, -0.017026033, 0.020141073, -0.018348858, -0.0055117696, -0.013512725, 0.012936656, -0.015447179, -0.018220844, -0.03123573, 0.041192476, 0.0049250326, -0.00896107, -0.025830641, 0.02615779, -0.009707826, -0.010611045, 0.013761643, 0.018804023, -0.014963565, 0.018917816, -0.017182497, -0.0028839, -0.016485525, 0.01846265, 0.004135605, 0.034052067, -0.011194226, 0.010966644, -0.013498501, -0.005789136, -0.001986015, -0.0052806307, -0.036327895, -0.0013708305, 0.0042707324, -0.0022793834, 0.001994905, -0.011229786, -0.023881964, -0.012374812, -0.0253897, 0.0022704934, 0.017125601, 0.012829977, -0.010568374, -0.011692063, 0.0011530266, 0.0181355, -0.021321658, 0.014273705, -0.023284558, -0.001986015, -0.008648144, -0.0016659767, 0.00787294, -0.009046414, -0.0015788552, -0.012595282, -0.022146646, 0.013740308, 0.003248388, -0.0038084548, -0.02814914, -0.0016970916, 0.0052948548, -0.020937612, -0.0042636204, -0.025147893, -0.012467267, -0.018476874, 0.014558183, -0.037892528, -0.009878513, 0.0010543482, 0.026556062, -0.018007483, -0.0024162887, 0.036185656, 0.028234484, 0.011350689, 0.001955789, 0.017367408, 0.010113208, 0.0115356, 0.029984025, -0.023497919, 0.014472839, -0.011372025, 0.029045247, 0.0062300777, -0.017125601, 0.008363666, 0.010731949, 0.04031059, 0.011158667, 0.0017619883, 0.01610148, 0.01019144, -0.03652703, 0.010625269, -0.0155325215, 0.037636496, 0.0024056206, 0.001962901, -0.03399517, -0.017310511, 0.00030514755, 0.029784892, 0.025958655, 0.010049201, 0.02550349, -0.00014223921, -0.011869863, -0.0021104743, 0.0046369983, 0.011969429, 0.025588835, -0.018547993, 0.005021044, 0.028348275, 0.023668604, 0.0077662608, -0.009153093, 0.0005391755, 0.015617865, -0.00323772, 0.0006467439, 0.034450337, 0.0036982195, 0.04878805, -0.0058709234, 0.026897434, -0.0019024494, 0.0016535309, 0.036242552, 0.0067634746, 0.0018686677, 0.017210945, 0.010454582, 0.022217765, 0.025659954, -0.022530692, -0.0016615317, -0.018263515, -0.0034813047, -0.0018740016, 0.017395856, 0.012716185, 0.0072790915, 0.011990765, 0.012353475, 0.022943186, 0.0056433408, 0.014750206, 0.0020802484, 0.001619749, -0.027324153, 0.0024038428, -0.0010347903, 0.0012970439, -0.017097153, 0.0049357004, -0.020084176, -0.028163364, 0.01186275, -0.03362535, -0.004192501, 0.01095242, -0.002551416, 0.007737813, 0.013726084, 0.009736274, 0.0054975455, -0.04116403, -0.018875143, 0.010931083, 0.04127782, -0.02292896, -0.013846987, -0.011770295, -0.002907014, 0.0042351726, -0.0024482924, 0.027793542, -0.0010801291, 0.004708118, 0.005789136, -0.035559803, -0.0027612187, 0.024280233, -0.02365438, -0.009416236, -0.01295088, -0.0010330123, 0.01715405, -0.0044307513, 0.051120773, 0.056070697, -0.011656503, 0.00014157247, 0.011037763, -0.037778735, -0.016912242, -0.0034973067, -0.017410079, -0.0017006475, -0.00896107, 0.009153093, -0.0033532893, -0.019372981, -0.021193642, 0.044008814, -0.008833055, -0.010603934, -0.0051739514, -0.020482447, 0.022616034, 0.0051419474, 0.047650136, -0.016229494, -0.00031870473, -0.0036946635, 0.013214023, -0.013078895, -0.02361171, -0.0045836587, 0.004708118, 0.01864756, -0.011457369, -0.021975959, 0.0030919248, 0.022388453, 0.00021458119, 0.012125893, -0.018633336, 0.017538095, -0.02470695, 0.016073031, 0.024493592, -0.002178038, 0.027807767, 0.01970013, 0.006141178, -0.010312343, 0.010077648, 0.023896188, -0.01780835, -0.035502907, -0.013832764, -0.0001507958, 0.010027864, -0.018192396, 0.034507234, 0.04432174, -0.022502244, 0.018163947, 0.0032057161, -0.012232572, 0.0060593905, -0.0014188362, 0.0029816895, 0.0058780354, 0.0040787095, -0.011293793, 0.01635751, 0.0046441103, -0.020084176, 0.026271582, -0.011044875, -0.026868988, -0.015376058, 0.0037088874, 0.0012170343, 0.0067314706, 0.013548285, -0.01563209, -0.019757027, -0.006710135, -0.033710692, 0.020823821, -0.012197012, 0.03006937, 0.0044449754, -0.0064256564, 0.0019984609, -0.022488018, 0.018035932, -0.006301197, -0.011016427, -0.042330388, 0.0020660246, 0.001449062, 0.009423348, -0.0034901947, -0.009003742, 0.0034795266, 0.014792878, 0.012488603, -0.04113558, 0.010362127, -0.04378123, 0.019060055, -0.02676942, -0.0019344533, -0.0025958656, -0.012410372, 0.0053375266, 0.025830641, 0.007631134, 0.019088503, -0.011628056, 0.01588812, 0.012239684, 0.032658122, -0.0028572301, 0.014302153, -0.013470054, 0.01055415, 0.0019006715, -0.0017415413, -0.00547621, -0.023369903, -0.013299366, 0.00179577, -0.0036982195, -0.0018313299, -0.012872648, -0.010077648, -0.027864661, -0.025759522, 0.004309848, 0.0071937484, -0.016314838, -0.006710135, 0.012730409, -0.03957095, -0.0062834173, 0.021805272, -0.03388138, -0.003822679, 0.0035808722, -0.01689802, 0.017495424, 0.0005787358, -0.02386774, -0.021122523, 0.025603058, -0.019984609, 0.04298469, -0.0074960063, -0.023953084, 0.016058806, -0.02763708, -0.010098984, -0.016883794, -0.015617865, -0.0046369983, -0.008114747, 0.025304357, 0.0052557387, -0.0074106627, -0.0112084495, -0.030353848, -0.022715602, 0.0033497335, 0.01860489, 0.022175092, 0.001607303, 0.0017388744, 0.014607967, 0.0015690763, -0.016627764, -0.031747792, -0.03544601, -0.036043417, 0.012346364, 0.008875727, 0.019429876, 0.019671682, -0.0030119154, 0.012346364, -0.009522915, 0.011229786, -0.0009912295, 0.030524535, -0.03615721, 0.013505613, 0.0025585277, 0.014920893, 0.0026687633, -0.028504739, 0.027167689, 0.016798452, -0.015575194, 0.011521376, -0.014622191, -0.02887456, -0.00082143146, -0.05177507, -0.017580766, 0.0016615317, -0.023327231, -0.035161532, 0.030894358, -0.0011708065, 0.04113558, 0.0011601385, -0.0014881778, -0.019415652, 0.051519044, 0.01853377, 0.034962397, 0.0076240217, -0.006336757, -0.019486772, 0.0023753948, -0.011414696, -0.0043525198, 0.013975003, 0.022857841, -0.0028092244, 0.009245548, 0.022075526, -0.031321075, -0.027309928, 0.0303254, -0.02615779, -0.012559722, -0.023682829, -0.0037159994, -0.008712152, -0.0048503573, 0.01127957, -0.01977125, 0.018846696, -0.014010563, -0.005618449, -0.013462941, 0.004501871, 0.03848993, -0.002713213, 0.011955205, 0.0120476615, -0.007965396, -0.032914154, 0.01970013, 0.03225985, 0.0011254677, 0.011599608, 0.018661784, -0.02216087, 0.0024091767, 0.00076942524, 0.0026314254, -0.012879761, -0.03180469, 0.002693655, 0.024977205, 0.012901097, -0.005924263, 0.008513017, -0.013889659, -0.01269485, -0.0019148954, -0.0036395458, -0.020468222, -0.014053234, -0.0067954785, 0.03851838, 0.00544065, -0.0031541546, 0.021606136, -0.0009645597, 0.003052809, -0.00090544147, -0.0020073508, 0.032117613, -0.0045872144, 0.02611512, -0.038945097, -0.00093433383, 0.024379801, 0.009131758, -0.020667357, -0.018377306, -0.00027425497, 0.028561633, -0.02016952, 0.0010587932, -0.008128971, -0.011037763, 0.036214102, -0.009501579, -0.01548985, -0.022857841, -0.005650453, 0.0057464642, 0.016428629, -0.013434494, -0.009508692, -0.012545498, -0.021520793, 0.0031826023, -0.024109546, -0.0038404588, 0.017538095, -0.051263012, -0.0017406524, -0.010170104, -0.006902158, 0.0029319057, 0.02477807, -0.022516467, 0.016670436, 0.02590176, -0.012275244, 0.04207436, 0.029301278, 0.007047953, -0.044776905, 0.016670436, 0.004572991, -0.01443728, 0.023099648, -0.036071863, -0.03558825, -0.0051988433, -0.004893029, 0.0024376244, 0.014977789, 0.0053659743, 0.019998834, -0.002563862, 0.029756444, -0.015831225, 0.0035204205, 0.016670436, -0.04167609, 0.013832764, 0.021719927, 0.0050317124, 0.00754579, -0.017950589, -0.0051917313, -0.0074888943, -0.00972205, -0.030609878, 0.019543668, -0.009949633, -0.0155325215, -0.0071724122, -0.003772895, -0.017836798, 0.0065750075, -0.021776823, -0.0042316164, -0.011364913, 0.00972205, 0.020340208, 0.001449951, 0.020354431, -0.009707826, -0.013512725, -0.004708118, -0.0077235894, -0.025759522, -0.036555476, -0.020752702, 0.035872728, -0.0041889446, -0.007382215, -0.010923971, 0.022260437, -0.043752782, -0.0021602581, -0.019003158, 0.024180666, 0.010198551, 0.0023931747, 0.0013681634, 0.014679086, -0.01733896, 0.0164713, -0.026598733, -0.02873232, 0.013846987, 0.013548285, 0.028604306, 0.011194226, -0.011393361, -0.030922804, 0.02915904, 0.007951172, 0.017552318, 0.047280315, 0.0071653, -0.0148355495, 0.03638479, 0.020596238, 0.0028234483, -0.0022100417, 0.023384126, -0.018434202, -0.008648144, 0.021975959, 0.018405754, -0.0076169097, 0.003426187, -0.0047827936, -0.005127724, 0.00358265, -0.0013601625, 0.008648144, 0.0104474705, -0.0069661653, 0.009110422, -0.004910809, 0.0018615557, 0.012509938, 0.031548657, -0.017310511, 0.0034919726, 0.03376759, -0.027011227, 0.0065998994, 0.014287929, -0.0022224877, 0.0105897095, -0.0028732321, 0.004665446, -0.0053624185, -0.0035933182, 0.0009912295, 0.001449062, -0.022872066, 0.022601811, 0.0042387284, -0.010682165, -0.0035524243, -0.0046049943, -0.010959531, -0.014231033, -0.0065998994, -0.041192476, -0.009594034, -0.0052237352, 0.004124937, -0.018163947, -0.052201793, 0.00038804635, -0.013064671, 0.0029727996, 0.0047863494, 0.17284909, 0.0018028821, 0.024123771, 0.028632753, -0.02964265, -0.021421226, 0.013078895, 0.0024305126, 0.012531275, 0.036185656, -0.033198632, 0.014095906, -0.023682829, -0.010547037, 0.0037586712, -0.0017877691, -0.034251202, -0.02419489, -0.027295705, 0.038433034, 0.014735983, -0.015646312, -0.0016064141, -0.027608631, 0.05328281, -0.017495424, -0.0052948548, -0.0074675586, 0.020354431, -0.010369238, -0.039826978, -0.0021318102, 0.0011512486, -0.0076595815, -0.010426134, -0.005245071, 0.01229658, -0.03280036, 0.0048076855, 0.019287637, 0.0022064857, -0.013704748, -0.0068808217, 0.0115356, 0.0008529908, 0.016329061, -0.013462941, -0.016201045, -0.007001725, 0.015987687, -0.033596903, -0.0036591038, 0.025716849, -0.012701961, -0.0010650161, -0.04312693, -0.008313882, -0.01799326, 0.018434202, 0.010148767, 0.013342038, 0.025887536, -0.026868988, 0.040936444, -0.005415758, 0.021079851, -0.03217451, 0.0074817827, 0.010326567, -0.011741847, 0.009330892, -0.022729825, -0.0105897095, -0.00026492053, -0.023028528, -0.02361171, 0.043070033, -0.0040787095, 0.017410079, 0.012403259, -0.0030083593, -0.0144230565, 0.00078987214, 0.0048254654, -0.016954914, -0.02840517, 0.03720978, 0.020325983, 0.012097445, -0.013832764, -0.009508692, -0.015347611, -0.0002502521, 0.007830269, 0.025190564, 0.0042209486, 0.026527613, 0.021847943, -0.033027943, -0.023668604, 0.0035435343, 0.06753518, 0.017637663, -0.018391531, -0.010347903, -0.0052237352, -0.009131758, -0.0018259959, -0.003404851, 0.0025851976, -0.03718133, -0.026669852, -0.003059921, -0.008079187, 0.016969139, -0.00469745, 0.02136433, -0.0014383941, 0.008143195, -0.011051986, 0.013050448, -0.01595924, 0.046654463, -0.007936948, -0.019358756, -0.022943186, -0.05365263, 0.019358756, 0.008897062, -0.02531858, 0.015219595, 0.024735399, 0.015703209, -0.024024203, -0.028518962, -0.025147893, -0.0022811613, 0.019714355, -0.023128096, -0.00899663, 0.026868988, 0.030410744, 0.009850065, -0.0024731844, 0.0025460818, -0.020525118, 0.021776823, 0.021335881, 0.0023024972, -0.018932039, -0.04776393, 0.02267293, 0.008043627, -0.0033781813, 0.013832764, -0.031605553, -0.024607385, -0.04181833, 0.007403551, 0.020098401, -0.009942521, 0.028319826, 0.011962318, 0.007844493, -0.012068997, -0.0037586712, -0.18263514, -0.0009574477, 0.0025087441, -0.005063716, 0.040907998, -0.0099567445, 0.026470717, 0.015134253, 0.014501288, -0.025219012, 0.011820079, 0.00019013383, 0.002718547, -0.0155325215, -0.0030332513, 0.005899371, 0.003427965, 0.01298644, 0.023625933, -0.00029781336, 0.029187486, -0.029813338, -0.014359049, 0.020212192, 0.009629595, -0.0044769794, 0.012389035, 0.0015184035, -0.010646605, -0.03018316, -0.014501288, -0.003579094, 0.015831225, 0.011756071, 0.016115703, 0.019031607, -0.0048005735, 0.002853674, -0.0024767402, 0.025731074, 0.0058033597, 0.006098506, 0.019813921, -0.013953667, -0.005988271, 0.0065323357, 0.014863998, -0.0283625, 0.014536847, -0.0065465597, 0.017253617, -0.03399517, -0.0048325774, -0.0008405448, 0.021890614, 0.005177507, -0.004996152, 0.017936364, 0.013242471, -0.002370061, -0.01548985, -0.0037088874, 0.016784227, -0.0037515592, 0.004331184, -0.0111444425, -0.0013014888, 0.018149724, -0.022530692, -0.00034115187, 0.0026065335, -0.0071084048, 0.008057851, -0.004306292, 0.038433034, 0.0089112865, -0.024294456, -3.067033e-05, -0.0095442515, -0.0076595815, -0.0058851475, 0.04935701, 0.0010063425, -0.014195473, -0.0026154234, 0.010362127, 0.0033052836, 0.0012365922, 0.025076773, -0.027765093, 0.01965746, -0.014494176, 0.0092597725, -0.0148355495, 0.0049641486, 0.015404507, 0.0009814505, -0.0234268, 0.012936656, -0.018547993, -0.008818831, -0.010682165, -0.027722422, 0.0006049611, 0.019742802, 0.020269088, -0.01222546, -0.0027309929, 0.021193642, 0.008392113, 0.004878805, 0.0072115283, 0.007531566, 0.012737521, -0.014792878, 0.020510895, 0.012140117, -0.03177624, 0.032999497, -0.027068121, 0.03917268, -0.0007391994, 0.0049570366, 0.03282881, 0.0040147016, -0.047337208, -0.092512384, -0.02829138, -0.004487647, 0.022786722, -0.012474379, 0.02908792, -0.0035310884, 0.008804607, 0.0010499032, 0.011023539, 0.00019002269, -0.025076773, -0.013534061, -0.016926466, 0.006336757, 0.009572699, -0.03629945, -0.016741555, -0.03979853, 0.03848993, -0.014067458, -0.020525118, 0.009842954, -0.009273997, -0.010347903, -0.002332723, -0.015703209, 0.01766611, 0.02829138, 0.012460155, 0.019856595, -0.011628056, 0.013228247, -0.012125893, -0.02300008, -0.008719264, 0.003979142, -0.02354059, 0.02445092, -0.011734735, 0.003957806, 0.03126418, 0.026641404, -0.030097818, -0.03137797, -0.0016490859, -0.037408914, 0.031178836, 0.016513972, -0.02031176, -0.010980867, 0.0057535763, -0.029329725, -0.018220844, 0.008484569, -0.0063972087, 0.022488018, -0.0026527613, -0.048475124, -0.00016501971, -0.008783272, 0.021791046, 0.035275325, 0.00069074915, -0.01726784, -0.010269671, -0.02513367, -0.016087255, 0.020013057, -0.022601811, -0.01012032, 0.032089166, -0.01146448, 0.003957806, -0.018419977, 0.0029212378, -0.014863998, -0.0023184991, 0.022544915, -0.01193387, -0.012275244, -0.009202877, -0.014679086, 0.0026011996, 0.009537139, 0.02585909, 0.014053234, 0.0077235894, 0.018348858, -0.05379487, -0.024749624, 0.03612876, -0.016684659, -0.022103973, -0.019358756, -0.0026509834, 0.028206035, -0.0039080223, 0.004508983, 0.023526365, -0.050068203, 0.009942521, -0.06975411, 0.032914154, 0.0064825523, -0.01694069, -0.020297535, -0.014380384, 0.022971632, -0.017836798, 0.003059921, 0.0037266673, -0.032999497, 0.016016135, -0.0068310383, -0.0044271955, 0.005614893, -0.009906961, 0.012353475, -0.016883794, 0.02585909, 0.031008149, 0.005774912, 0.024379801, -0.005237959, 0.0020233528, -0.027693974, -0.0035186424, -0.025190564, -0.0040467056, -0.005216623, -0.006187406, 0.006137622, -0.01222546, 0.0040431498, 0.012417483, -0.005525993, 0.010148767, -0.0009192209, 0.01073906, 0.016257942, -0.0036484357, 0.008591249, -0.011073323, -0.0035257544, -0.0018544437, -0.01443728, -0.004704562, -0.00023024973, 0.01951522, -0.0091957655, 0.026883211, 0.0105114775, 0.01738163, -0.028319826, -0.04062352, -0.03189003, 0.013989227, 0.0021051404, -0.009522915, -0.012068997, -0.021435449, 0.05262851, 0.023625933, 0.019927714, -0.018405754, 0.015845448, 0.020397102, -0.025275908, 0.03379604, 0.029386621, -0.027708199, -0.012758858, -0.019728579, -0.0075244545, 0.031861585, -0.00078409363, 0.005437094, -0.024322905, 0.01258817, -0.012083221, 0.019472549, 0.014095906, -0.006635459, -0.0144870635, -0.0024927421, 0.019387204, -0.011741847, -0.008861503, 0.018704457, -0.013022, 0.015304939, -0.045004487, 0.026627181, -0.0005587334, -0.011955205, 0.012389035, 0.02194751, 0.002000239, 0.02550349, 0.026684076, 0.008982406, -0.033056393, 0.004516095, -0.009942521, -0.03467792, 0.0071688564, 0.02463583, -0.044293292, -0.019031607, -0.004722342, 0.007816045, 0.025531938, -5.475654e-05, -0.01403901, 0.013740308, -0.027039675, 0.009273997, 0.011350689, -0.015916567, -0.0058282516, 0.019984609, 0.010596821, 0.026826315, 0.0024571824, 0.011151554, 0.016841123, -0.0061020623, 0.021634584, -0.015304939, 0.014863998, -0.00018846696, -0.007229308, 0.009281108, -0.020283312, -0.016556645, -0.0015032907, -0.011578272, 0.009530027, 0.029244382, 0.009096198, 0.10565529, 0.028831888, -0.001987793, 0.014821325, 0.015048909, 0.01182719, 0.018035932, -0.004167609, 0.019202294, -0.022687154, -0.0029052359, -0.011613832, 0.019899266, -0.008861503, -0.004647666, -0.008825943, -0.015276492, -0.0059776027, -0.0010374573, -0.021435449, 0.014935117, -0.014380384, 0.026556062, 0.019870818, -0.018377306, -0.021577688, 0.035645146, 0.02115097, -0.0072115283, -0.030097818, 0.007993843, -0.00071475207, -0.0253897, -0.028959904, -0.01476443, 0.001609081, -0.016855346, 0.0082925465, 0.016983362, -0.0056931246, 0.001252594, 0.008342329, -0.025233237, -0.024251785, 0.041562296, -0.009714938, -0.019486772, 0.004508983, -0.04722342]" 21921492,"Google to end 'Double Irish, Dutch' tax scheme: filing",https://www.reuters.com/article/us-google-taxes-netherlands/google-to-end-double-irish-dutch-tax-scheme-filing-idUSKBN1YZ10Z,128,1577805423,130,thefounder,"[-0.014223409, -0.014596308, 0.021002168, -0.040086575, -0.0057765953, -0.002402198, -0.013997006, -0.0145164, 0.0023322795, -0.041897796, 0.030977199, 0.001766273, 0.0068153837, 0.027914107, -0.0071250224, 0.021095393, 0.01494257, -0.021015486, 0.013537542, -0.0040752464, -0.020229736, -0.0040885643, -0.009222575, 0.005560181, 0.008070586, -0.006399202, 0.017579494, -0.015981358, -0.0023272852, 0.0071782935, 0.0062760124, -0.00616947, -0.018844685, 0.0068453485, -0.021734647, -0.018951228, 0.017899122, -0.0032145837, 0.034839362, -0.014955888, 0.005943068, 0.0028533384, -0.012012654, -0.030337945, -0.01203929, 0.01567505, -0.0014491429, -0.019803567, 0.0017812556, 0.018604964, -0.003309473, 0.05833196, -0.015661731, -0.02481106, -0.021867825, -0.011673051, -0.01820543, 0.010248046, 0.0023239558, -0.0033177966, -0.0038854678, 0.0034226743, -0.013903782, 0.022680212, -0.019710341, -0.023399372, -0.018565012, -0.012119196, 0.0141168665, 0.015834862, 0.049462304, 0.012385553, 0.00429499, 0.00447811, 0.016300986, -0.02322624, -0.0066688876, 0.009628768, 0.0075711687, 0.0007857501, 0.010307976, -0.0047078417, 0.006182788, 0.0005127353, 0.030817386, 0.009122692, -0.0056001344, 0.012618614, -0.019350762, 0.022733482, 0.0073114713, 0.04125854, 0.025556855, 0.013038125, -0.027621115, 0.0062959893, -0.03902115, 0.03577161, -0.012891629, -0.014170138, 0.008789747, -0.017100053, -0.015328786, -0.025943073, -0.011000502, 0.0068453485, -0.0011261863, -0.023199605, -0.009155987, -0.010667557, 0.006086234, 0.005250542, 0.02322624, -0.03760946, 0.002195772, -0.004914268, -0.011866159, 0.0033510912, -0.0041718003, -0.01700683, 0.019736977, 0.00810388, -0.009062762, -0.0047278185, 0.03182954, 0.005779925, -0.007877478, -0.019337444, 0.0005751624, -0.021867825, 0.0051506585, -0.009588815, 0.011400036, 0.0049941745, -0.013770604, 0.026955225, -0.020043287, -0.007031798, -0.030524395, -0.04203097, 0.0196038, 0.004065258, -0.010660898, 0.0035491933, 0.0031113706, 0.02624938, 0.0005256369, 0.0078575015, 0.040912278, 0.0013209592, -0.004561346, -0.03526553, -0.0071449988, 0.00574663, 0.020722495, -0.0014058601, -0.0022107547, 0.015288833, 0.004314967, -0.01887132, -0.019670388, 0.008936243, -0.0026535713, 0.009182622, 0.010014985, 0.043522567, -0.020789083, 0.006345931, 0.00335775, -0.014449812, 0.006462462, -0.0067121703, -0.027914107, 0.00035791585, 0.0025237228, 0.022307312, -0.0139171, 0.0052838367, -0.017459635, -0.022520397, 0.009322459, -0.009448978, 0.020882308, 0.026449148, 0.026662232, -0.0020076581, -0.006066257, -0.0075711687, -0.01470285, -0.028047284, 0.002710172, -0.00087148347, -0.009029468, -0.011000502, -0.6418114, -0.0021624775, 0.029805234, -0.027487937, 0.022187453, 0.011479942, 0.013417683, -0.0037456308, -0.033480946, 0.0049741976, -0.015115702, 0.015102384, -0.0066522406, -0.0059597148, -0.022840025, -0.011027138, 0.005180624, -0.0044381563, 0.009402365, 0.029965047, 0.0037889138, 0.015501917, 0.0025936414, -0.0078575015, -0.0018128854, 0.012452141, 0.015874816, -0.014436494, -0.0042184126, 0.02474447, -0.022840025, -0.016380893, 0.029325793, 0.004384885, 0.04482771, 0.009595474, -0.0149692055, 0.008496756, 0.013304481, 0.03116365, -0.028553361, -0.020256372, 0.010481108, 0.01143333, 0.00082320644, 0.013564178, 0.026608963, -0.00081363425, 0.021974368, -0.00091143686, 0.005546863, -0.0051439996, -0.026862, -0.008902948, 0.03036458, -0.006339272, -0.00033918768, -0.024091898, 0.015555189, 0.0149692055, -0.00998169, -0.019736977, 0.0032562017, -0.014196773, -0.020549363, 0.004338273, -0.005094058, 0.00804395, 0.042244058, 0.016980194, -0.0013584155, 0.030764114, 0.0017263197, -0.00888963, -0.0007928252, 0.017073417, 0.025783258, 0.0052671893, 0.013810557, 0.00864991, -0.026222745, -0.0105676735, 0.00082736823, 0.0025670058, 0.025130685, 0.0034193448, -0.011766275, -0.015968041, -0.009522226, -0.004641253, -0.0017762614, 0.020536046, -0.0010912272, -0.046505753, -0.00016865744, 0.0049741976, -0.032788422, -0.013177962, 0.0021325126, -0.0097286515, -0.02358582, 0.008063927, 0.0098019, -0.0023805564, 0.045946404, 0.028127192, -0.013231233, 0.016593978, 0.01827202, -0.02486433, -0.02614284, -0.018125525, 0.0036857007, 0.032388885, -0.020922262, -0.018418515, -0.005160647, -0.019084405, -0.010674216, 9.161189e-05, -0.0072448826, 0.0050407867, 0.01644748, -0.015195608, -0.0030747468, 0.013863828, 0.012964877, -0.022014322, -0.007071751, -0.0074446495, -0.0065656747, 0.0046312646, 0.026928589, -0.0151290195, 0.016900286, 0.034839362, -0.005879808, -0.013431, 0.0035991352, -0.020615952, -0.010274681, -0.017872486, 0.0039786925, -0.008743135, -0.012918265, -0.0063858842, -0.018964546, -0.0095555205, -0.015155655, 0.021614788, 0.023918767, 0.0021591482, 0.00196604, 0.012032631, -0.0063958727, -0.0013192944, -0.004847679, -0.026728822, -0.022147499, -0.0147960745, 0.022640258, 0.0006504912, -0.0068586664, -0.01567505, -0.0013467624, -0.010181457, 0.0002661479, 0.008576662, -0.023266194, -0.0071250224, -0.0045180633, -0.023692364, 0.006945232, -0.010774099, 0.0035791583, 0.013863828, 0.011273516, 0.009915101, -0.005270519, -0.02322624, -0.011946065, 0.000615532, -0.020762447, -0.01760613, 0.022853343, -0.0071183634, 0.0016888634, 0.029592149, -0.010301317, 0.016740473, 0.0010063262, 0.015408693, 0.008443484, -0.00040702522, -0.014210091, 0.0035824878, 0.011573167, 0.01717996, -0.0032861668, 0.015395375, 0.009069421, 0.044747803, -0.010640921, 0.01760613, 0.010834029, -0.009362413, 0.012984854, -0.018951228, 0.016673883, 0.017313138, 0.013863828, -0.028793082, -0.00707841, -0.0034393214, -0.021694694, 0.0038588322, -0.0035425345, 0.0021524893, 0.01578159, 0.010221411, 0.009149328, 0.007824207, 0.0107341455, -0.0029731987, -0.018138843, -0.008296989, -0.015208926, 0.0024937578, 0.0015998005, -0.05742635, 0.0035824878, 0.009076079, -0.018538376, 0.010820711, 0.013797239, 0.040379565, 0.0033810562, -0.015808227, 0.027807564, -0.021388385, 0.00029944238, 0.01010155, 0.037209928, 0.0035658407, -0.004125188, 0.0038222081, 0.050634272, -0.0030564347, -0.021934414, 0.024611292, -0.019337444, -0.00031276018, -0.015168972, -0.0014816051, 0.022280676, -0.011899453, 0.008916266, 0.03507908, 0.013743969, 0.027567843, 0.017446317, -0.0068919607, 0.021814555, -0.0006513236, 0.007211588, 0.013517566, 0.020349596, -0.0019893462, 0.0093823895, 0.001058765, -0.015861498, -0.0012810058, 0.007085069, -0.0021008828, 0.007850843, -0.00013650744, -0.007218247, -0.010607626, 0.0008111372, 0.024025308, -0.0056867, -0.03715666, 0.0014907611, 0.021907778, -0.007271518, -0.010547697, 0.010221411, -0.009975031, 0.000992176, 0.013044784, -0.0059663737, 0.025157321, -0.015834862, 0.039420683, 0.0001040453, -0.032442156, 0.006938573, -0.009662063, -0.01880473, 0.0202031, 0.023878813, 0.006262695, -0.0081904465, 0.020083241, 0.06515067, 0.008430166, -0.0037589488, -0.012785086, 0.0008327786, -0.01524888, -0.010154822, 0.010001667, -0.02691527, 0.01748627, -0.002045947, 0.022999838, -0.0007553689, -0.019643754, 0.016767109, -0.009748628, -0.017233232, -0.020642588, -0.02964542, 0.00020351261, 0.10057601, 0.014276681, -0.010361248, 0.017646084, -0.020056605, 0.008942902, 0.0038788088, -0.03835526, 0.013317798, 0.0012019314, 0.008143834, 0.0063359425, 0.005197271, -0.015475282, 0.027914107, 0.024278346, 0.008743135, -0.026236063, 0.021681376, 0.0060762456, -0.0015973034, 0.00072457147, 0.0038987854, 0.036570676, 0.03230898, -0.003199601, 0.032575335, 0.022666894, 0.008150493, -0.007844184, -0.012072585, -0.014170138, -0.0025253876, 0.016181126, -0.018977864, -0.008330283, 0.012312305, 0.014263363, 0.0043482613, 0.023905449, 0.024118533, 0.0017379727, 0.0037855844, -0.011912771, 0.00053437665, -0.03992676, -0.005596805, 0.008922925, 0.0056234403, 0.0013542536, 0.02165474, -0.021268524, -0.010987184, -0.008263694, 0.011812887, 0.01627435, 0.022147499, 0.001971034, -0.00077159994, -0.026529055, -0.025463631, -0.029432336, -0.0076910285, -0.008596639, -0.009848512, -0.016660566, -0.00071832875, -0.02160147, -0.011906112, -0.0039187623, 0.02056268, -0.03206926, -0.06344599, -8.79703e-05, 0.013377729, 0.003672383, 0.009508908, 0.007677711, 0.0035059105, 0.020842355, -0.0074979207, -0.013704015, -0.02916598, -0.026582327, 0.0048077255, 0.006072916, 0.016833698, -0.0035292166, -0.029325793, -0.0039354097, 0.0010945565, -0.0040019983, 0.0014449812, -0.011140338, 0.011912771, 0.013690697, 0.029805234, 0.0021042123, -0.0001706343, 0.004215083, 0.0019693696, 0.008536709, -0.01578159, -0.013564178, 0.011999337, 0.0044614626, 0.03289496, -0.01331114, 0.019763613, -0.014356587, 0.024704516, -0.008823042, -0.008796406, 0.0013692362, 0.008989514, -0.0009813553, 0.0013875482, -0.012605296, -0.0117462985, -0.007677711, -0.019590482, -0.02026969, 0.0023139676, 0.035185624, -0.028686538, 0.025876483, -0.017646084, -0.0073913783, -0.008989514, -0.0258898, -0.007950726, 0.0023272852, 0.00051481614, -0.006738806, 0.00026656408, -0.031776268, -0.012125855, -0.014369905, -0.03598469, -0.011180292, -0.004847679, 0.005753289, 0.01615449, -0.024131851, 0.0015090731, -0.02425171, -0.011027138, -0.0073780604, -0.011606461, 0.0509539, 0.015342104, -0.007890795, -0.015422011, 0.008450143, 0.0038188787, -0.03268188, 0.0120859025, -0.041711345, 0.010700852, 0.02614284, 0.021641422, 0.0015864827, -0.016900286, 0.040432837, 0.005107376, -0.0092159165, 0.005064093, 0.015541871, -0.014236727, -0.008083904, 0.0024970872, 0.028233733, -0.0005909773, -0.0032944905, 0.007537874, -0.016167808, -0.001070418, 0.028526725, -0.01620776, -0.029086072, -0.024464795, -0.026129521, -0.01905777, -0.010021644, -0.02927252, -0.023918767, 0.013470953, 0.004591311, 0.03843517, 0.00888963, 0.003442651, -0.007737641, 0.046372574, 0.031616453, -0.0017446317, -0.026848681, -0.015022477, -0.01101382, -0.015874816, 0.0042184126, -0.0015656737, -0.004937574, -0.015568507, -0.0015998005, 0.010341271, 0.026395878, -0.017752625, -0.0015240556, -0.0076910285, -0.013903782, 0.0035625112, -0.02438489, -0.0044681216, -0.00036561518, -0.029379064, 0.012179127, 0.0063958727, 0.009961713, -0.019071087, -0.044081915, -0.000992176, 0.006648911, 0.031137014, -0.0073913783, 0.011326788, 0.055774942, 0.0017063429, -0.028579995, 0.004548028, 0.018471787, 0.0033061435, 0.008723158, -0.0011112038, 0.006998503, -0.027487937, -0.004288331, 0.018285338, -0.028846351, -0.012818381, 0.0325487, 0.0073114713, 0.01772599, -0.009182622, -0.02129516, 0.0006800401, 0.03369403, -0.00059888477, 0.003442651, -0.042856675, -0.023426007, -0.008396872, 0.017046783, -0.0071849525, 0.013983688, 0.008070586, 0.008070586, 0.0017795908, -0.030098226, -0.00078075595, 0.029751962, 0.0026901953, 0.014889299, -0.03260197, 0.029512241, -0.025383724, -4.2996722e-05, -0.021987686, -0.00263193, 0.0020775767, 0.015501917, -0.022001004, -0.009635427, 0.019617118, 0.0037090068, 0.00088896306, -0.02122857, -0.019936744, 0.0066822055, -0.018005664, -0.007904113, 0.016247714, 0.005227236, -0.011220246, -0.007904113, -0.006116199, 0.009908442, 0.017086735, -0.0124188475, 0.032335617, -0.003828867, -0.019457303, 0.012904947, -0.0019726988, -0.009675381, -0.0018478446, 0.0075112386, 0.0044814395, 0.004867655, 0.0010987184, 0.019390715, 0.01663393, 0.017952392, 0.0058165486, 0.011120362, -0.0030780763, -0.018485105, 0.03430665, -0.027860835, -0.012132514, -0.0061628115, 0.0010171469, 0.0010962213, -0.0002857084, 0.0017745966, -0.021095393, 0.008603298, 0.0060429513, -0.014449812, -0.0004118113, 0.029245885, 0.008323624, 0.01415682, 0.0031296827, -0.0009980026, 0.0067188293, -0.009595474, 0.0031263533, -0.009768605, -0.032948233, -0.013743969, 0.01076744, 0.023172969, -0.0030281346, 0.025183957, -0.016966876, -0.0033061435, -0.004078576, 0.0033793915, -0.021348432, 0.018818049, -0.0019394044, 0.017752625, 0.018311974, 0.008636593, 0.0029798574, 0.0035758289, -0.017020147, -0.017326456, -0.054656245, -0.008636593, -0.0028067261, 0.033427674, -0.0074513084, -0.014756121, -0.02009656, -0.0077842535, -0.020136511, -0.0050973874, -0.010148163, 0.012811722, 0.041045457, 0.021548199, -0.005233895, 0.025969708, -0.0043416023, 0.024691198, -0.013797239, -0.00925587, 0.022094227, 0.004604629, -0.009249211, -0.001276844, -0.052365586, 0.004241719, 0.03321459, -0.017166642, 0.0113734, 0.03103047, 0.008396872, 0.0026152828, 0.009748628, -0.0068453485, -0.008323624, -0.003792243, 0.023199605, -0.017872486, 0.011653074, 0.005500251, 0.004867655, -0.02208091, -0.0010238058, -0.013637426, -0.008263694, 0.00012818382, 0.002625271, 0.01827202, -0.007617781, -0.017526222, 0.017126689, -0.0015332116, 0.011546532, -0.001458299, 0.024344936, -0.022240724, -0.016833698, -0.020189783, -0.024930919, 0.010327953, 0.009928419, -0.036517404, 0.008949561, -0.0068386896, 0.00490095, -0.0077176644, -0.012378894, -0.038834702, -0.007471285, -0.00768437, 0.008163811, 0.0047278185, -0.033987023, 0.023918767, 0.016833698, 0.020589316, -0.016660566, 0.0002347262, 0.011686368, -0.018058935, 0.0021258537, 0.0066089574, -0.029858505, -0.041658074, 0.015621778, 0.0019460634, -0.014875981, 0.0012094226, 0.21670721, -0.013850511, 0.04021975, 0.017259868, -0.020349596, -0.00040868996, 0.022760117, 0.00847012, -0.0068586664, -0.010114868, -0.040086575, 0.01651407, -0.017752625, 0.0031746302, 0.0019693696, -0.01953721, -0.032628607, -0.03539871, -0.021268524, 0.033427674, 0.012212422, 0.0039187623, -0.014995841, -0.01167971, -8.053106e-05, -0.010534379, 0.0017063429, 0.029006166, 0.034253377, 0.017073417, -0.0073714014, -0.0018545034, 0.0017396375, 0.015342104, -0.0076510753, -0.0077576176, -0.02614284, 0.01796571, 0.008490097, 0.022001004, 0.0035891468, -0.025929755, -0.013417683, -0.021015486, -0.0011336777, 0.0074513084, -0.0015373734, -0.0087098405, 0.014782757, -0.004587982, -0.017446317, 0.011047114, 0.006665558, 0.021122029, 0.0186316, 0.0060163154, 0.004085235, 0.005630099, -0.021082075, 0.016953558, -0.024771105, 0.0113734, -0.010541038, 0.0042650253, 0.0010121526, -7.298778e-05, -0.030018318, 0.011479942, 0.004854338, -0.010454472, 0.029965047, -0.0147960745, -0.007278177, 0.017832533, -0.009628768, -0.030817386, 0.027088402, 0.026955225, 0.01989679, 0.023266194, 0.003672383, 0.022586986, 0.018152159, -0.0037489603, -0.006249377, -0.02595639, 0.03443983, 0.008809724, -0.007338107, -0.0011844517, 0.008137175, -0.0023023144, -0.02226736, 0.010454472, -0.0027301488, 0.016554024, -0.009988349, 0.02322624, -0.030044954, -0.008163811, -0.012212422, 0.026582327, 0.0180323, -3.4074837e-05, -0.0074579674, -0.012998171, 0.024478113, 0.0062327296, -0.0033144671, -0.020908944, 0.027860835, -0.012352258, 0.0278342, -0.014369905, 0.016474117, 0.008809724, -0.00029569675, -0.018285338, 0.006139505, -0.002698519, -0.0070517743, -0.017432999, -0.0031246885, 0.013730651, -0.020216418, 0.0071449988, -0.033480946, 0.005700018, -0.004145165, -0.033241227, -0.018125525, -0.014556354, 0.0017396375, -0.020376232, -0.035718337, 0.026449148, 0.017566176, -0.01851174, -0.0041884477, 0.026302652, -0.01076744, 0.014862663, 0.017313138, 0.00024429837, -0.005413685, -0.02129516, 0.034040295, -0.0028466794, -0.0022956554, -0.018365243, -0.024544703, -0.0034076918, -0.021508245, -0.005044116, 0.019350762, -0.0088829715, -0.023772271, -0.045706686, -4.1032868e-06, 0.037955727, -0.030710844, 0.00010664643, 0.03049776, -0.013011489, -0.028020648, 0.008596639, -0.16876315, 0.01603463, -0.004634594, -0.010487766, 0.034413192, 0.020895626, 0.021588152, -0.02655569, 0.010847347, -0.001171134, 0.003942068, 0.019204266, -0.030630937, -0.026648914, -0.007970703, 3.10055e-05, -0.031137014, 0.040432837, 0.02220077, -0.016007993, 0.02050941, -0.019776931, 0.034999173, -0.032948233, -0.00048609966, 0.010054938, -0.014716168, -0.0007462129, -0.009429001, -0.013204597, -0.0088829715, 0.013570837, 0.019404033, -0.0015132349, -0.007224906, -0.007897454, -0.01658066, -0.00092891644, -0.009029468, 0.011779593, 0.021681376, -0.005257201, 0.00447811, 0.011420012, -0.013377729, 0.026862, 0.00810388, -0.0037323132, 0.0129382415, 0.005799901, 0.021801237, -0.041844524, 0.017699355, 0.019124359, -0.021708012, -0.012991512, -0.012019313, 0.0028749797, -0.0014533048, -0.006492427, -0.0145164, -0.02983187, 0.015768273, -0.0077243233, -0.013877146, -0.021441655, -0.007085069, 0.012105879, -0.025943073, 0.009202599, -0.0054969215, -0.026888635, -0.0040819054, 0.00010779093, -0.0031230238, 0.008669887, 0.0023006496, -0.030178132, -0.014010324, 0.012305646, -0.0142899975, 0.030231403, -0.016021311, -0.013384388, -0.0093757305, 0.0022690198, 0.00076410867, 0.006189447, -0.013317798, -0.0032778431, 0.015994675, -0.024717834, 0.02305311, -0.010834029, 0.0030747468, 0.016966876, 0.013091397, 0.015541871, -0.027301487, -0.004704512, -0.00055976375, -0.0076444163, -0.024358254, 0.018192112, 0.04245714, 0.017952392, -0.007977362, 0.0068253716, 0.040033303, 0.02281339, -0.036330953, 0.018325292, 0.031962715, -0.0041085407, -0.013351093, 0.0071383403, -0.001977693, -0.02600966, 0.000806143, -0.0048843026, 0.0294057, -0.009089397, 0.014915935, -0.019483939, -0.017872486, -0.00653571, -0.113893814, -0.032815058, 0.0211753, 0.011879477, -0.01094723, 0.0010146498, -0.007884136, 0.030098226, -0.0016946899, 0.04919595, -0.0151290195, -0.005277178, 0.0026785422, 0.00033294497, 0.040379565, 0.011226905, -0.0023605798, -0.009122692, -0.015395375, 0.016847014, -0.0038754793, -0.014609626, 0.019324126, -0.024837695, -0.034812726, -0.029965047, -0.026462466, 0.024158487, 0.00592975, -0.007850843, 0.0060462807, -0.028180461, -0.01869819, -0.010794076, 0.011426671, 0.00023389384, -0.010814052, -0.01355086, 0.024265029, -0.014223409, 0.020216418, -0.0038255376, 0.024597974, -0.0034526393, -0.00024200937, -0.033134684, -0.0046112877, 0.012285669, 0.017832533, -0.00835026, -0.012552025, -0.011293493, -0.0060296333, -0.0231197, 0.010794076, 0.012858335, 0.018245384, -0.0015398705, -0.029112708, 0.010780758, -0.003659065, -0.008483438, -0.037662733, 0.008803065, -0.0010629268, -0.0008044783, -0.015981358, -0.016660566, 0.013630767, 0.006359249, -0.028872987, 0.026236063, -0.011366741, 0.015501917, -0.028952895, 0.00066172815, -0.03127019, -0.0068253716, -0.00078991195, 0.018671554, -0.013470953, -0.022001004, -0.022533715, -0.011386718, 0.026036296, -0.00078033976, -0.00762444, 0.026782094, 0.017939074, -0.03212253, 0.006219412, 0.014676214, -0.0050474457, -0.0021791249, 0.0068520075, 0.008776429, -0.011453307, 0.007664393, 0.014143502, 0.012545367, -0.0042084246, 0.0015024141, -0.062966555, 0.024331618, -0.0137839215, -0.008423507, 0.015328786, -0.001334277, -0.007970703, 0.01203929, -0.022853343, 0.021761283, -0.0368903, 0.037050117, 0.001364242, -0.010194775, -0.024597974, -0.02916598, 0.011333447, 0.003151324, 0.0005514401, 0.027301487, 0.014076913, -0.007957385, 0.029778598, 0.00992176, -0.0038921267, 0.022906614, -0.026515737, 0.020948898, 0.024185123, -0.020109875, 0.009815218, -0.0062294, -0.01233894, -0.00635259, 0.0127717685, 0.0019460634, 0.0040885643, 0.017259868, 0.02438489, 0.0095488615, -0.019790249, -0.033853844, 0.024518067, -0.03140337, -0.013484271, -0.004984186, -0.0012069255, 0.0153021505, -0.0018361915, 0.010188116, 0.031802904, -0.006182788, -0.019390715, -0.01772599, 0.0065556862, -0.0024604632, 0.022120863, 0.007338107, -0.022307312, -0.02425171, 0.03563843, 0.011100385, 0.015981358, -0.019643754, 0.006575663, 0.021921096, -0.054150168, -0.016167808, -0.0041484945, -0.033374403, 0.0061261873, 0.004411521, 0.020895626, 0.02481106, 0.011206928, -0.005440321, 0.0026186123, -0.00701848, -0.016074583, 0.023679046, 0.011906112, -0.027967377, -0.010521061, 0.021148665, 0.024518067, 0.0045380397, 0.004914268, -0.0008023974, -0.010414518, 0.023825541, 0.0048077255, 0.008296989, -0.0028683208, -0.024424843, 0.00441818, 0.01658066, 0.01953721, -0.0041784593, -0.0045114043, -0.0018162148, 0.02467788, -0.01349093, -0.008576662, -0.015422011, -0.014982523, 0.031509914, -0.023266194, -0.035372075, 0.021375068, 0.014463129, 0.040299658, 0.002590312, 0.010867324, 0.011579826, -0.013564178, 0.0034493099, -0.012864994, -0.021215253, -0.02062927, 0.02347928, 0.027541207, 0.0119194295, 0.023319466, -0.019990016, 0.03273515, -0.0055501927, 0.027487937, -0.024358254, 0.019510575, -0.010434495, -0.009695358, 0.014463129, 0.0049342443, -0.02534377, -0.037529558, -0.004887632, -0.002916598, 0.013677379, -0.006502415, 0.0502081, 0.032868326, -0.009575497, 0.0120859025, 0.009409024, 0.006345931, 0.012398871, 0.012658568, -0.025636762, -0.03206926, -0.005896455, 0.019270854, 0.019190948, -0.01724655, -0.0112468805, 0.01300483, -0.009955054, 0.009755287, -0.024478113, -0.008303648, 0.02474447, -0.005213918, 0.009242552, 0.012871653, -0.0066455817, -0.009448978, 0.0127584515, -0.004591311, -0.0054170145, -0.038834702, 0.018831367, -0.009302482, -0.019816885, -0.019697024, 0.018991182, 0.018405197, 0.0027784258, 0.0054503093, 0.03321459, -0.0021258537, 0.0056267697, 0.014756121, -0.015435329, -0.01880473, -0.0037622782, 0.0062327296, -0.0010795741, 0.0010412853, -0.012838358]" 22259563,Apple’s independent repair program is invasive to shops and their customers,https://www.vice.com/en_us/article/qjdjnv/apples-independent-repair-program-is-invasive-to-shops-and-their-customers-contract-shows,134,1581018296,82,hutattedonmyarm,"[-0.00017322105, -0.0030213026, -0.0044303252, -0.03139123, -0.033871662, 0.009060463, -0.013056712, -0.004182282, 0.005880688, -0.025672458, 0.007379282, 0.014358939, -0.028772997, -0.00683152, -0.025879161, 0.017307894, 0.020325752, 0.0027594792, 0.022654602, 0.009081133, -0.026003184, 0.023026666, -0.024873208, 0.007317271, 0.017307894, 0.0055844146, 0.020711597, -0.014400279, 0.015447572, -0.010576282, 0.003062643, -0.0020032923, -0.019774545, 0.0036517454, -0.020243071, -0.012285023, 0.0069417614, -0.014662102, 0.026995355, -0.025203934, 0.046301376, -0.0014184964, -0.012567516, 0.028001308, -0.0084679155, 0.0023167913, -0.007165689, 0.011471992, -0.014744783, 0.019485163, 0.009294725, -0.027808385, -0.02820801, -0.004047925, -0.00058953295, -0.01776264, -0.0192509, 0.028607635, -0.004251183, -0.004571572, -0.0036069597, 0.009756361, -0.027794605, -0.0009783922, -0.002897281, 0.02334361, -0.008171641, -0.021979373, -0.014951486, 0.002540719, 0.038446676, 0.021455726, 0.015805857, 0.0053260364, 0.0008388679, -0.03472603, 0.0013409829, -0.024459803, -0.0011239452, -0.005419052, 0.013814622, -0.008240542, -0.0014348603, 0.02501101, 0.019609183, -0.0030747007, -0.009515208, 0.025603559, -0.015075508, -0.004819615, 0.01130663, 0.031253427, -0.019939907, -0.0025476092, -0.006693718, 0.028938359, -0.008405904, 0.025672458, -0.0009982012, -0.0322456, 0.023715675, 0.03056442, -0.019581623, -0.012705318, -0.016811809, 0.009563439, -0.004519896, -0.018176045, 0.03152903, -0.006917646, 0.007723786, -0.0046266923, 0.0042994134, -0.0005077132, 0.024694066, -0.016742907, 0.0062320824, -0.0052571353, -0.02902104, -0.023536533, 0.031005384, 0.003329634, 0.015516473, -0.0015683557, 0.022241196, -0.0004243862, -0.034643352, -0.0028335478, 0.015185748, -0.008412794, -0.0051675644, 0.012195451, 0.017500818, 0.01858945, 0.0024752633, -0.008371454, -0.035938688, 0.010679632, -0.022337658, -0.015943658, 0.00047843033, -0.0066213724, -0.015089287, -0.010900116, -0.00080054183, 0.011086147, -0.0019119987, 0.015254649, 0.0036861957, 0.0076893354, -0.010100866, 0.006276868, -0.022089614, -0.015723174, 0.0071312385, 0.017211434, 0.017872881, -0.00682463, -0.019195778, -0.0056946557, 0.021428166, -0.0012970587, -0.001853433, 0.0026974685, -0.0063182083, 0.035084315, -0.0021652095, 0.009349846, -0.0048540654, -0.001090356, 0.0019671195, 0.004027255, -0.052585132, 0.00067178335, 0.033458255, 0.018203607, -0.02086318, 0.012980921, -0.009308506, -0.014606982, 0.011485772, -0.0033192986, 0.010162876, 0.019829666, -0.014248697, 0.010782984, 0.00966679, 0.03293461, 0.004888516, -0.008943331, 0.005684321, 0.013718161, -0.022489239, -0.017032292, -0.6235252, -0.033292893, 0.009563439, -0.0150066065, 0.012574406, 0.041781478, 0.010493601, 0.0052846954, -0.027078036, 0.020394653, -0.004013475, 0.015984999, 0.018313847, -0.011754486, 0.0017147701, 0.0018758258, 0.013573469, 0.003703421, -0.009177594, 0.01041092, -0.02488699, 0.017390575, 0.002166932, -0.015516473, -0.0009930336, 0.008233652, 0.006132176, 0.0024890434, -0.02822179, 0.008006279, -0.003105706, 0.018975295, 0.00805451, 0.005067658, 0.050159823, -0.0044509955, -0.010259338, 0.008233652, 0.022489239, 0.0418366, -0.030977825, -0.018685913, 0.02007771, -0.0051710093, 0.016205482, -0.0011919849, 0.014855024, 0.023963718, 0.004499226, -0.02257192, 0.01285001, -0.00054302486, -0.031280987, 0.013346096, 0.032410964, -0.015585373, -0.0150066065, -0.02342629, 0.03469847, 0.02104232, -0.016026339, 0.022048274, -0.019195778, -0.016618887, -0.01205765, -0.0029524018, 0.004733489, -0.0018999411, -0.005708436, 0.005422497, -0.008357674, 0.019540282, -0.022296317, -0.007744456, -0.02987541, 0.0075446437, 0.00092327147, 0.019540282, -0.001182511, 0.009763251, 0.0017655845, -0.016329503, 0.013311645, -0.011416872, 0.019223338, 0.0011222227, 0.0040100296, -0.014069554, 0.012953361, 0.012698428, 0.009522098, -0.0028852234, 0.0154751325, -0.020587577, -0.028524954, 0.0052778055, -0.032052677, -0.018107144, -0.010369578, -0.012636417, -0.0075033032, 0.00034299708, -0.00018764718, 0.0069107558, 0.040623944, 0.025176372, -0.009990624, -0.027780825, 0.023384951, -0.035938688, -0.0020842508, -0.0037482067, -0.022034494, 0.0019653968, 0.004333864, -0.016233042, 0.01597122, -0.022213636, -0.005501733, -0.015902318, 0.01929224, -0.03230072, 0.031005384, 0.0035260012, -0.0016424241, -0.008233652, 0.016467305, -0.025575997, 0.007172579, 0.010603841, -0.01449674, -0.028800558, 0.0028025424, -0.00482995, 0.013842182, 0.009170704, 0.010493601, -0.006263088, -0.008123411, -0.044399712, -0.010720973, -0.0054431674, 0.01936114, 0.016357062, -0.029847851, -0.039686892, -0.015034167, -0.011161938, 0.019815886, 0.023453852, 0.0009008787, -0.0068694153, 0.0002824935, 0.022847524, -0.019912347, -0.00055292936, -0.0006084807, -0.02968249, -0.027670585, -0.0064801257, -0.029324204, 0.033623617, -0.015902318, -0.025961842, 0.030757342, -0.028938359, 0.02334361, -0.0070485575, -0.009253385, -0.03318265, 0.0026940235, 0.018244946, -0.0065455814, -0.0008147526, 0.0077375663, 0.0031332665, -0.006118396, 0.02502479, 0.0047851643, -0.0015054838, 0.011761376, -0.00885376, -0.010679632, -0.02010527, -0.0001596562, -0.0016114188, 0.012250572, 0.009508318, -0.0018362078, 0.011954298, -0.03792303, 0.016219262, 0.034422867, 0.013539018, -0.015544033, 0.017542157, -0.020794278, -0.0072897105, 0.0022806183, 0.03389922, 0.01286379, 0.00018011115, 0.04423435, -0.03309997, 0.0038446677, -0.0150066065, 0.01528221, -0.016825588, 0.035139438, -0.0012910297, -0.019926127, -0.04563993, -0.0050607678, -0.009770141, -0.014551861, 0.02330227, -0.0040513705, 0.025658678, -0.0058531277, 3.6791982e-05, -0.024652727, 0.018134706, 0.013759501, 0.0029127838, -0.0070761177, -0.022227416, 0.010782984, 0.035084315, -0.008295663, -0.006049495, 0.017886663, 0.004595687, 0.031032946, 0.019567844, 0.022158515, 0.027863506, -0.001083466, -0.010162876, 0.0466321, -0.01448296, 0.025920503, 0.027188277, 0.008212982, 0.0056739855, 0.0040858206, -0.008660838, 0.038005713, -8.241188e-05, -0.018851275, 0.038419116, -0.008206092, 0.021497067, -0.019953689, 0.026251227, 0.018355189, -0.006662713, 0.035029195, 0.021414386, 0.025631119, 0.022957765, -0.0025355516, -0.0047851643, 0.017032292, -0.020876959, 0.006524911, 0.017817762, 0.029599808, -0.01606768, -0.00802695, 0.011761376, 0.026251227, 0.00020175031, 0.011699365, 0.011637354, 0.016729128, 0.010707193, 0.006035715, -0.013973094, 0.012278132, 0.018782374, -0.027794605, -0.01843787, 0.025107471, 0.012422824, -0.008330113, -0.0052778055, -0.014979046, 0.0010843272, -0.005401827, 0.012312583, 0.004354534, 0.021276584, -0.0018052025, 0.025259053, 0.032493643, -0.017583499, 0.033596057, 0.0018654907, -0.0112997405, -0.005057323, -0.01043159, 0.031060506, -0.02006393, -0.017059851, 0.051785883, -0.011354861, -0.024556264, -0.016674006, -0.0028111548, -0.014358939, -0.007427512, 0.0027577567, -0.009901053, -0.022351438, 0.015447572, -0.026292566, -0.012987811, -0.004991867, 0.021814011, 0.016646447, -0.003992805, -0.008750409, 0.0007531725, -0.0016183088, 0.08924039, 0.03618673, -0.014606982, 0.032466084, -0.035966247, -0.011292851, 0.0046955934, -0.050435428, 0.031005384, 0.0047954996, 0.03475359, -0.0023529641, 0.029710049, 0.0030764232, 0.011761376, 0.0030454178, 0.0044682203, -0.012622637, -0.021814011, -0.028442273, -0.012925801, -0.011961188, 0.0038687831, 0.03301729, 0.02976517, -0.0054087173, 0.011368642, 0.016288163, 0.006280313, -0.026981575, -0.009756361, 0.0033279113, -0.013228964, -0.0029179512, -0.0028232126, 0.011120598, 0.009274055, 0.023026666, -0.009901053, 0.018203607, 0.010114646, 0.010872555, 0.023068007, -0.010128425, 0.0033451365, 0.017142532, -0.00804073, 0.00028141693, -0.029710049, -0.009019122, 0.017473256, -0.0044131, -0.022006933, -0.01121017, -0.014951486, 0.0025717244, 0.024556264, -0.011630464, -0.0032073348, -0.024776747, -0.025135033, -0.021317925, 0.016784249, 0.0050366526, -0.02414286, -0.022075834, -0.0058324574, -0.01205076, -0.0047128187, 0.028442273, 0.022130955, -0.03792303, -0.03618673, 0.014303817, 0.022764843, 0.008295663, 0.013042932, 0.018231167, 0.014717223, 0.037564747, 0.006108061, -0.024556264, 0.015585373, -0.020587577, -0.0070278873, 0.012174781, -0.018300068, 0.0112239495, -0.0051985695, 0.017542157, 0.016811809, -0.013718161, 0.016301943, 0.01128596, -0.014882585, 0.022378998, 0.015185748, 0.015695615, 0.0031332665, -0.016260602, -0.036600135, 0.0046473625, -0.020697817, -0.013311645, 0.012567516, 0.014593202, 0.0037516516, -0.0022392778, -0.029627368, -0.01041092, 0.009597889, 0.0068728602, -0.004685258, 0.009336066, -0.0050194273, 0.033403136, -0.02007771, -0.014606982, -0.007317271, -0.003505331, -0.030095894, -0.037261583, 0.027574122, 0.0040341453, -0.024487365, 0.024845649, -0.009074243, -0.009749471, -0.021924252, -0.023908596, -0.014896365, 0.02261326, -0.009473868, -0.012181671, -0.019223338, -0.013952423, -0.0067901793, -0.0012341866, -0.0014753395, 0.001592471, -0.0098872725, -0.0024322001, 0.015433792, 0.0101215355, 0.02579648, -0.026761092, 0.0038825632, 0.025451977, 0.0005378573, 0.030784903, 0.017872881, -0.00047756906, -0.017459476, 0.021304145, -0.011471992, -0.015116848, 0.0031470465, -0.016439743, 0.038033273, 0.026898894, 0.0011273903, 0.0063250987, -0.016522426, -0.0006614482, 0.013263415, -0.0012333253, 0.0056705405, -0.019512722, -0.008178531, 0.0014813684, -0.0005632645, 0.0069899918, -0.0065490264, -0.023949938, -0.018189825, -0.00089657237, -0.008116521, 0.010844994, 0.014276258, -0.0306471, 0.0015011774, -0.039797135, 0.0061769616, 0.009715021, -0.022695942, -0.0015640494, 0.011230839, -0.013318536, 0.024170421, -0.012174781, 0.022654602, -0.011844057, 0.037344266, -0.011906068, 0.015089287, -0.0030402502, 0.003768877, -0.033348013, 0.003544949, 0.013084273, 0.0047231535, -0.00016202466, -0.025396856, -0.012312583, -0.00644223, 0.0006317347, -0.026940234, -0.039686892, 0.020890739, -0.030013213, 0.024308221, -0.03932861, -0.020794278, 0.004285633, -0.022489239, -0.008798639, -0.00059943745, 0.004171947, -0.027987527, -0.03158415, 0.0152408695, 0.0017388853, 0.006287203, 0.010445369, 0.010858775, 0.037426945, 0.019981248, -0.0048609553, -0.013153173, -0.019168219, -0.0035518392, 0.021359265, 0.013966204, -0.022668382, -0.025534658, 0.0075446437, -0.0067867343, -0.01526843, -0.037344266, 0.028855678, 0.00022780345, 0.005801452, -0.010286897, 0.009604779, -0.008337003, 0.005822122, -0.008330113, 0.02899348, -0.00887443, -0.003346859, -0.018989075, 0.023770796, -0.016660227, 0.015075508, -0.00054690056, -0.028552515, -0.009460088, -0.015612934, -0.007138129, -0.0006437924, 0.00078374724, -0.0021686545, -0.008957111, 0.016384624, -0.014083335, 0.017955564, 0.006903866, -0.020766718, -0.0009663345, 0.029930532, -0.007827138, -0.0067212787, -0.014951486, -0.002551054, -0.0048747356, -0.01364237, 0.013256525, 0.0038033272, -0.01371127, -0.0010007849, 0.02822179, 0.01686693, -0.030316377, -0.0014753395, 0.0045646816, -0.009783922, 4.7423167e-05, -0.012381484, 0.018685913, 0.009280945, -0.027711924, 0.021138782, -0.010087085, 0.00024782776, 0.006772954, 0.0063113184, -0.010590062, 0.0119336285, -0.02907616, -0.0005546519, 0.0049436362, 0.0054913983, 0.0066282623, 0.01289824, -0.010100866, -0.010093976, 0.039218366, 0.0006269978, -0.016563766, -0.024638945, -0.0073930616, -0.0016148638, -0.008957111, 0.018396528, -0.01615036, -0.015171968, -0.011086147, -0.0017552493, -0.016811809, 0.003965244, -0.026829993, 0.01528221, 0.004182282, -0.0040617054, -0.0028111548, -0.028001308, 0.017473256, -0.009901053, -0.017404357, -0.029599808, 0.0010757146, 0.025066132, -0.0432973, -0.014469179, -0.0073930616, 0.0013125613, -0.014717223, 0.002606175, 0.007324161, -0.013945533, -0.019595403, 0.016660227, 0.018107144, 0.0068900855, -0.012546846, 0.0047748294, -0.010190437, -0.004654253, -0.011237729, -0.021166343, -0.03053686, 0.052006368, 0.019678084, -0.01927846, -0.030371496, -0.01696339, -0.032273162, 0.008722848, -0.0007191527, 0.013725051, 0.000944803, 0.015929878, -0.0038550028, -0.00022866472, -0.014717223, 0.005560299, -0.015020386, -0.039934937, 0.009832152, -0.014717223, 0.024790527, 0.008667728, -0.02651305, -0.015227089, 0.016729128, 0.027050477, 0.021207683, 0.010934566, 0.011947408, 0.013835292, 0.0161917, 0.001090356, 0.017900443, 0.0061011706, 0.03230072, -0.004178837, -0.0069142007, 0.013249635, -0.0012462442, -0.034863833, 0.013215184, 0.023247149, 0.01205076, -0.00046594205, 0.011940518, -0.013339206, -0.02184157, -0.032879487, 0.024322001, -0.009039792, -0.012195451, 0.004337309, -0.010817435, -0.038363997, -0.010286897, -0.00076781394, -0.014662102, 0.0021497067, 0.0024769858, -0.025438195, -0.0146896625, 0.002735364, 0.0024924884, -0.0036827507, -0.013008482, -0.00444066, -0.007854697, -0.02902104, 0.009515208, -0.0034743256, -0.0013177289, -0.0018207051, -0.040982228, -0.011244619, -0.0076204347, -0.014110895, 0.00088193093, -0.014868804, 0.013518348, -0.012395264, -0.026761092, -0.033513375, 0.0122436825, -0.007799577, 0.0040651504, 0.0028921135, 0.22367974, -0.0074619628, 0.011733816, 0.02253058, -0.005718771, -0.006111506, 0.0040754857, 0.012732878, 3.2593336e-05, -0.013876633, -0.02503857, 0.0051089986, -0.034974076, -0.00046292762, 0.02261326, -0.011196389, -0.02171755, -0.0013435667, -0.02243412, 0.038970325, 0.011230839, -0.0040065846, -0.0015502693, -0.011644244, 0.008102741, 0.023136908, -0.02574136, 0.010100866, 0.023260929, 0.018644571, -0.008454135, 0.005481063, 0.0068142945, 0.00035096373, 0.009170704, 0.00090604625, 0.00061364827, 0.032879487, 0.0020463555, 0.00602538, 0.038308877, 0.014276258, 0.008378344, -0.016632667, 0.008185422, 0.01852055, 0.003531169, -0.004340754, 0.018685913, 0.0009947561, -0.06030203, -0.022682162, 0.028772997, 0.018065805, -0.0010050912, -0.0041926173, -0.0095703285, 0.012367704, -0.0011316965, 0.005339816, -0.0025975623, 0.011802716, -0.03221804, 0.028910799, -0.028800558, 0.037619866, 0.0025441642, 0.0024235877, -0.005422497, -0.023040446, 0.01615036, -0.006741949, -0.012257462, 0.008633277, -0.006362994, -0.03618673, 0.021414386, 0.03221804, 0.009239605, 0.010493601, -0.001671707, 0.010500491, 0.0047782743, 0.016274381, -0.025920503, -0.0044820006, 0.022048274, -0.010093976, 0.012381484, -0.0160539, 0.025203934, -0.0046887035, -0.02658195, -0.020752938, -0.015640493, 0.026278786, -0.017886663, 0.006580032, -0.032686565, 0.013256525, -0.0013108387, 0.07264906, -0.003267623, 0.0051951245, -0.030509299, 0.009611669, 0.026347687, 0.01846543, 0.00888821, -0.012016309, 0.01041092, -0.01857567, 0.009150034, -0.0161228, 0.025148813, 0.019457601, -0.010810545, -0.037509628, -0.005953034, 0.008288773, 0.009839042, -0.0019068312, -0.016260602, -0.005791117, -0.01937492, -0.023798356, -0.018644571, 0.011182609, -0.0077651264, -0.022833744, -0.01845165, -0.009267165, 0.002778427, -0.02011905, 0.006504241, 0.027215838, 0.035635523, -0.025865382, 0.005560299, 0.012939581, 0.013614809, 0.023577873, 0.012229902, 0.022199856, -0.0101215355, 0.01697717, 0.010555611, 0.015185748, 0.02498345, -0.013518348, -0.019609183, -0.000474124, -0.016412184, -0.008495475, 0.021111222, -0.00725526, -0.0405137, -0.017266555, -0.0008948499, 0.0023409065, -0.040706627, 0.019485163, 0.03715134, 0.0033950896, -0.046191134, 0.0038550028, -0.17594522, 0.008488585, 0.030950265, 0.020546235, 0.04740379, -0.01608146, -0.01371127, 0.0071863593, -0.009398077, -0.006266533, 0.0059358086, -0.015447572, -0.015984999, -0.0120094195, 0.018286288, 0.002861108, -0.010100866, 0.044895798, 0.019678084, -0.0021755446, 0.011540893, -0.02888324, 0.026030743, -0.026554389, 0.0016958223, -0.019554064, -0.015488912, -0.0064732353, 0.002537274, -0.02094586, 0.0036793058, 0.010004404, 0.03133611, 0.01857567, 0.022888863, -0.03296217, -0.010348909, 0.005208905, -0.0018069249, 0.0371789, 0.015557813, 0.00089743367, 0.030729782, 0.011506443, -0.0058290125, 0.022406558, 0.028001308, -0.00035656194, 0.016467305, 0.009384297, -9.323147e-05, -0.03219048, -0.0033503042, 0.012574406, -0.0014279702, 0.0062527526, -0.013828401, 0.004123716, -0.032521203, -0.0073379413, -0.006459455, 0.00881931, 0.042029522, -0.012126551, 0.007482633, -0.049608618, 0.0055189584, -0.0064904606, -0.034450427, 0.007971829, 0.0028456054, -0.018906394, 0.026926454, -0.008764189, 0.009577219, -0.009852822, 0.0008074319, 0.0012643307, 0.011720035, -0.007510193, -0.004340754, 0.010376469, -0.008440355, -0.025162593, -0.009074243, 0.008474805, 0.008020059, 0.007089898, -0.01615036, -0.002454593, 0.031032946, -0.022447899, -0.02025685, -0.022186076, -0.0047886097, 0.027022915, 0.01766618, -0.0017673069, -0.017914223, -0.028745437, -0.0014572531, -0.020697817, -0.0026733533, 0.022392778, 0.013104943, 0.0011291128, -0.0015442404, 0.0016277827, 0.043379977, 0.0058048973, -0.05542385, 0.01045226, 0.027574122, 0.027491441, -0.017597279, 0.02651305, 0.003541504, -0.015557813, 0.000107496104, 0.014662102, 0.057435755, 0.00322456, 0.018713472, 0.009205154, -0.007847807, 0.0047713844, -0.10588683, -0.024363343, 0.014896365, -0.0014331378, -0.0016389791, 0.012181671, 0.010404029, 0.03309997, -0.025410635, 0.01444162, -0.026347687, -0.03450555, 0.013504568, -0.021400606, -0.017266555, -0.014717223, -0.01689449, -0.024005057, -0.02242034, 0.025548438, -0.023798356, -0.025575997, -0.008970891, 0.0026010072, -0.018300068, -0.02830447, -0.040954668, 0.010397139, -0.011940518, 0.017156312, -0.009577219, -0.006356104, 0.007647995, -0.017900443, -0.015888538, 0.0041374965, -0.01686693, 0.007585984, 0.032631446, -0.023949938, 0.020463554, 0.0052709156, 0.014276258, -0.021800231, -0.0042339577, -0.033348013, -0.023715675, 0.021510847, 0.0023770796, -0.010645182, -0.018782374, 0.005815232, 0.0018517105, -0.017597279, 0.006283758, -0.005739441, 0.01045226, 0.032603886, -0.039163247, -0.0161228, -0.030371496, -0.012622637, -0.010838104, -0.016729128, 0.021125002, -0.009039792, -5.716618e-05, -0.0051089986, 0.028938359, -0.010700303, -0.0068900855, -0.013490788, -0.02410152, 0.017431917, -0.023481412, 0.005501733, 0.00031866645, 0.013483898, 0.021565968, -0.013284085, 0.004754159, -0.016425963, 0.021414386, -0.041395634, 0.0193198, 0.0112584, 0.0025476092, 0.008481695, 0.01852055, -0.03301729, 0.016494865, 0.008901991, 0.012691538, 0.026140984, 0.01616414, 0.0025286614, -0.0057704467, -0.0034278175, -0.0010739921, -0.006614482, -0.014758564, 0.030977825, -0.06278246, 0.028249351, -0.01127218, 0.0018809934, -0.002857663, 0.0031246538, 0.012415934, -0.017431917, 0.0103557985, -0.0061597363, -0.030784903, 0.042773653, 0.0033968121, -0.0241153, -0.03475359, 0.009956174, 0.0021221463, -0.017831542, 0.030950265, -0.009577219, 0.03133611, 0.0032486753, 0.01845165, -0.0057704467, 0.019719426, 0.01927846, -0.0026871334, -0.004289078, 0.015447572, -0.010348909, 0.0070554474, -0.008240542, -0.02422554, 0.016687788, -0.01206454, 0.0056946557, -0.019884787, 0.025286615, 0.007399952, 0.0122436825, -0.011396201, -0.03613161, 0.01934736, -0.0018258727, -0.013497678, -0.016729128, 0.0021428165, 0.007406842, 0.010810545, -0.0109896865, 0.032796808, 0.0034174824, -0.026995355, -0.0064043347, -0.021483287, -0.012974031, 0.021800231, -0.009735691, -0.019126877, -0.031005384, 0.04486824, -0.0032366177, 0.027863506, -0.0043786494, 0.0210561, -0.02007771, -0.020215511, -0.014090225, 0.00798561, -0.012925801, -0.0112997405, 0.020091489, -0.0012608856, 0.0013780171, 0.024060179, 0.005866908, -0.005105553, 0.0046439175, -0.020422213, 0.0074412925, -0.012223012, -0.014813684, -0.013104943, 0.014400279, 0.027160717, -0.007165689, -0.006821185, -0.00019507555, -0.008426575, 0.016040118, -0.015805857, 0.040568825, 0.018148486, 0.00032254212, -0.0054535028, -0.00034428897, -0.004275298, -0.003343414, 0.004251183, -0.001146338, 0.03376142, -0.0036379653, -0.008212982, -0.029351765, -0.015833417, 0.011072367, -0.006507686, -0.01927846, -0.026292566, 0.029269084, 0.008247432, -0.0034140374, 0.017445697, 0.0051916796, -0.039025445, 0.013297865, -0.016756687, -0.021524627, -0.02488699, 0.00560853, 0.030371496, 0.0011937073, 0.014731003, 0.005577524, 0.00962545, 0.025272833, 0.00963234, -0.009163814, 0.0026371803, 0.0016897935, 0.018920176, 0.00085738505, -0.010824325, -0.010975907, -0.0028645531, -0.0193198, -0.018010683, 0.038005713, 0.017831542, 0.066089705, 0.014303817, -0.028001308, 0.01451052, -0.008268103, 0.023591653, -0.0074688527, -0.0042408477, 0.00013058865, -0.019498942, 0.009301616, -0.009811481, 0.027532782, -0.009604779, -0.005081438, 0.0031470465, 0.01127907, 0.015833417, -0.001470172, -0.0006369023, 0.0045509017, -0.011981859, 0.0013125613, -0.011961188, -0.01843787, -0.013022262, -0.007489523, -0.011830277, 0.0022737281, -0.028690316, 0.008006279, -0.009990624, -0.03527724, -0.017459476, 0.0177902, 0.0061597363, -0.012491725, -0.00014996702, 0.0014572531, 0.0005710158, 0.003105706, 0.015805857, -0.01529599, -0.015805857, -0.002861108, 0.015860977, 0.0073103807, -0.0015666332, -0.0034863832]" 12589447,Leaflet 1.0 – A JavaScript library for mobile-friendly interactive maps,http://leafletjs.com/2016/09/27/leaflet-1.0-final.html,628,1474983291,99,freyfogle,"[-0.02177784, -0.004634875, -0.006024663, -0.021548457, 0.006338377, 0.003703852, -0.014275685, 0.00096391235, -0.037079, -0.022735849, 0.014936846, 0.00013714457, -0.028281508, 0.017608477, 0.010065842, -0.0014572532, 0.020482505, -0.025191592, 0.022830302, -0.022142153, -0.011320699, 0.010409916, -0.0048844973, 0.004584276, -0.007832737, 0.015989307, 0.02960383, -0.028038632, 0.027336992, -0.014869381, -0.021089694, -0.014707464, -0.0010280045, -0.020968255, -0.02054997, -0.012825178, 0.0126565145, -0.034650244, 0.004402119, -0.02474632, 0.014437602, 0.005488313, 0.004088405, -0.01416774, -0.023869269, 0.0027542762, -0.018472034, -0.0052623036, -0.000618152, 0.041315828, 0.025785288, 0.018998265, -0.027134595, -0.0023022578, 0.0014783362, -0.010126561, -0.013108533, 0.016070265, -0.004024313, -0.03543284, 0.0028453544, -0.0075831143, -0.019645933, 0.007691059, -0.009195538, -0.005265677, -0.039075978, -0.003101723, -0.010990119, -0.0043785064, 0.029954651, 0.031411905, 0.013742708, -0.0098499525, 0.01897128, -0.013371648, 0.0074211974, 0.00218588, -0.01143539, -0.021737361, 0.021319076, -0.014693971, -0.0063080178, 0.03184368, 0.015503556, 0.008055372, -0.0069894185, 0.031816695, -0.022155646, -0.011253234, -0.031816695, -0.0014488201, 0.0015221888, 0.025137618, -0.008716534, -0.0010575206, -0.016367113, 0.008763759, -0.00363976, -0.053729467, -0.0084534185, -0.009519372, -0.009263003, 0.00027934904, -0.027296513, -0.004037806, 0.018377583, -0.0097689945, 0.029226024, 0.009573344, -0.020091204, 0.026945692, 0.0181482, -0.024651868, 0.020495998, -0.0048271515, 0.017851353, -0.021292089, -0.01106433, -0.009924165, 0.017379094, 0.008871704, 0.020131685, -0.017082246, 0.016623482, 0.009384441, 0.008757013, 0.020630928, -0.007394211, -0.00745493, 0.022654891, 0.026378984, -0.007691059, -0.030575333, -0.013101786, 0.041909523, -0.028416438, 0.016515536, -0.01635362, -0.015098763, 0.020981748, 0.020374559, -0.015975814, 0.0065171607, 0.0064159622, 0.013337916, -0.016232183, 0.0055827643, 0.004860884, -0.0044931974, 0.022101674, -0.0036127737, 0.007879962, -0.018013269, 0.01748704, 0.00763034, -0.04228733, 0.010119814, 0.00046888474, 0.0048136585, 0.0055254186, 0.02181832, -0.015881361, 0.0024439353, 0.0098229665, 0.028416438, 0.004533677, 0.017244164, 0.007131096, -0.0019564976, 0.0035588015, 0.028227536, -0.018660938, -0.0071985614, 0.010760736, 0.01508527, -0.0037746907, 0.014882874, -0.011577068, -0.0064699347, -0.012784699, 0.016839372, 0.0067499164, 0.028659314, -0.0066284784, 0.02181832, 0.023370024, 0.006159594, -0.004955336, -0.013149012, 0.0048372713, 0.004594396, 0.0128589105, -0.03003561, -0.64550924, -0.026608365, 0.017891832, 0.0058728657, -0.00036747576, -0.0019244513, 0.0058694924, -0.020253122, -0.020280108, -0.00082518655, -0.022708863, 0.0058694924, -0.019497508, -0.0048676305, -0.025852753, -0.018215666, -0.035918593, -0.015530542, 0.015004312, 0.014127261, -0.0002325449, 0.018998265, -0.007353732, -0.010565086, -0.0024709213, 0.008473658, -0.0064429487, -0.02164291, -0.010032109, 0.039426796, -0.01582739, 0.015395611, -0.019011758, 0.0048136585, 0.048737027, -0.011118303, -0.0045707827, 0.022681877, 0.01020752, 0.010693271, -0.01038293, -0.0073739714, -0.0020475758, 0.011644533, 0.008595096, -0.02763384, 0.049195793, 0.020010246, 0.0078057502, -0.0084534185, 0.002772829, 0.0033159258, -0.008891944, 0.010747243, 0.010436902, 0.0054815663, 0.0055220453, -0.009593584, -0.022884274, -0.004503317, -0.01897128, 0.015193215, 0.0024844145, -0.011711999, -0.027930688, -0.007367225, -0.019241141, -0.0033091793, 0.009620571, -0.015678966, 0.011975113, 0.024651868, 0.013108533, -0.028983148, 0.012474358, 0.039183922, 0.017999776, -0.020792846, 0.0017777141, -0.0012008847, 0.002217926, -0.013182745, -0.025636863, 0.011698506, 0.019443536, 0.0009116266, -0.0051982114, -0.015544035, 0.011772717, 0.0038691424, -0.013459353, 0.033381894, -0.013553805, -0.01473445, -0.008055372, 0.0236129, -0.016866358, 0.011772717, 0.0020087832, -0.007704552, -0.0021470874, -0.009715022, -0.008676054, -0.00012238651, -0.013506579, 0.011023851, -0.024543922, -0.018647445, 0.014059795, -0.026446449, 0.012029086, -0.010268238, -0.0034323037, -0.0029279997, 0.026068643, -0.021926265, 0.012960109, 0.009647557, 0.026594872, -0.04228733, 0.00038455296, 0.0046045156, 0.03195163, -0.01748704, -0.014505067, 0.014154247, -0.002708737, -0.0045303036, -0.011179022, -0.020603942, 0.008163317, -0.015044791, 0.028254522, -0.013324422, 0.019969767, 0.0071243495, 0.010018616, -0.017068753, 0.024071665, 0.014005823, -0.022749342, 0.016326634, 0.015031298, -0.006820755, -0.0214675, -0.026608365, 0.011118303, 0.0033496586, -0.028605342, 0.004263815, 0.008385953, -0.0008534377, -0.0015921842, -0.011212754, 0.006260792, 0.008331981, -0.021858798, 0.0009209031, -0.015044791, -0.01652903, 0.007576368, 0.022668384, 0.0055827643, 0.013135519, -0.0031540089, -0.016583003, 0.0027306632, -0.0044830777, 0.028524384, -0.033732716, 0.013884385, -0.0160028, -0.008473658, 0.0068679806, 0.019146688, 0.017473547, -0.0155710215, 0.012966855, -0.0027762025, 0.0039602206, 0.027336992, -0.009492386, -0.023181122, -0.002440562, -0.0075089023, 0.02343749, 0.007637087, 0.031762723, 0.010511114, 0.039426796, -0.0037342114, -0.002879087, -0.0073739714, -0.006611612, -0.004014193, 0.027161581, 0.0025164606, 0.026257545, 0.016245676, 0.03969666, 0.02247948, 0.015071777, 0.03912995, 0.0051982114, 0.0054950593, -0.024948716, 0.015544035, -0.013547058, 0.03241039, 0.004429105, 0.02269537, -0.0044527184, -0.03826639, -0.0084669115, -0.022452494, 0.0038185434, 0.014720957, -0.013567298, -0.018121215, -0.005775041, 0.0022482853, -0.013493086, 0.002523207, -0.008055372, -0.0047394466, -0.0034710963, -0.011145289, 0.0050261747, 0.02164291, -0.01779738, -0.0127509665, 0.018026764, 0.014896367, 0.020388052, 0.023343038, -0.0040647923, 0.027714798, -0.015382118, 0.015948828, -0.021615924, 0.005788534, 0.021804826, 0.0008614492, 0.011023851, -0.0029128199, 0.010274985, 0.024462964, 0.013762947, -0.027229046, -0.007987907, -0.011759224, 0.033300936, 0.0034188107, -0.015220201, -0.011428644, -0.03459627, 0.008217289, -0.015962321, 0.04393349, 0.02619008, 0.028389452, 0.008143078, 0.010274985, 0.012170764, -0.010504368, 0.0017709675, 0.003983834, 0.017014781, -0.01613773, -0.010848441, -0.016974302, -0.03996652, 0.0025350135, -0.009964644, 0.0004142799, -0.0036971055, 0.010355944, 0.003778064, -0.007097363, 0.0019969768, -0.037105985, -0.01530116, 0.0022246726, 0.026743297, -0.013324422, -0.02220962, -0.02125161, 0.008298248, -0.019753877, 0.00093608286, -0.008446672, 0.0013779814, -0.018310117, 0.017217178, -0.004935096, -0.013655003, 0.012278708, -0.024557415, 0.013897878, -0.013047814, -0.015854375, -0.018579978, -0.018822854, -0.020172164, 0.030926153, 0.013000588, 0.013830413, -0.009748754, 0.0025265804, 0.010605565, -0.0057345615, -0.006969179, 0.0029785987, 0.005876239, 0.023585914, 0.013047814, -0.022182632, 0.018917307, 0.0154225975, 0.00014568317, -0.014154247, -0.0100253625, -0.026419463, 0.012244975, 0.12845418, 0.027431443, 0.008068865, 0.0051880917, 0.007218801, -0.025960697, -0.018067243, -0.019430043, 0.0052386904, -0.00011869699, -0.022277085, 0.004074912, 0.002653078, 0.0052757966, 0.035001066, 0.014262192, 0.015530542, -0.0008222349, -0.026217066, -0.014761436, 0.0074954093, 0.0189308, 0.019511003, 0.006473308, 0.0014395436, 0.014019316, 0.026689325, -0.0019396311, 0.0051408657, 0.0038117967, -0.018768882, 0.009748754, 0.0034491702, -0.004327907, -0.026513914, 0.006861234, -0.0021420275, 0.005417474, 0.016947316, -0.0067903954, 0.02505666, -0.002454055, -0.020131685, -0.005549032, 0.017608477, -0.008635575, -0.0053162756, 0.020482505, -0.011516348, -0.009121326, 0.041504733, -0.0031135296, -0.015746431, -0.009667796, -0.025245564, 0.010902413, 0.017702928, 0.017109232, -0.0070298975, 0.0008922303, -0.0042402023, -0.016839372, -0.008952662, -0.0068376213, -0.015112256, -0.024975702, -0.011536588, 0.011745731, -0.0074346904, -0.0043414, 0.010855188, -0.029765747, -0.01073375, 0.014019316, 0.016583003, 0.017608477, 0.009316976, -0.0025316402, 0.0034812163, 0.027741784, 0.007994654, -0.0056637228, 0.0012936495, -0.010767482, -0.02776877, 0.0155980075, -0.009890432, -0.010807962, -0.007427944, 0.007009658, 0.0035453083, 0.00527917, -0.009566598, -0.013965344, -0.006223686, 0.035486817, 0.016556017, 0.038158447, 0.008460165, 0.009748754, 0.019780863, -0.001342562, -0.031223001, -0.008581603, 0.0008719907, -0.003838783, 0.022236606, 0.025232071, 0.020388052, 0.014181233, 0.0009942717, -0.024543922, -0.015962321, 0.010673031, -0.008622082, 0.014842395, 0.026729804, 0.017891832, 0.012400146, -0.017756902, -0.020792846, -0.0056333635, 0.0055827643, 0.015773417, -0.0031523223, 0.017567998, -0.017756902, -0.024247074, -0.01416774, 0.0006240552, 0.008116092, 0.0286863, 0.016029786, -0.00063375337, -0.014154247, -0.0033547184, -0.0034474835, 0.0021690135, -0.012420385, -0.006682451, 0.0073874644, 0.001671456, -0.019713398, -6.888853e-05, -0.021278596, -0.027269527, -0.011948127, 0.019524496, 0.0030224512, 0.0017026587, -0.03467723, -0.004472958, -0.008062119, -0.0076843123, 0.0036836124, -0.021723868, -0.021103187, -0.0035216955, 0.0049620825, 0.0041390043, 0.036701195, 0.015341639, 0.012143778, -0.015840882, 0.00030485942, 0.0065272804, 0.019807851, -0.0033125526, -0.013493086, 0.016326634, 0.03467723, 0.0017490413, -0.015948828, -0.018552992, -0.0056131235, 0.004324534, -0.023032697, -0.005778414, -0.005491686, -0.035756677, -0.016933823, -0.0050936397, -0.016758412, 0.011179022, -0.012953362, -0.020266615, 0.03321998, -0.029145066, 0.0116108, -0.021022229, -0.01705526, -0.01219775, 0.014599519, 0.013924865, 0.005417474, -0.017567998, -0.021278596, -0.0042739348, -0.007097363, 0.009910672, 0.038941044, -0.028227536, -0.0009858386, 0.016947316, -0.018040257, 0.02312715, -0.0037578244, 0.0016857925, -0.010828202, -0.015152736, -0.0021268476, 0.013594284, 0.0030258244, -0.014019316, -0.0003685299, -0.01217751, 0.01512575, 0.013452606, -0.014370136, -0.021103187, -0.0015930275, -0.0017304883, 0.018728403, 0.008338727, 0.01344586, 0.00784623, -0.002648018, -0.040209398, 0.040614188, 0.007967668, -0.00032088245, -0.005906598, 0.015962321, -0.052218243, -0.0045539164, 0.021602431, 0.016677454, 0.025218578, -0.019443536, 0.026567886, -0.013911371, 0.014586026, -0.024098651, -0.04911483, -0.024651868, 0.020361066, -0.015705952, 0.010834948, 0.00068646076, -0.01270374, -0.013317675, 0.013533565, -0.008574856, 0.011347685, -0.014289178, -0.009593584, -0.008790745, -0.027444936, -0.029792733, 0.0071513355, 0.00199023, 0.02417961, -0.00199023, 0.009391188, -0.0036195202, 0.03130396, -0.0039703404, -0.0033867646, -0.00041533404, 0.017986283, -0.009256257, 0.014923353, 0.0064429487, -0.0032923128, 0.027822742, 0.0058222665, -0.022115167, -0.011489362, -0.00060929713, -0.031978615, 0.000872834, -0.017460054, -0.009040368, 0.0021909398, -0.013749454, -0.028713286, 0.0016841057, -0.011738985, 0.007873216, 0.0035588015, -0.0045269304, 0.005370248, -0.01906573, -0.0029651057, 0.009067354, 0.0007535045, -0.00437176, 0.043663625, -0.021575443, -0.008642321, 0.0099444045, 0.029010134, -0.023194615, 0.011698506, 0.009735261, -0.023450984, -0.0014707464, -0.017554505, -0.03769968, -0.018323611, -0.022641398, 0.016798891, -0.004054672, -0.03502805, 0.011772717, 0.016852865, 0.0064429487, -0.0016866358, -0.026271038, 0.045093894, -0.0214675, 0.005862746, 0.016083758, -0.011914395, -0.0016276034, -0.027525894, 0.022951739, -0.0026699444, -0.031897657, -0.029199038, 0.020887297, 0.015962321, 0.0069624325, -0.014801915, -0.0044392254, -0.014761436, -0.02308667, 0.00581552, 0.036053527, -0.004236829, 0.008035133, 0.03891406, 0.00708387, 0.0056299902, 0.00086229254, -0.0035756677, -0.0011469123, -0.023208108, -0.011563575, -0.029010134, -0.018094229, 0.048305247, 0.0085478695, -0.017122725, -0.012238229, 0.0022465987, -0.060664915, 0.015071777, -0.018445048, 0.01180645, 0.004847391, 0.025906725, -0.002143714, 0.024085158, -0.016515536, 0.028308494, 0.024476457, -0.03187067, 0.010882174, -0.011050837, -0.000506834, 0.0014530367, -0.037483793, -0.005893105, -0.0005038824, 0.008311741, -0.0056569763, 0.03251834, -0.037618723, -0.0057851607, -0.010531354, 0.013951851, -0.019699905, 0.0128724035, 0.007906948, -0.049573597, -0.004074912, -0.002157207, 0.0128319245, -0.0063417503, 0.01569246, 0.0030089582, -0.016960809, -0.00036663245, -0.041396786, -0.024975702, -0.008014893, 0.015854375, 0.040749118, 0.012379906, -0.014356643, 0.021224624, -0.016367113, -0.003953474, 0.0012413639, -0.009350709, -0.016151223, 0.0065070405, 0.024894744, -0.013310929, 0.023491463, 0.016448071, 0.028416438, -0.008500644, 0.00078302063, 0.005117253, -0.013000588, -0.026594872, -0.0029279997, 0.0039905803, -0.0038219166, 0.011577068, -0.014950339, 0.0032012346, -0.017379094, -0.015341639, 0.01090916, -0.012083058, -0.008143078, 0.014181233, -0.008905437, -0.023464477, 0.010767482, -0.013648257, -0.025313029, 0.0097959805, 0.21988332, -0.041072953, 0.04657813, -0.009357455, -0.028470412, 0.029199038, 0.03292313, -0.02496221, -0.003602654, -0.0071783215, -0.016825877, -0.011516348, 0.0019362578, 0.0051239994, -0.008554616, -0.017190192, -0.04498595, -0.02304619, -0.01727115, 0.0065306537, -0.020131685, 0.0128454175, 0.0126295285, 0.0034070043, 0.0062709115, 0.018822854, -0.034623258, 0.0020627554, 0.013297436, -0.00012396772, -0.0099039255, -0.0043481467, -0.0007315783, -0.014491574, 0.008817731, 0.004995815, 0.028524384, -0.0027407832, 0.021373048, 0.003334479, 0.007852976, -0.0085208835, -0.008999888, -0.0068409946, -0.019052237, 0.022884274, 0.0038826354, -0.017109232, -0.0016773592, 0.0029701656, -0.018161694, -0.0059133447, 0.021912772, 0.019591961, 0.01613773, 0.008331981, 0.017851353, 0.012649768, -0.016232183, 0.016623482, -0.009033621, 0.027310006, -0.015719445, 0.016164716, -0.028470412, 0.041774593, 0.014491574, 0.011448883, -0.010349196, -0.022088181, 0.005680589, 0.0006345967, -0.022196127, 0.030818207, -0.011685012, -0.023370024, -0.016677454, 0.022803316, 0.014113768, 0.014208219, -0.016245676, 0.006797142, -0.018040257, 0.009188792, -0.0044088657, -0.011253234, -0.0008572326, 0.019686412, -0.013978837, 0.0041794833, -0.008750266, -0.02099524, -0.0015677279, 0.019187167, 0.038320363, 0.015517049, 0.019092716, 0.0049182298, -0.0068814736, -0.017028274, -0.0173656, 0.03446134, 0.02685124, 0.004263815, -0.013924865, 0.012987095, -0.019713398, 0.006847741, -0.013412127, -0.048197303, -0.0022533454, -0.039615702, 0.015382118, 0.001954811, 0.0040310593, -0.003875889, -0.0075223953, -0.01625917, 0.021602431, -0.014896367, -0.006088755, -0.032464366, 0.002573806, 0.0056738425, -0.009330469, -0.00964081, -0.038590226, 0.016866358, -0.01163104, 0.0019834836, 0.021521471, -0.011813196, 0.014950339, -0.0009993317, -0.015017805, -0.013297436, -0.0075966073, 0.0067161834, -0.015247187, -0.0046652346, -0.002894267, -0.034029562, 0.017999776, -0.013189492, 0.025043167, 0.02086031, 0.034299426, 0.0099309115, -0.009384441, -0.005306156, -0.026014669, -0.014316164, -0.0037611977, -0.013169251, 0.013149012, -0.01818868, -0.0035689212, -0.015139243, -0.0061562206, 0.0021723867, -0.028794246, 0.023869269, 0.012595796, -0.019349085, -0.012184257, -0.015813896, -0.17271149, 0.018836347, -0.013472846, -0.030548347, 0.016623482, 0.0020543223, 0.00039404028, -0.007529142, -0.0042604418, -0.005174598, 0.025744807, 0.009586837, -0.028173564, -0.031600807, -0.005515299, -0.01740608, -0.022965232, 0.056563016, 0.019011758, 0.034434356, 0.039237894, -0.009492386, 0.008224036, 0.0041221376, 0.013000588, -0.025380494, -0.0027930688, -0.026594872, -0.0078124967, -0.009505879, -0.0011232994, -0.009384441, 0.017905325, 0.025029674, -0.0056873355, -0.005107133, 0.011570321, 0.00063375337, -0.012224736, 0.031600807, 0.019241141, 0.028254522, -0.027593361, 0.008062119, 0.0007729008, 0.038158447, 0.005616497, -0.014680478, -0.0046281284, -0.0098364595, 0.028092604, -0.011941381, 0.008251022, 0.022897767, 0.023639886, 0.0026750043, 0.009715022, -0.0032147276, 0.013459353, -0.0035520548, -0.019025251, -0.027296513, 0.003231594, 0.002440562, 0.0017406081, -0.0154765695, -0.021966744, 0.020388052, -0.030305471, 0.006014543, -0.0029381195, 0.01289939, 0.000995115, -0.021346062, 0.0057480545, 0.009499133, -0.012258468, 0.011718745, 0.006173087, 0.014154247, -0.0021167279, 0.011550082, -0.019146688, 0.020131685, -0.0054242206, 0.009107833, -0.013324422, 0.0028369213, -0.02189928, -0.012029086, -0.005549032, -0.007562875, -0.020738874, -0.019268127, 0.0070636305, 0.022519961, 0.020226136, 0.023747832, -0.003027511, 0.0077315383, -0.00046972805, -0.0055996305, -0.020104699, -0.004756313, 0.03807749, -0.012973602, 0.010895667, 0.0063788565, 0.018984772, 0.0012413639, -0.025353508, 0.02392324, -0.0055861375, 0.0040917783, 0.0039568474, -5.7398323e-05, 0.016758412, -0.012191003, 0.0128319245, 0.002334304, 0.042179387, -0.008251022, -0.001199198, -0.0024338153, -0.013391888, 0.011361178, -0.09477544, 0.0030157047, 0.023154136, 0.007515649, -0.0035722945, 0.014289178, 0.0018350597, 0.016380606, 0.026986172, 0.013263703, -0.033597782, -0.011745731, 0.001894092, 0.0061528473, 0.014248699, 0.024260568, -0.030359443, -0.0072390405, -0.002528267, 0.008837971, 0.0063046445, -0.0327882, 0.004445972, -0.0066790776, -0.0010364377, 0.011894155, -0.018310117, 0.021130173, 0.009654303, -0.0075966073, 0.011536588, 0.004071539, 0.015935335, -0.018944293, -0.024206595, -0.009748754, -0.031034097, -0.0049519627, 0.006399096, -0.029387942, 0.00044906675, 0.012285454, 0.01723067, -0.03208656, 0.016717933, -0.01270374, -0.011718745, 0.023450984, 0.021103187, -0.017810874, -0.01889032, -0.040344328, -0.004844018, 0.009121326, -0.001233774, 0.002772829, -0.0055220453, 0.0030106448, -0.025704328, 0.0018063869, -0.0007362165, 0.013783188, -0.032761212, 0.014680478, 0.006783649, 0.001875539, -0.022398522, -0.017500533, 0.01034245, -0.0042064693, -0.005592884, -0.0064193355, -0.002064442, 0.005576018, -0.010308717, -0.013142265, -0.025016181, -0.0061832066, 0.031681765, -0.0014994192, -0.0025299536, -0.017635463, 0.016677454, -0.004162617, 0.014451095, 0.0010254745, 0.009101086, 0.023370024, -0.004682101, -0.025825767, 0.015989307, 0.021710375, -0.004311041, -0.020617435, -0.0016292902, 0.044230334, 0.0025265804, -0.00617646, 0.02216914, 0.010355944, -0.024085158, 0.0033041195, -0.06643996, 0.025299536, -0.013155758, -0.010720257, -0.010619058, -0.02453043, -0.010079335, -0.009411427, 0.019308606, 0.008905437, 0.009870192, 0.022412015, 0.019902302, 0.0034845895, -0.029064108, -0.011165529, 0.022816809, 0.0058458797, 0.012987095, 0.02357242, -0.0010119814, -0.025178099, -0.010430155, 0.015746431, 0.0029381195, -0.0043785064, 0.0010355944, 0.03214053, -0.007185068, 0.020833325, 0.010140054, -0.044365264, -0.015004312, 0.00011785367, -0.013911371, -0.043663625, -0.033651754, 0.014815408, -0.003180995, 0.034650244, -0.017109232, -0.022803316, 0.007367225, -0.02903712, 3.868721e-05, 0.023343038, 0.005832386, 0.007691059, 0.029711775, 0.017608477, 0.026230559, 0.005430967, -0.03427244, -0.024692347, 0.0015061657, 0.0067667826, 0.0018991518, 0.008912183, 0.00037675226, 0.018256145, 0.038482282, 0.008122838, 0.0189308, -0.010841695, -0.0030764237, -0.009573344, -0.0022584053, -0.016218688, 0.0015660413, -0.019659426, -0.02509714, -0.0021335941, 0.0028048751, 0.0050396677, 0.004621382, 0.022277085, -0.0067026904, -0.0011679953, -0.010983372, 0.013283943, -0.003180995, -0.02890219, -0.037052013, -0.015490063, 0.004550543, 0.013371648, -0.030845195, 0.029226024, 0.0012852164, 0.0257583, -0.022776328, 0.010268238, 0.015355132, 0.017082246, -0.002217926, -0.0008078985, -0.017203685, 0.010760736, 0.02968479, 0.017729916, 0.020887297, 0.006550893, -0.008763759, -0.025070153, -0.011293713, 0.006264165, -0.019254634, -0.0030241378, -0.015179722, 0.029010134, 0.022951739, 0.0028436678, 0.029414928, 0.03467723, -0.00091499987, -0.000542675, 0.033597782, 0.002398396, -0.009458654, 0.03537887, 0.015206708, -0.00028525226, 0.025110632, -0.019996753, 0.0294689, -0.01289939, 0.010511114, -0.016475057, 0.018350597, 0.001912645, 0.014774929, 0.0004984009, -0.039075978, 0.00017994294, -0.00235623, -0.013526819, 0.018296624, 0.013526819, -0.01897128, 0.03724092, 0.0071243495, -0.0048237783, -0.021224624, -0.009647557, 0.010794468, 0.006220313, -0.008730027, -0.00381517, -0.03432641, -0.002963419, 0.00909434, 0.009951151, -0.026878227, -0.011651279, -0.014005823, 0.003602654, 0.02784973, -0.016097251, 0.018202173, 0.022331057, 0.017392587, 0.005120626, 0.018863333, 0.0027896955, 0.0033412254, 0.028983148, -0.020010246, -0.010727003, -0.01744656, 0.005174598, 0.00674317, -0.029657803, -0.02728302, -0.012757713, -0.026567886, 0.02164291, -0.02111668, 0.01455904, 0.022546947, -0.0066183587, 0.025893232, -0.004172737, -0.049141817, 0.0069894185, 0.015530542, -0.00054351834, 0.0070501375, -0.045471698]" 18647241,Madoff’s Victims Are Close to Getting Their $19B Back,https://www.bloomberg.com/graphics/2018-recovering-madoff-money/,157,1544443205,186,motiw,"[-0.009495153, -0.018963614, 0.026530378, -0.04414612, -0.0063056354, 0.016561469, -0.0075000366, -0.001258625, -0.0337902, -0.008907962, 0.03536494, 0.024902256, -0.007840341, 0.023447623, -0.008334115, 0.008073883, 0.023914708, -0.010996494, -0.0070663155, -0.003653265, -0.02151256, 0.02219317, -0.051032275, -0.00089496654, -0.016694922, 0.0014838262, 0.010609482, -0.0027774824, 0.040622972, -0.008387497, 0.010836352, -0.009034742, -0.018523222, 0.0022937167, -0.037179895, -0.0107295895, 0.006115466, 0.010609482, 0.007993811, -0.0073398934, 0.033656746, 0.0024805504, 0.006332326, -0.011590359, -0.03792723, 0.0006147161, -0.0036465924, -0.035044655, -0.018456496, 0.026023258, 0.015266978, -0.002340425, -0.012324348, 0.007927085, 0.0039835605, -0.041797355, 0.0042304476, 0.028505476, -0.0034197231, -0.004277156, 0.022606872, -0.029412955, -0.011223365, 0.0039235065, 0.0033846917, -0.0120107345, 0.02356773, -0.009008051, -0.018843507, 0.02207306, 0.0490038, 0.023647802, 0.014532989, -0.008974688, 0.024982328, -0.028265262, -0.0112433825, 0.010189107, -0.0073732566, 0.003589875, 0.009908856, -0.022420038, -0.016534777, 0.01790934, 0.0046107876, 0.00092082296, -0.0076668523, 0.033229697, -0.016508088, 0.020645117, 0.009802094, 0.023888016, -0.0013778982, -0.00344975, -0.0120107345, 0.021739429, -0.0312546, -0.0027708097, 0.0020935377, -0.030400503, 0.01281145, -0.023394242, -0.0075934534, -0.012637962, 0.014879965, -0.0025572856, 0.027357785, -0.007233131, -0.003217876, -0.0053114137, -0.0030227015, 0.028985906, 0.005471557, -0.021352418, 0.029172739, -0.022233205, 0.009221575, 0.00029755762, 0.0014829921, -0.02168605, 0.008787855, 0.011977372, 0.0007031284, -0.0018349733, 0.022953847, -0.024088195, -0.021392453, -0.005988686, 0.036405873, 0.0090547595, -0.018016102, 0.0023637793, 0.014933347, -0.012324348, 0.0077135605, 0.017308803, -0.009722022, -0.00030652396, -0.0070663155, -0.020057926, 0.037980612, 0.01174383, -0.0075534177, -0.02486222, -0.036485944, 0.02021807, -0.0050578536, 0.011690448, 0.016708266, -0.01410594, 0.019430699, 0.007580108, -0.010002273, 0.014893311, -0.007219786, 0.006879482, -0.020898677, -0.0059753405, -0.033416532, -0.0256229, -0.02458197, 0.03018698, -0.017855959, 0.018643329, -0.002485555, 0.017108625, 0.016254527, -0.0015063463, -0.009548534, -0.010315887, 0.017669125, 0.010702899, -0.02536934, 0.022059716, -0.0055649737, 0.016694922, 0.01770916, -0.00016858817, -0.0010968136, -0.010676209, 0.01331857, 0.0125245275, 0.009001378, 0.039662115, -0.003473104, -0.013945797, 0.004510698, -0.011556996, 0.004417281, -0.046254672, -0.00768687, 0.016774993, 0.00016087295, -0.010776298, -0.62391764, -0.011897299, -0.020805262, 0.008053864, -0.0181629, -0.011523632, -0.016227838, -0.0061321473, -0.032882724, 0.009835457, -0.00078194885, -0.010329232, -0.0007460835, -0.04243793, -0.01923052, -0.008374151, -0.011677103, 0.013705582, -0.018069483, 0.0056583905, -0.036966372, 0.019670915, 0.0012969925, 0.011023185, -0.0021102193, -0.016548123, 0.013665547, -0.027971666, 0.0038934797, 0.011129947, 0.0003705395, -0.0023137345, -0.009581897, 0.0049510915, 0.047242224, 0.0038701256, 0.024048159, 0.012317675, 0.027437856, 0.033416532, 0.016521433, -0.0016372966, 0.025315959, -0.007546745, 0.009748713, 0.0062856176, 0.0077535966, 0.01344535, 0.0039134976, 0.015960932, 0.006872809, 0.010549429, -0.018643329, -0.015080145, 0.043692384, 0.028025048, 0.006098784, -0.01481324, -0.0009933879, 0.0056583905, 0.016628195, -0.017749196, -0.0013520417, -0.017362185, 0.0011443561, 0.020458285, -0.037847158, 0.011089912, 0.02863893, -0.0187234, 0.0073398934, 0.03533825, -0.009214902, -0.020204725, 0.005811861, -0.01666823, 0.02757131, -0.01385238, 0.0014271088, 0.033656746, -0.009268284, -0.028932525, -0.046441507, -0.00091498444, 0.0042938376, 0.009675314, -0.0068861544, 0.0127847595, 0.0049577644, 0.0026523706, 0.00124945, 0.026196746, 0.010809661, -0.02508909, -0.009775404, 0.024995673, -0.011683776, -0.0127780875, -0.005081208, -0.026530378, 0.005982013, -0.019897783, -0.0033429877, 0.0015739066, 0.017081933, -0.0027908275, 0.0036265745, 0.017442256, 0.060640864, -0.027624689, -0.0020618427, -0.014693132, 0.0052313423, -0.0052246694, -0.016855065, -0.02258018, -0.00054882385, 0.014025869, -0.012384402, -0.012597926, 0.018750092, 0.014492953, 0.02356773, 0.0112433825, -0.010202452, 0.009548534, 0.02075188, -0.034670986, 0.009401736, -0.0035431667, 0.013411987, -0.02193961, 0.025943186, -0.018589947, -0.0077335783, 0.011703794, 0.036779538, -0.016801683, -0.007239804, -0.016000967, 0.0009967241, 0.015200252, 0.02097875, 0.013231826, -0.02767807, -0.045427267, -0.004697532, -0.010055654, -0.02973324, 0.005308077, -0.0002583559, -0.007106351, -0.0068861544, 0.008741146, 0.006562532, -0.0034063777, -0.01331857, -0.042411238, -0.0312546, -0.012771415, -0.009775404, 0.026717212, -0.02975993, 0.0063756984, 0.017121969, -0.042277787, 0.013718928, -0.0099956, -0.021445833, -0.013011629, 0.013658875, -0.0032112033, -0.005177961, 0.005845224, 0.008507604, 0.037553564, 0.0041870754, -0.004026932, -0.009581897, 0.00550492, -0.0034797767, 0.003960206, -0.0072131134, -0.006445761, 0.01963088, 0.005745135, -0.0026740567, 0.029679859, 0.007947103, 0.023914708, -0.008307424, 0.014960038, 0.019564152, 0.0028442086, -0.0099555645, 0.0042037573, 0.0047375676, -0.022433383, 0.0080271745, 0.026370235, 0.024688732, 0.006789401, 0.007379929, -0.0019534125, 0.009555207, -0.0028942535, 0.0051612793, -0.018523222, 0.007006262, 0.0018499867, 0.013265189, 0.010896405, 0.007833668, -0.0025739672, 0.006032058, 0.046281364, 0.018683365, 0.010095689, -0.00794043, 0.00956188, 0.0015013418, 0.000103947066, 0.0016673235, -0.018296352, 0.016521433, 0.006732684, 0.00531475, -0.015734062, -0.008907962, -0.011990717, 0.0034964583, 0.021846192, -0.0025956533, 0.043318715, -0.003970215, 0.009548534, 0.019390663, 0.0063890438, 0.026210092, -0.019644223, -0.016494742, 0.035551775, 0.0060754297, -0.0016648213, 0.01161705, 0.002085197, 0.023527695, 0.02610333, -0.018803472, 0.035445012, -0.02770476, 0.034110487, -0.02452859, 0.002116892, 0.008274062, -0.012351039, 0.011610377, 0.00930832, 0.016774993, 0.029813312, 0.005534947, -0.008794527, 0.00046333077, -0.011210019, 0.047242224, -0.015013418, 0.029946765, 0.018830163, 0.012644635, -0.01237773, 0.009161522, -0.017989412, -0.0038300897, -0.0050244904, 0.028025048, -0.0076201437, -0.026783938, 0.00740662, 0.0024421827, -0.01481324, -0.0120107345, -0.038033992, 0.0143595, 0.00021039638, 0.016428016, -0.02244673, 0.00870111, -0.012030752, -0.009348355, -0.011690448, -0.028265262, -0.012391075, -0.00074274716, -0.009648624, -0.00026627965, -0.03371013, 0.015533883, -0.008354133, -0.025102435, -0.027731452, 0.007333221, 0.010609482, -0.0042304476, -0.0064090616, 0.03832759, 0.023754563, -0.0040502865, -0.01341866, -0.017722506, -0.022259895, 0.015293669, 0.0015430457, -0.015840825, 0.027864905, -0.009888838, 0.010189107, -0.018549912, -0.002171941, 0.0012294322, 0.02272698, -0.0010567778, -0.008707782, -0.041637212, 0.0013153423, 0.13067679, 0.025155816, -0.020831952, 0.0014454585, 0.017869305, 0.014626406, -0.0021052149, -0.032162078, 0.013799, -0.011957354, 0.02610333, -0.01359882, 0.009288302, 0.013658875, 0.021726085, 0.0111099295, 0.0070329523, -0.013985833, -0.0013795663, -0.02508909, -0.016241182, 0.0054882383, -0.0071196966, 0.049457535, -0.01512018, -0.014906656, 0.03926176, 0.028665619, 0.00022832907, -0.029786622, -0.013692237, -0.006318981, 0.010849697, 0.024728768, -0.0028608902, -0.0098287845, 0.0064424244, -0.015987622, 0.017922685, 0.012798105, -0.0029342892, -0.02024476, -0.0011310108, -0.01136349, 0.02564959, 0.0052747144, -0.017842613, 0.010636173, -0.012411092, 0.002350434, 0.029359573, -0.02554283, -0.04249131, 0.01461306, -0.0064924695, -0.0009867152, -0.012290985, -0.031948555, -0.016574813, 0.027811524, -0.036966372, -0.0061488287, 0.0068394463, -0.02103213, 0.012858159, -0.03573861, 0.004974446, -0.019257212, -0.012591253, -0.019470735, 0.0013311898, 0.0047942847, -0.016374635, -0.0019350628, 0.0256229, -0.0020201388, 0.026970772, -0.0061388197, 0.011710466, 0.010589465, 0.0057751616, -0.038487732, -0.0268907, -0.01897696, -0.010035636, 0.028025048, -0.0008732805, -0.034937892, -0.017348839, 0.036192346, 0.023714527, -0.0018232962, 0.007359911, -0.014573025, -0.0015405435, 0.00016212407, -0.0025139134, 0.01410594, 0.0154805025, -0.0043939273, 0.018536568, 0.027010808, 0.009048087, -0.004353891, 0.009441772, -0.0034430772, -0.007953775, -0.00019298498, -0.0080338465, 0.01534705, 0.016681576, -0.01486662, 0.0065124873, -0.0029276165, -0.014546334, 0.006065421, 0.0068294373, 0.008440877, 0.005895269, -0.008621038, -0.012884849, 0.0066225855, 0.029412955, 0.016788337, -0.013999178, -0.0027291058, 0.017482292, -0.03531156, -0.003566521, 0.0068294373, -0.009928874, 0.020191379, -0.01616111, -0.00518797, -0.009501826, -0.019777676, -0.018523222, -0.012444455, -0.009895511, 0.011330126, 0.0037433456, -0.010996494, 0.010162416, -0.018736746, 0.023220753, -0.02821188, -4.4466826e-05, 0.027544618, 0.0021852865, 0.012511182, -0.027224332, -0.0187234, -0.0174556, 0.022233205, -0.0077736145, -0.007953775, -0.006872809, 0.0063923798, 0.023501003, 0.0041336943, 0.033950344, 0.008093901, -0.0245019, -0.016828373, 0.010362595, -0.0001360591, -0.006872809, -0.009788749, -0.02244673, 0.03477775, -0.009368373, 0.010996494, 0.011577014, -0.02767807, 0.0027491236, 0.017348839, -0.0027057517, -0.0042037573, -0.022753669, -0.00048543385, -0.004380582, -0.00740662, -0.006625922, 0.0024471872, -0.020965405, -0.0053314315, 0.008127264, 0.010576119, 0.0020568382, -0.0075934534, 0.023100646, -0.012384402, 0.012331021, 0.0017749197, -0.008814544, 0.015307014, -0.014386191, -0.015106835, -0.014826585, 0.0020067936, 0.019243866, -0.01461306, -0.0063890438, -0.012064116, -0.008374151, -0.0054115034, -0.024061505, -0.017589053, 0.017869305, -0.024061505, -0.0055482923, -0.019911129, -0.032509055, -0.013605493, -0.00032529072, 0.00021310714, -0.0076935426, 0.0061855284, -0.019537462, -0.032135386, 0.003556512, -0.010042309, 0.027784832, -0.009168194, 0.04096995, 0.030400503, -0.0040369416, 0.0062922905, 0.012604599, 0.0018283008, -0.005308077, 0.034243938, 0.020364868, -0.036005512, -0.007760269, 0.007480019, 0.002318739, -0.019177139, -0.019564152, 0.019323938, 0.012551217, 0.014426227, -0.015080145, -0.03843435, -0.0046007787, 0.023220753, 0.011123274, 0.0013203467, 0.0019951165, -0.029973455, -0.018269662, -0.0016898436, -0.010576119, 0.02511578, -0.00046166262, -0.022887122, -0.0023888017, -0.021339072, 0.005761816, 0.013839035, -0.022606872, 0.0018266325, -0.008894616, 0.027491236, -0.013331915, 0.020151343, -0.009415082, -0.027210986, -0.020338178, 0.019697605, -0.010089017, 0.016094385, -0.0038767983, -0.0017015208, -0.012417765, 0.009915529, -0.011016512, -0.028665619, 0.003408046, 0.016067693, 0.014279429, 0.0029976792, -0.010149071, -0.00806721, -0.008614366, -0.013799, -0.023834636, -0.0064490973, 0.0134320045, -0.014292774, -0.0015972609, -0.013865726, 0.021058822, -0.008527622, -0.027971666, -0.020698499, -0.009281629, 0.018629983, -0.007386602, 0.003599884, -0.004644151, 0.0025205861, -0.015293669, 0.015840825, -0.009948892, 0.0138123445, 0.011116602, -0.007506709, -0.009855475, -0.01217755, -0.004710877, -0.008514277, 0.013452022, -0.0036432561, -0.0063022994, 0.01717535, -0.009875493, -0.01742891, -0.024648696, -0.0052780504, 0.0067560384, 0.0015939246, 0.020791916, -0.013452022, 0.018042792, -0.0048543387, -0.0052313423, 0.019951165, -0.011176656, -0.014786549, -0.012110824, 0.023180718, -0.031414744, -0.00806721, -0.02714426, -0.0230873, -0.005518265, 0.009481807, -0.0029159395, 0.00019069127, 0.019657569, 0.039235067, 0.016121075, 0.0019183812, -0.012357712, -0.00930832, -0.021272346, 0.0015071804, 0.011903972, -0.03168165, -0.02193961, 0.02047163, 0.018910235, -0.018109519, -0.025783043, 0.00018818902, -0.057758287, -0.008527622, -0.0174556, 0.051619466, 0.039555352, 0.016574813, 0.0046508233, 0.036966372, 0.0075934534, 0.040249307, 0.0031578224, -0.010335905, 0.028879143, -0.0003038132, 0.007233131, -0.036219038, -0.045854315, 0.012424437, 0.010022291, 0.011463579, 0.019791022, 0.014933347, 0.00484433, -0.0035965478, 0.0080271745, -0.008227353, 0.0042404565, -0.004670841, 0.016054349, -0.02731775, 0.008560984, 0.023794599, -0.013525422, -0.030480575, -0.0032228804, 0.005534947, -0.016067693, 0.0046007787, -0.0054148394, -0.012644635, -0.012064116, -0.00730653, 0.02861224, 0.007920412, -0.0034330683, 0.027024154, 0.016374635, -0.024008123, -0.02041825, 0.0034330683, -0.001206078, -0.009795422, 0.0135521125, -0.046281364, 0.021912917, 0.018589947, 0.013391969, -0.003663274, -0.0077402513, -0.0056917537, -0.013365279, -0.009775404, 0.018683365, 0.013078355, -0.014879965, 0.01790934, 0.0032378938, 0.021739429, 0.0075534177, -0.0064090616, -0.03384358, -0.025823079, -0.020004546, -0.007820323, -0.011510287, -0.024648696, 0.01100984, -0.012290985, -0.014172667, -0.012371057, 0.21288359, -0.00082490395, 0.00525136, 0.030640718, 0.0051612793, 0.02219317, 0.0048510022, 0.017642435, -0.026450306, -0.007506709, -0.020338178, -0.0011293427, -0.007313203, -0.0007060477, 0.00031924367, -0.009875493, -0.00844755, -0.003493122, 0.0018149555, 0.0050211544, 0.0076668523, 0.020124653, 0.0013420328, -0.014506298, 0.010796316, -0.016027657, -0.0035798661, 0.009788749, 0.03485782, 0.024194958, -0.00048084641, -0.013085028, -0.013185117, 0.002849213, -0.025743008, -0.00986882, -0.036085583, -0.012411092, -0.007333221, 0.0007127203, 0.010509393, 0.01103653, -0.016267873, -0.010235815, -0.021699393, 0.0074933637, -0.0002443851, -0.013799, 0.0022903804, 0.0113701625, -0.03947528, 0.0025122452, 0.02283374, 0.004096995, 0.010529411, -0.017749196, 0.027037498, 0.0020017892, -0.009648624, -0.008260717, -0.022953847, 0.019003652, 0.022033025, 0.013905762, -0.03483113, 0.024128232, -0.0080271745, 0.016881755, 0.03739342, -0.010462685, 0.013411987, -0.0019867758, -0.01818959, -0.00287924, -0.008941324, -0.023327516, 0.010836352, 0.016201146, 0.022380002, 0.0059453137, 0.023754563, -0.0113701625, -0.003102773, 0.0026340208, -0.0067026573, -0.024154922, 0.01237773, 0.016628195, -0.004010251, -0.0025022363, 0.01225095, -0.022206513, -0.023367552, -0.0026390252, 0.021072166, -0.011603704, 0.022606872, 0.035098035, -0.025809733, -0.007847013, -0.013632184, 0.019243866, 0.012444455, -0.0012519523, -0.019337283, -0.034003723, 0.011056549, 0.03731335, -0.0029059304, -0.031121148, 0.0072664944, -0.013919107, -0.00239047, -0.018670019, 0.03138805, 0.02731775, -0.0010451007, 0.011857264, 0.03120122, 0.015427121, 0.006098784, -0.02770476, 0.022059716, -0.018670019, -0.008340788, -0.013378624, -0.029466335, -0.023687838, 0.0065024784, -0.03018698, 0.004580761, -0.000720227, 0.0074666734, -0.032989483, -0.011356817, 0.017015208, 0.009535189, 0.01694848, -0.002045161, 0.0005696758, 0.016374635, 0.0007006262, -0.00090163917, 0.01293823, 0.013438677, 0.02021807, 0.03838097, -0.006762711, 0.0037566908, -0.004584097, -0.023701183, 0.0018850181, -0.01706859, -0.020738535, -0.014893311, -0.021459179, -0.013592148, -0.030373814, -0.0080338465, -0.0015964268, -0.04769596, 0.03280265, 0.02207306, -0.012664652, -0.020031236, 0.012331021, -0.16740295, 0.015827479, 0.008974688, 0.002827527, 0.059573244, -0.0065491865, 0.014746513, -0.014973382, -0.0099555645, 0.006332326, 0.008941324, -0.0060954476, -0.019444045, -0.029012596, -0.01861664, -0.019110413, -0.01793603, 0.03138805, 0.022206513, 0.009748713, 0.034697678, -0.0028825763, 0.0001783886, -0.016067693, 0.025022363, -0.005471557, -0.017028553, 0.00781365, -0.0021035466, -0.01694848, -0.010002273, -0.0019667577, 0.034884512, -0.016107729, -0.016307909, 0.016868409, 0.000762348, -0.0052980683, -0.011023185, -0.014372846, 0.018109519, 0.008374151, 0.016548123, 0.004373909, -0.004033605, 0.033950344, 0.02962648, -0.011056549, -0.025889806, -0.0026924063, 0.02024476, -0.024301719, 0.006225564, 0.006315645, 0.0007694377, 0.018176245, 0.023420932, -0.012110824, -0.017562363, 0.00035698572, -0.021192273, 0.006852791, 0.031841792, -0.018496532, 0.001768247, -0.024795495, -0.0051913066, -0.019951165, -0.024301719, 0.026730558, -0.010802989, -0.014266084, 0.006025385, 0.008874598, 0.0065892222, 0.021165583, -0.01782927, -0.004026932, -0.017949376, -0.018096173, -0.027864905, 0.047856104, 0.008020502, -0.0024938956, -0.010322559, -0.021419143, -0.0050978893, -0.019844403, 0.009862147, -0.014666442, -0.013665547, -0.034937892, 0.017095279, 0.0003567772, -0.00994222, 0.0007189759, 0.016828373, 0.032722577, -0.0034197231, -0.01846984, -0.008667747, 0.02486222, -0.013865726, 0.023327516, 0.017869305, 0.018910235, -0.013879071, 0.0312546, 0.018790128, 0.010989822, -0.00743331, 0.022166478, 0.016788337, 0.029599788, -0.019404009, 0.026036603, -0.0068861544, -0.00095835654, -0.012144187, -0.016628195, 0.07590784, 0.011730484, -0.019777676, 0.013158427, -0.014666442, -0.00717975, -0.12715365, -0.01174383, -0.0045373887, 0.017508982, 0.03795392, 0.023180718, 0.018629983, 0.007893722, -0.023127336, 0.037073135, -0.01951077, -0.04508029, 0.007973793, 0.01976433, 0.014439572, 0.011049876, 0.027464546, -0.014399536, 0.0040035783, 0.031948555, 0.0025205861, 0.0027758142, 0.001851655, -0.021112202, -0.01088306, -0.00806721, -0.014519644, 0.04508029, 0.006078766, 0.022353312, 0.028585548, 0.0038267535, 0.009241593, -0.020311486, 0.014346155, -0.016654884, -0.03731335, 0.0007289849, 0.03226884, -0.051032275, 0.0060087037, 0.010042309, 0.016441362, -0.028905835, 0.0230873, -0.01149027, -0.008607693, 0.0134253325, 0.029920075, -0.004043614, -0.03224215, -0.014439572, -0.0141993575, 0.019137103, 0.048256464, 0.02255349, -0.00370331, 0.016828373, -0.00920823, -0.0046408144, -0.00036365836, 0.015467157, -0.0030760826, -0.013605493, 0.003546503, -0.018710056, 0.0012135847, -0.01616111, 0.0079003945, -0.045187052, -0.015680682, 0.017041897, -0.025449412, 0.021085512, -0.008494259, 0.0041336943, -0.032962795, -0.02706419, 0.0011551991, 0.0041970843, -0.016227838, -0.022913812, 0.00047167155, -0.01167043, 0.03592544, 0.00020205558, 0.005778498, 0.011984044, -0.016307909, -0.01509349, -0.0035631845, 0.026210092, -0.006062085, -0.01217755, -0.015774097, 0.026797283, -0.012290985, 0.007106351, -0.003936852, 0.01846984, -0.017895995, 0.0002059132, -0.045507338, 0.036672775, 0.0075400723, -0.0033813554, 0.011296763, 0.011590359, 0.005534947, -0.0038200808, -0.027864905, 0.0011193338, -0.046014458, 0.020391557, -1.0237014e-05, -0.008227353, -0.043292027, -0.01973764, 0.0053414404, -0.010956459, 0.0028925852, 0.018910235, 0.008554312, -0.00021644344, 0.028932525, 0.0058685783, 0.02641027, -0.005875251, -0.012844813, 0.027037498, -0.009168194, -0.0187234, -0.013758964, -0.015747407, -0.0062822816, 0.013198463, 0.01971095, -0.021072166, 0.0010292532, -0.018309698, 0.026597105, 0.008641057, -0.016855065, -0.0047909487, 0.0020484976, -0.015427121, -0.01971095, 0.0017532336, 0.00087911903, -0.0018650002, 0.015413776, -0.0051045623, 0.022993885, 0.015293669, 0.0042471294, -0.025743008, -0.020898677, -0.013638857, 0.022206513, 0.0134320045, -0.0031261274, -0.04863013, 0.0117571745, -0.01268467, 0.015307014, -0.015360395, -0.008494259, -0.02179281, -0.018710056, -0.013211808, 0.02041825, -0.03782047, -0.013692237, 0.00061555015, 0.012064116, 0.010956459, 0.0073932745, -0.012764742, -0.01740222, 0.005768489, -0.0013120059, 0.007333221, -0.016881755, -0.0064224065, -0.024395136, 0.0029726569, 0.02153925, 0.014252738, -0.012164205, 0.019497426, 0.0017532336, 0.016654884, 0.012798105, 0.0065692044, -0.027624689, -0.021605978, -0.0020284797, 0.030560646, -0.008681092, -0.0024104877, 0.0011134952, -0.010242487, 0.022139788, 0.00474424, -0.0037233278, -0.019283902, -0.01717535, -0.010943114, -0.0050044726, -0.05215328, -0.006752702, 0.01895027, 0.032589126, 0.012724706, -0.009648624, 0.012944903, -0.024808839, 0.019817712, 0.020178035, -0.030961005, -0.015240287, 0.031121148, 0.023767909, 0.018883543, 0.008040519, 0.014986727, 0.021966299, -0.000688115, -0.00035615164, 0.0005179629, 0.008100573, -0.0028708992, -0.0014129295, 0.015173561, -0.015587265, -0.002922612, -0.0074199648, -0.021779465, -0.0010551097, 0.019791022, -0.014893311, 0.025929842, -0.017615745, 0.004360564, -0.011830574, -0.014759858, 0.003439741, 0.0086744195, -0.0021652686, 0.004500689, -0.002318739, 0.023647802, -0.009548534, 0.010782971, -0.026543723, -0.0039868965, 0.017295457, 0.013692237, 0.0065692044, -0.031147838, 0.022673598, 0.008754491, 0.0038767983, 0.0010918091, -0.01205077, 0.018990306, -0.010482702, 0.010055654, 0.00239047, 0.011990717, -0.048042938, -0.00069937506, 0.0036799556, 0.011510287, -0.014853275, 0.0187234, -0.010636173, 0.012711361, -0.007079661, 0.01481324, 0.0020601747, -0.027758142, 0.046014458, 0.014346155, -0.016681576, 0.020818606, 0.004433963, -0.0034897856, 0.00018526975, -0.022259895]" 23222019,What is a control system anyway?,https://feltrac.co/control/2020/01/12/simple-control-systems.html,363,1589808437,76,feltarock,"[-0.009808583, -0.00456159, -0.010720235, -0.011092882, -0.0048177843, 0.006767523, -0.011166081, -0.008703953, -0.01625004, -0.021094443, 0.009615606, 0.020255988, -0.016489599, 0.036120076, 0.019989813, 0.0028963268, 0.0431205, -0.01155869, -0.003826279, 0.00022520979, -0.04125727, 0.008983438, 0.0054399706, -0.0263248, -0.03902139, 0.0051505044, 0.013355377, -0.012457034, 0.028108178, -0.0075128158, 0.02699024, 0.0071734414, -0.00956237, 0.004528318, -0.023809437, -0.020814957, 0.005047361, -0.0092695765, 0.002513699, -0.0083379615, 0.0038362606, 0.017288126, 0.005493206, -0.014200486, 0.021334002, -0.006700979, 0.011851483, -0.008218182, 0.0010879941, 0.012071079, 0.018685551, 0.033884197, -0.06026223, 0.001582915, 0.006987118, 0.0098618185, -0.014120633, 0.010320972, 0.028640531, -0.021453781, 0.01155869, 0.021919588, -0.0072399853, 0.011345749, -0.00968215, 0.00084635627, -0.0015263526, -0.0010472359, 0.020695178, 0.018978344, 0.028507443, 0.017887022, 0.02754921, 0.017900331, 0.01166516, 0.0029362533, -0.004711314, 0.010740199, -0.001695208, 0.014826, 0.018991653, -0.0071468237, -0.019257829, 0.03242023, -0.010347589, -0.005313537, -0.010360898, 0.0189118, -0.00939601, 0.013435231, -0.01260343, 0.0040026205, 0.025699286, 0.026258256, 0.0017334707, 0.00091664336, -0.0009998233, 0.017514376, -0.0031125948, -0.017487759, 0.013255562, -0.009808583, -0.039101243, -0.019936576, -0.04125727, -0.015238572, 0.019084815, 0.0049408907, 0.03063685, -0.00060555025, -0.0075793597, 0.023929216, 0.020176135, -0.0067275967, 0.018658932, -0.011265896, 0.005207067, 0.026710754, -0.018938418, 0.011126154, 0.032606553, 0.035215076, 0.00691392, -0.014919161, 0.027815385, -0.010919868, -0.008045168, -0.004388576, -0.00017395013, -0.015504748, -0.011452219, 0.03726463, -0.005030725, 0.027735531, -0.02266488, 0.0109065585, -0.017767243, -0.015957247, -0.02730965, -0.004092455, 0.025858993, 0.014027472, -0.023050835, 0.0016195142, -0.0006458925, -0.0117716305, 0.014826, 0.022837896, 0.0025918882, -0.0018565771, -0.0011903055, -0.0077923005, 0.009994906, -0.0010389179, 0.01503894, 0.028587295, -0.004874347, 0.012989385, 0.00067458965, -0.018712169, 0.021267457, -5.5106735e-05, -0.018113272, -0.0018133236, 0.033458315, 0.029545529, 0.000801855, -0.009928362, -0.013801222, -0.0082913805, -0.004109091, 0.037983306, -0.01901827, 0.022451939, -0.008710607, 0.027362885, -0.0033138904, 0.012024498, -0.009462554, -0.0013067574, 0.020828268, -0.012470342, 0.014652985, 0.047192995, -0.01691548, -0.016662613, -0.0012227456, -0.0026201694, -0.0065579093, -0.014519897, 0.022491867, 0.022984292, -0.019736946, 0.00222756, -0.6192317, -0.012237439, 0.03383096, -0.014719529, -0.011166081, 0.004924255, 0.018206434, 0.00422887, -0.002475436, 0.024754362, -0.0029445712, -0.02997141, 0.009023364, -0.020987973, -0.031674936, -0.011984572, 0.006634435, -0.036066838, -0.00995498, 0.009096563, -0.022797968, 0.02975847, -0.033005815, 0.002330703, -0.0007918734, -0.003926095, -0.0072200224, 0.012929496, -0.0016012146, 0.045303144, -0.007918734, 0.0032007657, -0.0009158116, 0.010913213, 0.047059905, -0.0057593817, -0.0053368276, -0.00094908354, 0.01537166, 0.031834643, -0.008238145, -0.02500723, 0.053155333, -0.019763563, -0.017674081, -0.00065545825, 0.02643127, -0.018845256, -0.011492146, -0.022598337, -0.014453353, 0.009515789, 0.007053662, 0.010840015, 0.0077124476, -0.020096283, 0.037663896, -0.0078122634, -0.0076259403, -0.008750534, -0.0015762605, -0.0085642105, -0.013508429, -0.0053534633, -0.02013621, 0.013441885, -0.011312477, 0.008770497, -0.028693765, -0.014240412, 0.008138329, 0.009768656, -0.011884755, -0.006514656, 0.0006887302, 0.020775031, 0.041869473, -0.039873153, 0.00456159, 0.0077257566, 0.0007332315, -0.007053662, -0.035561103, -0.011798249, 0.02476767, 0.013401958, -0.004109091, 0.033458315, 0.0022192418, 0.0052503203, 0.018299595, 0.038302716, -0.019324373, -0.03657257, -0.004558263, 0.022758042, -0.019164667, -0.012430416, 0.04213565, -0.0138411485, -0.010234465, 0.014400118, 0.01288957, 0.0033637984, 0.025699286, 0.01039417, 0.0012435407, 0.01266332, 0.028800236, -0.018619006, -0.013628208, -0.026724063, -0.0007161796, 0.030610232, 0.021067824, -0.025459727, -0.015464822, -0.0012285683, 0.000926625, 0.0009033346, 0.04027242, -0.013668134, 0.024168774, -0.022185763, 0.0032623187, 0.018073346, 0.0042920867, -0.026351416, -0.029172882, -0.0114988005, 0.01139233, -0.0051039234, 0.013049275, -0.005396717, 0.0009191388, -0.011565344, -0.0009798602, -0.02343679, 0.0026318145, -0.021959515, -0.03662581, -0.026963621, 0.015637835, -0.001624505, -0.004415193, -0.021187603, -0.009276231, -0.004175635, 0.016582761, -0.013974236, 0.010427442, -0.027895238, 0.020375768, 0.005210394, 0.018179815, 1.3347787e-05, 0.014027472, -0.036066838, -0.018619006, -0.030982878, 0.016848937, 0.02555289, -0.0046913507, 0.0049874717, -0.0006966323, -0.010766816, -0.0058225985, 0.009555716, -0.04769873, -0.029572146, -0.002829783, -0.00481113, 0.005776018, 0.025246788, 0.007739065, 0.0075261244, -0.033218756, -0.0028114833, -0.011079573, -0.01867224, 0.0030510416, 0.020189444, -0.014280339, -0.016782392, -0.000997328, -0.015345043, 0.02576583, 0.02278466, -0.021400545, 0.019337682, 0.004881001, 0.0007128524, -0.0009906736, 0.0018499227, -0.015917322, 0.002741612, 0.017341362, -0.00059723225, -0.010108031, 0.024062304, 0.011265896, 0.0032040928, 0.0052603018, -0.011405638, 0.004391903, -0.026937004, 0.008863659, -0.02166672, 0.018326214, 0.015398278, -0.004914273, -0.006098756, -0.0029512257, -0.0020911447, 0.015211955, 0.013248907, -0.0031508575, 0.019311063, -0.022145838, 0.0031059403, 0.014227103, -0.008990092, 0.01990996, 0.011944645, -0.006135355, 0.012643357, -0.009555716, 0.01989665, 0.003232374, -0.037104923, -0.0074263085, 7.262652e-05, -0.009635569, 0.019284446, 0.006045521, 0.02034915, -0.010094722, 0.006398204, 0.03859551, -0.013322106, 0.030104497, 0.015331734, -0.0025186897, -0.017527685, 0.00968215, 0.01857908, 0.020721797, 0.006451439, -0.0071734414, -0.0006425653, -0.014493279, -0.016622687, -0.024075612, 0.007446272, 0.0040092748, -0.006933883, -0.010021524, -0.021507015, 0.05563077, 0.012643357, 0.005396717, 0.0032806185, -0.026950313, -0.023689657, -0.0017883695, 0.0024172103, -0.009635569, -0.01791364, 0.0014897534, -0.013149091, -0.0069937725, -0.0054665883, 0.0054399706, 0.002472109, 0.047192995, 0.013774605, 0.011299169, -0.013421921, 0.024687817, 0.022385396, -0.014440045, -0.021746574, 0.03132891, 0.02166672, 0.00785219, 0.0007748215, -0.0065113287, -0.0047911666, 0.021413853, -0.0027266396, -0.012689938, -0.0037963341, 0.0016186824, -0.017554304, -0.017847097, 0.0013982555, 0.0138411485, -0.0019697018, 0.013921001, -0.0025120354, 0.01924452, 0.021866353, -0.010733545, -0.02688377, 0.03596037, 0.016436365, 0.011452219, -0.038675364, -0.0019197939, -0.027149945, -0.001541325, -0.007878807, 0.005213721, -0.012210821, 0.01039417, 0.013774605, -0.00012414611, -0.018006802, 0.029598763, 0.00086673535, -0.009389356, -0.020841576, -0.009615606, 0.012443725, 0.061806053, 0.0010355908, 0.004488392, 0.018885182, -0.0493224, -0.015850777, -0.026125168, -0.022199072, 0.046634022, 0.008158293, -0.0098352, 0.008051822, 0.008164947, -0.029119646, 0.0027565844, 0.0033920796, 0.030344056, -0.022611646, 0.007346456, -0.00024995583, 0.011272551, 0.021094443, 0.023915907, 0.017501067, 0.030477144, 0.019803489, -0.005912433, 0.019217903, 0.0013275525, -0.017328054, -0.00868399, 0.021334002, -0.0042188885, 0.013195672, 0.008025205, 0.015424895, -0.01056053, 0.00135417, -0.0057926537, 0.015491439, -0.0009382702, 0.010380861, 0.014426735, -0.0131624, -0.0038961503, -0.023170615, -0.01033428, 0.02078834, -0.01859239, -0.036146693, 0.0058225985, -0.011292514, -0.015730998, -0.021280766, -0.017407905, -0.0270834, 0.010613766, -0.00489431, 0.017088495, -0.018073346, -0.03870198, -0.007985278, 0.02765568, -0.003739772, 0.011944645, -0.017687391, 0.006305042, -0.0003963526, -0.016742466, -0.010813397, -0.0128629515, -0.021413853, -0.022771351, 0.020775031, 0.021839736, 0.012962768, 0.012989385, -0.00431205, -0.01670254, -0.010028178, -0.006032212, -0.028667148, 0.0033970703, -0.019058196, 0.0042588147, -0.0001773813, 0.02500723, 0.032526698, -0.014959088, 0.018179815, -0.0029695253, 0.012137623, 0.03604022, -0.026071932, 0.0057726908, 0.025193552, 0.011798249, 0.027336268, 0.028720383, -0.022984292, 0.011319132, -0.021573558, -0.0045416267, 0.0021260802, -0.0053933896, -0.015518057, 0.009049982, 0.008244799, -0.014772764, -0.024834214, 0.024794288, -0.008903585, 0.0050706514, -0.012350563, 0.019484079, 0.0270834, 0.023317011, 0.012689938, -0.0033371807, -0.006278425, -0.007832227, -0.02975847, 0.015810851, 0.03018435, -0.012916187, 0.022678189, -0.021214223, -0.00324901, -0.03771713, 0.011079573, 0.024248628, 0.02665752, -0.006488038, -0.0041456902, -0.024368407, -0.014985705, -0.015331734, 0.0050207437, -0.0047212956, -0.030131115, -0.002941244, 0.016090335, 0.018845256, -0.03042391, 0.0263248, -0.031808022, 0.0008334634, 0.022718117, 0.016982025, 0.027895238, -0.00258357, -0.014054089, -0.014852617, -0.0411508, -0.017900331, -0.041869473, 0.00089834374, -0.0037065, 0.021294074, 0.021507015, 0.029678617, 0.0020844904, 0.022159146, 0.002763239, -0.014413427, 0.0070270444, -0.011991226, -0.009575679, -0.024355099, 0.010986412, 0.01481269, -0.00555975, 0.0054765698, -0.02520686, 0.0043386677, 0.006517983, -0.004511682, 0.0042554876, -0.0021177623, -0.033458315, -0.029838322, 0.012064424, -0.00066793524, -0.0031558485, -0.022252308, 0.0075727054, 0.018459301, 0.025712594, 0.031036114, 0.029891558, 0.011172735, -0.002932926, 0.002613515, -0.011591962, 0.03816963, -0.01735467, 0.012217475, -0.018565772, 0.021107752, 0.01537166, 0.0035135222, 0.0014614722, -0.005992286, 0.024408333, -0.033005815, -0.015278499, -0.0023490025, -0.010540567, -0.0017334707, 0.007739065, -0.02246525, -0.021600178, -0.0072532943, 0.005802635, -0.012430416, 0.027016858, 0.02343679, 0.021919588, -0.012696592, 0.0026501142, 0.021959515, 0.0041822894, 0.01239049, 0.020322533, 0.015491439, 0.04093786, 0.015983865, -0.005516496, -0.027708914, -0.002214251, 0.035800662, 0.016848937, 0.0138411485, -0.027895238, -0.03210082, 0.017926948, -0.007379728, -0.005489879, -0.022225691, -0.00791208, 0.007013736, -0.002322385, -0.0068540303, -0.027256416, -0.005829253, 0.005995613, -0.0036532646, 0.006980464, -0.010899904, 0.002272477, -0.018099964, 0.006418167, 0.00067916454, 5.6094497e-05, 0.019031579, 0.016502907, 0.017740626, 0.013282179, -0.02301091, 0.0045183366, 0.008830386, 0.011452219, -0.02278466, 0.0026584321, 0.03130229, 0.0086241, -0.0045183366, 0.0020079648, -0.00016251288, 0.028800236, -0.02333032, -0.020255988, 0.013089201, -0.016516216, 0.000693721, -0.019390916, -0.015491439, -0.020588709, -0.012290673, -0.007586014, 0.023383556, 0.022026058, -0.03795669, 0.0018399411, -0.002571925, -0.03662581, -0.03204758, -0.000851763, -0.016622687, -0.01083336, -0.01602379, -0.010028178, -0.020335842, -0.010467368, 0.016582761, 0.0037830255, 0.012357217, 0.017634155, -0.020775031, 0.03281949, 0.0030793229, 0.0019364299, -0.021507015, 0.022412013, -0.014839308, 0.00016594406, 0.004731277, -0.027495975, -0.009023364, -0.01702195, 0.00895682, 0.014107324, 0.006281752, 0.00064797205, -0.0046813693, 0.027469356, 0.00066003314, -0.020069666, -0.022451939, -0.013175708, 0.016077027, 0.0069738096, 0.02697693, -0.0016602724, 0.013016003, 0.006268443, -0.013708061, 0.007233331, -0.02400907, 0.008497667, -0.019949887, -0.00025224328, 0.004747913, -0.010068105, -0.0025685977, 0.0014381818, -0.020775031, -0.0058691795, -0.0009574016, -0.018099964, 0.021986132, -0.010360898, -0.02476767, -0.00040113545, -0.016715849, -0.0032273831, -0.01360159, -0.037371103, -0.043306824, -0.0130692385, -0.020255988, 0.046500936, 0.017514376, -0.008011895, 0.008750534, -0.002335694, -0.052117247, -0.012170894, -0.0082913805, -0.0106337285, -0.009961634, 0.013734678, -0.0074728895, 0.030769939, 0.0018249687, 0.021573558, -0.01481269, -0.021334002, -0.0030876407, -0.013468502, -0.02508708, 0.008038513, -0.035774045, -0.043945648, -0.0028630549, -0.00021034137, 0.016090335, 0.0031275672, 0.013415267, 0.004178962, 0.009415974, -0.008903585, 0.014573133, 0.027229797, -0.023636423, -0.0354014, -0.013854457, 0.015185337, -0.026018698, 0.0007407177, -0.029864939, -0.003739772, -0.026284873, -0.00531021, -0.022292234, 0.0016103644, -0.02478098, -0.004960854, 0.021959515, 0.0046846964, 0.008657373, 0.036466103, 0.0034602871, 0.017767243, -0.023090763, -0.0022841222, -0.015225263, 0.010540567, 0.0033621348, -0.009475864, -0.009056636, 0.020522164, 0.013641517, -0.01881864, 0.0033787708, -0.0066044903, 0.0010846669, -0.009588988, 0.031541847, -0.014786073, -0.016888862, -0.011152771, 0.013774605, -0.0058858152, -0.020748414, -0.023649732, 0.027243108, 0.0076059774, 0.021826426, -0.0064414577, 0.015438204, -0.009635569, 0.010879941, 0.01714173, -0.00015086768, 0.00053609494, 0.2134731, 0.003959367, 0.02301091, 0.033990666, 0.010301009, 0.019058196, -0.012097696, 0.016409745, -0.008690644, -0.020282606, 0.0035201767, 0.02885347, -0.007599323, -0.0048510563, 0.0022924403, -0.0036532646, 0.006384895, -0.01824636, 0.007998587, 0.026364727, 0.003922768, -0.0057893265, -0.016316585, -0.02289113, 0.028054943, 0.003157512, -0.01018123, 0.01255685, 0.02523348, -0.0019796835, -0.026963621, -0.005493206, 0.02676399, 0.0102943545, -0.0010805079, -0.0029678617, 0.030477144, -0.011239279, 0.019830108, 0.019989813, 0.030344056, 0.0054998603, 0.015211955, -0.0012227456, -0.0015063895, -2.0509064e-05, -0.010660346, 0.007599323, -0.022731425, 0.007299875, -0.05331504, -0.02476767, 0.018312905, 0.030903026, -0.022292234, 0.0091564525, -0.0027482666, 0.00835127, 0.027815385, 0.041763004, -0.019883342, 0.021453781, 0.0076259403, 0.03196773, -0.0143735, 0.015145411, -0.0064614206, 0.004761222, 0.02024268, -0.0022092601, -0.0011212662, 0.013428575, 0.0038229518, 0.0069605005, -0.003107604, -0.031754788, 0.029864939, 0.00029175376, 0.03127567, 0.00032502576, -0.002488745, 0.016183497, -0.002671741, -0.04479741, -0.022624955, -0.017421214, 0.028667148, -0.007845536, -0.03659919, 0.0012535222, 0.0014298639, -0.018445993, -0.013381995, -0.009136489, 0.0054699155, 0.0038861686, -0.013588281, 0.026870461, -0.0177007, 0.002264159, -0.02531333, 0.007938697, 0.016356511, 0.005193758, -0.0008908576, 0.016582761, 0.0031558485, 0.017674081, -0.01160527, -0.015531366, -0.009502481, -0.033804342, 0.022904439, 0.0016552816, 0.0024088921, 0.02597877, -0.004441811, -0.01559791, 0.01791364, 0.007878807, -0.008630754, -0.035534486, -0.01216424, 0.018685551, 0.010607111, -0.010660346, -0.046208143, -4.0108345e-05, -0.009209687, -0.005849216, 0.0023190577, -0.015531366, 0.001861568, -0.007373073, -0.016329894, -0.009316158, 0.016529525, -0.03726463, -0.012197512, -0.0034835776, 0.007998587, 0.012303983, 0.027495975, -0.004884328, 0.0069405376, -0.004075819, 0.021533633, -0.0018149872, -0.011006375, -0.023516644, -0.008098403, -0.0025918882, 0.01956393, -0.024088921, 0.007872153, -0.0051737945, 0.0030726683, -0.024727745, 0.016875554, 0.009615606, -0.023609806, 0.017887022, 0.010700272, -0.0076924847, -0.0135417, -0.0201229, -0.16641319, 0.011525418, 0.022385396, -0.022105912, 0.029918175, 0.006834067, 0.023929216, 0.019524004, -0.036758896, 0.0005373427, 0.0113390945, -0.016090335, -0.0051704673, -0.028933324, 0.0041490174, 0.009828546, -0.021214223, 0.03127567, 0.025845682, 0.016542833, 0.022105912, -0.024794288, 0.022678189, 0.0050174166, -0.006784159, 0.018286286, -0.004132381, 0.008357924, -0.01736798, -0.028480824, 0.012763136, -0.036998454, 0.050041076, -0.0026567685, 0.021546941, 0.018339522, -0.0077057933, 0.010800089, -0.016995333, 0.01836614, 0.032606553, 0.028267885, 0.00968215, -0.004105764, 1.989821e-05, 0.034895666, -0.010913213, -0.011019683, -0.0019164667, -0.031249054, 0.037610658, 0.004641443, -0.01526519, -0.0049009644, 0.015291807, -0.0061786086, -0.01969702, 0.004448465, -0.008238145, -0.030051263, 0.0032872728, -0.024088921, -0.0035700847, -0.0006579536, -0.0042321975, -0.017314745, -0.011239279, 0.03287273, -0.0411508, 3.2882086e-05, -0.010500641, 0.0032290467, -0.022451939, 0.024807597, -0.013814531, 0.017061878, 0.008098403, -0.00445512, 0.017501067, 0.017980184, 0.018086655, 0.005463261, -0.02278466, -0.0023872654, 0.01680901, -0.018392757, 0.00406251, 0.013288833, -0.013960928, -0.017434524, 0.026457887, -0.023862673, -0.01691548, -0.004022584, -0.008883622, -0.007339801, 0.017421214, -0.0046381154, 0.02101459, -0.020841576, 0.00633166, -0.010014869, -0.012197512, -0.028241266, 0.006737578, 0.018552462, -0.01039417, 0.00839785, -0.0070270444, 0.019537313, -0.025792448, 0.014879235, 0.009868473, 0.006052175, -0.0032024293, 0.018046727, 0.013654825, 0.003560103, 0.020854885, 0.0017817152, 0.03228714, -0.008464395, -0.03281949, 0.024927376, -0.010746853, -0.019324373, -0.1322362, -0.010174575, 0.03287273, -0.02333032, -0.015065557, 0.027629063, -0.02266488, 0.00812502, -0.029918175, 0.027602443, -0.04016595, -0.038914923, 0.0033022452, -0.0131624, -0.016769083, -0.010261082, 0.015970556, -0.03947389, 0.0098352, 0.024714435, 0.009735385, -0.01299604, 0.017314745, 0.011192698, -0.013747987, 0.016409745, -0.018525844, 0.008324652, 0.0004300405, -0.011984572, 0.020269297, 0.0077856462, 0.023596497, -0.022970984, -0.0014731174, -0.009169761, -0.0133420685, -0.02455473, 0.027110018, -0.020695178, -0.014080707, 0.0026800588, 0.010813397, 0.005702819, -0.0052835923, -0.007599323, -0.011452219, 0.020748414, -0.004441811, -0.025952153, -0.038143013, -0.025100391, -0.031089349, 0.0073531102, 0.0013267207, -0.019710328, 0.025393184, -0.012709901, 0.00044126977, 0.02653774, -0.035081986, 0.0130226575, -0.02376951, 0.008936857, 0.008065131, -0.006514656, -0.014107324, -0.011372367, 0.035853896, -0.021533633, -0.022744734, 0.023263777, -0.0064414577, 0.009775311, -0.046394464, -0.012297328, -0.016715849, 0.024341788, 0.03462949, 0.005280265, -0.03617331, -0.026178403, 0.0017318071, -0.027682297, 0.026817225, 0.0052869194, -0.012683284, 0.008051822, 0.006780832, -0.022917747, -0.013894384, 0.029066412, -0.0065080016, 0.009435937, -0.0025453074, -0.00812502, 0.005486551, 0.0074928524, -5.796605e-05, 0.02608524, -0.006847376, -0.0007153478, -0.032579932, 0.014772764, -0.0019414207, -0.019297754, 0.00940932, -0.014107324, 0.022624955, -0.0039327494, -0.010094722, 0.004378594, -0.00046622378, 0.00027366212, -0.016156878, -0.01670254, -0.021733265, -0.019031579, 0.009722076, -0.004129054, 0.018432684, -0.012284019, -0.018006802, -0.024048995, 0.02500723, 0.02555289, 0.0014989033, 0.025512964, -0.0068274126, 0.009036673, 0.010800089, -0.0038329335, -0.003759735, -0.012290673, 0.006601163, 0.022412013, -0.012403798, 0.0033405079, -0.021959515, 0.024701126, 0.008604137, 0.0393408, -0.0007827236, -0.022132529, -0.0060089217, -0.04602182, -0.00073780643, 0.014080707, -0.018259669, -0.003989312, 0.020375768, 0.011658506, 0.005523151, 0.0031275672, -0.020295914, -0.031568464, -0.017394597, -0.021267457, -0.005702819, 0.008284726, -0.021027898, -0.020535473, 0.04027242, -0.0042954143, 0.0042621423, -0.022824585, -0.0030011337, -0.011538726, -0.040086094, 0.011718395, 0.016609378, -0.025925536, -0.019311063, -0.017860405, 0.009222996, -0.031355526, -0.008757188, 0.008111712, -0.022837896, 0.037078306, -0.0067941407, 0.021147678, 0.02853406, 0.017234892, -0.03053038, 0.013129128, 0.047831815, 0.0011711741, 0.0004079978, 0.014253722, -0.008823732, -0.00013703901, -0.0072399853, -0.00021044535, 0.016037099, -0.0016003828, 0.026484506, -0.0033804344, -0.018938418, 0.004105764, 0.020934736, 0.028933324, 0.009868473, 0.008690644, -0.00984851, -0.040911242, -0.014147251, 0.008677335, -0.028134797, -0.030157734, 0.0025453074, -0.0051904307, -0.0014889216, 0.007399691, 0.012284019, -0.0037164814, -0.007952006, 0.017101804, -0.0036066838, -0.043972265, -0.037238013, 0.025499655, 0.009442591, -0.018419374, 0.013987545, -0.014879235, 0.024461567, 0.004960854, 0.014932469, -0.010746853, -0.0002268734, 0.0047712037, 0.024408333, 0.0068606846, -0.02255841, -0.012011189, -0.003859551, -0.036652427, 0.0023955833, -0.014586441, -0.00868399, 0.083738945, 0.016622687, -0.0017750608, 0.00470466, -0.019430842, 0.0015263526, 0.0077257566, -0.0004554104, -0.016782392, -0.031541847, 0.013960928, 0.028773619, 0.02853406, -0.024794288, 0.028720383, 0.008644063, -0.035907134, 0.0010638719, -0.023756202, 0.0082913805, 0.007566051, 0.015757615, 0.003543467, 0.005410026, -0.047139756, -0.012716555, 0.011751668, 0.023742894, -0.026843842, -0.024687817, -0.008737225, 0.034203608, -0.050520193, -0.024900759, -0.012789753, 0.014719529, -0.002455473, -0.011372367, 0.026817225, 0.015744306, 0.018193126, 0.014586441, -0.015518057, -0.023396865, -0.024301862, 0.0060421936, 0.019071506, -0.021693338, -0.011019683]" 34148455,Numba: A High Performance Python Compiler,https://numba.pydata.org/,209,1672148179,59,tosh,"[-0.01907852, -0.0088859815, 0.018305825, -0.010606982, -0.009188035, 0.0010282099, -0.011506117, -0.015945595, -0.034195222, -0.03661165, 0.016605897, -0.004147962, -0.0007485474, -0.0021758361, -0.0065292646, -0.014140301, 0.012946137, 0.00020821032, 0.012257737, 0.010171464, -0.013220092, 0.02457167, -0.005486128, -0.03107635, -0.02843514, 0.018347971, 0.008281875, -0.020876788, 4.0308507e-05, -0.009686774, 0.027971525, -0.018319873, -0.027507909, -0.028322749, 0.009286378, -0.016914975, 0.011590411, -0.014027909, 0.012531692, -0.008106263, 0.04088254, 0.0020845179, 0.00022478373, 0.010866888, 0.014259717, 0.015833203, 0.014034933, -0.0146249905, -0.018909931, 0.008176508, 0.026426136, 0.026988097, -0.009377696, -0.01043137, 0.0006497654, 0.01318497, -0.014329962, -0.014582844, -0.0041725477, -0.0047661173, 0.009349598, 0.010262782, -0.0072562997, 0.02816821, -0.012138321, -0.037257902, -0.003845909, 0.005735497, 0.012686231, 0.0087244185, 0.01683068, 0.006051599, -0.005415883, 0.0018140749, 0.036105886, -0.011232162, -0.008991349, 0.033745658, -0.013522146, 0.008597977, -0.00075425475, -0.021593286, 0.007895528, 0.0061569666, 0.0090405205, -0.011407774, -0.0056968625, 0.015481979, 0.007944699, -0.03054249, 0.043242767, 0.024360936, 0.020244583, -0.0066873156, -0.029924333, 0.034616694, -0.013135799, -0.0020002238, -0.012363105, -0.008225679, 0.013023407, 0.007986846, -0.009476039, -0.009019447, -0.033605166, -0.01976692, -0.00012973357, 0.0026324282, 0.02610301, 0.019584281, -0.010754496, 0.044113807, -0.018432265, -0.044984844, 0.019008273, 0.0005689838, 0.02568154, -0.0070034177, -0.01352917, -0.019682625, 0.01097928, 0.010501615, 0.01640921, 0.00039754232, 0.03711741, 0.015046461, 0.021579238, -0.020680102, -0.03135733, -0.028828513, 0.011091672, 0.010452443, 0.008120312, 0.01332546, -0.017055465, -0.0011845048, 0.016914975, -0.0039969357, -0.04209075, 0.0042533297, 0.020736298, 0.0071755177, -0.00058654504, -0.002758869, -0.0146952355, 0.017069515, 0.012278811, 0.00080254814, 0.007094736, -0.022703156, -0.0011616752, -0.029530961, 0.0089281285, -0.0025902812, -0.029053297, 0.017097611, 0.02622945, 0.02760625, -0.012826721, 0.019935505, 0.012349056, 0.018319873, -0.008485585, -0.027493859, -0.00084249995, 0.024599768, 0.014168399, -0.022028806, -0.013381656, 0.01312175, 0.036724042, 0.030570587, -0.009490088, 0.019162813, 0.0010290879, -0.017364543, 0.004572944, -0.003375268, -0.015229098, 0.011330505, 0.021607336, -0.023644438, -0.011133819, 0.025512952, -0.024276642, -0.006132381, 0.00462914, 0.004583481, 0.0044991868, 0.010255758, 0.0038529334, 0.025836078, -0.011218113, -0.010023949, -0.596576, 0.005159489, -0.02128421, -0.019865261, -0.010958207, -0.024332838, 0.0016428529, -0.014098154, -0.031385425, 0.025147678, -0.015032412, 0.010178488, 0.020188387, -0.0400396, -0.006848879, -0.021846168, 0.00517705, -0.051953137, -0.05838757, -0.0026183792, -0.01506051, 0.018263677, -0.00057688635, 0.03079537, 0.0032628763, 0.020146241, 0.018671097, 0.015987743, -0.017364543, 0.014301864, -0.003701907, 2.0949996e-05, 0.006610046, -0.014807628, 0.051728353, -0.00015420954, 0.0075794263, 0.030008627, 0.011885439, 0.0061394055, -0.029446667, -0.016605897, 0.040404875, 0.0059427195, -0.0028273577, -0.0009799165, 0.027240977, 0.001629682, -0.02746576, -0.01194866, 0.0025832567, 0.019556183, -0.0014812896, 0.006174528, 0.0043692337, 0.0014347524, -0.00027219905, 0.0024655964, 0.00038898122, 0.00023049112, 0.012896966, -6.5854605e-05, 0.011302407, -0.03981482, -0.020834642, 0.00060147204, 0.007825283, 0.013276288, -0.011716852, 0.0036878579, 0.015580322, 0.0146530885, -0.002160031, 0.0027465762, 0.03366136, 0.013908492, 0.0050927564, 0.00054966647, -0.013571317, 0.011829243, 0.010101219, 0.012630035, -0.045912076, -0.028969003, 0.023517996, -0.0012512375, 0.013859321, 0.0009913313, 0.02596252, 0.03678024, 0.005029536, 0.03189119, 0.002558671, -0.06142215, 0.012967211, -0.0040004477, -0.019570233, -0.00023707659, -0.0019053933, -0.024501426, -0.03132923, 0.0085628545, 0.008225679, -0.015299343, 0.015439832, -0.0007893772, 0.017940551, 0.02252052, 0.026566627, -0.035319142, -0.025161728, -0.044422884, 0.010866888, 0.011787096, 0.031132545, -0.035010066, 0.021579238, 1.5818825e-05, 0.009876435, -0.012833745, 0.012419301, -0.0055704215, 0.0036597599, -0.013030431, -8.588538e-05, -0.0047099213, 0.034476202, -0.021354454, -0.04293369, -0.022745304, -0.00022083244, 0.029868137, 0.010866888, -0.006718926, 0.013037456, -0.008359144, 0.008085189, -0.005261344, 0.0036246376, -0.021101572, -0.017729817, 0.0050260234, 0.020525564, -0.016043939, 0.008162459, -0.013683709, -0.0062553096, -0.0009114278, 0.003405122, 0.01277755, -0.009651651, 0.0085488055, -0.016746387, 0.015777007, 0.004727483, -0.009848337, 0.006950734, -0.019190911, -0.0262435, -0.023447752, -0.006722438, 0.0077409893, -0.0044148928, -0.010347076, 0.005890036, -0.0056231054, -0.014484501, 0.03796035, -0.026693067, -0.039955307, -0.016057987, -0.008506659, 0.017673621, 0.010361125, -0.017729817, 0.02871612, -0.015257196, 0.009405794, -0.01587535, -0.016367065, -0.010094194, 0.0023953517, -0.023784928, -0.010023949, 0.031497817, 0.02527412, 0.01546793, -0.011014403, -0.017645523, 0.023517996, 0.022056904, -0.0060129645, -0.01975287, 0.027521957, -0.00089562265, 0.014329962, 0.011611484, -0.0036351744, 0.0087806145, 0.009279353, 0.0033664876, 0.022000708, 0.019780967, -0.021986658, 0.010361125, 0.002729015, 0.037735566, -0.026622823, -0.001644609, -0.029362373, -0.004927681, 0.0045413338, -0.019542135, -0.03467289, -0.0040004477, 0.008331046, -0.01892398, 0.009616529, 0.045237724, -0.007417863, -0.00191593, 0.0034560498, 0.03093586, 0.0020406148, -0.0027096975, -0.0004662506, -0.0070280037, 0.0011247967, 0.008099238, -0.022843646, -0.008471536, 0.0010220635, 0.0012108467, -0.0044991868, 0.03925286, -0.0059848665, 0.016732339, -0.022000708, 0.028336799, -0.0038950804, -0.005503689, -0.0032576078, 0.007705867, -0.022956038, -0.0023075454, 0.017519081, 0.019233057, 0.0044535273, 0.02236598, 0.02457167, -0.028266553, 0.01893803, -0.024824552, 0.0193314, 0.016338967, -0.0359092, 0.007080687, 0.005535299, 0.042961787, 0.019303301, 0.0025463782, -0.0018755392, 0.047963228, 0.0145968925, 0.019542135, -0.04074205, 0.023124626, -0.026383989, 0.010206586, -0.025007188, -0.03326799, -0.018319873, -0.017940551, -0.014400207, 0.037370294, 0.009342574, 0.029221883, 0.017350493, 0.0059286705, -0.010185513, -0.036246374, -0.032762226, 0.028519435, -0.012784574, 0.0073124953, -0.018867783, -0.026440185, -0.0005395687, -0.00807114, -0.001745586, -0.0022144709, 0.006476581, 0.005819791, 0.018558705, -0.0058514015, 0.0011686997, 0.023953516, -0.003405122, -0.0033120476, -0.009630578, 0.025737736, -0.012756476, -0.012946137, -0.020609858, 0.04737317, 0.0033296088, 0.016381113, -0.0022882281, -0.002873017, -0.008408316, 0.017322395, -0.012728378, 0.006062136, -0.0058654505, 0.000115465074, -0.0025516464, 0.0088578835, 0.009792141, -0.006806732, 0.016957123, -0.015453881, 0.015510077, -0.015510077, 0.014470452, 0.05192504, -0.00068400986, 0.004745044, -0.00059400854, -0.049789596, 0.012194517, -0.017870305, -0.022843646, 0.016381113, -0.0028115527, 0.003131167, -0.002516524, 0.018502511, 0.01043137, 0.016170379, 0.0072843977, 0.008099238, -0.013402729, 0.007431912, -0.01043137, 0.0042427927, 0.022970086, 0.018586803, 0.015481979, 0.013451901, 0.0014286059, 0.021185866, 0.026875705, -0.016760437, -0.03770747, -0.003772152, 0.0026517455, 0.0006444971, 0.027030243, 0.0008407438, 0.02016029, 0.011218113, 0.025976568, 0.020118143, 0.005844377, -0.0053070034, -0.01697117, 0.0020371026, 0.013522146, 0.011899488, -0.00459753, -0.00030819955, -0.0033102916, -0.0012758232, -0.011590411, -0.0017218784, -0.023152724, -0.018839685, -0.02610301, 0.009391745, 0.030036725, -0.0043516723, -0.028659925, -0.01961238, -0.015313391, -0.0016375845, -0.014414256, 0.011520166, -0.005247295, 0.015678665, -0.00669434, -0.013170921, 0.0075091813, -0.011056549, 0.0022373004, 0.018165335, -0.054622445, -0.029559059, 0.010592933, -0.010094194, 0.019148763, 0.01194866, 0.0052929544, -0.029053297, -0.014863824, 0.020792494, -0.028645875, -0.028659925, -0.031975485, -0.01077557, -0.006322042, 0.0021547626, -0.006578436, -0.012798623, 0.020652004, -0.0033647313, -0.0030416048, 0.013283313, -0.0089702755, -0.0032663886, 0.014329962, 0.013655611, 0.0047345073, 0.02388327, -0.031160643, 0.03678024, -0.014175423, -0.0036281499, -0.020385073, -0.012285835, -0.014344011, 0.028126063, -0.00583384, -0.000843817, -0.017210003, 0.033520874, -0.008169483, 0.026552577, 0.013697758, -0.0007454741, 0.003814299, -0.008921104, 0.014863824, 0.008099238, 0.0065292646, 0.021031328, -0.015102657, 0.021438748, 0.018291775, 0.000105312494, -0.004260354, -0.012932088, -0.011154892, -0.0021477381, 0.03144162, 0.017139759, 0.018966127, -0.01160446, -0.030711075, -0.03770747, -0.017926501, 0.010656154, 0.0047942153, -0.021171818, 0.012236664, 0.01892398, 0.021185866, 0.016184429, -0.005658228, -0.0036421989, -0.024908846, -0.00082713383, 0.017729817, 0.024908846, 0.027044293, -0.006065648, 0.023714682, -0.0012248957, -0.03796035, -0.016451359, 0.005359687, 0.01097928, 0.01126026, 0.039758623, 0.039590035, 0.019162813, -0.006933173, -0.011478019, -0.009560333, 0.017322395, 0.0028835537, -0.009658676, 0.010909035, -0.03394234, -0.021930462, 0.023939466, -0.004755581, 0.0025358414, 0.01572081, 0.004745044, 0.01614228, -0.010052047, 0.0027816985, -0.016788535, -0.01934545, -0.0087244185, 0.00462914, 0.00400396, 0.032396954, -0.03397044, -0.005401834, 0.022267638, 0.004572944, 0.02651043, 0.037538882, -0.0043903072, -0.0025094994, 0.012594913, 0.027957475, 0.030570587, -0.028083917, -0.016493505, -0.03574061, 0.011232162, 0.009265304, 0.002344424, 0.027255027, 0.019851213, -0.00053386134, -0.029193785, 0.033520874, -0.01298126, -0.015032412, 0.016353017, -0.0070561017, -0.009820239, -0.039758623, 0.0061429176, -0.02264696, -0.026903803, 0.005830328, -0.0013249947, 0.008197581, -0.027423615, -0.009061594, -0.0019931993, 0.008316997, 0.051587865, 0.0062447726, 0.0088719325, 0.034757182, 0.013458925, 0.003786201, -0.0044710888, 0.017617425, 0.012615986, 0.013627513, 0.03492577, -0.008000895, -0.01962643, -0.007677769, -0.0007836698, -0.038747095, -0.03767937, 0.018432265, 0.0034560498, -0.00010909913, -0.019247105, -0.0030837518, -0.01077557, 0.011225137, -0.029025199, -0.014344011, 0.0010387467, -0.007762063, -0.010817717, -0.0032540956, 0.019640477, 0.025934422, 0.0011168941, 0.004105815, 0.0077971853, -0.010452443, -0.03936525, 0.016338967, 0.02333536, 0.041894067, 0.013831223, 0.00075864507, 0.021466846, 0.009546284, -0.004088254, 0.0037756641, -0.00044429908, 0.032396954, -0.026763313, 0.009995851, -0.0074529853, -0.007958748, 0.022843646, -0.005879499, -0.013775027, 0.0011160161, 0.0041584987, 0.00020524686, -0.0008991349, 0.0087665655, -0.017715767, 0.023377508, 0.0050119744, -0.0046502133, -0.005932183, 0.014048982, 0.033436578, -0.040123895, -0.014048982, -0.015439832, 0.0055388114, 0.010852839, 0.012573839, 0.008064116, 0.020750348, 0.017926501, -0.026693067, 0.03798845, -0.0022689106, 0.02594847, -0.0039583007, 0.00073757156, -0.01387337, 0.0059848665, 0.02540056, -0.014112203, 0.0030626783, -0.014161374, -0.005731985, 0.035262946, 0.0106983, -0.041304007, 0.0023057894, 0.034279518, 0.012285835, -0.020075995, -0.013234141, 0.02291389, -0.008324022, 0.013522146, -0.0071720057, -0.015819155, -0.0024603282, -0.026426136, -0.030514391, -0.0011309431, -0.03767937, -0.019373547, -0.028322749, -0.0010176732, -0.0011326992, 0.016577799, -0.024684062, -0.026524479, -0.01823558, 0.022113098, -0.010810692, -0.010803668, 0.003391073, 0.032537445, 0.008246752, 0.025836078, -0.026074912, -0.024655964, 0.0073757158, -0.011351578, -0.016521603, -0.0039828867, -0.005331589, 0.022548618, 0.014344011, -0.018558705, -0.00462914, -0.008239728, -0.027662447, -0.030598685, -0.04321467, 0.0262435, 0.005746034, 0.01781411, -0.0009562089, 0.0331275, 0.005475591, 0.007902552, -0.046923604, -0.0043411357, 0.012925064, 0.0047099213, -0.008176508, 0.0039969357, -0.020047897, -0.01381015, -0.0056652525, -0.012896966, 0.010754496, 0.015748909, -0.0016849999, -0.026004666, -0.0036808334, -0.013964688, -0.014027909, -0.0009281109, 0.019809065, -0.02540056, -0.040292483, 0.014147325, -0.006732975, -0.016886877, -0.037370294, -0.005472079, -0.011253235, -0.008197581, -0.010726398, -0.037538882, 0.004320062, -0.017940551, 0.035150554, 0.0020704689, -0.0043586968, 0.038550407, -0.027395517, -0.0042533297, -0.027255027, 0.021804022, -0.013458925, -0.0025551587, 0.034757182, -0.0038213234, -0.0193314, -0.016943073, 0.022169294, -0.0067997077, -0.016029889, -0.029952431, -0.009419843, -0.008190556, 0.007818259, 0.027002145, -0.016338967, 0.036724042, -0.01166768, 0.0020687126, 0.009960729, -0.044226196, 0.011414798, -0.020890838, 0.0012248957, 0.030008627, 0.007853381, -0.04071395, 0.004249817, -0.0087876385, -0.017308347, -0.0022355444, 0.20500275, -0.006732975, 0.018614901, 0.03329609, -0.006402824, 0.027915329, -0.003961813, -0.009173986, -0.0068594157, 0.0026183792, 0.005401834, -0.0024181812, -0.015748909, -0.0010686007, -0.00026188183, 0.0008324022, -0.009328525, -0.05096971, -0.028702071, 0.03121684, -0.00600594, -5.8336205e-05, -0.0025797444, -0.020694152, -0.00013697759, 0.022028806, -0.014056007, 0.018699195, 0.032902718, -0.02527412, -0.022028806, 0.019991701, -0.010614007, 0.006690828, -0.02017434, 0.008302948, 0.014098154, 0.005043585, 0.02114372, 0.024543572, -0.0045202603, -0.005830328, -0.0038564457, -0.009820239, 0.0088016875, 0.013107701, -0.03385805, -0.011246211, -0.015636519, 0.037286, -0.03711741, -0.033239894, 0.0003176387, 0.023265116, -0.012096174, -0.02017434, -0.00033124868, 0.0087033445, 0.012812672, 0.038634703, -0.018137237, 0.0033383896, -0.0075232303, 0.003059166, -0.020764396, 0.006420385, -0.02250647, 0.0017807086, 0.00383186, -0.018628951, -0.013536194, 0.009307451, 0.005191099, 6.328216e-06, -0.0043305987, -0.04034868, 0.00480124, 0.0036913701, 0.001215237, 0.040966835, 0.013908492, -0.026693067, -0.012524668, 0.0068172687, -0.024936944, -0.030233411, 0.025470806, -0.012552766, -0.019865261, -0.032509346, 0.012075101, -0.0011028452, -0.012601937, -0.020132191, 0.009637602, 0.009216133, -0.013620488, 0.026833557, -0.0037686396, 0.004685336, -0.040236287, 0.030514391, -0.0106983, -0.0062236995, 0.020890838, -0.020652004, 0.010887962, 0.016479457, 0.013782052, -0.022745304, -0.010002876, -0.033914246, 0.017631473, -0.0025990617, 0.026173254, -0.0036773211, -0.0015559249, -0.013318435, 0.017912453, -0.002047639, -0.011337529, -0.015383636, -0.0063396036, 0.011906513, -0.01284077, -0.015580322, -0.025344364, 0.016198477, -0.01194866, 0.024515474, 0.010852839, -0.022323834, 0.01352917, -0.002901115, -0.006163991, -0.005299979, -0.0034700986, -0.0021196404, -0.021452796, -0.010304929, -0.02719883, 0.015664615, -0.014807628, -0.014793579, 0.007923626, -0.0041128397, 0.005545836, 0.011147868, 0.024782406, -0.00911779, -0.0007959627, 0.0024901822, 0.007748014, -0.02843514, 0.013227117, -0.015032412, -0.0049663153, -0.056111638, -0.0021582749, -0.023672536, -0.028350847, -0.012721354, 0.0085628545, 0.020118143, -0.016521603, -0.0147654805, -0.17847827, -0.0044675763, 0.0010984548, -0.02691785, 0.03329609, 0.0045518703, 0.013725856, -0.001058942, -0.015678665, -0.0017289029, -0.0036808334, 0.036527354, 0.00078323076, -0.022351932, 0.0030697028, 0.01359239, -0.009714872, 0.0076356223, 0.037538882, 0.028322749, 0.04585588, -0.02347585, 0.0057811565, 0.0015225585, -0.000672156, -0.01711166, -0.013915517, 5.992769e-05, 0.0026657945, -0.015805105, 0.02238003, 0.015762959, 0.014063031, -0.031666405, 0.028912807, 0.021466846, -0.0047626053, -0.019542135, 0.0018527096, 0.0015190463, 0.027690545, 0.035993494, -0.00980619, -0.0021758361, -0.01879754, 0.009869411, 0.037454586, -0.040573463, 0.02511958, -0.016465407, 0.017336445, -0.027831035, 0.01401386, -0.003575466, 0.032649837, -0.0046361643, -0.0039161537, -0.014526648, 0.008597977, -0.005703887, 0.0018737831, -0.034195222, 0.021171818, 0.00780421, -0.011801145, -0.028097965, -0.031048251, 0.012728378, -0.019036371, -0.017729817, -0.017139759, 0.010557811, 0.013163897, 0.0061429176, 0.00015629493, 0.024543572, 0.009588431, -0.007825283, 0.0147092845, -0.0031399475, -0.02594847, 0.031385425, 0.032930814, -0.013332484, 0.023630388, 0.009827264, 0.018109139, 0.02292794, -0.045799684, -0.015481979, 0.015257196, -0.01601584, 0.018137237, -0.021017278, 0.018699195, 0.03602159, 0.013943615, -0.017996747, 0.023517996, -0.019443791, 0.014582844, -0.0066030216, -0.018207481, 0.0043235742, 0.05355472, 0.035178654, -0.043579943, 0.010768545, 0.015959645, -0.013725856, 0.0005896182, 0.014849775, 0.0018650024, 0.025330316, -0.025175776, 0.019190911, 0.020258633, -0.010389223, 0.0063536526, -0.016774485, 0.036920726, -0.0035526366, -0.04874997, -0.0036738089, 0.0010264538, -0.016858779, -0.110537395, -0.010810692, 0.009932631, 0.006409848, -0.009644627, 0.03220027, -0.033914246, 0.023180822, -0.021017278, 0.02499314, -0.013479999, -0.016451359, -0.0013838247, 0.036414962, -0.0146249905, -0.0053807604, 0.0027922352, 0.0051349034, -0.028969003, 0.00041312788, 0.001015039, 0.018305825, 0.008668222, -0.0034244396, -0.0110425, 0.02816821, -0.01118299, 0.010831766, -0.0007920114, 0.03436381, -0.003919666, 0.0032347783, -0.0043867948, -0.02429069, -0.014126252, 0.013409754, -0.017013319, -0.0004504455, 0.03436381, 0.002973116, -0.006940197, -0.012264762, -0.02485265, 0.012679207, -0.0007911333, -0.004583481, -0.0146952355, 0.028505385, 0.0069296607, -0.019247105, -0.027381467, 0.008288899, -0.017743865, -0.022408128, 0.008183532, -0.022956038, 0.0063431156, 0.0021143719, -0.0028835537, 0.0064871176, -0.019991701, 0.015018363, 0.008597977, 0.012018905, 0.020385073, 0.0066732666, 0.017800061, 0.013135799, 0.026974047, -0.002686868, -0.01656375, 0.028041769, -0.028097965, 0.024796454, -0.026299696, 0.0034946844, 0.0006049843, -0.013697758, 0.008471536, 0.016268723, -0.028392995, 0.010389223, -0.0283087, 0.0025516464, -0.0077128913, 0.03523485, 0.012250713, 0.0088438345, 0.02361634, -0.017701719, -0.005777644, 0.0031715578, -0.0026552577, -0.0158613, 0.011878415, -0.0019141738, 0.006610046, 0.00351927, 0.017013319, 0.02815416, -0.026131108, -0.010508639, -0.062208895, 0.033998538, -0.022000708, -0.0193314, 0.0042252317, -0.03576871, 0.0016331943, -0.0088719325, 0.011014403, 0.0248667, -0.046445936, 0.012672182, -0.013564292, 0.007909577, -0.010536737, -0.015678665, 0.027255027, -0.021059426, 0.037932254, -0.01187139, -0.0026675507, 0.0010080145, 0.0023338872, -0.012889941, -0.020876788, -0.022857694, -0.026889753, 0.017392641, -0.0041128397, -0.019247105, 0.0072984463, 0.011105721, 0.0037475661, 0.0024041322, 0.00067522924, -0.018671097, 0.00033629753, -0.00552125, 0.022899842, 0.0088087125, -0.028617777, -0.02236598, 0.014273766, -0.0085628545, 0.0022478371, -0.016451359, 0.012468472, -0.0057003745, 0.0034578058, 0.029418569, 0.021073474, 5.059143e-06, -0.0022039341, -0.042877495, -0.012412276, -0.029334275, 0.0030626783, -0.028280603, 0.0006137649, -0.04487245, 0.03661165, 0.02913759, 0.002312814, 0.013978737, -0.011112745, -0.00849261, -0.028392995, 0.011829243, -0.010023949, -0.005243783, -0.0035824906, 0.007530255, 0.027929377, -0.0049838764, 0.001615633, -0.023517996, -0.038044646, 0.012117247, -0.021452796, 0.017673621, 0.024810504, -0.016605897, -0.020090045, 0.016633995, 0.020680102, 0.02016029, -0.00911779, -0.03770747, 0.002700917, -0.0076215733, -0.010276831, -0.012791599, -0.017476935, -0.009497113, 0.011421823, 0.01506051, -0.0045413338, -0.013901468, -0.015692713, 0.006536289, 0.016760437, -0.022422176, -0.0050225114, -0.023166772, -0.023532046, -0.012124272, -0.0069120997, -0.0068699527, -0.0041409377, 0.003417415, 0.0021881291, -0.0051103174, -0.0086330995, -0.006420385, -0.00919506, 0.019247105, 0.004260354, 0.006090234, -0.010986305, 0.025990618, 0.009335549, 0.01629682, 0.035543926, 0.019219007, 0.020637956, 0.014147325, 0.0036843456, -0.016451359, 0.012882917, -0.0031627773, 0.0020248096, 0.0026201352, -0.02361634, -0.002258374, -0.014835726, -0.046277348, 0.024501426, 0.0043867948, 0.013711807, 0.07805615, 0.00821163, -0.007916601, 0.0072422507, -0.015762959, 0.0008921104, 0.013269264, -0.012601937, -0.009356623, -0.010859864, 0.0015787544, 0.009757019, -0.0076496713, -0.032368857, -0.002516524, 0.019190911, 0.0021723239, 0.029615255, -0.03989911, -0.015088608, 0.051840745, 0.0007849869, 0.009433892, 0.0010703568, -0.001473387, 0.019275203, 0.02718478, 0.02183212, -0.033155598, -0.04846899, 0.0049944133, -0.01015039, -0.0045202603, -0.020567711, 0.011190015, 0.02084869, 0.0047239703, 0.024403082, 0.012335007, 0.03464479, -0.0062412606, 0.012222615, -0.024374984, -0.024065908, -0.0025674517, 0.021466846, -0.007516206, -0.016395163, -0.062546074]" 22909085,"Micro C, Part 3: Generating LLVM",https://blog.josephmorag.com/posts/mcc3/,166,1587229341,13,matt_d,"[-0.016360687, 0.013481044, -0.009097513, -0.017588075, -0.011181376, 0.030833084, -0.030860059, -0.022497632, -0.0101360725, -0.030212646, 0.009245879, -0.008025234, -0.0024986127, -0.0053175604, 0.005728938, -0.0010562624, 0.006966443, -0.015322127, 0.024723116, 0.0101360725, -0.007020394, -0.0074182837, -0.013406862, -0.00921216, 0.0015342359, 0.021445584, 0.019071732, -0.020231683, -0.011788327, -0.010540706, 0.010351878, -0.013514764, -0.020690268, -0.022092996, -0.019732634, -0.006420187, 0.00140273, 0.009077282, 0.004592592, -0.017992709, 0.04645194, 0.007431771, 0.0031881758, 0.008085929, 0.007452003, 0.039384343, 0.005519877, -0.02414314, -0.030725181, 0.021782778, 0.0062954254, 0.010540706, -0.011208352, 0.003503453, -0.013022459, 0.01743971, 0.0010065262, -0.0002689128, 0.009569585, -0.006430303, -0.00023898674, 0.006966443, -0.008058953, 0.010796974, -0.009535866, -0.018788489, 0.0052096583, 0.015578396, -0.006288681, -0.009502146, 0.020649804, 0.025626797, -0.017237393, 0.014229616, 0.036929563, -0.013440581, -0.034987323, -0.023617117, -0.010783487, 0.0055535967, 0.0008657474, -0.012516667, 0.012219936, 0.024439871, 0.009117745, -0.0019574154, 0.021796266, 0.013986836, -0.018275954, -0.01451286, 9.0041525e-05, -0.009758415, 0.014175666, -0.0012897698, 0.012934789, 0.009852829, -0.013467557, 0.0011633218, -0.03487942, -0.015146786, -0.0051557072, 0.011376949, -0.033827372, 0.00074309285, -0.025950504, 0.0012206448, 0.00082992046, 0.010749768, 0.021634413, -0.005600804, -0.004265513, 0.021013973, -0.013332679, -0.039303415, 0.017534124, 0.0017719582, 0.016185345, -0.004076684, -0.0056446395, 0.008409636, 0.016117906, 0.026840698, 0.019489855, 0.0014339205, 0.02493892, 0.008315221, -0.013838471, -0.012125522, -0.033314835, -0.030347524, -0.02878294, -0.0073441006, -0.004076684, 0.0020113664, 0.0050680363, 0.014823079, -0.017642027, 0.0013538367, -0.011997388, -0.010500243, 0.020501439, 0.0036787943, -0.0082680145, 0.002301354, -0.019058244, 0.0035978674, 0.02292924, 0.00509164, -0.002095665, -0.0012568933, -0.02060934, -0.03304508, -0.0062043825, 0.005297329, -0.0007515227, 0.036066346, 0.005742426, 0.014593787, -0.006359492, 0.002102409, 0.0050511765, 0.0036990258, -6.2907886e-05, 0.00026469785, 0.0044948054, 0.024561262, 0.02225485, -0.025262628, 0.0022541466, -0.001530021, 0.015457005, 0.032640446, -0.021432096, 7.9872996e-05, -0.006288681, -0.0072968933, 0.016630443, 0.021877192, -0.020015877, -0.021850217, 0.008517538, -0.019017782, 0.025586335, 0.02591004, -0.042270727, 0.010540706, 0.01427008, 0.022659484, 0.009569585, -0.010884645, 0.010115841, 0.024291506, -0.01265829, -0.0008181186, -0.6374868, -0.002348561, -0.011228584, -0.039681073, -0.015875127, -0.018950343, -0.0035169409, -0.010796974, -0.01350802, 0.025357042, -0.014971445, 0.022902265, 0.029457329, -0.012584106, -0.007391308, -0.007903844, -0.009239135, -0.049662035, -0.019867511, 0.003887855, 0.016360687, 0.009198671, -0.012368302, -0.00267564, 0.025154725, 0.012638058, 0.009468427, 0.009765158, -0.00068029034, 0.030401474, 0.00022823867, 0.008106161, -0.030320548, 0.014162177, 0.044482727, 0.009394244, 1.7162683e-05, 0.0066494797, 0.0076071126, 0.030563328, -0.03531103, -0.0027700544, 0.02951128, 0.021202803, -0.0014777558, -0.0041340073, 0.021499535, 0.014485884, -0.016670907, -0.026786746, -0.022119973, -0.0050882683, 0.029457329, 0.010938596, -0.013218032, -0.012934789, 0.037280247, -0.0050747804, -0.0013774404, 0.01683276, -0.008618697, 0.014984933, -0.011741119, -0.012887581, -0.0024345457, -0.026314674, 0.0012855548, -0.0015140042, -0.025963992, -0.0005989421, -0.0005293957, 0.028000649, -0.027973672, -0.018694075, 0.02878294, 0.01981356, -0.004778049, -0.0034039805, 0.0070810886, 0.027569039, 0.00054456946, 0.013433837, -0.017884808, -0.009353781, 0.016239297, -0.012300863, -0.0060762484, -0.0015974599, 0.018248977, 0.020015877, 0.0051894267, 0.024318483, -0.012981996, -0.078930534, -0.015403054, 0.034232005, -0.002925164, 0.03420503, -0.009353781, -0.038386244, -0.039788976, -0.0004297125, 0.00471061, 0.008713111, 0.030320548, 0.005121988, -0.019489855, -0.015295152, 0.029781036, -0.028890843, -0.015834663, -0.018775001, -0.017911782, -0.003621471, 0.0031881758, -0.039546195, 0.017776905, -0.010527219, 0.012010875, -0.03164235, 0.021364657, 0.009933756, 0.01359569, -0.009792134, -0.0040362207, 0.010493499, 0.010520475, -0.017304832, -0.0045521287, 0.010965572, -0.012064827, 0.010830694, 0.022214387, -0.01427008, -0.0023654208, -0.007263174, 0.029538255, -0.005519877, -0.015483981, -0.020137267, -0.01847827, -0.010102353, 0.0069596986, 0.0016868165, -0.017345296, -0.04140751, -0.04348463, 0.00017460363, 0.025235651, 0.020447487, -0.0005015771, 0.0060121818, -0.014984933, 0.03433991, -0.018950343, -0.011127425, 0.012678521, -0.020771194, -0.007384564, -0.017601563, -0.004761189, 0.01865361, 0.0010975688, 0.012361558, -0.015875127, -0.0018259094, -0.020973511, 0.018896392, -0.0015435087, -0.02902572, -0.0031527705, 0.010203511, -0.007519442, 0.013501276, 0.0015409798, 0.032532547, -0.0044509703, -0.012159241, -0.024048727, -0.004896067, -0.01451286, 0.026436064, 0.008308478, -0.010378853, -0.005014085, 0.017979221, -0.0018798605, -0.019193122, 0.011532059, -0.012273887, 0.038089514, 0.024008263, -0.0107295355, 0.0015376079, -0.018505245, 0.024412896, -0.0031089352, -0.004090172, 0.020015877, 0.013669874, 0.021728827, 0.0045318967, 0.0077285026, -0.0029673134, 0.0054490664, -0.042567458, -0.006504486, -0.0092795985, 0.015119811, 0.00107818, -0.002746451, -0.0048218844, -0.007445259, -0.009974219, -0.0048488597, 0.036282152, 0.014526348, 0.023792459, 0.01854571, -0.0025137865, 0.015376079, 0.004720726, 0.01853222, -0.0041643544, -0.0008969379, 0.0017652143, -0.009690976, 0.0033803768, -0.012381789, -0.01853222, -0.004393647, -0.002287866, 0.013204545, -0.0010908248, 0.023509216, 0.017574588, 0.003682166, -0.007768966, 0.042189803, -0.0035135688, -0.02182324, 0.014458909, -0.013042691, -0.020285634, 0.015807688, 0.020393535, 0.04175819, -0.0061234557, 0.0058300965, -0.007310381, -0.017776905, 0.04232468, -0.008652416, 0.0104867555, 0.007242942, 0.00024088347, 0.0036383308, 0.023145044, 0.03889878, -0.0006760754, -0.01158601, 0.0066966866, 0.0017702722, -0.012894326, -0.019705659, 0.01627976, 0.009893293, -0.0003964145, -0.01951683, -0.02176929, -0.010075378, 0.003125795, -0.020150756, -0.010513731, 0.024278019, 0.008962635, 0.015996518, 0.015753737, 0.031183766, 0.02360363, -0.020825146, -0.018275954, 0.02970011, 0.010972315, -0.010257463, -0.014499372, -0.008706368, -0.014351007, 0.012341326, 0.001088296, -0.011956925, -0.009084025, 0.019597756, 0.010378853, 0.0030785876, 0.0111678885, 0.049365304, -0.011875997, -0.012813399, 0.010716048, -0.029241525, -0.0004107453, -0.015106323, -0.0055940603, 0.0584291, 0.017722953, -0.017857831, -0.008591721, 0.018491758, -0.025532383, -0.016293248, 0.0018073636, -0.004707238, 0.0018039916, 0.022457168, -0.01030467, -0.018141076, 0.031561423, 0.04469853, 0.0012493064, 0.0015797572, 0.01002817, 0.019247074, 0.020339584, 0.05092989, -0.007580137, -0.01082395, 0.021553485, -0.018154563, -0.0066292477, -0.023441777, -0.025060311, 0.025869578, 0.005240006, 0.018855928, 0.008362428, -6.36455e-05, 0.008564745, 0.013103386, 0.014593787, 0.012820142, -0.027083479, 0.0063932114, -0.01683276, 0.0047713052, 0.03342274, 0.0039249463, 0.0036417027, 0.0017053622, 0.011478107, -0.016171858, -0.00777571, 0.01427008, -0.02140512, -0.007701527, 0.027474625, 0.010749768, 0.012779679, -0.006925979, 0.0245208, -0.014283568, 0.019381952, 0.025963992, -0.013609178, 0.017844344, -0.015092835, 0.011086962, 0.00396541, 0.009003099, 0.012098546, -0.0064673945, 0.030482402, -0.0018731166, -0.015146786, 0.011019523, -8.392987e-05, -0.010520475, -0.0077824537, -0.023333874, 0.016117906, -0.0037125137, 0.004896067, 0.022457168, -0.017399246, -0.019961927, -0.032046985, 0.01957078, -0.02791972, 0.006673083, -0.02322597, -0.0060897362, -0.012692009, -0.0078094294, 0.016994612, -0.0062077544, -0.028944794, -0.050525256, -0.0005546853, -0.0049196705, 0.00230304, 0.0062313583, 0.019179635, -0.0010326587, -0.012462717, -0.025222164, -0.018572684, -0.007384564, -0.035284054, -0.008241039, 0.0020602597, 0.011201608, -0.0055670845, -0.014189153, 0.015537932, 0.024965895, -0.015362591, -0.011451133, -0.003183118, 0.0044003907, 0.05457159, 0.016859734, 0.009744927, -0.015065859, -0.032478593, 0.009111001, -0.0058166087, 0.0090165865, -0.014593787, 0.0084231235, -0.01359569, 0.00044130356, 0.018909879, 0.0053681396, -0.013723824, 0.017790392, -0.027569039, 0.00942122, 0.02658443, 0.008645672, -0.0005281312, -0.023347361, 0.010230487, -0.00083329243, -0.018073637, 0.009225647, -0.03463664, 0.032721374, 0.008564745, -0.023198996, 0.012307607, 0.0081601115, -0.01366313, -0.025694236, -0.0003768151, 0.0078026853, 0.049122524, -0.00749921, 0.00215636, 0.0016539401, 0.0053007007, -0.007937564, 0.0041778423, 0.0015637404, 0.008598465, 0.0078026853, 0.024547774, -0.027110454, -0.013467557, -0.035068247, -0.02658443, -0.007242942, 0.037415124, -0.0039182026, 0.030374499, -0.0069596986, -0.012665033, -0.021674875, -0.015241201, 0.0075599053, -0.042162824, 0.00041580322, -0.013130362, 0.03239767, 0.023981288, 0.007978027, 0.0073306127, 0.0051422194, -0.0013529938, -7.813433e-05, 0.0049567623, -0.00050579204, -0.0014794418, -0.033827372, 0.0041205194, 0.0055670845, 0.011532059, 0.009131232, -0.0009694348, 0.0090165865, 0.00561092, -0.02408919, 0.010810462, -0.018154563, -0.018248977, -0.036120296, 0.01366313, -0.012907813, 0.017291345, -0.021931143, -0.005674987, 0.008672648, -0.022645997, 0.016401151, -0.003823788, 0.028243428, -0.0074182837, 0.010500243, -0.013184313, 0.03579659, -0.0074385153, 0.009987707, -0.031966057, 0.010075378, 0.0245208, 0.022214387, 0.007317125, 0.019341487, -0.013069667, -0.013851958, 0.008942404, -0.017588075, 0.011491596, -0.002217055, -0.024318483, -0.016077444, -0.01265829, -0.009286342, 0.01210529, -0.0075329295, 0.005533365, 0.015632346, 0.009637024, -0.028998744, -0.013433837, 0.013164082, 0.0112555595, 0.030752158, -0.016536029, 0.011545546, 0.007141784, 0.018154563, -0.030320548, 0.00076711795, 0.027703917, 0.014054275, 0.020299122, 0.022821337, -0.02292924, -0.018869415, 0.020649804, -0.0076071126, -0.020083316, -0.033018105, 0.00905705, 0.0020619456, -0.0009694348, -0.016360687, 0.0062819375, -0.013103386, 0.022672972, -0.0006541577, 0.023266435, -0.018761514, -0.014310543, -0.009792134, -0.0019675312, -0.0041643544, 0.003051612, -0.003570892, 0.012631314, 0.0117074, -0.010621633, -0.027542064, 0.036201224, -0.0039249463, 0.040220585, -0.035526834, 0.0072159665, 0.022511119, 0.00448469, 0.014674714, -0.0078296615, 0.0041104034, 0.027784843, -0.021067925, 0.0076745516, 0.0059683463, 0.0109925475, 0.0063460045, -0.007816173, 0.0035236846, -0.004575732, 0.011491596, 8.129553e-05, 0.020825146, 0.0069192355, -0.022025557, -0.008942404, -0.006807961, -0.017426223, -0.011626474, -0.01596954, 0.03237069, -0.027973672, -0.020150756, -0.001523277, -0.0045993356, 0.015268176, 0.010331646, -0.0115185715, -0.023751995, 0.035634737, -0.019354977, -0.0033550872, 0.016185345, 0.013501276, -0.023091093, -0.0042351657, 0.007087833, -0.0063325167, 0.019233586, -0.032640446, 0.00929983, -0.024642188, -0.0033078801, 0.008605209, 0.0054996456, -0.02121629, -0.015295152, 0.04310697, 0.019543804, -0.00082528405, -0.021364657, 0.013878934, -0.011390437, -0.000270388, 0.00902333, 0.010790231, 0.011983899, -0.0117613515, -0.033152983, -0.0079173315, -0.017102515, -0.031183766, -0.0014212757, -0.013271984, -0.012550387, 0.014013812, -0.005095012, -0.0027734265, -0.0016977753, 0.013420349, -0.009664, 0.020231683, 0.017952247, 0.017534124, 0.032343715, 0.015537932, -0.029052695, -0.0071755033, 0.0016345513, -0.018707562, -0.03706444, -0.01395986, -0.00878055, 0.036902588, 0.027488112, -0.025343554, -0.022672972, 0.028890843, -0.022848314, -0.014040788, 0.018518733, 0.005428835, 0.013413605, 0.015106323, 0.017453197, 0.044051114, 0.0003380377, 0.004818512, -0.021877192, -0.020487951, 0.0066663395, 0.023037143, 0.0073575885, 0.018087124, -0.014162177, -0.007074345, 0.004892695, -0.017021589, -0.0074924664, 0.02653048, -0.005809865, -0.0046161953, -0.0028324355, -0.0029892311, -0.01652254, 0.0008590035, -0.0079173315, -0.021378145, 0.014796103, 0.015241201, -0.016482078, -0.02036656, -0.01774993, 0.0056851027, -0.016670907, 0.0063460045, 0.004565616, -0.0055131335, -0.008362428, -0.013615922, 0.02024517, -0.0048050247, -0.023198996, 0.021971608, -0.014674714, -4.312404e-05, -0.0055266214, -0.010095609, -0.029538255, -0.008092673, -0.004643171, 0.010864413, 0.0010141131, 0.0008101103, -0.014216129, -0.026301187, -0.01762854, -0.020150756, -0.00893566, -0.01853222, 0.020892585, -0.00036817446, -0.0006554222, -0.0007384564, -0.024008263, -0.012995484, 0.004832, -0.014445421, 0.013528251, 5.4846827e-05, 0.013528251, -0.0038608795, -0.002798716, -0.020150756, 0.0124424845, 0.011491596, -0.0122604, -0.0007456218, 0.20965418, -0.007020394, 0.015524444, 0.03830532, -0.0092795985, 0.0008497306, 0.017574588, 0.0008408793, -0.018275954, -0.003130853, -0.019287538, 0.021256754, -0.016563004, 0.009380757, 0.0175611, -0.023954311, -0.034070153, -0.017331807, -0.04024756, -0.0032320113, 0.025154725, 0.0018882904, -0.005283841, -0.021782778, 0.02121629, -0.0053782556, -0.010277695, 0.009535866, 0.027730893, 0.0056176637, -0.027596015, 0.014108227, -0.00045057642, -0.021580461, 0.010210256, -0.002734649, 0.032964155, -0.01793876, -0.009158208, 0.016212322, 0.008490562, -0.019489855, -0.027609503, -0.011451133, 0.0053411643, 0.005152335, -0.0005985206, -0.001401044, -0.009104257, 0.021809753, -0.04610126, -0.002483439, 0.015200737, 0.01530864, 0.002348561, 0.0053782556, -0.0006179093, 0.02500636, 0.023104582, 0.0098730605, 0.005877304, 0.0046263114, -0.01475564, 0.020042853, -0.006565181, 0.00318649, -0.001977647, 0.01146462, 0.0064437906, -0.02122978, -0.011491596, -0.00545581, -0.0013740684, -0.0044239946, -0.027703917, -0.033881325, -0.0014372924, 0.038575076, 0.009077282, 0.028189477, -0.028135527, -0.018748026, -0.028567135, -0.023360848, -0.010055146, -0.025437968, 0.02999684, -0.003297764, -0.022025557, -0.019112196, -0.0020922932, 0.0058064926, -0.0055063893, -0.012368302, 0.0061268276, -0.008187087, -0.013838471, -0.005813237, 0.004063196, -0.012718984, -0.020838633, 0.04305302, -0.0034090385, 0.01414869, 0.006571925, 0.018275954, 0.0034798493, -0.009104257, -0.01993495, -0.01787132, 0.0063898396, -0.04707238, 0.009684232, -0.012975252, 0.014607275, 0.010769999, -0.00062633917, -0.02450731, 0.010790231, -0.008106161, -0.0035911235, 0.019489855, 0.019112196, 0.020946534, 0.0011970412, -0.0026840698, -0.024251044, 0.021904169, -0.012489692, 0.0017635283, -0.0038777392, 0.0058267247, 0.009866317, 0.008989611, -0.0137170805, -0.010655353, -0.00158903, -0.019503342, -0.029403377, 0.012725729, 0.006743894, 0.008193831, 0.0074385153, -0.004646543, 0.028971769, -0.00140273, 0.0181141, 0.011329742, 0.009569585, -0.036686786, -0.01981356, 0.0039080866, -0.01671137, -0.03884483, -0.006187523, -0.0055165053, -0.005924511, 0.005418719, -0.002938652, -0.0012644802, -0.021580461, 0.021499535, 0.015996518, 0.017952247, -0.0061774068, -0.04712633, -0.17124096, -0.04170424, -0.0015586825, -0.017763417, 0.021782778, 0.0032235815, 0.00045015494, -0.0061538033, -0.013690105, -0.02554587, -0.0085107945, 0.0023923963, -0.02731277, -0.025060311, -0.009980964, 0.035041273, -0.0051961704, 0.003702398, 0.032883227, 0.002741393, 0.046559844, -0.0374421, -0.0011827104, 4.089803e-06, -0.0041070315, 0.012671777, 0.01122184, 0.019921463, -0.018275954, -0.010331646, -0.0086659035, 0.025276115, 0.0040564523, -0.024992872, 0.017412735, -0.007384564, 0.01045978, -0.006885516, -0.013366398, -0.016414639, 0.02670582, 0.009839341, -0.022470655, 0.011747863, 0.0011211724, 0.029430354, 0.01603698, -0.02988894, 0.035931468, -0.008193831, 0.04488736, -0.0030296943, -0.009084025, -0.003692282, 0.011457876, -0.010972315, -0.0047308416, 0.03933039, -0.0132112885, -0.0065483213, 0.0036383308, -0.03798161, -0.019247074, 0.015699785, 0.008065698, -0.031426545, -0.0091919275, -0.009374013, -0.030590303, 0.001975961, -0.016805785, -0.037226297, -0.020717243, 0.004838744, 0.023104582, 0.021297218, 0.0070810886, 0.0066528516, 0.027447648, -0.008119648, 0.005044433, 0.010041658, -0.0007186462, -0.0013386629, -0.021499535, -0.0008543671, -0.011201608, 0.018181538, -0.03458269, -0.014836567, -0.002793658, -0.026962088, -0.013231521, -0.017763417, 0.012321094, 0.022983192, 0.0075059542, -0.0029133623, 0.0021057809, -0.02634165, 0.03336879, -0.004201446, -0.017412735, 0.0030060909, 0.026314674, -0.005135475, -0.030563328, 0.04016663, 0.057026368, -0.010399085, -0.020690268, 0.011181376, 0.037415124, 0.031183766, -0.0011902973, 0.040463366, -0.0056446395, -0.01854571, 0.00026849128, -0.0074789785, 0.03536498, -0.0039620376, -0.012563875, 0.010075378, 0.008955891, -0.02194463, -0.10693119, -0.047557943, -0.0032100936, 0.0018731166, -0.010446292, 0.013561971, -0.01066884, 0.014027299, 0.012455973, 0.03706444, -0.023468751, -0.027299283, -0.0067641255, 0.005560341, -0.017884808, 0.010796974, -0.015457005, -0.0026419205, -0.011046498, 0.044671554, -0.0039856415, -0.004245281, 0.0026587802, -0.014971445, 0.021620924, 0.011046498, -0.012665033, 0.019017782, 0.007060857, 0.02225485, 0.014715177, 0.0073441006, -0.0013251752, 0.0027886003, 0.017722953, -0.022578558, 0.00420819, 0.003557404, 0.026638381, -0.0045487564, -0.0048623476, -0.012739216, -0.0048218844, -0.02585609, -0.0001909365, 0.0020096805, -0.036497954, -0.0015763852, 0.004899439, -0.046667747, -0.05567759, -0.030994937, -0.030509377, 0.008450099, 0.031264693, -0.013150593, -0.006120084, 0.021566974, -0.048232332, 0.0036012395, -0.0032943923, 0.005219774, -0.006288681, -0.0049432744, -0.004154239, -0.011397181, 0.0028240057, -0.013454068, 0.012523412, -0.03067123, -0.010001195, 0.04836721, -0.032478593, 0.014688201, 0.009495403, 0.008288246, -0.0023131557, 0.00886822, 0.009684232, 0.008740087, -0.020784682, -0.006211126, 0.008153368, -0.0057660295, 0.013676617, 0.01615837, -0.007526186, -0.0074115396, 0.019422416, -0.008578233, 0.0036855382, 0.034124102, 0.016252784, -0.016657418, 0.0222009, 0.010385597, -0.01591559, 0.016603468, 0.0035742638, 0.0326944, -0.041245658, -0.0063965837, -0.050768036, 0.008922172, -0.007708271, -0.023441777, -0.010243976, -0.006619132, 0.0026655241, -0.010102353, 0.011680424, 0.011215095, -0.04054429, 0.0016370803, -0.011154401, 0.00471061, -0.015349103, -0.020110292, -0.0036484466, -0.02365758, 0.01725088, 0.008389404, -0.00042317936, -0.034744542, -0.0064572785, 0.017156467, -0.017601563, -0.0138924215, -0.009886549, 0.016090931, -0.0140003245, -0.009589817, -0.017331807, -0.008220807, 0.0037057698, 0.017952247, 0.013838471, 0.009495403, -1.49893585e-05, 0.0164551, 0.040382437, 0.048448134, -0.014877031, -0.030509377, 0.013690105, -0.019719146, 0.008807526, -0.011053243, -0.020811656, 0.01314385, 0.02994289, 0.025815627, 0.032100935, 0.019381952, -0.022470655, -0.06360841, -0.014297055, -0.0024446617, 0.007944307, -0.005401859, -0.019867511, -0.018127587, 0.041029852, -0.0042351657, 0.018613148, 0.007202479, 0.022605533, -0.005216402, -0.006056017, 0.009374013, 0.019800073, -0.014364494, -0.016482078, -0.002237287, 0.019260561, 0.015119811, 0.022403216, 0.00777571, -0.019328, 0.019880999, 0.0020703755, 0.009124489, 0.011073474, 0.004113775, 0.013339423, -0.0014204327, 0.040328488, 0.0067337784, 0.0042553972, 0.002864469, -0.014809592, 9.051571e-05, -0.011134169, 0.00016269645, -0.029457329, 0.010776742, 0.0017652143, -0.011653449, 0.009077282, -0.011430901, 0.0062718214, -0.0005041061, 0.005216402, 0.0009812366, -0.010493499, -0.02542448, -0.034987323, 0.011113937, -0.03549986, -0.0036585624, 0.008362428, 0.02104095, -0.021094901, 0.00053993304, -0.0073508443, -0.0015671124, -0.014890518, -0.018181538, 0.0035371725, -0.011107193, -0.009205416, 0.05562364, 0.0042520254, -0.005084896, 0.032154888, 0.012799911, 0.011579266, 0.0023586769, 0.012550387, -0.009994451, 0.016131395, 0.007472235, 0.0063089128, -0.0072766617, -0.017898295, -0.009758415, -0.004751073, 0.0006684885, 0.0030246365, 0.020218195, 0.015416542, 0.07110762, 0.01584815, -0.001593245, 0.0016648988, -0.007472235, 0.024493823, 0.011140913, 0.023077605, 0.01271224, -0.024857994, 0.023104582, -0.002353619, -0.003695654, -0.020703755, -0.0045487564, 0.0022457168, -0.013784519, 0.01816805, -0.009805622, 0.00896938, 0.016063957, 0.01499842, 0.010844181, 0.0045049214, -0.04024756, 0.005418719, 0.03574264, 0.015389566, -0.02329341, -0.012928045, 0.019476365, 0.0029403379, -0.018181538, -0.017021589, -0.0027919721, 0.014081251, -0.0064134435, -0.0019978785, 0.03353064, -0.00040505515, 0.0076610637, 0.0017972478, -0.023145044, -0.043268826, -0.005121988, -0.0005985206, 0.00027017726, 0.003817044, -0.029457329]" 13402127,Let’s Stop Ascribing Meaning to Code Points,https://manishearth.github.io/blog/2017/01/14/stop-ascribing-meaning-to-unicode-code-points/,132,1484450731,55,geofft,"[0.015730474, 0.0068990337, 0.025968844, -0.03384764, -0.0090043405, 0.0012721682, -0.019974992, -0.011282547, -0.03322385, -0.017669663, 0.012652184, 0.015188045, -0.020056356, -0.0037054762, 0.0057599302, 0.025236564, 0.018659597, 0.010340075, 0.010055299, -0.013201394, -0.015757596, 0.0086382, -0.013581095, 0.0004962389, -0.010435, 0.040329684, 0.02624006, -0.011845319, 0.01887657, -0.023283815, 0.02195486, -0.006597307, -0.016218662, -0.017018747, -0.02893865, -0.0049361144, 0.019134223, -0.04550989, 0.0069905687, -0.02084288, 0.04957812, 0.023785563, -0.020978486, 0.0028375878, 0.029372593, 0.012719988, 0.004956456, -0.017208597, 0.020232646, 8.65425e-06, 0.02716219, 0.040031347, -0.019974992, -0.012597941, -0.0049903574, -0.011113038, -0.016096616, 0.0031427047, 0.012089413, -0.009777304, 0.007858457, 0.017778149, -0.0076889475, -0.0019137615, -0.023758441, -0.013642118, -0.0023273644, 0.011913123, -0.006366774, -0.012862375, 0.0013967577, 0.027962275, -0.005176818, -0.0090246815, 0.031325344, 0.0015323652, -0.018076485, -0.030104874, 0.00061150524, 0.006600697, 0.00754656, -0.002573153, -0.006671891, 0.002713846, -0.006522723, -0.0090043405, 0.0014832075, 0.010645192, -0.023772001, 0.0078109945, -0.00019705472, -0.006739695, 0.0141981095, 0.004430976, -0.0036783547, -0.01994787, 0.026728246, 0.032925513, -0.017357765, 0.02013772, -0.029535323, 0.0116690295, -0.037536167, -0.018985055, -0.023649955, 0.0116080055, 0.0049496754, -0.0047360933, -0.0061938744, -0.00086534565, -0.012279263, 0.030837156, 0.0057768812, 0.0048750914, 0.012462333, -0.011119818, -0.0018391773, 0.003722427, -0.0016332234, 0.0028274173, 0.048303407, 0.00951965, -0.0029748904, -0.0035936, 0.028965771, 0.011079136, 0.0071939803, -0.020802196, 0.00073397584, -0.028125005, 0.031379584, 0.0008755162, 0.014347278, 0.0077906535, 0.005248012, 0.028803041, -0.011824978, -0.0052954745, 0.003363067, -0.018401943, 0.059016403, 0.012997983, -0.017601859, 0.007390611, 0.020286888, 0.029508201, -0.008197476, 0.008794149, 0.005431082, -0.023338059, -0.0014043857, 0.0060447063, 0.0269859, -0.0075397794, 0.027501209, 0.009295897, 0.020653028, 0.0089297565, -0.016069494, -0.03311536, -0.00092975923, 0.012380969, -0.010218028, -0.011384253, 0.016327148, 0.033657793, 0.009851888, -0.0042512966, -0.00826528, -0.010570608, -0.024192385, 0.009784084, -0.008611079, -0.0006267611, -0.0016230528, 0.014726979, 0.0048818714, 0.018117167, -0.028721677, -0.0017018747, 0.005505666, -0.019703776, 0.036939494, 0.01598813, -0.022063347, -0.012713207, 0.026579078, 0.013350562, 0.017859513, 0.0020425885, 0.0052378415, 0.013221735, -0.011092697, -0.0066074776, -0.6400676, -0.015594867, 0.019974992, -0.022741385, 0.005593811, 0.015391456, 0.012055511, -0.002571458, -0.0038885463, 0.03791587, -0.008712784, -0.0016603449, 0.019988552, -0.005163257, -0.017940877, -0.008197476, 0.007851677, -0.025019592, -0.0025765433, 0.00024642434, -0.011207963, 0.022239637, -0.017845953, -0.000872126, -0.009716281, 0.020598786, -0.0016255954, 0.008204256, -0.00095772825, 0.013886212, -0.041170448, -0.0010848603, 0.019907188, -0.02533149, 0.05337513, 0.0013899773, 0.005010699, 0.010163785, -0.0009670513, 0.008434789, -0.027067265, -0.019025737, 0.009363701, 0.011431715, -0.016245784, 0.004410635, 0.0219413, -0.00047208375, 0.01726284, -0.024572087, 0.015120241, 0.0074177324, 0.021425992, -0.014971073, -0.012414871, -0.007858457, 0.03647843, -0.024517843, 0.034037493, -0.030810034, -0.018144289, 0.0018086656, -0.022348123, 0.011770735, -0.019012177, 0.006905814, -0.0070583727, -0.0058243438, 0.016137298, -0.0013882822, 0.0009924778, 0.0062989704, 0.012774231, -0.018401943, 0.010774019, 0.02031401, 0.027772425, -0.042336676, 0.007858457, 0.026457032, -0.012964081, -0.0013526853, -0.024219507, -0.00845513, 0.033006877, 0.015961008, -0.0077025085, 0.013594656, 0.019554608, -0.017940877, 0.009784084, 0.0052615725, -0.0010992687, -0.027799547, 0.012333506, 0.025317928, -0.01708655, 0.002659603, -0.013208175, -0.02104629, 0.0024731425, -0.02175145, 0.010509584, 0.016489876, 0.01654412, 0.0017679833, -0.011926684, 0.002281597, 0.053456493, -0.024341553, -0.0057802717, 0.002861319, 0.0019900408, 0.0059904633, 0.013994698, -0.015974568, 0.0125776, 0.011499519, -0.0141574275, 0.005109014, 0.018795205, -0.0058006127, -0.020354692, -0.014821905, -0.0031613507, -0.008136452, 0.0031189735, 0.007600803, -0.018754523, -0.0025595922, 0.009411164, 0.0008161879, 0.018632477, -0.010129884, 0.006614258, -0.0045021703, 0.0316508, -0.008522934, -0.003415615, -0.014510007, -0.03235596, -0.0050785025, 0.005139526, -0.012862375, -0.027013022, -0.015296531, -0.009377262, -0.0026375668, 0.005285304, 0.0054615936, 0.020829318, -0.020436056, -0.024667012, 0.011960586, 0.002049369, 0.0014467629, 0.006631209, -0.048086435, -0.01867316, -0.0116080055, -0.015269409, 0.018822327, -0.0056073717, 0.010814701, 0.0029409886, 0.010665533, 0.0031410097, 0.021846374, -0.0029528541, -0.009356921, -0.020775076, -0.004905603, 0.017005187, -0.015689792, -0.01849687, 0.019825824, -0.029616687, 0.004010593, 0.0021544648, -0.010516365, 0.008136452, 0.025995966, -0.0037970112, -0.012916618, 0.0023866927, 0.03091852, -0.005193769, 0.010116323, 0.01221824, 0.0025578972, 0.018035803, -0.02426019, -0.03878376, 0.0066617206, -0.00062888, 0.029996388, -0.021602282, -0.0051157945, -0.013981137, 0.020232646, 0.0024375457, -0.009404383, 0.0006233709, -0.03734632, 0.019337635, -0.018957935, 0.002015467, -0.020815758, 0.006000634, 0.0031715215, -0.0038173522, -0.015689792, 0.0017357765, -0.0030681207, -0.005451423, 0.039814375, -0.005878587, 0.006905814, 0.004997138, 0.014415082, 0.012414871, -0.015662672, 0.0052378415, 0.02087, -7.919269e-05, 0.01996143, 0.0059158793, 0.0015408407, -0.014238792, -0.034824017, 0.00038860037, -0.008346644, 0.0074855364, -0.000997563, 0.013594656, 0.025792554, 0.041550152, -0.012964081, 0.0066244286, -0.0044174157, -0.0061769234, 0.021303944, -0.005448033, -0.018605355, 0.02068015, 0.038214207, 0.041902732, 0.0019832603, -0.037509046, 0.007960163, -0.008550055, 0.010645192, -0.020544542, 0.0055836407, -0.0077364105, -0.01921559, -0.0017374717, 0.01764254, 0.038865123, 0.017886635, 0.013398025, -0.038159963, 0.017127233, 0.020653028, 0.010367197, -0.0017289962, -0.018971495, -0.030321846, -0.018727401, 0.004780166, -0.04572686, -0.030050632, 0.00019091, 0.022822749, 0.022212515, 0.033359457, -0.012238581, 0.0011891086, 0.042173944, 0.026646882, -0.015744036, -0.035990242, 0.016761092, 0.027446967, -0.015337213, -0.00864498, -0.01994787, -0.0054209116, 0.0007907615, -0.0038207425, -0.010333295, 0.017764589, 0.007946602, 0.0029206474, -0.0044343667, 0.012997983, 0.022266759, -0.011614786, -0.0057802717, 0.027663939, 0.018144289, -0.0028799651, -0.043258805, 0.004976797, 0.039597403, 0.018049363, -0.021805692, 0.010936748, 0.013730263, -0.0143744, -0.006583746, -0.030837156, -0.040899236, 0.014537129, 0.01583896, 0.011750394, -0.0090111215, 0.000881449, 0.062108256, -0.0116012255, -0.0054243016, -0.01710011, -0.018523991, 0.015893204, 0.034444317, 0.021290384, -0.0140896235, 0.003993642, -0.04008559, 0.006329482, -0.004119079, -0.05017479, 0.0033325553, -0.006132851, -0.00431571, -0.0016789909, 0.008489032, -0.015174484, 0.044099573, 0.010502804, 0.0014747321, -0.05036464, -0.014984634, -0.021263262, 0.0172764, -0.01849687, 0.025738312, 0.030430332, 0.007444854, 0.009919692, 0.0269859, 0.012821693, 0.008550055, -0.034634165, -0.012618282, 0.00079288037, 0.010665533, 0.022931235, -0.011872441, 0.022280319, 0.0021442943, -0.016747532, 0.019893626, -0.00079711806, 0.0042207846, 0.010306173, 0.012916618, -0.00808899, 0.0034851138, -0.009716281, 0.0011272377, 0.038593907, 0.021086972, -0.0056616147, -0.0039122775, -0.013520072, -0.027853789, -0.0021748058, 0.012319945, -0.015323652, -0.015120241, 0.01564911, -0.012001268, -0.021561598, 0.021073412, -0.03200338, 0.0023205841, -0.02175145, -0.019988552, -0.018930813, 0.013160712, 0.012109754, -0.0059735123, 0.009465407, -0.0033495063, -0.016313588, -0.0349325, 0.0090314625, 0.0052412315, 0.00020341131, 0.047598246, -0.013425147, -0.00079923694, -0.012082632, -0.030267604, 0.0017408618, -0.013967576, -0.03306112, 0.008204256, 0.01710011, 0.00038626962, 0.01006208, -0.023080403, 0.005841295, 0.015716914, -0.00013454811, -0.0065498445, 0.006078608, 0.01886301, 0.023649955, -0.0060447063, 0.016679728, 0.007987284, -0.039624523, 0.0015035486, 0.019703776, 0.0037495485, -0.0115198605, 0.014415082, -0.01078758, 0.01330988, 0.0058243438, 0.006780377, -0.013879432, 0.009567112, -0.016408512, 0.021805692, 0.033522185, -0.00064710225, 0.0089839995, 0.0007106683, 0.0070583727, 0.016991625, -0.044858973, 0.0061701434, -0.02624006, 0.0011026588, -0.016042372, -0.024043217, 0.008828051, -0.01940544, -0.028016519, -0.04152303, -0.009960374, 0.0017747637, 0.028206369, -0.003325775, 0.0071600783, -0.0111605, -0.0069566667, 0.0031596557, 0.006776987, -0.03542069, -0.005983683, -0.0058107832, -0.0033495063, 0.0077770925, -0.005597201, -0.015581307, -0.03561054, 0.0047157523, 0.0015289751, 0.017357765, 0.022917675, -0.013208175, -0.0050446005, 0.0070109097, -0.017967999, 0.009689159, -0.014482886, 0.003434261, -0.028857285, 0.018266335, -0.011045234, 0.046269294, 0.0020595395, -0.009546771, 0.016950943, -0.008977219, 0.0072346623, -0.012448773, -0.005342937, -0.031840652, -0.003037609, -0.0029698052, 0.025195882, -0.015961008, 0.0047666053, 0.023649955, 0.028477583, -0.011052014, 0.0055124466, -0.009553552, -0.024531404, -0.028314855, 0.022537973, 0.004797117, 0.008075429, -0.013940455, -0.009329799, 0.023582151, -0.008726345, 0.029779416, -0.0011619871, 0.017249279, 0.021019168, 0.0071804193, -0.019446122, -0.0058107832, -0.018957935, -0.00701769, -0.022063347, -0.0033376405, 0.012347067, 0.007458415, 0.010095982, -0.0040411046, 0.00314779, 0.015242288, 0.010726556, -0.008177135, -0.015323652, 0.014984634, -0.018646037, -0.0090585835, -0.033278093, -0.03306112, -0.00037101377, -0.015174484, 0.0046581193, -0.0025036542, 0.036614038, -0.021493796, -0.024327993, -0.0068278397, 0.027297799, 0.032572933, -0.0076889475, 0.028830163, 0.022714263, 0.021317506, -0.03653267, 0.0072346623, 0.0009831546, -0.0143744, 0.025399292, 0.012862375, -0.0043801237, 0.016679728, 0.017601859, -0.021114094, -0.02443648, -0.05966732, 0.012055511, 0.011438496, -0.023161769, -0.034118857, 0.0036783547, -0.03110837, 0.013384464, 0.0023748272, 0.007763532, -0.00015075745, -0.0040546656, -0.02286343, 0.028125005, -0.004064836, 0.011438496, 0.009255215, 0.02678249, -0.011546982, -0.0053700586, -0.019066421, 3.265705e-05, 0.009180631, 0.002963025, -0.012523357, 0.009912912, 0.0070244707, 0.0070041297, -0.006963447, -0.012489455, -0.0022663411, 0.027799547, -0.017398447, 0.0014654091, -0.015893204, -0.016883139, -0.01743913, 0.0012102973, -0.030647304, -0.033033997, -0.015255849, -0.012530137, 0.03167792, -0.0039868616, -0.0015043962, -0.009539991, -0.006529503, 0.0038749855, -0.03759041, -0.011831759, 0.051313896, -0.014591372, 0.01691026, -0.00023180414, -0.0075940224, 0.02390761, 0.0142794745, -0.011736833, 0.00070304034, 0.003542747, -0.018415505, 0.023663517, 0.022524413, 0.012123315, -0.033006877, 0.01455069, -0.041414544, -0.031379584, 0.019825824, -0.007675387, 0.009478968, 0.013221735, -0.0035732586, -0.0029681101, 0.002103612, 0.0019120664, 0.0044919997, -0.0050242594, 0.00485136, -0.020110598, -0.029860782, 0.03146095, -0.024151703, -0.008936537, 0.006997349, -0.015052437, -0.002086661, -0.03647843, -0.003383408, -0.0065498445, -0.015662672, -0.0047021913, -0.0019205419, 0.010170566, -0.0019680045, -0.0070922743, -0.0438826, 0.01638139, -0.0073092463, 0.0010026483, -0.009926472, 0.0028816604, 0.0015950837, 0.0037495485, -0.009919692, 0.0053836196, -0.017181475, -0.031216856, -0.004186883, 0.014903269, -0.002318889, -0.009546771, -0.019513926, 0.026294302, 0.0044818292, -0.0021748058, -0.044913217, -0.009723061, -0.023785563, -0.026660442, 0.005648054, 0.012292824, 0.042038336, 0.01993431, 0.013038665, 0.04572686, -0.0017103502, 0.034064613, -0.053836193, 0.0061396314, -0.0044818292, 0.01654412, -0.001231486, 0.008468691, -0.011763955, -0.020205524, 0.011831759, 0.018646037, 0.019486804, 0.03832269, 0.0059192693, 0.002662993, -0.018347701, 0.00014334141, 0.008590737, 0.00062972755, 0.01833414, -0.033522185, -0.0015679622, 0.02445004, 0.007119396, -0.007275345, 0.0023070234, 0.017913757, 0.009641697, 0.010590949, -0.018442625, -0.026172256, -0.00090179016, -0.017235719, 0.014957512, 0.013730263, -0.026375666, 0.026457032, 0.014957512, -0.004617437, -0.023202451, 0.005105624, -0.018713841, 0.024667012, 0.048059314, 0.012387749, 0.008773808, -0.011431715, 0.0037664995, -0.015866082, -0.013092908, -0.0056921267, 0.001869689, -0.02050386, 0.01258438, 0.004797117, -0.027745303, 0.020747954, -0.008882294, 0.01258438, -0.013248857, -0.0141981095, -0.013262418, -0.008760247, 0.03175929, -0.0030138777, 0.0046988013, -0.010516365, 0.0063159214, -0.003919058, -0.01564911, 0.0016781434, 0.20666589, -0.009743402, 0.020951366, 0.046974454, -0.009478968, -0.0019188467, 0.0089704385, -0.003830913, -0.01600169, 0.019690216, -0.013540413, 0.024517843, -0.013065787, -0.0032138987, 0.045075946, -0.0033783228, -0.016815335, -0.03181353, -0.011370692, 0.0023866927, -0.032979753, -0.013086128, -0.019202027, 0.0055836407, 0.02248373, -0.0075601204, -0.032681417, 0.03734632, 0.0117436135, 0.0011696151, -0.00987901, -0.011323229, 0.020273328, 0.020585224, -0.013926894, -7.341877e-05, 0.03878376, -0.006404066, 0.009228094, 0.003381713, 0.035176598, -0.00021580669, 0.0039631305, -0.025100956, 0.0064244075, 0.036912374, -0.0047666053, -0.012096193, -0.029535323, 0.017032307, -0.016788214, 0.0020985268, 0.0022663411, -0.002034113, 0.0033325553, -0.009384042, 0.024355115, 0.016340708, -0.008346644, 0.00790592, 0.002844368, 0.015540624, -0.006560015, 0.014984634, -0.0219413, 0.023988973, -0.0035393569, 0.014659176, 0.006078608, -0.031732164, -0.0012628452, -0.016205102, -0.0031935577, 0.020720832, -0.015974568, -0.019107103, 0.026090892, 0.014320157, 0.01276745, 0.01491683, -0.013621777, -0.046838846, 0.0013967577, -0.001195889, -0.0116893705, -0.03761753, 0.018008681, -0.015879644, 0.02625362, -0.005064942, -0.009648477, -0.018578233, -0.0060277553, 0.017534055, 0.0024188994, 0.001940883, -0.013201394, 0.014726979, -0.007804214, -0.022429487, -0.006875302, 0.024707694, 0.009675598, -0.0031952527, -0.0059430003, 0.0022866821, -0.012096193, -0.012503016, 0.0052920845, 0.0064311875, 0.0041970536, -0.015296531, 0.004630998, 0.008034747, 0.00025320472, 0.013879432, -0.003488504, -0.03544781, 0.013547193, -0.0041665416, -0.025195882, -0.02893865, -0.016096616, 0.0023409252, -0.008021186, -0.024463601, -0.045889594, 0.02103273, -0.012069072, -0.011797857, 0.034145977, -0.031216856, 0.028911527, -0.00076067355, -0.0061226804, 0.0040750066, -0.0025833237, -0.025046714, 0.0026528225, 0.013506511, 0.006871912, -0.0022612559, 0.027799547, -0.018822327, -0.004410635, -0.008156794, 0.00952643, 0.0042750277, 0.010496024, -0.018252775, -0.017845953, -0.013438707, 0.028911527, 0.012848815, -0.009295897, -0.015906764, 0.00305456, -0.03867527, 0.0053293766, -0.014008259, -0.01851043, 0.016598362, 0.032572933, 0.0052988646, -0.018835887, -0.035203718, -0.17195037, 0.008156794, 0.0009763743, -0.030620184, 0.024721256, 0.019473244, 0.0024561917, -0.0032749223, 0.0073431483, 0.012435212, 0.015269409, -0.0035291864, -0.01692382, -0.00916707, -0.011268986, -0.019351196, -0.01600169, 0.00772963, 0.041577272, 0.015174484, 0.025806116, -0.012340287, 0.029562443, 0.0026138353, -0.012069072, 0.005197159, 0.0115198605, 0.0006301513, 0.012957301, -0.017886635, -0.00015118122, -0.0048818714, 0.024694134, -0.01455069, -0.0042004436, 0.005417521, 0.013065787, 0.017222159, 0.0045055607, 0.015757596, 0.016666166, 0.0050412104, -0.0090992665, -0.024585648, 0.010177346, -0.014821905, 0.02139887, -0.022198955, 0.006977008, 0.0055090566, 0.0026511275, -0.012448773, 0.026646882, -0.004959846, -0.010760458, -0.01491683, -0.01653056, 0.0089500975, -0.0030816814, -0.019852944, 0.005302255, -0.02770462, 0.0019374928, -0.0050208694, 0.013506511, -0.019419, -0.011818198, 0.025114518, -0.024680573, 0.007655046, 4.600592e-05, -0.0073634894, 0.021439552, 0.006309141, 0.01635427, -0.0016688203, 0.0017061124, 0.018103607, -0.00646848, 0.0027070655, -0.024883984, -0.019486804, -0.013214955, 0.019378318, -0.010089201, 0.01168259, 0.01746625, 0.014320157, -0.0001762898, -0.025765434, 0.025589144, -0.035556298, -0.0251552, -0.0046818503, 0.012692866, 0.0072685643, 0.010645192, 0.012367408, -0.0070109097, -0.03197626, -0.010482463, -0.01815785, -0.027962275, 0.0032681418, 0.021507356, 0.002807076, 0.0020731003, -0.010577388, 0.011106257, -0.0030121824, -0.017493373, 0.0013382769, 0.02371776, 0.013384464, -0.02678249, 0.014591372, -0.012733548, -0.019974992, 0.021127654, 0.0035732586, 0.048818715, 0.01115372, -0.030810034, -0.00022693074, 0.0005572622, -0.019161345, -0.12682018, -0.007716069, 0.008922976, -0.00016580141, 0.0013543803, 0.03542069, -0.016883139, 0.02516876, -0.01636783, 0.038973607, -0.0076143635, -0.027826667, 0.014699858, 0.016462756, 0.0045259017, 0.0019137615, 0.0069905687, -0.009377262, -0.01239453, 0.034607045, -0.00485475, -0.00934336, 0.005176818, 0.0047327033, -0.021792132, 0.0015916935, -0.01672041, 0.008739906, -0.0013611607, -0.005722638, 0.010448561, -0.03398325, 0.005668395, -0.009431505, 0.019256271, 0.014455764, -0.009628136, -0.008136452, 0.003383408, -0.019500365, -0.02497891, 0.0028511486, -0.008502593, -0.020978486, -0.007424513, 0.010258711, -0.021141216, 0.034145977, 0.0027850398, -0.052398756, -0.020910682, -0.005325986, -0.03311536, -0.018198533, 0.007899139, 0.015323652, -0.0172764, 0.0015162618, -0.025562022, 0.025019592, -0.02211759, 0.00028647092, -0.007458415, 0.00916029, 0.0028189418, -0.023772001, -0.0141303055, -0.010828262, 0.010502804, -0.016950943, -0.025833236, 0.015852522, -0.0063871155, 0.023758441, -0.016137298, 0.011397814, 0.0037529387, -0.0017934097, 0.0044682687, 0.018754523, -0.010950309, -0.009397603, -0.013445488, -0.0116893705, 0.0045767548, 0.016110176, 0.022551535, -0.0052581825, 0.02068015, -0.046621874, -0.0068820827, 0.018266335, 0.02122258, -0.0266062, -0.0024036437, 0.007607583, 0.016516998, 0.0090450235, 0.004566584, 0.00683801, -0.004885262, 0.028667435, -0.03471553, 0.020761514, -0.0001218349, -0.018781645, 0.008468691, 0.0005093758, 0.0011687675, -0.006058267, -0.005858246, 0.019635972, -0.012726768, -0.0008492422, -0.024382235, -0.01673397, -0.029399715, -0.0013882822, -0.011140159, -0.0010924883, 0.010563827, 0.00038203187, -0.01367602, -0.0056785657, -0.011289328, 0.015716914, -0.010401098, 0.004708972, -0.028884407, 0.006075218, -0.013045446, -0.0009704415, 0.023134647, -0.022632899, 0.0025680677, 0.010712996, -0.011831759, 0.003342726, 0.0019222369, 0.03276278, -0.008475471, 0.02606377, -0.003990252, -0.026592638, -0.010258711, -0.013655679, -0.013716703, -0.01581184, -0.008543275, -0.005807393, 0.016327148, 0.0073092463, 0.025073834, 0.018578233, -0.008217817, -0.007885579, 0.013445488, -0.03992286, 0.00025278094, 0.00987901, -0.006780377, -0.004597096, 0.053836193, 0.008522934, 0.005698907, -0.0067735966, 0.018008681, -0.017696785, -0.027745303, -0.0023290596, 0.0029986217, -0.0043801237, -0.0014408302, 0.0141574275, 0.009824767, -0.008366985, 0.024477161, 0.0015713524, 0.016761092, 0.027216434, 0.0089975605, 0.030267604, 0.002929123, -0.020734394, 0.0036342822, 0.006346433, 0.03056594, -0.0024765327, 0.013296319, 0.020042796, -0.00899078, 0.008224597, 0.007119396, -7.182962e-05, -0.0021375138, 0.006743085, 0.004207224, 0.018903691, -0.0117775155, 0.025236564, 0.0039461795, -0.0056921267, -0.013357343, -0.018551111, -0.016028812, -0.0018391773, -0.027284237, 0.022687143, -0.039651647, -0.017900195, -0.013703142, 0.019541048, -0.0018764694, -0.009580673, 0.005434472, -0.0047360933, -0.0021527698, 0.0058887578, -0.0024511064, 0.0091535095, -0.012414871, 0.012272483, 0.0014281169, 0.022049787, 0.038132843, -0.0044377567, 0.010862164, -0.0011263902, 0.037047982, -0.0061701434, 0.026457032, 0.018890131, 0.012069072, -0.02013772, -0.013269198, -0.011391033, -0.010997771, -0.0076143635, 0.014862587, 0.015594867, 0.03273566, 0.0730111, 0.03200338, -0.018076485, 0.0031918625, -0.013737044, 0.0345528, 0.014984634, -0.004946285, 0.026226498, -0.010936748, 0.004617437, -0.014618493, -0.0091738505, -0.042336676, 0.0021205628, -0.0034122248, -0.027541893, 0.0054073506, -0.015486381, 0.0064786505, 0.029155621, -0.020029234, 0.03311536, 0.006251508, -0.028369097, 0.0004123317, 0.014238792, -0.00039453318, -0.016964503, -0.013804847, -0.016150858, -0.002807076, -0.049686603, -0.016422074, 0.004264857, -0.016422074, 0.0011670724, -0.02248373, 0.016083054, 0.0053666686, 0.0065328935, -0.00152728, -0.026918096, -0.006675281, 0.012774231, 0.0053361566, -0.006909204, 0.00014164632, -0.025290806]" 33621076,"But, aren't you folks web2?",https://nadh.in/blog/web2-web3/,143,1668594757,179,pawanrawal,"[0.017107457, -0.013272789, 0.026504122, -0.012802956, 0.00070345437, 0.012720044, -0.020976672, -0.010923623, -0.034214914, -0.029986415, 0.01536631, -0.0025201717, -0.00020738733, -0.006695124, 0.014592468, 0.022994192, 0.031119542, -0.0035548413, 0.011676738, 0.0008230718, -0.022220349, -0.0110963555, -0.019138794, 0.025191354, -0.01868278, 0.018268222, 0.015324855, -0.007676246, -0.0039313985, 0.002074521, -0.0005147438, 0.0013326337, -0.012312395, 0.005776185, -0.020050824, -0.03222503, 0.0046050567, -0.021156315, -0.009866498, -0.0117251035, 0.02843873, 0.0096454, -0.009065018, -0.0030677347, -0.021322139, 0.01818531, 0.014523375, -0.027996534, 0.0005790867, 0.014454282, 0.03164465, 0.020023188, -0.0050092516, 0.0019864272, -0.01909734, -0.013514615, -0.018060943, 0.029295484, 0.026144838, 0.019525716, -0.012312395, 0.016651442, -0.023920039, 0.004601602, -0.012588767, -0.0014207273, 0.0010415788, 0.02682195, 0.0075795157, -0.006121651, 0.042229716, 0.031008994, 0.019774452, -0.01909734, 0.005848733, 0.010716343, -0.0090995645, -0.027692525, 0.0051716203, 0.004218135, 0.0068954937, -0.017729295, -0.015587409, 0.017466743, -0.00025391724, -0.012049841, 0.019249344, 0.01859987, -0.013044782, -0.0054894486, 0.0060871043, 0.013804806, 0.01877951, 0.04082022, -0.01837877, 0.0014673652, 0.0050161607, 0.004200862, -0.020976672, -0.008574457, -0.013625164, 0.0014863658, -0.0033631078, -0.025246628, -0.003401109, -0.0091272015, 0.043694492, 0.015297217, 0.0008563229, -0.01596051, 0.01859987, 0.05997283, -0.014495737, -0.022856005, 0.0020624297, -0.015794689, 0.026269205, -0.0057727303, -0.0026186295, -0.01296878, 0.00507489, -0.0062045627, 0.015822325, -0.029295484, 0.028383454, -0.006398023, -0.040709667, 0.009921772, 0.024569515, -0.012312395, 0.0385816, 0.0026307206, 0.007807523, -0.012892777, 0.008954469, 0.019594809, -0.023920039, -0.0010700797, -0.01940135, -0.04830991, 0.015186668, 0.004404687, -0.007703883, -0.010667978, 0.01216039, 0.020437745, 0.008664277, 0.03545859, -0.0015563226, -0.009873407, -0.017218007, 0.0030228242, -0.005216531, -0.0048676105, -0.0010718071, 0.030926082, 0.006563847, 0.0241135, -0.005067981, 0.0067365794, 0.0016409617, 0.02159851, -0.014647742, 0.00093016616, 0.013977539, 0.028355818, 0.0055999975, -0.0097835865, 0.008028621, -0.017121276, -0.045463275, 0.017328555, -0.0097144935, 0.0056138164, 0.004048857, -0.0020693392, 0.016416525, 0.019843545, -0.014191727, -0.02622775, -0.013473159, -0.014758292, 0.0149932075, 0.03255668, -0.020921398, 0.0024009862, 0.0123814875, 0.0063945684, 0.010129052, 0.00028803197, 0.023768034, 0.017950393, -0.021266863, -0.0051198006, -0.6296871, -0.017563472, 0.016153973, -0.016112516, -0.034436014, -0.017770752, -0.0060214656, 0.0026756313, -0.012243302, 0.039825276, -0.0047570616, -0.001455274, -0.012906595, -0.031893387, -0.024293141, -0.0061769253, 0.01807476, -0.010405424, 0.022759276, -0.0050817993, -0.015463041, 0.027595794, -0.0048848838, 0.0050299796, -0.011973838, -0.015421585, 0.008249719, -0.016305977, -0.0024769886, 0.0069265855, -0.03487821, 0.008408633, 0.0044392333, -0.0052268947, 0.05234495, -0.005907462, -0.013908446, 0.0021643422, 0.0072409594, -0.0066191214, -0.0061976532, -0.0030331882, 0.03609425, 0.0050887084, -0.014758292, 0.020879941, 0.014564831, 0.003205921, -0.0043079564, -0.0019622447, 0.001347316, -0.015131394, -0.0042665005, 0.0008420724, 0.032363217, 0.007966437, 0.01859987, -0.0010182599, 0.017439105, 0.0010718071, 0.011428002, 0.0005540405, -0.02461097, -0.027471427, -0.029267848, 0.0059109167, -0.021253046, 0.004404687, -0.0010994443, -0.0076071527, -0.004152497, 0.021833427, -0.008995925, -0.024389872, -0.02521899, 0.03305415, 0.03567969, -0.018047124, 0.011973838, 0.028908564, -0.004408141, -0.009458848, -0.0076002437, -0.021626148, 0.04148351, -0.014551012, 0.005845278, -0.002742997, -0.00081141235, -0.005261441, 0.007061317, -0.003838123, -0.020962853, -0.025260447, 0.014951752, 0.036702268, 0.009251569, 0.020327197, 0.01035015, -0.013535343, -0.004663786, -0.022745457, 0.032307945, -0.0025357176, 0.013148421, 0.031285368, -0.0007570015, 0.005437629, 0.052483138, -0.029461307, 0.007980255, -0.006242564, -0.01437137, 0.0065362095, 0.011531643, -0.02179197, 0.020230466, 0.0054825395, -0.016996909, -0.031810474, 0.026642308, -0.005945463, 0.0025512637, -0.009997775, 0.0038933975, 0.0009940773, -0.017024545, -0.009362118, 0.009299935, 0.011206904, -0.009880316, -0.018226765, 0.0091962945, -0.00487452, 0.011801106, 0.011690556, 0.0037206647, -0.01978827, 0.009293025, -0.036260072, 0.0055136313, -0.0025443542, -0.005517086, -0.025744097, -0.026255388, -0.039631817, -0.005375445, 0.011545461, -0.0054687206, -0.0005730411, -0.0075035132, -0.002354348, 0.0024458966, 0.0096454, -0.003511658, 0.023063285, -0.014191727, -0.02118395, -0.016527075, -0.031313002, -0.01738383, 0.0072893244, 0.0017100548, -0.021418868, 0.011649101, -0.007855888, -0.017604928, -0.0034252915, -0.008360268, -0.021432687, -0.016001968, -0.017135095, -0.015739413, 0.020258104, 0.00874028, 0.056822184, -0.016485618, 0.007897344, -0.00057001825, -0.011704375, -0.0061769253, 0.005285624, -0.0166929, -0.012637132, 0.023436388, -0.012837502, 0.008864648, 0.028093264, -0.0031126451, 0.022330897, 0.006401478, 0.0023888948, -0.011331272, 0.011925473, -0.011282907, -0.009085746, -0.0020917943, 0.0037033914, 0.013106965, 0.04441306, 0.029488945, 0.02430696, 0.0042872285, -0.017756933, -0.007344599, -0.024445146, 0.004100677, -0.019815909, -0.015393948, 0.013459341, 0.00813917, 0.0021436142, -0.00281209, -0.019967914, -0.012436762, 0.037918307, 0.0013784078, 0.029267848, 0.012036022, 0.040433295, 0.01115163, -0.037144464, 0.021819608, -0.005886734, -0.0137080755, 0.015117575, 0.014910297, -0.0011702648, -0.007061317, -0.03606661, -0.01386008, 0.016927816, 0.0010718071, 0.02462479, -0.011089446, 0.015463041, 0.040322747, -0.021239227, 0.029710043, -0.0058107316, -0.00402122, 0.018364953, 0.014302277, -0.037310287, 0.017231826, 0.015532134, 0.039189618, -0.013189877, -0.009631582, 0.0061941985, 0.0027706344, 0.006018011, -0.025384814, -0.011324363, 0.025592092, -0.022648726, 0.008353359, 0.0031938297, 0.013714985, 0.029102024, 0.01336261, -0.012796046, 0.005748548, -0.013390248, -0.00093362085, -0.019111158, 0.0076693366, -0.0035617505, 0.008906104, -0.00053158525, -0.010771618, -0.01245749, 0.010059959, 0.0084984545, -0.00263763, 0.01517285, -0.02231708, -0.004069585, -0.004795063, -0.0012410852, -0.01757729, -0.009583216, 0.0127615, -0.0066433037, 0.0067883995, -0.041290052, -0.008249719, -0.008298084, 0.002090067, 0.023768034, -0.034822933, -0.01326588, 0.0012479946, 0.00733769, -0.0034045638, -0.023367295, 0.013742622, -0.017549653, -0.018641325, -0.009693765, 0.011745831, 0.005237259, 0.008995925, -0.010163599, 0.033883266, 0.0021315229, -0.008249719, -0.0058936435, -0.003775939, -0.023063285, 0.015352492, -0.016209247, 0.013459341, -0.002748179, -0.010281057, 0.024154956, -0.0019052429, 0.009693765, 0.0011953111, 0.0018413317, 0.011524733, -0.004218135, -0.020382471, 0.008533001, 0.08456998, 0.013735713, -0.0017402831, 0.015725594, -0.003858851, -0.023864765, -0.015228124, -0.047895353, 0.03252904, -0.017204188, -0.0024338053, -0.012036022, 0.03247377, 0.00052942603, 0.006629485, 0.0026134474, 0.008505364, -0.0047605163, -0.0022679819, -0.005669091, 0.00017284077, 0.0015330036, -0.004985069, 0.040046375, 0.006360022, 0.022579633, 0.021847246, 0.012927324, 0.008899194, -0.00843627, -0.011027263, 0.0110963555, 0.0002964527, 0.026379755, -0.0110410815, 0.0020399746, -0.013410975, 0.03073262, 0.025108442, 0.0036101157, -0.010688706, 0.020327197, 0.0014682289, -0.006353113, -0.0014431826, -0.023160014, -0.02118395, 0.03816704, 0.0075380597, -0.01607106, 0.008878467, -0.0049781594, -0.04250609, -0.018323496, -0.018337315, -0.018254403, 0.00934139, -0.024099682, -0.0074620573, -0.011904745, -0.010709434, -0.040737305, 0.005617271, -0.005821096, -0.0116836475, -0.021750515, 0.01377026, 0.0047881533, 0.00049185666, 0.011732012, -0.0052199853, -0.028065627, -0.03377272, 0.018116217, 0.015932875, -0.0049505224, 0.001110672, -0.008166807, 0.0049470677, 0.022372354, 0.008712643, -0.016057242, -0.008546819, -0.009521033, 0.017231826, -0.016554713, -0.029157298, -0.018447865, -0.026283024, 0.020879941, -0.008892285, -0.022413809, -0.004663786, 0.009313753, 0.027153598, 0.02249672, -0.0037241194, 0.00164528, 0.047508433, -0.030207513, -0.010474518, -0.0013093147, -0.00017640338, -0.0045463275, 0.006764217, -0.00094571215, -0.00025154217, -0.004390868, -0.0019121522, 7.038862e-05, 0.00043204793, -0.011490187, 0.019221706, -0.003910671, -0.009721402, 0.0033181973, 0.020672662, 0.025896102, 0.008228991, -0.01175965, -0.015338673, -0.012305485, 0.007427511, -0.0002858728, -0.016609987, 0.007918072, 0.018862423, -0.01890388, -0.030815532, -0.0010528065, -0.0051612565, -0.01175965, 0.011600736, -0.0065362095, -0.032418493, -0.0038899428, 0.024030589, -0.003485748, -0.012118934, 0.0060629216, -0.014018995, 0.00033402207, 0.0059523727, -0.017632565, -0.0076900646, -0.03736556, -0.0067780353, -0.009175567, 0.009728312, 0.025757916, -0.034629475, 0.008194445, -0.0117112845, -0.019663904, 0.025053166, -0.02632448, 0.019567173, -0.04825464, 0.022123618, 0.041068953, 0.01658235, -0.001128809, 0.035209857, 0.014620105, 0.00462233, -0.0060456484, -0.010267238, 0.00019086976, -0.025288083, 0.02191634, -0.001637507, 0.010633431, -0.002269709, -0.020189011, 0.039438356, 0.01185638, -0.007655518, -0.0012834048, -0.012637132, -0.02622775, -0.025536818, 0.049000844, -1.7948018e-05, -0.00025996286, -0.02412732, 0.005644908, 0.017729295, -0.00017888642, 0.0058936435, 0.010004684, 0.046154205, 0.011884017, 0.01567032, 0.013307336, 0.012498946, -0.017964212, -0.008712643, -0.018309677, -0.021557055, 0.031589378, -0.0030539162, 0.018765692, -0.0091962945, 0.0060871043, 0.0030884626, 0.020645026, -0.014689198, -0.018005667, 0.015228124, -0.030373337, 0.009403574, -0.013397156, -0.024887344, -0.019967914, -0.009735221, 0.0067089424, 0.000534608, 0.015407766, -0.013238243, -0.02159851, 0.0032836506, 0.0067573073, 0.02249672, 0.022938916, 0.025122259, 0.0037033914, 0.0026514486, -0.011393456, -0.021778153, -0.0066225757, -0.018240584, 0.04433015, 0.018047124, -0.019249344, 0.0016539167, 0.012892777, -0.024735339, -0.020976672, -0.02935076, -0.0042941375, 0.019622447, 0.0017705113, -0.01245749, -0.03277778, -0.019885002, 0.013977539, -0.024804432, 0.028093264, -0.0054514473, -0.024099682, -0.0057001826, 0.017466743, -0.010868348, -0.0019017882, 0.021239227, 0.0014708198, -0.0024752612, -0.0072202315, -0.0008684142, 0.02110104, -0.008982106, 0.015048482, -0.026697583, -0.014523375, 0.020023188, 0.03156174, -0.025896102, -0.013611346, -0.020244285, 0.021349775, -0.017466743, -0.0014578649, -0.0010709434, -0.014122634, 0.018268222, -0.0030780986, -0.0006779763, -0.012505855, -0.03871979, 0.010066868, 0.042644277, 0.010460699, 0.018710418, -0.00218507, -0.009977047, -0.03377272, 0.0032560134, -0.0055930885, 0.023864765, -0.015159031, -0.011165448, -0.0075104227, -0.0028449094, -0.0008053667, -0.035817876, 0.001868969, -0.02832818, 0.0137771685, -0.013797897, 0.013321154, 0.020078462, 0.011441821, -0.014799747, 0.015849963, -0.008318812, -0.018572232, 0.027402332, -0.01576705, -0.041953344, -0.014454282, 0.021957794, -0.009493395, -0.006843674, 0.015753232, -0.00221098, 0.025536818, 0.0031368278, -0.016513256, -0.035624415, 0.021722877, 0.013956811, 0.00914793, 0.012243302, -0.01477211, 0.009258479, -0.015725594, 0.0010502154, -0.01727328, -0.04571201, 0.0056794547, 0.0015856872, 0.010232692, -0.011504005, 0.01467538, 0.004843428, -0.020202829, -0.020341016, -0.008774826, 0.022068344, 0.0028449094, 0.026296843, 0.01044688, 0.0066225757, 0.011621463, 0.0063634766, -0.02400295, -0.034629475, -0.024873525, -0.03366217, -0.0028811833, -0.015145212, 0.03686809, 0.0019086975, -0.012554221, -0.033219974, 0.024362236, -0.051902756, -0.0063876593, 0.0014639106, 0.0047812443, 0.049304854, 0.014302277, 0.0016962362, 0.0014906841, -0.011745831, 0.017370012, -0.032971237, -0.013901536, -0.004494508, -0.005195803, 0.014882659, -0.0070889546, -0.04731497, 0.0048848838, 0.029212574, -0.014537193, -0.0052303495, 0.031313002, 0.0130378725, 0.0017705113, -0.020534476, 0.009320662, 0.009161748, 0.014758292, 0.018544594, -0.06743489, 0.006881675, 0.02382331, -0.0016763719, -0.0049919784, 0.008519182, 0.0055101765, -0.0150070265, -0.021059584, 0.004380504, -0.019663904, 0.010336331, -0.0071787755, 0.03537568, 0.00522344, -0.011669829, 0.022330897, 0.006007647, 0.0006054285, -0.014343732, 0.00043787766, 0.0025806283, 0.013618255, 0.023726579, -0.021349775, 0.02310474, -0.000408729, 0.018060943, -0.02071412, 0.0026341754, -0.02140505, -0.014537193, -0.020119919, 0.006360022, 0.013051691, -0.010122143, -0.009610853, -0.01035706, 0.012830593, -0.0047846986, -0.00041628606, 0.016941633, 0.012188027, -0.02071412, 0.0010536702, -0.0037448474, -0.012913505, 0.011593826, -0.010405424, -0.01377026, -0.006715852, 0.21380176, 0.011863289, -0.0071304105, 0.020175193, 0.0019656993, -0.02060357, 0.02521899, -0.004408141, 1.6085743e-05, 0.018558413, -0.022551995, 0.010329422, -0.027250327, -0.006591484, 0.01859987, 0.016900178, -0.023643667, -0.012402216, -0.0014051814, 0.013825534, -0.008629731, -0.00067840813, -0.0136528015, -0.009970138, 0.019650085, 0.019857364, 0.0130378725, 0.01074398, -0.0033821084, 0.01316224, -0.026987774, -0.011842561, 0.008830101, 0.019456623, -0.003910671, -0.01920789, 0.036536444, -0.011953111, 0.0066156667, 0.024597151, 0.0060214656, 0.00011972543, -0.008595184, -0.012996417, 0.012740772, 0.025149897, -0.0017368284, -0.0011417639, -0.009265387, -0.013134602, -0.016609987, -0.0032491041, 0.01998173, 0.031174818, -0.0031022814, 0.005969646, -0.0041663153, 0.02029956, -0.016402708, -0.0062114717, -0.015103756, -0.004643058, 0.017107457, 0.04350103, -0.022551995, 0.0048917932, 0.007192594, 0.025550637, 0.0043355934, 0.0007319553, 0.00012944164, 0.0018119671, -0.024279324, 0.011863289, -0.008705733, -0.022980373, 0.023588393, 0.023339657, 0.007952618, 0.009610853, 0.001010487, 0.015255761, -0.009700675, -0.010985807, -0.020658843, -0.0012790865, 0.020437745, -0.01185638, 0.01165601, -0.024997892, -0.002084885, -0.009306843, -0.0030660073, -0.012146571, 0.016996909, -0.00763479, 0.009818133, 0.009990865, 0.00087186886, -0.023063285, -0.030179877, 0.059862282, 0.007019861, 0.020658843, -0.0018482411, -0.01296187, 0.0026030834, 0.015615046, 0.011662919, -0.014661561, -0.003979764, -0.011393456, 0.02009228, 0.0011745831, 0.00026341755, 0.019373711, -0.0035099306, -0.022247985, 0.014703017, 0.0022040706, 0.0014604559, -0.019221706, -0.0025253536, 0.010674887, 0.0021246136, -0.027374696, -0.0027844529, -0.0018240585, -0.015490678, -0.024638608, 0.040378023, 0.00018979017, 0.0019570626, -0.012775319, -0.013784078, -0.02581319, 0.01536631, -0.007897344, 0.015615046, 0.011704375, -0.017604928, 0.008595184, -0.007427511, -0.023381112, 0.0026238114, -0.01336261, 0.0026877224, -0.0027740889, -0.0275267, -1.0977979e-05, -0.017604928, 0.008816282, 0.0048710653, -0.04502108, -0.0014457736, -0.013901536, -0.013701166, -0.01125527, 0.017397648, 0.031368278, -0.03567969, 0.030290425, 0.028825652, -0.0026255387, -0.025412451, -0.021432687, -0.17610456, 0.016554713, 0.027319422, -0.01829586, 0.028687464, 0.006843674, 7.206197e-05, -0.002375076, 0.013915355, -0.018765692, 0.014951752, -0.017439105, -0.005385809, -0.030926082, -0.006460207, -0.0005721774, -0.006512027, 0.020949036, 0.040654395, 0.0052925334, 0.010619613, -0.0150070265, 0.013797897, -0.022690183, 0.009907954, 0.01416409, -0.0032093755, 0.013100056, -0.0077937045, -0.037089188, -0.030981356, -0.008422452, 0.034712385, 0.011897836, 0.0136528015, 0.004079949, 0.010274148, 0.0025443542, -0.021529417, 0.02742997, 0.017328555, 0.012478218, 0.017066002, -0.0098388605, -0.026697583, 0.035707325, -0.004864156, 0.0007902526, -0.0037897578, 0.009659219, 0.014053541, -0.0029502765, 0.00048710653, 0.0052787145, 0.009431211, 0.0062149265, 0.0010389879, 0.021170134, -0.0073100524, -0.0038899428, -0.002000246, -0.02582701, 0.024458965, -0.016637623, -0.034518924, -0.005216531, 0.016029604, -0.007959528, -0.013611346, 0.008615913, -0.022773093, 0.0013784078, -0.0015217761, 0.0024389874, -0.00010644659, 0.011476368, -0.020962853, -0.006864402, 0.018820968, 0.017756933, 0.017259462, 0.00078247965, -0.00067754445, 0.022344716, -0.03225267, 0.010522882, -0.0045497823, 0.006228745, -0.025108442, -0.001673781, -0.005707092, -0.023505481, -0.0069265855, -0.008450089, -0.01707982, 0.0043079564, 0.019525716, 0.0098112235, -0.0043977774, -0.023063285, 0.009997775, 0.01658235, -0.011275997, 0.0001200493, 0.026766676, 0.032280307, -0.021639965, 0.015076119, 0.033579256, 0.00096212176, -0.029571857, 0.012699316, 0.019829726, 0.0039521265, -0.004059221, 0.0070889546, 0.006954223, -0.0039935824, 0.021156315, 0.010329422, 0.053809725, 0.014882659, -0.02231708, -0.0022127072, -0.004833064, -0.016596168, -0.13542253, -0.019042065, 0.0331647, 0.019180251, -0.0023042557, 0.021128677, -0.009182476, 0.017010728, -0.0052683507, 0.036038972, -0.046264756, -0.031782836, -0.013880809, 0.002542627, 0.0044185054, -0.013811715, 0.0026566307, -0.0003251695, -0.014191727, 0.023132378, -0.007316962, -0.045463275, -0.008049349, 0.01035706, -0.012726953, 0.012920414, -0.016153973, 0.007614062, -0.006069831, -0.017978031, -0.014329914, -0.0076416996, 0.012284758, -0.024196412, 0.01336261, 5.3088348e-05, -0.014799747, -0.025951378, 0.030096965, -0.019650085, -0.02520517, 0.030760258, 0.0071995035, -0.009217023, -0.014523375, 0.00527526, -0.0062736557, 0.017964212, -0.006356567, -0.005026525, -0.042589, -0.026241569, -0.003796667, -0.025412451, 0.039631817, 0.007966437, 0.004432324, -0.0031247365, 0.011020353, 0.0012229483, -0.018364953, 0.008049349, -0.01326588, 0.009286116, 0.00223689, 0.006822946, -0.00577964, 0.009693765, -0.0042561362, -0.0136942575, 0.0084984545, 0.008975197, -0.013818624, 0.019885002, -0.031672288, 0.0020676118, -0.02672522, 0.0020917943, 0.024500422, 0.0065569375, 0.003169647, -0.013120784, 0.0036757542, -0.012561129, 0.03277778, 0.006892039, 0.01908352, 0.00047285607, 0.006187289, -0.05273187, 0.002589265, -0.0031661924, 0.0017895119, -0.0207003, 0.0035755693, -0.008615913, 0.006470571, 0.0014181364, 0.0060629216, 0.00281209, -0.015145212, -0.010536701, -0.031782836, 0.017826026, -0.0023336203, -0.035817876, 0.011331272, -0.021653784, 0.0015891418, -0.009983957, -0.014481919, 0.037724845, -0.015615046, 0.031091906, -0.023090921, -0.027319422, -0.020631207, -0.01467538, 0.025343359, -0.0023923493, 0.024928799, -0.012388397, 0.007931891, 0.0003938308, 0.0016357797, 0.0070474986, -0.013714985, 0.018240584, -0.020175193, 0.0127615, 0.0054825395, -0.03194866, 0.01807476, -0.03222503, 0.009735221, 0.0018776057, 0.0091548385, 0.00044996897, 0.0021073404, 0.04029511, 0.007876616, 0.07887671, -0.016292159, -0.037614297, -0.021377413, -0.0024597151, -0.02592374, -0.019746814, -0.0040108557, 0.01104799, 0.02662849, 0.0052061668, 0.015352492, 0.00096212176, -0.05665636, -0.019180251, -0.026973955, -0.014302277, -0.0019397894, -0.016015787, 0.005945463, 0.012844412, 0.027858347, 0.016969271, 0.00027162235, -0.029737681, 0.014357551, -0.022593452, -0.014896478, -0.011497096, 0.016043423, -0.0150070265, 0.0068264008, -0.002416532, 0.018931516, 0.017342374, 0.014564831, 0.005897098, -0.021114858, -2.6409227e-05, -0.0041421326, 0.03216976, 0.01999555, -0.029931141, -0.014219365, -0.002622084, 0.004681059, 0.0013524978, -0.001437137, -0.007044044, -0.010992716, 0.017452924, 0.005686364, 0.0033043786, -0.017204188, 0.0028051808, 0.0017048728, -0.01396372, -0.007254778, 0.036923364, 0.011718194, 0.020562114, 0.021156315, 0.0017385557, 0.010840711, -0.012188027, -0.03847105, -0.0032663774, -0.028411092, -0.016775811, 0.0046672407, 0.044385422, -0.0074896947, -0.0059040072, -0.014440463, -0.007807523, 0.0037483019, 0.02060357, -0.016181609, -0.018834785, -0.032998875, 0.020907579, 0.009203204, 0.031313002, 0.02249672, -0.012747682, 0.020064643, 0.004708696, 0.014855022, -0.012070568, 0.002020974, -0.00057347293, 0.016430344, 0.00051603926, -0.008657369, -0.0069473134, -0.015739413, -0.035044033, -0.01346625, 0.020341016, 0.0077522486, 0.041621696, 0.04894557, -0.014841203, 0.0010415788, -0.0013455886, 0.02280073, -9.673037e-05, 0.0019881546, 0.028286725, -0.020907579, 0.03283305, 0.00022088208, 0.016195428, -0.03222503, -0.010916714, 0.006349658, -0.004522145, 0.03114718, -0.010025412, 0.020949036, 0.028880926, 0.010557429, 0.01879333, -0.0016616896, -0.013832443, -0.010978897, 0.030566799, -0.014827385, -0.0014863658, -0.015932875, 0.0012471309, -6.412705e-05, -0.04795063, -0.008823192, -0.0035479318, -0.0018482411, 0.005181984, -0.027001593, 0.034021456, -0.0073100524, 0.014454282, 0.003306106, -0.012609495, -0.026448848, 0.021764334, -0.0068194913, -0.005282169, -0.024224048, -0.005375445]" 32346949,How to use an iPad as a secure calling and messaging device,https://yawnbox.com/blog/how-to-use-an-ipad-as-a-secure-calling-and-messaging-device/,139,1659639739,98,CharlesW,"[-0.0036973471, -0.0016908188, 0.015356653, -0.04278793, 0.0024277559, 0.01719351, -0.03325249, -0.015262109, -0.010751008, -0.018138949, 0.024365349, 0.010872564, -0.008198319, 0.01129126, 0.0047238255, 0.03411689, 0.028633337, 0.013857455, 0.031631734, 0.00094037555, -0.031091483, 0.0104065975, -0.007239372, 0.011993587, -0.008860127, -0.0057334206, 0.018409075, -0.020691639, -0.00016017618, -0.019489579, 0.017679736, -0.004480712, -0.02374406, -0.0122704655, -0.016990915, 0.0077120923, 0.012317738, -0.015545742, 0.023392897, -0.012142156, 0.029011514, -0.0072596315, -0.001414784, 0.009501676, -0.01773376, 0.01427615, 0.0025628188, 0.00093362236, 0.00221672, 0.010224262, 0.009650245, 0.0091234995, 0.0061622453, -0.018638682, -0.01835505, 0.011196716, -0.011426322, 0.017234027, -0.007732352, -0.0049770684, 0.0017136107, 0.008421172, -0.029281639, 0.012040859, 0.0033647548, 0.0010585556, -0.005983287, 0.017342078, -0.005865107, 0.014991983, 0.032658212, 0.035386484, 0.003484623, -0.008218578, -0.010325559, -0.0056017344, -0.0075770295, -0.0054936837, -0.02803906, -0.004632658, 0.013114609, -0.021569546, -0.021650584, 0.035305444, 0.011419569, 0.0229742, 0.005250571, 0.0025797016, 0.023257833, 0.00046765534, 0.009157266, 0.007968712, -0.0074217073, 0.020408006, -0.008596755, 0.02473002, -0.0031908613, 0.026755963, -0.006277049, -0.00012683251, 0.010082446, -0.018287519, -0.016302094, -0.002481781, -0.04819045, -0.008792596, 0.016085993, -0.009569207, 0.0029072291, -0.010818539, -0.0048318757, 0.033117425, 0.011372297, -0.022123305, 0.02563494, 0.006513409, 0.010865811, -0.0084751975, -0.023568477, -0.021299422, 0.032307047, -0.013296944, 0.036358938, -0.0036230625, 0.027161151, 0.00020037849, -0.01449225, -0.0050074575, 0.020556575, -0.009420638, 0.014856921, -0.024203274, 0.011541126, 0.018760238, 0.0011429699, 0.003406962, -0.011865277, -0.0014662767, 0.00064028264, -0.035008308, 0.0069895056, 0.017288053, -0.010251275, -0.0024682747, -0.0024598334, 0.023406403, -0.012729679, 0.003785138, -0.0056929016, 0.013175387, -0.01210839, -0.012770198, 0.0041464316, -0.005321479, -0.016275082, 0.03660205, -0.012020599, 0.022420444, -0.014532769, -0.010507895, -0.010879317, 0.010784773, -0.0018993223, 0.00852247, 0.02866035, 0.03506233, -0.0017659476, 0.026350774, 0.00347787, 0.02138046, -0.0018858159, -0.0044604526, -0.0097920615, 0.0072056064, -0.00706379, 0.011183209, 0.004227469, 0.006067701, 0.0010070628, -0.0410051, -0.008063256, 0.011122431, 0.007502745, 0.04089705, -0.039060194, 0.01861167, 0.0061487393, 0.027849972, -0.008184812, -0.018692708, 0.022677062, 0.027741922, -0.012655395, -0.011061653, -0.63836133, -0.015127046, 0.022406938, -0.0073474227, -0.009305835, 0.012034105, 0.0072528785, 0.010298547, -0.025405334, 0.029956954, -0.014978477, -0.00061706867, -0.0073609287, -0.031145507, -0.0128782485, -0.0065032793, -0.00478798, -0.008076762, 0.011480347, -0.0010855681, -0.032874312, 0.013404994, -0.0071921, 0.0091234995, -0.004349026, -0.00431526, 0.004987198, -0.018665694, -0.02389263, 0.015856385, -0.022312393, 0.013729145, 0.016801827, -0.005875237, 0.05888743, 0.0009825827, -0.002964631, 0.018652188, 0.013979011, 0.016248068, -0.0074824854, -0.018584657, 0.013371228, 0.030308118, -0.011318272, 0.015154059, 0.035791673, -0.016666763, 0.0020428265, -0.024811057, 0.007995725, -0.009177525, -0.017760772, -0.003135148, 0.01893582, 0.013357722, 0.007853908, -0.02505417, 0.03190186, -0.008171306, -0.0167478, 0.025607929, -0.018989846, -0.020272942, -0.031334594, 0.012999806, 0.001179268, -0.00080446847, 0.0067801583, -0.009886605, 0.008313122, 0.02301472, 0.002228538, -0.02520274, 0.0043118834, 0.023554971, 0.018854782, -0.02396016, -0.010021668, 0.024878588, 0.0110481465, 0.00065167854, -0.025337802, -0.02735024, 0.030065004, 0.0073609287, -0.010919836, -2.9492254e-05, 0.014924452, -0.0025661953, 0.02887645, 0.00432539, 0.0027890492, -0.025189234, 0.0011243988, 0.003994486, -0.01736909, -0.00897493, 0.0015245227, -0.0037750085, -0.015667297, 0.016585726, 0.008569742, 0.015923917, 0.027255695, 0.009778555, -0.011102172, -0.0044536996, 0.030821357, -0.030037992, 0.01730156, 0.00031718682, 0.007232619, -0.0012518644, 0.013364475, -0.029200602, 0.044381674, -0.0040214984, 1.0927698e-05, 0.0064695133, 0.0053552445, -0.01835505, 0.013357722, -0.011446582, 0.010676723, 0.021677598, 0.018800758, -0.019530097, 0.0054329056, 0.017315065, -0.0007284956, -0.026864013, 0.03390079, 0.012993053, 0.01959763, 0.0042308457, 0.020772675, -0.023879122, 0.0013058896, -0.0077526113, -0.014438225, -0.0122704655, -0.0077188453, -0.016085993, -0.01726104, -0.030632269, -0.013330709, 0.005459918, -0.006867949, -0.018084925, 0.016923383, -0.0044672056, 0.0206106, -0.0064560072, 0.019165426, -0.009967643, -0.009184278, -0.026661418, -0.009305835, 0.020705145, 0.00029861566, 0.029200602, -0.011277753, 0.007880921, 0.015059515, -0.0035859204, 0.011230481, -0.0029561894, 0.012844483, -0.030173054, 0.007239372, 0.0039809793, -0.0037108536, 0.010838799, -0.0052066753, 0.022312393, -0.0058549773, 0.0072191125, 0.002145812, -0.0034525457, 0.021691104, -0.0052134283, -0.015559248, -0.017463634, 0.0012830977, -0.010649711, -0.0040991595, 0.016720789, -0.012425788, 0.02323082, -0.009427391, -0.012594617, 0.00012071248, 0.01474887, -0.0016663386, 0.008319875, 0.004284871, -0.024257299, 0.009812321, 0.04989224, 0.017382598, -0.00779313, 0.03873604, -0.012675654, 0.0026539862, -0.010737501, 0.007604042, -0.019219453, 0.023514453, -0.00067362626, 0.007961959, -0.012378516, -0.0016815333, -0.016666763, -0.0018047781, 0.03168576, -0.0010855681, 0.025013652, -0.0013692003, -0.0011480347, 0.0062500364, -0.0014367318, 0.031523682, -0.016599232, -0.015356653, 0.017639216, 0.013979011, 0.0027772312, 0.021610066, -0.027903998, -0.011723461, 0.00624666, 0.013175387, 0.0019313997, 0.028525287, 0.029929942, 0.007050284, -0.017139483, 0.034035854, -0.009582713, -0.00048918097, 0.022055773, 0.015869893, -0.0006850222, 0.01762571, 0.017706748, 0.034900256, -0.012398776, -0.0050007044, 0.0051256376, -0.014316669, 0.034062866, -0.014762376, 0.013303697, 0.022042267, -0.012939027, 0.016261574, 0.013924986, 0.020435018, 0.016950395, 0.0024328206, 0.012256959, -0.009109993, -0.002003996, -0.012837729, -0.0007394694, 0.016194044, 0.00935986, -0.002983202, 0.0066282125, -0.0076378076, -0.015437691, 0.017017927, -0.0056793955, 0.029335665, 0.023136277, 0.010143225, 0.0023146407, 0.03830384, 0.02265005, -0.028336199, -0.031442646, 0.026809989, 0.014532769, -0.016450662, -0.022163823, -0.040789, -0.016828839, -0.0033833259, 0.0041295486, -0.006547175, 0.011669436, -0.011716708, -0.018192975, 0.0017127666, 0.00090323325, 0.0264048, -0.0041363016, -0.0064695133, 0.024500413, 0.0030676164, 0.0036534518, -0.041653402, -0.003130083, 0.012540592, -0.017855316, -0.013897974, -0.017504154, -0.005365374, -0.025715979, 0.009656998, -0.017828304, -0.00089732424, -0.017544672, -0.008596755, 0.013398241, -0.03001098, -0.016950395, 0.038411893, 0.023082253, -0.010447117, -0.043922458, -0.0072123595, 0.017477142, 0.079362966, 0.011547879, -0.016558712, 0.0046596704, -0.028417237, -0.0060980907, -0.02057008, -0.05480853, 0.029956954, -0.025959091, -0.013573823, 0.03452208, -0.0022184083, 0.003731113, 0.015140552, 0.0065100323, -0.0003859845, -0.0015506911, -0.008144294, -0.018233493, -0.012675654, -0.0035926735, 0.009555701, -0.002304511, 0.022731088, -0.009393626, 0.024527425, 0.021799155, -0.0024851577, -0.008698052, -0.010514648, 0.0405729, 0.04308507, -0.021610066, -0.02866035, 0.029929942, -0.011156197, 0.003808774, -0.026809989, 0.018841276, 0.023906136, 0.005760433, 0.016140018, -0.0027147646, 0.027539328, -0.028606325, -0.020678133, 0.020732157, -0.0026438565, 0.00064239296, 0.007901181, -0.0074014477, -0.0009243368, -0.023906136, -0.0049061603, -0.0005221026, -0.012662148, -0.0013953687, -0.0324151, -0.019205946, -0.024675993, 0.0027434654, 0.0016097811, 0.0025071052, -0.031820823, -0.022987708, -0.000618757, -0.005466671, -0.008671039, 0.021542534, 0.028903464, -0.027849972, -0.024135742, 0.0091437595, 0.034441043, 0.010723995, 0.015599767, 0.007968712, -0.017207015, 0.017760772, 0.009521935, -0.03503532, 0.0074824854, -0.0289845, -0.0023129524, -0.0031503425, -0.024770537, -0.011912549, -0.01893582, 0.016963901, -2.3833856e-05, 0.0019567239, -0.0068105473, -0.005706408, 0.004379415, 0.0069422335, -0.013006559, 0.0023500947, 0.01569431, -0.013087596, -0.0038189038, -0.012142156, -0.0163156, -0.027849972, 0.028498275, 0.0020073724, -0.0030659281, 0.014762376, 0.005358621, 0.0077661173, -0.00600017, -0.010764514, 0.0122637125, -0.00010150822, 0.012115143, 0.007786377, 0.013425253, -0.008914152, -0.0078741675, -0.025283778, 0.00024838914, -0.025580915, 0.013391487, 0.006506656, -0.01642365, 0.005422776, 0.011318272, -0.023757566, -0.030497206, -0.0051087546, -0.0011809564, 0.00623653, 0.005912379, -0.02949774, -0.00935986, 0.012256959, 0.005936015, 0.029848903, -0.0011395933, -0.011345285, -0.013857455, 0.029011514, -0.0058178348, -0.039087206, 0.008799349, -0.026661418, -0.009927124, 0.004149808, -0.014397707, 0.019719185, -0.023446921, -0.004592139, -0.0036534518, -0.005682772, -0.012040859, -0.02527027, -0.0037682552, -0.0064728903, 0.034278966, 0.025770003, 0.016004955, 0.0160995, -0.012446048, 0.014370694, 0.010041928, -0.013810183, 0.0049905744, 0.01678832, -0.001992178, 0.0141951125, 0.0038999417, 0.006030559, -0.004818369, -0.008205072, -0.00455162, 0.00057486154, 0.004585386, 0.000548271, -0.0067295097, -0.01882777, -0.015572754, 0.006361463, -0.013377981, 0.00046934362, -0.034684155, -0.0015127046, 0.0071110623, -0.0034643637, 0.017531166, -0.01805791, 0.023946654, -0.011325025, 0.024540931, 0.0055375793, 0.004295001, -0.006361463, -0.018908808, -0.0132024, 0.021056307, 0.026972063, 0.008785843, 0.0010070628, -0.014694845, -0.011412816, 0.0068037943, 0.0019702301, -0.01137905, -0.010656464, -0.00036002707, -0.016491182, -0.009326094, -0.0075837825, -0.04835252, -0.019732691, -0.005574722, -0.0067598987, 0.00957596, 0.010764514, -0.0075837825, -0.026283244, -0.0059495214, 0.019395035, 0.037817616, -0.01522159, 0.020691639, 0.030848369, -0.017139483, -0.018328037, -0.015302628, 0.016234562, -0.023028227, 0.02803906, 0.011574891, -0.026107661, 0.015140552, 0.01137905, 0.001385239, -0.0028430743, -0.014357188, 0.011189963, 0.024081718, -0.0046225283, -0.021947723, -0.023109265, -0.020326968, 0.01794986, -0.005105378, 0.014411213, -0.0014510822, 0.00076226133, -0.02181266, 0.032523148, -2.6537751e-05, 0.012925521, 0.024932614, -0.011264247, 0.0064965263, -0.041491326, 0.011770733, -0.016666763, -0.01620755, 0.0039235777, 0.010143225, -0.004102536, -0.003395144, 0.011500607, 0.0067531457, 0.0019904897, 0.0013396553, 0.02046203, -0.011534372, -0.022839138, -0.0049466793, -0.03011903, -0.0003401897, -0.020921245, 0.001809843, -0.012128649, -0.007968712, -0.0067666518, 0.020164892, 0.01069023, -0.0048487587, -0.01857115, -0.0072123595, -0.022609532, -0.0068510664, -0.0054092696, 0.018733226, 0.009191032, -0.0337117, 0.0038121508, -0.0103053, 0.022528494, 0.012716173, -0.010075693, 0.004835252, 0.027593354, -0.003442416, 0.0043591554, 0.032144975, 0.009785308, -0.008232084, 0.029227614, -0.012952534, -0.0184631, 0.023771072, -0.018868288, -0.013459019, -0.03787164, -0.002198149, -0.0029629427, 0.002988267, -0.0033326773, -0.020637613, 0.027161151, 0.0017110782, 0.0019584121, -0.022123305, 0.0068274303, -0.014721857, 0.00070274924, 0.013128115, -0.0004326234, 0.023460427, -0.046785794, 0.013168634, 0.00045836976, -0.023730554, -0.013513044, -0.03211796, 0.018638682, -0.024648981, 0.0014426408, 0.01794986, 0.030929407, -0.0019229582, -0.021745129, 0.0012543967, 0.016234562, 0.0042679883, -0.015748335, 0.028930476, 0.016936889, -0.020232424, -0.00084920804, -0.0206106, -0.02949774, -0.01992178, -0.0030287858, -0.016018461, 0.04332818, 0.013067337, 0.0047238255, -0.029524753, -0.010730748, -0.06472215, -0.024270805, -0.029983966, 0.008326628, 0.018733226, 0.026013117, -0.0016688711, 0.02192071, 0.007826895, 0.004048511, -0.016356118, -0.006071078, -0.018841276, -0.028525287, 0.0068173003, 0.0026269737, -0.037385415, -0.010832045, 0.028930476, -0.029578777, -0.007853908, 0.042517804, 0.0021424354, 0.0005883678, -0.004804863, 0.011419569, 0.0083739, 0.0006609641, 0.026782975, -0.035197396, 0.017463634, 0.036872175, -0.00706379, -0.010480882, -0.007847155, 0.023771072, -0.008414419, -0.01189229, 0.008718311, -0.01161541, 0.028066073, -0.024041198, 0.023271339, 0.004673177, -0.020988777, 0.0064188647, 0.00025324296, -0.0060812077, -0.027660884, 0.016491182, -0.004416557, -0.008360394, 0.024973132, -0.03984356, 0.012810717, -0.00084625353, 0.008799349, -0.010122965, -0.019624641, -0.0015067956, -0.009873099, 0.0016629621, -0.010642958, 0.009292329, -0.032766264, -0.0017710124, -0.0061858813, 0.0056726425, 0.0026556745, -0.0042544818, 0.0019060754, 0.0038594226, 0.02636428, 0.00957596, 0.018233493, -0.004632658, 0.012513579, -0.014681338, -0.0068173003, -0.0031520308, 0.22053072, -0.0085359765, 0.013769664, 0.036656074, -0.016261574, -0.006071078, 0.0020968518, 0.005770563, 0.0037209832, -0.0038155273, -0.010609192, 0.016545206, -0.0057334206, 0.0009471287, 0.013506291, -0.017058445, -0.03168576, -0.006614706, -0.0028025554, 0.021177866, -0.01794986, -0.019057376, -0.017909342, 0.018490113, 0.008623767, 0.0091437595, -0.020894233, 0.02537832, 0.025675459, -0.003283717, -0.020151386, -0.017098965, 0.025108196, 0.0027789194, -0.0067936643, -0.006260166, 0.010116212, -0.014357188, -0.007502745, -0.0004845382, 0.016734295, 0.007570276, 0.023365883, -0.033603653, 0.01236501, -0.0061723753, -0.0025341178, -0.009609726, -0.013769664, -0.015181071, -0.021826167, -0.029578777, 0.0028920346, -0.006449254, 0.0021373706, -0.00047060984, -0.035008308, 0.039789535, -0.017315065, -0.0006871326, 0.0040755235, 0.0008614481, 0.008198319, 0.024878588, -0.039978623, 0.044813875, 0.008893893, 0.005446412, 0.010501142, -0.01809843, -0.012999806, -0.0032111208, -0.020678133, 0.0013784858, -0.027174657, -0.009974396, 0.026161686, 0.03463013, 0.023311859, 0.013661614, 0.0039505903, -0.027147645, 0.0054632947, 0.00948817, -0.00012292835, -0.011811252, 0.021029295, -0.014991983, -0.012506826, -0.0034913763, -0.0030608634, 0.00015817133, -0.0184631, -0.004774474, 0.0016899747, 0.0013827066, 0.015667297, -0.0048656412, -0.005264077, -0.018274013, -0.0009690764, 0.05472749, 0.0039742263, -0.0110278865, -0.008184812, -0.0055612153, 0.015154059, 0.015140552, -0.013479278, -0.027201671, -0.0053079724, -0.023865616, 0.011534372, -0.010001409, 0.0062871785, 0.013607589, 0.008704805, -0.006678861, 0.03354963, 0.0018486736, -0.002729959, -0.008279356, 0.0019212699, 0.011331778, 0.0019685419, -0.020921245, 0.006962493, 0.0038695524, -0.010528154, -0.02625623, 0.0043355194, 2.4783516e-05, 0.028120099, -0.006182505, -0.012337997, -0.0040451344, 0.035305444, -0.012952534, 0.017585192, 0.020799689, 0.011919302, -0.010615945, 0.032928336, -0.0030034615, 0.029443715, -0.006165622, 0.011460088, 0.004933173, -0.01103464, -0.022920176, -0.033441577, -0.0004444414, 0.004757591, -0.027741922, 0.039519407, 0.006567434, -0.026999077, -0.022731088, 0.010609192, 0.004686683, -0.0055544623, 0.021637078, 0.025675459, -0.0027907374, -0.029227614, -0.01090633, -0.17169197, 0.028714376, 0.001656209, -0.014681338, -0.0016967278, -0.016815333, -0.0060980907, -0.0032870937, -0.013242919, -0.0048892773, 0.012743186, -0.02483807, -0.019070882, -0.010946849, -0.0035791672, 0.00684769, -0.024513919, 0.036007773, 0.023244327, 0.014910946, 0.021529028, -0.010183743, 0.015073021, -0.011095419, 0.0050142105, -0.0067734052, -0.0041363016, 0.0034744935, -0.028201137, -0.020732157, -0.0067734052, -0.0031807316, 0.021542534, 0.014559782, 0.02629675, -0.0019904897, -0.0052370643, -0.0001980571, 0.00095641427, 0.026837, 0.039708495, 0.026877519, 0.006537045, 0.013621095, 0.0066113295, 0.01367512, 0.016194044, -0.027120633, 0.008752077, -0.005250571, 0.0015777036, -0.025864547, -0.012547345, -0.0010602438, 0.009670504, 0.00897493, 0.0004155295, -0.0051155076, 0.0005081742, -0.014964971, -0.0051087546, -0.013979011, 0.0029663192, -0.022244861, -0.01955711, -0.022244861, -0.0006255101, 0.02269057, -0.031820823, 0.028903464, -0.020597095, 0.011223728, -0.003643322, -0.01908439, 0.019435553, 0.013337462, -0.0059393914, -0.0008855062, -0.002270745, 0.019678667, -0.0045685032, -0.013614342, -0.015316134, -0.0002523988, -0.014100568, -0.012331244, 0.011433075, 0.018017393, -0.012405529, 0.002588143, 0.024446387, -0.014910946, 0.007050284, -0.010818539, 0.04173444, 0.0027806077, 0.028606325, 0.003324236, 0.001385239, -0.018246999, -0.00013063116, -0.004355779, 0.0019263348, 0.019016858, -0.009778555, -0.011169703, -0.001821661, 0.0007647937, 0.019165426, -0.008245591, -0.035791673, 0.008090269, 0.023433415, 0.02541884, -0.032874312, 0.009366613, -0.007414954, -0.019246465, -0.0067869113, -0.014249138, 0.04005966, 0.0052944664, 0.00042819165, 0.019611135, -0.01489744, -0.0038357866, -0.12695915, -0.029740853, 0.03754749, -0.010041928, 0.00564563, 0.012007093, -0.021691104, 0.011818005, -0.009535441, 0.046083465, -0.04257183, -0.03922227, -0.031604722, -0.009481416, 0.014762376, -0.015937423, -0.039357334, -0.015086527, -0.011264247, 0.032739248, -0.023352377, -0.016950395, 0.0076918327, 0.0026894403, -0.017207015, -0.016085993, -0.01955711, 0.027647378, 0.028309187, -0.010156731, 0.0059326384, 0.018409075, -0.018017393, -0.013175387, -0.016221056, 0.042004567, -0.002240356, -0.009920371, -0.00053434266, -0.016869357, -0.012716173, 0.0061554923, -0.0017228962, -0.03433299, -0.0134185, -0.011534372, -0.02651285, 0.016140018, -0.01056192, -0.01850362, -0.0453001, -0.026864013, -0.035089344, -0.004625905, 0.009859593, -0.0019026988, -0.029470727, 0.0026961933, 0.0122637125, -0.013776417, -0.011568138, -0.007995725, -0.011264247, 0.009697517, -0.0056490065, 0.0016773125, -0.01378317, -0.004234222, 0.021150852, -0.016302094, -0.007516251, -0.0029967083, -0.022839138, 0.025081184, -0.038763057, -0.0074352133, -0.009738036, 0.005470048, 0.019273477, 0.022636544, -0.009879852, -0.023001214, 0.004845382, -0.032712236, 0.00018697772, 0.011946315, 0.025027158, 0.007901181, -0.003920201, -0.023865616, 0.0135333035, 0.042950004, -0.012925521, 0.00082852656, -0.003531895, 0.0023230822, -0.011183209, 0.0002523988, 0.017450128, 0.010642958, -0.004727202, 0.010838799, -0.055699944, 0.02938969, 0.025891561, 0.002240356, -0.011318272, -0.017558178, -0.017288053, -0.019759703, -0.00027181412, 0.0141410865, -0.014559782, 0.014100568, 0.004615775, -0.0038425399, -0.03303639, -0.023730554, 0.015140552, -0.012979546, 0.019246465, 0.023622504, -0.016990915, 0.021799155, -0.010318806, 0.001798025, 0.027985036, 0.019948792, -0.026823495, 0.0043456494, -0.0074014477, -0.03411689, 0.0038526696, -0.0073946943, 0.0024564567, -0.007955206, -0.031010445, -0.008454938, 0.021434484, 0.026796483, 0.022150317, 0.03725035, 0.009407132, -0.02793101, 0.0049905744, -0.016396638, -0.0070367777, -0.0007740793, -0.0069759996, -0.0069422335, 0.0014257579, -0.0067767818, 0.03857397, 0.010615945, -0.028957488, -0.017706748, -0.00779313, -0.008725064, 0.00024670086, 0.017585192, -0.015518729, -0.008718311, 0.02101579, 0.024095224, 0.015775349, -0.027903998, -0.007955206, -0.013776417, -0.051512994, 0.0015760154, 0.0122974785, -0.044516735, -0.0019195817, -0.010487635, 0.01449225, -0.00299502, -0.011446582, 0.01260137, -0.009987903, 0.017706748, 0.0073946943, 0.03441403, 0.018881796, -0.01378317, -0.008319875, -0.0028599573, 0.019827235, 0.0032516397, 0.0003366021, 0.029200602, -0.022704076, -0.00015426717, -0.033603653, 0.020759169, -0.015316134, 0.014087061, -0.005800952, 0.015383665, -0.00886688, 0.023055239, 0.013269931, 0.02323082, 0.02782296, 0.006314191, 0.0075432635, -0.004919667, -0.0076243016, 0.016085993, -0.024797551, -0.04173444, -0.001509328, 0.0285523, -0.023879122, 0.023163289, 0.024135742, -0.00081248785, -0.036656074, 0.033954818, 0.008927658, -0.0010475817, -0.03795268, 0.030632269, 0.029065538, 0.008799349, 0.0045988923, -0.03881708, 0.013087596, 0.010838799, 0.019016858, -0.0110143805, 0.009535441, -0.00948817, 0.018138949, 0.013344216, 0.0070367777, -0.014681338, -0.001644391, 0.016666763, -0.0013345904, 0.02265005, 0.0025020405, 0.069584414, 0.012155662, 0.00092518097, -0.019097896, 0.0032516397, 0.015059515, -0.009420638, 0.02133994, 0.009380119, -0.0033985206, 0.01116295, 0.015302628, 0.008738571, -0.017639216, 0.00061115966, 0.017936355, -0.023068745, -0.0032938467, -0.03022708, -0.0035048826, 0.028228149, -0.0015760154, 0.014640819, -0.016140018, -0.012986299, -0.011500607, 0.023622504, 0.019881262, -0.0019533474, -0.048082396, -0.004939926, 0.014721857, -0.016801827, -0.026350774, 0.022366418, -0.01069023, 0.0023720425, -0.040599912, 0.009582713, 0.01412758, -0.02269057, 0.0021137346, -0.023473933, -0.049324974, -0.006270296, -0.015370159, -0.0036230625, -0.02057008, -0.005888743]" 4934739,The Gift,http://paulbuchheit.blogspot.com/2012/12/the-gift.html,669,1355782539,173,paul,"[0.020707754, -0.017061107, 0.020877063, -0.037612576, 0.004672269, 0.0062611657, -0.020629613, -0.0154591855, -0.01988726, 0.01717832, -0.0037801422, 0.029147143, 0.0018298362, -0.0008734049, -0.00050426315, 0.0077621522, 0.052173123, -0.005681609, 0.021814773, -0.011213445, -0.005307176, -0.019522594, 0.019053739, 0.013095376, -0.0048285536, 0.013010722, 0.0054015983, -0.019600736, 0.020460304, -0.014000527, 0.011031113, -0.014964283, -0.017412748, -0.0037410709, -0.029225284, -0.0116953235, 0.0071239886, -0.008497993, 0.015980136, -0.031204894, -0.0146647375, 0.0066681574, 0.004213182, -0.0067788595, -0.019183977, 0.004900184, -0.024054857, -0.036596723, -0.020056568, 0.002454976, 0.043473262, 0.025565611, -0.024419522, -0.021241728, -0.013206078, -0.022478985, -0.008537065, 0.025396304, 0.010946458, 0.0066746697, -0.007924949, -0.00862172, -0.015276853, 0.0065704794, -0.0116302045, -3.6947247e-06, -0.019092811, -0.007013287, 0.009963165, 0.045531012, 0.044931922, 0.015081497, -0.019457476, 0.02340367, 0.0017207623, -0.0041578305, -0.014508452, -0.0012746991, 0.008074722, 0.011252516, 0.007970532, -0.027948957, -0.003985266, 0.034955733, 0.009422679, -0.0130823525, -0.006694205, 0.0060039465, -0.026828915, 0.0036368808, 0.0017728574, 0.0056588175, -0.0028082451, 0.01894955, 0.013290732, 0.031543512, -0.0051411237, 0.0045355195, 0.002503815, -0.044775635, -0.008211471, 0.016019206, 0.0121902255, -0.010926923, -0.009546406, -0.020264948, 0.005043445, -0.004239229, 0.01189068, -0.013883312, -0.02065566, 0.038185623, 0.018233243, -0.023416694, 0.018975597, -0.033132408, 0.003942939, -0.007449582, -0.049985133, 0.009761297, 0.008569624, -0.007853318, 0.048213907, -0.01237907, 0.0041252715, 0.00799658, -0.026933106, -0.0017516938, 0.0010817848, -0.003884332, 0.0027414984, 0.00032294818, 0.0067723477, -0.0007622961, -0.010783661, 0.019952377, -0.0065574558, -0.019301191, 0.0033291948, -0.026151681, 0.015328948, 0.017673222, 0.007351904, -0.020460304, -0.0081658885, 0.014091693, 0.028938763, 0.0070914296, 0.0043727225, 0.00994363, 0.022648294, -0.019431427, 0.0028701078, -0.01046458, 0.015016379, 0.007202131, -0.0016995987, 0.015862921, -0.023286456, -0.012326975, 0.035138063, 0.0155894235, 0.022700388, 0.025213972, 0.0030882556, 0.035659015, 0.024315333, 0.011747418, -0.019626785, 0.00429458, -0.0082310075, 0.036310203, -0.011259028, 0.03852424, -0.010516674, 0.0262168, -0.012235809, 0.032038413, -0.016878774, -0.018337434, -0.025057686, 0.013277709, 0.006576991, 0.05006328, -0.026438203, -0.023872524, 0.009937118, 0.016774584, 0.020108663, 0.0013113284, 0.0004908324, 0.016175492, -0.0034936196, -0.017816484, -0.6609811, -0.0067593236, 0.03433059, -0.0046820366, 0.02458883, 0.02409393, 0.000664618, 0.008159377, -0.042301126, 0.027037295, 0.0062253503, 0.023533909, 0.03300217, -0.0030963954, -0.0077882, -0.005017398, -0.003734559, 0.006143952, -0.027349865, -0.0071239886, -0.0009784088, 0.029016905, -0.017686246, 0.012457212, 0.0031517465, 0.010484115, 0.021267775, -0.018402552, -0.016683418, 0.008178912, -0.02361205, 0.021879893, 0.0038973559, 0.02190594, 0.05657515, -0.024601854, 0.013225613, 0.004922976, 0.0022449682, 0.04576544, -0.004034105, 0.011675788, 0.015446162, 0.013186542, -0.021254752, -0.022492008, 0.023833454, 0.009689666, -0.0071891076, 0.010269223, 0.039514042, 0.006183023, -0.015980136, 0.0024305566, -0.006446754, -0.010191081, 0.02065566, -0.033861738, 0.0077295927, -0.013017233, 0.008302637, 0.004258765, 0.0059746434, -0.009018944, -0.029355522, 0.02329948, 0.0015254061, 0.0009898046, -0.007456094, 0.0070849173, 0.02854805, 0.020212853, -0.021254752, -0.011506479, 0.038967047, 0.0120274285, 0.026164705, -0.009552917, 0.011604157, 0.0054504373, 0.012997698, -0.015354996, -0.030788135, -0.0025835854, 0.024497665, -0.0009548033, -0.025552588, 0.0073388806, 0.005066237, 0.0041773664, 0.0111678615, 0.009435703, -0.017829508, -0.013199566, 0.00827659, 0.008074722, 0.0012535355, -0.008042162, 0.022817602, -0.022309676, -0.008537065, -0.029668093, 0.033184502, 0.007853318, 0.02781872, -0.00014631364, -0.023546932, -0.009044991, 0.03039742, -0.010861804, 0.0070523582, 0.0009775949, 0.0155894235, -0.030189041, -0.0069872392, -0.009891534, -0.0090580145, 0.017438795, 0.0025249787, -0.014065645, 0.01915793, 0.004857857, -0.0070002633, -0.0019535618, 0.018298361, 0.018454647, 0.006456522, -0.007931461, 0.0077621522, -0.013844241, -0.018402552, -0.015172663, 0.016904822, -0.013186542, 0.0067788595, -0.0050760047, 0.01505545, -0.008497993, 0.010503651, -0.019522594, -0.018519767, 0.0024728836, -4.769438e-05, 0.021567322, 0.0077556404, -0.021958034, -0.008895218, -0.021645464, -0.00450296, -0.009233835, 0.01248326, 0.0134926, 0.010965994, 0.004857857, 0.023025982, 0.0005164729, 0.0012022544, -0.025578637, -0.025969349, 0.007573308, -0.006082089, 0.0045387754, -0.009038479, -0.0064239623, 0.00017266638, -0.013687956, 0.011727883, 0.017230416, -0.0005575791, -0.033262644, 0.0019714695, -0.004844833, -0.005404854, 0.0070197987, -0.010217128, -0.0116953235, 0.0032608202, -0.014899164, -0.011903703, 0.0032510525, 0.009754785, -0.005313688, 0.0024175327, 0.0024452081, 0.04141551, -0.005671841, 0.002448464, 0.008250543, -0.022908768, 0.023533909, 0.021671513, -0.0022465962, -0.017269487, 0.017321581, 0.0095985, 0.010399461, -0.028704334, 0.004909952, -0.006909097, 0.013831218, 6.954477e-05, -0.004548543, -0.010972505, 0.0005978713, 0.00017276812, -0.021892916, 0.014964283, -0.01192975, 0.018793264, -0.0030980234, -0.011734394, -0.002145662, -0.00016747722, -0.022726435, 0.01599316, -0.004848089, -0.0034187331, -0.004962047, -0.00082537986, 0.01609735, -0.0016190143, -0.027975004, 0.010529698, 0.0074430704, -0.010321318, 0.012633033, 0.0027903374, 0.018246267, -0.013857265, -0.040634084, -0.011246004, 0.018337434, 0.014365192, 0.017386701, 0.0006703159, 0.02117661, 0.007312833, -0.02708939, 0.036153916, 0.0072737616, -0.006811419, -0.018610932, 0.023221338, 0.007768664, -0.020733804, 0.0056164903, 0.04318674, -0.021814773, -0.032585412, 0.0027691738, -0.0070523582, 0.0035587384, -0.009917582, 0.018584885, 0.0050401893, -0.033913832, -0.012502795, 0.0069351443, 0.018884432, 0.022231534, 0.026294941, -0.009149181, 0.016501086, -0.012952114, -0.0018314642, -0.013375387, -0.009338025, -0.019691903, 0.0036694403, 0.00624163, -0.0073909755, -0.029095046, 0.0095854765, -0.022192461, 0.007410511, 0.0020365883, 0.022973888, 0.0004810646, 0.01011945, -0.02044728, -0.014404262, -0.020733804, 0.010764126, 0.01703506, -0.022973888, -0.025630731, 0.0121251065, 0.0035261791, 0.03310636, -0.003421989, -0.0081658885, 0.018650003, -0.008680326, 0.0136098135, 0.004555055, -0.012580938, 0.028053148, -0.030136947, 0.009272907, -0.01126554, -0.0051476355, -0.015446162, 0.005789055, -0.01484707, 0.007983556, 0.036179963, -0.020681707, -0.038446095, -0.011845096, -0.027636388, 0.0007203759, -0.023664145, -0.015615471, 0.0040666643, 0.01707413, -0.0036140892, 0.001230744, 0.0077816877, 0.00862172, -0.017477866, -0.016370848, -0.01422193, -0.0233646, 0.0032966356, 0.104710914, 0.011988358, 0.007306321, 0.0015229642, 0.008458923, 0.005889989, -0.0034512924, -0.012073012, 0.047666907, -0.01495126, 0.018246267, 0.0150945205, 3.523025e-05, 0.0020740314, -0.0063751233, 0.0022742716, -0.0065346644, -0.022869697, -0.021502204, -0.016188515, 0.00931849, -0.006948168, 0.029928567, 0.027532198, 0.0037215352, -0.014261001, 0.0091556925, 0.015745709, 0.021150563, -0.0031354667, -0.0026389365, 0.03727396, 0.01717832, 0.028626192, -0.026307965, -0.005372295, 0.01680063, 0.007501677, 0.02527909, -0.008458923, 0.00093933765, 0.004870881, 0.017087154, 0.0016963428, 0.005681609, -0.0059518516, -0.017959746, 0.03977452, 0.003783398, -0.022648294, 0.01769927, -0.006870026, -0.022270605, -0.02017378, 0.018168125, 0.0072216666, 0.020473327, -0.010972505, 0.00090189435, 0.03935776, 0.00017958524, -0.023312503, -0.021267775, 0.0036564164, 0.002098451, -0.023755312, -0.0155243045, 0.0031419785, -0.017998816, -0.035033874, 0.021033349, -0.021931987, -0.015797803, 0.005697889, 0.001737042, -0.0037508386, 0.0044704005, -0.030709991, -0.012073012, -0.0011428336, -0.008413339, -0.0069807274, 0.0027187068, -0.012183714, 0.0069807274, 0.017686246, 0.009364073, -0.017556008, -0.013948431, 0.015654542, 0.020890087, -0.002397997, 0.013779122, -0.008921266, 0.004672269, -0.005277873, -0.009429191, 0.0061634877, 0.0040145693, -0.01773834, 0.01651411, -0.0048871604, -0.02257015, -0.024159048, -0.015602447, -0.0041057356, -0.00076311006, 0.0032917517, -0.014807998, -0.044697493, 0.033392884, -0.00900592, 0.025370255, -0.012268368, 0.00848497, 0.035763204, 0.001077715, 0.020251924, 0.009924094, -0.0106078405, 0.002091939, -0.02761034, 0.01630573, -0.0011566714, -0.015901994, -0.015888968, 0.014521476, -0.019340262, -0.0044899364, 0.0047308756, 0.025708873, 0.006430474, -0.0019014669, -0.0072932974, -0.022869697, -0.008244031, 7.1834096e-05, 0.0016108745, 0.0030784877, -0.020382162, -0.029459711, 0.004356443, -0.018871406, -0.031074656, 0.02823548, -0.03375755, -0.007970532, -0.012476748, 0.0010744589, 0.0151596395, 0.0009841068, -0.00035998446, -0.0057369596, 0.019131882, -0.007104453, -0.03321055, 0.007208643, 0.0024924192, 0.030892324, 0.03644044, -0.0047341315, 0.00685049, 0.02667263, 0.019730974, 0.022283629, 0.008556601, 0.004805762, 0.0013699352, -0.003120815, 0.025956325, 0.008524042, 0.0012576054, -0.019874236, -0.0036987436, 0.020277971, 0.035841346, -0.006407683, -0.011128791, -0.01217069, -0.04180622, -0.03407012, 0.010894363, -0.014886141, 0.019379333, -0.0033536144, -0.0081007695, 0.026933106, -0.011447872, -0.002554282, 0.0033438466, 0.026646582, -0.020434257, 0.0011070183, 0.012997698, 0.003838749, -0.025982372, -0.014834046, -0.006791883, 0.0025282346, -0.00827659, 0.00055961404, 0.006192791, 0.0011355078, -0.010881339, -0.009338025, 0.012118595, -0.035138063, -0.01967888, 0.042379268, 0.00016015136, -0.022700388, 0.0034968755, -0.012216273, -0.012502795, -0.017920673, 0.016396895, 0.0056653293, 0.028495954, -0.015211735, -0.03292403, -0.024732092, 0.0015424999, 0.020668684, 0.008953825, 0.018571861, 0.011011576, -0.007964021, -0.025656778, -0.0155894235, 0.020837992, 0.033392884, 0.012789318, 0.04701572, 0.007117477, 0.017842531, 0.00021244984, 0.019483523, -0.017998816, -0.04224903, 0.008602184, -0.00931849, -0.008361245, -0.0041741105, -0.0017647175, -0.0155894235, 0.009995725, 0.0017614616, 0.006993751, -0.008458923, -0.022583174, -0.013844241, -0.0070784055, -0.004411794, 0.014417286, 0.012997698, 0.0027773136, -0.010230152, -0.031100703, -0.014716832, 0.00973525, -0.00399829, 0.0018005328, -0.01686575, -0.0022596198, -0.012177202, -0.001077715, -0.0019649577, -0.013648885, -0.012860948, 0.02958995, 0.0019210024, -0.011389265, -0.021150563, 0.0064239623, -0.0072281784, -0.002603121, -0.01780346, -0.002858712, -0.0074430704, -0.0011981846, 0.025096757, 0.023559956, -0.0061244164, -0.017621128, -0.012886996, -0.010412484, -0.02402881, -0.011981846, -0.011317635, -0.023546932, -0.0059485957, -0.024119977, -0.012359534, -0.0047894823, 0.005404854, -0.00337315, -0.016735513, 0.024745116, -0.011330659, 0.01724344, 0.0043206275, -0.018910479, -0.018168125, 0.016878774, -0.014313096, -0.005678353, 0.014469381, 0.0064109387, -0.028287575, -0.040321514, 0.011343682, 0.018962573, 0.0020300762, 0.0057337037, -0.012222785, 0.018597908, -0.0070263105, -0.012216273, -0.0404778, 0.015719661, -0.024080906, -0.012841413, -0.0022726436, 0.007566796, -0.006492337, -0.0062188385, 0.0047829705, -0.0045713345, -0.015029402, -0.008094258, 0.0031305829, 0.011395778, 0.0053462475, 0.011402289, -0.034304544, -0.011408801, -0.029042952, 0.009904559, 0.008895218, -0.008413339, -0.00879754, 0.011897191, 0.014000527, -0.023377623, 0.013264685, -0.011382753, -0.004675525, -0.008003091, -0.01680063, -0.0063718674, -0.0036596723, 0.03521621, 0.015680589, 0.020069592, -0.04107689, 3.5535493e-05, -0.013349339, 0.0013642373, 0.0030573243, 0.032845885, 0.03198632, 0.019900283, -0.008296126, 0.03175189, -0.0035392027, 0.011994869, -0.031022562, -0.023846477, 0.021241728, -0.018298361, 0.013883312, 0.003640137, -0.010262711, -0.007599355, 0.0055643953, 0.005925804, -0.014807998, -0.00900592, -0.01484707, -0.011278563, 0.017204368, 0.013857265, 0.0066193184, 0.017204368, -0.003532691, -0.012086036, -0.010516674, 0.010699007, -0.01095297, -0.017451819, -0.0032022134, 0.03188213, -0.0058053345, -0.0024435802, 0.0051020524, -0.009709202, 0.013440506, -0.009891534, 0.030241137, 0.0039038677, 0.007566796, 0.010933435, 0.0125548905, -0.0005710098, -0.017660199, -0.008966848, -0.014078668, 0.0060072024, -0.021788726, -0.003591298, -0.0007464234, -0.0040503847, 0.013518647, -0.02402881, -0.012255345, -0.017295534, -0.018584885, -0.011884168, 0.02646425, 0.013544695, 0.0121902255, -0.003369894, 0.001071203, -0.040217325, -0.008107281, -0.036284156, 0.0020772873, -0.03248122, -0.023377623, -0.0033096592, 0.012392093, -0.02479721, -0.0048383214, 0.009741762, -0.009572453, 0.0039787544, 0.2169235, -0.010601329, 0.004870881, 0.014834046, -0.005261593, -0.020004474, 0.04123318, 0.0126200095, -0.012593961, 0.00041798083, -0.027662436, -0.00066746696, -0.008647767, 0.0062058144, 0.021124516, -0.014612642, -0.037117675, -0.003322683, -0.020186806, -0.020916134, -0.00082090293, -0.013199566, -0.012965138, -0.005987667, 0.020225877, 0.022830626, -0.026412155, 0.0052518253, 0.012326975, -0.0027252187, -0.006352332, 0.0053039202, -0.005678353, 0.027844768, -0.013622838, 0.0058020786, 0.017946722, -0.022309676, 0.016488062, -0.007937972, -0.009142669, 0.028912714, -0.010060843, -0.0121251065, -0.011708347, 0.028261527, -0.014508452, -0.01380517, 0.0041317833, 0.013466553, -0.03578925, -0.021476155, 0.025708873, -0.007156548, 0.0030817438, 0.012001381, 0.0009775949, -0.006720253, -0.025669802, 0.036466487, 0.004958791, -0.00097026903, -0.017204368, 0.012600474, 0.0011876028, 0.018962573, -0.017204368, 0.0065835034, -0.004509472, -0.02117661, 0.001839604, -0.0019372822, -0.01380517, -0.0025347464, -0.007723081, -0.012808854, 0.008602184, -0.00886917, 0.020160757, 0.009416168, 0.012463724, -0.006694205, 0.0061699995, -0.0066876933, -0.022049202, -0.03521621, 0.019652832, -0.0025331185, -0.015211735, -0.016019206, 0.0034545485, 0.008673814, 0.003425245, -0.02583911, 0.024497665, 0.010803197, -0.0035131553, 0.034226403, -0.007599355, -0.023078077, -0.014781951, -0.022713412, 0.010796685, 0.021215681, -0.009780833, -0.003591298, -0.020251924, 0.03334079, 0.02708939, -0.026190752, -0.008921266, -0.013043281, 0.014768927, -0.009572453, 0.0013617954, 0.026347037, -0.016084325, -0.025747944, 0.0055155563, -0.0075081894, -0.008576136, -0.014834046, 0.004196902, 0.010861804, 0.0031403506, -0.022283629, -0.040868513, -0.009865487, -0.005167171, -0.012704664, -0.0032575643, 0.011832072, -0.018623956, -0.0017272743, -0.010445043, -0.01071203, -0.0039168913, -0.005942084, -0.006817931, 0.0028196408, -0.0046429653, -0.012392093, -0.023833454, -0.016644347, 0.0005567651, -0.020733804, 0.023885548, 0.011975334, -0.0053950865, -0.024432546, -0.025904229, 0.0042685326, -0.031230941, -0.008048675, 0.01797277, -0.024640927, -0.02969414, -0.005919292, -0.017295534, 0.0070914296, -0.023729265, 0.017725317, 0.037117675, 0.012118595, -0.009227323, -0.000113245536, -0.16430756, 0.011903703, 0.01519871, -0.00052379875, 0.047484577, -0.0033894298, 0.0034154772, -0.010646912, 0.0032298889, 0.003724791, -0.013466553, -0.006655134, -0.023338553, 0.009754785, -0.0040015457, 0.010894363, -0.0017061107, 0.03571111, 0.0451403, -0.0057402155, 0.009832928, -0.008204959, 0.016488062, -0.01926212, -0.0031989575, 0.004900184, 0.006482569, -0.0027089391, 0.0056392816, -0.013349339, -0.018623956, 0.020798922, 0.012418142, -0.00064793136, 0.008537065, -0.013264685, -0.018623956, -0.026542393, -0.013245149, 0.020512398, 0.025943302, 0.020290995, -0.008921266, 0.00521601, -0.01338841, 0.025565611, 0.0015302901, 0.010386437, -0.00490344, -0.011096231, 0.022960862, -0.03610182, -0.028626192, 0.011669276, 0.0058053345, -0.02409393, 0.013870289, 0.0086282315, 0.010028284, 0.002409393, -0.02406788, -0.022036178, -0.00031216288, 0.007977044, -0.0050760047, -0.02740196, -0.008217983, 0.013466553, -0.02107242, 0.014182859, -0.003425245, -0.0059518516, 0.01613642, 0.0017842532, 0.007280274, -0.0033471026, 0.0075342366, -0.019223047, -0.0061634877, 0.0071239886, -0.013544695, 0.00980688, -0.030736038, -0.028730383, -0.010041308, 0.003529435, 0.02844386, 0.009357561, -0.027844768, -0.03292403, 0.0065086167, -0.019600736, 0.005118332, -0.01265908, -0.0035164112, 0.019066764, 0.00033841387, 0.0018493718, 0.0049392553, -0.0013202822, 0.008393804, 0.006352332, -0.022518056, -0.0017777412, 0.03287193, 0.0007016543, 0.000870149, 0.002507071, 0.02236177, -0.0047829705, -0.008393804, 0.014443333, -0.010021772, 0.017334605, -0.005844406, 0.046234295, 0.0070979414, -0.016787607, 0.026112609, -0.0060560415, 0.039566137, -0.016891798, -0.0045843585, 0.01011945, 0.014964283, -0.01251582, -0.13013326, -0.018441623, 0.009754785, 0.02646425, 0.011037624, -0.0026959153, -0.0027561502, 0.006765836, -0.009168717, 0.018650003, -0.00983944, -0.019978425, -0.027063344, 0.016462015, 0.024367427, -0.021984082, 0.009611524, -0.013095376, -0.026750773, 0.031803988, 0.018480694, -0.0041057356, -0.002044728, -0.022739459, 0.011024601, -0.01790765, -0.0027821977, 0.0044150497, 0.01776439, 0.00827659, 0.007957509, 0.004288068, 0.0004855415, -0.016826678, -0.0065802475, 0.018962573, -0.011539038, -0.013544695, 0.012450701, -0.019249097, -0.008771492, 0.02107242, -0.0120274285, -0.023586003, 0.013427481, -0.010497139, -0.049568374, 0.02382043, -0.009246859, -0.017165296, -0.014495429, 0.017959746, -0.010412484, -0.00041167246, 0.034226403, -0.013792146, 0.02833967, 0.0111353025, 0.009689666, 0.010497139, -0.023182267, -0.010979017, -0.02180175, 0.018506743, 0.011701835, -0.012300927, -0.022869697, -0.005219266, 0.010138986, 0.005108564, -0.005066237, -0.0032461686, -0.021476155, 0.012958626, -0.02833967, -0.01940538, 0.01624061, 0.014143787, 3.4689713e-06, -0.015901994, 0.00024907914, -0.009969677, -0.0055904426, -0.01505545, 0.018715123, -0.0010825988, 0.012053477, 0.023664145, 0.0077556404, 0.01380517, 0.0027789418, 0.04099875, -0.015706636, -0.008439387, -0.00419039, 0.0036368808, 0.00848497, -0.0150945205, 0.019444453, -0.003968986, -0.014938236, 0.004597382, -0.019626785, 0.012307439, -0.010523186, -0.009487798, 0.0022872952, -0.012730711, -0.011324147, 0.012164178, -0.00011100708, 0.01967888, -0.00068415364, 0.030579753, 0.01801184, -0.010790173, -0.016644347, -0.011734394, -0.010601329, 0.0046364535, 0.0080356505, 0.017634152, -0.0051053083, 0.015016379, 0.0013707492, -0.005730448, 0.009793856, 0.008875682, -0.0091556925, 0.017308557, -0.0012372558, -0.023208315, 0.016748536, -0.006596527, 0.0050467015, 0.023911597, 0.004193646, -0.012255345, -0.013557719, 0.009963165, 0.00039478228, 0.037456293, -0.004548543, -0.024732092, -0.0023377624, -0.012528843, 0.007664474, 0.017712293, -0.0077556404, 0.023012958, 0.016501086, 0.02406788, 0.021476155, 0.0078012235, -0.010933435, -0.011356706, -0.008048675, 0.013727028, 0.0011916728, -0.0041024797, -0.02315622, -0.0028554562, 0.026581464, 0.011884168, -0.017790437, 0.012756758, 0.032350983, -0.030892324, -0.011187397, -8.2415885e-05, -0.0068765376, -0.023898574, -0.0003373964, -0.006453266, 0.032090507, 0.026516346, 0.014925213, -0.018545814, -0.009474775, 0.009865487, -0.007618891, 0.03446083, 0.009455239, 0.018376505, -0.038941, 0.002450092, 0.04389002, 0.018715123, -0.0003886774, 0.032324936, 0.029928567, 0.016904822, 0.0120274285, -0.004659245, -0.0150945205, 0.007449582, 0.021358943, 0.021554299, -0.013896336, -0.0027545223, 0.0039754985, 0.0043792343, -0.00297267, 0.0031484903, 0.0035392027, -0.011037624, -0.041024797, -0.0061244164, -0.013753075, -0.029095046, -0.013199566, 0.011350194, 0.015185687, 0.0071370127, -0.009396632, 0.017647175, -0.023716241, 0.016162468, 0.0057597514, -0.015732685, -0.008224495, 0.05490811, 0.0044866805, 0.0020772873, 0.008452411, -0.02288272, 0.022908768, 0.0015123824, 0.018480694, -0.015941065, 0.026959153, -0.026828915, 0.018689075, -0.022270605, -0.05212103, -0.00876498, 0.029876472, -0.031856082, 0.032429125, 0.020056568, 0.0013495856, 0.038185623, -0.017321581, -0.016956916, 0.0052453135, 0.0037085116, 0.01655318, 0.029876472, -0.0040731765, -0.00890173, -0.0056457934, 0.015368019, -0.029329475, 0.027896862, -0.04141551, -0.03779491, 0.026490297, 0.007944484, 0.007039334, 0.008686838, -0.0027903374, 0.014339143, 0.0030491843, 0.025200948, 0.0134926, -0.013857265, -0.0037019996, 0.013056304, 0.007931461, 0.011949287, -0.046651054, 0.008257055, 0.0028847596, -0.038967047, -0.022244558, 0.023143195, 0.009331513, -0.019249097, -0.013648885, 0.012815366, 0.017751364, -0.010028284, 0.010614352, -0.023677168, -0.0031045354, -0.0064858254, -0.022583174, -0.001997517, -0.0075081894, -0.023794383]" 9897054,"Estimate the cost of a Web, iOS or Android app",http://estimatemyapp.com,190,1437053960,153,dynjo,"[0.0018805531, 0.0005814978, 0.009183396, -0.019411728, -0.024877558, 0.013664571, -0.032098345, -0.028588425, 0.0013338028, -0.018554343, 0.0004797671, 0.016652022, -0.020979134, -0.004430938, -0.016303709, -0.008935558, 0.015821429, -0.002466656, -0.015218581, 0.0013212435, -0.008781496, -0.00057186896, 0.004374002, -0.009585295, -0.019277763, 0.0038716283, 0.013718157, -0.014213833, -0.0052615297, 0.0039151674, 0.024649814, -0.014803285, -0.012633029, 0.0021803027, -0.02861522, -0.000108115055, 0.005519415, -0.014682715, 0.02155519, 0.0017365392, 0.0038582317, 0.0019425125, 0.008332709, -0.01614295, 0.007723162, -0.011641678, -0.014133453, 0.009143205, -0.0023159438, 0.007977698, -0.018701706, 0.022064263, -0.010650327, -0.0041831, 0.005626588, 0.009866624, -0.01537934, 0.011856025, -0.008459977, -0.003072854, -0.0021384384, 0.0042567817, -0.013497113, -0.035929784, -0.0049567563, -0.005566303, -0.0041964967, 0.008493468, 0.004722315, 0.0026441615, 0.019384935, 0.021072911, 0.018701706, 0.0030644808, 0.018755293, 0.007153805, -0.0027479853, 0.0171343, 0.024877558, 0.008439882, -0.015017631, -0.008794893, -0.011722058, 0.011146002, 0.013503811, 0.030785475, 0.018862467, 0.020470062, -0.016116155, 0.0171343, -0.0013815283, -0.000784122, 0.008614038, 0.025252663, -0.0013622707, 0.024623021, -0.007823637, 0.025627768, 6.786627e-07, -0.027168382, -0.0012123957, 0.02474359, -0.03351839, -0.0008732933, -0.025560785, -0.009980495, 0.03483126, -0.024475658, 0.013999486, -0.00021497418, -0.00597825, 0.019518903, 0.013544001, -0.019827025, 0.011722058, -0.007790145, 0.010777595, -0.016504658, 0.0053017195, 0.009344155, 0.014682715, -0.0018906005, 0.052273683, -0.01705392, 0.012110561, 0.022760889, -0.01562048, -0.005800744, 0.008004491, -0.01717449, 0.012458873, 0.01896964, 0.013825331, 0.025547389, -0.028508047, 0.023122597, -0.0100407805, 0.040297087, -0.014642525, 0.008493468, 0.011333556, 0.020188734, 0.0012291415, -0.011949801, 0.011802438, 0.016986936, 0.0155401, -0.013162197, 0.017589785, -0.0137717435, 0.009571898, -0.0036874246, 0.004531413, -0.007883921, -0.00860734, -0.002299198, 0.013255973, 0.0035166175, -0.014039677, 0.0031950981, 0.0052347365, 0.02108631, 0.027128192, 0.0017248171, 0.019827025, 0.020697806, 0.013570794, -0.02383262, 0.008547055, -0.0015640575, -0.015714256, 0.006082074, -0.021528397, 0.006648082, -6.002322e-05, -0.0014820031, 0.007120313, 0.0031532338, -0.007435134, -0.008533658, 0.0067552547, 0.0018906005, 0.0008460814, 0.0129009625, -0.016719004, -0.008761401, 0.0122847175, 0.0016603458, -0.015473117, -0.0042936224, 0.018273015, 0.012572745, 0.0086609265, 0.010770897, -0.65204114, -0.0056165406, 0.0058509815, -0.0306783, -0.0005316791, 0.018634723, 0.02343072, -0.0028283652, -0.016585037, -0.0134033365, -0.016906558, 0.013671269, 0.012043578, -0.013162197, -0.014977441, -0.029419018, 0.010275221, -0.027650662, -0.008185346, 0.0047022197, -0.019197382, 0.002721192, -0.008861876, -0.004996946, -0.018540947, -0.019344745, -0.012110561, -0.017763942, -0.012807186, 0.02020213, -0.01558029, 0.017482612, 0.02837408, 0.013590889, 0.045762915, -0.010496266, -0.01537934, 0.043324728, 0.01255265, 0.028802771, -0.030463954, -0.0065677017, 0.010054177, 0.0024967985, -0.004973502, -0.005291672, 0.021381034, -0.0033793019, -0.019250968, -0.012921058, 0.009967099, 0.0071337097, -0.016290313, 0.016544849, 0.009518311, -0.029633364, 0.03271459, -0.009337457, -0.0023896254, 0.0097862445, -0.001860458, 0.017643372, -0.027623868, -0.03550109, -0.033170074, 0.010616835, 0.008433184, -0.009558502, 0.008446581, -0.025400026, -0.004685474, 0.014508559, -0.010248428, 0.01374495, -0.011313461, 0.029258257, 0.042226203, -0.030222815, -0.017295059, -0.010194842, 0.04399456, -0.0013505486, 0.018273015, -0.017509406, 0.01183593, -0.003657282, -0.0235111, -0.033384424, 0.010811087, 0.020979134, 0.00023151065, 0.0054658283, -0.01733525, -0.025493803, -0.03769814, 0.014964045, -0.013590889, 0.0034898242, 0.02454264, -0.044450045, -0.0012961248, 0.00510077, -0.012867471, 0.02968695, 0.025467008, 0.017964892, -0.0057839984, 0.019063415, 0.025842115, -0.024917746, -0.0015757795, -0.026739689, -0.0094044395, -0.0072140894, 0.010235031, -0.027168382, -0.00064471323, -0.00868772, 0.010020685, 0.0027027717, 0.02044327, 0.0072676763, 0.019894008, -0.017362043, -0.0024783781, 0.019867213, 0.0022405877, 0.0026709547, -0.0049902475, -0.01828641, -0.011320159, -0.0062863724, 0.008828385, -0.0058074426, 0.006259579, 0.014254023, -0.002801572, -0.0011722058, 0.0015900135, -0.024569435, -3.0665742e-05, 0.012760297, 0.0068222377, -0.015955396, -0.013557398, -0.019103605, -3.5270838e-05, -0.0110321315, 0.009719261, 0.00872791, -0.031428512, -0.02048346, -0.01721468, 0.0007527236, 0.017362043, 0.009357552, -0.01159479, -0.022935044, -0.014414783, -0.022452766, 0.004451033, 0.030035263, 0.007977698, -0.010670423, -0.023953188, -0.011460824, -0.020336097, 0.011989991, 0.0013111959, -0.029820917, 0.00016944653, 0.008245631, 0.0025704799, 0.011427333, -0.009103016, -0.001984377, -0.014870268, -0.015044425, 0.0145219555, -0.024288105, 0.011447427, 0.0058074426, -0.009310664, -0.0030611318, 0.04171713, 0.0035969974, 0.014709509, 0.022586731, -0.030946234, 0.024569435, 0.0030929488, 0.009873322, 0.0004079695, 0.025533993, -0.014655922, 0.008326011, 0.003215193, 0.01705392, -0.0062830234, -0.0037510586, 0.010690517, 0.0064739254, 0.0107575, 0.006557654, 0.011802438, -0.0076159886, 0.028802771, -0.005573001, 0.0040625306, 0.01590181, 0.0119565, -0.022801079, -0.005224689, -0.0049232645, 0.013999486, -0.0026357886, -0.008922161, 0.01996099, -0.009692468, 0.010221635, 0.05921314, 0.012833979, 0.031857204, -0.0045481585, -0.0122847175, -0.003995547, 0.0036036957, 0.034241807, 0.0072341845, -0.003948659, -0.012298114, -0.009498216, 0.0104091875, -0.0131421015, 0.029231464, 0.0043338123, 0.007897318, -0.02797218, 0.006366752, 0.0029305145, 0.008111664, 0.01562048, 0.012519158, -0.0061189146, 0.02984771, 0.0006568539, 0.03957367, 0.019036623, -0.0104091875, 0.023109201, -0.016169742, -0.0037041705, -0.011266572, -7.253024e-05, 0.0081652505, -0.011065623, 0.020563839, 0.009015937, -0.00048772135, 0.046245195, 0.0041864496, -9.618368e-05, 0.026391378, -0.0029757281, 0.0029874502, -0.005097421, -0.0054926216, -0.022546541, 0.007515514, -0.008982446, 0.0070399335, -0.002989125, 0.014093263, 0.008701117, -0.009705864, -0.001669556, -0.00924368, -0.007622687, 0.0023125946, 0.026485153, -0.018822277, -0.014240626, 0.016852971, -0.007790145, 0.009933607, -0.0139459, -0.012378493, 0.0070064417, -0.003087925, 0.018540947, 0.0075088157, -0.005760554, 0.008238932, 0.011748851, -0.008473374, 0.015781239, 0.025453612, -0.0044242395, 0.001406647, -0.0049031693, 0.0021468112, 0.0035132684, 0.008506865, -0.037644554, 0.026324393, 0.022345591, -0.018192634, -0.04327114, 0.012639728, -0.018393584, -0.011105813, -0.016785987, 0.00041424917, -0.011701963, 0.0083662, -0.011574695, -0.010790992, 0.0033407866, 0.030463954, 0.019492108, 0.02048346, -0.023042217, -0.019894008, 0.01418704, 0.04179751, 0.014508559, 0.0049868985, 0.014977441, 0.005358655, -0.009491518, -0.019947594, -0.0006024301, 0.02387281, -0.008761401, -0.015138201, -0.0020228922, 0.029981676, -0.02657893, -0.0031967727, -0.0045414604, -0.0017298409, -0.00043497208, -0.01980023, -0.0014878641, -0.019987784, 0.014816682, 0.031106994, 0.009571898, 0.036733583, 0.026686102, 0.025252663, 0.021595381, -0.003483126, -0.008814988, 0.0060954704, 0.011139304, -0.012659823, 0.0035668549, 0.001100199, 0.02649855, 2.0130935e-06, 0.024917746, 0.014240626, 0.021648968, 0.011809137, 0.011467522, -0.0007049981, 0.0064538303, 0.0278918, -0.0119029125, -0.001677929, 0.02805256, -0.0033374375, -0.006674875, 0.008814988, 0.012659823, -0.0028719043, 0.012211036, -0.018500756, 0.014696112, 0.0053687026, -0.017402234, -0.0014259047, -0.06998403, -0.022345591, 0.014629128, 0.013852124, 0.0043572565, -0.0031264403, 0.0042232904, -0.016223328, -0.007997793, -0.027570281, -0.008841781, 0.0006476437, -0.014321006, 0.007408341, 0.0025051713, 0.01183593, 0.019157192, 0.0034261902, 0.014964045, 0.0023511099, 0.01163498, 0.0020614078, -0.012103862, 0.003324041, -0.014990838, -0.025989478, 0.008225536, -0.03485805, 0.009103016, 0.0031850508, -0.005599795, -0.024422072, 0.008520261, 0.023926396, -0.022372385, 0.0069528553, -0.0009277172, -0.012720108, -0.0068188887, -0.0065208133, -0.0016896509, -0.005482574, -0.021595381, -0.010168049, -0.025467008, 0.004451033, 0.0071471063, -0.00052623666, 0.0015715931, -0.013852124, -0.02645836, 0.0025034968, -0.009491518, 0.00446443, -0.0051711025, 0.003885025, 0.01107902, 0.01071731, 0.008205441, 0.0040993714, 0.0141468495, -0.0010030733, -0.026846863, 0.027704248, 0.02183652, -0.016678814, 0.026029667, -0.004625189, -0.014361196, -0.004219941, -0.0042969715, 0.00018263386, -0.0008615713, -0.008681022, 0.006115565, -0.017603183, -0.011996689, -0.00840639, 0.0274899, 0.0029271655, -0.02383262, -0.016022379, 0.01103883, -0.013664571, -0.0052983705, 0.023296753, -0.024823971, 0.0077566532, 0.0016787662, -0.017295059, 0.022961838, -0.007515514, 0.028963532, -0.027838213, -0.023765637, -0.018098857, -0.007595894, -0.0029589825, -0.013798537, 0.017911306, 0.03753738, 6.227344e-05, 0.00924368, 0.03239307, 0.0049634543, -0.006587797, 0.01139384, 0.017938098, -0.014454972, 0.007468626, -0.008620736, 0.025051713, 0.014602335, 0.0079174135, -0.011400539, 0.018795483, 0.023685256, 0.002753009, 0.004491223, -0.023310151, -0.025614372, -0.0100407805, 0.016625227, -0.0017767291, 0.013021532, -0.010724009, -0.004280226, 0.009886719, -0.018232824, 0.021206878, -0.010971847, 0.027088001, -0.023685256, 0.0330629, 0.0015724304, 0.0063767997, -0.026444964, -0.0037108688, -0.036251303, -0.01251246, 0.0123985885, 0.013972693, 0.005629937, 0.0025872258, 0.0008590594, -0.002235564, 0.0052615297, -0.022894854, -0.033411216, 0.0025369884, -0.0047390605, -0.0087881945, -0.01971985, -0.009766149, 0.00033931172, -0.0015146574, 0.025453612, -0.001655322, 0.008493468, -0.011789042, -0.026726292, 0.011460824, -0.025547389, 0.04378021, 0.02363167, 0.038662698, 0.012807186, 0.017027127, -0.031187374, -0.0199208, 0.010536456, 0.019599281, 0.018808879, 0.031991173, -0.005248133, -0.012706711, 0.026967432, 0.0032972475, -0.031642858, -0.017804133, 0.026284203, 0.015098011, 0.0069193635, -0.014843475, -0.010938355, 0.0042534326, 0.027369332, -0.0033441358, -0.016759194, 0.022975234, -0.012947851, 0.0017717053, 0.018661518, -0.01298804, 0.020175338, 0.014749698, -0.031776827, -0.006242833, -0.024221122, -0.0009025985, 0.005358655, 0.019773439, 0.014669319, -0.014923855, 0.024314897, 0.016585037, 0.00768967, 0.01586162, -0.003180027, 0.01725487, 0.027181778, -0.03394708, -0.022613525, -0.021327447, -0.012840678, 0.01570086, -0.0043170666, -0.011842628, -0.019639472, -0.020175338, -0.025132094, 0.02657893, -0.023162788, -0.039466497, -0.01996099, 0.01721468, -0.01844717, 0.00092855445, -0.012157449, 0.009638881, -0.015071218, -0.02682007, -0.005331862, 0.009377646, 0.00709352, 0.0015330778, -0.01888926, 0.009417837, 0.014213833, -0.015446324, 0.008446581, 0.020510253, 0.004615142, -0.03793928, 0.027355935, -0.01298804, -0.022492955, -0.0025537342, -0.031267755, -0.023913, -0.03116058, 0.01239189, 0.0018353394, -0.03477767, 0.00541894, -0.023926396, 0.016785987, 0.012659823, -0.018715104, -0.06157095, 0.010462774, 0.008868574, -0.024113948, 0.023551289, 0.0041931476, 0.023444116, -0.011239779, 0.024623021, -0.0037644552, -0.024180932, -0.025533993, -0.017107507, 0.010737405, -0.011259874, -0.010737405, -0.026002875, -0.008587245, 0.0013262671, 0.016799385, 0.0053285128, 0.00015918973, 0.0013028231, 0.008071475, 0.0023176183, 0.009699166, -0.0125258565, -0.0046285386, -0.039332528, -0.022238418, -0.033223663, -0.002578853, -0.00597825, 0.034295395, 0.04391418, -0.028990325, -0.028427666, 0.0004638586, -0.051737815, -0.016893161, -0.013021532, 0.023645066, 0.006008392, 0.005184499, 0.004363955, 0.033143282, -0.004280226, 0.0114072375, -0.018634723, -0.008399692, -0.009069524, -0.0039721034, -0.0014518606, -0.018554343, -0.015004234, -0.034081046, 0.02322977, -0.002168581, 0.018661518, 0.039761223, -0.014937252, -0.011434031, 0.023899602, 0.033170074, 0.018313205, 0.026083253, -0.0040826253, -0.029419018, -0.021421224, 0.0038146926, -0.00292884, -0.008955653, 0.005057231, 0.010971847, -0.017120903, -0.027047813, -0.001981028, -0.0073614526, -0.004561555, 0.0026240665, 0.019652868, 0.0028719043, -0.009303965, 0.0067887465, -0.020068163, -0.018098857, 0.00070164894, 0.0038783266, -0.02653874, 0.005161055, 0.007187296, -0.038877044, -0.0013304537, -0.0052045938, -0.0057471576, -0.014280817, -0.022278609, 0.0061423588, -0.009297267, -0.01255265, -0.0049567563, 0.013677968, 0.0028065958, 0.012713409, 0.007033235, 0.0027647312, -0.0053452584, 0.0037443603, 0.016129551, -0.018420378, 0.011923008, 0.005519415, -0.0032202168, -0.012190941, -0.0015096336, 0.0057839984, -0.014012883, 0.014441576, 0.25614372, 0.0021803027, 0.020550443, 0.048710175, 0.010576646, 0.01937154, 0.022693904, 0.0139459, 0.0066614784, 0.009277171, -0.007991094, -0.0056198896, -0.01318899, 0.002813294, -0.009451328, -0.032366276, -0.030196022, -0.021541795, -0.012833979, 0.030356782, 0.022238418, 0.010643629, 0.011226383, -0.01725487, 0.03132134, 0.027784627, -0.03590299, 0.013021532, 0.029070705, 0.023202976, 0.0018487361, -0.018621327, 0.019880611, 0.021568587, -0.015647274, 0.0012785416, 0.029499397, -0.010978545, 0.007187296, 0.01570086, -0.017000334, 0.0020061466, 0.02207766, -0.01590181, 0.0033223662, -0.001796824, -0.012090466, -0.00010173072, 0.026043065, -0.006072026, -0.023779033, -0.0020614078, 0.01139384, 0.015526704, -0.001227467, 0.015205184, -0.0033675798, -0.0041261646, -0.0007125337, 0.01374495, -0.010174747, 0.022640318, -0.020349493, 0.021247068, -0.036706787, -0.011293366, -0.020791583, -0.003278827, -0.0017884512, 0.00880829, -0.012311511, -0.013785141, -0.010770897, 0.009116412, -0.021595381, -0.022332195, 0.015044425, 0.027784627, 0.019398332, 0.034134634, 0.010610137, -0.009183396, -0.0011278294, -0.01840698, 0.026163634, -0.01828641, 0.019317953, -0.015031028, -0.02383262, -0.016357295, -0.009652277, -0.023484306, -0.0023444116, -0.025199076, -0.0247034, 0.03654603, 0.009424535, 0.023336943, -0.020054767, 0.0020748044, -0.017750544, 0.043137174, 0.008861876, 0.012813884, -0.022680508, 0.006272976, -0.00872791, 0.02486416, 0.026351187, -0.0044577313, -0.0025219172, -0.0036505838, 0.01745582, -0.016236726, -0.00025474545, -0.009839831, -0.003962056, -0.021046119, -0.008399692, 0.022479558, 0.0026073207, -0.005917965, -0.0034529835, 0.005599795, 0.0048395353, -0.022868061, -0.02068441, 0.007622687, 0.019465314, -0.03694793, 0.025560785, -0.011943103, 0.0033257154, -0.0043304632, -0.0068925703, 0.01537934, -0.002821667, -0.02274749, -0.00018483173, 0.00014401386, 0.004015642, 0.0071404083, 0.033223663, 0.011320159, 0.0027747788, -0.005877775, 0.0032821763, 0.013343051, -0.012686616, -0.014441576, -0.0095317075, -0.0042232904, 0.0049634543, -0.018031875, 0.02363167, -0.00012151169, -0.0058509815, -0.01545972, 0.019076813, -0.01167517, -0.01761658, 0.0028551584, 0.0069461567, 0.00585768, -0.007515514, -0.007468626, -0.17201284, 0.021970486, 0.020657616, -0.0112799695, 0.00817195, 0.0010558226, 0.0042266394, 0.030142436, -0.019358141, -0.0014686064, 0.006236135, -0.021983882, -0.033732735, -0.01785772, -7.6716686e-05, -0.006179199, -0.020537047, 0.01247227, 0.02454264, 0.01709411, 0.011789042, -0.010268523, 0.011172796, 0.0029623315, -0.00633661, 0.0069796485, 0.00852696, 0.0167324, 0.016692212, -0.0104158865, -0.015821429, 0.0011027107, 0.008419787, 0.002562107, -0.017938098, -0.03614413, -0.0045816503, 0.010027383, -0.0007343032, 0.025413422, 0.0026910496, 0.018701706, 0.0024967985, 0.0171343, 0.04506629, 0.014160247, 0.034402568, -0.022251816, -0.02060403, -0.028508047, -0.0031783523, -0.045253843, -0.045039497, -0.027757835, -3.5297002e-05, 0.02088536, 0.01083788, -0.0019073463, 0.023618273, -0.01937154, -0.014763095, -0.03172324, -0.00013323376, -0.014830078, -0.02661912, -0.01406647, -0.031508893, 0.02239918, -0.003255383, 0.0062629282, -0.005830887, -0.024810573, 0.002394649, 0.0019023226, 0.011286668, -0.0034261902, -0.025199076, 0.0012149076, -0.002960657, 0.004933312, -0.005961504, 0.037671346, -0.0037510586, -0.0007460253, -0.0025135442, 0.006865777, -0.006594495, 0.0016829526, -0.028668806, -0.014387989, 0.009458027, -0.0016109457, -0.02805256, -0.002406371, 0.0010884769, 0.013811934, 0.027128192, -0.024408674, 0.014213833, -0.0036036957, 0.024515847, 0.006085423, -0.0071672015, 0.030812267, 0.027302349, -0.014012883, 0.017201284, 0.0042936224, 0.01398609, -0.005231387, -0.021327447, 0.012197639, -0.005917965, 0.0050270883, -0.019117003, 0.049192455, -0.013463621, 0.0013823656, 0.011581394, 0.010054177, 0.027074605, 0.0028065958, -0.013483716, 0.021568587, 0.00944463, 0.007662877, -0.09672373, -0.021046119, 0.00597825, 0.013369844, -0.014120056, 0.00072676764, -0.01721468, 0.0039988966, -0.015526704, 0.014575542, -0.029901296, -0.010389092, -0.01848736, 0.011554601, -0.0015514982, 0.002151835, -0.0028936737, 0.004722315, -0.0076561784, -0.00173319, -0.0033893494, -0.039948776, -0.024408674, 0.007542307, -0.015687464, 0.012204337, -0.024609623, 0.015888413, 0.015044425, 0.01430761, 0.0155133065, 0.002195374, 0.014294213, -0.001828641, 0.0038548827, -0.006658129, -0.042306583, -0.011681869, 0.021648968, -0.017281663, -0.019853817, -0.003183376, 0.0065677017, -0.031374928, -0.008386295, -0.006447132, -0.015674066, 0.007924112, -0.0083662, -0.017978288, -0.007200693, -0.0009645579, -0.016652022, -0.05846293, 0.002279103, -0.017589785, -0.007971, -0.005800744, 0.011547902, 0.0066949697, -0.0102819195, -0.035929784, -0.005877775, -0.00017834274, 0.025038317, 0.015888413, -0.020175338, 0.01103883, 0.0020614078, -0.025949288, -0.015419531, 0.012740203, 0.0055495575, 0.031267755, -0.031616066, -0.011936405, -0.02645836, -0.0042936224, 0.007662877, 0.010328808, 0.0005320977, -0.021327447, 0.0021015976, -0.017080713, 0.00086575776, -0.0012802163, 0.014508559, -0.017027127, -0.0012751925, -0.03793928, 0.022506353, 0.01586162, 0.03571544, 0.0019240922, -0.013316258, -0.00920349, -0.0024398628, 0.010724009, -0.001741563, 0.01063693, -0.0059983446, -0.00024825646, -0.056640986, 0.019197382, 0.0014300911, -0.008098268, -0.010007288, 0.0019793534, -0.013088515, -0.016544849, -0.0070868214, 0.02084517, -0.022278609, 0.002821667, -0.016611831, -0.0065375594, -0.01917059, 0.011052227, -0.0032419865, -0.00968577, 0.019907404, 0.016558245, -0.036251303, -0.019250968, -0.022318799, 0.0067920955, -0.018031875, 0.01677259, -0.0066011935, 0.012787091, -0.017844321, -0.025239266, 0.030142436, -0.025761735, 0.015406134, 0.0053352113, -0.0060921214, -0.037617758, -0.0066949697, 0.034697294, 0.027235365, -0.013892313, -0.0033742783, -0.017027127, 0.00697295, -0.0041094185, -0.026565533, -0.0031750032, -0.01398609, -0.009230284, 0.032446656, 0.011809137, 0.04115447, 0.012800488, -0.017040523, -0.027315745, -0.022452766, -0.049353216, -0.01179574, 0.001981028, 0.017000334, -0.008419787, 0.030249609, 0.01430761, 0.010375696, -0.02968695, -0.024020173, -0.0019676313, -0.016692212, 0.011346952, 0.025239266, -0.012445477, -0.006547607, -0.011333556, 0.0062528807, 0.0024616322, 0.026391378, -0.0031549083, 0.0013899012, -0.006782048, -0.01909021, 0.03893063, 0.039144978, -0.009806339, -0.00064429455, 0.018795483, 0.028320493, 0.0095384065, 0.0021267163, -0.0015288913, -0.017670166, -0.0008892018, -0.00852696, 0.0036338381, -0.035045605, 0.0042299884, 0.008439882, -0.0030326638, -0.013443526, -0.007160503, 0.008426486, 0.026846863, -0.0076963687, 0.0073346593, 0.017817529, -0.012612935, 0.0063567045, -0.014213833, -0.018782087, -0.022345591, -0.005790697, 0.016678814, -0.0071404083, 0.006785397, -0.010616835, 0.0015724304, -0.02147481, 0.00034161427, -0.020590633, -0.016049173, -0.02805256, 0.012599538, -0.01247227, 0.024569435, 0.034884844, -0.013530605, 0.0322859, 0.0011722058, -0.029472604, -0.029070705, 0.0030929488, -0.008640831, -0.019626075, 0.0054658283, 0.017147698, 0.000334288, 0.023243167, -0.006239484, -0.011581394, 0.0013078467, -0.02183652, 0.08825705, -0.001805197, 0.0014451623, -0.006108867, 0.000109894296, 0.037832107, 0.013798537, -0.0042333375, 0.008794893, -0.0021300653, 0.042494137, 0.016785987, -0.0005831724, -0.018500756, 0.0057639037, -0.022653716, 0.004159656, 0.018902656, -0.01402628, -0.018031875, 0.006805492, 0.011467522, 0.021769537, 0.0020295908, -0.027597073, -0.0076092905, 0.009839831, -0.01693335, 0.010938355, -0.04769203, 0.029392224, 0.012612935, -0.016692212, -0.018339997, 0.001536427, 0.030356782, -0.01848736, -0.00793081, 0.0067284615, -0.0040993714, -0.001533915, 0.003717567, -0.009833132, 0.004993597, -0.042735275, 0.0018252919, -0.015017631, 0.00029137687, -0.007415039]" 31355619,Transfusion of brain fluid from young mice improves memory in old mice,https://www.statnews.com/2022/05/11/transfusion-of-young-cerebrospinal-fluid-is-memory-elevating-elixir/,177,1652369446,151,gmays,"[0.0003732236, 0.0055578044, 0.023078626, -0.03516743, -0.0054916004, -0.0012843526, -0.0009872633, -0.01680251, -0.039960578, -0.014061675, 0.020271586, 0.031407055, -0.0084807, 8.466838e-05, -0.0077723195, 0.0016790924, 0.040913913, 0.010864034, 0.00042577283, -0.018947512, -0.027117053, 0.016683344, 0.0154254725, -0.017279178, -0.0011875296, -0.0011784267, 0.0063886615, -0.027275942, 0.011976257, -0.032333907, 0.0040913913, 0.00046466754, -0.019768437, -0.004988452, -0.009837876, -0.014988528, 0.012479406, -0.018987233, 0.015279824, -0.014101397, 0.03585595, 0.012181489, -0.021436771, 0.008705792, 0.007970931, -0.0044753733, -0.02103955, -0.021291124, 0.0044257203, 0.010897136, 0.02318455, 0.015782973, -0.0061470177, 0.0019182535, -0.004084771, -0.044647805, -0.00011823575, 0.01184385, 0.027726129, -0.018841585, 0.02566057, 0.0030503375, -0.007533986, 0.02086742, 0.013472462, 0.0082556065, 0.010294682, -0.0013009036, -0.0021267952, 0.00548167, 0.022548996, 0.016577417, -0.008414496, -0.003217502, 0.025342792, 0.013492323, -0.016511213, 0.016511213, 0.016656863, -0.0033317034, 0.030903907, -0.037762616, -0.0067925043, 0.041152246, 0.017808808, 0.022601958, 0.00042453152, 0.01943742, -0.009261903, 0.018378159, 0.0070242174, 0.010658802, 0.0152930645, 0.01378362, 0.021317605, 0.0048957667, 0.011459868, 0.013061998, -0.0059781983, -0.013995471, -0.020549642, 0.001017055, -0.019291772, -0.017358622, -0.026229924, -0.012082183, 0.026891962, 0.00036887897, 0.017927974, -0.01611399, 0.0036809281, 0.047295954, -0.011082507, -0.017239455, 0.011724683, 0.025898905, 0.006256254, -0.012750841, -0.013015656, 0.009698848, 0.014154361, 0.023475848, 0.020549642, -0.008871302, 0.006262874, 0.028149832, -0.00936783, -0.009208941, -0.014723713, -0.0026084275, -0.015478435, -0.011929914, 0.0176764, 0.013677694, -0.03432002, 0.014776676, -0.008010653, 0.0046077804, -0.016749548, -0.013445981, 0.021436771, 0.022681402, -0.017226214, 0.00022343763, -0.018576771, 0.025197145, 0.019927327, 0.008632968, 0.0028037285, -0.006203291, 0.009235422, -0.021516217, 0.017649919, 0.0029559971, 0.0052598873, 0.013002415, -0.004968591, 0.03604132, -0.0100894505, -0.012770702, -0.00075886043, -0.015253343, 0.02158242, -0.0039887754, -0.0071102823, 0.026229924, -0.014180842, 8.549593e-05, 0.027050849, -0.0029245503, -0.0048891464, 0.027990943, -0.020946864, 0.020020012, -0.007884866, 0.013651212, 0.01573001, 0.019040197, -0.025700293, -0.02653446, -0.0067792633, 0.009314867, 0.0110560255, 0.015240102, -0.018126585, -0.010619081, 0.037603725, -0.031407055, 0.01591538, 0.003939123, -0.015187139, 0.0036345855, -0.027461313, -0.024958812, -0.6580123, -0.012770702, 0.016365565, -0.01521362, 0.0030801292, 0.015067972, -0.018709177, -0.013028896, -0.023634737, 0.024919089, -0.009606163, 0.0244027, -0.023727423, -0.017596954, -0.044091694, -0.011016303, -0.011473109, -0.009784914, 0.028149832, 0.006292666, -0.009864358, 0.019516863, -0.015769731, 0.031354092, 0.01539899, 0.014339731, 0.0063059065, -0.021198438, -0.025342792, 0.022032605, -0.0016319223, 0.0036147244, -0.0051374105, 0.016683344, 0.05550522, 0.008149681, -0.011459868, 0.016603898, 0.007090421, 0.037895024, 0.00689181, -0.013863064, 0.0035054882, 0.003449215, -0.01996705, 0.008632968, -0.004720327, 0.002707733, 0.005286369, -0.019503623, 0.009639265, 0.013664452, -0.025779737, -0.010341025, -0.00936783, -0.0011436697, 0.015107694, -0.027699646, 0.019040197, -0.003853058, -0.003803405, 0.018709177, -0.012750841, 0.0018073622, -0.022403346, 0.026852239, -0.031512983, -0.022482792, 0.024455663, 0.0053260913, 0.011598896, 0.019212326, -0.008189403, -0.0058259293, 0.0018967373, -0.017040843, 0.01592862, 0.0029079996, 0.0028268998, -0.007467782, -0.0073684766, -0.016246399, -0.018497325, -0.015531398, 0.015438713, 0.013849823, -0.013207647, -0.0010393988, -0.003945743, 0.005501531, 0.0069381525, 0.012300655, -0.0026630457, -0.034399465, -0.018510567, 0.0013795205, -0.00459123, 0.0066369255, 0.018351678, 0.0005925235, -0.0027689715, -0.0023982306, -0.005432017, -0.0031943307, 0.019106401, 0.016008066, -0.031592425, 0.017980937, 0.053651515, -0.03815984, -0.003376391, 0.0069050505, -0.0015317891, -0.018537048, 0.0050083133, -0.00424366, 0.026150478, 0.01926529, 0.0019596308, -0.0183914, 0.016630381, -0.005071207, -0.0017941215, 0.012227831, 0.024005478, -0.0006881052, -0.00972533, -0.0058292397, -0.03622669, -0.023647977, -0.012300655, 0.014167601, 0.009136117, -0.010274821, 0.013902786, 0.021277884, 0.010288062, -0.023965755, -0.0010476742, -0.029950574, -0.016484732, -0.011718063, 0.008341672, -0.01326723, -0.011267877, -0.018232511, -0.02228418, -0.007898106, -0.03585595, -0.0024677445, 0.009043432, -0.013386397, -0.017451307, 0.021648625, 0.0126581555, -0.013121582, -0.004299933, -0.013730656, -0.010870655, -0.018338436, -0.02159566, 0.03111576, -0.0014639302, 0.015769731, -0.019900845, -0.02703761, 0.012141767, 0.013479082, -0.009884219, -0.028838351, 0.007699495, 0.007090421, 0.0017196422, 0.030003536, -0.0006703129, 0.01859001, -0.015332787, -0.0060377815, -0.009526718, -0.008897783, -0.01131422, 0.005177133, 0.0016418529, -0.0153592685, 0.028970757, 0.016603898, 0.008580005, 0.01768964, -0.0060113, 0.03765669, 0.017994178, 0.007620051, -0.012260933, -0.010698525, 0.00019323218, -0.035802986, -0.005057966, -0.009076533, 0.021185199, 0.024852885, 0.009520099, -0.020284828, 0.00903019, -0.016471492, 0.024667514, -0.04176132, -0.0076796343, -0.0144588975, 0.02121168, 0.0019182535, -0.008778617, -0.0040913913, 0.0051705125, -0.01060584, -0.0034525252, 0.032598723, -0.006918291, -0.00953996, -0.012168248, -0.011069266, -0.011711442, -0.0041112527, -0.0003887401, 0.007725977, 0.018258993, 0.022866772, 0.04030484, 0.021608902, 0.002775592, -0.01539899, 0.009705469, 0.016166953, 0.0051009986, 0.029050203, -0.0038994006, 0.01698788, -0.00019043921, -0.0152930645, -0.002424712, 0.026057793, 0.012591952, 0.020761494, 0.008156301, -0.018457605, -0.0057200035, -0.012234452, 0.024177607, 0.011380424, 0.0020754873, 0.013518805, -0.019940568, -0.0247602, -0.022217976, -0.007931208, -0.02159566, 0.0008093408, -0.0027921428, -0.024137884, 0.0075075044, 0.03198965, 0.020006772, -0.011638618, -9.0926704e-05, -0.020536402, 0.008070236, -0.003235708, 0.014604546, 0.007209588, -0.00460116, -0.013194406, -0.04033132, -0.0024693997, -0.023806866, -0.013757138, 0.019927327, 0.03204261, 0.025250107, 0.0057398644, 0.02650798, -0.010334404, -0.019980289, -0.018881308, -0.0013298678, 0.016140472, -0.015822696, -0.012519128, 0.00477329, -0.0013414534, -0.0019381146, -0.007408199, -0.007692875, 0.009347969, -0.0062198415, 0.011532692, -0.0073486157, -0.016471492, 0.016246399, -0.013929267, 0.0069050505, -0.0012553885, -0.027024368, 0.004528336, -0.024164366, -0.007984172, 0.006613754, 0.020920383, 0.004505165, 0.01237348, -0.0072956528, -0.013637971, 0.0039887754, -0.018669456, 0.001645163, 0.010877275, 0.006282735, 0.015001768, -0.007533986, 0.017610196, 0.023422884, 0.009235422, -0.019199086, -0.024773441, -0.022151772, -0.014816398, 0.068851896, 0.038106874, -0.0029990296, -0.0027093883, 0.017385103, -0.02281381, -0.0135585265, -0.0041278033, 0.029977055, -0.0150282495, -0.0041940073, -0.018166307, 0.013664452, -0.0017179871, 0.008037134, 0.017623436, -0.006944773, -0.009103015, -0.008361533, -0.010771349, 0.014366212, -0.011340701, -0.005501531, 0.03042724, 0.02809687, 0.00078947964, -0.004342966, 0.02756724, 0.0030668885, -0.005815999, -0.004846114, 0.01716001, 0.013929267, 0.0059285453, -0.005746485, -0.0046475027, -0.0043826876, -0.0011618757, 0.025250107, 0.012956073, 0.016776029, 0.025236867, 0.010936858, 0.0023220964, 0.003147988, -0.0030486824, 0.011267877, 0.0010104346, -0.0150282495, -0.01855029, 0.043085396, -0.006487967, -0.0022376867, -0.009844497, 0.012744221, -0.005319471, 0.015067972, -0.002424712, -0.019543346, 0.0017659849, -0.0031810899, -0.023793625, 0.008613107, -0.00016519903, 0.0014473794, -0.015054732, 0.01539899, 0.017173251, -0.009400931, 0.0053426423, 0.023634737, -0.019424178, -0.049626328, 0.0064647957, -0.0029460667, 0.031724833, 0.008215885, -0.025170663, -0.01395575, -0.011771026, 0.014220565, -0.020642327, 0.009831256, -0.020099457, 0.016418528, 0.008328431, 0.017649919, -0.029738722, -0.015067972, -0.0051043085, 0.016127232, 0.008990468, 0.02281381, 0.02528983, -0.011552554, 0.0016650242, 0.038610023, 0.018801862, 0.010678664, -0.014789917, 0.0040748403, -0.014419176, -0.012889869, -0.018841585, -0.027090572, 0.0017279177, 0.004829563, -0.002600152, 0.0011444972, -0.0072757914, 0.013929267, -0.016008066, 0.02844113, -0.0123801, -0.0022343763, -0.008189403, 0.013995471, 0.022496032, 0.019953808, -0.020020012, 0.00033060493, -0.027143534, 0.020576123, 0.005759726, -0.0037007893, 0.009129496, 0.02597835, 0.002689527, -0.037418354, 0.0047997716, -0.010314544, 0.039828174, -0.002581946, -0.021820754, -0.042767618, -0.030400759, 0.017133528, 0.0064151427, -0.0049586603, 0.013134823, -0.014909083, -0.008778617, -0.0004212213, -0.016352324, 0.044303544, -0.036359098, -0.003962294, -0.00795769, 0.0074214395, 0.008679311, -0.016484732, -0.011870331, -0.033499096, -0.0059153046, 0.010698525, -0.012227831, 0.028705943, -0.0128236655, 0.037921503, -0.009884219, 0.040463727, -0.011996118, -0.023078626, 0.017888252, 0.0074876435, 0.01325399, -0.0011213259, 0.021953162, -0.0071698655, 0.031698354, 0.011651859, 0.007706116, 0.0058292397, -0.016206676, 0.020642327, 0.032837056, 0.0038629884, -0.03786854, -0.021185199, -0.029844647, -0.022919737, 0.0065541705, 0.0025869112, 0.0004464615, -0.016339084, -0.0022294112, 0.008540283, 0.0006082469, 0.02460131, -0.009626024, 0.032519277, -0.026931683, -0.0024164366, -0.0052036145, -0.010367506, -0.005676971, 0.0026547702, -0.0010509845, -0.0117908865, 0.013704175, -0.004515095, -0.021714829, 0.020284828, 0.02052316, -0.0023436125, -0.008275468, -0.0054618088, -0.0067461617, -0.009142737, -0.013982231, -0.013002415, -0.026415294, -0.012929591, -0.022959458, -0.018695937, 0.005210235, -0.012181489, 0.041337617, -0.01698788, -0.0143926935, 0.023144828, -0.017067324, 0.027143534, -0.015782973, 0.020006772, 0.028864833, -0.00150448, -0.0092552835, -0.018523807, 0.02653446, -0.0024462284, 0.027540758, 0.045918915, -0.027885016, -0.015081213, 0.009175839, 0.019516863, 0.003306877, -0.029182611, 0.01361149, 0.021728069, -0.0073684766, -0.024680756, -0.01697464, -0.028202794, 0.018537048, -0.011949776, -0.014088157, 0.01574325, -0.0070308377, -0.008685932, 0.03519391, 0.0017130219, 0.011737924, -0.008162921, 0.0031976409, -0.019940568, -0.00777894, -0.017888252, 0.013585009, -0.0034988679, 0.031963166, -0.011195053, 0.008699172, 0.0012073908, 0.00092602486, -0.0136247305, 0.004283382, -0.00036432748, 0.025395757, -0.0022078948, -0.0052962997, 0.010658802, 0.0032406733, -0.020549642, -0.039775208, -0.0036544467, 0.0007853419, 0.007553847, -0.015809454, 0.023608254, 0.017848529, -0.030030018, 0.0035419003, -0.019556586, 0.0010964995, -0.037603725, -0.0075935693, 0.0042900024, -0.028414646, 0.002952687, 0.0072029675, 0.021291124, 0.0037405116, -0.010592599, -0.009400931, 0.013823342, 0.017649919, -0.024137884, 0.03254576, 0.0015475125, 0.02490585, -0.038610023, -0.0045184055, -0.0065111383, 0.0016964709, 0.0023403023, -0.015597602, -0.026229924, 0.011102368, 0.006769333, 0.039960578, 0.017371863, -0.006838847, 0.021158716, 0.012810425, -0.020946864, 0.011612137, -0.020761494, -0.0050281743, -0.025792979, -0.007931208, -0.0060973647, -0.027646683, -0.010201997, -0.00038439548, 0.0034227336, 0.00848732, -0.021608902, 0.0020539712, -0.0058391704, 0.00795107, -0.012532368, -0.013234128, 0.00015371681, -0.011294358, -0.023740662, 0.01964927, 0.00019178397, -0.018656215, -0.033075392, 0.015703527, 0.023647977, 0.004333035, -0.002532293, 0.014750194, 0.016140472, -0.028361684, -0.01907992, 0.010711766, -0.002454504, 0.020390753, -0.0016501283, -0.015888898, 0.0018288784, 0.0035551412, -0.023012422, -0.01432649, 0.012168248, 0.010725006, 0.02671983, 0.02706409, -0.0047501186, -0.0021830685, -0.0040649096, 0.030586129, -0.0004870113, -0.0058292397, 0.016564177, 0.005981508, 0.005054656, 0.01644501, -0.009520099, -0.011347322, 0.025713535, -0.011122229, -0.0064250734, 0.025567885, -0.0058590313, -0.007414819, 0.008315191, 0.026375571, 0.0009831256, -0.008520422, -0.003730581, -0.018868066, -0.00078989344, -0.013181166, -0.0064250734, 0.0046243314, -0.020192143, 0.0059517166, 0.015584362, -0.016021306, -0.018537048, -0.024164366, 0.026097516, -0.0153592685, 0.026984647, 0.010976581, -0.008043755, 0.011718063, 0.01698788, -0.006626995, -0.019596308, 0.013201026, -0.002335337, 0.00028695186, -0.010804451, 0.011287739, -0.0032158468, 0.008712413, 0.015610843, -0.024667514, 0.006530999, -0.012082183, -0.013863064, -0.013810101, 0.025792979, 0.004650813, -0.027381869, 0.002866622, -0.01751751, -0.016895195, -0.032969464, -0.006064263, -0.029818166, -0.022138532, -0.01730566, 0.027540758, -0.0062099113, -0.030030018, -0.00867269, 0.023740662, 0.011221535, 0.003730581, 0.19342086, -0.001962941, -0.0041675256, 0.015067972, -0.016855473, 0.013876305, 0.016153714, -0.0036378957, 0.004654123, 0.0011403594, 0.00033557022, 0.013863064, -0.04719003, -0.00025860837, -0.0065508606, -0.017782325, -0.025395757, -0.011598896, 0.0019132881, -0.0473754, -0.014975287, -0.022138532, 0.01768964, -0.005147341, 0.0058292397, 0.0073353746, 0.01395575, -0.010691904, 0.011625377, 0.013379777, -0.01555788, 0.010691904, -0.008864681, 0.006051022, -0.026958164, 0.00030577855, 0.004505165, -0.010632321, 0.0100894505, -0.0056339386, -0.00029584797, 0.0056008366, 0.0024677445, 0.026494738, -0.018642975, 0.03871595, -0.0038464374, -0.016603898, 0.0012802149, 0.019410938, -0.049785215, -0.0057531055, 0.0118570905, 0.022496032, 0.002087073, 0.011963016, 0.01042047, 0.037762616, 0.0038994006, 0.010327784, -0.033472613, 0.006600513, -0.024005478, 0.035829466, -0.011108988, 0.027620202, -0.002810349, -0.019847883, 0.011539313, -0.00070548366, -0.0052135447, 0.0030685435, -0.034002244, -0.009586303, 0.0051175496, -0.008738894, 0.027461313, 0.01396899, 0.0027011128, 0.019794919, -0.022112051, -0.004813012, -0.02474696, 0.0011784267, -0.0024793302, -0.04080799, 0.0061139157, 0.011797507, -0.02458807, -0.0187489, 0.016670102, -0.016577417, -0.008560144, -0.007898106, 0.016709825, 0.0022244458, 0.021860477, 0.021489736, -0.011737924, 0.00954658, -0.03310187, 0.025753256, 0.019543346, 0.010771349, -0.0054353275, -0.00920232, -0.0013687625, 0.023449367, -0.007481023, -0.013664452, -0.010499914, -0.011989498, 0.010585979, -0.010513155, -0.009076533, 0.03487613, 0.0017097117, -0.020178901, 0.047799103, 0.00035481068, -0.0026647006, -0.013068619, 0.007441301, 0.015173898, -0.0014887567, -0.015081213, -0.020218624, 0.0049586603, -0.011042785, -0.05820633, -9.196114e-05, -0.033340205, -0.012068942, -0.009533339, -0.0014573099, -0.004842804, -0.005054656, 0.018695937, -0.012870008, 0.016776029, 7.116902e-05, -0.026640387, 0.016656863, 0.009129496, 0.0106257005, -0.01218811, -0.0036709977, 0.023211032, 0.0052135447, -0.0236877, -0.016153714, -0.0067263003, 0.0016310947, -0.006315837, 0.010725006, -0.054392997, -0.017623436, -0.032757614, 0.0038729191, 0.0065872725, -0.048593547, 0.020483438, 0.009586303, -0.0092221815, 0.0141940825, -0.0047865305, -0.16704528, 0.0036511365, 0.004435651, -0.017186493, 0.013823342, -0.0076531526, -0.01042047, -0.0082887085, 0.0084211165, 0.029871128, 0.00848732, -0.015187139, -0.019159364, -0.0036114142, -0.002279064, -0.014829638, -0.0039325026, 0.025183905, 0.021013068, 0.019053437, 0.02650798, -0.046713363, 0.031089278, -0.010552877, 0.012260933, 0.0026266335, -0.0059682676, -0.0074876435, 0.004505165, -0.032519277, 0.0009036811, -0.018338436, 0.03837169, 0.0034425948, 0.010758108, -0.018722419, -0.0051738224, -0.017424826, -0.004462132, 0.027434831, 0.011916674, 0.025183905, 0.005226786, 0.012121906, -0.019172605, 0.006951393, 0.006504518, -0.039086692, 0.0049454197, -0.012889869, 0.02812335, -0.020364271, -0.01591538, 0.029818166, 0.004988452, 0.0016062683, 0.008222505, -0.0017924664, -0.0022227906, 0.0013588319, -0.02421733, -0.013108341, 0.014710472, -0.0009251973, 0.010506534, -0.020960106, 0.007176486, -0.010678664, -0.015835935, 0.008169542, -0.014816398, -0.010149034, -0.0036743078, -0.011989498, 0.008831579, 0.023316959, -0.0012338723, -0.019675752, 0.0001424415, 0.025581127, -0.015067972, 0.0032721201, -0.040649097, -0.013810101, -0.041443545, -0.012459544, 0.00052507845, -0.0006057643, -0.00035543134, -0.014736953, -0.0037934745, -0.023105107, -0.0082556065, 0.018894548, 0.00954658, 0.02650798, 0.0034260438, -0.006633615, 0.012618434, -0.00035625888, 0.0009599543, -0.0067925043, -0.021953162, -0.02052316, 0.01892103, -0.0015019975, -0.024548348, 0.010393987, 0.021992885, -0.008235746, -5.8186884e-05, 0.0130951, 0.010506534, 0.03516743, -0.00884482, 0.014816398, -0.004203938, -0.0052466467, 0.026176961, -0.016497973, 0.069275595, -0.018894548, -0.0032506038, 0.0003891539, -0.01361149, 0.0066369255, -0.14257638, -0.028494092, -0.017424826, 0.008566764, -0.0044753733, -0.017927974, -0.00075058494, 0.030930389, -0.00014357937, 0.020046493, -0.009473756, -0.024310015, 0.003058613, -0.009440654, 0.016299361, -0.0076531526, 0.004544887, 0.0025687052, -0.03604132, 0.023634737, 0.014617787, 0.009685608, 0.017120289, -0.003058613, -0.018325197, 0.003273775, -0.024151126, 0.015690288, 0.011598896, 0.008301949, 0.027779091, -0.012327137, 0.008500561, -0.02828224, -0.005964957, 0.001362142, 0.0068189856, -0.017822048, 0.016471492, -0.011797507, -0.0018520497, 0.014247046, 0.03479669, -0.015332787, 0.016590659, 0.0026613905, -0.035299838, 0.0058093783, 0.006223152, -0.032598723, -0.033657983, -0.0008147198, -0.021675106, 0.0015599257, 0.020205382, -0.0045548175, 0.017398344, -0.00021495527, -0.019331492, -0.01395575, 0.008282089, -0.002192999, -0.01964927, -0.00021743792, 0.025581127, -0.01856353, -0.020218624, -0.048567068, 0.009109635, -0.02262844, -0.010314544, 0.0014266907, -0.015610843, -0.0034525252, -0.025898905, 0.02033779, 0.013108341, -0.019583067, -0.0049288687, 0.00760681, -0.013512184, -0.007123523, 0.007851764, -0.019159364, 0.009573061, 0.023489088, 0.00778556, 0.0041774563, 0.007474403, -0.015253343, 0.00075099873, 0.025157422, -0.023052143, 0.0058491006, -0.006597203, 0.016948158, 0.009553201, -0.009420793, 0.029076684, 0.029791685, 0.012512508, -0.012631674, -0.033366688, 0.0013025587, 0.0058424803, 0.0053327116, 0.006865328, 0.00406822, -0.008447598, -0.005743175, -0.015187139, 0.00813644, -0.017464548, 0.009837876, 0.003076819, 0.0005623181, -0.03413465, -0.012155008, 0.035299838, -0.012234452, 0.011764405, 0.010519775, 0.015610843, 0.01396899, 0.0023121657, 0.035087984, -0.021979643, 0.008758755, 0.0032026062, 0.01716001, 0.006590583, 0.008586626, 0.00092602486, -0.03410817, 0.024958812, 0.0019050128, 0.009645886, 0.01432649, -0.0029775135, -0.0012462855, 0.013134823, 0.021238161, -0.022019366, -0.03095687, 0.01113547, -0.022363625, -0.01539899, 0.0076862546, -0.04417114, 0.012598572, 0.0073088934, -0.005905374, 0.018444363, 0.013167924, 0.013114962, -0.022707883, -0.024826404, 0.032148536, -0.0033134974, 0.007567088, -0.010539636, -0.013114962, 0.017742604, 0.026031312, 0.0022012745, -0.001566546, 0.0057200035, -0.02262844, -0.021092514, 0.011433386, 0.013128202, -0.024270292, -0.018669456, 0.016908437, 0.029288536, 0.00039908444, 0.013128202, -0.01273098, -0.02105279, -0.006524379, -0.019252049, 0.027832054, 0.01627288, 0.0025025015, -0.018722419, 0.008963987, 0.035829466, 0.014697231, -1.9330975e-05, 0.040702064, -0.01539899, 0.001909978, 0.01361149, 0.0049983826, 0.010738247, 0.0043595163, 0.026574183, 0.015001768, -0.03130113, -0.0021698277, 0.007176486, 0.0021698277, -0.031433538, -0.01007621, 0.0015342718, -0.01840464, -0.008209264, -0.01414112, -0.028494092, -0.017795566, 0.0052069244, 0.012174869, 0.017054085, -0.010460191, -0.00057142106, 0.009526718, -0.033631504, -0.0061602583, 0.00029977883, -0.007289032, -0.0063754204, 0.0075141247, 0.01733214, -0.0050149336, 0.015173898, 0.022363625, 0.018629733, 0.0050447253, 0.036173727, -0.0014928944, 0.018841585, 0.0047004656, 0.00067610573, -0.0054618088, -0.013916027, -0.015160657, 0.020099457, -0.031698354, 0.018669456, 0.0013075239, 0.006507828, 0.07054671, 0.008546904, -0.026852239, 0.01113547, -0.0012918005, -0.014233805, -0.004207248, 0.015306305, -0.0008316845, 0.0010029867, 0.038821876, -0.031963166, 0.04811688, -0.015438713, -0.029579833, 0.009162598, -0.022006124, 0.009460515, 0.011115609, -0.005607457, 0.013386397, -0.023581773, 0.027832054, -0.0031959857, -0.0028533814, 0.0048858365, 0.04099336, -0.022363625, 0.0022045847, -0.007567088, 0.0064780363, 0.007845144, -0.040569656, -0.014975287, 0.024799922, 0.0058292397, -0.009751812, -0.030135944, -0.024667514, 0.01645825, 0.008679311, 0.020801216, -0.010513155, -0.0019364596, -0.0022426518, -0.018444363, -0.015001768, -0.033446133, -0.017279178]" 29121353,How credit cards make money,https://bam.kalzumeus.com/archive/how-credit-cards-make-money/,615,1636129027,430,grn,"[-0.012278047, 0.0018039077, 0.025730575, -0.019115685, 0.00032441653, -0.00635502, 0.005275038, -0.0005248038, -0.018953687, -0.053162124, 0.012521043, 0.02307112, -0.0074923765, -0.008410362, 0.01757671, 0.013945269, 0.038690362, 0.0065338924, 0.009463344, -0.024394097, -0.04352328, 0.016888222, -0.029483514, 0.0020890904, -0.019075185, 0.015889239, 0.017455213, 0.008147116, 0.0076678735, 0.008423861, 6.132907e-05, -0.000939922, -0.017819706, -0.0031370106, -0.006803888, 0.00454605, 0.0035943156, 0.0009939211, -0.01516025, 0.007802871, 0.029807508, 0.011454561, -0.019291181, -0.00024194132, -0.008633108, 0.028052537, 0.0043536783, -0.012595292, -0.01576774, 0.022598626, 0.022504129, 0.020735657, -0.0057104058, -0.021667141, -0.02370561, -0.011906804, -0.012473794, 0.03885236, 0.012649291, -0.021370146, 2.7553257e-05, 0.015578743, -0.0148902545, -0.008066117, -0.015862238, -0.013985769, 0.022706626, 0.006547392, -0.019250682, -0.0032011347, 0.010671574, 0.029294517, 0.011103567, -0.0041005574, 0.007013134, -0.016537227, -0.028727526, -0.024002604, -0.018994186, 0.0042794296, -0.0018528444, -0.011427562, -0.0005948339, 0.014822755, 0.018008703, -0.02307112, 0.001713628, 0.010469077, -0.0035875659, 0.02056016, 0.01453926, 0.004350303, -0.0067431387, 0.023962105, 0.01877819, 0.030509496, -0.005811654, 0.031913474, 0.012993536, 0.011825805, 0.010597325, 0.026527062, -0.031373482, -0.014188265, -0.038960356, 0.0032450089, -0.0066418904, -0.04598024, 0.024556095, -0.010401579, 0.0013702274, 0.040904325, -0.00908535, -0.0076206243, 0.026540563, -0.0070063844, 0.007991868, 0.0039115604, -0.0049375435, -0.0031791974, 0.013614525, 0.007755622, 0.011265564, -4.2529573e-05, 0.029780509, 0.017981702, 0.0132500315, -0.0107998215, 0.01575424, -0.00847111, -0.0017752207, 0.007647624, -0.032426465, 0.005275038, 0.004249055, 0.0049476684, -0.012581793, 0.0149442535, -0.019304682, -0.022828123, 0.036827393, 0.012912537, -0.0072493805, -0.004677673, 0.0151332505, 0.02124865, 0.016496727, 0.011117066, 0.006722889, -0.011387062, -0.0078096213, 0.010226081, 0.016847722, -0.012001302, -0.004542675, 0.001259698, -0.008963852, 0.030212501, -0.016186234, -0.008261864, -0.0016731286, 0.020465663, 0.011549059, 0.00849136, 0.026324565, 0.03218347, -0.0149712525, 0.006901761, 0.026216567, 0.010401579, 0.004724922, 0.013088034, -0.021073151, 0.0032855084, -0.0051805396, 0.005514659, 0.0036820641, 0.011711056, -0.043469284, -0.042065304, 0.03566641, -0.015646242, 0.011130567, 0.030644495, -0.0014942565, -0.009551092, 0.018616192, -0.010401579, 0.0059669013, -0.031130485, -0.015335747, 0.027634043, 0.00058850594, -0.0046810475, -0.63891745, 0.011353313, 0.030671494, -0.012878788, 0.00062098977, 0.0054235356, 0.012824789, 0.019142684, -0.013817022, 0.035234418, 0.0007606281, -0.02726955, -0.0012740415, -0.008565608, -0.006665515, -0.018994186, 0.0041579315, -0.015862238, -0.037934374, 0.016672226, -0.0050691664, 0.031184485, -0.031211484, 0.006064775, -0.0031623228, -0.0023573986, -0.003088074, 0.007634124, 0.004411052, 0.020236166, 0.010975319, 0.00025312082, 0.014350263, -0.018467695, 0.051650148, 0.0049274187, 0.0024367098, 0.018535195, 0.03091449, 0.03153548, -0.023921605, -0.03158948, -0.006186273, -0.025582077, 0.013607776, 0.011677307, 0.02783654, -0.0044853007, -0.03083349, 0.01271004, -0.0016967532, -0.0028332658, -0.0025818325, -0.008781605, 0.0030846992, -0.002365836, -0.0037056888, -0.00851836, -0.014498761, 0.0065102675, -0.011886554, -0.019763675, -0.0043536783, -0.020870656, -0.010401579, 0.004336803, -0.027472047, 0.0016790348, 0.018980687, 0.007019884, 0.013607776, 0.01935868, -0.009996585, -0.042119306, 0.013999269, -0.0025396456, 0.036692396, -0.00576778, 0.005038792, 0.031724475, -0.007202131, -0.021775141, -0.012217298, -0.009456594, 0.014687758, 0.0047620465, 0.0021329648, -0.006307771, 0.017185217, 0.0005804904, 0.010334079, 0.000988015, 0.0024755215, -0.01694222, -0.011049568, 0.049814176, -0.0009146099, -0.0039689345, -0.018035702, -0.014363763, -0.004785671, 0.016645225, -0.008653357, 0.003962185, 0.0180897, -0.004063433, -0.003452568, -0.012230798, 0.045035258, -0.0423083, -0.013972269, -0.0362604, 0.0063347705, 0.021937137, -0.00017961032, -0.019628676, 0.02728305, -0.0076206243, 0.019628676, -0.023435613, 0.013864271, -0.0033395074, 0.007067133, -0.002976701, 0.0038305619, -0.00909885, 0.005332412, -0.01753621, 0.003391819, -0.007121132, -0.0055315336, -0.0015718803, 0.019169683, -0.0070468835, 0.011380312, 0.022099135, 0.011981052, 0.0021633392, 0.00068595744, -0.054161105, -0.0038676863, -0.024029603, 0.0017853455, -0.031967472, -0.010685073, -0.0151872495, -0.003152198, -0.0038271868, 0.012041802, 0.004039808, -0.006297646, -0.01749571, -0.014269264, -0.008565608, 0.0018865939, 0.0006922854, 0.0021987762, -0.009571342, -0.027445046, -0.008747855, -0.009267597, 0.015470745, -0.044063274, 0.017293215, -0.008558859, 0.0018781564, 0.0061896476, -0.027215552, -0.016132234, -0.020222666, 0.018602693, -0.013270281, -0.002851828, 0.029537512, -0.0036145654, 0.041066322, -0.01626723, 0.0046945475, -0.024056602, -0.0037630629, -0.00515354, -0.017860206, -0.008369862, -0.015916238, 0.011859554, -0.004654048, 0.01754971, 0.039068356, -0.029456513, 0.011792055, 0.025082586, 0.012197048, -0.005801529, 0.020749157, -0.024313098, -0.0021110277, -0.014458261, 0.011589559, 0.010523076, 0.035315417, 0.01152206, 0.00787712, -0.018440695, 0.008140366, 0.0014157891, 0.010448827, 0.008579108, -0.025906073, 0.0181302, 0.010070833, 0.019777173, -0.012433295, 0.0030425123, -0.027026555, 5.2179803e-05, 0.032372467, -0.0024282725, 0.0068511367, 0.0014571322, -0.0146202585, -0.0068713864, -0.011414061, 0.018278698, -0.0133040305, -0.0028045787, 0.009834588, -0.028133536, 0.0067600133, -0.009591592, -0.034910426, 0.0073573785, 0.019210182, 0.008005368, -0.0063212705, 0.008302363, 0.022760624, -0.005936527, -0.0035335666, 0.028052537, -0.007640874, -0.0012554793, 0.028538529, 0.01516025, -0.010469077, 0.02724255, 0.0014807568, 0.025015088, 0.019669175, -0.0066756397, 0.0068781367, -0.0130070355, 0.022585128, -0.030266501, 0.00022886341, 0.0025396456, -0.030158503, 0.02184264, 0.011798806, 0.037178386, 0.0066182655, 0.019102184, -0.009584841, 0.008606108, -0.02238263, 0.036125403, 0.010010085, -0.005437035, -0.016820723, -0.0021397148, 0.0133040305, -0.015092751, -0.005025292, -0.023260117, -0.015443745, 0.02843053, 0.013385029, 0.013466028, -0.009146099, 0.010961819, 0.019102184, -0.013817022, -0.008592608, 0.008754605, 0.018521694, -0.008086367, -0.030023504, -0.008747855, -0.034046438, -0.008997601, 0.023003621, -0.005396536, -0.010421828, 0.010597325, 0.00063955196, 0.0009812651, -0.007343879, 0.03094149, -0.013202782, -0.020722158, -0.004789046, 0.008599358, -0.0040330584, -0.01999317, -0.004488676, 0.034910426, 0.021991137, -0.02006067, 0.0013719149, -0.0029176394, -0.0026813932, 0.015092751, -0.016415728, 0.0006020057, -0.013763023, 0.036503397, 0.005632782, -0.004775546, 0.002816391, -0.0049577933, 0.014876754, -0.007134632, -0.0018444071, -0.01626723, 0.018751191, 0.08542659, 0.009740089, -0.016577726, 0.01750921, -0.029375516, -0.0131420335, -0.033452448, -0.037610378, 0.009497093, 0.01571374, 0.020533161, -0.013088034, 0.00332432, 0.01455276, 0.016672226, 0.0012200424, -0.01268304, -0.009125849, 0.026810557, -0.022112636, 0.012885537, -0.008552109, -0.0014967878, 0.047357216, 0.0013440716, 0.015430246, 0.04103932, 0.014701257, 0.0048767943, -0.030482497, 0.0072426302, -0.009287846, -0.0053526615, 0.013027285, -0.030401498, 0.002251088, 0.0060479003, 0.0073641283, 0.014215265, -0.00242321, 0.014377262, 0.026284067, -0.0043199286, -0.022072136, -0.0023303991, -0.030455498, 0.025649577, 0.0021565894, 0.004009434, -0.011306063, 0.008606108, 0.0034728176, -0.023908105, -0.008876104, 0.009233847, -0.025082586, 0.00048810133, 0.0039250604, -0.005757655, -0.007019884, -0.02486659, -0.009868337, 0.007802871, -0.012237548, 0.0015296935, -0.011265564, -0.007465377, -0.008120116, -0.023354614, 0.009416095, 0.0076206243, -0.008808604, -0.039635345, 0.0059129023, 0.019831173, 0.012176799, -0.001528006, 0.011076567, 0.024286099, 0.024502095, -0.0038001873, -0.011582809, -0.024907088, -0.035396416, -0.01088082, -0.02058716, -0.030050503, 0.0044650515, 0.024043104, 0.014296264, -0.018386697, -0.014593259, -0.0023776481, -0.022922622, 0.017671209, 0.040310334, 0.010070833, -0.0045696744, 0.015457245, -0.009470094, 0.00574753, 0.0361794, 0.008734356, -0.02123515, 0.023800107, 0.0005610845, -0.00257002, -0.02180214, 0.01749571, -0.004468426, 0.006493393, -0.016051235, 0.0038980606, 0.025298582, -0.013391779, 0.010158583, -0.023516612, 0.0016064735, -0.0029480138, -0.02672956, -0.002548083, -0.021545645, 0.02307112, 0.015389746, -0.030455498, 0.0009424532, 0.004181556, -0.03509942, -0.0063145207, -0.00064883305, 0.0029530763, 0.020209167, 0.0030020128, 0.0055652834, -0.022679625, 0.015308747, -0.022666126, -0.0132500315, -0.025906073, 0.0076746233, -0.0036449397, 0.0057880296, -0.0008563921, -0.0057846545, 0.03431643, -0.029294517, -0.0043874276, 0.030266501, -0.008950353, 0.02659456, -0.010239581, -0.0060479003, -0.026068069, -0.008066117, 0.030617494, -0.014660758, -0.025771074, -0.026432564, 0.04120132, 0.051164154, 0.018400196, 0.00486667, 0.011299313, 0.0036179402, 0.0077826213, -0.023759607, 0.01935868, -0.0043098037, -0.017941203, 0.021383647, -0.008288863, 0.008943602, 0.0130070355, -0.002608832, 0.0045089256, 0.014903754, 0.0059804013, -0.013850771, -0.024637094, -0.007978369, 0.0048261704, 0.013769773, -0.029753508, 0.0036415649, -0.03277746, -0.01331753, 0.0008289707, 0.0051332903, 0.020762658, 0.002372586, 0.018413696, 0.0023692108, 0.047033224, 0.008795105, 0.013013785, 0.019642176, -0.010867321, -0.034640428, 0.0062132725, 0.010982068, 0.008147116, 0.014984753, -0.0032163218, -0.0026257066, -0.00968609, 0.0015448808, -0.026419064, -0.009490344, 0.009942586, 0.0034053188, -0.012892287, -0.03320945, -0.0241646, 0.00020091466, -0.018116701, 0.028673526, -0.018454196, 0.02969951, -0.029726509, -0.014930754, -0.009341846, -0.016807223, 0.016807223, -0.026378565, 0.03707039, -0.0065035177, 0.008862603, -0.0063786446, -0.01452576, -0.01271004, -0.0017853455, 0.022045135, 0.017657708, -0.014836255, -0.033641446, -0.01030708, 0.0060276506, -0.0361794, -0.01516025, 0.017833205, -0.0007547219, -0.002537958, -0.018575693, -0.023719108, 0.011272314, 0.0146202585, -0.00068047317, 0.009746839, -0.011144066, -0.034856424, -0.010172082, 0.049247187, 0.014323263, 0.02234213, -0.0006505205, -0.01703672, -0.007121132, 0.0048194206, -0.00790412, -0.0090921, 0.01271004, 0.015065751, -0.012055301, 0.012237548, 0.016793722, -0.0029007646, 0.00035985344, -0.004522425, 0.004849795, 0.027472047, 0.0150792515, -0.00605465, 0.012392796, -0.0033479447, -0.004249055, 0.0054640346, -0.021032652, -0.015821738, -0.010961819, -0.016037736, 0.03766438, -0.009341846, -0.017374214, 0.0028501404, 0.0015364434, -0.005315537, -0.018535195, -0.00083361124, 0.028025538, -0.009139349, -0.020155167, -0.00079564314, -0.01757671, 0.001787033, 0.016888222, 0.00052606943, -0.009861588, 0.022733625, -0.017846705, 0.011346563, 0.0181977, 0.009983085, -0.03153548, 9.581678e-05, -0.0045730495, -0.010610824, 0.023381613, -0.013756273, -0.037259385, 0.020114668, 0.017387712, -0.0040364335, 0.004843045, 0.004849795, 0.00038790767, -8.954149e-05, 0.0001860438, 0.010644575, -0.012048551, -0.004954418, 0.0077421223, -0.00847786, 0.009787339, -0.020344164, -0.0076543735, -0.015875738, 0.018251698, -0.015592243, 0.0061255237, -0.018386697, -0.0020215916, 0.025528079, -0.017360713, -0.008585858, 0.023975605, 0.0023253367, -0.005025292, 0.005028667, 0.0077353725, -0.013621275, -0.0077286223, 0.005578783, 0.019075185, 0.0009888586, 0.0012225736, 0.011211565, -0.037988372, -0.008174115, -0.011542309, -0.013135283, -0.033452448, 0.042740293, -0.0005847091, -0.012899037, -0.011839304, -0.009767089, -0.04309129, -0.01576774, 0.0020097792, 0.041849308, 0.03388444, 0.016820723, 0.011569309, 0.024016103, 0.010671574, 0.03407344, -0.017954703, 0.008390112, 0.034154437, 0.007080633, 0.0071278824, 0.021667141, -0.05686106, -0.0058622784, 0.018953687, -0.005865653, 0.029132519, 0.030050503, 0.00013025176, -0.0015482557, 0.030266501, 0.014444762, 0.011609809, -0.0068848864, 0.039095353, -0.02481259, 0.0047822963, 0.00665539, -0.002509271, -0.024731591, -0.0075261258, 0.0009804213, -0.010664824, 0.0007745497, -0.016091734, -0.02485309, -0.019844672, -0.025379581, 0.00904485, 0.011393812, -0.01690172, 0.02485309, 0.008822104, 0.0020958404, -0.0070738834, 0.024961088, 0.002448522, -0.007141382, 0.010543326, -0.03169748, 0.012804539, 0.00726288, 0.005372911, 0.012669541, -0.0009795775, -0.017792705, 0.012865287, -0.0056732814, 0.0070063844, -0.016010735, -0.007816371, 0.039581347, 0.011319563, 0.009935836, 0.0022898996, -0.023678608, -0.007647624, 0.013864271, -0.004184931, 0.009530842, 0.0037968124, -0.028997522, 0.005406661, -0.008261864, -0.013607776, 0.016564226, 0.19893272, -0.007316879, 0.0069253854, 0.028646527, -0.012548042, 0.00081589277, -0.00020639894, -0.008052617, -0.015511244, -0.0028822024, -0.015025252, 0.03393844, -0.015781239, -0.0061558983, 0.014768756, -0.027647544, -0.029483514, -0.004643923, 0.02069516, 0.0058589033, -0.025123086, 0.003385069, -0.009510593, -0.009368845, 0.0182247, -0.0036584395, 0.004137682, -0.0131150335, 0.026311066, 0.021140652, -0.006496768, 0.008376611, -0.01331078, 0.024313098, -0.004357053, -0.0034036313, 0.0029412638, 0.025379581, 0.030050503, 0.006459643, 0.017995203, 0.006240272, 0.008356362, -0.033587445, -0.0061491486, 0.014647258, 0.009004352, -0.015227749, 0.026162568, 0.012770789, -0.043253288, 0.012642541, 0.018548694, -0.00025839417, -0.009996585, 0.02902452, -0.012035051, 0.021640142, -0.0043908027, 0.016591227, -0.008599358, 0.013229782, -0.0072493805, 0.025339082, -0.021950638, 0.016739724, -0.009821088, 0.016429229, 0.013749523, -0.007951369, -0.003302383, -0.014836255, -0.012662791, 0.009989835, -0.0043773027, 0.0007310973, 0.0149712525, 0.012467044, 0.031643476, 0.024137601, -0.016645225, 0.009571342, -0.014066768, -0.027580045, 0.0037765626, -0.047492217, 0.036665395, -0.0023742733, -0.008309113, -0.023165617, 0.011137316, -0.029753508, -0.018697191, -0.022112636, 0.009281097, 0.005025292, 0.015254748, 0.00634152, -0.020411663, 0.0029108895, -0.0031758226, 0.057725046, 0.017833205, 0.013682025, -0.0033985688, -0.020708658, -0.006716139, 0.02069516, -0.0072358805, -0.017198715, 0.009308096, -0.025784574, 0.0064326436, -0.032453462, -0.0072831297, 0.02726955, 0.0030965114, 0.0057171555, -0.009470094, -0.0042861793, -0.028700527, -0.015646242, 0.0018444071, 0.005946652, 0.017644208, -0.0098075885, -0.001406508, -0.0024704593, 0.003577441, -0.017077219, 0.018940188, -0.009787339, 0.008464361, -0.03261546, -0.019169683, 0.013277031, 0.011731306, 0.001579474, 0.00515354, 0.019750174, -0.017860206, 0.025946572, 0.0021160902, 0.0020283414, 0.009996585, -0.007033384, 0.009753589, 0.011609809, -0.00089436024, -0.008234864, -0.0037225636, -0.0015575368, 0.003295633, -0.051893145, 0.008957102, -0.0069186357, -0.0050792913, -0.028268533, 0.044063274, -0.022126134, -0.05200114, 0.003066137, 0.029942505, -0.010550076, 0.0068140123, -0.012325296, -0.1703132, 0.016672226, -0.00666214, -0.006837637, 0.008410362, -0.018386697, 0.009132599, 0.004492051, -0.028862523, -0.006044525, 0.013682025, -0.031805474, -0.003126886, -0.026284067, -7.546165e-05, 0.014593259, -0.018967187, 0.037691377, 0.0127370395, -0.0040465584, 0.04282129, -0.014458261, 0.007397878, -0.02119465, 0.023354614, -6.153341e-06, -0.014687758, 0.018697191, -0.01883219, -0.031751476, 0.011144066, 0.0011871366, 0.023827106, 0.0076746233, -0.0042693047, 0.010550076, -0.0064663934, -0.00080618984, 0.014120767, 0.039176352, 0.015916238, 0.016510228, -0.017860206, 0.023719108, 0.010172082, 0.004063433, 0.01331753, 0.018494695, 0.009632091, -0.00067498884, 0.00546066, -0.008410362, 0.0073573785, -0.0027370797, 0.0021245275, 0.0004948512, -0.002144777, 0.008707357, -0.0064900178, -0.015295248, 0.0063921446, -0.014660758, 0.0017077219, -0.026999554, -0.00786362, -0.016280731, 0.005214289, -0.006112024, -0.0424703, 0.015011752, 0.007748872, 0.014080267, -0.0034896925, -0.00726963, 0.008545359, 0.015484245, -0.016874721, 0.0032855084, 0.0051569147, 0.018508194, -0.010232831, 0.023179118, -0.012656041, -0.010489327, 0.010091083, -0.004070183, 0.020209167, -0.012170049, 0.025528079, -0.027134553, 0.009517343, -0.046169236, -0.01750921, -0.0021093402, -0.0008509078, -0.007640874, 0.011218315, -0.017009718, 0.008612858, -6.8355807e-06, 0.005815029, -0.006307771, -0.015362746, 0.016591227, 0.032426465, 0.019034686, 0.01030033, -0.013594275, 0.029969506, 0.0040668077, -0.0151872495, -0.0031943847, 0.02304412, 0.031886473, -0.022409631, 0.019601677, -0.0018494695, -0.014498761, 0.013560526, -0.027755542, 0.0485452, 0.0048059206, -0.03685439, 0.013189282, -0.012932787, -0.01272354, -0.14277364, -0.015659742, 0.0029260768, 0.026014071, 0.00241646, 0.004967918, -0.018926688, 0.026351565, 0.008815355, 0.029537512, -0.049976174, -0.012797789, -0.022693126, 0.0013752898, -0.00039739968, -0.0048160455, -0.0075868745, -0.009800838, -0.014417762, 0.029537512, -0.0361794, -0.021491645, -0.018467695, 0.00087579805, -0.018575693, 0.026243567, -0.022234133, 0.032399464, 0.0026223317, -0.01703672, 0.020965153, 0.007755622, -0.018238198, -0.026351565, -0.008086367, -0.0024637093, -0.019318182, -0.04060733, 0.028025538, -0.022598626, 0.0010546701, 0.008052617, 0.0046169236, -0.027377548, 0.0077826213, 0.010030335, -0.04120132, 0.0048261704, -0.0073708785, -0.023746109, -0.020128168, -0.016631726, -0.02851153, -0.008990851, 0.029753508, 0.017360713, -0.030536495, 0.0011365125, -0.010718823, -0.008018868, -0.016685724, -0.017846705, -0.017941203, 0.013985769, 0.014161266, -0.01694222, -0.019142684, -0.004930794, 0.00037651722, -0.015983736, 0.01094157, -0.0077961213, -0.025649577, 0.02060066, -0.02176164, 0.010428578, -0.029294517, -0.0008538609, 0.015646242, -0.007769122, -0.01576774, -0.026527062, -0.008444111, -0.022072136, 0.003985809, -0.013641525, 0.021680642, -6.7657085e-05, -0.007802871, -0.041363318, 0.025325581, 0.0302935, 0.015983736, -0.013047535, 0.009389095, -0.0091865985, -0.017914204, -0.022261133, -6.9502756e-05, 0.027485546, 0.0068950113, -0.004228805, -0.031103486, 0.028970521, 0.0042558047, -0.0004944293, 0.023746109, 0.007829871, 1.4238046e-05, -0.024664093, -0.006409019, 0.0091595985, -0.027215552, 0.030401498, 0.004481926, -0.004900419, -0.012689791, -0.025919572, 0.031562477, 0.011994552, -0.011771806, 0.032966457, -0.029564511, -0.017077219, 0.0032686335, 0.00093401584, 0.013270281, -0.007978369, -0.030050503, 0.023084618, -0.005389786, -0.005528159, 0.012635792, -0.017428212, 0.0006133961, -0.0023253367, -0.0012107613, 0.0023371489, -0.001758346, 0.013972269, 0.010448827, 0.006614891, -0.023192618, -0.028133536, -0.009557842, -0.008302363, -0.03218347, -0.031130485, 0.0040870574, 0.023678608, 0.0050489167, 0.0027893914, 0.023138618, 0.006776888, -0.014093767, -0.032372467, -0.005379661, -0.01025983, 0.0040769326, -0.0151062505, -0.0046337987, -0.039122354, 0.030617494, 0.026999554, -0.012561543, -0.045575246, 0.0063347705, -0.01395877, -0.02116765, 0.00067498884, 0.029591512, -0.041606314, 0.033587445, -0.014336763, -0.020951655, -0.0093755955, 0.01937218, -0.021923639, 0.003881186, -0.011758306, -0.009382345, 0.011319563, 0.0032652586, -0.0070468835, -0.02174814, -0.010826821, 0.01696922, 0.011636808, 0.003066137, 0.020992154, -0.011920303, 0.010097833, 0.010219331, 0.0021397148, -0.01992567, 0.0001605208, 0.02242313, 0.03817737, -0.0053459117, 0.005386411, -0.01208905, 0.018656692, 0.03698939, 0.0017237528, 0.0034306308, -0.010138333, 0.001479913, 0.0006268959, -0.019520678, -0.057779048, -0.0005066635, 0.0242591, 0.008504859, 0.0013744461, 0.011670558, -0.0037293134, 0.0046911724, 0.006226772, 0.0065980162, -0.031886473, -0.020708658, -0.0049375435, 0.007208881, 0.029267516, 0.020182166, -0.0065980162, 0.027512547, 0.018494695, 0.020857155, -0.010982068, 0.010469077, -0.0046844226, -0.010340829, 0.009267597, 0.001029358, -0.012608792, -0.0016950658, -0.018332697, -0.0018055952, 0.032561462, 0.008309113, 0.05138015, 0.008754605, -0.0027978288, 0.012588542, -0.0045055505, 0.008511609, 0.0050455416, -0.026284067, -0.009456594, -0.0043334286, 0.011029318, 0.015929736, -0.00968609, -0.03877136, -0.009152849, 0.030131502, -0.027566545, -0.0017068781, -0.016780224, -0.006297646, 0.022828123, 0.00053956924, 0.019507177, -0.025690075, -0.01271004, -0.006044525, -0.0090651, 0.002813016, -0.018683692, -0.026945556, 0.0007686436, 0.020870656, -0.021775141, -0.013452528, 0.027053554, 0.012770789, -0.023246616, -0.022855124, -0.0131420335, -0.0012149799, -0.012251047, 0.028268533, -0.029780509, -0.032156467, -0.0039554345, 0.0129800355, -0.011812305, 0.00043663342, -0.023435613]" 18776659,Google Data Studio in 10 Minutes: Step-By-Step Guide,https://datascience-school.com/blog/google-data-studio-in-10-minutes-step-by-step-guide/,129,1546004919,24,viktoriia_sh,"[-0.013332966, -0.0011286297, 0.00084811746, -0.0350632, -0.009035618, 0.016741889, -0.027903147, -0.0050212503, 0.0018492416, -0.043223552, 0.0032575608, 0.026271077, -0.02226987, -0.01131262, -0.0009813813, 0.0035372502, 0.026205266, -0.0009994789, 0.028403297, -0.021322217, -0.019848088, 0.0011376784, 0.0019841506, -0.001623022, -0.026784388, 0.01463599, 0.016926154, -0.00714031, -0.0029449665, 0.011674572, 0.00261592, -0.017689543, -0.012924948, -0.026073648, -0.0060544563, 0.017439466, -0.0010233348, 0.00480737, 0.008726315, -0.0031473301, -0.0017143325, -0.0002190216, -0.0031983324, -0.013385613, 0.011503467, 0.02637637, -0.003237818, -0.025560336, -0.008831609, 5.8302936e-05, 0.01979544, 0.033404805, -0.03643203, -0.014083192, 0.009384408, 0.0028659953, 0.015162464, 0.016491814, -0.0064657647, -0.014188487, -0.002587951, -0.0056793434, -0.010457099, -0.0151098175, -0.018913595, -0.028376974, -0.025270775, 0.01449121, 0.003329951, 0.014938713, 0.0033283057, 0.0387222, 0.00233294, 0.0034681505, 0.02290164, -0.014149001, -0.00068523944, -0.0188083, 0.018900434, 0.013102633, 0.0044717425, -0.01872933, -0.01639968, 0.00622227, 0.012977595, 0.016136443, -0.010694013, 0.019742792, -0.020032354, -0.02107214, -0.0068639107, -0.0015218402, 0.030983023, 0.00919356, 0.0021256406, 0.029508894, 0.006765197, 0.02333598, -0.0031440398, -0.01237215, -0.0075878133, -0.00770627, -0.03258877, -0.012878882, -0.0074759373, 0.008923742, 0.03627409, -0.013385613, -0.019282127, -0.013418518, -0.0059195473, 0.0044223857, 0.018650359, -0.014767609, -0.0043631573, -0.0025007536, 0.035300113, -0.021295892, -0.021388026, -0.006745454, 0.0076536224, 0.0060906517, 0.024678491, -0.02594203, -0.008857933, 0.003909073, 0.004580328, 0.014478048, 0.02317804, -0.011510048, 0.010753241, -0.0033612105, 0.021506483, 0.013701498, -0.021032656, 0.015781073, -0.0045145187, 0.028271679, -0.018531902, -0.029114038, -0.0060182614, -0.0012832815, 0.011635086, -0.03435246, -0.0053075207, 0.039274994, 0.022862153, 0.029403599, -0.0054621724, -0.009976692, 0.021190597, -0.014254296, -0.00968713, 0.012398474, -0.010963831, -0.010351804, -0.0033957604, 0.03053552, -0.016781373, 0.013175024, 0.00097562297, 0.027376672, 0.0028544788, 0.0030091307, 0.008213001, 0.03903808, -0.005202226, -0.029903749, -0.02128273, -0.0133395465, -0.0026603413, 0.035747617, -0.03435246, 0.014938713, 0.009312017, 0.02241465, 0.0068375873, 0.007192957, -0.01067427, -0.0039913347, 0.028666535, -0.01335929, -0.004998217, 0.010687431, -0.0057451525, -0.025297098, 0.014214811, 0.012911786, -0.0030453259, -0.016926154, 0.022072442, 0.0028396717, 0.007627299, 2.0131608e-06, -0.63471764, -0.0021519645, 0.006561188, -0.029087715, 0.029140363, -0.0004014368, 0.003978173, -0.0039485586, -0.005972195, 0.010950669, 0.0066500306, 0.0067981016, 0.022190899, -0.019189995, -0.021664424, -0.015807396, 0.0035668644, -0.018150207, -0.010121471, 0.03577394, -0.012615644, 0.018005427, -0.001629603, 0.006251884, 0.011431077, 0.023651866, 0.010825631, -0.00827223, -0.0024234278, 0.025915707, -0.023665028, -0.019150509, 0.03082508, -0.006735583, 0.03322054, -0.02579725, -0.010740079, 0.026547475, 0.012451122, 0.027745204, -0.021756558, -0.024862757, 0.014899228, 0.027034463, -0.000648633, 7.151621e-05, 0.025349746, -0.0021338668, 0.0042019244, -0.0047251084, 0.0046494277, -0.014780771, -0.02396775, -0.0021256406, 0.011266554, 0.011009897, 0.0045375517, 0.0053963633, -0.002609339, -0.004708656, 0.017715866, -0.003988044, -0.005784638, -0.01745263, -0.042881347, 0.01922948, -0.009167236, -0.019953383, -0.018110722, -0.009147494, 0.0131487, 0.0043796096, 0.0019051795, -0.0030617781, 0.011621924, 0.029587865, 0.039064407, 0.013898926, 0.021019492, -0.008996133, 0.019216318, 0.009239627, -0.0119312275, -0.027745204, 0.0037412592, -0.0068112635, -0.027666233, -0.008305135, 0.0086276, 0.019742792, 0.006653321, 0.01717623, -0.011977294, -0.032404505, 0.01024651, 0.03590556, 0.015846882, 0.026547475, -0.006093942, 0.00403082, -0.041380893, -0.004396062, 0.0077589173, 0.03527379, 0.03264142, 0.014109516, -0.013352709, 0.0055740485, 0.013727821, -0.024415253, -0.008384106, 0.0128393965, -0.01632071, 0.013096052, 0.011937808, -0.018439768, 0.0069297203, -0.024204664, 0.019242642, -0.0043368335, 0.008403849, -0.0034023412, 0.014004221, -0.005047574, 0.0039057825, 0.009720035, 0.011279715, 0.010529489, -0.009772683, -0.009022457, 0.0056530195, 0.016004823, 0.004481614, -0.0067059686, 0.010898021, -0.004573747, 0.0005869368, -0.0013647205, -0.02275686, -0.038301017, -0.0054819155, -0.01745263, 0.024165178, -0.01745263, -0.0142937815, -0.015215112, -0.021414349, 0.0013301707, 0.006735583, 0.00071279705, -0.022098767, -0.019913897, 0.0020466696, 0.008825028, 0.006722421, 0.0017423014, 0.0010109955, -0.023020096, -0.002234226, -0.011496887, -0.009976692, 0.0020483148, -0.017005125, 0.011411334, -0.012122075, -0.024652166, -0.031351555, 0.011793028, -0.024494225, -0.02241465, 0.017847484, -0.022454137, -0.013471166, 0.02864021, -0.010549232, 0.008173516, -0.028166384, -0.009219884, -0.011898323, -0.027903147, -0.0046592993, 0.0017719156, -0.015004522, -0.038801167, 0.04130192, 0.00052236137, 0.0037445496, 0.017544761, -0.019111022, 0.0043927715, 0.01392525, 0.021230083, -0.013793631, -0.012845977, -0.005096931, 0.019255804, -0.020519342, 0.0041591483, -0.005995228, 0.007600975, 0.044724006, 0.035616, -0.0023707803, 0.017097259, 0.03974882, -0.017373657, 0.010404452, -0.03124626, 0.0098648155, 0.008989551, 0.014780771, -0.03082508, -0.009845072, -0.016439166, -0.0065282835, 0.029824778, -0.0073903855, 0.0027310862, -0.02396775, 0.0060314233, 0.012003618, -0.000740766, 0.029561542, -0.021045817, -0.0028544788, 0.00919356, -0.013648851, 0.03632674, 0.01958485, -0.03372069, -0.0036458357, 0.009108008, -0.006179494, 0.012602483, 0.025323423, 0.027876822, -0.0037840353, -0.0131487, 0.027245054, -0.013701498, -0.009884558, 5.2801686e-05, 0.030166987, -0.03953823, 0.023020096, 0.0029137072, 0.042381193, -0.022598917, -0.019255804, 0.015833719, -0.02071677, 0.012865719, -0.0075483276, 0.011648248, 0.00798925, -0.027455643, -0.0070679197, 0.0072719287, 0.013793631, 0.025836734, 0.0063111125, 0.012826234, -0.0003117716, -0.0034319554, 0.002036798, -0.0039321063, -0.017715866, 0.011694314, -0.0050508645, -0.005218678, -0.011338944, 0.0030700043, -0.0015991662, -0.0024711394, -0.017268363, -0.022612078, -0.004827113, 0.0036129311, 0.006679645, 0.03364172, 0.0034253744, -0.027481968, 0.014728123, 0.009825329, -0.005820833, -0.009219884, -0.017623734, -0.0193611, -0.0028890288, -0.011161258, 0.002594532, 0.0010537716, 0.020532504, -0.015320407, -0.0017159777, -0.017597409, 0.008370944, 0.0043861903, 0.017294686, 0.039617203, 0.024007237, 0.0050245407, 0.0033496937, -0.029193008, 0.037142772, -0.012280017, 0.008930323, -0.006376922, -0.0005577339, -0.040380593, -0.00070621615, -0.007166634, -0.027560938, -0.0016016341, 0.005606953, -0.0070021106, 0.011207325, -0.0007757272, -0.00017994732, 0.01795278, 0.000551153, -0.03556335, -0.004037401, 0.017742189, 0.08081383, 0.008107707, -0.0011401463, 0.010016177, -0.027824176, 0.013938411, -0.04751432, -0.028903449, 0.02637637, -0.0020252815, -0.021466997, 0.0031341682, 0.022651564, 0.005353587, 0.0045112283, 0.010312319, 0.007719432, -0.013806793, 0.003649126, -0.0022473878, -0.030298606, -0.0076799463, 0.010200443, 0.004702075, 0.037906162, 0.0068244254, 0.022493621, 0.026363209, -0.017281525, -0.013043405, -0.02735035, 0.033562746, 0.005379911, 0.011036221, -0.017439466, 0.054595403, 0.0021930952, -0.009292275, 0.0054753344, 0.01463599, 0.0041756006, 0.015873205, -0.001964408, -0.004320381, 0.016702402, -0.0019265675, 0.020585151, 0.020703608, -0.011621924, -0.010088567, 0.0029104166, 0.0027968956, -0.007995831, -0.00069099775, -0.01463599, -0.006844168, 0.01350407, -0.017768513, -0.022717373, -0.021085303, -0.043276202, 0.016873507, 0.021888176, -0.014333268, -0.024704814, -0.009101427, -0.01032548, 0.007489099, -0.025060184, 0.0021799332, 0.0058405763, -0.048856832, -0.013517232, -0.0162549, 0.0071863765, -0.0051068026, 0.015820557, -0.010496585, 0.0056135342, -0.0032197204, -0.008377525, -0.0042874767, -0.0077523366, -0.026902845, -0.015478349, -0.0073706424, -0.014175325, 0.017478952, -0.0032131395, 0.00940415, -0.006831006, -0.008160355, 6.0359474e-05, -0.035537027, -0.0043894807, 0.015017685, 0.01761057, -0.010595298, 0.014438562, -0.038301017, -0.0039485586, -0.031219935, -0.017571086, -0.031193612, 0.02007184, -0.004264443, 0.0021207049, 0.0002593298, 0.008726315, -0.0009805587, 0.017636895, -0.019111022, -0.0025501107, -0.013806793, 0.023625541, -0.01272094, 0.009496283, 0.013596203, 0.0015456962, -0.019268965, 0.006626997, -0.012003618, 0.016386518, 0.02298061, -0.011431077, 0.04143354, 0.0015152594, -0.026323723, -0.023994073, -0.018703006, -0.00041500994, 0.014214811, -0.02057199, -0.011306039, -0.027639909, -0.004692204, -0.0040406915, 0.011121773, -0.013234252, 0.0011031285, -0.035642322, 0.009338341, 0.013352709, -0.010950669, 0.012813073, -0.023349144, -0.010029338, -0.008193259, 0.0028528336, 0.011812771, -0.008087964, 0.0072127003, -0.04059118, -0.036642622, 0.0033612105, -0.014109516, -0.013648851, 0.005422687, 0.034484077, 0.029193008, 0.04098604, 0.030140663, 0.032746714, 0.01081247, -0.020743094, 0.0037939067, -0.001936439, -0.01937426, -0.00116647, -0.008081383, -0.0031127804, -0.0022457426, 0.00650525, 0.011904904, -0.0025484655, 0.006942882, 0.009134332, 0.0033167892, -0.008259068, -0.019848088, -0.03019331, 0.038801167, -0.0027936052, 0.017702704, -0.03698483, 0.0041723102, 0.02220406, -0.008331458, 0.009213303, 0.008680248, 0.021230083, -0.0027129888, 0.025178641, 0.01994022, -0.010825631, -0.0128854625, -0.00050508644, -0.043460466, 0.006758616, 0.0030206472, 0.01124023, 0.01371466, 0.0038564254, 0.023020096, 0.017715866, 0.0050607356, -0.006870492, 0.003295401, 0.0022539687, -0.03258877, -0.00050138467, -0.025849896, -0.010259671, 0.0140437065, -0.009627902, 0.011299458, 0.0045934897, 0.02637637, -0.02317804, -0.031377878, 0.008950066, 0.0015440509, 0.021651262, 0.020598313, 0.0066368687, 0.019466393, 0.010726918, -0.013622527, 0.013477746, 0.0021124787, -0.005833995, -0.00028071782, 0.023099067, -0.014872904, -0.04806712, 0.010187281, 0.012168141, 0.0131487, -0.014820256, 0.017702704, 0.02015081, -0.005606953, -0.034536727, -0.0017933036, -0.0046625896, 0.02721873, 0.013017082, 0.0065414454, 0.044171207, -0.011108612, -0.0035306695, 0.03416819, -0.028771829, 0.018255502, -0.0143595915, 0.0054095252, -7.701746e-05, -0.005804381, -0.022046119, 0.005004798, 0.018610872, 0.015557321, -0.023994073, 0.01822918, 0.030983023, 0.021519644, -0.000758041, 0.015925853, -0.011766705, 0.023928264, -0.01986125, -0.035879236, 0.02367819, 0.0018229178, 0.014938713, -0.04135457, -0.02700814, -0.03485261, -0.0038794586, -0.019479556, 0.010187281, -0.0084564965, -0.01816337, -0.014438562, 0.017202552, -0.023862455, 0.0070942435, 0.0042743147, 0.030166987, -0.024612682, -0.009976692, 0.008535467, -0.017347334, 0.008726315, -0.0029137072, -0.0037511305, 0.0042282483, 0.022217223, -0.02579725, 0.0017011706, 0.012220789, 0.020861551, -0.017360495, 0.02361238, -0.013583042, -0.0011039511, 0.015873205, -0.0030881017, -0.033694364, -0.026494827, 0.01838712, 0.0069955294, 0.004142696, -0.010588718, 0.0069297203, 0.0124313785, -0.010371547, -0.0034253744, -0.01053607, -0.0045901993, -0.0056234053, -0.0052482923, -0.008864514, -0.0085486295, 0.026981816, -0.0381694, 0.00027907258, 0.013253994, -0.033036273, -0.021466997, -0.01589953, 0.001923277, -0.0055674673, 0.029824778, -0.01929529, -0.006265046, -0.032272886, 0.013082891, -0.013398775, 0.016017986, 0.035668645, 0.0023806517, 0.0048040794, 0.024954889, -0.0092067225, -0.02084839, -0.023651866, -0.021480158, -0.030219635, -0.019900735, -0.002714634, 0.01858455, 0.022651564, -0.015452025, -0.038274694, -0.014346429, -0.014714961, 0.0063176937, -0.013063148, 0.001279991, 0.023309657, 0.042960316, -0.019624336, 0.01683402, -0.0030502614, -0.0046724607, -0.036537327, 0.00012853381, 0.006883654, 0.0076733655, 0.003915654, -0.015320407, -0.027481968, -0.019663822, -0.0002638542, -0.03266774, 0.013780469, 0.009338341, 0.0061235563, -0.008542048, -0.00208451, 0.01145082, 0.011385011, 0.002905481, 0.019637497, -0.037590276, 0.012931529, 0.00040472724, 0.02432312, -0.0087987045, 0.0033694366, -0.0106150415, -0.02262524, -0.012747263, -0.0085025625, -0.0064986693, -0.008831609, 0.008969809, 0.026323723, 0.0056234053, 0.013082891, 0.041907366, 0.02298061, -0.012615644, -0.02750829, 0.017005125, -0.006265046, -0.019729631, -0.010378128, -0.0547007, 0.020664122, -0.011306039, 0.0085486295, -0.0015547449, -0.008074802, -0.016228575, -0.016649755, -0.020769417, 0.023770323, -0.0071797958, 0.002198031, 0.011983875, 0.0044454187, -0.041617807, -0.020177133, -0.022190899, 0.005521401, -0.03456305, -0.0071074055, 0.008397268, 0.0139515735, -0.0050607356, 0.010911183, 0.028666535, -0.034457754, -0.0052120974, 0.21153744, 0.0036129311, -0.0017571085, 0.019598013, -0.009917463, 0.009186979, 0.013102633, 0.005554306, 0.018123884, -0.003846554, -0.016636593, -0.00459678, 0.0021996761, 0.0019430198, 0.033431128, -0.026705418, -0.027455643, -0.033931278, 0.010759822, -0.017426305, -0.0006157283, 0.008963228, -0.029403599, -0.0157021, 0.00989772, 0.014741285, -0.008601276, -0.0012841042, 0.043828998, 0.006386793, 0.0049653123, -0.008265649, -0.012641968, 0.0024711394, 0.003928816, 0.011556115, 0.017557923, -0.024941728, 0.014438562, 0.017439466, 0.01541254, 0.0076404605, -0.009937205, -0.030061692, 0.0070810816, -0.024296796, -0.010174119, 0.028034765, 0.0067059686, 0.00946996, -0.018505577, -0.0072127003, 0.0071995384, 0.012576159, -0.0057517337, -0.0010159313, 0.015649453, 0.011858838, 0.0110691255, -0.009779263, -0.03266774, 0.015373055, -0.01909786, 0.015754748, -0.016031148, -0.023296496, 0.0007308946, 0.03632674, 0.01194439, 0.0018344345, -0.016728725, 0.0065644784, -0.015399378, -0.030088017, -0.01866352, -0.028850801, 0.027745204, 0.012168141, 0.011365267, 0.010496585, -0.021453835, -0.01761057, -0.024402091, -0.018058075, -0.0005898159, -0.021677585, 0.020019192, -0.013188185, -0.007883955, -0.0335101, -0.009035618, -0.00028750443, -0.014175325, -0.011918066, -0.008245907, 0.016347032, -0.0077260127, 0.025823573, 0.0012701197, -0.013128957, -0.02608681, 0.045092538, 0.038564254, 0.031193612, -0.014306944, -8.3444145e-05, -0.018439768, 0.00997011, 0.011937808, -0.023020096, 0.0042282483, -0.030351253, 0.024520548, -0.0070152725, 0.004425676, 0.012694616, 0.015478349, -0.025112832, -0.010792727, -0.011424496, -0.0026422436, 0.000816858, 0.007258767, -0.009219884, -0.004425676, 0.010259671, 0.0012577804, 0.005564177, -0.01350407, -0.027139759, 0.004547423, -0.022677887, 0.013115795, -0.009647645, -0.0069955294, 0.0012627161, -0.002836381, 0.00121994, 0.0020236361, 0.020690447, -0.0035175076, -0.011786447, 0.0043763192, -0.010391289, 0.025349746, 0.0064229886, -0.00833804, -0.0059853564, -0.00019002438, -0.023151714, 0.006235432, 0.0061827847, 0.004702075, -0.0042447005, 0.023296496, 0.0020450242, -0.0036853212, -0.024125693, 0.0131487, 0.0058274143, -0.007837889, 0.024691653, 0.055279817, 0.0021733525, -0.008739476, -0.014412238, -0.16489181, 0.04814609, 0.022506783, -0.0025616274, 0.01428062, 0.007976088, 0.008759219, -0.0064789266, -0.010457099, 0.012260274, -0.015820557, 0.015228274, -0.028508592, -0.0024349445, 0.012648549, 0.013767308, 0.009943786, 0.011233649, 0.041775748, 0.015820557, 0.042302225, -0.007732594, 0.00997011, -0.009726616, 0.006709259, 0.0063670506, -0.01484658, 0.03627409, -0.0068244254, -0.03543173, -3.452418e-05, -0.029930074, -0.012214208, -0.014517534, -0.012286598, 0.0041459864, -0.0049389885, -0.034326136, -0.01732101, 0.0060182614, 0.0149518745, 0.010193862, -0.0122273695, -0.00039135973, 0.025639307, 0.02107214, 0.025376068, -0.0044651614, 0.013530394, 0.014149001, 0.03224656, -0.04632975, 0.004346705, -0.011365267, 0.012253693, 0.01194439, -0.017294686, 0.0033250153, 0.0057879286, -0.043671057, -0.024770623, -0.030272283, 0.012497188, -0.0020878003, -0.019953383, -0.018755652, -0.02806109, 0.015438864, -0.0036228024, 0.011148097, 0.0018887272, 0.005577339, -0.007943183, -0.00763388, -0.0054621724, -0.007416709, -0.020163972, -0.0142016485, 0.023665028, 0.015399378, -0.02226987, 0.014227972, -0.0068375873, -0.012049684, -0.002693246, 0.006758616, 0.0018196274, 0.0110691255, -0.02255943, -0.0055181105, 0.014609667, -0.006623707, -0.0018854367, -0.01667608, 0.010200443, 0.0015786008, 0.0132869, -0.0092527885, 0.034747314, -0.005096931, 0.0153598925, 0.017478952, -0.029930074, 0.013833117, 0.039117053, 0.022296194, 0.009450217, -0.0033858889, 0.033194214, 0.013898926, -0.03782719, 0.016768211, 0.009042199, -0.010081986, 0.02262524, 0.021058979, -0.006235432, 0.014925552, 0.009154075, 0.0018624035, 0.029008742, -0.02524445, 0.0042282483, 0.00798925, -0.004356576, -0.010621622, -0.11793028, -0.016465489, 0.023204362, 0.01272094, 0.0033529843, -0.0075746514, -0.0009180399, 0.0017620443, -0.005570758, 0.021243244, -0.035484377, -0.020887874, 0.0039979154, 0.003570155, 0.002219419, -0.013207928, -0.01562313, -0.0018443059, 0.007962926, 0.0159785, -0.0005388137, -0.0074956804, 0.0061630416, -0.0001471455, -0.027376672, -0.014557019, -0.019808602, 0.023283333, 0.007219281, 0.01795278, 0.009983272, -0.024862757, 0.0076470417, -0.02298061, -0.009088266, -0.026758065, -0.007317995, -0.027245054, 0.017215716, -0.038116753, 0.024849596, 0.004034111, 0.022309355, -0.019755954, -0.00048410974, -0.022664726, -0.041881043, 0.047988147, -0.018268663, -0.004221667, -0.009673968, -0.005458882, 0.0014116097, -0.012464283, 0.014412238, 0.014793932, 0.010450518, -0.01958485, -0.018676681, 0.02340179, -0.0042282483, -0.015794234, -0.028929772, 0.032904655, -0.0023247139, 0.010549232, -0.04148619, 0.010174119, 0.02977213, -0.0018015298, -0.01767638, 0.0016847183, -0.021875015, 0.0121352365, -0.026455343, 0.018926756, -0.01866352, 0.009443636, 0.017268363, -0.00819984, 0.0051956447, -0.014438562, -0.00024472838, -0.01158902, 0.017979102, -0.0043861903, -0.008469658, -0.0019611174, 0.0162549, -0.048014473, 0.016781373, 0.043012965, -0.0056365672, 0.014241135, -0.0019742793, 0.005054155, -0.0034253744, -0.002204612, -0.004007787, -0.0023707803, -0.016347032, -0.0025698536, -0.051647145, -0.0038630064, 0.023467598, 0.023033258, 0.0023510375, -0.012641968, -0.0029400308, 0.002821574, 0.0007230798, -0.006962625, -0.021256406, 0.012069427, -0.026126295, -0.0050442833, -0.04180207, -0.011891742, 0.018610872, 0.001629603, 0.0076865274, 0.010417613, -0.003988044, -0.0092527885, 0.018781977, 0.0036853212, -0.003556993, -0.010667689, 0.009009294, 0.0278505, 0.003988044, -0.03748498, 0.015833719, 0.006320984, 0.0059656138, 0.022691049, -0.00057089573, -0.050304636, -0.018360797, 0.008818448, 0.03158847, 0.029087715, -0.015833719, -0.021177435, 0.034536727, -0.020756256, -0.017478952, 0.007344319, -0.001509501, -0.01654446, -0.008305135, -0.016136443, 0.020466695, 0.0071205674, -0.00039259365, -0.01717623, -0.000964929, -0.0142016485, 0.005791219, 0.03572129, -0.0040670154, -0.0130105, 0.039696176, 0.03364172, 0.014149001, 0.015373055, 0.0013383968, -0.018216016, -0.05133126, 0.0034023412, -0.011621924, -0.027639909, 0.010391289, -0.011036221, 0.008680248, 0.008989551, 0.029666835, -0.015307245, 0.015860043, -0.00090816844, -0.008055059, 0.031983323, 0.026007839, 0.012391893, -0.031140964, 0.027613586, 0.040775448, 0.034378782, -0.0002315665, 0.019808602, 0.004547423, 0.009568674, -0.0144517245, -0.0015711973, -0.0050344123, 0.013023662, 0.0020960264, 0.024441577, -0.019992867, -0.010259671, 0.03190435, 0.0068375873, 0.018189693, 0.004050563, 0.0015152594, -0.010312319, -0.009621321, 0.004155858, -0.0037149354, -0.035168495, 0.020558828, 0.017084096, 0.0006251884, -0.0085946955, -0.012806491, 0.00954893, -0.013280318, -0.009127751, 0.01979544, -0.011937808, -0.0051923543, -0.0021239955, 0.023730837, 0.012688034, 0.018913595, -0.012740682, 0.036853213, 0.014372753, 0.022875316, -0.0118851615, 0.030798756, -0.03959088, 0.0072258622, 0.009792425, 0.006956044, -0.018097559, 0.0050344123, -0.012872301, -0.015728425, 0.009417312, 0.0058504473, 0.07507526, 0.03866955, 0.003408922, 0.012872301, -0.023138553, 0.0063670506, 0.02948257, 0.0024086207, -0.009529188, -0.0229148, 0.020387724, 0.020282429, -0.024257312, -0.0083906865, -0.0008057527, 0.027324025, -0.0036359644, 0.0001422098, -0.015557321, 0.012036523, 0.022309355, -0.009279112, 0.03161479, 0.014504371, -0.010845374, 0.007930022, 0.018281827, 0.019953383, -0.004708656, -0.026955493, 0.0070086913, 0.0005869368, -0.026021, -0.018150207, -0.0023099068, 0.007916859, -0.0074035474, -0.040012058, 0.0019150509, 0.026981816, 0.03216759, 0.00480737, -0.027797852, -0.017097259, -0.023809807, -0.012819653, 0.005123255, -0.027771529, -0.01745263]" 32002486,Flânerie: The Art of Aimless Strolling,https://www.samwoolfe.com/2022/06/flanerie-the-art-of-aimless-strolling.html,200,1657121657,125,lordleft,"[-0.009065477, 0.00134649, 0.013171605, 0.00855221, -0.005629261, 0.017224407, -0.014958037, -0.022117097, -0.024370134, -0.042127803, -0.0008294745, 0.017117754, 0.0039628134, 0.0019180815, 0.00251467, 0.0053026373, 0.04580732, 0.02053064, 0.029942736, -0.013498228, -0.018837528, 0.01094523, -0.005729248, -0.0021163889, -0.018464243, 0.012118409, 0.019770738, -0.0124450335, 0.0069924155, -0.0024313475, 0.016131217, 0.011091878, 0.007105734, -0.014438105, -0.012331715, -0.03399554, 0.002942947, -0.002291366, 0.007012413, -0.0066457945, 0.0052693086, 0.008418895, -0.031889148, 0.003039601, 0.018517569, 0.009538748, -0.015651278, -0.0006394994, 0.0069257575, 0.023530245, 0.037195116, 0.007912295, -0.019597428, 0.012984962, -0.0187842, -0.007212387, -0.027303083, 0.01691778, 0.016637817, -0.021157224, -0.0059058913, -0.003389555, -0.011565149, 0.010411967, -0.002243039, 0.009265451, -0.004629392, -0.005122661, -0.015131347, -0.004749377, 0.030529326, 0.008652198, 0.0010123671, -0.0040694657, 0.047540426, -0.008825508, 0.003006272, 0.010685264, -0.0036228579, 0.013484897, 0.013664873, -0.028396273, -0.01313161, 0.023890197, -0.010605275, -0.001856423, -0.007958955, 0.027756358, -0.025489988, -0.010825246, -0.02567663, 0.0036895156, 0.005539273, 0.011951765, 0.027329747, -0.008078939, -0.003652854, -0.005889227, -0.0013564887, -0.010271985, -0.00035307865, 0.027942998, -0.03191581, -0.014411442, -0.005532607, -0.01937079, -0.027916336, -0.02836961, 0.018717544, -0.010525285, -0.00015487551, 0.013758195, 0.024636766, -0.04335431, -0.012984962, -0.022690356, 0.031302556, 0.020437317, 0.00030829286, -0.029169505, 0.020197349, 0.021503843, 0.02584994, 0.005799239, 0.04916688, 0.018810865, -0.015397979, 0.00019851561, -0.018904185, -0.0036161921, 0.009952027, 0.014024826, 0.008445558, -0.022370398, -0.004836032, 0.003649521, 0.0045927307, -0.006462485, -0.013244928, -0.023956856, 0.012685002, 0.012071749, -0.022677023, -0.009405432, 0.015078021, 0.03055599, 0.00342955, 0.012025088, 0.01300496, -0.008512216, 0.012218396, -0.014384778, 0.034048863, -0.024596771, -3.8588685e-05, 0.05276641, 0.0065791365, 0.031595852, -0.032262433, -0.0008365569, 0.007299042, 0.0017930979, 0.0005978382, -0.0042727725, 0.018024301, 0.027756358, -0.0047893715, 0.04708715, -0.0034695447, -0.010271985, 0.004952683, 0.03652854, -0.03983477, 0.024436792, -0.002864624, 0.015504632, -0.0073457025, 0.012518357, -0.008772182, -0.013264925, -0.010398636, 0.00064449874, 0.04655389, 0.0041494556, -0.0021080566, 0.01717108, 0.015557958, 0.028529588, -0.028769556, -0.009705393, -0.033302296, 0.015584622, 0.019930717, 0.0011765122, -0.64418215, -0.019650754, -0.0052359793, -0.010052014, -0.003061265, -0.016651148, -0.0061125313, 0.014784726, 0.017131085, 0.035648655, -0.028262958, -0.0034495473, 0.01173846, -0.014558089, -0.035248708, 0.01953077, 0.018584227, -0.013478231, 0.023810208, 0.0090988055, -0.018250939, 0.03764839, -0.035888623, -0.01002535, 0.00068949285, 0.026289882, 0.013838184, -0.0063758297, -0.011851777, -0.0020563968, -0.035568666, 0.014038158, -0.0036361895, -0.00013217016, 0.04834032, -0.0013398242, 0.012271723, 0.046153944, 0.014291458, 0.023943525, -0.020943917, -0.017784333, -0.0015689607, 0.004486078, 0.01224506, -0.012405039, 0.034235507, -0.0022347067, -0.00947209, -0.0039628134, 0.028822884, 0.0135782175, 0.0064058257, 0.0021513843, 0.028342947, 0.0128716435, 0.008592206, -0.0027446398, 0.030129379, 0.028529588, -0.007139063, 0.0055959322, -0.00093821017, 0.010718593, -0.0097187245, 0.023050308, -0.013691536, -0.0002607991, -0.014371447, -0.022170423, 0.013344916, 0.049113553, -0.0182776, -0.00517932, 0.016677812, 0.012951634, 0.018210944, 0.02349025, -0.00538596, -0.0056559243, 0.003332896, -0.01086524, -0.034688782, 0.013678205, 0.038234983, -0.028316284, -0.009105472, 0.012738328, 0.004732712, 0.00044327514, -0.009878703, 0.030662643, -0.007325705, -0.040341374, -0.014171474, 0.029996064, -0.0024680095, -0.011251857, -0.029222831, -0.026689831, -0.006885763, -0.013958168, 0.024103504, -0.00749235, 0.007392363, 0.020077365, -0.003076263, 0.013271592, 0.029036188, -0.021757144, 0.006662459, 0.0009807047, -0.009558746, 0.012471696, -0.0170111, -0.019330796, 0.009025482, 0.008238919, 0.016731137, -0.020184018, 0.00517932, -0.014824721, -0.0065124785, -0.0038961554, 0.009838709, 0.04124792, 0.0016922778, 0.00050576695, -0.018824195, -0.011411835, -0.000337664, 0.0143447835, 0.01886419, -0.006335835, -0.004769374, 0.0108385775, -0.00019674501, -0.0045327386, 0.010551948, -0.040608004, -0.03508873, -0.01031198, -0.009505419, -0.02053064, -0.015704606, -0.03762173, -0.0040827976, 0.010198661, -0.055885997, 0.016117884, -0.0065124785, 3.4735025e-05, -0.03780837, 0.033622254, 0.009692062, 0.0072190524, -0.011465162, -0.028689567, -0.025636636, 0.017211074, 0.018984174, 0.011938433, 0.007499016, 0.008032279, -0.010458628, -0.031782497, 0.028742895, 0.0014214801, -0.013031623, -0.028236294, 7.8947975e-05, 0.0037961684, 0.011725128, 0.03316898, 0.008325574, 0.040794645, -0.026823146, 0.0051026638, -0.0007174058, -0.0035062064, -0.023450255, -0.00068241043, -0.029489463, -0.019090828, -0.0042794384, -0.010791917, 0.016011233, 0.02871623, -0.011445165, 0.019717412, 0.02887621, 0.01414481, -0.014878048, -0.023423592, -0.008545545, 0.009325443, 0.006152526, -0.009012151, -0.02457011, 0.018370923, 0.0030562656, 0.016277863, 0.0084655555, 0.0066757905, 0.019344129, -0.03538202, 0.01709109, 0.0020080698, 0.019810732, -0.0052993046, 0.006845768, -0.010538617, -0.024770083, -0.018730875, -0.025569977, 0.019250806, 0.005249311, 0.02930282, 0.0036695183, 0.009752054, 0.004646057, -0.017304396, 0.0010215326, 0.011445165, -0.020477312, 0.01758436, -0.020663954, -0.0063225036, -0.024103504, -0.013998163, 0.016637817, 0.03324897, 0.0069857496, 0.023503581, -0.019317465, 0.021237213, -0.016371185, -0.023290277, 0.029196167, -0.025023382, 0.045220733, 0.027756358, -1.0089821e-05, -0.023890197, 0.0028412938, 0.00017226905, 0.00942543, 0.011111875, 0.013164938, 0.0043094344, 0.010711927, 0.013731531, -0.011951765, -0.00027913004, -0.02458344, 0.005952552, 0.0070524076, -0.013351581, 0.033888884, 0.032262433, -0.011818449, -0.0025213358, 0.010751922, 0.0076923235, -0.014304789, -0.0095854085, 0.022916991, -0.009125469, 0.0038494947, -0.01937079, -0.0132116, -0.027063115, 0.0011848445, -0.011005222, 0.01641118, -0.012205064, -0.017624354, -0.0038828237, 0.048473638, 0.017544365, -0.019770738, -0.011925101, 0.014704737, 0.009172129, 0.0056459256, -0.026489856, 0.0068591, 0.014238131, 0.0035162051, -0.021997113, -0.020783938, -0.023530245, -0.017344391, 0.0009065477, -0.0009340441, 0.0048060357, 0.021103896, -0.0005032673, 0.02138386, 0.0040861303, 0.008398898, 0.0010223658, -0.027756358, -0.020210681, 0.026716493, 0.0062991735, -0.021530507, 0.0182776, -0.013538223, -0.014304789, -0.002354691, 0.011091878, 0.018250939, -0.025636636, -0.012731662, 0.00795229, -0.009592074, 0.0139181735, 0.03890156, 0.0022013776, -0.0001509177, -0.032289095, -0.00190475, -0.010505288, 0.088041775, 0.0072190524, -0.014424774, 0.007932292, 0.016784463, -0.018410917, -0.007818974, -0.006582469, 0.016264532, 0.026729826, -0.00012956632, -0.011205196, 0.007305708, 0.007838971, -0.00087738485, 0.002179714, 0.004169453, -0.020517306, 0.0058725625, -0.020823933, 0.002183047, -0.038954888, -0.02600992, 0.016971106, 0.00014331452, 0.017131085, 0.012345047, -3.9031336e-05, 0.004479412, -0.019677417, -0.0126650045, 0.0016656148, -0.020703949, 0.01069193, -0.0025863273, 0.0089521585, 0.01843758, 0.022837002, -0.002652985, -0.02122388, 0.028076315, 0.00934544, 0.0024730088, -0.013471565, 0.00023538577, -0.03516872, -0.020210681, 0.02820963, 0.0015947907, -0.0052959714, 0.02122388, -0.0003270404, -4.5671088e-05, -0.008052276, 0.024116835, -0.0033212306, 0.026823146, 0.018384254, -0.02230374, -0.020570634, 0.012298386, -0.017704343, 0.004772707, -0.0032129115, -0.0009482089, -0.030022725, 0.0032245768, 0.017544365, -0.016171211, 0.004456082, 0.0044727465, -0.017197743, -0.016931111, -0.0055526043, -0.0070257448, 0.00690576, -0.0062491796, -0.017291063, -0.0032579058, 0.024876734, -0.019490775, -0.009685395, -0.0022080436, -0.019904055, -0.003652854, 0.013904842, -0.006665792, 0.0019130822, -0.02534334, 0.004772707, 0.0021147225, 0.00059117243, 0.011631806, 0.010078677, 0.0042861043, 0.012751659, -0.008805511, 0.0031162577, 0.035062063, -0.030422674, 0.03106259, -0.02105057, -0.016664479, 0.00439609, 0.022237081, -0.02037066, 0.004936019, -0.012065083, 0.0076656607, 0.022570372, -0.008092271, -0.005415956, 0.002607991, 0.015158011, 0.018957512, 0.020317333, -0.008032279, 0.020597296, 0.014918042, -0.026703162, -0.00904548, -0.026996456, 0.010805248, 0.027209762, 0.0027996325, 0.02751639, 0.009592074, 0.0045494027, -0.026663167, 0.021823803, 0.0046593887, 0.02584994, -0.009658732, -0.03282236, -0.041221257, -0.017397717, 9.082141e-05, -0.029489463, -0.027236424, -0.007559008, -0.024303477, 0.00467272, -0.010671932, -0.00040744653, 0.0449541, -0.03687516, 0.0020847265, -0.009378769, -0.029676106, 0.035835296, -0.033302296, -0.003742842, -0.003812833, -0.016797796, 0.0065091457, -0.008198923, -0.020157354, -0.02474342, 0.020570634, -0.008105603, -0.025276683, 0.009538748, 0.014304789, 0.021437187, -0.009452092, -0.008525548, -0.003939483, 0.003836163, -0.030929273, 0.03410219, 0.02341026, 0.034608793, 0.0006411658, -0.021650491, 0.008485553, 0.02349025, -0.003929484, -0.0150380265, -0.008305577, -0.040767983, -0.01089857, 0.0019414119, -0.006822438, 0.010685264, 0.012538354, -0.01018533, 0.021570502, 0.013998163, -0.013124944, -0.0022530376, 0.04023472, 0.0011990092, 0.009732056, 0.016624484, 0.0012256724, -0.02398352, 0.013851515, -0.017437711, -0.0069990815, -0.008778848, -0.034715444, -0.01439811, -0.0054192888, 0.00042223625, 0.0052659754, -0.003929484, 0.025076708, -0.012658339, -0.0035995275, 0.006119197, -0.0053026373, -0.032955676, -0.024023514, -0.013071618, -0.011671801, 0.014838053, -0.030129379, 0.022343734, -0.029676106, -0.04772707, 0.0015856252, -0.01826427, -0.0011656804, -0.012998294, 0.018717544, -0.006885763, -0.033222307, -0.024450125, 0.029409474, -0.0027479727, -0.019850727, 0.021983782, -0.023556909, -0.006625797, -0.039221518, 0.005089332, 0.02298365, -0.023010314, -0.03612859, 0.0449541, 0.031942476, 0.0032162445, -0.026783152, 0.013331584, -0.004192783, 0.03628857, -0.0066091325, 0.034955412, -0.008078939, -8.5093e-05, -0.004102795, 0.024730088, -0.0149847, 0.0051126624, -0.007785645, 0.009812046, 0.0069390894, -0.00345288, -0.029009527, 0.03284902, 0.012478362, 0.022876997, -0.012691667, -0.0045860647, 0.004352762, 0.007625666, 0.0016447841, -0.0019997375, -0.020930586, 0.02770303, -0.024050176, -0.004032804, 0.017331058, -0.004379425, 0.015691275, -0.005485947, -0.010545283, -0.012398372, -0.005335966, -0.019157486, 0.020850597, -0.005472615, -0.018530902, 0.007265713, -0.012958299, -0.029329484, 0.0036128592, -0.0121050775, 0.023290277, -0.0013789857, 0.0045927307, -0.012838315, 0.015651278, 0.0018797533, -0.022463718, -0.014584753, -0.0010165332, 0.018557563, -0.03004939, 0.02643653, -0.00871219, -0.017357722, 0.006635796, 0.00393615, -0.0049193543, -0.016171211, 0.01582459, -0.0020897258, -0.058552314, -0.021997113, 0.02029067, -0.00033078992, 0.002529668, -0.012178401, 0.01691778, -0.016624484, 0.004606062, -0.008665529, -0.043834247, 0.0028529589, -0.0030379347, 0.02323695, 0.006719118, -0.011305183, 0.031942476, -0.0011631807, -0.003902821, -0.004862695, -0.013864847, 0.007785645, -0.02634321, 0.016517833, -0.00904548, -0.015264663, -0.003404553, -0.026676498, -0.0029529457, 0.01043863, 0.014611416, -0.0011648472, 0.013111613, 0.0006736616, -0.010465293, 0.021197218, 0.009418764, 0.0021513843, -0.018224275, -0.013184936, -0.011985093, -0.0040927962, 0.007399029, 0.046260595, -0.006215851, -0.013158273, 0.017810995, 0.0034795434, -0.026876472, -0.0013681537, 0.017077759, 0.011158535, 0.016024563, 0.022930324, -0.02762304, 0.011651804, -0.00046243932, 0.00041827845, -0.0018330928, 0.004749377, 0.003344561, -0.0013898176, 0.0037261776, -0.00269298, -0.040394697, -0.017717674, 0.017571026, -0.006965752, -0.011365175, -0.00055451057, -0.016437843, 0.0054826136, -2.3851037e-05, -0.006885763, 0.0018080961, -0.0029262826, 0.025796615, -0.03866159, -0.0022647027, -0.0070524076, 0.006505813, -0.0069390894, 0.012431702, -0.02458344, -0.011618475, 0.0039794776, 0.0070324102, -0.0026729824, 0.009772051, 0.0015023028, 0.008272247, -0.003232909, 0.0012556686, 0.025010051, -0.0034995407, -0.012571683, 0.003522871, -0.014598084, -0.02071728, 0.017051095, 0.011318514, -0.012358378, 0.044740796, 0.0029962733, 0.01869088, -0.014384778, 0.012858313, -0.029222831, 0.013584884, 0.0023413594, 0.026449861, 0.008198923, -0.01591791, 0.021117229, -0.014704737, -0.020703949, -0.007938958, -0.011685133, 0.010651935, -0.028609578, 5.014967e-05, 0.003839496, -0.02105057, -0.002614657, 0.012518357, -0.027489726, -0.024036845, -0.018424248, 0.17768334, -0.017117754, -0.010271985, 0.0035295368, -0.0069924155, 0.03636856, 0.026889805, 0.002243039, -0.013364913, 0.023676893, 0.006432489, -0.014118147, -0.027049784, 0.0042361105, 0.0069390894, 0.0016614486, -0.01953077, -0.017544365, -0.0023230284, 0.00677911, 0.02331694, -0.0157446, -0.016691143, -0.009105472, 0.018957512, 0.018250939, -0.007259047, -0.010905235, 0.022330403, 0.0044394173, -0.020650623, -0.01607789, -0.016651148, -0.01119853, 0.0054192888, 0.025449993, 0.015304658, 0.014811389, 0.0154646365, 0.015277995, 0.02357024, -0.0029112846, -0.014438105, -0.0029629443, 0.009312111, 0.03426217, -0.018384254, 0.0019614093, -0.0006207519, 0.009745387, -0.008285579, -0.006852434, 0.014798058, 0.024370134, 0.012551686, 0.009478756, 0.041941162, 0.032395747, 0.013111613, 0.016237868, -0.030635979, 0.017957643, -0.03055599, 0.014038158, 0.012385041, 0.01877087, 0.00037724216, -0.037755046, 0.0034495473, 0.01759769, 0.0070924023, -0.008525548, -0.01769101, 0.025583308, -0.0060392073, -0.012711665, 0.022663692, -0.010018685, 0.013044954, 0.038501613, -0.019997375, -0.017184412, 0.004952683, -0.013011626, -0.0061058654, -0.035542, 0.013038289, 0.0044027553, -0.010152001, -0.003151253, -0.00094070984, -0.021743814, 0.016784463, -0.012091747, 0.013104946, -0.008145598, 0.02762304, 0.002131387, -0.020743944, -0.021690486, -0.008165595, -0.013351581, 0.029622778, 0.012211731, -0.016357852, 0.003906154, 0.0018497573, 0.01005868, -0.0093054455, -0.02517003, -0.014931373, -0.029516125, -0.0031429208, -0.0063291695, 0.016024563, 0.011565149, -0.02592993, -0.01994405, -0.009385435, -0.01641118, -0.016477838, -0.027543051, -0.017464375, 0.0035695315, -0.0027296417, -0.022703687, -0.034582127, 0.014078152, -0.02526335, 0.010991891, 0.00909214, -0.013184936, 0.0051293266, 0.0060358746, -0.0043760925, 0.0106319375, -0.020264007, -0.009538748, -0.01237171, -0.011238525, 0.0025646633, -0.0035162051, 0.0009348773, 0.0054926123, 0.014251463, -0.011725128, 0.019037502, -0.008192258, -0.004379425, -0.009365438, -0.005899226, -0.031355884, -0.009258784, -0.042661067, 0.018664217, -0.030102715, -0.020343997, -0.013404908, 0.0424211, 0.006139194, -0.028262958, 0.0011656804, 0.044980764, 0.019090828, 0.0013289922, -0.003411219, -0.167658, -0.0047460436, 0.036661856, -0.007858968, 0.02347692, 0.00046327253, 0.0029962733, -0.0131516075, -0.009025482, -0.0047927042, 0.03359559, -0.0019897388, -0.025236689, -0.017317727, 0.007139063, -0.0015731269, -0.0028562918, 0.027329747, 0.016157879, 0.022183755, 0.044767458, -0.02162383, 0.02525002, 0.0038194987, -0.006749114, 0.0155979525, 0.010411967, -1.428198e-05, -0.011718462, -0.016931111, -0.006535809, 0.0010848576, 0.012758326, -0.006085868, 0.019384123, 0.017157748, -0.014371447, -0.015024695, -0.022583703, 0.009292114, 0.007552342, 0.038581602, 0.016264532, -0.020743944, 0.0017864322, 0.022757012, 0.029702768, 0.0032462406, -0.017970975, -0.01758436, 0.013824852, 0.011505157, -0.019757407, 0.0043360977, -0.0005182653, 0.0036395222, 0.024770083, 0.015971238, -0.0071523944, 0.005092665, -0.027676368, -0.0097920485, 0.010038682, 0.012398372, -0.006635796, -0.014491431, -0.015397979, 0.004012807, -0.024770083, -9.354241e-06, -0.02121055, 0.0020380658, 0.012991629, 0.0016764466, -0.001714775, 0.010618607, -0.004516074, -0.01886419, 0.0013298255, 0.011045217, 0.00013539889, 0.034742106, -0.034155518, -0.021957118, 0.0040761316, -0.0024013515, 0.016904447, 0.031009264, -0.013044954, -0.007958955, 0.0051726545, -0.014878048, 0.003969479, -0.024996718, -0.002433014, 0.005832568, 0.022650361, -0.0068591, -0.008245585, -0.026476525, 0.00013487814, -0.02399685, -0.0044360845, -0.009652066, 0.017411048, 0.016757801, -0.004412754, 0.015104684, 0.03644855, -0.009885369, -0.01591791, -0.0032479072, 0.0059125572, -0.0030229366, -0.02231707, -0.010271985, 0.014304789, -0.024556777, 0.03407553, -0.0047560423, 0.030316021, 0.001290664, 0.0014539758, 0.007778979, -0.010798583, -0.016664479, -0.12297053, -0.014491431, 0.0015039693, 0.011258522, -0.004712715, 0.015944574, -0.02181047, -0.0093054455, 0.010018685, 0.013358247, -0.023796877, -0.006695788, 0.0014981367, -0.016944442, 0.0045060753, 0.0020497309, 0.03191581, -0.027809683, -0.04124792, 0.027676368, -0.0057892404, -0.00027996325, -0.0029229496, 0.01414481, -0.024716755, 0.017997637, -0.008118934, 0.00502934, -0.0032362419, -0.015544627, -0.018370923, -5.0670435e-05, 0.0032862353, -0.021290539, 0.012205064, -0.0023946858, -0.008572209, -0.0077656475, 0.012565018, -0.020264007, -0.0144780995, 0.016437843, 0.018997507, -0.0013523225, -0.025649967, 0.0033312296, -0.02130387, 0.014384778, -0.02231707, -0.029276157, -0.026276551, -0.020983912, -0.008392232, -0.03298234, 0.05161989, -0.014798058, -0.0032362419, -0.014531426, 0.0010415299, -0.010018685, -0.0005878395, 0.0045327386, -0.015691275, 0.012265057, -0.01018533, -0.00061408605, -0.029862747, -0.010938564, -0.0011206863, 0.008518882, -0.009505419, 0.013318252, 0.013198268, 0.01894418, -0.029489463, -0.0020030704, 0.0064291563, 0.022916991, -0.0014164808, -0.010858575, -0.022783676, -0.008558877, 0.018824195, -0.030129379, 0.022463718, 0.028316284, 0.02113056, 0.005949219, 0.0027962998, -0.021770475, 0.009738722, 0.020610629, 0.01867755, -0.02711644, 0.0009907034, 0.000639916, 0.034795433, -0.017277732, 0.010671932, 0.018570896, 0.0043927566, -0.016971106, -0.033808894, -0.0074056946, 0.006695788, 0.008832174, 0.01287831, -0.006599134, 0.009165464, 0.008092271, -0.014958037, 0.021930454, -0.0053959587, 0.013024957, 0.009005485, 0.0042394437, -0.014158142, -0.04487411, 0.015277995, 0.0052926387, -0.005056003, 0.016864453, -0.0035395354, 0.018917518, 0.03535536, 0.01330492, -0.021490512, 0.0024046844, -0.006139194, 0.009132135, 0.024650099, -0.027289752, 0.003106259, -0.013364913, 0.0023580238, 0.0039894762, -0.027009789, -0.0032129115, 0.01877087, 0.018330928, -0.012791654, 0.05513943, -0.019517438, -0.011918436, 0.04183451, 0.003351227, -0.022663692, -0.00479937, 0.0038095, 0.0042427764, 0.029836085, 0.02095725, -0.00020247343, 0.016437843, -0.01389151, -0.016104553, -0.03874158, -0.02054397, 0.004982679, -0.0032862353, -0.027489726, -0.020090697, 0.05060669, 0.0022980317, 0.009085475, 0.0055492716, 0.0061725234, 0.0154646365, -0.028502926, 0.0047160476, 0.003996142, -0.003772838, -0.02087726, 0.026809815, 0.011998425, 0.010012019, 0.03796835, 0.0050426717, -0.013218265, -0.015384647, -0.007958955, 0.030289358, 0.00010425715, 0.005085999, -0.022450387, 0.009638735, 0.02583661, -0.008492218, -0.044340845, -0.006072536, 0.008365569, 0.012911638, 0.0062991735, -0.018557563, 0.026196562, 0.0026913134, 0.014304789, -0.0006336668, -0.023290277, 0.006319171, -0.0062925075, 0.011391838, -0.006845768, 0.0067691114, 0.022743681, -0.010278651, 0.0072923764, -0.007958955, -0.010751922, -0.002547999, 0.013971499, 0.017437711, -0.0014564755, -0.005832568, -0.018077627, -0.016291196, -0.013958168, -0.0059758825, 0.017651016, -0.039701454, -0.012158404, -0.014158142, 0.029649442, 0.036821835, 0.019184148, 0.0048060357, -0.0008044777, 0.01869088, 0.017331058, -0.009325443, -0.007145729, -0.015397979, 0.0071523944, 0.006462485, -0.012491694, 0.025743287, -0.0059058913, -0.028076315, 0.033462275, 0.012971631, -0.04108794, 0.036421888, 0.018824195, 0.012598347, -0.008558877, 0.006722451, 0.03956814, 0.0019497441, -0.004449416, -0.024996718, -0.0022680357, 0.016024563, -0.00441942, 0.021530507, -0.032369085, -0.011031886, 0.0015123015, -0.02751639, 0.0067724446, 0.0151846735, -0.00517932, 0.038848236, 0.002198045, 0.017544365, 0.0015647946, -0.025449993, -0.00855221, 0.021317203, -0.027463062, -0.010092009, -0.02347692, -0.000645332, -0.00515599, -0.023610234, -0.018424248, 0.009625403, 0.00032599887, 0.0041227923, -0.025303345, -0.008625534, 0.03055599, -0.019997375, 0.01005868, -0.0030046056, -0.03276903, 0.0088855, -0.011171867, 0.004126125, 0.0031679175, -0.055086102]" 23636487,An even worse anti-encryption bill than EARN IT,https://cyberlaw.stanford.edu/blog/2020/06/there%E2%80%99s-now-even-worse-anti-encryption-bill-earn-it-doesn%E2%80%99t-make-earn-it-bill-ok,903,1593054510,351,abecedarius,"[-0.018079305, 1.1265998e-05, -0.0078961635, -0.04089495, 0.010108713, 0.008390096, -0.027213683, -0.024236552, -0.035969157, -0.006810187, 0.0382426, 0.014655604, -0.0016416509, 0.008315668, -0.004983311, 0.030204346, 0.014831525, -4.6385518e-05, -0.0020061804, 0.008606615, -0.016847854, -0.009993687, -0.021462407, 0.023370478, -0.0010885135, 0.0008153279, 0.019757323, -0.03280257, -0.019310754, -0.006048989, 0.018349953, -0.0024003119, -0.031259876, -0.009262937, -0.032586053, -0.0040969383, 0.010622945, -0.022463806, 0.04592901, -0.020839917, 0.034561783, 0.009256171, -0.0058866, -0.0107921, -0.0151563035, -0.0075037233, 0.010636477, -0.0151969, -0.005436647, 0.020853449, 0.013559478, 0.0031310623, -0.019770857, -0.014669136, -0.022856247, 0.0059677945, -0.015345757, 0.004678832, 0.020826384, 0.025440937, -0.009831298, 0.00824124, -0.01883712, 0.0042153466, 0.01039966, -0.0023766302, -0.015061576, 0.016293027, -0.0023038934, 0.027173087, 0.017673332, 0.023735853, 0.011529616, -0.00465515, 0.0097433375, 0.002999121, -0.0068609337, -0.025914572, -0.013518881, -0.011779966, 0.017673332, -0.017132035, -0.013721867, 0.033560384, 0.010954489, -0.008024721, -0.023235153, 0.0016737904, -0.0048716688, -0.012957286, 0.011346929, 0.013620374, -0.0017625969, 0.024060631, -0.006356851, 0.020082101, -0.013505349, 0.042708296, -0.009668909, -0.026902437, 0.013884257, -0.002305585, -0.016726064, 0.0007857258, -0.030989226, -0.027254282, 0.00510172, 0.018999508, 0.0056024194, -0.0077270083, -0.016076507, 0.009208808, 0.015020979, -0.025941636, 0.009608014, -0.001407371, 0.0046889815, 0.0011553298, -0.02618522, -0.015372822, 0.020704594, -0.006062521, 0.033939295, 0.0027792193, -0.00089060195, -0.027903836, -0.007984124, -0.014384955, 0.041869286, 0.007821735, 0.024209488, -0.0056531657, 0.010088414, -0.013539179, -0.0060456055, 0.014236099, 0.005091571, 0.013796296, -0.0040191268, -0.03480537, 0.021097032, 0.019919712, -0.0042322623, -0.005815555, 0.0047532604, 0.020636931, -0.008058553, 0.030285541, -0.014371423, 0.0024510585, -0.008166811, -0.005727594, -0.017294424, 6.2851715e-05, 0.004485995, 0.021733057, -0.008944925, 0.02809329, -0.011529616, -0.0072533735, -0.028120356, -0.007862332, 0.017470345, -0.007855566, 0.03929813, 0.045739558, -0.011346929, -0.0050239083, 0.009750104, 0.017253827, -0.011461955, 0.019324286, -0.011340163, 0.006424513, -0.00019051101, 0.014831525, -0.0031395198, 0.008674277, -0.029473597, -0.01553521, 0.0052844076, 0.012185939, 0.018850653, 0.009662143, -0.026293479, 0.023411075, 0.02226082, 0.009716273, -0.009208808, -0.007835267, 0.03705175, 0.03296496, -0.014980381, -0.0045638066, -0.6356987, -0.023979437, 0.033858098, -0.012639274, -0.021814251, 0.0009125921, -0.00025415563, 0.0056463997, -0.030853903, 0.02882404, -0.0027250897, -0.012422755, 0.007720242, -0.026537063, -0.030691514, -0.0024764317, -0.0001341612, -0.0029551408, 0.038892157, -0.0015494614, -0.037078813, 0.029121755, -0.008315668, -0.024074163, 0.0008115219, 0.016996711, -0.02540034, 0.0021685692, -0.013254999, -0.002811359, -0.017091438, 0.02220669, 0.0013633907, -0.004293158, 0.044034474, 0.0025711586, -0.006553071, 0.0064075976, 0.013633907, 0.015792327, -0.0050881873, -0.009905727, 0.0052235117, 0.006908297, -0.0024645908, 0.029581856, 0.020975241, 0.00045291297, -0.014033113, 0.005659932, 0.0013523955, 0.0051761484, -0.0065260064, 0.0015443867, -0.0030836987, 0.032315403, 0.022558533, -0.018255226, 0.024628993, -0.011387526, 0.003026186, 0.011008618, -0.024317747, -0.019919712, -0.033397995, -0.011279266, -0.00227852, -0.004902117, -0.010244037, -0.008931393, -0.0010386127, 0.02960892, -0.0010310007, -0.0064989417, -0.0046010204, 0.021475941, 0.047985937, -0.011840862, -0.005270875, 0.0058730673, 0.00082505436, -0.0015435409, -0.021327084, -0.010230505, 0.045495976, -0.0028316574, 0.0060997354, -0.0066985446, 0.02960892, 0.012199471, 0.021665394, -0.0015511529, -0.002547477, -0.025752183, 0.022382611, -0.0003218177, 0.011671707, 0.0019909563, -0.0033611131, -0.0057715746, 0.0031124551, -0.005825704, 0.016969647, -0.0019554337, 0.030177282, 0.015278094, -0.0020315535, 0.0027690702, 0.033587452, -0.038486183, 0.005345303, -0.022639727, -0.017362086, -0.009256171, -0.035590246, -0.023911774, 0.014276696, 0.0013117983, 0.012192705, -0.024344811, 0.005270875, -0.0078488, 0.0050678886, -0.025156757, -0.0028384237, 0.01642835, -0.0040360424, -0.028174484, -0.0010022444, 0.01772746, -0.0060692877, -0.026943035, 0.010622945, 0.007889397, 0.037863694, 0.015467549, 0.024656057, -0.02236908, 0.024466604, -0.039244, -0.013951918, -0.014926252, 0.01626596, -0.012246834, -0.0085998485, -0.021151163, -0.0038465885, 0.0042119636, -0.020366283, -0.011218371, -0.006306105, 0.0019351351, -0.004550274, 0.016008845, -0.006319637, -0.0043912684, -0.01996031, -0.020163296, -0.020907579, -0.0049562464, -0.0075781518, 0.0105958795, -0.00813298, 0.01990618, 0.0059170476, -0.0017160792, 0.03561731, 0.027240748, -0.0080382535, -0.021435343, 0.0009692591, -0.019703194, -0.0024645908, 0.025034964, 0.010981553, 0.012544547, -0.0003150515, 0.018011643, 0.02006857, 0.0026083726, 0.019946778, 0.0009591098, -0.012578378, -0.0094591575, 0.005142317, 0.019919712, -0.0054264977, 0.015088641, -0.012483652, -0.00922234, 0.0019791154, 0.0015063267, -0.00013627563, 0.0071924776, -0.019134833, 0.0075037233, 0.013654205, -0.010582347, 0.022747988, 0.037376527, 0.035563182, -0.012470119, 0.045604233, 0.0071112835, 0.0019858817, -0.024710188, 0.015589341, -0.014831525, 0.031314004, 0.015792327, 0.011759668, -0.01407371, -0.01334296, -0.0017050841, -0.026198752, 0.02652353, -0.023451673, 0.00936443, 0.015264562, 0.009242638, -0.006837252, -0.0112725, 0.030474994, -0.010548516, -0.014168437, 0.020555736, 0.017186165, 0.029744245, -0.00038630812, -0.049474504, 0.0061369496, -0.009127613, 0.0045638066, 0.021557136, 0.0034389247, -0.010474088, 0.001913145, -0.015616405, 0.038756832, -0.028796976, -0.00040724108, 0.029392403, 0.032342467, -0.0052235117, 0.0181605, 0.014736799, 0.038702704, 0.02904056, 0.0019486676, 0.001977424, -0.0027893686, 0.025576262, -0.022896843, -0.003667284, 0.018011643, -0.012605444, 0.022937441, 0.04260004, 0.017294424, 0.009405027, 0.0037890759, 0.02904056, 0.012334795, 0.006712077, -0.0035590248, -0.026374673, 0.018322887, 0.0063636173, -0.008802835, 0.0054840106, -0.010183142, -0.01810637, 0.015318692, -0.003954848, 0.02809329, 0.030285541, 0.00790293, -0.013058779, 0.0017575222, 0.01626596, -0.036104478, -0.016468948, 0.024074163, 0.016184766, -0.03196356, -0.026198752, -0.0077405404, -0.011549915, -0.0010436873, 0.014574409, 0.004178133, 0.03269431, 0.021097032, -0.006319637, -0.008356266, -0.01592765, 0.006647798, -0.010677074, -0.00041717893, 0.0056734644, -0.0021871764, 0.015792327, -0.02702423, -0.009865129, 0.05629484, -0.00054806273, -0.016658401, -0.0014209034, 0.02456133, -0.024886109, 0.003988679, 0.006644415, -0.009405027, -0.006874466, -0.004678832, 0.007970591, -0.0003708727, -0.0123077305, 0.025806313, 0.0010614487, -0.0028012097, -0.039839424, -0.020785786, 0.013356492, 0.09012587, 0.01676666, -0.01682079, 0.017768059, -0.01990618, 0.00046729116, -0.008369798, -0.029744245, 0.013708334, -0.010805632, 0.0094523905, 0.01580586, -0.01480446, 0.0010665234, 0.012720468, 0.009046419, 0.009770403, -0.0050171423, -0.006613967, -0.033452127, -0.026022831, 0.009621546, -0.0058663012, 0.030691514, 0.01648248, -0.020339217, 0.021340616, 0.011827329, 0.019364884, -0.0032308637, -0.007842033, 0.029013494, -0.0029906633, -0.022017237, -0.00593058, 0.008626914, -0.004902117, -0.013085844, 8.108876e-05, 0.002946683, 0.022274353, 0.002373247, -0.005105103, 0.00333574, 0.017768059, -0.020379815, -0.023857646, 0.021557136, 0.021800717, -0.020325685, 0.022680325, -0.0065260064, -0.021557136, -0.010325232, -0.0118746925, 0.0035184275, 0.0037687772, -0.0058426196, -0.0074157626, -0.02977131, -0.026442336, -0.004184899, 0.020271555, -0.009046419, -0.01755154, -0.002155037, -0.00026726516, 0.009594481, 0.008065319, 0.0133023625, -0.00970274, -0.029852504, -0.046713892, 0.030935097, 0.02265326, 0.008992289, 0.028174484, -0.003467681, -0.012409223, 0.00021799872, 0.0043980344, -0.020095633, 0.0039683804, -0.020433944, 0.0141549045, 0.0046619163, 0.0033746457, -0.0033797203, -0.011340163, 0.010020752, -0.00030870817, -0.0027436968, 0.0068609337, -0.011204839, -0.0036503684, 0.019676128, 0.00485137, 0.024764316, -0.0075104893, -0.01200325, 0.022003705, -0.0024730486, -0.005568588, 0.014357891, 0.0046280855, -0.0054772445, 0.024994368, 0.02259913, 0.014060178, 0.011387526, -0.025034964, -0.009926025, -0.014615007, 0.0056024194, 0.00026874527, 0.0016010536, 0.010636477, -0.0012813504, -0.005703912, -0.008897562, 0.004621319, -0.048581365, 0.0035928558, 0.0059170476, -0.0057952562, 0.016103571, -0.0058663012, -0.01974379, -0.018674731, -0.018674731, 0.003185192, 0.021097032, 0.003636836, -0.017781591, -0.016915517, 0.0025576262, -0.021665394, 0.021327084, -0.0020366283, -0.01744328, 0.0039142505, 0.016360687, -0.0050645056, -0.048824947, -0.010940956, -0.030123152, -0.016739596, 0.005325005, -0.038756832, 0.019337818, -0.031016292, -0.003422009, -0.0013803062, -0.009161443, 0.010487621, -0.030069023, 0.00020742652, -0.003667284, 0.050665356, 0.012652807, 0.056836136, -0.013518881, 0.0056734644, 0.03161172, 0.020988774, -0.017619202, -0.0046991305, 0.0030380269, -0.015887054, 0.0019232943, 0.019216027, 0.012131808, 0.0046619163, -0.0012229919, -0.012179172, 0.011191306, 0.018918315, 0.010440257, -0.009330599, -0.023370478, -0.027213683, 0.005433264, 0.01132663, 0.012213003, -0.043033075, -0.011935589, 0.03123281, 0.01626596, 0.021286486, -0.00908025, 0.04400741, -0.006427896, 0.03464298, 0.013119675, 0.00060472975, -0.009641845, -0.029067624, -0.016293027, 0.01163111, 0.03134107, 0.005071272, 0.0057952562, 0.006353468, -0.019892648, -0.014777396, 0.008701342, -0.022057833, 0.0012322954, 0.001425978, -0.027660253, -0.014209034, -0.014953317, -0.043384917, -0.043953277, -6.100158e-05, 0.0057174447, 0.014899187, 0.011712303, -0.006285806, -0.029365337, -0.026821243, 0.011989718, 0.018512342, -0.036321, 0.022910375, 0.013613608, 0.00107921, -0.03207182, -0.01883712, -0.0055144583, -0.026699452, 0.031151615, 0.009858363, -0.030529125, 0.024764316, 0.00382629, 0.020379815, -0.004682215, -0.027687319, 0.022517936, 0.015954716, 0.0062316763, -0.0141549045, -0.020055037, -0.012747534, 0.002226082, -0.0096012475, 0.017524475, -0.01171907, -0.023113362, -0.01642835, 0.028959366, -0.009303534, 0.018634133, 0.023911774, -0.024453072, 0.010257569, -0.031638782, -0.00284519, -0.025089094, -0.027768513, 0.016496012, -0.021638328, -0.012849026, -0.010724437, 0.008572784, -0.0018945379, -0.014993914, -0.010440257, 0.017930448, -0.02422302, -0.02124589, -0.005149083, -0.0015037894, 0.014100775, -0.0020349366, -0.019919712, -0.010873294, -0.014655604, -0.0021228974, 0.02292391, -0.004286392, -0.028120356, -0.02730841, -0.004259327, -0.016739596, -0.008484824, 0.0047532604, 0.030150218, 0.0031445946, -0.02142181, 0.0078082024, -0.020515138, 0.013688036, 0.025779247, 0.004259327, 0.0016881686, 0.031178681, -0.012233302, 0.0027217066, 0.006512474, 0.016496012, -0.021218825, 0.022003705, 0.005686997, -0.02472372, 0.012652807, -0.018458212, -0.023641126, -0.030880967, -0.012625742, 0.0022734455, -0.00028988966, -0.012294197, -0.00872164, 0.0018167265, 0.009723039, -0.010785334, -0.027876772, 0.027957967, -0.0021415043, -0.008139746, 0.011116877, 0.008281837, 0.009344132, -0.030069023, 0.01418197, -0.017037308, -0.018674731, 0.011502552, -0.0010969712, 0.00363007, -0.01191529, 0.0059068985, 0.020894047, 0.0071857115, 0.009087016, -0.012916689, 0.0067188432, 0.019053638, 0.0040292763, -0.0027132488, 0.0033408145, 0.0205828, -0.0036097714, -0.0066274996, -0.03940639, -0.033885162, -0.031990625, -0.030529125, -0.014317294, 0.025616858, 0.004320223, -0.0028705632, -0.011055982, -0.0051524662, -0.042978946, -0.0034067852, -0.022314949, 0.018593537, 0.055482894, 0.031909432, 0.008363032, 0.020880515, -0.0040394254, 0.02904056, -0.015819391, -0.0064651105, 0.04008301, -0.044900548, 0.025468003, 0.002361406, -0.032667246, -0.0075104893, 0.004810773, -0.019446079, -0.007889397, 0.025468003, -0.010129011, -0.010122245, 0.009973389, 0.011319864, 0.007097751, 0.0009667218, 0.0028857873, -0.021381212, 0.011286032, 0.017172633, 0.018241694, -0.014249631, 0.0071248156, 0.01043349, -0.016279493, -0.004976545, -0.0020772254, 0.016577207, 0.00088045263, -0.020433944, 0.028553393, 0.01710497, -0.0022886693, 0.038621508, -0.001913145, -0.011610811, -0.015914118, 0.000803487, -0.0220849, -0.0023174258, 0.022802116, -0.024818446, 0.0150074465, 0.006549688, 0.006417747, -0.011143942, -0.0021042903, -0.00661735, 2.7461285e-05, -0.003697732, 0.015548743, -0.010129011, -0.011401058, -0.010392893, -0.008701342, -0.011563447, 0.020433944, -0.005453563, 0.015372822, -0.027822642, 0.020880515, 0.013755699, 0.021164695, -0.0024476752, 0.023857646, -0.00021440418, -0.0034879795, -0.021814251, 0.22474632, 0.009675676, 0.016455416, 0.0048006237, -0.0210835, -0.014939784, 0.001965583, 0.0046585333, -0.03599622, -0.0023681724, -0.03561731, -0.0060963524, -0.025833378, 0.0034710641, 0.0031632017, -0.003241013, -0.039839424, -0.012436288, 0.014939784, 0.013099376, -0.013410621, 0.017971044, -0.015088641, -0.007212776, -0.00010292035, 0.012808429, -0.0066917785, 0.0151969, 0.005507692, -0.006346702, -0.014601474, -0.034237005, 0.0078488, -0.0023563316, -0.016279493, -0.008518654, 0.0038465885, 0.0046314686, 0.018404081, 0.016347155, 0.01760567, -0.008220941, 0.001086822, -0.036862295, -0.00024379489, 0.014303761, -0.014709733, -0.0073142694, -0.020948175, -0.00667148, -0.030096088, -0.010968021, 0.0056125685, 0.024750784, -0.009202041, 0.0013760773, -0.03169291, 0.04273536, -0.021963106, 0.01710497, -0.019892648, -0.0019300604, -0.013004649, 0.03207182, -0.01721323, 0.02276152, -0.022490872, 0.027484331, 0.012456587, -0.041030277, -0.022274353, -0.010751503, -0.015629938, -0.005961028, -0.027430203, -0.019540805, 0.015738197, 0.02522442, -0.0065057077, 0.02220669, -0.0014361273, -0.020230958, 0.016644869, 0.011570213, -0.009898961, -0.011759668, 0.0066613303, -0.022747988, -0.006674863, -0.0024493667, 0.004844604, -0.018404081, -0.02836394, 0.0077743717, -0.007855566, -0.009188509, 0.008471291, -0.0111574745, -0.007686411, -0.022802116, -0.007233075, 0.05629484, 0.017632734, 0.011705537, -0.012815195, 0.008390096, -0.0019249858, 0.011962653, 0.0011747826, -0.03223421, 0.0045198263, -0.022477338, 0.017808655, -0.019865584, 0.008153279, 0.019933244, -0.0033272821, 0.01068384, 0.025819845, -0.005094954, -0.017673332, -0.026821243, -0.020894047, 0.010528218, -0.013803062, -0.016563674, 0.0024172273, -0.013322661, -0.025711585, -0.015508146, -0.0024848895, -0.002094141, 0.029121755, -0.013018182, -0.010663542, 0.0039819125, 0.0259687, -0.004354054, 0.0065970514, 0.01603591, 0.020325685, 0.006810187, 0.009797467, -0.011475487, 0.029635986, -0.016847854, 0.010467322, -0.0047600265, -0.018958911, -0.027714383, 0.0013160273, 0.00019801727, -0.0035454924, -0.02982544, 0.009005821, -0.007659346, -0.016915517, -0.03153052, -0.002980514, 0.019486675, -0.016076507, 0.002094141, 0.043195464, -0.016577207, 0.004614553, -0.003093848, -0.17310663, 0.008214175, -0.0033797203, -0.01626596, 0.009919259, -0.001803194, -0.010244037, 0.025955169, -0.024601927, -0.011644642, 0.0054264977, -0.017429749, -0.02270739, 0.0047701756, -0.008511888, 0.0020400113, 0.0006901531, 0.031909432, 0.021327084, 0.001803194, 0.03588796, -0.03713294, 0.008796069, -0.029419467, 0.015900586, -0.01698318, -0.005230278, -0.0064042145, -0.016211832, -0.011563447, 0.0068135704, 0.011563447, 0.024358343, 0.013897789, 0.018295823, -0.0034135513, 0.018146966, -0.0068609337, -0.025183821, 0.0303938, 0.0068304855, 0.010196674, 0.01141459, 0.013214402, 0.01772746, 0.019256623, 0.010237271, -0.016496012, -0.0061369496, -0.022233754, 0.00809915, -0.026780646, 0.015278094, 0.015183368, 0.009547118, 0.018174032, 0.020975241, 0.0010200057, 0.010900359, -0.016915517, 0.008911095, -0.012991117, 0.022964505, -0.02299157, -0.004979928, -0.036591645, -0.020636931, 0.008119448, -0.028066225, 0.0128760915, -0.024398942, -0.02236908, -0.008532187, -0.028905235, 0.011908524, -0.0022700625, -0.023505801, 0.021814251, 0.026117558, 0.0012094595, -0.012916689, 0.007842033, -0.0031530524, 0.01799811, -0.0068677, -0.008396863, -0.007916462, 0.026591193, -0.00583247, -0.0049968436, 0.01974379, -0.011928823, 0.025928104, -0.025143225, -0.006772973, -0.0032731525, -0.004242412, -0.011319864, -0.018674731, -0.00037890757, 0.015968248, -0.0060726707, -0.016008845, -0.003339123, -0.010568815, 0.006448195, -0.0023495653, 0.015088641, 0.020217426, -0.016496012, -0.025251484, 0.018688263, 0.021259421, -0.0035928558, -0.011881459, 0.025576262, -0.013951918, -0.015223965, -0.01034553, -0.0069285957, 0.059109583, -0.0012796589, 0.0191213, 0.011367227, -0.00186409, 0.0015849839, -0.10035638, -0.01289639, 0.007720242, -0.0021381213, -0.022680325, 0.029690115, -0.021354148, 0.038188472, -0.0018573238, 0.0490144, -0.036510453, -0.0103049325, -0.03656458, 0.0098786615, 0.015440484, -0.008620148, -0.039568778, -0.021814251, -0.022139028, 0.035346664, -0.018404081, 0.0010758268, 0.014479683, -0.009377963, -0.0024747401, -0.017132035, -0.0279309, 0.02730841, 0.027213683, -0.0115972785, 0.0034355414, -0.0006580136, -0.0033814118, 0.0015097099, 0.0016771735, -0.0007024168, -0.011265734, -0.00872164, 0.030014893, -0.026821243, -0.016888453, 0.00065336184, -0.0135865435, -0.028039161, 0.010007219, -0.012977584, -0.015129238, 0.03464298, 0.010927424, -0.02142181, -0.03510308, -0.021516537, -0.013410621, -0.00886373, -0.015548743, 0.022626195, -0.0051829144, 0.005944113, -0.023952372, -0.022463806, 0.006837252, -0.004875052, -0.0067662066, 0.00863368, -0.0017296115, 0.01974379, -0.0274708, -0.0045367414, 0.013451219, 8.457759e-05, 0.010947723, 0.016455416, -0.011475487, 0.022978038, -0.04373676, 0.016414817, -0.023032168, 0.012321263, 0.0077134757, -0.008714874, -0.014709733, -0.0013227934, -0.0027081743, -3.3223132e-05, 0.021448875, 0.0048885844, 0.0029585238, 0.014141372, 0.00022053605, -0.021435343, 0.02606343, 0.012118276, -0.0017862786, 0.005497543, -0.015995312, 0.012889624, -0.008958458, 0.013173805, 0.0011494093, 0.0075037233, -0.003633453, -0.010189908, -0.06149129, 0.027660253, -0.003180117, 0.006387299, 0.00039709176, 0.0076728784, 0.014506747, -0.026956568, -0.011076281, 0.033343866, -0.013451219, 0.027551994, -0.014452618, -0.0191213, -0.02836394, -0.0011096579, 0.029933698, 0.020379815, 0.019676128, 0.021475941, 0.021787185, 0.008024721, -0.013403855, 0.0020704593, 0.0010479162, -0.0021939424, -0.010467322, 0.004069873, -0.017402684, -0.02618522, -0.006982725, -0.008302135, -0.0040800227, -0.005751276, 0.0011198072, -0.022964505, 0.012544547, 0.020055037, 0.036266867, 0.010886827, 0.018174032, -0.05824351, 0.003185192, -0.0009531894, -0.00886373, 0.014425552, -0.008281837, -0.011854394, 0.011245436, 0.018214628, 0.018133434, 0.0077473065, -0.034101684, -0.009540351, -0.002094141, -0.00060768996, 0.0025018048, -0.013701568, -0.0023140428, 0.010210206, 0.031151615, 0.02019036, 0.027227215, -0.010359063, -0.002584691, -0.008674277, -0.03856738, -0.0018945379, 0.010812398, -0.019689662, 0.013660971, -0.029744245, -0.013755699, 0.003301909, 0.012774598, -0.0065801363, -0.016279493, 0.0035827064, -0.024250085, 0.008329201, 0.0029534493, -0.013884257, 0.009513287, -0.0019977225, 0.013836892, 0.013282063, 0.00056963, 0.015832923, -0.007659346, 0.01039966, -0.010825931, 0.0123009635, -0.0014048336, 0.016929049, 0.002980514, -0.0024713571, -0.00215842, 0.013870724, 0.03629393, -0.0054941596, 0.020109167, 0.020379815, 0.014736799, 0.0044386317, -0.014276696, 0.022328483, -0.023911774, -0.032342467, -0.008755472, 0.01216564, -0.018539406, -0.0038432055, 0.011570213, 0.011455188, -0.025522131, 0.023641126, 0.004313457, -0.008390096, -0.03196356, 0.0098921945, 0.007963825, 0.007984124, 0.01632009, -0.010521451, 0.013755699, 0.0016814023, 0.025413873, -0.0042728595, 0.015778795, -0.004783708, -0.021124097, 0.0117326025, -0.020176828, -0.0035048951, -0.00790293, 0.034697108, -0.0077270083, 0.023614062, -0.011692005, 0.053480096, 0.0245072, -0.0161983, -0.0069218297, 0.0068338686, 0.021178227, -0.009019353, -0.005331771, 0.02186838, -0.0027741448, 0.013525647, 0.023275752, -0.0038804195, -0.040001813, -0.002995738, 0.0025288698, -0.0140060475, 0.04065137, -0.027660253, 0.014263164, 0.02299157, 0.003636836, 0.0044690794, -0.034399394, -0.015941182, -0.008308901, 0.019310754, -0.015115706, 0.012355094, -0.01772746, -0.008782537, 0.0030025044, -0.013106142, -0.01592765, 0.02540034, -0.001260206, 0.008701342, -0.0245072, 0.014601474, -0.016076507, 0.0042627105, 0.011576979, -0.0026777263, -0.036077414, 0.01878299, 0.008741939, 0.003731563, -0.0107921, -0.022639727]" 13748028,"CloudPets teddy bears leaked and ransomed, exposing kids' voice messages",https://www.troyhunt.com/data-from-connected-cloudpets-teddy-bears-leaked-and-ransomed-exposing-kids-voice-messages/,500,1488229421,169,0x0,"[-0.0059303856, -0.009343437, 0.02770399, -0.03233908, -0.006609666, 0.013046182, -0.0044652703, -0.023841415, 0.014091741, -0.031113712, 0.009263522, 0.021084335, -0.025199976, -0.01221373, 0.008484347, 0.02065812, 0.01549026, -0.0029402191, 0.0106687, -0.022962345, -0.017954316, 0.023135496, -0.01239354, 0.0019878945, -0.015210556, -0.021723658, 0.018340575, -0.008717434, 0.0044686003, -0.004798251, -0.0012511748, 0.0015042401, -0.028369952, -0.012147134, -0.028503144, -0.005251105, 0.0132792685, -0.030767413, 0.008311197, -0.0015217216, 0.011587727, 0.000877404, -0.0081380475, -0.020871228, -0.0106687, 0.028929358, -0.007845025, -0.001609129, 0.002788713, -0.008630859, 0.029195743, 0.02119089, -0.02254945, -0.02081795, 0.0034230412, -0.0016415946, -0.014331487, -0.004488579, 0.019685816, -0.013838676, 0.015197237, 0.036228295, -0.009509928, -0.006852742, -0.0067162197, -0.006559719, 0.0035995208, 0.009723035, 0.00086824707, 0.00619677, 0.031246904, 0.03803971, 0.038812224, -0.013545653, 0.008444389, 0.024400823, 0.0017864412, -0.008164685, -0.021577146, 0.022975665, 0.021483911, -0.019845648, -0.017048609, 0.026598494, 0.022349661, -0.009250202, 0.012353582, 0.0026288822, -0.003231577, -0.003526265, 0.005817172, 0.029728513, -0.004098992, 0.008151366, 0.007485405, 0.024853677, -0.008930541, 0.030607581, -0.017314995, -0.0134990355, 0.0055174893, -0.00482156, -0.009756333, -0.0012927974, -0.0066729323, 0.023228731, 0.01169428, -0.008764051, 0.013605589, 0.0072190207, -0.0023208752, 0.038146265, 0.009869547, -0.019033173, -0.00894386, -0.009529906, -0.0044119935, -0.0063599306, -0.026252195, 0.006010301, 0.02717122, 0.02563951, 0.005074625, -0.009816269, 0.024640568, -0.0014601202, -0.012580009, 0.004761623, -0.00034629987, -0.024560653, -0.019019855, -0.019992158, 0.013638888, 0.005743916, -0.0015267163, 0.010422294, 0.0103224, 0.0077917473, 0.00464841, -0.010355698, -0.003546244, 0.007825045, -0.019193005, 0.012939628, -0.004002427, 0.023308646, -0.00214939, 0.031699758, 0.0012328608, 0.04581814, -0.011301363, -0.0034696583, -0.0034530093, -0.015530217, 0.007691853, 0.028716251, 0.00499471, 0.03031456, -0.020924505, 0.01050887, -0.02288243, 0.031619843, 0.0046683885, -0.001273651, 0.0123402625, 0.03889214, -0.0026338769, -0.0045385263, 0.0120538995, -0.004691697, -0.012859712, 0.015903156, -0.031966142, 0.0036361488, -0.02649194, 0.007119126, -0.025506318, 0.01567673, -0.020738035, -0.042967822, -0.022922387, 0.0141450185, 0.0028186813, 0.019685816, -0.005574096, -0.0018580321, -0.010142591, 0.00499471, -0.0079249395, 0.0022043318, 0.0042488333, 0.032205887, -0.0031283533, -0.022136554, -0.6384704, -0.0077651087, 0.022682643, -0.0047582933, 0.00013163142, 0.011887409, -0.007412149, -0.0013494041, -0.02288243, 0.040969938, -0.005644022, 0.017448187, 0.011854111, -0.0032049387, -0.015943114, -0.004734985, 0.0037260535, -0.0058304914, 0.018180743, 0.0126266265, -0.014051784, 0.022935707, -0.008191324, 0.00395914, -0.019339517, 0.0094499905, 0.0139319105, -0.010961723, -0.004661729, -0.0045185476, 0.0009165292, 0.014238252, -0.00010655381, 0.002475711, 0.04560503, -0.019912243, -0.00498805, 0.03135346, 0.01719512, 0.020764673, -0.04693695, 0.0047416445, 0.0069060186, 0.021990042, 0.005404276, 0.00929682, 0.018580321, -0.004428643, -0.0078050666, -0.009549885, 0.0119806435, -0.027224498, 0.0050679655, -0.020351777, -0.0014301519, -0.0035995208, 0.0216837, -0.020764673, 0.007944918, 0.007318915, -0.007278957, -0.005903747, -0.0066196555, -0.005077955, -0.029888343, 0.021297442, -0.011414576, -0.006569708, -0.015064045, -0.02204332, 0.007538682, 0.023308646, -0.030421112, -0.017940998, 0.0015691713, 0.032578826, 0.020178627, -0.019739093, -0.022616046, 0.008664156, 0.01823402, -0.0034563392, -0.021936765, -0.0037227236, 0.024280949, -0.0081447065, 0.00550417, 0.0074787457, -0.02649194, -0.037080724, 0.018660236, 0.0206448, -0.025346488, -0.024906952, 0.0012536722, 0.007865003, -0.014038464, -0.010808552, -0.0020345119, -0.02630547, -0.0042055454, 0.0010955064, -0.0045418562, 0.00012611643, 0.016449245, 0.019206325, -0.011641003, 0.00653641, 0.03268538, -0.05508832, 0.015024087, 0.002305891, 0.020098712, -0.021790253, -0.01050221, -0.023015622, 0.034283686, 0.002768734, 0.004521877, -0.013099459, -0.0048748367, -0.010009399, 0.010075995, 0.0031549917, -0.014464679, 0.01325263, -0.0006035274, -0.017115206, 0.02460061, -0.0042588226, 0.008724093, -0.033990666, 0.0064764735, -0.01411838, 0.024853677, 0.009796291, 0.023095539, -0.012866372, 0.017514782, 0.011161512, -0.031060435, -0.009789631, 0.005317701, 0.0043820255, -0.009283501, -0.017940998, 0.0038159583, -0.008717434, -0.0122670075, -0.0063199727, 0.01186743, -0.0048781666, 0.02924902, -3.18933e-05, -0.008131388, 0.004202216, -0.0014035135, -0.027211178, -0.010295762, -0.023215411, 0.007898301, 0.033990666, -0.0011221447, 0.004888156, 0.005747246, 0.013312566, 0.015543537, -0.010269123, -0.0023858063, -0.014877575, 0.009350097, -0.024813717, -0.0041555986, 0.023721542, -0.002151055, 0.0009889526, 0.0024640567, -0.030341197, 0.0052211364, -0.008530964, -0.003969129, 0.002514004, -0.020524926, -0.019765731, 0.020924505, -0.008690795, 0.01840717, 0.027810544, -0.04144943, 0.01772789, -0.004435302, 0.014424722, -0.031992782, 0.030261282, -0.030154727, -0.04179573, 0.03321815, 0.019765731, 0.016302733, 0.03167312, -0.00029926636, 0.0014326492, 0.03577544, -0.006489793, -0.0029485438, -0.020285182, -0.0106753595, -0.02754416, 0.022349661, 0.0056906394, 0.014224933, -0.0014393089, 0.0064165373, -0.010682019, 0.009183606, 0.03028792, 0.00035712175, 0.000554829, -0.018886663, 0.041369516, 0.0049147946, -0.019712454, 0.037933156, 0.023721542, -0.013052842, 0.026039086, -0.013439099, 0.0036194997, -0.006466484, -0.019858966, -0.0063399514, 0.016835501, 0.0010713652, 0.019898923, -0.0007529525, 0.01722176, 0.010642062, 0.0050646355, 0.020231904, 0.019139728, -0.00019458556, 0.03265874, 0.01927292, -0.0051345616, 0.010535507, 0.025239933, 0.029781789, 0.0011079931, -0.022682643, 0.012659924, -0.031859588, -0.0036428084, -0.020018797, 0.011734238, 0.017128525, -0.01567673, -0.0033181522, -0.013891953, 0.012593328, 0.015530217, -0.010182548, 0.0009781306, 0.002545637, 0.003559563, 0.003839267, 0.011607706, -0.0007046703, -0.010448933, -0.01703529, 0.0034163815, 0.0018447128, -0.021430634, 0.022189831, -0.008930541, 0.022256427, -0.004079013, 0.00636326, 0.002530653, 0.01993888, 0.029382212, -0.0046417504, -0.044459578, 0.0013152736, 0.017980956, -0.0059636836, -0.028103568, -0.03388411, -0.021324081, -0.0046517397, 0.00996944, -0.010428954, 0.01719512, 0.021563826, 0.0055541173, 0.01188075, 0.010295762, 0.009736354, -0.012599988, 0.008098089, 0.018620279, -0.014091741, 0.012500093, -0.027251137, -0.018300617, -0.0026521909, 0.002377482, -0.02770399, -0.0171818, -0.019193005, -0.02669173, 0.00030405296, 0.000412896, -0.022243107, -0.00039978488, -0.03098052, 0.016489202, -0.018580321, -0.00911701, 0.0020594853, 0.0042788014, -0.020378416, -0.024374183, -0.022309704, 0.037613496, 0.12264343, -0.003802639, 0.0015616793, 0.014278211, -0.035216033, -0.017994275, -0.022376299, -0.041103132, 0.047949214, 0.0066729323, 0.010215847, 0.004665059, 0.012932968, -0.0192596, 0.003116699, -0.00318163, 0.013225991, 0.005380967, -0.019592581, -0.020032115, -0.006246717, 0.012759819, 0.012506753, 0.024214353, 0.022402938, -0.013039522, 0.014837618, 0.021790253, -0.0010355698, -0.016635714, -0.009030435, 0.015889836, 0.010355698, -0.0100227175, -0.014464679, 0.019699136, -0.0033830835, 0.021084335, -0.00071174616, 0.00092152396, 0.028449867, 0.024400823, 0.010775254, -0.01170094, -0.008231281, 0.0019429422, 0.021990042, 0.016942056, 0.009370076, -0.02340188, 0.038492564, -0.015303791, -0.0045418562, -0.009057074, -0.003168311, -0.021563826, 0.009749673, -0.011514471, 0.009077053, 0.0036860958, -0.030527666, 0.0040224064, -0.011454535, -0.01497081, -0.017634654, -0.021577146, 0.0016540814, 0.008897243, -0.014957491, -0.0085775815, -0.010721977, -0.0122670075, -0.051731873, -0.016968694, 0.03870567, 0.007845025, 0.023028942, -0.005477532, -0.019885605, 0.015183917, 0.008071451, -0.036947533, 0.0029851715, -0.011407917, 0.012433497, -0.0021627094, 0.00037647624, -0.012599988, -0.010635402, 0.028556421, -0.0040890025, 0.023548393, 0.020604843, 0.0016532489, 0.010708658, 0.023801457, 0.01014925, 0.019525986, 0.022682643, -0.02582598, -0.0147976605, -0.015876517, -0.02425431, -0.0047949213, 0.030394474, 0.016955376, -0.017994275, 0.0024723813, 0.010975042, -0.023122177, -0.003409722, -0.0032798594, -0.0014817639, -0.0036727765, 0.010815212, 0.0019462719, 0.00214939, 0.00757198, 0.009303479, -0.0313801, 0.009383394, -0.054981764, 0.026478622, 0.01703529, -0.0141450185, 0.018167425, 0.033617727, -0.010515529, -0.013865314, -0.01324597, 0.014704426, -0.0018813406, 0.000783337, -0.02031182, -0.02461393, -0.008757391, -0.00066346396, 0.030527666, -0.0028353303, -0.007019232, -0.017288355, 0.012233709, -0.00825792, -0.023801457, 0.0378266, -0.030021535, -0.009410033, -0.004075683, -0.0068594012, 0.052371196, -0.015250514, 0.024360865, -0.009549885, -0.017061928, 0.027490882, -0.033990666, 0.0094433315, -0.00378599, 0.041582625, -0.0006110195, 0.05317035, -0.00022434571, -0.0052610943, 0.0073721916, 0.013985188, -0.011754217, -0.0014875911, 0.010049356, -0.008957179, -0.002374152, -0.029781789, 0.021430634, 0.011887409, 0.008337836, -0.012093857, 0.012619967, -0.00310005, 0.002738766, -0.009196926, -0.012773138, -0.021976722, -0.0047416445, 0.009736354, 0.031992782, -0.021310762, 0.017687932, 0.018473767, -0.00039812, 0.008957179, -0.01788772, 0.008191324, -0.027304413, 0.014810979, 0.004095662, 0.020857908, 0.009516587, -0.017847763, -0.012773138, 2.1279544e-05, 0.019126408, 0.0037626813, 0.021630423, -0.018194063, 0.016662352, -0.01583656, 0.004734985, -0.0065763677, -0.018660236, -0.00395914, -0.010662041, -0.03308496, -0.015623452, -0.02770399, -0.015623452, -0.007125786, -0.009929483, -0.021483911, 0.025612872, -0.011481172, -0.0199522, -0.015769964, 0.006436516, 0.021071015, 0.011814154, 0.03116699, 0.025013506, 0.010602104, -0.023415199, -0.025719425, 0.0032099334, -0.016622394, 0.013099459, 0.039371632, -0.033005044, 0.00516453, 0.0433674, -0.013439099, -0.00998942, -0.034017302, -0.003268205, 0.019246282, -0.00585047, -0.024174396, -0.014744383, -0.009370076, 0.02547968, -0.018367212, 0.0060835565, -0.018380532, -0.01842049, -0.008637518, 0.025919214, -0.00705253, 0.028982636, 0.010455593, 0.010275783, 0.014398083, -0.017474825, -0.015303791, -0.0024507376, -0.005420925, 0.0062533766, 0.0023791466, -0.0053410097, 0.00076876907, -0.00912367, 0.013545653, -0.00020946564, 0.008883924, 0.02906255, 0.0026588505, -0.00240745, 0.009802951, -0.02013867, 0.027331052, -0.010475571, -0.0039458205, -0.018540362, -0.013485717, -0.023042262, 0.024294268, 0.0019862296, 0.0020894536, -0.014904214, -0.0035995208, -0.017821124, -0.006160142, -0.005810512, 0.009430012, -0.0072656376, -0.015796602, 0.006463154, 0.0062866746, -0.0071857222, -0.036041826, -0.0053243604, 0.00027366847, 0.016915416, -0.016915416, 0.01702197, 0.006213419, 0.0069659553, -0.0105288485, 0.02083127, 0.012992905, 0.0067361984, 0.011261405, -0.0081447065, -0.015610133, -0.004332078, 0.0051345616, 0.02802365, 0.005557447, 0.007418809, 0.011660983, 0.013412461, -0.0023874713, -0.016915416, 0.004691697, 0.00998942, 0.028156843, -0.027677352, 0.010821871, -0.011907388, 0.026625132, -0.037160642, 0.00533435, -0.0013385823, -0.016555797, -0.013359183, -0.0025589564, 0.008277899, -0.014504638, -0.003835937, -0.021084335, 0.0071990415, -0.015397025, -0.0029119158, 0.003479648, 0.02563951, 0.011827473, 0.00011498238, 0.027490882, 0.0026422015, 0.0072989357, -0.00056856446, -0.008510985, -0.028609697, -0.040597, -0.0113280015, -0.019352835, 0.034816455, -9.594005e-05, -0.03148665, -0.028316675, -0.008510985, -0.012753159, 0.0033431258, -0.019592581, 0.014211615, 0.02667841, 0.0054608826, 0.021976722, 0.020245224, 0.0012112171, 0.028263398, -0.013945229, -0.007845025, 0.0050379974, -0.019006535, 0.013798718, -0.0059170662, -0.042568248, -0.00028428223, 0.015903156, -0.001480099, -0.017354952, 0.028876083, -0.0077251513, -0.0045018983, -0.016888779, 0.010475571, 0.0038126286, 0.0005019683, 0.016888779, -0.021031057, 0.016662352, 0.0064798035, -0.0012961272, -0.028529782, -0.014744383, 0.01670231, -0.031966142, 0.0023192102, -0.016982013, -0.007938258, 0.014810979, -0.00998942, 0.028716251, 0.0021227517, -0.006010301, 0.01736827, 0.0011820813, -0.037799962, -0.025959171, 0.019579262, 0.013785399, -0.006959296, 0.012247029, -0.03652132, 0.02735769, -0.008364474, 0.0075919586, -0.024893634, -0.009103691, -0.013112778, 0.0069060186, -0.012959607, 0.02205664, 0.00080872676, -0.01840717, 0.0062034293, -0.008617539, 0.01566341, 0.0045185476, -0.005197828, 0.014677787, -0.026478622, -0.00042496657, -0.0062433872, 0.00066346396, -0.01842049, 0.0313801, 0.015903156, -0.001756473, -0.012879692, 0.21864842, 0.002858639, -0.023974607, 0.047203336, -0.0024690516, -0.033777557, 0.016142903, 0.010741956, -0.017328313, -0.015010768, -0.030261282, 0.013419121, 0.014877575, 0.004042385, 0.009829589, -0.018620279, -0.020365097, -0.032285806, -0.016955376, -0.01993888, 0.005933715, -0.014198295, -0.005817172, -0.011088256, 0.0062933345, -0.003769341, -0.019659178, -0.0022859122, 0.0041589285, 0.0126266265, -0.015889836, -0.010262463, 0.01755474, 0.00028011997, -0.018953258, -0.020857908, 0.0074321283, -0.0049281134, 0.01807419, 0.00292357, -0.0052377856, -0.009143649, 0.0023491785, -0.015783282, 0.004368706, 0.013985188, 0.0046883677, -0.027730629, -0.007585299, 0.0062167486, 0.0009689737, -0.010395656, 0.0038459266, 0.016609075, -0.015823241, 0.015117321, -0.020271862, 0.022815835, -0.03012809, 0.0026388715, -0.010422294, 0.003889214, 0.006163472, 0.036254935, -0.035722163, 0.016462563, 0.0029102508, 0.024147756, 0.002375817, -0.027943736, -0.009616481, 0.000412896, -0.017874401, 0.01908645, -0.034150496, -0.0213374, 0.022256427, 0.016395967, 0.014171656, 0.013785399, -0.0030550975, -0.012813095, -0.016409287, 0.0036927555, -0.0068394225, -0.028529782, 0.011887409, -0.032925125, -0.0192596, -0.011454535, 0.009330118, 0.006419867, -0.02167038, 9.007386e-06, -0.00705253, 0.0069393166, 0.011321343, -0.005973673, 0.011301363, 0.011674302, -0.0055974047, 0.016196178, 0.024667207, 0.00929682, -0.018833386, 0.015876517, 0.009223564, 0.005707288, -0.032046057, -0.008517645, -0.018766789, -0.015290472, 0.020484969, -0.0030917253, 0.009856227, 0.026372068, -0.00034900534, -0.009802951, 0.02203, 0.004591803, 0.022456216, -0.026838241, 0.0063599306, 0.013206013, 0.0044119935, -0.029382212, -0.006529751, 0.00084077613, -0.015503579, -0.015583495, -0.0056939693, -0.003872565, 0.02393465, -0.0017631325, 0.001559182, -0.005477532, 0.040969938, -0.0054309145, 0.016822182, 0.022762557, 0.0071857222, 0.0050979336, 0.021990042, 0.000989785, 0.01083519, -0.023681585, 0.02547968, 0.0064065475, -0.004435302, -0.028876083, -0.046457462, 0.019166367, 0.017954316, -0.015210556, 0.03271202, 0.0111082345, -0.016622394, 0.00014807233, -0.009676417, -0.004458611, -0.04885492, 0.0012836404, 0.034496795, 0.014131699, -0.018154105, -0.028609697, -0.16878124, 0.019565944, -0.0037094045, -0.034310326, -0.008510985, 0.0063399514, 0.0073921704, -0.0029219051, -0.007691853, -0.017115206, 0.017967636, 0.0007479578, -0.0039491504, -0.025932534, -0.0031882897, 0.011374619, -0.018580321, 0.022362981, 0.037213918, 0.009782972, 0.030154727, -0.013958549, 0.034496795, -0.008810668, -0.013838676, 0.0032282474, -0.0074321283, 0.00012903, -0.010135931, -0.042648163, -0.012113836, -0.018007593, 0.028476505, 0.03098052, 0.009743013, -0.0046717185, 0.004388685, -0.02547968, -0.004784932, 0.01411838, 0.0072656376, 0.013345865, 0.006246717, 0.02496023, 0.014704426, 0.03321815, 0.0046017924, -0.013705484, -0.0045018983, -0.031859588, 0.016382648, -0.022682643, 0.008284559, -0.012853053, -0.010235826, -0.00946997, 0.022762557, 0.011887409, -0.0045185476, 0.0023641626, -0.012293646, -0.03841265, -0.010082654, -0.006260036, -0.014544595, -0.021776935, 0.007951578, 0.0023042262, -0.039451547, 0.021044377, -0.023228731, 0.02649194, -0.013472397, -0.014398083, 0.014211615, 0.013918592, -0.01670231, -0.01738159, 0.0075653205, 0.015330429, 0.006073567, -0.0024740463, -0.03628157, 0.0017514782, -0.01632937, -0.0073721916, 0.010189208, 0.02735769, -0.019898923, 0.0007246491, 0.008550943, -0.017061928, -0.005184509, -0.0014776016, 0.0077318107, -0.0013127762, 0.014477999, 0.004238844, 0.009396714, -0.016049668, 0.0021960074, -0.008291218, 0.005284403, 0.0005693969, 0.01445136, -0.021816893, 0.00292357, 0.017874401, 0.033138234, -0.033617727, -0.010375677, 0.02167038, 0.037427027, 0.011947346, -0.0036194997, 0.023828095, -0.020471651, -0.0055874153, 0.028130205, -0.010548827, 0.039211802, -0.011001681, -0.0069393166, 0.0049347733, -0.04065028, 0.01084851, -0.11230771, -0.010355698, 0.004461941, -0.0036960852, -0.02563951, 0.03148665, -0.00081996486, 0.026039086, 0.0049381033, 0.023308646, -0.03151329, -0.026904836, -0.023188772, -0.006556389, 0.009203585, -0.01979237, -0.0021277464, 0.0017448186, -0.03305832, 0.039025333, 0.020671438, -0.00014703177, -0.010562146, -0.025253253, -0.01102166, -0.019992158, -0.038785588, 0.0066363043, 0.021963404, 0.00036523814, -0.002547302, -0.0079981955, -0.0014817639, -0.015370387, -0.03116699, 0.01928624, -0.0051711896, -0.018140785, 0.0046084523, -0.046697207, 0.007119126, 0.0019079791, 0.013652206, -0.00791828, -0.0063898987, -0.017128525, -0.021883488, 0.01135464, -0.012972926, -0.011547769, -0.008750731, -0.037533578, 0.0017281696, 0.021044377, 0.031859588, -0.0084310705, -0.019579262, 0.025839299, 0.00035857855, -0.008317857, -0.014904214, -0.0042088754, -0.028183483, 0.0043154294, -0.013325886, 0.0030018205, -0.009789631, -0.0037293832, 0.03798643, -0.016982013, -0.0416359, 0.02290907, 0.0074987244, 0.024973549, -0.008178005, -8.418167e-05, -0.0030267942, -0.006453165, 0.009776312, 0.0021277464, 0.011381279, -0.019366154, 0.010788573, -0.0046151117, 0.00080872676, -0.0072323396, 0.008737412, -0.019219643, -0.024813717, -0.013405801, -0.0016499191, 0.008158026, -0.014025145, 0.0030101452, -0.006792805, 0.0039291717, -0.018899981, -0.009183606, 0.011221448, -0.0013360849, -0.006260036, -0.0108951265, -0.04728325, 0.008051472, 0.02442746, 0.007984876, -0.002787048, -0.01719512, 0.012160453, -0.008910562, 0.00092318887, 0.0129196495, 0.00056398596, 0.035429142, -0.02442746, 0.004332078, -0.028183483, -0.023628308, 0.019406112, -0.008977158, 0.0066129956, -0.015743325, -0.006696241, 0.01909977, 0.020271862, 0.029781789, 0.02184353, 0.017528102, -0.016622394, 0.025199976, 0.0042554927, -0.030421112, 0.0098762065, -0.024920272, 0.007958238, 0.007964897, -0.0066462937, 0.011128213, 0.011621024, 0.027810544, 0.025373125, 0.040597, -0.0135722915, -0.03476318, 0.011154852, -0.021364039, 0.008178005, -0.004625101, -0.013825357, 0.007192382, 0.0019379474, 0.014491318, 0.030421112, 0.016782224, -0.032259166, -0.020871228, -0.015210556, -0.0031433373, 0.026465302, 0.0021627094, -0.0063066534, 0.0010056016, 0.027997013, 0.008058132, 0.0077251513, -0.014984129, -0.010408975, -0.008158026, -0.023095539, -0.01187409, 0.02012535, -0.03646804, -0.009356757, -0.013445758, 0.026039086, 0.004508558, -0.009689737, -0.007152424, -0.027237818, 0.021204207, -0.012766479, 0.018740151, 0.02669173, 0.003542914, -0.02461393, 0.005074625, 0.03681434, 0.0129196495, 0.0018830056, -0.011707599, 0.0034629987, -0.0050013694, -0.023601668, 0.004718336, -0.014664467, 0.0013119437, -0.0034363603, 0.048242237, -0.028742889, -0.007638576, 0.011048298, 0.002219316, 0.039531462, 0.00076960155, -0.0060169604, -0.026824921, -0.0043786955, -0.0060902163, -0.017075248, -0.034283686, 0.0067361984, 0.03835937, 0.0030217995, -0.0040823426, 0.018806748, -0.0025706107, 0.0009431677, 0.037400387, -0.0090837125, -0.0150906835, -0.042994462, 0.013785399, 0.011081596, -0.010388996, 0.026718367, -0.023015622, 0.017101886, 0.0130661605, 0.016209498, -0.0056373626, 0.028369952, -0.020711396, 0.0147976605, 0.001058046, 0.00052194716, -0.0012778132, -0.007452107, -0.003839267, 0.007984876, 0.029488767, -0.014331487, 0.07304264, 0.0024906953, -0.0018347234, 0.015064045, 0.0035562334, 0.011654323, 0.013905272, 0.014757702, -0.0045485157, -0.021124292, 0.008304537, 0.016649032, 0.010555486, 7.5909185e-05, -0.014158337, 0.005803853, -0.007971557, 0.010735297, -0.013812037, 0.015423664, 0.025839299, -0.024893634, 0.016782224, -0.018127467, -0.0026322121, -0.0011662648, 0.027144583, 0.02220315, -0.024294268, -0.020258542, 0.008217962, 0.010462252, -0.033537813, -0.026625132, 0.010369018, -0.00027783072, -0.019525986, -0.0065430696, -0.031193627, 0.0035062863, 0.016422605, 0.006493123, -0.02890272, -0.016249456, -0.00070924876, 0.011634344, 0.013432439, -0.035748802, -0.021137612]" 21468788,Indiana Bell moved a functioning building in 1930,https://kottke.org/19/11/the-indiana-bell-moved-a-functioning-building-in-1930,102,1573083387,24,sogen,"[-0.017301109, -0.021988802, 0.017341753, -0.011211173, -0.0072550853, 0.012240839, -0.010167958, -0.0018103842, 0.0090908725, -0.03790799, -0.005476878, 0.029535174, 0.02099978, -0.0014030902, 0.0010211989, 0.004274471, 0.00066217047, 0.025687473, -0.00053303875, -0.021582354, -0.028640991, -0.008765714, 0.021717837, 0.0044065667, -0.017694008, -0.012992767, 0.0339519, -0.020471398, 0.022720408, -0.009145065, 0.0026063437, -0.009416031, -0.039344106, 0.0025707795, -0.020864297, -0.00818314, -0.0059950985, -0.015065649, 0.019943018, -0.031892568, 0.01807336, 0.0073092785, -0.024806837, -0.016555956, -0.018561095, 0.019780438, 0.010079894, 0.0013201071, -0.016434021, 0.0046064034, -0.017423043, 0.032000955, -0.017978521, -0.009449901, -0.013324699, -0.018804964, -0.004752047, 0.017490784, -0.0031652087, -0.024576517, 0.0022320733, -0.01092666, -0.015715964, -0.0127421245, -0.03958797, -0.008237333, 0.0050602695, -0.018100455, -0.0043286644, -0.019888824, 0.04283955, 0.046362095, 0.007675081, 0.008725069, 0.016962403, -0.0014344205, 0.007891852, 0.0037833476, -0.012396645, 0.010438923, -0.0047249505, -0.01776175, 0.006628479, 0.037582833, 0.026839074, -0.007898627, 0.0007332988, 0.008149269, -0.01868303, 0.032136437, 0.010845371, 0.016867565, -0.007715726, 0.02517264, 0.003912056, 0.0072008925, -0.0022134446, 0.021758482, 0.004694467, -0.0062626763, -0.014252754, 0.016244346, -0.017626267, -0.005544619, -0.018737223, -0.009551513, 0.020810105, -0.027475841, 0.010845371, -0.017016595, -0.0075599207, 0.01938754, 0.007288956, -0.020322368, -4.5884095e-05, -0.024359744, 0.0041356017, 0.0026181983, 0.014686298, -0.01316212, 0.015228228, 0.021379132, 0.026961008, 0.015485644, 0.03042936, -0.010032476, -0.024210714, -0.008697974, 0.009754737, -0.012139227, -0.01768046, 0.012301806, -0.008007013, 0.01521468, -0.01961786, -0.0043794704, 0.009707318, 0.014550815, -0.03904604, -0.02757068, 0.008359267, -0.0047317245, -0.0029704527, -0.009930864, -0.002049172, 0.015201131, -0.0046402737, 0.011759877, 0.0036207684, 0.0016317167, 0.008738618, -0.012850511, -0.017355302, 0.015295968, 0.010662469, 0.0036783486, -0.027462292, 0.033166103, -0.0036377038, -0.009246677, 0.010987626, 0.019130122, 0.010886015, -0.004193182, 0.020986231, 0.0056089736, -0.010845371, -0.026459724, 0.00039035882, -0.010642147, -0.0060120337, 0.007647984, -0.03904604, 0.007404116, 0.016799824, 0.011719232, 0.0025013448, 0.00764121, -0.02818035, -0.00455221, -0.0054362332, 0.0067673484, 0.03110677, 0.043354385, -0.025118446, -0.02617521, 0.006706381, 0.011197625, 0.037095096, -0.019157218, 0.016854016, -0.002767229, -0.0074312123, -0.017097885, -0.6468474, 0.004142376, 0.0235604, -0.020200433, 0.0016469585, 0.024075232, 0.011922455, 0.0004991682, -0.037338965, -0.010432148, -0.019319797, 0.013412762, 0.010005379, -0.008677651, -0.022815244, -0.012850511, 0.020755911, 0.007078958, 0.010886015, -0.0052973637, -0.00718057, 0.026161661, -0.023059113, 0.017558526, 0.026541011, -0.010662469, 0.01791078, 0.0039527006, -0.019008188, 0.018845608, -0.006452352, 0.019631408, 0.0037359286, -0.006022195, 0.04416728, 0.00903668, -0.02910163, 0.024982965, 0.021690741, 0.034304157, -0.019712696, -0.057119403, 0.024712, 0.011055368, -0.0058426806, -0.017395947, 0.021907512, -0.027381003, -0.0033650454, -0.016935306, 0.012945348, -0.002865454, -0.01651531, 0.00021200886, -0.00028684177, 0.009050228, 0.023032017, 0.014713394, 0.013568567, -0.03590285, 0.0028535991, 0.008047658, -0.0031516606, -0.019943018, -0.0054802652, 0.0016503456, -0.010913111, 0.0073160524, -0.0014183319, 0.012836962, 0.017450139, 0.037853796, -0.038043473, 0.01281664, 0.008826681, 0.0035056085, 0.012071487, 0.0092805475, 0.03042936, 0.0132976025, -0.011197625, -0.014144368, -0.022070091, -0.017964974, 0.022855889, -0.012748899, -0.034710605, -0.005182204, 0.02239525, -0.014144368, 0.013439859, -0.03641768, -0.0013074056, -0.02393975, -0.016854016, 0.024305552, -0.0074515347, 0.021595903, 0.0028281962, -0.01805981, -0.022178477, -0.014618557, 0.018723674, -0.005639457, 0.027502937, 0.024156522, 0.013216313, 0.030022912, 0.04145763, -0.026662946, 0.0014056305, -0.013426311, -0.013256958, -0.00061475165, -0.0067267036, -0.02400749, 0.024698451, -0.0010965611, 0.0072821816, -0.010425375, -0.011062142, -0.014808232, 0.01805981, 0.010662469, -0.0029602917, 0.01521468, 0.028370025, -0.02091849, 0.009158614, 0.012430515, -0.011461816, 0.014252754, 0.021270745, 0.003063597, 0.021622999, 0.027733257, 0.011563427, -0.027381003, 0.0023032017, -0.022530733, -0.024982965, -0.0017096192, 0.003874798, 0.003973023, 0.008135721, -0.045196947, -0.03343707, -0.002154171, -0.016691439, 0.017653363, -0.027801, 0.0017629655, -3.0562936e-05, 0.012267936, -0.003868024, 0.00907055, 0.0043388256, -0.020010758, -0.0053549437, 0.0057139723, -0.005957841, -0.00021433747, -0.02114881, 0.007227989, 0.024468131, -0.018561095, -0.0010914805, -0.006357514, -0.005795262, -0.023614591, 0.03387061, -0.014767587, 0.006530254, 0.0053210733, -0.015390807, -0.006520093, -0.01378534, -0.0041762465, -0.006780897, 0.002591102, 0.0015309517, 0.008948616, -0.017775297, -0.013927596, 0.011576976, 0.007458309, 0.008440557, 0.001356518, -0.0148895215, 0.0020407045, 0.01467275, -0.0023980394, 0.024955867, 0.00083914446, 0.0355235, 0.02347911, -0.005033173, -0.023018468, 0.0043523735, 0.0033074655, 0.020864297, 0.021826223, 0.009517643, -0.010161184, 0.002961985, -0.00084888225, 0.02154171, -0.017233368, 0.03110677, -0.008399912, 0.006208483, -0.006259289, -0.012559223, -0.0152688725, 0.0069773463, 0.04115957, -0.0037765733, 0.038043473, 0.00029848478, -0.0044946303, 0.010757307, 0.0015207905, 0.015106293, 0.006421868, -0.028153254, -0.025660377, 0.008745392, 0.009544739, 0.0049518836, -0.035929948, 0.0070044426, 0.01567532, -0.025714569, 0.0104931155, 0.012952123, 0.011461816, 0.01112311, 0.007742822, 0.027394552, 0.0038477017, 0.016122412, 0.011692136, 0.021812676, -0.040969893, 0.013141798, 0.024075232, 0.033328682, 0.008081528, -0.020783009, 0.009016357, -0.015688868, 0.008772489, -0.010540535, -0.0014843796, 0.016962403, -0.008135721, 0.034222867, -0.009361837, 0.044817597, 0.023330078, 0.018561095, 0.016704986, 0.030456455, -0.004975593, -0.01227471, -0.0058867126, 0.021392679, 0.008007013, 0.017084338, 0.013141798, -0.009111195, -0.019428184, 0.021650096, -0.0062897727, 0.016704986, -0.008074754, 0.0021761868, -0.0069434755, 0.0055649416, -0.0010466019, -0.007343149, -0.0030432746, -0.020132693, -0.013812436, -0.0024607, 0.0006520093, -0.009341515, 0.00918571, 0.0019170766, 0.013236635, -0.0106827915, -0.008108625, -0.041945368, 0.020078499, -0.0024437648, 0.014442429, 0.006679285, -0.012518578, 0.011597298, -0.026364885, 0.011990197, -0.008901197, -0.012911478, 0.00497898, 0.03877508, 0.005131398, 0.013494052, -0.008162818, -0.015241776, 0.00018237208, -0.006564125, -0.009334741, -0.009565061, 0.024590066, -0.009720866, -0.014794684, 0.024142973, -0.0014386543, 0.049044646, -0.0019543343, -0.014063079, -0.029968718, -0.03923572, 0.010906338, 0.10605566, 0.032569982, 0.017341753, 0.0013158733, -0.018127551, -0.009598931, 0.0064997706, -0.03682413, 0.016881114, 0.0026639237, 0.003251579, -0.019563666, 0.032759655, 0.0033938354, -0.008535394, 0.009341515, 0.003066984, -0.019509474, 0.01938754, -0.014577912, -0.0035157697, -0.0026385207, 0.0044980175, 0.026690044, -0.0037156062, -0.0054497817, 0.0077563706, -0.014564363, 0.004267697, 0.0043354384, 0.018317228, -0.008765714, 0.018588193, 0.028342929, -0.010330537, 0.0015131696, -0.019292701, 0.0016122411, 0.022869438, -0.010262796, 0.039560877, -0.011346655, 0.0062559023, -0.017694008, 0.027462292, -0.00930087, 0.008657329, 0.03481899, 0.0057681655, 0.01169891, 0.036173813, -0.025579087, -0.03365384, -0.02091849, 0.010228925, -0.00663864, -0.0034412544, -0.013981789, -0.0027333584, 0.0026469885, -0.015146938, -0.046470482, 0.022192026, -0.0133111505, 0.007573469, -0.02555199, -0.017978521, 0.004477695, -0.023573946, 0.015323065, 0.009802155, -0.02501006, -0.027801, 0.014862425, 0.06112968, -0.0080544315, 0.001024586, 0.014645653, -0.012105357, 0.036878325, -0.0013946225, -0.0066521885, -0.010140861, -0.007017991, -0.031865474, 0.04763563, 0.019238507, -0.013853081, 0.018953996, 0.008440557, 0.010831822, -0.00078241114, 0.0069367015, -0.011204399, 0.013622761, 0.012525353, 0.011665039, 0.023072662, -0.007614114, 0.0090028085, 0.0042338264, 0.0062288055, 0.023384271, -0.010167958, 0.0010228925, -0.008725069, 0.012633739, 0.014320496, -0.008765714, 0.0012430515, 0.00409157, -0.015526289, -0.009917315, -0.02053914, -0.022029446, 0.015512741, 0.034656413, 0.008237333, -0.0018239325, 0.011475364, -0.0008755553, -0.011326333, 0.005402363, -0.00586639, -0.031946763, 0.014835329, 0.004636887, -0.006025582, -0.026202306, -0.0076683066, -0.012288258, 0.018330775, 0.009029905, -0.03181128, -0.009327967, -0.02068817, 0.0020576396, -0.020430753, 0.002157558, 0.00038781852, -0.012423741, 0.021650096, 0.00972764, -0.00455221, -0.023980394, -0.015959833, -0.008196688, 0.017328206, 0.0067029945, 0.009510868, 0.007349923, 0.013270506, 0.0026774718, 0.012789544, -0.020173337, -0.013615986, 0.010770855, -0.004603016, 0.031052578, 0.044058893, 0.030077104, 0.010879241, 0.017585622, 0.009348289, -0.011936004, -0.019062381, 0.0020271563, -0.003370126, -0.02384491, 0.017043693, 0.006564125, 0.041186664, -0.014252754, 0.017870136, -0.020986231, 0.030158393, 0.0023844913, -0.005375266, -0.016244346, -0.044600822, 0.0012667609, 0.009158614, 0.0059476797, 0.0045555974, -0.02765197, -0.011448267, 0.0037189934, 0.019008188, 0.016108863, -0.007620888, 0.015607579, -0.0047757565, -0.0016571197, 0.006008647, -0.0007163635, -0.013812436, 0.0032194017, -0.057878103, 0.022761052, 0.011475364, 0.0013878484, -0.014374688, -0.011509234, -0.028640991, -0.0019357055, -0.0033210136, -0.01791078, -0.017612718, 0.0043930183, -0.002652069, 0.023289433, -0.035415113, -0.012037616, -0.0136769535, 0.011597298, 0.013737921, 0.006117033, 0.017775297, -0.014415333, -0.028451314, 0.02509135, -0.012206969, 0.026757784, 0.022910083, 0.031675797, 0.018655933, -0.0022490087, -0.0012862366, -0.0031635154, -0.0020661075, 0.005026399, 0.018276583, -0.007058636, -0.0078647565, 0.001587685, -0.00034548025, 0.016149508, -0.011739555, -0.023302982, 0.027096491, 0.0044472115, -0.015946284, -0.010310215, -0.0020356239, 0.0023658623, 0.009930864, -0.012125679, 0.013270506, -0.006093323, 0.00311779, -0.028939052, -0.0028349704, 0.0078105633, 0.025308123, 0.01238987, -0.037338965, 0.001768046, -0.016461117, -0.028776472, 0.009416031, -0.0059476797, -0.001670668, -0.03790799, 0.0092805475, 0.0081560435, 0.013365344, -0.0059883245, -0.014157916, -0.0072821816, 0.027990675, -0.0069976687, -0.023235241, -0.009158614, 0.024305552, 0.02972485, 0.0015385726, -0.021338487, -0.0045725326, -0.011461816, 0.0006757187, 0.001605467, 0.021826223, 0.004155924, -0.022327509, -0.0014445817, -0.014754039, 0.008555717, 0.0040170546, -0.011448267, -0.01914367, -0.022977823, -0.011590524, -0.016962403, -0.009212807, 0.002128768, 0.010330537, -0.01644757, 0.018466258, -0.015837898, 0.012796317, 0.0235604, 0.0024200552, -0.0053278473, 0.0018747384, -0.0007320286, 0.0010872467, 0.013527923, 0.0042439876, -0.013582116, -0.016813373, 0.012403418, 0.020715266, -0.022408798, -0.004643661, 0.012261162, 0.027110038, 0.008880875, -0.0071128285, -0.037745412, -0.005581877, -0.002587715, 0.00026567263, 0.025294574, 0.0023590883, 0.0061576776, 0.002846825, -0.008847004, -0.008338945, -0.025619732, -0.028397122, 0.014103724, 0.0068113804, -0.029237114, 0.0025961825, -0.011035046, -0.0040678605, 0.0030500486, 0.018412065, -0.0014606701, -0.0021050586, -0.007614114, 0.0243191, 0.023899104, 0.017856587, -0.010039249, -0.005459943, -0.017883684, -0.031052578, -0.027381003, -0.019319797, 0.0119631, 0.03536092, -0.0019086091, -0.008386364, -0.007458309, 0.011461816, -0.06324321, -0.012884381, 0.00918571, -0.008684426, 0.036336392, 0.0036681874, -0.00016998814, -0.0013226474, -0.0064150942, 0.025226833, -0.00451834, 0.02091849, 0.015661772, -0.017856587, 0.00026800123, 0.015187583, -0.029697753, -0.003366739, -0.023506206, -0.0050501083, 0.0036038333, 0.0014318802, -0.0096598985, -0.016650794, 0.0102153765, 0.017815942, 0.006625092, 0.0054802652, 0.0063067083, -0.030104201, -0.0077021774, 0.043300193, 0.0025030384, -0.028749377, -0.014008885, -0.004796079, 0.021880416, -0.0009255145, 0.009930864, -0.032705463, -0.003752864, -0.020891394, 0.01914367, 0.0019932855, -0.017124983, 0.0021372356, 0.009124743, -0.010906338, 0.006841864, 0.0012540595, -0.02594489, -0.021717837, 0.015417903, -0.032407403, 0.006736865, -0.021907512, 0.01799207, -0.0035089955, -0.014090175, -0.008691199, -0.009673447, -0.015038552, -0.003820605, 0.010222151, -0.007797015, -0.0025504571, -0.010831822, -0.03148612, 0.009578609, -0.029237114, -0.008894423, -0.012789544, -0.015770158, 0.014008885, -0.015295968, -0.020024307, 0.004897691, 0.017124983, -0.0048367237, 0.004094957, 0.22034866, 0.0066047697, 0.0027824708, 0.010777629, -0.034873184, 0.015025004, -0.0042168912, 0.00961248, -0.018506903, 0.0020373173, -0.027272617, -0.0028586797, -0.019577214, 0.005182204, 0.008697974, -0.017124983, -0.015797254, -0.014117272, -0.021880416, 0.010296666, -0.005459943, -0.018710127, -0.018899802, -0.0043388256, 0.01567532, 0.018777868, -0.02131139, 0.031702895, 0.013683728, 0.011678588, -0.023452012, 0.00060967106, 0.015160486, 0.01952302, 0.009294096, -0.023736525, -0.0022998147, -0.004924787, 0.017748201, 0.01860174, 0.0053142994, -0.027082942, -0.0026791655, -0.0043896316, -0.022801697, 0.0052634934, -0.0011736167, -0.01721982, -0.0042101173, -0.013839533, -0.03536092, -0.01528242, 0.021799127, -0.0072821816, 0.007133151, -0.004477695, 0.0018527225, 0.012654061, 0.035713173, 0.021893965, -0.008487975, 0.0026181983, -0.022097187, 0.017734652, -0.011448267, -0.0045894682, 0.0074786316, 0.0054972004, 0.0060018725, -0.018195294, 0.0070992806, -0.030212587, -0.024833933, 0.003016178, 0.00070027495, -0.021352034, 0.040861506, 0.022042995, 0.031892568, 0.020105597, -0.015499192, 0.0013218006, -0.0068113804, -0.007505728, -0.012003745, 0.00903668, 0.032244824, -0.016434021, -0.0004102578, -0.0019390926, -0.002045785, -0.006178, 0.0066623497, -0.006421868, -0.0021490904, 0.014483074, -0.00028027932, 0.024820386, -0.015038552, 0.020092048, -0.011556653, 0.0004322737, 0.019428184, -0.027245522, -0.015241776, -0.00034780885, 0.03378932, 0.009260226, 0.0028959373, -0.04449244, 0.012972445, -0.031133868, -0.000366226, -0.00243191, 0.03172999, 0.0028790021, -0.0029772269, -0.012518578, -0.003922217, -0.0001355883, 0.016420472, -0.026974557, 0.005239784, 0.016637245, 0.017775297, -0.023438465, -0.011096013, 0.025267478, -0.006083162, -0.010940208, 0.011007949, -0.019983662, -0.010337311, 0.008637006, -0.018967543, 0.021338487, -0.0091789365, -0.0339519, -0.020064952, -0.0049586575, 0.008135721, -0.019170767, 0.017639816, -0.0037765733, 0.01370405, -0.025050705, 0.00058426807, 0.026730688, 0.0050094635, -0.04199956, -0.022747504, 0.0014267996, 0.0030652904, -0.013351795, -0.013439859, -0.01513339, 0.0029145663, -0.039642166, 0.01914367, 0.016068218, -0.004907852, -0.017030144, 0.0014488155, -0.0066623497, -0.014469526, 0.013500826, -0.17320077, 0.025348768, 0.02788229, -0.017748201, 0.013792113, -0.021433324, 0.026391981, -0.0026249725, -0.025348768, 0.001934012, 0.014320496, -0.0025826343, -0.03923572, 0.0032973043, -0.017653363, -0.0015775238, -0.026297145, 0.011719232, -0.005537845, -0.0064659, 0.004931561, -0.021175908, -0.00064946903, -0.037040904, -0.00069011375, 0.02193461, -0.023018468, -0.013792113, 0.011475364, -0.018696578, -0.01073021, 0.007241537, 0.0072144405, -0.003807057, 0.018655933, -0.012403418, 0.007851208, 0.0087115215, -0.023032017, 0.027746806, 0.028559702, 0.0048502716, 0.0066589625, 0.0051686554, -0.015539837, 0.021988802, 0.028315833, 0.0019255443, 0.0069129923, -0.033545457, 0.0025030384, -0.061725806, 0.010540535, 0.020904941, 0.008088303, 0.00039247572, 0.0064929966, 0.027435197, -0.0121730985, -0.020796556, 0.010228925, 0.0049349484, 0.02262557, -0.021284293, -0.012870833, -0.026974557, 0.0056157475, -0.008250881, -0.015688868, 0.022137832, -0.011739555, 0.00386125, 0.0002088335, -0.027679065, 0.010526987, 0.016081767, -0.02818035, -0.01273535, -0.007234763, -0.011380526, -0.025904246, 0.05012851, -0.009524416, -0.011990197, -0.01675918, 0.0037731864, -0.014117272, 0.023248788, -0.0076005654, 0.015011456, 0.017192723, -0.05026399, -0.008704747, -0.021595903, 0.007979916, 0.014781135, 0.017111434, -0.010086669, -0.013615986, -0.021108165, 0.012782769, -0.021690741, -0.00013198954, 0.044275664, 0.008535394, 0.032840945, -0.0030619034, -0.0012320435, 0.017937876, 0.007979916, -0.011468589, -0.003222789, 0.023966845, 0.016041122, 0.0035530273, 0.016000478, 0.0057783267, -0.010411827, -0.0047418857, 0.012782769, 0.02479329, 0.01768046, -0.03265127, 0.007024765, -0.0075395983, -0.0066758976, -0.10166603, -0.018750772, -0.00044370504, 0.018534, 0.0038951205, -0.0052702674, -0.022666214, 0.034331255, -0.013263732, 0.045847263, -0.018710127, -0.016325636, 0.020810105, -0.0045996294, 0.04996593, -0.008874101, 0.022029446, -0.009930864, -0.028776472, 0.021663643, -0.008589587, -0.01528242, -0.015336613, -0.022327509, -0.011400849, -0.008027336, -0.03836863, 0.010330537, 0.026730688, 0.0014699847, 0.013412762, -0.0017189336, -7.528273e-06, -0.013067283, 0.0076683066, 0.012335678, -0.031215157, 0.0020542527, 0.008914745, -0.0041220537, -0.0005698731, 0.0060018725, 0.006025582, -0.016691439, 0.026622301, -0.037609927, 0.0029569045, 0.012213743, -0.026852623, -0.025741667, -0.00031351487, 0.0331932, -0.0133111505, 0.001313333, 0.01046602, -0.014306947, -0.008738618, -0.008291526, -0.010249248, -0.011102787, -0.010201829, -0.008332171, 0.011007949, -0.005253332, 0.038477015, -0.0035225437, -0.018899802, 0.011414397, 0.011570201, -0.023668785, -0.010208603, 0.013304377, -0.01436114, 0.01768046, -0.035577692, -0.014320496, -0.027530035, -0.014455978, -0.011549879, 0.007620888, -0.020444302, -0.012220517, 0.011996971, -0.013331473, 0.016474666, -0.013846306, -0.011062142, -0.005531071, 0.020986231, -0.028966147, 0.019468829, 0.0072212145, 0.0012396644, -0.018588193, 0.0049214, 0.034575123, -0.006957024, 0.0066555752, -0.022557829, 0.017653363, -0.036255103, -0.0077766925, -0.05264848, 0.025728118, 0.032163534, 0.006286386, -0.0069129923, -0.011996971, 0.0072144405, -0.009016357, -0.012376322, -0.020132693, -0.019983662, 0.030591937, -0.004653822, -0.034764796, -0.015851447, -0.0028129544, 0.007370245, -0.005805423, 0.0054294593, -0.005090753, -0.00640832, -0.0071466994, 0.003759638, 0.015566934, -0.022788148, 0.0016300232, -0.017246917, 0.030050008, -0.014564363, -0.021785578, 0.0041152793, -0.026270047, 0.009212807, 0.012606642, 0.010147636, 0.00063380384, -0.026608754, 0.027272617, 0.017030144, 0.0018154648, -0.015580482, -0.023424916, 0.013094379, -0.0045623714, -0.011990197, 0.0042270524, 0.027042298, 0.0020948974, 0.0065979953, 0.009327967, 0.005805423, 0.044194374, -0.017152078, -0.0025199736, 0.006418481, -0.004474308, -0.0027519872, -0.01119085, 0.009510868, -0.0028027932, 0.032082245, 0.028966147, 0.0034429478, 0.0068350895, -0.008901197, -0.0109605305, 0.0090773245, 0.0031381124, 0.022882987, -0.026229402, 0.016420472, 0.012037616, 0.03042936, -0.019401086, -0.018561095, 0.0030652904, -0.004853659, 0.0033887548, -0.015986929, 0.01521468, 0.013575342, -0.0072008925, -0.025118446, 0.015309517, 0.01652886, 0.01661015, -0.030050008, 0.00895539, 0.0023082823, 0.001959415, -0.007227989, 0.011468589, -0.03945249, -0.008325397, -0.003121177, 0.018506903, -0.012633739, 0.008643781, 0.027448745, 0.018750772, 0.0009856349, -0.01636628, -0.005253332, -0.0077292738, -0.027990675, 0.0136769535, 0.0074176644, -0.04468211, -0.0075395983, -0.001241358, -0.009192484, 0.0015368791, 0.0048231753, 0.00884023, -0.00019888401, 0.043598253, 0.018046262, -0.008996035, -0.009883445, 0.022029446, 0.02501006, -0.004433663, -0.005686876, 0.0096598985, 0.018195294, -0.0060628396, -0.004105118, -0.0036173814, -0.02231396, 0.006137355, 0.0030009362, 0.011726006, -0.0063846107, -0.015011456, -0.013886951, -0.0008272897, 0.00629316, -0.0021558646, -0.009043453, 0.054545235, 0.016501762, 0.011549879, 0.01914367, -0.0029823075, 0.023072662, 0.019793985, 0.0082983, 0.0024386842, -0.016854016, -0.004348987, 0.01830368, -0.004470921, -0.009551513, -0.003089, 0.037393156, -0.02208364, 0.014279851, -0.0062796115, 0.009944412, 0.017504333, -0.0011947859, 0.024386842, -0.0072212145, -0.015092745, -0.024454582, 0.009355064, -0.0033362554, -0.02053914, -0.037338965, -0.002987388, 0.006520093, -0.025118446, -0.0072008925, 0.034954473, -0.010242473, -0.024820386, -0.032190632, 0.01705724, -0.020363012, -0.0056191348, 0.023899104, -0.00669622, -0.004975593, -0.006963798, 0.025416508, 0.009246677, -0.026541011, -0.031079674]" 22208132,History of LSD in Czechoslovakia,https://przekroj.pl/en/society/a-communist-lsd-trip-aleksander-kaczorowski,220,1580523645,27,collapse,"[0.02193157, 0.005580685, 0.026860306, -0.03463154, -0.017237537, 0.017120186, 0.0033607981, -0.008762197, -0.0091924835, -0.013456231, -0.005287308, 0.016520392, -0.013703972, -0.010978824, -0.012947711, 0.009088172, 0.042376697, -0.028007736, 0.0022084778, 0.010124771, -0.0064184396, 0.0012941192, -0.0002895062, 0.017237537, -0.017407043, 0.0084623005, 0.027303632, -0.010972305, -0.004798346, 0.0015923859, -0.03244099, -0.0031733627, -0.008390586, -0.009844433, -0.019102111, -0.024356822, 0.010476823, 0.0039736303, 0.003911695, -0.02103188, 0.01590756, 0.008149365, -0.010398589, -0.019806216, -0.0035987594, 0.014773169, 0.0072040386, -0.009042535, -0.0031929212, 0.030354755, 0.034005668, 0.028920466, -0.0065749073, 0.0072431555, 0.009231601, -0.032780007, 0.008168924, 0.0041203187, 0.024435056, -0.027251476, 0.009348951, 0.0011466156, -0.032545302, 0.0192325, -0.0126869315, 0.008612249, -0.0137952445, 0.004459332, 0.0086774435, 0.0044071763, 0.013521426, 0.010933188, 0.0071388436, 0.0015703826, 0.02476103, 0.0051243207, -0.036091905, -0.003026674, 0.014186414, -0.012080618, 0.012693451, -0.020119151, -0.01859359, 0.0059848935, 0.002720258, 0.008142846, -0.0046549174, 0.03682209, -0.01243919, -0.02821636, -0.006620544, 0.021840299, -0.008697002, -0.0006490969, -0.019845333, 0.01924554, -0.009407626, 0.020536399, -0.018058993, -0.0395342, 0.0026387642, -0.0038856172, -0.028372828, -0.015294728, -0.020432087, -0.009414147, 0.008260196, 0.0072953114, 0.0028408687, -0.015099143, -0.006917181, 0.02719932, 0.018293694, -0.035309568, 0.012106696, -0.023691833, 0.008664405, -0.0066498816, 0.006506453, -0.031345718, -0.010053056, 0.03066769, 0.017993797, -0.029155167, 0.025308667, -0.003950812, -0.005046087, 0.014564545, -0.0033249408, 0.003836721, 0.008214559, 0.006066387, 0.0022883418, 0.0039964486, -0.007067129, 0.042402774, -0.0073213894, -0.016650783, -0.0274601, -0.007660403, 0.044280387, -0.0055122306, -0.024043886, -0.01680725, -0.016429119, 0.047279354, -0.01682029, 0.021579519, -0.0064347386, -0.00577627, 0.033014707, -0.023378897, -0.005782789, 0.007014973, -0.0076799616, 0.0018238279, 0.006173959, 0.018098108, -0.04336766, 0.0077451565, -0.02706893, 0.0047331513, -0.02629963, -0.014251609, 0.010046537, 0.03512702, 0.025347784, 5.745302e-05, 0.02281822, -0.00809069, -0.0031277263, 0.028190283, -0.021488246, 0.009603212, 0.0031358756, 0.022088038, -0.010307317, 0.009792277, -0.033014707, -0.016142262, 0.0031260964, 0.025556408, 0.0134431925, 0.02732971, 0.0002715776, -0.0024203614, -0.0068715443, -0.006258712, -0.020927569, 0.0011409111, -0.017954681, 0.010398589, -0.0134431925, -0.023378897, -0.65716475, -0.034057826, -0.017719978, -0.033275485, 0.009120769, 0.0010757161, 0.009538016, 0.021866376, -0.014655817, 0.012810801, -0.02002788, 0.022127155, 0.03564858, -0.044984493, -0.029807117, -0.008749158, -0.014747091, -0.0054502953, 0.027538333, 0.0074191815, -0.028398907, 0.0071909996, -0.014460233, 0.0039834096, 0.027929503, 0.0318412, 0.027434021, -0.0070736487, -0.00718448, 0.019532397, 0.0038530198, -0.020823257, -0.015425118, 0.008116768, 0.046627406, -0.006278271, -0.007869027, 0.0097336015, 0.021918532, 0.0379956, 0.0035889803, -0.02680815, 0.030824158, -0.004270267, -0.009948744, -0.013964752, 0.036404844, 0.0025768292, 0.0016820289, 0.010561577, 0.017889485, -0.017028913, 0.007751676, 0.002658323, 0.015216494, -0.00018621299, -0.019128188, -0.00885347, 0.011057058, -0.0006002007, 0.0046809954, 0.020705907, -0.00092332304, -0.012589139, 0.004863541, 0.017746057, -0.034475073, -0.0200018, 0.015438157, 0.02798166, 0.0070606098, 0.033405878, -0.0064575565, -0.024056925, 0.01000742, 0.01258262, 0.0046255793, 0.010835395, -0.004544086, -0.00974664, -0.015672859, -0.008168924, -0.044984493, -0.026012773, 0.022101078, -0.0069237, -0.0063923616, 0.0005101502, -0.0054828925, -0.002671362, 0.0010031868, 0.03131964, -0.012563061, 0.0074257012, -0.010652849, 0.02232274, 0.006213076, 0.0033510188, 0.00756913, 0.0025800888, -0.019036917, -0.026091006, -0.0041594356, 0.020966686, 0.0037226297, 0.004540826, -0.014173375, -0.0094989, 0.046497017, -0.027434021, 0.011024461, -0.0029272519, -0.010189965, -0.010470304, -0.00012315728, -0.017459199, 0.008305833, -0.0028408687, 0.016898522, -0.017733017, 0.010229083, -0.021735987, -0.00023673904, 0.009101211, -0.009140328, -0.0058936207, -0.0063858423, -0.013071581, -0.019154267, -0.0019085812, 0.004322423, 0.020066995, 0.029442025, -0.012204489, -0.011487344, -0.016403042, 0.035361722, -0.009081652, 0.002270413, -0.010939707, -0.031345718, -0.00015269872, 0.012739087, 0.026025811, -0.016729016, -0.04224631, -0.0266908, -0.008892586, -0.024943575, -0.0059979325, 0.012510905, -0.032780007, 0.00040644957, 0.022779105, -0.011070097, 6.300478e-05, -0.029207323, -0.01679421, -0.009049054, 0.009264198, 0.011317838, 0.021996766, 0.006108764, 0.007171441, -0.012673892, -0.021357855, -0.0020243023, 0.013547504, -0.009987862, -0.032753926, -0.006891103, -0.0045506055, 0.0033021227, 0.014421116, -0.026755994, 0.019167306, 0.01770694, -0.017876446, 0.0049711126, -0.005763231, -0.0017798212, -0.0046744756, -0.011356954, 0.017002834, 0.0192325, -0.0042800466, 0.001206106, 0.010985344, 0.025113083, 0.018671826, 0.022896456, 0.024695836, 0.003104908, 0.008618768, -0.0043452415, 0.01679421, -0.00095184584, -0.003478149, 0.019388968, 0.045871146, 0.015164338, 0.006004452, 0.01757655, -0.0113308765, 0.008058092, -0.025725914, -0.0046353587, -0.02413516, 0.020458166, 0.009635809, 0.0120610595, -0.009407626, -0.035909362, -0.014434155, -0.0114677865, 0.029650649, -0.0036737337, -0.009062094, -0.023757027, 0.0046940343, -0.01180028, -0.0034846684, 0.033927437, 0.0013560543, -0.007145363, 0.007836429, -0.000507298, 0.015464235, -0.007608247, -0.006186998, -0.011832878, -0.0003958554, 0.004413696, 0.014512389, 0.010359473, 0.03914303, 0.0035596425, -0.0276948, 0.04860933, -0.0025279329, -0.024317704, 0.029728882, 0.016585587, 0.0023339782, 0.000327197, 0.022713909, 0.021801181, -0.006261972, -0.022544403, 0.029937506, -0.019297697, 0.026729917, -0.016390003, -0.0036443959, -0.00795378, -0.009401107, 0.0066303234, 0.014460233, 0.008957782, 0.01937593, 0.005874062, -0.0026371344, 0.021866376, -0.018306734, -0.01539904, 0.018032914, -0.010744123, 0.035752892, -0.016376963, -0.02605189, -0.009361991, -0.0010838655, 0.001078161, -0.016924601, 0.027590489, -0.009244639, -0.008012456, -0.0038888769, 0.004413696, 0.017524393, -0.030719846, 0.0037356687, 0.0005953111, 0.014225531, 0.010613733, -0.004795086, 0.0026615825, -0.0025947578, -0.0047787875, -0.0034944476, -0.0061772186, -0.00019558475, 0.0065651285, -0.0054437756, -0.012895555, -0.019049956, 0.0039442927, -0.010594174, 0.024539368, 0.0034357721, -0.0007990452, -0.00045269722, -0.01757655, -0.0053394637, 0.042950414, 0.0010765311, -0.009127289, -0.012015424, 0.014069064, 0.0035857204, -0.005949036, 0.032232367, -0.028816154, 0.0014302136, -0.0042898254, 0.035752892, -0.022687832, 0.0066107647, 0.011337397, -0.01873702, -0.0037519676, -0.04167259, -0.024526328, -0.013690933, 0.09982646, 0.0068976223, -0.0003773156, 0.0046288394, 0.035987593, 0.0042539686, -0.005691516, -0.034605462, 0.003540084, 0.0056686983, -0.011174409, -0.02167079, 0.014134258, 0.012921633, 0.012980308, -0.009831394, -0.0026012773, 0.0029191026, -0.005117801, -0.017407043, 0.009251159, 0.009414147, 0.002617576, 0.04156828, -0.0072040386, -0.011885034, -0.002925622, 0.015190416, 2.0691747e-05, 0.007595208, -0.015386001, 0.0034553306, 0.004814645, 0.016989795, -0.016781172, 0.0056426204, 0.009492381, -0.008292793, -0.0064608166, 0.0020927568, 0.032936472, 0.0065879463, 0.0040746825, -0.012002384, 0.008195002, 0.0038693184, 0.0035889803, 0.0032662654, -0.01564678, -0.018137226, 0.024969654, -0.008103728, 0.0042767865, 0.009687965, -0.004860281, -0.0031000185, 0.031215327, 0.0001976221, -0.03001574, 0.026834229, 0.01667686, -0.029050855, 0.019806216, -0.016285691, -0.021383934, -0.01423857, -0.0048961383, 0.0035726815, 0.008423183, -0.01333236, -0.007001934, -0.024800148, -0.008449261, 0.018906526, 0.04117711, -0.003373837, 0.0055839447, 0.009909628, -0.010887551, 0.0071258047, -0.0021400233, -0.018919565, -0.0021253543, -0.028190283, 0.009420666, 0.001603795, 0.029468102, -0.023939574, -0.021879414, 0.028816154, 0.018280655, 0.0125760995, -0.0028294595, -0.014408077, -0.0118459165, 0.014042986, -0.007197519, 0.037734818, 0.016950678, -0.020679828, -0.009407626, -0.0044560726, -0.008892586, -0.0027121087, -0.0018808733, 0.001448957, -0.019206423, -0.008938223, -0.0067411545, -0.004257228, 0.025191316, -0.030745924, -0.021801181, 0.0039866692, 0.02487838, 0.016911563, -0.014838363, 0.024004769, 0.0035237854, -0.024395939, 0.0049450346, -0.007738637, 0.019858371, 0.014290726, -0.034996632, 0.030302597, 0.020705907, -0.020718945, -0.017798213, -0.0036835128, -0.02335282, 0.043080803, -0.010320355, -0.0019607372, -0.021383934, 0.0020960167, -0.0042637475, 0.012367476, 0.018671826, -0.009694484, 0.012406593, 0.004788567, -0.022622637, -0.013201971, -0.005632841, -0.023418015, -0.0014864441, -0.012608698, -0.02516524, 0.014069064, -0.025725914, -0.002901174, -0.018763097, 0.016585587, 0.010959266, -0.036196217, 0.0008670924, -0.01219145, 0.024695836, 0.0014302136, 0.03627445, -0.007940741, -0.0067085573, 0.025373863, -0.010209524, 0.011852436, -0.0053720614, 0.009557575, -0.02103188, 0.009101211, 0.026782073, 0.016311768, 0.008195002, -0.023574483, 0.011369994, 0.021097075, -0.0041496567, 0.0023111599, 0.014421116, -0.030250441, -0.007080168, 0.00743874, -0.009342432, 0.023587521, -0.027251476, -0.015294728, 0.021801181, 0.007869027, -0.007464818, -0.017954681, 0.024474172, -0.029207323, 0.018319773, 0.022831261, -0.0088665085, -0.030902391, -0.012771685, -0.010424667, 0.0013886518, -0.010548538, 0.016650783, 0.01758959, 0.013560543, 0.0010317096, 0.011337397, 0.020588554, 0.015242572, 0.010372511, -0.015672859, -0.012328359, -0.0021318737, 0.017798213, 0.0036215778, -0.040707707, -0.009857472, -0.02732971, 0.013717011, 0.025621602, -0.03244099, -0.0057012956, 0.00897082, -0.019193385, 0.039977524, 0.010098693, 0.00846882, 0.008181962, -0.012113215, -0.023183312, -0.012393554, 0.025217395, -0.0008312352, 0.020575516, 0.015946677, -0.012458749, 0.010359473, 0.0013055282, 0.0038008639, -0.022648714, -0.02554337, 0.0017390745, -0.010431187, -0.0031570639, -0.011246123, -0.0051373597, -0.00020027065, 0.014186414, 0.0036378764, 0.00021881044, -0.012100177, -0.019023877, -0.011343916, 0.022883417, -0.02220539, 0.016689898, 0.0075234934, 0.016598627, -0.0072301165, -0.023235468, -0.027851269, 0.02014523, -0.024343783, 0.012080618, 0.00015565287, -0.0055709057, -0.008390586, 0.013638777, -0.0029663688, -0.0107636815, -0.0072040386, 0.023783106, -0.007836429, 0.0022019583, -0.0023062702, -0.010431187, 0.020497283, -0.012400074, -0.00017113666, -0.009948744, 0.0138474, 0.012608698, 0.00029419208, 0.007934222, -0.008181962, -0.007940741, -0.014056024, -0.01487748, -0.005815387, -0.026782073, -0.014134258, -0.02309204, 0.008697002, -0.01552943, 0.01756351, 0.0098965885, -0.02168383, 0.0030185247, -0.013769167, -0.00026994772, -0.022127155, 0.016494315, 0.012328359, 0.024343783, -0.0045897225, 0.00948586, 0.0065651285, 0.0017912304, -0.002001484, -0.015933638, -0.032180212, -0.024774069, -0.0025963876, 0.0021579517, 0.022348817, -0.015803248, 0.016546471, 0.004798346, 0.0025719395, 0.0012965639, -0.028790075, 0.0073213894, -0.0064575565, 0.022075, 0.0005932738, -0.027825192, -0.013058542, -0.025999734, 0.011917631, -0.0014179895, -0.0377609, -0.0016062398, 0.009929186, 0.008547054, 0.012380515, 0.019167306, -0.022114117, 0.011917631, -0.022974689, 0.011369994, 0.0008361248, -0.0034227332, -0.014786207, 0.0182285, 0.02091453, -0.01680725, 0.019049956, -0.01655951, -0.0013185672, -0.012941191, -0.004042085, -0.005554607, -0.0054731136, 0.04128142, 0.008801314, -0.0063141277, -0.0063467254, -0.00526123, -0.03311902, 0.020353854, 0.009218561, 0.00961625, 0.026143162, 0.028790075, -0.0100856535, -0.012419632, 5.9897833e-05, 0.018919565, -0.03197159, -0.017485278, 0.04488018, -0.0037682662, 0.032180212, -0.0026860307, -0.033092942, 0.0033803566, 0.0017162563, -0.0057143345, -0.009648848, -0.0076278057, -0.009348951, 0.0034488111, 0.020953646, 0.012158852, 0.004042085, -0.0005696406, -0.005033048, -0.016846366, 0.020562477, 0.008357989, 0.008710041, -0.00795378, -0.0041333577, 0.007530013, -0.0051764767, 0.012530464, -0.0029468103, -0.012999867, 0.0075886887, -0.0045473455, 0.034970555, 0.005271009, -0.0001311029, 0.023665756, -0.014707973, -0.009290276, -0.006581427, -0.0022312962, -0.0026615825, 0.0054698535, 0.008071131, -0.0038269418, 0.028555375, -0.0043387217, 0.0047657485, -0.0043387217, 0.012230567, -0.0074843764, 0.011709007, -0.0032043303, 0.024787107, 0.015294728, -0.00898386, -0.0064966734, -0.0046386183, 0.0032287783, 0.0058447244, -0.02795558, 0.0038008639, -0.02847714, -0.012243606, -0.00038852097, -0.0155815855, -0.009596692, -0.00564588, 0.0017358147, -0.022309702, -0.009303315, 0.19057779, 0.0015597885, 0.024422016, 0.032675695, -0.0064445175, -0.01205454, 0.0063597644, -0.0001579958, -0.0044039167, 0.031997666, -0.003810643, 0.013123737, -0.0052547106, 0.004051864, -0.0019965945, -0.00526123, -0.015698936, -0.031215327, 0.00014485496, -0.006200037, -0.0084883785, -0.0043908777, 0.0019216202, 0.0013454602, -0.003967111, 0.0015540839, -0.01552943, -0.006317388, 0.022557441, 0.005619802, -0.012563061, -0.022140194, -0.007464818, -0.00718448, -0.0028473882, -0.0033379798, -0.008612249, -0.01962367, -0.003181512, 0.0026860307, 0.012595658, -0.016481275, -0.0076017277, -0.007047571, -0.0072953114, 0.013964752, -0.017615667, -0.01962367, 0.0066140243, -0.01142215, -0.03593544, -0.03311902, 0.023300664, 0.02910301, 0.022531364, -0.0038302015, 0.032284524, 0.026221396, -0.01436896, 0.016220495, -0.021775102, 0.013664855, -0.010828876, -0.012250125, 0.0054568145, 0.006503193, -0.0023812444, 0.004348501, 0.012615217, -0.018906526, 0.024813186, -0.0043778387, -0.028007736, -0.0062880497, 0.0035107464, -0.02577807, 0.030172208, 0.029989662, 0.022857338, 0.02988535, -0.009714043, -0.015725015, -0.022570482, -0.002671362, -0.029337713, 0.011761163, 0.017889485, 0.02975496, -0.04712289, 0.021136193, 0.0012329989, -0.018554473, -0.009218561, 0.0051340996, 0.02386134, -0.013560543, 0.02528259, 0.012843399, 0.0050363075, -0.011735085, -0.017472237, 0.025608564, 0.017719978, 0.00022716355, -0.012765165, 0.008579651, 0.010020459, 0.004736411, 0.005887101, -0.03671778, 0.011943709, -0.027355788, 0.0113308765, -0.024604563, -0.005942517, 0.028451063, -0.0065097124, -0.033014707, 0.018502317, -0.012419632, -0.025986694, -0.0063565047, 0.002796862, -0.009407626, -0.026325708, 0.0011083136, -0.019675827, 0.028112048, 0.012491346, -0.023574483, 0.019806216, 0.0003159916, 0.00398015, 0.024800148, -0.01937593, 0.0020210424, -0.0018955423, 0.024747992, -0.0041268384, -0.0035498634, 0.0065912064, -0.015894521, 0.017759096, -0.006118543, 0.0012607067, 0.0050428268, -0.015125221, 0.009655368, -0.01193067, -0.032545302, 0.012882516, -0.001539415, -0.0056035034, -0.023561444, -0.014786207, -0.015359923, -0.032284524, 0.009166406, -0.0026387642, 0.026586488, -0.027355788, 0.03426645, 0.037108947, -0.0032304083, -0.001616834, -0.015672859, -0.16387394, 0.0113308765, 0.0059229583, -0.02028866, 0.011448228, 0.009459782, 0.02193157, 0.013586621, -0.011591656, 0.008912145, 0.012002384, 0.02603885, -0.03671778, -0.04310688, 0.0005533419, -0.0013275315, -0.038960483, -0.0014774798, 0.034814086, 0.0048798397, 0.031267483, -0.018202422, 0.014707973, 0.012145814, 0.019832294, 0.027042853, -0.0005826796, -0.0019819255, -0.015451196, -0.019675827, 0.011226565, -0.0015475644, 0.020106113, -0.0243829, 0.006760713, 0.0014261388, -0.009388069, -0.009335913, -0.0095184585, 0.0022818223, 0.0007644104, 0.0057012956, -0.0005582315, -0.013508387, 0.014003868, 0.044176076, 0.023118118, -0.025843266, -0.0036476557, -0.0039312537, 0.019558476, -0.019597592, 0.0141212195, 0.012224047, 0.002257374, 0.017107146, 0.023913495, 0.008664405, 0.0023127897, 0.0018058992, -0.027773036, -0.03220629, 0.023209391, 0.00057656755, 0.00034797788, -0.036196217, -0.00027483734, 0.0017863407, -0.016103145, -0.0044625923, -0.0074452595, 0.018450161, -0.018541435, -0.025869343, 0.0044886703, 0.016585587, -0.018541435, -0.011761163, -0.015060026, 0.017081069, -0.023796145, 0.014316804, -0.0031619535, -0.004130098, -0.02206196, 0.0022133675, 0.0011400961, 0.01988445, -0.034292527, -0.0017896005, 0.0059066596, -0.0039834096, -0.0022655234, 0.008351469, 0.00010848842, -0.0073474674, -0.0062424135, 0.024565445, -0.026195318, -0.032414913, 0.0053036064, -0.004785307, -0.01269997, 0.02281822, 0.020171307, 0.017159302, -0.021005802, 0.024083003, 0.014629739, -0.0031880315, -0.025621602, 0.010985344, 0.014786207, 0.02348321, -0.015190416, 0.035074867, 0.015033948, -0.018150264, 0.021331778, -0.0015337105, 0.04975676, -0.028816154, -0.011787241, 0.0051732166, -0.018906526, 0.009831394, -0.11975002, -0.020223463, 0.014056024, 0.01949328, 0.019701904, 0.021110114, 0.0010211155, 0.012654333, 0.010450745, 0.0051340996, 0.008103728, -0.018815253, 0.016337847, -0.020301698, 0.03794344, 0.025751993, 0.008201521, 0.00045351216, -0.02476103, 0.009779238, -0.010098693, 0.009720562, -0.012915113, -0.014955714, 0.010607213, -0.030485144, -0.013664855, 0.02065375, 0.018502317, 0.016311768, 0.0041920333, 0.0007326279, 0.00629131, -0.0077060396, 0.0021954388, -0.008416664, -0.0018026395, -0.0045962417, 0.035074867, -0.03439684, 0.0073996233, 0.00045310467, 0.028007736, -0.025491213, 0.04042085, -0.01205454, -0.016598627, 0.02629963, 0.0018743539, -0.009674926, -0.023052923, -0.027355788, -0.01245223, 0.02834675, 0.020731984, -0.017980758, 0.02657345, -0.0075756493, -0.054450795, -0.015086104, -0.004511488, 0.01077672, -0.002987557, -0.02141001, -0.016090106, -0.0001045156, -0.022153234, -0.017641746, -0.0008361248, -0.025217395, -0.009453263, 0.0155815855, -0.033953514, 0.005414438, -0.026886385, 0.00410402, -0.01794164, -0.0046549174, 0.017524393, 0.00082227093, 0.010985344, 0.0041659554, -0.0070997267, -0.0118459165, 0.027251476, 0.023665756, 0.016872445, 0.00013171411, 0.0056263213, -0.02643002, -0.0066433623, 0.018019876, -0.012882516, 0.0013324212, -0.002809901, 0.03603975, 0.011180929, -0.0009225081, 0.00577627, 0.025673758, -0.0018939123, -0.027616568, -0.0490005, 0.011695968, 0.018945644, 0.0004001338, 0.0032678952, 0.002219887, -0.0053720614, -0.001078161, 0.005029788, 0.0052188532, -0.03335372, -0.008944742, 0.014460233, -0.01166989, -0.043810986, -0.029937506, 0.04091633, 0.018697903, -0.005039567, -0.0014994831, 0.0126869315, 0.005988153, 0.0025540108, 0.0107636815, -0.025856305, -0.0043322025, -0.011324357, 0.008781755, -0.013312803, -0.00961625, 0.014786207, -0.011754644, -0.008494898, -0.016050989, -0.022544403, -0.00911425, -0.005632841, 0.026612565, 0.011109214, 0.046914265, -0.0318412, -0.018306734, 0.024200354, -0.0098965885, -0.020692866, 0.015568547, -0.0029223622, 0.005156918, 0.013338881, 0.0044234754, 0.009303315, 0.016311768, -0.030224364, -0.025100043, -0.008618768, 0.006232634, 0.0040225266, 0.01897172, -0.015855404, 0.0025768292, 0.029598493, -0.012791243, 0.032753926, -0.008566612, -0.00045636442, 0.00020668826, 0.0015883112, -0.014016908, 0.013521426, -0.006760713, -0.024278589, -0.0106006935, 0.012282723, 0.0274601, 0.00047633037, -0.013058542, -0.023196353, 0.013782206, -0.010229083, -0.00043680595, -0.0072822724, -0.009303315, -0.021514323, 0.015894521, 0.04488018, 0.022805182, -0.038178146, 0.032936472, -0.01808507, 0.004531047, 0.0036574348, -0.006317388, -0.00577301, 0.0027887127, 0.0121979695, 0.013547504, -0.026834229, -0.022635676, 0.011200487, -5.19522e-05, 0.0001481147, 0.019049956, 0.01397779, -0.04821816, -0.011487344, -0.007516974, -0.033692732, -0.040864173, -0.00078845106, 0.004736411, 0.027121086, -0.012641295, 0.0012501125, 0.009948744, -0.023378897, 0.012139294, -0.009459782, -0.032049824, 0.011285241, 0.040733784, 0.0040746825, 0.01193719, 0.0074843764, 0.0027903426, 0.020327775, -0.01888045, 0.053016506, 0.010724564, 0.0033135316, -0.006516232, -0.01373005, -0.004511488, -0.02513916, -0.011748124, 0.006568388, -0.03439684, 0.017133225, 0.00092413794, -0.023496248, 0.04488018, 0.016390003, -0.007875546, 0.02666472, -0.0076278057, 0.022387935, -0.0100856535, 0.015516391, 0.0084623005, -0.025087005, 0.022948612, -0.011200487, 0.059353452, -0.026443059, -0.011317838, 0.0063141277, -3.275026e-05, 0.021449128, -0.0025719395, -0.02628659, 0.031371795, -0.009903108, 0.0030690508, 0.008344949, -0.0026664722, -0.0065749073, 0.05056518, -0.02693854, -0.015359923, -0.024734952, -0.013495348, 0.005962075, -0.03757835, -0.017902525, 0.003999708, -0.014486311, -0.0014171746, -0.012302281, 0.0101117315, -0.021383934, -0.015229533, 0.026208358, -0.004452813, -0.029494181, -0.003399915, 0.0004184699, 0.014329843, -0.00046858846, -0.016246574]" 4353389,"Germany's laws on github, machine-readable and ready to be forked",https://github.com/bundestag/gesetze#german-federal-laws-and-regulations,325,1344389334,73,jaseg,"[0.014324413, 0.016622096, -0.0003557306, -0.031773675, -0.008350437, -0.008593335, -0.01045774, -0.0076676966, -0.033716857, -0.021099295, 0.03474097, 0.0030411477, -0.012223674, -0.003620492, -0.016372634, 0.035449967, 0.03056575, -0.023134386, -0.0007381307, 0.020757925, 0.011915128, -0.0012243368, -0.0047102505, -0.0050745974, -0.01235497, 0.0070243455, 0.00049195037, -0.021768907, -0.021768907, 0.0010872965, 0.012676646, 0.0036336216, -0.00548818, -0.0071228174, -0.004506741, 0.0011086321, -0.012735729, -0.011619711, 0.00035737178, -0.016963467, 0.006597633, -0.005442227, 0.006305499, -0.02574718, -0.0005309289, 0.00053462165, 0.0063087814, -0.026403662, -0.021388147, 0.026548088, 0.034846004, 0.035449967, -0.005005667, 0.0027933263, -0.013667932, -0.0154404305, -0.0042375843, 0.01993076, -0.019418705, -0.009584621, -0.012394359, 0.017816892, -0.039100002, 0.006138096, -0.009492714, -0.010667815, -0.030276898, 0.021795165, -0.017081633, 0.0003692705, 0.03292908, 0.036552858, 0.015558597, -0.0013260914, 0.030171862, -0.011678795, -0.009939121, -0.013878006, -0.018276429, 0.009945685, 0.012998322, -0.009407371, 0.0080944095, 0.024316052, -0.000977336, 0.005301083, -0.009440195, 0.022267831, -0.012591303, -0.022766758, -0.0039388854, 0.045244664, 0.010785981, 0.027756011, -0.015873708, 0.0070702992, -0.008297918, 0.033769377, 0.027729753, -0.041174483, 0.019707557, 0.013864877, -0.0023387133, 0.0026029467, -0.013241219, -0.015978744, 0.020442815, -0.019510612, 0.0057442077, 0.013077099, -0.010444611, 0.042513702, -0.022517294, -0.028097382, 0.02304248, -0.039730225, 0.018000705, -0.037629485, 0.0058787866, 0.00670267, 0.014114339, 0.025208866, 0.024289792, -0.01989137, 0.0059969528, 0.0029147752, -0.0014696966, 0.02988301, -0.035476226, -0.01322809, 0.02503818, -0.01926115, -0.006873355, 0.0120595535, -0.013654802, 0.020731667, 0.015781801, -0.003709117, -0.028412493, -0.019471223, 0.019339927, 0.012341841, -0.0267319, -0.03678919, -0.0052157408, 0.00146067, -0.008704936, 0.00601993, 0.03258771, 0.0040964405, 0.0032167563, -0.020350907, 0.017331095, -0.013799229, -0.0059969528, 0.0013999455, -0.009880037, 0.009991639, -0.01614943, -0.012335276, 0.0035154552, -0.001047087, -0.0024224145, 0.004611778, 0.004431246, 0.04022915, -0.000647044, -0.009755306, -0.017816892, 0.008790279, 0.0073328917, 0.008422649, -0.039100002, 0.024906885, -0.012926108, 0.015729282, 0.0033940063, 0.0025061157, -0.043038886, 0.016057523, -0.017764373, 0.0066534337, 0.025944125, 0.027362123, -0.03306038, 0.0042507136, 0.02577344, 0.00806815, -0.01617569, -0.010372398, 0.011101092, 0.0028195854, -0.013549766, -0.006604198, -0.6289612, -0.0009847214, 0.00704404, -0.006410536, 0.025274513, 0.020862963, 0.002174593, 0.02503818, -0.021834554, 0.02880638, -0.010818805, 0.00668954, 0.017068503, -0.012867025, -0.010529953, -0.020587241, -0.011225823, -0.00720816, 0.011934822, 0.042434923, -0.018591538, 0.005481615, -0.015650505, -0.015099061, 0.00019037946, 0.008179752, -0.0024142084, -0.0003023915, 0.02304248, 0.04012411, -0.031511083, 0.0030509948, -0.011803526, -0.0023354308, 0.041148223, 0.017803762, 0.0051796343, -0.0046708616, 0.016044393, 0.015532338, -0.00012442365, 0.015597986, 0.004844829, 0.014468838, 0.009820954, -0.024854366, 0.031799935, -0.008468604, -0.0041588065, 0.006614045, -0.007339456, 0.006344888, 0.003961862, -0.0045034587, 0.008271659, 0.007917159, 0.0004121469, -0.021073036, -0.00076644146, 0.016858429, -0.0047594863, 0.004480482, -0.0088756215, -0.037524447, -0.008448909, 0.014179987, -0.015716152, -0.034951042, -0.00522887, -0.018342076, -0.021178074, 0.007877771, -0.011160175, -0.033244193, 0.008442344, 0.022819275, -0.005015514, -0.006696105, 0.007280373, 0.013287174, -0.026534958, -0.00029480094, -0.0069915215, -0.007759604, 0.020994259, 0.0017199799, -0.02607542, -0.011921693, 0.0046807085, -0.0022336761, 0.018788483, 0.021191202, 0.005396273, -0.0052452823, 0.0068602255, 0.022464776, 0.0062529803, 0.02573405, 0.016582707, -0.036264006, 0.010516824, 0.0070834286, 0.022687979, 0.022950571, 0.017344225, 0.04366911, -0.045507256, 0.002995194, 0.019313667, -0.0067486237, -0.019024815, -0.0076348726, 0.016083783, -0.0037846123, -0.020088315, -0.023213165, 0.008521122, -0.0009847214, 0.004943301, 0.007260679, 0.011961082, -0.0048481114, 0.0055472637, -0.0019612366, 0.016595837, 0.014101209, -0.0012284399, -0.022556683, -0.014731431, 0.0021384866, 0.016805911, 0.0052058934, 0.031826194, -0.006604198, 0.036552858, 0.00472338, 0.0371043, 0.0001077039, 0.016398892, -0.006486031, -0.0034104183, -0.0025455046, 0.006397406, -0.020337777, -0.00472338, -0.027545938, -0.023817126, 0.001485288, -0.0075298357, 0.015007153, -0.014862727, -0.0017790633, 0.0023682548, 0.020337777, 0.009427066, 0.0039717094, -0.017724983, 0.0015665275, -0.0022205466, -0.029699195, 0.020574111, 0.011764137, -0.04214607, 0.00028085074, 0.0015320623, -0.008724631, 0.010168889, 0.024105977, -0.022202184, -0.032482672, 0.021466926, 0.009729046, -0.0017905516, -0.016779652, -0.012466572, -0.00576062, -0.02783479, 0.0027260368, 0.0019464658, -0.0074773175, 0.017724983, 0.0070177806, 0.017304836, 9.872857e-05, -0.009276075, 0.04737166, 0.018617798, -0.0011275059, -0.02645618, -0.0034301127, 0.014705172, 0.015059671, -0.0039388854, 0.005058185, -0.012079248, -0.003830566, -0.036237746, 0.0042638434, 0.00084686035, 0.033769377, 0.0056391708, 0.007838381, -0.00023879492, -0.011606582, -0.011416202, -0.03978274, 0.013996173, -0.023607053, 0.012827637, 0.013576025, 0.014941505, -0.0077464744, -0.022110276, -0.0076808264, 0.017265446, 0.022911184, -0.012322146, -0.00014411806, 0.023502016, 0.01475769, 0.026994495, 0.0026423356, 0.0093285935, -0.002630847, 0.0087443255, 0.009387677, 0.015217227, 0.016648356, -0.011468722, -0.034084488, -0.030723305, 0.008691807, -0.011363684, -0.00909226, 0.0006384277, -0.0077464744, -0.0045822365, -0.027729753, 0.01993076, -0.0113439895, 0.0152434865, -0.0071293823, 0.0072278543, -0.025208866, 0.043800406, -0.013214961, 0.043222703, 0.03400571, -0.018670317, 0.011777267, -0.021585092, 0.0074051046, -0.026718773, -0.005534134, 0.014547616, -0.025970384, 0.012643822, 0.017081633, 0.015729282, 0.0041030054, 0.012775118, -0.0035285847, -0.0069521326, -0.0074641877, 0.0032430156, 0.0059214574, -0.021663869, -0.03437334, -0.020652888, -0.017790632, 0.0018857414, 0.0031625966, 0.0029640112, 0.016293855, 0.019142983, -0.011678795, 0.0016920795, 0.016884688, 0.01989137, 0.009427066, -0.010726898, -0.020718537, 0.008376696, 0.022451647, -0.008192881, -0.004342621, -0.027047012, -0.0052255876, -0.014048691, 0.024250403, -0.030460713, 0.009085695, -0.0074313637, -0.016648356, 0.0002644387, -0.020797314, -0.0018282993, 0.001785628, 0.0024158496, 0.024145367, 0.013720451, -0.020140834, -0.018433983, -0.025313903, 0.04532344, 0.005941152, -0.0017839868, -0.011731314, 0.011718184, -0.023633312, -0.024276663, 0.018368335, 0.0030641246, -0.0062365686, -0.0083570015, 0.012492831, 0.006761753, -0.0046150605, 0.021782035, 0.0143375425, -4.587673e-05, -0.032377638, -0.0063941237, 0.016333245, 0.050916657, 0.016412022, 0.011580323, 0.00892814, -0.018276429, -0.03676293, -0.015689893, -0.039021224, 0.0030854603, 0.0071031232, 0.0029607287, 0.010858194, -0.0008485016, -0.0026193587, 0.034478378, -0.013142748, 0.021440666, -0.0046708616, -0.008304483, -0.018276429, -0.00013365541, 0.014455709, 0.010149195, 0.041489594, 0.023580793, -0.006453207, 0.025471458, 0.012282757, -0.0060264943, -0.024460478, -0.014481968, 0.022819275, -0.00065401907, 0.031983748, -0.034583412, 0.0016715644, 0.00963714, 0.008002502, 0.012112073, 0.00018812281, 0.019602519, 0.0047923103, -0.008343872, -0.023541404, 0.024499867, 0.0050549028, -0.016989725, 0.010641555, 0.007917159, -0.04267126, -0.010464305, -0.02129624, -0.018985428, -0.0011283265, 0.025300773, -0.00045625423, 0.0058820685, 0.035187375, -0.02029839, -0.028386233, -0.026022902, -0.049262326, -0.006551679, -0.0053929905, -0.007871206, 0.009223556, -0.02264859, 0.002970576, -0.036290262, -0.0036959874, 0.016188819, -0.047266625, -0.04054426, 0.0004414834, 0.012597868, 0.007700521, 0.029357824, -0.0070637343, 0.02090235, 0.01889352, -0.017423002, -0.01815826, -0.00498269, -0.006939003, -0.0054389443, -0.0075692246, -0.0191955, 0.0026587476, -0.015663633, 0.041279517, 0.0018381465, 0.0061413785, -0.008967529, 0.010608731, -0.021821424, 0.0288589, 0.024486737, 0.01203986, 0.0014368725, -0.007956549, -0.0023469192, 0.014797079, -0.010392092, -0.005091009, 0.015689893, -0.008350437, -0.0051205507, 0.02335759, -0.0018594821, 0.0063481703, 0.009453325, -0.020731667, 0.026521828, 0.016700873, -0.0012185926, 0.010864759, 0.01184948, 0.014797079, 0.02505131, -0.0288589, -0.010897582, -0.0295679, 0.04973499, 0.032902822, 0.022517294, 0.010096676, -0.00031880353, 0.005274824, -0.011856045, -0.007523271, 0.030697046, 0.0030493538, -0.0059444346, 0.00772678, -0.0021581808, -0.0049892548, -0.0027457313, 0.034058228, -0.027939826, -0.00087722257, -0.006305499, 0.0033940063, -0.014560746, -0.0026193587, 0.0025701227, -0.034137007, -0.004309797, -0.0041653714, -0.0068930495, 0.022622332, -0.021558832, -0.01149498, -0.016924078, -0.021414407, 0.008711501, -0.026022902, -0.005800009, -0.019563131, 0.016083783, 0.026626864, 0.02610168, 0.013549766, -0.0025274514, 0.0054061203, 0.0052945185, -0.017002854, -0.018525891, 0.012302452, -0.014153728, -0.0018200933, -0.0011028879, 0.02407972, 0.005071315, 0.006397406, -0.0070702992, 0.014810209, -0.015532338, -0.011501545, -0.00050836237, -0.033559304, -0.013956783, 0.0143375425, -0.0011110939, 0.008685242, -0.027887309, -0.015834318, 0.026062291, -0.032141306, 0.023410108, 0.003083819, 0.00498269, -0.027178308, 0.03195749, 0.016018134, 0.010766286, -0.035213634, 0.011987341, -0.004519871, 0.00013180905, 0.023318201, 0.021217462, 0.0057770316, -0.013201831, -0.020534722, -0.012243369, -0.0022582943, -0.018959168, -0.0060757305, -0.011567193, -0.0075495304, -0.045874886, -0.0074313637, -0.012624128, -0.019142983, -0.0058164205, 0.0009912861, 0.016228208, 0.034452118, -0.01303771, -0.0032167563, -0.019024815, -0.008652418, 0.009184168, 0.011449027, 0.021125555, 0.022898054, 0.00027920952, -0.023567664, -0.056930024, -0.0031511083, -0.018276429, 0.015755542, 0.0016223284, -0.010523388, -0.0240272, 0.007280373, 0.003955297, -0.0027047012, 0.001818452, 0.02607542, 0.011718184, 0.017239189, 0.0024142084, -0.0041456767, -0.019103594, -0.01815826, 0.010529953, 0.021795165, -0.000801317, 0.006939003, -0.02503818, 0.025852216, -0.013431599, 0.0051172683, 0.002468368, -0.012361535, 0.01614943, -0.022162795, -0.041752186, 0.008698372, -0.022950571, 0.035161115, -0.022687979, -0.0075298357, 0.0048218523, 0.013786099, -0.012853895, -0.021571962, 0.0014122545, 0.018263299, -0.013103358, -0.0045297183, 0.0044345283, -0.0059608463, 0.027178308, 0.0066928226, -0.005990388, -0.009335158, 0.004414834, -0.0010963231, -0.013615414, 0.011179869, 0.010621861, -0.01855215, -0.012236804, -0.04020289, -0.024224145, -0.032141306, 0.03432082, -0.017029114, -0.034872264, 0.0114096375, -0.007844946, 0.0049728425, -0.007556095, -0.008337308, -0.007424799, 0.042802554, -0.027440902, 0.020652888, 0.026495568, -0.009801259, -0.0044345283, 0.016228208, 0.009853778, -0.026219847, 0.027230827, 0.005356884, -0.012315582, -0.0070702992, -0.023436368, -0.010707203, 0.00856051, -0.027414642, -0.0015936074, 0.0014245636, 0.015335393, -0.005675277, -0.021900203, 0.019064205, 0.014875857, 0.01115361, 0.023462627, -0.020626629, -0.0038732372, 0.026232976, 0.022924313, -0.0016215078, -0.023909034, -0.031432305, 0.0023108127, 0.0007939316, -0.00825853, 0.00857364, -0.009479584, 0.005681842, -0.013996173, 0.022582943, 0.00017478803, 0.015860578, 0.0022763475, 0.020849833, 0.0044049867, 0.0064663365, -0.0029607287, 0.0032413744, -0.026022902, 0.002392873, -0.035528746, -0.013536636, -0.048343252, 0.023436368, 0.016201949, -0.031668637, -0.0019595954, 0.019602519, -0.023856515, -0.011501545, -0.004506741, 0.027362123, 0.020587241, 0.031799935, -0.005104139, 0.019694427, 0.014350672, 0.038968705, -0.028359974, -0.008652418, 0.0056358883, -0.00031757262, 0.02472307, -0.02406659, -0.023278812, 0.0112783415, 0.012171156, -0.014705172, 0.0022845536, 0.032010008, -0.00652542, -0.010943537, -0.0021319217, 0.0005108242, -0.010654685, -0.0040373574, 0.04745044, -0.009039742, 0.0078121223, 0.014547616, 0.0062135914, -0.046583883, -0.012499396, -0.007818688, -0.01305084, 0.0025602754, 0.016661486, -0.019392446, -0.022727368, -0.010024463, 0.015834318, -0.018775353, -0.020469073, 0.016556447, -0.017672466, -0.00907913, -0.010070417, 0.012656951, -0.03602767, 0.0061807674, 0.017698724, -0.00120136, 0.04151585, -0.011908563, 0.013681062, -0.00033480526, -0.009873472, -0.023239423, -0.0045001763, -0.030618269, 0.014127469, 0.018263299, 0.0050877267, -0.0027867614, -0.006515573, 0.01339221, -0.0016091987, -0.03673667, -0.018053224, -0.016031263, 0.0052452823, 0.013470988, 0.01786941, -0.0035646912, -0.0055045923, 0.0011570476, -0.01614943, 0.010595601, 0.20482203, -0.015020283, -0.004926889, 0.029174011, 0.0026013055, -0.016228208, 0.0048809354, 0.010589037, -0.022543553, 0.0030411477, -0.0141405985, -0.0106284255, 0.001834864, 0.006249698, 0.019418705, -0.013589154, -0.017449262, -0.007411669, -0.006177485, 0.005123833, 0.012597868, 0.00574749, -0.0005953461, -0.004526436, -0.00825853, 0.008993788, 0.0070571695, 0.025248256, 0.0057376428, 0.013129618, -0.009151343, 0.0038141538, -0.006482749, -0.011823221, -0.013667932, -0.016385762, 0.011245518, -0.025970384, 0.012440313, 0.008337308, 0.018512761, -0.03681545, -0.0095255375, -0.03329671, -0.0005785238, 0.037340634, 0.021414407, 0.006190615, 0.019668167, -0.018433983, -0.02506444, -0.002873745, 0.0029590875, 0.015125319, 0.007772734, -0.012066118, -0.008376696, 0.012827637, -0.010267361, 0.014061821, -0.013267479, 0.008120668, -0.028911417, 0.03631652, -0.025839088, 0.019878242, -0.033086635, 0.0031478258, -0.0021548986, -0.039178777, -0.013628543, -0.017081633, -0.004496894, -0.0030378653, -0.023646442, -0.00360408, 0.018827872, 0.022110276, 0.024486737, 0.037892077, -0.022425387, -0.006531985, -0.003554844, -0.02401407, 0.018972298, -0.050916657, 0.022491036, -0.007851511, -0.033139154, -0.025169477, -0.005622759, -0.025615884, -0.009906297, 0.018026965, -0.004487047, -0.0033316405, -0.021821424, 0.020062055, -0.021138685, -0.0027818377, -0.020403426, 0.052387174, 0.043774147, -0.0008353719, 0.009039742, 0.023777738, 0.0025799698, 0.009939121, -0.0090725655, -0.0058492445, -0.009052872, -0.005176352, 0.006486031, -0.0097159175, 0.0010577549, 0.02234661, 0.015781801, -0.0077792984, 0.0020088316, -0.0042736907, -0.02645618, -0.009650269, -0.012761989, -0.0005928843, 0.0033037402, -0.00772678, -0.004089876, 0.0069193086, -0.025327032, -0.007116253, 0.0058098556, -0.026416792, 0.02888516, -0.0022041346, 0.0005136963, -0.0010766287, 0.0022911183, -0.0039815567, -0.0086786775, 0.017029114, 0.00015960692, 0.010838499, -0.031747416, -0.019523742, 0.03442586, -0.0041850656, 0.027677234, -0.0058065737, -0.02092861, -0.023777738, -0.011140481, -0.010024463, 0.0009732329, -0.0080944095, 0.030775825, -0.009985074, -0.008133798, -0.0267319, 0.027756011, 0.018486502, -0.021821424, 0.0026423356, 0.02406659, -0.041200742, 0.005800009, -0.0040701814, -0.16553822, 0.008849362, -0.007556095, -0.020324647, 0.035476226, 0.020219611, 0.02371209, 0.010871324, 0.0025668403, -0.021821424, -0.0011151969, 0.006210309, -0.024105977, -0.01444258, -0.014455709, 0.017278576, -0.022254702, 0.004496894, 0.02573405, 0.0121252015, 0.026626864, -0.0017905516, 0.034872264, -0.01989137, 0.0050023845, 0.003377594, -0.013221525, 0.021729518, -0.010641555, -0.009190733, -0.0064006886, -1.3975863e-06, 0.024591774, -0.004060334, -0.007943419, 0.0055242865, 0.029147752, 0.0018332229, -0.026626864, 0.012985192, 0.016044393, 0.022228442, 0.0031264902, -0.01441632, 0.0052124583, 0.011179869, 0.011028879, -0.011573758, 2.9515995e-05, -0.012775118, 0.021125555, -0.03256145, 0.011987341, 0.008567075, 0.030775825, 0.023580793, 0.0049794074, 0.00023489707, -0.01611004, 0.021243721, 0.020652888, -0.022714239, 0.0048481114, 0.011127351, -0.0011028879, -0.018433983, -0.021361887, 0.0056194765, -0.026495568, -0.007877771, -0.020771055, -0.005048338, 0.006499161, -0.0076545672, 0.018932909, -0.02849127, -0.037655745, 0.0034530894, 0.014902116, 0.0077399095, -0.0020022667, 0.026941976, 0.004739792, -0.0043294914, 0.0031954206, -0.009243251, -0.008980659, 0.004375445, 0.0031199255, 0.0085473815, -0.008179752, -0.0061019897, 0.0032233212, -0.0009100466, 0.00180204, -0.013057405, -0.0037813298, -0.0028179442, -0.029699195, -0.023633312, 0.049945068, -0.0006507367, -0.029174011, 0.020088315, 0.012893285, 0.006768318, -0.02126998, 0.0032397332, 0.050601546, -0.011606582, -0.031642377, 0.029121492, -0.0034104183, 0.0035515616, 0.014481968, 0.018578408, 0.00063719676, -0.019392446, -0.0005284671, 0.0077136504, 0.053358767, -0.0087443255, 0.016398892, -0.0053207777, 0.007142512, -0.040019076, -0.07867267, -0.015991874, 0.021690128, 0.017081633, -0.004772616, 0.023777738, 0.0025947406, 0.025313903, 0.016608967, 0.0032085504, -0.010595601, -0.01287359, -0.021046776, -0.0029738585, 0.0066731283, 0.020810444, -0.010418352, -0.021178074, 0.0074051046, 0.029174011, 0.010214843, 0.012138331, -0.017475521, -0.02090235, -0.010057287, 0.012788247, -0.02988301, 0.037209336, 0.012217109, -0.004746357, -0.00806815, -0.013083664, -0.01148185, -0.036237746, 0.00062037446, 0.0017511628, 0.002532375, -0.02674503, 0.025313903, -0.027335864, 0.0024618034, -0.014980894, 0.021073036, -0.03802337, 0.006768318, -0.02368583, 0.000584268, 0.016753392, 0.012164591, -0.0034727838, -0.025300773, -0.0010643196, -0.02401407, 0.020692278, 0.032876562, 0.0267319, 0.0071556414, -0.0029393933, -0.03773452, -0.008199446, -0.007864641, 0.0006810989, -0.015624245, 0.015427301, 0.016267596, 0.02369896, -0.0154404305, -0.019589389, 0.017803762, -0.01288672, 0.0070374752, 0.026941976, -0.018132003, -0.0028097383, -0.03303412, 0.0032594276, -0.027257087, -0.025523977, 0.020075185, -0.018026965, -0.0069586975, -0.020797314, 0.025891606, 0.003709117, 0.014928375, 0.030749565, 0.0019513895, -0.01511219, 0.0057048188, -0.044561923, 0.0104314815, 0.028123641, 0.0035088903, -0.0080287615, 0.018053224, 0.013917395, 0.0002909031, -0.0017495216, -0.017331095, 0.017331095, -0.019444963, -0.027703494, -0.0685366, -0.006728929, -0.011403073, -0.03022438, 0.00079967576, 0.0032659925, -0.0028310737, -0.008468604, 0.041489594, -0.0055242865, -0.014193117, -0.011055138, -0.0018381465, -0.023948424, -0.04469322, -0.020127704, 0.011087962, 0.0097159175, 0.008140363, 0.0046544494, 0.011790397, -0.018749094, -0.0120595535, -0.009210427, 0.0032988165, 0.0171998, -0.009958815, -0.0032134738, -0.004601931, -0.031379785, -0.017055374, 0.010247666, -0.0071228174, -0.014048691, 0.015650505, 0.006321911, 0.002392873, 0.037524447, 0.035187375, 0.054356616, -0.012972062, -0.035528746, 0.0027637845, -0.037655745, 0.0075954837, -0.007864641, 0.0013531712, -0.0040701814, 0.0106940735, -0.0054061203, 0.039651446, 0.029594159, -0.02335759, -0.03334923, 0.02298996, -0.014547616, 0.016031263, 0.029462863, -0.0017659336, -0.0022172641, 0.032876562, -0.0023731785, -0.006200462, -0.023121256, 0.016306985, -0.0039520147, -0.031563602, -0.02298996, 0.028937677, -0.024959404, -0.01612317, -0.015926227, -0.00652542, 0.01014263, -0.008304483, -0.005885351, -0.0027719906, 0.00048210315, -0.005973976, 0.026534958, -0.002614435, -0.0066403043, -0.006420383, 0.0069915215, 0.02305561, 0.0082913535, -0.0105627775, -0.008915011, 0.0064466423, 0.01202673, -0.009184168, 0.011626276, 0.01238123, 0.009367982, 0.0029344696, 0.0029049278, 0.020994259, -0.010707203, 0.014311283, 0.016359504, 0.02233348, 0.002053144, -0.0013014734, -0.016714003, -0.00808128, 0.020127704, -0.013175571, -0.039283816, 0.012361535, 0.010011334, 0.0076020486, 0.002451956, -0.022937443, -8.5086074e-05, -0.026941976, 0.037314374, -0.010877889, -0.030697046, -0.024171626, 0.0460587, 0.004611778, 0.007825253, 0.012683211, -0.03090712, 0.037235595, -0.0108253695, 0.0008411161, 0.0033267168, -0.0006815092, -0.005330625, -0.020862963, 0.015519208, -0.02337072, -0.025510848, -0.025353292, 0.0018545585, 0.028543789, 0.042750034, 0.0015706305, 0.1086082, 0.029646676, -0.008698372, 0.024486737, 0.01712102, 0.014639524, 0.00823227, -0.00042507137, -0.0030624834, -0.022057759, 0.0143375425, -0.00480544, 0.0023895905, -0.021033648, -0.008127233, 0.015742412, -0.01713415, 0.03130101, 0.0026357707, 0.005468486, 0.038312223, -0.00070202426, 0.005268259, 0.0033595408, -0.027309604, -0.013799229, 0.045139626, -0.012249934, -0.0019924196, -0.0026981365, 0.012072683, 0.01819765, -0.046872735, -0.010214843, 0.001586222, -0.013083664, 0.004424681, -0.009164473, 0.016897818, -0.013116488, 0.024539256, 0.004864523, 0.00075700454, -0.020364037, 0.0023682548, -0.008370131, 0.018092614, 0.0036894225, -0.005104139]" 32699261,Dead USB Drives Are Fine: Building a Reliable Sneakernet,https://changelog.complete.org/archives/10421-dead-usb-drives-are-fine-building-a-reliable-sneakernet,107,1662185939,82,pabs3,"[0.0010018271, 0.0011672351, 0.03920682, 0.018334715, 0.017925456, 0.0007311206, -0.006919854, -0.024364434, -0.009706212, -0.042671863, 0.018198295, 0.035632644, -0.02334129, 0.012345919, -0.0049008527, -0.007885018, 0.023095738, 0.028184166, 0.009153715, -0.033995617, -0.008287454, -0.010347381, -0.0058421437, -0.018907674, -0.0054294765, -0.00574324, 0.028020464, -0.024009744, -0.0111658955, 0.019971741, 0.0073461635, -0.015456273, 0.008014617, -0.016042875, -0.023354933, -0.024323508, -0.01873033, -0.03609647, 0.010736176, -0.021717906, 0.016192935, 0.0111727165, -0.012918879, -0.004024361, 0.00409257, -0.0048701586, -0.008799026, -0.02145871, 0.016752254, -0.007891839, 0.017175153, -0.020694762, -0.020053593, -0.018266505, -0.024664557, 0.013655542, -0.03852473, 0.003366139, 0.040025335, -0.025387576, -0.0040891594, 0.024432644, -0.02799318, -0.0037276493, 0.0033866018, -0.004048234, 0.0058898902, -0.03274056, -0.019685263, -0.013955664, 0.0020360537, 0.038306456, 0.019044094, 0.0066231424, 0.03194933, 0.014842387, 0.012577832, 0.006302558, -0.019753471, 0.0076190014, 0.019889891, -0.030967114, -0.024746407, 0.01916687, 0.00024853836, -0.010783922, 0.011015834, 0.013000731, -0.01170475, -0.003768575, -0.011991231, 0.022168089, 0.00610134, 0.0059751524, 0.012195859, 0.04155323, -0.002196346, 0.020844825, 0.015906455, 0.008880877, -0.00053373934, 0.0036730818, 0.0137169305, -0.019821681, -0.002146894, -0.0012831913, 0.014105725, -0.015210719, 0.005146407, 0.0055454327, 0.0149924485, 0.039725214, 0.0020548112, -0.0011979294, 0.019344214, -0.012475518, 0.014746894, 0.0022457978, 0.010592936, -0.031076249, 0.045618515, -0.012741535, 0.014064799, -0.011568331, 0.022086237, 0.02735201, -0.013021193, -0.0033320342, 0.0266972, -0.0092560295, 0.0075848964, -0.0032467723, -0.0028102314, 0.015606334, -0.028484289, 0.011322778, 0.009822168, 0.0041028014, -0.029330086, -0.03265871, 0.023054812, 0.0071688187, -0.014201218, -0.013341779, 0.018839464, 0.0044745435, 0.0042971987, 0.010224604, 0.011452375, 0.011977589, 0.007373447, 0.014487698, -0.008273813, -0.02016273, -0.007857734, 0.02325944, -0.016274787, 0.027338369, -0.00059811206, -0.028020464, -0.01235274, 0.0199581, -0.0057773446, -0.0175162, -0.0006121803, 0.047337394, -0.0150197325, 0.0065174177, 0.018812181, -0.020762973, -0.011431913, 0.0105247265, -0.027583923, 0.012216322, -0.007571255, 0.00939927, -0.01320536, 0.010415591, -0.04357223, -0.027938612, 0.027038246, 0.008867235, 0.025401218, 0.0058830697, -0.015047016, 0.008594397, -0.0016472595, -0.019971741, -0.00029671134, 0.026656274, 0.0046450673, -0.0002724117, -0.025319368, -0.030094031, -0.6233803, 0.010088185, 0.030912546, -0.011445554, 0.01945335, 0.010074544, 0.018034592, 0.014856029, 0.00038367845, 0.032113034, 0.0062138857, 0.01909866, 0.018225579, -0.005391961, -0.037242386, -0.008778563, -0.007687211, 0.008157857, 0.025974179, 0.008041901, -0.02477369, 0.036723997, -0.0053510354, 0.00036470767, 0.006302558, 0.00050943973, -0.0040959804, 0.0011305725, 0.0035264313, 0.006380999, -0.03375006, -0.0020155907, 0.011732034, -0.009508405, 0.058769308, -0.02943922, -0.0011408039, 0.040216323, 0.01901681, 0.021813398, 0.0024777101, -0.0341866, 0.0006953106, 0.010054081, -0.016397564, 0.006323021, -0.0022082827, -0.01873033, -0.02390061, -0.0018774666, 0.010183679, 0.0009489647, -0.002001949, -0.019589769, 0.015428989, 0.0072097443, 0.03454129, -0.034704994, 0.024009744, -0.00739391, 0.006742509, 0.009167357, -0.003028502, -0.030012181, -0.036451157, 0.01680682, -0.028811693, -0.022522777, 0.015087942, 0.0009250914, 0.027802194, 0.02957564, 0.01967162, -0.008928624, 0.0052180267, 0.02864799, 0.0034019488, -0.023013886, -0.010899878, 0.0074962243, -0.015633618, -0.003768575, -0.021035811, -0.027365653, 0.0409257, -0.015483557, -0.023805115, 0.012905237, 0.013887455, -0.010401949, -0.00071961025, 0.008526187, -0.009167357, -0.032495007, -0.0074348357, 0.023000244, 0.009494763, -0.0074484777, -0.022345433, -0.0050440924, -0.0073529845, -0.017679904, 0.0069676004, -0.020421924, 0.016015591, -0.0028460415, 0.011309136, 0.030776126, 0.007011937, -0.021281365, 0.00638782, -0.016302072, 0.0067390986, -0.00063093787, -0.022454567, -0.018975884, 0.020381, 0.010579294, 0.03366821, -0.036014616, 0.010238246, -0.0062991474, -0.014446773, -3.946026e-05, -0.013369062, 0.013485018, 0.010906699, -0.0046314253, 0.008137394, -0.023150304, -0.010674787, -0.037924483, -0.007925944, -0.014337637, 0.005944458, 0.0058489647, 0.027092814, -0.036069185, 0.0046825823, -0.017175153, -0.012502802, 0.017202437, -0.0097676, 0.0028528625, 0.009753958, -0.011697929, -0.015388063, -0.015469915, -0.015810963, -0.0068550548, 0.014037515, -0.027338369, 0.012216322, -0.005221437, -0.009030938, -0.024378076, -0.025892327, -0.030094031, -0.012864312, 0.006762972, -0.009174178, 0.03847016, -0.0047644335, 0.008423873, 0.0024095005, 0.0071347137, 0.022959318, 0.02031279, -0.004832643, -0.013416809, 0.012380024, -0.016533984, -0.008355664, 0.018130086, -0.0056579784, -0.0019644336, -0.017257003, -0.008887698, 0.016493058, 0.0027079172, 0.004177832, -0.019139586, -0.0060058464, 0.005808039, 0.027297443, 0.009815347, 0.039234105, -0.00067783194, -0.023573203, 0.02433715, 0.016629476, -0.01227771, 0.0011740561, -0.001816078, 0.0005831912, 0.014392205, 0.004679172, 0.02943922, 0.008819489, 0.04272643, 0.004184653, -0.017052375, -0.0068925703, -0.01773447, 0.021772472, -0.023695981, 0.0150197325, -0.01694324, 0.015128868, -0.012393666, 0.00409257, -0.0073120585, -0.007571255, -0.0049383678, 0.004082339, 0.04128039, -0.031922046, 0.048892573, -0.011097686, -0.01493788, -0.019821681, -0.01026553, 0.02699732, 0.012373203, -0.0006637637, 0.02598782, -0.004965652, -0.0034906212, -0.017816322, -0.04520926, 0.029384654, 0.035277955, 0.01242095, 0.006953959, 0.029330086, -0.0024845311, 0.009726675, -0.016465774, 0.033286236, -0.007080146, 0.008198782, 0.031922046, 0.013116688, 0.0039390987, 0.027693057, 0.027147382, 0.01694324, 0.012250426, -0.013600974, 0.0058046286, 0.008055543, 0.0029449451, -0.019371498, 0.016465774, 0.023791473, -0.010763459, 0.0075098663, -0.009644823, 0.053367116, -0.0017649209, 0.01471961, -0.004419976, -0.0014102315, -0.015347138, 0.0036730818, -0.023423143, -0.0036799025, -0.010654324, 0.016956883, 0.019657979, 0.007919123, -0.018198295, -0.012796102, 0.013546407, 0.020544702, 0.033695493, -0.0024248478, 0.014678685, 0.028948113, 0.002254324, -0.014105725, -0.021499636, 0.018102802, 0.01421486, -0.014392205, -0.022713764, -0.023464069, -0.002670402, 0.0009029233, -0.009651644, -0.006016078, 0.016411206, 0.00531011, 0.006971011, -0.00075200974, -0.005603411, 0.022195373, -0.024105238, 0.0056000003, 0.013287211, -0.0036082827, 0.003338855, -0.039452374, -0.007530329, 0.04365408, -0.0046382463, -0.016820462, -0.016302072, 0.00739391, -0.027010962, 0.015633618, -0.0027624848, -0.021349574, -0.039670646, -0.021513278, 0.007762241, -0.028402437, 0.002059927, 0.030312303, 0.017748112, -0.021908892, -0.037788063, -0.018512059, 0.022741048, 0.06362582, 0.01687503, -0.0035809989, 0.0130621195, -0.02290475, -0.044063337, -0.011745676, -0.02892083, 0.023927893, -0.02182704, 0.03718782, 0.01098173, 0.0018740561, -0.0076940316, 0.019207796, 0.0009216809, 0.017066017, -0.010333739, -0.010688429, -0.03432302, 0.004917905, -0.029739343, 0.013560049, 0.030476006, 0.011752497, -0.0015764921, 0.027652131, 0.010224604, 0.022277223, -0.02145871, -0.015756395, 0.009938125, 0.0022577345, 0.009447016, -0.013000731, 0.0043108403, 0.0039390987, 0.0029773447, -0.014078441, 0.0067595616, 0.015060658, 0.010797564, 0.016997809, -0.016820462, 0.008314738, -0.030121315, 0.014228502, 0.0065617543, -0.022522777, -0.03093983, 0.029739343, -0.0039766137, -0.0117797805, 0.008444336, 1.7318819e-06, -0.020039951, 0.030967114, -0.013478197, -0.026165165, -0.005398782, -0.018457491, 0.008410231, 0.019276004, -0.0059819734, -0.012516444, -0.02649257, 0.01564726, 0.007557613, -0.043981485, -0.009065043, 0.0048940317, -0.016083801, -0.028975395, 0.0033252132, 0.018457491, 0.009065043, 0.015606334, 0.010961267, -0.02878441, 0.019617053, -0.0051668696, -0.03375006, 0.0062923264, -0.018361999, -0.009603898, -0.008212424, 0.0077281366, 0.0111727165, -0.00014462546, -0.021008527, 0.011711571, 0.0005299026, 0.009624361, -0.017707186, 0.016042875, 0.037651643, 0.018512059, 0.011541048, 0.03214032, -0.027270159, 0.0021792937, 0.005640926, -0.011370524, -0.022590987, 0.014255785, -0.0041471375, 0.0051361755, 0.015333496, 0.018484775, -0.0024742996, 0.010170037, -0.013143971, -0.008226066, -0.005729598, 0.012782461, 0.042835567, 0.0094743, 0.021717906, -0.011691108, 0.01198441, 0.0008726553, -0.036887698, 0.012148112, 0.002426553, -0.01823922, 0.048019487, 0.02081754, -0.03623289, -0.02390061, -0.003294519, 0.003789038, 0.049711086, -0.008348843, -0.04673715, -0.02851157, -0.026438003, 0.0025732035, 0.010306456, -0.008635323, -0.0049485993, -0.011581973, -0.0036867235, 0.010238246, 0.011534227, 0.009174178, -0.03380463, -0.010197321, 0.012455055, 0.02204531, 0.027870402, -0.007850913, 0.012066261, -0.0020002436, -0.03410475, 0.02174519, -0.0272838, -0.012182217, -0.00078270404, 0.016356638, 0.018280147, 0.027802194, 0.0037447016, -0.002655055, 0.017775396, 0.0064799027, 0.0003425396, -0.0054294765, -0.014460415, -0.0037583436, -0.002160536, -0.0005034714, -0.0032996347, 0.0032740561, 0.020449208, -0.012884775, 0.0037310598, 0.03926139, -0.012038977, -0.017829964, -0.05197564, 3.335871e-05, 0.002269671, 0.0035809989, 0.012414129, -0.017066017, -0.018361999, 0.0131030455, -0.0070665046, 0.01830743, 0.0156199755, 0.04695542, 0.019562485, -0.0055181487, 0.01335542, 0.005542022, -0.0007306943, 0.010238246, -0.028811693, 0.005838733, -0.010797564, -0.0060535935, 0.014746894, -0.009133252, 0.028811693, 0.00012970463, 0.00093702803, -0.005640926, -0.019576127, 0.011602436, -0.012359561, -0.021567844, -0.0149924485, -0.024937393, -0.013505481, 0.013334958, 0.0037583436, 3.7062273e-05, 0.008996833, -0.025510354, -0.01622022, -0.0047064554, -0.0039868453, 0.003632156, -0.01098173, 0.016356638, 0.011650183, -0.001974665, -0.017638978, -0.011124969, 0.021267723, -0.025687698, 0.014542266, 0.0019183923, 0.0092492085, -0.008171498, 0.019698905, -0.022413643, 0.018198295, -0.05522241, 0.011472838, 0.04695542, -0.009569793, -0.029684775, -0.03467771, 0.00066077954, 0.0013010963, -0.001773447, 2.1648524e-05, -0.017557126, -0.0039527407, -0.01729793, 0.033286236, 0.0024725944, 0.02211352, -0.015442631, -6.996803e-05, 0.016097443, -0.014474057, -0.005821681, 0.0043449453, -0.011479659, 0.023054812, -0.0056170523, -0.026792692, 0.02470548, 0.013116688, -0.023504995, -0.014760536, 0.002956882, 0.027051888, -0.010818027, -0.020913033, 0.00939927, 0.006118392, -0.0002112363, -0.015265287, -0.01736614, -0.025619488, -0.009958588, -0.036887698, 0.016888672, 0.023177588, 0.006793666, 7.391139e-05, 0.01083849, -0.0054738126, -0.0048121805, 0.0040004873, 0.03366821, -0.021404142, -0.017475273, -0.033722777, 0.009344702, 0.0098630935, 0.0030029232, -0.0018774666, -0.0069096223, 0.028402437, -0.011036297, 0.015851889, 0.016670402, 0.009917662, -0.016861388, 0.016056517, 0.020190012, -0.012229963, 0.016834104, -0.008751279, -0.025428502, -0.0136964675, -0.012339099, 0.012748356, 0.00531011, -0.0033320342, 0.03746066, -0.0076940316, 0.0072233863, -0.015306212, -0.003898173, 0.0043961024, -0.007919123, 0.016356638, 0.008389769, -0.018048234, 0.00047320343, -0.014665043, 0.014323995, 0.005016809, -0.037433375, -0.006626553, 0.0067732036, -0.002576614, 0.001880877, -0.0046382463, 0.027502071, -0.004853106, -0.01987625, -0.00409257, 0.015851889, -0.007011937, 0.008539829, -0.0034053593, 0.0078099878, 0.020135446, -0.0067459196, 0.008874056, -0.0018314251, -0.0175162, -0.021049453, -0.0021281363, -0.008321559, 0.028156882, -0.012918879, -0.009910841, -0.01916687, 0.004743971, -0.03574178, -0.0066231424, -0.005197564, -0.010627041, 0.014842387, 0.018825822, 0.0040891594, 0.0277067, 0.00039881244, 0.042590015, 0.0078099878, -0.008594397, 0.011650183, 0.00012640073, 0.005061145, 0.021431426, -0.061988793, -0.016097443, -0.0031120586, 0.002218514, -0.008498904, 0.03344994, 0.018921316, 0.0008423873, 0.008512545, 0.009337881, 0.021772472, -0.01622022, -0.015169793, -0.037678927, -0.008417052, 0.025237516, 0.024391718, -0.009160536, -0.006660658, 0.020762973, 0.01536078, -0.010852132, -0.02957564, -0.0056954934, 0.03295883, 0.013751036, 0.0034087698, 0.011711571, -0.025537638, 0.03988892, -0.00775542, -0.008096468, -0.011622899, -0.010067723, -0.009146894, 0.026124239, 0.01198441, -0.047555663, -0.0011510353, 0.022659196, 0.038988553, -0.016711328, -0.006616322, -0.002820463, -0.010026797, -0.024009744, 0.0060842875, 0.0165067, 0.013553228, 0.0031342267, -0.004184653, 0.012830207, 0.00445067, -0.020667478, 0.0050577344, -0.018675761, 0.016765896, 0.0032177833, -0.0058046286, -0.022590987, 0.012373203, -0.007891839, -0.0149788065, -0.011350061, 0.19524288, -0.008990012, 0.014665043, 0.011541048, -0.011213642, 0.012564191, 0.014896955, 0.014610475, 0.024528136, 0.018866748, 0.0020906213, 0.018443849, -0.02935737, -0.00911961, 0.017216079, 0.0008645554, -0.036914982, -0.034213886, -0.012461876, 0.0026090133, -0.017270645, -0.008369306, -0.003935688, -0.024691839, 0.002030938, 0.014160292, -0.012530086, 0.014555908, 0.0033848966, 0.0030404385, -0.032904264, -0.015660902, -0.001116078, -0.016793178, -0.0111454325, 0.023082096, 0.024350792, -0.0045495736, -0.0079805115, -0.008696712, 0.017939098, -0.0011680877, 0.0052657737, -0.01557905, -0.007257491, 0.0056886724, -0.011029476, 0.002476005, -0.016083801, -0.00919464, 0.0018894032, -0.024814617, 0.0011135201, -0.0002502436, -0.00789866, 0.006060414, -0.008294275, 0.0137237515, 0.026042387, 0.03050329, -0.0129257, 0.029084532, -0.024991961, 0.03361364, -0.02174519, 0.040161755, 0.012107187, 0.048155908, 0.028675275, -0.012468697, -0.0097676, -0.00074135204, 0.007284775, 0.008676249, 0.0105315475, -0.015879173, 0.033995617, -0.012666505, 0.039288674, 0.0010095006, -0.026178807, 0.023518637, -0.013662363, 0.0059035323, 0.0023174179, -0.014064799, 0.017570768, -0.013505481, -0.005647747, -0.01600195, 0.021663338, -0.020667478, 0.0013573691, -0.01909866, -0.0070665046, 0.014692327, 0.014242144, -0.0048565166, 0.0092628505, -0.008342022, -0.026833618, 0.04700999, 0.0209676, -0.004897442, -0.0055045066, -0.012748356, 0.011118148, 0.02799318, 0.022454567, -0.0098903775, 0.008457978, -0.026287941, 0.023504995, 0.0015193666, 0.0072029233, 0.023859683, 0.005163459, -0.012721072, -0.006616322, -0.0014997565, 0.020517418, -0.033286236, -0.012843849, 0.01615201, -0.0126324, 0.007543971, 0.0030523753, -0.0036594397, -0.017638978, -0.008382948, 0.039179537, -0.006374178, -0.005831912, -0.007748599, 0.00017510659, 0.0020616322, 0.007407552, -0.014392205, 0.0024862364, 0.010592936, -0.010722534, 0.027270159, 0.022127163, 0.0032979294, 0.014283069, -0.023382217, 0.00933106, -0.0017615104, -0.024200732, -0.020503776, -0.009467479, -0.006503776, 0.030830694, -0.007243849, -0.015770037, -0.017911816, -0.034923267, -0.037951767, 0.005985384, 0.0076053594, -0.03718782, -0.0016140073, 0.03896127, -0.010361023, -0.010599757, -0.02570134, -0.17210622, 0.032495007, 0.021199513, -0.0017904994, 0.019330572, 0.015988307, 0.028457005, 0.036314737, -0.010224604, -0.021090377, 0.0005081608, 0.0046280148, -0.01701145, -0.013826066, 0.006756151, 0.01579732, -0.017679904, 0.029712059, 0.010933983, 0.012584653, 0.027938612, -0.038224604, 0.010940804, -0.023082096, -0.0041164435, 0.0021827042, -0.015333496, 0.006067235, -0.020421924, -0.03252229, 0.015319854, -0.015974665, 0.030912546, 0.0137169305, 0.029302802, -0.007891839, 0.0016549331, 0.024009744, 0.0052009746, 0.025523996, -0.002180999, 0.03710597, 0.02268648, 0.01004726, -0.0009472595, -0.014187576, -0.0124414135, -0.016465774, -0.008164678, -0.009160536, 0.0018433618, -0.017993666, -0.01134324, 0.0011774665, 0.0023805117, -0.007796346, -0.012114008, 0.01270743, -0.0105247265, 0.010681608, -0.001751279, -0.04198977, 0.0252648, 0.000712363, -0.010749818, -0.057241414, -0.013028014, -0.023354933, -0.022004385, 0.0043688184, -0.04119854, -0.008983191, -0.012748356, -0.02548307, 0.0126324, 0.017666262, -0.026819976, 0.012666505, -0.021281365, -0.0051157125, 0.02347771, 0.019794397, -0.009508405, 0.00020473509, -0.0053305724, -0.027447503, 0.012891596, 0.016956883, 0.01729793, 0.0069232644, 0.028156882, -0.02074933, 0.018716687, -0.031103533, 0.034895983, -0.01687503, 0.033040684, -0.0051020705, 0.017311571, -0.006237759, -0.017993666, 0.00031141902, -0.005756882, -0.0072029233, 0.011575152, 0.003294519, -0.0035503046, 0.006340073, 0.017843606, -0.024077954, -0.036587577, 0.005105481, 0.020449208, 0.03555079, -0.018648477, 0.015047016, 0.003482095, -0.00919464, 0.028129598, -0.03080341, 0.031621926, -0.0046109622, -0.0050270404, -0.020080877, -0.01643849, -0.02375055, -0.13074397, -0.023204872, 0.018130086, 0.019344214, -0.028402437, 0.019344214, -0.018075518, 0.02656078, -0.009808526, 0.031430937, -0.019466992, -0.016424848, -0.013157613, -0.013409988, -0.0040584654, -0.016056517, -0.0012345919, -0.04198977, -0.034132034, 0.02979391, -0.0017973203, 0.0046246042, -0.011595615, -0.012700609, -0.0067084045, -0.014610475, -0.017420707, 0.009317418, 0.01356687, -0.0124482345, 0.0048803897, -0.028184166, 0.0010095006, -0.03238587, -0.0068925703, -0.001590134, -0.02411888, -0.008069184, -0.006009257, -0.019794397, -0.006827771, 0.018061876, 0.011377345, 0.009774421, -0.0015756395, -0.0019831914, -0.025073813, 0.030885262, -0.0031103534, 0.0031581, -0.0130825825, -0.019657979, -0.021813398, 0.0071551767, 0.02009452, -0.007878197, -0.012639221, -0.015224361, -0.007523508, -0.014051157, -0.012646042, 0.006251401, -0.016643118, 0.01980804, -0.014514982, 0.008867235, -0.0029330086, -0.0055965898, 0.0061286236, -0.008935445, -0.020517418, 0.00775542, -0.014487698, 0.005361267, -0.025578564, -0.0016429963, 0.0059478683, 0.011077223, 0.020517418, 0.0054397075, -0.011070402, -0.019507917, 0.0036355664, -0.03467771, 0.01916687, 0.038879417, 0.025755908, 0.008069184, -0.009638002, -0.035359807, 0.010135932, 0.027897686, -0.013485018, 0.026942752, -0.007885018, 0.002634592, -0.019180512, 0.016888672, 0.00032953714, 0.0076190014, -0.003789038, 0.0023123021, -0.042017054, 0.004249452, 0.013764678, -0.024446286, 0.028566139, 0.020694762, -0.015156152, -0.009958588, -0.011950305, 0.020299148, -0.01255737, 0.017843606, -0.013621437, -0.012229963, 0.001916687, -0.024132522, 0.013648721, -0.004041413, 0.0136419, -0.0055386117, 0.0028170524, 0.006074056, 0.011309136, 0.018280147, -0.011977589, 0.002426553, -0.0021844092, 0.030530574, 0.0101905, -0.029493788, 0.00038730208, -0.034514006, -0.0034991475, -0.033859197, -0.009378807, 0.01062022, 0.00081851403, 0.004348356, 0.004546163, 0.05527698, -0.010231425, -0.013191718, -0.012516444, 0.0025237515, -0.017993666, -0.025455786, -0.0031069429, -0.0055317907, 0.0228229, 0.02433715, 0.0282933, -0.003388307, -0.014446773, -0.018252863, -0.027733983, -0.0052453107, 0.023068454, 0.009303776, -0.022127163, -0.020571986, 0.042235322, 0.01916687, 0.01643849, 0.013362241, -0.023791473, -0.029384654, -0.017611694, 0.0036628502, 0.0065992693, -0.022277223, 0.005951279, -0.0092355665, 0.013662363, -0.016684044, -0.019999025, 0.009944946, -0.026042387, -0.008171498, -0.027324727, 0.012243605, 0.00011233252, -0.02260463, -1.959691e-05, -0.0038299635, 0.02987576, 0.013655542, 0.008444336, 0.015851889, 0.016984167, 0.010095006, -0.020449208, 0.013982948, -0.0028630937, -0.018457491, -0.0027454325, 0.02892083, -0.02649257, 0.0032928137, 0.0030267967, 0.002203167, -0.00086839224, -0.0024811206, 0.021131303, -0.03257686, 0.010033618, 0.009808526, -0.019030452, -0.024214374, -0.016574908, 0.012837028, -0.0065412913, 0.01564726, 0.020831183, 0.0059546893, -0.00058873324, 0.02304117, -0.01980804, -0.045700368, -0.020217296, -0.004774665, 0.021335931, 0.018853106, 0.017570768, -0.011472838, 0.023395859, 0.02519659, 0.007666748, -0.021335931, 0.005047503, -0.0165067, -0.010142753, 0.016056517, 0.013880634, -0.01773447, -0.010374665, -0.016574908, -0.001529598, 0.0046211937, -0.022031669, 0.058605604, 0.018771255, -0.0150060905, 0.008539829, -0.021567844, 0.010245067, 0.019848965, -0.00017681182, 0.012611937, -0.016670402, 0.030012181, -0.010245067, 0.025510354, -0.028620707, -0.014133009, 0.026656274, -0.0054021925, 0.020981243, -0.035059683, 0.018812181, 0.01702509, -0.012877954, 0.008348843, -0.004430207, -0.020230938, -0.01909866, 0.022727406, -0.008955908, -0.0032177833, -0.04493642, 0.0054465286, 0.011854812, -0.005736419, -0.006125213, -0.007543971, 0.01177296, -0.012987089, -0.015906455, -0.012748356, 0.0073461635, 0.0052248477, 0.0002513094, -0.014514982, -0.030557856, 0.03331352, -0.015674543, -0.012802923, 0.0020650427, -0.010081365]" 15434145,Dear Silicon Valley: America’s fallen out of love with you,https://techcrunch.com/2017/10/08/dear-silicon-valley-americas-fallen-out-of-love-with-you/,325,1507560023,457,Caveman_Coder,"[0.008933188, -0.02294174, 0.023995118, -0.036006358, -0.0057559554, 0.002830097, -0.028427511, -0.0011995849, -0.018933434, -0.021149632, 0.0030780511, 0.016744597, 0.021861002, 0.0060056197, 0.010007086, 0.013468184, 0.034227926, -0.005482351, 0.00038753517, -0.0023923297, -0.036143158, 0.012777332, -0.007934531, 0.015335535, -0.023981437, 0.013119337, 0.034173205, -0.0028540373, 0.013406622, 0.0085911825, 0.00541395, 0.0030592408, -0.01811262, 0.0169498, -0.026799565, -0.002708685, -0.014035913, -0.024473926, 0.04035667, -0.02710053, 0.021259073, -0.011115184, -0.009925005, -0.0062894844, -0.010793699, 0.008310738, -0.025650425, -0.0075583253, 0.019083917, 0.023023821, 0.028400151, 0.014651523, -0.02235349, 0.010020766, -0.026772205, 0.006994016, -0.026785884, -0.01622475, 0.017893737, 0.016662516, 0.0061287414, 0.015581778, -0.014925128, 0.012811532, -0.014665203, -0.004647857, -0.012483207, -0.016648836, 0.019699527, 0.020780265, 0.034911938, 0.017770614, 0.0036526206, 0.008276537, -0.010909981, -0.0036663008, -0.008981069, 0.0036697208, -0.013796508, -0.008816906, 0.0078114094, -0.011703434, -0.0193712, -0.0026796144, 0.011929158, 0.019767927, -0.013174059, 0.016101627, -0.032285336, -0.013632346, 0.011416149, 0.011628193, 0.009446196, 0.012449007, -0.0119565185, 0.01751069, 0.0027616958, 0.004021987, 0.027086848, -0.007530965, 0.015609139, -0.012811532, -0.032011732, -0.024405524, -0.019384881, 0.011628193, 0.011963358, -0.031628683, 0.030616347, 0.011135705, -0.018523026, 0.0022469773, -0.008262857, -0.010390133, 0.010130208, -0.014979849, -0.002286308, 0.00079901074, -0.009282034, -0.01145035, 0.05119141, -0.0029480888, 0.02232613, -0.011422989, 0.009446196, -0.017880056, -0.022627095, -0.010355932, 0.0035089783, -0.008043974, 0.03554123, 0.023352148, 0.012387445, -0.008885307, -0.011717115, 0.0044358135, -0.024829611, 0.0053523886, -0.0240772, -0.037182856, 0.006337365, 0.013201419, -0.010143888, 0.014829366, 0.0009524858, 0.023995118, 0.0066725304, 0.034857217, 0.039289612, 0.0120933205, -0.007188959, -0.03844144, -0.0023478689, 0.003445707, 0.0021614758, -0.0058072563, 0.0038680842, 0.02599243, -0.011033103, -0.0027463054, 0.008721145, 0.001686943, -0.001386833, 0.0064810077, -0.0068435334, 0.010089167, 0.0127226105, 0.010321731, 0.0015757912, -0.03015122, -0.009172592, 0.03617052, -0.050781, 0.013146698, -0.0011559791, 0.0046957377, 0.0013227069, 0.018536707, -0.024966413, -0.0075788456, -0.014856726, -0.0008208136, 0.016484674, 0.023297427, 0.0038407238, 0.014241116, 0.03551387, -0.019138638, 0.0038783443, -0.019590085, 0.020944428, 0.0018348604, -0.017387569, -0.005109565, -0.64132905, -0.025718827, -0.014418959, -9.437219e-05, -0.01753805, 0.0014757544, 0.01749701, -0.003250764, -0.010533774, 0.014583122, -0.02536314, 0.0031772326, -0.018741911, -0.019234398, -0.018919753, -0.0051882262, 0.005027483, -0.04342104, 0.01389911, 0.000631428, -0.008960549, 0.020780265, 0.004357152, -0.018290464, -0.017319167, 0.01510297, -0.0011217786, -0.013755468, -0.010588496, 0.021313794, -0.013057777, 0.025198977, -0.014022233, 0.010438013, 0.05729279, 0.01266789, -0.01813998, 0.008365459, 0.012572128, 0.03450153, -0.011806035, -0.019083917, 0.012838893, 0.003854404, 0.0009995116, 0.00013904668, 0.01327666, -0.003809943, -0.013563945, 0.007127398, 0.02826335, -0.0054002698, -0.018878713, 0.014391598, 0.017620131, -0.009370956, 0.010602176, -0.022654455, 0.014843046, 0.013030416, 0.018591428, 0.028755836, -0.005841457, -0.01507561, -0.0034525474, 0.018304143, 0.013454503, -0.017825335, 0.020328818, -0.011238307, -0.012791012, 0.035678033, -0.014843046, 0.0108279, 0.0071547586, 0.028837917, 0.035678033, -0.008221816, -0.010328571, 0.006337365, 0.005728595, -0.010704777, -0.00055575924, -0.0093914755, 0.0077566886, -0.008522782, -0.003861244, -0.0066007096, -0.0045520957, -0.003315745, 0.019111278, 0.010998902, -0.0076404065, -0.023707833, 0.00961036, 0.009022109, 0.0029275685, 0.027784541, -0.0062450236, -0.018810311, -0.01985001, -0.004281911, 0.011053624, 0.009931845, 0.025841948, 0.00842018, -0.03017858, 0.007435203, 0.034282647, -0.05321608, -0.0064912676, -0.014719924, -0.010321731, -0.010102848, -0.010075487, -0.019699527, 0.0033037749, -0.019603765, -0.0015860513, -0.0067682923, 0.010957861, -0.009083671, -0.0057696356, -0.009316235, 0.013953831, -0.0015851962, -0.009282034, -0.021929404, -0.01446, 0.0041964096, -0.004716258, -0.010485894, 0.036471486, -0.0097471615, 0.0013654577, 0.024993774, 0.008529621, -0.025623064, 0.0072710407, -0.020547701, 0.005071944, -0.009213633, 0.0057456954, -0.02224405, -0.016457314, -0.012086481, -0.017141324, -0.012626849, -0.017852696, 0.007305241, 0.001985343, -0.01871455, -0.0024299503, -0.0030643707, 0.012346405, 0.0048564808, 0.0008255162, -0.013153538, -0.022572374, -0.012811532, -0.004155369, 0.02715525, -0.0034439971, -0.011723954, 0.0036663008, 0.0012637109, 3.8128288e-05, 0.007045317, -0.01746965, -0.0007006841, 0.01506193, -0.012462687, -0.0011072434, 0.0071547586, 0.00039865036, 0.015034569, -0.0044939546, -0.0065904493, -0.0193028, -0.0045999764, 0.023092223, -0.0035671191, -0.020219374, 0.005123245, 0.05247735, -0.010417493, 0.023133263, -0.0041177482, 0.021546356, 0.013167218, 0.00028557473, -0.006925615, -0.008878468, -0.014733604, -0.0065972893, 0.0016801029, 0.027278373, -0.0043674125, -0.0008357764, 0.005861977, 0.01266105, 0.022380851, 0.028003424, -0.0035158184, 0.0143368775, -0.027114209, -0.006980336, -0.0004591426, -0.00088322966, 0.03740174, 0.018331503, 0.011190426, 0.009911324, -0.021505317, -0.0027531458, 0.022462932, 0.027456215, 0.012572128, -0.0018553807, 0.026826926, -0.012086481, -0.020999148, 0.004165629, -0.008372298, 0.006987176, 0.0039535854, -0.001621962, 0.00080585084, 0.010944181, -0.020356178, -0.0032952246, 0.020150974, 0.0026112134, 0.023146944, 0.005133505, -0.0012577259, 0.011101504, -0.024268722, 0.026211314, -0.01625211, 0.012291684, 0.0121617215, 0.017756935, -0.0144052785, 0.0119565185, 0.006809333, 0.028235989, 0.0016185419, -0.021190671, 0.035924274, -0.012442166, -0.0057012346, 0.011217786, 0.006504948, -0.00035782345, -0.03135508, 0.02231245, 0.009494077, 0.008960549, 0.004760719, 0.015157691, 0.0019015515, 0.0048735808, -0.01637523, -0.016033227, -0.009234153, 0.004750459, 0.008078174, 0.006347625, 0.003553439, 0.004281911, -0.0037757426, 0.023365827, 0.00013936732, 0.013817029, 0.0110057425, -0.0020212536, -0.009001589, 0.0038680842, 0.012702091, 0.003438867, -0.024200322, 0.001751069, -0.011416149, -0.0098839635, -0.015554418, -0.012715771, -0.009261513, 0.0022692077, 0.025554664, -0.023023821, -0.013235619, -0.02346159, 0.019152317, 0.0065938695, -0.0108621, 0.0019203619, -0.030370103, 0.017250765, 0.0065870294, -0.02058874, 0.012845733, 0.0038646641, -0.004483694, 0.031190917, -0.0037620624, -0.013570785, 0.011238307, -0.0017647493, -0.03693661, -0.008290217, -0.023803595, -0.01565018, 0.01504825, 0.01506193, -0.0052395267, -0.013591305, 0.008214977, 0.013509224, 0.017907416, -0.0048257, -0.038167834, -0.036362045, 0.010007086, 0.13384734, 0.0072642006, -0.030889953, 0.01809894, 0.0033653358, -0.0043605724, -0.027305733, -0.0553502, 0.015130331, -0.011662394, 0.0040083067, -0.0055883727, 0.02477489, -0.013981191, 0.012325885, 0.008933188, -0.0019973132, -0.022216689, -0.009555639, -0.0337628, -0.026936367, -0.007346282, 0.007544645, 0.016457314, 0.008201296, 0.02715525, 0.03556859, 0.017455969, 0.024993774, -0.03015122, 0.0031823628, 0.00846122, 0.010116528, 0.017825335, -0.0013765729, 0.0043639923, 0.00045401254, 0.025171617, 0.00965824, 0.020383539, 0.014637843, 0.038769763, 0.007284721, -0.0061048013, -0.0023991698, -0.01446, -0.0008272262, 0.008509101, 0.0072505204, -0.024856972, 0.021409554, -0.034200568, -0.01809894, -0.009261513, 0.012011239, 0.0014312938, 0.016033227, -0.014159035, -0.007359962, -0.0043810927, -0.021546356, -0.024364484, 0.0032165633, -0.011682914, -0.002956639, -0.026936367, 0.0143368775, -0.008926348, -0.018906074, -0.008734825, 0.021012828, -0.023639431, -0.033872243, -0.00029925496, 0.025431542, 0.0021888362, 0.0022999882, -0.010369612, -0.0023393189, 0.020670822, 0.008755345, -0.023762554, 0.0069085145, -0.011080984, -0.013187739, 0.0067922324, -0.011977038, 0.007359962, -0.007298401, -0.01627947, 0.015951144, 0.018386224, -0.012941495, 0.008940028, 0.009535118, -0.0075720055, -0.0075788456, 0.003389276, 0.019631125, -0.025568344, 0.0019237819, -0.008406499, -0.006166362, 0.008392819, 0.0030250403, 0.014911448, -0.020602422, -0.016416272, -0.0033721759, 0.0041998294, 0.016744597, -0.018837672, -0.007052157, -0.0064023463, 0.0038886045, 0.007421523, 0.012011239, 0.014884087, 0.0029771593, -0.017743254, -0.009336755, -0.035842195, 0.025582025, 0.01748333, 0.0049932827, 0.006203983, -0.0072642006, -0.024939053, -0.011799196, 0.00784561, -0.010465373, 0.030588986, -0.005181386, -0.005071944, -0.038386717, -0.030315382, 0.006453647, -0.010314891, -0.007968732, -0.009801882, -0.032969348, 0.0058859177, 0.0031686826, -0.038715042, -0.0040732874, -0.03803103, -0.0018194702, -0.0054720906, 0.006569929, 0.031683404, -0.010150729, 0.002474411, -0.016238429, 0.014966168, 0.0008015758, -0.045090027, -0.0063442052, -0.02645756, 0.009261513, 0.0028831079, 0.01741493, -0.017852696, 0.022709176, 0.024556007, 0.017647492, -0.001748504, -0.01685404, 0.0077361683, -0.003912545, 0.020698182, 0.012421646, 0.021915723, -0.009288874, -0.005670454, 0.014952488, 0.01922072, -0.005492611, -0.013919631, -0.024514966, -0.045555156, -0.030972034, -0.018126301, -0.022011485, -0.00050488586, -0.017825335, -0.005735435, 0.03187493, 0.008002933, 0.016539395, -0.016429953, 0.03504874, 0.0007318921, 0.026197635, 0.013372422, 0.013543424, -0.024296083, -0.019549044, -0.025691466, 0.0005754245, 0.020821305, 0.014090634, -0.007914011, -0.0055199717, -0.0048599006, 0.008344938, 0.0229007, -0.020328818, -0.006682791, 0.013714427, -0.02954929, 0.00783877, -0.02467913, -0.042490784, -0.020602422, -0.011074143, 0.00074471737, -0.008563822, 0.008009773, -0.04686846, -0.030288022, 0.00041703315, -0.0023205085, 0.017756935, -0.0003180653, 0.026676442, 0.0024316604, -0.005260047, -0.0064228666, 0.012962015, 0.015841702, -0.0009781362, 0.015814342, -0.002105045, -0.03368072, 0.00904947, 0.022545014, -0.0080986945, -0.012517408, -0.0064981077, 0.015376575, -0.0023358988, -0.012195922, -0.021450596, -0.020547701, -0.020055212, 0.030342743, 0.030370103, 0.00023106758, -0.009240993, -0.025075857, 0.008488581, -0.006467327, 0.015403936, 0.018249422, 0.028003424, -0.019508004, -0.015896423, -0.007127398, 0.009603519, 0.024638088, -0.008803226, 0.0071684388, -0.017237086, 0.014213756, -0.015786981, 0.009131552, -0.02413192, -0.01751069, -0.0042271903, 0.021970443, -0.016607795, 0.0045384155, -0.012989376, -0.024227683, 0.0061834627, 0.0006040675, -0.008468061, -0.023871996, -0.018564068, -0.0026881646, 0.017360209, 0.011682914, -0.010191769, 0.012749972, 0.0126200095, -0.008481741, -0.0016741178, -0.012469526, 0.02355735, 0.009138391, 0.009822403, -0.02239453, -0.015855383, 0.005475511, 0.0022144867, -0.015212412, 0.0137759885, -0.00070752425, -0.010595336, 0.003490168, 0.015718581, 0.01629315, -0.033434473, 0.007551485, -0.0055986326, 0.007900331, 0.029248325, -0.01329034, -0.023187984, -0.023447908, -0.011860756, 0.022736536, -0.012236963, 0.008290217, -0.011552951, 0.020739224, -0.0041929893, -0.026019791, -0.0016099917, 0.023270065, -0.0051642857, -0.016033227, -0.017455969, -0.011087824, 0.0075583253, -0.0054857708, 0.010561135, -0.01021913, -0.0116350325, 0.00013605414, 0.012524248, 0.0069632353, 0.007975572, 0.0029412487, -0.011908637, -0.008043974, -0.0024385005, 0.0059269583, 0.023475269, -0.022408212, 0.0053592287, 0.037292298, 0.015828023, 0.024255043, -0.00046598274, 0.0048564808, -0.030479545, 0.0026881646, -0.017237086, -0.009952365, -0.0016467574, 0.05658142, 0.004418713, -0.006210823, -0.01865983, 0.011053624, -0.046841096, -0.018591428, 0.019549044, 0.02056138, 0.029084163, 0.0130440965, -0.007619886, 0.007188959, -0.010123367, 0.031683404, -0.029275686, -0.018591428, 0.011942838, -0.011689754, 0.0050411634, 0.0046136566, -0.022175647, -0.009596679, 0.001449249, 0.022545014, -0.021094909, 0.020233056, 0.018249422, 0.007968732, -0.008180776, 0.005287408, 0.027483575, 0.009480397, 0.013652867, -0.048482724, -0.00050488586, -0.002647124, -0.009111031, 0.013796508, 0.008584342, -0.017059242, 0.0016322221, 0.0002195249, 0.015882744, 0.019754248, -0.0053900094, 0.0091178715, 0.011402469, -0.026252355, -0.0028745576, 0.043776724, 0.0017125934, -0.01741493, -0.0075583253, 0.01803054, 0.032531578, 0.004476854, -0.005318188, -0.03688189, -0.010123367, 0.004931722, 0.010048127, -0.03307879, 0.005256627, -0.011600832, -0.008584342, 0.008919508, 0.04093124, 0.0050753644, -0.024843292, 0.01811262, -0.01627947, -0.00067845377, -0.006771712, -0.0046717976, -0.0013192869, -0.018071579, -0.0013423723, -0.0009294004, -0.012715771, -0.026389157, -0.008256017, 0.0059919395, -0.03151924, -0.015923783, 0.22304241, 0.021806281, -0.0013346771, 0.03682717, -0.004586296, -0.0049077813, 0.021245392, 0.016060587, -0.0061321617, 0.008050813, -0.029658731, 0.003192623, -0.024063518, -0.0060158796, -0.009541959, -0.018646149, -0.048619527, -0.023899356, -0.00842702, 0.0081670955, 0.008331258, -0.0193712, -0.024528647, -0.021231713, 0.017455969, 0.024514966, -0.028181268, 0.009405156, 0.028003424, 0.026293395, 0.00089519983, -0.0037825827, 0.008290217, 0.025568344, 0.005793576, -0.016334191, -0.0014159034, -0.0045042145, 0.0180579, 0.020917067, 0.0022623674, 0.006576769, -0.020055212, -0.029275686, 0.0137075875, 0.02231245, -0.0070658373, 0.01692244, -0.0012876514, 0.00036722858, -0.0048530605, 0.0020298036, 0.02233981, 0.03132772, 0.0017630393, 0.02589667, 0.02171052, 0.040274587, -0.0029925497, 0.022750217, 0.00084090646, 0.0276751, 0.0020246736, 0.032476857, -0.028728476, -0.0036970812, -0.0044734343, 0.010472214, 0.023201665, -0.012927814, 0.00047239533, -0.006190303, -0.0143368775, -0.005557592, -0.020807626, -0.008488581, 0.030479545, 0.02162844, 0.030315382, 0.0156365, -0.010636376, -0.00024603034, -0.002722365, -0.0029326987, -0.0030848912, -0.035924274, 0.018331503, -0.01744229, -0.020041533, -0.025034815, -0.01026701, -0.021272752, -0.008543301, 0.00017121658, 0.00024154151, 0.005078784, 0.006583609, 0.020027852, -0.012578969, -0.026430199, -0.0044323937, -0.004333212, 0.028892638, 0.0314098, 0.008126055, -0.005492611, 0.009514598, 0.011587152, 0.0027497255, -0.017880056, -0.013016736, -0.005735435, 0.013625506, -0.007537805, 0.01997313, 0.012236963, 0.009986565, -0.014925128, 0.036717728, -0.0016758278, -0.014432639, 0.0026077933, -0.006747772, 0.012004399, -0.010923661, -0.008734825, -0.013905951, 0.024090879, -0.009466717, -0.039973624, -0.00481202, -0.00023491515, -0.00542079, -0.0057388553, -0.0036355203, -0.0032678642, 0.017674852, -0.01991841, 0.0059337984, 0.028482232, -0.0031071214, 0.0142684765, 0.027989743, 0.004641017, -0.0029378287, -0.008625383, -0.00081525603, -0.009500918, 0.012572128, 0.0029121784, -0.024665449, 0.015308173, -0.00901527, -0.011614513, 0.0067135715, -0.026389157, -0.034063764, -0.016060587, -0.032230616, 0.021546356, -0.052094303, 0.037675343, 0.050616838, 0.0032097232, -0.014843046, -0.021245392, -0.17499746, 0.02343423, 0.0076404065, -0.005971419, 0.027374133, -0.014323197, 0.009364115, -0.003375596, -0.008953708, 0.026621722, 0.021354834, 0.0038407238, -0.022558695, -0.006108221, 0.0029703192, 0.010533774, -0.031491883, 0.02775718, 0.031792846, -0.0028591675, 0.0120249195, -0.014747284, 0.008550142, -0.013406622, -0.01085526, 0.011628193, 0.010602176, 0.02288702, 0.008686944, -0.029275686, 0.01322878, -0.018440945, 0.02651228, -0.006532308, 0.019672167, -0.015527057, -0.02113595, 0.00021193664, -0.010130208, 0.029330406, 0.032805186, 0.022763897, 0.008810066, 0.020739224, 0.0001412911, 0.012339565, 0.0057662157, 0.00032511915, -0.00240943, 0.0035978996, 0.023707833, -0.016101627, -0.005287408, 0.030370103, 0.009138391, 0.024583368, 0.00966508, 0.0104106525, 0.0053523886, -0.009240993, -0.0049864426, 0.014227436, 0.022038845, -0.0019562724, -0.024487605, -0.020205695, -0.004528155, -0.006210823, -0.038414076, 0.032148533, -0.007722488, -0.00240943, 0.008297058, -0.024597049, 0.0008216686, -0.0038988646, -0.03332503, -0.01637523, -0.024432885, -0.00301307, -0.009439357, 0.0058961776, -0.0014971298, 0.006094541, -0.015964825, 0.02352999, -0.0020092833, 0.009733481, -0.026115553, -0.011340908, 0.00010393766, -0.025677785, -0.01270893, -0.0068332735, 0.012209603, -0.0020127033, 0.019672167, -0.00045401254, -0.027866622, -0.0132492995, -0.017223405, -0.017072923, -0.039973624, 0.02291438, 0.022285089, 0.033489194, -0.004989863, 0.017004522, 0.025404181, -0.002898498, -0.031738125, 0.0056294133, 0.015157691, 0.022462932, -0.044406015, -0.007619886, 0.008502261, -0.0024402104, 0.025773548, 0.0031584224, 0.024884332, -0.0021837063, -0.012175402, 0.009740322, -0.0043913526, -0.015622819, -0.12815636, -0.01803054, 0.016744597, 0.0060535003, -0.005906438, 0.019179678, -0.0076746074, 0.028153908, -0.017907416, 0.036498845, -0.010314891, -0.021505317, -0.0033841461, -0.0064399666, 0.043585204, -0.021614758, -0.01264737, 3.4547917e-05, -0.017784296, 0.047935516, -0.0059372187, -0.033434473, -0.0053523886, 0.0012260904, -0.021861002, 0.0051437654, -0.03332503, 0.008071334, 0.013557104, -0.00966508, 0.0075172847, 0.0035773793, -0.0008084159, -0.023092223, 0.006809333, 0.009500918, -0.023256386, 0.0137759885, 0.0097129615, -0.027401494, -0.00026975697, 0.0021973865, 0.0017561992, -0.030999394, -0.027374133, 0.021970443, -0.035240263, 0.013064616, 0.0169498, -0.016758278, -0.010444853, -0.004959082, 0.0076951277, -0.01809894, 0.0018536707, 0.003553439, -0.010602176, -0.01985001, 0.012756811, 0.0025428121, 0.0068708938, 0.020205695, -0.009801882, -0.00044375236, 0.0005959449, -0.010472214, 0.0075172847, 0.0009841213, -0.0047914996, -0.044378657, -0.031054115, 0.0025069015, -0.008091854, 0.021218032, -0.026197635, -0.0043913526, -0.008570662, 0.0048154397, 0.0021426654, 0.004032247, 0.00034264693, -0.011764995, 0.0044426536, -0.018933434, 0.016060587, -0.000570722, 0.016074266, 0.013509224, 0.0007639552, -0.042600226, 0.02166948, 0.020301457, 0.0108621, -0.027907662, 0.006203983, 0.016689876, 0.014186395, -0.010609016, 0.012565289, 0.012777332, -0.0004886406, 0.020999148, -0.052750956, 0.01927544, -0.00962404, -0.016087947, 0.013666547, -0.01087578, -0.02233981, -0.0035158184, -0.0253905, -0.006956395, -0.021395875, 0.00043114088, -0.0037005013, -0.0018981314, -0.03482986, -0.026307076, 0.017934777, -0.0022161969, 0.0078045693, 0.012278004, 0.0040698675, -0.004723098, 0.0007896056, 0.0028779777, -0.0144052785, 0.012934654, -0.018906074, 0.03264102, 0.0067922324, -0.04407769, 0.0082354965, -0.02169684, 0.015020889, 0.025636746, 0.010171249, -0.018523026, -0.015978506, 0.022722857, 0.006942715, 0.026443878, -0.020055212, -0.030835232, -0.004887261, -0.033817522, -0.0387424, 0.0030524007, -0.008898987, -0.008769025, 0.016402593, 0.02714157, -0.009247833, 0.016183708, -0.043639924, -0.009247833, -0.020848665, -0.0241456, -0.0023906196, 0.03132772, -0.016197389, -0.025732506, 0.034665696, 0.027524617, 0.0030609507, -0.017893737, 0.026498599, -0.026772205, -0.019111278, 0.012236963, -0.0023803595, 0.0024675708, 0.002782216, 0.0011859046, 0.031820208, 0.019822648, -0.0096514, -0.0078114094, -0.012243803, -0.0015928914, -0.008810066, 0.02655332, -0.020178335, -0.011361429, -0.025281059, 0.011942838, 0.0229691, -0.005229267, -0.0005831197, -0.006802493, 0.0069050947, 0.017729575, -0.012189082, 0.0023871996, -0.021094909, -0.0033345553, 0.003440577, 0.020575061, -0.01865983, -0.003134482, -0.01026701, 0.014418959, 0.024227683, 0.010821059, 0.012626849, 0.0029395388, -0.03721022, -0.012175402, -0.0060808607, -0.00096702104, 0.011334068, 0.028400151, -0.001388543, -0.0005784171, 0.019056557, 0.0049146214, -0.015814342, 0.00039074148, 0.0055917925, -0.030233301, -0.01510297, 0.032285336, 0.008488581, 0.009035789, 0.015417616, -0.011655553, 0.016170029, -0.019795287, -6.145414e-05, -0.034528892, -0.00082252367, -0.007907171, -0.012202762, 0.0017143034, -0.0050343233, -0.006501528, 0.0019802127, -0.013133017, -0.005899598, 0.021436915, 0.012387445, 0.030260662, 0.026649082, 0.0021016249, 0.008885307, 0.012148041, 0.04763455, 0.00423745, 0.0058756573, -0.017209725, -0.014583122, 0.04169733, -0.009562478, 0.020192014, -0.021026509, 0.009555639, 0.019152317, 0.0027343354, 0.025773548, -0.0052190064, 0.026717482, 0.023926716, 0.0037039213, 0.033407114, 0.008570662, -0.02534946, -0.020999148, 0.020643461, 0.021477956, -0.011340908, -0.046649575, 0.008550142, 0.0058585573, -0.022695497, -0.01388543, -0.0037791627, -0.0034952979, 0.0011063884, 0.009589839, 0.005229267, 0.0073941625, 0.014035913, -0.009172592, -0.007031637, -0.03907073, 0.011313547, 0.021231713, -0.0059474786, -0.005841457, 0.007462564]" 13232984,Google Cloud Platform Icon Library for Architecture Diagrams,https://cloud.google.com/icons/,121,1482357360,38,eitally,"[0.0067646513, -0.00778066, 0.0017993186, -0.018497912, -0.0072497134, 0.017318033, -0.009897891, -0.01987444, 0.011110547, -0.040797666, 0.020608589, 0.0068957494, 0.022089995, -0.0092948405, -0.010350179, 0.015810406, 0.026127812, -0.010559935, -0.0033364415, -0.02739946, -0.0049948297, -0.00993722, 0.010671369, -0.010186306, -0.02492171, -0.013168784, 0.032040324, -0.032040324, -0.0017714603, 0.0012667334, 0.020608589, -0.00871801, -0.01029774, -0.009760238, 0.004126306, -0.0007726582, 0.0046113683, 0.0069875177, 0.0028300758, 0.0040640347, 0.0075119096, 0.0043196757, 0.022522619, -0.011503841, -0.004811293, 0.0180784, -0.006079665, -0.0137783885, -0.013752169, -0.0024056465, -0.0058338563, 0.02427933, -0.008449259, -0.015587539, -0.020411942, 0.010409173, -0.03547509, 0.0078593185, 0.0073611466, -0.033980574, 0.006332028, -0.002467918, -0.0029988643, -0.01751468, -0.012244543, -0.028893976, -0.00012843497, 0.000756271, 0.0097012445, -0.005955122, 0.013463754, 0.015862845, 0.032617155, -0.001174965, 0.019376269, -0.005647042, -0.00054282724, -2.0087167e-05, -0.0015633424, 0.006630276, -0.010559935, -0.019218951, 0.0050308816, 0.0021090375, 0.018301265, 0.012926253, 0.0019189455, 0.0028300758, -0.011366188, 0.0072562685, 0.009675025, 0.014145463, 0.004182023, 0.004375392, -0.0024449758, 0.021958897, 0.0144863175, 0.030073857, 0.016347907, -0.012237988, -0.022653716, 0.0014814063, -0.011130211, 0.0008156747, -0.030991543, -0.01061893, 0.035947043, -0.022457069, 0.026652202, 0.0048506223, -0.020870784, 0.016898518, -0.016321689, -0.027740315, -0.0049063386, -0.014329, 0.01866834, -0.013398205, -0.0022794646, 0.0028661278, 0.017331142, -0.0025006924, 0.014709184, -0.0060206708, -0.007957642, -0.0024597242, -0.030309834, -0.022155544, 0.008927766, -0.034452528, 0.0066040563, 0.016977178, 0.004549097, -0.01491894, -0.016741201, 0.016623214, -0.0063058087, 0.00033839644, -0.0055159437, 0.0012790238, -0.006351693, 0.021106761, 0.009163743, -0.01751468, 0.024751283, 0.007833099, -0.0118643595, -0.0006935898, 0.015351564, -3.2326386e-07, 0.01628236, -0.009504598, 0.0042606816, 0.0017829314, 0.0062500923, -0.018471694, 0.0054471176, 0.028343365, 0.0076167877, 0.0035101462, 0.027058605, 0.026101591, 0.0020975664, -0.0021221472, 0.016256139, 0.014800953, 0.009478378, -0.0076495623, -0.00843615, -0.017632667, 0.0010676285, 0.008573802, -0.028159829, 0.001569078, -0.009222737, 0.024489086, 0.015312234, 0.005011217, -0.019140292, -0.0043032886, 0.019677794, -0.014407659, -0.0038936075, 0.0028808762, -0.0065680044, 0.012827929, 0.011379297, -0.025695188, -0.012074117, -0.000631728, 0.03196167, 0.0138832675, 0.00638119, -0.016125042, -0.65695775, -0.021657372, 0.016610103, -0.03998486, 0.015548211, 0.028159829, 0.014630525, 0.009098194, -0.02671775, 0.031515934, -0.01373906, 0.0032626989, -0.034006793, -0.01809151, 0.0013060628, -0.017383581, 0.0080363015, -0.010691034, 7.13741e-07, 0.006220595, -0.004886674, 0.016898518, 0.012827929, -0.019848222, 0.00063541514, -0.010533716, 0.015364673, -0.013948816, 0.0036543538, 0.044468407, -0.009216182, -0.0025613252, 0.02308634, 5.351457e-05, 0.046329997, -0.012487074, -0.032853134, 0.016859189, -0.006797426, 0.023807378, -0.031935446, -0.0011725068, 0.031489715, 0.005260303, -0.01367351, 0.00591907, 0.014119243, -0.01494516, -0.017318033, 0.016531445, 0.017868644, -0.008082185, 0.006027226, 0.00088736886, -0.0036379667, -0.00095209846, 0.037834853, -0.002816966, -0.0144863175, 0.017029617, 0.002331904, 0.008934322, -0.019743344, -0.037729975, -0.041505594, 0.002871044, -0.027976291, -0.016636323, 0.014892721, -0.007098951, 0.028762879, -0.0098257875, 0.008062521, 0.006456571, -0.00058092753, 0.048191585, 0.025944274, -0.019769562, -0.002438421, 0.00014379801, 0.01217244, -0.011451401, 0.014748514, -0.024738172, 0.002017269, -0.0027563332, -0.02424, -0.033456184, 0.005853521, -0.010186306, 0.016413456, 0.009157188, -0.014499427, -0.037729975, -0.003978821, 0.020333285, 0.013024576, 0.0035068686, -0.0015395809, -0.010822131, -0.006476236, 0.00389033, -0.0015813684, 0.02439732, 0.035947043, -0.008849108, -0.006027226, 0.024974149, 0.02742568, -0.010599265, -0.016741201, -0.015128697, 0.008600022, 0.017226264, 0.020844566, -0.026979947, -0.0023040455, -0.013581742, -0.013142564, -0.0018337318, -0.0064991782, 0.009969995, 0.00389033, -0.0071251704, -0.0058043594, 0.014053694, 0.013607961, -0.02482994, -0.016085712, -0.010677923, -0.015010709, 0.0012995079, 0.02235219, -0.011398962, 0.029077513, 0.00421152, 0.013935707, -0.0071317255, 0.008698345, -0.008291942, -0.018432364, 0.0020959277, 0.002485944, -0.002377788, -0.008193619, 0.0054274527, -0.02114609, -0.0051619797, -0.0047260793, 0.013011466, 0.00036523055, -0.026468664, -0.008128069, 0.021421395, 0.0062664794, -0.00035560303, -0.013385095, -0.023833597, -0.0038051165, -0.023886036, 0.017973522, 0.011536615, -0.025878724, 0.01563998, -0.0027612494, -0.015377783, -0.0064270743, 0.022797924, -0.02122475, -0.014237232, 0.00303, -0.028054949, -0.002590822, 0.019428708, 0.009753684, 0.008324716, -0.016937848, 0.006817091, -0.0042377394, -0.010035544, 0.0071907197, 0.013037685, -0.0064795134, -0.0062533696, 0.032092765, 0.009806123, 0.028920196, 0.017016508, -0.017921083, -0.00011819295, -0.01185125, 0.036523875, -0.0020664306, 0.013319546, 0.013273662, 0.0064729587, -0.011693932, 0.0023089617, 0.010107648, -0.02367628, 0.017291812, 0.007747886, 0.017763766, 0.008324716, -0.001340476, -0.010677923, 0.0011348162, -0.022981461, -0.002574435, 0.025301894, 0.004703137, -0.02620647, -0.010009324, -0.019848222, 0.030440932, 0.010330514, -0.00389033, 0.003713348, -0.023833597, 0.003982099, 0.038595222, 0.015272905, 0.051154397, -0.034478746, -0.023400974, 0.0028907086, -0.01215933, 0.02808117, 0.029706784, -0.028867757, -0.0014879612, 0.015207356, 0.016020162, -0.011038443, -0.0059682317, 0.014197902, 0.0144338785, -0.03442631, 0.021355847, -0.002402369, 0.02623269, 0.007885538, 0.027714096, -0.0069481884, 0.026599763, 0.03801839, 0.017881753, -0.0072759334, -0.025708297, 0.019114073, -0.029208612, 0.0091178585, -0.006050168, 0.008173954, 0.018196387, 0.0006292699, 0.003955879, 0.016583884, 0.044756822, 0.032722034, -0.0004834235, 0.023768049, 0.027635437, -0.00031217685, 0.008508254, -0.016308578, -0.009583256, -0.031515934, 0.004526155, 0.005165257, -0.019087853, 0.006581114, 0.011523505, -0.02047749, -0.013594852, 0.01735736, 0.0010512413, 0.006797426, -0.011149876, 0.026534215, 0.014774733, -0.008875327, 0.007937978, 0.0036314118, 0.006643386, -0.0021205086, -0.04921415, 0.0051554246, -0.02424, 0.017907973, 0.0005170173, 0.0054405625, 0.010094538, 0.019258281, -0.01179881, 0.00017298777, 0.0017698216, -0.011988902, 0.0061779884, 0.008154289, -0.0037100704, -0.00318404, 0.0014347025, -0.007878983, 0.015875956, 7.8966e-05, -0.004627756, 0.007420141, 0.017134495, -0.03342996, -0.0049423906, -0.03342996, 0.0026449, 0.0024646404, 0.026337568, -0.0028022176, 0.0051390375, -0.0077741053, -0.0068236454, 0.01991377, -0.0038215036, -0.018170169, -0.0024826664, 0.0072366036, 0.053855017, 0.007937978, -0.011176095, 0.011241645, -0.006063278, 0.011215425, -0.017003397, -0.02431866, 0.010232191, -0.012841039, 0.00022450514, 0.00024580857, 0.0033888805, -0.017160714, 0.025354333, 0.011693932, 0.03188301, -0.0035101462, -0.012323203, -0.0050734887, -0.0009111304, 0.028054949, 0.009812677, 0.017265594, 0.03169947, 0.037756193, 0.019795783, 0.012926253, 0.0020090754, -0.012002013, 0.004001763, -0.0026006545, -0.011097437, 0.027320802, -0.02055615, 0.05862698, -0.0019238616, 0.03419033, 0.013647291, 0.019389378, -0.015797297, 0.0021811412, -0.007878983, -0.008462369, 0.020713467, -0.008790114, -0.0032971122, 0.046933047, -0.0010364928, -0.0144863175, 0.0218278, 0.0044802707, -0.009891336, -0.007282488, 0.0022794646, 0.0030808006, 0.0034773718, -0.017789984, -0.0007951907, -0.03967022, -0.026625983, -0.0100027695, -0.024331769, -0.017370472, -0.0050276043, -0.008383711, -0.008324716, 0.0012101975, -0.035343993, -0.015705528, 0.018773219, -0.02307323, -0.040640347, 0.025918053, 0.015246686, 0.021513164, -0.0041164737, 0.005824024, -0.018589681, -0.0040443703, -0.0072431588, -0.028998854, 0.018432364, -0.016688762, -0.012251099, 0.0028726826, -0.026285129, 0.012061006, 0.0014076637, -0.0010872931, -0.010750027, -0.0048309574, 0.005686371, -0.029470807, 0.017082056, 0.02855312, 0.020398833, 0.003113575, -0.018746998, -0.026363786, -0.017501568, -0.031017762, 0.00075790973, -0.022168655, 0.0065876693, 0.024528416, 0.01935005, -0.0029906707, 0.014302781, -0.005647042, -0.008849108, -0.025052808, -0.0068433103, -0.012644392, -0.0077020014, 0.020700358, 0.027766535, -5.9762206e-05, 0.0048833964, -0.0024171174, 0.015731748, -0.027215922, 0.026101591, -0.0032217307, -0.014079914, 0.024462868, 0.010815577, -0.020189077, -0.018379925, -0.005699481, -0.020870784, 0.01811773, -0.011772591, 0.0063746353, -0.01869456, -0.021696702, -0.0133523205, -0.0029365928, -0.010461612, -0.025957383, -0.029628124, 0.015980834, 0.006961298, -0.006630276, -0.031017762, -0.025183905, -0.010697588, 0.005742088, 0.022339081, 0.014643635, -0.01557443, 0.019428708, -0.03046715, -0.0059878966, -0.023138778, -0.025773846, -0.0046113683, 0.005089876, 0.041243397, 0.04043059, 0.036550093, -0.01434211, 0.028526902, 0.0044048894, -0.00936039, -0.023584511, 0.009832342, -0.011110547, -0.01119576, 0.0048309574, 0.02119853, 0.03127996, 0.024803722, 0.0025072473, 0.017318033, 0.010232191, 0.01028463, 0.0004531071, -0.021303408, -0.03316777, -0.015980834, 0.013581742, -0.013909487, 0.004821125, 0.0051554246, -0.013489974, 0.02363695, -0.01746224, 0.031935446, 0.0017534343, 0.022771705, -0.023951586, 0.025786957, 0.01671498, -0.0005436466, -0.041322056, 0.015259795, -0.029549466, 0.014145463, 0.013489974, 0.018524133, -0.009248956, -0.015889065, 0.0010807383, -0.0062304274, 0.019297611, -0.02054304, -0.033456184, -0.011982348, -0.039040953, -0.027163483, -0.021893349, -0.0019533588, 0.029051295, -0.011484176, 0.0020598758, -0.012788599, 0.016924739, -0.0192845, -0.00840993, 0.010120758, -0.0062730345, 0.030860445, -0.005774862, 0.022811035, 0.014211012, 0.0045294324, -0.004037815, 0.006607334, -0.0014527285, 0.010776247, -0.0027268361, 0.038149487, -0.0109139, -0.027189704, -0.0012487074, 0.02188024, 0.0133523205, -0.012716495, 0.011844695, 0.01307046, -0.011018778, -0.022640606, -0.020713467, -0.014460098, 0.012565733, -0.023296095, -0.016977178, 0.008488589, -0.017383581, 0.0015117226, 0.010160087, -0.0074988, 0.033220205, 0.020739688, 0.0046343105, 0.017829314, -0.0004592523, -0.015757967, 0.004952223, 0.0005792888, 0.02114609, -0.032433618, 0.009032645, 0.0020729855, 0.027530558, 0.009779903, 0.023282986, -0.006063278, 0.01615126, 0.0017009951, -0.023518963, -0.028526902, -0.0003426981, 0.035868384, -0.031489715, 0.0006919511, -0.0033724934, 0.010363288, -0.021460725, 0.02802873, -0.014263451, -0.018838767, -0.02994276, 0.013843938, -0.018366816, 0.013424424, 0.00026158127, 0.018864987, -0.01187747, -0.04048303, 0.0010553381, -0.01371284, 0.0131753385, -0.0017452408, -0.010573045, 0.0025285506, 0.021041213, -0.008829444, 0.018275047, 0.022666827, 0.0056929262, -0.03437387, 0.03162081, 0.010173197, -0.01869456, -0.0035068686, 0.0048899516, -0.0411123, -0.021539384, 0.0030922715, -0.0052996324, -0.0008337007, 0.009386609, 0.0033593837, 0.03303667, 0.028448243, -0.003965711, -0.022247313, 0.029523246, 0.0013183532, -0.03366594, 0.029025074, -0.015757967, 0.014473207, -0.008318162, 0.0020664306, 0.008350936, -0.005096431, -0.02422689, 0.009366944, 0.0036969606, 0.0053389617, -0.0082132835, -0.015784187, -0.017200043, -0.022339081, -0.009583256, -0.003172569, 0.022457069, 0.0168723, 0.010789357, 0.02683574, 0.014578086, -0.014040585, -0.0006304989, -0.02482994, -0.029628124, -0.030703127, -0.0072562685, -0.00093980803, 0.011300638, -0.0052471934, -0.023925366, -0.029025074, -0.016452786, -0.025446102, -0.0021188697, -0.012460855, 0.015705528, 0.012316647, 0.019822001, -0.00024847148, 0.016911628, -0.03046715, 0.036287896, -0.008370601, 0.005735533, 0.015718637, -0.025852505, -0.0013986507, -0.011949574, -0.022784814, -0.0012683722, 0.01248052, -0.02620647, 0.009911001, 0.017291812, 0.012054452, -0.013371985, -0.0007329192, 0.01932383, 0.008468924, 0.03350862, 0.002544938, -0.043026328, -0.015154917, 0.018589681, -0.0023859816, 0.00050144945, -0.008560693, 0.0050865985, -0.0150893675, -0.003706793, -0.005325852, 0.013503083, -0.0014707545, 0.008219838, 0.012074117, -0.024725063, 0.0016723175, -0.00120692, 0.005807637, -0.019546697, -0.004631033, 0.035711065, 0.004050925, -0.0034052678, 0.008350936, -0.040928762, -0.017252482, -0.0040640347, 0.0025138021, -0.022063775, -0.020883895, -0.0055192215, -0.01371284, -0.0076692267, 1.7715499e-06, 0.015168026, -0.000103290804, 0.014460098, 0.005846966, -0.017934192, 0.0018107897, -0.0025826285, -0.0069416338, -0.018484803, -0.010376398, 0.014381439, -0.012028232, -0.0134768635, 0.001408483, 0.014591196, 0.0008455814, -0.0048604547, 0.22674692, 0.014420768, 0.020162856, 0.042816572, 0.014171682, 0.010389509, 0.004896506, 0.024843052, -0.0015068065, 0.018655231, -0.010317405, -0.0053225746, -0.0017812926, 5.715049e-05, 0.0040181507, -0.031542152, -0.04488792, -0.014250341, -0.037467778, 0.021486945, 0.010946674, 0.0069350787, -0.007479135, -0.029156173, 0.016688762, -0.006151769, -0.024934819, 0.012034787, 0.015417113, 0.023964696, -0.009747129, 0.008737675, 0.0035789725, 0.015259795, -0.008973651, -0.027215922, 0.044520844, -0.027923852, 0.024554636, 0.022981461, -0.0067187673, -0.0036019147, 0.021368956, -0.025577199, -0.01567931, -0.0010946675, -0.035134237, -0.0016510141, 0.009996215, 0.0072169392, 0.0037330126, 0.0021614765, 0.017318033, 0.01999243, 0.007538129, 0.010009324, -0.0025072473, -0.027032387, -0.005817469, 0.0095242625, 0.013791499, 0.023899147, -0.017776875, 0.006656496, -0.021526275, -0.023505853, -0.040797666, -0.0109139, 0.0018435642, 0.02306012, 0.015980834, -0.0051587024, 0.015731748, 0.022063775, -0.030047638, -0.023348534, 0.021709811, 0.028946415, 0.008770449, 0.034583624, -0.0020565982, 0.01560065, 0.0014379801, -0.041348275, -0.014302781, -0.056109898, 0.025249455, 0.009085084, -0.004254127, -0.0038804978, -0.0063975775, -0.02435799, -0.019494258, -0.024082683, -0.02855312, 0.030965323, -0.0028153274, 0.0037723419, 0.01213311, 0.008291942, -0.021644263, 0.04879464, 0.017147604, 0.007603678, -0.01993999, -0.006299254, 0.00012679625, 0.025262564, -0.0061353813, -0.0014969741, -0.017907973, -0.009222737, 0.019822001, -0.0014273283, 0.0154433325, 0.00074971607, 0.00482768, -0.020949444, 0.0028104112, -0.023269877, 0.013044241, -0.014630525, -0.0064139646, -0.0012970498, 0.004375392, 0.0038215036, -0.009386609, -0.007892094, 0.013109789, -0.043236084, 0.023964696, -0.0035363657, 0.0005280787, -0.01806529, -0.02056926, 0.023833597, 0.0068039806, -0.0038477231, -0.020175966, 0.017527789, 0.0016092267, -0.0033954354, 0.018602792, -0.009209627, -0.012369086, 0.0028628502, -0.0096488055, 0.0070792865, 0.00021467281, -0.020320173, -0.018904317, 0.012310092, -0.004342618, -0.011772591, 0.017763766, -0.010166642, -0.039460465, -0.04376048, 7.968294e-05, 0.0069481884, -0.022850363, -0.015010709, 0.025878724, 0.012015122, -0.00041234386, -0.03125374, -0.1668614, 0.020949444, 0.0005116915, -0.01122198, 0.025065918, 0.009760238, 0.03308911, 0.0083378265, -0.020215295, 0.00021200988, 0.02244396, 0.006066555, -0.012015122, 0.032774474, 0.0017468794, 0.0070923963, -0.029968979, 0.034636065, 0.02800251, 0.010212526, 0.011615274, 0.007210384, -0.014027474, -0.007282488, -0.019336939, 0.0071317255, -0.04043059, 0.03487204, -0.009747129, -0.012952472, -0.018746998, 0.002223748, 0.019546697, -0.0066499407, -0.015299125, -0.03938181, 0.0011290807, -0.011667713, -0.015154917, 0.0021155924, 0.012408416, 0.015364673, 0.0062664794, 0.013909487, 0.010527161, 0.022758594, 0.02543299, 0.0017059114, 0.004329508, -0.0026055707, 0.027137265, -0.040823884, -0.028789097, 0.00159202, -0.008626241, 0.009432494, -0.001233959, 0.0035986372, 0.0027055328, -0.011641493, 0.011405517, -0.01935005, -0.013247442, -0.025852505, -0.0050341594, -0.0070792865, -0.013817718, 0.008770449, -0.011326858, -0.0016862467, 0.030073857, -0.012893478, -0.023453414, 0.011287529, -0.00514887, 0.0061616013, -0.041662913, 0.03442631, 0.012336312, -0.009838897, 0.012605063, 0.04108608, 0.0041066417, 0.00867868, -0.024698844, -0.00060468906, -0.026953727, 0.013090125, -0.025236346, 0.00023515685, 0.02056926, -0.005866631, -0.010927009, -0.002384343, 0.022260422, 0.022561949, 0.024777502, -0.01123509, 0.011582499, 0.017134495, -0.014079914, -0.015128697, -0.019507367, 0.00814118, 0.048768416, 0.006138659, -0.01090079, -0.0046048136, 0.018143948, -0.009865116, -0.008160844, 0.027530558, 0.017580228, -0.0034380422, 0.005093153, 0.032276303, 0.01122198, -0.016570775, -0.0035658628, 0.014800953, -0.00040681317, 0.00048670094, -0.016570775, 0.003464262, -0.0059583993, 0.017881753, -0.08762583, -0.017750654, 0.014853392, 0.0092948405, -0.015102478, -0.00080625206, -0.010422283, 0.035711065, -0.020608589, 0.016741201, -0.006564727, -0.019520476, -0.008560693, -0.00011286709, 0.00051251083, -0.017304922, -0.023125669, 0.0030939104, -0.023243656, 0.0047064144, 0.0042803464, -0.008468924, -0.0058567985, -0.022797924, -0.00026035222, -0.01879944, -0.032092765, -0.0058633536, 0.017200043, -0.021867128, 0.0038968849, -0.014499427, 0.007892094, -0.023335425, 0.01562687, -0.020320173, -0.025616528, -0.0070792865, 0.023269877, -0.006817091, 0.0013503083, -0.014748514, 0.0073939213, -0.02616714, -0.006315641, 0.0016534722, -0.013437535, 0.008527918, 0.0032118985, -0.012919698, -0.030100077, 0.016439676, -0.008134624, -0.025800066, 0.015168026, 0.012539513, 0.0064303516, 0.0044343863, -0.019218951, 0.010179752, -0.0054602274, -0.021014992, -0.038306806, 0.015233575, 0.0125722885, -0.0043032886, -0.028317146, 0.010061763, -0.005545441, -0.015757967, -0.004218075, 9.5609284e-05, -0.004739189, 0.026101591, -0.015325344, -0.013752169, -0.024410428, -0.02855312, 0.012493629, 0.000901298, 0.0028661278, -0.020739688, 0.005224251, -0.0070596216, 0.0025875447, -0.009550482, 0.0014994321, 0.0022335805, -0.00030213967, -0.049423907, 0.02931349, 0.0040443703, 0.007905203, -0.0039165495, 0.0019763007, 0.016347907, -0.019061634, -0.01628236, -0.0051947543, 0.008606577, -0.009432494, -0.0026694809, -0.06549651, 0.010763138, 0.0017206599, 0.004086977, 0.011549724, -0.014709184, 0.014302781, -0.01675431, -0.016256139, 0.017737545, -0.033115327, 0.014302781, -0.0047785183, 0.0059321797, -0.019546697, 0.0019484424, 0.0016534722, -0.00902609, 0.010933564, -0.0028481018, -0.010022434, -0.024030244, 0.008803223, 0.016374128, -0.022260422, 0.031411055, -0.010310849, 0.025210125, -0.0034904815, -0.016321689, 0.0021123148, -0.0072562685, -0.004899784, 0.02240463, -0.0028562953, -0.034740943, 0.0034314874, 0.023361646, 0.011818475, -0.012755825, -0.028107388, -0.028107388, 0.012015122, -0.019376269, -0.023191217, -0.014263451, -0.011766036, 0.020280844, 0.030781785, 0.010120758, 0.008010081, 0.015430222, -0.019664684, -0.023518963, 0.0154433325, -0.025197016, -0.008580357, 0.0049030613, -0.007085841, 0.006712212, 0.050053176, 0.011595609, 0.02426622, -0.0015223743, 0.022758594, 0.019808892, -0.006980963, 0.017842423, 0.014748514, -0.04119096, -0.009583256, -0.0062828665, 0.01280171, 0.025734518, 0.019114073, -0.0020369336, 0.01025841, -0.006541785, -0.009727464, 0.027084826, 0.03125374, 0.009189962, -0.03350862, 0.032617155, 0.012985246, -0.02056926, 0.009386609, -0.00031668335, 0.0031037426, 0.0038542782, -0.02311256, 0.004080422, 0.002046766, -0.0030021418, 0.005506112, -0.0018042348, -0.00039452274, 0.017160714, 0.030965323, 0.020490602, 0.028422024, -0.0035461981, -0.002733391, -0.0021450892, -0.029680563, 0.021264078, -0.0144338785, -0.022640606, -0.020136638, -0.004804738, -0.0040836995, 0.015508881, -0.002662926, 0.015954614, -0.010769692, 0.005938735, 0.0032413956, -0.007924868, -0.03290557, 0.030178735, -0.00018742902, 0.0261147, -0.0015485939, -0.0041197515, 0.029759223, -0.014093024, -0.00484079, -0.025131466, 0.019087853, -0.010599265, -0.009189962, -9.5558076e-05, -0.010782802, -0.012349422, -0.0009897891, 0.010350179, 0.0010127312, 0.01744913, -0.008639351, 0.07797703, 0.0059649544, -0.01183814, 0.0025793512, -0.007656117, 0.013116345, 0.003516701, 0.012985246, -0.003949324, -0.016125042, 0.005978064, 0.025498541, -0.003926382, 0.007426696, -0.007800325, -0.0015658005, -0.009229292, 0.013122899, -0.022522619, 0.020189077, 0.012683721, 0.0126968315, 0.01742291, 0.004329508, -0.02247018, -0.006155046, 0.016964069, 0.00840993, 0.0072693783, -0.041977547, 0.020503711, -0.012991802, -0.022339081, -0.010789357, 0.0002222519, 0.018497912, -0.008632797, 0.0017583505, 0.00017841604, -0.007348037, 0.012015122, -0.0036969606, -0.020136638, -0.027032387, 0.0110843275, 0.026088482, 0.011064663, -0.021814689, 0.004126306]" 16157430,An open source GitHub-like platform as an alternative for AWS Lambda,https://github.com/1backend/1backend,278,1516102497,58,friendly_chap,"[0.0022844644, 0.0012300962, -0.0068809586, -0.01596024, -0.018385977, -0.00140324, -0.014485504, -0.023540666, -0.0027444584, -0.009951031, 0.0173385, 0.0026962194, -0.005792134, 0.008262663, 0.017559022, 0.0024429644, 0.011529137, 0.008193751, 0.0014523405, 0.00925501, -0.020012323, -0.00031592284, -0.01111566, 0.0040176255, -0.004379418, 0.0038039952, 0.014650894, -0.019915845, 0.0048170155, -0.007270317, 0.0058748294, -0.016993934, -0.0309557, 0.0006408905, -0.0013188217, 0.021514624, -0.010385183, -0.013389788, 0.0074701644, 0.0061711553, 0.030128745, 0.014664677, 0.00718073, -0.01802763, -0.008117946, 0.02766166, -0.010419639, -0.00856588, 0.010336944, -0.01957128, 0.00090448256, 0.021804059, -0.049479503, 0.012321637, -0.00539933, -0.002425736, -0.03186535, 0.023265013, 0.010061292, -0.003945267, 0.0055716126, 0.00840738, -0.026421227, -0.00608846, -0.019295627, 0.0143338945, 0.000613756, 0.00033379713, -0.016869891, -0.009020706, 0.024160882, 0.013472483, 0.0018899378, -0.026476357, 0.011963289, -0.011942616, -0.032747436, 0.003738528, -0.013610309, -0.0076079904, 0.013052114, -0.012728223, -0.011129443, 0.033684652, 0.0004384587, 0.0042519295, -0.00034478013, 0.0042105815, -0.0019123346, -0.01819302, -0.009186097, 0.016263457, 0.019075107, 0.00638134, -0.011418877, 0.008434946, -0.015836198, 0.020701451, -0.023265013, -0.013369113, -0.017242022, -0.0031441536, -0.020246627, -0.00808349, -0.01185992, -0.02706901, 0.015408937, -0.01914402, 0.022948014, 0.015918894, -0.0117565505, 0.011487789, -0.0075873164, -0.018537585, -0.014637112, -0.010571248, 0.029825527, -0.027317096, 0.004727429, -0.027523834, 0.013217505, 0.03382248, 0.02569075, -0.026944965, 0.01962641, 0.010674617, 0.0025480567, 0.006105688, 0.0058955033, -0.029549876, 0.014898981, 0.008862206, -0.011122551, 0.0030941917, -0.017559022, -0.013961765, -0.017559022, 0.016056718, -0.018578934, -0.018785672, 0.035145607, 0.011315508, 0.012521484, -0.013010766, 0.008262663, 0.024188448, 0.0020484377, 0.0077044684, -0.005833482, 0.003552463, 0.003230295, -0.010936487, -0.039004732, -0.019750454, 0.008813967, 0.0201088, -0.021294104, 0.013927309, -0.018165456, 0.013334657, 0.022300232, 0.018330846, -0.010364508, -0.016318588, 0.032637175, 0.03660656, 0.002925355, -0.015560546, 0.0024291817, -0.004717092, 0.019653976, 0.02111493, -0.024657056, 0.014430373, -0.002258622, -0.008469402, -0.005712884, 0.021431929, -0.029825527, -0.018964846, 0.012121789, -0.0014755987, -0.000237319, 0.054165583, -0.037957255, 0.0019640191, -0.026269618, 0.011467116, 0.01122592, 0.0004031408, -0.006126362, 0.02483623, 0.020646323, 0.0065226112, -0.61834216, -0.0027220617, 0.022920448, -0.04382864, -0.018275715, 0.0017865684, 0.001976079, 0.009675379, -0.003931484, 0.019226715, -0.00034564154, -0.0068017086, 0.009062054, -0.004313951, -0.020894408, -0.025029186, 0.008179968, -0.019392107, -0.020301757, -0.012742005, -0.027427357, 0.014664677, -0.042670902, 0.0039280383, 0.0053476454, -0.005254613, 0.006484709, -0.00018068116, -0.011921941, 0.018261934, -0.031507004, 0.029935788, 0.0061504813, 0.012025311, 0.042726032, -0.0061298073, -0.021142496, 0.023416622, -0.009192988, 0.0303217, 0.006505383, -0.0017814, 0.002642812, -0.0034559849, -0.017545238, -0.0035765825, 0.03787456, -0.0058851666, -0.014485504, -0.0056474167, 0.012673093, -0.01988828, 0.012790245, 0.007504621, -0.0034111913, -0.0125766145, 0.047219157, -0.015712153, -0.006398568, 0.016497761, 0.01217692, 0.021294104, -0.037598908, -0.037350822, -0.044049162, -0.003171719, -0.0077320337, -0.025663184, 0.008428055, 0.0040555275, 0.008779511, 0.0241471, 0.0029684256, -0.011508464, 0.03495265, 0.020839278, 0.026931183, 0.013341548, 6.534617e-06, 0.025732098, 0.010633269, 0.013079679, -0.027675442, -0.019323193, 0.029825527, 0.008193751, -0.020563627, -0.029494746, -0.0014368352, 0.00046343962, 0.019378323, 0.00919988, -0.026903618, -0.02451923, 0.018758107, 0.03941821, 0.010950269, 0.039804123, 0.0020811714, -0.0013455255, -0.01122592, -0.014051352, 0.016098067, 0.011536029, 0.03726813, -0.011853028, -0.040245168, 0.01973667, 0.045951158, -0.018427325, -0.0044655595, -0.007738925, -0.0076079904, -0.002630752, 0.018689193, -0.03131405, 0.0054062214, -0.0051030046, 0.02265858, -0.014375242, -0.013355331, 0.0061160247, 0.020921974, -0.023306362, -0.011997745, 0.024657056, -0.003531789, -0.008889771, -0.008813967, 0.0060229925, -0.010605704, 0.0019088889, 0.017779542, -0.0069016325, 0.053200804, 0.0034404793, 0.03307822, 0.0135138305, -0.006836165, -0.028695354, 0.005078885, -0.016869891, 0.021473277, -0.011921941, -0.00086055056, -0.014320113, -0.02861266, -0.012686876, 0.020646323, 0.014223634, -0.009792531, -0.0051925913, -0.0062745246, 0.017669283, 0.0131623745, -0.0015298676, 0.007621773, -0.03026657, -0.024601925, -0.015891328, 0.010088856, 0.0013239902, -0.018771889, -0.0005607792, -0.02877805, -0.025346186, 0.0024377957, 0.037984822, -0.0097374, -0.027110357, -0.0023688828, -0.008545207, -0.01596024, 0.0026341977, -0.0025480567, -0.007222078, -0.020039888, -0.001624623, 0.0045241355, -0.0060815685, 0.014237417, 0.018578934, 0.0083246855, -0.005437232, 0.044545334, 0.035448823, 0.014871416, 0.011012291, -0.011666964, 0.0015298676, 0.0032216806, 0.040575948, -0.02282397, 0.01644263, -0.016497761, 0.016925022, 0.003161382, 0.02079793, -0.0018261933, 0.0011405094, 0.00010595367, 0.012390549, 0.019130237, -0.0018847693, -0.0069808825, -0.026600402, -0.003013219, 0.008104163, 0.03090057, 0.019061323, 0.00070721924, -0.0025497794, -0.008310903, -0.027082792, 0.011549812, 0.017586587, -0.0142512, 0.013679222, 0.006681111, 0.009062054, -0.0002551933, 0.006484709, 0.010075075, -0.0010741807, -0.02366471, 0.015753502, -0.017104195, 0.025621837, -0.00028749625, -0.03597256, -0.008607228, 0.02154219, -0.00422781, -0.016580457, 0.028392138, 0.015215981, 0.012838484, -0.013231288, 0.018496238, -0.031424306, -0.014085808, 0.015298677, 0.0034284196, -0.01999854, 0.03558665, 0.015546763, 0.01919915, 0.028144052, -0.006484709, 0.0030511213, -0.0125766145, 0.01207355, -0.009565119, -0.01132929, -0.0006619951, -0.018275715, 0.011232812, -0.0042415923, 0.024643274, 0.02569075, -0.003669615, 0.020301757, 0.03175509, -0.007642447, 0.0010457541, -0.013072788, -0.002218997, -0.020715235, 0.0009070668, -0.02665553, 0.008262663, -0.0045137987, -0.004579266, -0.029797962, -0.002925355, 0.0076079904, 0.020081235, 0.029081268, 0.0048583634, 0.01776576, -0.021666234, -0.027027661, 0.032058306, -0.008586555, 0.011184573, -0.022410493, -0.005047874, 0.020301757, 0.003728191, -0.0129280705, 0.0054820254, 0.0084831845, -0.012039093, 0.0098959, -0.010853791, -0.022438059, 0.04548255, -0.017944934, 0.002151807, -0.019461019, 0.022920448, -0.0008497829, -0.021142496, -0.02941205, 0.031975612, 0.00029309542, -0.023871448, -0.002935692, 0.031534567, -0.019778019, -0.004637842, -0.010516117, -0.0097374, -0.023016928, 0.02935692, -0.0037798756, -0.017352283, 0.023099624, 0.023044493, 0.023761187, -0.027041445, -0.03770917, 0.0032613056, 0.030376831, 0.033409, -0.026614184, 0.0014661232, 0.008496967, -0.028212965, -0.0044173207, -0.0006439054, -0.021307886, -0.0015617398, 0.006360666, -0.010929595, 0.026242053, 0.010895139, -0.0053166347, 0.018578934, 5.4538144e-05, -0.012996984, -0.032085873, 0.003969386, -0.02314097, -0.00325786, 0.021335451, 0.009427292, 0.030735178, 0.050058372, 0.0060402206, -0.0038212235, -0.014375242, 0.000459994, -0.02122519, -0.01228718, -0.012700658, 0.021294104, 0.009158532, 0.0011482622, 0.041292645, 0.003600702, 0.038646385, -0.0041141035, 0.0014049629, 0.0048687, -0.003316436, 0.0030407843, -0.007084252, 0.007835403, -0.022245102, -0.016015371, 0.008434946, 0.0017831228, 0.005165026, 0.023292579, 0.025387533, -0.02340284, -0.02580101, 0.015794849, 0.0066190893, 0.012466353, 0.0078009465, -0.020894408, -0.042891424, -0.018634064, -0.017559022, 0.010902029, 0.001752112, 7.790394e-05, -0.03186535, -0.03685465, 0.02250697, 0.00029309542, -0.021528408, -0.011880593, -0.02855753, -0.036937345, 0.01648398, 0.010915812, 0.007580425, -0.007187621, 0.018758107, -0.026283402, 0.022189971, 0.012349201, -0.017683065, -0.0053855474, -0.031617265, -0.007525295, -0.008579663, 0.011784116, -0.01925428, 0.007415034, 0.009482423, -0.017958716, -0.01562946, 0.014485504, -0.012769571, 0.00798012, 0.011391312, 0.034704566, -0.013444918, -0.012487028, -0.030790308, 0.0019209486, -0.021955667, -0.0038866908, -0.022727493, -0.0063262093, -0.0035386803, 0.009882118, -0.019612627, 0.001741775, -0.0054337867, -0.01771063, -0.010061292, 0.004610277, 0.013038332, 0.011660072, 0.01132929, -0.007435708, 0.031948045, 0.008593446, 0.019378323, 0.014402808, -0.019088889, 0.040548384, 0.0052787326, -0.0076493383, 0.020729017, -0.00041197028, 0.007718251, -0.022052146, 0.0044173207, 0.027413573, 0.007904316, -0.012369876, -0.012411224, -0.015987806, -0.013127918, 0.00015753071, -0.0068051545, 0.009957923, -0.035062913, -0.046419766, -0.025911272, -0.006553622, 0.0051719174, -0.027854618, -0.017490108, -0.016304806, -0.01925428, 0.007573534, 0.02420223, -0.034484044, 0.022644797, 0.0019536824, -0.016304806, -0.006615644, -0.017035283, 0.0056198514, -0.010343835, 0.023499317, 0.012783353, 0.007670012, 0.019943409, 0.015036807, 0.019033758, -0.007690686, -0.010626378, -0.024009274, -0.0042519295, -0.009716727, -0.007104926, 0.011391312, 0.03718543, 0.002231057, 0.0207428, -0.0026186923, 0.024808664, -0.01776576, -0.006339992, -0.02883318, -0.04972759, -0.026627967, 0.011088095, -0.009048271, 0.005750786, -0.016663153, 0.0020501604, 0.0032940393, -0.033960305, 0.03663413, 0.0024102307, 0.034180827, -0.017186891, 0.024670837, 0.012025311, 0.020205278, -0.004462114, -0.0124594625, -0.011577377, -0.023857666, 0.019709105, 0.030542223, 0.012893614, 0.015808633, 0.006191829, 0.010750421, 0.00688785, -0.0059747533, -0.0041520055, -0.011694529, 0.0037144083, -0.02037067, -0.033050653, -0.0058955033, -0.01685611, -0.0030114963, -0.004320842, 0.028102703, 0.016608022, -0.020398235, -0.00079809816, -0.001344664, -0.010019944, 0.031424306, 0.011494681, 0.021762712, 0.025346186, 0.005695656, -0.024670837, -0.009454858, 0.02122519, 0.0012395718, 0.017724412, 0.03357439, 0.0049548415, -0.010819335, 0.029522311, 0.0019192258, 0.010378291, -0.027730573, 0.023595797, 0.012335419, -0.014581981, -0.024298709, 0.0055026994, 0.0054544606, 0.0016599408, -0.028695354, 0.011301725, -0.0004255375, -0.023016928, -0.015243546, 0.0060540033, -0.0035283433, 0.001957128, 0.0017633103, 0.003531789, 0.0043966467, -0.02935692, -0.01324507, -0.016180763, 0.015133285, 0.0143338945, -0.0054923627, 0.008345359, 0.014885198, 0.018358411, 0.009117184, 0.0051719174, 0.0034232512, 0.030183874, -0.004200245, 0.0070015565, -0.012879832, 6.374448e-05, 0.018179238, -0.017545238, -0.012252724, -0.0035180065, 0.0029684256, -0.0050168633, 0.02163867, -0.0053889933, -0.013479374, -0.019543715, -0.0114050945, -0.0204258, -0.021335451, -0.0037419735, 0.0124594625, -0.031424306, -0.010302487, -0.02717927, -0.018358411, 0.008875988, -0.003786767, 0.0064536985, -0.013127918, 0.019212931, -0.01441659, -0.0045620375, 0.008931119, 0.0032113437, -0.011501572, 0.042670902, -0.00851075, 0.01839976, 0.01111566, -0.010088856, -0.0055440473, 0.007208295, 0.023416622, 0.010385183, 0.00052330777, -0.014471721, 0.027082792, 0.0064640353, 0.020990886, -0.030431962, -0.01802763, 0.017269587, -0.0047308747, -0.031038396, 0.0138652865, 0.00012835038, -0.013224396, -0.0021655897, 0.0009561673, -0.0018175793, -0.025153229, -0.03429109, -0.001173243, -0.005950634, -0.015367589, -0.001672862, -0.018606499, -0.02196945, -0.029439615, 0.006164264, 0.028474834, 0.0102129, 0.027882183, 0.015836198, 0.043856204, 0.009723618, -0.008269555, -0.0019778018, -0.020205278, -0.010564356, -0.02766166, -0.023802536, -0.016346153, 0.06284861, -0.00014127156, 0.0020225954, 0.00020975381, -0.013052114, -0.019819366, 0.0123423105, 0.010647052, 0.014719808, 0.019598845, 0.03484239, 0.023127189, 0.030018484, 0.0056991014, 0.03382248, -0.03128648, 0.00199503, -0.0201088, -0.013782592, 0.028088922, -0.00086916465, -0.036468737, -0.0028805616, 0.0077664903, -0.006732796, -0.004024517, 0.019281846, -0.01590511, -0.01802763, -0.01217692, -0.005926514, -0.008614119, 0.0029288006, 0.020825496, -0.029163962, -0.012307854, 0.02048093, -0.0052959607, 0.038425863, -0.013713678, 0.009461749, -0.0048859287, 0.0060781226, -0.0139410915, -0.006398568, 0.012025311, 0.0034043, 0.025980184, -0.022382928, 0.014926546, 0.03914256, -0.00033831954, -0.014196069, 0.0031096973, -0.006543285, -0.05298028, 0.011108768, 0.0076079904, 0.003366398, -0.016456414, -0.004117549, -0.0019330084, -0.0048066787, -0.020908192, -0.010715964, 0.012431897, -0.0021776494, 0.010364508, 0.010605704, -0.020577408, -0.01191505, 0.017751977, -0.013444918, -0.0080903815, -0.016001588, 0.018413542, -0.006402014, -0.002386111, 0.0018623726, -0.008097272, -0.050692372, 0.0050272, 0.03536613, -0.0044655595, 0.002532551, 0.22934231, 0.0042105815, 0.0076079904, 0.0071738386, 0.005165026, 0.02111493, -0.0007993903, 0.011349964, -0.009806314, 0.029026138, -0.031203786, 0.015188416, 0.0058748294, 0.006226286, 0.014016896, -0.007987011, -0.027358444, -0.041788816, -0.012755788, -0.003552463, 0.004579266, 0.0027168933, -0.011832355, -0.019130237, 0.020191496, 0.017876022, -0.0055095907, -0.0037488649, 0.03004605, -0.0076562297, -0.0035283433, 0.0052787326, 0.020467147, 0.002329258, -0.009124075, -0.01015777, 0.031837787, -0.020866843, -0.0070980345, 0.025663184, -0.013741244, -0.01973667, 0.017600369, -0.008786402, 0.001486797, -0.010757312, -0.019764235, -0.014457938, 0.017434979, 0.021817842, -0.020205278, 0.027193053, 0.025980184, 0.014389025, -0.007346121, 0.0054303408, 0.010268031, -0.0014247753, 0.008490076, 0.020701451, -0.004727429, 0.021900538, -0.026517706, 0.036578998, -0.030983265, -0.010805552, -0.017572803, 0.0066673285, 0.004355299, -0.014568199, -0.010681508, -0.007208295, -0.0056026233, 0.015546763, 0.0071738386, -0.02669688, 0.006598416, 0.016552892, 0.03765404, 0.04914872, -0.0053648734, 0.00606434, 0.0027926976, -0.008813967, 0.000525892, -0.009806314, 0.011618724, -0.023623362, -0.013555178, -0.027275749, 0.0051305695, -0.014609546, -0.0020467148, -0.022782624, -0.0005168472, -0.02340284, 0.010805552, -0.00046688528, -0.0024136764, -0.01882702, -0.026903618, 0.054165583, 0.028088922, -0.0039556036, -0.022562101, 0.003387072, 0.0033508926, 0.032719873, -0.0037523105, 0.017751977, -0.0019778018, -0.030183874, 0.006377894, -0.02265858, 0.011653181, 0.0098476615, -0.014513069, -0.009530662, -0.039004732, -0.009985487, -0.0048411353, -0.039225254, 0.003345724, 0.0014454493, -0.03302309, -0.015381372, -0.0154227195, 0.016387502, 0.003161382, -0.018055195, 0.0080903815, -0.0021380244, 0.00688785, 0.01197018, 0.02669688, -0.0003299208, 0.0034301423, -0.017242022, -0.03010118, 0.012369876, 0.0056405254, 0.011039856, 0.015808633, -0.02377497, 0.009330815, -0.023761187, 0.006271079, 0.0069636544, -0.0074288165, -0.019819366, -0.015064373, 0.025773445, -0.025993967, -0.024684621, 0.013382896, 0.0055853953, -0.008186859, -0.033684652, 0.01983315, 0.002210383, -0.03426352, -0.033326305, 0.010192227, 0.028337007, -0.011322399, -0.017683065, -0.17652743, 0.0063262093, 0.021238973, -0.017310934, 0.034070566, 0.014554417, -0.006457144, -0.00646059, -0.0032113437, -0.021335451, 0.0030855776, 0.009358379, -0.025387533, -0.03186535, 0.0078009465, 0.0073805777, 0.01430633, 0.018592715, 0.06235244, 0.0018279161, 0.05110585, -0.013768809, 0.011894376, -0.004245038, -0.011708311, 0.010516117, -0.016897457, 0.01824815, -0.015532981, -0.025773445, -0.012583505, 0.0065811872, 0.03357439, 0.00909651, 0.019709105, 0.0013661993, 0.020453366, 0.02494649, -0.015601893, 0.02254832, 0.022107277, 0.032471783, 0.0051891454, 0.006949872, -0.007987011, 0.030762743, 0.014457938, -0.03318848, 0.004179571, -0.0021052908, 0.019750454, -0.03249935, -0.0075321863, -0.008317794, 0.031038396, 0.0039487123, 0.011728985, 0.017490108, 0.014168504, -0.00029072654, 0.002584236, -0.016153198, -0.015574328, 0.0057611233, -0.007228969, -0.023209883, -0.012597288, 0.019323193, -0.025346186, 0.008097272, -0.030845439, 0.014278765, -0.017862238, 0.018813238, 0.0027737464, -0.0050513195, -0.007539077, 0.027413573, 0.04308438, 0.00051426294, 0.0204258, -0.0066053066, 0.0006284, 0.02217619, -0.026421227, 0.012783353, -0.006329655, 0.022355363, -0.015450285, 0.007270317, 0.0111707905, -0.05750097, 0.007718251, -0.020949539, -0.011108768, 0.013134809, 0.023361493, -0.004910048, -0.002632475, -0.001869264, 0.013369113, 0.004500016, -0.024670837, -0.006029884, 0.027785704, 0.01292118, -0.006181492, -0.0063468833, 0.03260961, 0.00614359, -0.022961797, 0.018689193, 0.026076663, 0.03925282, -0.017186891, 0.03125892, 0.00782162, -0.0052890694, 0.0092619015, 0.012652419, 0.03478726, 0.004379418, 0.008703707, 0.02308584, 0.028529964, -0.031341612, -0.07200026, -0.030349266, 0.025332402, 0.009337706, -0.010343835, 0.013555178, -0.004903157, 0.017917369, -0.012066659, 0.029660136, -0.04876281, -0.0038177778, -0.0309557, 0.0047239834, -0.012686876, 0.0034714902, 0.02079793, -0.004658516, 0.018744323, 0.008621011, 0.016387502, -0.015298677, -0.016139414, -0.022134842, -0.022369146, -0.005420004, -0.014540634, -0.001589305, -0.005898949, -0.00089931407, 0.005196037, -0.0022155514, 0.016084284, 0.0053338627, 0.030569788, -0.0038970276, -0.008889771, -0.0014609547, 0.03233396, -0.0041313316, -0.020467147, -0.02941205, 0.025552925, -0.009826988, -0.012996984, -0.013541396, 0.0015875823, 0.020908192, -0.013382896, 0.0002148146, -0.008800184, -0.015009242, -0.016291022, 0.0008006824, 0.01834463, 0.003433588, 0.00962714, 0.02548401, -0.010660835, -0.0054337867, 0.01281781, -0.007525295, -0.014568199, 0.029935788, -0.0023619917, 0.012362984, -0.0012456017, 0.01201842, -0.0007795778, -0.000646059, -0.029825527, 0.0024205677, -0.02165245, -0.0038384516, -0.021238973, -0.016828544, -0.0019123346, -0.0020794484, 0.0021173505, 0.025194576, -0.022314016, -0.007876751, -0.00931014, -0.013548288, 0.019557497, 0.009744292, 0.011928833, 0.0098959, 0.017876022, -0.046833243, -0.0018830466, 0.0071256, 0.022327797, -0.01717311, -0.005323526, 0.012804028, 0.0016806148, 0.0014471721, -0.0072358605, 0.019405888, -0.030735178, -0.016690718, -0.07547347, -0.006925752, -0.003972832, -0.0069671, 0.016745849, -0.004303614, -0.008531424, -0.0173385, 0.0071256, 0.038866907, -0.037984822, 0.0075666425, -0.008717489, -0.010853791, -0.01436146, -0.00808349, 0.024367621, -0.0068223826, -0.015133285, -0.0047412114, -0.0099648135, -0.0069016325, 0.0035197292, -0.0009613357, -0.012238941, -0.0005340754, -0.02340284, 0.039307952, -0.01265931, -0.006398568, 0.015712153, -0.0071462737, 0.00083040114, 0.0063744485, -0.0047481027, -0.01988828, 0.018785672, 0.028529964, 0.020673888, 0.014595764, -0.036248215, -0.046447333, 0.019557497, -0.012335419, -0.006577742, 0.0005659477, -0.0061160247, -0.0116393985, 0.016952587, 0.010888247, 0.023540666, 0.0003861279, -0.02254832, -0.041237514, -0.014637112, -0.02366471, -0.0027547954, 0.024698403, -0.025056751, 0.015064373, 0.048542287, 0.024464099, -0.0038315603, -0.004021071, 0.0070187845, -0.011267268, -0.021624885, 0.016056718, 0.017931152, -0.051712282, -0.011067421, -0.03484239, 0.020549843, 0.010323161, 0.0058231447, -0.039225254, -0.026503922, -0.0056784274, -0.037543777, 0.022948014, 0.019778019, -0.025773445, 0.00038677396, 0.014926546, 0.025346186, 0.013500048, 0.0038108865, 0.0013498325, 0.010888247, -0.0068809586, -0.020453366, -0.007084252, -0.0053889933, 0.024464099, 0.011529137, -0.016552892, -0.0046654074, -0.0006951594, 0.014595764, -0.009358379, 0.026862271, -0.006184938, -0.007228969, -0.027220618, -0.013431136, 0.009654705, -0.014320113, 0.004668853, 0.010612595, 0.0020501604, -0.0048962655, -0.014747373, 0.007807838, 0.02367849, -0.008648576, 0.0067086765, -0.011673855, -0.017669283, -0.020591192, -0.010888247, 0.006543285, 0.0084831845, 0.0016797533, -0.015546763, 0.014278765, 0.013438026, 0.00014891659, -0.007249643, 0.0035834736, -0.010192227, -0.013837721, 0.0105505735, -0.02005367, -0.017903587, -0.034539174, 0.0030459526, 0.006467481, 0.004320842, 0.011136333, 0.087105975, 0.01739363, 0.007153165, 0.02500162, -0.006791372, -0.016263457, -0.0133966785, 0.00571633, 0.020136366, -0.042092033, 0.015243546, 0.019764235, -0.022314016, -0.03324361, 0.0014066857, 0.012232049, -0.0145268515, -0.0009699499, -0.02733088, -0.009330815, 0.017600369, 0.027992442, -0.009385944, -0.0042726034, -0.019764235, 0.0134587, 0.020549843, 0.01564324, -0.013444918, -0.03346413, 0.039804123, 0.0039556036, -0.06654235, -0.016139414, 0.00214147, 0.011508464, -0.0036868432, -0.025111882, -9.900854e-05, 0.024987837, 0.005285624, 0.0059023947, -0.025056751, -0.034015436, -0.0033543382, -0.004692972, -0.011735876, -0.01648398, -0.021817842]" 13661887,YC Annual Letter 2017,http://blog.samaltman.com/2017-yc-annual-letter,417,1487266872,151,sama,"[0.0009809153, -0.02200842, 0.027189313, -0.032743227, -0.0006592683, 0.012641372, -0.020613035, -0.0016786085, -0.0077644275, -0.0071358127, 0.024633406, 0.026056424, -0.0051981597, -0.015556486, 0.013560116, 0.022036053, 0.03652873, -0.004117081, 0.008876592, 0.011391051, -0.019811723, -0.0020844447, -0.027120233, 0.013394328, -0.005999471, 0.016261088, 0.018941335, -0.010907501, 0.020253828, 0.0056229928, 0.0082065305, 0.017490685, -0.0015102295, 0.032494545, -0.033765588, -0.02059922, 0.0052776, 0.017642658, 0.014478861, -0.015998589, 0.030560344, 0.016274903, -0.012793345, 0.00032898653, -0.010472306, 0.010513754, -0.012703543, -0.007598639, 0.0016224821, 0.013304526, 0.014920964, 0.003592084, -0.013877878, 0.004766419, 0.0009256524, 0.0044762893, 0.018996598, -0.002272684, 0.029399825, 0.0042414223, 0.007646994, 0.02224329, -0.016385429, 0.021511056, -0.006462297, -0.0012209631, -0.02101369, -0.0292893, 0.00981606, -0.006745519, 0.027631415, 0.0037233331, 0.022215657, -0.0030895376, 0.022284735, -0.00055651396, -0.024149856, -0.0023935712, 0.0073361406, 0.008648633, -0.0011967856, -0.017877525, -0.0069147614, 0.00012725561, 0.014478861, 0.006797328, -0.008096005, 0.009519022, -0.036473468, -0.015211094, 0.033323485, 0.014851885, 0.01834726, 0.009691719, -0.0036508006, -0.005660986, -0.0050392793, 0.0015931238, 0.0061030886, -0.012724266, -0.027396547, 0.00036611623, -0.01049303, -0.03266033, -0.029344562, 0.008420673, 0.025766294, 0.003017005, 0.030505082, -0.0029289299, 0.013145645, 0.008234162, -0.014796622, -0.007971663, 0.004213791, -0.0379103, 0.011840061, 0.008600278, -0.0061687133, 0.0013099017, 0.05786018, 0.008441397, 0.022975521, -0.011494668, 0.012144007, -0.0003693543, -0.0240117, -0.003581722, 0.019093307, -0.028266937, -0.014022943, 0.0054537505, 0.012482491, -0.0049840165, -0.03744057, 0.0237492, -0.0010094101, 0.029869558, -0.013221632, -0.02413604, -0.007501929, 0.022643944, -0.008607185, 0.034318216, -0.01245486, 0.02439854, 0.008669356, 0.02198079, 0.028598513, -0.0056229928, 0.006465751, -0.0027579605, -0.0030342748, 0.033655062, 0.0074466662, 0.007315417, 0.0047387877, 0.02333473, 0.003823497, -0.010458491, -0.0035350942, 0.006002925, 0.0037993195, -0.0017088302, 0.01709003, 0.01885844, 0.025600506, -0.015045306, -0.0069009457, -0.022188026, -0.011895324, 0.039319504, -0.031306393, 0.017808447, 0.00037388757, 0.00855883, 0.019231465, 0.004155074, -0.03241165, -0.009809152, 0.022906443, -0.007826598, 0.0066384473, 0.021303821, 0.0033813943, -0.02336236, 0.022326183, -0.015142015, -0.008317056, 0.0010335876, -0.0036231691, 0.01650977, 0.003357217, 0.02423275, -0.6242489, -0.017131478, 0.018333444, -0.01119763, 0.001796042, -0.020557772, 0.00025386363, 0.0213729, -0.011625918, 0.0053708563, -0.0062999628, 0.00971935, -0.0076262704, 0.0008371455, 0.009512114, -0.020916982, 0.021428162, -0.014036759, -0.0014946868, 0.011936771, -0.012586109, 0.025476165, -0.0028667592, -0.0015188643, 5.6558052e-05, 0.029095879, 0.006120358, 0.0013807073, -0.03147218, 0.005053095, -0.0008384407, -0.0030619062, -0.0034522, 0.022257105, 0.052997053, 0.016772268, -0.0062999628, 0.016924242, 0.0014825981, 0.024080778, -0.031776126, -0.0012986765, 0.016150562, -0.0006894901, -0.013953865, 0.008987118, 0.037855037, 0.003868398, -0.013884786, -0.0049805623, -0.013857154, -0.015763722, -0.03398664, -0.0050807265, -0.0065348297, -0.005906215, 0.01718674, -0.019715015, -0.0050703646, 0.012696635, 0.0008077871, 0.028142596, -0.023956437, -0.0036508006, -0.02227092, 0.016026221, -0.003937477, 0.008061465, 0.03318533, -0.006462297, 0.0077160727, 0.016661743, -0.006127266, -0.011308157, 0.008386134, 0.018968966, 0.03849056, -0.03299191, 0.0013038574, 0.02800444, -0.012613741, -0.015860433, -0.0022087863, -0.020295274, -0.007419035, -0.0011078471, 0.0017373252, 0.0047387877, 0.006745519, 0.013511762, 0.007308509, 0.0012572294, -0.016109115, -0.0369432, 0.0082410695, 0.021331452, -0.014948595, 0.016979504, 0.03926424, -0.03752346, -0.024757747, -0.023472887, 0.018540679, 0.0037751421, 0.0058302283, 0.015390698, 0.028170228, -0.0017131477, 0.021911712, -0.04799577, 0.003719879, -0.016758453, -0.030974817, 0.018416338, -0.014589387, -0.029344562, 0.011439405, -0.0018616666, 0.0009981849, -0.0012494581, 0.024025515, 0.0004459883, 0.002027455, -0.015335435, 0.016330166, -0.003262234, -0.0033140427, -0.008800605, -0.021953158, 0.004206883, 0.013877878, -0.031140605, 0.01445123, -0.011846969, -0.0045488216, 0.021041322, 0.009857507, -0.008116728, -0.001224417, -0.008006202, -0.041668173, -0.009892046, 0.010679542, 0.012620648, -0.012088744, -0.0024350183, 0.011743351, -0.004158528, 0.0036231691, -0.013048936, 0.002219148, 0.010679542, -0.027479442, 0.02072356, 0.013974588, -0.0005379491, -0.0075848233, -0.030422188, -0.021552503, -0.034815583, 0.00859337, 0.040701073, 0.008068373, -0.0075779157, -7.744352e-05, -0.010216716, 0.0016570213, 0.015266357, -0.0141611, 0.004196521, -0.0011985126, -0.0142163625, -0.0058164126, -0.00078447314, 0.015224909, 0.020820271, -0.020806456, 0.00036849082, -0.011190723, -0.010796975, 0.0049805623, -0.010168361, -0.0068664066, -0.005864768, 0.008551923, 0.004469381, 0.01895515, 0.023431439, 0.004583361, 0.0053915796, -0.023818279, -0.0048285895, -0.01621964, -0.00027868873, -0.02851562, -0.012855516, -0.00849666, 0.0033848484, 0.017780816, 0.021303821, 0.0035989918, 0.014188731, 0.028681409, 4.4523276e-05, -0.0135048535, -0.03614189, -0.002595626, -0.0151282, 0.018665021, 0.008254885, -0.0027165134, -0.0032812306, -0.01619201, -0.014409782, 0.013249263, 0.015072937, -0.0027286022, 0.006600454, -0.027092602, 0.006707526, -0.00064933824, -0.015542671, 0.0030463634, -0.01805713, 0.036390573, 0.031334024, -0.009194354, 0.03337875, -0.013864063, -0.016620295, -0.016910426, 0.039374765, -0.005705887, 0.014796622, 0.020281458, 0.019079491, 0.030007716, -0.0074259425, 0.045094468, 0.0075710076, 0.0020101855, 0.008890408, 0.0194387, 0.0050738184, 0.021055138, -0.0033174967, 0.03572742, -0.0083446875, -0.010451582, 0.017131478, -0.008655541, 0.0022985884, 0.005844044, -0.034290586, -0.012793345, -0.02098606, 0.011473945, 0.00087254826, 0.021552503, 0.021124216, -0.012945318, 0.007937124, 0.0021777009, -0.011225263, -0.0069769323, -0.018457785, 0.0024453802, -0.012869331, -0.008545015, -0.014575571, -0.0024937352, -0.018747915, 0.007909493, 0.0039961934, 0.015860433, 0.0057335184, 0.008406858, -0.014271625, -0.017463055, 0.020032777, 0.0013168096, -0.03594847, 0.014990043, 0.005042733, -0.011156184, -0.0031378926, -0.005063457, -0.008116728, -0.011087105, 0.011190723, -0.008959486, -0.020336721, -0.023099862, 0.006545191, 0.019894619, -0.010548293, 0.039789237, -0.01738016, -0.004576453, -0.009919678, -0.0094223125, -0.0012555025, 0.004479743, -0.017559765, 0.046365514, 0.009408496, -0.011943679, -0.020101855, -0.012468676, -0.019231465, 0.022188026, -0.008317056, -0.0062412457, 0.0050323713, 0.010444675, 0.013511762, -0.0012416866, -0.006559007, 0.0043277703, 0.0005323365, -0.013428868, -0.013953865, -0.045591835, 0.037330043, 0.108094096, 0.042110275, -0.032826122, 0.013615379, -0.014810438, 0.008655541, -0.017725553, -0.03299191, 0.0019290182, -0.017311081, 0.0049943784, 0.0023883905, 0.026802473, -0.008517384, 0.0050392793, 0.0014014308, 0.00968481, -0.011218354, -0.015694644, -0.012758805, 0.0008570056, -0.0062654233, 0.04097739, 0.0302564, 0.034566898, 0.009588101, 0.056478612, 0.012047296, 0.01100421, -0.020157117, -0.0125999255, 0.005129081, 0.0022036054, 0.01132888, -0.0060512796, 0.0063137785, -0.0016803354, 0.012302888, 0.0031966092, -0.0089525785, 0.0151282, 0.026208397, -0.0069527547, -0.015307804, -0.0037129712, 0.014105837, -0.010527569, 0.017255818, -0.005768058, -0.030919554, 0.0142163625, -0.00981606, -0.032052442, -0.0033261315, 0.0064346655, 0.0041239886, 0.0059856554, -0.016495954, -0.0029116604, -0.028073518, -0.020060407, -0.04451421, 0.0062516076, -0.01621964, 0.009601916, -0.011902232, -0.0074950214, -0.013366696, -0.009090736, 0.0005444252, -0.012675911, -0.015874248, -0.03476032, 0.014907148, 0.022091316, 0.003210425, -0.0023883905, 0.015183463, -0.000614799, 0.027424179, -0.003640439, -0.0072394307, -0.005149805, -0.022215657, -0.005381218, -0.00097055343, -0.0071427207, 0.012475584, -0.008013111, 0.009836784, -0.016426876, 0.0047318796, -0.011791706, -0.010458491, 0.011639734, 0.0100992825, 0.0014204275, -0.0017407791, 0.0050358255, -0.03752346, 0.00603401, 0.0008138315, 0.011259802, -0.013746629, -0.012627557, 0.022643944, 0.0067731505, 0.020682113, -0.011971311, 0.0074673896, 0.018416338, -0.025158403, 0.011722628, -0.00452119, -0.020281458, 0.0019652843, -5.3589833e-05, 0.0071358127, -0.0078058746, -0.031306393, 0.009408496, -0.030891921, 0.027493257, 0.021138033, -0.016053852, 0.01358084, -0.008676264, -0.013850247, -0.00031365972, 0.022049868, -0.019383438, 0.015183463, -0.030947184, -0.016081484, -0.025213666, -0.037247147, -0.02551761, -1.2574453e-05, -0.0056471704, 0.003115442, -0.030449819, -0.0065417374, -0.010831514, -0.018816993, 0.01689661, -0.04216554, -0.0005802597, 0.005989109, 0.02677484, 0.014409782, -0.0051256274, -0.011846969, -0.023293283, -0.029980086, -0.0124272285, -0.010679542, 0.0099956645, -0.020101855, 0.021096585, 0.004203429, 0.021538688, -0.0036749782, 0.02558669, 0.020778824, 0.0043657636, -0.014727544, 0.006479567, -0.004396849, -0.0019290182, 0.004918392, -0.017946605, 0.011377235, -0.015874248, -0.018001867, -0.00032877066, 0.032798488, -0.013332157, -0.009346326, -0.028570883, -0.031969547, -0.038352404, 0.008372319, -0.01982554, -0.016440691, -0.008185807, -0.009035473, 0.0316656, 0.0031016262, 0.03437348, -0.020930797, 0.02655379, 0.0029237492, 0.0033123158, 0.016868979, 0.02175974, -0.014126561, -0.011660457, -0.043132637, -0.0046489853, 0.01796042, 0.004500467, 0.026498526, 0.016868979, -0.015597934, -0.0018703014, 0.012717359, -0.026194582, -0.0013280349, 0.013097291, -0.01825055, 0.020847902, -0.019742645, -0.0011527481, -0.010140729, -0.016026221, 0.0011639734, 0.004897668, 0.012952225, -0.012883147, -0.018678837, 0.0011026661, 0.003823497, 0.040148444, 0.0042414223, 0.027437994, 0.013926233, 0.036252417, -0.020834086, 0.015680827, -0.0021604311, -0.0023365815, 0.03321296, 0.04280106, -0.03713662, -0.010292702, 0.032301124, 0.012572294, -0.008821329, -0.008358503, -0.006559007, -0.010223623, 0.0051359893, -0.024260381, -0.023970252, -0.0012088744, 0.009477575, 0.011501577, 0.0074881134, 0.0034176605, -0.0008656404, -0.010092374, 0.018872255, 0.018706467, 0.0077644275, 0.004673163, -0.0075295605, -0.008040742, -0.015445961, 0.0062516076, 0.0063586794, -0.021151848, 0.025047878, -0.0037647802, 0.018457785, 0.0045039207, 0.008828237, -0.017753184, -0.018803177, -0.0020999876, 0.022934074, -0.031306393, -0.0041688895, -0.00036633213, -0.01313183, 0.0016181647, -0.02951035, -0.021552503, -0.012268348, -0.030809028, -2.3219563e-05, 0.019742645, 0.0006709253, -0.0151005685, -0.009097643, 0.0067317034, -0.016868979, -0.0056057232, -0.013304526, 0.01696569, -0.020999875, -0.0013349428, -0.00387876, -0.0012036934, -0.0002773935, -0.01573609, -0.0055400985, 0.0038407666, 0.00708055, -0.002448834, 0.0072394307, 0.010120005, 0.0077644275, -0.03161034, 0.014395967, -0.01631635, -0.012316703, 0.020516325, -0.01963212, -0.02854325, 0.008572646, 0.008973302, 0.025531428, -0.010258162, 0.015874248, -0.015155831, 0.054654937, 3.936937e-05, -0.0071358127, -0.039126083, 0.022547234, -0.024274198, -0.0032656877, 0.021441977, -0.022188026, 0.032770857, -0.013656827, 0.010486122, -0.0125308465, -0.026346553, -0.010859146, 0.003916753, 0.0046109925, 0.010872962, -0.008427582, -0.020184748, -0.017159108, -0.019659752, 0.0055539142, 0.03514716, -0.01200585, 0.010071651, 0.0302564, 0.025379455, 0.018140024, 0.0054226653, -0.0204058, -0.007280878, -0.012351242, -0.045785256, -0.012012757, 0.0024781926, 0.06681276, 0.0018495778, -0.011867693, -0.031140605, -0.0118193375, -0.04628262, -0.028170228, 0.005533191, 0.019880803, 0.026153134, -0.008254885, -0.014810438, 0.020267643, -0.010271979, 0.03103008, 0.00016783926, -0.011287433, 0.028170228, 0.0032812306, 0.0029047525, -0.011757167, -0.024536695, 0.0012011031, 0.02275447, 0.00039612222, -0.02314131, 0.03688794, 0.004469381, 0.0014022943, -0.0022588682, -0.0015180008, -0.016675558, 0.0292893, 0.0013927959, -0.055622038, -0.013283802, 0.0005655805, -0.0057404265, 0.018416338, 0.005377764, -0.024481433, 0.010997303, 0.00642085, -0.012669004, -0.016330166, -0.006127266, 0.0038580364, 0.010624279, -0.019894619, -0.001439424, 0.021663029, 0.033572167, -0.013850247, -0.00296865, 0.027534705, 0.013456499, 0.013304526, -0.014520308, -0.007073642, 0.013573932, 0.0014575571, 0.0160953, -0.0074259425, -0.0029133873, -0.017932788, -0.012972949, 0.00069682975, 0.011467037, 0.0027199674, -0.014299257, 0.013857154, -0.015639381, 0.008462121, -0.0062965085, -0.01255157, -0.027341284, -0.020046592, -0.022823548, 0.03138929, -0.020488694, -0.03442874, -0.014078205, 0.029537981, -0.02461959, 0.0032052442, 0.22348288, -0.005108358, -0.0034867392, 0.012275256, -0.0064761126, -0.0010853965, 0.026305107, 0.0067247953, 0.0015862159, 0.008192714, -0.009076919, 0.002973831, -0.01796042, -0.0018150385, -0.0059303925, -0.0005362221, -0.032135334, -0.00011084946, -0.019397253, 0.0237492, -0.003719879, -0.003581722, -0.023873542, -0.02178737, 0.008393042, 0.017490685, -0.0029116604, 0.0020101855, 0.026208397, 0.040065553, -0.021193296, 0.00026595237, -0.00424833, -0.029206404, 0.0054123034, -0.03241165, 0.015363066, -0.016053852, 0.015266357, 0.0075848233, -0.0023814826, 0.0015482227, -0.013145645, -0.0120265735, 0.0266505, 0.009401589, -0.0013159461, -0.006883676, -0.013656827, 0.016758453, -0.03766162, 0.011625918, 0.031278763, 0.031776126, 0.0022018785, 0.006137628, 0.02198079, 0.031527445, -0.00717726, 0.01483807, -0.005802597, 0.018692652, 0.0025645406, 0.0316656, -0.0055504604, -0.0046489853, 0.004918392, 0.015211094, 0.027990622, -0.02062685, -0.006286147, 0.023348546, -0.01612293, -0.015528855, -0.022436708, -0.022326183, 0.03393138, 0.026111687, 0.014147284, 0.00518089, 0.012855516, 0.008793698, 0.026332738, -0.01972883, -0.0063034166, -0.04061818, 0.024799194, 0.0042725075, -0.024412354, -0.034594532, 0.0056057232, 0.0059856554, -0.007999294, -0.03766162, 0.008420673, -0.0017632296, -0.005336317, 0.011467037, 0.00273551, -0.0037336948, -0.020861719, 0.036390573, 0.037799776, 0.012800253, -0.01709003, -0.012130191, -0.04456947, 0.024674853, -0.0184716, -0.02050251, -0.0019980967, -0.012406505, 0.02008804, 0.0030722679, -0.0032052442, 0.01721437, -0.0007309373, -0.010140729, 0.04379579, -0.0032346025, -0.01953541, -0.027962992, -0.008165083, 0.020751193, 0.0009835056, -0.02294789, -0.014016035, -0.017697921, 0.0005163621, -0.017725553, 0.022063684, 0.015432145, -0.0024937352, -0.046973404, 0.0044762893, -0.024149856, -0.0040341867, -0.0076746256, -0.016675558, -0.006641901, -0.023127494, 0.020032777, -0.0030463634, -0.00027760936, 0.002357305, -0.02461959, 0.009394681, -0.0155012235, 0.01934199, -0.020792639, -0.011031842, 0.012116375, 0.006037464, -0.0002970377, 0.0037440567, -0.026926814, -0.0155703025, -0.028405095, 0.0046040844, -0.0071910755, -0.05451678, 0.012910779, 0.032826122, -0.0011950587, -0.030366926, -0.0070563727, -0.17606737, 0.008966394, -0.01274499, -0.005812959, 0.03926424, 0.00030286622, 0.006555553, 0.0040825414, -0.0031396195, 0.0056989794, 0.01332525, -0.019493964, -0.02812878, -0.031334024, 0.0048285895, 0.020447247, -0.01963212, 0.022574866, 0.029537981, 0.015224909, 0.037330043, -0.01551504, 0.015957141, 0.00015477909, 0.009304879, -0.016868979, -0.005519375, -0.0062965085, 0.007888769, -0.04001029, -0.015763722, -0.0044762893, 0.034124795, -0.0057922355, 0.015556486, 0.0042414223, 0.004286323, -0.0055608223, -0.010520661, 0.013601564, 0.03301954, 0.03923661, 0.0053017777, 0.02793536, -0.025310377, 0.015984774, 0.0046179, -0.010796975, 0.0032881384, 0.012123283, 0.025089325, -0.036998466, 0.02108277, 0.0005362221, -0.007985479, 0.011998942, 0.011342696, 0.013456499, 0.0033347663, -0.00898021, 0.0046351696, 0.0042621456, 0.012116375, -0.02372157, 0.005104904, -0.017532133, -0.02285118, 0.0050185556, -0.046862878, 0.023431439, 0.018416338, 0.009277248, -0.003965108, 0.017932788, -0.006362133, -0.007308509, -0.0130351195, 0.0151005685, 0.0075641, 0.020847902, -0.00017895659, 0.025766294, 0.019190017, -0.010720989, -0.04117081, 6.6811896e-05, 0.007881861, 0.004531552, -0.020295274, -0.013739721, -0.0047975043, -0.014340704, 0.0027752302, 0.01313183, -0.020585405, 0.008393042, 0.0013867517, 0.015142015, 0.01396768, 0.008911131, -0.0027596876, 0.012434136, -0.0149624115, 0.008531199, 0.041723438, -0.004341586, -0.02655379, 0.028653776, 0.010693357, -0.024964983, -0.008531199, 0.026816288, 0.0204058, 0.023293283, -0.010817699, 0.0066695325, -0.032798488, -0.015722275, 0.015915696, 0.017946605, 0.04724972, 0.0064761126, -0.039402395, -0.0026767934, 0.0027216943, 0.0056437165, -0.12644136, -0.0018064037, -0.005660986, -0.0025662677, 0.019908434, 0.03498137, -0.0029289299, 0.029399825, -0.04119844, 0.035423473, -0.0012952226, -0.023403808, -0.0014566936, 0.011287433, 0.021428162, -0.014686096, 0.0047491495, -0.012565386, -0.01798805, 0.025476165, -0.009974941, -0.027534705, 0.0028650323, 0.011114736, -0.010872962, 0.019866986, -0.033710327, 0.030394556, 0.0004490105, 0.00072359765, 0.0021362538, -0.012966041, 0.0124894, -0.032273494, 0.0037993195, -0.007460482, -0.011902232, -0.0060201944, 0.03534058, -0.025075508, 0.026830103, 0.016855163, 0.038020827, -0.053825997, -0.020336721, 0.017269634, 0.012869331, 0.01895515, 0.008855868, -0.010810791, -0.05681019, -0.023763016, -0.0321906, -0.014617018, 0.01406439, -0.017366344, 0.008531199, -0.017366344, -0.032853752, -0.019176202, 0.0016501135, -0.011777891, -0.016758453, 0.012095652, 0.026001161, -0.011204539, -0.010451582, -0.0141611, -0.00622743, -0.02636037, -0.01245486, 0.029455088, -0.029620877, 0.030007716, -0.027396547, -0.012758805, -0.0088835, 0.00037108126, 0.020958427, 0.008655541, -0.015418329, -0.027355101, -0.0100992825, -0.01876173, 0.014547939, -0.0074466662, 0.006683348, -0.0062723313, 0.006217068, -0.024370907, -0.0041447124, -0.0013789802, 0.012862423, -0.007032195, 0.0064346655, 0.0011769256, 0.0030912645, 0.008538107, -0.0022381446, 0.019355806, -0.023735385, 0.017504502, -0.05603651, 0.021815002, 0.0003035138, -0.005287962, 0.010914409, -0.027493257, 0.0016414787, -0.0039029373, -0.006748973, 0.014603202, -0.03398664, 0.027106417, -0.02200842, -0.0069009457, -0.0023003153, -0.0071496284, 0.014796622, -0.014865701, 0.021317637, 0.01657885, 0.014202547, -0.009270339, 0.017767, 0.0036058996, -0.01921765, 0.019839356, -0.017338712, 0.023638675, 0.015667012, -0.028045885, -0.0022744108, -0.021953158, 0.004061818, 0.017366344, -0.012185453, -0.014589387, 0.0029634691, 0.026940629, 0.015957141, -0.003830405, -0.027562337, -0.022312367, -0.008068373, -0.03266033, -0.026001161, 0.0027165134, 0.0075779157, -0.01738016, 0.0061652595, 0.03498137, 0.00859337, 0.013511762, -0.01744924, -0.026249845, -0.015114384, -0.021607766, 0.004500467, -0.014810438, 0.0057956893, -0.006970024, 0.020958427, -0.004541914, 0.005146351, -0.013421959, 0.013076567, -0.02951035, -0.017918972, -0.005146351, 0.020391984, -0.026830103, -0.0014998678, -0.01573609, 0.011287433, 0.0194387, -0.016053852, -0.004800958, -0.007826598, -0.01235815, -0.019784093, 0.006275785, 0.0019756462, -0.014727544, 0.0030411826, 0.0024246566, 0.019397253, 0.012033481, 0.0040307324, -0.0067178877, -0.0002568858, 0.01660648, -0.0019998236, 0.0072117993, 0.010147637, -0.0033261315, 0.0036853398, 0.015846616, 0.017656473, -0.00035359577, -0.013235448, 0.009394681, 0.015874248, 0.005619539, -0.0003227263, -0.030781396, 0.012213085, 0.00436231, -0.010499937, -0.009187445, -0.0026163496, 0.03498137, 0.005377764, 0.009125275, 0.008130544, 0.013546301, -0.0050496412, -0.008289425, 0.0007153946, -0.03793793, -0.006417396, 0.051339168, 0.009615732, -0.00011646209, 0.02626366, -0.03318533, 0.026111687, 0.0049840165, 0.00839995, -0.011460129, 0.003017005, 0.00094723946, -0.0130696595, 0.0012123283, -0.012869331, -0.0112459855, -0.008669356, -0.029123511, -0.0029116604, -0.00642085, 0.007460482, 0.074715346, 0.02870904, -0.008020018, 0.01570846, -0.007280878, 0.013718997, 0.013953865, -0.003585176, -0.0065417374, -0.022478156, -0.00061868463, -0.0092358, -0.0007115089, -0.018278182, -0.0053535867, 0.0038545823, 0.023307098, 0.032715596, -0.011563747, -0.0032777765, 0.0247163, 0.0204058, 0.026305107, -0.0020533595, -0.011867693, -0.024246566, 0.008876592, -0.015059121, -0.022229472, -0.016482139, 0.012219993, -0.0041688895, -0.024702484, -0.009705534, -0.024066962, 0.0030411826, 0.0059200306, -0.01718674, 0.01960449, 0.016979504, 0.014920964, 0.007163444, 0.00016103934, -0.029537981, 0.007032195, 0.022671577, -0.018140024, 0.0026595236, -0.032135334]" 6518700,How web browsers resize images,http://entropymine.com/resamplescope/notes/browsers/,142,1381277317,31,nsfmc,"[0.0044267317, 0.0106572015, 0.028804736, -0.035110936, -0.005996397, 0.018133765, -0.024081971, -0.013817186, -0.026987229, -0.04736534, 0.02532118, 0.008729543, 0.015696654, -0.0056143072, -0.007380181, -0.0020670702, 0.020309268, -0.022705073, 0.0011023801, -0.03987501, 0.0051289503, 0.02068103, 0.008887886, 0.008254512, -0.021837626, 0.025830634, 0.026450237, -0.022429692, -2.4283989e-05, -0.013335271, 0.027510451, 0.008075515, -0.03340358, -0.009294071, -0.007469679, -0.020061424, 0.013528037, -0.024894342, 0.011593494, -0.032770205, 0.009810409, 0.005359581, -0.018780908, -0.0068122097, 0.006698616, 0.012763858, 0.024522578, -0.0030515534, -0.00014080948, 0.021259326, 0.015669115, 0.004753745, -0.022649996, -0.014939358, 0.0008166735, 0.004581633, 0.0003943526, 0.01835407, 0.018822215, -0.0010808661, -0.0029827084, 0.015077049, -0.013713919, -0.010168402, -0.001654861, -0.021328172, 0.015311122, 0.0054112147, 0.02450881, -0.034697864, 0.048549473, 0.028694585, -0.024949418, 0.0011454083, 0.028529357, -0.018188842, -0.029080115, -0.017459085, 0.019786045, -0.010175287, 0.042133123, -0.0043303487, -0.0075247553, 0.014416137, 0.011517764, 0.013383462, 0.0069946493, 0.036239993, -0.04177513, 0.011187308, 0.016894557, 0.021989085, 0.014677748, 0.01171053, -0.017087322, 9.455426e-05, 0.0093835695, 0.015834343, -0.015614039, -0.0064851963, -0.0031513786, 0.0004203846, 0.015352429, -0.0024147374, -0.013844724, -0.014732824, -0.017404009, 0.01102208, 0.008908539, -0.051936645, -0.0109325815, 0.024605192, 0.010712277, -0.014746593, -0.0026625793, -0.011324998, 0.031448383, -0.010953235, 0.016068416, -0.011538417, 0.0060032816, 0.008881002, 0.03411957, -0.011380074, 0.013238888, 0.011118463, -0.025390025, -0.002283932, -0.0062752194, -0.02380659, 0.039517015, 0.01506328, 0.007201184, 0.0013519431, -0.015104587, 0.019496895, 0.006894824, 0.0010937745, -0.014663979, -0.027675679, 0.019937504, 0.019648355, 0.02477042, -0.026037168, -0.007242491, 0.05240479, 0.0025472639, 0.019882428, -0.019813582, -0.02628501, -0.008653813, -0.020102732, 0.0074903327, 0.016495256, 0.027895983, 0.006578137, 0.012109831, -0.0014750035, -0.03106285, -0.012880894, 0.0117174145, 0.021025253, -0.024329813, 0.0019999465, 0.0061134333, 0.0060824533, 0.03822273, -0.00350593, -0.022553613, 2.2710772e-05, -0.025844403, 0.0295758, -0.015090818, 0.025018264, 0.0353037, -0.012818933, -0.0033320966, -0.008020439, -0.00022008877, -0.026987229, -0.0002753799, -0.003116956, -0.00043565957, 0.0061272024, -0.03177884, 0.0033974994, 0.038305342, 0.004206428, -0.004196101, -0.022677533, -0.005896572, 0.025844403, -0.019772276, -0.019703431, -0.6146479, -0.013101198, -0.00013919592, -0.00869512, 0.0034577388, 0.029878717, 0.019001212, 0.008798388, -0.00978287, -0.0026694639, -0.010691624, 0.00923211, 0.021520939, -0.0057416707, 0.006853517, -0.03106285, 0.0051874686, -0.0052804095, 0.01723878, -0.0055420203, -0.017583005, 0.019965041, -0.014429906, 0.0048570125, 0.0063130837, -0.01102208, 0.013293964, -0.02437112, 0.0059516476, 0.026808232, -0.011923949, 0.024825497, -0.0043269065, 0.032907896, 0.04384048, -0.027221302, -0.01765185, 0.007380181, 0.020144038, 0.031833913, -0.045933366, -0.0072631445, 0.03987501, 0.0016789568, -0.017472854, 0.026050936, 0.01767939, -0.015008204, 0.008509238, 0.012887779, -0.0015972033, 0.005552347, 0.0035351892, 0.016908325, 0.027400298, -0.0015197528, 0.017156167, 0.010581472, -0.0022047602, 0.0024835824, -0.0042305235, 0.021878932, -0.015118356, -0.012137368, -0.013514268, 0.023489904, -0.01628872, -0.00434756, 0.011118463, 0.020281728, 0.034560177, -0.003486998, -0.0036487835, -0.029217806, 0.00047460003, -0.006908593, 0.008295819, -0.024054432, 0.010085789, 0.001446605, 0.021149175, -0.0047709565, -0.015600271, -0.0071254545, 0.02807498, 0.014842976, -0.023269601, 0.0037589355, 0.0040102196, -0.014691517, 0.015104587, 0.012818933, -0.023792822, -0.032026682, -0.0029741027, 0.032081757, -0.01985489, 0.021259326, 0.02135571, -0.008805272, -0.013920453, -0.021810086, -0.012516016, -0.0036728792, 0.0345051, 0.018643219, -0.021025253, 0.0175417, 0.028722122, -0.0076693296, 0.022828992, -0.00037197798, -0.010856852, -0.0201165, 0.039627165, -0.03257744, 0.013947992, 0.005080759, -0.009259649, -0.010767354, 0.013528037, -0.025706712, 0.01791346, -0.014250909, 0.016233644, -0.0028174804, 0.0025421006, -0.0029448436, -0.021190483, -0.030567167, -0.0046849004, 0.0033596347, 0.009686488, -0.019510666, 0.02176878, 0.01710109, 0.0018484875, 0.0075109866, -0.01293597, -0.03957209, -0.029658414, 0.0053286008, -0.0066538667, -0.0026350413, -0.011318114, -0.018257687, -0.035386316, 0.012880894, 0.028130056, 0.035496466, -0.016715558, -0.007924057, 0.000976738, 0.03230206, 0.0070979167, 0.008020439, 0.0068604015, -0.027579296, -0.021176713, -0.002535216, 0.0030412266, 0.023379752, -0.0394344, -0.0214934, 0.010140864, -0.0030859758, -0.003099745, 0.015848113, -0.012743204, -0.010498858, -0.016398873, -0.009011807, -0.0036040342, 0.0010817266, 0.0057141325, 0.0042683883, -0.019662123, -0.00047460003, 0.005762324, -0.022236926, 0.042628806, 0.0106572015, -0.015228508, -0.0121236, 0.030071484, 0.03026425, 0.01437483, -0.0071942997, -0.029878717, 0.005793304, -0.015462581, 0.015545195, -0.011194193, 0.010994542, -0.0214934, 0.00042597827, -0.005111739, -0.0019190536, -5.1176554e-05, 0.04739288, 0.03535878, -0.019138902, 0.02190647, -0.0052700825, 0.02134194, -0.047943637, 0.0034388064, -0.02726261, 0.00040338852, 0.013156274, 0.00093887333, -0.021410786, -0.012392095, -0.021314403, 0.019083826, 0.018973675, 0.027455375, -0.0060032816, 0.01094635, -0.014195833, -0.0052838516, -0.01739024, 0.025844403, 0.008240744, -0.009197689, -0.00861939, 0.022815224, 0.013245773, -0.009080652, -0.033871725, -0.01177249, 0.013672612, 0.009094421, 0.00437854, 0.013342155, 0.013603766, 0.021851394, 0.0061444137, 0.025183491, -0.004616055, 0.019317899, 0.004612613, 0.030291788, -0.007910287, 0.003421595, 0.0054043303, 0.048274092, 0.008047977, -0.041995432, 0.005153046, 0.00051461614, 0.017059784, 0.009225226, 0.0059860703, 0.01699094, 0.0077657127, 0.020281728, 0.009789755, 0.03698352, 0.0090875365, 0.006464543, 0.00633718, 0.01957951, -0.0049912604, 0.014154526, -0.020970179, -0.012405864, 0.011503994, -0.013576228, 0.0034319218, -0.03860826, -0.04172005, -0.00022998523, -0.009844831, 0.0060962224, -0.0037004172, 0.0007826813, -0.019097595, 0.03219191, 0.028157594, -0.042243276, -0.024329813, 0.026505314, -0.0049637225, -0.010264785, -0.00834401, -0.012784511, 0.0075936005, 0.026450237, 0.0058208425, 0.019551972, 0.0435651, 0.016302489, -0.00350593, -0.027152456, 0.0064438893, 0.01465021, 0.005029125, -0.0093216095, 0.013947992, 0.026188627, 0.011269921, -0.004158236, 0.01644018, 0.04202297, -0.012281943, 0.010526396, -0.02505957, -0.013128736, 0.0015550358, -0.019276593, -0.03888364, 0.005834611, 0.013424769, 0.013445423, 0.0029741027, -0.03436741, -0.0101477485, 0.039792392, 0.021383248, -0.019634586, -0.030815009, -0.02587194, -0.00022094933, 0.050890204, 0.028639508, 0.00420987, -0.002576523, 0.0062373546, 0.0050428943, -0.013610651, -0.012743204, 0.009576336, 0.023586288, -0.01765185, -0.0218927, 0.02340729, 0.0051392773, 0.014416137, -0.00012768591, 0.019662123, -0.016316257, -0.010491974, -0.017046016, -0.017225012, 0.0070290715, -0.0005116042, 0.013321502, 0.0052563134, 0.006344064, 0.020584647, 0.0038794142, -0.0045472104, -0.009603874, -0.023985589, 0.020873796, 0.010505742, 0.031117927, -0.018932367, 0.036763214, -0.0066710776, -0.0011109858, -0.010781122, 0.009039345, -0.016784403, 0.017087322, 0.010230362, 0.012516016, 0.012818933, -0.0021789433, -0.025830634, 0.04216066, -0.013280195, -0.020763643, 0.018822215, -0.028529357, -0.022223158, 0.006206374, -0.01122173, 0.0028192017, 0.0008975663, 0.0025575906, -0.011049618, -0.033431116, -0.008825925, -0.010526396, 0.023076834, -0.00786898, -0.022663765, -0.013039238, 0.006509292, -0.029355496, -0.02998887, 0.015297352, 0.008853463, -0.03819519, -0.019937504, 0.014691517, 0.0038381072, -0.0047778413, 0.021011485, 0.010099557, -0.004526557, -0.0038518761, -0.008165014, -0.006244239, 0.0078001353, -0.029630875, 0.014051259, 0.004237408, 0.009831062, -0.015930727, -0.0061788363, -0.004801937, 0.018546835, -0.00088982127, -0.008584968, -0.008151244, 0.014388599, -0.0030154097, 0.00045351626, 0.033431116, 0.0350834, -0.03778212, 0.027537988, 0.006801883, -0.012701897, -0.0012882615, 0.0039276057, -0.0074008345, 0.003419874, -0.026863309, -0.020295497, -0.03177884, 0.009590104, -0.013996183, 0.0035283049, -0.007751944, 0.00958322, -0.007917171, -0.011421381, 0.031200541, -0.0010929139, 0.0037004172, 0.0080273235, -0.011249268, 0.009899907, -0.012997931, -0.00489832, 0.006010166, -0.025569022, -0.01699094, 0.0017495229, -0.005889687, 0.009906791, 0.016398873, -0.0064955233, -0.0033802881, -0.008715773, -0.020185346, 0.011428265, 0.009968752, -0.011146001, -0.005221891, -0.0073319897, 0.011380074, -0.008949846, -0.02764814, 0.0007207208, -0.022828992, 0.004068738, 0.010368053, -0.008041093, -0.0011256153, -0.0073044514, -0.008054862, -0.02040565, -0.0109119285, -0.017156167, -0.025362488, 0.00038295015, -0.025692943, 0.025224797, 0.028391667, 0.005084201, 0.024412427, 0.001994783, -0.007607369, -0.0029672182, -0.008853463, 0.007841443, 0.009700256, -0.010195941, 0.00218927, 0.029493187, 0.03213683, -4.2355794e-05, -0.015558964, 0.015297352, 0.01902875, -0.003655668, -0.00023579402, -0.01791346, -0.020088963, 0.01945559, -0.008013555, -0.02108033, 0.012488478, 0.004650478, -0.00014242303, 0.023242062, -0.002700444, 0.018505529, 0.026133552, 0.015751729, -0.010195941, 0.034174643, 0.01778954, -0.008275165, -0.007896518, -0.015297352, -0.03860826, 0.019538203, -0.0063234107, -0.01547635, 0.021823857, 0.0022202504, -0.00045609794, 0.021052793, 0.0032202236, 0.0197172, -0.01033363, 0.0015937611, -0.006340622, -0.0019087269, -0.031007776, -0.032109294, -0.015696654, -0.00639914, 0.013170043, -0.00786898, 0.020226652, -0.015517657, -0.028694585, 0.00033626467, 0.021961546, 0.03822273, 0.003710744, 0.049375612, 0.013658842, -0.0010774238, -0.041444674, 0.0015713865, -0.01314939, -0.006247681, 0.03147592, 0.03329343, -0.017927231, -0.008481701, -0.01177249, -0.031668685, 0.006385371, -0.03987501, 0.013142505, 0.01013398, 0.02738653, -0.02013027, -0.016963402, -0.035413854, 0.031971604, -0.015503888, -0.009128843, 0.009652065, -0.02299422, -0.018243918, 0.030704858, -0.009569451, 0.012288827, -0.019510666, -0.0022064813, 0.0012202772, -0.0076762144, -0.028556895, 0.0018932368, 0.0060067237, 0.01670179, -0.012378326, 0.0025489852, 0.013768994, 0.01615103, -0.006509292, -0.01723878, -0.023393521, 0.03420218, -0.0019414282, -0.004529999, -0.032081757, 0.0037589355, 0.007380181, 0.011366305, -0.024577655, -0.030319326, -0.01644018, 0.0054662907, 0.040976528, 0.00711857, -0.043041877, -0.0059206677, -0.008584968, 0.023971818, -0.015944496, 0.01710109, 0.018422915, -0.054717984, 0.006175394, 0.0017254271, -0.0147879, 0.056783333, 0.014622672, -0.014829207, 0.0015309401, 0.013521153, -0.028391667, 0.02971349, 0.030897623, 0.010354284, -0.031145465, 0.01820261, -0.016536562, -0.016784403, 0.0120134475, -0.020488264, -0.024164585, -0.0044232896, -0.013913569, 0.00523566, 0.03406449, -0.016068416, -0.025183491, 0.018381607, -0.0015877371, -0.031806376, 0.00629243, -0.0060583577, 0.008254512, 0.0059447633, 0.03411957, -0.0023217967, 0.020460725, -0.0006385371, -0.006412909, 0.022360846, -0.014856745, -0.022471, 0.0031961277, 0.026491545, -0.007159877, 0.012701897, -0.039461937, 0.0017460806, -0.0148980515, 0.010781122, 0.018285224, 0.0003947829, -0.019262822, 0.018422915, -0.020075195, 0.013472961, -0.041444674, -0.029190268, -0.01047132, -0.027895983, -0.0132870795, -0.022305772, -0.0033716825, 0.007421488, 0.01657787, 0.0048294747, -0.022374615, 0.00092596485, -0.041664977, -0.026670542, -0.02423343, 0.015820574, 0.011779374, -0.018822215, -0.010072019, 0.01999258, -0.019276593, 0.012495362, -0.013906685, 0.008681351, -0.014126988, 0.017417777, 0.0080273235, -0.0035351892, -0.024976956, -0.010381822, -0.010374937, -0.011324998, 0.0059619746, 0.032549903, -0.013431654, 0.00855743, -0.00575544, 0.026477776, 0.027964827, -0.0025524274, 0.019290362, -0.027675679, 0.004237408, 0.023159448, 0.0009887859, -0.028639508, -0.004402636, -0.0003115235, -0.014498751, -0.012020332, -0.013314618, -0.0065987906, 0.009259649, -0.014953128, 0.02108033, -0.026822, -0.013156274, 0.00972091, 0.0037933579, -0.0010438618, 0.015558964, 0.03299051, -0.02438489, 0.0056452877, 0.02110787, -0.018436683, 0.016040878, -0.0036109188, 0.01942805, 0.000976738, 0.013810301, -0.0035799386, -0.024715345, -0.049650993, 0.011965256, 0.03899379, -0.009197689, 0.0034680655, 0.000543445, -0.0071942997, -0.0127569735, -0.0026935595, 0.01409945, -0.020901334, 0.00999629, 0.020515801, -0.012054754, -0.020240422, 0.016192337, 0.008034208, 0.0030928603, 0.019469358, 0.20664507, 0.007710637, 0.020639723, 0.033320967, -0.01697717, 0.03557908, 0.026987229, -0.005841496, 0.013094313, 0.020336805, 0.0067123845, 0.0020206, -0.035964612, 0.003240877, 0.013114967, -0.015077049, -0.014443675, 0.012605514, 0.00889477, 0.020749874, -0.002631599, -0.00786898, -0.027689448, -0.0027090497, 0.021644859, -0.0051048547, -0.024219662, 0.0064163515, 0.015324891, 0.0029138634, -0.016935863, -0.016274951, 0.00023428805, 0.03615738, -0.0022322983, -0.0003984403, 0.012922201, -0.021149175, 0.016495256, -0.001018045, 0.01861568, -0.015724191, 0.011428265, 0.00046642468, 0.0014629556, 0.012619283, -0.0047743986, -0.0043303487, 0.00081495236, 0.016316257, -0.008729543, -0.026312549, 0.024260968, 0.019744737, -0.027358992, -0.01294974, 0.0021341941, 0.0014509078, 0.015008204, -0.004251177, -0.027441606, 0.0281989, -0.020295497, 0.019290362, -0.015944496, 0.023613825, 0.0132664265, -0.00889477, -0.011084041, -0.009844831, -0.022429692, 0.0028054325, -0.0066228863, 0.0055902116, -0.002562754, -0.03106285, 0.012667475, 0.019496895, 0.043454945, 0.023889204, -0.013810301, -0.0071805306, -0.026601696, 0.008226974, -0.0025713597, -0.0062235855, 0.010216594, -0.0024973513, 0.01573796, -0.018601911, -0.02738653, 0.0060583577, -0.019909967, -0.001772758, 0.0161648, -0.0026143878, -0.0036797638, 0.037313975, -0.032907896, -0.0068879393, 0.0039000676, 0.036790755, 0.022842761, 0.016453948, 0.002077397, -0.042904187, -0.015531425, 0.015558964, -0.017858386, -0.0048122634, 0.018973675, -0.034587715, 0.0020446957, -0.016674252, 0.005841496, 0.023930512, -0.0025403795, -0.023365984, 0.0018157861, -0.0033114431, -0.002671185, -0.009094421, -0.0037968003, 0.003937932, -0.019483127, -0.021424554, -0.042188197, -0.004719323, -0.02325583, -0.019896196, 0.0048260326, -0.012695013, 0.019538203, 0.0003726234, -0.011469572, -0.020970179, -0.039351787, -0.020832488, 0.00903246, 0.000782251, 0.018684525, 0.01699094, 0.013700149, 0.013713919, -0.017638082, -0.008192551, 0.0067330385, 0.028501818, -0.005748555, -0.011834451, -0.015090818, -0.002091166, 0.017321395, 0.0011781096, 0.014870514, -0.0036487835, -0.0015576174, -0.0218927, 0.009142612, -0.005514482, -0.030484553, 0.009541913, 0.038360417, -0.0127569735, -0.03219191, -0.0147879, -0.17547207, -0.003433643, 0.0295758, 0.0030980238, -0.0039138366, -0.0119721405, 0.0077312905, 0.005514482, -0.0055041555, -0.01668802, 0.02342106, -0.0064955233, -0.0034147105, -0.006867286, 0.005538578, -0.037341513, -0.014994435, 0.012261289, 0.02943811, -0.0030515534, 0.03337604, -0.03109039, 0.03213683, 0.027992366, -0.013631305, -0.0051805843, -0.010189055, 0.008034208, 0.015393736, -0.029410573, 0.0047847256, -0.021176713, 0.0125229005, -0.01403749, -0.018560605, -0.020488264, -0.010953235, 0.0056280764, -0.013658842, 0.031117927, 0.008185667, 0.016908325, 0.016453948, 0.029465647, 0.0035833807, 0.009142612, 0.052735247, -0.031145465, 0.01791346, -0.0048948773, 0.003213339, -0.0130117, 0.017569236, -0.010815545, -0.005937879, -0.0036728792, -0.012350788, 0.023489904, 0.0042442926, -0.013321502, -0.0045472104, -0.021039024, 0.03447756, -0.0053182743, 0.0029448436, -0.026849538, -0.029906256, 0.022457229, -0.023434829, 0.0026057821, 0.00489832, 0.0033699614, -0.01149711, 0.00017383356, 0.02532118, 0.018712064, -0.01238521, -0.0067192693, 0.031035313, 0.01668802, -0.004705554, 0.029383034, -0.006426678, 0.010574588, 0.0066848467, -0.0157655, -0.012337019, 0.004581633, -0.0034749499, 0.0008123707, 0.008846579, -0.03808504, -0.02135571, -0.01506328, 0.009700256, -0.00056711043, 0.015972033, -0.0018157861, -0.00045050427, -0.0015929005, -0.018835984, -0.003655668, -0.031696226, 0.020804951, 0.028804736, 0.0034405275, -0.015558964, -0.0040102196, 0.011084041, -0.013280195, -0.019689662, 0.013479846, 0.0055420203, 0.01060901, -0.024990724, 0.0054077725, 0.022705073, -0.0019810142, 0.0034078262, -0.019703431, 0.0435651, -0.011386958, -0.01712863, -0.019772276, -0.0038828563, -0.01752793, -0.10040351, -0.016274951, 0.0043165796, 0.023751516, -0.0008661558, 0.010299208, -0.017638082, 0.006829421, -0.011903295, 0.031723764, -0.012846472, -0.0018880734, -0.0069533424, -0.0010559098, 0.023572518, -0.011910181, 0.013934222, -0.016949631, -0.0045231148, 0.03188899, -0.0120134475, -0.022622459, -0.0051358347, 0.013941106, -0.0037761468, -0.0059550903, -0.018946135, -0.0013682938, -0.00052838516, 0.01942805, 0.032907896, -0.024990724, 0.0068982663, -0.0046745734, -0.010801776, -0.023393521, -0.002421622, -0.04819148, 0.042380966, -0.014677748, -0.013913569, 0.01904252, -0.008846579, -0.023448598, -0.02629878, -0.00623047, -0.002354498, 0.025761789, -0.012089177, -0.013066776, -0.018780908, 0.0063096415, 0.0019586394, -0.027358992, 0.008667582, 0.019180208, -0.0008084981, -0.018271456, -0.029768566, -0.019207748, 0.0003227108, 0.00031604143, -0.039930083, 0.007311336, 0.01997881, 0.002063628, -0.0013786205, -0.018257687, -0.01902875, -0.0090462295, -0.00869512, 0.01396176, -0.016178569, 0.019249054, -0.024453733, 0.016068416, -0.022278232, -0.010223478, 0.040122848, -0.012495362, 0.009183919, -0.016935863, 0.0057244594, -0.027056074, 0.015944496, -0.0053389277, 0.0014707007, 0.006973996, 0.017817078, -0.0690102, -0.0018502086, 0.0120134475, 0.035551544, -0.018959906, 0.0058174003, -0.005400888, 0.014085681, -0.01376211, -0.027014768, 0.008020439, -0.03326589, 0.007751944, -0.0534237, 0.026188627, -0.004292484, -0.017004708, -0.005483502, 0.008268281, -0.005015356, -0.022746379, -0.008075515, 0.0001931962, -0.019689662, 0.019083826, -0.022567382, -0.026808232, -0.030319326, -0.00046900637, -0.00088078534, -0.027703216, -0.0038828563, -0.01149711, -0.0066297706, 0.021121638, -0.0065265032, 0.007827673, -0.031420846, 0.011035849, -0.013638189, 0.015366198, -0.020694798, -0.000757725, -0.0043303487, -0.030842548, -0.010443782, 0.011125348, -0.010085789, 0.007779482, -0.022236926, 0.020736106, 0.029327959, 0.014911821, -0.011324998, -0.026477776, -0.022209387, -0.019744737, -0.0059860703, -0.0012839587, 0.004832917, -0.013101198, 0.011139116, 0.013576228, 0.029493187, 0.016853249, -0.025692943, -0.0049637225, 0.00038122904, -0.022374615, 0.014801669, -0.00025494152, 0.024990724, -0.0018932368, 0.02888735, 0.03502832, -0.005793304, 0.0056280764, 0.0018984001, -0.0020705126, -0.010994542, 0.0068982663, -0.0061960476, -0.026367623, -0.011503994, -0.007793251, 0.0053561386, 0.039764855, 0.031944066, 0.015944496, -0.009294071, -0.0138378395, -0.016178569, 0.0070979167, 0.014416137, -0.018574374, -0.0030859758, 0.028116286, 0.020515801, 0.0033062797, -0.011800028, 0.035248626, -0.0045609795, 0.028501818, -0.02519726, -0.008412856, 0.009803524, 0.0032976742, -0.028667046, 0.013803417, 0.0042167543, 0.01588942, 0.00095350284, 0.028584432, -0.006616002, 0.0023149122, -0.034284797, -0.023200756, -0.010732931, 0.01402372, 0.009879254, -0.022057928, 0.015049511, 0.028226439, 0.027028536, -0.005965417, 0.009424876, -0.0063234107, -0.006870728, 0.034036953, -0.021562245, -0.033183277, -0.023723977, 0.018629448, 0.0053148316, 0.004302811, 0.031117927, -0.0010008338, -0.00903246, 0.019317899, 0.038277805, -0.050201755, 0.013376578, 0.00062734983, 0.019786045, -0.029355496, -0.019965041, -0.015324891, -0.0121236, -0.025238566, 0.01670179, 0.014443675, -0.004251177, 0.09291317, 0.028033672, 0.0119721405, -0.0032752994, -0.014333523, 0.0031789166, 0.003531747, 0.0103611685, 0.023586288, -0.02121802, -0.0033441444, 0.007903403, -0.009920561, -0.036350146, 0.0006363857, -0.0011264759, -0.02628501, -0.004887993, -0.025555253, -0.0012263011, 0.0201165, -0.027978597, 0.023820361, 0.0018519297, 0.00080548617, -0.01402372, 0.027951058, -0.008467931, -0.009204573, -0.017046016, -0.004664247, 0.043592636, -0.028116286, -0.030787472, 0.0009500606, -0.0098517155, -0.001448326, 0.015820574, -0.00231147, -0.011407612, 0.009121959, 0.015724191, -0.0040652957, 0.00376582, 0.0157655, -0.018822215, -0.01096012, -0.0072769136, -0.01668802]" 27561357,John Carpenter’s ‘They Live’ was supposed to be a warning,https://www.theringer.com/movies/2018/10/4/17933020/they-live-john-carpenter-america-donald-trump,108,1624116716,74,skanderbm,"[-0.0040507256, -0.03192453, 0.0013276822, -0.0336892, 0.013007776, 0.004806059, -0.0015716614, -0.020587847, -0.025761545, -0.03542714, 0.0065306253, 0.0058588465, 0.009558643, -0.016898077, 0.004752584, 0.007586755, 0.034838915, -0.006945056, -0.0024765574, -0.026055656, -0.017860625, 0.0074864896, 0.011931593, 0.0010126814, 0.008315351, -0.009110791, 0.027940648, -0.0008159104, 0.026376506, -0.002321146, -0.009485114, -0.029464684, -0.018702855, 0.011938277, -0.03970513, -0.011189628, 0.0011162891, -0.028849723, 0.027232105, -0.0068514748, 0.030614395, 0.014785817, 0.0046188966, -0.02339528, -0.0070854276, 0.0010118459, 0.012967669, -0.025774913, -0.02402361, 0.008128189, 0.022780318, 0.0103072915, -0.035453875, -0.036630325, -0.01422433, -0.0011162891, 0.006801342, -0.0028057625, 0.03045397, -0.02540059, -0.021002276, -0.018716224, -0.027459374, 0.01443823, -0.010481086, 0.023034323, -0.02264663, -0.012473026, -0.02212525, -0.00049004756, 0.021349864, 0.017646724, 0.030106382, 0.007245852, 0.008662938, -0.015360672, -0.011918223, 0.007078743, -0.005972481, 0.0049464307, 0.01843548, -0.003973855, -0.029945958, 0.04069442, 0.007907605, -0.009618802, -0.003963829, 0.027365793, -0.008642885, -0.022258937, 0.0058053713, -0.0043247845, 0.017633356, 0.0051302505, -0.01401043, 0.010100077, -0.029678583, 0.011416896, -0.025962075, -0.01939803, -0.0047492418, -0.004953115, -0.0076870206, -0.007586755, 0.0099864425, 0.016523752, 0.013047881, -0.0009658908, 0.040507257, -0.006808026, -0.001434632, 0.0224461, 0.03532019, -0.07882204, -0.00040106193, -0.028395185, -0.0035159762, -0.019103916, -0.013395469, -0.015948897, 0.031897794, 0.015721628, 0.0059557697, -0.0044852095, 0.024625203, 0.016751021, -0.0025751519, -0.0040874896, 0.019571822, -0.01644354, 0.012292548, -0.0054009673, 0.01027387, 0.008990472, -0.012807244, 0.016390065, -0.034277428, 0.03181758, -0.02866256, -0.020093203, 0.03066787, 0.010681616, -0.0138099, 0.018288424, -0.010400873, 0.014317911, 0.017018395, 0.016831232, 0.0032435884, 0.015587941, 0.031095669, 0.016042478, 0.013970324, 0.0003369338, 0.018595906, 0.009411586, -0.018288424, -0.004374917, -0.012613398, -0.0042312033, 0.018341899, 0.00035364472, 0.013495734, -0.0024815707, 0.016229639, 0.022151988, 0.024451409, 0.01958519, -0.008836731, 0.009699015, -0.0022459468, 0.038100883, -0.048421543, 0.020962171, -0.0154809905, 0.013154832, -0.008890206, 0.02540059, -0.00975249, -0.009445009, 0.03192453, 0.003439106, 0.03013312, 0.03422395, -0.023194749, 0.013121409, 0.014705604, -0.009785911, 0.016095953, -0.00764023, 0.0036697167, 0.022686737, -0.009404902, -0.011771168, -0.6275817, -0.015828578, 0.007787286, -0.017633356, -0.010086708, 0.013629422, 0.012038543, 0.026817676, -0.030106382, 0.015761735, 0.013997061, 0.014839292, 0.01990604, -0.025440695, -0.03256623, -0.018315163, 0.0043849437, -0.015948897, -0.014879398, 0.005003248, -0.018301792, 0.029678583, -0.024692047, -0.023221485, -0.010113445, 0.032699917, 0.035587564, -0.023448754, -0.015761735, 0.022954112, -0.0076268613, 0.030587656, 0.0033371695, 0.0006416991, 0.04933062, -0.0067946576, -0.0062298286, 0.021256283, 0.004665687, 0.018208211, -0.05141614, -0.019317817, 0.016737651, -0.01475908, 0.009224424, 0.0022342491, 0.0007340269, -0.0036830856, 0.0024280958, -0.0064303596, 0.013475681, -0.0046556606, -0.012840667, -0.008355457, 0.019357923, -0.010862094, 0.020400684, 0.003106559, 0.005029985, 0.003439106, -0.016951552, -0.0042579407, 0.0037599558, 0.011122785, -0.03034702, 0.04245909, 0.022165356, -0.0021841165, -0.013575947, -0.006239855, 0.035239976, 0.024932684, -0.03318119, -0.014170855, 0.018034419, 0.008295298, 0.05700427, 0.00027301456, 0.0021958142, 0.01771357, 0.0017329218, -0.0037465869, -0.038582157, 0.0061596427, 0.027111787, -0.0039003273, -0.0051803836, 0.014210962, -0.02286053, -0.011396843, -0.006249882, 0.020173416, -0.01958519, 0.0016502028, -0.020053096, 0.021470182, -0.01800768, -0.0065907845, -0.0015683193, -0.021791032, 0.004662345, -0.036844224, 0.018716224, 0.011263156, 0.013442259, -0.006437044, 0.027098417, -0.01653712, 0.027004838, -0.040132932, 0.008823362, -0.0020287049, -0.016136058, -0.013355362, -0.008763203, -0.019250972, 0.022833792, 0.009231109, 0.030961981, -0.014972979, 0.028849723, -0.00534415, -0.00042445722, 0.0052238316, 0.008315351, 0.007479805, 0.004007277, -0.0032151798, -0.03550735, 0.0007248359, -0.012379445, 0.012981038, 0.024892578, 0.0024899263, -0.007874182, -0.0035961887, 0.013549209, -0.012312601, 0.021884613, -0.02359581, -0.0017262375, 0.0044918936, -0.0024982817, -0.010394189, -0.019478241, -0.03203148, -0.008068029, -0.024732152, -0.0041977814, 0.017125344, 0.007967764, -0.0007478134, 0.0017680147, -0.00011520086, -0.012499764, -0.005043354, -0.022980848, -0.008870153, -0.018395374, 0.010320661, 0.013041197, 0.00826856, -0.006363516, -0.01247971, 0.015775103, -0.0052004363, 0.024424672, 0.008442353, 0.031256095, -0.013021144, 0.018275056, -0.013729687, -0.003967171, 0.04173718, -0.013836637, 0.027459374, -0.014799185, 0.00621646, 0.008749834, -0.013281834, 7.269248e-05, -0.0010059971, 0.006808026, 0.0024949394, 0.013001091, 0.013288518, 0.018796436, 0.00661418, -0.018315163, 0.011510477, 0.029865745, 0.008916943, -0.015521097, 0.007981133, -0.003586162, 0.020788377, 0.03486565, -0.0001546804, 0.009785911, 0.025587752, 0.034304164, 0.009939652, -0.021577133, -0.016804496, -0.0090105245, -0.0259086, 0.002852553, -0.023569074, 0.02959837, 0.008348772, 0.010995781, -0.003308761, -0.009043947, -0.0016894734, -0.00072441815, 0.026429981, -0.028502135, 0.04687077, -0.015307197, 0.009558643, -0.00037432447, -0.011617428, 0.018996967, -0.009271215, -0.014050537, 0.001844885, 0.022740211, 0.0006049351, -0.0064570974, -0.021095857, -0.015628047, 0.006249882, 0.018462218, 0.02634977, 0.0060560354, -0.004201124, 0.0025283613, -0.01243292, 0.020039728, 0.005263938, -0.017125344, 0.038501944, 0.017272402, -0.0018866622, 0.010019864, 0.0021857875, 0.011644165, -0.0068514748, -0.026296295, -0.010367451, 0.0022375914, 0.023114536, 0.008134873, -0.008255191, -0.0005648289, -0.014063905, 0.0051569883, -0.01644354, 0.032726653, 0.010394189, 0.0038602212, 0.0050901445, 0.003251944, -0.011584005, -0.010494454, -0.019130655, -0.021042382, -0.016603963, -9.5878866e-05, -0.022045039, 0.017900731, 0.0024280958, 0.020841852, -0.017753676, 0.039277334, -0.0021473526, -0.0061362474, 0.016938182, 0.011497109, -0.00047375442, -0.03716507, -0.014772448, 0.018742962, 0.026282925, -0.002705497, -0.025574382, -0.032913815, -0.015962265, -0.0009124159, -0.00031312075, -0.021309758, -0.008235139, -0.001809792, 0.0045052622, 0.017018395, -0.031576943, 0.01195833, -0.035881676, 0.010300607, -0.010334029, -0.014157486, 0.015414147, -0.0022141961, -0.02770001, 0.03446459, -0.01280056, 0.0041209115, -0.003673059, -0.013021144, -0.0016126032, -0.00038393325, 0.02411719, -0.018823173, 0.008509197, -0.004495236, 0.00030413864, -0.029411208, -0.010287238, 0.011610743, -0.005076776, 0.0035761355, -0.016296484, -0.0177002, -0.008188348, 0.13464986, 0.029063622, 0.017205557, 0.01918413, 0.00023457945, -0.015454253, -0.02065469, -0.016563859, 0.0055914717, 0.019291079, 0.019090548, -0.01959856, 0.012225704, 0.00650723, 0.027111787, -0.00534415, -0.012680242, -0.003310432, 0.0037632978, 0.0076937047, -0.0056583155, 0.009926283, 0.03088177, 0.015360672, 0.0010260501, -0.026055656, 0.01906381, -0.004882929, -0.0046523185, -0.014638761, 0.00016784025, -0.008335404, 0.0057485546, -0.0019585192, 0.0026620487, 0.030534182, 0.0070319525, 0.018275056, 0.033020765, -0.012152176, 0.011403528, 0.009993127, 0.0139435865, -0.03457154, -0.0035393715, -0.010507823, 0.0038468523, 0.025494171, 0.024999527, -0.013021144, 0.036282737, -0.017446194, -0.02224557, -0.0048896135, -0.016911445, -0.01918413, 0.006704419, -0.013595999, -0.0037399025, 0.0265503, 0.0032252064, -0.040373567, 0.016269745, -0.009043947, 0.025614489, -0.03128283, 0.016911445, -0.008622832, 0.00057986873, 0.00011760306, 0.009612118, -0.0174863, -0.007927658, 0.028849723, 0.0168446, -0.004699109, 0.023689391, 0.0029177256, -0.009839386, 0.0049564573, -0.02169745, -0.022553049, -0.013235044, -0.019037073, -0.004575448, -0.010801935, -0.0154007785, -0.02276695, -0.015948897, -0.002558441, 0.007914289, 0.020828484, -0.003803404, -0.0011012492, -0.008281929, 0.009926283, 0.044116814, 0.0009466733, 0.018194843, -0.016243009, 0.00650723, -0.028983409, -0.012947616, -0.0026002182, -0.015120035, -0.027673274, -0.0071188495, 0.035587564, -0.008916943, -0.014157486, 0.029437946, 0.0012925892, -0.007713758, -0.0132216755, 0.0259086, 0.024625203, -0.020467527, 0.010781881, 0.0063668583, -0.0022024985, -0.007172324, -0.03596189, 0.008890206, 0.0006617522, -0.0351865, 0.0021674056, 0.025467433, -0.031256095, -0.015347304, 0.020614583, -0.02391666, 0.02316801, 0.01990604, -0.0071923775, -0.011597374, -0.017245663, -0.007446383, 0.010521191, -0.0057920027, -0.0003369338, -0.027352424, 0.0003509292, -0.010440979, -0.020815115, -0.010347398, -0.024277616, -0.012981038, -0.018515693, 0.0030246754, 0.010922253, -0.023127904, 0.011256471, 0.0053140707, 0.015079929, 0.014237699, -0.04657666, -0.01612269, -0.012646819, 0.029571634, -0.0063601737, 0.019758984, 0.004184413, 0.047138147, -0.010080024, 0.008322035, 0.011289894, -0.007860814, -0.007332749, -0.028421924, 0.011530531, 0.013094672, -0.00094834436, -0.013890112, 0.015146772, 0.009070684, 0.03826131, -0.017967574, 0.0073394333, -0.009612118, -0.027004838, -0.011577321, 0.012499764, -0.031469993, 0.006396938, -0.018702855, -0.007513227, 0.0046556606, 0.015734997, -0.005484522, -0.016577227, 0.02582839, 0.0064069643, -0.0059156637, -0.0001863267, 0.01644354, -0.003639637, 0.01716545, -0.013108041, 0.020053096, -0.017847257, 0.0066977344, -0.0075065424, -0.010360767, -0.02463857, 0.013997061, 0.03243254, 0.0045787906, 0.010240448, -0.0031917845, 0.0031951268, -0.006380227, -0.02917057, -0.019371292, -0.012332655, -0.019037073, -0.0050366693, 0.007152271, 0.0006274948, -0.026563669, -0.052940175, 0.022272306, -0.0177002, 0.0072324835, 0.012934247, 0.026216082, 0.01027387, -0.019571822, 0.0051269084, 0.025721438, -0.0021272993, -0.019491611, -0.008315351, -0.008970419, -0.0100666545, 0.0139435865, -0.028903197, -0.004862876, -0.026510194, -0.051549826, -0.00421115, 0.029117096, 0.0117644835, -0.019518347, -0.03181758, -0.0041209115, -0.0012633451, -0.0097458055, -0.009899545, -0.0042679673, -0.026590407, -0.017312506, -0.02917057, -0.010701669, -0.0043281266, -0.0033204586, -0.015855316, 0.0013577618, -0.033849627, -0.009110791, 0.011898171, 0.0013895126, 0.02685778, -0.0070987963, 0.0054210206, -0.0019635323, 0.02054774, -0.020521002, -0.013448943, -0.005046696, 0.027044943, 0.0041008582, 0.023047693, -0.013522471, -0.001087045, 0.021510288, -0.012392814, -0.001498969, -0.000822177, 0.0075934394, 0.009612118, 0.018662749, 0.019357923, -0.0058187405, -0.023248224, -0.015748365, -0.020734902, -0.0075199115, 6.021151e-05, 0.012132124, -0.005705106, 0.008736466, -0.02034721, -0.015828578, 0.0044317343, -0.0050333273, 0.022499574, -0.007479805, 0.020467527, -0.027031574, 0.014384755, 0.00071773375, 0.0038969852, -0.016483646, 0.006089457, 0.022793686, -0.016376697, 0.023234855, -0.008709729, -0.018702855, -0.009852755, 0.016791126, 0.0024180692, 0.01632322, -0.021577133, 0.00079669285, 0.007366171, -0.0032435884, -0.039384283, -0.02645672, 0.026697356, -0.009892861, 0.007867498, 0.00975249, -0.0010912227, -0.0039404337, -0.03235233, 0.0048294542, 3.313461e-05, -0.02917057, -0.012860719, 0.012299233, 0.018796436, 0.007981133, -0.02276695, -0.019478241, -0.019157391, -0.005608183, 0.020467527, 0.0032252064, -0.0018532404, 0.004301389, 0.01800768, 0.00010386878, 0.008402248, -0.012399498, -0.0263364, 0.024772258, -0.015120035, 0.0043782596, -0.02465194, -0.00500659, 0.034651753, -0.008596094, 0.00066342327, -0.0016050834, -0.0022526311, -0.038207833, 0.0012658518, 0.0028492108, -0.0010185302, 0.0053909407, -0.013295203, 0.025694702, 0.01644354, -0.010380819, 0.021523658, -0.02128302, -0.009545274, 0.01864938, -0.015935527, 0.00676792, 0.022192094, -0.008489144, 0.0039571445, 0.012940932, 0.01716545, -0.0019401371, 0.03181758, -0.024772258, -0.0115439, -0.024905946, -0.0036997963, 0.035239976, -0.0043582064, -0.024839103, -0.016884707, 0.0065540206, -0.010434295, 0.019986253, -0.01580184, -0.00014601162, 0.027726749, 0.0025183347, 0.001077854, -0.008723097, -0.03697791, -0.00737954, -0.012593345, 0.045667585, 0.026403245, 0.023422018, 0.0263364, 0.025146583, -0.012566607, -0.00036388016, 0.01800768, 0.0022426047, -0.01475908, -0.014571917, 0.011577321, 0.02540059, 0.009224424, 0.00975249, -0.02665725, -0.0040841475, -0.023582442, 0.009598749, 0.0037566135, 0.00848246, 0.0012942603, -0.008228454, 0.009899545, 0.003783351, -0.0008167459, 0.0057886606, -0.023930028, -0.004060752, 0.004879587, -0.00039813752, 0.003271997, 0.006965109, -0.04256604, -0.0103072915, -0.025667964, -0.026643882, 0.009451693, 0.2147553, -0.011557268, 0.015962265, 0.028395185, -0.024397934, 0.022780318, 0.01906381, 0.0009583709, -0.020373946, 0.0025099793, -0.0068280795, 0.010327345, 0.011978383, 0.004461814, 0.014825923, -0.035159763, 0.0026436667, -0.018275056, -0.023435386, -0.02232578, -0.02486584, -0.005334124, -0.0011087691, -0.019892672, 0.030694608, 0.017325876, -0.003840168, 0.0058588465, 0.004184413, 0.0069985306, 0.006142932, -0.031443257, 0.013114725, -0.020574477, 0.0051904097, 0.022352519, -0.007934342, -0.014117381, -0.008836731, -0.0043916283, 0.027272211, -0.00073360914, 0.008863469, -0.017058501, 0.018783068, 0.01443823, -0.016483646, -0.0064270175, -0.02042742, 0.0019518348, -0.03457154, -0.0115439, 0.027673274, 0.00947843, 0.0056215515, -0.005648289, 0.019571822, 0.011978383, -0.019090548, 0.021483552, 0.012854035, 0.013281834, -0.015935527, -0.011296578, -0.006437044, 0.026069026, 0.0004420037, 0.015681522, 0.013616052, -0.023649285, 0.0016493672, -0.013542525, -0.035560824, -0.0007490667, 0.014518443, -0.04184413, 0.006303357, 0.020587847, 0.018823173, 0.033234667, -0.0155612035, -0.012573292, 0.015053191, -0.0038702476, -0.010334029, -0.0057151327, 0.040747892, -0.0018615958, -0.03056092, -0.0115171615, 0.008870153, -0.032191906, -0.0051135398, 0.01780715, 0.03700465, 0.00031520962, 0.007386224, 0.0067979996, -0.02528027, -0.005808714, -0.011971699, -0.012225704, 0.04056073, -0.0041543334, -0.030507445, -0.0007022762, 0.017793782, 0.022379257, 0.03601536, -0.023742866, 0.00087147416, -0.02949142, 0.0082017165, -0.010608088, 0.01301446, 0.030801557, -0.009458377, -0.012566607, 0.012579976, -0.015628047, -0.011938277, 0.0028960013, -0.0010995781, 0.021309758, -0.003088177, -0.018689487, -0.04320774, 0.018021049, 0.0020738244, -0.002451491, 0.010654879, -0.027753485, -0.010922253, 0.0024798997, 0.00085267436, -0.008656253, 0.0120051205, -0.015120035, -0.0014956268, 0.009886176, 0.0028993436, -0.0040841475, 0.009652224, -0.018141368, -0.020815115, -0.01243292, -0.009211056, -0.009846071, -0.008215086, -0.007860814, -0.00826856, -0.008916943, -0.003417382, -0.021055752, 0.018622642, -0.030828293, -0.038608897, -0.018903386, -0.011463687, 0.0076134927, -0.059517592, 0.018475587, 0.022111882, -0.016416801, -0.020694796, -0.018595906, -0.16940856, 0.011630796, 0.007005215, -0.010795251, 0.030908506, -0.026042288, 0.0047626104, 0.006764578, -0.030400494, 0.0007770575, 0.0076268613, 0.016456908, -0.029277522, -0.03278013, 0.010654879, 0.013255097, 0.00013932724, 0.046817295, 0.020881958, 0.00104109, 0.054918747, -0.028903197, 0.0027573009, 0.009097422, 0.009625486, 0.008509197, 0.02169745, 0.0139435865, 0.002815789, -0.008535935, -0.028983409, -0.0025734808, 0.004902982, 0.00548118, 0.020093203, -0.0073260646, 0.008990472, 0.0020186785, 0.0008464078, 0.0224461, 0.019571822, 0.002301093, 0.0062431977, -0.012613398, 0.00990623, 0.017619988, 0.015467622, 0.005521286, 0.009191003, -0.015882052, 0.0034106974, -0.025841758, -0.006253224, 0.003086506, 0.021951457, 0.009999811, 0.0038067463, 0.021750925, -0.021416707, -0.010293923, -0.011884802, -0.015427516, -0.016363326, 0.006540652, 0.009886176, -0.03342183, -0.008997156, -0.0099797575, -0.019130655, 0.018128, -0.036095574, 0.008148242, -0.0031399808, 0.0006358503, 0.013836637, 0.017018395, -0.018742962, 0.005885584, -0.0059524276, 0.015387409, 0.0029494762, 0.023248224, -0.010995781, -0.014678867, 0.0030982036, -0.0021323126, 0.008596094, -0.0082886135, -0.0065974686, -0.017847257, 0.002797407, -0.01927771, -0.049491044, -0.01979909, -0.005905637, 0.032298855, 0.033100978, -0.02423751, 0.0141040115, -0.0033856311, -0.015761735, -0.0039771977, -0.0065506785, 0.037352234, 0.001134671, 0.018061155, 0.0069383713, 0.012680242, 0.002301093, -0.03152347, -0.0069918465, 0.012305917, 0.013027828, 0.01760662, -0.015186879, 0.012640135, 0.031978004, -0.007954395, 0.019665403, -0.020788377, 0.056202147, 0.0026470087, -0.04427724, -0.015374041, -0.015253723, -0.01217223, -0.09678961, 0.01864938, -0.017111976, 0.0031767448, -0.0004679056, 0.013194937, -0.020414053, 0.011624112, -0.020922065, 0.019478241, 0.0102270795, -0.0047960323, -0.005304044, 0.0012959314, 0.00953859, -0.023622548, 0.0015816881, -0.018769698, -0.01950498, 0.020240258, -0.00030560084, 0.014946242, -0.022980848, -0.01950498, 0.0016067544, 0.0007565866, -0.010240448, 0.004882929, 0.0022258938, 0.02169745, 0.0028809616, 0.004719162, 0.0230878, -0.026844412, 0.017432826, 0.0024631887, -0.024424672, 0.0012892471, -0.0038903009, -0.05235195, -0.0047993744, 0.018181475, 0.0025484143, -0.001544924, 0.0071589556, -0.008662938, -0.0068915808, 0.0168446, -0.003069795, -0.010581351, -0.03299403, -0.018983599, -0.03697791, -0.01886328, 0.030507445, -0.012606714, -0.0017646726, -0.007713758, -0.0174863, 0.011717693, -0.011791221, 0.005701764, -0.012867404, 0.025106477, 0.0072993273, -0.023328437, -0.015226985, 0.011396843, 0.008335404, -0.027566323, -0.03786025, 0.015587941, 0.008068029, 0.0060226135, -0.012519817, -0.017780412, -0.00030518306, 0.008088082, 0.01364279, 0.0050968286, -0.01665744, 0.0024949394, 0.020387314, -0.030641131, -0.0049297195, 0.0006813875, 0.014705604, -0.004277994, 0.018034419, -0.031871054, 0.009886176, 0.027258843, 0.0004000175, 0.010300607, 0.0026937993, 0.01938466, 0.004732531, 0.014411492, 0.010474401, 9.833329e-05, -0.010233764, -0.00059031305, -0.06438381, 0.025200058, 0.00015844035, -0.006306699, -0.0075399643, -0.018849911, 0.005708448, -0.003181758, 0.008388879, 0.0053909407, -0.041389592, 0.023034323, 0.014652129, 0.0028057625, -0.02391666, -0.017873993, -0.018943492, -0.0015566216, -0.0044885515, 0.0015382397, -0.003256957, 0.0060192714, -0.019237604, 0.010267186, 0.010100077, -0.013823268, -0.0092779, 0.010073339, -0.007820708, -0.010220395, 0.01759325, -0.016149428, 0.015614678, 0.0019685456, -0.01454518, -0.03213843, -0.013997061, 0.0102270795, -0.0062298286, 0.019839197, -0.006346805, -0.024277616, 0.005377572, -0.026710724, 0.0024481488, -0.020012992, -0.0046188966, -0.0005314071, 0.030828293, 0.014665498, 0.028154548, 0.01990604, -0.026282925, 0.004261283, -0.009057315, -0.019571822, 0.012833982, -0.029117096, -0.007907605, 0.009057315, 0.027673274, -0.0039805397, -0.010260501, 0.008830047, 0.025253532, -0.015093298, -0.0031951268, 0.00874315, -0.005578103, -0.025173321, 0.010260501, -0.026483456, 9.2432245e-05, 0.024705416, 0.0020988907, 0.0064972034, -0.0023879895, 0.0077939704, -0.022512943, 0.0061362474, -0.0103072915, -0.0047258465, -0.043047316, 0.013555894, 0.041068744, 0.027887173, 0.005972481, 0.030614395, 0.014625392, 0.0027155236, -0.011396843, 0.011457003, 0.0056917374, -0.00990623, 0.015534466, 0.036630325, -0.017205557, 0.020173416, 0.033047505, 0.005444416, 0.0047893478, -0.010995781, 0.0034959232, -0.026376506, -0.032913815, 0.03700465, -0.007807339, -0.0112765245, 0.010922253, 0.022713475, 0.030587656, -0.010494454, 0.006965109, 0.0074664364, -0.009371481, -0.003676401, -0.010768513, -0.021590501, -0.015186879, 0.022379257, 0.009866124, 0.011938277, 0.008469091, -0.011316631, 0.026817676, 0.014986347, 0.02949142, -0.0058220825, 0.01739272, -0.02097554, 0.021336496, 0.008789941, -0.035159763, 0.0031032166, -0.006199749, -0.009057315, 0.0037165072, 0.03486565, -0.022098513, 0.054303788, 0.0063668583, 0.0016802824, 0.036737274, -0.030614395, 0.0132216755, 0.005685053, 0.025159951, -0.021269651, -0.0056182095, 0.041336115, 0.0056917374, 0.032486018, -0.024798997, -0.01991941, 0.00047751438, -0.016243009, 0.0075800708, -0.0019401371, -0.00078332407, 0.015521097, -0.00025442368, 0.021095857, -0.006046009, -0.02232578, 0.026122501, 0.023315066, -0.0039905664, 0.013174885, -0.027726749, -0.011256471, -0.012760454, -0.028929934, -0.024999527, 0.049170192, 0.01907718, -0.0031366386, -0.0059691384, 0.0027673275, -0.014117381, 0.00066885434, 0.008629516, -0.0082017165, -0.014732342, 0.037592873, 0.0013861703, 0.0004725011, -0.007352802, -0.023315066]" 25403240,"To listen well, get curious",https://www.benkuhn.net/listen/,185,1607820306,37,axiomdata316,"[-0.025984282, 0.011013807, 0.027138852, -0.027372358, 0.0003636405, 0.0013702395, -0.0044171982, -0.02109358, -0.014127251, -0.030615529, 0.0132256495, 0.022416795, 0.012842955, -0.0040831515, -0.016241798, -0.0058279773, 0.051293984, 0.0012397019, 0.007647396, -0.036686745, -0.0060193245, 0.01228513, -0.0031653345, -0.008192249, -0.023817845, 0.01827851, 0.026853452, -0.03038202, 0.01354348, -0.027709648, -0.0038334276, 0.013044031, 0.008672238, -0.020522783, -0.0038853183, -0.025997255, -0.024271889, -0.00810144, 0.024972413, -0.021534652, 0.01577478, -0.017188804, -0.009041959, -0.020224411, -0.025646992, 0.019225515, -0.0072711883, -0.018148782, -0.016903404, -0.0022572468, 0.05619766, -0.0074722646, -0.03183496, -0.008094953, 0.035233803, 0.0033631679, 0.011344611, 0.015567218, 0.011902436, -0.024025407, -0.016410442, 0.0086073745, -0.01267431, 0.020548727, -0.0009105201, 0.0066809314, -0.005915543, -0.008419271, 0.011746763, 0.0054063653, -0.01354348, 0.032276034, 0.0066679586, 0.017928246, 0.028254502, -0.012226753, -0.005347988, 0.008107926, -0.018901197, -0.00085376465, -0.008309003, -0.024894577, -0.022598412, 0.03884021, -0.00016013155, 0.017616902, 0.011649468, 0.01881039, 0.015242902, -0.012084053, -0.009950047, 0.0058150045, 0.017616902, -0.0025637262, 0.011584605, 0.023727035, 0.006110133, 0.01992604, 0.001962118, -0.010773812, -0.003612892, -0.0014902368, -0.028410174, 0.0020902234, -0.021067636, 0.014581295, 0.005688521, -0.010118692, 0.0013337538, -0.0073295655, -0.039696407, 0.030485803, -0.0031361459, -0.03284683, 0.026036173, -0.009489517, -0.000903223, -0.0152039835, -0.05479661, -0.019964958, 0.026010226, -0.015800728, 0.0048907013, -0.011870004, 0.017383395, 0.0044171982, -0.014827776, 0.010695976, -0.022805976, -0.0046571926, 0.010241932, 0.028410174, 0.008010631, 0.017097995, -0.011792168, 0.025400512, 0.005669062, 0.0090614185, -0.005231234, -0.014373732, 0.00076133426, 0.023804871, -0.008211708, -0.007919822, -0.012538097, 0.011993244, 0.010624627, 0.018109864, 0.010027884, -0.005743655, 0.032768995, 0.009937074, -0.00030506073, -0.0097619435, -0.021845996, 0.044911426, -0.0065901224, 0.02457026, -0.0052960976, 0.014594267, 0.011707845, 0.0027631812, 0.016605033, 0.012369452, 0.017240694, 0.013413753, 0.02389568, 0.006791199, 0.003807482, 0.002399946, -0.01891417, 0.036401346, 0.013037546, 0.015580191, -0.015683973, 0.025711855, -0.0026529136, 0.0075825327, 0.007361997, -0.007394429, -0.015268846, 0.015398573, 0.007400915, 0.012726201, -0.024414588, 0.00088133157, 0.00948303, 0.0042907144, 0.010631113, -0.007829013, 0.02185897, 0.036868364, 0.0071220025, -0.026049145, -0.6338971, -0.018940115, 0.0049101603, 0.012148917, 0.0046312474, -0.0049166465, -0.012778092, 0.011227856, -0.0209898, 0.025387539, -0.012791065, 0.023973517, 0.023882708, -0.0108970525, -0.0062268875, -0.0077576637, -0.0066095814, -0.001806446, -0.005493931, -0.003882075, -0.016034234, 0.0034539765, -0.017136913, -0.008977096, -0.015152092, -0.015632082, 0.0013313214, 0.003369654, -0.010948944, 0.04327687, -0.012823496, 0.004037747, 0.01109813, 0.007173893, 0.050593458, 0.024777822, 0.002150222, 0.02017252, 0.009041959, 0.024492424, -0.032146305, -0.006003109, 0.01726664, 0.0024226482, -0.010702463, -0.0010305174, 0.02050981, 0.004105854, -0.022092476, -0.01141596, 0.0051274523, -0.0041480153, -0.026386434, 0.012168376, 0.026879396, -0.021742215, 0.011240829, -0.01916065, 0.02152168, 0.017798519, 0.012369452, 0.0016434767, -0.012615933, 0.0026658862, -0.00604527, 0.025893474, -0.01480183, -0.0041739605, 0.0012226753, -0.030252295, 0.009716539, 0.0155283, -0.015567218, -0.0064085047, 0.012084053, -0.0035707308, 0.00511448, -0.006713363, 0.013465644, 0.03289872, 0.0090808775, -0.010871108, -0.020016849, -0.004906917, 0.045404386, 0.019939013, 0.0045307092, -0.015476409, 0.016332606, -0.011338124, 0.008237653, 0.028124774, -0.0027226417, -0.029681496, -0.008523052, 0.032872777, 0.0011375421, 0.016267743, 0.016163962, -0.011668927, -0.0014010497, -0.030978765, -0.0031847935, 0.0062495894, -0.008004145, 0.0011115967, -0.025296729, 0.008957637, 0.023208128, 0.0075111827, 0.0061393217, -0.032535486, 0.029370151, -0.024142161, 0.025270784, -0.021366008, 0.03549326, 0.01247972, 0.018693635, -0.036738634, 0.00094700576, -0.018797416, 0.018706607, -0.0044820616, 0.018395264, -0.0018307697, -0.004504764, 0.005153398, -0.016332606, -0.013815906, -0.0051306956, -0.007407401, 0.02752803, -0.0074268603, 0.0009097093, 0.0051696138, 0.026529135, -0.013141327, 0.01813581, -0.021897888, 0.009041959, 0.010060315, 0.014347786, -0.007634423, 0.010417064, -0.011461364, -0.021456815, 0.005970677, -0.024492424, -3.9196755e-05, 0.005250693, -0.026334545, -0.0023561635, 0.012927278, -0.01664395, -0.010935971, -0.0013759151, -0.022909757, -0.025763746, -0.023285965, 0.002399946, 0.012992141, -0.025530238, -0.0073295655, 0.010605168, -0.0074917236, 0.0073036198, -0.00082173833, -0.016799623, -0.033158176, 0.0064798547, 0.002756695, -0.0026480488, 0.007841987, -0.012453775, 0.029370151, -0.014425622, -0.0061198627, 0.010968403, 0.008672238, -0.0076798275, -0.016812596, -0.008665752, 0.0008902503, 0.033832755, -0.0015623973, 0.030174458, 0.013776988, -0.020419002, 0.02781343, 0.0016686112, 0.0117208185, -0.024077298, -0.012161889, -0.018369317, 0.013595371, -0.011694873, 0.012680797, 0.030615529, 0.023791898, -0.006489584, 0.0029220965, 0.032976557, -0.0014942908, 0.013232135, -0.009982479, -0.012700256, -0.029188534, 0.02447945, 0.029110698, -0.015268846, 0.008983582, 0.020055767, -0.035000294, -0.010644086, 0.022131395, -0.00042039598, 0.039748296, -0.015619109, -0.0003731673, 0.0019523887, -0.017188804, 0.020950882, 0.007945768, 0.005153398, 0.04304336, -0.015113175, -0.0003751943, -0.011448392, 0.0020983312, 0.005756628, 0.015242902, 0.024855658, -0.01794122, -0.0033761405, -0.010183555, 0.04454819, -0.026399408, 0.008957637, 0.010540304, 0.0026318328, 0.031134436, -0.0072841607, -0.012401884, 0.025024304, 0.0002046238, 0.026775615, 0.017279612, -0.0071090297, 0.0056204144, -0.013069977, 0.02157357, 0.0035155967, -0.0058506797, 0.0023529201, -0.0146072395, 0.017110968, 0.0031701992, 0.056924127, 0.025763746, 0.017370421, -0.014062387, 0.0048907013, -0.001845364, 0.0067782262, -0.008951151, 0.005649603, -0.027294522, -0.010138151, 0.0082571125, -0.012680797, -0.0065155295, 0.0038658592, 0.0030826335, 0.033313848, 0.01201919, -0.03463706, 0.008529538, 0.019199569, 0.013906715, 0.0020950881, -0.018265536, 0.022961646, 0.004637734, -0.0028361527, -0.011694873, -0.047350287, 0.002604266, -0.022274096, -0.00092997914, -0.029370151, 0.016942322, -0.013634289, 0.014451568, 0.0070895706, 0.009632217, 0.019069843, -0.006946871, 0.004984753, 0.0017950948, 0.0037977525, -0.005007455, -0.03033013, -0.008685211, 0.006067972, 0.011941354, -0.0049231327, -0.036193784, -0.03235387, 0.0010337606, -0.01916065, 0.014088333, 0.0118245995, -0.034066264, 0.013971578, -0.004893944, -0.0062722918, 0.031601455, -0.005328529, -0.007939281, 0.001079165, -0.017811492, 0.0004917457, 0.003045337, 0.09117201, 0.003898291, 0.009599784, 0.007452806, -0.009956533, -0.017681766, -0.042290945, -0.028695572, 0.008996555, -0.008516566, 0.0096387025, -0.00935979, 0.024933495, -0.02283192, 0.030797146, 0.006447423, -0.006538232, -0.027579922, -0.02370109, -0.017733656, -0.0008780884, -0.0090614185, 0.031601455, 0.025763746, -0.0031231733, 0.018940115, 0.037516996, 0.0068820077, 0.0010467332, -0.054433372, 0.0010288958, 0.036531072, 0.009476544, 0.00764091, -0.019433077, 0.011954326, -0.004640977, 0.019017952, -0.0014042928, -0.0074657784, 0.0011626766, 0.008853856, 0.02143087, 0.0003269521, 0.019121733, -0.006518773, -0.011111102, 0.016630977, -0.009171686, 0.0013629424, 0.003612892, -0.023247046, -0.02680156, -0.015800728, -0.0077382047, -0.0066290405, -0.030823093, -0.012979168, 0.0068236305, -0.007264702, -0.009521948, -0.012817009, -0.00022134639, -0.01673476, -0.001649963, -0.041616365, -0.00232211, -0.012330534, 0.0045501683, 0.0036972144, -0.0030712825, -0.013530508, -0.025179977, 0.000115132556, -0.0022475172, -0.0051631276, 0.04275796, 0.011091643, -0.005059346, 0.012557556, -0.00076295587, -0.018706607, 0.01247972, -0.008393325, 0.0005837707, 0.0011188939, -0.038866155, -0.012946737, -0.030926874, -0.0083803525, 0.0017156372, 0.0007029572, 0.012512152, -0.011733791, 0.016890433, 0.019705504, -0.005208532, 0.025724828, 0.053914465, -0.0020431974, -0.017837437, -0.02887719, -0.017370421, -0.04164231, 0.005266909, -0.013478616, 0.0017756359, 0.042680122, -0.0018615798, -0.014231032, 0.011461364, -0.023389746, -0.007900364, -0.008672238, 0.003444247, -0.007627937, -0.0018615798, 0.022611385, 0.03154956, -0.011474337, 0.004647463, -0.041149348, 0.022987593, -0.022559494, -0.021132499, 0.0049101603, 0.0024858902, -0.023441637, -0.0006153916, 0.013296999, 0.00623986, 0.0071998383, -0.00046701654, -0.010903539, -0.030693365, 0.0025475104, 0.005026914, 0.023649199, -0.004760974, -0.009787888, 0.0117208185, 0.0016637464, 0.0024858902, -0.030849038, 0.036219727, -0.037854288, -0.005082048, 0.004624761, -0.019536858, 0.024064325, -0.01857688, -0.0001210108, -0.0005772844, 0.0112667745, 0.004394496, -0.030174458, -0.016267743, 0.021703297, 0.021820052, -0.003950182, 0.019420104, 0.0051663704, -0.008114412, -0.010021397, 0.013621316, -0.020042794, -0.021171417, -0.010728408, -0.035545148, 0.025672937, 0.004125313, 0.0032577647, -0.0072711883, 0.005568524, 0.023000564, 0.004219365, -0.0032626295, -0.013050518, -0.013108895, -0.018615799, -0.0030372292, 0.009820321, -0.004131799, 0.024207024, -0.024012435, 0.013997524, 0.005455013, 0.0077252323, 0.023234073, -0.010417064, 0.019822259, 0.0030096623, 0.016695842, -0.016579088, 0.02597131, -0.039151553, 0.0069014668, -0.028955026, -0.018057974, 0.0040799086, 0.018901197, 0.01306349, 0.0072517293, 0.010514359, -0.018706607, -0.010488413, -0.03154956, -0.022468684, 0.0035415422, -0.014672103, -0.0074463193, -0.00032492515, -0.024129188, 0.0025004845, -0.016086126, 0.0076538823, -0.0011724061, 0.014101305, 0.0010134907, -0.024168106, 0.022235177, -0.021755187, 0.001962118, 0.0002841828, 0.02669778, -0.013906715, -0.010786785, 0.011046238, 0.013725097, 0.005837707, -0.0038107254, 0.025205921, -0.012583502, -0.0025977795, -0.023350827, 0.015398573, 0.006466882, -0.006765254, -0.019744422, -0.0014302381, 0.0181877, -0.007939281, -0.021599516, 0.009476544, -0.01862877, 0.03196469, 0.007212811, 0.003924236, 0.0153077645, -0.007595505, -0.029837169, 0.023830816, 0.012959709, 0.0012997006, 0.002998311, -0.0017691496, 0.005549065, -0.031705234, 0.017720684, 0.023454608, 0.0027064257, -0.001739961, 0.011227856, 0.017344477, 0.0074722646, 0.0058150045, 0.014698049, 0.0061198627, -0.011707845, 0.028046938, 0.010138151, -0.011351096, 0.014399677, -0.036505125, -0.009100337, -0.016047208, -0.0011675414, -0.023882708, -0.0053544743, -0.031082546, 0.02568591, 0.0153077645, -0.03715376, 0.009028987, 0.007018221, -0.0042550396, -0.020328192, -0.0033307362, 0.025997255, 0.010455982, -0.02669778, -0.01760393, -0.011312178, 0.01774663, -0.020250356, -0.0010151124, 0.011526228, 0.02674967, -0.012233239, 0.014062387, -0.01591748, 0.027631812, -0.020639537, 0.0016313147, 0.019484969, -0.013893742, 0.014866694, -0.0070701116, -0.025543211, -0.012414857, 0.029344207, 0.014451568, -0.034455445, -0.0003409383, 0.010786785, 0.021755187, 0.0010321391, -0.010890567, -0.0045339526, 0.019459022, -0.0035707308, -0.009651676, 0.030849038, -0.0064733685, 0.0134526715, -0.027502086, 0.023013538, -0.016812596, -0.02786532, -0.015489383, -0.00094862736, 0.002435621, -0.0119672995, -0.02359731, -0.0039534247, 0.016592061, -0.019913066, 0.012577015, -0.0035350558, 0.02152168, 0.011013807, 0.028046938, 0.008840883, 0.017889328, -0.03570082, -0.0027826403, -0.02664589, -0.019134706, -0.029447988, -0.021171417, -0.013245109, 0.031212272, 0.012064594, -0.012577015, -0.029733388, 0.0002418189, -0.042498507, -0.008218194, -0.006486341, 0.019134706, 0.007978199, 0.014711021, -0.027579922, 0.023817845, -0.018667689, 0.017136913, -0.024674041, -0.023882708, -0.0052247476, 0.0020415757, 0.035130024, 0.018032027, -0.00943114, 0.003092363, 0.026723726, -0.001465913, -0.03391059, 0.032950614, 0.02297462, -0.009100337, 0.038217522, 0.00021040069, 0.029188534, -0.021833023, 0.01698124, -0.028072884, 0.00019256325, 0.0054679853, 0.007627937, -0.022131395, 0.011513256, 0.023688117, 0.01255107, -0.004426928, -0.02641238, -0.03027824, -0.012700256, -0.0056982506, -0.0033372224, 0.0028929082, -0.03100471, 0.016527196, -0.0145034585, -0.0047966493, -0.0027988562, 0.0155283, 0.0064020185, 0.024219997, 0.031186327, -0.016916377, -0.002579942, 0.017526094, 0.004699354, -0.01862877, -0.012246212, -0.019614695, 0.030874982, -0.019718478, -0.014853721, 0.0002185086, -0.016189907, 0.019238487, -0.010417064, -0.0055101467, -0.006298237, -0.026671834, -0.01320619, -0.012979168, 0.0015664514, 0.0022231934, -0.01794122, -0.021729242, -0.0130116, -0.004559898, -0.017149886, -0.008964123, 0.22292256, -0.0065349885, 0.0030031758, 0.010533818, -0.026230764, -0.007342538, 0.020834127, -0.00875656, -0.007459292, -0.0029172318, 0.013296999, -0.013958606, -0.02137898, 0.006531745, -0.0024550802, -0.04410712, -0.039203446, -0.04247256, -0.025465375, -0.026451299, 0.019796312, -0.0038950478, -0.0045209797, -0.01480183, 0.037854288, 0.023882708, -0.01967956, -0.008023604, 0.041953653, -0.0038496433, -0.04000775, 0.0019004979, 0.013478616, -0.0002744533, -0.014594267, 0.0026448055, 0.026905343, -0.008951151, -0.0016045586, -0.005529606, -0.008750074, 0.010780299, -0.0099889655, 0.0010175448, 0.021353034, 0.03313223, 0.0042355806, -0.016708814, -0.004186933, 0.020146575, -0.008840883, 0.015463437, 0.012259184, 0.024401614, -0.0023075158, 0.020730346, 0.012531611, 0.011234342, -0.014308868, 0.025478348, -0.017694738, 0.01916065, 0.0065901224, 0.008412784, 0.0046117883, 0.023662172, 0.014088333, -0.022001669, 0.008036576, -0.034040317, 0.020821154, -0.00042242295, 0.013232135, -0.008763047, -0.008788992, -0.026931288, 0.028565846, 0.013958606, 0.012148917, 0.03245765, -0.013997524, -0.012362966, -0.0040993677, -0.016332606, -0.013478616, -0.019043896, 0.007997658, 0.0007434968, -0.0023821087, -0.012667824, 0.0097619435, -0.024842685, -0.028020993, -0.021314116, 0.03564893, -9.146754e-05, -0.013465644, 0.00031681723, -0.011234342, -0.00849062, 0.0010507873, 0.038087793, 0.009158714, 0.028799353, -0.0125445835, 0.014373732, 0.021106554, -0.0034280312, -0.001536452, -0.010449495, -0.024310807, -0.018940115, 0.013764015, -0.014542377, -0.015969371, 0.015268846, -0.009074391, -0.0030177701, 0.028410174, 0.0150612835, -0.0031653345, -0.012667824, 0.006979303, -0.002643184, -0.023856763, 0.0031977661, -0.022416795, 0.014386704, 0.015437491, -0.010773812, 0.026062118, -0.0068430896, 0.010910026, -0.011409474, 4.155312e-05, -0.0018859036, 0.033677083, -0.0018729309, -0.001903741, -0.016566115, 0.01136407, -0.006745795, 0.013251594, 0.03033013, 0.03894399, 0.0011294341, 0.010845162, -0.014062387, -0.014840748, -0.017085021, -0.015359655, 0.014931557, 0.02577672, -0.0059804064, 0.010825703, -0.00045526004, -0.014244005, 0.005896084, 0.00056471705, 0.02887719, -0.055990096, 0.01813581, 0.021897888, 7.226189e-05, -0.010631113, -0.025711855, -0.16200285, 0.009872211, -0.00010580844, -0.027009124, 0.010177069, 1.038828e-05, -0.009178173, 0.0014302381, -0.021249253, 0.0054452834, 0.0031020925, -0.011526228, -0.01978334, -0.007420374, -0.017629875, 0.005364204, -0.008120899, 0.009975992, 0.007212811, 0.017902302, 0.02742425, -0.0010540304, 0.029655552, -0.009787888, -0.029058808, 0.022014642, 0.0064798547, 0.00570798, -0.015437491, -0.02471296, 0.018499045, 0.0050496166, 0.02708696, 0.004812865, 0.014568321, 0.010527331, -0.0135564525, -0.0044496297, 0.0035155967, 0.039748296, 0.006398775, 0.022559494, 0.011675414, 0.027190741, -0.027553976, 0.012337021, 0.016916377, -0.02680156, -0.015969371, -0.021897888, -0.021560598, -0.015411546, -0.008918718, 0.0032610078, 0.0155283, -0.012972682, 0.0038139685, 0.016605033, -0.01426995, -0.03222414, 0.020328192, -0.038528867, 0.009041959, 0.015489383, 0.004375037, -0.02109358, -0.014529404, 0.013815906, -0.031757124, 0.017344477, -0.010514359, -0.024842685, -0.010572736, -0.024245942, 0.0030193918, -0.02457026, -0.020613592, -0.011960813, 0.005250693, 0.0011788924, 0.009256009, -0.028176665, -0.011279747, 0.017980138, -0.018096892, -0.009028987, -0.015216956, -0.008782506, 0.0056269006, 0.00029188534, 0.022429768, -0.03570082, -0.025024304, -0.027917212, 0.024103243, -0.008795478, 0.03453328, -0.007193352, -0.02220923, 0.016527196, -0.0068820077, 0.010326255, 0.006294994, 0.026321571, 0.014620213, -0.0071284887, -0.009774916, -0.019796312, 0.040812057, -0.0022069775, -0.030148514, 0.0066225543, 0.007589019, 0.026139954, -0.021729242, 0.021391952, 0.014049415, -0.0033534383, 0.007413888, -0.014646158, 0.044574134, -0.0014675347, -0.018317427, -0.028591791, 0.0021437358, -0.010786785, -0.11488607, -0.01916065, 0.026542107, 0.019277405, 0.011377042, 0.015878562, -0.010637599, 0.02543943, -0.016163962, 0.040786114, -0.027242633, -0.0071609206, 0.01354348, 0.0008675481, 0.002197248, -0.0072192973, -0.010514359, -0.01279755, -0.026931288, 0.041486636, 0.02002982, -0.01600829, -0.0071998383, -0.0057598706, -0.03720565, 0.018927144, -0.020613592, 0.019666586, 0.010540304, 0.007387942, -0.009366277, -0.017046103, 0.016721787, -0.021716269, -0.036686745, 0.0035447853, -0.016293688, -0.0020886017, 0.018667689, 0.0091651995, -0.009677621, 0.0024177835, -0.008737101, -0.023999462, 0.016747732, -0.023973517, -0.017059077, 0.03375492, 0.004258283, -0.00050674536, -0.037361324, -0.005931759, -0.030926874, 0.01634558, 0.05505606, 0.008023604, -0.015554246, -0.016241798, 0.00053431233, -0.0013969957, -0.039696407, 0.015320738, -0.012460261, 0.034611117, 0.013044031, -0.010572736, -0.012959709, 0.009781403, 0.01533371, -0.020042794, -0.009191145, 0.006538232, -0.019887121, 0.030797146, 0.0036420804, -0.0053577176, -0.0053382586, -0.005422581, -0.005020428, 0.012972682, -0.0152039835, -0.022261122, 0.012122971, -0.010585709, 0.022377877, 0.009132768, 0.0132256495, 0.007978199, 0.0127716055, -0.020431975, -0.040838003, 0.014775884, 0.008659265, -0.015074257, -0.003147497, -0.006719849, -0.007978199, -0.022754084, 0.006959844, 0.0008740344, -0.01076084, 0.030433912, -0.019069843, -0.0063274256, -0.0069144396, 0.01008626, 0.0033728974, -0.00091862807, -0.006674445, -0.001055652, 0.0024112973, -0.008717642, -0.02815072, 0.030978765, -0.0018713094, -0.017694738, -0.034507334, -0.012933764, 0.013608343, -0.016618006, 0.007971713, 0.0011626766, -0.0043653073, -0.0061328355, 0.019575777, 0.0001311457, 0.008153331, -0.0062106713, 0.0015850996, 0.0046117883, -0.020665482, 0.012349993, 0.0007118759, -0.021210335, 0.014282923, 0.030849038, -0.0036453237, -0.023791898, 0.002803721, 0.039774243, -0.004871242, 0.05334367, -0.040033698, -0.0332879, -0.013725097, -0.014386704, -0.028124774, 0.008373866, -0.031342, 0.013751043, 0.017253667, -0.0056982506, 0.03424788, 0.011668927, -0.024142161, 0.0093078995, -0.020341165, -0.013465644, -0.0018437424, 0.0068430896, -0.022507602, -0.011532715, 0.050956696, 0.005367447, 0.016773678, -0.008166303, 0.0030518235, -0.02636049, -0.0035480284, -0.006719849, -0.0021404924, -0.019887121, -0.014451568, 0.011162993, 0.026152927, 0.0041545015, 0.008672238, 0.020406028, -0.008510079, 0.01862877, -0.0019183353, 0.01586559, -0.011798655, -0.025763746, 0.0049750237, 0.0020902234, 0.023973517, 0.015255874, -0.027502086, 0.016306661, 0.017798519, 0.006012838, 0.0009940318, -0.012654851, -0.023740008, -0.013128354, 0.016773678, 0.028436119, -0.023091374, 0.011344611, 0.020003876, -0.0027031826, 0.024323778, 0.016618006, 0.0041188267, 0.0026577783, -0.015722891, -0.0142569775, -0.017188804, -0.013180245, 0.0033064124, 0.0032156035, -0.007919822, -0.012460261, 0.0031037142, -0.008347921, -0.037984014, 0.012466747, 0.014127251, -0.02752803, -0.017279612, -0.005101507, 0.021482762, 0.0041772034, 0.027450195, 0.010799758, 0.0051825866, 0.0012405127, 0.009956533, -0.0005176911, -0.017629875, -0.014594267, 0.009268981, 0.004799892, -0.014425622, 0.0029885815, -0.0045177364, -0.0005286368, -0.0006810658, 0.010747867, -0.03440355, 0.03453328, 0.011545687, 0.005075562, 0.020756291, -0.005743655, 0.022118423, -0.00091295247, 0.0146072395, 0.012187835, -0.00737497, 0.020626564, -0.0066355267, 0.0181877, -0.03269116, -0.0014942908, 0.041045565, -0.012829983, 0.02887719, 0.010254905, -0.00092916837, 0.028980972, -0.023208128, 0.0046831383, 0.012058108, -0.0047707036, -0.00909385, 0.011714332, -0.005435554, -0.029136643, -0.014970475, 0.008192249, 0.019134706, -0.047947034, -0.012992141, -0.016034234, -0.02568591, -0.011000834, -0.019614695, 0.015216956, 0.011980272, 0.016747732, 0.04275796, -0.010430036, -0.0285399, 0.011779196, 0.0016702329, -0.014918584, 0.011000834, -0.029422043]" 23995648,Five Buck Fatigue,https://underjord.io/five-buck-fatigue.html,207,1596094979,246,lawik,"[0.0057427185, -0.014789467, 0.008400307, -0.03382013, -0.021137582, -0.00021505266, -0.00015733475, -0.029250583, -0.020631375, -0.025474548, 0.022314172, 0.02677427, -0.0025960233, -0.00088244275, 0.0029688382, -0.005068915, 0.05653106, 0.013072466, 0.0021377003, -0.004118066, -0.042904504, 0.014898917, -0.03702155, 0.0039436296, 0.011916397, -0.0061565773, 0.008325061, -0.016636439, 0.014228534, 0.013995952, 0.0104388185, -0.010897142, -0.0017768566, 0.022710929, -0.021739557, -0.02313505, 0.005906894, -0.0066422625, 0.01729314, -0.009419563, 0.012627824, 0.010630356, -0.015377762, -0.03272563, -0.026733225, 0.0021616425, 2.770994e-05, -0.033874854, -0.01237472, 0.004812391, 0.027129984, -0.011649612, -0.010869779, 0.004213835, 0.01514518, 0.0031005207, 0.010473022, 0.026582733, 0.023641257, -0.021219669, -0.0013783892, 0.019687366, -0.023436038, -0.0053254394, -0.023627575, 0.00079522457, -0.010083105, -0.00959742, -0.017361548, -0.0144063905, 0.004278821, 0.0061463164, 0.01696479, -0.02697949, 0.01396859, -0.010685082, -0.011759062, -0.022656204, 0.015938694, 0.006207882, 0.0050518136, 0.0067448723, -0.011122882, 0.027554102, -0.006755133, -0.005588804, 0.012429445, 0.016349133, -0.004350648, -0.00650545, -0.00036041628, -0.0027926918, 0.008195088, 0.02903168, 0.014433753, 0.024202188, 0.0042925025, 0.02442109, -0.0066217408, 0.0105003845, -0.008496077, 0.041946813, -0.045476582, -0.021069175, -0.033136066, 0.022779336, 0.023340268, 0.0045182435, 0.018291874, 0.009152778, -2.8565022e-05, 0.02027566, -0.027978223, -0.01675957, -0.004497722, -0.002635357, 0.0076204743, -0.009665826, -0.0322331, -0.028210804, 0.030454535, -0.0005485339, 0.02399697, 0.011218652, 0.02966102, 0.009563217, -0.014625291, -0.02911377, -0.003254435, -0.004863696, 0.0037691933, 0.0037794544, 0.005609326, 0.028005585, -0.017005835, 0.03275299, -0.037842426, 0.002431848, -0.015870288, -0.014693698, 0.029524207, 0.013982271, -0.0042035743, 0.023449719, -0.008071957, 0.009905249, 0.004398532, -0.006006083, 0.008995444, -0.004651636, -0.010520906, -0.006252346, -0.00014632559, 0.020207254, 0.0011979673, 0.025953393, 0.0011834309, 0.019085389, -0.016513309, -0.020645056, 0.021096537, 0.0027755902, 0.007702562, -0.0102062365, -0.0011338363, 0.024598947, 0.022163678, 0.010431978, -0.0026302265, 0.010151512, -0.009734233, 0.020672418, -0.009788957, 0.02454422, 0.00020799825, 0.03316343, -0.012278951, 0.0075794305, -0.012682549, -0.060033467, -0.0014733031, 0.006252346, 0.0016520149, 0.022437304, 0.011061317, -0.010007858, 0.04703625, -0.008010391, -0.010938185, -0.0018880169, -0.0146389725, 0.020946044, -0.029387396, -0.00863973, -0.6264933, -0.01258678, 0.02677427, 0.001642609, -0.010835576, -0.0025532693, 0.0027259956, -0.0050483933, -0.030016733, 0.02550191, -0.0154598495, -0.014488478, -0.0035024083, -0.007127948, 0.0046789986, -0.004641375, 0.021424888, -0.025926031, -0.026733225, 0.010083105, -0.023422355, 0.018401325, -0.021479614, -0.012319995, 0.013291366, 0.0022009762, -0.001461332, 0.006813279, 0.005633268, 0.029277945, -0.005773501, 0.028730694, -0.007073223, 0.009426404, 0.046023834, -0.008756021, 0.008092479, 0.026117569, 0.0014809988, 0.021917414, -0.051222723, -0.011211811, -0.009145937, -0.00045190987, -0.007100586, 0.024079056, 0.008249814, 0.011588046, 0.004278821, 0.010602994, 0.0076409965, 0.018907532, -0.01365392, -0.018592862, 0.025241965, -0.014447435, 0.014310622, -0.031029148, 0.026144931, 0.02591235, -0.0031295933, 0.01258678, -0.013106668, -0.0027345463, -0.024913615, 0.013154553, 0.0008290002, 0.024448453, -0.0007507604, -0.022478348, 0.0010816765, 0.008441351, -0.018770719, -0.021383844, -0.016609076, 0.007627315, 0.012566258, -0.008694455, 0.0015682171, 0.018305557, -0.002248861, -0.015842926, 0.0013886502, 0.01974209, 0.03806133, -0.017785667, -0.007907782, -0.0070800637, 0.0006626871, -0.0066320016, -0.026486963, 0.015295674, 0.011287058, -0.020070441, -0.007435777, 0.0018794662, -0.026952127, 0.031165961, -0.0032133912, -0.009460607, -0.029414758, -0.0071758325, 0.017635174, -0.004576389, 0.032068927, 0.007764128, -0.03256145, -0.025679767, 0.043041315, -0.037596166, 0.0042925025, -0.0071963547, 0.0022249187, -0.016910065, 0.0007469125, -0.02572081, 0.032999255, -0.008338742, -0.015364081, -0.029469483, 0.003209971, 0.0107329665, -0.0018709154, -0.0056708916, 0.007688881, 0.016581714, 0.0046926797, -0.007018498, -6.0550363e-05, 0.012839884, -0.0005228815, -0.01684166, 0.0037315697, -0.0033296822, -0.003991514, 0.010021539, 0.008058275, -0.0031518254, 0.01909907, -0.042439338, -0.015911331, -0.022437304, 0.00083370315, -0.021931095, -0.014885236, -0.024161145, 0.022245765, 0.0029996212, 0.014023314, -0.011246014, 0.0063617965, -0.013783893, 0.016554352, 0.030673435, -0.013681282, 0.004884218, 0.0133050475, -0.016417539, -0.03584496, -0.01184115, 0.0011398218, 0.011540161, -0.013640239, -0.006112113, -0.04063341, -0.026117569, -0.0047542457, 0.000831993, -0.010616675, -0.012463649, 0.009693189, -0.012237907, 0.008776543, 0.02272461, 0.0028491272, 0.017142648, -0.01675957, 0.005270714, -0.028758056, -0.004213835, -0.00010009782, -0.0065977983, 0.010753488, -0.00055964995, 0.033847492, 0.00016524424, 0.031494312, 0.019687366, 0.013113509, 0.035352435, 0.0009217764, 0.011902716, -0.030646073, -0.0068509025, -0.014981004, -0.008769702, -0.009344316, 0.0040359786, 0.0036118587, 0.016568033, 0.012518373, -0.0010970678, 0.012408923, -0.0035263505, 0.022437304, -0.026486963, 0.0015536806, -0.020946044, 0.036091223, 0.03543452, 0.0011791555, -0.012470489, -0.0109655475, -0.0072921235, 0.006926149, 0.023422355, 0.014009633, 0.029195856, -0.0022026864, 0.01897594, -0.02335395, -0.0051510027, 0.0010902272, -0.0029346352, 0.002645618, 0.0317953, -0.015240949, 0.020357748, 0.026828995, -0.038800117, -0.0076820403, 0.046023834, -0.00533228, 0.017512042, -0.011909557, -0.011540161, 0.02027566, 0.0042617195, 0.051988874, -0.028840143, -0.0037178886, 0.012121616, 0.0236823, -0.0047850288, 0.02708894, -0.011676975, 0.020508243, 0.008838109, -0.0074836616, 0.014036996, -0.0012022427, 0.01493996, -0.017662536, -0.023709662, 0.007511024, -0.022697248, -0.019153796, 0.008290857, 0.022204721, 0.0029602875, 0.0069603524, 0.003721309, 0.011218652, -0.027225751, -0.006324173, 0.022327853, -0.0014382448, -0.027006852, 0.005417788, 0.020097803, -0.011806947, -0.0115538435, -0.0035742351, -0.015610344, 0.010445659, -0.0003076151, 0.0010055742, 0.010254121, 0.012121616, 0.0258029, 0.021151263, -0.007052701, 0.001599, 0.014201172, -0.010917664, -0.014666335, 0.013209279, -0.015938694, 0.012682549, -0.0011535031, -0.021999503, 0.0010149801, -0.000720405, -1.1536902e-05, 0.01034305, -0.009980496, 0.017908799, -0.0018179005, -0.008154045, -0.030864973, 0.0075794305, 0.015733475, -0.024393726, -0.0047850288, 0.022492029, 0.009884726, -0.0066833063, -0.026924765, -0.024024332, -0.033464417, 0.010691922, -0.021794284, -0.022519391, -0.011081839, 0.01461161, -0.004412214, 0.0006327593, -0.0016981892, 0.027102621, 0.015624025, -0.0058624297, 0.002751648, -0.026363831, -0.010315687, 0.11251487, 0.0020641636, 0.007456299, 0.025324054, -0.018209787, 0.015049411, 0.0025412983, -0.03732254, 0.019345334, 0.0012945913, 0.0017990887, 0.008708136, 0.0051817857, 0.00020949464, 0.018415006, -0.0065635955, 0.01652699, -0.019892585, -0.0053699035, -0.0012783449, 0.042576153, -0.003871803, 0.028292893, 0.03562606, -0.0025755013, 0.028457068, 0.006354956, 0.028210804, -0.010165193, -0.01525463, 0.0187844, -0.016691165, -0.009323794, 0.024790484, -0.015596662, -0.0023497604, 0.0023343689, 0.028812781, 0.015295674, 0.009364838, 0.007435777, 0.03264354, 0.020070441, -0.011122882, -0.009186981, -0.040578686, -0.009310112, -0.001268939, 0.003156956, -0.006727771, 0.0151041355, -0.0021411206, -0.031302776, -0.009433244, 0.020316705, -0.019263245, -0.015213586, 0.0013176785, -0.010493544, -0.001738378, -0.025050428, -0.039429456, -0.0032082608, -0.004501142, -0.016239682, -0.013462382, 0.008468714, -0.0039607314, -0.029059045, -0.0068201195, -0.0005955633, -0.032041565, -0.055846997, -0.0146389725, -0.008065116, -0.003233913, -0.0003217239, 0.0071484703, 0.024831528, -0.005568282, -0.009830002, -0.025515592, -0.01611655, -0.027472015, 0.0041967332, -0.0008546526, -0.010062584, -0.00012067319, -0.016472263, -0.008920196, -0.0105619505, 0.002112048, 0.011033954, 0.009871045, 0.023627575, 0.02314873, 0.0042172554, 0.011184448, 0.012757796, -0.010527747, 0.005739298, -0.013907024, -0.007983028, -0.01184115, 0.0049115806, -0.0005857299, 0.01654067, 0.010431978, -0.017662536, -0.04309604, 0.006796177, 0.012942493, 0.0026849518, 0.019153796, 0.017895117, 0.004285662, 0.003926528, 0.015213586, 0.007346849, -0.0031005207, -0.021192307, -0.046954162, 0.035242982, 0.03885484, -0.009009125, -0.01451584, 0.013318729, -0.012532054, -0.033546504, -0.028922232, -0.015555618, 0.018497095, -0.023408674, -0.031165961, -0.04298659, 0.003912847, -0.033026617, -0.010890301, -0.005588804, -0.0036460618, -0.031740576, 0.0034374222, -0.0013629978, 0.00053528015, 0.0473646, -0.046981525, -0.010630356, 0.0036529026, -0.008653412, 0.03190475, -0.008543961, -0.01717001, 0.009747914, -0.008249814, 0.015829245, -0.030208271, 0.003038955, -0.019878903, 0.025734492, 0.009474288, 0.028005585, -0.0052228295, 0.0025874726, 0.006218143, 0.023394993, -0.015842926, 0.013688123, -0.0017315373, -0.0010303716, 0.010370412, -0.0031791881, -0.00090809516, 0.011458074, -0.01097923, 0.030345084, 0.0031860287, -0.018688632, -0.0043745902, -0.03083761, -0.037514076, -0.02240994, 0.013188756, -0.018209787, -0.024845209, -0.023695981, -0.0142969405, 0.01630809, 0.0154598495, 0.020987088, 0.0083934665, 0.008181407, 0.0092759095, 0.021698514, -0.0023737026, 0.013879661, -0.008585005, -0.032917164, -0.02699317, -0.020261979, 0.0063104914, -0.004063341, 0.016800614, -0.007346849, 0.012148979, -0.0018897272, 0.016636439, -0.024352683, -0.039949346, 0.010431978, -0.008140363, -0.011328102, -0.012935652, -0.005161264, -0.01781303, -0.032944527, 0.014050677, -0.01771726, 0.002250571, 0.0069774543, -0.023121368, 0.024079056, -0.002613125, -0.00181448, 0.013277684, 0.027321521, 0.011246014, -0.005513557, -0.010219918, 0.005718776, 0.011143405, 0.0133050475, 0.020905, 0.0015314486, -0.022642523, -0.010541428, 0.010678241, -0.0049355226, -0.037267815, -0.019482147, 0.035051446, 0.024038013, 0.0020111485, -0.0113691455, -0.007702562, -0.0008238697, 0.020412473, 0.0046140123, 0.001588739, -0.001781987, -0.017197372, -0.014967323, 0.031029148, 0.039183192, 0.028730694, -0.0062113022, -0.028976956, -0.03491463, 0.010972389, 0.0028559677, 0.03852649, 0.024284277, 0.02518724, -0.032014202, 0.011718019, 0.013852298, 0.0014416651, 0.0142969405, -0.006785916, -0.012675708, 0.029387396, 0.011006592, -0.0039709923, -0.012976697, -0.025214603, -0.013633398, -0.0072784424, -0.0058077043, -0.011013432, -0.009412723, -0.005516977, 0.019249564, -0.01013783, -0.033437055, 0.031384863, 0.008174567, 0.003350204, 0.0076751993, -0.007155311, 0.023805432, 0.006067649, -0.027814047, -0.010869779, -0.008379785, 0.008338742, -0.013373454, -0.021999503, 0.01503573, 0.020330386, -0.006207882, 0.0027413869, 0.033874854, 0.013099828, -0.03264354, 0.019372696, -0.014584247, -0.026596414, 0.027184708, -0.0035024083, -0.042712964, -0.0022112373, 0.007948825, 0.021602744, 0.001408317, 0.023176093, 0.0011594887, 0.016951108, 0.0051236404, -0.0029397656, -0.045996472, 0.016089188, -0.00565037, 0.0016143913, 0.024667352, -0.0049970886, 0.01621232, -0.017854074, 0.019495828, -0.0044464166, -0.010096787, -0.020070441, 0.008844949, 0.006755133, -0.014269577, -0.03732254, 0.0051339013, -0.028019266, -0.016581714, 0.04189209, 0.0067688148, -0.0028559677, -0.009357997, 0.023094004, 0.0040188767, -0.0068235397, -0.0066012186, 0.007244239, -0.024161145, -0.00544173, -0.017881436, -0.006248926, -0.031302776, 0.050100856, 0.022341534, -0.0073331674, -0.031111237, 0.020207254, -0.043698017, -0.021438569, -0.001044908, 0.022450985, 0.02164379, 0.0026849518, 0.0058111246, 0.010042061, -0.009501651, 0.019605277, -0.013872821, -0.024653671, 0.011642772, -0.01919484, 0.0055956445, -0.004655056, -0.03382013, 0.006997976, 0.03562606, 0.0042754007, 0.021192307, 0.026965808, -0.0132434815, 0.026582733, 0.015596662, 0.012778318, 0.032205738, 0.0024489495, 0.044546258, -0.010589313, 0.0015177673, 0.017621491, 0.009850523, 0.00075717346, -0.0014981005, 0.01974209, -0.0047200425, 0.0059855613, -0.020193573, -0.013818095, -0.02409274, -0.0041864724, 0.017895117, -0.0019102491, -0.0018538138, 0.017128965, 0.018770719, -0.025570316, 0.0019906266, 0.009063849, 0.028812781, 0.0019068287, 0.022656204, -0.017101603, -0.011964282, 0.0132298, 0.0213428, -0.0074220956, 0.011355464, -0.03789715, -4.3956465e-05, -0.009255388, 0.0063583762, -0.005493035, -0.005451991, 0.019577915, -0.02548823, -0.0069193086, -0.01472106, 0.011635931, -0.0103293685, -0.010999751, 0.0003354052, 0.014926279, 0.003168927, -0.022998236, 0.00081360876, 0.020946044, 0.0005545195, 0.005359642, 0.20675154, -0.012559418, 0.0034374222, 0.020330386, 0.012853565, -0.0066012186, -0.00032856455, 0.00522967, -0.01779935, 0.011656453, 0.01888017, 0.008502917, -0.007401574, -0.0025122254, -0.0031210426, -0.03050926, -0.01983786, 0.0021394105, -0.025939712, 0.0006075344, 0.0033673057, -0.00736053, -0.0131819155, -0.00039184047, 0.032342553, -0.020713462, -0.006324173, -0.004183052, 0.020289343, -0.00092092133, -0.013503426, -0.0059547783, 0.0122515885, -0.007285283, -0.017498361, -0.0041556894, -0.00181448, -0.006252346, 0.022040546, 0.028183442, 0.021028131, 0.04254879, -0.021630108, -0.010151512, 0.03050926, -0.010657719, -0.0033946682, -0.018647589, -0.012408923, 0.0017785667, -0.011040795, -0.008769702, 0.021753239, 0.02292983, -0.02763619, 0.0075520677, -0.011382828, 0.005068915, -0.018373962, 0.030481897, 0.009378519, 0.010644038, 0.0016451742, 0.0420289, -0.024982022, 0.027814047, -0.018278193, 0.033108704, -0.0070800637, -0.022259446, -0.020234616, -0.007490502, -0.007688881, 0.015281993, -0.02539246, -0.00031680719, 0.0322331, 0.015076773, 0.02870333, 0.0030765785, -0.0006947526, 0.007853056, 0.0006464406, -0.010527747, -0.012121616, -0.03573551, 0.03551661, -0.006337854, -0.007921463, 0.012381561, -0.0066046393, 0.00049124355, -0.01983786, -0.021780603, 0.0014878395, -0.021397525, 0.014214853, 0.005735878, -0.023244498, -0.007818853, 0.0052399314, 0.06917256, 0.022232084, 0.021739557, 0.0038444404, -0.0028884609, -0.02815608, 0.035051446, 0.0039436296, -0.03212365, -0.0047200425, -0.016226001, 0.012887768, -0.007921463, 0.0014527811, 0.014365347, 0.0058932123, -0.0015742026, 0.0069774543, -0.01461161, 0.0021445411, -0.019222202, 0.015692431, -0.008879152, 0.001738378, -0.03007146, -0.01088346, 0.018045612, -0.010274643, -0.04181, 0.022642523, 0.010062584, -0.011081839, -0.033272877, -0.0044019525, -0.012169501, 0.004169371, -0.02944212, 0.005729037, 0.014105402, -0.01611655, 0.018497095, 0.017019516, -0.0035126694, 0.011157086, -0.019810498, -0.0010474732, -0.009788957, -0.010302005, -0.0029637078, 0.017512042, 0.028785419, -0.0070800637, -0.012963016, 0.0060437066, -0.023094004, -0.014912598, -0.03683001, -0.003967572, -0.014816829, -0.046023834, 7.497984e-05, 0.03133014, -0.02037143, -0.03127541, -0.020439835, -0.17358811, 0.010849257, -0.009070691, -0.011806947, 0.028840143, -0.0056298478, 0.01279884, 0.005171525, -0.024557902, -0.018551819, 0.013284525, -0.020193573, -0.006348115, -0.0204672, 0.026144931, -0.001034647, -0.0010637197, 0.025693448, 0.0047816085, -0.001237301, 0.03808869, -0.012730434, 0.014994686, -0.0006443029, 0.0036597431, 0.015706113, 0.017635174, 0.016978472, -0.0032014202, -0.016923746, -0.00030056067, -0.013051944, 0.015528256, 0.0067995973, 0.007859897, 0.02154802, 0.0132434815, 0.0011107491, 0.0014048967, 0.040250335, 0.025843943, -0.009898408, 0.0033570447, 0.024735758, -0.00991893, 0.029852558, 0.013523947, 0.013387135, -0.0058726906, -0.0014869844, 0.027759323, -0.013393976, 0.005729037, 0.019947309, -0.009248547, -0.0042754007, 0.016814297, -0.00029649906, -0.0023548908, -0.018223468, -0.002291615, -0.0151041355, 0.0019239304, -0.013736008, 0.005448571, -0.028046628, -0.0009867625, 0.016677484, -0.02283406, 0.00790094, -0.0065567545, 0.010589313, 0.004128327, 0.0051065385, 0.014543204, -0.005633268, -0.020043079, -0.029277945, 0.0037794544, 0.035188258, 0.014816829, 0.0082224505, -0.03160376, 0.015268311, -0.01237472, 0.016294407, 0.021164944, 0.01898962, -0.010582472, -0.027171027, 0.013838617, -0.0051544234, -0.020261979, 0.0034254512, -0.017621491, 0.009946292, -0.0022950352, 0.015774518, -0.005359642, -0.0041898927, 0.009932611, -0.005558021, -0.020535605, 0.0040257173, 0.0266785, -0.020125167, -0.0027157345, 0.009104894, 0.011875353, -0.028539155, -0.036529023, 0.015774518, 0.019591596, 0.009036487, 0.002678111, 0.04222044, -0.0007593112, -0.025419824, 0.003967572, -0.018415006, 0.06167522, -0.014420072, -0.017689899, -0.012196863, -0.0067140893, -0.03083761, -0.13046472, -0.002710604, 0.01833292, -0.009036487, 0.0016494496, 0.005643529, -0.0033673057, 0.034230568, -0.021985821, 0.026336469, -0.015842926, -0.039894618, 0.004439576, 0.0046071718, 0.011683815, -0.031412225, -0.0071621514, -0.023094004, -0.031111237, 0.030646073, -0.008448192, -0.029414758, -0.010062584, -0.013024581, -0.028210804, -0.009426404, -0.028593881, 0.03997671, -0.0008277176, 0.00029008594, -0.010288324, -0.0061907806, 0.006166838, -0.04150901, 0.0023223977, -0.0030475056, -0.013421338, -0.022710929, 0.0054964554, -0.010192555, 0.019276926, 0.0024882832, -0.0023206875, -0.0055717025, -0.019276926, -0.00065883924, -0.015350399, 0.048869543, 0.016143914, -0.007976187, -0.028347617, -0.0322331, -0.012675708, -0.0112596955, 0.022108953, -0.010404616, 0.005804284, 0.017115284, -0.012402083, 0.010117308, -0.009009125, -0.003529771, -0.02889487, 0.01152648, 0.024995703, 0.0025088051, -0.0066217408, 0.009535854, -0.00074520236, 0.00629339, 0.007647837, 0.016663803, -0.0057700807, 0.016376495, -0.020316705, -0.017429953, 0.0021513817, -0.025693448, 0.024776803, -0.0022608319, -0.018620225, -0.014543204, 0.007346849, -0.04577757, 0.009556375, -0.011711177, 0.0007323762, 0.013742848, -0.00288162, -0.029743109, -0.021069175, 0.012463649, 0.011786425, 0.007059542, -0.008133522, -0.0011902716, 0.007805172, -0.00672435, 0.04320549, -0.004179632, -0.015309355, -0.003912847, -0.01771726, 0.019044345, 0.0045353454, 0.0034818863, 0.0085781645, -0.018674951, -0.0072784424, -0.010185715, -0.013510266, -0.012135298, -0.0060642287, 0.03242464, 0.008304538, -0.03275299, 0.0022762234, -0.02507779, -0.00554434, -0.006495189, -0.013633398, 0.019755771, 0.007381052, 0.013736008, 0.0239012, 0.026268063, 0.0062728683, 0.010815054, -0.0051031183, 0.011909557, 0.014803148, -0.023080323, 0.008831268, -0.013907024, -0.002112048, -0.004949204, 0.0066046393, -0.0036665837, -0.0075520677, 0.01919484, -0.019441102, 0.008721817, 0.0015177673, -0.008954399, -0.0030218533, -0.026842676, -0.012737274, -0.01675957, -0.041645825, 0.011177608, 0.020494562, 0.0355987, 0.033108704, 0.013564992, -0.041016486, -0.008366104, -0.01215582, -0.017676217, 0.03551661, -0.0014527811, 0.0024814426, -0.028949594, 0.02784141, 0.005315178, 0.01333925, -0.03198684, 0.018798083, -0.0030167229, -0.03743199, -0.008502917, 0.01270307, -0.019468466, -0.0053288597, -0.003487017, 0.009884726, 0.0049321023, 0.007381052, 0.015350399, 0.019482147, -0.008181407, -0.013770211, 0.016226001, 0.015815563, -0.026651138, -0.0047610863, 0.012408923, 0.02815608, 0.0080514345, 0.0078120125, 0.017635174, 0.011273377, 0.0021411206, -0.00019848548, -0.00842767, 0.00078667374, -0.0049218414, 0.03828023, 0.0032612758, -0.008933878, 0.004829493, -0.0076751993, 0.013804414, 0.0264596, -0.008270335, -0.00034930024, 0.01911275, -0.016458582, 0.029688383, -0.020932361, -0.022970874, 0.009180141, 0.023271862, 0.0018521036, 0.015213586, -0.0039402093, 0.002495124, 0.00093716785, 0.019974673, -0.0008935588, -0.005578543, -0.011328102, 0.016472263, 0.0076751993, -0.010596153, 0.025118835, -0.033847492, 0.034941997, -0.0013604325, 0.0058282265, -0.016157595, 0.005397266, 0.016130231, -0.017785667, 0.006484928, -0.028785419, -0.00565379, 0.015131499, -0.053274915, -0.009118575, 0.025255648, 0.010130989, 0.062113024, 0.032917164, -0.011711177, 0.017416272, -0.009351157, 0.012210545, 0.01675957, 0.008099319, 0.014474797, -0.011280217, 0.003283508, -0.007941985, 0.011143405, -0.023559168, -0.006987715, 0.003103941, -0.006324173, 0.0258029, -0.00790094, -0.022656204, 0.004525084, 0.0054793535, 0.004343807, -0.0018179005, -0.014269577, -0.005516977, 0.0013689833, -0.0074631395, -0.018155063, -0.027827729, -5.5954308e-05, 0.0142969405, -0.0409344, -0.019222202, -0.008065116, -0.0091733, -0.0016733919, 0.00072382536, -0.0024814426, 0.004343807, 0.0057221963, 0.012408923, -0.022450985, -0.027129984, 0.004726883, -0.0056161666, -0.017019516, 0.008769702, -0.018264512]" 3685444,Paul Graham Keynote at PyCon,http://brianrue.wordpress.com/2012/03/09/pycon-2012-notes-paul-graham-keynote/,321,1331319604,119,brianr,"[-0.023904754, -0.006714382, 0.020598779, -0.0038181206, 0.014149298, 0.008717041, -0.031194856, -0.015526788, -0.024639416, -0.01946853, 0.027083578, 0.012503373, 0.009119692, 0.020570522, 0.02027383, 0.008300262, 0.034048736, 0.006198706, 0.006392968, -0.012800064, -0.007954123, -0.0045739743, -0.0061775143, -0.0055488134, -0.014008016, 0.012030082, 0.02714009, -0.0028750694, -0.0044468213, 0.016614651, 0.02961251, -0.007064053, -0.0036627112, 7.5386684e-05, -0.025303436, -0.016077785, -0.015682196, -0.009790777, 0.035602827, -0.018253513, 0.01446718, 0.018521946, -0.011118819, -0.004404437, -0.031505674, 0.013280419, 5.98237e-05, -0.011888801, 0.013527661, 0.008187237, 0.016233193, 0.0074525755, -0.018677356, 0.005110842, -0.028750695, 0.0029050917, -0.0064777364, 0.0064176917, 0.0072159297, 0.015328994, 0.0094728945, 0.027648702, -0.023763474, 0.0008167811, 0.0022304747, -0.0073960633, -0.034783397, -0.009762521, 0.014509564, 0.0042737518, 0.03356838, 0.034557346, 0.00013333399, -0.006145726, 0.012263196, -0.0008198716, -0.008483928, -0.019680452, 0.009423446, -0.0015240693, 0.010942218, -0.0002894054, -0.010292325, 0.013958569, 0.009819034, 0.014410668, 0.0043585207, 0.013789031, -0.025246924, 0.000107616426, 0.004362053, 0.039643463, 0.009190333, 0.03876752, -0.03972823, 0.03938916, -0.0019514445, -0.006279943, 0.01227026, -0.018705612, 0.008038892, -0.0043479246, -0.012694103, -0.015300739, -0.015752837, 0.008067148, 0.011507342, -0.019454401, 0.012404476, -0.014933407, -0.00020574054, 0.020287959, -0.0001583893, -0.00023002322, -0.01617668, -0.018098103, 0.018634971, -0.007897611, -0.0043443926, -0.018295897, 0.034698628, -0.0007439331, 0.02379173, -0.025741408, 0.007187674, 0.0072194617, -0.028044289, -0.028510517, 0.017688388, -0.0030304787, 0.032325104, 0.0024953766, 0.009041987, -0.0020732994, -0.02961251, 0.0152018415, -0.011655687, -0.007318359, -0.039050084, -0.052019686, 0.0016741805, 0.022831019, 0.00022891945, -0.0032883165, -0.015074689, 0.018310025, 0.024046035, 0.036111437, 0.022831019, 0.0072971666, 0.01263759, -0.00034172356, -0.014523692, 0.0018490158, 0.008589888, 0.016388603, 0.010808, 0.03712866, -0.0051567587, -0.015244226, 0.023608064, 0.003097587, 0.016134296, 0.013146202, 0.010984602, 0.031873006, 0.03780681, 0.02975379, 0.0025836772, -0.010942218, -0.026744504, 0.011055242, -0.055523455, 0.0046446146, 0.011592111, 0.015088817, 0.0013845543, 0.033370584, -0.031646956, -0.032042544, 0.013146202, -0.018733868, 0.01908707, 0.05473228, 0.010871577, -0.00049139315, 0.008582824, -0.03735471, 0.005509961, -0.0034313637, 0.025020875, 0.013796095, -0.029669022, -0.00374748, -0.6175677, -0.01106937, 0.030686244, -0.020740058, 0.0036980317, 0.011839353, 0.0074737677, -0.018281769, -0.014905151, 0.023593936, -0.022025716, -0.0136053655, 0.0036344551, 0.008554568, -0.009303357, -0.0099815065, 0.021050878, -0.035065956, 0.01215017, 0.024046035, -0.013534725, 0.019369632, -0.022166997, -0.022336535, -0.011994761, 0.009875545, -0.0137678385, 0.007664497, -0.010242877, 0.030997064, -0.011358997, 0.0125104375, 0.009649496, 0.012729423, 0.053884596, -0.009331614, -0.033229303, 0.017646004, 0.023014683, 0.030997064, -0.022421304, -0.011648623, 0.006007977, -0.0003958077, -0.014311771, 0.0074031274, 0.033681404, -0.019567426, -0.0029015597, -0.004125407, 0.023735218, 0.0030640329, 0.003076395, -0.0022163466, 0.0034154695, -0.0008538674, 0.0038110565, -0.018945789, 0.012948409, 0.005513493, -0.0037156919, 0.027493292, -0.016671164, -0.024667673, -0.04221478, 0.008031828, 0.015625685, -0.017660132, 0.025557743, -0.024201445, 0.004291412, 0.014891023, -0.019892372, 0.0047717676, 0.013471149, 0.0068662595, 0.019963013, -0.023254862, -0.0004543069, 0.031957775, 0.007353679, -0.014128106, -0.004545718, 0.0012468053, 0.038654495, 0.0029757323, -0.04402318, -0.02042924, -0.0001091065, -0.025331693, 0.0199065, -0.016812446, -0.0060892133, -0.031957775, 0.007826971, 0.019284865, -0.0039064214, -0.0049942853, 0.0027143622, -0.036959123, 0.0118322885, -0.005396936, 0.010716168, 0.0120018255, 0.04190396, 0.011577982, -0.00028521114, 0.0026419556, 0.022025716, -0.023240734, 0.0031187793, -0.023975395, -0.022096356, -0.015272482, 0.00086269743, -0.022873404, 0.032042544, -0.0077139456, -0.010094532, -0.007381935, 0.02482308, -0.008533375, -0.006873323, -0.0035620485, -0.0018984642, 0.036054924, -0.004980157, -0.018027462, -0.008462735, -0.0056830305, -0.028891975, -0.034161758, 0.029273435, 0.0028786014, 0.00962124, -0.0076503693, 0.013245099, -0.021644257, 0.013372252, -0.028171442, -0.012072466, -0.028821336, -0.009162077, -0.0014419497, -0.030912295, -0.034161758, -0.016741805, -0.0135135325, -0.0063682436, 0.010511311, -0.0030587348, 0.0025289308, -0.012814192, 0.0067602983, 0.014495436, -0.003888761, -0.0029669022, -0.014036273, -0.02893436, -0.009183269, -0.0072830385, 0.020259703, -0.014834511, 0.0016609353, -0.0074313837, -0.03311628, -0.011486149, 0.02997984, -0.004814152, -0.013866736, 0.0011479086, -0.00946583, -0.0015178884, -0.004676403, 0.0013545321, 0.017052623, -0.0102358125, 0.015823478, 0.004800024, 0.0043408605, 0.006696722, -0.0071735457, 0.0043549887, -0.008462735, 0.031675212, -0.0037015637, 0.011408445, 0.019185968, -0.024597032, 0.011740455, 0.0020927256, -0.0048812605, -0.01476387, 0.0006459193, -0.0033960433, -0.003339531, 0.0020697676, 0.01364775, 0.011733391, 0.011380189, 0.015738709, -0.003758076, 0.003212378, 0.0045103976, 0.015470276, -0.031675212, -0.013817287, -0.02699881, -0.0031540995, 0.019200096, 0.004114811, -0.011083499, 0.0043337964, -0.010334709, -0.019412016, 0.041282326, -0.005347488, 0.030771013, -0.024554648, 0.010603143, 0.0017739602, -0.012849512, 0.008978411, -0.0062976032, -0.004309072, 0.008794745, 0.019652195, 0.02201159, 0.005622986, -0.018013334, -0.018747997, 0.023438526, 0.020711802, -0.00786229, 0.014594333, -0.013810223, 0.03517898, -0.017801413, 0.025600128, -0.0046163583, 0.008787681, 0.013541789, 0.025557743, -0.021234542, 0.03325756, -0.011062306, 0.029866815, 0.0038110565, -0.021291055, 0.015074689, 0.0028891976, 0.0004300242, 0.006138662, -0.009903802, -0.00064900983, -0.025303436, 0.014495436, 0.0044574174, 0.0103205815, 0.0059726564, -0.023579808, -0.020895468, 0.011980633, -0.010984602, 0.0069015794, -0.009155013, 0.0057430747, -0.008024764, -0.004913049, -0.00041854513, -0.0122561315, -0.0074525755, 0.011768712, 0.0013960334, 0.0036061988, 0.009706008, 0.026363045, 7.202022e-05, 0.01826764, 0.009819034, -0.019454401, -0.021912692, -0.0020344472, 0.01662878, -0.018366538, -0.006322327, 0.0005373095, -0.016501628, 0.008201365, 0.018507818, -0.0026366578, -0.008752361, -0.006304667, 0.014707358, 0.006272879, -0.027931264, 0.0060715536, -0.008201365, -0.018705612, -0.0031117152, 0.0028415152, 0.020485753, -0.023466783, 0.0064212237, 0.028171442, 0.002940412, -0.014608461, -0.012164298, -0.0028397492, -0.0013863203, -0.0010216386, -0.018140487, -0.0066437414, -0.020047782, 0.0062446226, -0.00022152429, -0.0029015597, -0.0016600523, 0.009939122, 0.022082228, -0.0064989286, -0.022082228, -0.025388205, 0.03876752, 0.080925785, 0.05227399, -0.007947059, 0.028962616, -0.0014790361, 0.0039382093, -0.030629734, -0.03893706, 0.032551154, -0.022350663, 0.009381062, 0.01917184, 0.015060561, -0.0015134733, 0.050804667, -0.012701167, 0.0017624812, -0.0068839192, -0.011641559, -0.017730772, -0.0064212237, 0.0044856733, -0.0016512224, 0.024582904, 0.031505674, 0.008010636, 0.045238193, -0.00015717518, 0.007975316, -0.013739582, -0.012906024, 0.008674657, 0.014707358, 0.005329828, -0.015682196, 0.01692547, -0.0009209759, 0.021644257, 0.002702, 0.028877847, -0.0017739602, 0.019143583, 0.008130725, 0.0010278197, 0.013230971, -0.013471149, -0.020768315, 0.019722836, -0.0103205815, -0.027337885, 0.029725535, -0.00812366, -0.03289023, -0.0059973807, 0.015187713, 0.0015585066, -0.0075373445, -0.0065024607, -0.012630526, 0.00020706505, -0.012298516, -0.026108738, 0.0016344452, -0.00404417, 0.002551889, -0.013499405, 0.009762521, -0.0028997937, -0.029584253, 0.017490594, 0.010829193, -0.03512247, -0.046764027, -0.0025589531, 0.0320708, 0.0015849968, -0.0075585363, 0.0022110485, -0.005237995, 0.0016591694, -0.0018843361, -0.0143612195, 0.0072830385, -0.018677356, 0.017193904, -0.0058490355, 0.0019496785, 0.030855782, -0.01230558, -0.008385031, 0.014417731, -0.014636718, -0.022251766, 0.0023788197, 0.0101510435, 0.0011046412, -0.015752837, 0.020090166, 0.018790381, -0.033370584, -0.011281292, -0.0050507975, 0.010581951, -0.0037262877, -0.023692833, 0.015625685, 0.015978888, 0.019510914, -0.005456981, -0.008250814, 0.027012937, -0.007636241, 0.020669417, 0.0140221445, 0.002793833, 0.019327248, 0.0016582864, 0.03512247, -0.0012953706, -0.0027532144, -0.00615279, -0.026730375, 0.012432733, 0.021502977, -0.007071117, 0.026899913, 0.013117946, -0.031816494, -0.021220414, -0.0066437414, -0.017646004, 0.0064953966, -0.010744425, -0.020019526, -0.006873323, -0.025614256, -0.003192952, 0.002279923, -0.00094570004, -0.014184618, -0.02579792, -0.035461545, 0.010659656, -0.010087468, 0.010624335, -0.022463689, -0.02490785, -0.009289229, 0.0017439381, 0.019454401, -0.007629177, -0.0047788317, -0.011196524, -0.013216843, -0.0086322725, -0.025939202, 0.011147075, -0.017250417, 0.022633225, 0.024399238, 0.019440273, 0.0028697713, 0.03175998, 0.024808953, 0.024427494, 0.005757203, -0.0017068518, -0.01007334, -0.002156302, 0.0076009207, 0.003200016, -0.008964283, 0.008695849, -0.008533375, 0.009543535, 0.018846892, -0.000668436, -0.0035602825, -0.019030558, -0.05241527, -0.039869513, 0.025755536, -0.040773712, -0.0069792843, -0.01521597, 0.007004008, 0.022053972, 0.011839353, 0.030997064, -0.015569172, 0.037467737, -0.0051744184, -0.001073736, -0.0055664736, 0.0026507857, -0.020909596, -0.010574887, -0.03034717, -0.01129542, 0.0035426226, 0.023777602, 0.016515756, -0.013972696, 0.020923724, 0.016939599, 0.0042596236, -0.014509564, -0.018832766, 0.0057395427, -0.024229702, 0.009663624, -0.012877768, -0.029103898, -0.030855782, -0.01871974, 0.008582824, 0.005216803, -0.0019902969, -0.022096356, -0.05204794, 0.007954123, 0.010426542, 0.035207238, 0.0063435193, 0.023466783, -0.00013476888, 0.007742202, -0.01498992, 0.012100723, 0.0002816791, -0.0036909676, 0.003740416, 0.019652195, -0.0013757243, 0.005658306, -0.0008573994, -0.0121713625, -0.012870704, -0.021517105, 0.017914439, 0.016501628, -0.016346218, -0.02348091, -0.036959123, -0.013442893, 0.014891023, -0.006982816, 0.024356853, 0.0019355505, -0.010878641, -0.024512263, -0.0051602907, 0.01155679, 0.008229622, 0.0044715456, -0.011175332, -0.015484404, -0.028962616, -0.00057527877, 0.003357191, -0.016826574, 0.021813795, -0.015102944, -0.00058234285, 0.026744504, 0.0031152472, -0.010560758, 0.008116596, -0.0032406342, 0.023127709, -0.018945789, 0.0032088459, -0.015611556, -0.012722359, 0.0133510595, -0.042384315, 0.001887868, 0.0014931641, -0.021008493, -0.021983333, 0.022195254, 0.012651718, -0.0054393206, 0.007819907, -0.0027090642, -0.00969188, 0.008356774, 0.0070428606, 0.0033271688, -0.026348917, -0.008476864, -0.032833718, -0.004171323, -0.0019214223, 0.00029779397, 0.003917017, 0.010334709, -0.0020750654, -0.00016611561, -0.011253036, 0.022534328, 0.0075938567, -0.013492341, 0.031138344, -0.010935154, -0.0073395506, 0.026603222, -0.010751489, -0.02543059, 0.020499881, 0.01122478, 0.03356838, 0.008476864, 0.0062304945, 0.027549805, 0.032607667, -0.0006322327, -0.0116698155, -0.027182475, 0.008031828, 0.013633622, -0.004814152, -0.0022922852, 0.02079657, 0.015159457, -0.024808953, 0.003228272, 0.004362053, -0.03743948, 0.014777998, -0.00043267323, 0.022604968, -0.0019231883, 0.012736487, -0.012538694, -0.0130967535, -0.01908707, -0.011528534, 0.005626518, -0.008222558, -0.00050640426, -0.0010287027, -0.0044503533, 0.0028997937, -0.009833162, -0.008639337, -0.013541789, -0.023777602, -0.029273435, -0.02072593, 0.01118946, 0.04495563, 0.022195254, -0.009995635, -0.0420735, 0.0008534259, -0.033003256, -0.017292801, -0.017730772, 0.010885705, 0.04040638, 0.0046481467, -0.012835383, 0.018465433, -0.01096341, 0.019426145, -0.007834034, 0.010885705, -0.012870704, -0.013061433, 0.007848162, -0.009246845, -0.019807603, -0.0075585363, 0.007240654, 0.0057042227, -0.013866736, 0.030205889, 0.022633225, 0.01782967, 0.0093104215, -0.0053792764, 0.022576712, 0.014481308, 0.004679935, -0.03670482, 0.006880387, 0.026871657, 0.0010083935, -0.012051274, -0.00050463824, 0.020217318, -0.004245496, -0.005103778, 0.007509088, 0.0051532267, -0.005471109, 0.011853481, 0.046198905, -0.02535995, 0.0052521233, 0.026984682, 0.009988571, 0.005481705, -0.008667593, 0.024370981, -0.007615049, 0.012333836, 0.017208032, -0.030290658, 0.008328518, 0.026419558, 0.017363442, -0.03467037, -0.008024764, -0.011394317, 0.002947476, -0.008024764, -0.0014304707, 0.016134296, -0.0033819152, 0.014389476, -0.015328994, 0.008554568, -0.009550599, -0.022929914, -0.012460989, -0.0040724264, -0.0043761805, 0.0022110485, -0.001470206, -0.037241686, 0.0016679994, -0.0038463767, -0.022053972, 0.00030507878, 0.23486562, 0.012164298, 0.013238035, 0.032240335, -0.0009624772, -0.016671164, 0.015300739, 0.0027267244, 0.00615279, 0.008879514, -0.024441622, -0.00091920985, -0.03407699, -0.01256695, 0.037976347, -0.011500278, -0.033653148, -0.019920629, -0.010002699, -0.015244226, 0.016713548, -0.0031664616, -0.014679101, 0.005898484, 0.018620843, -0.011683944, -0.022619097, 0.01230558, 0.020669417, 0.023834115, -0.014679101, 0.002271093, 0.018592587, 0.0035708786, -0.005721883, -0.005460513, 0.026052227, 0.007381935, 0.012651718, 0.016981984, 0.02222351, -0.00075497065, -0.008992539, -0.008950155, 0.011909993, -0.004605762, -0.010129851, 0.010483054, 0.005110842, 0.00034613858, -0.03998254, 0.0045881025, 0.030827526, 0.014297643, -0.018903404, 0.0067497026, -0.017843798, 0.02811493, -0.016953727, 0.02930169, -0.0040653623, 0.027422654, -0.006385904, 0.025981586, -0.009882609, 0.014594333, -0.029329946, 0.0054993653, 0.011097627, -0.027436782, -0.0067426385, 0.0021368759, -0.019355504, 0.01678419, -0.027337885, -0.029358203, 0.023819987, 0.02706945, 0.03289023, 0.03102532, -0.024936106, 0.0031788237, 0.005534685, -0.01790031, -0.00749496, -0.04713136, 0.028298596, -0.024314469, -0.03752425, -0.029866815, -0.01931312, -0.021757282, -0.011577982, 0.0032671243, 0.012913088, 0.003775736, -0.0051532267, 0.03698738, -0.008250814, -0.009607112, -0.0143612195, 0.020471625, 0.027041193, 0.0058313757, -0.01840892, -0.022491943, 0.004556314, 0.018140487, 0.017349314, -0.006022105, -0.011175332, -0.0012883067, 0.028256211, -0.00051920785, -0.0039770617, 0.019680452, -0.01073736, -0.004407969, 0.015046433, -0.013068497, -0.0025324628, -0.007904675, 0.0059797205, 0.0062552188, -0.012665846, -0.018197, -0.026235892, -0.010419478, -0.013407572, -0.030516708, 0.017109135, -0.012983729, 0.027606318, -0.027154218, -0.01669942, -0.011994761, 0.009416383, -0.007883483, 0.022393048, 0.008151917, -0.02051401, 0.018521946, 0.010716168, 0.020754186, 0.01633209, -0.020287959, -0.010327646, 0.007622113, -0.0055700056, -0.009804905, -0.02722486, 0.018239385, -0.021050878, -0.013633622, 0.0006529834, -0.0079611875, -0.027987776, -0.04303421, 0.0007571782, 0.0007713063, -0.03444432, 0.018747997, 0.023961267, -0.0053121676, -0.026970554, -0.037693784, -0.18219605, 0.028807208, 0.006407096, -0.014163426, 0.027705215, 0.0040229782, 0.025670767, 0.01044067, -0.0039664656, 3.6424022e-05, 0.00012880859, -0.0021969203, -0.03280546, -0.037778553, -0.011316612, 0.019525042, 0.0152018415, 0.02668799, 0.041310582, 0.001201772, 0.0090985, -0.022802763, 0.003376617, 0.0040759584, -0.02140408, 0.013245099, 0.00055585266, 0.017448211, 0.0055417493, -0.019779347, -0.018691484, -0.014219938, 0.016911343, 0.016657036, 0.018917533, -0.006311731, -0.009183269, -0.010193428, -0.012468053, 0.028595285, 0.03526375, 0.0225202, 0.014566077, 0.010306453, 0.0019708707, 0.0044715456, 0.00031390885, 0.010497183, 0.02155949, -0.019849988, 0.010009763, -0.033822685, -0.004005318, 0.012807128, -0.008738234, -0.006262283, 0.0003675515, -0.0052591874, -0.0015867628, -0.006392968, -0.0064742044, -0.008476864, 0.0067426385, -0.023424398, -0.04591634, -0.03811763, -0.022152869, -0.01917184, -0.04241257, 0.01535725, -0.02356568, 0.0012997857, 0.017603619, -0.0015328994, -0.007127629, -0.0039523374, -0.02497849, 0.01692547, 0.00095453014, 0.026334789, 0.019638067, 0.0043585207, -0.009769585, 0.013520597, -0.011860545, 0.009889673, 0.0020326811, 0.00460223, -0.03599841, -0.014537821, 0.010977538, -0.016501628, -0.019638067, -0.004969561, 0.00024569657, 0.006025637, 0.018239385, -0.0023346695, 0.0017306929, -0.02335376, -0.0053051035, 0.004665807, -0.03243813, -0.004849472, 0.030205889, 0.014036273, 0.010264069, 0.015385507, 0.02490785, -0.00036048744, -0.034416065, 0.0074667037, 0.033031512, 0.031562187, -0.020528138, 0.02177141, -0.00019381994, -0.0066543375, 0.011620367, -0.0073466147, 0.056032065, -0.01215017, -0.005464045, 0.000119095515, 0.013711327, -0.028764823, -0.11511581, -0.026716247, 0.021135645, 0.013831415, -0.003998254, 0.024102548, -0.02304294, 0.029838558, -0.037156917, 0.05473228, 0.0013977995, -0.026829273, -0.013817287, 0.026956426, 0.02014668, -0.019058814, -0.016190808, -0.008363838, -0.03144916, 0.029499484, -0.004598698, -0.014085721, 0.017773157, 0.01849369, -0.033907454, 0.011182396, -0.014693229, 0.012616398, 0.0062552188, -0.012136043, 0.016473372, 0.0043761805, 0.0074525755, -0.029584253, -0.0011479086, -0.0025130368, -0.016515756, -0.013202715, 0.014509564, -0.019200096, 0.002550123, 0.013739582, 0.020330343, -0.023876498, -0.021912692, 0.000674617, -0.031562187, 0.019736964, 0.0031382055, -0.01368307, -0.012284388, -0.0006613719, -0.024229702, -0.021686641, 0.01975109, -0.0055700056, -0.015484404, -0.015272482, 0.0125104375, -0.0029598381, 0.008010636, -0.018832766, -0.0067461706, -0.0012167831, 0.021785539, 0.004662275, -0.0059373365, -0.017716644, -0.0012344432, -0.019256609, -0.002664914, 0.010249941, -0.015187713, 0.033229303, -0.022181125, -0.0045810384, -0.009303357, -0.009995635, 0.025105644, 0.00563005, -0.008978411, -0.02527518, -0.013746646, -0.03794809, 0.004040638, 0.025967458, 0.019553298, -0.009232717, -0.0043232003, -0.037411224, 0.017363442, 0.016162552, 0.0041006827, -0.013047306, 0.0092185885, 0.014566077, -0.0037298198, -0.02103675, 0.017886182, 0.033653148, -0.018917533, 0.01397976, -0.05659719, 0.017476467, -0.008568696, -0.018550202, -0.01316033, -0.0035832408, -0.007777522, 0.007812843, -0.013796095, 0.00831439, -0.026292404, 0.023325503, -0.017123263, -0.006509525, -0.013845543, -0.015752837, 0.026391301, -0.024554648, 0.009875545, 0.009522343, 0.013329867, -0.0017015537, -0.010242877, -0.0005245059, -0.0012679974, 0.0002516569, -0.0411693, 0.012609334, 0.011097627, -0.0407172, 0.013301611, -0.0160354, 0.01640273, 0.006753234, 0.01152147, 0.0039770617, -0.01178284, 0.030403683, -0.0059903166, 0.054421462, -0.016883086, -0.038965315, -1.2375889e-05, -0.042130012, -0.009755457, 0.0059232083, -0.015244226, -0.015272482, 0.008222558, 0.0023646916, 0.012891896, 0.025967458, -0.034642115, -0.018917533, 0.0004896271, -0.022548456, 0.026419558, 0.014163426, -0.0029103898, -0.0056900945, 0.019115327, 0.014212874, -0.0033995754, -0.024116676, 0.010603143, -0.011168268, -0.018465433, -0.02790301, 0.00913382, -0.009289229, 0.0011152374, -0.006456544, 0.0154561475, 0.014707358, 0.00013796978, -0.0043443926, 0.00015397428, -0.0059903166, -0.01826764, 0.027210731, 0.005467577, 0.002000893, -0.002419438, 0.031336136, 0.024370981, 0.0031364395, 0.004136003, 0.0037686722, -0.00695456, 0.00995325, -0.0038605048, 0.0043373285, -0.0034878762, -0.0049024527, 0.0015426126, 0.006018573, -0.005598262, 0.013570045, 0.017490594, -0.0023399675, -0.005601794, -0.0009011082, 0.004128939, -0.03249464, -0.013407572, 0.02572728, -0.01397976, 0.0024423962, 0.005340424, 0.017532978, -0.0020962576, -0.007254782, 0.0036768394, 0.02527518, -0.01669942, -0.021545362, 0.0034437256, -0.016091913, -0.032409873, 0.058942456, 0.012814192, 0.0027426186, 0.03385094, -0.0013545321, 0.031279627, 0.010313517, 0.019878244, -0.03947393, 0.013880864, -0.028171442, -0.00399119, -0.012609334, 0.00016015532, -0.023254862, 0.0013933844, -0.02640543, 0.0005249474, 0.027775856, 0.030064609, 0.07600921, 0.01767426, -0.0011505575, -0.0045845704, -0.009706008, 0.0073324866, 0.018168744, 0.011457894, -0.013760774, -0.018211128, 0.019002302, 0.005407532, 0.01999127, -0.029386459, -0.017504722, 0.0023805858, -0.007551472, 0.028694183, -0.013216843, 0.0019019962, 0.030234145, 0.0320708, 0.034896422, -0.0010083935, -0.020132551, -0.011768712, 0.019553298, -0.00068521313, -0.01207953, -0.052613065, 0.012023018, 0.0010278197, -0.03057322, -0.023904754, 0.015470276, 0.028920231, -0.011514406, -0.0058243116, 0.01767426, -0.0027691086, 0.00080176996, 0.009762521, -0.010977538, -0.009027859, -0.0043903086, -0.016981984, 0.00079691346, -0.023904754, -0.018211128]" 3769533,I'm sick to death of Android,http://www.zdnet.com/blog/perlow/im-sick-to-death-of-android/20242,102,1332992677,141,colinprince,"[0.012286317, -0.016731448, -0.0045628166, -0.01853371, -0.021021908, 0.007444418, -0.0018291615, -0.008527121, -0.027343275, -0.008749041, 0.02373875, 0.0056892303, -0.010315932, 0.010161261, -0.008621269, 0.015332677, 0.041075435, 0.017592229, -0.0029286759, 0.013631288, -0.025823457, 0.0017417383, -0.01990558, 0.008574194, -0.0039138678, 0.021169854, 0.040779542, -0.009623272, -0.00031417698, -0.01352369, 0.023967395, 0.03564175, -0.04559454, 0.008392624, -0.034996163, 0.0012869698, -0.0019418029, -0.014821588, -0.00090365286, -0.022044085, 0.037713006, 0.012622559, -0.00782101, -0.009986415, -0.011116191, 0.012239242, -0.013409368, -0.0007283862, -0.009320654, 0.0056186193, -0.0057228543, 0.026267298, -0.017686378, -0.00808328, -0.009125633, -0.0006451661, -0.026859084, -0.0013508559, 0.024182592, -0.0013794366, -0.010497504, 0.05094753, -0.0053059133, 0.0024394423, -0.021492647, -0.008365724, -0.0016786928, 0.00013376164, -0.00690643, -0.0019468465, 0.03270971, 0.01998628, 0.0032766873, 0.035480354, 0.015978264, -0.007471318, -0.021438848, 0.0031774957, -7.076206e-07, -0.008506946, -0.0050268318, -0.024370886, -0.009226506, 0.014969535, 0.012165269, -0.0049326834, 0.003745746, 0.025567912, 0.00137019, -0.015964814, 0.013073125, 0.0054874844, 0.0155478725, 0.03507686, -0.009784669, 0.022407228, -0.007921883, 0.013826309, -0.0072897463, 0.0025251843, 0.017498082, -9.498862e-05, -0.025890704, -0.011075842, -0.04088714, 0.008607819, 0.043012194, -0.018802704, 0.03359739, -0.01613966, -0.010342833, 0.009078559, 0.00391723, -0.028728595, 0.00083766517, -0.0333015, -0.0010053663, 0.007088001, -0.026079, 0.010632001, 0.014646742, 0.017309785, 0.022501376, -0.014794689, 0.016449004, -0.019528989, -0.022999017, 3.5095356e-05, 0.00902476, -0.0046973135, 0.03523826, 0.0061397958, 0.0039374046, 0.00079899724, -0.0019804707, 0.011203614, -0.020349422, 0.0012852886, -0.008755766, -0.023590803, 0.02707428, 0.006230581, 0.014808138, -0.0041223383, 0.022070985, 0.009354278, 0.027316375, 0.021801991, 0.017901573, -0.0074780425, 0.010833747, -0.02087396, 0.003987841, -0.002162042, -0.0021065618, 0.0062137693, -0.006442414, 0.013382468, -0.023819448, -0.011351561, 0.027491221, -0.0062944675, -0.0005581633, -0.008607819, -0.0011011956, 0.027302925, 0.016502803, 0.006839181, -0.0027824102, 0.0062171314, -0.014458446, 0.011815576, -0.014189451, 0.025285468, 0.011539857, -0.0008414479, 0.0019333968, 0.041855518, -0.001967021, -0.008809565, -0.007881534, -0.0051747784, 0.042474207, 0.007511667, -0.01946174, -0.022891417, 0.024532283, -0.0022477838, -0.003799545, 0.0027084367, -0.0018375675, 0.018775804, -0.029616276, -0.0041088886, -0.6447256, -0.0057463916, 0.0092870295, 0.00557827, 0.016502803, 0.0055883573, 0.010551303, -0.013194173, -0.03849309, 0.022756921, -0.032548316, -0.00016601995, 0.006550012, -0.0139473565, -0.0031018408, -0.010806847, 0.021546446, -0.03045016, 0.002969025, -0.009831743, -0.009273579, -0.007047652, -0.028647896, -0.035937645, -0.015144381, 0.011217064, 0.013234521, -2.6492264e-05, -0.033947084, 0.049656354, -0.024303637, 0.018305065, 0.0189641, 0.008217777, 0.045890436, -0.021237103, -0.039461467, 0.037847504, 0.0019602962, 0.0072359475, -0.024841627, 0.008157253, -0.016005162, -0.0047746496, 0.0015979945, -0.0064525018, 0.036744628, -0.028325103, 0.0033338487, 0.0031354653, 0.04546004, -0.010289033, -0.012541861, -0.003940767, -0.0047880993, -0.0034179094, 0.013429542, -0.018116768, 0.0038096323, 0.021788541, -0.0066307103, 0.018157117, -0.023146963, -0.037874404, -0.01188955, 0.0066407975, -0.013113474, 0.010867371, 0.004186224, -0.018923752, -0.0023015828, 0.01211147, -0.026993582, -0.014323948, -0.0032716435, 0.0012247649, 0.01998628, -0.0015030059, 0.015453724, 0.025823457, 0.01615311, -0.01377251, -0.0035507253, -0.0056858677, 0.06493523, 0.014297049, -0.023200762, 0.011264138, -0.00027761055, -0.016032062, -0.0028580648, 0.0013567401, -0.0035776247, -0.033005606, -0.00015414636, 0.02330836, -0.006449139, -0.010295758, 0.0050604558, -0.01763258, -0.022837618, 0.0016240533, 0.03034256, 0.013907007, 0.020833611, 0.026764937, -0.024841627, 0.013106749, 0.03424298, -0.04546004, 0.015776519, -0.00037322965, 0.009334103, 0.017350135, 0.010020039, -0.019797983, 0.018358864, 0.0014651786, 0.01615311, -0.027195327, 0.025473764, -0.016247258, -0.010974969, -0.019354142, 0.0047275755, 0.018789254, 0.012245967, -0.019286893, 0.008890263, -0.0038096323, -0.0033254426, -0.017255986, 0.016314507, -0.008311925, 0.016771797, 0.016085861, -0.014444996, -0.021775091, 0.011418809, -0.034458175, 0.00061406364, -0.004865435, 0.0040281904, -0.011264138, -0.0130462255, -0.0025403153, -0.00615997, -0.013059675, -0.0032060763, -0.018829603, 0.018816154, -0.011109466, -0.0033187177, 0.018318513, 0.016919743, 0.0029488504, -0.017202187, -0.028405802, -0.027168429, -0.009078559, -0.0025285468, 0.013765785, -0.013678362, -0.0050503686, 0.009542574, -0.01849336, -0.0333015, 0.009112183, 0.0012600704, -0.03279041, 0.0030278675, 0.0024697043, -0.014687091, 0.0028933703, -0.028567199, -0.0043543456, -0.018856503, -0.0053529874, -0.0026899434, 0.009441701, 0.03139164, 0.010786673, -0.005359712, -0.028352004, 0.030988147, -0.011842475, 0.018843053, 0.02560826, -0.018923752, 0.023066264, -0.0059918487, -0.001731651, -0.012588935, -0.010860646, -0.019703835, -0.017336685, 0.010497504, 0.00045687007, 0.026253847, 0.028271304, 0.021627145, -0.0057463916, 0.008345549, -0.01712149, 0.015117481, -0.018426113, 0.019596238, 0.00020626401, 0.010282309, 0.03136474, -0.007504942, -0.011607106, -0.012071121, -0.022972116, 0.0137388855, 0.026321096, 0.010900996, 0.022958666, -0.010154536, 0.0040719016, 0.0064289644, 0.008278301, 0.027652618, -0.0054471353, -0.002592433, 0.019125497, 0.0019098598, 0.020981558, 0.008237951, -0.02184234, -0.008076555, 0.01761913, 0.00044468127, -0.017471181, 0.033032503, 0.03416228, 0.029508678, -0.008930612, 0.037201915, -0.017444283, 0.0013231159, 0.016314507, 0.017269436, -0.005521109, 0.02235343, 0.0064256024, 0.03838549, -0.002664725, -0.030584656, -0.010046938, -0.010262134, -0.011465884, -0.011432259, -0.008379173, 0.00881629, -0.027154978, 0.0072762966, 0.0021973476, 0.035345856, 0.0033019055, 0.0030530856, 0.00926013, 0.0060422854, 0.001645909, -0.005632069, 0.0036213363, 0.0076596136, -0.009939341, -0.013247971, 0.0050604558, -0.012407363, -0.0033472984, 0.022703122, -0.020779813, 0.004112251, 0.010383181, -0.0032565126, -0.0064659514, 0.012474612, 0.029293483, -0.0052823764, -0.0019502089, -0.0037390213, 0.022877969, 0.015911015, 0.014767789, -0.013120199, -0.008271576, 0.017188737, 0.00854057, -0.0096367225, -0.004206399, 0.0076596136, -0.010793398, -0.0046569644, 0.0061297086, 0.011102742, -0.0165835, 0.013611114, -0.00053000293, 0.02894379, 0.0031909454, -0.021075707, -0.01659695, 0.03225242, -0.008648168, -0.0019081786, -0.028217506, 0.00073216896, -0.033167, -0.011976973, -0.024922324, 0.00254704, -0.014350848, 0.014861937, 0.0072762966, -0.016489353, 0.006886255, 0.042285908, -0.013745611, -0.005006657, 0.004458581, -0.011546582, 0.0011138046, 0.09796774, 0.0071485243, -0.011001868, 0.031606834, -0.02420949, 0.024061544, -0.009105458, -0.031472337, 0.04137133, 0.012602384, -0.0024159055, -0.008473322, -0.026630439, -0.001132298, 0.011486058, -0.0006682828, 0.011412085, 0.011613831, -0.02515097, -0.0025050098, 0.014888836, 0.01021506, 0.0190448, 0.007222498, 0.028540298, 0.008533846, -0.000542612, 0.013032775, -0.0103293825, -0.022649324, -0.020403221, 0.0006098606, -0.030665355, 0.012387189, -0.012185443, 0.028889991, -0.006402065, 0.023227662, 0.0068828925, 0.014566043, 0.00811018, -0.0005199156, 0.008715416, -0.0025100533, -0.003910505, -0.02564861, -0.008708691, 0.024935775, -0.02423639, -0.023120062, 0.0013441311, -0.003078304, -0.017780526, 0.0019182658, -0.005961587, 0.0020090514, -0.003022824, 0.013496791, -0.024532283, -0.004630065, 0.0041324254, -0.0048856097, 0.011506232, -0.008506946, -0.00851367, -0.0261328, -0.023873247, -0.0031119282, -0.02095466, -0.0026764937, 0.006681147, -0.028836193, -0.031122645, 0.0151309315, 0.03362429, -0.0126965325, -0.00032468457, 0.002609245, 0.018654758, 0.028701697, 0.012071121, -0.012118195, 0.017861225, -0.028916892, 0.0026193324, 0.012299766, -0.028782394, -0.012602384, -0.015036783, 0.01753843, 0.024384337, -0.011681079, 0.0013718711, 0.016960094, 0.015655471, -0.0044552186, 0.017753625, 0.0082446765, 0.0034767517, -0.0135304155, -0.002577302, 0.009320654, -0.01332867, -0.03034256, 0.0015971538, 0.017874673, 0.0006010342, -0.014821588, -0.028540298, 0.014673641, -0.0054740347, -0.02090086, -0.010403356, -0.000787649, 0.004529192, 0.0046636895, 0.006025473, 0.029696975, 0.0129722515, -0.017013893, -0.03956907, -0.022555174, 0.014054954, 0.02519132, -0.010571477, 0.009213056, 0.017202187, 0.007088001, -0.033839487, 0.0015130931, 0.014539144, 0.01613966, -0.004441769, -0.015157831, 0.00064306456, 0.021008458, -0.021519547, 0.011257413, -0.006946779, -0.01657005, -0.019865232, 0.015373026, 0.01657005, -0.029616276, -0.008977686, -0.02940108, 0.00052075624, -0.002405818, -0.01470054, 0.014108753, -0.027356723, -0.0027555106, 0.008251402, 0.0017350134, 0.004529192, -0.015937915, -0.002977431, -0.036475632, 0.01236029, 0.047208507, 0.0038499814, -0.014001155, 0.033947084, 0.012192168, -0.0076999627, -0.0014996434, -0.037390213, 0.0034212717, -0.012528411, 0.022716573, -0.004223211, 0.018869953, -0.020188024, -0.009986415, 0.0009835105, 0.017686378, 0.012797406, 0.00059304846, -0.034431275, -0.027249126, -0.008385899, 0.0032548315, -0.021277452, 0.0032060763, -0.019233095, -0.008547295, 0.0036146115, 0.009724145, -0.0016660837, -0.014458446, -0.012387189, 0.008607819, 0.004159325, 0.009253405, 0.004441769, -0.043926775, -0.009065109, -0.030477058, -0.00487216, -0.008681792, 0.0032430629, 0.007471318, 0.013483341, 0.012508237, -0.02282417, 0.031499237, -0.012736882, -0.031122645, 0.018291615, -0.01378596, 0.012568761, 0.0017266074, -0.012494787, -0.0011432259, -0.038735185, 0.009784669, 0.0029421255, 0.012568761, -0.013718711, -0.008412798, 0.014337398, 0.023886697, 0.016032062, -0.00012209821, 0.00618687, 0.008634718, -0.0059884866, -0.04236661, -0.0140146045, 0.010692525, -0.0023755562, 0.024881976, 0.0075721904, 0.0070947255, -0.021586796, -0.0077403123, 0.009172707, 0.0016164879, -0.009623272, 0.0100536635, 0.04322739, -0.0027134803, -0.004317359, -0.014229801, -0.018210916, 0.0063818907, -0.013052951, 0.008143803, -0.009132357, -0.02379255, -0.0139473565, 0.008022756, -0.015763069, 0.011317937, -0.0003028288, 0.01804952, -0.03421608, -0.024465036, 0.0052151275, 0.016381755, -0.022017187, -0.0040315525, -0.029535579, -0.004801549, -0.0053126384, 0.013052951, -0.0042433855, -0.026738036, -0.026859084, 0.025904154, -0.016314507, -0.0038499814, 0.017363584, -0.016771797, -0.00735027, -0.013382468, -0.001511412, 0.004549367, -0.004841898, -0.0028076284, 0.023590803, 0.012440988, -0.009347553, -0.0069535035, -0.0076730633, -0.030154265, -0.029616276, -0.0063449037, 0.0009650172, 0.001241577, -0.03480787, 0.0071149003, -0.023832899, -0.01136501, 0.0016038787, -0.035292055, -0.0075587407, 0.021707842, -0.010201611, 0.007074551, 0.048311383, 0.011560031, -0.034565773, 0.015601671, -0.0066475226, -0.01517128, 0.0045224675, -0.008204327, -0.01562857, -0.018345414, -0.007175424, -0.0054471353, 0.004081989, -0.010531128, 0.0020006453, 0.01849336, 0.017269436, -0.0051512416, -0.037766803, 0.018762356, -0.004902422, 0.0056690555, 0.019192746, 0.01613966, 0.009757769, 0.0037558335, -0.0027840913, -0.008695242, -0.0051411544, -0.008594369, -0.008137079, 0.017672928, -0.0015576453, -0.016341407, -0.011264138, -0.00629783, -0.002114968, 0.00950895, 0.00974432, 0.00510753, 0.012978977, -0.015399925, 0.011842475, 0.0067820195, 0.012985702, 0.006855993, -0.02036287, -0.0135976635, -0.038304795, -0.001061687, -0.022474477, 0.045675237, 0.017417382, 0.012709983, -0.019381043, -0.016274158, -0.031068847, -0.0379013, 0.01022851, 0.018210916, 0.019757634, 0.010551303, 0.014108753, 0.020712564, -0.016865944, -0.012568761, -0.028244406, -0.015722718, 0.0041929493, -0.007410794, 0.009804844, -0.015077133, -0.03833169, 0.01166763, 0.019421391, -0.008876813, 0.014525694, 0.0016719679, 0.0165835, 0.025877256, 0.009737595, 0.02423639, 0.025998302, 0.018641308, 0.03572245, -0.018896852, 0.014189451, 0.0062642056, 0.003360748, 0.012588935, -0.021465749, 0.017309785, -0.0108875455, -0.0017417383, 0.01021506, -0.013691812, -0.0075251167, 0.014956085, -0.0034801143, -0.001911541, -0.0033859662, -0.00041294834, -0.01116999, -0.0032329757, -0.0011810532, 0.00899786, 0.010262134, 0.013234521, 0.017430833, -0.03284421, -0.01858751, 0.02282417, 0.026684238, -0.019273445, 0.0023688313, 0.016381755, -0.026939783, -0.0038903307, 0.021075707, 0.01140536, 0.021277452, 0.0118492, -0.013416093, 0.007874809, 0.0054538604, -0.001731651, 0.020201474, -0.007262847, 0.0019636587, 0.0011104422, -0.008506946, -0.00878939, 0.009320654, 0.0029875184, -0.014444996, -0.010914445, 0.21315111, -0.022017187, 0.031041946, 0.0380896, -0.000575816, 0.016435554, -0.00038205602, -0.00026941465, -0.013113474, 0.007067826, 0.019771084, 0.016435554, -0.00054219173, -0.011304487, 0.01612621, -0.0074309683, -0.0034414462, -0.0030665353, 0.017511532, 0.030503958, 0.013308494, -0.010941344, -0.020699114, -0.0015635296, 0.028405802, 0.0058405395, -0.029132087, 0.011660905, 0.026495943, -9.3727715e-05, -0.0048856097, -0.018910302, 0.015157831, 0.029750774, 0.007928608, -0.007646164, 0.014310499, 0.01667765, 0.00854057, 0.00546731, 0.014875387, 0.00664416, 0.0047679245, -0.010874096, 0.017054241, 0.010208335, -0.009751045, 0.0006027154, -0.006402065, 0.008923887, -0.019152397, -0.006089359, 0.008715416, -0.0036381483, -0.01665075, 0.01381286, -0.01756533, -0.0033641104, -0.017242538, -0.0019384405, 0.004125701, -0.0016711273, -0.0008048815, 0.0333284, -0.014996435, 0.011243964, -0.033462897, 0.016099311, 0.0010020039, -0.010974969, 0.0044384063, -0.0017350134, -0.028029209, 0.009838467, -0.025729308, -0.011351561, -0.0031623647, 0.01755188, 0.029562477, 0.026751487, 0.0043846075, -0.0076192645, -0.0085203955, -0.0027706416, -0.007168699, -0.03658323, 0.018264715, -0.015359577, -0.01564202, 0.009488775, -0.006563462, -0.020013178, -0.009677071, -0.019152397, 0.013880108, -0.0015895884, 0.0010776586, 0.013826309, -0.016099311, -0.01421635, -0.00027950192, 0.03900418, 0.02086051, -0.0029740687, -0.005131067, 0.0118761, 0.0033489794, 0.011035493, -0.0032716435, -0.0018089869, -0.009784669, -0.007928608, 0.013429542, -0.018130219, 0.014041504, 0.022568624, -0.02141195, -0.022958666, 0.03279041, -0.016449004, 0.023012465, -0.01115654, 0.0121383695, 0.001006207, -0.0019401216, -0.013624563, -0.014041504, 0.015157831, 0.0055177463, -0.020658765, 0.0033170364, -0.03365119, -0.007175424, -0.023927046, 0.008137079, -0.008903713, -0.0020746188, -0.008009306, -0.017336685, -0.000995279, 0.015090582, 0.023604253, 0.04556764, 0.0021738105, 0.009972965, -0.013469892, 0.014202901, 0.017592229, -0.017175289, -0.022124784, -0.0017820875, 0.03289801, 0.0009986415, -0.019259995, 0.039138675, -0.0064054276, -0.03878898, -0.0037423838, 0.021438848, 0.011741603, -0.021492647, -0.0009935978, 0.04546004, -0.009461876, -0.019703835, -0.006933329, -0.1705424, 0.026401794, 0.007229223, -0.00042408638, 0.032521416, 0.0058069155, 0.035937645, 0.002874877, 0.0020309072, 0.016704548, 0.02659009, 0.0011676035, -0.0261328, -0.0044552186, 0.019676935, 0.017847775, -0.017296337, 0.037255716, 0.03981116, 0.00521849, 0.022756921, -0.00851367, -0.0018241178, -0.019959379, 0.0011339793, 0.024034644, 0.0034364027, 0.021775091, 0.013281595, -0.016327957, -0.0009103777, -0.017713277, 0.024841627, 0.0042030364, 0.009031485, -0.012393914, -0.006845906, 0.006886255, -0.0063180043, 0.021223653, 0.012999151, 0.010531128, 0.02088741, 0.0069602286, 0.009710696, 0.009576199, 0.0022595525, -0.01850681, 0.003510376, -0.010342833, 0.035803147, -0.00095829234, -0.020013178, 0.00025533448, 0.0044384063, 0.005406786, -0.0055749076, 0.0006531519, 0.0034397652, -0.012730157, -0.014942636, -0.007955507, 0.010874096, -0.011674354, -0.025514113, -0.006940054, -0.007686513, 0.008439697, -0.03365119, 0.021654043, -0.017188737, -0.008439697, 0.020927759, -0.00499657, 0.037874404, 0.0076663387, -0.002821078, -0.011916449, 0.010342833, -0.0029740687, 0.0045628166, -0.021438848, -0.03276351, -0.014068404, -0.03661013, 0.019246545, 0.019125497, -0.015803417, -0.040940937, 0.010860646, 0.03227932, -0.01710804, -0.020174576, -0.015884116, 0.005692593, 0.006940054, 0.026025202, 0.000873391, -0.011526408, -0.008560745, 0.009529124, 0.00735027, -0.018022621, 0.030046668, 0.016771797, 0.0087961145, 0.021304352, 0.0061128964, 0.022743471, 0.015090582, -0.035937645, 0.018022621, 0.041452028, 0.013160548, -0.038573787, 0.017672928, 0.0127637815, -0.019717285, 0.013617839, -0.02902449, 0.039192475, -0.00878939, -0.0064659514, 0.00046779797, -0.00077461964, -0.042716302, -0.13116165, -0.042528003, 0.022084435, -0.006442414, -0.02999287, 0.016260708, 0.0010415125, 0.023805998, -0.010927895, 0.031956527, -0.023120062, -0.036879122, 0.0025285468, 0.0001640235, 0.023079714, -0.008823014, -0.010309208, -0.02176164, -0.017780526, 0.018923752, 0.006230581, -0.022501376, 0.0011306169, 0.0033439358, -0.0026865809, -0.040510546, -0.03510376, 0.0010297439, 0.006654247, -0.015319227, 0.028352004, -0.016744897, 0.017941922, -0.024384337, 0.0077201375, -0.0075183916, -0.019286893, 0.0062843803, 0.016865944, -0.018560609, -0.0155478725, 0.01114309, 0.021801991, -0.036771525, -0.019434841, -0.026038652, -0.02373875, 0.0045022927, 0.020040078, -0.032629013, 0.00022276094, -0.0035910744, -0.0332208, -0.019582788, 0.007370445, -0.008177428, -0.010974969, 0.0019300344, 0.022030637, 0.0026563192, -0.0018745543, 0.00059599057, -0.0015937914, -0.006946779, -0.019569337, -0.011734878, 0.0017568693, -0.009898991, 0.0048486227, -0.03704052, 0.030530857, -0.018991001, -0.018856503, 0.017928472, -0.029562477, 0.024760928, -0.036206637, 0.00039949862, -0.00950895, 0.024989573, -0.0048620724, -0.0060691847, -0.00011495305, -0.0064188773, 0.013335395, 0.009710696, 0.0016030382, -0.0009515675, 0.002883283, -0.047208507, -0.009165982, 0.028594097, 0.00855402, -0.009535849, -0.0033893287, -0.011385186, 0.022003736, 0.008708691, 0.029051388, -0.0048149987, 0.007955507, 0.01947519, -0.037363313, 0.026442144, -0.016314507, 0.0054471353, -0.013073125, -0.00042471683, 0.00995279, -0.021909589, -0.019838333, 0.014176002, -0.0139473565, 0.008984411, -0.0137388855, -0.013570764, -0.027208777, -0.016852494, -0.006331454, 0.005763204, -0.0012911728, 0.01377251, -0.00880284, -0.0261597, 0.006933329, 0.0092870295, -0.017847775, 0.018224366, -0.036045242, -0.0021553172, -0.00640879, -0.025043372, 0.009737595, -0.0017888123, 0.01947519, -0.0039273174, -0.013866658, 0.00014931287, -0.011755053, 0.015050233, -0.014835037, 0.051566213, -0.008197603, -0.03526516, 0.02797541, -0.027814014, -0.012864654, -0.014297049, -0.01994593, -0.0029757498, 0.002498285, 0.017242538, 0.001770319, 0.016798696, -0.029804572, -0.022958666, -0.0062642056, -0.036852226, -0.010363007, 0.02659009, -0.012871379, -0.01092117, 0.022582075, 0.014068404, 0.00973087, -0.043953676, 0.018816154, -0.0044854805, -0.03370499, 0.015574772, 0.01307985, -0.010322657, 0.012420814, -0.013638013, 0.019125497, 0.004599803, 0.015655471, 0.0008174906, -0.0020628504, -0.010315932, -0.009152533, 0.026697688, 0.021089155, -0.00380627, -0.024949225, 0.009865367, 0.016072411, -0.012017322, -0.02278382, 0.009266855, -0.0016038787, 0.009697245, -0.025070272, 0.007605815, 5.3168413e-05, 0.023173861, -0.006220494, 0.014054954, -0.019327244, 0.02095466, -0.021896139, 0.021748193, -0.023348708, -0.005460585, 0.019838333, -0.025124071, -0.0068089194, 0.030234963, -0.008594369, -0.013799409, -0.015453724, 0.02332181, -0.0009557705, 0.0017366947, 0.024303637, 0.008984411, -0.03507686, -0.0018947289, 0.008944062, -0.022003736, -0.018466461, 0.010827022, 0.04075264, 0.022877969, 0.008957512, -0.011882825, 0.010598376, -0.006119621, 0.028567199, -0.01710804, 0.0018594234, -0.0028378903, 0.011990422, -0.0025873892, 0.0038567062, -0.025836905, 0.0008061424, -0.023160413, -0.0012651139, 0.017444283, 0.00808328, 0.057080597, 0.0140146045, -0.0106790755, 1.4579283e-05, 0.013126924, 0.011196889, -0.0021099243, 0.0166642, 0.00690643, -0.00017306003, 0.008143803, 0.0045392793, 0.0033019055, -0.008648168, -0.0070409267, 0.020188024, -0.024438135, -0.03421608, 0.005389974, 0.009226506, 0.020093877, -0.007464593, 0.010927895, -0.0035776247, -0.020080427, -0.011707978, 0.036368035, 0.017269436, -0.0068089194, -0.050086744, 0.008325375, -0.008567469, -0.06746378, -0.009603098, -0.008184153, 0.008829739, 0.008769215, -0.00782101, 0.025500663, -0.005611894, -0.012030772, -0.0070005776, -0.01233339, -0.03470027, -0.00053756835, -0.019192746, -0.006704684, 0.011291037, -0.0151309315]" 23949566,Noprocrast (2010),http://web.archive.org/web/20100423003857/http://mmcgrana.github.com/2010/03/noprocrast.html,155,1595688288,102,ChankeyPathak,"[-0.013728225, -0.011561346, 0.011903853, -0.014147621, 0.019683646, 0.01827168, -0.018495359, -0.024003424, -0.032013886, -0.006413262, 0.022605438, -0.0068536275, 0.008912163, 0.0074862163, 0.0071716695, 0.0032083786, 0.01944599, -0.015559587, 0.0023538594, -0.014930493, -0.02447874, 0.008856243, -0.0039458163, -0.02646388, -0.025722947, -0.007660965, 0.0030668324, -0.006804698, -0.00127042, 0.015839184, 0.014147621, -0.03165041, 0.001831362, -0.008968082, -0.023765767, 0.00063302566, 0.0025670524, -0.016929613, -0.0005294873, -4.398742e-05, 0.010764495, 0.010275199, -0.001892524, -0.009757944, -0.006182594, 0.015196111, 2.2075623e-05, -0.022200022, -0.026324082, 0.009247679, 0.037158474, 0.006913042, -0.014455178, -0.014650896, -0.005909987, 0.005700289, 0.004480546, 0.029134033, 0.0026526789, -0.008660525, 0.009296609, -0.014091701, -0.031734288, 0.0013612892, 0.000110419074, 0.016006943, -0.019390069, -0.012588866, 0.00065574294, -0.013972873, 0.064363286, 0.022367781, -0.0078776525, -0.042470824, 0.028085545, -0.010442957, -0.0153918285, 0.0072136093, 0.030755699, 0.03156653, 0.023639947, -0.015433769, -0.03044814, 0.020802036, 0.028393101, -0.022563498, 0.010470917, 0.032321442, -0.0042079384, 3.527731e-05, 0.008443837, 0.050635062, 0.018593218, 0.0052564284, -0.0149724325, 0.031258974, -0.017698506, 0.030839577, 0.0034582685, -0.015727345, -0.009247679, 0.0029934382, -0.021626847, -0.014720796, -0.021752667, 0.012113551, 0.004473556, -0.0123022795, -2.2976668e-05, -0.016901653, -0.0149724325, 0.017167272, 0.0058575626, -0.016356438, 0.0009541256, -0.015042332, 0.016915634, -0.020606318, -0.017880244, -0.028826477, 0.015461728, 0.01947395, 0.040150166, -0.02442282, 0.0141965505, -0.008345978, -0.0048475172, -0.023975464, 0.015028352, -0.027847886, 0.035956208, 0.018746996, -0.0032590555, 0.00560243, 0.007000416, 0.016146742, -0.016580118, -0.0029584884, -0.032125723, -0.0045504454, 0.020242842, 0.028770557, 0.0042813327, -0.003372642, -0.021878485, 0.028463, -0.013455618, -0.0021092119, 0.031818166, 0.017614627, -0.0029357711, 0.0071646795, -0.020172942, -0.0056164097, -0.0014311884, 0.040905077, 0.019795485, 0.034753937, 0.007653975, -0.01944599, 0.0022140609, 0.029245872, 0.03855646, -0.0036976738, 0.024017405, 0.015811225, 0.04079324, -0.003507198, -0.008276079, 0.0049279016, 0.0007653975, -0.007570096, -0.046217427, -0.0027592755, 0.011589306, 0.015042332, -0.015978983, 0.006755769, 0.00064351055, 0.0025460825, -0.019879365, -0.008366948, 0.018774956, 0.047559492, 0.0018191297, 0.0026876286, 0.02955343, -0.02042458, -0.013064181, -0.00806638, -0.0023730816, 0.017041452, -0.030280383, -0.01927823, -0.61958754, -0.018970674, 0.014112671, -0.021962365, -0.019194352, 0.011498437, 0.014818654, -0.008394907, -0.018034022, 0.024674458, -0.0050537204, 0.00917778, 0.019026592, -0.011519407, -0.013413678, -0.019026592, -0.0015133201, 0.012952343, -0.020732136, 0.015559587, 0.027176853, 0.025722947, -0.014063742, 0.015028352, 0.0032188634, 0.010925262, -0.0011131465, -0.0058365925, -0.018565258, 0.017712487, -0.0071541946, 0.014958453, -0.011631246, -0.009261659, 0.06771845, -0.009289619, -0.03254512, 0.033216152, -0.006409767, 0.04202347, -0.026072444, -0.015811225, 0.01712533, -0.0064412216, -0.0031297416, -0.004302303, 0.011875893, -0.0037221385, -0.003141974, -0.018691076, -0.0053717624, 0.0051515796, -0.028281262, 0.022074204, -0.018495359, 0.010247239, 0.031007335, -0.0062455037, 0.012491007, 0.0011550861, 0.0067872233, 0.031734288, 0.00920574, 0.0050117807, -0.00014995587, -0.007744844, -0.011812984, -0.028882395, -0.0041485243, -0.004655294, 0.0022996874, -0.010289179, -0.019487929, -0.0054591363, 0.02340229, 0.032433283, 0.0010624696, -0.014790695, -0.021794606, -0.0020026152, -0.011442518, 0.026841337, -0.026995115, -0.01418257, 0.03131489, -0.005812128, -0.011854923, -0.011861914, 0.007653975, -0.0080174515, 0.016677976, 0.039367292, -0.01835556, -0.013322809, 0.0026299616, -0.015014373, 0.0004897321, -0.003578845, 0.00817123, -0.02137521, -1.9809357e-05, -0.01630052, -0.006402777, -0.013833074, 0.03875218, -0.0224237, 0.0065320907, 0.038137067, 0.022018284, -0.014567017, -0.013099131, -0.027526349, -0.004368707, 0.022032263, 0.0044001616, -0.02446476, 0.0094154375, 0.0014565269, -0.0015832194, 0.020256821, 0.028994234, 0.005882027, -0.015713366, -0.0139938425, 0.0245067, -0.008045411, 0.034054946, -0.010442957, -0.020131003, -0.014790695, -0.0015482698, -0.0010598483, 0.013511538, -0.015349889, 0.019501908, -0.0014390522, 0.0094154375, -0.018746996, 0.007014396, -0.015126212, -0.024576599, -0.006941002, -0.014343339, 0.004980326, -0.004983821, -0.027638188, -0.009953662, 0.0028466496, 0.0055465107, 0.014308389, 0.017376969, -0.0014774967, 0.010519846, 0.018117903, 0.00011511543, -0.017139312, -0.019683646, -0.02231186, -0.022996875, 0.022088183, 0.012435088, 0.015377849, 0.0028396596, -0.0081223, 0.018746996, 0.011295729, 0.020144982, 0.029805068, -0.019543849, -0.03444638, -0.00558845, -0.0012957585, -0.012351208, 0.020997753, 0.01736299, 0.00011664448, -0.022912994, 0.006378312, -0.013958893, -0.00053079793, -0.01220442, 0.0022525054, -0.018397499, -0.028071564, 0.034306582, 0.003966786, 0.043113895, -0.0030738222, -0.036235806, 0.0072765187, 0.009534267, 0.016622057, 0.0007247685, -0.025918666, 0.010505867, 0.03573253, 0.030168545, 0.019599767, 0.014497117, 0.03055998, 0.012407128, -0.0060602706, 0.0009925703, -0.03998241, 0.0059379465, -0.03855646, 0.0061581293, -0.003372642, -0.004186969, -0.013336789, 0.0010327623, -0.0026579213, -0.018900774, -0.016817775, -0.012728665, 0.02254952, 0.007619025, 0.009827844, -0.01933415, 0.009702025, 0.00034075914, 0.01523805, 0.014888554, 0.0148326345, 0.0056094197, 0.019096492, 0.014084712, 0.008031431, -0.00026780175, -0.040150166, -0.02453466, 0.0022210507, -0.00039383894, -0.0043197777, 0.018173821, 0.00357535, 0.012141511, -0.0029514986, 0.028309222, 0.0066998494, 0.004403657, 0.009010022, 0.023360351, 0.0099117225, -0.0076889247, 0.018537298, 0.031874087, 0.0005251186, -0.011659206, 0.015587547, -0.021752667, 0.0017361242, -0.010575766, -0.0037256335, 0.009366508, 0.00094014575, 0.026170302, 0.009310588, 0.034362502, 0.021556947, 0.016943594, -0.022787176, -8.906701e-05, -0.012421108, 0.00071646797, -0.02247962, 0.0035281677, -0.003959796, 0.026184283, -0.01625858, -0.022004304, -0.0036417542, -0.007639995, -0.018299641, 0.028449021, -0.013763174, -0.029805068, 0.007021386, 0.0349217, 0.0072625387, -0.024157202, -0.011799004, 0.045015156, -0.013127091, 0.006304918, -0.008220159, -0.026771437, 0.01729309, 0.019809466, 0.0038479571, -0.0034879758, 0.014580997, 0.007639995, 0.011785024, -0.005410207, -0.03875218, 0.02453466, -0.020885915, -0.010142391, -0.017558707, -0.017866265, 0.006982941, -0.0404018, -0.021738686, 0.033020437, 0.01526601, -0.010785464, -0.015405809, -0.0055535003, 0.0008117058, -0.0059204716, 0.009345538, -0.00021111777, 0.0025390924, -0.010359079, 0.0077658137, -0.014042772, 0.0038025226, 0.0073813675, 0.014399258, -0.00560243, -0.03576049, -0.012421108, 0.020746116, 0.044372085, -0.005780673, 0.012630806, 0.0071786596, -0.018802915, -0.0064517064, -0.03855646, -0.029217914, 0.02946955, -0.0141965505, 0.015559587, 0.0181878, 0.015559587, 0.010428977, 0.033383913, -0.011449507, 0.009841823, -0.0089960415, -0.020620298, -0.0033254598, -0.0064517064, 0.0124420775, 0.0050187707, 0.00817123, 0.025163753, -0.004344242, 0.022954935, 0.0029480036, 0.020564377, -0.012952343, -0.027931765, 0.013581436, 0.007332438, 0.010995162, -0.012085591, 0.018956693, -0.0017859275, 0.06028117, 0.020913875, -0.018858835, 0.012644785, 0.012386158, -0.003655734, 0.009932692, 0.010890313, -0.024129244, 0.00018741754, 0.04560231, -0.028113503, -0.039367292, 0.012917393, 0.00012199615, -0.035033535, -0.00610221, -0.009862793, -0.0017343768, -0.01319699, 0.0062385136, -0.014427219, -0.007919592, -0.016020922, -0.014776715, -0.0034477836, 0.015098251, -0.0122184, -0.03654336, -0.010743525, 0.011645226, -0.020172942, 0.0032223584, 0.021990323, -0.039814647, -0.048062768, 0.014455178, 0.033999026, 0.040206086, 0.015629487, 0.013672305, -0.021976344, 0.012518967, -0.0137771545, -0.023556069, 0.01418257, -0.012959333, 0.040178124, -0.0074233073, 0.009583196, 0.01523805, -0.027652169, 0.016901653, 0.008877213, 0.0049698413, 0.016817775, 0.002186101, 0.016677976, -0.009100891, 0.022926975, 0.008485776, 0.0038269875, -0.015923064, 0.035984166, 0.005993866, 0.0023363845, -0.016356438, 0.010799444, -0.0009436407, 0.0032520655, -0.0015989468, 0.0030598424, -0.031007335, 0.03053202, 0.007021386, 0.0036068046, -0.0005626895, 0.025177732, 0.019683646, 0.0063503524, 0.020690197, -0.0045259804, 0.019459968, -0.007828723, -0.004452586, 0.015517647, 0.0027959726, -0.021710727, 0.030699778, 0.011113991, -0.03785747, 0.0074652466, 0.00511663, -0.022633398, 0.001297506, -0.0143014, -0.058827262, -0.03847258, -0.036291722, 0.015168151, 0.0105478065, -0.02022886, -0.010065502, -0.0085766455, -0.009869783, 0.0011306214, 0.018145861, 0.008702464, -0.025988564, 0.0017317554, -0.035061497, 0.0035159355, 0.0019169886, 0.038137067, 0.02549927, -0.02748441, -0.012875454, -0.0044001616, -0.0306159, -0.019613747, -0.014525077, 0.019026592, 0.01627256, 0.028309222, 0.011414558, 0.012728665, 0.017768405, 0.030168545, -0.0074233073, -0.016594097, 0.000418959, -0.016887674, -0.0058715423, 0.009254669, 0.018635157, 0.028686678, -0.0015570072, -0.008373938, 0.0058610574, -0.010414998, -0.010890313, -0.028337182, -0.03260104, -0.01733503, 0.016426338, 0.0006754021, 0.024450779, -0.013511538, -0.010442957, -0.007038861, 0.0039003817, 0.044204324, -0.002895579, 0.016747875, 0.017055433, 0.011847934, 0.015070292, 0.020242842, -0.02031274, 0.021640828, -0.027232772, 0.012707695, 0.008625575, -0.009688045, -0.005270408, -0.016873695, 0.00033944854, -0.018537298, 0.0010502372, 0.008926142, -0.006021826, -0.0118828835, -0.0033307022, 0.012525957, -0.012602846, -0.008520726, 0.017544728, 0.021235412, -0.011896864, -0.006909547, -0.0032013885, -0.012630806, -0.03377535, -0.008283068, -0.013350769, 0.021305311, 0.012749635, 0.0070842956, 0.046720702, -0.0048125675, 0.02533151, 0.018034022, -0.008744404, 0.02138919, 0.00919176, 0.044036567, -0.017041452, -0.004655294, -0.00914283, -0.005480106, -0.0064761713, -0.03766175, 0.006521606, -0.0016627299, 0.029721187, -0.007723874, 0.0016871947, -0.020214882, 0.0056828144, -0.017978104, 0.0011341163, 0.0019169886, 0.014748755, -0.028854437, -0.007954542, -0.03170633, 0.011386598, -0.008429857, 0.0062874435, -0.0122184, -0.030727739, -0.0101284105, 0.0029148015, -0.0033097325, 0.015000393, -0.004473556, -0.01841148, 0.003666219, 0.0072904984, -0.005410207, -0.024940075, -0.01920833, 0.026170302, 0.0011524649, -0.017167272, -0.014483138, 0.0036347643, 0.00912186, -0.03850054, -0.02137521, -0.0017291342, -0.013029232, -0.01014938, 0.021095613, -0.00088510005, -0.020955814, -0.009757944, -0.0035736023, -0.0066579096, -0.03573253, 0.008975072, 0.01428043, -0.016999513, -0.0018348569, -0.023765767, 0.023458209, -0.0103311185, 0.004501516, 0.014070732, 0.010345099, 0.006706839, -0.022018284, 0.0067347987, 0.00408212, 0.02036866, -0.011323689, 0.009086911, 0.004295313, -0.0032975, 0.0101284105, -0.017139312, -0.00910788, -0.025261613, 0.0010790706, 0.0005591945, 0.011547366, 0.008618586, 0.022843096, 0.025764886, 0.0052319635, -0.017111352, -0.01526601, -0.01525203, -0.0018121396, -0.005050225, 0.0245067, 0.01119088, -0.0018418469, -0.022954935, -0.0014364308, 0.039143614, -0.03165041, 0.012351208, -0.0043232725, 0.025079874, 0.0082970485, -0.025023954, -0.022885036, -0.016552158, -0.026170302, -0.0108274035, -0.020550398, 0.0010056763, -0.008311029, 0.015727345, -0.018677097, -0.008380928, -0.012414118, -0.00070030376, 0.0040401802, -0.050187707, -0.03548089, 0.0049698413, -0.025569169, 0.0363756, -0.0049453764, -0.009639115, -0.008632565, -0.003003923, -0.021473069, 0.00019582729, -0.0049383864, 0.0068711024, 0.03240532, -0.016859714, 0.005686309, -0.022968914, -0.035033535, 0.013441638, -0.012414118, -0.021011734, -0.015433769, 0.023010854, 0.0047077187, -0.013120101, -0.041380394, 0.0029689732, 0.0038025226, 0.024744356, -0.009408448, 0.04378493, 0.031790208, -0.0070458506, 0.002449971, -0.0014285672, 0.015923064, -0.008108321, -0.01127476, -0.051725492, -0.018467398, 0.014986413, 0.01319, -0.014650896, -0.004057655, 0.011708135, 0.0006269095, -0.02955343, -0.02642194, -0.032041844, 0.0036347643, -0.016929613, 0.0064062723, -0.03268492, 0.0030161554, 0.03461414, 0.015741326, -0.0128614735, 0.0014058499, -0.002145909, -0.010505867, -0.0124420775, 0.011715125, -0.039115656, 0.011407568, 0.023751786, 0.034222703, -0.009778914, 0.013092142, -0.023234531, -0.027260732, -7.989273e-05, -0.0006574904, 0.035229255, -0.009806873, 0.009555236, -0.014084712, 0.015056312, -0.0049209115, -0.028938316, -0.0031646914, -0.039954446, 0.009345538, 0.00710177, 0.001577977, -0.040234044, -0.022899015, -0.028770557, 0.0036347643, 0.016622057, 0.19940875, -0.019641707, 0.0015805982, 0.014930493, -0.010282189, 0.01613276, 0.038584422, 0.020732136, -0.015098251, 0.028463, 0.011316699, -0.011554357, -0.028616779, -0.0012494503, 0.009499317, 0.0034809858, -0.026114384, -0.020005183, -0.01324592, -0.0057527134, 0.023094732, 0.0063748173, -0.02538743, 0.0018995139, 0.015531627, 0.0153918285, -0.007234579, 0.006336373, 0.03964689, 0.02749839, -0.017922183, 0.006416757, -0.0061511397, 0.001682826, -0.016216641, 0.0024814256, 0.01628654, 0.0070842956, 0.01123981, -0.00032044467, -0.010631685, -0.0008680621, 0.0047671334, -0.005266913, -0.0025618097, 0.0054346714, 0.006182594, -0.025848767, -0.0070458506, 0.02540141, -0.0069025573, -0.017209211, 0.045686193, -0.008744404, -0.0063608377, -0.023500148, 0.008961092, 0.000574485, 0.0072555486, 0.040010367, 0.017446868, 0.041855708, -0.029245872, 0.004858002, 0.0011812984, 0.032181643, -0.0034722483, -0.0120995715, 0.023765767, -0.010666635, 0.011959773, -0.012106561, 0.019837426, 0.018103922, 0.029134033, -0.020592337, 0.021039693, 0.012288299, 0.04778317, 0.025736928, -0.026058463, -0.007409327, 0.02447874, -0.00815725, 0.010065502, -0.051278137, 0.028421061, 2.7645725e-05, -0.0243669, -0.018677097, -0.0011314951, -0.027764007, -0.023136673, -0.014042772, 0.008031431, -0.011435527, 0.0074862163, 0.008108321, -0.0073673874, 0.0012110056, -0.0223538, 0.04465168, -0.005050225, 0.015056312, -0.021025714, -0.016733896, 0.006294433, 0.015783265, -0.0057282485, 0.023332391, -0.007000416, -0.024283022, 0.01937609, 0.0028850941, 0.002067272, 0.05418595, -0.009939683, -0.0264499, -0.018872814, 0.0042638583, 0.008968082, -0.003942321, -0.0019449483, 0.001226733, 0.004393172, -0.008038421, -0.041939586, 0.0013036221, -0.010932253, -0.027316652, 0.0055255406, 0.0011314951, 0.01527999, -0.01327388, -0.01319, -0.0012782837, 0.031175094, -0.024450779, 0.008373938, -0.0044560814, -0.009534267, 0.0265198, 0.022703297, 0.009876773, -0.0011314951, -0.0244368, -0.006294433, 0.010778474, -0.001736998, -0.0245067, -0.02254952, -0.015014373, 0.020536419, 0.008961092, 0.01017734, -0.0030091654, -0.0183276, -0.04263858, 0.002243768, 0.008793334, -0.05298368, -0.013539497, 0.032908596, -0.012700705, -0.034166783, -0.013930934, -0.1788304, 0.020061104, 0.0062559885, -0.015545608, 0.017572688, -0.00507469, 0.015909083, 0.005990371, -0.029888947, -0.0073673874, -0.0025687998, 0.0077098943, -0.01944599, -0.029189954, -0.010016572, 0.029944865, 0.0023573544, 0.008045411, 0.043309614, 0.008891192, 0.015895104, -0.014483138, 0.017642587, 0.01324592, -0.02245166, 0.0151122315, 0.0028920842, 0.019641707, 0.009562226, -0.042946137, -0.012120541, 0.021780627, 0.020606318, 0.03050406, 0.006413262, -0.0013473092, 0.010589746, 0.007821733, 0.0071367198, 0.0061546345, 0.026687559, 0.0324892, 0.008877213, 0.008059391, -0.012337229, 0.027009094, 0.0043896767, -0.020620298, -0.010408008, -0.004781113, 0.0028903366, -0.0014879816, -0.012938363, -0.017908204, -0.009960652, -0.014371299, 0.012910403, -0.00083136495, -0.0005159443, 0.015615507, -0.012609836, -0.036459483, 0.0075071864, 0.012491007, -0.017111352, -0.030392222, -0.008737414, -0.011799004, -0.013812104, 0.007318458, -0.02562509, 0.01322495, 0.004739173, 0.008527717, -0.006021826, -0.003507198, -0.032936558, 0.009660085, -0.017558707, 0.02343025, 0.01936211, 0.008471797, 0.0068431427, -0.0064656865, -0.0050047906, 0.0074652466, -0.0034407936, 0.0036102994, -0.0121485, -0.0068955673, 0.026967155, -0.0051201247, -0.016985534, -0.019543849, -0.0047426685, 0.009925703, 0.04059752, 0.017111352, -0.011435527, -0.02022886, -0.0065635457, -0.009541256, -0.0204106, -0.0029235387, 0.027260732, 0.008520726, -0.0012878949, 0.024059344, 0.0038829069, -0.0053403075, -0.01925027, 0.0024517183, 0.014525077, 0.023220552, -0.0069549815, 0.0027295682, 0.047140095, 0.002747043, -0.0069724564, 0.017181251, 0.0146928355, -0.003550885, 0.0074582566, -0.0073044784, -0.029637309, -0.016663997, -0.12100969, -0.01930619, 0.023150653, 0.02136123, -0.017167272, 0.037102554, -0.0030283877, 0.014986413, -0.023695868, 0.016608076, 0.016524198, -0.013658326, 0.0054381667, -0.0051236195, -0.01730707, -0.01116991, 0.0028711143, -0.01729309, -0.016062861, 0.02327647, 0.008506746, -0.021920424, -0.00818521, 0.0038479571, -0.0127985645, 0.01223238, 0.0026247192, 0.015419789, 0.015196111, 0.0061301696, 0.002429001, -0.022060223, 0.0060427957, -0.016006943, -0.010533826, 0.0063643325, -0.0050467304, -0.005812128, 0.018061982, -0.014014812, -0.0103311185, -0.0010860605, 0.0140567515, -0.0074792267, -0.00407513, -0.004823053, -0.008352968, 0.025834786, -0.013651336, 0.0054905913, -0.014028792, -0.008842263, -0.025177732, -0.0223538, 0.016440319, -0.028267283, 0.009709015, 0.048146646, -0.026296122, 0.019641707, 0.008660525, -0.0027016085, -0.025247632, 0.008814303, 0.015937043, 0.022507578, 0.017950144, 0.013700265, 0.01323194, -0.014021803, -0.033467792, 0.021277351, -0.03453026, 0.03998241, -0.0055255406, -0.0082341395, -0.004309293, -0.033523712, 0.022689316, 0.011148941, -0.001317602, -0.014371299, -0.014567017, -0.035369053, -0.0011987733, 0.0071646795, 0.00014515029, 0.029273832, -0.005099155, -0.042470824, -0.011037102, 0.0304761, -0.0008588878, 0.014594977, 0.001838352, 0.015419789, 0.008695475, 0.0024482235, 0.010694595, 0.0072974884, -0.029161993, 0.00016721226, -0.055248417, -0.008562665, -0.0048510125, -0.007821733, -0.0065740305, -0.01420354, -0.008527717, -0.01925027, 0.0006788971, 0.0008055896, -0.048286445, -0.006553061, -0.01625858, 0.013833074, -0.018984653, 0.012337229, 0.026813377, -0.015587547, 0.0016705936, -0.0057771783, -0.02137521, 0.005291378, 0.017698506, -0.00815026, 0.010505867, 0.007912602, -0.01947395, 0.026030505, -0.017404929, -0.037549913, 0.0011061566, -0.030951416, 0.0071507, -0.025317531, -0.023653928, -0.0037745629, -0.022227982, 0.027092975, -0.020522438, 0.05482902, -0.008024441, -0.010505867, 0.002902569, -0.026883276, -0.022857076, 0.0038339773, -0.008800323, 0.008625575, 0.007870663, -0.0047461633, 0.017446868, -0.0011542124, -0.022074204, 0.004781113, -0.0030301353, -0.024227101, -0.004253373, -0.00036172895, -0.013651336, -0.02640796, 0.015657445, 0.027959725, 0.0140567515, -0.007451267, -0.00025666153, 0.00912186, -0.0030895497, -0.039367292, 0.012826524, -0.0131410705, -0.0042638583, -0.010435968, 0.0111070005, 0.006920032, 0.014343339, -0.017502788, -0.012924383, 0.011498437, -0.018495359, -0.005619905, 0.015923064, -0.009331558, -0.018397499, 0.037242353, 0.009904733, -0.012491007, -0.016048882, -0.02131929, 0.014469158, 0.0056478647, -0.020005183, -0.016426338, 0.005291378, 0.0077518336, 0.013071172, 0.0020393124, -1.6683e-05, 0.007563106, 0.013490568, 0.01321097, 0.010121421, 0.004375697, -0.020788055, -0.015811225, 0.0028116999, 0.03053202, -0.007241569, 0.0066928593, 0.017978104, 0.013609396, 0.01726513, 0.008325009, 0.015503667, 0.022912994, -0.00085539283, 0.025806826, -0.030895496, -0.026687559, -0.009792894, 0.030168545, -0.002439486, -0.0017352505, 0.015992964, -0.009534267, 0.023611989, -0.02039662, 0.021654807, -0.04476352, 0.0067347987, -0.01932017, -0.017656567, -0.010988172, -0.023919545, -0.028015645, -0.011456497, 0.001831362, 0.011030111, 0.0070668207, -0.021053674, 0.06738294, 0.040905077, -0.024310982, 0.019725585, 0.024898136, 0.002121444, 0.0146928355, 0.0008387918, 0.004899942, -0.026533779, 0.0009383983, -0.0011349901, 0.003963291, -0.038388703, -0.012470038, 0.005410207, -0.02347219, 0.0204106, -0.015433769, 0.009639115, 0.038864017, 0.005909987, 0.013742205, 0.004092605, -0.007898622, -0.011568337, 0.0060602706, -0.00560243, -0.009024002, -0.023122692, -0.0075980555, 0.015070292, 0.0024761832, -0.0153918285, 0.0050187707, 0.020969793, -0.006004351, 0.004351232, 0.025611108, 0.017474828, -0.007639995, 0.012602846, -0.021039693, -0.022661358, 0.0202708, 0.002395799, 0.0056758244, 0.006839648, -0.023625968]" 27101805,Why I Love Coding (2012),https://henrikwarne.com/2012/06/02/why-i-love-coding/,252,1620611022,118,spideymans,"[0.014483673, -0.014233044, -0.0035285815, -0.03988946, -0.014259427, -0.00031019363, -0.03273996, -0.027199758, -0.019351136, -0.022279529, -0.0011698732, 0.010757227, -0.005761151, -0.003558261, -0.017029528, 0.009306221, 0.031157045, 0.0033603967, -0.0012086217, -0.024179028, -0.011449752, 0.00019559718, -0.0132107455, -0.015433422, -0.02200252, 0.01540704, 0.011225506, -0.03849122, 0.014391337, 0.00278659, 0.018744353, -0.009787692, -0.0029465305, 0.007591397, -0.05545479, 0.004689386, -0.011436561, -0.0064569744, -0.0028459495, -0.015908297, 0.042052776, 0.0152487485, -0.02214762, -0.0018318944, 0.0020511942, 0.0313681, 0.0045673694, -0.020551514, -0.014707919, 0.008099249, 0.019562192, 0.008804965, -0.017781412, -0.003789103, 0.007591397, -0.014351764, 0.024535183, 0.009306221, 0.020894479, -0.031869356, 0.008692842, 0.017834177, -0.004475033, 0.013626261, 0.007142904, -0.0025194732, -0.00299105, 0.0062525147, 0.012808421, -0.022094857, -0.0070967358, 0.017702267, -0.01526194, 0.029336693, 0.019087318, -0.01031533, -0.010255971, -0.007043972, 0.004827891, -9.3779476e-05, -0.0024996868, -0.012485242, -0.029415838, 0.007855216, -0.0061403913, -0.0051016035, 0.004547583, -0.0002858728, -0.0068988716, -0.0087917745, -0.007281409, 0.023493098, 0.018467342, 0.009734928, 0.014602392, 0.0029828055, -0.0010082839, 0.0037956985, -0.009510681, -0.000354507, -0.011489325, 0.011159551, -0.025893852, -0.011509112, -0.02283355, 0.019298373, 0.020736188, -0.0064272946, 0.040628154, -2.317435e-05, -0.022187192, 0.027410813, -0.0067867483, -0.017781412, 0.005738067, -0.031183427, 0.0032021052, -0.026513828, -0.02791207, 0.0028426517, 0.009114953, 0.045904536, 0.006282194, 0.011317843, 0.008640078, 0.01155528, -0.024113072, -0.0104472395, -0.007182477, -0.018454151, 0.03147363, 0.0038187825, -0.0016332056, -0.00908857, -0.0030124853, 0.022714831, -0.04028519, 0.014074753, 0.014153899, -0.022358675, 0.030708553, 0.019219227, -0.016290834, 0.003106471, -0.003864951, 0.024733048, 0.0354573, 0.014641965, 0.01334925, 0.0014526544, 0.008508168, 0.004382696, -0.008264136, 0.015393849, -0.003220243, -0.0060051843, -0.0056061577, 0.0076507563, -0.0012638588, -0.029152019, 0.03424373, 0.002204539, -0.0010239482, -0.010163634, 0.013652642, 0.034217346, 0.02433732, 0.00587987, -0.004293657, 0.021791464, 0.0072154547, 0.013355846, -0.038016345, 0.0150113115, -0.021145107, 0.023545861, 0.0063811266, 0.0041881297, -0.007307791, -0.0015037693, 0.013428397, -0.016449125, 0.046273883, 0.050310317, -0.018124377, 0.014404527, 0.008534551, -0.007512251, -0.0079013845, 0.012663321, 0.00017498631, 0.0050752214, -0.013500947, -0.02312375, -0.6344324, -0.00144441, -0.0007217928, -0.04002137, -0.0027832924, -0.0059853974, 0.020722996, 0.0028739802, -0.015222367, 0.017398875, 0.0057875332, 0.011673999, 0.02751634, -0.009326008, -0.008237754, 0.0021056067, 0.0042771683, -0.028149506, -0.050653283, 0.00608433, -0.0034824132, 0.04482288, -0.019443473, -0.022358675, 0.001375982, 0.015512568, 0.0055863713, 0.004890548, 0.0067867483, 0.02214762, -0.0027799946, 0.03152639, -0.010605531, -0.0014147303, 0.041604284, 0.0012589121, -0.009998747, 0.011067214, 0.034032673, 0.033927146, -0.009860242, -0.016422743, -0.009253458, 0.018124377, -0.016844854, 0.0045146057, 0.011060619, 0.0016505187, -0.02751634, -0.0022111344, 0.015776386, -0.008303708, -0.017174628, -0.018427769, -0.0053885067, -0.02394159, 0.016567845, -0.029521367, 0.008165204, -0.015921487, 0.0075320373, 0.027701015, -0.019997494, -0.0065954793, -0.021976138, 0.008996234, 0.010117466, -0.019905157, -0.03221232, -0.007597992, -0.0077101155, -0.005078519, -0.019311564, -0.033214834, -0.012478647, 0.015143221, 0.04068092, -0.03809549, 0.008844538, 0.016027015, 0.015921487, 0.002242463, -0.023770109, -0.00015035633, 0.04690705, -0.00887092, -0.021065962, -0.0039177146, 0.02270164, -0.0026794134, -0.0036011317, 0.005563287, -0.009062189, -0.018256288, -0.014140708, 0.039414585, 0.010922114, 0.0037066594, -0.009398558, -0.033082925, -0.011271674, -0.021949755, 0.023585435, 0.009490895, 0.014101136, -0.01472111, -0.00020188351, 0.017082293, 0.038860563, -0.040126897, 0.0065328223, -0.02200252, -0.0046827905, -0.0073803416, 0.0038451646, -0.016924, 0.026487445, -0.021013198, 0.0018285967, -0.02738443, 0.013382228, 0.0026200542, -0.022385057, 0.011502516, -0.0026381917, 0.015367467, -0.003207052, -0.0064602722, -0.009451322, 0.011654212, 0.0008689544, 0.030497497, 0.012656725, -0.012656725, -0.00024465108, -0.021672746, 0.028598, -0.021211062, 0.0132767, -0.038755037, -0.012280783, -0.004254084, -0.009649186, 0.010018533, 0.00519394, -0.054821625, -0.027041465, -0.015657669, 0.0052368105, -0.009055593, 0.004270573, -0.019021362, -0.005243406, 0.023216087, 0.0029663169, 0.0032367315, 0.022174003, 0.001141018, -0.029072873, -0.00701759, -0.011937818, -0.0045146057, -0.01815076, -0.009022616, -0.0034230538, -0.013177768, -0.0005404171, 0.011614639, -0.027437195, -0.035299007, 0.0067174956, 0.025247496, 0.004316741, -0.0061931554, -0.030391969, 0.019337947, -0.016053397, -0.017240584, -0.008402641, -0.009134739, -0.016765708, 0.009840455, -0.008442214, -0.01526194, 0.031948503, 0.012511625, 0.017253775, 0.0134481825, 0.003141097, 0.009095166, 0.0103746895, 0.0164887, 0.004151854, -0.006344851, -0.00016602059, 0.030497497, -0.01760993, -0.0054313773, 0.0011286514, 0.045614336, 0.01527513, -0.0052005355, -0.0058435947, 0.0106648905, 0.001457601, -0.046432175, 0.017438447, -0.00983386, -0.000741167, 0.0014699675, -0.011423371, -0.005022458, 0.0036802776, -0.025010059, 0.018994981, 0.03825378, 0.00043076725, 0.024983676, -0.016581036, 0.012089514, 0.00914793, -0.005797426, 0.018216714, -0.010757227, 0.032951016, 0.030893225, 0.015116839, 0.009530468, -0.020050257, -0.02559046, -0.02064385, -0.0024172433, 0.011634426, 0.0076441607, 0.0049367165, -0.0020314078, 0.017689075, -0.037330415, 0.061469868, 0.009161121, -0.008818156, 0.02764825, -0.00060060085, -0.026276391, 0.011805908, 0.019469855, 0.01927199, -0.0078024524, 0.0073671504, 0.036327902, -0.00927984, 0.0113376295, -0.012762253, 0.006179964, -0.010651699, 0.0057182806, 0.00041448468, 0.016884428, 0.030866845, 0.027621867, -0.012122491, -0.010513194, 0.006852703, 0.0077430927, -0.0148662105, 0.0032631136, 0.00013747452, -0.035958555, -0.0018780627, -0.024284555, -0.02146169, 0.004966396, -0.016277643, 0.0045212014, 0.014153899, -0.0145760095, 0.011944413, 0.01135082, 0.008310304, 0.028729908, -0.014496864, -0.0023133645, 0.020828525, 0.041208554, 0.0042738705, -0.0060414593, -0.028096743, -0.008290518, 0.020617468, -0.010750632, -0.0018830093, -0.003254869, 0.0045673694, 0.0031097685, -0.0077430927, -0.0018813605, 0.0098470505, -0.009675568, -0.002864087, -0.025287068, -0.019377518, -0.003218594, -0.022358675, -0.021923374, 0.040944736, -0.0065229293, -0.01829586, -0.016950382, -0.009477704, -0.040364332, 0.006628457, 0.010381285, 0.0020891181, -0.0053885067, 0.0067240912, 0.0060513522, -0.015195984, -0.014457291, 0.016871236, 0.007538633, 0.0071363086, -0.005889763, 0.0051642605, 0.027463576, 0.11312567, -0.012162064, -0.011021046, 0.005078519, 0.00048188222, -0.0050026714, -0.010691272, -0.021013198, 0.040390715, 0.006879085, 0.017504403, -0.019641338, -0.0010016884, -0.010249375, -0.0030751424, -0.0012704543, 0.010157038, -0.042606797, 0.013797743, -0.024205409, 0.018097995, 0.0063679353, 0.0064174016, 0.020736188, 0.0019044447, -0.00045426365, 0.007565015, 0.010368094, -0.0042870617, -0.03318845, 0.006090925, 0.020432794, 0.005919443, 0.020868097, -0.00942494, 0.038834184, 0.0004864166, 0.01995792, 0.0013182715, -0.0040100515, 0.023836063, 0.009213884, 0.025564078, -0.014839829, 0.03229147, 0.009853646, -0.018915836, 0.033452272, -0.010486812, -0.007538633, 0.010190016, 0.0017774818, -0.005995291, -0.012188446, 0.011489325, 0.003040516, -0.016699754, 0.001965453, -0.0063283625, -0.0060051843, -0.009517277, -0.01800566, 0.026065335, -0.012716085, 0.008152013, -0.014694728, 0.0042507867, -0.0059458246, -0.011726762, 0.017675884, -0.009293031, -0.009504086, -0.038886946, -0.0097745005, 0.021079153, 0.0018797116, 0.017860558, -0.007729902, 0.0029745612, -0.0029069576, -0.02243782, -0.03303016, -0.004738852, -0.029600512, -0.008475191, -0.0054313773, 0.01175974, -0.01679209, -0.029231165, 0.0136658335, 0.00014664636, 0.008382854, 0.0011838885, -0.0044024824, 0.022279529, 0.029415838, -0.011739953, -0.0023463417, 0.028677145, -0.017069101, 0.006285492, 0.0072880047, -0.013125004, -0.03854398, 0.014984929, 0.0093194125, 0.015829151, 0.021395735, -0.017108673, -0.015763195, 0.031842973, -0.024878148, 0.021831037, 0.02448242, 0.016251262, 0.025695987, 0.0018731161, 0.00547095, 0.025656415, -0.021488072, -0.006677923, -0.038966093, 0.026118098, 0.0060711387, -0.02462752, 0.004573965, 0.013942843, -0.024165837, -0.009055593, 0.0061304984, -0.025471741, 0.045165844, -0.03614323, -0.03698745, -0.007360555, -0.0039375015, -1.3873694e-05, 0.010842968, -0.026540209, 0.012584175, 0.0060348636, 0.011891649, 0.019746866, 0.0020577896, 0.01924561, -0.040179662, 0.010335117, -0.016158925, -0.019324755, 0.039098002, -0.015895106, 0.016594226, 0.006397615, 0.017451638, 0.02751634, -0.010895732, 0.0043892916, -0.027001893, 0.030866845, 0.021896992, 0.02435051, 0.0121027045, 0.0123203555, -0.013573497, 0.019733675, -0.010460431, -0.0061304984, -0.00881156, -0.015222367, 0.012808421, 0.01664699, 0.009866837, -0.01800566, -0.022596113, 0.009510681, 0.04168343, -0.015367467, -0.024456037, -0.0041485564, -0.024469228, -0.027489958, 0.010532981, 0.008046485, 0.016053397, -0.016712945, -0.0045904536, 0.019786438, -0.0007011819, 0.024706665, 0.011957604, 0.023229279, -0.00014417306, -0.007301196, 0.01787375, 0.0020594385, -0.022279529, 0.008785179, -0.0431872, -0.00221773, 0.009985556, 0.028228652, 0.019364327, 0.0010923763, -0.020234931, -0.011673999, 0.012472051, -0.026724882, -0.0099196015, 0.017504403, -0.011383798, 0.005210429, -0.007235241, -0.009497491, 0.004801509, -0.017266965, 0.03411182, -1.5754436e-05, 0.012960117, -0.011733358, -0.024033926, -0.0010495057, -0.012742466, 0.03645981, 0.01746483, 0.017108673, 0.022332294, 0.011885054, 0.0025277175, 0.0015507621, 0.0063910196, -0.018163951, 0.019377518, 0.01003832, 0.004207916, 0.0037693165, -0.012650129, -0.006414104, -0.028518854, -0.026329154, 0.009820669, -0.005085115, -0.015578522, -0.004600347, 0.0031246084, -0.014760683, 0.010427453, -0.011700381, 0.03147363, -0.008488382, -0.0014493566, -0.00010995901, 0.021712318, -0.005672112, 0.016172115, -0.009589827, -0.0060480544, -0.00907538, -0.016607417, -0.019588575, 0.014246236, 0.0029086065, 0.022121238, -0.010288948, -0.008376259, 0.022068474, 0.013771361, 0.0070637586, 0.0024089988, 0.0100119375, 0.027199758, 0.0053555295, -0.0042507867, -0.028413326, 0.028466089, 0.004831189, -0.0051345807, -0.014971739, -0.024231791, -0.0111925285, -0.003089982, 0.0243637, -0.002544206, -0.011944413, 0.0013289892, 0.0013528977, -0.016145734, 0.0090292115, 0.0033768856, -0.0016266102, -0.0071297134, -0.012498434, -0.020722996, -0.004577263, 0.017082293, 0.0009983907, -0.032792725, 0.0041617476, 0.03395353, -0.004445353, 0.01886307, -0.0006611968, -0.0052994676, -0.014918975, 0.010552767, -0.02255654, -0.00015303574, 0.02093405, 0.010361498, -0.01965453, 0.009570041, 0.0023282042, 0.00045962248, 0.0014922272, -0.02022174, 0.010473621, 0.0020544918, 0.004738852, -0.0036604912, -0.026935939, -0.0045871558, 0.004788318, -0.013797743, 0.018427769, -8.6823304e-05, 0.0086466735, -0.02557727, 0.013705406, -0.0010099328, -0.03176383, 0.0038814396, -0.009418345, -0.0011047428, -0.013092027, -0.004418971, -0.020604277, -0.00701759, -0.013415205, 0.005965611, 0.0036473002, -0.01636998, -0.02613129, 0.017451638, 0.007347364, 0.014470482, -0.0062657055, -0.012326951, -0.019140081, -0.0065064407, -0.04798871, -0.017187819, -0.02229272, 0.051523887, 0.008277327, 0.0046564084, -0.01927199, 0.00019971936, -0.030919608, -0.025260687, 0.00935239, 0.01190484, 0.04487564, -0.009358985, 0.0012481945, 0.02738443, -0.005609455, 0.0072418363, -0.016950382, -0.015881915, -0.006819726, 0.0218838, 0.015327894, -0.0141934715, -0.017702267, 0.01622488, 0.020709805, 0.008950066, -0.01584234, 0.013850507, -0.011416775, 0.0114299655, 0.0034527334, -0.010770418, 0.016290834, 0.007050568, 0.013942843, -0.026025763, -0.017412066, 0.0074858693, 0.009734928, -0.011852076, -0.023334807, -0.015182794, -0.011819099, 0.018770734, 0.00742651, -0.024864957, 0.0011187582, -0.00012273775, 0.034059055, 0.010935305, -0.018929025, 0.010757227, -0.011324438, -0.004283764, -0.034138203, 0.013876889, 0.01216866, -0.0020544918, 0.010025129, -0.00471247, -0.0021732105, -0.0033125796, 0.03838569, -0.0076507563, -0.015222367, -0.022859931, -0.008699438, -0.013369037, -0.0023133645, 0.021382544, 0.0024254876, 0.014404527, -0.005210429, -0.00625911, 0.006308576, -0.008910493, -0.01664699, -0.008831347, -0.0054676523, 0.020815333, 2.102309e-05, -0.019087318, -0.018586062, 0.03590579, -0.011152956, -0.0076771383, 0.19870861, -0.010651699, 0.0025260686, 0.021435307, 0.007281409, -0.0022474097, -0.0020594385, -0.004725661, 0.00014283335, 0.007914576, 0.0106648905, 0.004663004, -0.030655788, 0.0064602722, 0.024469228, -0.00666803, -0.0012960117, -0.0036407046, -0.004890548, -0.00019693689, -0.004699279, -0.0033505035, -0.043793984, -0.006503143, 0.032634433, 0.021303399, -0.014496864, 0.010467025, 0.011152956, 0.00625911, -0.016251262, -0.008145417, 0.007835429, 0.01584234, -0.009893219, -0.0026810623, 0.017662695, -0.010737441, 0.0192588, -0.01829586, 0.024587948, 0.009062189, -0.017253775, -0.031341717, 0.026592974, 0.024258174, -0.009853646, -0.02241144, -0.016660182, 0.009378772, -0.03287187, -0.023849254, 0.04239574, 0.02312375, 0.022516968, -0.010196611, -0.008270731, 0.012228019, -0.0045277965, 0.030761316, -0.005243406, 0.0043629096, -0.020406414, 0.00089698524, -0.008633482, 0.01857287, -0.027753778, 0.0132107455, -0.00054247817, -0.024033926, -0.011805908, 0.012412692, 0.005510523, 0.020577896, -0.008290518, -0.005794129, 0.0065328223, 0.0028063764, 0.030049004, 0.023888826, -0.015156412, -0.020472368, -0.008923683, -0.051418357, 0.0062657055, -0.037620615, 0.036275137, -0.008969852, -0.01375817, -0.0239284, 0.0024518694, -0.015037693, -0.014048371, -0.020023875, 0.020129403, 0.020037066, 0.0015944572, 0.02187061, 0.006094223, 0.0018401388, 0.002240814, 0.0041023884, 0.020208549, 0.023229279, -0.0051345807, -0.01994473, 0.0051873447, 0.01568405, 0.010381285, -0.021448499, -0.0034230538, -0.011515707, 0.0048575704, 0.0015350978, 0.006222835, -0.0031773723, -0.005741365, -0.0042738705, -0.0005618524, 0.014417718, -0.01609297, -0.0086466735, 0.00052269176, 0.010849563, 0.00900283, -0.010157038, -0.03485051, -0.000873901, -0.024772622, -0.030471114, 0.029231165, 0.0025161754, -0.011324438, -0.026276391, -0.0106846765, 0.00013881423, -0.0083169, -0.022807168, 0.009233671, 0.0066449456, -0.021224253, -0.0055896686, 0.01787375, 0.016528271, 0.006146987, -0.016343597, -0.002267196, 0.004412376, -0.0048839524, -0.01884988, -0.001165751, 0.002560695, -0.008363068, -0.018335434, -0.003650598, -0.0039869673, -0.03179021, -0.023770109, -0.004412376, -0.009761309, -0.050732426, 0.034744985, 0.04331911, 0.012854589, 0.009451322, -0.0069252537, -0.16546738, 0.0067603663, -0.008231158, -0.014470482, 0.040496245, 0.001603526, 0.014707919, 0.005955718, -0.008613696, 0.010368094, -0.0021732105, -0.013784552, -0.026223626, -0.016752519, 0.00032709455, -0.0031889144, -0.01760993, 0.0031081196, 0.06289449, 0.01787375, 0.0051279855, -0.013810934, 0.030893225, 0.004257382, 0.011528898, 0.018994981, 0.020314077, 0.014602392, 0.009945983, -0.03675001, -0.0020990113, 0.012221423, 0.016963573, -0.012412692, 0.026434682, -0.0012762253, -0.0054676523, -0.004145259, 0.012722679, -0.019483047, 0.010658295, 0.029653275, 0.026592974, 0.010282353, -0.0031493413, 0.016897619, 0.035430916, -0.014219854, -0.0073671504, -0.005724876, 0.041393228, -0.02117149, -0.010618722, -0.004498117, 0.016673371, -0.013916462, 0.01720101, 0.031711064, -0.0125380065, 0.005312659, -0.0020693317, -0.028650763, 0.005319254, -0.010282353, -0.005180749, -0.023453524, -0.022226766, -0.002511229, -0.04155152, 0.015116839, -0.020023875, -0.011535494, 0.01924561, 0.017649503, -0.0090292115, 0.026091717, -0.004359612, 0.009913006, 0.0031493413, 0.008250945, 0.0041650455, 0.0011484378, 0.0014584254, -0.012610557, 0.0006261583, -0.017029528, -0.012419288, 0.011878459, -0.009154526, -0.018084805, 0.013679025, -0.038069107, -0.016435934, -0.001609297, -0.01100126, 0.0049103345, 0.03382162, -0.0109419, 0.005052137, -0.02119787, 0.030312823, -0.009180907, -0.031948503, -0.0047421497, 0.04250127, 0.014562818, 0.0026678715, 0.0030652492, 0.04389951, 0.013217341, -0.021765083, 0.029732421, 0.015565331, 0.019720484, -0.0038880352, 0.018638825, 0.02543217, -0.034085438, 0.023849254, 0.020050257, 0.07698244, -0.0028162696, -0.028466089, 0.012069727, -0.00587987, -0.0026975512, -0.12462818, -0.023849254, -0.01499812, 0.021896992, 0.015037693, 0.038860563, -0.021250635, 0.026869982, -0.020234931, 0.04458544, -0.013118409, -0.0329774, 0.0057479604, -0.0055929665, -0.010625318, -0.018968599, -0.013151386, -0.00415845, -0.022464203, 0.02200252, 0.00040046926, -0.0050125644, -0.007413319, -0.004831189, -0.00080382405, 0.01416709, -0.01307224, -0.014470482, 0.009893219, 0.0025870767, 0.023730535, -0.028571617, 0.007940957, -0.028914582, 0.0065229293, -0.010157038, 0.0015375712, 0.005863381, 0.017095482, 0.006879085, -0.0107968, -0.009530468, 0.019852392, -0.012894162, 0.00605465, -0.00033327783, -0.042896997, 0.024126263, 0.0072154547, -0.01018342, -0.046695996, -0.003169128, -0.041445993, -0.0011072161, 0.03068217, -0.0132305315, 0.0017263667, -0.025682798, -0.01912689, 0.017491212, -0.010724249, -0.019364327, -0.0024601137, -0.00078692316, 0.01760993, -0.006371233, -0.00770352, -0.021369353, 0.027885687, -0.024429657, -0.009523872, 0.011845481, -0.055138208, 0.012815016, -0.01927199, 7.249875e-05, -0.011185933, -0.0026794134, 0.00805308, 0.00031720134, -0.012340142, -0.017187819, -0.005477546, -0.025273878, 0.021224253, 0.010480217, 0.009563445, 0.012201637, 0.004672897, -0.01086935, 0.018520106, 0.023717344, 0.009576636, 0.01135082, -7.2704854e-05, -0.027226139, 0.0099196015, -0.0032334337, 0.0067109005, -0.005269788, -0.037594233, 0.0074528917, -0.03854398, 0.015354277, -0.019826012, -0.013045859, 0.027701015, -0.017847367, 0.02516835, -0.006219537, -0.018124377, 0.0038748442, -0.031974886, 0.01979963, -0.001836841, -0.039520115, -0.027252521, -0.010618722, -0.016924, -0.0018269478, 0.0044420552, -0.001014055, 0.0011368957, 0.0018203523, 0.0033010375, 0.016396362, -0.029943477, -0.009081976, -0.024508802, 0.008178394, -0.02243782, -0.011423371, 0.002738773, -0.006628457, 0.020802142, 0.012768848, -0.003383481, 0.0056160507, -0.011456348, 0.013744979, 0.0017412066, 0.04635303, -0.01829586, -0.031077899, 0.006219537, -0.03769976, -0.018612443, -0.008547741, -0.015314703, 0.00012479884, 0.01375817, 0.016567845, -0.005154367, 0.010691272, 0.0019522619, -0.027727395, 0.012175255, -0.021804655, 0.00701759, -0.010321925, -0.017715458, -0.015987443, 0.034190964, -0.02559046, 0.012953522, -0.036697246, 0.009418345, -0.026474254, -0.0155389495, 0.02904649, 0.01513003, 0.021408927, -0.018216714, -0.0060381615, 0.01788694, 0.013599879, 0.0313681, -0.012696298, -0.02214762, 0.0123203555, -0.009134739, 0.0051906426, -0.006509738, -0.01844096, -0.003254869, 0.021092344, 0.022332294, -0.018902645, 0.015604905, -0.00722205, 0.005942527, 0.023994355, 0.0052302154, -0.0013223937, -0.0072550275, 0.015367467, 0.011786122, 0.003129555, -0.007334173, 0.011693785, -0.0074528917, -0.0038748442, 0.007729902, 0.0006855176, 0.006631755, -0.01733292, -0.017306538, 0.021435307, -0.0415779, -0.029336693, -2.0546464e-05, 0.02160679, 0.01175974, 0.016290834, 0.012208233, -0.0031361505, -0.024693474, -0.02738443, 0.00023290286, -0.020274503, 0.0049598007, 0.02559046, -0.009431535, 0.006170071, 0.031948503, -0.0056523257, 0.027199758, 0.021448499, 0.023479907, -0.002166615, -0.023888826, -0.010823182, 0.0059853974, -0.010031724, -0.0039342036, -0.008732415, 0.0037330415, -0.020393223, -0.0028541938, 0.033082925, 0.015486185, 0.064160824, 0.026566591, 0.0032400293, 0.019311564, -0.012425884, 0.017715458, 0.017187819, -0.00894347, 0.004145259, -0.026381917, 0.033056542, 0.0038088893, 0.0015153114, -0.014510055, -0.01485302, 0.012419288, -0.013652642, 0.025814706, -0.0053687203, 0.01107381, -0.0085741235, 7.502358e-05, 0.009326008, 0.003789103, -0.016607417, 0.0016274345, 0.026210435, 0.0022490586, -0.0013710352, -0.041630667, -0.011370607, -0.0046201334, -0.04152514, -0.0050389464, 0.02460114, -0.021026388, 0.0082113715, -0.024944102, 0.0060711387, 0.022253148, -0.002382617, -0.009537064, -0.016343597, -0.022622494, 0.016119352, 0.012676512, -0.015090457, 0.004761936, -0.020419605]" 29751641,Unicode Normalization Forms: When ö ≠ ö,https://blog.opencore.ch/posts/unicode-normalization-forms/,153,1640979158,140,ocrb,"[0.021577865, -0.025750227, 0.0005675894, -0.03470084, -0.027333798, 0.016951086, -0.033433985, -0.019236933, -0.026328575, -0.012159064, 0.022018509, 0.0021206068, 0.02215621, 0.010300091, 0.01105745, 0.024084035, 0.012468893, 0.005755933, 0.0049848035, -0.0059934687, -0.01575308, 0.01565669, -0.031809103, -0.016179955, -0.008936844, 0.01261348, 0.016951086, -0.020944435, 0.0032015657, 0.0044615366, 0.010465333, -0.004482192, -0.012282996, -0.0028934581, -0.03224975, -0.019829052, 0.012592825, -0.042962946, 0.033902172, -0.01499572, 0.01644159, -0.017171409, -0.009749284, 0.0035027883, -0.00013845481, 0.018754978, -0.012310537, -0.008489313, 0.006082975, 0.0076217917, 0.019223165, 0.0070365593, -0.031864185, -0.00023689005, -0.016193725, -0.015642919, 0.0072913077, -0.0014854576, 0.0018520885, -0.017804837, -0.017612053, 0.020903125, -0.01660683, 0.014582615, -0.0158357, -0.009363719, -0.00864767, 0.005229224, -0.014472454, 0.0034700842, 0.019223165, 0.035251647, -0.004406456, -0.0011033353, 0.014871789, -0.009253558, -0.004730055, 0.009377489, 0.0042067883, -0.011580717, 0.02133, -0.052602068, -0.01495441, 0.016345197, 0.021646716, -0.012620365, 0.011140072, 0.014320982, -0.015518988, 0.0050915224, 0.027898375, 0.03131338, 0.02438698, -0.015629148, -0.008950613, -0.006867875, 0.013122977, 0.038611572, -0.0082414495, -0.008041782, -0.0131160915, 0.0032635315, -0.029633416, -0.0053428276, -0.016772073, 0.0044994047, 0.025433512, 0.00033220547, 0.0009234623, -0.025777768, 0.004361703, 0.024937786, 0.0021171644, -0.0081450585, -0.011091876, -0.005394466, 0.006014124, -0.0028125583, -0.012179719, -0.0024080593, 0.015312434, 0.024992868, 0.0021877366, -0.051555537, 0.0023323235, 0.0038453212, -0.007979817, -0.017198948, -0.00751163, -0.035802454, 0.040401693, 0.011091876, 0.0076768724, 0.010430908, -0.014747857, 0.0376752, -0.02356077, -0.0125584, -0.030955354, -0.011697764, 0.05130767, 0.026273495, -0.019305786, -0.0026679714, -0.03304842, 0.01958119, -0.01376329, 0.025832849, 0.030377006, -0.0021395409, -0.0075185155, -0.0068919724, 0.009921411, -0.039933506, -0.0031378786, 0.018575966, 0.0063790334, 0.016124874, -0.024469601, -0.038721733, -0.012758067, 0.03131338, -0.0221149, -0.028449181, 0.014376063, 0.026920691, -0.008117518, -0.0041689207, -0.010265665, -0.03549951, -0.028944908, 0.024924017, -0.018259251, 0.017019937, 0.021743106, 0.0026542011, -0.0067783687, 0.021095907, -0.0009854281, -0.0039795805, 0.0075047454, -0.014926869, 0.034315277, 0.013742635, -0.02524073, 0.008337841, 0.015064571, -0.0057765883, -0.01573931, 0.019113002, -0.007869655, 0.01887891, -0.020173306, -0.0153950555, -0.60632837, -0.004075972, 0.012262341, -0.012668561, -0.0008451445, 0.019994294, 0.00550807, 0.015890783, -0.023216516, 0.022445384, -0.016799614, 0.019209394, 0.013529197, -0.009308638, -0.0040862993, -0.005704295, -0.0106168045, 0.0013787388, -0.01338461, 0.006774926, -0.018631047, 0.02130246, -0.0068609896, -0.022128671, -0.0024132233, 0.016083565, -0.008888648, -0.012888884, 0.010575495, 0.019250704, -0.06268184, -0.010788932, 0.024524681, -0.014307212, 0.049792953, 0.008386036, -0.017722216, 0.0066647646, 0.01892022, -0.002013888, 0.010768277, -0.0044477666, 0.012620365, 0.012021363, -0.010527299, 0.012544629, 0.017212719, 0.011718418, 0.00982502, -0.0012711593, 0.010830242, 0.02208736, -0.0049331654, -0.0018899565, 0.014472454, -0.0009819856, 0.035747375, -0.025750227, 0.047424484, 0.016978625, -0.00985256, 0.008764717, -0.008902418, -0.0064788675, -0.021536553, 0.0005499464, -0.004051874, -0.010947289, 0.0041895756, -0.006995249, 0.028008536, 0.031919267, 0.025089258, 0.003728275, 0.008964384, 0.037427336, 0.011856121, -0.014651466, 0.005910848, -0.009439455, 0.0010516971, 0.00688853, -0.045248795, -0.024951557, 0.032690395, 0.030790111, -0.01578062, 0.019113002, -0.012028248, -0.03712439, 0.016923545, 0.012317422, -0.01338461, -0.014293442, 0.014114429, 0.04489077, -0.026424965, -3.8782408e-05, -0.0059349453, -0.028697044, 0.002488959, -0.0015482841, 0.01338461, 0.0019536435, 0.019429717, 0.012999045, -0.020779194, 0.0028349347, 0.060203206, -0.022569317, 0.0016704943, -0.033351365, 0.00058824464, -0.012241686, -0.0098801, -0.027416417, 0.04012629, -0.011635798, 0.026190873, -0.016661912, 0.02524073, 0.0016369296, -0.0013451739, -0.0031482063, 0.022596857, -0.004850544, 0.02281718, -0.04816807, -0.011759729, -0.01338461, 0.015353745, -0.024607303, 0.04098004, -0.016248807, 0.031974345, -0.0026369884, 0.037289634, 0.028807206, 0.0052464367, -0.027141014, -0.03519657, 0.008544394, 0.019333325, -0.027044624, 0.0018469247, -0.007800804, -0.009604697, 0.013481001, -0.03858403, 0.031065514, -0.0040415465, 0.009108971, -0.005518398, -0.00707787, 0.002101673, -0.009074545, -0.0032945143, -0.035912618, -0.015877012, -0.014293442, -0.01101614, 0.015987173, 0.0010732131, 0.0063136253, -0.0058798646, 0.0034786905, 0.027361337, -0.016014714, -0.022500467, -0.0087578315, 0.008089977, -0.019099232, -0.013625588, -0.014093774, -0.0046439916, 0.01967758, -0.029330473, 0.011931856, -0.01415574, -0.0022841278, 0.011952512, 0.00749786, -0.023932563, -0.008799142, 0.014197051, 0.018658588, 0.027017083, 0.008007357, 0.0065201777, 0.027058395, 0.0077457232, -0.009831904, -0.0030965682, 0.00552184, -0.029853739, 0.016331427, 0.008496198, 0.007869655, -0.013219368, 0.031175677, -0.017859917, -0.019773971, 0.0074634347, -0.016675683, 0.01649667, -0.01879629, -0.005280862, -0.0332412, 0.012200375, 0.006564931, -0.010582379, -0.014637696, 0.0013520591, -0.0009888707, -0.00018062597, 0.01802516, -0.013267564, -0.00026313943, -0.0026197757, 0.014720317, -0.0020483136, -0.028022306, 0.035224106, 0.0014639418, 0.030129142, -0.0027746903, 0.015890783, -0.002538876, 0.005893635, -0.010947289, 0.0181904, 0.010017802, -0.028807206, -0.0034046758, 0.03775782, 0.0205451, 0.013701324, -0.015326205, 0.027182326, -0.021798186, -0.007800804, 0.0393827, 0.0181904, -0.030321926, 0.010031573, 0.017873688, 0.04323835, 0.023918794, -0.0066268966, 0.001588734, -0.012021363, 0.0065993564, 0.0076011363, 0.006909185, 0.014252131, 0.00571118, -0.014472454, 0.00044968227, 0.02752658, 0.023009961, 0.015408826, -0.017130097, -0.0013942302, -0.00828276, 0.01657929, 0.008489313, -0.021013288, -0.004509732, 0.011291543, -0.012799378, -0.020848045, -0.022913571, -0.0012177998, 0.0039795805, 0.0122348005, -0.012854458, 0.008744061, 0.02287226, 0.04874642, 0.039933506, -0.004575141, -0.010830242, 0.023932563, 0.030404545, -0.0008623572, -0.0005994329, -0.016675683, 0.021137219, -0.014761628, 0.0017780738, -0.041393146, 0.011560062, 0.0036800792, 0.0053462703, 0.001943316, 0.0070503294, -0.003921057, -0.0051190625, 0.021550324, 0.031175677, 0.003879747, 0.026948232, -0.027085934, 0.0041103973, 0.056457717, -0.014293442, 0.003886632, -0.014100659, 0.003507952, -0.027953455, -0.0016455359, -0.013852796, -0.026948232, -0.0003578094, -0.0047954633, 0.01578062, -0.040319074, 0.0008589147, 0.04882904, 0.0007422985, 0.00017320298, -0.028779665, -0.019718891, 0.0019381521, 0.011849236, 0.027278716, 0.0036387688, 0.0128957685, -0.006148383, 0.020792965, -0.011023025, -0.028614424, 0.018383184, -0.0033840204, -0.0053428276, -0.0019002841, 0.026135791, 0.008840452, 0.019801512, -0.018465804, 0.03381955, -0.013632474, -0.00017761374, -0.023230284, -0.030156683, -0.027347567, 0.010300091, 0.043513753, 0.023712242, 0.005807571, -0.005098407, 0.0066441093, 0.0016420934, -0.024084035, -0.03004652, 0.009363719, -0.00411384, 0.04643303, 0.019223165, 0.01817663, 0.020503791, 0.009873215, 0.011188267, 0.0028091157, 0.01259971, -0.0040174485, -0.0009966164, -0.012496434, 0.02200474, 0.008682095, -0.006014124, 0.028077386, 0.012441353, -0.011257118, 0.018727439, -0.03533427, -0.023588309, -0.0076631024, 0.023037503, -0.0143898325, 0.006606241, -0.0062034638, -0.015147192, -0.019663809, -0.011566947, -0.03216713, 0.008165713, 0.0040966272, -0.0044339965, 0.003235991, -0.0014673843, 0.00024269933, 0.01817663, -0.015339975, -0.00041289008, 0.0067852535, -0.05441973, 0.0080211265, 0.013866566, 0.024786314, 0.00748409, -0.006730173, -0.0053290576, 0.008296531, -0.009391259, 0.0040036784, -0.00027282158, -0.0017324601, -0.012881999, 0.009081431, 0.0046818596, -0.011291543, -0.028118698, 0.0052843047, 0.019925443, 0.0204074, 0.011319084, -0.0029726366, 0.0043858006, -0.013467231, 0.009370604, 0.0456619, 0.003203287, -0.008998809, 0.01297839, 0.02451091, -0.005883307, -0.025584985, 0.010940404, 0.0023684702, -0.0026679714, -0.004767923, 0.0009415357, -0.005817899, 0.027939685, -0.013487887, 0.0019829052, 0.00983879, 0.023078812, 0.021784417, -0.019443488, 0.037151933, 0.028944908, -0.025598755, 0.017598284, -0.04816807, 0.0153950555, -0.01578062, 0.035802454, 0.024676153, 0.020104455, -0.024731234, -0.019732662, -0.0019708562, -0.0067026326, -0.0050502117, -0.026163332, -0.002210113, -0.020255927, -0.023230284, 0.011208923, 0.005945273, -0.027967226, -0.023918794, -0.012875114, -0.016166186, -0.0077526085, -0.020228388, 0.0031447636, -0.0379506, -0.0057318355, -0.008971269, 0.002019052, 0.025653835, -0.02679676, -0.0010121078, -0.032525152, -0.025557445, -2.0762842e-05, -0.024235507, 0.020393629, 0.0020620837, 0.004981361, -0.004248099, 0.024097806, 0.011697764, 0.028504262, 0.0036318835, 0.017625824, 0.008606359, -0.02441452, -0.031698942, -0.011959397, -7.901714e-05, 0.012269226, 0.005236109, 0.014073119, -0.011697764, -0.011897431, 0.017942538, -0.009019464, 0.009349949, -0.011071221, -0.033268742, 0.0037454877, -0.013894106, -0.014362292, 0.013549852, -0.018631047, -0.032773018, 0.020228388, 0.0038694192, 0.022514235, -0.028504262, 0.02679676, -0.0041999035, 0.0053806957, 0.004285967, 0.02199097, -0.02445583, -0.00054004905, -0.0015895945, -0.0156153785, -0.0031499276, -0.009253558, 0.006337723, 0.00783523, 0.00038728616, 0.00162402, 0.017019937, -0.020021833, -0.00059039623, -0.0055941334, -0.019402176, -0.010176159, -0.003900402, -0.009900756, -0.019236933, 0.0052395514, -0.0024493698, -0.0061380556, 0.015339975, -0.0048195613, -0.03616048, -0.0015482841, -0.001491482, 0.01806647, 0.013067896, 0.026135791, 0.01802516, -0.02131623, -0.05667804, -0.0147340875, -0.006058877, 0.0081932545, 0.02842164, -0.0018262694, 0.00873029, -0.013054126, 0.020613952, -0.036546044, -0.011305314, -0.034232654, 0.03552705, 0.022927342, 0.008344726, -0.009942066, -0.0008898976, -0.01722649, 0.023271596, -0.00018869442, 0.006141498, -0.006788696, 0.002432157, -0.009625352, 0.023065044, -0.021481473, 0.03627064, 0.012902654, -0.0015353746, -0.0026507587, -0.030211763, -0.014320982, 0.031781565, -0.03304842, 0.028118698, 0.01965004, -0.017942538, -0.0032411548, 0.017198948, -0.04949001, -0.0078076893, 0.009659777, 0.013866566, -0.0219772, 0.010554839, 0.017212719, -0.004210231, -0.0019381521, -0.008916188, -0.014362292, -0.035719834, -0.020338548, 0.0002155893, 0.025516134, -0.006162153, -0.005002016, -0.005859209, -0.014858019, -0.024304358, -0.026039401, -0.0042446563, 0.009267327, -0.036601126, -0.009597812, -0.02203228, 0.033268742, 0.027347567, -0.011325968, -0.0068747597, 0.015174733, 0.048994284, -0.027113475, -0.0025147782, 0.029358013, -0.0081932545, -0.034755923, 0.014981951, -0.027237406, -0.0363808, -0.0015964797, -0.005766261, -0.0041000694, -0.0028400987, 0.008234564, 0.040511854, 0.0084135765, -0.00038986807, 0.018989071, 0.0038728616, -0.00453383, -0.017667135, -0.007759494, 0.01806647, -0.0050536543, -0.015202273, -0.00049486564, -0.004754153, -0.027347567, 0.0014932033, -0.008613245, -0.011918087, -0.039795805, -0.017143868, 0.020159537, 0.02367093, -0.019071693, 0.01573931, -0.02594301, 0.011511866, -0.018314332, -0.0015284894, 0.009900756, 0.017488122, 0.000794367, -0.005387581, -0.0050880797, -0.012344962, -0.017598284, -0.01572554, -0.0031568126, -0.02049002, -0.01101614, 0.00138046, -0.0020603624, 0.02357454, -7.734966e-05, -0.026245954, -0.037041772, -0.006410016, -0.03238745, -0.013825255, -0.03059733, -0.0073601585, 0.040704638, 0.009728628, 0.016179955, 0.0034924606, -0.0034236098, 0.0146101555, -0.03445298, -0.022748329, -0.010010917, 0.011119416, 0.019305786, -0.021880807, -0.027072163, -0.019732662, 0.008496198, 0.014802938, 0.0073601585, 0.0083653815, 0.0066888626, -0.010954174, -0.0052395514, 0.0043582604, 0.026108252, 0.011257118, -0.009129626, -0.0379506, 0.020352319, 0.017914997, 0.020393629, -0.015009491, 0.002430436, 0.020090684, 0.011594487, 0.014720317, -0.007167376, -0.013219368, 0.0379506, -0.0043203924, 0.01887891, 0.003108617, -0.027622972, 0.015863242, 0.0044374387, -0.011264003, -0.0035699178, 0.01264102, -0.011387935, -0.0038418788, 0.017033705, -0.015918322, -0.0083103, -0.016000943, 0.022638168, -0.0074290093, 0.008406692, -0.021963429, -0.006971151, -0.032635316, 0.004692187, -0.0023581425, -0.026122022, -0.006172481, 0.011732189, 0.008874877, 0.0029175559, -0.0033220546, -0.0050674244, -0.0071398355, 0.019044152, -0.0025543675, -0.014279671, -0.0395204, 0.018768748, -0.01644159, 0.0076906425, -0.00186758, 0.19641778, 0.005862652, -0.010017802, 0.020338548, -0.04158593, 0.003158534, -0.0030001767, -0.00079608825, -0.015408826, 0.00083998067, -0.0023598638, -0.002810837, 0.012820032, -0.002025937, 0.025681376, -0.0015491446, -0.033406444, -0.0133364145, -0.034893624, -0.009818135, 0.00025905142, -0.015298665, -0.018727439, 0.0035217223, -0.00026980936, -0.0060106814, -0.009618467, -0.002488959, 0.03241499, 0.005714623, 0.005019229, -0.031974345, 0.0188376, -0.0048574293, -0.0062069064, 0.010912864, 0.011821696, 0.010685655, 0.0034735266, 0.02121984, 0.032717936, -0.038253546, 0.0068644322, -0.0026249397, -0.0025492036, 0.012861343, -0.012131524, -0.015642919, -0.013804601, -0.0052911895, -0.03552705, -0.026466276, -0.010582379, 0.0060933023, -0.010121078, -0.0053290576, -0.013618703, 0.0221149, -0.016909774, 0.027099704, -0.04018137, 0.01656552, 0.010513528, 0.02442829, -0.028807206, 0.021674255, -0.0251168, 0.0125033185, 0.016813384, -0.026135791, 0.027099704, 0.0077457232, -0.0066785347, 0.010313861, -0.002392568, -0.0054426617, 0.034976244, -0.0139973825, 0.014555075, 0.036931608, -0.017116327, -0.025144339, -0.020696573, -0.0111331865, -0.035169028, -0.044477664, 0.0037317174, -0.0086338995, -0.023244055, -0.02199097, -0.001680822, 0.0058523244, -0.021674255, 0.015697999, -0.0052326666, -0.008551279, 0.007718183, 0.0034322161, 0.0034391012, -0.0023960103, -0.02051756, 0.053758763, 0.012400042, 0.0018520885, -0.017763525, 0.013942302, 0.0047885785, -0.0034735266, 0.0032635315, 0.0028383774, 0.0153950555, -0.024552222, 0.004613009, -0.023423068, 0.0074221245, 0.036325723, -0.0016300444, -0.02442829, 0.021605404, 0.00531873, 0.03076257, -0.018479574, -0.011560062, 0.040484313, -0.029358013, 0.008861108, -0.009267327, 0.013783945, 0.0050123436, -0.03605032, 0.029716037, -0.029302932, 0.019209394, -0.010713196, 0.0013839026, 0.005490857, 0.039603025, -0.028173778, -0.011202037, 0.000924323, 0.015050801, 0.018658588, 0.034948703, 0.0036731942, -0.018617276, -0.02451091, 0.0017298782, -0.013446576, -0.011119416, -0.019292016, -0.0146101555, -0.034948703, 0.01059615, 0.011821696, -0.016193725, 0.006895415, -0.007986701, -0.031781565, -0.009542732, 0.01733665, -0.027664281, 0.01140859, 0.030872732, -0.011656453, -0.008427347, 0.0076011363, -0.17449565, 0.022541776, -5.0266517e-05, 0.001791844, 0.017433042, 0.0035940157, -0.0034614778, 0.008048668, 0.0077526085, 0.0061931363, 0.0050261137, 0.023519458, 0.009336178, -0.011697764, -0.015271124, -0.00226003, 0.006427229, 0.0019966753, 0.0063514933, 0.016111104, 0.02115099, -0.020820504, 0.03784044, -0.020875584, -0.014348522, 0.014926869, -0.0128475735, 0.011146957, -0.022293914, -0.006344608, 0.014045578, 0.020214617, 0.025144339, 0.019718891, -0.0034872969, 0.009226018, -0.01651044, -0.006186251, 0.004299737, 0.024359439, 0.0117941545, 0.03629818, 0.01656552, -0.019319555, -0.010857783, -0.007883425, 0.034508057, 0.0055493806, 0.021040827, 0.011718418, 0.0089781545, -0.011835465, 0.0027058395, 0.020283468, -0.03395725, 0.00075563835, 0.0002670123, 0.013095437, -0.0063342806, -0.03302088, -0.008716521, -0.045992386, 0.0040415465, -0.0015568904, 0.0050536543, -0.0022514237, 0.016634371, 0.0041826908, -0.031065514, 0.006971151, -0.027278716, 0.026383655, 0.023395527, 0.02442829, 0.0174055, 0.017804837, -0.021577865, -0.027733132, -0.021412622, 0.02584662, -0.006458212, 0.011119416, -0.0060760896, 0.024028955, 0.012544629, 0.0035630327, 0.024634844, 0.007353273, 0.0058385544, 0.0072844224, 0.024827626, 0.00985256, 0.025103029, 0.0060864175, 0.023326676, 0.015078342, 0.009191592, 0.007084755, -0.004313507, -0.014747857, -0.010678771, -0.02759543, -0.013233138, 0.0189753, 0.027141014, 0.03067995, -0.025034178, 0.002392568, 0.041310526, -0.03448052, -0.043734077, -0.0035286073, 0.024813855, 0.022528006, -0.046928756, 0.010802702, 0.013873451, -0.014692777, -0.0040862993, -0.0026955118, 0.06213103, -0.0067439433, -0.011332854, -0.01885137, -0.013935417, -0.006623454, -0.116881244, -0.0073326183, 0.0006041664, 0.008764717, -0.01963627, 0.0053015174, -0.017956309, 0.021701796, -0.0069367257, 0.025529904, 0.002576744, -0.016179955, 0.023188975, 0.0021739663, 0.008640785, 0.012427582, -0.01730911, -0.016138645, 0.005859209, 0.029385554, -0.0003457605, -0.01059615, -0.014307212, -0.005704295, -0.03541689, -0.015133422, -0.017433042, 0.008151944, -0.0010009196, -0.010761391, -0.0034115608, -0.02441452, 0.007883425, -0.011924972, -0.018273022, 0.0038212235, -0.010114194, -0.0038040108, -0.0023891253, -0.028077386, 0.008179484, 0.009308638, -0.0023478149, -0.01806647, -0.008069322, 0.0042825243, -0.019994294, 0.034397896, 0.015188503, -0.018259251, -0.0056801974, 0.00083180465, -0.026645288, 0.0047507104, 0.053290576, -0.014981951, 0.0040174485, 0.029440634, -0.044973392, -0.0032583675, -0.0025784653, 0.021082139, -0.0056457715, 0.01656552, -0.015188503, -0.0139973825, -0.0074909753, -0.011532522, 0.023946334, 0.008695865, -0.016882235, -0.0036146708, -0.018259251, -0.01027255, -0.002089624, -0.0042412137, -0.021233609, -0.011339739, -0.0045476, -0.020613952, -0.0019157756, -0.013081666, -0.007552941, -0.013770175, 0.0038315512, 0.03778536, 0.019994294, 0.015078342, 0.010499759, -0.034755923, 0.0054736445, 0.027733132, -0.009253558, -0.0016584455, -0.022128671, 0.019140543, -0.0038522065, -0.0008610663, -0.0076080216, -0.0014045578, 0.007146721, -0.008826682, -0.048333313, 0.012730527, -0.014871789, 0.004230886, -0.012076443, -0.016469128, -0.0019209394, -0.012482664, 0.00058135955, 0.03552705, -0.034811, 0.019002842, 0.0006872178, 0.006661322, -0.033792008, 0.0023323235, 0.010850898, 0.0141282, 0.008303415, 0.013639358, -0.012255455, 0.008565049, -0.00086623005, 0.019415947, -0.006730173, 0.025571214, -0.0047094, 0.0076631024, 0.012351847, -0.016042253, 0.012310537, -0.02121984, -0.017914997, 0.006926398, 0.0008158829, -0.0015947584, 0.008902418, 0.00745655, -0.012338077, 0.047479562, -0.03398479, -0.040291533, -0.002115443, 0.003945155, 0.00057103194, 0.0014407046, -0.00531873, 0.0007134672, 0.023781093, 0.002323717, 0.024483372, 0.0009604697, -0.0058970773, -0.033268742, 0.0067818114, 0.0013985333, 0.016482899, 0.0024975655, 0.00051466026, -0.024772545, 0.04158593, 0.0058660945, 0.021522783, -0.0128475735, 0.025612526, -0.0154914465, -0.015808161, -0.011566947, 0.019154314, -0.008448002, -0.026906922, -0.0076080216, 0.0042584264, 0.012537744, 0.016896004, 0.03676637, -0.03464576, 0.0036387688, -0.018493345, 0.020269698, 0.005728393, -0.015574068, -0.011036796, 0.021908348, 0.023905024, -0.013122977, -0.0019519223, 0.015202273, 0.027278716, 0.020063145, -0.041475765, 0.022280144, 0.012813148, 0.0062516592, 0.016069794, -0.011697764, -0.013859681, 0.020311007, 0.026383655, 0.0052498793, 0.0015715212, -0.014197051, 0.003108617, -0.022734558, -0.034811, 0.0015904552, -0.018686127, -0.026603978, 0.00944634, 0.027609201, -0.025089258, -0.031203216, 0.008971269, 0.0221149, 0.0027695263, -0.0003227385, -0.0027110032, -0.010189929, -0.025516134, 0.023409298, 0.02528204, 0.016014714, 0.005456432, -0.01645536, 0.010444677, -0.0051707006, 0.031037975, -0.010630575, 0.01656552, -0.010045342, 0.013653128, 0.0019088906, 0.003583688, -0.0052636494, -0.026411196, -0.009625352, 0.021908348, -0.0017746313, 0.009239787, 0.11170366, 0.027760673, -0.020848045, -0.0066888626, 0.00374893, 0.012386273, 0.011050565, -0.0069780364, 0.016042253, -0.012606595, 0.041613467, -0.0033100059, 0.016896004, -0.02676922, -0.012771837, 0.016882235, -0.027457729, -0.012097099, 0.0057765883, 0.011456786, 0.012338077, -0.014376063, 0.015216043, -0.013935417, -0.00550807, 0.008929959, 0.026824301, -0.015642919, -0.015918322, -0.0003515698, -0.022707019, -0.00014598537, -0.020820504, -0.02204605, 0.026204644, -0.024593532, -0.015697999, -0.0041207247, 0.011780385, 0.0017315994, 0.01292331, 0.007174261, -0.009549616, -0.013914762, 0.0048918547, -0.043651454, 0.013880337, -0.0029364899, -0.020985747]" 25535366,Trading Time for Money,https://nicolasbouliane.com/blog/trading-time-for-money,190,1608888604,150,nicbou,"[0.03093673, 0.0065654465, 0.0104358485, -0.03652547, 0.0038074956, -0.013826175, -0.009475698, -0.015481608, -0.021653062, -0.027228558, 0.0047411597, 0.031757824, -0.010336523, 0.0010752036, -0.0009593233, -0.002206692, 0.039995257, -0.0023606473, 0.0013475224, -0.01942816, -0.054774962, 0.004585549, -0.018871935, 0.018328952, -0.01365401, -0.017150285, 0.022633078, 0.0023970667, 0.020063845, -0.017454883, -0.0036121544, -0.02665909, -0.017110555, 0.0125415595, -0.042590976, 0.01621, 0.009813406, 0.01614378, 0.024619598, 0.010382875, 0.026804768, -0.0076083695, 0.014753218, 0.007641478, -0.0071316045, 0.034247596, -0.01900437, -0.03422111, 0.00581388, -0.0015552791, -0.0003476409, 0.046908345, -0.027864246, -0.005549011, -0.03377083, -0.0077076955, -0.0034929633, 0.019640055, -0.006800518, -0.004714673, -0.0029350824, -0.018342195, -0.042193674, 0.010118006, -0.007787156, -0.027784785, -0.002691734, -0.010349766, -0.023454173, 0.002057703, 0.03636655, 0.023877963, 0.006608488, -0.004065743, 0.028473444, -0.010647744, -0.008826768, 0.015124034, -0.0054894155, 0.006853492, 0.017017849, -0.003113869, -0.024500405, 0.0039068214, 0.025520153, 0.019838708, -0.022672808, 0.03143998, -0.019560594, 0.0058966517, 0.02459311, 0.0029466704, 0.009892867, 0.013932123, 0.023295252, 0.016819198, -0.04804728, 0.018501118, -0.007926213, -0.026712064, -0.012177364, 0.018898422, -0.03204918, -0.0051318416, -0.0120979035, 0.012481963, 0.028314523, -0.025824752, -0.009627997, -0.010515309, 0.00029735712, 0.024089858, 0.01663379, -0.014435374, 0.032605406, -0.018885178, 0.0068866005, -0.013720227, 0.008402977, -0.010257062, 0.027466942, 0.012707102, 0.03713467, 0.011045048, 0.023414442, 0.020567097, 0.02516258, -0.0041253385, -0.017375423, -0.018024353, -0.01005841, 0.0038538477, 0.022686051, 0.024420945, -0.022844974, -0.00034681318, -0.0063800383, -0.014475104, -0.012978594, -0.0018623619, 0.009502185, -0.0060555735, 0.008813525, -0.016554328, 0.011343026, 0.019666541, 0.014289696, 0.00033481128, 0.010813287, 8.504786e-05, -0.0067607877, 0.0047212946, 0.014766461, -0.0024202429, 0.013256706, 0.020699533, -0.013382519, 0.017150285, -0.020712776, -0.01912356, -0.008356625, 0.0013127582, 0.02011682, 0.007873239, 0.022699295, 0.011839655, 0.002459973, 0.038114686, 0.030195095, 0.022897948, -0.004340545, 0.029903738, -0.012568046, 0.030804293, 0.018249491, 0.014951869, -0.019640055, 0.001996452, -0.00074701407, -0.021997392, -0.0019981074, 0.031916745, 0.024314998, 0.010674231, 0.005449685, 0.00019182327, 0.026063135, 0.03242, -0.0018805717, -0.01403807, -0.025136093, 0.001973276, 0.0037280347, -0.024659328, -0.64204305, -0.0134090055, -0.0032529256, 0.00079378, 0.001330968, 0.0077739125, 0.00086827454, -0.017415153, -0.03326758, 0.025189066, 0.007224309, -0.0016272905, -0.0034532328, 0.011157617, -0.0020229388, -0.017216502, -0.00018871934, 0.002784438, -0.02252713, -0.0012937208, 0.002016317, 0.018845448, -0.03249946, 0.015640529, 0.0054894155, -0.007197822, 0.011733708, -0.022619834, 0.009283667, 0.009508806, 0.0042047994, 0.020236012, -0.018395169, 0.015388903, 0.05392738, -0.018024353, 0.0052708983, 0.0103034135, 0.001614047, 0.029082645, -0.026155839, -0.009959084, 0.007363365, -0.0069859265, 0.0017199947, -0.015322686, 0.0024765276, 0.008535411, -0.007614991, 0.012289933, -0.0033489405, 0.021944417, -0.015256469, -0.0046418337, 0.015296199, -0.024884466, -0.009018798, -0.042538002, 0.010495444, 0.019070586, 0.0018590511, -0.01201182, -0.019997628, 0.0036883045, -0.029056158, 0.024460675, 0.00883339, -0.009535293, -0.0063403076, -0.011045048, -0.016620545, 0.015269713, -0.0063965926, 0.0034664765, -0.0049133245, -0.0010189189, 0.0028192021, -0.0415315, -0.014395644, -0.0010313346, 0.0060588843, -0.020434663, -0.014978357, 0.015574312, 0.018554091, -0.01568026, 0.025718804, -0.009773675, -0.009720702, 0.0043438557, 0.009283667, 0.034512464, 0.0056979996, -0.005121909, 0.005462928, 0.024036884, -0.02179874, 0.006555514, -0.0075752605, -0.020236012, -0.027625863, -0.026990177, 0.020315472, 0.008058647, 0.021586845, -0.0017531033, -0.01973276, 0.003622087, 0.047305647, -0.021732522, -0.0013880804, -0.002661936, 0.016395407, -0.008025538, 0.0019136803, -0.020050602, 0.040895812, 0.009058529, -0.002188482, -0.0150048435, -0.012144255, -0.0074825566, 0.042590976, -0.023586607, 0.004496156, 0.011475461, 0.010396118, 0.010727204, 0.01606432, -0.021401435, 0.006108547, 0.012932241, 0.007985808, -0.020196281, 0.026712064, 0.009475698, 0.006651529, -0.017931648, -0.0096809715, -0.02348066, -0.017812457, -0.029426973, 0.010137871, -0.025679074, -0.019798977, -0.03652547, -0.00807189, -0.0057973256, 0.0055953627, 0.010376253, -0.0018226316, -0.012680615, -0.027122611, -0.0004635212, -0.008820146, -0.009502185, -0.027572889, -0.024407702, -0.041981775, -0.010488822, 0.0037843194, 0.00986638, 0.0009204206, 0.01778597, -0.012349529, -0.00048255868, 0.0033936372, 0.0055125915, -0.015177008, -0.038962267, 0.012872646, -0.002451696, 0.009707458, 0.018620308, 0.0262353, 0.018540848, -0.0073037697, -0.0074030957, -0.019600324, -0.02416932, -0.00075487734, 0.004608725, -0.018554091, 0.00061664876, 0.03660493, -0.0002183102, 0.00960151, 0.013971853, -0.0042478405, 0.030433478, 0.029374, 0.0056317826, -0.0014170505, -0.0019699652, -0.0027877488, 0.00090717716, 0.018024353, 0.010012058, 0.016315946, -0.0038670911, 0.0149916, 0.020209525, 0.0013649043, 0.002118954, -0.0021752387, -0.010660987, 0.024778519, -0.006512473, 0.03533356, 0.019997628, 0.0026404154, -0.011263565, 0.0066382857, 0.00062244275, 0.009581645, 0.023957424, -0.012528316, 0.0051715723, -0.0012622676, 0.027069638, 0.033214603, -0.011316539, 0.017057579, 0.0069594397, -0.0010528553, 0.012289933, 0.0041021626, -0.0003137045, 0.0006961095, -0.011786682, -0.02317606, 0.0020759127, 0.019719515, 0.0028572772, 0.03522761, 0.04076338, 0.005145085, -0.004800755, 0.021216027, -0.0048636617, -0.007879861, -0.008356625, 0.0045656837, -0.018501118, -0.022725781, -0.0017001295, 0.027943706, 0.013124271, 0.0013913913, 0.05032516, -0.0018938151, 0.024328241, -0.0039001997, -0.014806191, -0.002673524, -0.0066184206, -0.0031618767, 0.0077275606, 0.015640529, 0.021467652, 0.009661106, 0.004655077, 0.017123798, -0.030512938, 0.012872646, 0.006628353, -0.010740448, -0.02688423, 0.0073103914, -0.0026900785, -0.018156787, -0.01185952, -0.024354728, -5.9977106e-06, 0.01954735, 0.018461388, -0.029744817, -0.02179874, 0.015667016, 0.017097311, -0.03954498, -0.012422368, 0.028897235, 0.008416221, -0.0085950075, -0.018871935, -0.0031618767, -0.01916329, 0.02657963, 3.8514678e-05, -0.034274083, 0.018501118, -0.0010752036, 0.013601036, 0.02183847, -0.024990413, 0.018289221, -0.014369157, -0.0072839046, -0.0055953627, 0.0014518145, -0.028579392, -0.021123324, -0.015653772, 0.0050689355, 0.021613332, -0.024990413, 0.00075901597, 0.0035856676, -0.03265838, 1.1982488e-05, -0.025427448, -0.021772252, 0.018938152, -0.006264158, -0.009257181, -0.022778755, -0.01809057, 0.029771304, 0.02046115, -0.013031567, 0.0017663469, -0.021864956, 0.010727204, 0.076282345, 0.015508095, -0.000887312, 0.038723886, -0.017137041, -0.021520628, -0.0018209761, -0.030963216, 0.0008020572, 0.0004095127, 0.016315946, -0.011667491, 0.015216739, -0.0010992074, 0.0057344195, -0.013137515, 0.004357099, -0.020050602, 0.01740191, 0.013680497, 0.004979542, -0.016779467, -0.0033803938, 0.028526418, 0.008475816, 0.018871935, 0.030459965, 0.010535175, 0.011647626, -0.028367497, -0.015084304, 0.013336167, 0.014196992, 0.010581527, -0.0022613213, 0.0043835863, -0.00208419, 0.008356625, 0.036207628, -0.004585549, 0.0075355303, 0.026870986, -0.0057609063, -0.011144374, 0.01250845, -0.023268763, -0.010296792, 0.037002236, -0.003289345, -0.017944891, 0.008244055, 0.019070586, -0.0038240498, -0.0037114804, -0.0152034955, -0.014792948, 0.008628116, -0.007946078, -0.018765986, -0.0018706392, -0.0032694798, -0.01817003, 0.00596618, 0.014660513, -0.023732286, -0.021533871, 0.017282719, 0.012263446, -0.0052708983, -0.0046683205, -0.0009990537, -0.028129114, -0.024420945, -0.010833153, -0.004757714, 0.008581764, 0.0135414405, 0.015534582, 0.019150047, 0.015772965, 0.0070256568, -0.01973276, -0.019110316, -0.014700243, -0.037108183, 0.020010872, 0.0134090055, -0.017057579, -0.020699533, 0.0020245945, 0.007562017, 0.012799807, 0.018951396, -0.0011836345, 0.008303651, 0.005770839, 0.0028142359, 0.006827005, 0.028923722, 0.00045317473, 0.00089145056, 0.0037644543, -0.0030592398, -0.019454647, 0.018156787, 0.018673282, 0.0007259073, -0.0139850965, -0.0032744461, 3.8256017e-05, 0.026831256, -0.01472673, -0.01025044, 0.03506869, 0.0027364304, -0.00081571453, -0.010098141, 0.0051119765, 0.025904212, -0.010872883, -0.017070822, -0.042829357, 0.027837759, 0.03877686, -0.01537566, -0.00021117115, 0.011846277, -0.00596618, -0.0004941467, -0.011025183, 0.0007958493, 0.0040988517, -0.016037833, -0.022659564, -0.021255758, -0.027943706, -0.0095485365, 0.0041485145, -0.019653298, -0.016805954, -0.015269713, 0.0035922893, -0.015508095, 0.0022331788, 0.037531972, -0.031069163, -0.0068866005, 0.006015843, 0.010641122, 0.03075132, 0.010151114, -0.011237078, -0.029400486, 0.0035922893, 0.019269237, 0.0011563199, 0.0036154652, -0.020262498, 0.016964875, 0.02038169, 0.013865906, 0.0068667354, -0.004118717, 0.020262498, 0.030248068, -0.015547825, 0.014673756, -0.0034433003, -0.01900437, 0.014845922, 0.012561425, 0.028499931, 0.0006116824, 0.011117887, -0.0073302565, 0.003067517, -0.008800281, -0.01029017, -0.03610168, -0.018196518, 0.012879267, -0.011263565, -0.026222056, 0.010621257, -0.0036353306, -0.012223716, 0.043650452, -0.01663379, 0.040445536, 0.015892155, 0.011647626, -3.336732e-05, 0.018289221, -0.013203733, -0.0037379672, -0.009488941, -0.01748137, -0.017415153, 0.0023457482, 0.0028043033, 0.0018309087, -0.0016322568, -0.0064032143, 0.017759483, -0.0024715613, -0.000936975, 0.0015602454, -0.025970431, -0.010641122, -0.006409836, 0.0012953762, -0.029612383, 0.0003447439, -0.0049629877, -0.026645847, 0.0033936372, -0.007416339, 0.011826412, -0.0040293233, -0.023454173, 0.0020974334, 0.0025758534, 0.018765986, -0.0005313939, 0.049901366, 0.016130537, -0.014925382, -0.004761025, -0.029585896, 0.0104822, 0.0011695633, 0.020818723, 0.027175585, -0.029506436, 0.0005851955, 0.016951632, -0.005340426, -0.010992074, -0.030989703, 0.021626575, -4.011838e-05, -0.010084896, -0.02183847, 9.96881e-05, 0.006383349, 0.039756875, 0.014700243, 0.011098022, -0.00071845786, 0.005664891, -0.016077563, 0.022633078, 0.013826175, 0.032870274, -0.016382163, 0.0007081114, -0.015282956, -0.04555751, -0.018514361, 0.020209525, 0.03067186, 0.017282719, -0.009290289, 0.015468365, -0.017282719, -0.009376371, -0.03901524, -0.014223479, 0.010713961, 0.016567571, -0.025043387, -0.01262102, -0.0051318416, -0.0061416556, -0.0032761015, -0.012376016, -0.016567571, 0.004433249, -0.0027711946, -0.017547589, 0.0026784902, -0.0013557995, -0.017295962, -0.019918168, 0.0009336641, -0.0013798033, 0.0010139527, -0.012568046, 0.027281534, -0.006529027, 0.015825938, 0.0040789866, 0.010932478, -0.003575735, -0.03093673, 0.0031155245, -0.015428634, -0.00050325156, -0.019295726, 0.025890969, 0.0069263307, -0.0033588733, -0.02076575, -0.017348936, -0.007972565, -0.01005841, 0.030989703, -0.033823803, -0.021891443, -0.012839537, -0.011733708, -0.00074080616, -0.008012295, -0.0023689244, 0.010839774, 0.0071316045, 0.010621257, -0.010925856, -0.01189263, 0.0047080508, 0.007859995, -0.02765235, 0.0080189165, -0.0120979035, 0.0063601728, -0.0034664765, -0.003913443, -0.012177364, 0.0017233056, -0.011839655, -0.0025957187, 0.010766936, -0.028526418, -0.0028175467, -0.013640767, -0.00095021847, -0.00936975, 0.023414442, -0.03408867, -0.014064557, 0.0025162578, -0.0060787494, 0.022010636, 0.005350359, -0.012640885, 0.0046021035, -0.0007172163, -0.0073103914, 0.0076017478, -0.03541302, 0.010409362, 0.02512285, 0.018699769, -0.023056868, -0.010012058, 0.00083847676, -0.028367497, -0.022275504, -0.017295962, 0.012766698, 0.023229033, 0.010793422, -0.011945603, 0.022394696, 0.009469076, 0.033823803, -0.030009687, -0.005592052, -0.00826392, -0.0004515193, -0.0023192614, 0.008396355, -0.02256686, 0.0030195094, 0.022381451, 0.019097073, -0.019269237, 0.0052146134, -0.0060754386, -0.010237196, -0.004211421, 0.031810798, 0.02394418, 0.00069652335, 0.012157499, -0.020739263, 0.019136803, 0.027440455, 0.0009336641, -0.026394222, -0.018673282, 0.014912139, -0.036922775, -0.027625863, 0.016951632, -0.012534938, 0.0070918743, -0.03713467, 0.023229033, 0.006035708, 0.0033207983, 0.0067872745, 0.0058304346, -0.03273784, -0.025480421, -0.005098733, -0.018448144, -0.005370224, 0.0108795045, -0.028552905, 0.028526418, -0.020275742, 0.014461861, -0.011448974, 0.015825938, -0.0268445, 0.01786543, 0.006774031, -0.0005657442, 0.019414917, -0.044736415, 0.02230199, 0.0015784552, 0.014514835, -0.0056814454, -0.02191793, -0.011316539, -0.024738789, -0.002612273, 0.017680023, -0.0070852526, -0.030618886, 0.0019749315, -0.0020378379, -0.0033174874, 0.02868534, 0.2072337, -0.01736218, -0.005403333, 0.042405568, 0.0025559883, 0.00807189, 0.014329427, -0.0077937776, -0.0010586493, 0.014978357, -0.027572889, 0.010455714, -0.008667846, 0.00964124, 0.013077919, -0.02244767, -0.024540136, -0.011879386, 0.010065031, 0.03713467, 0.0060025994, -0.004456425, -0.018832203, -0.00936975, -0.018646795, -0.0051848157, -0.021679549, -0.011064913, 0.025573127, 0.007522287, -0.008667846, 0.0069660614, 0.0112437, 0.031042676, -0.026036648, 0.01950762, -0.02424878, -0.025043387, 0.006211184, 0.017507857, 0.024646085, -0.0017266164, -0.008475816, -0.025599614, 0.00826392, 0.02791722, 0.004979542, -0.003569113, 0.009224072, 0.0149916, -0.03228756, -0.011031805, 0.009190963, -0.0051152874, -0.0054165763, 0.0045292643, 0.015110791, 0.00089393376, -0.016911902, 0.04245854, -0.0021752387, 0.028817775, -0.0129653495, 0.017547589, -0.021533871, 0.004072365, -0.0141837485, 0.0048471075, 0.014912139, -0.013971853, 0.01797138, 0.008747307, -0.01740191, 0.00592976, -0.0218782, -0.0018722946, 0.009091637, 0.035042204, 0.027546402, 0.019017613, -0.022090096, 0.014567809, 0.0006476881, -0.022156313, 0.011488704, -0.036578443, 0.013283193, -0.00017133729, -0.0055821193, -0.0041253385, -0.014620783, -0.026182326, -0.008601629, 0.0030956594, -0.000998226, 0.011674113, 0.030910242, 0.0039366195, -0.03430057, -0.0046484554, 0.004287571, 0.037161157, -9.932597e-05, 0.007681208, -0.004088919, -0.011700599, 0.005264276, 0.012806429, 0.024805006, -0.035969246, 0.0073699867, -0.029956713, 0.009747189, -0.0010089863, 0.02394418, 0.02076575, -0.017322449, -0.022553617, -0.012793185, -0.010455714, 0.0044431817, -0.0110119395, 0.017587319, 0.002130542, 0.0017415154, -0.030089147, -0.045080747, 0.006211184, -0.0076944516, -0.03430057, 0.011495326, -0.026142595, 0.0059562474, -0.025308257, -0.021017374, 0.026831256, 0.005274209, -0.016647033, -0.0066415966, -0.009356506, -0.018540848, -0.011296674, 0.0027761608, -0.009349884, 0.0056582694, 0.0028870748, 0.006231049, 0.0053371154, -0.012177364, -0.014210235, -0.011846277, 0.00029425317, -0.0053602913, -0.036313575, 0.018156787, -0.006899844, -0.050748948, -0.012395881, 0.003989593, -0.013375897, -0.033956237, -0.010535175, 0.024725545, -0.0032843787, -0.017997866, -0.011985334, -0.16686763, 0.029056158, 0.009820027, -0.009661106, 0.023321738, -0.009283667, 0.0061052362, -0.0026089621, -0.0061217905, -0.012250203, -0.008813525, -0.0113231605, -0.025215553, -0.026473682, 0.011270187, 0.008330138, -0.016421894, 0.045186695, 0.033373527, 0.014634026, 0.037955765, -0.0050854897, 0.028552905, 9.161786e-05, -0.0053371154, 0.008608251, -0.0028787977, 0.019957898, 0.0044067623, -0.02536123, -0.009919354, 0.014091045, -0.014541322, 0.01877923, -0.0020444596, -0.013759958, -0.006701192, 0.0069660614, 0.009978949, 0.025347987, 0.033029195, 0.0015312753, -0.03117511, 0.012515072, -0.013587792, 0.022699295, 0.017428396, -0.0017183393, -0.008237434, 0.0043471665, 0.01029017, -0.0033621842, 0.0056384043, 0.0019418227, -0.0138526615, 0.004214732, 0.0087936595, 0.011912495, 0.0135414405, 0.0067475443, -0.0051947483, -0.04134609, 0.008283786, 0.014276452, -0.002402033, -0.017348936, 0.012746832, 0.005724487, -0.018951396, 0.008098378, -0.0033903264, -0.027029907, 0.004155136, 0.01533593, -0.011561543, -0.007939456, -0.0021785495, -0.029003182, 0.008979068, 0.021255758, 0.0055125915, 0.03430057, -0.002723187, 0.0014187059, -0.042246647, -0.00023134674, 0.037505485, 0.0074759345, -0.015481608, -0.020712776, 0.0060522626, -0.0027645729, -0.030115634, 0.0011538367, 0.01805084, -0.012707102, 0.024884466, -0.00814473, -0.008330138, -0.018567335, -0.010078275, -0.010164358, -0.06367457, 0.024685815, 0.03790279, -0.0050126505, 0.009959084, -0.0048239315, 0.0052543436, -0.033664882, -0.019759247, 0.017415153, 0.016435137, 0.024262024, -0.026195569, 0.034644898, -0.005787393, -0.016885415, 0.017852187, -0.01877923, 0.04116068, -0.017190015, -0.040260125, -0.008111621, -0.012614398, -0.014144018, -0.1152711, -0.004234597, 0.018395169, 0.053636022, 0.026632603, -0.012667372, -0.0190441, 0.015706746, 0.0089724455, 0.02179874, -0.030089147, -0.008522168, -0.017084068, 0.0041054734, 0.0055523217, -0.012554803, 0.006287334, -0.010912613, -0.00558543, 0.02730802, 0.012932241, -0.013667254, -0.004830553, -0.0069461963, -0.026301516, -0.002137164, -0.020196281, 0.010263683, -0.0015213428, 0.03445949, 0.02566583, -0.008105, -0.020487636, -0.017984623, 0.0025907524, 0.0025841307, -0.0029913671, -0.014700243, 0.0006634147, -0.027758298, 0.0039763497, 0.00037847334, -0.008436086, -0.01250845, 0.0071912003, 0.0046517663, -0.0019782423, 0.014104288, -0.012872646, -0.009137989, -0.017004605, -0.010515309, -0.02635449, -0.024394458, 0.03133403, -0.0034035698, 0.0008864843, -0.005668202, -0.0036055327, -0.005764217, -0.0023027072, -0.004674942, -0.020090332, 0.02088494, 0.03075132, -0.03154593, -0.008926094, -0.0018193207, -0.010786801, -0.02111008, -0.017600562, 0.012389259, -0.0050325156, 0.024050128, -0.0209644, -0.009442589, 0.011693978, -0.015296199, 0.0015759721, 0.03109565, -0.028288037, -0.017004605, -0.0028970074, -0.0046451446, 0.014024827, -0.02050088, -1.9735864e-05, 0.002291119, 0.0030112322, -0.016130537, -0.006952818, 0.051861398, 0.009469076, -0.0002183102, 0.019017613, 0.019375186, -0.028446957, -0.006032397, 0.024805006, -0.00051608117, -0.013905636, -0.011945603, -0.030089147, -0.0057807714, -0.014819435, 0.006264158, 0.035969246, 0.0073567433, -0.003668439, 0.014753218, -0.009283667, 0.01395861, -0.018951396, 0.00058850634, -0.026102865, -0.014514835, -0.034327056, -0.017004605, 0.008429464, -0.0054794825, -0.0013541441, 0.009502185, -0.017732996, 0.0070124133, -0.0041584475, 0.00021582705, -0.005846989, 0.0024566622, 0.004979542, 0.00088565657, 0.0028076142, -0.023096599, 0.029215079, -0.0062409816, 0.014104288, 0.009621375, 0.006373416, -0.0026933893, -0.02791722, -0.009349884, 0.00065927615, 0.0029201836, -0.0113231605, -0.034512464, 0.023997154, -0.018554091, -0.016037833, -0.0140513135, 0.028526418, 0.011528434, 0.016964875, 0.015137278, 0.033876777, 0.012243581, -0.014488348, 0.004919946, -0.00103299, -0.016845684, 0.0054761716, 0.0036452631, -0.020077089, -0.02799668, 0.04237908, 0.03480382, 0.004241219, -0.011733708, 0.008204325, -0.0048901485, -0.012303176, 0.011826412, -0.025096362, -0.03430057, 0.008244055, -0.014369157, 0.009224072, 0.018540848, 0.017587319, 0.012329664, 0.010157736, 0.0043206797, -0.0054794825, 0.033479474, 0.00967435, -0.007946078, -0.022593347, -0.00699917, 0.035280585, 0.03133403, -0.02011682, -0.009945841, -0.0024053438, 0.021507384, -0.008813525, 0.0022811864, -0.0030161985, -0.03506869, 0.028817775, 0.02730802, -0.009429346, -0.0037810085, -0.020659802, 0.011290052, 0.0390947, -0.013508332, -0.016355677, -0.01568026, 0.008965824, -0.017229745, -0.021745766, -0.010263683, 0.012680615, 0.03840604, 0.021123324, 0.02799668, 0.027281534, 0.005297385, -0.015812695, 0.013640767, -0.013038189, -0.050881382, -0.018845448, 0.011945603, 0.001380631, 0.0056152283, 0.011886008, -0.020752506, 0.038511988, 0.026023405, 0.014594296, -0.030830782, 0.018064084, 0.0033555625, -0.008449329, -0.0066217314, -0.038459014, -0.0356514, -0.02210334, -0.012998459, 0.005767528, 0.027546402, 0.0031469779, 0.07458718, 0.015878912, -0.007833508, 0.035677887, 0.015362416, -0.00065099896, 0.016858928, 0.0019865194, -0.005870165, -0.019229507, 0.032102153, -0.007999051, 0.02424878, -0.0020808792, -0.010296792, -0.014806191, 0.00023921004, 0.029824277, -0.0011488703, 0.022844974, 0.02064656, 0.012879267, -0.002872176, -9.332503e-05, -0.0061416556, -0.01044247, 0.010065031, 0.019070586, 0.011773438, -0.020063845, -0.009455833, 0.0037015479, -0.006062195, -0.0030625507, 0.016819198, -0.0024152766, -0.016130537, -0.014091045, -0.024579866, 0.019997628, -0.006009221, 0.030618886, -0.014912139, -0.022858217, -0.042273134, -0.010780179, 0.0035293829, 0.015468365, -0.026116109]" 12105188,"CloudFlare, We Have a Problem",http://cryto.net/~joepie91/blog/2016/07/14/cloudflare-we-have-a-problem/,297,1468641992,163,signa11,"[-0.005424552, -0.0136437705, -0.008825608, -0.0297131, 0.0126550915, -0.0137755945, -0.026153855, -0.021895945, -0.011995972, -0.024308322, 0.03187501, 0.01960221, 0.0078105642, 0.009174941, 0.014619267, 0.018020323, 0.02070953, 0.005777181, -0.022199139, -0.005417961, -0.0334569, -0.004650087, -0.042710934, 0.0051048794, -0.02413695, -0.017993959, 0.020169051, -0.010730463, -0.012898966, 0.0046797474, -0.0032099113, -0.019865857, -0.018534435, 0.009036526, -0.038466204, 0.008067621, -0.0024799365, -0.02186958, 0.008924476, -0.009240853, 0.024163315, -0.003129169, 0.0020300876, -0.009214489, -0.016280247, 0.0024321503, 0.008469683, 0.004224955, -0.020999542, -0.012035519, 0.023003265, 0.028632144, -0.0092606265, -0.0069998475, -0.022489151, -0.014540172, -0.031901374, 0.011514815, 0.022515517, -0.02375466, -0.0067394953, -0.0004675628, -0.019694487, -0.026971163, -0.023926033, -0.02242324, 0.018455341, 0.023741478, -0.027023893, -0.015752953, 0.0028408044, 0.042104542, 0.014381984, -0.042605475, 0.0051048794, 5.838098e-06, -0.024189679, -0.017743492, -0.0058463886, -0.0049137347, 0.03263959, 0.009458362, -0.005615697, 0.014039242, 0.02921217, -0.0006805407, -0.018508071, 0.011534588, -0.012721003, 0.015568399, -0.00048733637, 0.0024420372, 0.012193708, 0.013399896, -0.007593055, 0.028579414, -0.011527997, 0.040285375, -0.0073491805, -0.0009829117, 0.017651215, -0.022225505, -0.021236826, -0.018956272, -0.027735742, -0.019984499, 0.025362913, -0.013320802, -0.014289707, 0.00034459584, -0.0012523268, 0.036594305, -0.016438436, -0.031716824, 0.028632144, -0.0023233956, 0.018415794, 0.009491319, 0.0062154955, -0.0030187666, 0.011738915, 0.007052577, 0.04619108, -0.0007468646, 0.017532574, -0.013722865, -0.012127796, -0.001593421, 0.03651521, 0.00029804552, -0.006815294, 0.02910671, 0.01871899, -0.015687041, -0.00408654, 0.0011822953, -0.018033504, -0.008443318, -0.009254036, -0.014513807, 0.016767995, 0.025666106, -0.022330964, 0.008041256, -0.0039777854, 0.03511788, -0.0033977602, 0.012312349, 0.0030253578, -0.003783345, -0.028183943, -0.007830338, -0.009708828, 0.019101279, 0.0136437705, 0.019101279, -0.00983406, 0.04700839, 0.009992249, -0.014184248, 0.011284123, 0.015001556, 0.016332977, -0.0047258856, 0.006179244, 0.017862134, 0.010460224, -0.018402612, 0.011607092, 0.0046369047, 0.0031720118, 0.041603614, -0.007672149, 0.024532422, 0.014342437, 0.015041104, 0.0046138354, 0.008034665, -0.005866162, -0.039599888, 0.0017516096, -0.0066307406, 0.009076073, 0.012411217, 0.0013668487, 0.032059565, 0.009979066, 0.004297458, 0.011112752, -0.013604223, -0.010644778, 0.020722711, -0.010400903, -0.020590888, -0.62220865, 0.0019790058, 0.01513338, -0.023596473, -0.021447742, 0.003872326, 0.01944402, -0.012134387, -0.027050257, 0.038729854, 0.006881206, -0.008456501, -0.033773273, -6.750824e-05, -0.014461079, 0.0063934578, -0.003766867, -0.015238839, -0.0032576972, -0.017928045, 0.012292576, 0.022475969, -0.020287693, 0.00015643786, 0.00356254, 0.0012185469, -0.008621281, -0.00364493, -0.015687041, 0.010170211, -0.0061957217, 0.017756674, 0.020010862, 0.013043972, 0.05085765, -0.012490312, 0.0030088797, 0.009016752, 0.0063341367, 0.04445101, -0.022344146, -0.0057145646, 0.027867565, 0.021790486, -0.012483721, 0.017479844, 0.030952245, -0.00861469, 0.0088387905, 0.007929206, -0.013801959, 0.0037306154, -0.021091819, -0.0136437705, -0.0038031186, 0.003529584, 0.033615086, -0.03242867, 0.027603919, 0.007078942, -0.0066867657, 0.015436575, -0.012866009, -0.0073755453, -0.021777302, -0.018125782, -0.013986512, 0.00059114763, 0.008964023, 0.013564676, 0.020999542, 0.015212474, -0.0010224589, -0.014118336, 0.0056519485, 0.014711544, 0.040997222, -0.022357328, -0.007434866, 0.010901834, -0.0038228922, -0.0020317354, -0.032165024, -0.023820573, 0.009491319, 0.006690061, 0.01573977, -0.029950382, 0.00068836776, -0.02176412, 0.026272496, 0.040021725, -0.025217906, -0.04397644, -0.005948552, 0.013109883, 0.012075067, 0.01645162, -0.020814989, -0.012312349, -0.024281956, -0.023055995, 0.0067757466, 0.00088321994, 0.029396722, 0.0098274695, -0.015172927, -0.012727594, 0.045215588, -0.01783577, -0.010064752, -0.011132525, -0.023662385, -0.032165024, 0.00069907843, -0.015911141, 0.014118336, 0.0010232828, -0.004600653, -0.03466968, -0.013577858, 0.0113764, 0.024295138, -0.014131519, 0.0006764212, 0.002206402, 0.0023019742, 0.0055860365, 0.020907266, -0.01541021, 0.0031028043, -0.0072041745, 0.015858412, -0.0022195843, 0.032217752, 0.008529005, 0.032850508, 0.0020976474, 0.01657026, -0.02810485, -1.7919807e-05, -0.02015587, 0.0025771565, -0.018297153, -0.0136965, -0.0030583136, -0.015858412, 0.004650087, -0.017440299, 0.019101279, 0.011455494, -0.022436421, -0.012398034, -0.0010817796, -0.03464331, -0.006126514, 0.008548778, -0.024703793, -0.021948675, -0.03021403, 0.009227671, 0.008054438, -0.028790332, 0.013577858, -0.006660401, 0.006854841, 0.009530866, -0.007902841, -0.009359495, -0.009840651, 0.0057903635, -0.008772878, 0.01049318, 0.0137887765, 0.0028539868, 0.021329101, -0.0026035213, 0.019760398, -0.028131213, 0.0037965274, 0.0009161759, -0.0071184887, -0.0017631443, -0.015172927, 0.016767995, -0.010486589, 0.016042965, 0.02055134, -0.030240396, 0.006927344, 0.027472094, 0.0024239114, 0.0059749167, 0.002082817, -0.017203014, -0.026483415, -0.003463672, 0.007158036, 0.013188978, 0.024809252, -0.010288853, -0.0028457476, 0.026483415, 0.0018587165, -0.0071778097, -0.026931616, 0.013162613, -0.012015746, 0.034827866, 0.012450764, 0.0055267154, -0.011811418, -0.013801959, -0.031505905, -0.010506363, 0.041629978, -0.002245949, 0.017901681, -0.0021207165, -0.0012679808, -0.007909432, 0.004772024, 0.040179916, -0.013050563, 0.00894425, 0.017295292, -0.008258766, 0.008720149, 0.023609655, -0.026931616, -0.010150438, 0.011402764, -0.0040634708, 0.0054278476, 0.01518611, 0.022225505, 0.009544048, -0.012984651, 0.03474877, -0.020208599, 0.011336853, 0.0050949925, 0.034827866, -0.0017582008, 0.008548778, 0.024980623, 0.035486985, 0.013116475, 0.009689054, -0.003888804, 0.013828324, -0.0035196973, -0.0032906532, -0.014658814, 0.013828324, 0.0050455583, 0.013327393, 0.015344298, 0.014474261, -0.011818009, 0.025811113, -0.005302615, 0.009346312, -0.0059946906, 0.013999695, 0.0204327, -0.00383937, -0.000637698, 0.007935797, 0.0036581124, -0.015687041, -0.036198836, 0.012800097, -0.02037997, 0.0072503127, 0.018508071, -0.019206738, 0.02960764, 0.012846236, 0.017150285, -0.028421225, -0.0109545635, 0.026074762, 0.009464954, -0.016425254, -0.03672613, 0.0072766775, 0.0084103625, 0.007474413, 0.000629047, -0.0041887034, 0.016280247, 0.004508376, 0.0006669464, 0.0005890879, -0.020630436, 0.031743187, -0.010901834, -0.02562656, -0.0149092795, 0.0037635714, 0.0033746911, -0.018138964, -0.0015472827, 0.030530408, -0.007922614, -0.009306765, -0.0019757103, 0.01330762, -0.020037228, 0.02115773, -0.017928045, -0.003717433, 0.0024008423, 0.011982789, 0.008634463, 0.011903695, -0.026417503, 0.013551493, 0.024466509, 0.0052004517, 0.0044490555, -0.009161759, -0.0019674713, 0.071606725, 0.004406213, 0.010506363, 0.015542034, -0.014948826, -0.014513807, -0.026905252, -0.025310183, 0.03163773, -0.024189679, 0.0073755453, 0.025086083, 0.007672149, 0.000833786, -0.00046261938, 0.012450764, 0.010242715, -0.011752098, -0.018099418, 0.013999695, -0.010038388, -0.0049466905, 0.017980775, 0.032507766, 0.017361203, 0.015528851, 0.012879192, 0.022779165, 0.016530713, 0.0030171187, 0.00028898264, 0.0054706903, 0.014671996, 0.00684825, -0.034616947, 0.020999542, -0.0385453, -0.01672845, 0.004129383, -0.008482866, 0.009247445, 0.013452626, -0.010005431, 0.006587898, 0.0049631684, -0.056473345, 0.020801807, 0.039309878, 0.0020399743, -0.003153886, 0.0026348296, -0.008496048, -0.045162857, -0.011442312, -0.0035196973, -0.020564523, 0.019193554, -0.0032329804, -0.018758537, 0.00075716333, -0.027182082, 0.0007052577, -0.0106711425, 0.0048577096, -0.023912849, -0.0042842757, 0.009207897, 0.0014854902, -0.0025672698, -0.009899972, 0.013261481, -0.023201, -0.025534283, 0.024321504, 0.019536298, 0.0070459857, 0.0019724146, 0.0127869155, 0.008904702, 0.01689982, -0.0012482073, -0.010644778, -0.008206036, -0.036462482, -0.032296848, 0.012061884, 0.007467822, -0.014223795, -0.02292417, 0.017756674, -0.017993959, -0.00433371, -0.00077858474, 0.0069668912, 0.004231546, 0.019470384, 0.018402612, 0.010684324, 0.021052271, -0.015159745, 0.024347868, 0.017941229, 0.008588325, -0.007869885, 0.027524823, 0.0020959994, 0.009689054, -0.031136798, 0.027472094, -0.014039242, 0.0099724755, -0.0015250373, -0.021144548, -0.0061891307, 0.02309554, 0.004307345, 0.0059518474, 0.021052271, -0.0021124776, 0.009491319, 0.020353606, -0.038413476, 0.015120198, 0.0066142627, -0.013564676, 0.014685179, 0.025244271, -0.04141906, -0.0064330045, -0.0071184887, -0.02633841, 0.012253028, -0.0012440877, -0.022251869, -0.025863843, -0.012022337, 0.008608098, -0.0017829178, -0.019404473, -0.014355619, -0.029133074, -0.0042051813, -0.010684324, -0.03767526, 0.024664246, -0.03219139, 1.4495476e-05, -0.01425016, 0.023767844, 0.014540172, -0.021355467, -0.0046402, -0.031057702, -0.008720149, 0.0026397728, -0.031374082, -0.0036844772, -0.0068877973, 0.0030863264, 0.01927265, 0.018903542, 0.008957432, 0.0020877605, 0.025020171, 0.0025524397, -0.033114154, 0.016095694, 7.142176e-05, -0.014368801, 0.0019559367, 0.014882915, 0.026351592, -0.005009307, -0.022238687, 0.011956424, 0.026799792, 0.012991242, -0.019285832, -0.048142076, -0.012879192, 0.013248298, -0.0014129871, -0.016280247, -0.003908578, -0.002295383, 0.013373531, 0.025072899, -0.01866626, 0.047192946, -0.020129504, 0.03258686, 0.025652925, 0.0043732566, 0.021329101, 0.0076194196, -0.015001556, -0.025692472, -0.017493026, -0.024347868, 0.026325226, 0.005981508, -0.0021767416, 0.0112445755, 0.016715266, -0.02353056, 0.019312197, -0.011982789, -0.038518935, 1.2738254e-05, -0.009768149, -0.013591041, -0.031901374, -0.016557077, -0.013670135, 0.006179244, -0.026812974, -0.003760276, 0.0066735833, -0.0028572823, 0.01088206, 0.0081269415, 0.007362363, 0.010947973, 0.008983796, 0.017018462, 0.015568399, -0.012318941, -0.025652925, -0.019944951, 0.019009002, -0.01700528, 0.026140673, 0.033404168, -0.012028928, 0.018521253, -0.0063143633, -0.019839492, -0.019944951, -0.040707212, 0.015159745, 0.021091819, -0.009451771, -0.0004193647, -0.018415794, 0.017493026, 0.009748375, -0.027735742, 0.0098274695, 0.005968326, -0.026865704, -0.0023250435, 0.03419511, 0.012470538, 0.03551335, -0.024730157, 0.0113829905, -0.0048906654, -0.025389276, -0.0014319367, -0.011725733, -0.0046039484, 0.045690153, -0.012127796, 0.0007130847, 0.0025013578, 0.034221478, -0.010862287, 0.00029474992, -0.03353599, 0.028342132, 0.00993952, 0.008331268, 0.02325373, -0.008087394, -0.0021520245, 0.0052070427, 0.0066010803, -0.03324598, -0.024044674, -0.0003301776, 0.02810485, 0.0045248545, -0.035618808, 0.019430839, -0.0071053063, -0.028632144, -0.0070657595, -0.009194715, 0.03783345, -0.014078789, -0.019786762, 0.011976198, -0.010222941, 0.024861982, 0.01485655, -0.01071728, -0.0026249427, 0.010849104, -0.022673706, 0.009174941, 0.0436337, 0.008074212, -0.025850661, 0.0046995208, 0.0048016845, -0.014408349, 0.006235269, -0.007632602, -0.025745202, -0.02264734, -0.022291416, -0.009913155, 0.00872674, -0.018547619, 0.0033318482, 0.034274206, 0.0044886027, -0.013281255, -0.048379358, -0.0037536847, -0.01689982, -0.008733331, 0.026760245, -0.017638033, -0.009451771, -0.018956272, 0.019035367, 0.0030451315, -0.0049104393, -0.013999695, -0.012701229, 0.006070489, -0.02600885, -0.017242562, 0.005322389, -0.015673857, -0.0021306032, -0.011910287, 0.010018614, -0.0008980501, 0.018415794, 0.00081401237, -0.017427115, -0.003153886, -0.02375466, -0.04445101, -0.025916573, -0.01689982, -0.02309554, -0.0042117727, 0.0010274022, 0.043844618, -0.0013594336, -0.023464648, -0.016530713, -0.0031588294, -0.039494433, 0.009313356, -0.03290324, 0.021329101, 0.023319643, 0.032481402, 0.02242324, 0.047087487, 0.011185255, 0.03398419, 0.019285832, 0.011481859, 0.010763419, -0.008238992, 0.023201, -0.0049730553, -0.05842434, 0.0041788165, 0.019180372, -0.012595771, 0.027313905, 0.025204724, 0.015528851, 0.0002434622, 0.011284123, 0.004903848, 0.012740777, -0.004429282, 0.0014442953, -0.035355162, 0.0060012816, -0.0069734827, 0.0016214335, -0.019259468, -0.003677886, 0.008680602, -0.013432852, -0.03556608, -0.012305758, 0.0031242257, 0.0050488543, -0.02015587, 0.00839059, 0.009458362, -0.0043567787, 0.010677733, 0.01049318, -0.008911293, 0.0027847793, 0.00038846847, -4.6447316e-05, -0.009451771, 0.01871899, -0.015107015, 0.008634463, 0.006874615, 0.019799944, -0.0052070427, -0.011079796, -0.028895792, 0.0039250557, -0.031848647, 0.008548778, -0.005793659, -0.0064363005, 0.01972085, -0.014447896, -0.018903542, 0.009524275, -0.011086388, 0.014434714, -0.0088387905, -0.005375118, 0.021513656, -0.0016955845, -0.048300266, 0.012068475, 0.0030451315, 0.008087394, -0.016227517, 0.22272961, 0.01402606, -0.015278386, 0.029264899, -0.009794514, -0.0051345397, 0.005572854, -0.0027336974, -0.023201, 0.026272496, 0.010064752, -0.0014731317, -0.027630283, -0.0067362, 0.005533307, -0.0120948395, -0.0181126, -0.012839645, 0.0037866407, 0.0050290804, 0.0009054652, 0.01927265, -0.047403865, -0.0057705897, 0.01021635, 0.00046426718, 0.007817156, 0.0052663637, 0.021579567, 0.008568551, -0.013301028, 0.0021915718, 0.019799944, 0.00508181, -0.019193554, -0.0072832685, 0.018428978, -0.034142382, -0.016095694, 0.019259468, 8.099959e-05, 0.0008358457, -0.00910903, -0.018270789, -0.0034307162, -0.0065186904, -0.010071344, -0.021223642, -0.020722711, 0.020920448, -0.013413078, 0.0012811632, 0.019417657, 0.016636172, -0.007962162, -0.0129319215, 0.007085533, 0.0137887765, -0.006755973, 0.00063852186, 0.0035526531, 0.0061298097, -0.009596777, 0.021856397, -0.031215891, 0.011916878, -0.023846937, 0.04853755, 0.00828513, 0.016267065, -0.022475969, 0.011956424, -0.009570412, 0.012108022, -0.011732324, -0.023833755, -0.006413231, 0.03878258, 0.026707515, 0.02148729, -0.0116005, 0.0053718225, -0.011956424, 0.008911293, 0.031374082, -0.033720545, 0.035618808, -0.010644778, -0.007158036, -0.003317018, -0.009372677, -0.0040074456, -0.033061426, -0.014606085, -0.013340576, -0.00684825, 0.018086234, 0.01972085, -0.00571786, 0.008627872, -0.021368649, 0.0524659, 0.0036251564, 0.0016337921, -0.003849257, -0.01717665, -0.008601507, 0.014355619, -0.01899582, -0.031611364, -0.0016955845, -0.033272345, 0.024018308, -0.008858564, 0.015107015, 0.024361052, -0.007856702, -0.028289402, -0.007665558, -0.0007126728, 0.025165176, -0.012780324, -0.0066801743, 0.00900357, -0.0099592935, -0.013301028, -0.01894309, 0.003015471, -0.015120198, -0.05462781, 0.017954411, -0.015713405, 0.004814867, 0.0068218852, -0.010677733, 0.021777302, 0.0204327, -0.017216196, 0.0031489427, 0.011897104, -0.002559031, 0.0185608, 0.00922108, 0.0005499527, 0.0063440236, -0.02590339, 0.013043972, 0.012622136, -0.008107168, 0.007612828, -0.025982484, 0.027920295, 0.01077001, -0.010506363, -0.009761557, -0.015897958, -0.017914863, -0.03556608, 0.022251869, 0.024954258, -0.062168136, -0.014131519, 0.016095694, -0.016886637, -0.024716975, -0.026193403, -0.16546533, 0.02353056, -0.009636325, 0.007777608, 0.021223642, 0.023082359, 0.03456422, 0.0046698605, -0.026087943, 0.00436337, -0.01176528, -0.0071184887, -0.00040412255, -0.0037273199, -0.0016082511, 0.009517684, -0.026536144, 0.058898903, 0.03456422, -0.0042546154, 0.060849898, -0.034326933, 0.026720697, -0.016174788, 0.027920295, -0.0042183637, 0.004340301, 0.0092804, 0.010354765, -0.032955967, -0.007151445, -0.0054278476, 0.03640975, -0.0033565653, 0.007131671, 0.0039250557, 0.017941229, 0.01639889, 0.004267798, 0.03640975, 0.033773273, 0.009761557, -0.0009812639, 0.011831192, -0.0042645023, 0.012721003, 0.0082719475, -0.029739464, 0.011251167, 0.002778188, 0.037490707, -0.007850111, -0.0011798237, 0.014342437, -0.028236672, 0.010354765, 0.010822739, 0.011607092, 0.0022986787, -0.03546062, 0.0014698361, -0.035645172, -0.00049186783, -0.007968753, -0.008535596, -0.027023893, -0.0015085593, -0.0066571054, -0.012490312, 0.026259314, 0.011000702, -0.023240548, -0.00532898, -0.00563547, -0.003155534, 0.0054706903, -0.031585, -0.0122266635, 0.01904855, 0.019483568, 0.010012023, 0.004831345, -0.015687041, 0.018824449, -0.017189832, 0.0007093772, 0.017967593, 0.019734032, -0.0046138354, 0.023939215, 0.023636019, -0.017901681, -0.0028622258, -0.017914863, 0.00040680022, 0.0052795457, 0.031242257, -0.00060103444, 0.00041874676, 0.011969607, 0.0063539105, 0.0015868298, -0.01939129, -0.018982638, 0.023688748, 0.022054134, 0.009702236, -0.004353483, 0.013577858, -0.01508065, -0.022686888, 0.022686888, 0.04732477, -0.0021470813, -0.021750938, -0.003915169, 0.020854536, -0.0038591437, 0.0020729303, -0.03026676, 0.07788154, -0.004551219, -0.026364774, -0.0052070427, -0.015700223, -0.02148729, -0.10661914, 0.017097555, 0.009689054, -0.01165323, -0.020894082, -0.0007242074, -0.011607092, 0.026694333, -0.0132219335, 0.00472259, -0.016794361, -0.010479998, -0.025732018, -0.002189924, 0.0049400995, -0.023662385, -0.0044424646, 0.0007884715, -0.018415794, 0.0229769, 0.0029545024, -0.00248488, 0.011936652, -0.025178358, -0.019971317, -0.018653078, -0.02292417, 0.013722865, 0.014698361, 0.008383998, 0.0021322512, 0.007850111, 0.011956424, -0.017479844, -0.005876049, -0.0092804, 0.002957798, -0.0022706662, 0.027920295, -0.008700375, 0.0027831313, 0.00058043696, -0.025231088, -0.013248298, -0.0075732814, -0.01667572, -0.009504501, 0.013815141, -0.025165176, 0.002410729, -0.03087315, -0.027630283, -0.023991944, -0.021460926, 0.018086234, -0.0019575844, -0.00071226084, 0.00999884, -0.026707515, 0.002860578, -0.018231241, -0.0034537853, -0.035539716, 0.026417503, 0.006495621, 0.016095694, -0.0061396966, -0.0015324524, -0.0014920814, -0.021632297, -0.010269079, 0.001805987, -0.013096701, 0.023359189, -0.029950382, -0.0024700498, -0.014724726, -0.024071038, 0.015423393, 0.02254188, -0.017717129, 0.0011954777, 0.005721156, -0.031453174, 0.017216196, -0.006439596, 0.017677581, -0.0034834456, 0.01485655, -0.034880597, 0.025587013, 0.021737756, 0.0050389674, 0.025442006, -0.0010916664, 0.007777608, -0.026852522, -0.006080376, 0.013241707, 0.023174636, -0.022765981, 0.013683317, -0.049776692, 0.018916724, 0.031743187, 0.0050884015, 0.0035592443, -0.01374923, -0.0080083, 9.107948e-06, -0.0063802754, 0.0021783893, -0.014263342, 0.0102493055, 0.0030039365, 0.0098274695, -0.034880597, -0.003888804, 0.02921217, 6.709629e-05, 0.025850661, 0.008311495, 0.00049186783, 0.0022904398, -0.0017170059, 0.025165176, -0.00018486238, 0.02380739, 0.0023019742, 0.015542034, -0.00032132067, -0.025428824, -0.0020811693, -0.020524977, -0.020630436, -0.022225505, -0.031374082, -0.0042612064, -0.027234811, 0.018982638, 0.0003161713, 0.028183943, -0.015067468, -0.01121162, 0.011139117, -0.010842513, -0.012266211, -0.023332825, -0.019852674, 0.001275396, 0.0362252, -0.00133966, 0.014975191, 0.016807543, -0.027050257, -0.010901834, -0.011870739, -0.002010314, 0.027867565, -0.012866009, -0.0010900187, -0.013538311, 0.023926033, 0.03021403, 0.0028375087, -0.026812974, 0.008041256, 0.00078970735, -0.023820573, 0.0036548167, 0.011086388, -0.01954948, -0.00328571, -0.011000702, 0.0113829905, -0.0026842635, -0.009095847, 0.02264734, -0.002631534, -0.0033400871, -0.00066241494, 0.0057079736, 0.015528851, -0.019299014, -0.0057343384, 0.02055134, 0.014381984, -0.0024403892, 0.020261329, -0.00789625, 0.005292728, 0.025600195, -0.031400446, -0.011481859, -0.007665558, 0.017822586, 0.00059856276, 0.0068021114, 0.010519545, 0.033404168, 0.024901528, -7.935179e-05, 0.018903542, 0.012780324, -0.007968753, 0.029634006, -0.037859816, 0.010545909, -0.0073887277, -0.03385237, -0.00095242745, 0.041603614, -0.019351743, -0.0099592935, 0.008964023, 0.0074216835, 0.00037157853, 0.020775441, 0.019852674, -0.0017549052, -0.0007695218, -0.009853834, -0.0030682005, 0.032165024, 0.008107168, -0.02159275, 0.022805529, 0.010130664, -0.013670135, -0.0001659127, 0.009069482, -0.003595496, -0.004126087, -0.009906564, 0.0066472185, -0.018152146, -0.0077116964, 0.00016333802, 0.0006323426, 0.015370663, -0.004379848, 0.07287224, 0.029950382, -0.021236826, 0.0066735833, 0.00844991, 0.004554515, -0.021184096, 0.010361356, 0.007329407, -0.031084068, 0.0045413324, 0.007263495, -0.016412072, -0.024361052, -0.032455035, -0.0016758109, -0.011844374, 0.0019641756, -0.023359189, 0.00040741815, 0.044714656, -0.0068021114, 0.009076073, -0.01612206, -0.012272802, -0.0116005, 0.0017680876, -0.0009466602, -0.008917885, -0.020353606, -0.012918739, 0.01678118, -0.02623295, -0.01639889, 0.015924323, 0.005981508, -0.0056519485, 0.0028655212, 0.0003365628, 0.00960996, -0.01612206, 0.043844618, -0.008878337, -0.023820573, 0.02921217, -0.018929908, -0.014184248, -0.027102986, -0.0010430564]" 22116914,Pledge() and Unveil() in SerenityOS,https://awesomekling.github.io/pledge-and-unveil-in-SerenityOS/,110,1579696083,28,akling,"[0.04096919, -0.024699887, -0.008928627, -0.03652292, -0.024656579, 0.011281684, -0.015229913, -0.0055325725, -0.051998243, -0.009433884, 0.017250944, 0.0005183403, -0.014190526, 0.0026832798, -0.00728293, 0.0269952, 0.017655151, 0.0149556305, -0.007701572, 0.016312608, 0.0025389204, -0.03158583, -0.032885063, 0.00080705906, 0.009780347, -0.0033094385, 0.034444146, -0.011426044, 0.002380125, 0.019026564, 0.01040831, 0.002867338, -0.0036071797, -0.0009654033, -0.024642143, -0.022159163, -0.01012681, -0.0059873047, 0.001199085, -0.009780347, 0.011000183, -0.008430587, -0.009657642, -0.021119775, -0.012465431, 0.02110534, -0.025075221, 0.014428719, 0.0011566795, 0.03005562, 0.032913934, -0.006413165, -0.031672444, 0.023025319, -0.025248453, 0.019430771, -0.010639286, -0.013771883, -0.00075517996, -0.009109076, 0.01005463, 0.0049010003, 0.0067054927, -0.008762614, 0.010884697, 0.014825707, -0.030864032, 0.00962877, -0.016904483, -0.037100356, 0.029045105, 0.01548976, 0.009137948, 0.009289525, 0.0415755, -0.018131536, -0.03112388, 0.003890485, 0.01463804, -0.00596926, -0.0011521681, -0.039814312, -0.010624849, 0.025594916, -0.0071890964, -0.01655802, 0.013136703, 0.028655333, -0.015908401, -0.017886126, 0.022101419, 0.008856447, 0.0015852463, 0.022967575, -0.0010556278, 0.03311604, -0.0065142163, 0.0032354542, 0.0012315658, -0.012234456, -0.006167754, 0.011122889, -0.0025533563, -0.015893966, -0.049197674, -0.008343971, 0.0074345074, -0.002529898, 0.03811087, 0.0005878133, -0.015908401, 0.0106176315, -0.004597846, -0.031383727, 0.014551424, -0.018073794, 0.00721075, 0.018607922, -0.010956876, -0.0013208882, 0.02582589, -0.0104010925, 0.0067379735, 0.0060414397, 0.005276335, -0.006445646, -0.027327228, -0.012198366, -0.010783644, -0.026879715, 0.02241901, 0.0034195124, 0.015893966, -0.015403144, -0.0032715441, 0.0033491373, -0.010899132, 0.033664603, -0.021668341, -0.017900562, 0.027442716, 0.032798447, -0.0064564724, 0.01655802, -0.007802624, 0.0070988717, 0.03776441, -0.0061208373, 0.012090097, 0.023472833, 0.01733756, -0.0012902118, -0.012992343, -0.0251474, -0.012667534, -0.0018730628, -0.010170117, 0.0109713115, -0.0009825459, 0.004947917, 0.029016232, 0.012768586, -0.02767369, 0.020296928, 0.007788188, 0.034328658, 0.022967575, 0.016471405, 0.0070303013, 0.00948441, 0.013468729, -0.0005210471, -0.031383727, 0.031845678, 0.005709413, 0.004745814, -0.007874804, 0.006842634, -0.022895396, -0.017539663, 0.005002052, 0.0011593861, 0.0029214728, 0.041719858, -0.0397277, 0.00383635, 0.028929617, 0.024988607, 0.015807351, 0.011137325, -0.010422747, 0.010328913, -0.0069220318, -0.02174052, -0.6065403, -0.012530393, -0.0008314197, -0.02266442, 0.0009996886, 0.014544206, 0.015359837, 0.018636795, -0.017568534, 0.03144147, 0.012501521, 0.0053665596, 0.0039446196, -0.032740705, -0.0004084919, -0.0091812555, -0.009296743, -0.026619866, 0.025999121, -0.01843469, -0.022462318, 0.03626307, 0.015778478, -0.018867768, 0.031152751, 0.0415755, -0.0023674937, -0.0017205832, -0.00091171963, 0.012104533, -0.023646064, 0.016254865, -0.011599275, 0.0162693, 0.058465544, -0.0136275245, -0.030459827, 0.029362695, 0.01058876, 0.069812186, -0.013800755, -0.026446637, 0.008712088, 0.012097315, -0.009188473, 0.0059728688, 0.050641265, -0.007586085, -0.034039937, 0.0042513832, -0.0048252116, 0.008509984, 0.021913752, 0.014385411, -0.006117228, -0.011693109, 0.049226545, -0.011498224, 0.0236605, 0.010097938, 0.0042910823, 0.023747116, -0.0095205, -0.023025319, -0.035541277, 0.02611461, 0.00038977028, 0.0042622103, 0.0048504747, -0.0005395431, 0.012855202, 0.0037749975, 0.010769209, -0.041690987, 0.029319387, 0.008791486, 0.03297168, -0.004107024, 0.007701572, 0.010271169, -0.0031091399, -0.007549995, -0.01872341, 0.013208882, 0.025003042, 0.0026165135, 0.0008702163, 0.008423369, 0.01595171, 0.0030333512, -0.011303338, 0.0019235886, -0.003304025, -0.022014804, 0.002710347, 0.051132087, -0.01502781, -0.01624043, 0.007542777, -0.008856447, -0.010538233, -0.008870883, 0.00018541155, 0.020643389, 0.046166126, 0.008033599, -0.05272004, -0.0027338054, 0.03034434, -0.02828, -0.0042116847, -0.026403328, -0.024281245, -0.028438795, -0.021971496, -0.031412598, 0.029550362, 0.0026092955, 0.01090635, -0.027457152, 0.012631444, -0.005640842, 0.01925754, 0.0154175805, 0.024743196, 0.008611036, 0.02117752, -0.013822409, -0.026331149, 0.0085027665, 0.01012681, -0.018463563, 0.009549372, 0.012703625, 0.008971934, 0.010877478, 0.016471405, -0.029940132, 0.01619712, -0.02142293, -0.012465431, 0.020556774, -0.003055005, 0.0056264065, -0.021653906, 0.006102792, -0.0325386, -0.01818928, 0.0062363246, -0.008271792, 0.0081490865, -0.00451123, -0.015807351, 0.014912322, 0.005023706, 0.0039771004, -0.018550178, -0.026980765, -0.013613088, -0.0040456713, -0.00061036943, 0.027226176, -0.019849412, -0.004767468, 0.0025786192, -0.010567105, 0.013028433, 0.007975855, -0.020859929, -0.041950833, 0.011260031, 0.018232588, 0.012082879, 0.023184115, 0.02202924, 0.013800755, -0.027803615, -0.020585645, -0.024353426, 0.012284982, 0.023819296, 0.0041467226, -0.020585645, -0.017525228, 0.022837652, 0.0032444769, 0.020195875, 0.018218152, -0.008307882, 0.019084308, -0.009643205, 0.004125069, -0.007896458, 0.0046303268, -0.008784267, 0.019921593, 0.010646503, 0.009650423, 0.031383727, 0.03005562, 0.024858683, -0.021798264, 0.010992966, -0.03684051, -0.008271792, -0.025219582, 0.01826146, -0.0053124246, -0.008430587, -0.0022285478, 0.00046691232, -0.008495549, -0.013663614, -0.017582972, -0.00047322805, 0.022245778, 0.0075933025, 0.00020142643, -0.013064522, -0.018463563, -0.001485097, -0.010653721, 0.016817866, 0.03175906, 0.009765911, 0.010025758, 0.0044354415, 0.011931302, -0.016052762, -0.02412245, -0.0025461384, 0.0028962097, 0.008423369, 0.009571026, 0.03666728, 0.0013714139, 0.02451222, -0.016298173, 0.03548353, -0.028178949, -0.00039879276, 0.03282732, 0.009368923, -0.015128861, -0.003890485, 0.005608361, 0.033347014, 0.02078775, -0.028900744, -0.0046555893, -0.01843469, 0.016716816, -0.010733119, 0.0014381802, 0.017366432, -0.011628147, 0.01211175, -0.003157861, 0.021754956, 0.0125159575, 0.057772618, -0.001309159, -0.0064384276, 0.012349944, -0.01740974, -0.023371782, -0.009578244, -0.039265748, -0.022173598, -0.01133221, -0.009065768, -0.023386218, -0.017395305, -0.0025190709, 0.020311363, 0.004601455, 0.016370352, 0.005460393, 0.014688565, 0.013382114, -0.037100356, -0.016067198, 0.023472833, 0.02511853, -0.016659072, -0.007499469, -0.020383542, -0.020167004, 0.011584839, -0.008055253, -0.024526656, -0.013887371, -0.0004799949, 0.010040194, -0.018145973, -0.0032715441, -0.0028691425, -0.032105524, -0.012696406, -0.038399592, 0.003296807, 0.008048034, -0.05240245, -0.018911077, 0.039987545, 0.01687561, -0.00948441, -0.031066136, 0.004153941, -0.04301909, -0.010574323, -0.01616825, -0.004756641, -0.0491688, 0.009802001, -0.00058510655, -0.025017478, 0.0023963654, 0.021307442, 0.027240612, -0.028164512, -0.012999561, -0.016283736, 0.025926942, 0.052662298, 0.01964731, 0.029564798, -0.0181171, -0.02205811, 0.011555967, -0.03441527, -0.027991282, 0.012559265, 0.03126824, 0.0038255232, -0.012898509, -0.013620306, -0.020369107, 0.020094823, -0.01517217, -0.0004360104, -0.008250138, -0.009065768, -0.02874195, 0.009607116, -0.02263555, 0.0035494359, 0.01840582, -0.0067668455, 0.0007439019, 0.042730372, 0.021913752, -0.0017178764, -0.0026868887, -0.021249698, 0.013172792, 0.014226615, 0.006214671, -0.01101462, 0.020412415, -0.00092029094, -0.0074345074, -0.016399223, 0.007860367, 0.0055830986, 0.014407065, 0.011216722, 0.006442037, -0.014053385, -0.0015184801, -0.022563368, 0.017972741, 0.003861613, -0.017857254, 0.015619683, -0.0059764776, -0.026489943, -0.024295682, 0.02426681, -0.003516955, 0.0019596785, -0.0055542267, -0.0005742796, -0.027442716, -0.0181171, -0.019430771, -0.00056751276, -0.018463563, 0.017034406, -0.011036274, -0.01055267, -0.011317775, -0.034934968, 0.03562789, -0.0076221745, -0.008777049, -0.062305503, 0.0111878505, 0.02572484, 0.015287657, 0.003861613, 0.006618877, 0.0008264574, 0.014385411, 0.010747555, -0.017236508, 0.008300664, -0.00820683, 0.02295314, 0.0006257076, 0.012927381, -0.00218524, -0.0005760841, 0.0047241603, 0.012126187, 0.00920291, 0.02174052, -0.019055435, 0.016788995, 0.0378799, 0.019589566, -0.0028132033, 0.015330965, -0.028770821, 0.022837652, -0.0104444, 0.012660316, -0.006662185, 0.008228484, 0.006828198, -0.0016312608, 0.011967392, -0.0112961205, -0.0018108079, 0.017164329, -0.009527718, 0.013281061, 0.02263555, 0.02205811, 0.0076293927, -0.02213029, 0.031672444, -0.0036955997, -0.0049118274, -0.0031524478, 0.0024703497, 0.035685636, 0.0069833845, -0.031990036, 0.0030243287, 0.0016628394, -0.022144727, -0.0255083, 0.012104533, -0.0138440635, 0.031354856, -0.019488515, -0.03883267, 0.01865123, -0.0152010415, -0.0005526257, -0.0056733233, -0.028900744, 0.008943063, 0.0020480985, -0.010826953, 0.001026756, -0.014782399, 0.011195069, -0.033982195, -0.029911261, -0.0062327157, -0.021581726, 0.030315466, -0.0051391935, 0.009137948, 0.0071493974, 0.0071602245, 0.009224564, -0.028843, -0.015085554, -0.027933538, 0.012905727, 0.009787565, -0.0022086983, 0.0071710516, 0.017164329, -0.010451619, -0.009924706, -0.00856051, 0.012393252, -0.007557213, -0.02120639, 0.0031614702, 0.011714763, 0.0245844, 0.019445207, 0.0113683, -0.01314392, -0.0050561866, -0.005965651, -0.016716816, -0.027052945, -0.05254681, -0.012783022, 0.013259408, -0.022361265, -0.005734676, -0.007975855, 0.0014859992, -0.024035834, -0.012566483, 0.027644819, 0.0039915363, 0.024064707, -0.007687136, 0.049919467, 0.023963654, 0.020527901, 0.029709158, -0.01989272, -0.024079142, 0.008423369, -0.0031199667, -0.0013957747, 0.0033617688, 0.00030089906, -0.00060630933, -0.023617193, 0.0011251008, -0.022289086, -0.017582972, 0.024338989, 0.0083656255, -0.0037677796, -0.0002679671, -0.021523982, -0.010473272, -0.0040059723, -0.017034406, -0.02543612, 0.009325615, -0.009599898, -0.011721981, -0.0101556815, -0.0041864216, 0.010112373, -0.0044173966, 0.00902246, 0.047090024, 0.010769209, -0.015576376, 0.015966145, 0.011000183, 0.014703002, 0.019806106, 0.031499214, 0.0074345074, -0.01986385, -0.0038543951, 0.0024216285, -0.029362695, -0.038457334, -0.026504379, 0.028049026, -0.006167754, -0.028121205, 0.016500276, -0.0032192138, -0.0023855385, -0.016615763, 0.007997509, -0.019618439, 0.0013750229, 0.0024486957, 0.015764043, 0.001459834, 0.008553293, -0.014717437, 0.018838897, -0.02149511, -0.011887994, 0.00049488194, 0.010487708, 0.008011945, 0.024945298, -0.0026002731, -0.029218337, 0.01009072, -0.009780347, 0.00019184007, -0.016283736, 0.00863269, 0.030286595, 0.0023332082, -0.008943063, 0.012804676, -0.010992966, 0.0043596528, -0.022866523, -0.0057924194, -0.012617009, -0.015071118, -0.009924706, 0.03811087, 0.01619712, -0.022014804, -0.02913172, -0.0059476057, 0.0067524095, -0.023920348, 0.0064564724, 0.012075661, 0.017236508, 0.0060739205, 0.014558642, -0.0011350255, 0.010920786, 0.0044354415, 0.022303522, 0.0061461, 0.036436304, -0.013078959, 0.0042080753, -0.013129485, 0.008603818, -0.03978544, -0.0011684087, -0.007737662, -0.0069184224, 0.009679295, -0.035801124, -0.01818928, -0.010769209, 0.012003481, 0.022606676, 0.0065106074, 0.0028835784, 0.02103316, 0.010754772, 0.021754956, -0.011563186, -0.001525698, 0.014666911, 0.0002679671, -0.009513282, 0.021538418, 0.001367805, 0.018218152, -0.0032065825, -0.0060161767, -0.0064745178, 0.00033022204, -0.024714323, 0.005276335, -0.0062796324, -0.016543584, -0.027846921, -0.005193328, -0.034559634, 0.004532884, 0.029795773, 0.032249883, -0.0010808908, -0.005637233, -0.0029665849, 0.016962226, 0.026879715, -0.009145166, -0.0041864216, 0.012783022, -0.021249698, -0.013028433, -0.018593486, -0.020455722, 0.06253648, 0.02135075, 0.002845684, -0.02096098, 0.002775309, -0.033029422, -0.0065358705, 0.00080615684, 0.02241901, 0.025609352, 0.0032607173, 0.03300055, -0.0008363821, 0.0051428024, 0.025017478, -0.032307625, -0.027486023, 0.007716008, -0.028539848, 0.00076736027, 0.0053665596, -0.02263555, -0.022390138, 0.02572484, 0.008495549, 0.015792916, 0.04039175, -0.005929561, -0.01772733, -0.009008025, 0.0012920164, 0.021581726, 0.012126187, 0.016384788, -0.043365553, 0.015287657, 0.004164768, -0.004763859, 0.0010511166, 0.00011046875, 0.002529898, 0.0032390633, -0.0062254975, -0.021437366, 0.011548749, 0.00034759028, -0.0033058296, 0.009903053, -0.015533068, -0.0058176825, 0.015836222, -0.0022790735, -0.021321878, -0.0011810401, 0.010877478, -0.012494303, -0.01709215, -0.0040059723, -0.015273221, -0.005669714, 0.0325386, 0.0027446325, -0.00774488, 0.0071169166, -0.0117291985, -0.0069617303, -0.0069509037, -0.0005305207, 0.019069873, -0.0114043895, -0.008683216, -0.027413843, 0.010603195, 0.004525666, -0.022332394, -0.004135896, -0.0026129046, 0.029969005, 4.6550256e-05, 0.0030928995, -0.0269952, 0.015590811, -0.00454732, -0.020657826, 0.019387463, 0.20995626, -0.021148646, 0.0062760236, -0.0029359085, -0.016673507, 0.0070266924, 0.013100613, -0.00080435234, 0.003605375, 0.021235263, -0.034270912, 0.0031524478, -0.018218152, -0.005680541, 0.010985748, -0.0076005207, -0.030488698, -0.0042513832, -0.023920348, 0.00021586237, 0.009498847, -0.022433445, 6.958572e-05, -0.03268296, 0.015778478, 0.019921593, 0.011844686, 0.004366871, 0.02611461, 0.0062760236, -0.021552853, 0.0018135145, -0.002863729, -0.004092588, 0.00948441, 0.0054134764, 0.02096098, 0.012523175, 0.04394299, -0.034588505, 0.017597407, -0.0126242265, 0.00813465, -0.007759316, -0.00026210246, 0.0343864, -0.021985931, -0.0048071668, 0.0071999235, 0.008986371, -0.032740705, 0.029189464, 0.04405848, 0.008495549, -0.027197305, -0.004587019, -0.002248397, 0.023718243, 0.027789177, 0.026850842, 0.014825707, 0.016904483, -0.026706483, 0.019705053, -0.02781805, 0.03314491, -0.010263951, -0.0017368236, 0.01183025, -0.01268197, -0.0149556305, 0.003080268, 0.01421218, 0.004846866, -0.02174052, -0.00062029413, 0.03066193, -0.006102792, 0.01502781, 0.015893966, -0.015547504, -0.02767369, -0.016745687, -0.009910271, -0.01658689, -0.024858683, 0.014811271, 0.01502781, -0.017857254, 0.008697652, -0.027457152, -0.024786504, 0.005738285, -0.0297669, -0.008928627, -0.008250138, 0.01424827, 0.027327228, -0.008271792, -0.00013432188, -0.0092606535, 0.06259422, 0.023848167, -0.0016601327, -0.0035259775, -0.0029738029, -0.017395305, 0.01566299, 0.0001465022, 0.0044318326, -0.021552853, -0.027947973, -0.0047025066, -0.022592241, -0.0019235886, 0.031383727, -0.006340985, -0.0074489433, 0.039987545, -0.014573078, -0.01488345, -0.0028186166, -0.007456161, 0.012450995, 0.020989852, 0.0033852272, -0.0362342, 0.0121911485, -0.008834793, -0.018925512, 0.013692486, -0.012963471, -0.0014751722, -0.020744441, -0.003062223, -0.014479244, 0.00026683926, -0.011086799, -0.021018723, -0.0011169806, -0.0025623788, -0.011094017, -0.01928641, 0.025060786, -0.0028059853, -0.0095060645, 0.0016069002, 0.003421317, -0.0036540965, -0.009708167, -0.018838897, -0.0009735235, 0.009780347, -0.022390138, 0.015908401, -0.024367861, -0.007095263, -0.016630199, -0.012927381, 0.004962353, -0.06398007, 0.012588137, 0.01989272, 0.0012703624, -0.040131904, -0.0074128537, -0.18593486, -0.0011738221, -0.0008228484, -0.010177336, 0.013533691, 0.0032607173, 0.012227238, 0.020831056, -0.024772067, -0.030171108, 0.014897887, -0.014825707, -0.027081817, -0.04948639, 0.004525666, 0.008300664, 0.0060775294, 0.024338989, 0.006860679, 0.021798264, 0.025003042, -0.038601693, -0.008574947, -0.0025804236, 0.010061848, -0.0028799693, -0.011981827, -0.007730444, 0.014435937, -0.05205599, -0.013281061, 0.011880776, 0.031787932, 0.023285165, 0.026793098, -0.012126187, 0.012544829, -0.025580479, 0.009585462, 0.017279817, 0.019618439, 0.031152751, -0.0038038692, 0.016153812, 0.007788188, 0.009275089, 0.0017828381, -0.0013650983, 0.018824462, -0.005005661, 0.010559888, -0.013663614, -0.017698457, -0.00057833974, 0.011288903, -0.015287657, -0.016745687, 0.010848606, -0.008538856, 0.009542154, 0.004991225, -0.023992527, 0.0069761663, 0.005048969, 0.016211556, -0.011815814, -0.015114426, 0.023689372, -0.03129711, -0.0038110872, 0.006788499, -0.007557213, 0.0035115415, -0.021336315, 0.018665666, 0.02025362, -0.03467512, 0.011346647, -0.0060233944, -0.001716072, -0.0026634303, 0.0060739205, -0.0022339611, -0.01286242, 0.0015987799, 0.01009072, -0.007441725, 0.0057563297, -0.01225611, -0.0069364677, 0.015648555, -0.011483788, 0.013995641, 0.005922343, -0.007860367, 0.025378376, 0.014811271, 0.0041467226, -0.017871689, -0.037013743, 0.021278571, -0.012378816, -0.00966486, 0.006604441, 0.011339428, -0.009318397, -0.010848606, 0.014320449, 0.046483714, 0.0108341705, -0.0306908, 0.030286595, 0.023328474, 0.037244715, -0.018362511, 0.010473272, 0.006149709, -0.0051572383, -0.013656396, -0.030026749, 0.039525595, 0.013526472, 0.021942623, 0.00781706, -0.0074272896, -0.03559902, -0.11987602, -0.043221194, 0.0031831241, 0.013425421, -0.0003065381, 0.023862604, 0.0016312608, 0.022722164, 0.008033599, 0.032885063, -0.0010384852, -0.032625217, 0.002717565, 0.004962353, -0.02426681, 0.00497318, -0.040305134, -0.024974171, 0.0011314165, 0.02241901, 0.016312608, -0.0055867075, -0.014703002, 0.009888616, -0.02263555, 0.0011260031, -0.01865123, 0.009744258, 0.020354671, 0.0092606535, -0.006084747, 0.009787565, -0.00874096, -0.008690434, -0.016370352, -0.016630199, -0.04977511, -0.015792916, 0.009448321, -0.0028799693, 0.0064925626, -0.00050841563, 0.05514528, -0.0010141246, -0.01896882, 0.025320632, -0.037735537, 0.014378193, 0.014255487, -0.014998938, -0.02536394, -0.018275896, -0.012631444, -0.020859929, 0.01872341, -0.005680541, -0.014695783, 0.009455538, -0.048649106, -0.012761368, -0.009303961, 0.0069364677, 0.009072986, 0.019026564, -0.02110534, -0.005698586, -0.025883634, -0.0017377259, 0.0064709084, -0.0071818787, -0.019531822, 0.014811271, -0.01893995, 0.0199649, 0.015330965, 0.00078089396, -0.007044737, -0.02042685, 0.021018723, -0.006802935, 0.007044737, -0.028020153, 0.011144543, -0.043105707, 0.016991097, 0.002493808, 0.03727359, 0.0035566539, -0.0136275245, -0.004482358, -0.014147218, 0.014869015, 0.023646064, 0.019936029, -0.014428719, -0.008574947, 0.016543584, 0.003612593, 0.002192458, 0.025580479, -0.041431136, 0.006806544, -0.0637491, 0.00589708, 0.014970066, -0.018304767, -0.008675998, 0.0029467356, 0.0021401276, -0.044809148, -0.002042685, -0.0010186358, -0.034761734, 0.012891292, -0.00059638463, -0.00029706451, -0.024541093, -0.0040745432, 0.028655333, -0.004771077, 0.015619683, 0.0008381866, 0.014616386, -0.024006963, -0.004597846, 0.014118346, -0.010632067, -0.0014878038, -0.02355945, 0.0035620674, 0.007557213, 0.0025948596, 0.017741766, -0.0026580167, 0.0054856557, 0.027067382, -0.02849654, 0.016904483, 0.007485033, 0.006445646, 0.016774558, 0.010112373, -0.0053990404, -0.023328474, -0.012162277, -0.0076654823, 0.0011296121, -0.017453047, -0.0055397907, 0.0006581885, 0.007882021, 0.0014093083, 0.01709215, 0.00820683, -0.020296928, -0.0031813195, 0.010494926, -0.019531822, -0.007586085, -0.005214982, -0.0085821645, -0.014226615, 0.038312975, 0.0040204083, 0.019560695, -0.019344155, 0.026085738, -0.018492434, -0.0011729199, -0.019878285, 0.008964716, 0.009109076, -0.033837836, -0.011195069, 0.007456161, -0.004103415, 0.008300664, 0.010754772, 0.0027283921, -0.013952333, -0.037360203, 0.020989852, 0.0033671823, -0.032885063, -0.0018550179, 0.01222002, 0.010321694, 0.007062782, 0.006817371, -0.0013786319, 0.0021130603, 0.010884697, -0.009578244, 0.0042116847, 0.0021293007, -0.014190526, 0.008509984, 0.008834793, 0.022779908, -0.011274466, -0.0005246561, -0.012501521, 0.0044246144, 0.0023765161, 0.01378632, -0.02266442, -0.016601328, 0.0065286523, -0.019546257, -0.024873119, -0.0017449438, 0.010985748, -0.0010547256, -0.0007642024, -0.007860367, 0.013887371, -0.0030676366, 0.021163084, 0.011144543, -0.027543766, -0.00014424659, 0.04082483, 0.017207636, 0.011931302, 0.039496724, -0.009968014, 0.033549115, -0.009051332, 0.01179416, -0.005622797, 0.012176713, -0.0010610414, 0.016139377, 0.0100762835, 0.000119096476, -0.020051517, -0.012884074, -0.021437366, -0.012819111, 0.014897887, 0.01712102, 0.06686726, 0.032913934, -0.0227366, 0.0035873302, 0.029391566, 0.0013867521, 0.015749607, 0.027514895, 0.022909831, -0.0001916145, 0.048042797, -0.007910893, 0.008401715, -0.014645258, 0.0036919909, -0.0118374685, -0.024367861, 0.013569781, -0.010581542, 0.023487268, 0.028871873, -0.0031127487, 0.008755395, 0.00090901286, -0.029535927, -0.017178765, 0.012725278, 0.00066675985, -0.002057121, -0.028698642, 0.013187228, 0.024093578, 0.00866878, -0.034501888, 0.00087923877, -0.0022159163, 5.058217e-05, 0.008423369, -0.0039879275, -0.004153941, -0.00497318, -0.028799694, -0.021870444, -0.035887737, 0.013988422, -0.007077218, -0.017395305, 0.013367677, -0.043250065]" 20674665,Root: CERN's scientific data analysis framework for C++,https://root.cern.ch/,137,1565612123,39,z3phyr,"[-0.015955787, -0.001149703, 0.006176662, -0.026493696, 0.011764733, -0.0014741374, -0.008502661, -0.0053469613, -0.03520201, -0.016140165, 0.015133177, 0.0145233115, -0.029301915, -0.011154868, -0.014693506, 0.0060738362, 0.014324751, -0.018990932, 0.003258526, 0.003114924, 0.011147777, 0.019260406, 0.0012693715, -0.0070418203, 0.010396081, 0.017601006, 0.0062121195, -0.018806554, -0.0013925856, -0.01548775, 0.023018882, -0.009403277, -0.0029465018, -0.018338518, -0.018834919, -0.022834504, 0.0060419245, -0.019742627, 0.001229482, 0.006006467, 0.028039636, 0.004520806, -0.0038045687, 0.009977685, -0.007665869, 0.03239379, -0.011637087, -0.02354365, 0.0044357087, 0.00536469, 0.0037691114, 0.011594539, -0.020962358, -0.0005996716, 0.016764212, 0.022905419, -0.0047619157, 0.0033188036, -0.00023512624, -0.005268955, 0.02039504, -0.007828972, -0.021033272, 0.00027900466, 0.007765149, -0.008587759, -0.007275839, 0.011934929, 0.003051101, -0.018196689, 0.011679635, 0.018622175, 0.0022178544, 0.006548964, 0.01791303, -0.014353116, -0.03738618, -0.005378873, 0.031542815, -0.011388886, 0.0072261984, 0.0138425315, -0.017728651, 0.047796443, -0.016608201, 0.016693298, 0.0039605806, 0.036138084, -0.028266562, -0.022806138, 0.010771928, 0.006297217, 0.008708314, 0.006825531, 0.008899783, 0.0016239445, -0.0021203468, 0.024933577, -0.021742418, -0.024550637, -0.019870272, 0.0010894256, -0.024252795, -0.0020175206, -0.032166865, -0.015785592, 0.024777563, 0.019600797, 0.010764837, 0.02077798, -0.030209623, 0.026564611, -0.0019271044, -0.026692258, 0.030209623, -0.016168531, 0.028635317, -0.004169779, -0.016792579, 0.010835752, 0.05661822, -0.009034521, 0.030408183, -0.009424551, -0.0020299307, 0.006400043, -0.009559289, 0.007467308, 0.004797373, -0.030663475, -0.0007902546, 0.020806346, -0.004258422, 0.007885704, -0.0030599653, 0.030521646, -0.019232042, 0.014190013, -0.035031814, -0.012452605, -0.00405277, 0.009225991, -0.0027514868, -0.007921161, 0.0054497877, 0.016792579, 0.012856818, 0.00936782, 0.03409574, -0.0034748157, 0.004981751, 0.0037549285, -0.0076233204, 0.0044002514, 0.020210663, 0.0011594538, -0.011644178, 0.015516116, -0.014253836, -0.0052405894, 0.0074105766, 0.0042123278, -0.010949215, 0.0065241437, 0.011672544, 0.04399542, -0.0052831382, -0.023075612, 0.016877677, 0.009509649, 0.004967568, 0.044732936, 0.0012383463, -0.0024625098, 0.009949319, 0.018920017, 0.0074743996, 0.017728651, -0.0013757434, -0.0022940875, 0.015246641, 0.0051377635, 0.034804888, 0.007070186, -0.016140165, -0.00052166556, 0.029188452, 0.010119515, -0.016622383, 0.017742835, 0.010502453, 0.0014927525, -0.03409574, -0.011530715, -0.6267717, 0.016608201, -0.0030174165, -0.028536038, 0.025756186, 0.0090983445, 0.009140893, 0.008991973, -0.055710517, 0.014537495, -0.000756127, 0.026323503, -0.013984361, -0.026337685, -0.02101909, -0.018196689, 0.001571645, -0.034833256, -0.017657736, -0.00020864407, 0.0013198982, 0.014452397, -0.024408808, 0.007665869, 0.012835544, 0.0061589335, 0.005822089, -0.0006918606, -0.00095380144, 0.0049108365, -0.0026362506, -0.020267395, 0.00072510185, 0.007821881, 0.046037763, -0.011885288, -0.011197416, 0.030266354, 0.0047831903, 0.04578247, -0.031684645, -0.004205236, 0.02947211, 0.020040467, -0.0023490463, 0.02404005, 0.015955787, -0.013154659, -0.032705817, -0.028266562, -0.017118786, -0.0067652534, 0.026493696, 0.014537495, 0.010360624, -0.0039605806, 0.02907499, -0.0010814477, -0.005066849, -0.0036662852, -0.020068834, 0.038095325, -0.0032833463, -0.023770576, 0.0031787471, -0.024635734, -0.018026493, -0.015955787, 0.010218794, -0.006155388, 0.00796371, -0.00015479329, 0.0031379713, -0.017161334, -0.0026876635, 0.035514034, 0.051540736, -0.025983112, 0.0090983445, 0.03409574, -0.017558457, -0.012289502, -0.011778916, -0.01733153, 0.027514867, -0.0024412354, 0.009850039, -0.0003977866, 0.008772137, 0.022352284, -0.016239446, 0.010552093, -0.0015033897, -0.039967474, 0.022791954, 0.02238065, 0.0015459384, 0.003942852, 0.0066588814, -0.0072049242, -0.02558599, -0.015757225, -0.001959016, 0.0054497877, 0.0043860683, 0.017969761, -0.0061163846, -0.0048718336, 0.030237988, -0.009502557, -0.027685063, 0.0071481923, -0.014736055, -0.0031379713, 0.0095521975, -0.020054651, 0.0121476725, 0.010254252, -0.00057573797, -0.009608929, 0.011977477, -0.01640964, 0.011984568, -0.012254044, 0.018466163, 0.0027000736, 0.0070028175, 0.005708626, -0.024891026, -0.0367054, 0.016239446, -0.0010911985, 0.008275734, -0.010523728, 0.010552093, -0.010871209, 0.019700078, -0.016664933, -0.024025869, -0.03145772, -0.02179915, -6.587302e-05, 0.022692675, 0.004744187, -0.009410368, -0.015260823, -0.029925965, -0.0039747637, 0.019572431, 0.002985505, -0.003510273, 0.0069496315, -0.017487543, -0.00970821, -0.0009936909, -0.006839714, -0.003524456, -0.036535207, -0.013906354, -0.011998751, -0.011927837, 0.037499644, -0.012154764, 0.009332363, -0.018877469, -0.02155804, -0.024167698, 0.026678074, -0.022153724, -0.015048079, -0.025954746, -0.018125774, 0.0032567533, 0.006758162, -0.0067156134, 0.003747837, -0.022494113, -0.005772449, -0.015473567, -0.009963502, -0.0027709883, 0.017260615, -0.0141829215, -0.016863493, 0.004010221, 0.026678074, 0.011509441, -0.0024820112, 0.018508712, 0.02023903, -0.008190637, 0.023132345, -0.021146735, 0.0071304636, -0.01548775, 0.019047663, -0.015104812, -0.002668162, 0.0064886864, 0.03928669, 0.026819903, 0.01014788, 0.015672129, -0.0054462417, 0.011573263, -0.02412515, -0.0028614043, -0.015459384, 0.029982695, -0.007999168, -0.00020531994, -0.014119098, -0.014551678, 0.0034996357, 0.006049016, 0.022253003, 0.0063929516, 0.01767192, 0.010885392, 0.006176662, 0.01131088, 0.0004675932, 0.006846805, -0.008694131, -0.0087579535, 0.010615917, 0.022125358, 0.014792787, 0.006088019, -0.027911989, -0.0053079585, -0.0038896662, 0.010140789, 0.005772449, 0.049441665, 0.029415378, 0.00063512893, -1.6828368e-05, 0.043910325, -0.0057015345, 0.008616124, 0.0037088338, -0.0028755872, -0.0015787365, -0.015232458, -0.0025050584, 0.012736264, -0.00015645535, -0.006442592, 0.012814269, -0.012296593, 0.025061222, 0.0022958603, -0.008126814, -0.008360832, 0.0032691634, 0.010651374, 0.014154555, 0.014282201, 0.017473359, 0.008360832, -0.0029518206, -0.022664309, 0.008580667, -0.006860988, 0.01767192, 0.0023969137, -0.014792787, -0.0006320264, -0.031883206, -0.01947315, 0.0009679844, 0.004956931, -0.046434883, 0.018139957, -0.013998543, 0.0130482875, -0.001813641, 0.0012702579, 0.013296489, -0.02845094, -0.030805305, 0.029330282, 0.015813958, -0.0015805092, -0.004180416, -0.010119515, -0.010247161, 0.008410472, 0.011856922, 0.0029642305, 0.013459592, 0.011849831, -0.0077155093, -0.0048328303, -0.013799982, 0.027174477, -0.022735223, -0.010927941, 0.009828765, -0.00626176, 0.0035138188, -0.018920017, -0.026351867, 0.029358648, 0.03520201, -0.022196272, -0.022096992, -0.012438422, -0.0048576505, 0.011807282, -0.013601421, -0.016976956, -0.012941916, -0.004825739, -0.0072403816, 0.010523728, 0.0036521023, 0.026309319, 0.031486087, -0.012885184, 0.0040953187, 0.000118449556, 0.0064106802, 0.05315759, 0.04047806, -0.0031184698, 0.008913966, -0.018324334, -0.016608201, -0.005102306, -0.022550846, 0.01631036, -0.013076654, -0.0097791245, 0.008460113, 0.0051909494, -0.010708106, -0.006293671, 0.01801231, 0.017104603, -0.005761812, -0.0014395665, -0.019529883, -0.0100486, 0.007602046, 0.0030971954, -0.01014788, 0.02830911, -0.0025582444, 0.019529883, 0.018139957, 0.037840035, -0.012027117, -0.02116092, 0.039343424, 0.0015751907, 0.011566172, -0.010977581, 0.018040676, 0.029415378, 0.023288356, -0.0047158212, -0.010020234, 0.00013739704, 0.0054214215, 0.009006155, 0.0030138707, -0.0013801756, 0.0066837016, -0.004024404, 0.0072900215, -0.021728236, -0.039003033, 0.002774534, -0.0066092415, -0.010154972, 0.006687247, -0.011807282, 0.007680052, -0.005219315, -0.01451622, 0.0073042046, -0.023416003, -0.047541153, -0.009474192, 0.011481075, 0.0008075401, 0.0013659926, -0.017955579, 0.023628747, 0.0067758905, -0.0060809273, 0.017501725, -0.0029748678, -0.030862037, -0.024933577, 0.03242216, 0.022153724, -0.0071588294, 0.031202426, 0.014892068, -0.013062471, -0.0033294407, -0.030606745, -0.043030985, 0.020735431, -0.017359896, 0.0073538446, 0.02398332, -0.004651998, -0.0011798418, 0.00010903121, 0.03559913, 0.017076237, 0.011388886, 0.012615709, -0.01019752, 0.002630932, 0.0077793323, 0.02276359, 0.00057041936, 0.024536453, 0.004563355, -0.004244239, -0.015913237, -0.02111837, -0.014877885, 0.015601213, 0.012792995, -0.006946086, 0.006860988, -0.015601213, -0.0054462417, 0.029301915, -0.0057121716, 0.006548964, 0.0040137665, 0.013792891, -0.009828765, -0.00286495, 0.024536453, 0.00806299, -0.00026349208, -0.014388573, -0.020905627, 0.013764525, 0.010076965, -0.021175101, 0.023628747, -0.025203051, -0.015161543, -0.032705817, 0.0051235803, -0.012246952, 0.019430602, -0.008523935, -0.01072938, -0.0015822821, -0.007970802, -0.012785903, -0.0014307022, -0.011764733, -0.0049001994, -0.014104915, 0.024082601, 0.0015787365, -0.015232458, -0.00985713, -0.026536247, -0.012998647, 0.009325271, 0.010587551, 0.027926173, -0.0054746075, -0.02670644, -0.016976956, -0.026777355, -0.008211912, -0.016097616, -0.03304621, -0.011098136, 0.011856922, 0.014338934, 0.019302957, 0.00035479464, 0.007034729, -0.0021522583, -0.006077382, 0.0043470655, -0.022862868, -0.005758266, -0.019671712, 0.002405778, -0.028975708, -0.0012525292, -0.020083016, -0.024678282, -0.013027013, 0.024621552, -0.018863285, 0.015700493, -0.0029234546, -0.072616555, 0.0038471173, 0.014154555, 0.0071446467, 0.018196689, -0.017118786, 0.011998751, 0.030862037, -0.0013349674, 0.021231834, 0.017218066, 0.013409952, 0.0027709883, 0.012133489, 0.011615813, 0.0040385867, 0.004822193, -0.0041733244, -0.013608513, 0.0069248113, 0.023345089, 0.003971218, 0.019317139, 0.015416835, 0.027685063, 0.0064355005, 0.011140685, -0.0018092089, -0.022323918, 0.015672129, -0.025458343, 0.00047734394, -0.018664725, -0.019742627, 0.0006790074, 0.0011018357, 0.0024660556, -0.016466372, 0.005981647, 0.0034553143, 0.0023703207, 0.016565653, 0.017303163, 0.06546836, 0.0030156437, -0.021061638, 0.034464497, -0.010254252, -0.003366671, 0.019260406, 0.023699662, 0.0020139748, 0.02913172, 0.021912614, -0.033868816, -0.0005380646, 0.011594539, 0.01562958, -0.027231209, -0.03991074, -0.00282772, 0.022735223, 0.0035811877, -0.040364593, -0.014934616, -0.03696069, 0.015459384, -0.0029128175, -0.0014360208, -0.021685686, -0.0012551885, -0.02039504, 0.04504496, -0.02660716, 0.009374911, -0.007531131, -0.009764941, -0.006375223, -0.018877469, -0.037017424, -0.012580251, 0.0121476725, 0.034322668, -0.008715405, -0.02742977, 0.026961733, -0.0017205656, 0.0010256025, -0.046236325, 0.0014413394, 0.033812083, -0.008772137, 0.0042087818, -0.007325479, 0.0058965497, 0.020735431, 0.0070418203, -0.016679116, 0.0030918769, 0.0041343216, -0.011793099, 0.019799357, 0.01077902, -0.01626781, -0.014594226, 0.0034694972, -0.011403069, -0.03301784, -0.02811055, 0.019132761, -0.037641473, -0.007009909, 0.0051448545, -0.010637191, 0.0009028316, -0.0026344776, -0.008240277, 0.0028064456, 0.027982904, -0.026975917, -0.00051811984, 0.045583908, 0.033528425, -0.023345089, 1.2756319e-05, -0.018366883, -0.030237988, 0.03840735, -0.02592638, -0.0037123796, -0.035315473, 0.0036308279, 0.025444161, -0.003221296, -0.0076942346, 0.015445202, 0.049044542, 0.015459384, 0.020210663, -0.029585574, -0.00077208277, -0.00015401766, -0.0046342695, -0.0003669831, -0.0010504227, 0.0122611355, -0.032223597, -0.015771408, 0.009318179, -0.015856506, -0.013991452, 0.004932111, -0.024820112, -0.024238613, -0.0037017425, -0.032081768, -0.01879237, -0.030379817, 0.008807594, 0.0040173125, 0.0003614429, -0.005549068, 0.019487334, 0.0029376375, 0.003051101, 0.005598708, -0.013849623, -0.028039636, -0.017586822, -0.028351659, -0.00985713, -0.016352909, 0.030805305, 0.014679324, -0.04524352, -0.017998127, -0.0070560034, -0.033556793, -0.009559289, -0.011091044, 0.005286684, 0.044704568, 0.0018242783, -0.011296697, 0.034492865, -0.009062887, 0.03281928, -0.01354469, -0.010289709, -0.007729692, 0.020664517, -0.007431851, -0.011339245, -0.022735223, -0.014707689, 0.010623008, 0.042094912, -0.011658361, 0.0105662765, -0.010991764, 0.004737096, 0.0057015345, 0.0073822103, 0.00791407, -0.0005305299, 0.0067546163, -0.043286275, -0.008112631, 0.020437589, -0.0023472735, -0.011587447, -0.028294928, 0.0062901257, -0.013452501, -0.007481491, -0.0051129432, -0.01675003, 0.021331113, -0.031911574, 0.016792579, 0.008892692, -7.0693e-05, 0.034634694, 0.004031495, 0.011644178, -0.010091148, -0.015601213, 0.0030652839, 0.006878717, 0.0047548246, 0.00061341136, 0.01214058, -0.02160059, 0.015714677, 0.004272605, -0.0015051626, 0.0016469917, -0.032053404, -0.035428938, 0.0058930037, 0.008197729, -0.012693714, -0.017558457, -0.004917928, -0.03137262, 0.011098136, -0.0012099805, -0.012133489, -0.024508089, -0.006378769, 0.013629788, -0.014835335, -0.028961526, -0.003022735, 0.0063184914, 0.011637087, 0.027486501, 0.22352284, -0.0014608409, 0.018239237, 0.047597885, 0.008665765, -0.0011780689, 0.029528841, -0.0048824707, -0.032337062, 0.02442299, 0.0002150707, -0.0097720325, -0.030124525, -0.006350403, -0.0075807716, 0.010353533, -0.036336645, -0.032989476, -0.02708938, -0.014346025, 0.02257921, 0.0071871956, -0.013636879, -0.019487334, -0.012324959, -0.018366883, -0.009254356, 0.020267395, 0.032790914, -0.0008452135, -0.02101909, -8.786763e-05, -0.0009928045, -0.026451148, 0.0008695904, -0.012211495, 0.031826474, 0.008133905, 0.007495674, 0.014473671, 0.0029518206, -0.014310568, 0.030124525, -0.01480697, -0.0059781014, 0.01388508, 0.0033595795, 0.027174477, 0.0018810099, 0.016523104, -0.03602462, -0.0029642305, 0.008013351, 0.008055899, 0.005953281, -0.017147152, 0.022635942, 0.017232249, 0.030237988, 0.015289189, -0.014034, 0.017941395, -0.011743459, 0.030351453, -0.019629164, 0.0053824186, -0.025089588, 0.039116498, -0.0061624795, -0.008183545, -0.011608721, -0.00047379822, -0.011956203, -0.020366674, -0.031571183, -0.025472527, 0.0097791245, -0.012473879, 0.0095521975, 0.022692675, -0.0042832424, -0.0069177197, 0.0033578067, -0.019997919, 0.0024642826, -0.019146943, -0.0043577026, 0.005034937, -0.020976542, -0.007821881, -0.0039924923, -0.013658153, 0.007992076, -0.015743043, -0.009928045, 0.021402027, -0.0058291806, 0.017643554, -0.017898846, 0.004510169, -0.007339662, 0.03710252, 0.02664971, 0.004981751, -0.020267395, 0.034351036, -0.0137290675, -0.0050030253, 0.012856818, 0.0009316406, -0.003616645, -0.028592769, 0.009644386, 0.006846805, -0.0022639488, 0.029585574, -0.027273757, -0.02825238, 0.006641153, -0.0030440094, 0.011608721, -0.012729172, -0.0056377114, 0.008055899, -0.026422782, -0.02199771, -0.017345713, -0.013643971, -0.022309735, -0.01111941, 0.013558873, -0.02907499, 0.009899679, 0.019047663, 0.02131693, -0.00504912, -0.015459384, -0.00820482, -0.01985609, 0.0141829215, -2.3767474e-05, -0.006144751, -0.0035014087, -0.007616229, -0.010530819, -0.012651166, 0.007531131, -0.003932215, -0.023033064, -0.010658465, -0.025742002, -0.00013085961, -0.018820737, -0.010466996, -0.00035568108, -0.033953913, -0.018225053, -0.028677868, 0.006520598, -0.00786443, -0.031003866, 0.009977685, 0.0252456, 0.0083041005, -0.012757538, -0.018579626, -0.1836972, -0.0060419245, 0.010807386, -0.02650788, 0.015643762, 0.018721456, 0.03928669, 0.010658465, -0.0114668915, -0.010892483, 0.0033312137, 0.010637191, -0.034492865, -0.0057511744, 0.004105956, 0.0058823666, -0.012431331, 0.050377738, 0.022664309, 0.028266562, 0.017515907, -0.024025869, 0.01869309, 0.000522552, -0.0010734699, 0.0029163633, 0.00087801146, -0.032025035, -0.013509233, -0.004772553, -0.0025281056, -0.00062138925, 0.02777016, 0.0011186779, 0.0018526441, -0.00980749, -0.0060100127, 0.0014954117, -0.001354469, 0.015133177, 0.015998336, 0.005205132, 0.018154139, -0.0021859428, -0.0012117533, 0.031684645, 0.009282722, -0.038634278, 0.014218379, -0.008765046, 0.023969136, -0.010807386, 0.003077694, -0.0042016907, 0.026054027, 0.02091981, 0.0092047155, 0.016551469, 0.0063574943, -0.025330698, 0.0017436129, -0.022026077, -0.00010903121, -0.0073042046, -0.0052512265, -0.02747232, 0.010573368, 0.023869857, -0.04495986, 0.007942436, -0.02354365, 0.016863493, -0.0015743043, 0.024749197, -0.023387637, 0.0076871435, -0.009147984, 0.0042158733, 0.031202426, 0.01330358, 0.012778812, 0.0010539683, 0.011934929, -0.009942228, -0.02111837, -0.00854521, -0.022096992, -0.01781375, -0.012956099, -0.02626677, -0.0073042046, -0.0200972, -0.011502349, -0.0041520502, 0.007559497, 0.008346649, -0.01102013, -0.002341955, 0.023033064, -0.025472527, 0.026748989, 0.011154868, -0.026564611, -0.0023508193, 0.017416628, -0.008006259, -0.03029472, -0.0020157476, 0.03440777, 0.0042655137, -0.04887435, 0.015799774, 0.011190325, -0.000107923166, -0.027642515, 0.031627916, -0.003985401, 0.007587863, 0.010119515, -0.00980749, 0.027883623, -0.028195648, 0.0031539272, 0.034010645, 0.003907395, -0.018806554, -0.09298323, -0.047172397, 0.010133698, 0.012920641, -0.022834504, 0.010169155, -0.014487854, 0.01514736, -0.01456586, 0.014551678, 0.025117954, -0.02572782, 0.00036255093, -0.0023632292, 0.006616333, 0.014218379, 0.0042903335, -0.031003866, -0.007935344, 0.034294304, 0.008034625, -0.01233205, -0.019827724, -0.024309527, 0.005662531, 0.0034003553, -0.02811055, 0.0059603727, 0.025656905, 0.01359433, 0.0046484526, -0.0072474726, 0.016849311, -0.03704579, -0.009197624, 0.014877885, -0.015785592, -0.023869857, 0.014367299, -0.029443745, -0.015232458, 0.014835335, 0.0090983445, -0.022394832, -0.015799774, 0.016381275, -0.030720208, 0.034634694, 0.031713013, -0.010807386, -0.062121194, -0.013870897, -0.027075198, 0.0016815626, 0.015118994, 0.00902743, 0.005208678, -0.0056448025, -0.009665661, -0.022338102, -0.0051767663, 0.0073183873, 0.013062471, -0.0009280949, -0.011835648, -0.012899367, 0.002012202, -0.013757434, 0.03083367, -0.0113534285, -0.014977165, 0.0068184393, -0.029443745, 0.014948799, -0.02063615, -0.008070082, -0.021543857, -0.0044782576, 0.028536038, 0.0121476725, -0.012310776, -0.02208281, 0.017742835, 0.0024518725, 0.030323086, 0.014991348, 0.011530715, 0.010296801, -0.0037903858, -0.04538535, -0.010211703, -0.014622592, -0.013707793, -0.0055738883, 0.013090837, 0.026210038, 0.014650958, 0.016196895, -0.00081950694, 0.016494738, -0.022692675, -0.011204508, -0.0725031, 0.027061014, 0.004244239, 0.00347127, 0.029358648, -0.0054462417, 0.017005323, -0.025812916, 0.014608409, 0.0076091373, -0.02961394, 0.00565544, 0.015757225, 0.0066482443, -0.013331946, -0.022550846, -0.0030794668, 0.0010238297, 0.030351453, -0.005034937, -0.00020809004, -0.0016071022, 0.012303684, 0.026578795, -0.0008159612, 0.0018526441, -0.0038754833, -0.0046555437, -0.0033737624, -0.02330254, 0.004247785, -0.0104528135, -0.0074105766, 0.01941642, 0.008346649, 0.002655752, 0.005428513, 0.026394418, 0.026550429, 0.044704568, -0.01689186, -0.019005114, 0.009013247, -0.0050810315, -0.024110965, -0.008942332, -0.0019377416, -0.0010920849, 0.032932743, 0.036903962, 0.037215985, -0.0039286693, 0.0038364802, -0.0033294407, 0.004311608, -0.021175101, -0.022607576, 0.025614357, 0.0012534157, -0.031769745, 0.0367054, 0.019756809, 0.0028082184, -0.0050597573, 0.015431019, -0.029528841, -0.0065135066, -0.00034349263, 0.026663892, -0.020324126, -0.0139559945, -0.01359433, 0.0001714139, 0.02048014, 0.02204026, -0.008410472, -0.012934824, 0.003221296, -0.011821465, 0.025117954, -0.013381586, -0.0057015345, -0.018366883, 0.00410241, 0.031003866, -0.007297113, -0.007772241, -0.010949215, -0.013551781, 0.007509857, -0.004850559, 0.015076445, 0.019629164, 0.013516324, -0.0034003553, 0.01621108, 0.0069815433, 0.012062575, 0.03185484, 0.018480346, -0.01058046, 0.0007016114, -0.009786216, -0.033585157, -0.019785175, 0.014948799, -0.016381275, -0.0013048288, 0.010686832, -0.01038899, 0.012757538, -0.03548567, 0.012211495, 0.0171897, -0.0030918769, -0.01811159, -0.017586822, -0.014948799, -0.019203676, 0.025954746, 0.010693923, 0.0105662765, 0.02660716, -0.004903745, 0.03315967, -0.000772526, 0.040704984, -0.020763798, 0.02820983, -0.00405277, -0.0014448852, 0.0026858908, -0.0037123796, -0.02169987, -0.0029642305, -0.009197624, -0.014487854, 0.009488374, 0.0033329865, 0.09502558, 0.03696069, -0.0064248634, 0.0022674946, 0.0088714175, -0.0025334244, 0.019969553, 0.014849518, 0.003301075, -0.025954746, 0.024933577, -0.014665141, -0.0059993756, 0.009594746, -0.010814478, -0.02504704, -0.0037123796, 0.03083367, -0.009949319, 0.0045420807, 0.034010645, 0.0028365843, 0.004545626, 0.026181674, -0.026578795, -0.01636709, 0.014360208, 0.010296801, 0.006878717, -0.023387637, 0.004893108, 0.0023064977, -0.02228137, -0.0061376593, -0.005836272, 0.002052978, -0.021387845, -0.009800399, 0.028578587, 0.02534488, -0.013161751, 0.008332467, -0.014537495, -0.022877052, -0.005545522, -0.0008886487, 0.021416212, -0.0039215777, -0.019118577]" 26160186,The Database Inside Your Codebase,https://feifan.blog/posts/the-database-inside-your-codebase,145,1613518048,84,todsacerdoti,"[0.0053682784, 0.021834942, 0.0164771, -0.01600394, -0.00847513, 0.013972135, -0.014640126, -0.011536754, -0.025717637, -0.046815004, 0.017729582, -0.0129284, 0.0030111761, 0.0140765095, 0.0061093303, -0.0075009773, 0.016017856, 0.00034551986, 0.012343909, -0.0078001814, -0.021222616, -0.015461198, -0.010541726, -0.01931606, -0.018828984, 0.015405532, 0.006572053, -0.025467139, -0.034902506, -0.004439354, 0.03682298, -0.0045124153, -0.01024948, -0.010639141, -0.0053439243, 0.009664988, 0.01060435, -0.0030372695, -0.0041610245, -0.003987069, 0.029614247, -0.006481596, -0.023003925, -0.018355824, 0.0015316814, 0.04517286, -0.019246478, -0.016978092, 0.0020874704, -0.0067320922, 0.018258408, 0.026733538, -0.024339905, 0.00083455327, -0.0016778044, -0.00079497835, 0.008029803, 0.004686371, 0.032341875, -0.010214689, -0.005709232, 0.002885928, -0.0076679746, 0.0072156894, -0.017840914, -0.012594405, -0.011314089, 0.0015560352, -0.0068051536, -0.022836927, 0.011188841, 0.036683813, 0.011731584, 0.004355855, 0.0077584316, -0.0038165918, -0.010186856, -0.017715666, 0.019844886, 0.010743515, -0.0033608275, -0.0114323795, -0.027693775, 0.031952213, -0.0019430871, 0.0051769265, 0.011689834, 0.017534751, -0.020526793, 0.007285272, -0.0071948147, 0.010409519, 0.0121073285, 0.023087423, 0.011731584, -0.010353853, -0.0005823173, 0.013422435, -0.005542234, 0.001068089, -0.0065964065, 0.032035712, -0.04403171, -0.010945303, -0.011279299, 0.008753459, 0.010228605, -0.009560615, 0.00969978, -0.011599378, -0.011940331, 0.03949494, 0.02148703, -0.015168952, 0.008899583, -0.014960205, 0.011599378, -0.033399526, -0.009052663, 0.00066277187, 0.012462199, 0.040970087, 0.023560584, -0.014723625, 0.0123787, 0.009177912, -0.03437368, 0.021834942, -0.007229606, -0.031757385, 0.04405954, 0.0045680813, 0.011578503, 0.004049693, -0.013144106, 0.009838944, -0.005949291, 0.003397358, 0.00087717245, -0.018968148, 0.00488816, 0.00855167, 0.0056709615, -0.00524303, 0.014988038, -0.0041749408, 0.02250293, 0.008962207, 0.01328327, -0.0076471, 0.02017888, -0.008885666, 0.006519866, 0.008203759, 0.014681876, 0.02869576, 0.007793223, 0.02798602, -0.014278298, -0.00051621406, 0.021709692, 0.03721264, 0.0063841804, 0.012545697, 0.020248463, 0.032286208, 0.011376714, -0.0040984005, -0.008440339, 0.0065163868, 0.003527825, -0.0034738986, -0.024840899, 0.005423944, 8.442296e-05, 0.01651885, 0.0025606304, 0.026149046, -0.024214657, -0.025411474, 0.0094562415, -0.023755414, 0.033288196, 0.037824966, -0.018787233, -0.00370526, 0.013533766, 0.012817069, -0.022628179, 0.0019048168, 0.00843338, 0.02041546, -0.006509429, 0.0001532986, -0.6314737, 0.012253451, 0.020206714, -0.043168887, 0.017938329, -0.0007788874, 0.0052604256, 0.019274311, -0.0019970133, 0.02794427, 0.0039348816, 0.0029433332, 0.029475084, 0.0061441213, -0.02503573, -0.017019842, 0.01699201, -0.020011883, -0.012072537, 0.019608306, 0.0032077462, 0.006871257, -0.025926383, 0.005215197, 0.013951261, 0.016157022, 0.002565849, -0.011202758, 0.018982064, 0.033455193, -0.030003909, 0.006286765, 0.006993026, 0.012030788, 0.045506857, -0.0011133176, -0.006568574, 0.01387472, 0.03198005, 0.056083374, -0.021180866, -0.005089949, -0.007862805, 0.024145074, 0.022976091, 0.008308132, 0.026719622, -0.017172923, -0.024172908, -0.011174925, -0.0028667927, -0.007674933, -0.00010279705, 0.005183885, 0.009866777, -9.2631504e-05, -0.003642636, -0.014751458, 0.01809141, -0.003240798, 0.0009837204, 0.013158022, -0.02093037, -0.041025754, -0.014431379, 0.03133989, -0.0053230496, -0.010827013, -0.029085422, -0.00985286, 0.007911513, 0.024298156, -0.015405532, -0.03267587, 0.007932387, 0.015683861, 0.04291839, -0.0068921316, 0.0063528684, 0.007841931, -0.0113697555, -0.00863517, -0.03484684, -0.032425374, 0.047315996, -0.0032390584, -0.008885666, -0.0036948228, 0.0026910973, -0.01344331, -0.014041718, -0.0005396981, -0.01864807, -0.035932325, -0.0018004433, 0.024423404, -0.007285272, 0.01501587, 0.025174893, -0.054107234, -0.032314043, 0.0010593913, -0.00977632, 0.008294216, 0.010827013, 0.0067912373, -0.002605859, 0.0030738001, 0.023894578, -0.018439323, 0.01422959, -0.016115272, -0.010938345, 0.009031788, 0.019928385, -0.024367739, 0.0025084435, -0.017924413, -0.016588433, -0.009129204, 0.0152524505, 0.005900583, -0.012879693, -0.003209486, 0.017562585, -0.0072713555, -0.006965193, -0.0014168705, 0.012183869, 0.006015394, 0.0053787157, 0.016699763, 0.008523838, -0.0048985975, -0.003094675, -0.0047559533, 0.026956202, -0.009163995, -0.017520836, -0.027846856, -0.023644082, -0.011752458, -0.0049299095, -0.0019430871, -0.014876706, -0.02049896, -0.03977327, 0.0019917947, -0.004181899, 0.006015394, -0.006958235, -0.010708723, -0.00866996, 0.022099353, -0.022405516, -0.0049020764, 0.022990007, -0.041415412, -0.029697746, -0.0025449744, -0.007674933, 0.010152064, -0.036962144, -0.014681876, -0.013345894, -0.012156037, 0.015628196, 0.022572514, -0.03172955, -0.03504167, -0.0029694268, -0.009122246, 0.007473144, 0.01978922, -0.005629212, 0.012302159, -0.029363751, 0.0045193736, -0.0065581365, -0.022962175, -0.0057962094, 0.0068608196, -0.004408042, -0.03843729, 0.025300141, 0.012768361, 0.023365753, -0.0038548622, -0.006752967, 0.0016525808, 0.00074496603, 0.007111316, -0.037546635, -0.012740528, -0.012392616, 0.032815035, -0.009998984, 0.032286208, -0.031256393, 0.024618234, 0.021194784, 0.0075636012, -0.0019326498, -0.00871171, 0.020485044, -0.03568183, 0.0069721513, -0.032787204, 0.022697762, -0.00394184, 0.013471142, -0.0024771316, -0.0042480025, -0.006460721, -0.0022962175, 0.02471565, 0.006224141, 0.027387612, 0.012323034, 0.021333948, 0.0068190703, -0.0024875689, 0.029809078, -0.006794716, -0.004982096, 0.018759402, 0.0049020764, 0.0059771235, -0.020638125, -0.04194424, -0.007222648, 0.02850093, -0.00019189507, -0.01628227, 0.014097384, -0.0033643066, 0.014097384, -0.023268336, 0.049375635, -0.025634138, 0.025481056, 0.018620236, 0.0078071393, -0.01733992, 0.057669852, 0.023797164, 0.048262317, 0.003007697, -0.01742342, 0.02069379, -0.0005853615, 0.013881679, 0.008850874, -0.005771856, -0.0015360303, 0.0065163868, 0.02527231, 0.019719638, 0.024534736, 0.015976107, -0.018425405, -0.004230607, -0.0024980062, 0.0036287194, 0.018481072, -0.00839859, -0.02022063, -0.005987561, -0.003406056, -0.014723625, -0.025731552, 0.0007114795, 0.0043871673, -0.005897104, 0.035069503, -0.016337935, 0.00074670557, 0.007459228, 0.021194784, 0.010994011, -0.002113564, -0.025884634, 0.004456749, 0.013575516, 0.002416247, -0.013025816, -0.0023344879, -0.021667942, 0.00985286, 0.0026597853, -0.009108329, 0.0017221632, -0.001438615, -0.013450268, -0.009052663, 0.004289752, 0.025091395, -0.03275937, -0.040663924, -0.0025101833, 0.010033774, 0.0027258885, -0.00843338, 0.010945303, 0.05861617, -0.0035156482, -0.018926399, -0.024673901, -0.0064537628, -0.019817052, -0.03164605, -0.0019657013, -0.003646115, 0.0048081405, -0.0031955694, -0.027568527, -0.00040770907, -0.00013840364, 0.027485028, 0.02447907, -0.0045124153, -0.008196801, -0.0017769592, 0.020387627, 0.062290117, -0.0076540583, -0.011328006, 0.011606336, -0.014166966, -0.021194784, -0.025355808, -0.004710725, 0.031590387, -0.007932387, 0.011926414, 0.0021309594, 0.013102356, -0.0063250354, 0.021556612, 0.014375713, -0.009637156, -0.015934357, -0.014118259, -0.027860772, -0.0046620173, 0.008085469, 0.009024831, 0.020568542, 0.01761825, 0.008857833, 0.016170938, 0.014793207, 0.014006927, -0.026942285, 0.008384673, 0.017785247, 0.012997983, 0.035653993, -0.0026754413, 0.021821024, 0.017075509, 0.03835379, -0.015461198, -0.0075288103, 0.00823855, 0.0048742434, 0.010479102, -0.013380686, 0.004484582, -0.01190554, 0.0040392554, 0.010152064, -0.0005149094, -0.028834926, 0.0071669817, 0.011460213, -0.009052663, -0.0051108235, 0.004985575, 0.0021379176, 0.007431395, 0.012942317, -0.012796194, -0.055137053, -0.0036321986, -0.01036777, -0.007250481, -0.014779291, 0.00268066, -0.008927415, 0.0041888575, 0.0090874545, -0.048039652, 0.013610307, 0.0061232466, -0.03949494, -0.04297406, -0.007320063, 0.043224555, 0.019176895, 0.0031520803, 0.00965803, 0.0010898336, 0.016017856, -0.017284255, -0.021194784, 0.0038165918, -0.019246478, 0.0022596868, 0.0056987945, 0.015489031, 0.00018102283, -0.013130189, 0.029196754, -0.006704259, 0.015892608, -0.01107751, -0.009108329, 0.022294184, 0.04135975, 0.012469157, 0.03863212, 0.01150892, -0.033371694, -0.001435136, -0.0040670885, -0.010075524, -0.0027972104, 0.016825011, 0.012190827, 0.009685863, 0.00030050878, -0.01123755, -0.032982033, 0.031701718, -0.017701749, 0.020874705, 0.029335918, 0.00036139332, 0.012650071, 0.005719669, 0.030449236, 0.0015290721, -0.022572514, 0.010743515, -0.03133989, 0.038131125, 0.040162932, -0.022753429, 0.024158992, -0.0055248383, -0.015600363, -0.017687833, -0.00045967838, -0.006989547, 0.01107751, -0.029141087, -0.049681798, -0.014166966, -0.005629212, -0.0031920902, -0.0038479038, -0.035403498, 0.014097384, -0.0073966035, 0.0030337903, 0.007507935, -0.0025867238, -0.0009993765, -0.031117227, -0.0032703704, 0.0056466074, -0.008252466, 0.04222257, -0.025648054, -8.5945074e-05, 0.0063807014, -0.033789188, 0.0015734308, -0.01766, -0.008078511, -0.016811095, 0.032926366, 0.019761387, 0.021320032, 0.017326005, 0.020624207, 0.015266367, 0.007327021, -0.008969164, 0.017159007, 0.0032773286, -0.022210686, -0.005027325, 0.0141113, 0.004797703, -0.008544712, -0.02116695, 0.008057636, 0.0039905477, -0.027498944, 0.0008658653, -0.011314089, -0.035570495, -0.024590401, 0.019761387, -0.026677873, 0.0048568477, -0.032341875, 0.009205745, 0.023880662, -0.0224751, 0.024980063, -0.020443294, 0.0470655, 0.0075009773, 0.032174878, 0.015405532, 0.02202977, -0.033009864, -0.0005936244, -0.0235745, -0.009720654, 0.003736572, 0.0010654797, 0.029948242, 0.008774335, -0.007403562, 0.017785247, 0.0037887588, -0.015113286, -0.0020996474, -0.0030146553, -0.00346868, -0.0071252324, -0.03086673, -0.0271232, 0.013297187, 0.0037261348, 0.026705705, 0.006161517, 0.018160993, -0.018522821, -0.021139117, -0.018773317, -0.02688662, 0.02531406, -0.010994011, 0.030337904, 0.015071536, -0.017868748, -0.018620236, -0.0061093303, 0.003701781, -0.010896596, 0.0070312964, 0.01387472, -0.02215502, -0.013826013, -0.006599886, -0.015669946, -0.009845902, -0.022656012, 0.02845918, 0.003322557, 0.0058240425, -0.020304129, 0.0016186594, -0.025592389, 0.017966162, 0.001805662, 0.018661985, -0.0082803, 0.009365784, 0.00883, 0.02282301, -0.013436352, 0.028487014, -0.014333963, 0.0046968083, -0.0011133176, 0.0030477068, -0.0033295155, 0.0053195707, 0.013025816, 0.026761372, 0.005215197, 0.0046167886, 0.017743498, 0.0125387395, 0.0040114224, -0.013909511, 0.012761403, 0.032341875, 0.020234548, -0.015697777, -0.008419464, -0.004710725, -0.0026476083, -0.012364783, -0.026343876, -0.0151272025, 0.006467679, -0.008774335, 0.027220614, -0.016894594, -0.01107751, -0.010743515, -0.0046411427, -0.02992041, -0.02992041, -0.00685734, 0.02041546, -0.026817037, -0.019928385, -0.0111818835, -0.008572545, 0.006902569, -0.0078071393, -0.0022770823, -0.00016232257, 0.034819007, -0.014988038, 0.023477085, 0.014974121, 0.008210717, -0.019176895, 0.02759636, -0.013297187, -0.015878692, 0.0065303035, -0.020582458, -0.024214657, -0.013547683, 0.021333948, 0.008370756, 0.0071530654, -0.00012263888, -0.01202383, 0.0010150325, 0.016783262, -0.011634168, -0.035653993, -0.0022736033, -0.006196308, 0.0062728487, -0.0026632643, -0.014946288, -0.002711972, -0.032341875, -0.00894829, 0.0064224508, -0.029475084, -0.01127234, 0.0012107329, 0.01391647, 5.659002e-05, -0.013178897, -0.010541726, -0.02869576, -0.029781245, 0.0018143597, 0.008489046, 0.018634154, -0.00033834417, 0.0029781244, 0.010764389, 0.009497991, -0.028779259, -0.006794716, -0.035013836, -0.013380686, -0.049097303, -0.0059388536, -0.036099322, 0.047149, 0.014118259, -0.0082803, -0.026483042, -0.011585461, -0.022071522, -0.0013307624, 0.022600347, 0.0053508827, 0.037546635, 0.0011655043, -0.010813097, 0.01766, -0.021793192, 0.0032738494, -0.024785232, 0.002176188, 0.01486279, 0.02708145, 0.011933372, 0.0063354727, -0.0223916, -0.010868763, 0.0062693697, -0.019997967, -0.0047489954, 0.020276297, -0.01422959, -0.0006853861, -0.00041205797, -0.012879693, 0.002743284, 0.0143896295, 0.026274296, -0.034624178, 0.000431628, 0.026733538, -0.006130205, -0.0046167886, -0.01135584, -0.004895118, -0.0009654551, -0.0010219908, -0.015071536, -0.018202743, -0.0027345864, -0.024339905, 0.03200788, -0.01379818, 0.020958204, 0.034123182, 0.0052847792, 0.011258424, 0.015836943, -0.00729223, -0.0165606, -7.028905e-05, -0.005963207, -0.017799165, 0.010576517, -0.02168186, 0.008196801, -0.008767376, 0.008231591, -0.031701718, -0.014807124, -0.007368771, 0.0006697301, -0.003976631, -0.004293231, 0.0020265859, 0.0045785187, 0.021236533, 0.0021814066, -0.018940315, 0.016129188, -0.012914483, 0.01024948, 0.013596391, -0.009957234, -0.00953974, -0.007925429, 0.024409488, -0.018021828, -0.0047907447, 0.19226995, -0.0032286209, -0.004362813, 0.02925242, 0.008558629, -0.009525823, 0.015697777, 0.009219661, -0.0152524505, 0.0046063513, -7.9204285e-05, 0.011251465, -0.027526777, 0.0018404531, 0.04186074, -0.013624224, -0.038131125, -0.022906508, -0.009804153, 0.0019204728, 0.013130189, 0.0031990486, -0.012427407, -0.0104443105, 0.023852829, -0.0010063347, -0.003987069, 0.0164771, 0.017367754, 0.0054378607, -0.018188827, 0.016741512, 0.013227604, 0.020387627, 0.0010593913, -0.0175765, 0.009101371, 0.0003322557, 0.0041436288, 0.0018021829, 0.016184853, -0.008008928, -0.017451253, -0.028139101, 0.0052534672, -0.02538364, 0.011279299, -0.01462621, 0.022669928, 0.025077479, -0.02794427, 0.022906508, 0.015349866, -0.0006645114, 0.0066381563, -0.008182884, 0.00859342, 0.0188429, 0.021667942, 0.009484074, -0.025049645, 0.021862773, -0.010694806, 0.012754444, -0.012343909, 0.02125045, -0.011835958, 0.018272325, 0.020624207, -0.01761825, -0.0025675886, 0.00693736, -0.0076958076, -0.00634591, -0.013331978, -0.01722859, 0.011710709, 0.0040114224, 0.041137084, 0.028723594, -0.021264365, -0.0043593342, -0.000941971, -0.02250293, 0.015628196, -0.01978922, 0.036015823, -0.018926399, -0.032787204, -0.008962207, -0.0015264627, -0.02022063, -0.0029102818, 0.0031920902, 0.009205745, 0.019329976, -0.028667927, 0.019510891, -0.024019826, -0.014542711, -0.014598377, 0.046842836, 0.03078323, 0.03373352, -0.005058637, 0.00029963898, 0.016630182, 0.020053633, -0.015113286, 0.00048533687, -0.0084125055, -0.01462621, 0.0064642, -0.0047002877, 0.0011933373, 0.016407518, -0.002621515, -0.0013786003, 0.0017673917, 0.004181899, -0.0017526054, -0.0010272095, 0.015322033, 0.0040079434, 0.006137163, -0.025202727, -0.03275937, -5.04472e-05, -0.041081417, -0.026302127, 0.016268354, -0.017673917, 0.024158992, 0.0022440308, -0.018397573, -0.020986035, 0.019496974, -0.027888605, -0.01245524, 0.012343909, 0.0062345783, -0.0051908433, 0.0011724626, 0.010555643, 0.014048676, -0.014417463, -0.013450268, -0.011147092, -0.010284271, -0.006749488, -0.014542711, 0.0066485936, -0.0031764342, -0.022962175, 0.0031433825, -0.019037731, -0.013763389, -0.01718684, 0.012824027, 0.0023031756, -0.03927228, 0.013846887, 0.040023766, 0.011780292, -0.016922427, -0.033677857, -0.17835347, 0.015906524, 0.016880678, -0.030504901, 0.03150689, 0.021862773, 0.004835973, 0.0002554977, -0.00040727417, 0.0022614263, 0.012956234, -0.014473128, -0.043642048, -0.018717652, -0.0072435224, 0.0074801026, -0.012566572, 0.0071669817, 0.055248383, 0.0024823502, 0.027095366, -0.009692821, 0.011961206, 0.015043704, -0.013213688, 0.017312089, 0.003767884, 0.0069860676, -0.015642112, -0.04244523, -0.008050677, 0.012517865, 0.00942145, -0.014361797, 0.0076818913, 0.01162721, -0.0014699271, -0.008168967, -0.009985067, -0.009553656, 0.014848873, 0.0041331914, 0.0130327735, -0.023866745, 0.0023049153, 0.023824995, 0.017562585, -0.013436352, 0.0055213594, 0.0023449252, 0.0041958154, -0.019803137, -0.015906524, -0.013185855, 0.012698779, 0.008196801, 0.0027763357, 0.018898565, 0.013923428, -0.022920426, -0.0031085913, -0.028208684, 0.0040531717, 0.023908494, -0.013951261, -0.014487045, -0.014709708, 0.009504949, -0.034958173, -0.004324543, 0.0022753428, 0.0037957171, -0.0028511367, -0.0028372202, 0.00045706905, 0.018703735, -0.01048606, -0.0018909003, 0.014654042, 0.009282285, 0.0038305083, 0.01434788, -0.006105851, -0.002471913, -0.0070173796, 0.019496974, -0.0004383688, 0.0005088209, 0.015878692, -0.011613294, 0.033455193, -0.051017776, -0.026580457, -0.0048220567, -0.010715682, 0.009762404, 0.016658014, -0.029141087, 0.0046585384, -0.012824027, 0.006311119, -0.009122246, -0.021473113, 0.021264365, 0.022906508, 0.01391647, 0.0029120212, 0.010618267, 0.04194424, 0.011439338, -0.039133113, 0.007313105, 0.0060780183, 0.013408518, -0.012594405, 0.0023779767, 0.005298696, -0.018021828, 0.00496818, 0.0008167228, 0.053522743, 0.003172955, 0.0025032249, -0.007939346, 0.035180837, -0.0235745, -0.12313292, -0.033789188, 0.014932372, -0.0039487984, -0.022962175, 0.020373711, -0.0068364656, 0.009129204, -0.017646084, 0.018174909, -0.004442833, 0.00081976707, -0.0025989008, -0.009553656, -0.02731803, 0.0060362685, -0.0032686307, -0.008690835, -9.154428e-05, 0.029558582, -0.008607336, -0.023964161, -0.0044776243, -0.0025641096, 0.003729614, 0.008155052, -0.013248479, -0.0025762864, 0.007264397, -0.013331978, 0.00717394, -0.027846856, -0.0010315583, -0.02660829, 0.0079184715, 0.0055039637, -0.013867762, -0.0028528762, 0.056278203, -0.009998984, -0.0032494958, 0.013777305, 0.008329007, -0.0011689834, -0.02234985, 0.014890622, -0.027512861, 0.03927228, 0.000839772, -0.019775303, -0.020276297, -0.016254436, -0.021236533, -0.028779259, 0.030699732, -0.02219677, 0.009324035, -0.0057301065, -0.008802167, 0.0032303606, -0.01024948, -0.009678905, 0.018536737, 0.026928369, 0.022739511, -0.015071536, -0.024200741, -0.010827013, 0.016616264, -0.01754867, -0.015377699, 0.01983097, -0.02613513, 0.01501587, -0.030059574, -0.013867762, 0.0041366704, 0.010708723, 0.0008462953, -0.017214673, -0.009978109, -0.019483058, 0.005027325, -0.013311103, 0.02215502, 0.029029755, 0.012817069, -0.0047350787, -0.0082803, -0.03198005, 0.011522837, 0.0223916, -0.020819038, -0.013784263, 0.014048676, 0.007981095, 0.016936343, -0.007821056, -0.011703751, 0.03198005, 0.0034634613, -0.0062937234, -0.0446162, 0.0013829492, -0.0006131944, -0.011049677, 0.0034304098, -0.021793192, 0.007925429, -0.017868748, -0.012719654, 0.025954217, -0.04809532, 0.0002337532, 0.0012116026, -0.0067007802, -0.029391583, -0.018815067, -0.010235564, -0.023518834, 0.005194322, 0.0005101256, -0.002242291, 0.00028985398, 0.030254405, 0.0019274311, -0.022085438, -0.0017508658, -0.04035776, 0.0031677363, -0.0029642081, -0.026914453, 0.018230576, -0.020276297, 0.027178865, 0.00086717, 0.00086456066, 0.009630197, 0.00080193655, 0.01832799, 0.033399526, 0.043252386, 0.007354854, -0.03150689, -0.01710334, -0.0070417337, -0.01710334, -0.010242522, -0.018620236, 0.0027606797, 0.00050577667, 0.01458446, 0.029948242, 0.0125387395, -0.012503948, -0.028862758, -0.016825011, -0.050516784, -0.005984082, 0.02964208, -0.030226571, 0.002257947, 0.039550606, 0.015976107, 0.00847513, -0.026594374, 0.0282226, -0.018717652, -0.03086673, 0.011230591, 0.018341906, -0.024548652, -0.013853845, -0.008927415, 0.003969673, -0.0015890868, 0.015182869, -0.029530749, -0.0037539676, 0.006839945, -0.029558582, 0.0446162, 0.0002831132, -0.008579504, 0.004456749, 0.033316027, 0.023504917, 0.010263396, 0.01434788, -0.005270863, -0.010409519, 0.0044045625, 0.014723625, -0.0069477973, -0.013839929, 0.012991024, 0.019232562, -0.017298171, 0.023157006, 0.009254453, 0.007890638, -0.007841931, 0.004077526, -0.012636155, 0.0042514815, -0.019302143, -0.0026910973, 0.035431333, -0.008746501, -0.020331962, 0.018063577, 0.02191844, -0.010228605, -0.016268354, -0.006933881, 0.0055665877, -0.016741512, 0.011334964, -0.02172361, -0.022558598, -0.017465169, 0.019566556, 0.0014133914, 0.0128449015, 0.041693743, -0.0013725118, 0.01718684, 0.00800197, 0.024882648, -0.01422959, 0.0034234514, 0.0048742434, -0.0001069285, -0.00029659475, -0.0066207605, -0.008760418, -0.022224601, -0.03710131, 0.00016797613, -0.008816084, -0.013227604, 0.082441166, 0.018063577, -0.008106343, 0.012761403, -0.028250434, 0.029809078, 0.015823025, 0.0015403792, 0.030699732, -0.02226635, 0.015489031, -0.0027032741, 0.0041053584, -0.023964161, -0.0024145076, 0.008329007, -0.022113271, 0.01501587, -0.030644067, -0.0066868635, 0.014125217, 0.0003007262, 0.020443294, 0.00034551986, -0.032870702, 0.0021814066, 0.019622222, 0.0119820805, -0.008878708, -0.012879693, -0.00812026, 0.0023831953, -0.029586414, -0.0002574547, 0.009630197, 0.02514706, -0.004272356, 0.00076453603, 0.018077495, 0.004268877, 0.028097352, -0.011759417, -0.0224751, -0.03788063, -0.009560615, 0.023268336, -0.0052325926, -0.016936343, -0.021222616]" 20265031,Elixir 1.9,https://elixir-lang.org/blog/2019/06/24/elixir-v1-9-0-released/,458,1561392630,169,mischov,"[0.009911356, 0.0021768583, -0.00013878784, -0.022776518, -0.0120252175, 0.013474124, -0.015357001, -0.011290265, -0.010212336, -0.012179208, 0.011143275, -0.0042662225, -0.043061197, 0.004091234, -0.009239399, -0.017848838, 0.007825491, 0.010394324, -0.010947288, 0.016742911, 0.017918834, -0.017918834, 0.00022726646, -0.009155405, -0.011689239, 0.0052636573, 0.029678069, -0.0026703263, 0.018422801, -0.009001414, 0.021502601, -0.0040527363, -0.033765804, 0.0011671741, -0.035137713, -0.0062505933, -0.005260158, -0.0029905555, 0.00814747, -0.01706489, 0.028222164, 0.0010035597, 0.0022871012, -0.0075245104, -0.015021022, 0.012375195, -0.019108757, -0.027690198, -0.009806362, -0.004490208, 0.019416736, 0.007363521, -0.023868447, 0.0041717286, -0.017008893, -0.013796102, -0.0006391459, -0.002197857, 0.021320613, -0.010037347, -0.008693434, 0.006117602, -0.021096628, -0.0007887612, 0.00676156, 0.0111922715, 0.0008373205, 0.008693434, -0.004591701, -0.015440996, 0.017008893, 0.010408323, 0.0073355227, -0.0030640506, 0.003930244, 0.0015084018, 0.0037552556, -0.008350457, 0.019304745, -0.0023553467, 0.007979481, -0.01951473, -0.021628592, 0.012417193, 0.013964091, 0.02197857, 0.0007655752, -0.009701368, -0.025590336, -0.02090064, 0.025604334, 0.007930484, 0.019822711, 0.008826425, 0.0048681833, 0.0006408958, -0.0026773259, 0.024260422, -0.009015413, -0.013789102, -0.023378478, 0.005519141, -0.02137661, -0.016532924, -0.0018881272, 0.006793058, 0.0008688185, -0.026570272, 0.019472733, 0.018702783, -0.025338352, 0.022020567, 0.01831081, -0.035473693, -0.0016545174, 0.0009414388, 0.016546924, -0.022272551, -0.0074335164, -0.013187142, 0.00660757, -0.002626579, -0.0010971787, -0.005715128, 0.006502577, -0.0034367763, -0.01584697, -0.017484862, -0.009932354, -0.03608965, 0.006240094, 0.0031777932, 0.019892706, 0.008259462, -0.013789102, 0.022384543, -0.008805427, 0.0008053851, 0.0098273605, -0.012557183, 0.011038282, 0.021390608, -0.015245008, -0.015119016, -0.02014469, 0.043901145, 0.01552499, -0.0118922265, 0.025184361, 0.012809167, 0.02567433, -0.032365896, -0.0050781695, 0.0028190666, -0.007104538, 0.024484407, -0.017106887, 0.010478319, -0.008539445, -0.0023710958, 0.020802647, 0.012676176, 0.008819426, 0.0022363544, 0.0023710958, 0.047736894, 0.008952417, -0.021530598, 0.016350936, 0.00048034373, -0.0013990339, 0.0064185825, -0.05468044, 0.02721423, 0.011248268, 0.012592181, 0.009701368, 0.0052496586, -0.01506302, -0.005722128, 0.013558118, 0.0026930748, 0.0072305296, 0.04364916, -0.027424216, -0.0055541387, 0.012368196, 0.012788168, -0.023560466, 0.00039219324, -0.0154549945, -0.0039162454, 0.0041087326, -0.008819426, -0.61775184, -0.008133471, -0.0068630534, -0.031917922, 0.007804492, -0.0121162115, 0.015021022, 0.015077019, -0.029538078, 0.0065585733, -0.0066180695, 0.0122912, 0.010639308, -0.013817101, -0.02643028, -0.020550663, 0.00031629193, -0.0184368, -0.010345327, 0.004791188, -0.045413047, 0.0088614235, -0.020844644, -0.00016459866, 0.0023728455, -0.0028820625, 0.013705108, 0.0010245583, -0.005550639, 0.001874128, -0.033289835, 0.026696263, 0.00014491245, -0.0034350266, 0.038161516, 0.009547379, -0.018492797, 0.0074895127, 0.026304288, 0.055576384, -0.024932377, 0.01275317, 0.018982764, 0.0015407747, 0.0011111777, -0.011864228, 0.035445694, 0.0020491167, 0.008679436, -0.015440996, 0.022216555, -0.028404152, 2.6918171e-05, 0.0048681833, -0.015370999, -0.011241268, 0.021908574, -0.018954767, 0.001443656, -0.005760625, -0.019290745, 0.020438671, -0.021180622, 0.00078613637, -0.027298223, 0.0018933768, 0.008126471, -0.012683175, 0.031105977, 0.005676631, 0.0080704745, 0.018380804, 0.022552533, -0.03488573, 0.021922573, 0.012914159, -0.00033400953, 0.00038322507, -0.0040142387, 0.028516145, -0.010471319, -0.005963612, 0.010324328, -0.0076924996, 0.054008488, -0.0032687874, -0.02242654, -0.011815231, 0.006950548, 0.025800321, -0.008175468, 0.01183623, -0.013467124, -0.03734957, 0.016476927, 0.018058825, -0.011255268, 0.013166144, 0.0096943695, -0.037153583, -0.021684589, -0.024512405, -0.010254333, 0.01245919, 0.014643047, 0.052216604, -0.037713546, 0.031917922, 0.03704159, -0.014853033, 0.0051271664, 0.007664501, -0.030825995, 0.00034603997, 0.0011802982, -0.033429824, 0.0020316178, -0.002735072, -0.012585181, -0.017260877, 0.00022529784, -0.02290251, 0.003365031, -0.017176883, 0.0044062133, 0.009708368, 0.010947288, 0.008658437, -0.03104998, -0.011045282, 0.020984635, 0.0042487234, 0.0012791668, -0.0013640362, 0.015720977, 0.0075805066, 0.023952441, -0.033485822, -0.0026423282, -0.029090106, -0.006856054, -0.010688305, -0.015748976, -0.015496992, 0.0012634178, -0.020354675, -0.008434451, -0.010989285, 0.012886162, 0.0063240887, 0.017372869, -0.0030693002, -0.034325767, 0.028180167, -0.00184438, 0.008518445, 0.003349282, -0.047428913, -0.042837214, -0.006590071, 0.024078432, 0.013782104, -0.029566076, -0.0026178297, -0.027438214, -0.030406022, -0.0015888966, 0.025828319, -0.012557183, -0.029230097, -0.0017936333, 0.023420475, -0.0056171347, -0.000395693, 0.010765299, 0.020718653, -0.0053861495, 0.017358871, -0.0013246639, -0.022790518, 0.010030348, 0.008595441, -0.04810087, 0.002505837, 0.020648656, -0.004546204, 0.014055085, 0.0169249, 0.007517511, 0.0026143298, 0.009589376, 0.012032217, 0.0014401563, 0.016714912, -0.0077904933, -0.003121797, -0.018716782, 0.0031462952, -0.012305199, 0.023490472, 0.016938899, 0.013285136, -0.0005359026, -0.005106168, -0.022412542, -0.011962222, -0.004346717, -0.00784649, 0.010821296, 0.024834385, 0.0023448474, -0.03611765, -0.028922118, -0.011437256, 0.0041542295, 0.035445694, -0.011941223, 0.0292021, -0.026024306, 0.003303785, -0.024512405, -0.03340183, 0.029846057, -0.002861064, 0.010800297, 0.0027193232, -0.0025565836, 0.017344872, -0.024148429, -0.021404607, 0.0016781408, 0.03776954, 0.019710718, -0.002659827, 0.028782127, 0.00907141, 0.039729416, -0.018982764, 0.036509626, -0.012018218, -0.0052881557, -0.003706259, 0.003244289, 0.025380349, 0.04443311, -0.0023850948, -5.894929e-05, 0.022020567, -0.0074265166, 0.020844644, -0.021586595, 0.008364456, 0.015552988, -0.025548337, 0.000637396, -0.0013482873, 0.010072345, -0.006516576, 0.016168948, 0.016056955, 0.022146558, -0.009260397, 0.025254358, 0.012193207, -0.0038217513, 0.009260397, 0.00011062562, -0.034381762, -0.009253398, -0.0037447563, -0.0012196706, 0.0006330213, -0.0071885325, 0.029230097, 0.000341884, 0.012634178, -0.015762974, 0.017554859, 0.012193207, 0.009890356, -0.007671501, -0.009967351, 0.00783949, 0.032001916, 0.009253398, -0.006488578, -0.010163339, 0.0151470145, 0.01429307, 0.038469497, 0.013033152, 0.006810557, -0.020452669, 0.0049311793, -0.011304265, -0.016168948, 0.031077977, -0.015944963, -0.02368646, -0.024834385, 0.023378478, 0.010674305, -0.025156364, 0.0009729367, 0.050144736, -0.008952417, -0.008847425, -0.030070044, -0.001982621, -0.016224945, 0.0027245728, -0.0033282836, -0.0031777932, -0.03258988, -0.00018395678, -0.0038392502, 0.017890835, -0.02060666, 0.03860949, 0.0069400487, -0.017456865, -0.007503512, 0.0030080543, 0.006271592, 0.06792358, 0.022020567, 0.018660786, 0.009267397, -0.028460149, -0.006898051, -0.0147970375, -0.011976221, 0.010156339, 0.02475039, 0.017190881, -0.004504207, -0.0090784095, -0.043145195, 0.010184337, -0.013348131, 0.012620179, -0.02379845, -0.027326223, -0.0184508, 0.012823165, -0.0005162164, 0.02196457, -0.0010333078, 0.009582376, -0.0013430376, 0.021740586, 0.021250617, 0.0013255387, -0.00984136, -0.005620634, -0.0006780809, 0.025282355, 0.008973416, -0.032505885, 0.029118106, 0.00051271665, 0.0050326725, 0.016994894, 0.021432605, -0.026010308, 0.013943093, 0.014867033, -0.004136731, -0.0058166217, -0.0038007528, -0.013810102, 0.009470384, -0.02567433, -0.0054631447, 0.012669176, 0.0184368, -0.029118106, -0.0063205888, -0.00013025715, 0.00953338, 0.020690653, -6.239438e-05, -0.043761153, -0.03194592, -0.013761105, -0.026234293, -0.011080279, 0.005039672, 0.0030063044, -0.008567442, -0.015776973, 0.0109262895, -0.031217968, 0.01706489, -0.016770909, -0.041885275, -0.038973466, -0.0024620898, 0.032533884, 0.021068629, 0.004031738, 0.023252487, -0.008714433, 0.008931419, -0.009001414, 0.0036852602, -0.0025740825, -0.011605245, -0.029650072, -0.00096156244, 0.0021243617, 0.0029713067, -0.021558598, 0.0031130475, 0.016168948, -0.016056955, 0.02995805, -0.0010289331, 0.010345327, 0.0353057, 0.03978541, 0.013404128, -0.00073188986, -0.03443776, -0.020858644, -0.012277201, -0.0037447563, -0.01752686, 0.00034210275, -0.02750821, 0.011668241, 0.022328548, -0.005519141, 0.020354675, 0.0020106193, -0.0010359326, -0.009645373, 0.0292021, 0.025016373, 0.015664982, 0.012354196, 0.011052281, -0.012858164, 0.017568856, 0.011297265, -0.008952417, 0.025562337, 0.006779059, -0.02244054, 0.015622984, 0.009477383, -0.018212816, -0.024876382, 0.0071220365, 0.017876837, 0.02552034, -0.0070905387, -0.008987416, -0.017946832, 0.007664501, 0.0013185393, 0.010632308, -0.008847425, -0.018800776, -0.01367711, -0.007104538, -0.010177338, -0.0056451326, -0.012382194, -0.028866122, 0.0068175565, 0.021152623, -0.005655632, -0.0006347712, -0.011920225, -0.0053231535, -0.020956637, -0.012522185, 0.0033230337, -0.021446604, 0.022538533, -0.025170362, 0.016868902, 0.018534794, 0.033289835, 0.008175468, -0.006436081, 0.0037097586, 0.0144890575, 0.00984136, -0.0011426756, -0.002780569, -0.008133471, 0.025926312, 0.032197904, 0.015105017, -0.010058345, -0.021152623, 0.0023710958, 0.029258097, -0.001952873, 0.0077064987, -0.0071220365, -0.04180128, -0.015608984, 0.015720977, -0.0059496127, 0.008791428, -0.022356546, 0.004654697, -0.022622528, -0.018688785, 0.017890835, -0.019458733, 0.021152623, 0.00017378556, -0.000937939, 0.009862359, 0.025184361, 0.008364456, 0.004850684, -0.03902946, 0.010317328, 0.023322482, 0.03272987, 0.030546013, 0.011444256, 0.014587051, 0.005564638, 0.015916964, -0.012480188, -0.01814282, 0.008182468, 0.009204401, 0.006894551, -0.025842318, -0.011962222, 0.0025233359, -0.009540379, -0.008441451, 0.015496992, 0.021278616, -0.0017953832, 0.0011435506, 0.006835055, 0.0066950643, 0.0073705204, 0.0034665244, -0.008700434, 0.033541817, -0.009127406, -0.006135101, -0.020508666, 0.03214191, 0.01198322, 0.020662656, 0.018590791, 0.014979025, -0.008931419, -0.0029223098, 0.010380325, -0.03149795, -0.05011674, 0.03365381, 0.010891291, 0.0064010834, -0.030630007, -0.008938419, 0.004042237, -0.0044692094, -0.011143275, 0.0030360525, 0.0032565382, 0.011087279, -0.006499077, 0.018366804, -0.010317328, 0.02720023, 0.013572117, -0.0059531126, -0.025912315, -0.007979481, -0.01569298, 0.008980416, 0.012515185, 0.022356546, -0.018688785, 0.014216075, 0.015049021, -0.005179663, 0.024330417, -0.013943093, 0.0073355227, 0.03135796, -0.031105977, 0.014258073, 0.0015040272, -0.0292021, -0.01521701, -0.0092254, -0.015035022, -0.010149339, -0.0059251143, 0.0025478343, 0.03104998, 0.01460105, -0.03550169, -0.009904356, -0.0036852602, -0.022678524, -0.011360261, -0.011108277, 0.007258528, -0.0215166, 0.0026545774, -0.016616918, 0.0051761633, 0.022300549, -0.015482993, 0.017120887, -0.0230425, 0.022482537, -0.022216555, -0.010653307, -0.016980896, -0.021278616, -0.028782127, 0.0045847017, -0.029566076, 0.004486708, 0.015259007, 0.01598696, -0.013110147, 0.010191337, 0.014937028, -0.0031270466, 0.0074895127, -0.01184323, 0.015804972, 0.0032005417, 0.007825491, -0.010863293, -0.018254813, 0.020172687, -0.009624374, -0.0025775824, 0.01888477, -0.015706979, 0.011619244, -0.016070955, -0.0043747155, -0.008203466, -0.0015897716, -0.034493756, -0.0071080374, -0.013012153, 0.002752571, -0.00799348, -0.00039306819, -0.008168468, -0.011353262, 0.035977658, 0.012039216, -0.006887552, 2.3185992e-05, 0.012732171, 0.027732195, 0.016266942, -0.01152825, -0.0043642162, -0.03583767, -0.0060651056, -0.02134861, -0.01888477, -0.037993528, 0.042081263, 0.016728912, -0.006845555, -0.007405518, -0.004185728, -0.030154038, -0.013236139, -0.0169109, 0.0080704745, 0.027410217, -0.002120862, 0.016154949, 0.045385048, -0.0026160798, 0.015958961, -0.005428147, 0.0035102717, 0.009043411, -0.0039442433, 0.013012153, -0.014069085, -0.044517104, 0.0066180695, -0.004185728, 0.014076084, 0.038469497, 0.01765285, -0.014503056, 0.016700914, -0.011486253, 0.00044315867, -0.009561378, 0.018604789, 0.03320584, -0.025828319, -0.018212816, 0.018058825, -0.017260877, -0.003860249, -0.009169403, -0.0079374835, -0.003060551, 0.010394324, 0.009323393, 0.016336937, 0.007811492, -0.016756909, 0.016378934, -0.0030395521, 0.01369111, -0.0030850493, -0.014349067, 0.007888487, -0.025912315, -0.011206271, -0.034381762, 0.026374284, 0.01399909, 0.009134405, 0.00044490854, -0.019094758, 0.008336457, 0.0063660857, -0.0061875973, -0.006835055, -0.018856773, -0.007608505, 0.0050641703, 0.012319199, 0.0047141933, -0.025002373, -0.021866577, 0.030322026, -0.017988829, -1.7157086e-05, 0.00065883214, -0.006593571, -0.0020386174, -0.019346742, -0.008777429, -0.038777478, -0.013292135, 0.017918834, 0.012501187, 0.00307455, 0.21928173, -0.013761105, 0.0030238032, 0.030294029, -0.0013229139, -0.010331328, 0.012424191, 0.0018636287, -0.0051901625, 0.01245219, 0.0027263225, 0.026668265, -0.021768583, 0.00013714733, -0.012578182, 0.0023798451, -0.030154038, -0.008798428, -0.018324807, 0.019570727, 0.0090784095, -0.015370999, -0.0065865717, -0.023560466, 0.042305246, -0.009603376, -0.0069680465, 0.03463375, 0.023126496, -0.016056955, -0.013712108, -0.03785354, -0.004700194, -0.0049276794, -0.00045278305, -0.019122755, 0.01014234, -0.006898051, 0.013145145, -0.0063555865, 0.026052305, -0.025940312, 0.004850684, -0.031889927, 0.015091018, -0.0030780497, -0.013817101, -0.011395259, -0.010940288, -0.017470863, -0.031161973, 0.04905281, 0.0032617878, 0.008105473, 0.018114822, -0.0017770093, 0.010422322, -0.008042477, 0.0034927728, 0.00051271665, 0.0068280557, 0.016728912, -0.014517056, -0.005004674, -0.029566076, 0.020340677, -0.029874057, -0.010016348, 0.022552533, -0.0018373805, -0.001260793, -0.012130211, 0.0019703717, -0.00059583626, -0.0029765563, -0.013950093, 0.033541817, 0.017176883, 0.018380804, 0.027718196, -0.0023395978, 0.011787233, 0.008098473, 0.0034350266, -0.02260853, -0.036929596, 0.028040176, -0.025394348, -0.023462474, -0.02245454, -0.004959177, -0.012179208, -0.0062925904, -0.021040631, 0.02259453, 0.017176883, 0.0010805547, 0.02813817, -0.013859098, 0.011451255, 0.002136611, 0.05703229, 0.034997724, 0.008581442, -0.015343002, -0.005267157, -0.0010420572, 0.011395259, 0.027900185, -0.01768085, 0.011724237, -0.028782127, -0.0046196994, -0.0051411656, 0.011451255, 0.0116752405, -0.008588442, -0.011689239, 0.008308459, -0.0009458135, -0.015398998, -0.024344416, -0.0032635378, 0.008210466, 0.0011671741, -0.010737302, -0.034521755, 0.020508666, -0.031161973, -0.0044692094, 0.0057466263, -0.0021261116, 0.023406478, -0.014937028, 0.0032022917, -0.026318287, 0.0055996357, -0.009778364, -0.0110592805, 0.009197402, -0.015273007, -0.0025338351, 0.0025233359, 0.0034910229, -0.0053861495, -0.0074265166, 0.0071675335, 0.02430242, -0.011164274, -0.0019196251, -0.0054631447, 0.019864708, -0.0065690726, -0.009652372, 0.03012604, -0.023868447, -0.034689743, -0.031553946, 0.05008874, -0.0047841887, -0.055744372, 0.012662176, 0.00599161, -0.015580987, -0.03734957, 0.00537915, -0.17952432, -0.006173598, -0.0050746696, -0.029230097, 0.024736391, -0.023406478, 0.013327133, -0.0122002065, -0.042081263, -0.009414388, -0.0023325982, -0.0013456624, -0.05552039, -0.036677614, -0.01628094, 0.016560923, -0.00035391448, -0.0021383609, 0.052048612, 0.017288875, 0.022678524, -0.03737757, 0.028782127, -0.015412997, 0.0029450583, -0.005774624, -0.00014578739, 0.0147970375, 0.0012546683, -0.04199727, -0.03737757, -0.0014996524, 0.022230554, -0.012648177, 0.012690174, -0.008672436, 0.010093343, 0.014587051, 0.0018093822, 0.016350936, 0.016742911, 0.016210945, 0.023434475, 0.034381762, -0.00952638, 0.018632788, 0.025912315, -0.020676654, 0.0063870843, -0.009330393, 0.025184361, -0.033989787, -0.007251528, -0.010464319, -0.0022258551, 0.0017297624, -0.00016328625, 0.021754585, 0.0047596903, -0.0016772659, -0.0047316924, -0.03362581, 0.022230554, -0.009848359, 0.0052776565, 0.0026440779, -0.013537119, 0.0039617424, -0.02413443, 0.014062085, 0.01276717, -0.020172687, -0.020634657, 0.023294484, 0.02811017, 0.02889412, -0.015231009, 0.0020998635, 0.017722847, -0.00907141, 0.0015617734, 0.028026177, 0.024022438, -0.02503037, -0.013355131, 0.015538989, -0.01630894, 0.018814776, -0.020186687, -0.0058061224, 0.01721888, -0.032505885, -0.010968287, 0.006327588, -0.009085409, 0.011283265, -0.00414723, 0.0047701895, 0.0068665533, -0.02384045, 0.02489038, -0.012585181, -0.0044657094, -0.009253398, 0.034325767, -0.01122027, 0.0080704745, 0.023770453, 0.062323947, -0.036929596, -0.017414866, -0.0007948858, 0.017106887, 0.03502572, -0.00937939, 0.014587051, 0.049976747, -0.010982285, 0.0199907, -0.011437256, 0.039617423, -0.013614114, -0.0004974051, 0.01705089, -0.0023710958, -0.028418152, -0.10208136, -0.041297313, -0.024260422, -0.0012739172, -0.006978546, 0.022524534, 0.0024043436, 0.032813866, -0.002733322, 0.031021982, -0.022776518, -0.003244289, 0.0148390345, -0.00028413776, 0.015496992, 0.014951027, -0.020494666, -0.017750844, -0.010849294, 0.029090106, -0.004283721, 0.0024200925, 0.0015923964, -0.0039547426, -0.0092184, 0.024848383, -0.014244073, 0.0056381333, -0.010632308, 0.011962222, 0.010730302, -0.0002819504, -0.004546204, -0.02550634, -0.011402258, -0.009099408, -0.010352327, 0.014559053, 0.018940767, -0.02937009, 0.0016833905, -0.0034962725, 0.02167059, 0.007160534, -0.023028502, -0.0044657094, -0.020886641, 0.027746195, 0.00968037, -0.00088106765, -0.05902016, -0.011612245, -0.019430736, -0.019024761, -4.323449e-07, -0.028250162, -0.0057361266, 0.013313134, -0.04196927, -0.01352312, -0.009981351, -0.014146079, 0.0011313014, 0.010401323, -0.014993024, -0.015370999, 0.019010764, -0.0050221733, 0.021390608, -0.014741041, -0.029930053, 0.026808256, -0.01828281, 0.020998634, -0.035697676, 0.0047701895, 0.013628113, 0.0020508666, 0.024386413, -0.008707433, -0.028866122, -0.0135651175, -0.017974831, -0.010191337, 0.04345317, 0.058460195, 0.025380349, 0.0064745788, 0.013404128, -0.032673873, -0.0024848382, -0.0062015965, 0.012872162, 0.0015853968, -0.0029625571, -0.012522185, 0.009099408, -0.022958506, -0.011934224, 0.035081718, -0.015343002, -0.02258053, -0.07094739, 0.006530575, 0.007622504, -0.008819426, -0.014090084, -0.018002829, 0.0010525566, -0.014405062, 0.008651437, 0.009470384, -0.028698133, 0.0026335786, 0.0011872977, 0.0026878251, -0.028474147, -0.026724262, 0.015608984, 0.004826186, 0.0028208164, 0.002012369, -0.029062109, -0.02244054, -0.0035575186, 0.019948702, -0.012648177, -0.011969221, -0.006947048, 0.012683175, 0.007258528, -0.007832491, 0.0016221445, -0.031525947, 0.010513316, 0.0063660857, -0.0051551647, 0.034661744, -0.014419062, 0.02704624, -0.005914615, -0.0020543663, -0.024652395, -0.037153583, 0.020424671, -0.010779299, 0.015007024, -0.022146558, -0.0028540643, -0.008049476, 0.025268355, 0.025786322, 0.034969725, 0.0168969, -0.0055436394, -0.021754585, -0.009596376, -0.02749421, 0.009239399, 0.012655176, -0.019458733, 0.011640242, 0.024498407, 0.009911356, 0.011108277, -0.019122755, 0.014097082, -0.01399209, -0.01630894, -0.006089604, 0.011290265, 0.003674761, -0.016182948, -0.0020473667, 0.022048565, -0.0029503081, 0.011920225, 0.016952896, -0.007811492, 0.006737062, -0.008364456, 0.013096148, 0.0046791956, -0.029874057, -0.013922094, 0.036453627, 0.013054151, 0.00028107545, -0.008980416, -0.005361651, -0.026444279, 0.024862383, -0.020928638, 0.015398998, -0.008889422, 0.005774624, 0.02245454, 0.011094278, 0.009967351, -0.0068630534, -0.0038672483, -0.02379845, -0.012634178, 0.01720488, 0.0012992905, -0.020494666, -0.010422322, 0.012655176, -0.0036712612, -0.005669631, 0.010688305, 0.015930964, 0.023588466, -0.014587051, 0.0041437303, 0.0032285398, -0.01644893, 0.017946832, 0.008266462, 0.0012397943, -0.007251528, 0.02750821, 0.035165712, 0.024960376, 0.03272987, -0.016854903, 0.019654721, -0.012627179, 0.018646786, -0.0038672483, 0.0045252056, -0.013467124, 0.0009020663, 0.0030238032, 0.008175468, -0.022202555, 0.004735192, -0.015594985, -0.014545053, 0.022300549, 0.0068805525, 0.085170455, 0.043845147, -0.03258988, 0.011325263, 0.007195532, 0.02889412, 0.0006435206, 0.032505885, 0.0036852602, -0.016406933, 0.01826881, 0.0113672605, 0.0056521324, -0.001352662, 0.0012039216, -0.0018933768, -0.0028978114, -0.011444256, -0.017274875, 0.01276017, 0.0071570342, 0.0031795432, 0.0066320687, -0.018856773, -0.028782127, -0.0043887147, 0.049584772, 0.023630463, -0.026374284, -0.038805474, 0.0102683315, -0.023336481, -0.010737302, -0.0138730975, 0.016798908, 0.032841865, 0.003951243, -0.004794688, 0.025324352, -0.015762974, -0.01276017, -0.0009545629, -0.02183858, -0.029622072, -0.020452669, -0.003013304, -0.005883117, -0.01430707, -0.00415073]" 28113201,What happens if you stick your head in a particle accelerator? (2017),https://aeon.co/ideas/why-we-can-stop-worrying-and-love-the-particle-accelerator,116,1628489237,48,sakopov,"[0.00510625, 0.0018563688, 0.010205911, -0.015154031, -0.0025383001, 0.004608802, -0.004819641, -0.013796757, -0.027725289, -0.021703208, 0.020016499, 0.015035435, -0.00048427013, -0.010739596, 0.021044336, -0.0028512639, 0.027198192, -0.011246926, 0.0071421606, -0.015430757, -0.0009487741, 0.0057914755, 0.0085785, 0.007675846, -0.028647708, 0.013408023, 0.032890838, -0.01730195, -0.009586572, 0.0034689554, 0.018487917, 0.039822157, -0.021347418, 0.0053566205, -0.023455804, 0.018277079, 0.011589539, -0.004533032, 0.008018459, -0.013210362, 0.034314, 0.030571612, -0.0010072489, -0.0022319253, 0.008183177, 0.012057338, 0.01127987, -0.01913361, -0.005046951, -0.0005884541, 0.02342945, 0.009533863, -0.02506345, -0.0019024898, 0.0019930846, -0.047965802, -0.014284321, 0.008697096, 0.020253692, -0.021083869, 0.008538967, -0.004081705, -0.019225853, 0.023548046, -0.012959991, -0.020385467, 0.009118774, 0.0033404755, -0.034551192, -0.0012996229, 0.027013708, 0.009995072, -0.01719653, 0.0010747832, 0.019726595, -0.013744048, -0.015654773, 6.238684e-05, 0.0130983535, 0.01454787, 0.010093902, -0.009823766, 0.005577342, 0.030439837, 0.01893595, -0.0014791652, 0.000109846136, 0.0022780462, -0.015430757, -0.0031625803, -0.0047998745, -0.01118104, 0.017262418, 0.015325338, 0.038662545, 0.021676853, -0.007208048, 0.03486745, -0.014666467, -0.023969725, -0.020056032, -0.005359915, -0.023139548, -0.019159967, -0.008394016, -0.014666467, 0.020174628, -0.002312637, 0.005985842, -0.012768919, -0.014719176, 0.005425802, 0.0018431915, -0.009724935, 0.011813556, -0.013796757, 0.003890633, 0.014389741, 0.0019535522, -0.008249064, 0.023772063, 0.039822157, -0.004338665, -0.0073529994, 0.026117643, 0.007945984, -0.020359112, 0.0019897902, 0.014481983, -0.02414103, -0.016247757, -0.005788181, -0.00075934874, -0.000868886, -0.0074847736, 0.016076451, -0.0075374832, -0.0009512449, -0.03476203, -0.00033149443, 0.027224546, 0.01000166, -0.010390394, 0.012419716, -0.009138539, 0.054712642, 0.014350208, 0.020016499, -0.013520031, 0.009573394, 0.017855402, 0.036633223, -0.0046022134, -0.0063218665, -0.0016932982, 0.0032087013, -0.017512789, 0.03159945, -0.016195048, -0.028489579, 0.0071223946, 0.0051721367, -0.0074452413, -0.0074254754, -0.0023142842, 0.037555642, 0.02087303, -0.007432064, 0.02964919, -0.00821612, -0.0074913623, 0.03410316, -0.017947644, 0.004114649, -0.027909772, 0.01955529, 0.006601887, 0.018540628, -0.025089804, -0.008150233, -0.0027540803, -0.0035908464, 0.029543772, 0.017446902, -0.019568466, -0.00011869971, 0.019476224, -0.01531216, 0.008795926, -0.027909772, -0.0042332457, 0.02547195, -0.017288772, -0.022994595, -0.6409496, -0.010304742, 0.0072871125, -0.0084203705, -0.027698934, 0.0042991326, 0.008492846, -0.00022545739, -0.011727902, 0.013203774, -0.0039005158, 0.01362545, 0.015325338, -0.022744223, -0.03410316, -0.01547029, -0.00492506, 0.000636634, -0.012894104, -0.00821612, -0.009606338, 0.01628729, -0.023640288, 0.0056992336, 0.0029500946, 0.0029105623, 0.02133424, 0.018804176, 0.0047834027, 0.0036468506, -0.017684095, -3.4127454e-05, -0.0017888346, 0.018501095, 0.053473964, 0.014481983, 0.024773547, 0.013691338, 0.005574048, 0.016195048, -0.0034228344, -0.009402088, 0.03262729, -0.006773193, -0.020556772, 0.003679794, 0.012459249, 0.0011604364, 0.006496467, -0.0062955115, 0.005682762, 0.02893761, -0.00477352, 0.02536653, 0.014587402, -0.0019502579, 0.0395059, -0.0072146365, -0.007273935, 0.023666643, 0.02424645, 0.005682762, -0.015391225, -0.023772063, -0.012090282, 0.028305095, -0.02255974, 0.0027326671, -0.007010387, 0.014310677, 0.049019996, 0.03389232, 0.005119427, -0.0049942415, 0.0030999877, 0.0015458759, 0.017130643, 0.005692645, -0.0060978504, 0.015285806, -0.0069247335, -0.00837425, -0.03673864, 0.0012320887, 0.019924257, -0.007254169, -0.01547029, 0.014271144, 0.030966934, -0.0030522195, -0.0026997237, 0.03149403, -0.011115152, -0.03665958, -0.016142337, -0.011932152, 0.008947467, -0.0010830191, -0.019502578, 0.0011769081, -0.008301774, -0.04058645, 0.012169346, -0.0050996607, 0.005135899, -0.014468805, -0.0062790397, -0.01525945, 0.05039045, -0.05355303, -0.009059475, -0.008650975, -0.0067468383, 0.0009957186, -0.013651805, -0.01898866, 0.005751943, 0.025221579, 0.006865435, -0.039479546, 0.039795805, 0.015773369, 0.015246273, -0.0038247458, 0.033628773, 0.015338515, 0.0009800704, -0.011609306, -0.023100015, -0.018079419, 0.013355314, 0.025999047, 0.016063273, -0.015957853, 0.02680287, 0.011101975, 0.012439483, 0.0005423331, -0.0035183707, -0.023442628, -0.042431287, -0.025498305, 0.009560217, 0.013770402, -0.021228822, -0.017591853, -0.022744223, 0.01653766, -0.0006090438, -0.0047702254, -0.015154031, -0.0031395198, -0.005593814, 0.018342966, 0.00786033, 0.0007276406, 0.004470439, -0.03934777, -0.014337031, -0.010904314, -0.0067468383, 0.0313359, -0.0057058223, 0.01296658, 0.0052380236, -0.009362556, 0.0034129512, 0.0037687416, -0.008090935, -0.040191125, 0.013131297, -0.025946338, -0.014771886, 0.031098707, -0.018277079, 0.0037852135, 0.0054752175, -0.007227814, -0.03078245, -0.016063273, -0.0120375715, -0.006997209, 0.005313794, 0.021716386, -0.005910072, 0.035104644, 0.025102982, -0.015035435, -0.030334417, 0.032811772, 0.019713419, 0.015298983, -0.012156169, -0.006937911, -0.019515757, -0.025709143, 0.02302095, -0.022731047, 0.0022928708, 0.035420902, -0.0067666043, 0.006977443, 0.016260935, 0.003001157, 0.018000353, -0.0074122977, -0.0010830191, -0.019001838, 0.01648495, -0.014719176, 0.0135332085, -0.024048788, -0.008710274, -0.0035084877, 0.0060089026, 0.02817332, 0.012195701, 0.0010467812, 0.0044276128, 0.0025992459, 0.0017048285, -0.0041574757, 0.015891967, -0.012426306, 0.007814209, 0.008947467, 0.01291387, 0.028252386, -0.009922596, -0.013612273, 0.031098707, 0.017723627, 0.022744223, 0.019687064, 0.0006601063, 0.031151418, -0.02476037, -0.00066257705, 0.032337386, 0.01944987, -0.005247907, -0.0004871527, -0.011148096, -0.01066712, 0.006743544, -0.00039717564, 0.023086837, -0.011530241, -0.0034788384, -0.009810588, -0.020069208, 0.013902176, -0.028911255, 0.014666467, 0.008532379, -0.020807143, 0.020649014, 0.005442274, 0.027593514, 0.009612926, 0.008960645, -0.0108779585, 0.025788208, -0.018856885, -0.014323854, 0.013025878, -0.0078010317, 0.009909418, -0.012129813, 0.018000353, -0.01245266, -0.012564668, -0.0031148123, -0.03945319, 0.03318074, 0.019159967, 0.01806624, 0.010014838, 0.048571963, 0.014481983, -0.031915706, -0.015852435, -0.013276249, 0.041561577, -0.011991451, -0.03578987, -0.0032597638, -0.012854571, -0.017644564, -0.013744048, -0.0068786126, 0.020912563, -0.016761675, 0.0022829878, -0.012755741, -0.02240161, 0.018303433, 0.0069444994, 0.019304918, 0.005033774, -0.03470932, -0.011951919, -0.0073661767, -0.016669434, 0.027962482, 0.021070693, 0.014271144, -0.04232587, 0.019146789, -0.01133258, -0.016959338, -0.02980732, 0.015246273, 0.008545556, -0.012676677, 0.021241998, -0.015918322, 0.009836943, 0.0099621285, -0.012663499, 0.0005608639, -0.012459249, -0.018053064, -0.021834983, 0.0773778, 0.018039886, -0.009211016, 0.024852611, -0.00044020812, -0.003465661, -0.009566805, -0.017749982, 0.03824087, -0.010113669, 0.0039235763, -0.0004640922, 0.011721314, 0.0074715964, 0.0053994474, 0.019713419, 0.013638628, -0.008565322, 0.0011307872, -0.0068983785, 0.0058540683, -0.01792129, 0.027830707, 0.033655126, 0.00464504, -0.0035348425, -0.005788181, 0.0020803849, 0.00035249593, -0.016445419, 0.017288772, 0.008874991, 0.016577192, 0.012116636, -0.012261588, -0.018777821, -0.0019650825, -0.0012395009, 0.008314951, -0.018791, -0.004114649, 0.010983379, -0.0044934996, -0.007833975, -0.004714221, 0.00086147373, 0.027857063, 0.013520031, -0.006002314, -0.005363209, 0.03945319, -0.00464504, -0.018013531, -0.02501074, -0.002907268, -0.0046219793, -0.0014552812, -0.018092595, -0.026157176, 0.0005163901, -0.013447556, -0.0031905824, 0.020293225, -0.0077614994, -0.023047306, -0.026987353, 0.0272509, -0.001375393, -0.015773369, 0.021953579, 0.008347895, -0.030018158, -0.039084222, 0.015457111, 0.025432417, -0.006997209, 0.026671095, -0.011971684, -0.01760503, -0.0019914373, -0.018751467, -0.010548524, 0.0069906204, -0.026987353, -0.014864128, 0.021479191, 0.01490366, -0.006568943, -0.017749982, 0.00954704, -0.015325338, 0.0030818686, 0.018158482, 0.006872024, -0.008433548, 0.023139548, -0.005798064, 0.02930658, -0.001407513, 0.0009817177, 0.0041377093, -0.009039709, -0.0077878544, 0.01628729, -0.018342966, -0.0099621285, -0.008413781, 0.010456282, -0.0073200557, -0.024839433, 0.002749139, -0.031625804, 0.03307532, -0.006328455, 0.0026239534, 0.013065411, 0.037450224, 0.028726771, -0.01939716, -0.003271294, -0.028542288, -0.036685932, 0.014930015, 0.017525967, -0.004424318, -0.011971684, 0.002332403, -0.00017789516, -0.02072808, -0.007642903, -0.01317083, 0.02996545, -0.004562681, -0.025182046, -0.03998029, -0.010172967, -0.01765774, 0.0013424495, -0.005089778, -0.015997386, -0.003436012, 0.006223036, -0.010759362, -0.019950612, 0.02190087, -0.03231103, -0.017539144, 0.040691867, -0.017973999, 0.019818837, -0.017802693, -0.007853742, -0.042246804, -0.026368015, 0.0072014593, -0.036896773, 0.006904967, -0.01250537, 0.033286158, 0.015351692, 0.042852964, -0.00016626196, 0.0024197034, 0.018646047, 0.010851604, 0.0052512013, 0.0004360902, 0.001147259, -0.01317083, 0.025287466, 0.0043320763, -0.0029270342, -0.0014659878, -0.012511958, -0.0037456811, 0.024813078, 0.012393362, 0.0021248588, -0.0004887999, -0.030887868, -0.014561048, 0.007998693, -0.01541758, 0.0015771723, -0.031810287, -0.011069031, 0.012689854, 0.012024394, 0.014376563, -0.017973999, 0.020293225, -0.0022467498, 0.0023818184, 0.0019519051, -0.009224193, 0.0023142842, -0.013664983, -0.006845669, 0.03170487, 0.023337208, 0.026776515, -0.014152547, 0.011760846, -0.0067929593, -0.030413482, -0.0065491768, 0.0048921164, 0.006193387, -0.0040092296, -0.019779306, -0.011464354, -0.02904303, -0.013875822, -0.03196842, -0.010041193, 0.0144029185, 0.00017820399, 0.0070565077, -0.0102520315, -0.010535346, 0.021044336, -0.0020326169, 0.005844185, -0.006463524, 0.036527805, 0.0102520315, 0.0014610463, 0.00025798916, -0.043169223, -0.0049481206, 0.017433725, 0.014205257, -0.0023439333, -0.022981418, -0.006819314, -0.0013992771, 0.0052512013, -0.029016675, -0.05961464, 0.0053006164, -0.01602374, 0.009145129, -0.029069385, -0.026328482, -0.008110701, -0.027119126, 0.015391225, 0.021083869, -0.007959161, -0.024325514, -0.010574878, 0.0099621285, 0.0057025277, 0.034524836, -0.009224193, 0.00826883, 0.008202943, -0.004414435, -0.020530418, -0.004727399, -0.010047781, 0.028094256, -0.000496624, -0.009257137, 0.009158306, 0.0053928583, 0.009118774, -0.0054323906, 0.008940878, 0.033628773, -0.020280046, -0.006615064, -0.01449516, -0.01449516, 0.0064865844, -0.008117289, 0.0043452536, -0.01705158, 0.009606338, 8.992558e-05, 0.008380838, 0.03175758, -0.012782096, -0.026631562, -0.0063218665, -0.018303433, -0.014231612, 0.0141130155, 0.012801862, -0.033813257, -0.034630254, 0.0012567963, 0.006335044, 0.0023208729, 0.005583931, 0.010700064, -0.03062432, 0.018870063, -0.011556596, -0.0005221552, 0.017973999, 0.008229298, -0.0011233749, 0.0047405763, -0.005241318, -0.0013803346, 0.004243129, 0.016932983, -0.010166379, -0.023047306, -0.0067666043, 0.024088321, 0.02767258, -0.010179556, 0.015839256, 0.015944676, 0.003345417, -0.008888168, -0.01612916, 0.0025481833, -0.008538967, 0.017012047, 0.014534692, -0.025234757, 0.015325338, -0.019318094, 0.0023933486, -0.014666467, -0.014007595, -0.0037489755, 0.0072871125, -0.0007609959, -0.0011101975, -0.0034261288, -0.009500919, -0.016115982, -0.023719354, 0.00014361327, -0.0010533698, 0.020451354, -0.001662002, 0.0029665662, 0.002062266, -0.0017904817, -0.01781587, 0.01449516, -0.0024378223, -0.005452157, -0.021347418, -0.028226031, 0.0032350563, 0.03220561, 0.01449516, -0.018000353, -0.012571258, -0.0020672076, -0.023917014, -0.0016512952, 0.00837425, 0.023007773, 0.0329699, 0.034314, -0.005452157, 0.03552632, 0.028594999, 0.012419716, -0.026829224, -0.0028100845, 0.018342966, 0.020635838, 0.021676853, 0.0105419345, -0.008051403, 0.0007243462, 0.030650675, -0.0048459955, 0.007899863, 0.024997562, -0.008506023, 0.01183991, 0.03149403, 0.0014272791, -0.0042035966, 0.010522168, -0.0123735955, -0.045198545, 0.014178902, -0.00211827, -0.009019943, -0.020411821, -0.0071223946, -0.008538967, 0.004078411, 0.004997536, 0.015140854, -0.02470766, 0.014943193, -0.023100015, 0.02133424, 0.0006094556, 0.01792129, 0.03170487, -0.008229298, -0.005620169, -0.0018448386, -0.0025020624, -0.0027557276, -0.015443934, 0.0024147618, -0.004503383, 0.016089628, -0.007478185, -0.0038148626, -0.024430934, -0.005323677, 0.002908915, 0.01378358, -0.054343674, 0.044381544, -0.0102520315, -0.0144029185, -0.0027606692, -0.0013136239, -0.018659225, -0.02547195, -0.013612273, 0.0035018988, -0.027725289, 0.010772539, 0.0071092173, -0.006364693, -0.016959338, 0.010423338, 0.023060482, 0.020886209, -0.012386774, 0.21495005, -0.017407369, -0.02746174, 0.032231964, -0.034024093, -0.0013564505, 0.0077285557, -0.0058277133, -0.004068528, 0.0009775998, 0.012584435, 0.023495337, -0.04261577, -0.0058079474, 0.0060418462, -0.0019716711, -0.02353487, -0.0030505725, 0.002915504, -0.0141130155, 0.0055608707, 0.001718006, -0.012933636, -0.013612273, 0.009052887, -0.00533356, -0.0018662519, -0.033813257, -0.0010854899, 0.029069385, -0.00964587, -0.011971684, 0.0008911229, 0.019792482, 0.0011209041, 0.003113165, 0.016840741, -0.019265385, 0.007432064, 0.026710628, -0.026618386, 0.006661185, -0.0074650077, -0.00047521066, -0.0022352196, 0.029359289, 0.0019551995, -0.0034228344, 0.007899863, 0.0042694835, -0.042194095, -0.034182224, 0.007642903, 0.03007087, -0.01587879, 0.010937258, -0.003445895, 0.010456282, -0.0002909327, 0.027593514, -0.022796934, 0.01031133, -0.009487742, 0.047860384, -0.0020968567, 0.012768919, 0.0012082045, 0.013467321, 0.012090282, -0.0009916007, -0.014666467, 0.0034524836, -0.033760548, -0.034182224, 0.0049645924, -0.010996556, 0.009981895, 0.017222885, 0.024101498, 0.022414789, 0.019990144, 0.0022500441, -0.019607998, -0.0040388787, -0.014165725, 0.0048295236, 0.0048262295, 0.013355314, -0.002434528, -0.037344802, 0.00091830135, 0.010831838, -0.0086575635, 0.004200302, 0.00622633, -0.018751467, -0.008598265, -0.013520031, -0.026223063, 0.00484929, -0.0272509, 0.02103116, -0.016880274, -0.00551475, -0.0014182196, 0.021755917, -0.009118774, -0.006134088, 0.017222885, -0.02403561, 0.017552322, -0.035051934, 0.008453314, -0.00826883, 0.015575709, 0.03170487, 0.0009421854, -0.012156169, 0.028805837, -0.008565322, 0.0047405763, -0.0052940277, 0.0016175281, 0.0020029675, -0.01118104, -0.027646223, 0.008150233, -0.0070960396, -0.008071168, -0.004819641, 0.015048612, -0.013309193, -0.005669584, 0.00382804, -0.0049085882, -0.0015302277, -0.020952094, -0.025274288, -0.009336201, 0.0035611973, -0.015404402, -0.014271144, 0.012874338, 0.00047397526, 0.0006889319, 0.0061637373, 0.026736982, 0.0019436692, -0.013032467, -0.01985837, -0.009929185, -0.0084203705, -0.011991451, -0.03465661, -0.0067863706, -0.00055715773, -0.00077293796, -0.023468982, -0.009250548, 0.0057354714, -0.021690032, 0.013572741, 0.02159779, 0.003725915, 0.0034030683, -0.013849467, -0.16540295, -0.010759362, 0.030334417, -0.012195701, 0.028515933, 0.00929008, 0.012248411, 0.012861161, -0.009975306, -0.004496794, -0.008499435, -0.026368015, -0.041060835, -0.012077104, -0.0021495663, 0.003926871, -0.0083215395, 0.02833145, 0.039426837, 0.0015055201, 0.021861337, -0.025274288, 0.044645093, -0.014785063, -0.0029286812, 0.0037555643, -0.019502578, 0.010561701, 0.016063273, -0.020609483, 0.010080725, -0.019818837, 0.02980732, -0.026605207, 0.021373773, 0.00898041, 0.018487917, -0.010620999, -0.00903312, 0.0010336038, 0.047227867, 0.020438176, -0.01883053, -0.0038675724, 0.021017982, 0.012795273, 0.021136578, -0.0032894132, 0.018382499, -0.024417756, 0.027777998, -0.022599272, 0.006012197, 0.021782273, 0.0047636367, 0.012531725, 0.006512939, 0.0061835037, 0.0025037094, -0.009566805, -0.012551491, -0.017433725, 0.01199804, -0.0028907962, -0.016498128, -0.022823289, 0.008242475, 0.012749152, -0.026631562, -0.0059133666, -0.01454787, -7.7623234e-05, 0.001393512, -0.010265209, 0.0061242054, 0.0148377735, 0.008914524, -0.025195224, 0.00020177921, 0.014916837, -0.0070037977, 0.032811772, 0.0023076953, -0.011062442, -0.036896773, 0.0026865462, -0.01138529, 0.014178902, -0.03639603, -0.007385943, -0.003241645, -0.008222709, -0.009612926, -0.026829224, 0.008795926, 0.009428442, 0.0039960523, 0.010673709, 0.012735975, 0.013256483, -0.013039055, 0.016603548, -0.01730195, 0.019357627, 0.014007595, -0.008433548, -0.021610966, 0.0019815543, 0.027198192, 0.00033581827, -0.017473256, -0.018184837, 0.02593316, 0.02833145, -0.012637144, 0.025682788, 0.007293701, -0.0027194896, -0.0064799953, -0.007227814, 0.05099661, 0.007208048, -0.03945319, 0.005363209, -0.031414967, -0.006937911, -0.121970184, -0.034287643, 0.0059430157, 0.0044374955, 0.039426837, 0.011701548, -0.0011925563, -0.008446725, 0.0013778638, 0.035025578, -0.014310677, -0.028226031, -0.01525945, 0.006087967, -0.018395675, -0.019067725, 0.030597966, -0.020345934, -0.01587879, 0.03067703, -0.0046318625, -0.004954709, -0.014521515, -0.0046911607, 0.0013968063, 0.004638451, 0.0012691501, 0.029570127, 0.021663675, 0.0018382499, -0.025142515, -0.009178072, -0.022388434, -0.020530418, 0.014719176, 0.0062922174, 0.0011546713, -0.024127852, 0.027224546, -0.032416448, 0.0043123104, 0.030571612, -0.00078611536, 0.0014528104, 0.018132128, -0.015549353, -0.023244966, 0.02899032, -0.006400931, -0.017525967, -0.019884724, -0.018408854, -0.03945319, 0.009738112, 0.03159945, -0.007965749, 0.019107256, 0.0003850277, -0.029622836, -0.030413482, 0.009217604, 0.016814386, -0.015852435, -0.001960141, 0.0051984917, -0.03613248, -0.035104644, -0.0008557086, 0.015430757, -0.023824772, -0.010660532, -0.0040158182, -0.017315127, 0.03434035, -0.013447556, 0.0025102983, -0.033101674, -0.006512939, 0.018092595, 8.647681e-05, -0.012228644, -0.012406539, 0.018158482, 0.0011241985, 0.01822437, 0.011095386, 0.0028957378, 0.003067044, 0.009204427, 0.0064602294, -0.00246253, 0.038425352, 0.011991451, -0.03007087, -0.0073925317, 0.031467676, -0.0033800078, -0.019015014, 0.007847153, 0.022731047, -0.018079419, -0.012248411, -0.03312803, 0.020952094, -0.0061373827, 0.0063383384, 0.0083215395, -0.010245442, 0.010825249, -0.0009652459, 0.018079419, 0.0167485, 0.0027277255, 0.033602417, -0.005313794, -0.017157, -0.01909408, -0.015378048, 0.008400604, 0.004486911, 0.0049019996, 0.0011785553, -0.0048295236, 0.00852579, -0.00826883, 0.023613933, -0.0064141084, 0.0060418462, 0.01490366, -0.0060813786, -0.009296669, 0.000522567, 0.023653466, -0.03265364, -0.018975483, 0.004895411, 0.014692822, -0.017789515, -0.028515933, 0.023798417, 0.020662192, 0.0675738, -0.03526277, -0.036896773, -0.008479669, -0.014705999, -0.0016949454, 0.0047965804, -0.003482133, 0.015035435, 0.021545079, 0.025840918, 0.009652459, 0.037344802, -0.0011381995, -0.042273156, -0.02566961, -0.0031559917, -0.002184157, 0.0049580038, -0.008532379, -0.019410336, 0.039637674, 0.015061789, 0.0045824475, 0.0042200685, 0.006335044, -0.01281504, -0.009151717, -0.017222885, -0.017064758, -0.02419374, 0.0030209231, 0.023152724, 0.022032643, 0.008868403, 0.0022862821, 0.0057025277, -0.036606867, 0.014745532, -0.012755741, 0.008795926, 0.005636641, 0.007820798, -0.012432895, -0.014811418, 0.046700772, 0.0067863706, -0.021400128, 0.011760846, -0.0045264433, 0.014416096, 0.01832979, 0.011905798, -0.0009734818, -0.0030802216, 0.010337684, -0.008703684, -0.0020079091, -0.013559563, 0.008618032, 0.02563008, 0.010957023, 0.0006815196, 0.0028002013, -0.016564015, -0.02986003, 0.024786724, -0.031151418, -0.036764998, 0.008308362, 0.004852584, -0.0046483343, -0.028805837, 0.0116027165, 0.0032399977, -0.014679644, 0.010937258, -0.0094811525, -0.0073068785, -0.01863287, 0.023903837, 0.014284321, -0.0049580038, 0.007629725, 0.0037325039, 0.044961352, 0.0060253744, 0.02746174, -0.02486579, 0.01939716, -0.003223526, 0.0088552255, -0.022915531, -0.038557127, -0.015522999, 0.0010698417, -0.0028282034, 0.021861337, -0.0018349555, -0.03710761, 0.053579383, 0.01996379, 0.007405709, 0.02827874, -0.017710451, 0.024061967, 0.017894935, -0.019647531, -0.00663483, -0.039084222, 0.0054488624, -0.010179556, 0.015812902, -0.035051934, -0.00011190511, 0.017670918, -0.016603548, 0.016603548, -0.014244789, -0.031019643, 0.024457289, -0.007781266, 0.023034127, -0.004098177, -0.011503886, -0.014745532, 0.004081705, 0.010284975, 0.007906451, -0.030545255, -0.0005962782, -0.007959161, -0.03307532, -0.018553805, -0.003633673, 0.004776814, -0.014692822, -0.013704515, -0.0034854272, 0.0015071672, -0.0013424495, 0.03521006, -0.009448209, -0.024536353, -0.01444245, -0.002712901, -0.0026453668, -0.011813556, -0.0055048666]" 21559139,"Show HN: Open-Source Alternative to Intercom, Drift, Zendesk, FreshChat",https://github.com/chatwoot/chatwoot,417,1574014601,79,pranavrajs,"[-0.032902926, -0.009835556, -0.0047377767, -0.017891474, 0.0054951417, 0.0071321367, 0.03010441, -0.015867306, 0.009638574, -0.013564645, -0.0133269075, 0.012668034, -0.02339341, -0.013625778, -0.0041094692, -0.0018492612, 0.021763207, -0.004965326, -0.009788009, -0.019847719, -0.007009872, 0.018366951, -0.004503435, 0.021233391, -0.020676404, -0.0029190818, 0.020594895, -0.025893053, -0.018923936, -0.0130687915, -0.008042334, -0.004432114, -0.015717871, -0.015826551, -0.03491351, -0.004041544, 0.02972403, -0.018788086, 0.032278012, -0.0020649235, 0.028664399, 0.033718027, -0.004357396, -0.0010664243, -0.027903637, 0.022700572, -0.015867306, -0.015351076, 0.021763207, 0.020581309, -0.0045068315, 0.025444748, -0.022931518, 0.021233391, 0.018856011, -0.0064902445, 0.00017278451, 0.027170045, 0.013367662, -0.0057464647, -0.011105756, 0.02325756, -0.03548408, 0.006293262, -0.026952686, -0.011085379, -0.02445304, -0.0009866123, -0.0005684483, 0.0076551605, 0.029669689, 0.019290732, -0.004370981, -0.0015444473, 0.008558564, -0.0046290965, -0.011594817, -0.0002882572, 0.01503862, -0.013320114, 0.011492929, -0.020200929, -0.016465047, 0.025811544, 0.0076619526, 0.024303606, 0.025376823, 0.02109754, -0.019576019, -0.012987282, -0.022048492, -0.007213647, 0.00427249, 0.016777502, -0.017293734, 0.013238605, 0.00892536, 0.010168389, -0.007505725, -0.016030326, 0.0026711551, -0.002034357, -0.024847006, -0.018584311, -0.017809965, -0.005525708, 0.017551849, 0.013462758, 0.0302946, 0.0074174223, -0.000790054, 0.051623087, -0.005128346, -0.028773079, 0.011397834, 0.0011810479, 0.025621353, -0.011594817, -0.013211435, -0.018910352, 0.02079867, -0.006133638, 0.020404704, -0.0145223895, 0.025227387, 0.020133004, -0.0051623085, -0.0032688961, 0.004014374, -0.0037970138, -0.01198199, -0.008803095, 0.024466626, -0.0067143976, -0.02942516, 0.017701285, -0.023841714, 0.020757915, -0.011988782, -0.01566353, 0.009000078, 0.021939812, 0.0017762417, -0.009135928, 0.011615194, 0.022999443, 0.021518676, 0.005444198, 0.01044009, 0.0058517484, 0.023746619, -0.00014115688, -0.034696147, -0.005101176, 0.0062389215, 0.020649234, 0.02980554, 0.021912642, -0.015079375, 0.0099238595, -0.026259849, 0.022700572, 0.003082102, -0.011452174, 0.03651654, 0.020133004, 0.005566463, -0.007954031, 0.00079217664, 0.0065276036, 0.0056241993, 0.026816836, -0.017959401, 0.024887761, 0.011723875, -0.009774424, -0.010704998, 0.0013746344, -0.027781371, -0.023053784, 0.0022653025, 0.0031245553, 0.0036985225, 0.014400125, -0.03480483, -0.04311886, -0.023230389, -0.00854498, 0.021491505, -0.009570649, 0.008667245, 0.020309608, -0.0010451977, -0.015649946, -0.6268673, -0.006734775, 0.0016327499, -0.012681618, -0.016750334, -0.009020455, 0.010691413, -0.0018509594, -0.037929382, 0.008055919, -0.0070642116, 0.0023722847, -0.007213647, -0.014780505, -0.0120023675, -0.007281572, 0.0038411652, -0.03053913, 0.023434164, 0.0012167086, -0.015989572, 0.006711001, -0.025702864, 0.009692914, -0.01471258, -0.011234813, 0.025240973, 0.0014646353, -0.028419867, 0.011948028, -0.023896055, 0.002640589, 0.03662522, 0.0027798354, 0.04697701, 0.017646944, -0.012274068, 0.025526257, 0.004567964, 0.010800093, -0.028039487, -0.019412998, 0.015554851, -0.0024758703, 0.010127635, -0.019806962, 0.032359526, 0.0057464647, -0.022945104, -0.032821417, 0.004452491, -0.017348073, 0.0023875677, 0.0034590864, 0.02434436, -0.011187267, 0.038527124, -0.006069109, 0.006204959, -0.0014816165, -0.0067177936, 0.031136872, -0.00092208345, -0.034614637, -0.02404549, -0.002720401, -0.0042690933, -0.026110414, 0.0037800325, -0.005006081, 0.011363871, -0.00033219627, -0.004289471, -0.015812967, -0.0044219247, 0.040673558, -0.0053898576, -0.014128423, 0.005556274, 0.04083658, -0.010107257, -0.0014952016, -0.0025268144, -0.020622065, 0.023135293, -0.00036021537, -0.023597185, -0.03078366, 0.012783507, 0.0068094926, 0.013347285, 0.03624484, -0.027360236, -0.015106546, 0.013191057, 0.031028192, -0.001407748, 0.00022203021, 0.0035762573, -0.015962401, 0.004065318, -0.038445614, 0.016682409, 0.033745196, 0.011785007, 0.010820471, -0.030865172, -0.0013873704, 0.032060653, -0.012015953, -0.0011054812, 0.0028307792, 0.009129135, -0.025281727, 0.021111125, -0.017918644, 0.031571593, 0.00459853, 0.02988705, -0.0049619297, -0.016465047, -0.041162618, 0.01695411, 0.015092961, 0.020839425, 0.01501145, -0.0039838078, -0.0131978495, -0.0032111597, -0.0210432, 0.02996856, -0.02988705, 0.010378958, -0.00515212, 0.020717159, 0.006361187, 0.02134207, -0.0022211513, -0.0049041933, -0.012382749, 0.0022449251, 0.011465759, 0.021138296, -0.009169891, -0.013618985, -0.03026743, -0.019385828, -0.0038683352, -0.020377534, -0.013462758, 0.0025471917, -0.021124711, -0.00014922298, 0.030919513, 0.0023400201, 0.00228568, -0.016329197, -0.03532106, -0.004567964, -0.024996443, -0.007532895, 0.014862015, -0.0028800247, 0.005209856, -0.019535262, -0.007886106, -0.019779794, 0.009747254, -0.0022211513, -0.025213802, -0.0029224781, -0.0102499, -0.015908062, 0.025444748, -0.011132926, 0.009244608, -0.028066657, -0.019277148, -0.008585734, -0.006106468, 0.022211513, 0.011988782, -0.016804673, -0.02950667, 0.0014179368, -0.011282361, 0.027468916, 0.028093828, -0.041570168, 0.021926226, -0.019929228, 0.016410708, 0.009876312, 0.014454464, -0.026205508, 0.023040198, 0.016193347, 0.016288443, 0.0035083322, 0.0007539688, 0.0039906004, 0.027523257, 0.010820471, -0.011370664, -0.0076415753, -0.015242396, -0.010107257, -0.021708867, 0.07178326, -0.0061879777, 0.0026202113, 0.0018951107, -0.006415527, 0.0060317502, 0.011907272, 0.016234102, 0.0036577673, 0.0071796845, -0.022673404, -0.0131978495, 0.023461334, -0.034614637, 0.0017983174, -0.008429507, -0.008443092, 0.028338358, -0.010935944, 0.031435743, 0.007532895, -0.028311187, 0.003469275, -0.006204959, 0.006592132, 0.012817469, 0.038771655, -0.014440879, 0.024982857, -0.025173048, 0.04656946, -0.012960112, 0.006425716, 0.021749621, 0.02985988, -0.016573727, 0.025064368, -0.004384566, 0.016940523, -0.008388751, -0.017239394, 0.003559276, -0.014766919, 0.00018477754, -0.008592527, -0.0025454937, 0.015758626, 0.016342781, -0.0051589124, 0.0129465265, 0.028555717, 0.0297512, 0.0054917457, -0.012960112, 0.026653815, 0.020024324, 0.012701997, -0.008674037, 0.007369875, -0.02120622, -0.0061438265, -0.026626645, 0.024249265, -0.009244608, 0.011852932, -0.0015716173, 0.009319326, 0.020133004, -0.02025527, 0.016967693, -0.015296736, 0.010779715, -0.0039770156, -0.024534551, 0.016098252, 0.00165992, -0.0073834597, 0.0138906855, -0.015962401, 0.020975275, -0.0075261025, 0.019331487, 0.0029139875, 0.026382115, 0.005077402, -0.01495711, 0.01355106, 0.011492929, 0.0021464336, -0.006164204, 0.011907272, -0.017280148, 0.022401702, 0.0120023675, -0.033337645, -0.026205508, 0.015989572, -0.000331984, -0.03597314, -0.026232678, -0.026096828, -0.021518676, -0.0013975592, -0.00029780917, -0.024602477, -0.025010027, 0.015948817, -0.0042623007, 0.008334411, -0.019929228, 0.015432586, -0.015106546, -0.010637073, -0.006826474, -0.023243973, -0.0030107808, 0.07314176, 0.0019239788, 0.013252189, 0.024629647, -0.019467337, -0.011744252, -0.031082531, -0.033989727, -0.013924648, -0.011377457, -0.021246975, -0.016166177, 0.04105394, -0.010800093, -0.00034047462, 0.00908838, 0.008755547, -0.0077095004, 0.022428872, -0.011839347, 0.010630281, -0.03983129, 0.0010418014, 0.010779715, 0.040266007, 0.033527836, 0.007030249, 0.038228255, -0.02653155, -0.039152037, 0.0049890997, 0.015527681, 0.0049924958, -0.011859725, -0.015310321, 0.04768343, -0.0050162696, 0.032332353, -0.013163887, -0.017415999, 0.008449884, 0.027985146, -0.0023485108, -0.0060215616, -0.004758154, -0.00906121, 0.01779638, 0.024792667, -0.031272724, -0.011995575, -0.009971406, 0.01192765, -0.028338358, 0.012858224, -0.009000078, -0.0038275803, 0.0071117594, 0.007757048, -0.003053234, -0.044912085, -0.02448021, -0.0202281, -0.022795668, -0.0031975748, -0.028718738, -0.016736748, -0.004143432, -0.0022805857, 0.02036395, 0.014277859, -0.012654449, -0.02060848, -0.01771487, 0.0153374905, 0.0077910107, 0.0068468517, 0.010718583, 0.016383538, -0.010609902, 0.023434164, 0.018299026, -0.00228568, 0.0073359124, -0.01820393, -0.01817676, -0.0010808584, -0.015745042, 0.0025658712, -0.012246898, 0.023162464, 0.006816285, -0.0033962557, 0.005406839, -0.0025845505, 0.019222807, 0.011859725, 0.00933291, 0.0038717315, 0.021301316, -0.0053626876, -0.00878951, -0.020092249, -0.00096368755, -0.0072747795, 0.012661241, 0.000391843, -0.0010570845, 0.015690701, -0.025050782, 0.0145223895, 0.013007659, -0.0016675616, 0.005498538, -0.012219728, -0.020296024, -0.017185055, 0.0061879777, 0.022836423, 0.008612905, -0.0019817152, 0.020241683, -0.03561993, -0.0062592993, 0.013014452, -0.031055363, 0.0069045876, 0.01747034, -0.019603187, -0.013082377, 0.00011600336, 0.011404627, 0.0065276036, -0.0050943834, -0.013116339, -0.0067789266, -0.023406994, -0.015772212, 0.02145075, -0.003481162, 0.009536686, -0.018720161, -0.005946844, 0.0035796536, -0.030566301, -0.0043913587, -0.039478075, -0.00933291, -0.0054000467, 0.0025862488, 0.03689692, 0.0023060576, 0.024847006, -0.010127635, -0.02142358, 0.001952847, -0.04795513, -0.008246109, -0.014766919, 0.024969272, 0.01749751, 0.01479409, 0.0032621035, 0.03445162, -0.019100541, -0.0061913743, -0.013313322, 0.003956638, -0.00069495884, -0.003654371, 0.01143859, 0.0066906237, 0.033582177, 0.02377379, 0.0077774255, 0.0027696465, 0.0148348445, -0.010732168, -0.008646867, -0.024819836, -0.013347285, -0.011044623, -0.003107574, -0.007159307, -0.009516308, -0.032549713, 0.021002445, 0.0019868095, 0.031028192, 0.019317903, 0.024602477, 0.0055494816, -0.0020785085, 0.018326195, -0.0024741723, 0.009917066, -0.018951107, -0.008517809, -0.038853165, -0.009570649, 0.02958818, 0.034261428, 0.015989572, 0.024249265, -0.012919357, -0.0035932385, 0.015446171, -0.020133004, -0.024643231, 0.01171029, -0.01520164, -0.007281572, -0.015921647, -0.00927857, -0.011404627, -0.031897634, -0.005077402, -0.0037902214, 0.024779081, -0.0071389293, 0.005114761, -0.0007590632, -0.02066282, 0.04195055, 0.031381402, 0.02737382, 0.022646233, 0.012328408, 0.007227232, -0.0035966348, -0.015853722, -0.006680435, 0.020431874, 0.03404407, 0.014576729, -0.00010533699, -0.00611326, 0.0018577519, -0.044368684, -0.026898345, -0.012722374, 0.022197926, 0.020486215, -0.027183631, 0.008239317, 0.0014298237, 0.035103697, -0.01842129, -0.016791089, 0.016030326, -0.0101751825, -0.022428872, 0.02999573, 0.017293734, 0.012681618, 0.0040483368, 0.019902058, -0.008103466, -0.008212146, -0.008938945, -0.0013652948, 0.011445382, 0.022456042, -0.03417992, -0.004608719, 0.03491351, 0.008877812, -0.0047377767, -0.001195482, 0.01785072, 0.02988705, -0.010215937, -0.009183476, 0.0027560615, -0.016234102, 0.0035083322, -0.0300229, 0.0079676155, 0.0032790848, -0.038418446, -0.033174627, 0.02068999, -0.0146039, 0.010569148, -0.007091382, 0.009312533, 0.010188767, -0.01308917, -0.017375244, 0.0049890997, -0.009394043, -0.01465824, -0.02399115, -0.016288443, 0.006561566, 0.0030498377, -0.009516308, -0.0049958923, 0.022469627, -0.008959322, 0.0037936177, 0.014549559, 0.021831132, -0.017280148, -0.009964614, 0.0026253057, -0.031544425, 0.021668112, -0.016628068, -0.02344775, -0.008381959, 0.017891474, 0.0026456832, -0.0202281, -0.007234025, 0.015962401, 0.0294795, 0.009978199, -0.021532262, -0.020893766, -0.01512013, -0.0076823304, -0.0025200217, 0.055807274, 0.005029855, 0.011988782, -0.00016450614, 0.02041829, 0.006313639, -0.031951975, -0.04814532, 0.009577441, -0.017809965, -0.0063509983, -0.019820549, -0.021736037, -0.027441746, -0.016342781, -0.0005102874, -0.0027815334, -0.014155594, 0.013191057, 0.02590664, 0.025852298, -0.008300449, -0.013021245, -0.023570014, -0.02950667, -0.0072747795, -0.044423025, -0.0141420085, 0.025634939, 0.02942516, 0.013231812, -0.031191213, -0.027061366, 0.01708996, -0.07189194, -0.010134427, -0.022211513, 0.0148348445, -0.0058925035, 0.027455332, -0.004591738, 0.010949529, -0.0054272166, 0.031299893, -0.05874164, -0.0042589046, -0.017972985, -0.02726514, 0.022686988, -0.027686276, -0.032957267, 0.01793223, 0.026626645, -0.027034195, -0.014400125, 0.0050672134, -0.00757365, -0.009244608, 0.028365528, 0.006225337, -0.009434799, 0.0030583283, 0.03610899, -0.019467337, -0.0068570403, 0.0061030714, 0.002987007, 0.01882884, 0.008796303, 0.0050434396, -0.0088506425, 0.015745042, -0.039233547, -0.019019032, -0.02117905, 0.017293734, 0.018706577, 0.013911063, -0.023121709, -0.0017983174, -0.0072204396, -0.019317903, -0.023108123, 0.022062076, 0.006014769, -0.004000789, 0.031707443, -0.020717159, -0.009516308, -0.02088018, 0.016791089, -0.009516308, -0.00089236617, 0.004527209, 0.017972985, -0.025186632, 0.01217218, 0.009917066, 0.001446805, 0.013924648, 0.0013483135, 0.008307242, -0.027387407, -0.010535185, 0.002976818, -3.1813364e-05, -0.013381247, 0.0277542, -0.00071533635, -0.02404549, 0.006181185, 0.0294795, -0.01798657, 0.03015875, 0.20812255, -0.0057974085, 0.0070574195, 0.016206931, 0.027088536, -0.025281727, 0.010052917, 0.009563856, -0.011948028, 0.013435587, -0.006935154, -0.023271143, 0.008049126, 0.0022211513, 0.002723797, -0.024670402, -0.007981201, -0.032794245, 0.008225732, 0.013815968, -0.009258193, 0.008225732, 0.02961535, -0.0049924958, 0.0035253135, 0.021627355, -0.007553273, -0.027061366, 0.024575306, 0.014074083, -0.022469627, -0.0008350544, 0.0011360475, 0.0022534158, 0.014698994, -0.012593316, 0.023040198, -0.019059787, 0.032685563, 0.015514096, 0.0138295535, -0.015419001, 0.022225097, -0.016071081, 0.025648523, -0.013537475, -0.0035660684, 0.006137034, 0.03015875, 0.026490794, 0.008959322, -0.0014952016, 0.005804201, 0.025186632, -0.00757365, -0.004438906, -0.02672174, -0.0049924958, -0.012029538, 0.014889185, -0.032114994, 0.016994864, -0.0016234103, 0.017171469, -0.02994139, 0.010745753, -0.014862015, -0.016886184, -0.012817469, 0.00013659315, -0.012178973, -0.009584233, -0.0059875986, 0.0029819126, -0.018244686, -0.03703277, 0.009319326, 0.009536686, 0.020146588, 0.031625934, 0.016967693, -0.011914065, -0.002604928, 0.02699344, 0.0021820944, 0.0058653336, 0.035022188, -0.020309608, -0.021124711, 0.0063951495, -0.0022415288, 0.002112471, -0.009013663, -0.011017454, 0.011533684, 0.003956638, 0.005563067, 0.01842129, -0.007784218, 0.018326195, -0.025607768, 0.06015448, 0.005790616, -0.0036815412, -0.02355643, -0.0044015474, -0.008701207, 0.008035541, 0.0121246325, 0.008062711, -0.01722581, -0.037222963, 0.0074378, -0.011377457, 0.0097948015, 0.0064393007, 0.006313639, -0.0046290965, 0.0023943603, -0.005284574, 0.024819836, -0.011255192, 0.0019019032, 0.0013839742, -0.009448383, -0.010772923, -0.0069962866, 0.0010596318, -0.021966983, -0.0056377845, 0.0056819357, -0.005257404, 0.008055919, 0.008429507, -0.0007395347, -0.0023009633, -0.0023570014, -0.010935944, -0.0084702615, 0.025893053, -0.0072000623, 0.016030326, -0.008558564, -0.004303056, 0.013646156, -0.040184498, 0.009652158, -0.0025217198, -0.001089349, -0.039641097, 0.0041502244, 0.03752183, 2.523312e-05, 0.003559276, 0.021477921, 0.016628068, -0.0060521276, -0.008293657, 0.013408418, -0.0009993482, -0.018815257, -0.015704287, 0.0146039, 0.014277859, -0.01484843, 0.005698917, -0.17236677, 0.020133004, 0.014305029, -0.009461968, 0.015351076, 0.0037019188, -0.038309764, 0.019141298, 0.0094212135, -0.008137428, 0.0042181495, -0.010154804, -0.020133004, -0.0111804735, 0.007478555, 0.015133715, -0.001446805, -0.0050162696, 0.025240973, 0.018000156, 0.040755067, -0.022972273, 0.027319482, 0.008089881, 0.02328473, 0.00919706, -0.010181975, 0.0061268453, 0.012912564, -0.031571593, -0.02039112, -0.011146511, 0.022591893, -0.00012237133, -0.00459853, 0.019032616, 0.030892342, -0.0036170124, 0.016329197, -0.0025828525, 0.02634136, 0.010800093, -0.0006745813, 0.021654526, 0.010324617, 0.020717159, 0.026898345, -0.022157172, -0.008809887, -0.0059604286, 0.024942102, -0.016587313, -0.0040789032, -0.017144298, 0.0049347593, 0.007838558, 0.0068468517, 0.024955686, -0.012301238, -0.023189634, 0.031707443, -0.016356368, -0.006014769, -0.018842427, 0.014169179, -0.014862015, -0.02388247, 0.004180791, -0.00220417, 0.019752624, 0.008049126, 0.013883893, -0.011669534, -0.0055460855, -0.0010375561, 0.01787789, -0.028582888, -0.0046053226, 0.02134207, 0.007145722, -0.011384249, -0.006364583, 0.00083590345, 0.018434877, -0.019073373, -0.0019443564, 0.0067449636, 0.0036849375, -0.011357079, -0.0021447355, 0.00038398916, -0.015514096, -0.01314351, -0.004221546, 0.0031890841, 0.0019800172, 0.00757365, 0.0036000311, 0.01195482, -0.011255192, 0.01176463, 0.0024249265, 0.022442458, -0.014549559, 0.010820471, 0.0152152255, 0.014019744, -0.013978989, 0.01760619, 0.0012540674, 6.3998195e-05, 0.026952686, 0.020717159, -0.0038683352, -0.010229522, 0.04108111, -0.006266092, -0.0085993195, 0.018217515, -0.009190268, 0.061512984, 0.0023298315, -0.011642365, 0.009027247, -0.0075125177, -0.023923226, -0.09091097, -0.03572861, 0.009407628, 0.014427294, -0.014359369, 0.0127563365, -0.015772212, 0.02918063, -0.019929228, 0.0053457064, -0.014359369, -0.023352655, -0.017157884, -0.0014459558, 0.010215937, 0.0028375715, -0.004686833, -0.0036204085, -0.0069045876, 0.012654449, 0.0075396877, -0.039939966, -0.0020954898, -0.005855145, -0.033582177, -0.0074445927, -0.022075662, 0.02691193, 0.019114127, -0.0020886972, 0.0069894944, -0.005145327, 0.013992573, -0.038608633, -0.014617484, -0.0014306727, -0.028066657, -0.009305741, 0.03445162, -0.033609346, -0.009896689, -0.012973697, -0.004133243, -0.04118979, -0.0064596785, -0.008592527, 0.012701997, 0.029289309, 0.008239317, -0.001608127, -0.007532895, -0.006293262, -0.032006312, -0.006225337, 0.031653102, -0.0024911535, -0.01198199, -0.015636362, 0.0048974007, -0.010039331, 0.0072679874, -0.009706499, -0.011771422, 0.009869519, 0.014400125, 0.016560143, 0.0027254953, 0.01839412, 0.023923226, 0.004106073, 0.0033317269, 0.0027390802, -0.006816285, 0.037087113, -0.013652948, 0.0151473, -0.0066702464, -0.032848585, 0.012348786, 0.012382749, -0.016668823, -0.021912642, 0.0018424687, -0.0076076128, -0.015378246, 0.008653659, 0.0046800403, -0.016342781, -0.0059298626, -0.06265412, -0.007818181, 0.0039158827, 0.008483847, 0.0021753018, 0.013000866, -0.006795908, -0.022904348, -0.0034845583, 0.01014122, -0.0017745435, -0.028447038, -0.0057464647, -0.07341346, 0.0079676155, 0.017918644, -0.0037189, 0.0011496325, -0.022388117, -0.016668823, -0.034397278, 0.016519388, 0.028637229, -0.022401702, 0.031001022, -0.009237816, -0.015935231, -0.022388117, 0.011234813, 0.02079867, -0.025037197, -0.0015053904, -0.0148756, 0.001873035, -0.02407266, 0.016071081, 0.039124865, 0.004432114, 0.006201563, -0.022714159, 0.019874888, 0.001793223, -0.0066023213, 0.017239394, -0.024683986, 0.0148756, 0.021994151, 0.021083955, -0.01736166, -0.01506579, 0.035375398, 0.0036373897, 0.009529893, -0.010840848, -0.0031313477, 0.025281727, -0.0050638174, -0.04108111, -0.005420424, -0.018271856, -0.006218544, 0.028229678, -0.008531394, 0.023339069, 0.005512123, -0.029289309, -0.030729322, -0.008422714, -0.0011479345, 0.034261428, 0.00047972111, 0.019548848, -0.0011937838, 0.012457466, 0.025037197, 0.011588024, 0.00895253, -0.01165595, -0.02964252, -0.01566353, -0.025512673, 0.015704287, -0.028528547, 0.0024775686, -0.023787376, 0.021409996, 0.011533684, -0.009842349, 0.00069538335, -0.02942516, 0.016179763, -0.031571593, 0.028908929, -0.006384961, -0.012769922, -0.005216649, 0.0122536905, 0.022143587, 0.01363257, -0.023094539, -0.004411736, -0.00597741, -0.010222729, -0.03504936, -0.0035219172, -0.024548136, 0.0022890763, -0.01446805, 0.023176048, -0.0021820944, 0.034696147, -0.0006359489, 0.024330776, 0.0005463726, 0.023067368, -0.006242318, 0.0054272166, -0.009047626, -0.0072679874, -0.004567964, -0.015636362, 0.0022432269, 0.025512673, 0.014916355, -0.0127563365, 0.002908893, 0.0016505803, -0.00669402, 0.0048532495, 0.017402414, -0.014413709, -0.03692409, 0.012926149, 0.013462758, 0.03648937, 0.034397278, -0.020350365, 0.027794957, 0.0031805935, -0.015677117, -0.012905772, 0.0042419233, -0.014671825, 0.0023434164, 0.028691567, -0.017266564, 0.005620803, -8.028961e-05, -0.0054000467, -0.010188767, 0.023570014, -0.02011942, 0.07401121, 0.03733164, -0.0022092643, 0.026762495, 0.0016225611, 0.0011216134, 0.022333777, 0.019114127, -0.009801594, 0.0020105834, 0.008259694, 0.012294445, -0.003296066, 0.0028528548, -0.0040789032, -0.008103466, -0.023162464, 0.016723163, 0.017511094, -0.00022945953, 0.016071081, -0.023678694, 0.004608719, -0.017049203, -0.019412998, -0.00933291, 0.00507061, 0.00043896606, -0.02328473, -0.0289361, 0.01763336, 0.00061387324, -0.019345073, -0.008205354, -0.042928673, 0.013585023, -0.008402336, -0.003572861, -0.018923936, 0.02628702, -0.0061845817, 0.021939812, -0.021464337, -0.02418134, 0.009020455, -0.0072611948, 0.008687622, -0.023366239, -0.053280458]" 18391098,At least it wasn't Oracle,https://chrisshort.net/one-fish-two-fish-blue-fish-sporting-new-red-hat/,309,1541513614,134,koolherc,"[-0.020294767, -0.028070034, 0.018120326, -0.015300145, -0.016749771, -0.0042401566, -0.028386315, -0.01676295, -0.0033357874, -0.011913291, 0.02084826, 0.0046981066, 0.0029947958, -0.016051315, 0.00082859315, 0.03592437, 0.026475444, -0.012875316, 0.011610188, -0.018726535, -0.013850519, -0.0031825884, -0.013362917, 0.025803346, -0.0335259, -0.0008681284, 0.021981604, -0.0118012745, 0.012335001, -0.021217255, 0.0063816495, 0.012519498, -0.0042895754, 0.0030656299, -0.017276907, -0.016776128, 0.013600129, -0.015563713, 0.0077159647, -0.021230433, 0.02618552, -0.009014039, -0.0024594225, -0.007992712, -0.0071163466, -0.011135764, 0.00048018867, -0.03052122, 0.00027242265, 0.008183799, -0.0036471277, 0.024445968, -0.03228713, 0.0050638076, -0.0003101047, -0.0016901323, 0.020242052, 0.0072217737, 0.006786886, 0.014483083, 0.01784358, 0.0035054595, -0.009409391, -0.002434713, -0.019227315, -0.006019243, 0.005070397, -0.015590071, -0.02377387, -0.023945188, 0.033499543, 0.012539267, 0.0071492926, 0.012407482, 0.036135226, -0.017988542, -0.01951724, -0.014021838, 0.0034922813, -0.011722204, 0.0205188, -0.017158302, -0.005080281, 0.018634286, 0.039324403, 0.014127266, -0.026699478, 0.0266863, -0.013435399, 0.0137846265, 0.01201213, 0.006226803, -0.013916411, 0.036161583, -0.009402802, 0.028465386, -0.000262127, 0.018647464, -0.021480825, -0.030547576, -0.009725674, -0.014048195, -0.029994084, -0.008019068, -0.0051099323, 0.004121551, 0.01292144, -0.006187268, 0.0133233825, -0.018581571, -0.010595449, 0.018107148, -0.001863099, -0.021968426, 0.02426147, -0.009066753, 0.006039011, 0.0022040906, -0.0038876338, -0.018370718, 0.0061345543, 0.008229923, 0.0016802485, -0.008526438, 0.03368404, -0.0046981066, -0.004595974, -0.025249852, 0.03270884, 0.0077752676, 0.006605683, -0.0060686623, -0.0110764615, -0.002996443, -0.008585741, 0.0095543545, -0.015273788, 0.016868377, -0.006964795, -0.03368404, 0.011267548, 0.015893174, -0.004362057, 0.0023424642, -0.025671562, 0.0060258326, 0.008776828, 0.025460707, 0.015234253, -0.037136786, 0.02108547, -0.00072316575, 0.0062630437, 0.0056831934, -0.008203566, 0.037637565, -0.024867678, 0.033657685, -0.0045729117, 0.0011473461, -0.0017576717, 0.01326408, -0.013613308, 0.000691867, -0.0097520305, 0.020663762, 0.010779947, -0.008190388, -0.01750094, -0.010608627, -0.03170728, 0.0062498655, 0.0012206511, 0.008816362, 0.025407992, 0.017079232, 0.0033341402, 0.018502502, -0.021164542, -0.037373997, -0.011643134, -0.010410951, 0.032313485, 0.0073403795, 0.010582271, -0.008137674, 0.004536671, -0.013474934, -0.0023012816, 0.0024116507, 0.019780807, 0.038217418, -0.015076112, -0.023984725, -0.6304556, -0.026831262, -0.004595974, -0.007353558, 0.0044312435, -0.008196977, 0.017830402, 0.012196627, -0.025829703, 0.03060029, -0.0006576855, 0.004635509, 0.006039011, 0.0043258164, -0.012987332, -0.0052581895, 0.015366037, -0.0023507006, -0.02535528, 0.004019418, -0.01000242, -0.003828331, -0.018502502, -0.016631166, 0.0033308456, 0.0015155183, 0.0071097575, -0.008144263, -0.0137846265, 0.021375397, -0.017738152, 0.004767293, 0.029177021, -0.0065299068, 0.05152762, -0.015708676, -0.008137674, 0.017711796, 0.02551342, 0.004978148, -0.014469905, -0.019253671, 0.008262869, 0.020690119, -0.014667581, -0.009659782, 0.032497983, 0.0016135328, -0.008704347, -0.0039667045, 0.00055514096, 0.01176174, -0.0029667916, -0.01610403, 0.037084073, -0.0050374507, 0.009514819, -0.028359959, 0.016907912, 0.009231483, -0.014707116, 0.012183449, -0.019477705, -0.030969286, -0.01943817, 0.014575332, 0.0043917084, -0.0078082136, 0.0073930933, -0.004780472, 0.008776828, 0.02409015, -0.013890054, 0.0032501277, 0.013639664, 0.00037229035, 0.012440428, 0.0018400368, 0.0059764134, 0.030573934, 0.013356328, -0.026949868, -0.016183099, -0.020874618, 0.030415792, 0.005113227, -0.022416491, -0.023563014, -0.009857458, -0.03827013, 0.00013621133, 0.025658384, -0.02426147, -0.005805094, 0.024208756, 0.026198698, -0.015669141, 0.013494702, -0.006819832, -0.02443279, -0.00750511, -0.009409391, 0.013488113, 0.0057985047, 0.017922651, 0.018489324, -0.011366387, -0.004401592, 0.03344683, -0.032076273, 0.02092733, 0.013547416, -0.008658222, -0.005268073, 0.012005541, -0.024498682, 0.032577053, 0.0111423535, 0.01576139, -0.021256791, 0.029124307, -0.007511699, -0.007412861, -0.0041380236, -0.012473375, 0.0015146947, -7.418009e-05, -0.020294767, -0.0047771772, -0.012684229, 0.0025286092, -0.021797106, 0.034211177, -0.0011802922, 0.01676295, 0.012381125, 0.04080039, -0.020558335, 0.0026521569, -0.047837663, -0.029915012, -0.009613657, 0.01167608, 0.004694812, 0.013402453, -0.06278199, -0.002947024, 0.014021838, -0.0006766295, 0.030310364, 0.021230433, 0.009791566, -0.0038316255, -0.018963747, 0.025052175, -0.00080841366, -0.015827281, -0.042302728, -0.03384218, -0.00037331993, -0.0023441114, 0.031549137, -0.0044411276, 0.018199397, -0.019965306, -0.019108709, -0.0020261821, -0.0033637916, -0.01934592, -0.019253671, 0.0031710572, -0.016051315, -0.010457076, -0.025500242, -0.017000161, 0.0027477005, -0.002489074, -0.014114087, 0.0070834006, 0.0009307259, 0.019293206, 0.021876177, 0.0098179225, -0.009244662, 0.045465548, -0.0053636166, 0.006773708, 0.034211177, -0.015445108, -0.012163681, 0.019332742, 0.018212575, 0.0136792, 0.033789467, -0.010569093, -0.016894734, -0.0048990776, 0.008526438, 0.011880346, 0.006193857, 0.016446667, 0.019082353, 0.0039469367, 0.029967727, 0.008724114, 0.00014928679, 0.014245871, -0.0061576166, 0.003044215, 0.0006222685, 0.014338121, -0.0180149, -0.013138885, -0.021401754, 0.002413298, 0.012644693, -0.012493142, 0.016617987, -0.024959927, 0.011115997, 0.0023062234, -0.0011506408, 0.014575332, -0.019319564, 0.017514119, -0.00023762338, 0.031470068, 0.023694798, 0.024749072, 0.000713282, 0.0094225705, 0.032234415, 0.018462965, 0.0077489107, 0.014641224, -0.005179119, 0.00010645692, -0.022126567, 0.04027325, -0.009066753, 0.0056436583, -0.0052977246, 0.044042278, -0.026225055, -0.0030788083, 0.004655277, 0.031232854, 0.011966005, -0.013211366, 0.01400866, -0.020914152, 0.010661341, -0.006526612, 0.0011753503, 0.02627777, -0.032049917, -0.0018202692, 0.018357538, 0.030046796, 0.015603249, 0.01901646, 0.012717175, 0.0010443898, -0.0041709696, 0.021045936, 0.005828156, 0.018291647, -0.0041380236, -0.004454306, -0.009389624, -0.002739464, -0.0058083883, -0.021006402, 0.0024363603, -0.008124496, 0.0042665135, -0.0018449788, -0.004276397, 0.01258539, 0.013448577, -0.032656126, -0.03529181, -0.0018779248, 0.0036833682, -0.008803184, 0.00908652, 0.022166101, -0.008519848, 0.0051297, 0.003365439, 0.0031018704, -0.009106288, 0.0014982215, 0.030257652, 0.00725472, 0.0041116667, 0.048760153, -0.018713355, -0.009317143, 0.004852953, 0.002843244, -0.03742671, -0.017026518, -0.0004987208, 0.027332041, -0.011023748, 0.009692728, -0.027437469, -0.01526061, -0.01142569, 0.0027575842, -0.008862487, -0.036451507, 0.004885899, -0.0055316417, 0.010964445, -0.003426389, -0.002935493, 0.02142811, 0.009850869, 0.007452396, -0.0049155504, -0.069687486, 0.02358937, 0.12661825, 0.036372438, -0.0043521733, 0.00725472, -0.007663251, -0.02034748, -0.028570814, -0.06710451, 0.022719596, 0.016736593, 0.007630305, -0.019082353, -0.015326502, 0.0021365513, 0.0067671183, -0.019649023, 0.014061374, -0.01258539, -0.009297375, -0.0072020064, 0.008467135, -0.003469219, -0.012974154, 0.038243774, 0.024630466, -0.009560944, 0.04630897, 0.044490345, 0.030415792, -0.030073153, 0.017645905, 0.0034230945, -0.020334302, 0.025882415, -0.021467645, -0.0115377065, 0.0029008996, -0.0072744875, -0.0023556426, -0.0014076199, -0.008216744, 0.027490184, 0.0135210585, 0.008243102, 0.00084836077, -0.018818783, -0.010522968, 0.030626647, -0.021559894, -0.01610403, 0.007610537, 0.004427949, -0.025566135, 0.0032484804, -0.014232693, 0.017988542, -0.004576206, -0.015945887, -0.008038836, 0.0079004625, -0.024722716, -0.0060587786, 0.045544617, 0.00650355, -0.015787747, 0.008677989, -0.0071492926, -0.009323732, -0.022152923, 0.007491932, -0.00983769, -0.020545157, -0.040325966, 0.028544458, 0.05529665, 0.013494702, -0.003986472, 0.022021139, -0.014852079, 0.006605683, -0.02042655, -0.01885832, 0.015879996, -0.026633587, -0.008229923, 0.015985424, -0.016393954, 0.02593513, -0.020966865, 0.026080092, 0.00792682, -0.00022259174, 0.051896617, -0.0028613643, 0.027094832, 0.02393201, -0.01109623, -0.00019664672, 0.0038711608, 0.0058347452, -0.008394653, 0.037980206, -0.008869076, -0.02327309, 0.021889355, 0.0018252111, -0.0026192109, -0.0056996667, -0.002205738, -0.016024958, 0.031259213, -0.0026373311, -0.00035890602, 0.0133233825, -0.0005753204, 0.008730703, 0.040642247, 0.029124307, 0.00825628, -0.02393201, -0.0025137835, -0.008836131, 0.023286268, 0.0044378326, -0.019135065, 0.018397074, -0.005979708, -0.0014751593, -0.034791026, 0.0039831772, 0.012624926, -0.00033254919, 0.006137849, -0.0070570437, -0.031180141, -0.00235729, 0.012447017, 0.0073996824, -0.01659163, -0.013876876, -0.011491582, -0.008684578, 0.005870986, -0.00850667, 0.0076764296, -0.031654563, -0.005429509, 0.017738152, 0.0052186544, 0.021994783, -0.008697757, -0.011709026, -0.004141318, 0.00992335, 0.004002945, -0.02402426, 0.022838201, -0.027463827, 0.016341241, -0.006388239, 0.024011081, -0.0002018975, 0.010674519, 0.025592491, 0.005686488, -0.004576206, 0.004134729, 0.0018005016, 0.008210155, 0.0031727045, 0.005521758, 0.023655264, -0.009231483, 0.008803184, -0.02310177, 0.01759319, 0.014825722, -0.0006963971, -0.054084234, -0.027463827, -0.009119466, -0.0049089612, -0.007636894, -0.006964795, -0.023707977, -0.023879297, 0.02875531, 0.022363778, 0.051422194, -0.0030623353, 0.0223506, -0.01968856, 0.013395864, -0.003202356, -0.0018169746, -0.024814963, -0.01150476, -0.0137846265, 0.014825722, 0.014614867, 0.02609327, 0.0012807776, 0.005726023, -0.00538009, 0.01033847, 0.031733636, -0.0041479077, -0.035766233, 0.02368162, -0.008137674, -0.009014039, -0.02310177, -0.01784358, -0.004395003, -0.014825722, -0.010378006, 0.015471465, 0.005327376, -0.012038486, -0.025025818, -0.0031941195, 0.0048891935, 0.033130545, 0.018304825, 0.041907374, 0.027490184, -0.033736754, -0.041881017, -0.010503201, -0.014917971, 0.011122586, 0.017079232, 0.047495026, -0.025579313, -0.0037723226, 0.0026653353, -0.0038876338, -0.017421871, -0.040747672, 0.027595611, 0.011577242, -0.020031197, -0.013942768, -0.0061081974, -0.017355978, 0.014693938, -0.008243102, 0.012895084, 0.0040391856, -0.025342101, 0.0020723066, 0.009178769, -0.023154484, 0.005973119, 0.018199397, -0.015550535, -0.028913453, -0.024828143, -0.019253671, -0.005940173, -0.012644693, 0.021243613, -0.027595611, 0.021691678, -0.011280728, 0.00043612332, -0.0137187345, -0.035898015, -0.02335216, 0.017421871, 0.008289226, -0.022245172, -0.012150503, -0.001759319, 0.006104903, -0.007603948, -0.0065364963, 0.0043521733, -0.013474934, 0.00010383153, 0.014404013, 0.015959065, 0.0016967215, 0.014983864, -0.018252112, -0.005511874, 0.00014609513, 0.0071163466, 0.008757059, -0.0049649696, -0.010074901, -0.009495052, 0.009719085, -0.010898553, 0.0073272013, 0.0130071, -0.010404362, 0.014127266, 0.004329111, -0.008803184, 0.008308994, 0.018462965, -0.03052122, 0.012723764, -0.013211366, -0.01017374, 0.026699478, -0.009277607, -0.006912081, -0.024037438, 0.027252972, 0.0098838145, 0.011715615, -0.03226077, 0.0071624713, 0.027727395, -0.00037579087, -0.0018087381, -0.023734333, 0.0012148856, 0.012453606, 0.007063633, 0.010832661, -0.0012387715, 0.0072085955, -0.017000161, 0.010845839, -0.018304825, -0.017580012, 0.007096579, 0.00034819855, 0.035660803, -0.015497821, -0.008374886, -0.008111318, -0.0013301967, -0.008374886, 0.0053405548, 0.008249691, 0.011036927, 0.015655963, 0.025144424, 0.0030705717, 0.006437658, -0.0049386127, -0.015695497, -0.008585741, -0.014693938, -0.033894897, -0.014245871, -0.013152063, 0.03152278, 0.00454326, -0.000578615, -0.05845947, -0.02959873, -0.034000322, -0.019055994, -0.0133892745, -0.0023787047, 0.040484104, -0.008651633, -0.0054229195, 0.018146684, -0.010984213, 0.015207896, -0.0024083562, 0.01326408, 0.023734333, -0.04593997, 0.00942916, -0.004161086, -0.033235975, -0.005940173, 0.015326502, 0.0131915985, 0.023075413, 0.014548975, 0.0018186219, 0.0017148418, 0.0047771772, -0.0017922651, 0.005202181, 0.033288687, 0.010753591, -0.014153623, 0.0048891935, 0.029730516, 0.01975445, -0.030099511, -0.0120912, -0.008164031, 0.021889355, 0.0026323893, 0.0024742482, -0.0029700864, -0.0041709696, -0.022772308, 0.015221074, -0.016486203, -0.0095543545, 0.026145985, -0.018779248, -0.0273584, 0.028676242, 0.0034955759, -0.010865607, -0.013224544, 0.015721854, -0.006052189, 0.01885832, -0.003159526, -0.00043488786, 0.0030623353, -0.016960626, 0.0015212838, -0.011531117, -0.03629337, 0.0026505096, -0.006678164, -0.0038052686, -0.0013491407, -0.03819106, 0.008790006, -0.00049789716, -0.014483083, -0.0173428, -0.0056238906, -0.01775133, 0.01750094, 0.002706518, -0.048127588, -0.0031447003, -0.006905492, -0.0018828667, 0.008328761, 0.21022215, 0.016657522, -0.00019808812, 0.025078533, -0.030653004, -0.0021447877, 0.018186219, 0.019965306, -0.016538916, 0.022469206, -0.028043676, 0.025697919, -0.025803346, -0.0004021477, 0.029150665, 0.0063256416, -0.027727395, -0.019187778, -0.033156905, -0.02101958, 0.013237722, -0.003426389, -0.020756012, -0.010938088, 0.021757571, 0.013942768, -0.0360298, 0.02767468, 0.019253671, 0.0205188, -0.031759992, -0.011300495, -0.006414596, -0.003745966, 0.008519848, -0.010378006, 0.020900974, -0.013534237, -0.010265989, 0.009185359, -4.2392297e-05, 0.017922651, -0.008869076, -0.009995831, 0.0013639664, 0.012242752, -0.0075841807, -0.016130386, -0.010134204, 1.24963335e-05, -0.021797106, 0.008684578, 0.036978647, 0.0040325965, 0.016328063, 0.010391184, 0.020980043, 0.014219515, -0.040405035, -0.007874106, -0.0047574094, 0.005788621, -0.007610537, -0.0010550972, -0.018937388, 0.015471465, -0.019820344, 0.009541176, 0.010990802, -0.011814454, 0.00061073736, -0.005653542, -0.021401754, -0.015972245, -0.012829192, -0.012565623, 0.02809639, 0.02275913, 0.025038997, 0.01800172, 0.0015138709, 0.020624226, -0.013824162, -0.018660642, 0.0035384058, -0.04612447, 0.020466086, 0.002930551, -0.012671051, -0.0042302725, 0.0078345705, 0.0024116507, -0.008697757, -0.027964607, 0.015049756, -0.0047771772, -0.011484993, 0.021441288, -0.024248293, -0.00083847693, -0.0021694973, 0.039324403, 0.023233553, -0.02042655, -0.0054723388, -0.026607228, 0.02244285, 0.010918321, 0.013297025, -0.012644693, -0.01334315, -0.031074714, 0.01083925, 0.0033077833, 0.004286281, 0.025447529, -0.014430369, -0.00625316, 0.010786536, -0.008282636, -0.0043258164, -0.008302405, 0.022956807, -0.0036108869, -0.033420473, -0.006111492, 0.015985424, -0.00558765, -0.007472164, -0.012545856, 0.035713516, 0.0035285219, 0.006039011, -0.009284196, -0.008776828, -0.0021596134, 0.003660306, -0.004029302, -0.007478753, 0.008704347, -0.020479264, 0.02427465, 0.0052153594, -0.0068330104, 0.011069872, -0.024498682, 0.025816524, 0.0086714, -0.023286268, -0.003676779, -0.02543435, 0.011570652, -0.009402802, -0.0071690604, 0.0009027217, -0.02468318, -0.02875531, -0.008579151, -0.014417191, 0.044253133, -0.02944059, 0.0118671665, 0.048391156, -0.00044271254, -0.015023398, -0.008045426, -0.16562638, 0.017382335, 0.004688223, 0.0029651443, 0.021968426, -0.005548115, -0.0040721316, -0.011597009, -0.014114087, -0.006388239, 0.0067275832, -0.009132645, -0.027252972, -0.019886235, 0.001298898, 0.0039568204, -0.001922402, 0.028966166, 0.04359421, 0.018436609, 0.01659163, -0.040457748, 0.014100909, -0.012954387, 0.011524528, 0.01159042, -0.015392394, 0.012275698, -0.021190898, -0.0108787855, 0.010114437, 0.0028514806, 0.02092733, 0.006437658, 0.0335259, -0.015932709, -0.021889355, 0.017619547, 0.012157092, 0.011728793, 0.039139908, -0.014272229, 0.009132645, -0.0038480985, -0.009396213, 0.015326502, 0.023128126, -0.002380352, -0.005637069, -0.012980743, 0.023549836, -0.010555914, -0.008987682, 0.00362736, 0.003502165, 0.022535097, 0.006813243, 0.014852079, 0.0032105925, -0.012960976, 0.0025319038, 0.002859717, -0.002624153, -0.003060688, -0.006938438, -0.03310419, 0.00084506616, -0.008967915, -0.011359798, 0.008045426, 0.021480825, -0.012578801, -0.013277258, -0.010226454, -0.008315583, 0.0008467135, -0.011966005, -0.00817721, 0.0005922052, -0.010898553, -0.00014393305, 0.012914851, -0.022614168, -0.030415792, -0.022798667, 0.01642031, 0.011109408, -0.0034395675, 0.009574122, -0.022561455, 0.0132574905, -0.022798667, 0.008341939, -0.008651633, 0.014338121, 0.0012980744, 0.01518154, 0.008144263, -0.001119342, -0.020110268, -0.012071433, 0.014825722, -0.011228014, 0.021045936, 0.011300495, -0.0032287128, 0.015168361, 0.001527873, 0.009943117, -0.00035725872, -0.035766233, 0.035080954, 0.017659083, 0.00013116645, -0.030626647, 0.012071433, 0.0017313149, -0.014641224, 0.003306136, -0.017026518, 0.054189663, -0.00040235362, -0.026633587, 0.010153973, -0.028887095, -0.0383492, -0.10985531, -0.02210021, 0.010529557, -0.003055746, 0.0019701738, -0.0018202692, -0.01659163, 0.033235975, -0.0004118256, 0.028333602, -0.0062103304, -0.012394303, 0.0045564384, 0.007999301, 0.038929053, 0.008137674, 0.013369507, -0.0025483768, -0.0036701898, 0.022284707, 0.011577242, -0.02893981, -0.008131085, -0.020400194, 0.025908774, -0.044226777, -0.022482384, -0.00047483493, 0.013573772, 0.019556774, 0.009435749, -0.0073008444, -0.0029651443, 0.0013046636, -0.0008911906, 0.0016003543, -0.036477864, 0.011517939, 0.01892421, -0.028254531, 0.01184081, 0.016644344, 0.006552969, -0.024419611, 0.0030195054, -0.008724114, -0.038375556, 0.004968264, 0.006207036, -0.003719609, 0.0009735557, -0.0009710848, -0.009033807, -0.003006327, 0.030837502, 0.011386154, 0.005067102, 0.015392394, -0.026225055, 0.009343499, 0.00383492, -0.005992886, -0.024248293, 0.020492442, -0.007063633, -0.0042928704, -0.0024758957, -0.0060983137, 0.0030738665, 0.006154322, -0.0026999288, 0.025407992, -0.0260142, 0.008546205, -0.0032270656, 0.008572562, -0.030099511, -0.013810984, 0.018225754, 0.0019619372, -0.023628907, -0.03552902, 0.0038810447, 0.0013491407, 0.0048891935, 0.01883196, -0.010634985, 0.0037492604, 0.029308805, 0.0026867504, -0.0029585552, 0.011307084, 0.0020179455, -0.005245011, 0.0049056667, 0.017790867, 0.009106288, -0.014944328, -0.018278468, 0.0111423535, -0.0043851193, 0.02793825, -0.042460866, 0.030152224, -0.0010452134, 0.006865957, 0.03060029, 0.01076018, 0.015998602, -0.019372277, -0.022732774, 0.026949868, -0.039719757, 0.004467484, -0.015194718, -0.010410951, -0.026383197, -0.034422033, 0.017105589, -0.01851568, 0.03002044, 0.009152412, -0.0028728954, -0.014483083, -0.010107848, 0.0112082455, 0.008308994, 0.008948147, -0.026198698, 0.01526061, -0.004454306, -0.044912055, 0.012743532, -0.019135065, 0.008315583, 0.02676537, -0.014469905, -0.021652143, -0.013995482, 0.024156043, -0.018634286, 0.038929053, -0.02793825, -0.018660642, -0.013435399, -0.022469206, -0.019767629, -0.018845141, 0.018449787, 0.00766984, 0.016815664, -0.023536658, 0.0041742646, 0.027305685, -0.04093217, -0.0007849396, -0.0007977062, -0.0023276384, -0.006773708, 0.016697058, -0.004187443, -0.016631166, 0.022864558, -0.0071888277, -0.021494003, -0.013026868, 0.008684578, -0.017975364, -0.021388575, -0.015735034, -0.0006885724, -0.038059276, -0.021414932, 0.0009315495, 0.017988542, -0.0130071, 0.009231483, 0.0050835754, -0.0028383022, 0.002439655, -0.013145474, 0.006121376, 0.007564413, -0.04319886, -0.017316444, -0.014035017, -0.00044312436, 0.015128826, 0.00145951, 0.012124146, 0.0135869505, 0.028570814, -0.006997741, -0.0026274475, 0.011023748, 0.0030425675, 0.011834221, 0.006328936, 0.000469893, -0.009099699, 0.0011012217, 0.018976925, 0.0073403795, -0.00032122398, -0.01576139, -0.028966166, -0.019121887, 0.021665322, -0.012295466, -0.031390995, 0.012328411, 0.0023358748, -7.119435e-05, 0.0021991488, 0.0066287452, 0.02875531, -0.021190898, 0.017777689, 0.0064244797, -0.013547416, -0.0120912, 0.059671883, 0.025157603, 0.0041709696, 0.026514981, -0.022732774, 0.02266688, 0.014720295, 0.026712656, -0.019583132, 0.010443898, -0.017474584, -0.010654752, 0.00093319686, -0.0011597009, -0.011702437, -0.020703297, -0.007603948, 0.00019376395, 0.034132108, 0.0036174762, 0.051343124, 0.0061081974, -0.0070768115, -0.0006959853, -0.015800925, 0.00031236972, 0.012895084, -0.0008780122, -0.015985424, -0.022376956, 0.023905654, 0.0013046636, 0.011610188, -0.026370017, -0.03634608, 0.007959765, 0.017988542, 0.014219515, -0.013040046, -0.0064310688, 0.02785918, 0.00941598, 0.022904092, 0.01750094, -0.012157092, -0.013362917, 0.023167662, -0.0004484781, -0.010180329, -0.031311926, 0.015405573, -0.0044378326, -0.043014362, -0.018871497, 0.016051315, -0.012703996, -0.009251251, 0.01926685, 0.027200257, -0.0129939215, 0.0023885886, 0.022798667, -0.012058254, -0.004829891, 0.010450487, -0.013250901, -0.015708676, -0.023971545, -0.0032221235]" 29492183,Writing a register based VM in less than 125 lines of C code,https://www.andreinc.net/2021/12/01/writing-a-simple-vm-in-less-than-125-lines-of-c,291,1639007717,41,nomemory,"[-0.014199944, -0.014970381, 0.002945592, -0.011158048, -0.018636597, 0.029754795, -0.028984359, -0.030179864, -0.030711198, -0.036741856, 0.0064092358, 0.031215968, -0.029037492, -0.036263656, 0.0047886623, -0.0043469896, 0.017454375, -0.028612424, 0.011536624, 0.009743367, -0.006874155, 0.0024358418, -0.010254778, -0.0036031196, -0.010739622, 0.010746263, 0.004297177, -0.014040544, 0.005818125, -0.015448583, 0.007518399, -0.0068343044, -0.013329882, -0.0077309334, -0.0073922067, 0.011974976, 0.012506312, -0.0033640186, 0.012619221, -0.019778969, 0.03992987, 0.02480009, -0.012167586, -0.0074254153, -0.0036728575, 0.0047554537, 0.0037326328, -0.024667256, -0.014425762, -0.006907363, 0.010387612, 0.022701314, -0.01864988, 0.011483491, -0.0054594735, 0.015727535, -0.013170482, -0.009112406, -0.00054586434, -0.02116044, -0.008288836, 0.019539867, 0.0001831655, 0.020456422, 0.0056354785, 0.00053341116, -0.01390771, 0.012619221, -0.008169285, -0.014239795, 0.00062431936, 0.0192742, -0.00071522756, 0.028957792, 0.047581106, -0.015382166, -0.0312691, 0.0055292114, -0.0013275088, 0.0035001733, -0.015727535, -0.009650383, -0.020589255, 0.015355599, 0.011390507, -0.021505808, 0.022435647, 0.0012353553, -0.012951306, -0.025105609, 0.009982468, 0.017680192, 0.029462561, 0.024866506, -0.016830055, 0.0023129703, 0.0064590485, 0.018875698, -0.002057265, -0.00771765, -0.0147312805, 0.009099122, -0.036635593, -0.014067111, -0.012207436, -0.01014851, 0.012971231, 0.004908213, 0.03748573, -0.0052635437, -0.00697378, 0.0008285515, -0.0010875775, -0.034483682, 0.030020462, 0.0033739812, 0.025278293, -0.025079042, -0.010540371, -0.0061302846, 0.028612424, 0.024388306, 0.028904658, 0.00043461594, 0.021359691, -0.00810951, -0.02847959, -0.0022166658, -0.025809627, -0.03549322, 0.009849634, 0.0042573265, -0.0052768267, 0.013841293, -0.011583117, 0.018556897, -0.011290882, 0.020708805, -0.029701661, -0.009158898, 0.021811327, 0.015355599, -0.014253078, 0.001116635, -0.0050078384, 0.0193539, 0.014253078, 0.007764142, -0.009059273, 0.00083394785, -0.0109920055, -0.014439045, 0.011403791, -0.009125689, 0.015448583, 0.012014827, 0.013575626, 0.026845733, 0.003075105, -0.009537474, 0.009444491, 0.020536121, -0.005383094, -0.003596478, -0.008355252, 0.023604585, 0.02930316, -0.0014022279, 0.008023168, -0.001786616, 0.020429855, 0.030153297, -0.05124732, 0.0309503, -0.016670655, 0.017520793, -0.004124493, 0.001155655, -0.020695522, -0.00033997177, 0.022980265, -0.003769162, 0.019446883, 0.024109354, -0.032650575, 0.0026550177, 0.019247632, 0.00619006, -0.0064158775, -0.009072556, 0.012825114, 0.008833455, -0.0065553533, -0.0053565274, -0.63377714, -0.0023411976, -0.012207436, -0.021731626, -0.005725141, 0.0028044558, 0.008806888, -0.0075715324, -0.0036761784, 0.035360385, -0.0073922067, 0.019008532, 0.024946207, -0.029861063, -0.008388462, -0.01645812, 0.008972931, -0.01465158, -0.0034271148, -0.00016977833, -0.009351507, 0.015621267, -0.02315295, -0.0023079892, 0.004117851, 0.026938716, 0.015182915, 0.009829709, 0.01198826, 0.037591994, 0.0038056914, -0.0028343434, 0.002319612, -0.0015699307, 0.040726874, 0.0024856545, -0.012194153, 0.011935126, -0.008833455, 0.02041657, -0.027602885, -0.0153954495, 0.030525232, 0.041151945, 0.00442669, 0.0033059039, 0.018424062, 0.0017932578, -0.00058779004, -0.029967329, 0.0061834184, 0.018118545, 0.014478896, -0.0070335553, 0.024587557, -0.021479243, 0.011503416, 0.010859172, 0.015156348, -0.0007579835, -0.00022706296, 0.0035367028, -0.01758721, -0.021824611, -0.012512954, 0.0026749428, -0.0009273467, 0.014797697, -0.008288836, -0.015382166, 0.009610533, 0.0134560745, -0.021731626, -0.0062930062, 0.0047986247, 0.031880137, 0.008727187, -0.0097168, -0.003189674, 0.009271807, -0.013369733, -0.008215777, -0.013854576, -0.036130823, 0.033128776, 0.0028858166, -0.017759893, -0.0016006485, 0.015568133, 0.0311894, -0.0073324316, 0.021001041, -0.017441092, -0.04415399, -0.023405334, 0.027177816, 0.0031099739, 0.0059609213, -0.021598794, -0.006276402, -0.0015931766, -0.002014094, 0.005080897, 0.016896473, 0.01625887, -0.004273931, -0.0021618719, 0.008189211, 0.040248673, -0.045774564, -0.015674401, -0.03971734, 0.021691777, 0.023418618, 0.0024889754, -0.0380702, 0.034271147, 0.0029522337, 0.004791983, -0.028081087, 0.02216998, -0.0006554523, 0.00017683514, 0.014146811, -0.0027396993, -0.010035601, -0.0025404484, -0.02491964, -0.024255471, -0.0028027955, -6.8388705e-05, 0.028665558, 0.0192742, -0.017454375, 0.010912306, -0.020934623, 0.008175927, 0.00038106728, -0.008116151, 0.00084100466, -0.017427808, -0.007518399, 0.016497971, -0.018171677, -0.00634614, -0.025251726, -0.011815576, -0.012725488, 0.017374676, 0.015036798, -0.016551105, -0.0023411976, -0.008972931, 0.023099815, -0.018782714, -0.0023378767, 0.0011606362, -0.016989456, -0.023710852, 0.0024673897, -0.009703517, 0.012160944, -0.015900219, 0.022648182, 0.00031755606, -0.013017722, -0.009723442, 0.016046336, -0.011609684, -0.023923386, 0.0065221447, 0.026566781, -0.0048882877, 0.0048849666, -0.0037857662, 0.017095724, -0.013336524, 0.0309503, 0.000120380726, -0.015807236, -0.001829787, 0.0059908093, 0.011350657, -0.0040016216, 0.009490983, 0.013788159, 0.012273853, -0.0011274278, 0.015687684, 0.00024283698, 0.030498665, 0.011403791, -0.009909409, 0.0044765025, 0.006498899, 0.0311097, 0.019725835, -0.0021369655, 0.0073125064, 0.026633197, 0.007266015, -0.0015267597, 0.001378982, -0.005715179, -0.0023677645, -0.04181611, 0.008395103, -0.008899871, 0.014000693, 0.005273506, -0.0030335942, -0.018782714, 0.009590608, -0.0037160285, 0.010639996, 0.037007526, 0.0019476771, 0.024507856, -0.020429855, -0.004430011, 0.01754736, -0.0149039645, 0.009397998, 0.0030618215, 0.0013565662, 0.03334131, -0.0063561024, 0.004247364, -0.03381951, -0.04210835, -0.007950109, 0.0009613854, -0.0008169285, 0.005293431, 0.03995644, 0.0001580516, 0.02331235, -0.015156348, 0.01716214, 0.0022731202, -0.021386258, 0.039983004, 0.0003262733, -0.031747304, 0.020615822, 0.0046060155, 0.019513302, 0.023405334, -0.007564891, -0.00043503105, -0.017839594, -0.0040514343, -0.010434103, 0.0028277019, -0.015820518, 0.00556242, 0.0026350927, 0.0020008108, 0.032783408, 0.021944162, -0.004665791, 0.0038090122, 0.003388925, -0.016976174, 0.0032776766, -0.011722592, -0.0033175268, -0.016285436, 0.0073589985, -0.007212881, -0.01089238, 0.002288064, -0.022860715, -0.013509208, 0.016112752, 0.009212031, -0.0076113828, 0.014226511, 0.03320848, 0.014797697, -0.04356952, -0.026035445, 0.010779471, 0.02068224, -0.0042872145, 0.003158126, -0.022927132, -0.025955746, 0.012971231, -0.007863767, -0.020230604, -0.011802292, 0.011702667, -0.004821871, -0.007744217, 0.007212881, 0.042958487, 0.0022648182, -0.0066118077, 0.0097168, -0.0028609103, 0.0036994242, -0.023365485, -0.018437346, 0.035546355, 0.0066118077, -0.010234852, 0.0067645665, 0.015607984, 0.014372628, -0.013323241, 0.0068608713, 0.01010866, -0.031986404, 0.03905317, -0.0004806927, -0.015116499, 0.021771478, 0.02789512, 0.01884913, 0.0007994941, -0.023206083, 0.0027961538, 0.011377224, 0.05610904, -0.0040414715, -0.020071203, 0.013575626, -0.035944853, -0.022834148, 0.008076302, -0.022674747, 0.03695439, 0.0093714325, 0.018795997, -0.006498899, 0.007691083, -0.009856276, 0.026473798, 0.017294975, 0.0024557668, -0.0030020464, -0.0021286632, -0.020469705, 0.027523186, 0.014239795, -0.0035665904, 0.0059841676, -0.0059177503, -0.011151406, 0.026766032, 0.0064590485, 0.010161794, -0.024534423, -0.0024441439, 0.0028542685, 0.004134455, 0.005336602, -0.007578174, 0.03708723, -0.0072261645, 0.03482905, -0.005535853, -0.015196199, 0.0002405539, 0.001237846, -0.0017251803, 0.007970034, 0.00096470624, -0.0045661656, -0.012546162, 0.032756843, 0.024348455, -0.03310221, 0.036423057, 0.0014362666, -0.01571425, -0.022502063, -0.02162536, 0.0016346873, -0.010394253, 0.008753754, -0.0026118467, -0.026912149, -0.024308605, -0.015382166, -0.010593504, -0.0033905855, -0.01915465, -0.012313703, -0.0021552301, 0.019685986, -0.0142663615, 0.0036662158, 0.003083407, -0.03796393, -0.059456456, 0.013588908, -0.002640074, 0.00028704575, 0.026699616, -0.0050277635, -0.0010037262, 0.0019493375, -0.015727535, -0.037831098, -0.004532957, -0.02460084, 0.005648762, -0.003314206, 0.011928485, 0.005575703, -0.039903305, 0.023378767, -0.011622967, 0.008846738, 0.02162536, -0.0050078384, 0.026646482, 0.02871869, 0.017215274, 0.013482641, 0.004078001, -0.026354248, 0.008674054, -0.022316096, 0.0029555543, -0.030711198, -0.011510058, -0.014518746, -0.007671158, 0.01708244, 0.0037425952, -0.014067111, 0.01273213, -0.026912149, 0.028426455, 0.006847588, 0.012971231, 0.006123643, 0.009643742, 0.004383519, 0.0038687875, -0.018543614, 0.021067457, -0.027058266, 0.021944162, 0.0029572148, -0.033899214, 0.022116845, -0.00015836292, 0.00063801784, -0.015568133, 0.023006832, -0.013210332, 0.036688726, -0.020668956, -0.009577325, 0.003533382, -0.027549751, 0.015807236, 0.025450977, 0.0019875274, -0.009823067, 0.0025719965, 0.011476849, 0.0076645166, -0.0020223963, -0.0050443676, -0.033049077, 0.003337452, 0.015607984, -0.012174227, 0.02224968, 0.015820518, 0.01234027, 0.00094644155, -0.020496272, 0.0024906357, -0.018065412, -0.014452329, -0.009962543, 0.028453022, 0.0052070892, 0.029010925, -0.0021386258, -0.008654129, -0.001237846, -0.004865042, 0.0050277635, -0.0037957288, 0.006193381, -0.036502756, -0.011051781, 0.019579718, 0.014824264, -0.0067446413, -0.0058878628, -0.0052170516, 0.0232725, -0.010626713, 0.01453203, -0.021054175, -0.01841078, -0.006595203, 0.002679924, 0.0067446413, 0.016285436, -0.015010231, -0.011038497, 0.008654129, -0.0049314587, 0.04067374, 0.0049746297, -0.0011415414, -0.006379348, 0.008262269, 0.0019294125, 0.03193327, -0.018264662, 0.01273213, -0.044525925, 0.039557938, 0.01230042, -0.0031448428, 0.012599296, 0.014346062, 0.0055391737, -0.015408733, 0.023392051, -0.003985017, -0.016630804, -0.002048963, -0.021333124, -0.0384687, -0.03219894, -0.0064424444, -0.0010485577, -0.018477196, 0.0055690613, 0.01398741, 0.0062697604, -0.010912306, -0.006322894, 0.016351854, 0.0009140633, 0.016046336, 0.013256824, 0.0077707833, 0.014505463, 0.020522838, -0.030392397, -0.0010385951, 0.03440398, 0.014890681, 0.017945861, 0.028027954, -0.011622967, -0.037512295, 0.017308258, -0.01985867, -0.0012021469, -0.03708723, -0.015501717, 0.017627059, -0.012778622, -0.015860368, -0.008468161, -0.025530677, 0.014279645, -0.022953698, 0.009597249, -0.012878248, -0.013004439, -0.013841293, 0.019566434, 0.011443641, -0.0011581456, 0.011098273, 0.007863767, 0.006405915, -0.019712552, -0.011735875, 0.027948253, -0.003149824, 0.02468054, -0.008222419, -0.0037957288, 0.017122291, 0.019606285, 0.009909409, -0.015740817, -0.018756147, 0.026500365, -0.0005246939, 0.0011664478, 0.02104089, -0.0009622156, -0.007883692, -0.0028824958, -0.008594354, 0.009723442, 0.014000693, 0.0011257674, 0.022754448, -0.007883692, -0.011045139, -0.036635593, -0.011968335, -0.0028393248, -0.032464605, 0.0028376642, 0.016192453, -0.044021156, -0.02417577, -0.01617917, -0.0045030694, 0.007020272, -0.00061601726, -0.004290535, -0.0026699614, 0.037246626, -0.02930316, 0.018835848, 0.019088233, 0.009132331, 0.0039186003, 0.024494572, -0.013011081, -0.026566781, 0.029170325, -0.008049735, -0.020695522, -0.04760767, -0.010022318, 0.0002644225, -0.032411475, -0.021067457, 0.0155947, 0.018503763, -4.9553273e-05, -0.0074785487, -0.017361391, 0.017813027, -0.017454375, -0.012884889, 0.010965439, 0.0026616594, 0.01136394, -0.015050082, 0.0028526082, 0.013721743, -0.029435994, -0.03793736, 0.014399195, -0.004821871, 0.007345715, -0.005761671, 0.0018165037, 0.009451132, -0.011131481, 0.002386029, 0.01281183, -0.008361895, 0.0037425952, 0.011589758, 0.007352357, 0.016431553, -0.010825964, 0.00067869824, 0.009723442, -0.01312399, -0.050556585, -0.022090279, -0.04986585, 0.028692124, 0.004420048, 0.014717997, -0.01704259, 0.013894427, -0.03615739, -0.0013524152, 0.02216998, 0.015541567, 0.028692124, 0.0043469896, 0.021240141, 0.020031353, -0.0070468388, 0.019380467, -0.031322233, 0.009092481, 0.028665558, 0.008600995, -0.010626713, 0.013960844, 0.0070003467, -0.012612579, 0.015382166, -0.0018613351, 0.0022033823, 0.013462717, -0.009816426, -0.024521139, -0.0048584, -0.0132236155, -0.0123269865, 0.013057573, 0.002887477, -0.047767073, -0.014120244, 0.028453022, -0.019194499, 0.014319495, -0.024906358, -0.01716214, 0.01163625, 0.0012918097, -0.007837201, -0.0064092358, 0.020668956, -0.018145112, 0.024454722, -0.0120347515, 0.000893308, 0.0120081855, -0.009856276, -0.008408386, -0.0065985243, 0.009942618, -0.028293623, -0.009318299, -0.0044798236, 0.0033822833, -0.016989456, -0.0042407224, 0.0055690613, 0.0034337565, -0.011735875, -0.015621267, 0.00517056, 0.0019725836, 0.006276402, 0.0033706604, -0.002080511, 0.022329379, -0.00517056, 0.01034112, -0.0031664283, -0.023870252, -0.011324091, 0.0042606476, 0.0039617713, 0.022223113, -0.011974976, -0.004054755, -0.00012899417, -0.0018165037, 0.010885739, -0.012838397, 0.2100901, 0.007803992, 0.0022216472, 0.029409427, -0.007020272, -0.0025371276, 0.024707107, 0.004928138, -0.004821871, 0.011994902, -0.017972426, 0.010473954, -0.015422016, -0.001531741, 0.0052203727, 0.010633354, -0.022794299, -0.038256165, -0.020376721, 0.010779471, 0.0045462404, -0.010799397, -0.008527936, -0.017348109, 0.02847959, -0.00055997795, -0.01939375, 0.02429532, 0.030551799, 0.0042141555, -0.03267714, -0.006256477, 0.008687338, -0.026792599, 0.005429586, 0.008600995, 0.04877661, -0.014930531, -0.00395845, 0.012678997, -0.001194675, -0.0021502487, -0.029276593, -0.018118545, 0.010865813, 0.031242535, -0.0029920838, -0.01625887, -0.0230334, -0.0046093366, -0.03177387, -0.020190753, 0.017188707, 0.01645812, 0.006236552, -0.01186871, 0.016165886, 0.03004703, 0.0036263657, 0.014160095, 0.015275899, 0.008720546, -0.020429855, 0.033766378, -0.00025238443, 0.010161794, -0.022714598, 0.017640343, -0.00027500768, -0.01849048, 0.0003318772, 0.0024906357, -0.0051373513, -0.013582267, -0.017241841, -0.02612843, 0.021930877, 0.032570872, 0.022873998, 0.028187355, -0.035254117, -0.023219367, -0.007432057, -0.010334478, -0.0031564657, -0.037751395, 0.02847959, -0.021107307, -0.0025122212, -0.015515001, 0.011025215, -0.0038455415, 0.004263968, -0.01112484, 0.024016371, 0.0008841757, -0.015541567, 0.01014851, 0.00842167, -0.01312399, -0.044180557, 0.042692818, 0.024189055, -0.024906358, 0.012685638, 0.009816426, -0.0031448428, -0.0019476771, -0.004473182, -0.030737765, -0.024401588, -0.004161022, 0.01547515, -0.0010211606, 0.013655325, 0.032783408, 0.001829787, -0.026513647, 0.012758696, -0.016006486, -0.009019422, 0.010693129, -0.006123643, -0.013482641, -6.44452e-05, -0.025238441, -0.04109881, 0.0050709345, -0.029967329, -0.009006139, 0.032624006, -0.010965439, 0.011164689, 0.017255124, -0.008833455, -0.023883536, 0.013190406, -0.01597992, -0.015302466, 0.0053930567, -0.0068542296, 0.0011490133, 0.003855504, 2.2324917e-05, 0.018012278, -0.022913849, 0.017773177, 0.029117191, 0.0016537821, -0.026859015, -0.038574968, -0.0192742, 0.006402594, 0.0044532567, 0.008036451, -0.002766266, -0.019752402, -0.029807929, -0.0042606476, -0.010062168, -0.031747304, 0.025610376, 0.022913849, 0.0067413207, -0.02789512, -0.0067678876, -0.16779579, -0.0072726565, -0.01629872, -0.01708244, 0.04763424, 0.013070856, 0.01245982, 0.016192453, -0.008189211, -0.00016531594, 0.015036798, 0.01155655, -0.023458468, -0.0234319, -0.0033324705, 0.005950959, -0.020429855, 0.00072560523, 0.05876572, 0.005515928, 0.040408075, -0.01672379, -0.013449433, -0.0077907084, 0.001476947, 0.010885739, -0.0074719074, -0.000932328, -0.006405915, -0.033314742, 0.006472332, 0.0005147314, 0.0079169, 0.00063096103, 0.028931225, 0.0038090122, 0.0013955862, 0.0034138313, 0.0051107844, -0.0018945435, 0.029489128, 0.014439045, -0.009530833, -0.012639146, 0.006927288, 0.013668609, 0.021505808, -0.049706448, 0.0046591493, -0.013236899, 0.032066103, -0.013920994, 0.01234027, -0.006143568, 0.015050082, -0.0043204227, 0.0032145805, 0.01374831, -0.015700968, -0.003533382, 0.0044964277, -0.027868554, -0.0062465146, 0.021638643, 0.017334824, -0.022581764, -0.0048484374, -0.0047853417, -0.026726183, 0.004383519, -0.015448583, -0.029807929, -0.005881221, 0.00403483, 0.019061666, 0.0012345251, -0.028984359, 0.00048027758, 0.009902768, 0.014120244, 0.0050277635, -0.00011622967, 0.011835501, 0.0023926708, -0.014744564, -0.017414525, -0.014611729, -0.0010253118, -0.0125860125, -0.014213228, -0.0033092247, -0.018251378, -0.014704714, -0.0042440435, 0.003985017, 0.009504266, 0.011231107, -0.016192453, 0.0020954548, -0.036263656, -0.007319148, 0.004689037, -0.02491964, -0.007239448, 0.03366011, -0.007983318, -0.04109881, 0.023219367, 0.037618563, -0.009856276, -0.033606976, 0.006628412, 0.026314396, 0.030923733, 0.004728887, 0.0014470593, 0.001320037, -0.037034094, -0.016192453, 0.0011589759, 0.029914195, 0.003028613, -0.023551451, 0.024242187, 0.0075980993, -0.017175425, -0.10143197, -0.05637471, -0.016630804, 0.026420664, -0.0153954495, 0.030764332, -0.028824957, 0.024587557, -0.00901278, 0.028267056, -0.01931405, -0.023166234, 0.00998911, 0.008076302, -0.026580064, 0.0034171522, -0.016697222, -0.0124996705, -0.01778646, 0.026141712, 0.031375367, -0.0001840995, -0.0022432327, -0.025012624, 0.008567787, 0.0022382513, -0.009457774, 0.011603042, 0.018424062, -0.00042444584, -0.010208285, -0.010792755, -0.01453203, -0.019752402, 0.008328686, 0.012220719, 0.007432057, -0.0021685136, 0.054833837, 0.0021535696, -0.0113705825, -0.0049214964, 0.0012436574, 0.00041386063, -0.0023461787, -0.0025802986, -0.056906044, 0.020429855, -0.0009779896, -0.025225159, -0.019871952, 0.006326215, -0.052283425, 0.006083793, 0.012752055, -0.0040481132, 0.0112842405, 0.0193539, -0.017852876, -0.013582267, -0.0006014885, 0.0007812294, 0.005489361, 0.02190431, 0.0028426456, -0.018277945, -0.00037359537, -0.0061302846, 0.014784413, -0.008441594, -0.0012685638, 0.022900565, -0.0096371, 0.009982468, 0.0063494607, 0.023578018, -0.023724135, -0.01754736, 0.000948102, 0.011941768, -0.01740124, -0.01728169, -0.00047156037, -0.02190431, 0.005559099, 0.013960844, 0.0016637447, -0.018955398, 0.013854576, -0.042028647, 0.005755029, 0.040301807, 0.018091979, -0.017122291, -0.0067678876, -0.01684334, 0.0024574273, 0.0042141555, -0.0021336447, 0.015382166, -0.02154566, 0.0011963354, -0.06732022, -0.005011159, -0.021200292, -0.03679499, 0.0060671885, -0.012831755, 0.0054793986, -0.023803836, -0.005376452, 0.009417924, -0.055046372, 0.010002393, 0.003161447, 0.012678997, -0.0234319, -0.018663164, 0.008594354, 0.003490211, 0.01597992, -0.0002887062, 0.0075715324, 0.009391357, 0.008395103, 0.04258655, -0.025238441, -0.010679846, -0.0069671385, 0.015262616, -0.012579371, -0.0042838934, -0.018277945, -0.0033258288, 0.012121093, 0.010752904, 0.0015334014, 0.03344758, -0.0073324316, 0.026726183, 0.022847433, 0.049653314, -0.027921688, -0.029276593, -0.011304165, -0.015368883, -0.00842167, -0.031242535, 0.0006566976, 0.011051781, 0.0017401242, 0.0013258484, 0.02068224, 0.026115146, -0.020031353, -0.048298407, -0.015209482, 0.0037857662, -0.013655325, -0.011549908, -0.026513647, -0.019579718, 0.058074985, 0.013588908, 0.014452329, -0.004489786, 0.016165886, -0.008986213, -0.0052867895, 0.035466652, 0.0123269865, -0.04359609, -0.0048318333, -0.009378074, 0.019221066, -0.01645812, -0.013788159, -0.012911456, 0.014439045, 0.03392578, -0.009378074, 5.609119e-05, 0.02116044, 0.009497624, -0.015528284, 0.010048885, 0.03028613, 0.0032145805, 0.008388462, 0.009524191, -0.0035466652, -0.005369811, -0.013090781, 0.018184962, -0.004124493, -0.00050808967, 0.0028160787, 0.0007903617, 0.0021137195, 0.021837894, 0.04234745, -0.022156695, 0.0132236155, 0.006107039, -0.0014952116, -0.035785455, -0.005124068, 0.013376375, -0.04545576, -0.008514653, 0.0014246437, 0.007711008, -0.00031755606, -0.010945514, -0.010586862, 0.012546162, -0.003420473, 0.018357646, 0.012871605, -0.01770676, -0.018676447, 0.04967988, 0.0001937507, 0.009198748, 0.039159436, 0.00474217, -0.0044532567, 0.022980265, 0.019832103, -0.032730274, -0.0040514343, 0.009444491, 0.01633857, -0.0030070276, -0.022116845, -0.013681892, -0.0043735565, -0.008946364, 0.00854122, 0.0023096495, 0.0048584, 0.08326029, 0.03227864, 0.0045030694, 0.025092324, 0.008428311, 0.016165886, 0.013735026, 0.010746263, 0.011297524, -0.014996948, 0.014133528, -0.014505463, -0.02660663, -0.0010485577, -0.011955052, 0.021638643, -0.034961883, 0.007060122, -0.017374676, 0.015900219, 0.025995595, -0.008806888, 0.0090526305, 0.021957444, -0.017294975, 0.008029809, 0.032889675, 0.009464416, -0.021612076, -0.030232998, 0.018716298, -0.012486387, -0.043968022, -0.017109007, -0.0038256166, -0.019778969, 0.011038497, 0.0006454898, 0.03161447, 0.0023677645, 0.035121284, 0.018078694, -0.012918097, -0.03358041, 0.00029368745, 0.0057483874, 0.0059144297, -0.008574429, -0.0047886623]" 29720207,Oven Stoves and Heat Walls (2008),https://www.lowtechmagazine.com/2008/12/tile-stoves.html,128,1640738227,104,Rendello,"[0.0249817, -0.0033363719, -0.011392971, -0.029872853, -0.011320654, -0.012714371, -0.011261487, -0.013167986, -0.029609889, -0.009105172, -0.0071921, 0.018736275, -0.02475818, -0.0007630102, -0.019025536, 0.04020739, 0.025691707, 0.039707754, 0.022299455, -0.0069094123, -0.060429417, 0.011800567, -0.005305324, 0.017894786, -0.013003632, 0.029531, 0.027348388, -0.023114648, 0.0024784477, 0.0004236206, 0.0033593813, 0.022983164, -0.037419956, -0.027900614, -0.033186216, -0.018315531, -0.0108933365, -0.02414021, -0.007790346, -0.0058312546, 0.014449941, 0.016790332, -0.00560116, -0.013003632, -0.014252718, 0.0257443, -0.0010584352, -0.0030290312, -0.012293627, 0.0117939925, 0.033212513, 0.030004337, -0.008197942, -0.0020987915, -0.016553663, -0.0108604655, -0.0014200124, 0.0082505355, 0.008027014, -0.027216906, -0.014896982, 0.024942255, -0.02763765, 0.014975872, -0.009585084, 0.0062191286, -0.0015260204, -0.0059134313, -0.035395123, 0.0058049583, 0.03263399, 0.035158455, 0.00072685245, 0.019038685, 0.005249444, -0.006682605, 0.00408911, 0.010584352, 0.0010436435, -0.0060120435, 0.013312616, -0.04625559, 0.015593841, 0.024258547, -0.0051048133, 0.012812982, -0.020458698, 0.00554528, 0.001590118, 0.017737007, -0.010459444, 0.023785207, 0.005495974, 0.010814447, -0.020826848, 0.019367391, 0.0051508322, -0.0021924728, -0.0021579587, -0.005548567, 0.005229722, -0.006406491, -0.011005096, -0.025021145, -0.05101526, 0.0193148, 0.0080335885, -0.021418521, 0.006830523, -0.015685879, 0.006501816, 0.029373221, 0.009203784, -0.02135278, 0.010959078, -0.022102231, 0.015646433, -0.030425081, 0.004841848, -0.020235177, 0.010748705, 0.03223954, -0.004759671, -0.01611977, 0.021247594, -0.01295104, -0.016698295, 0.015922546, -0.007086914, -0.0005801671, -0.0048188386, -0.017868489, 0.011840011, -0.012037235, -0.01651422, 0.021602597, -0.0054105106, -0.016750887, -0.03468512, -0.02611245, 0.024416326, -0.01128121, -0.0249817, -0.0035829018, -0.014660314, 0.032581396, 0.010689538, 0.03081953, -0.0013879635, 0.0030306748, -0.006337463, -0.012720944, 0.0061270907, -0.01696126, 0.025612816, 0.00087682484, 0.003645356, 0.007198674, -0.01688237, -0.02036666, 0.02475818, -0.02453466, -0.0032755611, 0.00033938955, -0.008953967, 0.022904275, 0.009716567, 0.023942988, 0.02248353, -0.0050226366, 0.010755279, 0.013148263, -0.021891858, 0.03436956, -0.0021497412, 0.006245425, -0.0052724537, 0.043704826, -0.017329412, 0.009493046, -0.002642801, -0.0070014503, 0.009696844, 0.021563152, -0.020498142, -0.024731884, 0.016487923, 0.039024044, 0.0063210274, -0.012740667, 0.0070934882, 0.010906484, 0.0063966303, 0.005502548, -0.6374278, -0.01529143, -0.032607693, -0.025244666, 0.0035040122, 0.015777916, 0.0325551, 0.022102231, -0.030162117, -0.025349852, -0.012273904, -0.0045460123, 0.013674194, 0.0006450867, -0.022378344, -0.03489549, -0.020195732, -0.0049174502, 0.02065592, 0.009558788, -0.00516398, 0.014134383, -0.042915933, -0.0002666632, 0.0013485188, -3.8700065e-05, 0.0122607555, -0.023732616, 0.017421449, 0.019709246, -0.0140949385, 0.021707783, -0.017921083, -0.003180236, 0.048780058, -0.0025540502, -0.023785207, 0.061007943, 0.018499607, 0.0249817, -0.0034612804, -0.012832705, 0.02703283, -0.015633285, 0.013003632, 0.0077771978, 0.041232955, -0.015580692, 0.015620137, -0.039392196, 0.018604793, -0.018341828, 0.0062224157, 0.017013853, 0.018210344, 0.0027923624, 0.0249817, -0.017934231, 0.0031753057, 0.011951772, 0.018644238, 0.01583051, -0.0012162144, -0.011932049, -0.05209342, 0.006501816, -0.04896413, 0.0028022237, 0.0028367378, 0.009013134, 0.000738768, 0.028110987, 0.007422195, -0.023640577, 0.008999987, 0.0039083213, 0.03371215, -0.0074747875, 0.022904275, -0.00957851, 0.00518699, 0.000925309, -0.0096508255, -0.01385827, 0.031845093, -0.025678558, -0.005936441, -0.0011323942, 0.004135129, 0.005456529, 0.0008899731, 0.015777916, -0.011991216, -0.028400248, -0.0076785856, 0.042600375, 0.00439152, 0.0148706855, 0.0034875767, -0.016737739, -0.016566811, -0.0069094123, 0.019853877, 0.0064590843, -0.002726621, 0.032581396, -0.017671267, -0.0072578415, 0.02059018, -0.027111718, 0.016448477, -0.016251253, -2.6142445e-05, -0.0022532835, -0.004592031, -0.011458712, 0.03626291, 0.01611977, -0.017027002, -0.016487923, 0.021300187, -0.029583592, 0.0010124163, -0.020918887, 0.0032344728, 0.017145336, 0.0026510186, -0.032002874, -0.015961992, 0.005413797, 0.025021145, -0.017237373, 0.012306774, -0.006653021, -0.01748719, 0.025980968, -0.0013748152, -0.027138015, 0.022825385, -0.015120503, -0.02044555, 0.022641309, -0.00957851, -0.00044457565, 0.004986479, -0.017881637, -0.0060153306, 0.0011866308, -0.028926179, -0.02020888, -0.021444818, -0.019196464, -0.0122607555, -0.009946661, 0.027164312, 0.018262938, 0.01385827, -0.03392252, -0.020340363, -0.015712176, 0.0041877218, 0.018894054, 0.010525185, -0.0002754972, -0.018815165, 0.005864125, -0.015817361, 0.0025458324, -0.007034321, -0.03497438, 0.008625261, 0.009854623, 0.027269498, 0.011629639, 0.0043192045, 0.015265134, -0.03473771, -0.017539782, 0.005992321, 0.0024570818, 0.023627428, -0.011386396, -0.015475506, -0.011037967, 0.027979504, 0.007869235, 0.015501803, 0.004440826, 0.0061698225, 0.0181709, 0.0040233685, -0.008618686, 0.017631821, -0.0121358475, -0.010847317, -0.02270705, 0.020524438, 0.02771654, 0.014778648, 0.005140971, 0.020169435, -0.015238837, 0.038261447, -0.018723127, 0.027374685, -0.0122278845, 0.035526607, 0.00043224916, 0.03074064, -0.005837829, 0.013049651, -0.03302844, -0.017592376, -0.02226001, -0.0024768042, 0.044625204, 0.0005567468, 0.016711442, 0.021550003, -0.01506791, 0.002291085, -0.0030914855, 0.013187708, 0.005588012, -0.03271288, 0.015028465, -0.015436061, -0.026861902, 0.014660314, -0.024521511, -0.0014791796, 0.024994848, -0.029925447, 0.026677826, 0.043783717, 0.04988451, 0.014581424, -0.013450674, 0.014883834, -0.003318293, -0.00010005006, 0.018736275, 0.025612816, -0.014923279, 0.01952517, 0.020800553, 0.023561688, -0.025533928, -0.022154823, 0.010617223, 0.011419266, 0.011419266, -0.008756744, 0.01672459, 0.035447717, -0.015436061, 0.011353525, -0.012168718, 0.02528411, 0.022075934, 0.011932049, -0.004789255, 0.010998522, -0.024468917, 0.010728983, -0.0026312962, 0.0019574477, -0.01635644, 0.012017513, -0.013766232, -0.036210317, -0.020195732, 0.00055797945, -0.023417057, 0.004789255, -0.0016788689, -0.01823664, 0.03920812, 0.02377206, 0.03339659, 0.00059660245, -0.024271695, 0.0019492301, -0.01794738, 0.009052579, -0.035342533, -0.043599643, 0.011498156, -0.012017513, -0.0052132863, 0.000580578, 0.009631103, -0.027374685, 0.012451406, -0.0077048824, 0.0026444444, 0.024587253, -0.037867, 0.018039417, 0.02203649, 0.0022565706, -0.009887494, -0.019341094, -0.0038195704, 0.028742103, -0.0075273807, 0.034869194, -0.01385827, -0.007790346, -0.018407568, -0.006544548, -0.018447014, 0.0028942614, -0.009545639, 0.009926938, 0.007856088, 0.0033560942, 0.020248326, 0.024021877, -0.010814447, 0.013753084, -0.007395898, -0.017421449, 0.01416068, 0.07894217, -0.0068108, -0.004509854, 0.03005693, 0.027821725, -0.02203649, -0.026217638, -0.03473771, 0.017434597, -0.001438913, 0.022812236, -0.00227958, 0.013345487, -0.009539065, 0.000467996, -0.016566811, 0.027690243, -0.017276818, -0.0070540435, -0.003947766, -0.0035829018, -0.002346965, -0.0025984256, 0.032818064, 0.012070105, 0.013121967, 0.007974422, 0.0147655, 0.008428037, -0.002427498, -0.0019968925, -0.0024620122, 0.013437525, 0.012964187, 0.013542711, 0.009848049, -0.0024768042, 0.003688088, -0.00033137732, -0.0022943718, 0.03763033, -0.008789614, 0.013700491, -0.0028581037, -0.0070934882, -0.03384363, -0.0006680961, 0.03360696, -0.018354975, -0.0099926805, 0.012273904, 0.004352075, -0.021221297, -0.0074616396, -0.0017569367, -0.021168703, 0.017237373, 0.0007021994, -0.0057688006, 0.009999254, -0.0042994823, -0.028268766, 0.00074123335, 0.0015276638, -0.016540516, -0.024127062, -0.010945929, 0.0098677715, -0.011905752, 0.00469393, -0.011018245, -0.035316236, -0.047070783, -0.00050127757, 0.019393688, 0.014489386, 0.008559519, -0.026217638, -0.022680754, 0.022273159, 0.008520074, -0.0012145708, -0.011853159, -0.02900507, 0.006202693, -0.0067713554, -0.009703418, -0.021773525, -0.0153045785, 0.0036486431, 0.014489386, 0.0012408673, -0.0031506526, 0.0021760375, -0.019025536, 0.013371784, -0.002941924, -0.0024652993, 0.003494151, -0.041364435, -0.015173096, 0.034790304, 0.0047498103, -0.0120438095, -0.009453601, 0.017986825, -0.0018029556, 0.007954699, 0.0029139838, 0.032055467, 0.032055467, -0.015054761, -0.0066891788, -0.019643506, -0.03670995, 0.023640577, -0.012970761, 0.03292325, -0.014528831, 0.00077040604, -0.013102245, -0.018118307, 0.031187681, 0.017447745, -0.021418521, 0.020761108, 0.0026559492, -0.0031342173, -0.020327214, -0.0040200814, -0.0028909743, 0.038340338, -0.0026230786, -0.031818796, -0.029662482, -0.01824979, -0.024179656, -0.010124163, -0.009289248, -0.006902838, -0.010045273, -0.009696844, -0.015041613, 0.0045723086, 0.0036157724, -0.028373953, -0.0114521375, -0.010012402, 0.004095684, 0.022838533, -0.022299455, -0.004585457, -0.015856806, -0.008658132, 0.0077048824, -0.024745032, -0.011688806, -0.03223954, 0.013319191, 0.0310299, 0.026861902, 0.005305324, 0.026007265, 0.006192832, -0.011872882, 0.0059627374, -0.02059018, 0.0010452869, -0.013029929, -0.011761121, 0.031056197, -0.0033856777, -0.0043586493, 0.020997776, -0.02036666, -0.0005834542, 0.0019064982, -0.0025852772, -0.025757449, -0.019577764, -0.005193564, 0.009440453, -0.008763318, -0.004789255, -0.0006270078, -0.00354017, 0.011787418, 0.002987943, 0.023574837, 0.010222775, -0.0016484635, -0.013345487, 0.016908666, -0.0045755957, -0.01529143, -0.027111718, 0.0050719427, -0.028426545, -0.008441185, -0.004483558, 0.011254913, 0.000795059, -0.024495214, -0.024889663, -0.011853159, 0.022102231, 0.0028334507, 0.015225689, 0.008395166, -0.027059127, -0.021326482, 0.0031391478, -0.006610289, -0.012339645, 0.009052579, 0.0018161038, 0.020616477, 0.026125599, -0.021865562, -0.018052565, 0.022693902, -0.010064996, 0.030793233, 0.013450674, 0.04246889, -0.013457247, 0.02354854, -0.029268034, -0.0003969132, 0.020419253, -0.0060810717, 0.010163607, -0.028636917, 0.017776452, -0.03360696, 0.021550003, -0.0053184726, 0.009184062, -0.02211538, 0.040707022, 0.004105545, -0.0085003525, -0.024008729, -0.016159216, 0.010689538, 0.008276831, -0.0005271632, 0.017040148, -0.018552199, 0.0013304399, -0.015120503, 0.052856017, -0.003219681, 0.0073433053, -0.020524438, -0.01672459, 0.0040233685, -0.039997015, -0.008691002, 0.02211538, -0.0014717837, 0.03226584, -0.0036552171, -0.0008801119, 0.004690643, 0.016540516, -0.024113914, -0.022154823, 0.019538319, 0.0215763, 0.013384932, -0.0052724537, 0.018276086, 0.019748691, 0.026572641, -0.01408179, -0.0006594676, 0.005594586, 0.0047629583, -0.008132201, -0.012431683, -0.013207431, -0.0070737656, -0.01226733, 0.0057227816, -0.002787432, -0.002987943, 0.00013980301, -0.0028613908, -0.010321387, -0.017868489, -0.020037953, 0.006738485, 0.002843312, -0.00064755196, -0.013490118, -0.0057720877, 0.021287039, -0.027900614, 0.023601133, 0.0105514815, 0.02861062, 0.018854609, 0.014002901, -0.024061322, -0.008953967, 0.01597514, -0.008520074, -0.029504703, -0.017079594, 0.0060153306, -0.0026773151, 0.016987557, 0.008644983, 0.0068173744, 0.005144258, 0.01621181, -0.044677798, -0.022785941, 0.036894027, -0.0047300877, 0.030556563, 0.017907934, -0.035999946, -0.015804213, -0.00080163317, 0.0010773358, -0.024113914, -0.03315992, 0.009473324, -0.020616477, 0.013424377, -0.02286483, -0.00044621917, -0.003941192, 0.013049651, -0.011222043, 0.0017125614, 0.012142421, 0.00980203, 0.008598965, 0.017368855, 0.0060810717, 0.01809201, -0.014975872, -0.020261474, -0.008086182, -0.015344024, -0.03952368, -0.022575568, -0.007540529, 0.032607693, 0.0009622885, 0.006896264, 0.0044474, 0.032397322, -0.03776181, -0.0055222707, 0.008079608, 0.016146068, 0.010255645, 0.043047413, 0.0027825013, 0.004085823, -0.010722409, 0.002920558, -0.027269498, -0.0102096265, -0.032292135, -0.011241765, -0.004746523, -0.0065708444, -0.022615014, -0.024639845, 0.025034294, 0.0025540502, -0.0021661764, 0.010544907, 0.007586548, 0.0014208342, 0.0032541952, 0.013700491, 0.00730386, 0.015883101, 0.035158455, -0.027821725, -0.010143885, 0.017368855, -0.00083121675, 0.0053644916, -0.0045164283, 0.0055617155, 0.007639141, 0.020037953, 0.013135115, -0.0041384157, 0.005775375, -0.0040167943, 0.01377938, 0.005344769, -0.013963455, 0.0075733997, -0.0069817277, -0.022746496, -0.0065149646, -0.020813702, -0.01877572, 0.014568276, 0.015725322, -0.024113914, 0.010781576, -0.009828327, 0.021471115, 0.0075208065, -0.0002995339, -0.0074353428, -0.0055124094, -0.015041613, 0.015659582, -0.00012614115, 0.017737007, 0.012313348, 0.0077246046, -0.0007441095, -0.024429474, -0.023758912, 0.018315531, -0.0056669014, 0.0025737726, -0.017999973, -0.015712176, -0.026165044, 0.020603329, -0.016487923, -0.0040167943, -0.0083754435, 0.19438392, -0.018565347, -0.011353525, 0.02929433, -0.011024819, 0.0053776396, -0.0011940267, -0.0032459775, -0.011136579, 0.02900507, -0.00878304, -0.006491955, -0.005739217, 0.010157034, 0.018552199, 0.0053677787, 0.00058633037, -0.016330143, -0.022207417, 0.033554368, 0.022444086, 0.0015958705, 0.014029197, -0.0069159865, 0.01032796, 0.018447014, -0.0046380498, -0.008132201, 0.039681457, -0.008099331, -0.011333803, -0.005443381, 0.0068699676, 0.013805676, -0.017763304, 0.009663974, 0.006896264, -0.016027734, 0.020616477, 0.016080325, 0.016645702, 0.0046610595, 0.010913058, 0.004490132, 0.01696126, 0.019143872, -0.010025551, 0.0015605345, -0.021155555, -0.010492315, -0.00023543609, -0.017460894, 0.012865576, 0.010899911, 0.0074747875, 0.0047695325, 0.014331607, 0.012214737, 0.026717272, 0.0019558042, -0.020708514, 0.017605525, -0.021786673, 0.00036157723, -0.008316277, 0.02270705, -0.0036749395, -0.0038688765, 0.0006516608, 0.00828998, 0.00035068885, -0.0053118984, -0.022693902, 0.009223507, 0.0078166425, -0.020011656, 0.020011656, 0.008335999, 0.013910863, 0.0020116842, -0.0058575515, -0.0032147504, -0.02483707, 0.021720931, -0.0033166495, -0.012070105, 0.0017142048, 0.008691002, -0.0027594918, 0.0037143843, -0.0045657344, 0.027348388, 0.004628189, 0.0041186935, 0.013194283, -0.032975845, 0.026020413, 0.019959064, -0.0012696292, 0.0049667563, -0.026520047, -0.003099703, 0.014002901, 0.011366674, -0.005486113, 0.015488654, -0.011918901, 0.0033199366, 0.013312616, 0.006685892, 0.021287039, -0.0057260687, -0.013135115, 0.001572861, -0.012471127, 0.017723858, -0.0060547753, -0.033817332, 0.0044178166, -0.0096574, -0.003743968, -0.025980968, 0.008434611, -0.003195028, -0.015265134, -0.01688237, -0.035395123, 0.041206658, -0.018802017, -0.01681663, 0.025915228, -0.035842165, 0.007823217, 0.010715835, 0.0003391841, 0.021628894, 0.009946661, -0.00069028384, -0.0007790346, -0.0036354947, -0.0074747875, -0.0028153718, 0.024705587, 0.016908666, 0.011445563, -0.016369589, 0.0062684347, -0.0105975, -0.010222775, -0.0040036463, -0.018709978, -0.0050127753, 0.025428742, -0.019196464, 0.004260037, 0.00066686346, -0.029951744, -0.017211076, -0.010965652, -0.00043224916, -0.040102202, 0.010479166, 0.02763765, -0.017368855, -0.0014627443, 0.013950307, -0.1643007, 0.0043257787, 0.0021513845, -0.030004337, 0.019893322, 0.004986479, 0.00543352, -0.0040036463, 0.00013939214, 0.009913791, 0.0076654376, 0.0034119743, -0.028005801, -0.021891858, 0.004296195, -0.0064689456, 0.00859239, 0.019656654, 0.011248339, 0.01048574, 0.038708486, -0.0124777015, 0.017934231, -0.020051101, -0.011412692, 0.001970596, -0.0117939925, -0.016382735, -0.009762585, -0.020761108, -0.013700491, 0.0006360472, 0.0018555487, -0.0050719427, -0.0051672673, -0.014791796, 0.004292908, -0.01750034, -0.0058279675, 0.016474774, -0.0044802707, 0.012596036, 0.019249057, -0.0028416684, -0.010775002, -0.0013452317, 0.017513487, -0.015764767, 0.007921829, 0.022444086, 0.0215763, 0.007238119, 0.0038655894, 0.017145336, 0.012635481, -0.018197196, 0.005709633, -0.00067015056, 0.013555859, 0.013687342, -0.014068642, -0.033869926, 0.0017257095, -0.0014816449, -0.018486459, 0.018144604, -0.00022762931, 0.031213976, -0.0041186935, -0.004174574, -0.017737007, -0.003494151, 0.025428742, -0.012385664, -0.00086285477, -0.0070145987, -0.015646433, -0.012977336, 0.0033084317, -0.0065774187, -0.010604074, 0.013082522, -0.027742835, 0.0021448105, -0.009210358, 0.02884729, 0.0037209585, 0.02044555, -0.039339602, -0.001048574, 0.009861197, -0.01718478, -0.031213976, 0.0034218356, 0.011097134, 0.007533955, 0.025783744, -0.003315006, 0.033133622, -0.01726367, -0.008737021, -0.021510558, -0.034658823, 0.017224224, 0.059535336, 0.02203649, -0.025402445, 0.01188603, 0.036631063, 0.026230786, -0.02300946, 0.041758884, 0.030898418, 0.009894068, -0.0143842, 0.026612084, 0.0021333057, -0.010111014, 0.04609781, -0.005032498, 0.0040759617, 0.005479539, -0.011241765, 0.01408179, 0.004947034, -0.03442215, -0.11970179, -0.05359232, 0.026007265, 0.016671998, 0.010735557, 0.021300187, -0.002504744, 0.0045262896, 0.0011586907, 0.026480602, -0.01567273, -0.037104398, 0.0045755957, 0.0025787032, 0.033501774, -0.006994876, 0.0025902078, -0.032896955, -0.031608425, 0.010268793, 0.004483558, -0.016461626, -0.0121358475, -0.00030754608, -0.01010444, -0.0045032804, -0.017671267, 0.0030635453, 0.010196478, -0.024705587, 0.0017257095, 0.018354975, -0.010341109, -0.01048574, -0.0042797597, -0.012957614, 7.591068e-05, -0.011905752, 0.036841433, -0.028952476, -0.006636586, 0.0023518957, 0.025849486, -0.0041154064, 0.007389324, -0.020261474, -0.022733347, 0.0050193495, 0.00688969, -0.0033659553, -0.012175292, -0.023048906, -0.03392252, -0.020721663, 0.011616491, -0.013897714, 0.02232575, -0.021116111, -0.01750034, -0.0050883777, 0.01169538, -0.0007050756, -0.012372516, 0.00825711, -0.012773538, 0.0038327188, -0.0079086805, -0.019235909, -0.018026268, -0.028242469, 0.020090546, -0.017132187, -0.01635644, 0.015856806, -0.025231518, 0.011629639, -0.035631794, -0.0058115325, -0.0021037222, -0.017171632, -0.0064557972, -0.011853159, 0.01635644, -0.015330875, 0.013325765, 0.004644624, 0.010235923, -0.0024685864, -0.0136216, -0.040549245, -0.00969027, 0.0215763, 0.020524438, -0.009545639, -0.0035697534, 0.02771654, -0.027216906, 0.0074813617, 0.005729356, -0.009841475, -0.03013582, -0.0010362475, -0.034474745, 0.015606988, 0.016395884, -0.02475818, 0.005643892, -0.009032857, 0.020853145, -0.006051488, 0.0015769699, 0.011333803, -0.007330157, 0.018210344, 0.0010000898, -0.02135278, -0.0068173744, -0.009157766, 0.008585816, 0.024942255, -0.012727519, -0.012471127, 0.0044704094, -0.010025551, -0.02014314, 0.011623065, -0.035842165, 0.005588012, -0.017053297, 0.0073235827, -0.014410497, 0.0035598923, -0.0096179545, -0.032818064, -0.0020149713, 0.041732587, 0.009512768, -0.015935695, -0.025560224, 0.0014660313, -0.012168718, 0.009473324, -0.014292162, -0.03944479, 0.009262951, 0.011866308, -0.00938786, 0.0052593052, 0.020353511, 0.019341094, -0.011978067, 0.009203784, 0.029925447, 0.018341828, -0.013108819, -0.02098463, -0.002399558, 0.0152125405, 0.006386769, -0.01317456, -0.003586189, -0.024258547, 0.03315992, 0.028636917, 0.023495946, -0.008756744, 0.008559519, -0.030004337, 0.0069685797, -0.027795428, 0.012510573, -0.026243934, -0.0001870546, 0.006390056, 0.017960528, 0.008868503, 0.007593122, -0.021405373, -0.002899192, -0.017395152, 0.0065675573, 0.032449912, 0.006541261, 0.008960541, -0.006837097, 0.040259983, 0.03429067, 0.006002182, -0.050699703, 0.027900614, 0.011353525, 0.006429501, 0.004983192, 0.020629626, 0.0102096265, -0.0055354186, 0.012201589, -0.0052724537, -0.017276818, 0.011853159, -0.017842194, 0.0037505422, 0.017289966, -0.006199406, -0.004845135, 0.01573847, -0.005196851, 0.0057129203, 0.00023523065, 0.00017616618, -0.031213976, 0.039497383, 0.015935695, 0.003947766, 0.02755876, 0.0012145708, -0.02528411, 0.009624529, -0.024061322, -0.04459891, -0.008835633, -0.008263684, 0.012247607, 0.007284138, 0.013253449, -0.021024073, 0.009841475, -0.009775734, 0.015041613, -0.032607693, 0.0011759478, -0.01750034, 0.02105037, -0.00044375387, -0.027400982, -0.015764767, -0.05043674, -0.005742504, 0.023193536, 0.028426545, -0.006630012, 0.04754412, 0.041732587, 0.0037045232, 0.0059167184, 0.022128528, 0.0386296, 0.024482066, -0.016290698, 0.0063013053, -0.03665736, -0.0019393688, 0.012497424, -0.0059594503, -0.022772793, -0.002371618, -0.009243229, 0.018184049, -0.004141703, -0.043047413, 0.01839442, 0.022089083, 0.0066431602, 0.014068642, -0.0081256265, -0.031608425, -0.009966384, 0.034106594, -0.004437539, 0.0231015, -0.030951012, -0.015344024, -0.009447027, -0.04549299, 0.0035927629, 0.015659582, -0.00028761826, -0.0049108765, -0.0036815137, 0.012056957, 0.02415336, -0.009381286, 0.02014314, -0.0026066431, -0.032318432, -0.010913058, 0.011557324, 0.012878724, -0.0092760995, -0.014252718]" 5961785,Why discussions on cyber snooping have been so painful for us,https://medium.com/surveillance-state/f77088fd4c28,407,1372494618,218,mh_,"[0.0031802151, -0.008218911, 0.01957778, -0.047958184, 0.003847792, 0.008339678, -0.0005992257, -0.0052533937, -0.006004837, -0.031158058, 0.017846778, 0.0155656105, -0.017269777, -0.016612263, -0.0003375624, 0.029198939, 0.03456639, -0.013673584, 0.028903728, -0.022127321, -0.025629582, 0.0041664843, 0.0025176704, 0.018772664, -0.0011607115, -0.010432985, 0.020356061, -0.036069278, -0.00782977, -0.038028397, -0.0053439694, -0.017081916, -0.03963863, 0.0097956, -0.020302387, -0.017994381, -0.00812498, -0.044200968, 0.020221874, -0.015619285, 0.015887657, -0.008977063, -0.013821188, 0.00037047997, -0.017980963, 0.023120299, 0.0055184113, -0.005300359, 0.0007669586, 0.040577937, 0.02055734, 0.010359182, -0.024180371, -0.023630207, -0.009755344, 0.0070649087, -0.029896706, 0.008487283, 0.0061054765, -0.021402715, 0.0067998907, 0.036096115, -0.021174598, 0.008252458, -0.012130441, 0.009164924, -0.004320799, -0.013525979, -0.00479716, 0.0014022468, 0.048038695, 0.019899828, 0.005129271, 0.0005405192, 0.0070649087, 0.0030443517, -0.0058471677, -0.010674519, -0.010580589, -0.007105164, 0.014022468, -0.018920267, -0.027266655, 0.03778686, 0.0040121702, 0.008346388, -0.0038813388, 0.01567296, -0.0037806989, 0.0038108907, -1.9014093e-05, 0.007688875, -0.0049313465, 0.014867841, -0.008540958, 0.0063000466, -0.0075345607, -0.0043577, -0.004740131, -0.033546574, 0.022583554, -0.002046341, -0.024717117, -0.009547355, -0.0068066, 0.014398189, -0.0037136057, -0.012747698, 0.019269152, -0.008158527, -0.008567795, -0.009158215, 0.010721485, -0.026474956, 0.01302949, -0.010902637, 0.0022794898, -0.01165408, -0.01722952, -0.017699173, 0.018678732, 0.011761429, 0.029145263, -0.010567171, 0.016048681, 0.019349664, -0.004270479, -0.013056327, -0.020933062, -0.008869714, 0.007118583, 0.0036096114, 0.024824465, -0.00030737047, -0.008044468, -0.0024371587, -0.0010936183, 0.02624684, -0.006504681, -0.037867375, 0.01948385, 0.005592214, -0.013110002, 0.00018723182, 0.024837883, 0.021845529, 0.010989858, 0.015324075, 0.0054982835, 0.0014584373, -0.0034620066, -0.015927913, 0.015203307, -0.0071252924, -0.021845529, 0.022784833, 0.0047703227, 0.006004837, 0.013364955, 0.0059109065, -0.0070917457, 0.001426568, 0.017296614, -0.0117815565, -0.004005461, 0.027669214, -0.01204322, 0.021523481, -0.019041035, 0.0020429865, 0.008889842, 0.020449992, -0.017323451, -0.013458885, 0.012573256, 0.003010805, -0.008078015, 0.010466531, -0.025978466, -0.023173973, -0.00733999, 0.01761866, 0.031211732, 0.033063505, -0.011882196, 0.009923076, 0.01449212, 0.0014685013, 0.014465283, -0.0053506787, 0.00293868, 0.0039987518, -0.007259479, -0.025736932, -0.64280605, -0.02144297, 0.031480104, 0.007802933, 0.007890155, -0.0066724136, 0.0089636445, 0.02046341, -0.0019088001, 0.013968794, -0.020154782, 0.0077022933, 0.0036196753, -0.020597596, -0.033814948, -0.0021352395, -0.0056156963, -0.011707755, 0.033707596, -0.009547355, -0.009144796, 0.022771414, -0.0051359804, 0.007943829, 0.019430175, -0.003025901, -0.007608363, -0.025146512, -0.011929162, 0.0258577, -0.024837883, 0.008279295, -0.011439382, 0.0048273522, 0.061242625, 0.00831955, -0.0044684038, 0.015350913, 0.009701669, 0.020825714, -0.0064107506, -0.004522078, 0.028179122, 0.012955687, -0.0061356686, 0.013237478, 0.035720393, -0.0061256043, -0.0014316001, -0.004404665, 0.011177719, 0.013955375, -0.025186768, 0.02997722, 0.017323451, 0.007460758, 0.013713839, -0.013063036, 0.00754127, 0.008728819, 0.00242374, 0.03142643, 0.0023901935, 0.0076419096, -0.028528007, 0.02338867, -0.013519269, -0.0023415508, 0.010755031, 0.0026485021, 0.0055653765, 0.030567639, -0.0032020204, -0.031453267, -0.014451864, 0.03249992, 0.04583804, -0.0047233575, -0.011835231, 0.020302387, -0.014733655, -0.01508254, -0.0015909463, -0.008755656, 0.033922296, -0.009050866, -0.013304572, 0.0034586517, 0.009748635, -0.011808394, -0.01223779, 0.036096115, -0.0063604303, -0.023254486, -0.009299111, 0.008876423, -0.009473553, -0.03290248, 0.01292885, 0.0076016537, -0.00025977628, -0.008480574, 0.017095335, -0.0003765603, 0.020959899, 0.00082524575, -0.020973317, 0.013016071, 0.03282197, -0.03837728, 0.025066, 0.0017628724, 0.006991106, -0.023428928, 0.0015347558, -0.0059377435, 0.015163052, -0.007608363, 0.006246372, -0.009513808, -0.01204322, 0.009715088, 0.001806483, -0.027212981, 0.024690278, 0.011009986, 0.006474489, -0.01831643, 0.007755968, 0.003225503, -0.0031600874, 0.004280543, 0.009607739, -0.0018148697, -0.0010256865, 0.0064946166, 0.009044156, -0.028474333, 0.0074473396, -0.026072398, -0.025025744, 0.011271649, -0.0010827157, 0.00042310616, -0.026850678, -0.007937119, -0.021899203, -0.023589952, -0.007024653, 0.009037447, 0.016437821, -0.0016580394, 0.0006076123, -0.026072398, 0.012049929, -0.004189967, -0.0006579322, -0.012586675, -0.020986738, -0.0019842798, -0.0110636605, 0.03515681, -0.001719262, 0.013391793, 0.017605241, 0.0023935481, 0.015136214, -0.007823061, 0.012439069, -0.024354814, 0.035210483, 0.014076143, 0.017846778, 0.008507411, 0.0029554532, 0.009943205, -0.01233843, 0.011298486, 0.004522078, 0.0028715867, 0.017041659, -0.008165237, -0.019872991, -0.016961148, 0.034002807, 0.0136870025, 0.02399251, -0.010063972, -0.010063972, 0.0048407707, 0.0014181815, -0.02839382, -0.0025076065, 0.003275823, -0.0010038812, -0.0064845528, 0.024207208, -0.0025294118, 0.016706195, 0.031990014, -0.007843189, -0.0023700655, 0.014773911, 0.0033647213, 0.010271961, -0.011077079, -0.009419878, -0.03164113, 0.02791075, -0.014773911, 0.006041738, 0.0005237459, -0.0041463566, -0.016733032, -0.0023499376, 0.009131378, -0.00950039, 0.020906225, 0.007306444, -0.0050051487, -0.016706195, -0.018477453, -0.0016110742, 0.0036398033, -0.00607193, 0.025414884, 0.003710251, -0.0045489157, -0.00012433199, -0.030379778, -0.0074339206, 0.0025377984, 0.0017393898, 0.026823841, 0.003326143, 0.024542674, 0.021295365, -0.02957466, 0.02310688, -0.023710718, -0.0051259166, 0.01578031, 0.013525979, -0.015927913, 0.009976751, 0.00222917, 0.036257137, 0.0041463566, -0.026662817, 0.0150691215, 0.00144418, 0.003914885, 0.009057575, -0.008742237, 0.0037874081, -0.038833514, 0.018128568, 0.022825088, 0.011258231, 0.018544545, 0.021926042, -0.0052936496, 0.019524107, -0.0070179435, -0.001204322, 0.014317678, 0.015726633, 0.017954126, 0.002366711, -0.00023042303, -0.009050866, -0.024596348, 0.019953502, -0.015015447, 0.02164425, 0.022905601, 0.019054454, 0.019309409, 0.030004056, 0.005501638, -0.02271774, -0.04825339, 0.0039383676, 0.017793102, -0.028957402, -0.017497893, 0.006877048, -0.0117815565, -0.00861476, 0.01733687, -0.029762521, 0.014867841, -0.01783336, -0.00049313466, -0.010459822, 0.0064610704, 0.009325948, -0.00032162777, 0.03335871, -0.0020882743, -0.014827586, -0.021469807, -0.038618818, -0.0053909346, 0.033385552, -0.008574504, -0.0022006552, -0.029896706, -0.0058538774, -0.03298299, -0.00479716, -0.006709315, -0.032875642, 0.019537525, 0.0013058004, -0.018531127, -0.022556717, -0.012345139, 0.036283974, -0.0019088001, -0.01674645, -0.034539554, -0.018141987, -0.0009317561, 0.11829864, 0.0059511624, -0.0070045246, -0.0047938055, -0.005706272, -0.0236973, -0.0060014823, -0.04798502, 0.014344515, -0.016665937, -0.008433608, 0.029950382, -0.010822125, -0.0043174443, 0.012506163, 0.027696053, 0.016974567, -0.012962396, -0.029655172, -0.007776096, -0.019832734, -0.009037447, 0.028715868, 0.017846778, -0.009701669, 0.0032154392, 0.0019641519, 0.024126695, -0.0035391636, -0.021899203, -0.017564986, 0.011734592, 0.02389858, -0.021966297, -0.010439694, 0.015525355, -0.0062430175, 0.0054680915, -0.01517647, -0.0024472226, 0.0146934, 0.005189655, 0.012781245, -0.022194413, 0.0051930095, -0.008339678, -0.0007770225, 0.02428772, 0.020543922, -0.009533936, 0.014009049, -0.02733375, -0.0069307224, -0.013398502, 0.0013762482, 0.0076419096, 0.011130753, 0.0029202292, -0.0111173345, -0.006635512, -0.012720861, -7.5112875e-05, -0.0065751285, -0.007293025, -0.0048910906, -0.036767047, 0.017954126, 0.004766968, 0.0011841941, 0.003807536, 0.017752847, -0.035854578, -0.034620065, -0.008165237, 0.024260882, 0.0031416367, 0.012459198, 0.011056951, -0.008802621, -0.009822437, -0.006132314, -0.034083318, 0.024958652, -0.03153378, -0.0037001872, -0.0064308783, 0.0023180682, 0.0027977843, -0.020490248, -5.9283087e-05, -0.011036823, 0.01047324, -0.0063101104, 0.01312342, 0.014451864, 0.023281323, 0.01331799, 0.011600405, 0.03660602, 0.00045036277, 0.018786082, -0.0150691215, -0.03537151, 0.018678732, 0.02007427, -0.0011967741, 0.017766265, -0.0040255887, 0.0073131532, 0.0073265717, 0.024368232, -0.037572164, 0.0012756084, -0.01204322, 0.020288968, 0.005964581, 0.005729755, 0.034405366, 0.00039668824, -0.023428928, -0.0010810384, -0.032741457, 0.038323607, 0.01223779, -0.019832734, 0.007259479, -0.022986112, -0.015283819, -0.018571384, -0.0077895145, -0.010043845, 0.010224996, -0.009963333, -0.009299111, -0.003740443, 0.005904197, -0.000478458, 0.010600718, -0.011727883, 0.0073131532, -0.0120298015, 0.002678694, -0.002463996, -0.035586204, 0.0021989779, -0.027937587, -0.0077022933, -0.0022492977, -0.040604774, 0.031104384, -0.0051863003, -0.008192074, -0.008151817, 0.0129154315, 0.019564362, -0.050105162, -0.026877515, 7.2492054e-05, 0.019725386, 0.016142612, -0.00046839405, 0.0070649087, -0.012023092, 0.025777187, 0.0065281633, -0.00222917, -0.007608363, 0.00053255184, 0.006699251, 0.010587299, 0.02349602, 0.007910282, -0.01508254, 0.029655172, -0.0069307224, 0.008554377, -0.013593072, 0.01107037, -0.011305195, 0.0026317288, -0.01194929, 0.008279295, -0.01654517, 0.0065583554, -0.036337648, -0.017310033, 0.0049212826, -0.005052114, 0.007615072, -0.018464034, 0.02772289, -0.0053204866, 0.01429084, 0.011157591, -0.007118583, -0.012506163, -0.01761866, -0.013036199, 0.037599, 5.9021004e-05, 0.012009674, 0.008829459, -0.013593072, 0.011036823, 0.0024556092, 0.020181619, -0.019416757, 0.0016412662, 0.0017729364, -0.010258542, -0.008192074, -0.00013208964, -0.02839382, -0.008205492, -0.013344827, 0.0015850756, 0.003066157, -0.0030678343, -0.015109377, -0.032043688, 0.0015095959, 0.0047636135, 0.037974723, 0.0014953385, 0.03915556, 0.020060852, -0.02711905, -0.028769542, 0.002378452, 0.0053137774, -0.0016052036, 0.022596972, 0.008802621, -0.022462785, 0.022234669, -0.002948744, 0.0020178265, 0.0032154392, -0.032151036, 0.0070045246, 0.0033697535, 0.005270167, -0.025616163, -0.03636449, -0.008104852, 0.03631081, 0.003888048, 0.0011741301, -0.002051373, -0.03309034, -0.014720237, 0.026864097, 0.014116398, 0.0042033857, -0.02466344, 0.010157903, 0.007420502, -0.030674988, 0.014049306, 0.014398189, -0.011922453, 0.014223748, -0.011768138, -0.0075748162, -0.0011741301, 0.020651272, -0.010292089, -0.008071306, -0.012439069, 0.024515836, -0.01302949, -0.009191762, 0.009909658, 0.0064610704, 0.023818068, -0.0037806989, -0.016491495, -0.013432048, 0.004619363, -0.0013804415, 0.036418162, -0.0007728292, -0.013572944, -0.0055955686, -0.01752473, -0.009634576, -0.024207208, -0.016894056, 0.017605241, 0.029064752, -0.019027617, -0.005592214, -0.012519581, 0.020611016, 0.0028548134, -0.011043532, -0.0016328795, 0.027991261, -0.032043688, -0.0037773442, -0.000727122, 0.028232796, -0.023831487, 0.013559525, 0.00073425064, -0.026542049, 0.033251364, -0.029708846, -0.021295365, -0.026515212, 0.019846153, -0.0021251754, 0.018396942, -0.007306444, -0.0018400296, 0.020034013, -0.004532142, -0.018786082, 0.00041283254, 0.019832734, -0.015713215, 0.008641598, -0.013532688, 0.007353409, 0.0025528944, -0.013968794, 0.024623185, 0.0101511935, -0.008373225, -0.0065851924, -0.0009233694, 0.021228272, -0.013364955, -0.013197223, 0.006924013, -0.0028632001, -0.0006449329, 0.021765018, 0.01547168, -0.0032389218, -0.0001471856, 0.013720549, 0.02144297, 0.01949727, -0.02086597, -0.005112498, -0.0043040253, -0.009124668, -0.021872366, -0.019349664, 0.018209081, 0.03926291, 0.013432048, 0.016786706, -0.022180995, -0.010714776, -0.06521454, 0.0067294426, -0.011097207, 0.027454516, 0.04358371, 0.024207208, 0.017149009, 0.008218911, -0.018598221, 0.0120029645, -0.015256982, -0.017363707, 0.012687314, -0.03258043, 0.014076143, 0.023589952, -0.02222125, -0.0021402715, -0.007863317, -0.006102122, -0.012157278, 0.024032766, -0.0050219223, -0.025052581, 0.006883757, 0.0009946559, 0.00052584254, -0.010560461, 0.006823373, -0.04838758, 0.010003588, 0.020208456, 0.0062899827, -0.04768981, -0.0051728818, 0.0050755967, 0.0070179435, -0.004709939, -0.032070525, -0.026649399, 0.016129192, -0.0027575283, 0.0278034, 0.0111643, -0.01429084, 0.028608518, -0.005746528, -0.009312529, -0.015579029, -0.011030113, 0.0150959585, 0.02898424, 0.0042067403, -0.0272264, 0.0011078756, 0.00057280774, 0.019752223, -0.038726166, 0.01722952, -0.022342019, 0.00014456476, -0.0129154315, 0.0032372444, 0.000961948, -0.023938835, 0.017538149, -0.016088936, 0.0044684038, -0.007977376, -0.00920518, 0.0022560072, -0.026770167, 0.018007802, 0.023683881, 0.0040289434, -0.024824465, -0.0021134343, -0.007916992, -0.020047434, -0.0023281323, 0.21437603, 0.0024354812, 0.010231705, 0.03504946, -0.021308783, -0.008748947, 0.01831643, 0.02349602, -0.024032766, -0.0089904815, -0.030809173, -0.0017050046, -0.01988641, 0.0034200733, 0.016290216, -0.031775314, -0.033331875, -0.036096115, 0.019269152, -0.01410298, -0.015444843, 0.0024421907, 0.0032020204, -0.0075144325, 0.00950039, 0.034432203, -0.027642377, 0.00851412, 0.025240442, -0.010500078, -0.013063036, -0.018477453, 0.0020681464, 0.025066, 0.009909658, 0.009762053, 0.019067872, 0.0050588236, 0.0005006826, -0.0022962631, -0.0034452332, 0.009540645, -0.0014928225, -0.010077391, 0.009674832, 0.01380777, 0.00078121584, -0.0057733655, 0.01263364, 0.03258043, -0.015981589, -0.016223123, 0.0016152676, 0.019309409, 0.005803557, 0.006991106, 0.0027424325, 0.027347168, -0.01429084, 0.026676236, 0.013928537, 0.026421282, -0.0092118895, 0.02536121, -0.006551646, 0.06532189, 0.012345139, 0.0019155093, 0.013432048, -0.03150694, -0.010493369, -0.00070699403, -0.02458293, -0.0074741766, -0.019738805, -0.007937119, 0.007158839, 0.018812919, 0.011640661, 0.014304259, -0.005551958, -0.013888282, -0.016303634, 0.016464658, 0.017390544, -0.012948978, 0.023522858, -0.0010072358, -0.010580589, -0.0021872367, 0.0093796225, -0.014089561, -0.010567171, -0.008185364, -0.015283819, -0.018074894, 0.022073645, -0.0068904664, -0.03142643, -0.012754408, -0.0084939925, 0.028769542, 0.020973317, 0.010882509, 0.009158215, 0.002214074, 0.012855047, 0.020731783, -0.0039618504, -0.0098761115, -0.016397566, -0.027467934, 0.028071774, -0.012318302, -0.005397644, 0.017323451, -0.024985489, -0.028930565, 0.018866593, -0.006206116, -0.017122172, -0.015243563, 0.0120566385, 0.0069374316, 0.00059629034, -3.7110898e-05, -0.01948385, 0.00812498, -0.0032070526, -0.029333124, -0.015605866, -0.01752473, 0.023093462, 0.006286628, -0.00754127, -0.023777813, 0.0258577, -0.0074070836, 0.005317132, 0.020530503, 0.0062832735, -0.009151505, 0.019940084, 0.007977376, -0.0027088858, -0.0016848767, -3.6691566e-05, 0.0020647917, -0.018370105, -0.005756592, -0.014250585, 0.01772601, -0.006045093, -0.0062128254, 0.02691777, -0.025965048, -0.013203932, -0.001104521, -0.014800749, 0.04575753, -0.034807924, 0.020933062, 0.047153063, -0.014908098, -0.007688875, 0.0029403572, -0.16993353, 0.025897956, 0.008688563, -0.01752473, 0.005649243, -0.011124044, 0.017940708, -0.015525355, -0.011258231, 0.012754408, 0.015901076, 0.000719574, -0.027696053, -0.020772038, 0.004159775, -0.004817288, -0.042778593, 0.03526416, 0.016800124, 0.0010407824, 0.03357341, -0.018182244, 0.021214854, -0.01467998, 0.022489624, 0.001209354, 0.009923076, 0.015391168, -0.027280074, -0.0146263065, 0.011077079, 0.0026199874, 0.015901076, 0.009862693, 0.040577937, -0.0017813231, -0.019067872, -0.0106476825, -0.0060484475, 0.029655172, 0.033519737, 0.01341863, 0.0025545717, -0.0076352004, -0.01145951, 0.0070917457, -0.001231998, -0.0052232016, -0.0006139023, -0.013364955, -0.014747074, -0.030594476, 0.0053104227, 0.0031198314, 0.0066556404, 0.0049078637, 0.009688251, 0.027776564, 0.01076845, -0.010895927, -0.011197846, -0.01830301, 0.011546731, -0.016182868, -0.020315805, -0.012063348, 0.008923389, 0.015941331, -0.03934342, 0.014720237, -0.023858324, 0.0110636605, -0.017350288, -0.037491653, 0.019926665, 0.022516461, -0.023576532, -0.011660789, -0.0067294426, 0.027776564, -0.009117959, 0.009440006, -0.009493681, 0.0063704946, -0.004022234, 0.018155405, 0.016102355, 0.012808082, -0.0032171165, -0.021805273, 0.006746216, -0.023670463, -0.0024170307, 0.0067998907, 0.018880012, 0.020114526, 0.03483476, 0.0182225, -0.0117815565, -0.010117647, -0.010674519, -0.006347012, -0.018182244, 0.022382274, -0.022113902, 0.013566235, 0.013136839, 0.011808394, 0.005052114, -0.0155387735, -0.023348415, 0.014371352, 0.020637853, 0.017269777, -0.032526758, 0.0089368075, -0.004505305, -0.0038176002, -0.0014634694, -0.01066781, 0.039880168, 0.00084537367, 0.0044717584, -0.010305508, -0.0040993914, -0.012123732, -0.14395505, -0.043556873, 0.025294118, -0.02419379, 0.004444921, 0.015256982, -0.008661726, 0.015163052, 0.004153066, 0.04320799, -0.00891668, -0.03631081, 0.009762053, -0.020745201, 0.021161178, -0.0064208144, -0.002383484, -0.02986987, -0.027266655, 0.034405366, -0.0035760647, -0.01744422, -0.00094936806, -0.009339366, 0.015163052, -5.7186426e-05, -0.022570135, 0.021241691, 0.01928257, -0.032043688, -0.0011221329, 0.001569141, -0.0017477765, -0.0072796065, -0.0096815415, 0.0155656105, -0.028044935, -0.0073601184, 0.014170073, -0.007098455, -0.0006868661, 0.01861164, -0.006944141, -0.04554283, -0.017350288, 0.005189655, -0.011050242, 0.03064815, 0.012452489, -0.011258231, -0.0111643, -0.020624435, -0.014022468, 0.0037068964, 0.0022342019, 0.03300983, -0.008044468, -0.012620221, -0.013968794, -0.004404665, 0.014894679, 0.011627243, 0.0068066, -0.0166391, -0.00582704, 0.0013871508, -0.035774067, 0.0024338039, 0.018973943, -0.015216726, -0.028528007, 0.016813543, -0.015511936, 0.025025744, -0.026756747, -0.01184865, -0.0062128254, -0.010795288, 0.021966297, 0.0030812528, -0.014800749, -0.021349039, 0.0058002025, -0.017779684, -0.006870338, 0.01841036, 0.01861164, 0.009735215, -0.012298174, -0.00430738, 0.0059008426, 0.010634264, -0.005347324, -0.018276174, 0.0009057575, 0.016853798, -0.00032016012, -0.004434857, 0.021228272, 0.0027642378, 0.0037773442, -0.013780933, -0.05064191, 0.018141987, -0.012224372, -0.00891668, -0.001786355, -0.010305508, -0.01635731, -0.016129192, -0.0035492275, 0.017202683, -0.026206585, 0.022771414, 0.0069307224, 0.0065751285, -0.026716491, -0.02007427, 0.013096582, 0.0073131532, 0.00969496, 0.0223286, -0.0022358792, 0.009674832, 0.0028866827, 0.008198783, -0.00145676, 0.011694335, -0.04081947, 0.021805273, -0.0016035263, -0.03467374, -0.006474489, -0.012351848, -0.014760492, -0.014478701, -0.007219223, -0.017242938, 0.011808394, 0.020543922, 0.013955375, 0.04650897, -0.035774067, -0.031882662, 0.0052936496, -0.020114526, -0.018839756, 0.010191449, -0.019336246, 0.009923076, -0.0045757527, 0.001486952, 0.01733687, 0.012271337, -0.0403364, 0.004240287, -0.027749727, -0.024435325, 0.031453267, 0.027830238, -0.013371664, -0.016115773, 0.047958184, 0.011680917, 0.010211578, 0.003958496, 0.0166391, 0.010191449, -0.038216256, 0.0046831015, -0.0021033701, -0.014384771, -0.00073802465, -0.010701357, 0.024314556, 0.0077693867, 0.0070783272, 0.008306132, 0.0006893821, -0.0070649087, -0.005729755, 0.005659307, 0.00055813114, -0.021281946, -0.010734904, 0.008098143, 0.019752223, 0.00023818067, 0.0072997347, 0.0007451533, -0.011217974, 0.000713284, 0.009768763, -0.0025478622, -0.00212853, 0.010057263, 0.0027340457, 0.00891668, -0.0027994616, 0.023952253, -0.0059914184, 0.022395693, 0.026542049, -0.015807146, 0.014009049, -0.008386644, -0.017564986, 0.01977906, -0.044791386, -0.013351536, -0.008883133, 0.022771414, -0.007963956, 8.4233354e-05, 0.022489624, 0.014975191, -0.027427679, 0.010017007, 0.005162818, -0.016625682, -0.010936183, 0.010674519, 0.013479014, -0.015887657, -0.003975269, -0.035908252, 0.035317834, -0.030540802, 0.02595163, -0.009037447, -0.00037551197, -0.0063906224, 0.009473553, 0.0061859884, -0.007286316, 0.010721485, 0.0045757527, -0.00020190845, 0.011573568, 0.028903728, -0.017712591, 0.014223748, 0.03279513, 0.020919643, -0.0011137463, -0.013559525, 0.01733687, 0.0005577118, 0.029306287, -0.007266188, -0.0074875955, 0.026864097, -0.011338742, 0.021617413, -0.010432985, -0.020597596, 0.027239818, -0.016008426, 0.010399438, -0.0079975035, 0.003985333, 0.017457638, 0.008064596, 0.012130441, -0.0094332965, -0.007178967, -0.012459198, 0.025294118, -0.028474333, -0.017685754, -0.026112653, 0.001076845, 0.016303634, -0.036069278, -0.00033190142, -0.008131689, 0.0007355086, -0.0020731783, -0.030540802, 0.023093462, 0.010822125, 0.006142378, 0.007031362, -0.019443594, -0.046589483, 0.019148385, 0.008286004, -0.008259167, -0.00065373885, -0.032070525]" 35645624,Rural Americans are importing tiny Japanese pickup trucks,https://www.economist.com/united-states/2023/04/20/rural-americans-are-importing-tiny-japanese-pickup-trucks,523,1682021450,634,dduugg,"[-0.0050253123, -0.019539163, 0.016742118, -0.018776333, -0.033832196, 0.015296755, -0.02378157, -0.03846271, 0.004312668, -0.015403819, 0.006059148, 0.014065521, 0.0076684523, -0.0045502163, 0.008277378, 0.034153387, 0.017839523, -0.01433318, 0.012881126, -0.006681457, -0.022804612, 0.00038057874, -0.010706391, -0.010010475, -0.007353952, 0.023527294, 0.028478999, -0.0020074483, 0.021653675, -0.027140701, -0.009869954, -0.010766614, -0.019110907, 0.0029292016, -0.026043296, -0.011991157, 0.009956944, -0.009247645, 0.03600024, -0.0012856033, 0.046278372, 0.0002636867, 0.005189254, 0.0043862746, -0.007936113, -0.00015453169, -0.0038844123, -0.030432915, 0.0034494651, 0.018977078, -0.010385199, 0.039774243, -0.025802402, 0.0062398184, -0.023661124, -0.020449206, 0.00082639954, 0.008692251, 0.0059052436, -0.019191206, -0.013068488, 0.012513095, -0.03399279, 0.027328063, -0.019766673, -0.015577799, 0.019766673, 0.0003799514, -0.0335913, -0.012011232, -0.0039647105, 0.02521355, 0.014199351, -0.0167555, 0.010418656, -0.03391249, -0.01034505, -0.0061361003, -0.026538465, -0.0029476031, 0.011750264, -0.019980801, -0.035277557, 0.02105144, 0.016420927, 0.0039513274, -0.03147679, 0.023219485, 0.006376994, 0.0045569073, -0.0057078446, 0.02767602, -0.00037848763, 0.024423953, 0.0017280784, 0.011101189, -0.0071732816, 0.02664553, 0.0016477804, -0.027836615, -0.018254396, 0.010779997, -0.010599327, -0.015256607, -0.00049266126, 0.029790532, 0.012158445, 0.0016712007, -0.009421624, -0.010532412, -0.0076015373, 0.015229841, 0.008959911, -0.00918073, 0.010452114, 0.015390437, 0.02431689, 0.009301177, -0.010766614, -0.024932507, 0.045689523, 0.01410567, 0.025507975, -0.023353314, 0.030807639, 0.025173401, -0.017812757, -0.010010475, 0.0070193773, -0.01710346, -0.0074007926, -0.02565519, 0.023513911, 0.024932507, -0.033323642, 0.007989644, -0.027127318, 0.026725829, 0.0001386394, -0.02826487, 0.028050743, -0.016086353, -0.0113822315, 0.001549081, -0.0055539403, 0.016367394, 0.011549519, 0.02338008, -0.0021278951, -0.0063067335, -0.0067918664, -0.0054334933, 0.038890965, 0.025427679, 0.013757712, 0.011817179, 0.0005185908, 0.01088037, -0.013490052, 0.011703423, 0.0021178578, 0.010458806, 0.0012956406, 0.0027217653, 0.0069256965, 0.01845514, -0.0036301357, 0.015711628, 0.007829049, -0.012586701, 0.023661124, 0.017357737, -0.06006285, 0.024919124, -0.0026414674, -0.008263995, 0.0051256847, 0.024611315, -0.010612709, -0.013115329, 0.03640173, 0.014520543, 0.012834286, 0.010545795, -0.006376994, -0.017384501, -0.019927269, -0.0058818236, 0.0056543127, 0.0076149204, 0.0021747355, 0.02010125, 0.0060424195, -0.01647446, -0.6158316, -0.021948101, 0.018334694, -0.013229084, -0.012707148, 0.026873041, 0.020301994, 0.023192719, -0.037017345, 0.0062364726, -0.011000817, 0.016956246, 0.019565929, -0.018481907, -0.00891307, -0.013864776, 0.0020208312, -0.03816828, -0.014533926, 0.007146516, 0.011148029, 0.0022199033, -0.032119174, 0.0017029853, -1.4572297e-05, -0.024464102, 0.0010062334, 0.009287794, 0.008886305, 0.024932507, -0.009267719, 0.02700687, -0.018843248, -0.02225591, 0.058296297, -0.023072273, -0.008518272, 0.026136976, 0.008618644, 0.026043296, -0.026324337, -0.026725829, 0.021613527, -0.010666242, -0.0043762373, 2.0636464e-05, 0.0096759, -0.0154305855, 0.01822763, -0.018776333, 0.0117904125, 0.024223208, -0.018067034, -0.01903061, -0.0039847847, -0.009488539, 0.007969569, -0.028452232, 0.0067651006, -0.006587776, -0.0049583972, 0.003096489, -0.019217972, -0.01334284, -0.021667058, 0.01383801, 0.027729552, -0.01047888, 0.010271444, -0.007875889, -0.0080431765, 0.024597934, -0.002050943, -0.0005328102, 0.017116843, 0.03053998, 0.024209825, -0.01965961, -0.007962878, 0.012051381, -0.0016494533, -0.00667142, -0.0148685, -0.019565929, 0.031985343, -0.016487842, -0.023433613, -0.0024005736, 0.014988947, -0.013730946, -0.004854679, 0.03067381, -0.00046589528, -0.026003147, -0.009066975, -0.0078625055, -0.020395674, 0.03517049, 0.02234959, -0.024423953, -0.02794368, -0.008003027, 0.03053998, 0.012526477, -0.0061561745, 0.013931691, -0.014855118, -0.009689284, 0.031342957, -0.03305598, -0.0010664569, 0.015470735, -0.015497501, -0.0047308863, -0.012265509, -0.021506462, -0.009488539, 0.007420867, 0.00479111, -0.04376237, 0.012466254, 0.016139884, 0.013095254, 0.009528688, -0.032574195, 0.011134646, 0.025066337, -0.015203075, 0.003029574, 0.01016438, -0.011984467, -0.0155510325, 0.0130283395, -0.0023336585, 0.009488539, 0.0013265887, 0.009756198, 0.0030596857, 0.0030513213, -0.030914703, -0.016233565, -0.0015867206, 0.03573258, 0.007969569, -0.0026632147, -0.0125599345, 0.0121517535, -0.0078022825, -0.006320116, 0.021011291, 0.015631331, -0.011977775, -0.017638778, 0.00041926393, -0.021841036, -0.018013502, -0.030647043, -0.0021078207, 0.0077019096, -0.024597934, 0.008518272, 0.003978093, -0.047482844, 0.03294892, -0.008337602, 0.015791927, 0.014721287, 0.0093279425, 0.00037827852, -0.018040268, -0.0034595025, -0.020516122, 0.0018468524, 0.011308625, -0.0060156533, 0.007608229, 0.0048747533, -0.024236592, 0.005102264, -0.00859857, -0.015537649, -0.014962181, 0.0024022465, 0.020087866, 0.00452345, -0.0039847847, 0.00037179614, 0.014159202, -0.0213191, 0.04052369, 0.0043662, 0.009515305, 0.008524964, 0.011027582, 0.0027184195, -0.012680382, 0.023580825, 0.018789716, 0.0036702845, 0.016514607, 0.019445483, 0.009060283, 0.008210463, -0.02212208, 0.034688707, -0.015229841, 0.0031416565, -0.03000466, 0.02767602, 0.021386016, 0.013469978, -0.020770399, 0.011268476, 0.005791488, 0.01805365, 0.014078904, -0.010612709, 0.02261725, -0.0015264971, -0.020864079, -0.0027167466, -0.013945074, 0.0050052376, 0.002551132, 0.0036468643, -0.012379264, -0.00600227, -0.01742465, -0.0106997, -0.018281162, -0.028371936, -0.0038743753, 0.023406846, 0.030084958, 0.011884093, 0.0006390377, 0.0005938701, 0.0044264235, 0.013945074, 0.0025394221, 0.023861868, 0.012339115, -0.0071866647, -0.028371936, 0.00537327, 0.00788258, 0.022831379, -0.0030730688, -0.0064840578, 0.0388642, 0.0010773306, 0.012613467, -0.0061996696, -0.00016519627, -0.011549519, 0.0027502042, 0.0054870252, 0.031316195, 0.036615856, 0.014426862, -0.008116783, 0.0044398066, -0.009274411, -0.023005357, 0.010050625, 0.029469341, 0.0040818113, -0.007106367, -0.0032972337, -0.012412721, 0.004617131, -0.0023085654, 0.007949495, -0.010298209, 0.0084179, 0.018254396, -0.005249477, -0.0020275228, 0.012573318, 0.014346563, -0.00685209, -0.053505186, 0.018548822, -3.9626193e-05, 0.0032202816, -0.011281859, -0.006189632, -0.0070126858, -0.010599327, 0.032440364, -0.0049717803, 0.0053598867, -0.016996395, 0.014252882, 0.018562205, 0.0056710416, 0.043682072, 0.015778543, -0.005145759, 0.008217155, 0.016153267, -0.023888635, -0.019887121, -0.009455081, 0.036482025, -0.005319738, -0.019110907, 0.0008259813, 0.00024403042, -0.0026615418, -0.012466254, -0.0068019037, -0.03980101, -0.006842053, -0.020623185, -0.024490869, -0.00044623902, -0.018187482, 0.027234381, 0.0016084679, -0.014199351, -0.020449206, -0.027863381, 0.028880488, 0.11177472, 0.0019254774, 0.0006202179, 0.012861052, -0.023125803, -0.008090016, -0.010298209, -0.027783085, 0.0044632265, 0.017652161, 0.0062933504, -0.0028104275, 0.022670783, -0.01836146, 0.0067918664, -0.013603807, -0.024557784, -0.0059186267, -0.020703483, -0.013155478, -0.011603051, 0.011469221, 0.009890028, 0.030432915, -0.0047576525, -0.0006938243, 0.022296058, 0.06364949, 0.026431402, 0.010846912, 0.032493897, -0.027261147, 0.00023043834, 0.012546551, 0.004115269, -0.018441757, -0.0057346104, 0.01450716, 0.023273017, -0.0015264971, 0.031503554, 0.019606078, 0.010953976, -0.02570872, -0.0034628483, -0.027207615, 0.011944317, 0.016621672, 0.01513616, -0.031342957, 0.030352619, -0.014801585, -0.016367394, -0.002408938, -0.002261725, 0.008023102, -0.002393882, -0.0074944734, -0.013931691, -0.008337602, 0.0037806942, -0.02826487, 0.021064823, -0.02082393, -0.03910509, -0.0348493, -0.0075480053, -0.005229403, -0.015216458, -0.0059755044, 0.004613785, -0.041728158, -0.0361876, 0.0023738076, 0.018602354, 0.013021648, 0.012713839, -0.005597435, 0.0037070878, 0.01460084, -0.010057316, -0.0014403441, -0.03201211, -0.00940155, 2.2949735e-05, 0.009635752, 0.009682592, -0.008371059, 0.0069256965, 0.0061528287, 0.038757134, 0.0024273396, 0.009515305, -0.0010422003, 6.153038e-05, -0.01397184, -0.015350288, 0.0009777946, 0.00088244077, -0.024517635, 0.010913827, 0.011884093, 0.019231355, -0.032574195, 0.0021429511, -0.019311652, 0.01899046, -0.0206901, -0.014908649, -0.007621612, 0.004553562, -0.0167555, -0.013329457, 0.0040383167, -0.0020894192, 0.016742118, -0.0071866647, -0.014279649, -0.011141337, -0.02548121, 0.0009234262, -0.017344354, 0.020596419, 0.0018368152, -0.014881883, 0.0019606077, 0.014172585, -0.014132435, -0.021774122, 0.0067918664, 0.011997849, 0.022670783, 0.018348077, 0.0021345867, -0.016648438, -0.02458455, -0.0113287, 0.03193181, 0.021747356, -0.038676836, -0.025052954, -0.0044297692, -0.0012119969, -0.021104973, 0.009903411, -0.027568957, -0.0028823612, 0.041085776, -0.009240953, 0.033778664, -0.0029325474, -0.0038007686, -0.0070327604, -0.026899807, -0.0060792225, -0.056315616, 0.0025327306, -0.014520543, 0.011449147, 0.0087324, 0.031075299, 0.0110142, 0.011603051, -0.0029308745, -0.008933145, 0.010291518, 0.01607297, 0.022175612, -0.032761555, -0.021894569, 0.026765976, 0.02364774, -0.047322247, 0.020583035, -0.035116963, 0.015336905, -0.0139049245, -0.015256607, -0.028371936, -0.027234381, 0.022108696, 0.009341326, -0.014011988, 0.006604505, -0.02633772, -0.0047676894, 0.049811482, -8.427101e-05, 0.0053632325, 0.015470735, 0.017919822, -0.011348774, 0.0043059764, -0.013162169, 0.018160716, -0.0016502897, -0.0148685, -0.0148685, 0.008632028, 0.005968813, 0.00819708, -0.0041052317, 0.019499013, 0.012700456, 0.016313862, 0.0009685938, 0.017371118, -0.019338418, -0.008819389, -0.013878159, -0.01397184, -0.014092287, -0.0024440682, -0.012265509, -0.006122717, 0.0016594905, 0.0067149145, 0.0066446536, -0.036883514, 0.004931631, 0.0055071, 0.0003611316, 0.022202378, -0.0036134068, 0.021225419, 0.0193518, -0.00038957043, -0.038676836, -0.0038609921, 0.008310836, 0.0015658096, 0.019780057, 0.02135925, 0.0014896939, -0.015658097, 0.026591998, -0.025962997, -0.010733156, -0.038623303, 0.016153267, 0.02807751, -0.008324219, -0.025119869, -0.01750495, 0.018174099, 0.0350099, 0.011435764, 0.031155597, -0.0021329138, 0.016273715, -0.028478999, 0.015323522, 0.0097963475, 0.009053592, 0.0076483777, -0.010385199, 0.0004138271, -0.018281162, -0.03128943, 0.041540798, -0.024651464, 0.017919822, 0.013811244, 0.032681257, 0.021667058, -0.010759923, -0.022429889, -0.017344354, -0.009669209, 0.02395555, -0.005386653, 0.015644714, 0.0030630315, 0.014252882, -0.005684424, -0.021934718, -0.005436839, -0.0056308922, -0.023045506, 0.0038208433, 0.018307928, -0.0024139564, -0.014721287, -0.003770657, -0.016193416, -0.019820206, -0.007976261, -0.023460379, 0.028184574, -0.0087993145, 0.006842053, -0.0070729093, 0.0019639535, 0.0058282916, -0.016635055, -0.019110907, 0.0050989185, 0.009749507, -0.0452345, 0.006333499, 0.028693127, 0.012814212, 0.0049383226, 0.012787445, 0.020087866, -0.020181546, 0.019860355, -0.0119577, -0.0324136, -0.028131042, -0.0013198972, -0.0073071118, -0.0034963058, 0.021439547, -0.007380718, 0.0061695576, 0.01397184, -0.030031426, -0.014159202, 0.013797861, 0.0038944497, 0.013215701, 0.026351104, -0.009020134, -0.008879613, -0.011114572, 0.013864776, -0.018776333, -0.016514607, -0.02073025, -0.0037974229, 0.009709358, -0.009823114, 0.013931691, -0.024704996, -0.025842551, -0.015189691, 0.025842551, 0.020797163, 0.0032520662, 0.033511, 0.006510824, -0.0039011412, 0.013664031, 0.0035096887, -0.017130226, 0.01047888, 0.0033022524, -0.017545098, -0.0042490987, 0.013516818, 0.060116384, -0.012586701, -0.034421045, -0.022804612, -0.012874435, -0.034421045, -0.0020609803, 0.0018970387, 0.0099770175, 0.04330735, 0.011355465, -0.012593392, 0.023165952, -0.0065710475, 0.03214594, -0.022724314, -0.00292251, -0.0059085893, 0.032306533, -0.0029593133, 0.0006929879, -0.041594326, -0.022108696, 0.0029676778, 0.0070729093, 0.021265568, 0.018883396, 0.0067918664, -0.029389042, -0.015738394, -0.03219947, 0.00014930396, 0.008076633, 0.0034628483, -0.03201211, -0.016461076, -0.0027150738, 0.0094483895, 0.0034293907, -0.005453568, 0.010184454, 0.026658913, 0.013322765, 0.016849183, 0.002208193, -0.0051691793, -0.02570872, 0.028157808, 0.00047007747, -0.032226235, 0.024249975, 0.011716806, -0.036080536, -0.016889332, 0.012238743, -0.0053933444, -0.024504252, -0.0006239818, -0.019217972, 0.031690918, 0.0033524386, -0.0026883078, -0.012800829, 0.0015097684, 0.0022265946, 0.010679625, 0.008036485, 0.025735486, -0.0006867146, -0.03525079, -0.003307271, 0.023125803, 0.004841296, -0.0089197615, -0.030807639, 0.004734232, -0.019873738, -0.003360803, -0.00362679, -0.0148685, -0.036856752, 0.0038844123, -0.0029325474, -0.033377174, -0.02145293, 0.19560575, -0.00022416505, 0.010124231, 0.04370884, -0.014426862, 0.0018936929, 0.010652859, 0.0046907375, -0.008076633, -0.0040951944, 0.0067550633, 0.029415809, -0.017973354, -0.00040378986, 0.008765858, -0.043414414, -0.029844064, -0.015537649, -0.024236592, 0.045609225, 0.008083325, 0.0035364546, 0.010331667, -0.016782267, 0.014279649, -0.007059526, -0.021747356, 0.044110328, 0.002673252, 0.0009761217, -0.010311592, -0.01706331, 0.020890845, -0.007374027, -0.005704499, 0.005460259, 0.011716806, -0.014828351, 0.0162068, 0.030058192, 0.04330735, -0.00035193076, 0.023928784, -0.011255093, -0.0045569073, 0.0061862865, -0.000886623, -0.027568957, -0.0062264353, -0.014774819, -0.047027823, -0.034769002, 0.018883396, 0.028907254, 0.023165952, 0.0021613527, 0.02378157, 0.007942803, 0.005584052, -0.015644714, 0.013516818, 0.027073786, -0.005249477, 0.03412662, -0.030620277, 0.023661124, 0.00076743076, 0.0037271623, 0.022215761, -0.0065677017, -0.0139049245, 0.008337602, -0.013336148, -0.028586064, -0.013945074, -0.02893402, 0.036428496, 0.004771035, 0.009167347, 0.0043695457, 0.0007590664, -0.016822416, -0.0047944556, 0.009167347, 0.019994184, -0.03120913, 0.013128712, -0.023594208, -0.01656814, -0.042772032, 0.0011459184, -0.0069658454, -0.00232864, -0.043253817, -0.018883396, 0.011890785, -0.007501165, 0.008852847, -0.0139049245, -0.004048354, -0.016407544, 0.023393463, 0.0056543127, 0.007039452, -0.0068453983, 0.001350009, 0.01088037, 0.013336148, -0.006865473, -0.035277557, 0.033564534, -0.015283373, 0.013101946, -0.0041821836, 0.021078207, 0.007822357, -0.020355524, -0.019378567, 0.009956944, -0.0056944615, 0.0079227295, -0.010739848, 0.008277378, 0.008324219, -0.037070878, -0.007902655, -0.030780874, 0.019713141, 0.0017665544, -0.0062063606, 0.0056911157, -0.015992671, 0.0323333, 0.0012546552, 0.008886305, -0.005667696, 0.011047657, -0.030299086, 0.008364367, 0.02002095, 0.022041783, 0.033966023, 0.03027232, -0.008899687, 0.014681138, -0.011040965, 0.011756956, 0.00022395594, -0.015015713, -0.021600144, -0.029576404, -0.0018451795, 0.0058115628, -0.003265449, 0.022684166, 0.008946528, -0.022550335, -0.0066881482, 0.026578614, 0.019485632, -0.035491686, -0.008678868, 0.035411388, -0.013369606, -0.040898412, -0.011964392, -0.16862565, 0.022603868, 0.026632147, 0.0007523749, 0.041139305, 0.0012329078, 0.0128476685, -0.010137614, 0.009140581, -0.036642622, 0.018843248, -0.027568957, -0.008806006, -0.014788202, 0.030192021, -0.014226116, -0.030807639, 0.01656814, 0.012693765, 0.027916914, 0.02271093, 0.026177125, 0.009843188, -0.035518453, 0.005189254, 0.057386253, 0.016661821, -0.0025561508, 0.0019806824, -0.011275168, -0.003320654, -0.018829865, 0.015122777, 0.01204469, 0.020837313, -0.0016879294, -0.0059587755, 0.016313862, -0.021225419, 0.032681257, 0.0036200983, 0.0016176688, 0.026043296, -0.0055238283, 0.009368092, 0.026752593, -0.0049684346, -0.014212734, 0.000932627, 0.002418975, 0.0070193773, -0.0022182304, 0.0037204707, 0.03439428, 0.011255093, -4.623927e-05, 0.013570351, -3.71953e-05, -0.0053766156, -0.011395615, -0.017210523, -0.02168044, 0.00940155, -0.0035431462, -0.028586064, -0.028987553, 0.0020593074, -0.0017071675, -0.017049927, -0.009033517, -0.015510883, -0.004985163, 0.03340394, 0.003027901, -0.0011935952, -0.02502619, 0.013222393, 0.0028539223, 0.0033674946, -0.014881883, -0.034367513, 0.041594326, -0.026819509, 0.0030764143, -0.01777261, -0.0075480053, 0.017304204, 0.0060491106, -0.018107183, -0.015229841, -0.011736881, -0.02212208, -0.006651345, -0.018374844, -0.013202318, 0.013295999, 0.0046807, 0.024611315, -0.016300479, 0.0037539282, 0.00024863082, -0.026899807, -0.029362276, 0.00019363512, 0.002604664, 0.013229084, 0.0440568, 0.030754108, 0.031771213, -0.001064784, -0.022309441, 0.012419413, 0.015189691, 0.03067381, 0.017357737, 0.013697488, -0.016849183, -0.009803039, 0.016875949, -0.005436839, 0.015203075, -0.026953338, -0.026150359, 0.005915281, 0.0030780872, -0.005229403, -0.10369139, 0.009555453, 0.012700456, -0.0019555893, -0.027756318, 0.005252823, 0.001250473, 0.010980742, -0.018013502, 0.039479814, -0.026525084, -0.0155510325, 0.006550973, -0.0047308863, 0.014132435, -0.0091004325, 0.015029096, -0.027220998, -0.010646167, 0.0387839, -0.01715699, -0.00483795, -0.020141397, -0.0016126501, -0.024183061, -0.013744329, -0.03120913, 0.037740026, 0.0053130463, 0.012787445, 0.0038308804, -0.007842431, 0.016916098, -0.025789019, -0.01338968, 0.012887818, -0.009515305, 0.0034963058, -0.014145819, -0.021426164, -0.01092721, -0.008625336, 0.010739848, -0.03067381, -0.017344354, -0.011228328, -0.0075480053, 0.0052862805, 0.0065409355, -0.021707207, -0.02807751, -0.007059526, -0.045930415, -0.0052193655, 0.035304323, 0.00918073, 0.020007567, 0.0039379443, -0.03725824, -0.005982196, -0.005139068, 0.0044799554, -0.010947284, 0.0016109772, 0.01876295, -0.0031098719, -0.019954035, -0.0015398801, 0.009608986, -0.02754219, -0.030379383, 0.028238105, -0.01576516, 0.020141397, -0.025160018, -0.0011818851, -0.00046589528, -0.021305718, 0.007661761, 0.016942862, -0.029790532, -0.01715699, 0.00073857367, -0.03525079, 0.013075179, 0.0065543186, -0.018522056, -0.018120566, 0.008397825, -0.03533109, 0.024544401, 0.022041783, 0.015069245, 0.01800012, 0.0022985283, 0.007106367, -0.0041052317, 0.039131857, -0.0072401967, 0.0072067394, -0.014011988, -0.02185442, -0.060491107, 0.013055105, 0.004573636, -0.010425348, 0.011482604, 0.0106863165, 0.018294545, -0.020609802, 0.0035096887, 0.013329457, -0.03273479, 0.022523569, -0.003927907, -0.00043369248, -0.03166415, -0.01679565, 0.011663275, -0.0039647105, 0.0027351482, 0.025534742, 0.01150937, -0.0020576345, 0.033243343, 0.036134068, -0.02208193, 0.007374027, 0.0011810487, 0.03040615, 0.01975329, -0.030165255, 0.022496803, -0.013864776, 0.0020459243, 0.015912373, -0.015203075, -0.0071866647, -0.006564356, 0.025628423, 0.0057847966, -0.0062197438, -0.015631331, -0.018026885, 0.0024156293, -0.016273715, -0.024075996, -0.0062197438, 0.017130226, -0.0023386772, -0.003546492, 0.018174099, 0.016822416, 0.026551848, -0.017852906, -0.019954035, -0.023192719, -0.013918308, 0.004155418, -0.024490869, -0.025119869, -0.017264055, 0.016220182, -0.010666242, 0.018481907, -0.014413479, 0.016340628, -0.011027582, -0.031021766, -0.011663275, 0.030325852, -0.040363092, -0.022336207, 0.004259136, 0.0032989066, -0.018963695, 0.00056250376, 0.006453946, -0.003372513, -0.015403819, -0.02834517, 0.024129529, 0.009568837, -0.020395674, -0.013008265, -0.009642443, 0.006878856, -0.030192021, -0.011924243, 0.022041783, 0.018963695, 0.0065543186, -0.0174648, 0.018977078, -0.012165137, 0.016300479, -0.0060758768, 0.022844762, -0.021667058, -0.02288491, 0.010137614, 0.019271504, 0.03452811, -0.010010475, 0.006022345, -0.007895963, 0.018428376, -0.009803039, -0.02960317, -0.016367394, -0.008605261, 0.013249159, -0.011435764, -0.0125599345, 0.011127955, 0.013429829, -0.020623185, 0.009301177, -0.018682651, -0.016983012, -0.02901432, 0.047134884, 0.022108696, 0.008304144, -0.0022567064, -0.022724314, 0.04204935, 0.0033825503, 0.020837313, 0.012372573, -0.0037806942, -0.00048346046, 0.019405333, -0.0112617845, -0.03147679, -0.016180033, -0.004700775, -0.00020795909, 0.022965208, 0.034956366, -0.009642443, 0.06814618, 0.007179973, -0.0036200983, 0.01706331, 0.014520543, 0.0021462967, 0.009736124, 0.003529763, 0.012573318, -0.0007055344, 0.01249302, 0.009515305, 0.023179336, 0.016273715, -0.028907254, 0.0052193655, 0.0073338775, -0.0012170156, 0.01370418, -0.00017732459, 0.029041085, 0.014520543, 0.029362276, 0.01706331, -0.0020593074, -0.013730946, 0.0054334933, -0.0050052376, 0.008364367, -0.026806125, 0.013476669, 0.011355465, -0.031450022, -0.0061862865, 0.011536136, -0.00922757, -0.012332424, 0.013543584, 0.010639476, -0.0027167466, 0.024825443, 0.013188935, -0.008879613, -0.011830562, 0.005453568, 0.014052138, -0.0040784655, -0.014038755, -0.037632965]" 27188854,Positions chess engines don't understand,https://www.chess.com/article/view/10-positions-chess-engines-just-dont-understand,407,1621288134,193,diplodocusaur,"[-0.009800689, -0.016350092, 0.019146467, -0.019788695, -0.024190644, -0.0014341453, -0.019293644, -0.004224666, -0.033155095, -0.02009643, -0.008442641, 0.023923049, -0.0005866198, 0.007238461, -0.017447233, 0.034466315, 0.0292482, 0.011045009, 0.0115066115, -0.013513578, -0.010054905, -0.0071113533, -0.0030974192, -0.014396644, -0.021528067, 0.017754968, 0.036847916, -0.015948698, 0.0008638321, -0.026987018, 0.038801365, 0.014436783, -0.011513301, -0.019146467, -0.027267992, 0.009191909, -0.008068007, -0.024792735, 0.0065995767, 0.0019768625, 0.038854882, 0.016604308, -0.01648389, -0.017032461, -0.025488483, 0.019695038, 0.0060677305, -0.011412953, -0.010556647, 0.010422849, 0.015105773, 0.0415576, -0.020524584, 0.007485987, -0.015587444, -0.012998457, -0.007974349, 0.016711347, 0.018129602, 0.01338647, 0.023280818, -0.00016076643, -0.0038065475, 0.018142983, 0.0030940743, 0.0024585347, -0.009874278, -0.0034168614, 0.0039503803, -0.011901315, 0.035055026, 0.0207119, -0.018731693, 0.024592036, 0.034466315, -0.024685696, -0.02930172, 0.0030020883, 0.0011916367, -0.012991767, 0.0059406227, -0.025488483, -0.0075528864, 0.015212811, 0.011881245, -0.009820759, 0.010175323, -0.010028145, -0.0143698845, -0.0026124022, -0.0027244578, 0.010844313, 0.0039403453, 0.011152048, -0.02863273, 0.013968491, -0.016309952, 0.008175046, -0.002958604, -0.036205687, 0.01585504, -9.966891e-05, -0.030398862, -0.0031392311, -0.0047264076, -0.0067367195, 0.020016152, -3.091461e-05, 0.012436506, 4.473864e-05, -0.0015671068, 0.003829962, 0.0058302395, -0.025033569, 0.016363472, -0.0099612465, 0.015841661, -0.0151726715, -0.012911488, -0.00028369317, 0.026491966, 0.009954557, 0.001864807, -0.01281114, 0.014931835, 0.006589542, -0.012262569, 0.0002558883, 0.0012786053, -0.0091785295, 0.0061446643, -0.0011071769, 0.014731139, 0.007847241, -0.029622834, 0.015948698, -0.022558311, 0.001766131, -0.001022717, -0.014302986, 0.006990935, -0.0042915647, 0.0071782526, -0.010911211, 0.0034034818, 0.022437893, 0.010188703, 0.018410578, -0.018156363, 0.005442226, 0.0010536577, 0.00917184, -0.014838177, 0.013700895, 0.011299225, 0.0047264076, -0.0020588138, 0.0020153294, -0.022785766, -0.023347717, 0.0070845936, 0.001316236, 0.010670375, -0.00045031324, -0.002473587, 0.02629127, 0.01284459, -0.015493786, 0.017460614, -0.03296778, -0.008790516, 0.017393716, -0.017139498, 0.027615868, -0.005873724, 0.010175323, 0.040754814, 0.01525295, -0.017032461, 0.0068705175, 0.03834645, 0.025876496, 0.038266174, 0.014423404, -0.011479852, 0.008636649, 0.03058618, 0.0020671762, 0.013573787, -0.0135670975, 0.02320054, 0.031255167, 0.001766131, 0.014824797, -0.6375198, -0.021541446, -0.00023686393, -0.0049271043, 0.030719977, 0.009185219, 0.022397753, -0.012255879, -0.0017226468, 0.033288896, -0.002926827, -0.016189534, 0.002261183, -0.001479302, -0.025140608, -0.037061993, 0.024926532, -0.020029532, 0.0016432044, 0.037998576, 0.019119706, -0.00086801325, -0.02314702, -0.0107439635, -0.0069307266, -0.004141042, -0.0060643856, -0.011827726, 0.008803896, 0.024699075, 0.0026943532, 0.022317475, -0.010108424, 0.014690999, 0.053465605, 0.0007438322, -0.022611829, 0.012878039, -0.0060811103, 0.030960813, -0.0015361661, -0.019293644, -0.011934765, -0.020377407, -0.00273951, 0.039336555, -0.010610166, -0.007077904, -0.0051545603, -0.020016152, -0.0006518462, 0.0055726785, -0.00457254, 0.0031208338, -0.014543822, -0.0109848, 0.03361001, -0.019802075, 0.01341992, -0.018022565, 0.019119706, 0.009914418, -0.0500939, -0.010897831, -0.036178928, 0.032405827, -0.01341323, -0.0049505187, -0.014195947, -0.022718867, 0.0040105893, 0.025662418, -0.0052615986, -0.010824243, -0.0011489886, -0.005231494, 0.02380263, -0.01220236, -0.009794, 0.0044655018, 0.009519714, -0.018892251, -0.025796218, -0.027803184, 0.032084715, 0.000103745566, -0.024699075, -0.003829962, -0.029114403, 0.018557755, 0.013259362, 0.026545485, -0.0037396487, -0.016818384, 0.026037054, 0.003612541, -0.011292535, -0.02072528, 0.005800135, -0.01704584, -0.013172394, -0.019414062, 0.0030288477, 0.030612938, 0.013687516, 0.023708971, -0.0047799265, 0.0022444583, 0.06406239, -0.03537614, -0.0044655018, -0.017407095, -0.006840413, -0.007238461, 0.02020347, -0.01890563, -0.011346054, -0.00976724, -0.00062801345, -0.0487024, 0.025408203, 0.007613095, -0.009472885, -0.03542966, 0.016457131, 0.008730307, -0.005923898, -0.022130158, -0.012978387, -0.005378672, 0.012730861, -0.012724171, 0.01639023, 0.006944106, 0.0036259205, 0.004632749, 0.007399019, 0.0048568603, -0.011419643, 0.031362206, -0.0057031317, 0.0031258513, 0.013172394, 0.02005629, -0.013727655, -0.023749111, -0.01216891, -0.0014859919, -0.018731693, 0.009312327, 0.0022126813, 0.0046561635, -0.010422849, 0.02558214, 2.6328376e-05, -0.005231494, -0.004569195, -0.022651969, -0.015319848, -0.018985908, 0.00021867579, -0.0002360277, 0.0075997156, 0.013781174, 0.0049271043, -0.01709936, -0.01402201, 0.011566821, -0.037329588, -0.022223815, 0.0062383227, -0.004151077, 0.018062703, 0.032726943, -0.022317475, 0.009479575, -0.02745531, -0.0029836912, -0.008282084, -0.000831637, 0.014985355, 0.004696303, -0.0044052927, -0.016858524, 0.023749111, 0.017594412, 0.006596232, -0.010268982, -0.033636767, 0.0016507305, 0.012576994, 0.009700341, 0.0061981836, -0.008777136, -0.0020588138, 0.030077746, -0.0030388827, 0.0014073857, 0.008288774, 0.04458143, 0.016564168, 0.0037496835, -0.018156363, -0.00612125, 0.022692109, -0.019320404, -0.004137697, -0.018718313, 0.024364581, 0.020484444, -0.021006256, -0.0043517738, -0.003726269, -0.019387303, 0.014998734, 0.028980605, 0.007860621, 0.012958318, 0.017835248, -0.0062784622, 0.015373368, -0.0115802, 0.032646663, -0.004997348, 0.011667169, 0.033770565, 0.021728763, 0.028525693, -0.012998457, -0.016162775, 0.0050943517, 0.013627307, -0.005974072, 0.002647524, 0.02863273, 0.01704584, 0.039550632, 0.0039838296, 0.03430576, 0.0038333072, -0.01893239, 0.022759007, 0.0047999965, -0.033743806, 0.026505345, 0.01901267, 0.0057633407, 0.0151325315, -0.017193018, 0.035162065, -0.02626451, 0.015145912, -0.013399851, 0.027227854, 0.004375188, -0.026987018, 0.0145973405, -0.0023983256, 0.021153433, 0.0007601388, -0.009546474, -0.006944106, 0.0064958837, 0.009941177, 0.0074792975, -0.02200974, 0.006646406, -0.0016306607, -0.0024518447, 0.010175323, -0.029676354, 0.0028432035, 0.0015804865, 0.00428822, 0.04203927, -0.0026441792, 0.005375327, -0.018450718, 0.031281926, 0.016671207, -0.017754968, -0.04880944, 0.044260316, 0.022197057, -0.01649727, -0.027160956, -0.026318029, -0.0043049445, -0.009238739, -0.012362917, -0.021099914, 0.0341452, -0.014450164, 0.0094461255, -0.012576994, -0.0010678738, 0.028605971, -0.014851556, 0.0033482902, -0.021487927, 0.0143698845, -0.022370994, -0.009272188, -0.010195393, 0.016617687, 0.0075863358, -0.013874833, -0.02935524, 0.0072183916, -0.013159014, -0.014115669, -0.03045238, 0.0029753288, -0.0041343523, 0.00049212505, 0.017300056, -0.029194681, -0.02009643, 0.012831209, -0.00070327474, -0.009620062, -0.032914262, -0.007124733, -0.010683754, 0.10393414, 0.004706338, -0.030880533, 0.0015453646, -0.0141424285, -0.010222153, -0.025087088, -0.035643734, 0.02807078, 0.0022879425, -0.013513578, -0.017340196, 0.010175323, -0.011352744, 0.040433697, 0.004642784, -0.009078181, -0.018999288, -0.009800689, 0.006706615, -0.008208496, 0.033770565, 0.0070310747, 0.0094260555, 0.0061245947, 0.012088632, -0.004626059, 0.008750376, -0.01770145, -0.015975459, -0.017647931, -0.0075662658, 0.018169742, 0.021755524, 0.0020337268, 0.0069842455, 0.009559853, 0.0057800654, -0.0055960934, -0.018504236, -0.0066631306, 0.007399019, 0.0071581826, -0.0023297544, -0.015935319, 0.0022628554, 0.027375031, 0.035590217, -0.006964176, -0.046106726, 0.021528067, -0.018464098, -0.030934053, 0.006633026, -0.008348983, 0.010115114, -0.015359988, -0.004228011, 0.007124733, 0.01222243, -0.0038834813, 0.0013204172, 0.008081388, -0.0023063398, 0.0027562347, -0.025327925, -0.0013781174, 0.0057633407, -0.018169742, 0.028820047, 0.016296573, -0.025782837, -0.03419872, -0.011198876, 0.027040537, -0.00054940727, 0.016898664, -0.025568761, -0.020631623, 0.021206953, -0.002349824, -0.047230627, 0.008061318, -0.04327021, 0.015975459, -0.0091985995, 0.0063252915, -0.006084455, -0.0036158857, -0.0053318427, 0.028338375, 0.0057098214, 0.021702005, 0.026706042, 0.0141424285, 0.020872457, 0.0038266173, 0.023655452, 0.025341304, -0.029114403, -0.002923482, -0.022197057, -0.016162775, -0.02132737, -0.009573233, 0.004947174, 0.010489748, 0.0019969323, 0.008790516, -0.018718313, 0.004388568, -0.026799701, 0.011078458, -0.021019636, 0.0014742846, 0.0135871675, 0.012985077, 0.019159846, -0.0025873152, 0.000845853, -0.034332518, -0.04021962, 0.02495329, -0.0019584654, -0.03045238, -0.022919564, -0.0055358843, -0.003669405, -0.011071769, 0.0034319137, -0.015788142, 0.011152048, 0.012055183, -0.0027545623, -0.0044186725, -0.0030171406, -0.008569749, 0.018999288, -0.022491412, 0.02194284, -0.00428822, -0.0039336556, -0.005368637, -0.020377407, 0.0100013865, -0.029622834, -0.01398187, 0.037677463, 0.0032395795, 0.010864382, -0.016122635, -0.0114865415, -0.016631067, -0.008007798, 0.00917184, -0.019855594, -0.0120618725, 0.012369608, 0.019882355, 0.030880533, 0.025153987, -0.009298948, 0.0009173512, -0.0008947728, 0.0011540061, -0.023601932, 0.010289052, 0.014891696, -0.01525295, -0.004458812, 0.016818384, 0.019788695, -0.019133087, -0.003839997, 0.0016624378, 0.03192416, -0.0059439675, 0.008456022, -0.039925266, -0.03299454, -0.00516794, 0.0029000675, -0.0027512175, 0.006505918, -0.038105614, -0.007820481, 0.04822073, -0.016069116, -0.0009884313, -0.00017571416, 0.00076431996, -0.0023280818, -0.022156917, -0.0054455707, 0.009352467, -0.0061179046, -0.0032613215, -0.042387147, 0.008616579, 0.00024648066, 0.0055927485, 0.020176709, 0.004953864, 0.010215462, -0.009111631, -0.0010921246, -0.022892805, -0.0029067574, -0.001168222, -0.03130869, -0.0086834775, -0.0018129603, 0.010583406, -0.007138113, -0.00428822, 0.003376722, 0.011754137, 0.026692662, -0.037704222, -0.016028978, 0.036981713, 0.000930731, 0.03775774, 0.003779788, 0.04388568, 0.023080122, 0.011038319, 0.015788142, -0.016216295, 0.011198876, 0.0043684985, 0.033904362, 0.004659509, -0.0032261997, 0.0009717066, 0.0039503803, -0.013540338, -0.014905076, -0.032405827, 0.0014349815, 0.00038696834, 0.0060911453, -0.01649727, -0.021728763, -0.010643615, -0.016898664, -0.028258096, 0.018009184, -0.0086834775, -0.016912043, -0.022116777, 0.023521654, -0.0044052927, 0.01341323, -0.0044755368, 0.002073866, -0.022692109, -0.010877762, -0.0068203434, 0.03719579, -0.005171285, 0.023575174, -0.008161666, -0.009332397, -0.014690999, 0.009359157, 0.0061245947, -0.013399851, 0.00093992957, 0.023882909, -0.01036264, -0.0058235493, 0.009693651, -0.012229119, 0.009499644, -0.023695592, -0.010349261, -0.0017310091, -0.0048267557, 0.022812527, 0.013326261, 0.014302986, -0.025782837, 0.0019584654, -0.024163883, -0.011908005, -0.0017527513, 0.009278878, 0.004642784, -0.023387857, -0.00040013908, -0.0066631306, 0.0053485674, 0.02267873, 0.031469245, -0.02935524, -0.01465086, 0.028311616, -0.013955112, 0.015975459, -0.0145973405, 0.017032461, -0.026906738, -0.029328479, -0.02186256, 0.0030572799, 0.0034954676, -0.025475102, 0.02191608, 0.004391913, -0.020297127, -0.005549264, -0.009011283, 0.0028248061, 0.0043551186, 0.02324068, 0.0061914935, -0.0041711465, -0.0061948383, -0.0036493351, 0.0019902424, -0.017139498, 0.0074057085, -0.020243607, -0.00038550494, -0.021675244, 0.011994974, 0.0058168597, -0.016791625, -0.03476067, 0.011272465, -0.0029134473, 0.0021926116, -0.003383412, -0.009901037, -0.007512747, -0.010074975, 0.025194127, 0.021073155, 0.0033666873, 0.012048492, 0.0067969286, -0.006944106, 0.003142576, -0.02253155, -0.013580478, -0.015426887, -0.0426815, -0.027749665, 0.01162703, -0.0025739353, 0.04321669, -0.013098805, -0.00046829233, -0.022665348, -0.0030405552, -0.039523873, -0.016818384, 0.004639439, 0.032619905, 0.038319692, 0.014570581, 0.012684032, 0.038212653, -0.020912597, -0.0012618806, 0.0036292656, -0.007439158, -0.018116223, -0.01095804, -0.011807657, 0.03845349, -0.005840274, -0.015079013, 0.014690999, -0.005987452, -0.021568207, 0.012389677, 0.010523197, 0.010422849, 0.024779353, -0.025167368, 0.01901267, 0.015721243, 0.030853774, -0.024899771, 0.014744518, 0.0012760966, -0.02807078, -0.021635106, 0.0061948383, -0.0019250159, 0.003903551, -0.0022829252, -0.01284459, 0.00047790905, -0.014222707, 0.0019066187, 0.0158818, -0.013968491, -0.023548415, 0.019052807, -0.0023013223, -0.00024334477, -0.005542574, -0.013165704, -0.006780204, 0.012777691, 0.0049705887, -0.0328875, -0.00077937223, -0.013767795, 0.020925976, -0.015600825, -0.023909668, -0.00066397164, 0.0019551204, -0.023708971, 0.019213365, 0.0048434804, 0.009854209, 0.0070979735, -0.011667169, 0.001479302, -0.019895734, -0.0070511443, -0.00028181163, -0.0061546993, -0.010175323, 0.0044922614, -0.0068838974, -0.05549933, -0.0023866184, 0.013901592, -0.009954557, -0.00046912857, 0.1925618, -0.028391894, -0.012570304, 0.026491966, -0.0051010414, -0.0056830617, 0.021046394, -0.0024819493, -0.0005017418, -0.016216295, 0.009419366, 0.0094461255, -0.08921638, -0.00072877994, 0.02324068, -0.00732543, -0.02740179, -0.034466315, -0.0028248061, 0.012349538, 0.0009240411, -0.0024719145, -0.01886549, -0.01286466, 0.012663962, -0.0035690565, 0.0031442484, 0.00974048, -0.003773098, -0.013687516, -0.014383264, -0.007372259, -0.015574065, 0.018183121, -0.01582828, -0.014476922, 0.017982425, 0.01770145, 0.016055737, -0.0015972113, 0.007485987, -0.010523197, 0.00790745, 0.0015846678, 0.010723894, 0.0219027, -0.003216165, -0.016256433, -0.008609889, -0.0022595106, -0.05362616, -0.024792735, 0.0032864087, 0.035724014, -0.009539784, 0.009058111, -0.012095322, -0.009312327, 0.010168633, -0.009947867, -0.012985077, 0.0055860584, 0.00014560965, 0.034867708, -0.010643615, 0.043484285, -0.0128044505, 0.014971974, -0.005606128, 0.014610721, -0.012630513, -0.036312725, -0.030211546, -0.02130061, -0.0063721207, -0.030907294, 0.04080833, 0.0048568603, 0.0056496123, -0.0060643856, 0.015640963, -0.0017878732, -0.02254493, -0.00320613, 0.00014728212, -0.042387147, 0.05207411, -0.0017644586, 0.0030171406, 0.001613936, 0.0094059855, -0.0097337905, -0.008215185, -0.017995805, 0.005442226, -0.019561239, 0.022999844, 0.014222707, -0.010670375, -0.011546751, -0.014062149, 0.026679283, 1.4359745e-05, 0.032111473, -0.00072668935, 0.009880968, 0.00025149807, -0.007753583, 0.002006967, 0.014182568, -0.010670375, -0.029060883, 0.0052080797, -0.019307023, 0.006653096, 0.013152325, -0.01643037, -0.020511204, -0.001192473, -0.0134333, 0.017875386, -0.019199986, 0.0011339365, 0.0067400644, -0.018423958, -0.03650004, -0.026090572, 0.034038164, -0.026746182, -0.012001663, 0.02016333, -0.03585781, -0.007191632, -0.0014659222, -0.00030668965, -0.011954834, 0.01404877, -0.0048668953, -0.0013195808, 0.0034586734, 0.0066765104, -0.0047765817, 0.009660202, 0.03296778, 0.022357613, -0.007793722, 0.006522643, 0.001744389, -0.03171008, -0.016149396, -0.01216891, 0.014356505, 0.014851556, -0.0013145634, 0.0006978392, 0.0011740758, -0.00516794, 0.0066096117, -0.0122425, 0.0091985995, -0.05903159, 0.03481419, 0.014784657, -0.0135670975, -0.015748002, -0.0054723304, -0.16879931, 0.00857644, 0.015640963, -0.027696146, 0.033422694, 0.023842769, 0.028311616, -0.009459505, 0.00095247314, -7.123688e-05, -0.013767795, -0.008850725, -0.019039428, -0.06042309, 0.007191632, -0.0022143538, -0.019026048, 0.03278046, 0.015520546, 0.0019166536, 0.02372235, -0.025421584, 0.0015955388, -0.016925422, -0.007265221, 0.008984523, 0.012878039, 0.016738106, 0.003779788, -0.04947843, 0.00577672, -0.022946324, 0.012677343, 0.00037170702, 0.02067176, -0.0037095442, 0.020845698, 0.0025789528, -0.030158026, -0.007378949, 0.0099612465, 0.038292933, 0.0143698845, 0.0035556767, 0.021835802, -0.007572956, 0.0019735177, -0.026719421, 0.016604308, 0.0016791625, 0.035215583, 0.00395707, 0.0317636, -0.012369608, 0.021113293, -0.01465086, 0.010289052, 0.0035255721, 0.017754968, -0.014490303, -0.013640687, -0.0050943517, 0.015707862, 0.008757067, 0.008315533, -0.012128771, 0.013446679, 0.0044889166, -0.012857969, 0.020377407, -0.0043618083, -0.0014140756, 0.01582828, -0.0151325315, -0.0018163052, 0.011974904, 0.015145912, -0.004823411, -0.009579923, -0.0023264093, -0.036981713, 0.030238304, -0.0036827847, -0.019641519, -0.017540893, -0.020069672, -0.00056738633, -0.024163883, -0.029515795, -0.010329191, 0.023294197, -0.025127228, -0.02986367, -0.008877484, 0.015052253, 0.019039428, 0.027642626, -0.01402201, 0.018263401, -0.009345776, -0.0026491967, 0.020083051, -0.011299225, -0.009807379, 0.043136414, 0.0066597858, -0.0026241094, -0.011392883, 0.050361495, 0.003104109, 0.0058202045, -0.008442641, 0.007151493, 0.042975854, -0.011834416, 0.019842215, -0.011325984, -0.014276226, 0.014664239, 0.0043584635, 0.03593809, -0.012396367, -0.020297127, 0.020952737, 0.0122692585, 0.009914418, -0.113888696, -0.021099914, 0.0030171406, 0.017848628, -0.0041711465, 0.027990501, -0.0089510735, 0.025247646, -0.025354685, 0.04214631, -0.02135413, -0.030291824, 0.0041845264, 0.011519991, -0.0018698244, -0.023561794, -0.0044186725, 0.0008471074, -0.0042581153, 0.037570424, 0.013272743, -0.0031894052, -0.0029117747, -0.026759561, 0.023468135, -0.012108701, -0.014985355, 0.019240124, 0.027910223, -0.0054924, 0.012001663, -0.021608345, -0.0021156778, -0.008369053, 0.013680826, -0.0049003446, 0.028953845, -0.02868625, 0.016510649, 0.0020437615, 0.006271772, -0.010255602, 0.0076398547, -0.013118875, 0.00732543, -0.008027868, -0.036874674, 0.01220236, -0.004823411, -0.009211979, -0.031388965, -0.013306192, -0.036419764, 0.0055057798, 0.03711551, 0.004873585, 0.030559419, 0.018758453, -0.011446402, -0.005191355, -0.0033817396, -0.00243512, -0.02200974, -0.0009374209, 0.013968491, -0.0049070343, -0.020471064, -0.007947589, 0.005452261, -0.011901315, 0.014945215, 0.024779353, -0.013874833, 0.016269814, -0.01096473, 0.010496438, -0.0077402033, -0.01886549, 0.0042213206, 0.040005546, -0.013700895, -0.005482365, 0.011412953, 0.013526958, 0.01157351, 0.009339087, -0.010703824, -0.0015495459, 0.01400863, -0.039363313, 0.0070377644, 0.0055459193, 0.00854299, -0.022023119, 0.008262015, 0.013118875, -0.026532104, -0.0038199273, 0.022357613, -0.0005322644, -0.011660479, 0.009526404, -0.029622834, 0.03304806, -0.018357059, 0.0028833428, 0.010008076, -0.02682646, 0.005438881, -0.001249337, 0.018771833, 0.0009792327, -0.016136015, -0.0014767933, -0.006515953, 0.0056830617, -0.01827678, 0.015774762, 0.01093128, -0.014410024, -0.016376851, -0.018825352, 0.008763757, 0.0058235493, 0.0024284301, 0.008890864, -0.0009817414, -0.009593302, -0.027696146, 0.0143698845, -0.0033750497, -0.006903967, 0.018035945, -0.008021179, 0.008215185, 0.0006714977, -0.014356505, 0.02863273, -0.0051612505, 0.018624654, -0.003408499, 0.061332915, -0.023842769, -0.033797327, -0.0081482865, -0.009840828, -0.012998457, 0.02382939, -0.016403612, 0.0013337969, 0.0071180435, 0.019935872, -0.0025505207, 0.028953845, -0.027053917, -0.029649595, -0.016309952, -0.012028423, 0.0074926773, 2.6622367e-06, 0.015413507, 0.019681657, 0.034974746, 0.027000397, 0.0044186725, -0.029622834, -0.019240124, 0.0051947, -0.011245706, 0.028739769, 0.0011264103, -0.012603753, -0.0011364451, 0.009800689, 0.0049739336, -0.01218898, -0.001567943, 0.0029535866, 0.04814045, 0.012108701, -0.0068638274, 0.005141181, 0.0066765104, -0.003913586, -0.0040674536, -0.015627583, 0.025421584, -0.011058388, -0.0125569245, 0.028445413, 0.002689336, -0.011841106, 0.020564724, 0.02019009, -0.012570304, 0.0070511443, -0.024899771, 0.01763455, -0.015761381, 0.025287785, -0.002410033, 0.026759561, 0.007693374, -0.006455744, 0.022424512, -0.016711347, -0.00016756085, 0.01768807, -0.016095877, 0.0005606964, -0.0022160262, 0.023080122, 0.01890563, 0.014490303, 0.0054020863, -0.005475675, -0.004920414, 0.011740757, 0.012443196, -0.014557201, -0.035697255, 0.0076064053, 0.017875386, 0.009860898, 0.016202914, -0.0042447355, 0.008997902, 0.024685696, 0.012851279, -0.031870637, 0.012262569, 0.0010235532, -0.0077870325, 0.013199153, -0.019721797, -0.004930449, -0.02742855, -0.020537963, 0.008348983, 0.0099813165, -0.016858524, 0.06684539, 0.053358566, 0.0046561635, 0.018771833, -0.03224527, 0.0045524705, 0.016350092, -0.0050876616, 0.008101457, -0.035188824, -0.001036933, -0.028284857, 0.011941454, -0.010202083, 0.008643338, 0.02685322, -0.007679994, 0.006830378, -0.023294197, -0.005241529, 0.023401236, -0.01096473, 0.016845144, 0.002721113, -0.007974349, -0.0027913568, 0.014958595, 0.0032579766, -0.0039336556, -0.0017761659, 0.014410024, -0.0030338652, -0.025970154, -0.011305914, -0.011546751, 0.012650583, -0.00024543534, -0.02076542, 0.026692662, -0.0030572799, -0.00014853648, 0.012643892, -0.021059776, -0.013995251, 0.011352744, 0.0017828558, -0.008803896, 0.00024898935, -0.030425621]" 19386093,Show HN: This Question Does Not Exist,https://stackroboflow.com,274,1552531047,141,yeldarb,"[-0.03988919, 0.01047325, -0.00014402388, 0.0013033118, -0.0075810836, 0.009377833, -0.007460855, -0.010413135, 0.0032044272, -0.0014352293, 0.011201302, -0.016872086, -0.0029155444, 0.0025782364, -0.0147079695, 0.028427392, 0.012844426, -0.006018111, 0.014093468, 0.0030925476, -0.03192738, 0.014801481, 0.016150713, 0.0014936738, -0.016110636, 0.0059847143, 0.012223245, -0.025728928, -0.017379718, -0.0011338228, -0.0063420604, 0.009063903, -0.021066729, -0.02136062, -0.028267087, 0.008095395, 0.0060047526, -0.03585485, 0.0044083833, -0.0042480784, 0.008723255, -0.008155509, 0.0073807025, -0.015830103, -0.004875939, 0.017646892, -0.009471345, -0.012991372, 0.016337736, 0.011134507, 0.0020004709, 0.05236625, -0.038232706, -0.03128616, 0.0209465, -0.008636423, -0.00012826476, 0.004825844, 0.026610605, -0.0036369162, 0.029041894, -0.0012056261, -0.0402098, 0.00046087644, -0.0031710302, 0.0046488405, 0.0018668835, -0.007854938, 0.011481835, -0.003553424, 0.02082627, 0.03353043, -0.03120601, 0.009551497, 0.0144407945, -0.016043844, -0.022723213, -0.017379718, 0.037778508, 0.00083700835, 0.025635418, -0.022282373, -0.022830082, 0.047263213, 0.03711057, 0.0043482687, 0.053702123, 0.03267547, -0.008790049, -0.0051330947, -0.0125171365, 0.02624992, 0.0072604734, 0.018755667, 0.0026066236, 0.0050329044, -0.0281335, 0.002284344, 0.0016990644, -0.0007288861, 0.0101192435, -0.0005681638, -0.0137461405, -0.017740402, 0.008222302, 0.0023511378, 0.0039174496, -0.0024145918, 0.0016164072, -0.007394061, -0.0032144461, 0.039194535, 0.021040011, -0.020866347, 0.013472286, -0.007707991, -0.00022167155, -0.013853011, -0.020144975, -0.018435057, -0.0028804778, 0.03564111, 0.029335788, -0.021707948, 0.015202243, 0.011989467, -0.0022292393, -0.012236604, 0.012998051, -0.00973184, 0.070641, 0.010446533, 0.012196527, 0.024807176, -0.0034565732, 0.017005673, -0.018194601, 0.02898846, -0.027238466, -0.02444649, 0.019183146, 0.007647877, 0.019236581, 0.0004959431, 0.028400674, 0.04354948, -0.016457964, -0.018996125, -0.005827749, -0.003142643, -0.02773274, 0.02834724, -0.0020539057, -0.01058012, 0.013692706, 0.018902613, -0.006505705, -0.015883539, 0.009057224, -0.017860632, 0.0226297, 0.03184723, 0.0027969857, 0.006445591, 0.025087709, 0.017152619, -0.0028337222, -0.027999913, -0.0070600924, -0.010499967, 0.0024780456, 0.021667872, 0.0066259336, -0.006832994, 0.008830125, 0.018248035, -0.0002385787, 0.0035066686, -0.0028220331, -0.0162843, -0.050202135, 0.014547665, 0.01174233, 0.015749952, -0.034545694, 0.017433152, 0.012884502, -0.014133544, 0.0099856565, -0.0013918134, 0.0038573353, -0.00068296544, -0.027385412, -0.009090621, -0.62924993, -0.014761405, 0.022602983, -0.0008102909, 0.013044807, 0.033156388, 0.010012373, 0.0068162954, -0.010019053, 0.015950331, -0.010005694, 0.0029956969, 0.011588705, -0.0061116223, -0.029335788, 0.008856843, 0.031018987, 0.0039508464, 0.023190768, -0.01227, -0.0066392925, 0.014133544, -0.008943674, 0.015896898, -0.0023077219, 0.019089635, -0.005443685, -0.023925498, -0.0068730703, -0.0019737533, -0.01755338, -0.0002957708, -0.017593456, 0.0071669626, 0.06257232, -0.016017126, -0.012764273, 0.016457964, -0.005530517, 0.038660187, -0.016123995, -0.0028955063, 0.051457856, -0.005774314, 0.004465158, -0.011475155, -0.0071870005, 0.0008958703, 0.014414078, -0.0013250198, -0.017566739, -0.017633533, -0.03735103, 0.0049761296, 0.011248057, -0.0020154994, 0.03385104, -0.027011367, 0.0045519895, 0.0059279394, 0.015509494, 0.014013316, -0.04167926, -0.0061383396, -0.017499946, 0.0074541755, -0.007066772, -0.013625912, -0.012603968, -0.0096450085, 0.03662966, 0.008115433, -0.019490398, -0.009331078, 0.0171259, 0.03003044, 0.018635439, -0.0046388214, -0.016391171, -0.020986576, 0.008582989, -0.009030506, -0.008035281, 0.010413135, 0.028721284, 0.02496748, -0.015776668, -0.011501873, -0.0047223135, -0.011668857, 0.030831965, -0.005320117, -0.011248057, -0.0048592407, -0.0034148272, 0.020051464, -0.013652629, 0.027131595, -0.0034966494, -0.013185074, -0.015082015, 0.021186957, -0.015603005, 0.006749502, 0.06599216, 0.0063954955, -0.015482777, -0.007460855, 0.035587676, -0.0046154438, -0.005086339, 0.005086339, -0.01723277, 0.0060114316, -0.015375907, -0.022135427, 0.019583909, 0.0114284, 0.017419793, -0.04667543, -0.0054503647, -0.0015679818, 0.008816767, -0.03903423, 0.017753761, -0.0036369162, 0.026851062, -0.010059129, -0.009077262, -0.008228982, 0.022669777, 0.01501522, 0.010540044, -0.019904518, 0.009878786, 0.008856843, -0.019102994, 0.020385433, 0.018996125, -0.0022192202, 0.005600651, 0.0060882443, -0.0033413542, -0.015028579, -0.0190362, -0.010847295, -0.03048464, -9.940779e-05, -0.0015796707, 0.00697994, -0.0011480164, 0.007280512, -0.020692684, 0.007360664, -0.008322493, -0.0028387317, -0.0021925028, -0.023337714, -0.009665047, 0.012470381, 0.00087416236, 0.033476997, 0.0019487058, 0.0020689345, 0.018141165, 0.012363511, 0.0023528077, 0.0004988653, -0.03280906, -0.020879706, -0.006819635, 0.0025565284, 0.013412172, -0.005487101, -0.009771916, 0.0125906095, -0.010553403, 0.0074942517, 0.00973852, -0.01766025, -0.002093982, -0.0029673094, 0.01206294, -0.016898803, 0.0026684077, 0.021013293, -0.021948405, 0.010626876, -0.018461775, 0.0018869216, 0.007754747, -0.001840166, -0.009384513, -0.0032278048, 0.0057075205, 0.008395966, 0.019904518, 0.026143048, -0.002399563, 0.04285483, 0.014801481, 0.020024747, 0.021975122, -0.0028420712, -0.0010035752, -0.022269014, 0.0013291944, -0.0053902506, 0.03534722, -0.0015053627, 0.016551476, -0.010045771, -0.005443685, -0.023391148, -0.0068797497, 0.010934127, -0.0046788976, 0.004632142, 0.0028337222, 0.019904518, 0.028293805, 0.012343473, 0.033370126, 0.004388345, -0.015723234, 0.011121149, 0.009912183, -0.0074742134, -0.01428049, -0.041198347, -0.0044284216, -0.023417866, -0.0026183126, 0.009999014, -0.00719368, 0.029068612, 0.03235486, -0.008516195, 0.026891138, -0.03678996, 0.00496945, 0.011074393, 0.015215602, -0.015349189, -0.004381666, 0.015429341, 0.04483192, -0.008556271, -0.005744257, 0.019423604, 0.0126908, 0.023351073, -0.014667894, 0.005957997, -0.010232792, -0.029469375, 2.9770155e-05, 0.018889254, 0.02580908, 0.008936996, -0.005353514, -0.030244181, 0.015282395, 0.017793838, -0.005617349, 0.013305303, -0.008970392, 0.01659155, -0.014587741, 0.0064121936, 0.023872063, -0.033156388, -0.01766025, -0.02082627, 0.009291002, 0.0038372972, 0.015603005, -0.009244246, 0.039488427, 0.012330115, -0.00963165, -0.023952216, 0.021654513, -0.00179842, 0.0042080022, -0.02781289, -0.009845389, 0.001830147, 0.021654513, 0.012891182, -0.0062652477, 0.016885445, 0.010112564, -0.014908351, 0.009504741, 0.013231829, 0.034545694, -0.010800539, -0.0036202178, -0.017833915, 0.02074612, -0.011034317, -0.026570529, 0.0010327974, 0.040236518, 0.0024830552, 0.017967502, -0.010272869, -0.0018418359, -0.01596369, 0.003924129, 0.0005034574, 0.0066927276, 0.0056507457, -0.006251889, 0.0125772515, -0.021280468, -0.013338699, -0.023604888, 0.025354883, -0.032194555, -0.042694524, -0.015790027, 0.022148786, 0.034625847, 0.032194555, -0.00066918926, 0.009578215, -0.018702231, 0.006836334, -0.025461754, -0.023230843, 0.018007578, -0.0121764885, -0.0125906095, -0.009023827, -0.0014803151, -0.009845389, -0.010566761, 0.025221296, 0.030591508, -0.0013726102, 0.0031760398, -0.020225128, -0.012784312, -0.010520006, 0.02570221, 0.01301141, 0.03120601, 0.00046254628, -0.01979765, 0.003767164, 0.015041938, 0.018181242, 0.01883582, 0.021173598, 0.037297595, 0.012203206, -0.017099183, 0.030083876, 0.037511334, -0.006706086, 0.0099856565, -0.016003767, -0.00092509255, 0.025181219, 0.0012807689, 0.010419815, -0.020251846, -0.017807197, -0.007908372, 0.0067862384, 0.00824902, 0.0025314807, 0.0040577166, -0.026570529, -0.029469375, 0.0025348205, 0.021881612, 0.02389878, -0.024486566, -0.012203206, -0.01744651, -0.005213247, -0.004485196, 0.0044083833, 0.029175483, 0.010326304, 0.0055772727, -0.029736549, 0.011040997, -0.009524779, -0.008489477, -0.0022776646, 0.0117022535, -0.025007555, -0.021868253, 0.018662157, 0.011194622, 0.013572477, 0.018782385, 0.008783369, -0.0025331506, 0.01343889, 0.0071135275, -0.058030356, -0.014681252, -0.040770866, -0.019824365, -0.0044184024, 0.00060949236, -0.011809124, -0.013472286, 0.0075810836, -0.008709896, -0.009685084, 0.045232683, -0.00899043, 0.018956048, -0.016391171, 0.014641176, 0.017940784, 0.014948427, -0.01617743, 0.002877138, -0.0050829994, 0.003787202, -0.0059179207, -0.0144274365, -0.02082627, 0.026102973, 0.013151676, -0.021427415, -0.01755338, -0.019396886, -0.012884502, -0.005861146, -0.02773274, 0.036095306, 0.020999935, -0.0052199266, 0.03628233, 0.004675558, -0.0010528355, -0.014854915, -0.01924994, 0.0076011214, 0.0148415575, 0.006261908, 0.0074541755, -0.011568666, -0.018782385, 0.006759521, 0.026543811, 0.0064055147, 0.026116332, -0.012323435, -0.0016489691, 0.0009551497, -0.029950289, 0.019276658, 0.003977564, -0.0171259, -0.010520006, -0.021734666, -0.009651688, -0.023925498, 0.008429363, -0.02105337, -0.017646892, -0.03788538, 0.010059129, -0.010419815, -0.004959431, 0.0110075995, 0.016564835, -0.023618247, -0.008509516, -0.000841183, -0.0007606131, -0.00793509, 0.00391077, 0.029148765, 0.034759436, 0.009250926, 0.0101927165, 0.021186957, 0.002169125, 0.0095715355, 0.004939393, -0.013231829, 0.008309134, -0.002950611, 0.009357795, 0.023791911, 0.010566761, 0.014414078, 0.008289097, 0.003680332, 0.0052099074, 0.0027702681, 0.0061082826, -0.009751878, -0.04103804, 0.009825352, 0.01015264, -0.011281454, -0.0054537044, -0.02019841, -0.0007852433, 0.0056941616, -0.023671683, 0.030618226, 0.0037404464, 0.020478943, 0.014040032, 0.018862536, -0.0005886194, 0.025581982, -0.0033046177, -0.020358715, -0.01194939, 0.0073272674, 0.013138318, 0.003984243, 0.014133544, 0.013812934, -0.0005752606, -0.0028955063, 0.00039888354, -0.0077881436, -0.0025531887, -0.007374023, 0.0099856565, 0.0014552674, -0.042240325, -0.010807218, -0.0018869216, -0.021040011, 0.015669798, 0.0013951531, -0.013305303, -0.006716105, -0.036389202, -0.015709875, -0.014080109, 0.023391148, 0.01871559, 0.012416946, 0.018234676, 0.013298623, -0.0028320523, -0.019316735, 0.016738499, 0.0022826742, 0.025581982, 0.022402603, -0.009524779, 0.0010144291, 0.0029823382, -0.029362503, -0.015001862, -0.027545717, 0.03288921, -0.002484725, -0.0063520796, -0.0027953158, -0.03141975, -0.036228895, 0.015108732, -0.023457943, 0.008155509, -0.010747104, -0.016778573, -0.026143048, 0.019129712, -0.03395791, 0.023925498, 0.01871559, -0.015856821, -0.0049761296, -0.0272919, -0.027024725, 0.00032207082, 0.027238466, 0.0048826183, -0.022749929, 0.014307207, 0.023965575, 0.022696495, 0.0023394488, -0.023310997, -0.014667894, 0.028694568, -0.02539496, -0.002835392, -0.017339641, 0.014307207, -0.0050095264, -0.0043516085, -0.019837724, 0.0041645863, -0.022015199, -0.0088902395, 0.00065082096, 0.0024747062, 0.0057809935, 0.0059680156, -0.007013337, 0.002442979, -0.017713686, -0.021400698, 0.003510008, -0.008502836, -0.0018685533, -0.01831483, 1.676365e-05, 0.020492302, -0.0059847143, 0.0075276485, 0.036255613, 0.03441211, -0.027104877, 0.0047657294, -0.014935068, -0.00029055253, 0.009023827, 0.00740742, 0.0069999783, -0.016097277, 0.008429363, -0.019102994, -0.024393054, -0.007834899, 0.007888334, -0.0031827192, 0.019957954, -0.0018501851, -0.0016214168, -0.02222894, 0.009811993, 0.002601614, -0.02433962, 0.028534263, -0.03192738, -0.004041018, 0.011775726, -0.007534328, -0.009270963, 0.0077814646, -0.004555329, -0.0060548475, -0.0033981288, 0.0019821026, 0.0038840529, -0.0078682965, -0.026757551, -0.012249962, -0.029015178, -0.0017165977, -0.0198778, 0.00064038445, -0.0019503756, 0.001543769, -0.013692706, -0.00560399, -0.027786173, 0.01660491, -0.024085803, 0.00772135, -0.0005936289, -0.027385412, -0.03630905, -0.018475134, -0.010413135, 0.0063620987, 0.0064589493, -0.028080065, -0.020585814, -0.021440772, -0.02073276, -0.0072604734, -0.010012373, 0.0030424525, 0.030644944, 0.030912118, 0.015629722, 0.043282308, 0.015482777, 0.0045787073, -0.016471323, 0.002952281, 0.012076299, 0.026583888, 0.0023411186, 0.02222894, -0.022830082, -0.010666952, -0.004064396, 0.0002421271, 0.013946522, -0.0058778445, -0.0089637125, 0.0026316713, -0.014868274, -0.00024838903, 0.027786173, 0.005957997, 0.03206097, -0.046301384, -0.021654513, 0.0053067585, 0.0015913596, -0.0027619188, 0.0008253195, -0.03235486, -0.03924797, 0.00782154, -0.010219434, -0.004942733, 0.005617349, -0.01713926, 0.016217507, -0.026116332, -0.0031777096, 0.029255634, -0.014400719, 0.011194622, -0.021975122, -0.015135449, -0.020532379, -0.01998467, 0.017059108, -0.032461733, -0.008482798, -0.019557191, 0.015696516, -0.016444605, -0.005801032, 0.0012465372, 0.022843441, -0.05648074, -0.005744257, -0.00391411, -0.028721284, 0.011254736, -0.0022609662, -0.017246129, -0.025675492, -0.019022841, -0.00243463, -0.017793838, -0.020318639, 0.029175483, -0.009424589, -0.01745987, 0.046595275, 0.031179292, -0.015576287, 0.0016773564, 0.21844207, -0.007394061, 0.0013592516, 0.0061416794, 0.005470403, -0.008122113, 0.0019754232, -0.018555285, -0.04061056, 0.0029789985, 0.009070583, 0.013218471, -0.03478615, -0.005530517, 0.012470381, -0.01068031, -0.025769005, -0.005657425, -0.041625824, -0.019864442, 0.013672668, 0.011435079, 0.0036870115, -0.0020138295, 0.035133477, -0.006178416, -0.013278585, 0.020452227, 0.006642632, 0.0030057158, -0.020078182, -0.006175076, -0.00058945426, 0.015950331, -0.0026800965, -0.01111447, -0.014146903, -0.0054069487, 0.040663995, -0.0026717475, 0.015790027, -0.01248374, -0.015135449, -0.022589624, -0.00529006, 0.0048492216, 0.0021975122, -0.008402646, 0.0040744147, -0.009765237, -0.02970983, -0.019824365, 0.012416946, 0.016257584, 0.002105671, -0.025207937, 0.0020455567, -0.0068997876, 0.00824902, 0.03788538, -0.022282373, 0.016431246, 0.014961786, 0.02930907, -0.026824344, 0.014307207, -0.033076234, -0.014908351, 0.010693669, 0.004104472, 0.004221361, -0.012470381, 0.00027531522, -0.008709896, -0.003503329, 0.00049970025, 0.005573933, 0.030591508, 0.039515145, 0.007434137, -0.020893065, -0.0053368155, -0.034706, 0.010099205, -0.0072738323, -0.0165114, 0.036549505, -0.006048168, -0.008923637, -0.012503778, -0.0045319516, 0.014667894, -0.0074408166, 0.015309113, 0.0077814646, 0.024072444, 0.009237567, 0.03724416, -0.01851521, 0.00772135, -0.00078232103, 0.043629635, -0.010900729, -0.00030015412, -0.018555285, -0.01395988, 0.0053468347, 0.011735651, -0.00856963, 0.013565797, 0.00666267, -0.035721265, 0.0018000898, -0.01058012, -0.004114491, 0.015603005, -0.005690822, -0.033263255, 0.0014702961, -0.019971313, -0.0042080022, -0.014080109, 0.0011688895, 0.011435079, 0.011688895, -0.0056841425, -0.024780458, -0.021040011, 0.013879728, -0.043228872, 0.0033597224, -0.019851083, -0.006388816, -0.007394061, -0.03377089, 0.0019971312, -0.009785275, -0.032915927, -0.0005364368, 0.012897861, -0.012991372, 0.015496135, 0.019330094, 0.0018735629, 0.000101129815, -0.010105885, 0.032328144, -0.0009259275, -0.010306266, -0.028480828, 0.0152556775, 0.004371647, 0.01915643, -0.034812868, 0.029870136, -0.01998467, 0.024152597, -0.04782428, 0.015282395, 0.016658345, -0.02168123, 0.0036769924, 0.019583909, 0.025728928, -0.028106783, -0.021507567, -0.16853383, 0.023364432, 0.024486566, -0.041278496, 0.019623986, 0.009337758, 0.019864442, -0.006074886, 0.027171671, -0.0047323327, 0.028080065, -0.028293805, -0.0308854, 0.0038339575, -0.0055806125, -0.009137376, -0.013104921, 0.021093447, 0.05941966, 0.012183168, 0.004475177, 0.006201794, 0.02677091, -0.014093468, -0.017566739, 0.02317741, -0.017433152, -0.0050228853, -0.006846353, -0.028080065, 0.016164072, -0.0014702961, -0.008349211, -0.008402646, -0.016471323, 0.007754747, 0.00064706383, 0.0023093917, -0.016858727, 0.011862558, 0.016150713, 0.025728928, -0.008108754, 0.004094453, 0.0087566525, 0.035427373, 0.03703042, -0.00038782085, 0.0076946327, 0.00050387485, 0.024566717, -0.0029188842, 0.005113057, 0.005804371, 0.00022292393, 0.025007555, 0.022656418, -0.0011613752, -0.004772409, -0.0034231765, -0.0035834813, -0.05487769, 0.012109695, 0.009905504, -0.007020016, -0.020225128, -0.010833936, 0.015028579, -0.012129733, 0.0037571448, -0.017353, 0.0031443129, 0.0067695403, 0.02158772, -0.019116353, 0.016431246, -0.0015028579, 0.0022309092, 0.005804371, 0.01301141, -0.0062819463, 0.030110594, -0.010820577, 0.007120207, -0.013505683, 0.009745199, 0.005026225, 0.0058344286, 0.0002957708, 0.018221317, 0.0085495915, -0.03524035, -0.018261394, 0.0062385304, 0.006101603, 0.0037805226, 0.018234676, 0.0027585793, 0.0003738359, 0.004855901, -0.001744985, -0.019410245, -0.004431761, -0.0047189738, 0.01799422, 0.016003767, 0.004425082, -0.008856843, 0.052072357, 0.012356832, -0.030644944, 0.006114962, 0.019076277, 0.012022863, 0.008876881, 0.007808182, 0.01989116, -0.0046588597, 0.013285264, 0.010379739, 0.045232683, 0.0011905974, -0.0005527178, 0.022923592, -0.004708955, -0.020692684, -0.09687756, -0.03128616, 0.016765215, 0.015896898, -0.017379718, 0.02041215, 0.0059513175, 0.02697129, -0.005587292, 0.035454087, -0.05153801, 0.011835841, -0.0029372524, -0.014374001, -0.00047966215, 0.005861146, -0.024513282, -0.00039804864, -0.02126711, 0.016297659, -0.0034732716, -0.04432429, -0.0044050436, -0.034011345, 0.010493288, -0.008923637, -0.012436984, 0.0135524385, 0.008329173, 0.008522875, 0.018528568, -0.019370168, 0.002579906, -0.007360664, -0.021841535, -0.020692684, -0.011047675, 0.010660272, 0.015175525, -0.019837724, -0.019730855, -0.0073807025, -0.0028537603, -0.021253752, -0.0020221788, -0.0029572905, 0.009905504, 0.021080088, -0.010292907, -0.0096450085, -0.029763266, 0.015803386, -0.013051487, -0.021814818, 0.039167818, 0.010499967, 0.043522764, 0.020505661, -0.045553293, -0.013605874, -0.0066559906, -0.032915927, 0.00994558, -0.014694611, 0.008088715, -0.008863522, -0.016164072, 0.011368285, 0.016978955, -0.014641176, -0.018956048, 0.024179315, -0.020144975, -0.0052499836, -0.011795765, -0.013879728, -0.016097277, -0.0030624906, 0.010446533, 0.008796728, -0.0072270767, -0.009691764, -0.0025448394, 0.017780479, 0.014854915, 0.009224208, -0.013372096, 0.005614009, 0.008649782, -0.04197315, -0.02019841, 0.0281335, 0.016150713, 0.0040176404, -0.026062896, 0.00020998265, 0.02898846, -0.016751856, 0.0112881325, 0.013051487, -0.0032695509, -0.021093447, -0.0330228, 0.0022459377, -0.035480805, 0.0018535248, -0.0054537044, -0.01036638, -0.012978014, -0.016030485, -0.0065424414, 0.010266189, 0.003259532, 0.0017299565, -0.0073005497, 0.008068677, -0.0228568, -0.018875895, -0.0016573183, -0.021868253, -0.0047056153, -0.015402624, -0.024366336, 0.0032845796, -0.007734709, -0.008429363, 0.035935003, 0.010072487, 0.0041412087, 0.02773274, 0.01174233, -0.0002421271, 0.032595318, -0.023978934, 0.00038218513, 0.008195586, -0.00963165, -0.006001413, -0.0024747062, 0.029923571, 0.026891138, 0.01957055, -0.011715612, -0.016751856, -0.0029656396, -0.023110615, 0.014293849, 0.010787181, -0.0076411976, 0.014013316, -0.011334889, -0.0054503647, 0.03003044, 0.014053391, -0.015282395, -0.010092526, -0.02264306, -0.031045705, 0.047343366, -0.017299565, -0.011508552, -0.010386419, 0.018568644, 0.0056340476, -0.0024179313, -0.023324355, -0.00044083834, -0.02466023, -0.027866326, 0.016644986, 0.028908307, 0.0048392024, -0.03711057, 0.023671683, 0.009524779, 0.012477061, 0.035480805, -0.0020038106, -0.01565644, 0.0055772727, -0.018568644, -0.0029389223, 0.027492281, -0.027759455, -0.026637321, 0.014788122, 0.010606837, -0.01596369, 0.0029439316, 0.0045887264, 0.012603968, 0.025127785, -0.030190745, 0.018809102, -0.009030506, 0.020612532, -0.022482755, 0.013091562, -0.022910234, 0.017059108, 0.0074875723, 0.034625847, 0.012249962, 0.012256641, 0.0050829994, -0.014374001, -0.04675558, 0.0025748967, -0.013285264, -0.028267087, 0.03203425, -0.0022726553, -0.0068597114, -0.017299565, 0.007681274, 0.012156451, -0.00814215, 0.00045878912, 0.0019386867, -0.0035300462, -0.017860632, 0.014587741, -0.0049928282, 0.015309113, 0.009237567, -0.02877472, 0.026690757, 0.027786173, -0.005340155, -0.019490398, 0.040236518, -0.0072738323, 0.020893065, 0.007848258, -0.029923571, -0.030538073, -0.008436043, -0.018528568, -0.005313438, 0.020064823, -0.012009505, 0.06358759, 0.00037007878, -0.0071669626, -0.012637366, 0.009611611, 0.009297681, 0.0253816, 0.0021841535, -0.008409325, -0.029763266, 0.033263255, -0.0019470359, -0.015830103, -0.04071743, -0.01406675, 0.0053468347, -0.012049581, -0.00814215, 0.020772837, 0.00370371, 0.0035601035, 0.010059129, 0.007981845, -0.014881633, -0.033156388, 0.00039095178, -0.0045519895, -0.036068592, 0.005617349, -0.03743118, -0.010960843, -0.015603005, -0.019757573, -0.004942733, 0.009003789, -0.012457022, -0.012998051, -0.013719423, -3.6475616e-05, 0.029041894, -0.003980904, 0.052553274, -0.022790005, -0.017633533, -0.0030090555, 0.0038439767, -0.02126711, -0.019931236, -0.01947704]" 25832112,'Too negative ': Welsh seaside images (1979),https://www.theguardian.com/artanddesign/gallery/2021/jan/19/welsh-seaside-images-controversy-michael-bennett-in-pictures,152,1611053551,70,bloat,"[-0.007280973, -0.017415864, 0.0077195014, -0.026854677, -0.017972726, 0.031072907, -0.009905186, -0.0044653383, -0.007274012, -0.030655261, 0.00546769, 0.053152494, -0.0031741143, 0.007997933, 0.000112786336, -0.0015374616, 0.02482213, 0.012445869, 0.00023557879, -0.02114684, -0.031017222, 0.0128495945, 0.012376261, -0.0019037725, 0.006971218, -0.0069398945, 0.02526762, -0.02660409, -0.014812533, -0.0166641, 0.014826455, -0.0075037177, 0.0023057573, -0.011457439, -0.02724448, -0.040121917, 0.0041347016, -0.003019237, 0.03970427, -0.006825042, 0.012056066, 0.0021125958, -0.021077232, -0.020325469, 0.0036265648, -0.00322632, 0.030627418, -0.014325279, -0.009111657, 0.00941097, 0.020924095, 0.008645285, -0.00063995644, -0.020088803, -0.0074689137, -0.021536645, 0.0014730744, 0.024501935, -0.0027321049, -0.01326028, -0.005081367, -0.023081936, -0.017861353, 0.017569002, 0.0073505803, -0.01943449, -0.01397724, 0.01926743, -0.0044792597, 0.019156057, 0.024585463, 0.033077613, -0.0020203656, -0.015494689, 0.035861924, -0.016302139, 0.0030279378, 0.0074410704, 0.00033563995, 0.016956452, 0.007246169, -0.0077891094, -0.022692133, 0.03469251, 0.0008653116, -0.025615659, -0.00048855954, 0.008102344, 0.0023736248, 0.0127103785, 0.008290285, 0.030989379, 0.016886845, -0.0068598455, 0.0024936984, 0.021035468, -0.018320765, 0.027689971, 0.00087401253, -0.011339106, -0.0016009787, -0.011130283, 0.008366854, -0.021759389, 0.0014739445, -0.009362245, 0.014394887, -0.009543225, 0.027912715, 0.0063238656, 0.0022465908, 0.03421918, -0.0038214666, -0.01147136, 0.0022744338, -0.030961536, 0.02205174, -0.012355379, -0.0063029835, -0.034386236, 0.02187076, 0.02070135, -0.004148623, -0.009508422, 0.022928799, 0.028622715, -0.023610955, -0.009912146, 0.009926068, 0.00049073476, 0.0077891094, 0.00994695, 0.011144204, 0.013023614, -0.0048516616, 0.015090965, -0.016190767, -0.003054041, -0.033829376, -0.02462723, 0.01639959, 0.019239588, -0.027453303, -0.0022500711, 0.006852885, 0.032409377, -0.0073436196, 0.015842728, 0.0018915911, 0.0025111004, 0.0050744065, -0.013698809, -0.015202337, -0.012383222, -0.004963034, 0.0055164155, -0.016552728, 0.009104696, -0.04839132, -0.045718383, 0.006477003, 0.027829185, 0.0037309765, -0.020200174, 0.032409377, 0.014116456, 0.016260374, -0.008861069, -0.012424987, -0.0092578335, 0.0045001423, -0.010496852, -0.022970565, 0.031434868, -0.009967833, 0.024362719, -0.0080536185, 0.0034351435, 0.0030575213, -0.042154465, -0.033300355, -0.0064456793, 0.012807829, 0.053542297, -0.022747818, -0.010294989, 0.019838214, -0.00076177, 0.0059340624, -0.017596845, 0.013900671, 0.017972726, 0.026896441, 0.009619794, -0.62502205, -0.0063238656, -0.027634284, -0.0055059744, -0.012654692, -0.0007426279, 0.02194037, -0.00048812447, -0.0113669485, 0.010545577, -0.014353122, 0.011854203, 0.007984011, 0.010782244, -0.0008666167, 0.00510921, -0.016608413, -0.008854108, -0.008533913, 0.0058296504, -0.021369586, 0.05627092, 0.009814695, 0.02741154, 0.02731409, 0.006971218, 0.021118997, -0.017276648, -0.004820338, -0.009738127, -0.035806235, 0.02625605, -0.0009936509, -0.010239303, 0.058470525, -0.0052727885, -0.010851851, 0.032966238, 0.012933124, 0.05045171, -0.0073505803, 0.003779702, 0.017708216, -0.010176656, 0.0026572766, -0.017276648, 0.023012329, 0.00085530546, -0.0019124735, -0.011276458, 0.028539184, 0.0048272987, -0.017165275, 0.020367233, -0.014575867, -0.025406836, 0.018098019, -0.039732113, 0.00726009, 0.013002731, -0.008311167, 0.007225286, 0.0030209771, -0.030432517, -0.012612928, -0.0045105834, 0.00044679487, 0.011596655, -0.011680184, -0.00033433482, 0.014826455, 0.016733708, -0.032659966, -0.0034595062, 0.016149003, 0.006584895, 0.028372126, 0.007294894, 0.025559973, -0.0031932564, 0.027230559, -0.004684603, -0.014172141, -0.003099286, 0.031045064, 0.024348797, -0.002114336, -0.0027355852, 0.024975268, -0.010058323, -0.0116453795, 0.0064596008, -0.030432517, 0.005958425, -0.020896252, 0.023318602, -0.00029082995, 0.005787886, -0.009598912, -0.03800584, -0.034247022, -0.011749791, 0.023457818, -0.01961547, 0.024975268, -0.008533913, -0.007963128, -0.0065292087, 0.03600114, -0.035221532, 0.017179197, -0.023165466, -0.019838214, -3.2356736e-05, 0.02831644, -0.032632124, 0.025546052, 0.0010449867, 0.005749602, -0.009939989, 0.017443707, 2.2418595e-05, 0.007482835, -0.0011067635, -0.018571353, 0.028093696, 0.010552538, -0.01692861, -0.031212123, 0.0102532245, 0.019518018, -0.0072322474, 0.054433275, -0.005930582, 0.016998217, 0.026743304, 0.028413892, -0.006264699, 0.014478416, -0.018320765, -0.00985646, 0.001317327, -0.013420378, 0.011979497, -0.023235073, -0.04293407, -0.003287227, -0.0028608793, -0.0047924947, -0.00055251166, -0.04337956, -0.00017934876, 0.010893616, -0.014283515, -0.0075872466, 0.011102439, 0.0019420567, -0.01908645, -0.03538859, -0.016190767, -0.00045810614, 0.00018456935, -0.045467794, -0.007371463, -0.009167343, 0.012557241, 0.0286784, 0.01021842, -0.0064456793, -0.023068015, 0.0015174494, 0.022650369, 0.0034247022, -0.0086313635, 0.00092230295, 0.013503907, -0.01961547, 0.011617537, -0.024404483, -0.002652056, 0.018334687, 0.005248426, -0.015564297, 0.0036787705, 0.009529304, 0.009988715, 0.0031132074, -0.003485609, -0.018780176, 0.013900671, 0.024752522, 0.00042634757, -0.017123511, 0.005359798, -0.010886655, 0.0016314321, -0.010629106, -0.0029235263, 0.0042982795, 0.021369586, -0.0047263675, -0.0011641899, 0.028901145, 0.0046254364, -0.002276174, 0.0035987217, 0.022678211, -0.02749507, 0.031741142, 0.011638419, 0.01747155, -0.009083814, -0.03878545, -0.017095668, 0.013114104, 0.009487539, -0.0029078645, 0.014561946, -0.019169979, -0.00073479704, 0.0018132824, -0.022984486, 0.006327346, 0.02678507, -0.0231237, -0.007134796, 0.016803315, -0.00080832024, -0.0077473447, -0.008513031, -0.027703892, 0.022887034, 0.014012044, -0.0045245048, -0.0038562703, 0.006504846, -5.8840316e-05, -0.015104886, 0.04246074, 0.0032298004, 0.01452018, 0.029374478, -0.0034438444, -0.0045906324, -0.004802936, -0.00024580242, 0.016705865, 0.010051362, -0.017569002, -0.0041799466, 0.0048621027, 0.011408714, -0.009738127, 0.0017628168, 0.01882194, 0.007990972, 0.023221152, -0.011074596, 0.011353027, 0.02320723, -0.013517829, -0.011882046, 0.0080536185, 0.0024362719, -0.0055233766, -0.0057321996, -0.016538806, -0.009988715, -0.010455087, -0.000483774, 0.00018043639, 0.00582617, 0.009877343, 0.0022448506, 0.036418784, -0.017067825, 0.017346255, 0.009543225, 0.01111636, 0.014450572, -0.035165846, -0.026144678, 0.011039793, 0.031880356, -0.020367233, -0.016845081, -0.016023709, 0.016900767, -0.014241749, -0.009369206, -0.011749791, -0.0085617555, -0.030265458, -0.004308721, 0.0031845553, -0.0033115896, 0.010294989, -0.021105075, -0.006800679, -0.0057113175, -0.0032454622, -0.007768227, 0.025128404, -0.015995866, 0.017777825, -0.009793813, -0.031045064, -0.016733708, -0.011241655, -0.019782528, -0.0065187677, -0.021564487, -0.010726557, 0.0055164155, -0.013155868, 0.0026903402, 0.013935476, -0.009828617, 0.0073088156, -0.0057844054, -0.010761361, -0.0061254837, -0.016608413, -0.014081651, 0.14255671, 0.02617252, 0.019754685, 0.017596845, -0.008304207, 0.017332334, -0.022747818, -0.024348797, 0.005154455, 0.024710758, 0.0016505743, 0.0051370533, 0.0036056824, 0.019476254, 0.022288408, 0.0047333282, 0.0040998976, -0.021982133, 0.034274865, -0.015981944, -0.013476064, 0.00049073476, 0.00068868184, 0.040121917, -0.02956938, -0.02553213, 0.03254859, 0.008290285, 0.006532689, -0.008394697, -0.014380965, 0.018098019, 1.450615e-05, 0.016329983, -0.011534007, 0.01048293, 0.016051551, -0.0042425934, 0.034720354, -0.015063121, 0.01389371, -0.0061011207, 0.008345972, -0.020033116, 0.017123511, -0.013183711, 0.008025776, 0.018654883, 0.0019751205, -0.028789774, 0.038674075, 0.006511807, -0.008680088, -0.013253319, 0.02061782, 0.012083909, 0.0011032831, 0.004204309, -0.0028991636, 0.027397618, 0.0012303173, -0.03341173, -0.012056066, 0.012257928, -0.0073157763, -0.02104939, -0.017527236, -7.49915e-05, -0.030126242, -0.016510963, 0.017722137, -0.02088233, -0.008742736, 0.00047811837, 0.006640581, -0.013211555, 0.023624877, -0.020283705, 0.010107048, 0.010274107, 0.008443423, 0.032771338, -0.016956452, -0.019671155, -0.00259985, 0.015773121, 0.011840281, -0.030265458, -0.014868219, 0.012661654, 0.017429786, 0.018139785, 0.0038214666, -0.016914688, 0.017457629, 0.017805668, -0.0054537687, 0.032827023, 0.008666167, 0.006031513, 0.043045443, -0.007392345, 0.0058992584, -0.012675575, 0.0041347016, -0.0046706814, -0.016190767, 0.017596845, 0.0057635233, 0.016803315, -0.002589409, -0.033467416, 0.015731355, 0.016371747, -0.010469008, 0.028483499, -0.021425271, 0.016413512, 0.021480957, -0.0056869546, 0.0056869546, -0.019281352, 0.009835578, -0.0015383317, -0.02097978, 0.0055233766, -0.020464685, -0.016886845, -0.024682915, -0.01541116, -0.007837835, 0.0035848, 0.016524885, -0.026938207, -0.029235262, -0.018975077, 0.0044026915, 0.006466562, 0.00091795245, -0.014812533, -0.010998027, 0.00653965, -0.008283325, 0.005213622, 0.0043783286, -0.024933502, -0.006692787, -0.027648205, 0.00977293, 0.0141930245, -0.007124355, 0.023597034, -0.021717625, 0.02965291, -0.021550566, -0.035945453, -0.011255576, -0.013371652, 0.016093316, 0.030850163, 0.02168978, 0.02070135, 0.015271945, 0.009821656, -0.009090775, 0.0016679761, 0.02025586, 0.002876541, -0.023332525, 0.019866057, 0.016497042, 0.009912146, 0.025852326, 0.0066719046, 0.009933028, 0.02464115, -0.001675807, -0.016859002, -0.021982133, -0.0061324444, -0.023694485, -0.013587437, -0.01460371, 0.0050500436, -0.02401468, -0.010016558, 0.02642311, -0.006407395, -0.007865678, -0.019587627, 0.028511342, -0.02581056, 0.045217205, -0.0007552443, -0.014039887, 0.028205069, -0.02993134, -0.034274865, -0.012021261, -0.0015278906, -0.0014391406, -0.018585274, 0.00077743176, -0.02920742, -0.009807735, 0.020840567, -0.017889196, 0.0045453873, -0.017026061, -0.005213622, -0.011868125, -0.02526762, -0.037476823, -0.020102724, -0.0031340898, 0.0067275907, 0.005133573, 0.022636447, -0.004416613, -0.02015841, -0.0026155119, -0.023791935, 0.034720354, 0.030404674, 0.040623095, 0.01460371, -0.005001318, -0.010705675, 0.019072529, -0.010733518, 0.00618465, 0.016107237, 0.022831349, 0.011861164, 0.009285676, 0.005001318, 0.026116835, -0.033940747, -0.020395076, 0.02571311, -0.0023440416, -0.0032541633, -0.02884546, -0.018446058, -0.013197633, -0.004876024, -0.04006623, -0.012619888, -0.0029287469, -0.03691996, 1.3302969e-05, 0.011534007, -0.027912715, 0.011582733, 0.0150492, -0.024571542, 0.0035308541, 0.0038110253, 0.0042565153, 0.02652056, -0.028594872, 0.004973475, -0.0397878, 0.0051753377, 0.027564676, 0.0055338177, 0.016900767, -0.022984486, 0.013963318, 0.030042714, -0.02678507, -0.01245979, 0.0009527563, 0.03691996, -0.0022117868, -0.0020882331, -0.01174283, -0.03995486, 0.028330361, -0.0016053292, 0.020812724, -0.0020830126, -0.027133109, -1.3466112e-05, 0.007858717, -0.025239777, -0.0036230844, 0.016413512, -0.008248521, -0.00977293, -0.016121158, -0.01943449, -0.023054093, 0.008366854, -0.017596845, -0.0047020046, -0.024432328, 0.028594872, -0.028344283, 0.02419566, -0.008380775, 0.009779892, -0.018780176, -0.0072322474, -0.026464874, 0.009028127, 0.023778014, -0.00031105973, -0.016190767, 0.003369016, 0.015731355, 0.028650558, -0.01801449, -0.0031114672, -0.0059096995, -0.019100372, -0.016914688, -0.0076916586, -0.04067878, 0.013315966, -0.015258023, -0.005144014, 0.0072531295, -0.004649799, 0.006821561, -0.007803031, -0.016650178, -0.014367043, -0.020325469, -0.011429596, 0.0058922977, 0.022873113, -0.005269308, -0.025866248, -0.009487539, -0.035722706, -0.01478469, 0.030989379, 0.009877343, 0.013956358, -0.0044305343, 0.0015635645, 0.036585845, 0.008464305, -0.00076133496, -0.009313519, -0.00922999, 0.018891549, -0.011485282, -0.010420283, -0.023750171, 0.02831644, 0.026812913, -0.012592046, -0.029096048, 0.015968023, -0.028205069, 0.0036752902, -0.00043156816, 0.023583112, 0.019323116, -0.00726009, 0.015480768, 0.015258023, -0.0030610017, 0.004340044, -0.0036892118, -0.024501935, 0.023235073, -0.004319162, 0.025908012, 0.000109197186, -0.014812533, 0.0023336005, 0.021383507, -0.0051822984, 0.006504846, 0.016455276, -0.0198939, -0.00555818, 0.01281479, 0.005258867, 0.016483119, -0.0042704367, 0.02696605, -0.043128975, -0.024752522, 0.014353122, -0.0017636869, -0.005481612, 0.024153896, 0.013343809, -0.0016288218, -0.0022622524, 0.0053423964, -0.0107404785, 0.0053772, -0.0124319475, 0.046442304, 0.024432328, -0.003369016, 0.007977051, 0.01692861, -0.02581056, -0.025309384, -0.010594303, -0.03502663, -0.0050222008, -0.013239398, 0.008833226, 0.0247386, 0.005867935, 0.009995676, -0.02904036, -0.019782528, -0.033383887, -0.0067484733, -0.0043887696, 0.009654597, 0.017596845, -0.010162734, 0.010984106, -0.0066371006, -0.0024345317, 0.00017924, -0.02366664, 0.0027373256, -0.039759956, -0.01971292, 0.022511153, -0.02759252, -0.001353001, 0.0033028887, 0.0073993057, -0.0031079869, 0.00010490108, 0.21439193, -0.008735775, -0.026729383, 0.017012138, -0.007768227, 0.010002636, 0.021703701, 0.0056138667, 0.007928325, 0.027564676, -0.015759198, -0.0050222008, -0.014074691, 0.0030679624, 0.0030523008, -0.022678211, -0.04232152, -0.023248995, -0.01674763, 0.019824293, 0.023109779, -0.02490566, 0.0057983273, -0.003127129, 0.01854351, -0.008582638, 0.019044686, -0.0013878049, -0.008610481, 0.006522248, 0.0002679899, -0.009278716, -0.0068494044, 0.015912335, -0.010782244, 0.0010702194, 0.002660757, -0.011631458, 0.02517017, 0.01191685, -0.0069955806, 0.016371747, 0.026102914, 0.014450572, -0.0063551893, -0.004127741, -0.00689813, -0.009083814, 0.009021167, 0.0068946495, -0.040623095, -0.007816953, 0.034247022, 0.008171952, 0.0036544078, -0.026743304, -0.0033655355, 0.014882141, -0.0005925361, -0.0042321524, -0.024877816, 0.011151165, -0.022525074, -0.004308721, -0.024307033, 0.023903308, -0.010079205, 0.003288967, 0.0051022493, -0.026910363, 0.013664005, -0.0041347016, -0.03764388, 0.011868125, -0.006330827, -0.02956938, 0.01656665, 0.007124355, 0.046581518, 0.035332903, -0.008986363, -0.002794752, -0.008881952, -0.006073278, 0.0016027188, -0.037226234, 0.023610955, 0.003602202, 0.004552348, -0.024613308, 0.0048481813, -0.027522912, -0.008269403, 0.008241559, 0.0094666565, -0.0048168576, 0.007392345, 0.018780176, -0.012661654, 0.009759009, -0.006619699, -0.005704357, 0.026047228, 0.008025776, -0.026562324, -0.017708216, -0.027453303, 0.03519369, 0.008547834, -0.01801449, 0.0067728357, -0.008436462, 0.0035708786, -0.0028452175, -0.003744898, 0.006835483, 0.019058608, -0.029625066, 0.0060419543, -0.007371463, -0.012599006, -0.006386513, 0.01191685, -0.00013834544, -0.0015200597, -0.010441165, -0.016636256, -0.022789584, -0.013309006, -0.025058797, 0.010768322, 0.009939989, 0.020283705, -0.020951938, -0.021982133, 0.007935286, 0.02517017, -0.030878006, 0.007267051, 0.0051648966, 0.010594303, -0.0016470938, -0.008457344, 0.0070373453, -0.0069050905, -0.03160193, -0.0005868805, 0.0027895314, -0.014353122, -0.016984295, -0.0070999926, -0.009459696, -0.0028869822, -0.027522912, 0.025072718, -0.0078447955, -0.0090490095, -0.012675575, -0.010900577, 0.010434205, -0.023402132, -0.000116375486, 0.018571353, 0.00037131394, -0.014798611, 0.006765875, -0.17908686, 0.028413892, 0.025211934, -0.00653965, 0.02884546, -0.025546052, 0.010107048, 0.009703323, -0.017708216, 0.0028278157, 0.0017610765, 0.019866057, -0.014074691, -0.018265078, -0.0069921003, 0.0058226897, -0.025365071, 0.0058296504, 0.0038319076, 0.011784595, 0.016872924, -0.02526762, 0.03182467, -0.02097978, 0.006139405, 0.021828996, 0.016162924, 0.023541348, 0.014380965, 0.023137622, -0.021105075, 0.00043287332, 0.015898414, -0.003981564, -0.0004972605, 0.0018863706, 0.0007678607, 0.0026155119, -0.013817142, 0.024585463, 0.012592046, 0.022455467, -0.014492338, 0.0069120512, -0.007608129, -0.0045732306, 0.008429501, 0.00698862, 0.006953816, -0.02205174, -0.0057113175, -0.02187076, 0.011520086, -0.00059819175, -0.008923716, 0.011234694, 0.015299788, 0.03126781, -0.011039793, 0.010900577, -0.016343905, -0.009404009, 0.0026677176, 5.4136355e-05, -0.0043574465, -0.036697216, 0.010469008, -0.0024971787, -0.01656665, -0.0027425461, 0.001478295, -0.030432517, 0.0041625444, -0.026047228, 0.021383507, 0.009125578, -0.02427919, 0.007329698, 0.008659206, 0.022274487, -0.010107048, 0.055881117, -0.043602306, -0.0039119567, -0.0018254637, 0.009035088, 0.014854298, 0.016510963, -0.004249554, 0.03934231, 0.0062925424, -0.045662697, 0.016232532, -0.022817427, -0.003835388, 0.023638798, 0.0068041594, 0.0077891094, 0.0066614635, -0.010114009, 0.001451322, -0.0056417095, 0.0066162185, 0.01567567, 0.019072529, 0.028358204, 0.0005659982, 0.011770674, 0.0066162185, -0.014798611, -0.0061428854, 0.006341268, 0.0019472773, 0.015508611, -0.02266429, 0.0059201405, 0.0460525, -0.010469008, -0.0038771527, -0.0013242878, 0.047695242, -0.0039572017, -0.010872734, 0.0068389634, -0.0008257222, -0.036056824, -0.098787345, -0.0066510225, 0.018446058, 0.016302139, -0.020854488, 0.024696836, -0.010559498, -0.004886465, -0.0063203853, 0.03268781, -0.011415674, 0.0001694514, -0.012766065, 0.0222188, 0.038117215, -0.03433055, -0.0011006729, -0.017749982, -0.019921744, 0.0048238183, -0.0024240906, 0.010162734, -0.012271849, -0.007858717, -0.021091154, -0.015383317, -0.017763903, 0.03906388, 0.004956073, 0.020144489, -0.0012686016, -0.0012651212, 3.105159e-05, 0.0022779142, -0.009202147, -0.028288597, -0.024891738, 0.014297436, 0.008262442, -0.017708216, 0.014575867, 0.02015841, 0.026478795, -0.026005462, 0.00466024, -0.010413323, -0.022678211, 0.02696605, 0.011840281, 0.0040094075, 0.00277909, -0.00985646, -0.005634749, -0.018835863, 0.04290623, -0.017694294, 0.00025559103, 0.012160477, -0.021105075, -0.0011633198, -0.001818503, -0.0038841134, 0.0027477667, -0.0028782813, 0.019657234, 0.007935286, -0.008304207, 0.00074958865, -0.008589598, 0.00039654676, -0.0254486, 0.015898414, -0.008464305, -0.0004219971, -0.01979645, -0.026645854, -0.022719976, -0.002518061, 0.015369396, -0.026214287, 0.0070408257, 0.0022692133, 0.021815075, 0.006932934, 0.010364597, 0.012146556, -0.001146788, 0.012508516, 0.01656665, 0.007837835, 0.032214474, 0.029541537, 0.037226234, -0.01156185, 0.011513125, 0.021272134, -0.015202337, 0.00047246274, 0.002893943, 0.0065152873, -0.034748197, -0.0035273738, -0.07840619, 0.040845837, 0.028177224, -0.015397239, 0.0021561007, 0.0042530345, 0.0007374073, 0.014081651, -0.010761361, 0.016970374, -0.03984349, 0.028984675, 0.010837929, -0.017026061, -0.0065640127, -0.019392725, -0.002375365, -0.01621861, -0.0024745562, 0.02212135, -0.0042321524, 0.0021543605, -0.015536454, -0.0030749233, -0.02490566, -0.010837929, -0.025017032, 0.032465063, -0.003466467, -0.013322927, 0.03602898, -0.027119188, -0.0016383929, 0.014937827, -0.021021547, -0.0071696, 0.0132881235, 0.016441355, 0.015619983, 0.010984106, -0.027926637, -0.0074689137, 0.008429501, 0.008944598, -0.0118750855, -0.014923906, 0.00056947855, 0.005063965, 0.018752333, 0.02437664, 0.022817427, 0.007816953, 0.019128215, -0.025420757, -0.001783699, -0.0007265311, -0.008833226, 0.00027408058, 5.5196786e-05, -0.022747818, 0.02365272, -0.0006277751, 0.020534292, 0.0012181359, 0.023764092, -0.0069503356, -0.016329983, -0.010712636, 0.0010832709, -0.019573705, -0.010566459, 0.0012346678, 0.010615185, 0.036892116, 0.017722137, -0.03046036, -0.028455656, -0.017527236, -0.0052832295, 0.018627038, 0.00645264, 0.022831349, -0.039175253, -0.0058748955, 0.026283894, 0.009877343, 0.00025863637, 0.010928419, 0.01138087, -0.006504846, 0.0207988, 0.023443896, 0.0025528648, 0.008276364, -0.017388022, 0.022344094, -0.015745277, -0.012675575, 0.0052310238, -0.012285771, 0.01442273, 0.024070367, -0.015981944, -0.016329983, -0.031017222, 0.034776043, 0.0029670312, -0.059806995, -0.0024171297, 0.0012564203, -0.00066953973, 0.01496567, -0.009612833, 0.01299577, -0.0011546189, 0.013831064, 0.02116076, 0.0062229345, -0.015258023, -0.008227638, -0.0039920057, 0.004754211, -0.0054328865, 0.00047246274, 0.03279918, -0.00023035822, 0.00039197874, -0.012125674, 0.010775283, -0.0083529325, -0.0028330362, -0.023875466, -0.01388675, -0.010942341, -0.0010345455, -0.0058644544, -0.0069955806, 0.02409821, -0.035082314, 0.07523207, 0.019239588, -0.016149003, 0.021717625, -0.014380965, 0.04040035, -0.025921933, 0.0009614573, -0.010503813, -0.011965576, 0.012487634, -0.00698862, 5.2042684e-05, -0.032409377, -0.01514665, -0.01890547, -0.0064247972, -0.004695044, 0.008436462, 0.016650178, -0.003567398, -0.0069398945, 0.023583112, -0.009341363, -0.032047417, -0.014144299, -0.018961156, 0.01371273, -0.020311547, -0.02965291, -0.002679899, 0.013733612, -0.025211934, -0.017262727, 0.014575867, -0.040344663, -0.003522153, -0.011192929, -0.018891549, 0.022566838, -0.009598912, -0.009042049, -0.02482213, -0.021397429, 0.0045801913, 0.00027277545, 0.0027825707, 0.008158031, -0.02993134]" 33675224,Putting Z-Library on IPFS,"http://annas-blog.org/putting-5,998,794-books-on-ipfs.html",356,1668895206,129,NKosmatos,"[-0.009627307, -0.023588985, 0.0019084433, -0.04148216, -0.018504433, 0.034424916, -0.01742084, -0.02086611, -0.0045184437, -0.028868027, 0.019060122, 0.0009055989, 0.028062278, 0.009863474, -0.0041537727, 0.00089604803, 0.019129584, -0.0144340135, 0.009891259, -0.015614852, 0.020657727, -0.006637007, -0.020379882, -0.0059771263, 0.00032559884, 0.012968385, 0.03203545, -0.016642876, 0.0040600006, -0.009905151, 0.008168624, -0.009509223, -0.013433774, 0.0013987726, -0.045066353, -0.025464434, 0.0012633235, -0.017837606, 0.0008179043, -0.008474252, 0.018879524, 0.018476648, -0.01356575, -0.02800671, -0.018948983, 0.0035841921, -0.009891259, -0.003657126, -0.004664312, 0.030868506, 0.014447906, 0.020157607, 0.0021064074, -0.010002396, -0.007404552, -0.017684793, -0.0045358087, -0.0012737426, 0.00548048, 0.015420361, -0.0022557487, 0.0006538025, -0.026228506, -0.020977248, 0.009807905, 0.0006529342, 0.015573176, 0.0058694617, -0.020824434, -0.03439713, 0.026020123, 0.02067162, 0.006477246, 0.015892696, 0.017184673, -0.02161629, -0.0059180846, -0.011349942, -0.0067342524, -0.010780361, 0.007404552, -0.01628168, -0.008293654, 0.0010349702, 4.1568117e-05, -0.024255812, 0.036869943, 0.036480963, -0.019379644, -0.007953295, -0.00013555765, 0.0073976056, 0.008634013, 0.012134852, -0.020157607, 0.0015837128, -0.010328864, 0.006348743, -0.013892218, -0.030924076, 0.0113846725, -0.0032629345, -0.017254135, -0.015781559, -0.008251977, -0.021824673, 0.036869943, 0.0050255097, 0.0068071866, 0.022185871, 0.0053901803, 0.015753774, -0.011829223, -0.038759287, 0.008390899, -0.027909465, -9.019088e-05, 0.0021029343, 0.022324793, -0.0130309, 0.0032420962, 0.021005033, 0.022477608, 0.006626588, 0.0061855097, -0.008661797, 0.005883354, -0.008856288, 0.0052964077, -0.016920721, 0.015128625, 0.02524216, 0.0014803894, -0.0039280243, -0.012537726, 0.014822996, 0.011752816, -0.032618925, -0.021005033, -0.028076172, 0.033730302, 0.018962877, -0.017337488, -0.016003834, -0.015184194, 0.034063715, -0.015962157, -0.0002546183, 0.006828025, 0.0048032342, -0.0045879046, -0.0064216773, -0.039898448, -0.021032818, 0.002964252, -0.0045774854, -0.0052825157, 0.014753534, -0.0122112585, 0.00035837578, -0.010419163, 0.023297248, -0.011211019, 0.0024988626, 0.037175573, 0.047400244, 0.024047429, -0.038898207, 0.0039627547, -0.036369823, -0.017879283, 0.011106827, -0.055485517, -0.005039402, 0.014822996, 0.031285275, 0.0105928155, 0.018393295, -0.01140551, -0.011613893, 0.013843594, 0.011106827, 0.009439762, 0.02081054, -0.00796024, 0.007102396, 0.012357127, 0.00023898955, -0.00051791925, -0.010926229, 0.0130378455, -0.016503954, -0.0049421564, -0.013058684, -0.6317069, -0.017587546, 0.009613414, -0.02343617, -0.020004792, -0.0025405393, -0.0024398207, 0.015170301, -0.035925273, -0.006324432, -0.010328864, 0.01842108, -0.009328624, -0.0018598206, -0.015684314, -0.017115211, -0.022477608, 0.006487665, 0.021894135, 0.015753774, -0.015462038, 0.034341563, 0.008008863, 0.0130309, -0.011127666, 0.014489583, 0.02368623, -0.013315691, -0.013301798, 0.01162084, -0.03256336, 0.0072308993, 0.0023408385, 0.005820839, 0.04403833, -0.029618207, -0.020963356, 0.04976192, 0.022699883, 0.046650067, -0.023102757, -0.020227069, 0.040342998, 0.015184194, -0.000738024, 0.007355929, 0.05790276, 0.016128864, -0.022769345, 0.011009582, 0.012218205, -0.0068141324, 0.009974612, -0.026117368, 0.0053623957, 0.028145632, 0.031924315, -0.012245989, 0.012454373, 0.023005512, 0.009106348, 0.004299641, 0.009564792, -0.029090302, -0.017406948, -0.003657126, 0.0066300607, 0.01661509, 0.001828563, -0.0036814376, 0.017073534, 0.012641918, 0.00080053904, -0.009655091, -0.0029729344, 0.02706204, 0.02538108, 0.00518527, 0.012114014, 0.020949464, 0.010259402, 0.009273055, -0.0045809587, -0.0015750302, 0.030451741, 0.03609198, -0.011600002, -0.0061855097, 0.006643953, 0.0088771265, 0.009203594, -0.0030753897, -0.013711618, -0.014322876, -0.0038029945, 0.0141006, -0.011836169, 0.00049100304, 0.019963115, -0.018462757, -0.0120514985, -0.025658926, 0.00801581, 0.0029833536, 0.034980603, 0.0021862877, -0.026589705, 0.00058390724, 0.055735577, -0.034563836, -0.024241919, -0.014906349, -0.012864193, -0.0101482645, -0.007807426, -0.025547788, 0.012982277, 0.013906109, 0.023755692, -0.024450302, -0.0044073057, -0.0028461681, -0.009411978, 0.017643116, 0.010078804, 0.0017104793, 0.0008743414, -0.026367428, -0.022463715, 0.001772126, 0.00767545, -0.028784674, 0.01829605, -0.015531499, 0.02870132, 0.017684793, 0.011252696, -0.0039280243, 0.026478566, -0.008967427, -0.017809823, -0.015253655, 0.009543953, -0.0060882643, -0.0016271259, -0.02850683, 0.00066422165, -0.0021255093, -0.0083006, 0.020754972, -0.013412936, -0.0027298208, -0.007025989, 0.017712576, -0.016267786, -0.0014578146, -0.01369078, -0.01929629, -0.016462278, 0.0027263477, 0.0028895813, 0.0041016773, 0.0057166475, 0.009099402, 0.004080839, -0.022880482, 0.03270228, 0.004928264, -0.021949703, -0.02081054, 0.021727428, -0.024992099, -0.005112336, 0.017309703, 0.009724552, 0.0059944917, -0.0062306593, 0.010676169, 0.004567066, 0.0075156894, -0.0066960487, -0.0050776056, -0.008731258, 0.006119522, -0.0022748506, 0.020282637, 0.023714015, 0.015392576, -0.005494372, 0.0031083836, 0.0061091026, 0.0038134137, 0.008515929, -0.007696288, -0.019977009, 0.014836888, 0.0072586834, 0.009273055, 0.014461799, 0.014920241, 0.0026429943, 0.016462278, 0.015114732, -0.0016279942, 0.0013136828, -0.03734228, 0.0019987428, -0.026575811, 0.0005925899, 0.0041051502, 0.016392816, 0.011898684, -0.0166012, -0.024950422, 0.009182756, 0.02167186, 0.010877606, -0.006588384, -0.021769105, 0.008057486, -0.00062601804, -0.0032021562, 0.023630662, -0.018407188, -0.0025144913, 0.0029798807, 0.017573655, -0.004042635, -0.005303354, -0.01369078, 0.0021289822, 0.021324553, -0.023450064, 0.017156888, 0.008932696, 0.012079283, 0.009425869, -0.01497581, 0.03100743, -0.014517367, -0.020018686, 0.028062278, 0.03281342, -0.013142037, 0.014822996, 0.009113294, 0.017934853, 0.0014604194, -0.031062998, -0.017295811, -0.004018324, 0.023769584, 0.0070711384, -0.003955809, 0.020018686, -0.028923597, -0.001472575, 0.0046504196, 0.008897965, 0.013871379, 0.01315593, -0.0006798504, -0.003764791, 0.005754851, -0.0019640122, -0.019101799, -0.00435521, 0.008481199, -0.0069356896, 0.00022379494, -0.012079283, -0.009342516, -0.0035841921, -0.009738444, 0.01590659, -0.0022227548, -0.003459162, 0.003966228, 0.025797848, -0.0025283836, -0.031924315, -0.029590422, 0.005174851, 0.0018164074, -0.010551139, -0.03609198, -0.0235612, 0.0047511384, -0.0005031587, 0.0021567668, -0.0246309, -0.015656529, -0.012357127, 0.004667785, -0.013537966, -0.028895812, 0.006119522, -0.008529821, -0.009675929, -0.022227548, -0.021963596, -0.031090783, -0.0071822763, 0.009286948, 0.04203785, 0.00526515, -0.004278803, 0.014961918, 0.010099642, -0.009953774, 0.0037439526, -0.007633773, -0.005949342, -2.5301742e-06, -0.003966228, -0.003705749, -0.013086469, 0.018601678, 0.003172635, 0.008870181, -0.010641438, -0.025964554, -0.038120244, 0.00974539, 0.09524504, 0.008821558, -0.0024415571, 0.01685126, -0.0075156894, 0.0018441918, -0.0015394313, -0.043565992, -0.0040738927, 0.0124335345, 0.0060986835, 0.00076146715, -0.0055291024, 0.007807426, 0.015031379, 0.00643557, 0.008258923, -0.019504674, -0.027075931, -0.049956415, 0.017615331, 0.022269225, 0.00048839825, 0.040593058, 0.018337727, -0.006275809, 0.0068870666, -0.003709222, 0.007376767, -0.00514012, -0.031313058, 0.0102107795, -0.015614852, 0.01747641, -0.027867788, 0.021782996, -0.0015541918, 0.015934372, 0.01829605, -0.009537007, 0.005226947, 0.0070051504, 0.013496289, -0.002453713, 0.006487665, -0.0025474853, -0.012377965, 0.03614755, -0.005098444, -0.0082728155, 0.04139881, -0.012044553, -0.030312818, -0.018532218, 0.01256551, -0.0006360031, 0.012968385, 0.014135331, -0.014239523, -0.012287666, -0.012760001, -0.012141798, -0.01592048, -0.006244552, 0.005306827, -0.02136623, 0.022449823, 0.007758803, 0.005063713, -0.020963356, -0.0012832936, -0.030118328, -0.0235612, 0.0138297025, 0.010766468, 0.013093415, 0.008043594, 0.005289462, 0.009981558, 0.0020977247, -0.0036710184, -0.021644074, -0.0004213249, -0.042204555, 0.014628504, 0.00336018, -0.026548028, -0.020046469, 0.006946109, 0.020893894, 0.007876887, 0.013614373, -0.006261917, 0.011454133, 0.033619165, 0.0070537734, 0.018407188, 0.019949224, 0.013954733, -0.013239283, 0.010314971, 0.00084178156, 0.005049821, -0.011440241, -0.0032976652, 0.008578444, 0.008599282, -0.0018667667, 0.013593535, -0.013586588, 0.01137078, -0.014177008, -0.0064147315, 0.013510182, 0.015948266, 0.018087666, -0.009022995, 0.023964075, 0.012454373, -0.017629223, 0.00933557, -0.022477608, 0.021685751, 0.01290587, -0.014836888, -0.00089952105, -0.010828983, -0.023700122, -0.013023954, 0.0007961977, -0.02549222, 0.02700647, -0.015073055, 0.012954492, -0.03209102, -0.006008384, -0.002243593, 0.010808145, -0.014239523, 0.0035494615, -0.005904192, -0.006529342, -0.0106553305, -0.016142756, -0.017059643, -0.024589224, 0.0027784435, 0.010905391, 0.015851019, 0.015698206, -0.012787786, -0.00742539, 0.0022123356, 0.0052095815, -0.0101135345, -0.026784195, -0.0038689824, -0.011787546, 0.02081054, 0.020824434, 0.020588266, 0.003639761, -0.0043795216, 0.025408866, 0.0014612876, 0.0028340123, 0.008592336, 0.021130063, -0.0039349706, 0.0077032344, 0.02318611, 0.013315691, -0.004671258, -0.022310901, 0.0035946113, 0.016795691, 0.0010636229, 0.0031674255, -0.003973174, -0.040009584, -0.00933557, -0.018198805, -0.006960001, 0.02343617, -0.009842636, -0.019407427, 0.022783237, -0.019351859, 0.028159525, -0.0020803595, 0.016392816, -0.014045032, 0.031146351, 0.0210606, 0.023616768, -0.009856528, 0.014149223, -0.020643834, 0.011870899, 0.007994971, -0.020574374, 0.00080791925, -0.0025908984, -0.015573176, 0.035730783, -0.011558325, 0.0072586834, 0.0065536536, -0.015837127, -0.013454612, -0.0065189227, -0.010703953, -0.020727187, -0.012252935, -0.0023008985, -0.0016332038, 0.013676888, 0.0048657493, -0.01547593, -0.0018337726, 0.022144195, -0.0022175452, 0.042371262, 0.015489822, 0.029673776, 0.04162108, -0.005872935, -0.029090302, 0.03025725, 0.0026360482, 0.012766948, 0.017379163, 0.031035213, -0.020282637, -0.02438084, 0.016434493, -0.0026811978, -0.014572936, -0.026964793, 0.0066613182, 0.0035668267, 0.020032577, -0.008703474, -0.013017007, -0.013968624, -0.025297727, -0.02574228, 0.050178688, -0.022797128, -0.01936575, 0.0023443117, 0.017142996, 0.019185152, 0.013114253, -0.033535812, 0.011287427, 0.013899163, -0.013315691, -0.0039453898, 0.03145198, -0.02368623, 0.038453657, -0.018004313, 0.0009932935, 0.0084325755, 0.019560242, -0.025700603, -0.012058444, -0.025672818, 0.03214659, -0.030090543, 0.0029625152, -0.0070051504, 0.00014554268, -0.013350421, -0.017907068, -0.009884313, 0.0025735332, 0.010766468, -0.004542755, 0.024575332, -0.00842563, -0.020852217, -0.010933175, -0.012718325, -0.019685272, -0.021810781, -0.015378685, 0.01779593, -0.045705393, -0.012579403, -0.009293893, -0.01033581, 0.0060326955, -0.013794972, 0.00015476799, -0.022783237, 0.042760246, -0.02336671, 0.026867548, 0.014218684, 0.0072308993, -0.033146832, 0.018740602, -0.011009582, -0.020296529, 0.004146827, -0.01315593, -0.02067162, -0.007098923, 0.019060122, -0.004792815, 0.022033056, -0.012787786, 0.018629463, 0.024672577, -0.0022800602, -0.01936575, -0.02011593, 0.031507548, -0.019101799, 0.008606229, 0.0027749704, -0.022449823, 0.0035772459, 0.007918564, 0.020324314, 0.009641198, -0.026909225, -0.03339689, 0.02475593, 0.0033810183, -0.016378924, 0.007487905, 0.005671498, -0.037925754, -0.001709611, -0.021185631, 0.02788168, 0.017406948, 0.0043274257, 0.037258927, 0.00817557, 0.0046608387, -0.0055360487, -0.008585391, -0.0058347313, -0.029423716, -0.034369346, -0.0023408385, -0.014183953, 0.027728865, -0.011509702, -0.034758326, -0.032841202, 0.0009646408, -0.0424824, 0.032118805, -0.019435212, 0.022005271, 0.04173222, 0.010926229, 0.03278563, 0.014948025, 0.01281557, 0.044455096, -0.0018164074, -0.018962877, -0.014961918, 0.0041398806, 0.019504674, -0.006921797, -0.045816533, -0.0046469467, 0.009425869, -0.023644553, 0.002556168, 0.043204796, 0.015698206, 0.0070780846, 0.015753774, 0.019143475, -0.0027645512, -3.814933e-05, 0.006275809, -0.06001438, -0.004737246, 0.036925513, 0.009300839, -0.002688144, 0.010384432, 0.008557606, -0.02081054, -0.02154683, -0.009446708, -0.023894614, 0.023408387, 0.010301079, 0.044149466, -0.008120001, 0.0075643123, 0.020227069, 0.025922878, -0.022102518, -0.0031188028, 0.011197127, 0.00030454344, 0.00643557, 0.02875689, -0.016920721, 0.022046948, -0.012232097, 0.004671258, -0.01817102, 0.005775689, -0.008884073, -0.03295234, -0.02895138, 0.023200003, 0.031285275, -0.016420601, -0.010294133, 0.008106109, -0.001551587, 0.014253415, -0.0027437129, -0.016212218, -0.017240241, -0.011252696, 0.0077101807, 0.0040495815, -0.035119526, 0.0068905395, 0.012766948, -0.008251977, -0.014697966, 0.23250015, -0.017504193, 0.023588985, 0.027812218, -0.015684314, -0.0008791169, 0.018907309, 0.0018806589, -0.00080661685, 0.0017208984, -0.021352338, -0.005101917, -0.015239762, -0.0072656297, 0.017643116, -0.009154971, -0.041982282, -0.014948025, 0.00493521, 0.017295811, -0.0032959285, 0.011051259, -0.020102039, 0.0151008405, 0.0102107795, 0.0075990427, -0.017323595, 0.01215569, 0.0020282636, 0.0009958983, -0.0073976056, -0.0043795216, -0.009939881, -0.022171978, -0.0017938325, -0.007821319, 0.017309703, 0.0033063476, 0.014420122, 0.013857487, -0.033369105, 0.022005271, -0.018629463, -0.013169822, -0.012016768, -0.018309942, -0.0014291619, -0.013433774, -0.005129701, -0.0020577847, -0.035508506, -0.004171138, -0.020768864, 0.024533655, -0.015656529, 0.0010974852, -0.0032664076, 0.03075737, 0.00058217073, 0.011704193, -0.008793773, 0.017629223, -0.017087428, 0.014934134, -0.026200721, 0.022130301, 0.0039349706, 0.017990422, 0.025728386, -0.01274611, 0.00493521, -0.013968624, -0.02563114, 0.023047188, -0.0052095815, -0.019379644, 0.014239523, 0.0016444912, 0.013412936, 0.01472575, -0.0016618565, 0.002868743, -0.011127666, 0.023005512, -0.011468025, -0.0248115, 0.026673056, -0.009252217, -0.039398327, 0.0056784437, -0.012551618, -0.010231618, -0.00018841319, -0.010905391, 0.0011843115, 0.0178515, -0.0048518567, -0.0013952996, -0.0075226356, -0.020254852, -0.00609521, 0.032980125, 0.035480723, 0.01328096, 0.00018233535, -0.010078804, -0.014197846, 0.013183714, 0.0023269465, -0.011294372, 0.0038273057, -0.012016768, 0.01603162, -0.00730036, 0.0077518574, 0.020602157, 0.0061160484, -0.011516648, 0.00730036, -0.0018876051, -0.025353296, -0.018629463, 0.006897486, 0.001828563, -0.0052095815, -0.020546589, -0.03095186, 0.00087998516, -0.0051574856, -0.017837606, 0.031090783, 0.0070919767, 0.015281439, 0.0060257493, 0.0048240726, -0.026506351, 0.0073073064, -0.016684553, -0.009842636, 0.01590659, -0.005945869, 0.0035164675, 0.004351737, -0.017837606, 0.019282397, 0.0087798815, 0.02850683, -0.0083700605, 0.00075148215, -0.027534375, -0.025853416, 0.0079255095, -0.02850683, -0.015962157, -0.0027298208, -0.028479045, -0.019449104, -0.03734228, 0.008904912, -0.0027350304, -0.038064674, 0.012808625, 0.021255093, -0.018935092, -0.009717606, -0.00999545, -0.17859834, 0.01472575, 0.023964075, 0.013669942, 0.018282158, -0.020713296, 0.004282276, 0.0011278744, -0.014107547, -0.002460659, 0.005817366, 0.0006594462, -0.0036328149, -0.0307018, 0.00089952105, 0.020157607, -0.024366949, 0.01017605, 0.039703958, -0.0008782486, 0.042204555, -0.015628744, 0.014267307, -0.0067411982, 0.018560002, 0.017198564, -0.009078564, 0.008043594, 0.01406587, -0.027673297, 0.002658623, 0.00896048, 0.0061507793, 0.0062237135, 0.0086548515, 0.019838085, 0.013968624, -0.0030632338, -0.014197846, 0.03139641, 0.025311619, 0.038953777, -0.0031344316, -0.014559044, 0.0022088625, 0.0034365873, 0.012329343, -0.014142277, -0.0004970809, -0.018782279, -0.005369342, -0.013176768, 0.0015880541, -0.0038550904, 0.0076268273, 0.027048146, -0.013961678, -0.0077171265, 0.004466348, -0.022713775, 0.019212937, -0.017184673, 0.0020022157, -0.031090783, -0.0033775454, -0.026520243, 0.0032264674, -0.008988265, -0.020657727, 0.016490063, -0.015878804, 0.0039453898, -0.0029468865, 0.0016714074, 0.0047893417, -0.0020664674, -0.018601678, -0.012489104, 0.026172938, 0.0014769164, 0.0058520967, 0.020907788, 0.0105928155, 0.0040495815, -0.0069773663, 0.0050289826, -0.0023200002, 0.0054110186, -0.012114014, -0.00080053904, 0.011850061, -0.01074563, 0.0069252704, -0.006973893, 0.00061212585, 0.016684553, 0.022560962, 0.004285749, -0.002207126, -0.013287906, 0.017518086, 0.013878325, -0.00018255242, -0.0025075453, 0.05317941, 0.01899066, -0.012919762, 0.011586109, 0.03178539, 0.0051331744, -0.023408387, 0.02524216, 0.012287666, 0.005035929, -0.008967427, 0.01735138, -0.006452935, -0.019699164, 0.012718325, -0.009134132, 0.067182764, -0.008946588, -0.030979645, -0.014961918, -0.015198085, -0.011037366, -0.11469415, 0.0039141322, 0.0011530541, -0.009432816, -0.00896048, 0.023255572, -0.008745151, 0.018143235, -0.012544672, 0.037231144, -0.010453894, -0.024450302, -0.0079880245, -0.0020022157, 0.01590659, 0.030034974, -0.0028010183, -0.01917126, -0.013843594, 0.019101799, 0.011419402, 0.011857008, -0.028840244, -0.017740361, -0.0030024555, -0.010516409, -0.029729344, 0.027798327, 0.0137671875, -0.026034014, -0.002691617, -0.005633294, -0.00029759735, -0.0064251507, -0.014253415, -0.01899066, -0.011572217, -0.0015541918, 0.0056437133, -0.012773894, -0.0043308986, 0.0015880541, 0.015462038, -0.013864432, -0.0053346115, -0.019643595, -0.0014777846, 0.02261653, 0.034980603, -0.0053380844, -0.01153054, -0.018837847, -0.024603117, 0.0015238025, 0.043677133, -0.008092216, 0.0010679642, 0.00261521, -0.024353057, 0.006664791, -0.010106588, 0.0074740127, -0.016823474, 0.01779593, 0.0086548515, 0.002335629, -0.0037370063, -0.0046261083, 0.010412217, -0.0077657495, 0.0003086677, 0.006029222, -0.020657727, 0.012294612, -0.011912576, -0.006980839, -0.018573895, -0.017823715, 0.02556168, 0.00021750003, 0.018198805, -0.01447569, 0.006393893, -0.025339404, 0.0053380844, -0.028437369, 0.025839524, 0.020463236, 0.004897007, -0.033091262, -0.013718564, 0.015587068, -0.010759522, -0.014920241, -0.010363594, -0.007744911, -0.003073653, -0.0006416468, -0.036119767, 0.030423956, -0.029729344, 0.0045635933, -0.06101462, 0.020032577, 0.0039940123, -0.024255812, -0.0016236529, -0.015989942, -0.017615331, 0.005695809, 0.0010097906, 0.014392337, -0.04423282, 0.00896048, -0.011155451, -0.008251977, -0.013419881, -0.022102518, 0.014204792, -0.0048831142, 0.034480482, 0.022074733, 0.0294515, 0.029534854, 0.016337248, 0.018851738, -0.008279761, 0.0020039524, -0.023922399, 0.011648624, -0.0023755692, -0.0053485036, 0.012683595, -0.017504193, -0.034813896, -0.016253894, 0.014239523, -0.01661509, -0.0056506596, 0.015434253, -0.004462875, 0.047594737, -0.038175814, -0.018115452, 0.007036408, 0.007293414, -0.0005031587, 0.0062306593, 0.023769584, -0.013336528, 0.017698685, -0.0061160484, 0.03664767, 0.023700122, -0.019560242, -0.030535093, -0.007348983, 0.0035668267, 0.03509174, -0.0065085036, 0.0015463774, 0.0019744313, 0.026047908, 0.02438084, -0.003162216, -0.004514971, -0.012551618, -0.03281342, -0.025770063, -0.010662276, 0.017212458, -0.053735096, -0.03414707, -0.017504193, 0.006463354, 0.0016106289, 0.007994971, -0.008363115, -0.024714254, 0.0026429943, -0.00896048, 0.012058444, 0.014107547, -0.022255331, -0.011072097, 0.0016358086, 0.021102278, -0.0003640195, 0.01297533, 0.009064672, 0.020199284, 0.015114732, -0.033980362, 0.015462038, -0.0068106595, 0.020074254, -0.00265515, -0.014684074, 0.0012094912, 0.013614373, 0.0028374854, 0.0020473655, 0.022408146, -0.011058205, 0.011933414, -0.02061605, -0.029923836, 0.003893294, -0.02049102, -0.031035213, -0.0069982046, 0.022505391, 0.009405031, -0.002842695, -0.0042023957, 0.017698685, 0.02067162, 0.035063956, 0.016990181, -0.0043447907, -0.019185152, 0.03134084, 0.021074494, 0.020991141, 0.014767427, -0.022977727, 0.031674255, -0.010328864, 0.0025735332, -0.003907186, 0.01961581, -0.010613654, -0.014628504, 0.02536719, -0.029395932, -0.0027628148, -0.0043864674, -0.011815331, -0.0080505395, -0.0008179043, 0.0068141324, 0.059291985, 0.032174375, -0.005431857, 0.007932456, -0.03425821, -0.010044073, -0.00030128745, 0.021699643, 0.0026238926, -0.027242638, 0.0057687433, 0.016017726, 0.020310422, -0.028979165, -0.011148504, -0.004094731, -0.01867114, 0.002806228, -0.010384432, 0.01472575, 0.024825392, -0.0075226356, 0.014739643, 0.007251737, -0.025228266, 0.007939402, 0.0390927, -0.021088386, 0.009912097, -0.029868267, 0.030868506, 0.018907309, -0.023894614, -0.028868027, 0.0029347308, -0.003478264, 0.004723354, -0.0077032344, 0.020129822, -0.027701082, -0.0020734135, -0.007876887, -0.005622875, -0.030479524, 0.01635114, -0.023033297, -0.008988265, -0.0061264676, -0.024575332]" 15467695,Purism Collaborates with Cryptocurrency Monero to Enable Mobile Payments,https://puri.sm/posts/purism-collaborates-with-cryptocurrency-monero-to-enable-mobile-payments/,117,1507916263,31,petethomas,"[0.014343376, -0.0070138425, -0.0014574998, -0.05062045, -0.0030179424, 0.02997697, -0.021727813, -0.028714204, -0.00902466, -0.02520042, 0.03357311, 0.015976736, -0.005939805, -0.030224033, -0.009635455, 0.0026147494, 0.024610214, -0.013169827, 0.010685472, 0.0022595965, 0.0046839016, 0.0032049553, -0.03607119, -0.004062813, -0.0095531, -0.0008801617, 0.007981505, -0.008599163, -0.004478016, -0.018763058, 0.027520066, -0.002973334, -0.00092991744, 0.0003898962, -0.029373039, -0.019023847, 0.010095266, 0.0069760964, 0.005812842, -0.021906247, 0.017884612, 0.0034468712, 0.0010337182, 0.0030642666, -0.03667512, -0.0035583926, 0.0011984268, -0.012325696, 0.00065668987, -0.016017914, -0.0066501107, 0.0017723334, -0.016113995, 0.0037882985, -0.036565315, -0.031047575, 0.0012541875, 0.006197162, -0.019243458, 0.033902526, -0.0018340992, 0.029812261, -0.031047575, 0.025186693, 0.012737467, -0.01603164, -0.01725323, 0.018488543, 0.005908922, 0.00038432013, 0.009450157, -0.005548622, 0.020767013, 0.010905083, 0.00854426, 0.0054250904, -0.01255217, -0.005792253, 0.0059432364, 0.0018015006, -0.0045157615, -0.010850181, -0.005884902, -0.012682565, 0.014027685, 0.0026198965, 0.024788648, -0.0044196816, 0.008228568, -0.01831011, 0.020492498, 0.013828661, 0.011714901, 0.015249274, -0.022592533, 0.02356706, -0.0004525198, 0.018474817, -0.032035828, -0.011474701, 0.020149356, 0.014796325, -0.018131675, -0.009717809, -0.026339654, -0.0072471793, 0.00043471926, -0.03450646, 0.029867165, 0.0162238, -0.016237525, 0.025461208, 0.0014214697, -0.023786671, 0.0061045135, 0.013375713, 0.030855415, -0.017719902, -0.0039633014, -0.006221182, 0.016717926, 0.019888567, 0.028824009, 0.025131792, 0.03132209, -0.016251251, -0.020121904, -0.022619985, 0.023388624, -0.0005468841, -0.023992557, -0.006485402, -4.6404726e-05, -0.008413865, 0.015592417, 5.5331802e-05, -0.046063513, 0.014357102, -0.016086543, -0.027533792, 0.021274865, 0.029455392, -0.021467024, 0.013965919, 0.0065849135, 0.016402233, -0.0025358265, -0.003326771, 0.0062898104, 0.0035789812, 0.026216123, -0.0062863794, -0.0073844367, -0.0027468596, 0.0058162734, 0.02455531, -0.0033593697, 0.04315366, 0.020506224, 0.005030476, -0.015866932, 0.012394324, -0.009951146, 0.0026336224, 0.024294522, 0.046722345, 0.02616122, 0.012751193, 0.0060873562, 0.022167036, -0.015812028, 0.025090614, -0.04254973, 0.00405595, 0.022084681, 0.009642317, 0.011570781, 0.006972665, -0.0018032163, -0.025763175, 0.013581599, -0.010253112, -0.0049206703, 0.03823985, -0.0045706644, 0.0075011053, 0.025721997, 0.011515878, 0.016484588, 0.008894266, -0.006972665, 0.013361988, 0.002822351, -0.015331628, -0.62325746, -0.03933791, -0.016566943, 0.009614866, -0.016470863, 0.008077585, 0.008153077, 0.0044128187, -0.015043388, 0.021618007, 0.00400791, -0.007672677, 0.0037677097, -0.02474747, -0.017870886, -0.013924742, 0.017431663, -0.021027802, 0.021727813, 0.0038534955, -0.017266953, 0.013965919, -0.0010714639, 0.0056481333, -0.0014926719, -0.0046427245, 0.005133419, -0.031816214, -0.014988485, -0.007219728, -0.03302408, 0.0117423525, 0.006883448, -0.0008398424, 0.040326163, 0.00062966737, -0.008379552, 0.03823985, -0.009724672, 0.035220195, -0.015990462, -0.0005498866, 0.01917483, 0.01298453, -0.009916832, -0.008379552, 0.026888683, 0.0074256137, -0.0021858206, 0.015578691, 0.0020245435, -0.02301803, -0.00081324886, -0.0038946727, 0.018323835, 0.008681517, 0.029647553, -0.03302408, -0.0075903223, 0.010987438, -0.017033616, -0.0029047052, -0.016759103, -0.044581134, -0.040573224, -0.0017320141, -0.011104107, -0.00023119258, 0.006595208, -0.01946307, 0.01644341, 0.024843551, -0.008997208, -0.007700128, -0.012806095, 0.026559265, 0.008983483, -0.024720019, 0.009429568, 0.015633594, 0.0025118066, -0.023045482, -0.006029022, -0.0065505994, 0.03458881, -0.008516808, -0.013622776, -0.026820054, 0.026476912, 0.03189857, -0.009498198, -0.0019902291, 0.010404095, -0.02542003, -0.005960393, 0.019902293, -0.021274865, -0.0036922183, -0.005950099, -0.011948238, -0.009223683, -0.010211934, -0.00086257566, -0.0033713796, 0.040408514, -0.0010122717, -0.01255217, 0.0009856782, 0.028604398, -0.06149122, -0.00025907293, -0.017417938, -0.009498198, 0.014137491, 0.006794231, -0.03033384, 0.038733978, -0.0008274035, 0.006780505, -0.04348308, 0.029290684, -0.0057304874, 0.010795278, 0.0036476098, 0.006945214, -0.011261952, 0.036126092, -0.02683378, 0.012483541, 0.011728627, 0.014302199, -0.017692452, 0.006063336, 0.00034507315, 0.011666861, 0.020094452, 0.009518786, -0.019243458, 0.006883448, -0.0026044552, -0.019531697, -0.0035343727, 0.0068079564, -0.011769804, -0.01747284, -0.052267537, -0.005840293, 0.0054422473, 0.0047559617, -0.0063138306, 0.013217867, -0.019161103, -0.0150982905, 0.018927766, -0.008571711, 0.013355125, -0.0038432013, -0.0063412823, -0.013876702, -0.0030968653, 0.011406072, 0.012963941, -0.025557289, 0.003199808, -0.0039152615, -0.009786437, 0.01946307, 0.017486565, 0.01859835, -0.032667212, -0.023676865, 0.0017311563, -0.00029510295, -0.008907991, 0.00069572235, 0.0391732, -0.012895313, -0.005716762, 0.0019816507, -0.008269746, 0.014343376, -0.020725835, -0.039804585, -0.010383506, 0.0066775624, -0.018200302, 0.021686636, 0.003393684, 0.0067736423, 0.01240805, 0.005582936, 0.008777597, 0.015784577, 0.00015366371, -0.0107129235, -0.015125742, 0.017747354, -0.0046976274, 0.033737816, 0.017747354, 0.011769804, 0.015729673, 0.004759393, -0.025543563, 0.0013785769, -0.04027126, 0.030635804, -0.030498547, 0.0024500408, 0.016690474, -0.0038603584, -0.004378504, -0.032502502, -0.031651508, -0.005541759, 0.044169363, 0.0016402234, 0.008805049, 0.006574619, 0.013396301, -0.0068010935, -0.006526579, 0.023031756, -0.032502502, 0.008516808, 0.023100385, 0.00480057, 0.0077413055, 0.008873677, -0.015537513, 0.00078322383, -0.0038466328, 0.0054731304, 8.069221e-05, 0.012627661, 0.0062863794, 0.010733512, -0.016059091, 0.026106317, -0.00410399, -0.007219728, 0.023827847, -0.004121147, 0.006337851, 0.0037677097, -0.009408981, 0.03395743, 0.018186577, 0.012998256, 0.025516111, -0.019751308, 0.007597185, 0.00029403064, -0.009196231, 0.014741422, -0.016017914, 0.023072934, -0.0046530184, 0.02215331, 0.042357568, 0.00422409, 0.0030762767, -0.0056275446, -0.00037080888, -0.004807433, 0.009916832, 0.03137699, -0.021343492, -0.001425759, -0.015400256, -0.012332559, -0.011495289, -0.0010500175, -0.013101199, -0.021055253, 0.024376877, -0.019531697, 0.0015853206, 0.014027685, -0.008489357, -0.028741656, -0.019984646, 0.02234547, 0.015427708, -0.011364895, -0.024047459, -0.033545658, -0.016210074, 0.02244155, 0.01917483, -0.000655832, -0.0064819707, 0.007274631, -0.00424811, -0.012373735, -0.015702222, 0.017582646, -0.01173549, -0.0077962084, -0.05215773, -0.011584506, 0.009964872, -0.016580667, -0.03892614, 0.047161568, 0.01394533, -0.004114284, 0.0047971387, 0.009964872, -0.007912877, 0.00969722, -0.004910376, 0.002798331, -0.010987438, -0.0032581424, 0.008887403, -0.012874724, -0.0062349075, 0.042741887, 0.02741026, -0.008935443, -0.029263232, -0.029455392, -0.019408166, 0.09898988, 0.0031637782, 0.0017423084, 0.0091619175, -0.015002211, -0.013142375, -0.022098407, -0.032200538, 0.037169248, 0.009491335, -0.0017260092, 0.0060667675, -0.026627894, 0.013780622, 0.024994534, 0.0071167853, 0.0019747878, -0.011193324, -0.016786555, -0.011968827, 0.024925904, -0.016457137, -0.0048280214, 0.015249274, -0.0017071363, 0.011611958, 0.044636037, -0.002899558, 0.0035034898, -0.018639525, 0.008084448, 0.008125626, -0.010651158, -0.030718159, -0.034835875, 0.028467141, 0.0004915523, 0.023100385, -0.017157149, 0.024321973, -0.0061800047, 0.02347098, -0.0040593813, 0.0102805635, 0.0070756082, -0.029373039, -0.0382124, 0.02045132, 0.0038054555, -0.004910376, 0.011426661, -0.0015089712, -0.035082936, -0.014027685, -0.008187391, 0.0060427478, 0.006859428, -0.004278993, -0.052047927, -0.013917879, -0.0040593813, -0.023814121, -0.01298453, -0.013492381, -0.013739444, 0.0015450012, 0.0007540567, 0.008338374, -0.007226591, 0.009484472, -0.011220775, -0.020396419, -0.029675003, 0.03552216, 0.015592417, 0.0043167383, -0.0046358616, 0.0053701876, 0.022812145, 0.022318019, 0.009395255, -0.012037455, 0.017637549, -0.01360905, 0.0077756196, -0.006310399, -0.011872747, -0.023182739, -0.027149472, 0.029153427, 0.0064716763, 0.0030093638, 0.014988485, 0.01564732, -0.030306388, 0.014288473, 0.011968827, 0.0073432596, 0.003953007, -0.00506479, 0.023635687, -0.001780912, 0.0016402234, -0.005878039, -0.0002376265, -0.0015415698, 0.0026010238, 0.033490755, -0.0035172154, 0.0061319647, -0.02738281, -0.014974759, -0.010287426, 0.030471096, 0.01399337, -0.0024157264, -0.0011649703, 0.012963941, -0.009477609, -0.024829825, 0.00405595, 6.069341e-05, 0.020012097, 0.030965222, 0.0067599164, 0.0029853438, 0.012737467, 0.0063824593, -0.029016169, -0.0014300484, -0.009758986, 0.02644946, 0.004258404, -0.02741026, -0.008249157, -0.0033662326, 0.008715832, -0.015331628, 0.0017114256, 0.0056996047, -0.0001889431, 0.013711993, -0.0062177507, -0.0069349194, 0.0065300106, -0.03192602, -0.021068979, -0.00417605, -0.023361173, 0.008242294, -0.018255206, -0.0025821507, -0.008770734, 0.0024225893, -0.0090795625, -0.009511923, 4.7048117e-05, -0.02174154, 0.025694545, 0.030114226, 0.009779574, 0.020121904, 0.01130313, 0.0071579623, -0.00499273, -0.019037573, 0.025186693, 0.013197279, -0.014851227, 0.004001047, 0.019161103, 0.018584624, -0.003398831, -0.027012214, -0.0063687335, 0.029675003, -0.014233571, 0.01631988, -0.011557056, -0.0075903223, 0.0056687216, 0.0024980807, -0.03365546, 0.002491218, -0.025653368, -0.01997092, 0.023443528, -0.008853088, 0.035055485, -0.0029956382, 0.0023505294, -0.014398279, 0.031733863, -0.003014511, 0.017321857, 0.0033387812, -0.018200302, -0.021412121, -4.6565572e-05, 0.019065022, -0.0068662907, 0.0150982905, 0.026792603, 0.0069932537, 0.010664883, 0.024390602, 0.0013554147, -0.03892614, 0.014048273, -0.0032409853, -0.018859137, 0.008420728, -0.021549378, -0.013869839, -0.022812145, 0.012353146, -0.015221822, 0.015249274, -0.012373735, -0.02388275, 0.008914854, 0.025406305, 0.004982436, -0.0070550195, 0.025914157, 0.018159125, -0.023237642, -0.015482611, 0.0067050136, 0.0043270327, -0.020890543, 0.033737816, 0.022263115, -0.027437711, -0.007010411, 0.0071030594, 0.006162848, -0.01994347, -0.017651275, 0.022455275, 0.026765151, -0.0024054323, -0.017966965, -0.026998488, -0.015551239, -0.0024397464, -0.045981158, 0.037004538, -0.010232523, -0.0049481215, -0.010575666, 0.016402233, -0.0033851054, 0.002990491, 0.0059775505, -0.036565315, -0.014219845, -0.0044608586, 0.00758346, 0.0056652906, -0.015125742, 0.021425847, 0.010644295, 0.017966965, -0.0029922067, -0.00031847958, -0.0033679483, -0.017527742, -0.017898338, 0.02224939, -0.011392347, -0.002081162, -0.014315925, -0.039804585, 0.0015115448, -0.0046667443, -0.014398279, -0.02750634, -0.007665814, -0.011900198, 0.015523788, -0.009134466, -0.004687333, -0.02051995, 0.009628592, -0.0191062, -0.008695243, 0.023251368, 0.027616147, 0.012545307, 0.0005854877, -0.014604164, 0.0057956846, 0.008914854, -0.0031397582, -0.0035583926, -0.010788415, 0.017541468, -0.022688612, 0.024376877, 0.032118183, 0.0044505643, -0.024170991, 0.009113877, 0.0132041415, -0.03552216, 0.016608119, -0.026106317, -0.037004538, -0.013307084, -0.0033353497, -0.0097933, 0.016608119, -0.00436821, -0.011474701, 0.010259975, 0.0038775154, 0.0074873795, -0.012250204, 0.022702338, 0.010774689, -0.014233571, 0.02025916, -0.0059123533, 0.0069349194, -0.033765268, -0.003302751, 0.00045895373, -0.017225778, -0.0224141, -0.0036613354, -0.0125178555, -0.02138467, -0.0052432246, 0.00482459, 0.007254042, -0.023196464, 0.006684425, 0.013108062, 0.007967779, 0.0023745494, 0.017610097, 0.025721997, -0.010308015, -0.021714088, 0.0071510994, -0.004532919, 0.005335873, -0.015386531, -0.018502269, -0.042110506, 0.06291869, 0.014082587, -0.019490521, -0.032255437, 0.006351576, -0.027231826, -0.04452623, -0.03593393, 0.020629756, 0.026243575, 0.004694196, 0.01452181, 0.017212052, 0.022894498, 0.021686636, 0.003939281, 0.0046495874, 0.011323718, -0.036977086, 0.019366989, 0.005407933, -0.03272211, 0.008969757, 0.027369084, -0.0069143306, 0.015455159, 0.0324476, -0.022592533, 0.015853206, 0.007892288, 0.018639525, 0.02160428, -0.0074942424, 0.032941725, -0.028384786, 0.0046187043, 0.043675236, 0.014343376, -0.0027159767, -0.0036235896, -0.00056747266, -0.0019747878, -0.0023419508, 0.0043167383, 0.024308247, 0.02426707, -0.0094227055, 0.033161335, -0.0028549496, -0.006581482, 0.010616844, 0.0066226595, -0.010390369, -0.02179644, 0.022949401, -0.0013674247, -0.024033733, 0.01644341, -0.014192393, 0.011028615, 0.0013639933, 0.017033616, 0.012538444, 0.0029407353, -0.015029662, -0.0026216123, -0.0051299874, 0.0030882866, -0.006972665, -0.027945563, 0.0111452835, -0.015276725, 0.0224141, -0.00801582, -0.004975573, -0.005239793, 0.015331628, -0.0054182275, -0.007624637, 0.0026319067, -0.041012447, 0.021508202, -0.0036476098, 0.003928987, -0.01284041, 0.20511714, -0.0022681751, 0.0049138074, 0.030306388, 0.0018546877, 0.0027708795, -0.009642317, -0.008798186, 0.010603118, 0.027039666, -0.021370944, -0.002503228, -0.013698268, -0.0013348261, -0.0013365418, 0.019147377, -0.0400791, -0.009141329, -0.015208096, 0.003321624, 0.003918693, 0.0052672448, -0.0081324885, -0.010781552, -0.0021206236, 0.006478539, -0.0014969612, 0.010088404, 0.017390486, 0.002154938, -0.04293405, -0.0097658485, 0.020108178, -0.034396652, -0.0055451905, -0.024033733, 0.019861115, -0.005884902, 0.011323718, 0.0135472845, 0.021892522, -0.0005721909, 0.026312202, -0.011049204, 0.0050544958, -0.0108844945, -0.003760847, 0.0030162267, -0.005771665, -0.023072934, -0.042192858, -0.004141736, 0.008228568, 0.009827615, -0.017294405, -0.0059432364, -0.011200187, 0.0069211936, -0.011001163, 0.014686519, 0.0060255905, 0.0029527452, 0.01293649, 0.028769106, -0.039612424, 0.034094684, -0.011241363, 0.027149472, 0.035055485, -0.017541468, -0.034643713, -0.0012807811, -0.0015046819, -0.00022540204, -0.016264977, -0.022551356, 0.012435501, 0.03285937, 0.020574853, 0.016072817, 0.025172967, 0.011845295, 0.011584506, -0.003074561, -0.0052432246, -0.014494359, -0.013917879, -0.01920228, -1.9315195e-05, -0.0036235896, 0.011701175, -0.016649297, -0.0010817582, -0.04263208, -0.009340351, -0.0186258, 0.013190416, 0.010218797, 0.0003495769, -0.009408981, 0.0030350995, 0.04982436, 0.004001047, -0.008914854, -0.012655113, -0.011371758, -0.011172735, 0.027396536, -0.007178551, -0.029345587, 0.005757939, -0.01577085, -0.001648802, -0.004351053, 0.0051711644, 0.021178784, 0.009614866, -0.0055795047, 0.011454112, 0.003640747, 0.015139468, -0.022304293, -0.017390486, 0.0035103525, 0.04587135, -0.018351287, -0.0059912764, -0.00045509337, -0.022784693, 0.008070722, 0.02340235, -0.00029017028, 0.018941492, -0.0032529954, -0.03530255, -0.019833663, 0.019229732, -0.019833663, 0.007514831, -0.010664883, -0.026929861, 0.016731651, 0.015317902, -0.006667268, 0.01577085, -0.014686519, -0.005541759, 0.03593393, -0.0002882401, 0.015551239, -0.034451555, 0.015413982, -0.0017019891, -0.022263115, 0.009182506, 0.0034537339, -0.009573689, -0.009786437, 0.04414191, 0.004351053, -0.027822033, 0.018927766, 0.019078748, 0.0031569153, 0.00031204562, 0.004965279, -0.17459114, 0.020986624, 0.0010920526, 0.0029716182, 0.01879051, 0.012195301, -0.0068319766, -0.0063344194, -0.012380598, -0.021247413, 0.015413982, -0.017514016, -0.02843969, -0.030443644, 0.0024431779, 0.006468245, -0.024486681, 0.015592417, 0.032667212, 0.008008957, 0.036373153, -0.041259512, -0.01461789, -0.017555194, 0.038075145, 0.021261139, 0.008626615, 0.02186507, -0.029620102, -0.010863907, -0.019723859, 0.0060050017, 0.04507526, 0.022112133, 0.008022683, 0.022002326, 0.0059432364, -0.009031523, 0.010006049, 0.027671048, 0.010170758, 0.02789066, 0.008105037, 0.00945702, -0.01689636, 0.008125626, 0.015372805, -0.014919857, -0.0066260905, 0.011989416, 0.010644295, -0.01872188, -0.011893336, -0.003880947, 0.0023796966, -0.0013880134, 0.016841456, 0.010664883, -0.0007171688, 0.006365302, -0.0012730605, -0.033490755, 0.02997697, -0.019819938, 0.013931604, -0.02327882, 0.008702106, 0.020094452, -0.026325928, 0.024033733, -0.011412935, 0.008551123, 0.013265907, -0.0024877866, 0.009841341, 0.0061388277, -0.0007557724, 0.003230691, 0.013279633, 0.009257997, 0.018063046, 0.00926486, -0.00094621675, 0.0047731185, -0.01680028, -0.011179598, 0.010362918, 0.0005460263, -0.013787485, -0.007665814, 0.0016256399, -0.0100335, -0.0024534722, -0.009017797, 0.0035652556, 0.006101082, -0.0036064326, -0.013965919, 0.005895196, -0.032914273, 0.006118239, 0.0033851054, 0.0167042, -0.0046667443, 0.012421776, -0.0030127952, 0.0064099105, 0.0042446787, 0.042686984, -0.03705944, -0.052651856, 0.038130045, 0.023319997, 0.03478097, -0.023196464, -0.015427708, 0.0025718566, -0.015578691, -0.0019164535, -0.00441625, 0.06582855, -0.0006974381, 0.0059706876, 0.014000233, -0.020355241, -0.011364895, -0.10091148, -0.009299175, -0.002695388, 0.012696289, -0.021782715, 0.03189857, -0.015578691, 0.014384553, -0.007954054, 0.037224147, -0.008887403, -0.039283007, -0.010637432, -0.0090727005, -0.007020705, 0.013732581, -0.021590555, -0.0022372922, -0.0030025009, 0.009813889, -0.024294522, -0.017980691, 0.013869839, -0.0049309647, 0.0074736536, -0.008029546, -0.01920228, 0.02327882, 0.010987438, -0.011062929, 0.023416076, -0.015866932, -0.0058986275, -0.024857277, 0.009306037, 0.0135472845, -0.016937537, -0.00044479908, 0.01699244, -0.009923695, -0.00815994, 0.01859835, -0.01859835, -0.0013785769, -0.009580552, 0.0059981393, -0.022716064, -0.004838316, 0.015990462, -0.010541352, -0.053365596, -0.029318135, -0.010994301, -0.02174154, 0.026861232, -0.0021377807, -0.013890428, 0.0305809, -0.029565198, -0.03151425, -0.018035594, -0.009656043, -0.013821798, 0.021439573, -0.012140398, -0.0035686868, -0.013746307, -0.005548622, 0.01255217, -0.0050133187, -0.01312865, -0.0029956382, 0.012963941, 0.018804235, -0.01859835, 0.009916832, -0.011433524, -0.014713971, 0.025625916, -0.017239504, -0.0033696638, -0.023265094, 0.006149122, -0.0065677566, -0.010410958, 0.0195866, 0.0429615, 0.013334536, -0.0147551475, -0.014933582, 0.004405956, 0.026820054, 0.0057064677, 0.0016822584, 0.007713854, -0.032392696, 0.007322671, 0.0070344307, 0.0025049436, 0.0037436897, -0.038871236, -0.021110155, -0.06264418, 0.018680703, -0.00067856524, -0.028906364, 0.0030007854, -0.017939514, -0.000523722, -0.009395255, 0.006238339, 0.013108062, -0.043647785, 0.0186258, -0.014782599, 0.003977027, -0.026216123, -0.023855299, 0.032529954, -0.0068319766, 0.037910435, 0.019476796, 0.015564965, 0.0030831397, -0.006756485, 0.005939805, -0.014686519, 0.020368967, -0.035769224, 0.017719902, 0.012613935, -0.031980924, -0.0071922764, -0.005435385, -0.013313947, 0.019792486, 0.017390486, 0.020176807, -0.014274747, 0.016333606, 0.0049618473, 0.03074561, -0.005661859, -0.032145634, -0.021412121, -0.018557172, -0.0067050136, -0.027067117, -0.000112593785, -0.0046770386, 0.020821916, 0.005407933, 0.011042341, 0.014384553, -0.036126092, -0.03651041, -0.012305107, -0.006770211, 0.014645342, -0.011804118, -0.002611318, 0.0058265678, 0.03782808, 0.017335583, -0.008777597, -0.03360056, 0.031761315, -0.02762987, -0.039475165, -0.00024920757, 0.0059912764, -0.028906364, -0.014590439, -0.0009813888, -0.0007664956, -0.0066260905, 0.019929744, 0.0069589396, -0.0015595848, 0.0006309541, -0.019490521, 0.028906364, 0.0027880366, -0.025653368, -0.023635687, 0.014020822, 0.008853088, 0.039228104, 0.0013905868, -0.012915901, -0.034286845, 0.035961382, -0.0083864145, 0.006715308, 0.018859137, 0.0012473247, -0.02426707, -0.01994347, 0.0005807695, 0.00091533386, 0.016745377, -0.0014034547, 0.04351053, 0.009306037, 0.00092133885, -0.024802374, -0.0030007854, -0.0076932656, -0.03458881, -0.008153077, -0.028522044, 0.022757242, -0.0009290596, 0.00868838, -0.008201117, 0.0068251137, -0.006852565, 0.034863327, 0.03228289, -0.004989299, -0.023827847, 0.033518206, 0.02347098, 0.011289404, 0.0039976155, 0.0019850822, 0.0108844945, 0.0078716995, 0.017719902, -0.04263208, 0.024720019, 0.006729034, 0.029263232, 0.020725835, -0.00051814585, -0.021988602, -0.02683378, -0.016649297, -0.016237525, 0.01965523, 0.007954054, 0.057648018, 0.021851344, -0.016539492, 0.0043133073, -0.009958009, 0.0017671863, -0.012449227, 0.0023453822, -0.009278586, 0.0019507678, 0.02940049, 0.02292195, 0.018859137, 0.003994184, -0.0075011053, 0.013821798, -0.022221938, 0.014768873, -0.03192602, -0.0036235896, 0.027478889, 0.003922124, 0.015510062, -0.015263, -0.017870886, -0.023484705, 0.033847623, 0.01312865, -0.009731535, -0.02282587, 0.0137257185, 0.013094336, -0.017651275, -0.027588695, 0.004673607, 0.0009453589, 0.0058746077, 0.008599163, -0.012442364, -0.00040233514, -0.038075145, 0.026998488, -0.004937827, -0.020574853, 0.019421892, -0.021686636, -0.0023488137, 0.00019183836, -0.03969478]" 21789476,"If You Can't Buy the Keyboard You Want, Build It Instead",https://imgur.com/gallery/fGa13nZ,501,1576331463,368,fogus,"[0.0019755696, 0.005403562, 0.022839515, -0.011516126, -0.015198808, 0.028249959, -0.004243689, -0.031884458, -0.017704409, 0.00089657825, 0.013505463, 0.009574974, -0.01389094, 0.02062302, -0.014992303, 0.004371034, 0.01686462, 0.025771892, 0.028745573, -0.024835734, -0.032269932, 0.01696099, 0.015666887, -0.027107295, -0.020636788, -0.01565312, -0.00491139, -0.00915508, -0.0052762167, 0.0010600619, 0.016286405, 0.017924681, 0.00021575528, -0.007750842, -0.03852017, 0.011550544, 0.017222563, 0.011949788, -0.0038788626, -0.009795247, 0.02224753, 0.017415302, -0.00494925, 0.014193814, -0.01570819, 0.025469018, -0.012342148, -0.00041150532, -0.008845321, 0.033894446, 0.022729378, 0.0044329856, -0.0066907797, -0.007103791, -0.014138747, 0.0079366965, 0.032958284, 0.017360233, 0.022646775, -0.019755697, 0.011392223, 0.024422724, -0.007031514, 0.02210986, 0.016410308, -0.016974756, 0.014138747, -0.002429882, 0.0014670498, -0.0030562822, 0.012665674, 0.04237494, -0.0034331547, 0.016052365, 0.017071126, -0.005117896, -0.021476578, -0.009396003, 0.00903806, 0.00034847812, 0.011178833, -0.03439006, 0.0022078885, -0.0070624896, 0.0039545815, 0.0036104054, 0.012782694, 0.014524223, 0.003988999, -0.005004318, 0.00084839365, 0.03130624, -0.0066047357, 0.003472735, 0.020746924, 0.005971452, 0.010531783, 0.02866297, -0.016534211, -0.021022266, -0.027699277, 0.013760153, -0.008143202, -0.023073554, -0.014482923, -0.02257794, -4.296821e-05, -0.014730729, 0.016369006, -0.011488592, -0.010655686, 0.042485073, 0.022096094, 0.0131406365, 0.01569442, -0.012211362, -0.0005098106, -0.004357267, -0.00080967386, -0.025482785, 0.02091213, 0.0030201436, 0.01570819, -0.009630042, 0.022454036, 0.017222563, -0.016203802, 0.0017983192, 0.0053244014, -0.01514374, 0.012135643, -0.020058572, 0.01923255, 0.026061, 0.009464838, -0.014744496, 0.0021769127, -0.0017337862, -0.021352673, -0.031443913, 0.0023197457, 0.012493585, -0.014758263, -0.021173703, -0.009574974, 0.0032937636, -0.005985219, 0.0026054117, -0.0025916446, -2.407887e-05, -0.011213251, -0.017387766, 0.029020913, -0.012872179, 0.039924406, 0.009506139, -0.018957209, 0.019962203, 0.008356591, -0.012858412, -0.010366579, 0.008508028, 0.012190711, 0.03488567, 0.012603722, 0.013615599, 0.025620455, -0.021201236, 0.02122877, -0.022454036, -0.008514912, 0.019260084, -0.015735723, 0.004629166, 0.015556752, -0.015267643, -0.015157508, 0.006673571, -0.010270209, -0.0008058019, -0.0066081774, -0.008934807, 0.003923605, 0.03298582, -0.0068938434, -0.03689566, 0.00917573, -0.0055377902, 0.012245779, -0.005214265, -0.0046567, 0.008611281, -0.048322298, -0.00039472675, -0.6476014, -0.0011134091, 0.020512884, -0.03158158, 0.007544336, 0.029599128, -0.0015023279, 0.009795247, -0.009389119, 0.00514543, 0.0020788226, 0.012053041, 0.008687, -0.0016494631, -0.0422648, -0.039153453, 0.023954643, -0.020278845, -0.0068663093, 0.010166956, -0.0062054917, 0.020540418, -0.00034310037, 0.02318369, 0.0022612358, -0.019865833, 0.012053041, -0.017511671, -0.015336479, 0.00397179, -0.010807124, -0.003001214, -0.027699277, -0.013002966, 0.06040976, -0.008886622, -0.027699277, 0.012328382, -0.007275879, 0.033206094, -0.022371434, -0.025909564, 0.009340934, -0.0057202037, -0.0149785355, -0.01598353, 0.021022266, -0.009217031, 0.0119773215, -0.018957209, 0.021077333, -0.0072208107, -0.0013887498, 0.0019514775, 0.009044943, -0.013849638, 0.026239973, -0.0069076107, 0.021256305, 0.0018310159, -0.004302199, 0.013560531, -0.016795784, -0.025647989, -0.019425288, -0.012576188, -0.01696099, -0.018131187, 0.00631907, -0.012369682, 0.0007946161, 0.010325277, -0.0131406365, 0.0048184628, -0.00019639538, 0.042898085, 0.012555538, -0.0046807923, 0.0043641506, 0.010352812, 0.00755122, 0.00880402, -0.02365177, -0.006088472, 0.055756498, -0.036014568, -0.0037687263, 0.011488592, 0.0034951065, 0.018200023, 0.0035828713, -0.00079719746, -0.006914494, -0.009478604, -0.0067871492, 0.017828312, 0.0067355228, 0.032407604, 0.028497765, -0.0198796, -0.0080055315, -0.003515757, 0.027726812, 0.013312724, 0.017731942, -0.013815221, -0.013739502, 0.017566739, 0.01713996, -0.0025933655, -0.008391009, -0.023720603, -0.024656763, 0.015584285, -0.008129435, -0.0346654, 0.005138546, -0.0040371832, -0.0005050782, -0.029791867, 0.02791955, 0.007626938, 0.004377918, -0.002156262, -0.013326491, 0.008735185, 0.026694285, 0.010896609, -0.005403562, -0.013725735, 0.008508028, 0.00915508, 0.002199284, -0.012218245, 0.014427855, 0.011185717, 0.016988523, -0.0066838963, -0.010869076, -0.020017272, -0.02880064, -0.018805772, -0.022233764, -0.0076062875, -0.013505463, -0.010758939, 0.008934807, 0.006429206, 0.008012415, 0.0061813993, 0.016603047, -0.034334987, 0.0056857863, 0.015432848, -0.017635575, -0.0054964893, -0.015253876, -0.008824671, -0.0011555706, -0.02336266, -0.016506677, 0.025840728, -0.017580505, -0.01166068, -0.022454036, -0.00075245457, 0.010593735, 0.03841003, -0.0010600619, -0.040309884, -0.012438518, -0.01696099, -0.011963555, 0.007503035, -0.018282624, -0.00720016, -0.00047496276, -0.0017509949, -0.0093065165, 0.011206368, -0.01265879, 0.0013827267, -0.0021683082, 0.009127545, 0.030948298, 0.0016382773, 0.0031268382, 0.008542446, -0.028360095, 0.042347405, 0.0041782954, -0.024395188, -0.019273851, 0.002488392, 0.005472397, 0.013553647, 0.0105249, 0.0052693333, -0.014014843, 0.0057546212, 0.002887636, 0.0023679303, -0.0014412366, 0.0013904707, 0.017993517, -0.041686587, 0.022054793, -0.024147382, 0.023913343, 0.024023479, -0.009161963, -0.005558441, -0.00064619025, -0.020086106, 0.0040303, 0.017965984, -0.0123765655, 0.031196104, -0.009106895, 0.0057339706, -0.0223026, 0.017566739, 0.040888097, -0.004601632, -0.0071106744, 0.016947223, 0.0027327568, 0.0145104565, 0.0110067455, -0.014111212, -0.002085706, 0.022908349, 0.0013939125, 0.007860978, 0.032325003, 0.009499256, 0.010022403, -0.00880402, 0.016327705, 0.0048219045, 0.02048535, -5.603614e-05, -0.015350246, -0.008446077, 0.0140767945, 0.018764472, 0.03251774, 0.0037790516, -0.030535286, 0.012046157, 0.006164191, 0.0020203127, -0.027258733, 0.013037384, 0.021683082, 0.027010925, 0.0041507618, -0.0042333636, 0.04556889, 0.022867048, -0.004770278, 0.0073860153, -0.0047943704, -0.02183452, 0.007275879, 0.00093615847, -0.00034632703, -0.017208796, 0.013106219, 0.017718175, 0.003101025, -0.007117558, -0.0049939924, 0.0034331547, 0.008501145, -0.009987985, 0.011791467, 0.0004693699, 0.013340258, 0.0013741223, -0.007227694, -0.023128621, 0.008576863, 0.0008931365, 0.0034951065, 0.016947223, -0.027231198, 0.03273801, 0.02011364, 0.014827099, -0.007303413, 0.01831016, -0.0062674433, 0.013925358, -0.006243351, -0.004357267, 0.034582797, -0.016313938, 0.0077095404, 0.010063704, -0.017153727, -0.0053657023, -0.014868399, -0.03284815, 0.05000188, 0.029323788, 0.0050765947, -0.040888097, 0.014551758, -0.017842079, 0.00520394, -0.0063121864, -0.00021392685, 0.00034890833, -0.014021726, -0.00852868, -0.015047371, -0.0053622606, 0.04017221, 0.00545863, -0.02224753, -0.0140423775, 0.0030597239, 0.004673909, 0.06299796, 0.029929537, -0.030535286, 0.020609254, -0.019383987, -0.014414087, -0.024395188, -0.026322573, 0.035739228, 0.009093127, 0.009788363, 0.026763119, 0.021449042, 0.011392223, 0.018847072, 0.00068620074, 0.024546627, 0.002342117, 0.008101901, -0.022316366, 0.016603047, 0.0098985, 0.021889588, 0.008714534, 0.032435138, 0.019177482, 0.010153189, 0.019205015, 0.020691857, -0.009471721, -0.0046222825, 0.01802105, -0.008886622, 0.014551758, -0.012025506, -0.008893506, 0.019618027, 0.011729515, 0.0042230384, 0.015460382, 0.029433925, -0.004901065, 0.006677013, -0.021724384, -0.0099398, -0.001177942, -0.00780591, 0.02244027, -0.016892154, -0.031746786, 0.020925896, -6.8566296e-05, 0.0058785244, 0.0022371435, 0.010965445, -0.003359157, -0.02392711, -0.024587927, -0.02513861, 0.020058572, -0.0035312448, -0.019852066, 0.01363625, -0.011295853, -0.0006616782, -0.025331348, -0.010965445, -0.0017088334, -0.044302322, 0.002013429, 0.0037824933, -0.0235967, -0.010442297, 0.01802105, 0.010717638, 0.019989736, 0.011591845, -0.018874608, -0.0054792804, 0.024106082, -0.0005231474, -0.018103654, -0.03359157, -0.00025425997, 0.0022164928, 0.032627877, 0.011282086, 0.019273851, 0.01760804, 0.009485488, 0.027864482, -0.010518016, 0.015928462, -0.015928462, 0.017387766, 0.0068835183, 0.013526114, 0.020237545, -0.0018637126, 0.0070383972, -0.000330624, -0.009402886, -0.0015797674, -0.022192463, -0.01719503, -0.01839276, -0.0013285191, 0.0001055652, -0.0034847811, -0.0057821553, 0.022082327, -0.02267431, -0.011337155, 0.024546627, -0.008273989, 0.0149785355, 0.014537991, -0.0119773215, 0.014028611, -9.335772e-05, 0.022729378, -0.03995194, 0.03543635, 0.011874069, -0.0074617337, 0.034748, 0.03014981, -0.03001214, -0.025992164, 0.011461058, 0.012651906, 0.019452823, -0.012631256, -0.019397754, -0.020031039, -0.038712908, 0.019810766, 0.0043366165, 0.0017983192, -0.011536777, -0.03210473, 0.011949788, 0.016148733, 0.015584285, -0.030535286, -0.02527628, -0.0071795094, 0.023073554, -0.011185717, 0.029103516, 0.00780591, 0.0023627677, -0.01723633, -0.011385339, -0.016974756, -0.032297466, 0.011825885, -0.0049939924, 0.024133615, 0.025909564, 0.03670292, -0.0055205817, 0.024051012, -0.0087696025, -0.00090690353, -0.009244565, 0.004859764, -0.010710754, -0.014882167, 0.007840327, 0.016107433, 0.008095018, 0.0014489806, -0.013526114, -0.008425427, 0.015267643, -0.01500607, -0.0022216556, -0.0069661206, -0.04603697, 0.008012415, 0.0024178359, -0.008742068, 0.007819677, -0.02508354, 0.00041494708, 0.007227694, -0.006415439, -0.009891616, 0.0074341996, 0.0143727865, -0.018131187, 0.011447291, -0.006942028, 0.030315015, 0.0054861642, 0.0057374127, -0.033508968, -0.008872855, 0.002574436, 0.025606688, 0.0059095006, -0.0038650956, -0.010559317, -0.010669453, 0.001242475, -0.012748276, -0.0043675923, -0.0065496676, -0.005816573, -0.0065496676, -0.034500193, 0.0007455711, -0.0061091227, -0.003173302, -0.008886622, -0.0119084865, 0.008156969, -0.025221212, -0.021393975, 0.021352673, -0.016066132, 0.014180047, -0.007840327, 0.012617489, 0.031058434, -0.017993517, -0.015721956, -0.051103238, 0.0018155279, -0.0034847811, 0.029351322, 0.028126055, -0.021641782, -0.007716424, -0.016589278, -0.0023386753, -0.010387229, -0.0384651, 5.754191e-05, 0.0054827225, -0.0019084554, -0.017153727, -0.0023094204, -0.011970438, 0.002114961, -0.022123627, -0.018970976, -0.0015272807, -0.000430435, -0.007840327, 0.01831016, -0.0124041, 0.027203664, 0.01704359, -0.0016838807, -0.02764421, -0.01815872, -0.00365859, 0.00694547, 0.009753945, 0.012466052, -0.012700091, 0.024367655, 0.0029564712, -0.0024350446, -0.022275066, -0.01377392, -0.0017897148, 0.026061, -0.010827774, -0.012947898, 0.0032369746, -0.0047737197, 0.021765685, 0.010194491, -0.014303951, -0.025290046, -0.014661894, 0.0019325478, -0.013354026, -0.0098985, -0.023431497, -0.009382236, -0.023514098, -0.019852066, -0.030810628, -0.004663584, 0.00011852558, -0.038299896, -0.004770278, -0.018874608, 0.0052865422, -0.008845321, 0.011357805, -0.022041025, 0.012197594, 0.020939663, -0.0039063967, 0.016850853, 0.0100017525, -0.0010462948, -0.016369006, 0.021875821, -0.01054555, -0.008611281, 0.02253664, -0.026625449, -0.009788363, -0.032903217, 0.0019824533, -0.0072689955, 0.02253664, 0.0043366165, 0.0016899038, -0.0024109522, 0.021917121, -0.0063534873, -0.02666675, -0.02471183, -0.01328519, 0.0048941816, -0.0045637726, 0.0044880537, -0.010903493, -0.041356176, 0.00022220857, 0.004570656, -0.044384927, 0.003772168, 0.0148408655, 0.019012278, -0.017869614, -0.007248345, -0.04008961, 0.01700229, -0.029846935, 0.0064085554, -0.002285328, -0.010180724, 0.010462948, -0.0105249, 0.018144954, 0.011412873, -0.015680654, -0.0074066655, -0.00072362984, -0.011419757, -0.039594, 0.0056789024, -0.031003367, 0.023899576, -0.008859088, 0.0020667764, -0.038382497, -0.00052486826, -0.061400983, -0.016919687, -0.0068077995, 0.0034503636, 0.048212163, 0.0010815728, -0.008755836, -0.006460182, -0.013966658, 0.00620205, -0.016011063, -0.011254553, 0.020595487, 0.0059783356, -0.04116344, -0.015432848, -0.031884458, -0.013002966, 0.011116882, 0.0009223914, -0.0053657023, -0.006343162, 0.009912266, -0.0022474688, 0.0071795094, 0.0018310159, 0.023885809, 0.009967335, 0.0039649066, -0.008205154, -0.022426503, 0.025647989, 0.013705085, -0.00074255955, -0.0062640016, 0.018530432, 0.017456602, -0.0030253064, -0.0056685773, -0.006845659, 0.018557966, -0.022660542, 0.029351322, -0.021889588, 0.0016856015, 0.01970063, 0.016272638, 0.01704359, 0.008191387, -0.008982992, -0.050938036, 0.0030545613, 0.016919687, -0.035711695, -0.01727763, 0.023844507, 0.036868125, -0.0052934256, -0.02294965, -0.017029824, 0.0123077305, -0.001999662, 0.0122733135, 0.01719503, -0.015997296, -0.02619867, -0.0043262914, -0.031526513, 0.00031040364, -0.032627877, -0.0046119574, -0.032600343, -0.019521657, -0.0018052027, 0.001465329, -0.005396678, 0.03609717, 0.026033467, -0.007076257, -0.012906597, 0.2124529, 0.0021734708, 0.014744496, -0.012225129, -0.01003617, -0.010132539, 0.012803344, -0.008494262, 0.01811742, 0.00055670453, -0.0046119574, -0.0015763257, -0.023431497, -0.012555538, 0.012679441, 0.014716962, -0.025386415, -0.032490205, -0.03122364, 0.013884056, 0.033151023, -0.018957209, -0.006763057, -0.022371434, 0.043228496, 0.010359695, -0.018750703, 0.008163853, 0.037281133, 0.021848287, -0.0235967, -0.0009275541, 0.011419757, 0.003885746, 0.005241799, 0.0020788226, 0.015598052, -0.016148733, 0.025771892, 0.008900389, 0.021779452, -0.01802105, 0.030259946, -0.015942229, -0.022867048, -0.026859488, 0.00050292705, -0.01103428, 0.0065772017, -0.014317718, -0.0070831403, -0.0153777795, 0.014689428, 0.030838162, 0.014193814, 0.004938924, 0.00023059786, -0.00917573, 0.0052108234, 0.02760291, -0.004684234, -0.0013052871, 0.0024092314, 0.006518692, -0.035133477, 0.026556613, 0.012197594, 0.0025090424, 0.0057202037, -0.012053041, -0.017167494, -0.0046807923, -0.003871979, 0.0035312448, -0.011165067, -0.021586712, 0.04386178, 0.0063603707, 0.026088534, 0.002428161, -0.005630718, -0.003514036, -0.015171275, -0.018502897, -0.0028996821, -0.041218508, 0.017910914, 0.00076493097, 0.01242475, -0.012204478, 0.007675123, 0.004601632, -0.01326454, -0.00087291613, 0.011736399, 0.010511133, 0.0010652244, 0.034775533, -0.0052073817, 0.020265078, -0.034692932, -0.006990213, 0.021903355, 0.0020048248, -0.025413949, 0.024174916, 0.013663784, 0.04441246, 0.00428499, -0.012472935, -0.0068353335, -0.01314752, 0.00024393469, 0.0042505725, 0.013588065, 0.0123765655, 0.008865971, -0.0037239834, -0.009416653, -0.010504249, 0.023803206, 0.0057236454, 0.0074961516, 0.019893369, 0.012397217, -0.009561207, -0.031994592, 0.020774458, -0.0040371832, -0.02193089, 0.022867048, -0.023775673, 0.0067699403, -0.017126193, -0.009588741, -0.036069635, 0.016892154, -0.009926033, 0.0033230186, 0.0027602909, 0.022137394, 0.021696849, 0.009492372, -0.015364013, 0.022605473, -0.0030752118, 0.016396541, 0.018695636, -0.0059508015, -0.02099473, -0.033949513, 0.008150086, -0.015295178, -0.0080743665, -0.01625887, 0.021504112, -0.03879551, -0.03158158, 0.013835872, 0.018736936, -0.023816973, -0.0053140763, 0.010690104, -0.008329057, -0.014124979, -0.03218733, -0.17654848, 0.002201005, 0.013044267, -0.03901578, 0.034417592, 0.021173703, 0.035656624, 0.008652583, -0.015019837, 0.0079711145, 0.019383987, 0.0055653243, -0.008459844, 0.0074548502, 0.010738289, 0.021407742, -0.027162364, 0.0006556551, 0.02760291, 0.009533673, 0.019315151, -0.015873393, 0.0031819064, 0.020388981, -0.0046360497, 0.0093753515, -0.009602508, -0.0020771017, -0.005413887, -0.01103428, 0.015033604, -0.025193676, 0.04501821, 0.0013629366, 0.018792005, -0.013567414, 0.0134710455, -0.010063704, -0.012569305, 0.016327705, 0.014964769, 0.01500607, 0.0018516664, 0.0009920871, -0.019673096, 0.030617889, 0.012796461, -0.012720741, 0.009602508, -0.0004990551, 0.020058572, -0.021504112, -0.013484812, 0.0052555664, 0.035849363, 0.0047048847, 0.018034818, -0.029709265, -0.0019549192, 0.013897823, 0.014744496, -0.022853281, 0.012486702, 0.017374, -0.015226343, 0.009912266, 0.011591845, 0.0015444894, 0.009451071, -0.006098797, 0.0069557955, 0.010855309, 0.012459168, 0.002488392, 0.021820754, -0.0016047203, -0.013732619, -0.0149097005, 0.0016021389, -0.013952891, 0.010359695, 0.032490205, -0.005971452, -0.023431497, -0.0062949774, -0.010745172, -0.007017747, -0.009809013, 0.009334051, 0.0048804143, 0.03711593, -0.020182475, -0.0033109724, -0.02383074, 0.024298819, -0.0055894167, 0.008556213, -0.012872179, 0.007799026, -0.0034606887, -0.001422307, -0.012204478, -0.034334987, 0.0041645286, 0.024629228, -0.0058681993, -0.021201236, 0.016547978, 0.014069911, 0.0013483091, -0.018323926, 0.033977047, 0.0140079595, 0.05157132, 0.018062351, 0.010043053, 0.019797, -0.021504112, 0.0013749828, -0.007750842, 0.004615399, -0.026460243, -0.014716962, 0.016107433, 0.017387766, -0.016341472, -0.12081952, -0.036124703, 0.04479794, 0.00021457217, -0.020141175, 0.018227557, -0.0041266694, 0.027258733, -0.024119848, 0.029075982, -0.010146306, -0.029819401, -0.011061814, 0.011206368, -0.0023369545, 0.0007541755, 0.0018981302, -0.012369682, -0.011867185, 0.00980213, -0.0009705761, -0.024863267, 0.007647589, -0.032022126, -0.012851529, -0.0035656625, -0.033894446, 0.020609254, 0.018681869, -0.0104698315, 0.019273851, -0.00907936, 0.0096369255, -0.006191725, -0.023679303, 0.0069764457, -0.0012261267, -0.0035174778, 0.04152138, -0.022330133, 0.0015255597, -0.017305166, -0.009148195, -0.045789164, -0.01774571, 0.016134966, -0.029075982, 0.03852017, 0.008356591, -0.021710617, -0.020223776, -0.015955996, -0.03480307, -0.0043675923, 0.03637251, -0.00095078594, -0.0059508015, 0.0070831403, -0.014882167, 0.01363625, 0.010077471, 0.0032524625, -0.0045809816, 0.0087007675, 0.016217569, -0.01031151, -0.004529355, -0.028222425, 0.01723633, -0.0030063766, 0.011626262, 0.0019772907, -0.0139391245, 0.034169786, -0.02216493, 0.0041542035, -0.027134828, -0.020430282, 0.021848287, -0.003514036, -0.014716962, 0.0011323388, -0.0031371634, -0.031884458, -0.0041782954, 0.03298582, -0.006487716, 0.02308732, -0.0031784645, -0.024505325, -0.010049936, 0.022261297, 0.00092411233, 0.008115668, -0.006529017, -0.013650017, -0.0059404764, 0.01584586, -0.017663108, -0.014235116, -0.04314589, -0.013305841, -0.045128345, -0.002529693, -0.0032765546, -0.026597915, -0.0064808326, -0.013801455, 0.0025830402, -0.015570519, -0.03535375, -0.008349707, -0.014069911, 0.02615737, -0.014675661, -0.023445264, -0.019177482, -0.008542446, 0.02885571, -0.0014816773, 0.018420296, 0.020003505, -0.0036620318, -0.00015197518, 0.0052865422, 0.0067114304, 0.0041679703, 0.020636788, -0.040667824, -0.0028084754, -0.0015160949, -0.01704359, 0.019356454, -0.030948298, -0.004550006, 0.024106082, 0.0073928987, -0.0003138454, -0.0010170399, 0.009017409, 0.01788338, -0.010049936, 0.0042023878, -0.02926872, 0.011337155, 0.014001076, 0.0008957178, 0.005816573, -0.0032989262, 0.010091238, -0.009389119, 0.017484136, -0.008205154, 0.026267506, -0.0064085554, -0.014882167, -0.014386553, 0.013154403, 0.005358819, -0.0055515575, 0.007096907, -0.026955858, 0.013691318, -0.008514912, -0.0022681192, -0.036868125, -0.0032679504, 0.0029513084, -0.003858212, 0.014799564, 0.010958561, -0.014166281, -0.0119084865, 0.022825746, -0.002731036, 0.004646375, 0.014785797, 0.015721956, 0.0032077194, 0.014414087, -0.017497903, -0.019797, 0.003875421, 0.013195705, -0.021036033, -0.016038598, 0.035381284, 0.0024660204, -0.020554185, 0.002028917, 0.00020553755, 0.021311373, -0.0062536765, 0.01956296, 0.00039214542, 0.01747037, 0.017112426, 0.023348894, -0.01825509, 0.025372649, 0.021848287, 0.016506677, -0.030315015, 0.009278983, -0.012390333, -0.03339883, -0.017153727, 0.028360095, 0.0055205817, -0.0027207106, 0.0068628676, 0.026061, 0.012830878, 0.0010669454, 0.015198808, 0.015391547, -0.0015427686, 0.020499118, -0.036537714, -0.013801455, -0.040860564, 0.025386415, -0.007984881, -0.0054483046, 0.0026776886, -0.010820891, 0.028153589, -0.0076338216, 0.045128345, -0.020237545, -0.00866635, 0.0041060187, 0.009533673, -0.002558948, -0.01723633, -0.018172488, -0.019494124, -0.009981101, -0.0161212, 0.004956133, -0.010779589, 0.06239221, 0.017910914, -0.019989736, -0.00502841, -0.017084893, 0.0026535962, 0.007372248, -0.018874608, -0.00057649467, -0.01974193, 0.014152514, 0.0056789024, 0.000588971, -0.0055343485, -0.016782017, 0.017222563, -0.007757725, 0.04171412, 0.0008101041, -0.0016924851, 0.006590969, -0.0091688465, 0.015405314, 0.009581857, -0.0032128822, -0.010111888, 0.014221349, -0.010999862, -0.013360909, -0.013684435, -0.026831955, -0.014854632, -0.039153453, 0.0002549053, 0.018337693, -0.011708865, -0.0041817375, 0.004116344, 0.0037824933, 0.0058200145, 0.0062261424, 0.017429069, -0.026377643, -0.012569305, -0.017112426, -0.011970438, 0.0010600619, -0.010049936, -0.025358882]" 12003281,Wide and Deep Learning: Better Together with TensorFlow,https://research.googleblog.com/2016/06/wide-deep-learning-better-together-with.html,231,1467222531,13,hurrycane,"[-0.013774592, 0.0122730015, 0.018352775, -0.015456374, -0.022330323, -0.002989834, 0.0065836413, -0.0033251892, -0.02778944, -0.047089886, 0.0106245885, 0.031820375, -0.0038307249, -0.011178509, -0.015669934, 0.0148690855, 0.026801726, 0.0020955533, 0.0035871335, -0.026828421, -0.014935822, 0.012359761, 0.00029427008, -0.042925473, -0.001229636, 0.009516749, 0.015976926, -0.02520003, -0.0023174551, -0.0017735455, 0.028750457, -0.0008413079, -0.0072610253, -0.022944307, 2.6642809e-05, -0.0119726835, 0.015576501, -0.0087225735, 0.01727163, -0.0077482085, 0.02134261, 0.03133987, 0.0017418453, -0.012586667, -0.0059963525, 0.0022824178, -0.007975115, -0.022650663, 0.016203832, 0.013354147, 0.022837527, 0.025480326, -0.010698, 0.010758064, -0.013607749, 0.010497788, -0.0024676141, 0.024225663, 0.018352775, -0.027135413, 0.0038373985, 0.013067177, -0.011485501, 0.017151503, -0.0035103855, -0.0012863628, -0.02673499, -0.006813885, -0.0051854933, 0.020595152, 0.026841769, 0.013267389, -0.0038107035, 0.011986031, 0.023745155, 0.008415582, 0.013394189, 0.0019070202, -0.012633383, -0.014228406, 0.006029721, -0.041056827, -0.0064601772, 0.026494734, 0.0109716235, -0.020955533, -0.000956847, 0.013427558, 0.0065602832, 0.01169906, 0.021329263, 0.016844511, 0.021662949, -0.006463514, 0.017832225, -0.0031716933, -0.010417703, 0.0019270414, -0.0040276, -0.023011044, -0.015362942, 0.02002121, -0.034169532, -0.009329883, -0.022223543, 0.007147572, 0.014855738, 0.0036638814, 0.024359139, -0.007481259, -0.013487622, 0.030485628, 0.016297264, -0.066043295, -0.005245557, 0.012046095, -0.002677837, -0.032087326, 0.0061365007, -0.022410408, 0.02393202, -0.008048526, 0.018980106, 0.0029097493, 0.0067104422, 0.004177759, -0.013474274, -0.007808272, -0.007975115, -0.013774592, 0.0045047724, 0.016964639, -0.0035070486, -0.0012112831, -0.048931837, 0.016230527, -0.0011804171, 0.014281796, -0.002370845, -0.012066116, -0.0007950089, 0.006386766, -0.01737841, -0.0061131427, -0.022223543, 0.033662327, -0.007087508, 0.03670555, 0.015122687, 0.0051854933, 0.0042878757, -0.022050027, 0.0009026229, 0.007120877, 0.016043663, 0.0077215135, -0.011045034, 0.014695568, -0.014722263, -0.012546625, 0.008569078, -0.00055934256, -0.007087508, 0.0004634076, 0.01114514, 0.029925035, -0.0015816756, 0.0019654154, -0.01159228, -0.019473964, -0.0043946556, 0.042498354, -0.04284539, 0.035797924, 0.013260715, -0.018099174, 0.02736232, -0.00066570524, -0.024425875, -0.0002339979, 0.019073538, -0.002582736, -8.769707e-05, -0.0029814919, -0.008335497, -0.014295144, 0.010898212, -0.018686462, -0.0068539274, -0.003623839, 0.004257844, 0.003627176, -0.012319718, -0.014548746, -0.63000077, -0.0043979925, 0.02720215, -0.02832334, 0.006987402, -0.004151064, -0.013454253, -0.025053207, -0.009343231, 0.025360199, -0.0035337436, -0.0043679606, 0.0021806434, -0.01307385, -0.0089227855, -0.005459117, 0.0031366562, -0.017672054, -0.017618665, 0.032033935, -0.00993052, 0.019393878, 0.0019120255, 0.014748958, -0.029044101, 0.011432111, -0.0007165925, -0.0035370805, 0.017965699, 0.029764865, -0.015990272, 0.02789622, 0.01948731, -0.009082955, 0.04343268, -0.0016767763, -0.007247678, 0.023091128, 0.015923535, 0.031046223, -0.02112905, -0.018152563, -0.007454564, 0.03005851, -0.0014965854, 0.017632011, 0.0006707105, 0.015883494, -0.00020594735, -0.03296826, 0.0021339273, 0.020888796, 0.0046248995, -0.014068237, 0.006637031, -0.0022523862, 0.01791231, -0.012012726, 0.008408908, -0.009777024, 0.0049318913, -0.010798106, -0.032941565, -0.0034069426, -0.041857675, 0.021262525, 0.00750128, -0.011045034, -0.013247367, -0.03475682, 0.014962518, 0.002751248, 0.005759435, 2.4557265e-05, -0.0020087948, 0.03470343, 0.027162109, -0.0061798804, -0.0004196112, 0.00694736, 0.0029080808, -0.009403295, -0.006713779, -0.01410828, 0.005275589, 0.0002992754, 0.0062499545, 0.010444398, 0.0064101242, -0.011659018, 0.016457435, 0.021916552, -0.019113582, -0.03745301, 0.009049587, 0.017311674, -0.01795235, 0.000726186, 0.011405416, -0.014722263, -0.0022640652, -0.011245246, 0.015629891, 0.020261465, 0.0063667446, 0.0144686615, 0.00021814776, 0.027816134, 0.02366507, -0.00942999, 0.00084756454, -0.010604568, -0.00082796044, 0.009223104, -0.002662821, -0.015376289, 0.0051587983, -0.0041677486, 0.003550428, -0.021662949, 0.023424815, -0.01101834, 0.0006415129, -0.0026578156, 0.005479138, -0.011131792, -0.016030315, -0.0030849348, 0.013554359, 0.0023992083, 0.00076080597, -0.010150754, 0.013067177, 0.0016250549, 0.008382213, 0.023531595, -0.00014129552, -0.0032367622, 0.018953413, -0.0043212445, -0.009496727, 0.010344292, 0.016190486, -0.008802659, -0.020795364, 0.0010652952, 0.0052055144, -0.00014619654, -0.028590288, -0.028056389, 0.017632011, -0.016791122, -0.026935201, 0.013747898, 0.009603507, 0.002544362, -0.013988152, -0.026881812, -0.03659877, -0.050053027, -0.007955094, 0.020928837, -0.020888796, 0.021796424, -0.015763367, -0.033101734, 0.009089629, 0.019166972, -0.028350033, -0.03307504, 0.01923371, -0.043299202, 0.008128611, 0.028777152, 0.007968442, 0.04052293, -0.02182312, 0.015015908, 0.010738042, -0.023197908, -0.007074161, 0.012666753, -0.012700121, -0.01378794, 0.02012799, 0.005062029, 0.03940174, 0.00705414, -0.016857859, 0.017298326, 0.011799166, 0.020408286, -0.018993454, -0.009643549, 0.002966476, 0.0046315733, 0.02562715, -0.00982374, 0.0013155603, 0.01627057, 0.007027445, -0.01119853, 0.0021339273, 0.014708916, 0.008849375, 0.0020888795, 0.007881683, -0.02989834, 0.005545875, -0.0022440439, -0.007754882, -0.007581365, -0.008155306, -0.028430117, 0.009797045, 0.029044101, -0.017338367, 0.020408286, -0.016444087, 0.010577872, 0.01938053, 0.014922475, 0.015656587, -0.001836946, 0.002509325, 0.030245375, 0.0029264335, 0.020007862, -0.0018970097, -0.051894978, 0.0035604385, 0.017498538, 0.0073878267, 0.031660207, 0.010571199, 0.003320184, 0.0046415837, -0.013507643, 0.026868464, -0.007955094, -0.0033118417, 0.008982849, -0.0018769884, -0.038414028, 0.016283918, 0.001303047, 0.021422695, 0.007247678, -0.03133987, 0.020034557, -0.02451931, -8.7175686e-05, -0.020568457, 0.015843451, -0.016457435, -0.024706174, 0.012800227, -0.0059362887, 0.0064134607, 0.022423755, 0.012066116, 0.0022106753, 0.017004682, -0.030832663, 0.004334592, -0.020568457, 0.011031686, -0.0134208845, -0.0030715873, 0.015536459, -0.029017407, -0.017044723, 0.012746837, -0.022383712, 0.009363253, -0.0008976176, 0.026401302, 0.008836027, 0.0046983105, 0.032140717, -0.013400863, -0.027389016, 0.016177138, 0.009523422, -0.01484239, -0.0013364158, -0.045942005, -0.013554359, 0.0023041076, -0.0024042137, -0.015336247, 0.012740163, -0.004334592, -0.015309552, -0.020995576, 0.006590315, 0.043299202, 0.001721824, 0.0016767763, 0.002739569, 0.019794302, 0.017979046, -0.012112832, -0.020007862, 0.03334199, -0.0033018312, -0.017832225, 0.013494295, -0.0100706685, -0.019407226, -0.018539641, -0.019620785, 0.016030315, -0.0063667446, 0.0134208845, -0.00091763877, -0.015816756, 0.01146548, -0.007027445, 0.019247057, -0.0046182256, -0.014241754, 0.0020004525, 0.020782016, 0.0655094, 0.03577123, -0.036171652, 0.00061356666, -0.037319534, -0.00023045247, -0.04129708, -0.009303189, 0.03782674, 0.019260405, -0.026908506, 0.0015741676, 0.025493674, -0.0061031324, 0.00550917, -0.0010327607, -0.0020822058, -0.016016968, -0.012379781, -0.017191546, 0.00573274, 0.0083221495, 0.020168032, -0.0007912549, 0.031473342, -0.007301068, 0.021315916, 0.031740293, -0.00059980206, -0.042338185, 0.00206719, 0.02652143, 0.002447593, 0.023518248, 0.014308492, 0.04743692, -0.0008212867, 0.009516749, 0.0013013786, -0.010350966, 0.01805913, 0.017992394, 0.002432577, -0.0048217745, 0.0045147827, -0.009096303, 0.015763367, 0.0353975, -0.015456374, -0.019193666, 0.0004081407, -0.006820559, -0.03384919, -0.010771411, -0.009857109, -0.004204454, 0.0019036834, 0.0055125067, -0.010370987, -0.016871206, -0.0049519124, -0.013240693, -0.002989834, -0.011458806, 0.0023241288, 0.005579244, -0.007307742, 0.008335497, -0.030699188, -0.0023391447, -0.0043813083, -0.053443283, -0.05133438, -0.017858919, -0.0011095087, 0.0045014354, 0.026708294, -0.010284228, -0.009002871, 0.011839209, -0.005522517, -0.0227174, -0.00039395902, -0.017298326, 0.005806151, 0.014388576, -0.0059930156, -0.021636255, -0.02821656, 0.0037306189, 0.018312734, 0.01246654, 0.034569956, 0.007467911, -0.0010052316, 0.011231898, 0.016791122, 0.023998758, 0.011318658, -0.03390258, 0.0036138284, -0.008248739, -0.041403864, -0.012893659, -0.001379795, -0.020808712, 0.026214438, -0.0019337152, -0.011525543, -0.00074537296, 0.033689022, -0.002305776, 0.04970599, 0.02303774, 0.020314854, 0.016497478, 0.026601514, 0.02398541, 0.007327763, -0.031927157, 0.004054295, -0.025079902, 0.042044543, -0.0030815979, -0.022570577, -0.001552478, 0.003470343, -0.009343231, -0.020982228, 0.011492174, -0.0007386992, 0.023331383, 0.0056860237, 0.004131043, -0.009957215, -0.0060430686, -0.016070358, 0.017191546, -0.03611826, -0.016564215, 0.0052355463, 0.005439095, 0.0012004384, -0.019207014, 0.035290718, -0.028937323, -0.020141337, -0.0012363098, 0.012266328, 0.039908946, 0.0077148397, 0.003054903, -0.0026928526, -0.0109716235, 0.009416643, -0.0017043055, 0.0040676426, 0.0050319973, 0.03761318, 0.022904264, 0.035984788, -0.020154685, 0.0113720475, 0.0036305126, -0.01014408, -0.022250239, -0.0035537647, 0.0039942316, -0.0033869212, 0.0075346488, 0.025653843, -0.0045081093, -0.005976331, 0.0065469355, 0.024906386, 0.017752139, -0.0049252175, -0.022997696, -0.024479266, -0.020835405, -0.019367184, 0.019567396, -0.0018235985, 0.017511886, -0.022170153, -0.0022807496, 0.009683592, -0.00684058, 0.019006802, 0.0068806224, 0.026841769, 0.0005218028, 0.029978424, 0.018539641, 0.020915492, -0.03918818, -0.0096702445, -0.028163169, -0.001468222, 0.0060230475, 0.011712408, 0.0021606223, 0.009256473, 0.02339812, -0.011031686, -0.015456374, -0.027442405, -0.003577123, -0.012559973, -0.022837527, -0.011919294, -0.031873766, -0.012539951, 0.0042778654, -0.010557852, 0.009837088, -0.0068806224, 0.025159987, -0.026534777, -0.03998903, 0.0016776106, -0.0057861297, 0.05034667, 0.011452132, 0.044126745, 0.023691766, 0.023157867, 0.0085223615, 0.015042602, 0.012426497, 0.0032684626, 0.027762745, 0.0006144009, -0.031686902, -0.03561106, 0.01869981, -0.010684652, -0.004995292, -0.043886494, 0.007915052, -0.017351715, -0.021102356, -0.00998391, -0.022316976, -0.036518686, 0.020515066, -0.0002577731, -0.0015382963, 0.0113720475, -0.015389637, -0.025827361, 0.023758503, 0.0037573138, 0.020808712, -0.019607438, -0.00079542596, 0.015402984, 0.00010156593, -0.018085826, 0.028937323, 0.0115722595, 0.03852081, -0.0005251397, 0.014241754, 0.005552549, 0.012927028, 0.0107246945, -0.010057321, 0.0011904278, 0.027922913, -0.026121005, -0.02345151, 0.0080552, -0.02620109, 0.010491114, -0.017311674, -0.019847693, -0.005162135, -0.003497038, -0.005248894, 0.027001938, 0.009296515, 0.0021439379, 0.011265268, -0.001660092, -0.010104037, -0.003343542, -0.01103836, 0.012099485, -0.036945805, 0.003577123, 0.02778944, 0.0019153624, -0.010130732, -0.011986031, -0.017925657, 0.0005501662, 0.031072918, -0.029524611, 0.021209136, 0.005409064, 0.021315916, -0.045728445, -0.013354147, -0.025974182, -0.004938565, 0.008402235, -0.036572076, -0.004307897, -0.007814946, 0.008515688, 0.014789, -0.015015908, -0.01323402, 0.0037139344, 0.025226725, 0.022570577, -0.0016350655, -0.009363253, -0.005349, -0.009456685, -0.015015908, 0.0093766, -0.012553299, 0.011051708, -0.014722263, 0.0014415272, -0.0014248427, -0.034516566, -0.010604568, -0.029978424, -0.0018920044, -0.00055934256, 0.02345151, -0.012426497, 0.014134974, -0.01328741, -0.0015683281, 0.0073611317, -0.027001938, 0.0033034997, 0.0075947125, 0.016817816, 0.023157867, -0.021876508, -0.0021723013, -0.0096702445, -0.009283167, -0.03513055, -0.01621718, -0.020902144, 0.031740293, 0.002455935, 0.0051287664, -0.015429679, -0.0059729945, -0.05061362, -0.0036305126, 0.014762306, -0.00066570524, 0.004861817, 0.0221835, -0.022023331, 0.023371426, -0.0072343308, 0.009937194, -0.0015015907, 0.011458806, -0.0240388, -0.012953723, -0.012052769, 0.011552238, -0.028910628, -0.02250384, 0.0093766, -0.044927593, 0.009156367, 0.023705112, 0.004998629, -0.021089008, 0.006793864, 0.026828421, 0.009516749, 0.005976331, 0.01695129, -0.02250384, 0.0024158927, -0.0019120255, -0.015830103, -0.016177138, -0.005615949, 0.007701492, 0.0062966705, 0.010998318, -0.020675236, 0.006974055, 0.0044046664, 0.0008413079, 0.025507022, -0.010010605, 0.013294083, 0.034036055, 0.0042378227, -0.004184433, -0.03427631, -0.0027762745, -0.0107246945, 0.018392818, 0.0066804104, -0.01801909, -0.0004346271, -0.0100706685, 0.021916552, -0.031233087, -0.0077682296, -0.017445147, 0.0046515944, -0.018686462, 0.03005851, -0.018339429, -0.027188804, 0.0019337152, -0.0021439379, 0.0036405234, -0.014508704, -0.011799166, -0.004938565, -0.0005276423, 0.0038607568, 0.031099612, -0.010451072, -0.027762745, -0.0033986005, 0.018419513, 0.01037766, 0.00040626372, 0.21153076, -0.020515066, 0.0023041076, 0.00018373631, 0.005899583, 0.013667813, 0.030245375, 0.006720453, -0.0009843762, -0.016844511, -0.0021706328, 0.012646731, -0.024959775, 0.005832846, 0.024372486, -0.005322305, -0.0301119, -0.057554305, 0.0046916367, -0.012066116, 0.005288936, 0.02018138, -0.013554359, -0.026921853, 0.0148690855, 0.013087197, 0.0008934465, -0.0037873455, 0.022343671, 0.010564525, -0.01896676, 0.016030315, 0.0005655992, 0.025213378, -0.038921233, -0.010517809, 0.029017407, -0.002886391, 0.012192917, -0.009543443, 0.02039494, -0.007427869, 0.022223543, 0.00866251, -0.0072610253, 0.004788406, -0.023891978, -0.0045781834, 0.007080835, 0.018873326, -0.007814946, 0.0016292259, 0.0048484695, 0.03264792, -0.00087676215, -0.0018119195, -0.027295582, 0.011732429, 0.023972062, 0.030485628, -0.0348636, -0.0030615767, 0.0035837966, 0.028376728, 0.005325642, 0.0047016474, -0.0010577872, 0.019473964, 1.2506739e-05, 0.008882743, -0.005699371, -0.014882432, -0.022757443, -0.010297576, -0.034142837, -0.025240071, 0.0380403, 0.012873638, 0.020007862, 0.021275872, -0.031099612, -0.012152875, -0.0062566283, -0.017098114, -0.025573758, -0.017071418, 0.031206392, -0.028029693, -0.01891337, -0.015349594, 0.0064568403, -0.014508704, -0.00784164, -0.010444398, 0.0051287664, -0.01019747, 0.017418453, 0.008462298, 0.002736232, -0.018886674, -0.03027207, 0.033475462, 0.046475902, 0.028350033, 4.0120627e-05, 0.007507954, -0.0049485755, 0.013594402, -0.0023791871, -0.0038307249, -0.026427997, -0.028830543, 0.022810832, -0.0032901522, -0.025720581, 0.009790372, 0.013460927, 0.0062432806, 0.02455935, -0.0004980276, -0.02329134, -0.025079902, 0.0024909722, 0.026121005, -0.00047592085, -0.0077348608, -0.028456813, 0.0039942316, -0.016310612, -0.027082024, 0.01489578, -0.026694946, 0.010344292, 0.0017535243, -0.0063634077, -0.0031216403, -0.010684652, -0.0044547194, -0.009109651, -0.0022840863, 0.009676918, -0.019660829, -0.007247678, -0.005218862, 0.023891978, -0.009703613, -0.02493308, 0.012406477, -0.019660829, -0.010210817, 0.0006398445, -0.0064768614, 0.012586667, -0.0015132697, 0.01579006, -0.0015391305, -0.013213999, -0.016417392, 0.007220983, -0.013080524, -0.045968696, -0.0058695516, 0.024052147, -0.00030594913, -0.015856799, -0.007407848, -0.16828494, 0.0015583175, 0.009136345, -0.026080962, 0.022250239, 0.016857859, 0.020007862, -0.0011920962, -0.02662821, -0.005419074, -0.012780205, -0.019941125, -0.0047583743, -0.007027445, 0.0025009827, -0.0013322447, 0.01109175, 0.019113582, -0.00088093325, 0.014094932, 0.024906386, -0.054137353, 0.00060939556, -0.016470782, -0.01043105, -0.0025643832, -0.0022140122, 0.0135209905, -0.010190796, -0.044927593, -0.005932952, -0.025814014, 0.026267827, -0.011979357, -0.00054140686, -0.0003826971, -0.0066703996, -0.014762306, -0.038013604, 0.035050467, 0.02773605, 0.026975244, 0.017284978, 0.0012496572, -0.012987091, 0.0012246306, 0.007174267, -0.018833285, 0.002786285, -0.02419897, 0.019981168, -0.0148690855, 0.0067771794, 0.012139527, 0.007274373, -0.022623967, 0.0021539484, 0.0017435137, -0.0005468293, -0.025814014, -0.01064461, -0.034409788, 0.012166222, 0.004054295, 0.0039141467, -0.014562094, -0.016724383, 0.008896091, -0.011852556, -0.0021472748, -0.0051054084, 0.009156367, 0.005605939, -0.008475645, -0.00084214215, 0.04057632, -0.00076831394, -0.0066003255, 0.009590159, 0.007888357, -0.006156522, 0.010711348, -0.0004834288, -0.0005218028, -0.009363253, -0.011291962, -0.0029598023, 0.0063000075, -0.041590728, -0.024906386, 0.031099612, -0.0121728955, -0.017338367, 0.0065536094, 0.020595152, 0.011485501, 0.012026073, -0.021836467, 0.04143056, 0.0043712975, -0.009850435, 0.0161104, -0.030512324, 0.00034911986, 0.03972208, 0.017872266, -0.011458806, -0.01669769, 0.027055329, -0.02832334, 0.0067838533, 0.0069273384, 0.006900644, 0.01812587, -0.0011253589, 0.016670994, 0.0046749525, -0.0025109935, 0.011525543, 0.009236451, 0.048024207, -0.007421195, -0.0092698205, 0.011999379, -0.018112522, 0.00086675154, -0.12322387, -0.03929496, -0.010844822, 0.01085817, -0.03032546, 0.011979357, 0.0031466668, 0.023131171, -0.020888796, 0.0417242, -0.015242814, -0.023411468, 0.01087819, -0.005565896, 0.008488993, -0.009016219, -0.008228717, -0.013454253, -0.009716961, 0.03232758, 0.0016350655, -0.0022040014, -0.011258594, -0.015803408, 0.0003653871, 0.014081584, -0.0075880387, 0.0046649417, 0.011578933, -0.0015074302, 0.0013589397, -0.02530681, -0.00694736, -0.02050172, 0.010604568, 0.0058194986, -0.0026261155, -0.0044680666, 0.013487622, -0.015976926, -0.004284539, 0.015990272, -0.0042178016, -0.0043446026, -0.0068539274, 0.002305776, -0.014068237, 0.04954582, 0.008242065, -0.024973122, -0.02487969, -0.008242065, -0.031206392, 0.006913991, 0.025814014, -0.004050958, 0.007127551, -0.012139527, 0.0069273384, 0.01880659, -0.011165162, -0.013027134, -0.024612742, 0.0073344368, 0.020408286, 0.0015499754, -0.018940065, -0.02768266, 0.008342171, -0.02552037, 0.01014408, 0.0058662146, -0.009530096, 0.024158927, -0.015122687, 0.0048017534, -0.010584546, -0.023531595, -0.01489578, -0.014415272, -0.009937194, -0.020915492, 0.022517188, -0.021556169, 0.006940686, -0.00545578, -0.010557852, 0.0044580563, -0.008382213, -0.028296644, -0.0041677486, 0.009623528, 0.021022271, -0.023958715, 0.0033602265, -0.0037940193, -0.00784164, -0.02562715, 0.03176699, 0.029551307, 0.0034269637, 0.0070608133, -0.035050467, 0.014335186, 0.0018419513, 0.0014573772, 0.022850875, -0.0133207785, 0.02339812, -0.015496417, -0.0040142527, 0.009463359, -0.030539019, 0.0021923224, -0.013267389, -0.005649318, -0.042044543, -0.020808712, 0.022063373, -0.0022340333, 0.0006727961, 0.01510934, 0.024425875, -0.005475801, 0.021155745, 0.009757003, 0.0028463488, 0.0032751362, -0.029711476, 0.026027573, -0.0017234925, 0.004334592, 0.011345352, -0.015149382, -0.012046095, 0.012359761, 0.004207791, -0.008168654, 0.012780205, 0.005092061, 0.0062265964, 0.036572076, -0.014815696, -0.040896658, -0.007087508, 0.009563465, -0.008635815, -0.0037606505, -0.008328823, -0.0006740474, 0.0112719415, 0.005138777, 0.011298636, 0.02441253, -0.018566335, -0.031179698, -0.016630951, 0.019834345, 0.005642644, -0.010017279, 0.0059663206, 0.009590159, 0.017231587, 0.0023625027, 0.01695129, -0.019901082, 0.0046949736, -0.01312724, -0.018352775, 0.027122065, -0.008542383, -0.027028633, 0.0022957653, 0.007881683, 0.016564215, -0.0043479395, 0.010577872, 0.0129203545, -0.003723945, -0.00022398728, -0.018726505, 0.04327251, 0.024532655, 0.0062899967, -0.010604568, 0.031099612, 0.03534411, 0.0107246945, 0.0069340123, 0.008956155, 0.0063600712, 0.0054624532, 0.023918672, 0.01791231, -0.0061264904, 0.016364003, -0.000630251, -0.0015082645, -0.028990712, -0.002854691, 0.031500038, 0.0007124214, 0.0343297, -0.0037840088, 0.0033735738, -0.01389472, -0.032194104, 0.020368244, -0.020942185, 0.0062466175, 0.011125119, 0.03158012, 0.022156805, 0.016737731, 0.013300757, -0.002686179, -0.0068305694, 0.03739962, 0.001248823, -0.01737841, -0.047410224, 0.02355829, 0.00784164, -0.032674614, 0.03918818, -0.0013622765, 0.004384645, 0.042178016, 0.027001938, -0.028723763, 0.03158012, 0.002666158, -0.016964639, -0.014401924, -0.0042745285, -0.0017969036, -0.028830543, -0.031099612, 0.009883804, 0.019527353, -7.789502e-05, 0.08606451, 0.03133987, -0.012973744, 0.014175016, -0.021396, 0.008909439, 0.026121005, 0.0019887735, -0.016230527, 0.012226285, 0.014188364, -0.0029881655, -0.00043754687, -0.028456813, -0.00026069285, -0.01025086, -0.028296644, 0.015816756, 0.0038974623, -0.015990272, 0.033448767, -0.021115704, 0.022343671, 0.026401302, -0.010958276, -0.0045681726, 0.030859359, 0.017645359, -0.003523733, -0.021462737, 0.010651284, 0.01648413, -0.03766657, -0.033875886, 0.015256162, 0.012079463, 0.0037873455, -0.026601514, 0.0041911067, -0.0046215625, 0.018566335, 0.020034557, -0.012853617, -0.02720215, -0.013133913, 0.02810978, -0.019433921, -0.034623347, -0.013868025]" 20792486,Racket for E-Commerce,https://defn.io/2019/08/20/racket-ecommerce/,138,1566734681,8,soegaard,"[0.013049197, -0.0021220448, 0.005467021, -0.024072805, 0.021206668, 0.015736202, -0.004144188, -0.02790351, -0.027145637, -0.026663354, -0.0021358242, -0.018381868, -0.015102344, -0.0105275465, 0.006173221, 0.017692892, 0.021372022, -0.006993102, -0.019401552, 0.0006411779, -0.021840526, 0.0012530743, -0.0039340504, -0.003155508, -0.011657466, 0.009073808, 0.010830696, -0.027683038, 0.0057047177, 0.001396898, 0.01492321, -0.017031476, -0.014123999, -0.009811012, -0.033925157, -0.009039359, -0.0025130382, 0.010665341, 0.02058659, 0.0061353273, 0.027765715, -0.009755894, 0.0044094436, -0.0073927077, -0.0014149835, 0.045747977, 0.012043293, 0.004147633, 0.005887296, 0.034007832, 0.022350367, 0.0115679, -0.007571841, 0.0100934915, -0.0075029437, 0.0104173105, 0.02058659, 0.016080689, 0.028082643, 0.006875976, 0.0060939887, 0.045362152, -0.015929114, -0.010017704, -0.017665334, -0.0072618024, -0.021165328, 0.0036997986, -0.017720452, 0.00648326, 0.02735233, 0.024830678, 0.0037583616, -0.009962587, 0.0148956515, -0.018919269, -0.027297212, -0.02026966, 0.002056592, -0.01690746, 0.0027128411, -0.019553127, -0.008991131, 0.012160419, 0.008474399, 0.016039351, -0.0020462575, 0.022722414, -0.018685017, 0.007358259, 0.00408218, 0.0085708555, -0.010582664, 0.011195852, -0.037452713, 0.0020634818, -0.0077647544, 0.012436009, -0.0063316855, -0.018712576, -0.012835614, 0.015433053, -0.043212548, -0.012801166, -0.015832659, 0.0079094395, 0.019373992, -0.00816436, 0.027738156, 0.009039359, -0.023824774, 0.015681084, 0.005081195, -0.0054256823, -0.0069689876, -0.01832675, 0.030342484, -0.011781482, -0.004547239, -0.02505115, 0.008963572, 0.022019658, 0.021854304, -0.028123982, 0.0444527, 0.013559039, -0.009638768, -0.009879909, 0.004843498, -0.020076748, -0.004895171, 0.0037239129, 0.00014877565, 0.021661391, -0.023728319, 0.013662385, -0.030094452, -0.006166331, -0.014496045, -0.009404516, 0.0007191182, 0.012008844, 0.007268692, 0.009990145, -0.0037342475, 0.021523597, -1.4990601e-05, -0.00015577307, 0.014730297, 0.009500973, -0.0006338575, -0.028385792, -0.0055049146, 0.0066072755, 0.0059699733, 0.010768688, -0.00045343203, 0.023452727, -0.01829919, -0.012050183, 0.011815931, 0.02702162, 0.008963572, -0.010217507, 0.021385802, 0.027655479, 0.043460578, -0.024389734, 0.0003849651, 0.0085708555, -0.002885085, 0.014399589, -0.031527523, 0.01606691, -0.0031038348, 0.010520657, 0.0058494024, 0.0092253825, -0.014509825, -0.028330674, 0.0028110202, 0.026690913, 0.008136801, 0.011106286, -0.0077716443, -0.0018757359, -0.02055903, 0.0015915335, -0.02142714, -0.0054291273, -0.0016699044, 0.020049188, -0.020765724, -0.004764266, -0.6279048, -0.022047218, 0.024279498, -0.022060998, 0.010265736, -0.014034432, 0.007861211, 0.021716509, -0.010555105, 0.009376957, -0.03921649, -0.0063006813, 0.012160419, 0.0021082652, -0.008660423, -0.013841519, 0.042716485, -0.017238168, -0.030480279, 0.019966511, -0.030259807, 0.020352338, -0.026001938, 0.00563582, -0.017265728, -0.016976358, -0.006596941, -0.01293896, -0.0036515705, 0.01747242, -0.021854304, 0.03133461, -0.012504906, 0.00060070056, 0.056826703, -0.0027731266, -0.033181064, 0.027751936, 0.010686011, 0.017334625, -0.042964514, -0.009845461, -0.0042992076, 0.017913364, -0.0095492015, 0.0004990767, 0.0540708, -0.009073808, -0.007344479, -0.006710622, 0.0076476284, -0.01831297, 2.6442128e-06, -0.00957676, 0.0074271564, -0.009246052, 0.018822812, 0.0020910408, 0.013648606, 0.024555089, -0.018960606, 0.020035408, -0.0047194827, -0.02624997, -0.015295257, -0.019704701, -0.0009912635, -0.006452256, -0.009039359, -0.0077371956, 0.0030435496, -0.0144547075, -0.01269093, -0.008233258, 0.023204697, 0.024458632, 0.03830704, -0.0066865077, -0.013572819, 0.0016251211, 0.006428142, 0.0038858221, -0.025285402, -0.004033952, 0.042082626, -0.013297228, -0.027586581, -0.020669267, 0.0073307, 0.000547305, -0.00050338276, 0.038499955, -0.008667313, -0.012876953, -0.0066865077, 0.019883834, -0.006314461, 0.026029496, 0.0069552083, -0.051673166, -0.014206676, -0.0018309525, 0.027145637, 0.012828724, 0.0041304086, 0.011009829, -0.024403514, -0.0030504393, 0.035606258, -0.022102335, 0.002833412, -0.02229525, -0.020683046, -0.005587592, 0.017568877, -0.025726346, 0.011250971, 0.0025802134, 0.01999407, -0.006414362, 0.01637006, -0.004023617, 0.017045256, -0.005945859, -0.0002650403, 0.018519662, 0.007702747, -0.010341523, 0.010431089, 0.0018498993, 0.013021638, 0.009797232, 0.024375955, -0.014275573, 0.011306088, -0.00085691334, 0.008439951, -0.0030521618, 0.0010308797, -0.028303117, -0.009521642, 0.015832659, 0.007585621, 0.0010592999, -0.009886799, -0.018492104, -0.0019928617, -0.005653044, -0.013235221, 0.01070668, 0.037149563, 0.0068001887, -0.020035408, -0.005422238, -0.021082653, -0.0055359188, -0.021716509, -0.037783418, -0.010320853, -0.0077303057, -0.0014933546, 0.030039335, -0.03265744, 0.003324307, -0.016990136, -0.017059034, -0.017389743, 0.03127949, -0.011753923, -0.034007832, 0.008116132, -0.019070843, -0.0019429111, 0.009135816, 0.0035930076, 0.016811004, -0.008770659, -0.01098916, -0.0030728308, -0.02060037, -0.009197824, 0.017375963, 0.011016719, -0.011202742, 0.024320837, 0.025753906, 0.014964549, 0.01632872, -0.015984233, 0.016480295, -0.00161737, -0.0020703715, -0.008522628, 0.018919269, -0.0186299, -0.007833652, -0.0019205194, 0.03431098, 0.0004822829, 0.024389734, -0.01745864, 0.003889267, 0.008681092, -0.010382862, 0.003906491, -0.033732243, 0.006393693, -0.017431082, 0.012773607, 0.011602349, 0.009686996, 0.005246549, -0.01464762, 0.008915343, 0.0021754403, 0.008109243, 0.0038927118, 0.024720443, -0.026635794, 0.0056220405, 0.010451759, -0.011113175, 0.011774592, -0.009700776, 0.0014227345, 0.014578722, -0.01777557, 0.029625949, 0.0065004844, -0.031885788, -0.0017353572, 0.025685009, -0.005129423, -0.005356785, 0.031196812, -0.017251948, 0.045499947, -0.027627919, 0.028358234, 0.0028144652, 0.006400583, 0.02874406, 0.018767694, -0.029736185, 0.015942894, -0.008557077, 0.021372022, 0.0035378896, -0.0037342475, 0.020614149, -0.007812982, 0.033098385, -0.01492321, -0.0063557993, 0.032877915, -0.004616136, -0.0017293287, 0.025740126, 0.0154468315, 0.03695665, 0.0020738165, 0.020903518, -0.014248014, -0.007750975, 0.0022116115, -0.0002439404, -0.007413377, -0.024568869, -0.0064419215, -0.034007832, 0.014757857, -0.00095595355, -0.030590514, -0.0039237156, 0.006111213, -0.007812982, 0.013972424, -0.001973915, 0.03097634, 0.00956987, -0.019098403, -0.029543271, 0.019249978, -0.02109643, 0.0015631133, -0.0045575732, -0.0004530014, -0.010121051, -0.019759819, 0.0061353273, -0.0032795237, -0.0242106, -0.0056151506, -0.002974652, -0.0074547157, 0.010072823, 0.049744036, -0.020366117, -0.027173195, -0.008260817, 0.02058659, -0.015570847, -0.042744044, -0.009804122, 0.038169246, 0.010107271, -0.02225391, -0.023907451, -0.0057426114, -0.02788973, 0.0052017653, -0.0020531472, -0.010121051, -0.006004422, 0.018712576, -0.002731788, -0.008660423, -0.0151161235, 0.0054842453, 0.025795246, -0.01631494, -0.026622016, -0.019525567, 0.024996033, 0.071488105, 0.0041269637, -0.017265728, 0.007241133, -0.024555089, -0.005405013, -0.008763769, -0.016246043, 0.0015183298, 0.008012786, 0.0040373965, 0.012635811, 0.021633832, 0.01464762, 0.012849394, -0.0021392691, 0.012670261, -0.022749973, -0.0053154463, -0.00070103264, 0.022887768, -0.0059699733, 0.0036309012, 0.035633817, 0.039684992, 0.039740108, 0.040732235, -0.0021995544, 0.018202733, -0.00061878614, -0.005804619, -0.0048090494, -0.00083538285, 0.024196822, -0.012070851, 0.035082635, 0.020751944, 0.012808056, -0.009673216, 0.019029506, 0.008956682, 0.019194858, 0.0026646128, -0.014234235, 0.004602357, -0.020393677, -0.007385818, 0.011326758, -0.007916329, -0.035468463, 0.013435023, 0.014964549, -0.019387772, 0.023783436, -0.0059320796, 0.030535396, 0.009790342, -0.006593496, -0.015543289, -0.03381492, -0.013441913, -0.023053123, 0.001706937, -0.0036033422, -0.013979314, -0.024651546, -0.01864368, -0.005994087, -0.0021496038, -0.008550187, -0.008970462, -0.040759794, -0.034228306, 0.0061594415, 0.028413352, 0.00816436, 0.0131456535, 0.004840053, -0.010658451, 0.006124993, -0.01918108, -0.011891718, 0.0015321093, -0.03527555, -0.01099605, -0.0013745063, 0.005522139, -0.01239467, -0.010217507, 0.017940924, -1.06239495e-05, -0.001358143, 0.024651546, -0.009624989, 0.019318875, 0.0017413857, -0.001550195, 0.030755868, -0.0070034363, -0.009342508, -0.0020514247, -0.0062490082, -0.0037997002, -0.033456653, -0.0060939887, 0.0005055358, 0.012298213, -0.018781474, -0.022915326, -0.014578722, 0.037535388, 0.001255658, -0.0038685978, 0.019663362, 0.011574789, 0.00788877, 0.0022029993, 0.032850355, 0.016190926, -0.01069979, 0.007213574, -0.017844466, 0.035578698, -0.0007053387, -0.015033446, 0.016507855, 0.018864151, -0.0151161235, -0.008419281, 0.0007961974, 0.0057357214, 0.012773607, -0.030370042, -0.01829919, -0.019070843, -0.037149563, -0.015763761, -0.00225295, 0.0106377825, -0.005301667, -0.031499963, -0.00020744624, -5.1404037e-05, 0.013262779, -0.019373992, -0.02702162, 0.009184044, -0.024196822, 0.002645666, 0.032244056, -0.0007574425, 0.016452735, -0.0014175673, -0.022722414, -0.011505892, -0.01269093, -0.011051168, -0.013428134, 0.0035378896, 0.0067829643, 0.033153504, 0.0021788853, 0.024059026, -0.022887768, 0.0036997986, -0.014179117, 0.017293286, -0.0013219719, -0.013937975, -0.010803137, 0.018781474, 0.034118067, 0.001632872, -0.013669275, -0.036184996, 0.01944289, -0.019897614, 0.000786724, -0.017114153, -0.027283432, -0.009535422, 0.018450765, -0.016962579, 0.005518694, -0.00085389905, -0.0048572775, 0.021165328, -0.0077647544, 0.041366093, -0.013021638, 0.03326374, -0.019690922, -0.012987189, -0.013889747, 0.011912387, -0.016535413, -0.012243096, -0.033484213, -0.014633841, 0.008446841, 0.032685, 0.011974395, 0.025175167, -0.0015975621, 0.0027369554, -0.009039359, -0.0110718375, -0.035854287, 0.0016871289, -0.012511796, 0.0076545184, -0.020669267, -0.0033622007, -0.011099396, -0.032188937, 0.005074305, 0.0124980165, 0.00676574, -0.015157462, -0.002268452, -0.00019140603, -0.013545259, 0.024665324, 0.00732381, 0.010169279, 0.019553127, 0.0042371997, -0.031527523, -0.0037790309, 0.009404516, -0.0040408415, 0.0043577706, 0.06691331, -0.03136217, 0.0003765682, -0.010293295, -0.00040778742, -0.03552358, -0.01069979, 0.027131857, 0.032767676, 0.014275573, -0.045251913, 8.84903e-05, -0.016287383, 0.031444844, -0.016411398, 0.017238168, 0.0061043235, 0.00039788338, -0.020917298, 0.03822436, 0.024072805, 0.0023959125, 0.012594473, -0.013490141, -0.0051397574, -0.016480295, -0.013435023, 0.012615142, 0.03301571, 0.021606274, -0.0054429066, 0.010010815, -0.005938969, 0.011195852, -0.002013531, -0.023218475, -0.007399597, 0.03185823, 0.008054124, 0.012015734, 0.010961601, 0.0060939887, 0.013979314, -0.013441913, -0.01295274, 0.018795254, -0.02115155, -0.018519662, 0.005938969, -0.015612186, -0.04053932, 0.009500973, -0.010830696, 0.001514885, -0.018946828, -0.014248014, 0.016122028, -0.040484205, -0.0019773599, -0.01944289, -0.015019667, 0.025492096, -0.0008999743, -0.022805091, -0.009197824, 0.016246043, -0.021881863, -0.004137298, 0.008557077, -0.012339552, -0.012518685, 0.02228147, -0.017679112, -0.01493699, 0.03298815, -0.018423207, -0.011250971, -0.03692909, 0.016122028, 0.0060182014, 0.002762792, -0.008281486, 0.020476354, 0.011464553, 0.02229525, -0.012422229, -0.029681066, -0.0050433013, -0.0016337333, -0.0038238142, 0.0062696775, -0.0028971422, 0.01858856, -0.0013607267, 0.016879901, -0.016893681, -0.015074785, -0.023535404, -0.008288376, 0.024389734, 0.0028816403, -7.354007e-06, -0.015102344, -0.0018826257, -0.008446841, -0.0005813231, -0.0005722803, -0.00038733345, -0.0004474035, 0.01550195, 0.002857526, 0.024913356, -0.020738164, 0.024775561, -0.04318499, 0.0132558895, -0.033732243, -0.021068873, -0.0055944812, 0.042358216, 0.02229525, -0.020999976, -0.024610206, -0.008253927, -0.07826762, -0.011664356, -0.0071929046, 0.023328712, 0.026842488, 0.006903535, -0.009935027, 0.0106377825, -0.016590532, 0.021895643, -0.015942894, -0.003961609, 0.0063213506, -0.012070851, 0.01777557, -0.0042647584, -0.057377882, 0.0059596384, 0.014509825, 0.011430104, -0.011712585, 0.00085303787, 0.0014683792, -0.006903535, 0.0005585008, -0.008701761, -0.00020712327, 0.012725378, 0.01297341, -0.031803112, -0.0027335105, 0.016122028, 0.010072823, -0.0024045247, -0.0064350315, -0.015887776, -0.014399589, -0.00815058, -0.023810996, -0.027586581, -0.01550195, 0.0006881143, 0.028275557, -0.022805091, -0.008253927, 0.028041305, -0.00022262523, -0.01828541, 0.008605304, -0.00507775, -0.010072823, 0.003606787, 0.006734736, -0.020669267, 0.020049188, -0.01858856, 0.013076756, 0.0007931831, -0.035468463, 0.008281486, -0.010300185, 0.004533459, 0.0077854237, 0.032767676, -0.002327015, 0.0035413343, 0.004843498, -0.011051168, -0.006373024, -0.0163425, -0.0024389734, -0.01295274, -0.005384344, -0.005611706, -0.0031572306, -0.04682278, 0.013193882, 0.0022598398, -0.021165328, -0.002507871, 0.21231471, 0.025133828, -0.0038065899, 0.04481097, 0.0072549125, -0.009246052, 0.02675981, 0.021275565, -0.006999992, 0.014881872, -0.011609238, 0.025547214, 0.007950778, 0.0054532415, 0.001122169, -0.011774592, -0.02591926, -0.035661373, -0.010031484, 0.018712576, 0.012050183, 0.010189949, 0.005470466, 0.008639754, -0.0027369554, 0.004767711, -0.00578395, -0.0050536357, 0.017899584, -0.021895643, -0.014537384, -0.011195852, 0.006810523, 0.006931094, -9.473414e-06, -0.0022512276, 0.031996023, -0.019553127, 0.030259807, 0.0067760744, -0.0124980165, -0.011588569, -0.0024889242, -0.0021099877, -0.0219921, -0.010382862, -0.009149595, -0.008591525, 0.01293896, 0.0074547157, -0.016921239, -9.091248e-05, 0.035110194, 0.0072273538, -0.0044128885, -0.015033446, 0.025009813, 0.0010687733, -0.0029643173, 0.017830687, -0.01324211, 0.031141695, 0.00030680944, 0.018133836, -0.03861019, 0.010369082, -0.017596435, -0.00083538285, 0.006820858, -0.003551669, -0.005597926, -0.021496037, 0.006362689, -0.0065039294, -0.029460594, -0.028909415, -0.000111527916, 0.019690922, 0.028909415, 0.037645623, -0.0033294742, -0.003913381, -0.001209152, 0.00018053313, -0.0073789284, -0.031885788, 0.028909415, -0.0064660357, -0.022474382, -0.039822787, -0.0068380823, -0.008446841, -0.01665943, 0.021909423, 0.0012496294, -0.004881392, 0.00030939307, 0.018133836, 0.0037962552, 0.0014632118, -0.015653525, 0.04064956, 0.028799178, 0.03260232, -0.016190926, 0.012773607, -0.02229525, 0.018547222, 0.012566914, -0.007358259, 0.008061014, -0.02674603, 0.004712593, -0.0016845452, -0.0003849651, 0.006459146, -0.029350359, -0.00010560703, -0.0013297228, -0.014303133, -0.0062180045, -0.012215536, 0.016246043, 0.014992108, -0.017045256, -0.022377925, -0.02733855, -0.010575775, -0.021248005, -0.014027542, 0.026966503, -0.009914358, 0.01664565, 0.005949304, 0.015419273, -0.021041313, 0.0191673, -0.014137778, 0.019525567, -0.0017482755, -0.012656481, 0.024183042, 0.023604302, -0.0063179056, 0.0059251897, -0.008198809, -0.02308068, 0.012525575, -0.01945667, -0.020035408, -0.0039340504, -0.0009171987, -0.010024594, 0.010568885, 0.016273603, 0.0015467501, -0.013765732, -0.023521625, 0.024679104, 0.0034776041, -0.021578714, -0.009032469, 0.04643695, 0.014055101, -0.0073720384, -0.013069866, -0.17670844, 0.0131456535, 0.029267682, -0.03629523, 0.01911218, 0.01637006, -0.0042130854, 0.008619084, -0.0039374954, -0.015584627, 0.017417302, 0.025023593, -0.014978329, -0.035358224, 2.5971149e-05, 0.016204705, -0.0063006813, -0.008219479, 0.06542512, 0.034807045, 0.029433036, -0.0270354, 0.0040511764, 0.0108582545, -0.004540349, 0.02028344, 0.016742107, 0.0100934915, -0.028854296, -0.013400574, -0.034559015, 0.007571841, 0.010961601, -0.0008452869, 0.018051159, 0.0049812933, 0.022005878, 0.0051053087, 0.0044370024, -0.008660423, 0.016480295, -0.0059010754, 0.016122028, -0.0095492015, -0.0022787866, 0.04704325, 0.025602331, -0.012656481, -0.021840526, -0.0064419215, 0.01828541, -0.017651554, 0.01211908, 0.015529509, 0.012001954, -0.0012763272, -6.141571e-05, 0.006531488, 0.018133836, -0.0026956168, 0.005666824, -0.022143675, 0.004426668, -0.0037583616, 0.0045782425, -0.023494067, -0.020228323, 0.010024594, 0.0018843481, 0.005194876, -0.02677359, -0.0049985177, -0.0008676786, 0.010224397, -0.013049197, 0.021854304, 0.005604816, 0.011664356, 0.021220447, 0.004619581, -0.0062593427, -0.00437844, -0.0062421183, 0.014440928, -0.0073651485, 0.016011791, 0.0063833585, 0.019622024, -0.018244073, -0.016287383, 0.0009060028, -0.020131866, -0.004533459, -0.021303125, 0.0034310983, 0.012318883, 0.022129895, 0.022102335, -0.0068380823, -0.036212556, 0.025478316, -0.005518694, -0.024775561, -0.0012341274, 0.05153537, -0.0075373924, -0.00059122714, 0.004784935, 0.025326742, 0.00063299626, -0.03687397, 0.02000785, 0.030810988, 0.006507374, -0.019277535, 0.04004326, 0.031940907, -0.035716493, -0.016590532, -0.018905489, 0.025671229, -0.012587584, 0.0016690433, 0.022612177, 0.022970445, -0.018120058, -0.10059043, -0.0214547, 0.016576752, 0.02000785, -0.03469681, 0.023618082, -0.014744077, 0.03750783, -0.009879909, 0.028303117, -0.026070835, -0.01380707, -0.001706937, 0.029543271, 0.0060836542, 0.007268692, -0.0028540813, -0.01998029, -0.014385809, 0.01864368, 0.0038685978, -0.009218493, -0.018409427, -0.02029722, -0.0066279448, -0.0048021595, -0.01551573, 0.005239659, 0.033070825, 0.006231784, 0.008088573, -0.0045782425, 0.008219479, -0.035165314, -0.008605304, -0.0180236, -0.022708634, -0.007868101, 0.03896846, -0.028330674, -0.013462583, -0.018877931, 0.010686011, -0.022336587, -0.014427148, 0.010885813, -0.020917298, 0.026732251, 0.00958365, -0.022460602, -0.0042337547, -0.005022632, 0.029818863, -0.037122004, 0.041035384, -0.010555105, 0.015253918, 0.01126475, -0.025271622, -0.004113184, 0.0104242, -0.024596427, -0.011312978, 0.0055944812, 0.023273595, 0.024486192, 0.006107768, 0.007585621, 0.02735233, -0.0105275465, 0.0065039294, 0.016480295, -0.03488972, 0.00985924, -0.014330692, -0.019070843, -0.02594682, -0.010658451, 0.02507871, -0.0035964523, -0.030342484, -0.013875968, -0.009122036, -0.0214547, 0.010079713, 0.0028437467, -0.0024872017, 0.020986196, -0.033484213, -0.040153496, -0.0073789284, -0.014289353, 0.0029574276, -0.019525567, -0.010589554, 0.009039359, -0.018009821, -0.0012591028, 0.002280509, 0.020338558, -0.04056688, -0.022322807, -0.06311016, 0.012491127, 0.008681092, -0.007985227, -0.0090049105, -0.032464527, 0.0040684007, -0.017582657, 0.009066918, -0.0008194503, -0.030122012, -0.00021864209, -0.012077741, -0.026980283, -0.013014748, 0.0047470415, 0.017320845, -0.0045162346, 0.011051168, 0.0026301641, -0.00057787827, -0.014151558, 0.009721445, 0.02141336, -0.0033932046, 0.0040442864, -0.027104298, 0.02874406, -0.02392123, 0.00732381, 0.019373992, -0.024568869, 0.020049188, -0.0013788124, 0.0072273538, -0.028854296, -0.013758842, 0.026139732, 0.013745062, -0.0077647544, -0.014027542, -0.018505882, 0.0058769616, 0.020186983, -0.02144092, 0.0140206525, -0.013683055, -0.0122775445, 0.024623986, 0.029598389, 0.022873988, 0.01126475, -0.020999976, -0.043350343, 0.00044051374, -0.016287383, 0.014468486, 0.018133836, -0.010865144, -0.0003007809, 0.01831297, -0.001051549, 0.0011910665, -0.019856276, -0.0030831655, -0.019194858, -0.011871049, 0.010961601, 0.021688951, -0.024486192, -0.014137778, -0.017927144, 0.02618107, 0.024555089, 0.010568885, 0.0034121515, -0.015667304, -0.003555114, -0.012222426, 0.039933022, -0.0020652043, 0.00067476544, -0.004681589, 0.027435007, 0.0112923095, 0.0072480226, 0.0150058875, 0.0015114401, -0.0098730195, 0.015102344, -0.008116132, -0.002771404, 0.020655487, 0.009328729, 0.002735233, 0.016521635, -0.012008844, 0.00043233216, 0.029763743, 0.005022632, 0.00873621, 0.0019773599, -0.0022081668, -0.030204687, 0.009776563, 0.005156982, -0.022625957, -0.0287165, 0.00096370454, 0.013097425, 0.019263756, -0.014537384, 0.009445854, 0.020641707, -0.009039359, -0.020228323, -0.021564934, -0.026994063, -0.0158051, 0.04288184, 0.0067416257, 0.013152543, 0.029460594, -0.011705695, 0.01660431, 0.029129887, 0.015653525, -0.011760812, 0.0049192854, -0.0045196796, -0.017720452, 0.006311016, -0.010079713, -0.017307065, -0.02000785, -0.00634202, -0.00093270064, 0.02503737, -0.010293295, 0.09331485, 0.014881872, -0.0016966023, 0.004988183, 0.026677134, 0.008433061, 0.020352338, -0.0019153521, 0.011795262, -0.035771612, 0.01663187, 0.023590524, 0.006338575, -0.024003908, -0.017872026, -0.0016578474, 0.0014761301, 0.019608244, -0.0046264706, -0.0036584602, 0.017389743, 0.015240139, -0.00055247225, 0.006655504, -0.010045264, 0.0049468447, 0.011347427, 0.020517692, -0.0043543256, -0.01947045, 0.020228323, -0.0013331677, -0.035165314, -0.0076062903, 0.007957668, 0.008109243, -0.012863173, -0.005825288, 0.033622008, 0.0051018638, -0.021303125, 0.005863182, -0.030397601, -0.022433044, 0.0015209136, 0.013152543, -0.005945859, -0.012456678, -0.03921649]" 11313928,Use the Unofficial Bash Strict Mode (Unless You Love Debugging),http://redsymbol.net/articles/unofficial-bash-strict-mode/,180,1458326832,57,gkst,"[-0.007033424, -0.010117895, -0.010920133, -0.033887684, -0.018161034, -0.00076982105, -0.008651733, -0.0087139765, -0.027829397, -0.004090728, 0.022130733, -0.022324378, 0.009322572, 0.007303142, -0.0007417254, -0.018824955, 0.013575822, -0.020678405, 0.008513416, 0.003324797, -0.026169593, 0.020125136, -0.0086932285, -0.0132023655, -0.009135843, -0.0014998759, 0.005231844, -0.008437342, -0.011964428, -0.01089247, -0.0005074508, 0.0030516207, -0.018921778, 0.00033174487, -0.029848827, 0.010276959, -0.022531854, -0.016445901, 0.0140461, -0.0059510926, 0.027884724, 0.012891152, -0.010850975, 0.00012567404, 0.021300832, 0.026529217, 0.025892958, -0.0072823945, -0.010588173, 0.013887036, 0.018686637, -0.011182936, -0.03820318, 0.012766667, -0.016293753, 0.012123493, -0.032642834, -0.008022391, 0.011397328, -0.0056053, -0.029904153, 0.0032418068, -0.018022716, 0.0010702284, 0.004142597, 0.015159553, -0.016376743, -0.00050269614, -0.023915024, -0.009689112, 0.030180788, 0.029018924, 0.00047632947, 0.018008884, 0.03903308, -0.0070887506, -0.020941207, 0.020415602, -0.0020955037, 0.014232828, 0.0309277, -0.023417082, -0.016487397, 0.00817454, 0.007918653, -0.013326851, -0.008368184, 0.020443264, -0.025560997, -0.008762388, 0.0003792914, 0.02103803, 0.013741802, 0.010920133, -0.0009785934, 0.017773746, 0.009868924, 0.034800578, -0.004277456, -0.03311311, 0.0053044604, -0.009751354, 0.0081330445, -0.000701527, 0.002233821, 0.0067256684, -0.003935121, -0.008547996, 0.011922933, -0.032089565, -0.029046588, 0.013575822, -0.006023709, -0.0043950253, 0.039143734, -0.016791694, 0.021231672, -0.013907783, -0.018368509, 0.005650253, 0.020802889, -0.009460889, 0.021342326, -0.0063141747, 0.007932485, -0.0051523116, -0.016860852, -0.016307585, 0.018230192, -0.029848827, 0.051121995, -0.013326851, 0.029931817, -0.0009803224, -0.013679559, -0.002615922, -0.014537126, -0.011632467, -0.0201528, -0.025630156, 0.027940052, 0.02112102, -0.017704587, -0.018977104, 0.0030326021, 0.019737847, 0.009460889, 0.007064545, 0.035741135, 0.0019226075, 0.014550958, -0.0115356445, 0.003613534, -0.008229867, 0.007904821, 0.013375262, -0.0010875181, 0.015920296, -0.010117895, -0.022199892, 0.010449856, 0.020221958, 0.002515642, 0.016957674, -0.0011082656, 0.02338942, -0.0018327014, -0.0044468944, -4.9606397e-06, 0.006687631, 0.0051834327, 0.029018924, -0.020982701, 0.031176671, 0.007586692, 0.030540412, -0.0012422603, -0.008644817, -0.02428848, -0.0025830716, 0.021259336, 0.014882918, 0.019060094, 0.04315493, -0.033694044, 0.019724017, -0.0063902494, 0.0033835818, 0.014772264, 0.009654532, -0.0057159537, -0.00013118511, -0.029544529, 0.0063383803, -0.6245293, -0.014495631, -0.01634908, -0.013679559, 0.014841423, 0.017676923, 0.008043138, 0.0012681948, -0.0014825863, 0.020429434, -0.008838462, 0.019959155, 0.006653052, -0.027649585, -0.002657417, -0.006162026, -0.020028314, -0.030208452, -0.005563805, 0.002031532, 0.00769043, 0.0335004, -0.017358795, -0.012697509, -0.00051566336, -0.0007611762, -0.00074907346, 0.001633006, -0.004516053, 0.018091874, -0.022601012, 0.012005923, 0.011445738, -0.009218833, 0.048632286, 0.0154776815, -0.022130733, -0.008582575, 0.013679559, 0.051758252, -0.014412641, -0.011853774, 0.013451337, -0.0087001445, 0.010629668, 0.0072339834, 0.02120401, -0.0077734203, 0.017663091, -0.002228634, 0.006594267, -0.019807007, 0.012033586, 0.011708541, -0.0016563471, -0.0066392203, 0.002944425, -0.01489675, 0.0018275145, -0.0066115567, 0.012856573, 0.031757604, -0.0089422, 0.00093796273, -0.008181456, 0.006946976, 0.022282882, -0.013485916, -0.009433225, -0.021079523, 0.016847022, -0.012164988, -0.02258718, -0.015076562, 0.029378548, 0.046031926, -0.0032971336, -0.018174864, -0.008831546, 0.01251078, 0.0028597058, 0.008617154, -0.024454461, -0.012393211, 0.00789099, -0.0070472555, -0.01894944, -0.0011800176, 0.0010261398, 0.013285356, -0.010629668, 0.020927375, 0.013167786, -0.020055978, 0.024025677, 0.011839942, -0.018880282, 0.012573023, -0.0020055978, -0.035243195, -0.00991042, -0.016307585, -0.021964753, 0.015242543, 0.016570387, 0.025270531, 0.016390575, -0.0016079361, 0.017510943, 0.005169601, 0.0061378204, -0.005370161, -0.00031272628, -0.029572193, 0.027774071, -0.03239386, 0.00041646408, 0.007593608, 0.021162514, -0.029350886, 0.012932647, -0.0057609067, -0.0015889176, -0.026930336, 0.007116414, 0.0126283495, 0.027442109, 0.009018274, -0.017123654, -0.019419719, 0.006296885, -0.021771109, 0.027635753, -0.0042843716, -0.016736368, 0.012185736, 0.008928368, -0.0041218493, 0.021494474, 0.0028320423, -0.017773746, -0.0044849315, 0.013126291, -0.009225749, -0.0074829543, -0.028064536, -0.026515385, -0.037428603, 0.0017289636, 0.049904805, 0.005930345, 0.01562983, 0.006867443, 0.011929848, 0.00991042, -0.008603322, -0.043210257, -0.0009967475, -0.014952077, -0.024731094, -0.00023103275, 0.038175516, -0.007386132, 0.0054185716, -0.013133207, 0.0003183454, -0.009336404, 0.0011817466, -9.9847646e-05, -0.02388736, -0.00060859515, -0.00825753, 0.015878802, -0.0051488536, -0.015768148, 0.01724814, -0.041495126, -0.013050217, -0.024883244, -0.0040388587, 0.025146047, -0.012739004, -0.002187139, -0.02161896, 0.026183425, 0.01137658, 0.005266423, -0.017469447, -0.0011705083, 0.017317299, 0.009336404, -0.005072779, -0.0076489346, 0.010830228, 0.011867606, 0.006791369, 0.017995052, 0.0007136297, 0.02258718, 0.012324052, 0.016335247, 0.0028873691, 0.029959481, -0.032421526, 0.01756627, -0.03172994, 0.028244348, -0.019378224, 0.0054254876, -0.005401282, -0.0011514898, -0.023596894, -0.0060444567, -0.003976616, 0.023776706, 0.02283615, 0.013153954, 0.028493319, 0.006016793, -0.0017185898, -0.0044503524, -0.016044782, 0.008070802, 0.024758758, -0.008672481, 0.013893952, 0.003409516, -0.0047684815, 0.0010719574, -0.018340845, 0.009530047, 0.011819195, 0.017040664, 0.014039184, 0.013105544, 0.023071289, 0.032034237, 0.0015698989, -0.0049240883, -0.019945323, -0.0006608963, 0.01274592, 0.011978259, 0.0058231493, 0.020802889, 0.044814736, 0.034800578, -0.0016935198, -0.031010691, -0.0037864302, 0.02704099, -0.0032054984, -0.020899711, -0.0057609067, 0.01935056, -0.014467967, 0.0019139627, 0.015104226, 0.018327015, 0.011196768, 0.006213895, -0.036543373, 0.002280503, 0.021148682, 0.01991766, -0.026819684, -0.012317137, -0.03814785, -0.022794656, -0.029074252, -0.008582575, -0.012904984, -0.025284363, -0.0055430573, 0.038092524, 0.002031532, 0.011902185, 0.034606934, 0.021259336, -0.0031225083, -0.009744438, -0.0026366694, 0.035409175, 0.019807007, -1.20757295e-05, -0.0049586673, -0.03648805, -0.016445901, -0.0051523116, -0.018078042, 0.011342001, 0.020775227, -0.007316974, 0.019558037, -0.01733113, 0.011722373, 0.03814785, -0.042269703, 0.017441785, 0.00473736, 0.017261973, -0.017386457, -0.04329325, -0.021397654, 0.01634908, 0.0010909761, -0.010221632, -0.0120819975, 0.026971832, -0.023320261, -0.0070507135, -0.03125966, -0.004830724, -0.010719574, 0.037041314, -0.0061032414, -0.007213236, -0.0029530698, 0.054054316, 0.009253413, -0.0019105048, -0.032725822, -0.010857891, 0.019696353, 0.049240883, 0.01659805, 0.015173384, -0.0034268058, -0.00817454, -0.01226181, -0.013866288, -0.025035392, 0.013603485, 0.0019260654, 0.019793175, -0.0054669827, -0.00021849776, -0.027151644, 0.013423673, 0.014716938, 0.032338534, -0.028603973, -0.00550502, -0.0061447364, 0.00020693532, 0.0103945285, 0.028520983, 0.01878346, 0.013824793, 0.025754642, 0.0008212577, 0.021480644, 0.002372138, 0.0038313833, -0.02549184, 0.003845215, 0.003658487, 0.0055707204, -0.008949116, 0.018672807, 0.017469447, 0.0201528, 0.012676761, -0.028631637, -0.0033956845, 0.015934128, 0.012005923, -0.012296389, 0.0060652043, -0.02857631, -0.0072823945, 0.022296714, -0.028714627, -0.015989454, 0.033777032, -0.006829406, -0.021245504, 0.011798447, 0.017275805, 0.009924251, 0.0060479147, 0.0039039997, -0.026224919, -0.034938894, -0.003414703, -0.039558686, 0.009571542, 0.00071492646, -0.0040734382, -0.022075407, -0.010754153, 0.009951915, -0.016210763, 0.0027231176, 0.009377899, -0.051951896, -0.04993247, 0.010574341, 0.010567426, 0.00967528, 0.0060963253, 0.003983532, -0.0098550925, 0.002662604, -0.013188534, -0.022130733, -0.0005463525, -0.026598375, 0.025865294, 0.0070403395, 0.0013935446, 0.014772264, -0.01571282, 0.02300213, 8.428698e-06, 0.015367028, 0.01202667, -0.019475045, -0.0005320885, 0.017400289, 0.0020004108, 0.031951245, 0.032836474, -0.003751851, -0.00070109474, -0.0041633444, -0.016501227, -0.029184906, 0.021992417, -0.019613363, -0.003696524, 0.007157909, -0.01432965, 0.0004132223, 0.010574341, -0.03560282, 0.0039697005, 0.028520983, 0.024191659, 0.025962116, 0.004934462, 0.033389743, -0.014772264, -0.013133207, 0.01634908, -0.02745594, 0.014523294, 0.015048899, -0.0012880779, 0.01339601, 0.027262298, -0.049185555, -0.026695197, 0.021010365, -0.018658975, 0.05109433, 0.015062731, -0.009211918, -0.025381185, -0.031149007, -0.002128354, -0.0098550925, -0.041744098, -0.025685484, -0.004744276, -0.0001643596, -0.0029772753, -0.036377393, -0.0014609742, -0.023098953, 0.005601842, -0.0014627032, -0.0051765167, -0.0015284038, 0.0022511105, -0.015325533, -0.007794168, -0.013098628, 0.014661611, -0.036156084, 0.014398809, -0.0005208503, 0.018811123, 0.026211089, 0.026681365, 0.00845809, 0.027331457, 0.028686963, -0.014993572, -0.010332286, -0.034108993, -0.026031276, -0.015726652, 0.025962116, 0.008575659, 0.005636421, -0.005079695, -0.020332612, 0.016044782, 0.010906302, -0.017663091, -0.015118058, -0.0035789546, -0.022462694, -0.0049724993, 0.011763868, -0.017912062, 0.012538443, -0.009128927, -0.021798773, -0.04345923, 0.01032537, -0.0057609067, -0.0036239077, 0.0056675426, -0.0038521308, 0.020636909, -0.011279758, 0.015546841, -0.03164695, -0.002659146, -0.024260817, -0.006971181, 0.004125307, 0.0061862315, 0.03648805, -0.008105381, 0.010318454, -0.01975168, 0.0060444567, -0.022739328, -0.008776219, 0.012019754, -0.014564789, -0.002947883, -0.022628674, 0.003042976, -0.0042878296, 0.010069484, -0.004550632, 0.018410005, 0.022379704, -0.012241062, -0.028520983, 0.0009837802, -0.016224595, 0.019668689, 0.032670494, 0.02654305, 0.028327338, 0.008084633, -0.017939726, -0.013112459, 0.011507981, 0.011189852, 2.4502655e-05, 0.0018672807, 0.021826437, -0.010519015, -0.006929686, 0.0046163327, 0.0011324711, -0.028202854, 0.020221958, 0.003845215, -0.018838787, -0.012863489, 0.0054981043, -0.010339202, 0.01202667, -0.0056225895, 0.029848827, -0.028880607, 0.015145721, -0.006407539, 0.029821163, -0.03316844, 0.029074252, -0.0002811727, 0.01538086, -0.018285519, -0.01975168, -0.018575985, -0.0023081664, 0.00645595, 0.0357688, -0.01764926, 0.01202667, 0.040277936, -0.0007253002, -0.0120889135, -0.023845866, 0.010595089, 0.030125462, -0.020263452, 0.012545359, 0.019641027, -0.034606934, 0.020304948, -0.018008884, -0.02275316, -0.022199892, -0.02338942, 0.016017118, 0.023513904, 0.023458578, 0.0045298846, -0.020263452, -0.014633948, 0.011618636, -0.020872049, -0.022116901, 0.018036548, 6.0351635e-05, -0.0048203506, -0.0016165809, 0.0032072274, -0.0071440777, 0.02145298, 0.008879957, 0.011736205, 0.03610076, -0.0015500159, -0.009737522, -0.019447383, 0.015394691, -0.01771842, 0.0027646127, -0.022047743, -0.005798944, 0.0031916667, -0.020028314, 0.0007067139, -0.03211723, 0.000119298486, 0.015035067, 0.021356158, -0.014799928, 0.00987584, 0.0100764, 0.025159879, -0.017953558, -0.0258238, 0.016860852, -0.032504514, 0.017068328, 0.03416432, 0.0056675426, -0.023043627, -0.0040803542, 0.015533009, -0.008810799, -0.0030913868, -0.010332286, -0.0017842904, -0.00465437, 0.0024827917, -0.037345614, -0.017303467, -0.0062381006, -0.009343319, 0.02120401, -0.009536963, 0.0060963253, 0.006836322, 0.037096642, -0.00398699, 0.020512424, 0.00057747384, -0.020623077, -0.0001480425, 0.012476201, -0.022780824, -0.019336728, -0.03294713, 0.043929506, 0.00031251015, 0.0020695694, -0.0074552908, -0.0065700617, -0.027870893, 0.010712658, -0.026750524, 0.021881763, 0.034745254, -0.0032020404, 0.009336404, 0.01643207, -0.016017118, 0.026307909, -0.044261467, -0.018520657, 0.007116414, 0.0073723006, 0.0005299273, -0.013983857, -0.022241388, -0.026128097, -0.0013857643, 0.020470928, 0.023998015, 0.013589653, -0.014288155, 0.004796145, 0.011909101, -0.0036792345, 0.025533333, 0.0016433799, 0.008202204, -0.029516866, 0.002615922, 0.009931167, -0.0014575163, -0.018188696, -0.0053805346, 0.0008783135, -0.009370983, 0.010263127, -0.014412641, -0.013887036, -0.01259377, -0.0062726797, -0.009633785, -0.008478837, -0.0029115747, 0.038064864, -0.005262965, 0.0013719326, -0.036737017, 0.006587351, -0.015145721, 0.0020194293, -0.000830767, -0.018147202, -0.01983467, -0.0020764852, -0.003321339, 0.0008126129, -0.009730607, -0.0092949085, -0.004834182, -0.01080948, -0.0017644073, 0.019654857, 0.011162189, 0.0030204994, 0.0049067987, -0.003755309, -0.009163507, -0.01733113, -0.008043138, -0.026819684, 0.03787122, -0.02170195, -0.0023894277, -0.03908841, 0.0028355003, 0.0063487543, -0.0075728605, 0.03139798, 0.20813955, -0.0109823765, 0.03139798, 0.00040846763, -0.014509462, -0.006542398, 0.005307918, -0.0041114753, -0.013423673, 0.014398809, -0.010131726, 0.019807007, -0.021660456, 0.0025692398, 0.021937089, -0.030097798, -0.033970676, -0.020360274, -0.030014807, -0.0026781645, 0.0011203684, 0.0067222104, -0.024883244, -0.012835826, 0.008949116, 0.04462109, 0.0089422, 0.011922933, 0.040582232, -0.0064732395, -0.039282054, -0.010228548, -0.0014428201, 0.017469447, 0.003266012, -0.0031951247, 0.017427953, 0.0027404074, 0.005968382, 0.0006055695, 0.0072823945, 0.0081330445, 0.018174864, -0.022932973, -0.0058196913, 0.011618636, -0.0235554, 0.0072962265, 0.013444421, 0.031121343, -0.031785265, 0.01634908, 0.01708216, -0.002558866, 0.013935447, 0.003411245, 0.02428848, -0.008776219, 0.022684002, 0.01838234, 0.006490529, 0.042214375, -0.022946805, 0.020512424, -0.036239076, 0.025395017, -0.03142564, -0.0031570874, -0.0014186146, 0.00032396454, -0.0052491333, -0.009931167, -0.021909427, -0.011272842, 0.009066685, -0.018894114, 0.0031968537, 0.00987584, 0.019889997, 0.020678405, -0.0053770766, -0.038811773, -0.006877817, -0.010954713, -0.0025502213, -0.020927375, 0.024468292, -0.0035357305, -0.032366198, -0.03587945, -0.0040768962, -0.056322716, 0.003948953, -0.0016442443, 0.0054911883, 0.01683319, -0.016390575, 0.0041529704, -0.029157242, -0.0005104765, -0.030595738, 0.05358404, 0.007559029, 0.012801246, 0.0036342815, -0.010339202, 0.0030481627, 0.0070368815, 0.018907946, -0.008312857, -0.0054635247, -0.031536296, 0.014592453, -0.020816721, 0.0026470432, 0.015062731, -0.007987811, -0.0044088573, 0.027981546, -0.0132231135, 0.02502156, -0.011625551, -0.018838787, 0.028327338, 0.0063798754, 0.0067118364, -0.026017444, 0.008402763, -0.005968382, 0.020830553, 0.018479163, -0.016376743, 0.0030689102, -0.029240232, -0.007213236, -0.021632792, 0.009301824, -0.03651571, 0.0074622068, 0.03449628, -0.0053874506, 0.01990383, 0.0060963253, -0.0016537537, -0.0064836135, -0.026515385, 0.018423837, 0.003271199, -0.015201048, -0.02330643, -0.044648755, 0.0048238086, 0.0115425605, -0.006293427, 0.026764356, -0.04976649, -0.011113778, -0.028714627, 0.016943842, 0.035160203, -0.052920118, 0.026778188, 0.040360924, -0.019281402, -0.012932647, -0.035741135, -0.17693521, 0.00032720636, 0.0061931475, -0.016445901, 0.027940052, 0.008866125, 0.008575659, 0.03197891, -0.03361105, -0.011120694, 0.0064836135, -0.01376255, -0.036737017, -0.005639879, -0.014592453, 0.03543684, 0.014205164, 0.03336208, 0.058425136, 0.019862333, 0.039890647, -0.0380372, 0.01412909, 0.002759426, 0.016625714, 0.0081330445, 0.004225587, -0.00825753, -0.022988299, -0.019115422, -0.015228711, -0.006359128, 0.017234309, -0.003414703, 0.0057159537, -0.0046163327, -0.028908271, -0.006414455, 0.005359787, 0.012296389, 0.024302311, 0.02971051, 0.012676761, 0.0047235284, 0.024412965, 0.008969863, 0.011480318, 0.004872219, 0.016985338, 0.009744438, 0.0050969846, -0.038092524, -0.0027905472, 0.0012258352, 0.01935056, -0.014564789, -0.013292272, 0.0056675426, -0.01376255, -0.003793346, -0.0021767651, -0.035409175, 0.017676923, 0.0034976932, 0.0076973457, -0.009170422, -0.0026660617, 0.027400615, -0.02330643, 0.0055776364, 0.023956519, -0.031480968, 0.020982701, -0.009149675, 0.001896673, -0.001519759, -0.021383822, -0.006742958, 0.002190597, 0.0022459237, -0.006981555, 0.015809642, 0.01259377, -0.015159553, 0.012794331, 0.031923585, -0.014606284, 0.014578621, -0.0047753975, -0.014136006, 0.0039109155, 0.017746082, -0.028520983, -0.011819195, 0.0057021216, -0.018064212, -0.000511341, -0.012932647, 0.018271687, -0.020138968, 0.00653894, -0.007061087, -0.012953395, 0.02225522, 0.026003612, 0.016847022, -0.016017118, -0.0022476527, 0.041384473, 0.004699323, -0.048189674, 0.016860852, 0.005411656, 0.030900037, 0.0057124957, -0.0058577284, 0.005394366, 0.0072063203, 0.0021992417, -0.02460661, 0.018091874, -0.013167786, 0.011895269, 0.020221958, 0.003973158, -0.044538103, -0.112147495, -0.032670494, 0.009585374, 0.018036548, -0.0028285843, 0.0011696438, 0.015519177, 0.033887684, -0.011999007, 0.01683319, 0.020830553, -0.013319936, 0.009903504, -0.01032537, -0.008333605, 0.0026280247, 0.015588336, -0.02427465, -0.008188372, 0.034108993, -0.010083316, -0.0104360245, -0.010574341, -0.008783135, -0.013112459, -0.01894944, -0.025699314, -0.008610238, 0.011791532, -0.005809318, -0.026183425, -0.011065367, -0.007725009, -0.009696027, 0.0066011827, -0.018603647, -0.025560997, -0.023527736, 0.010463688, -0.024163995, -0.008326689, 0.0061412784, 0.018257855, 0.001523217, 0.015878802, -0.0033351707, -0.02000065, 0.020553919, -0.030097798, -0.01226181, -0.017953558, -0.011086115, -0.032366198, 0.008499585, 0.009322572, 0.01432965, 0.014786096, 0.006251932, -0.0032366198, 0.019239906, -0.0033368997, 0.009481636, -0.016625714, 0.02662604, 0.0016425154, 0.018036548, -0.017151318, -0.01668104, 0.021342326, -0.0041633444, -0.028064536, 0.017372627, -0.018880282, 0.03853514, -0.021439148, -0.0023911565, -0.014841423, -0.01047752, 0.012967227, 0.008575659, 0.008520332, -0.015214879, 0.011424991, -0.0058681024, 0.009460889, -0.009702943, 0.040222608, -0.010021073, -8.658325e-06, -0.039862983, 0.015574504, -0.0041979235, -0.0029582568, 0.0033611052, -6.272896e-05, -0.013416757, 0.019004768, -0.029378548, -0.0049137142, -0.008513416, -0.0104014445, -0.0035478333, -0.049904805, 0.00919117, 0.014537126, -0.001946813, -0.00418755, -0.0132023655, 0.020996533, -0.03538151, 0.0055465153, -0.0021508306, -0.025892958, 0.012496948, -0.0007261647, -0.015436186, -0.020761395, -0.01044294, -0.0018534489, 0.0023029796, -0.004948294, 0.005086611, -0.014274323, -0.018451499, -0.011328169, 0.007967064, 0.004429605, -0.009419394, 0.00039441983, -0.007316974, -0.021715783, -0.020581583, -1.4858281e-06, 0.00027879537, -0.0008316315, -0.008126128, -0.0059476346, -0.006933144, -0.0065735197, 0.012268726, 0.03504955, 0.009931167, -0.007434543, -0.018105706, -0.010774901, -0.004232503, -0.0017842904, -0.023057459, -0.04072055, -0.0022666713, 0.0074691228, -0.008070802, 0.015394691, 0.024551282, -0.0050070784, 0.006787911, 0.0006176722, -0.02258718, -0.007150993, 0.019682521, -0.007828747, -0.027096316, 0.020664573, -0.0071786568, 0.016238425, -0.008485753, -0.010117895, -0.0013900867, -0.0098550925, -0.0023998015, 0.013686475, -0.02380437, 0.013479, 0.0025018102, -0.0034233478, 0.020387938, 0.026819684, 0.004101102, 0.0042982036, 0.010920133, -0.029018924, 0.033860024, 0.0013261151, 0.004989789, -0.02056775, -0.0071786568, 0.012925732, -0.022213724, 0.007586692, -0.0036308235, 0.011217516, 0.015519177, -0.031840593, 0.011431907, 0.0014393622, 0.008478837, 0.013603485, 0.029240232, 0.002653959, 0.01748328, 0.002183681, 0.00074648, 0.0057851123, -0.015505346, -0.004377736, -0.035021886, -0.001806767, 0.013914699, -0.0036654028, -0.060084943, -0.016086277, 0.018907946, -0.014073763, -0.0027127438, 0.0043569882, 0.011480318, -0.017109824, 0.011321253, -0.0012284286, -0.022006249, -0.007635103, 0.018880282, 0.011348917, 0.006251932, 0.007642019, -0.031121343, 0.029876491, -0.0065147346, 0.014011521, -0.0036031601, 0.020678405, 0.013326851, 0.014786096, 0.0031121345, 0.005646795, -0.029323222, -0.0032072274, 0.005919971, 0.0115356445, 0.021743447, -0.022186061, 0.0777342, 0.035685807, -0.0045264266, -0.001020953, 0.010034905, 0.009322572, 0.0011523542, 0.015878802, -0.0023410167, -0.0015906465, 0.02662604, -0.012946479, 0.0013036386, -0.03391535, 0.01926757, -0.011397328, 0.0025398475, 0.019198412, -0.0072063203, 0.010104063, 0.0309277, 0.019765511, 0.013893952, 0.004083812, -0.030042471, -0.0063902494, 0.013665728, 0.0143573135, -0.014813759, -0.033638716, 0.006217353, -0.006988471, -0.015284038, -0.016653378, 0.024634274, 0.005926887, -0.010034905, -0.0053010024, 0.0032798438, 0.0074622068, 0.020042146, -0.009744438, -0.027649585, -0.06622622, 0.0062761377, 0.007434543, 0.0075313654, 0.006836322, -0.014467967]" 26141995,"Sq, Sequoia PGP's CLI, Released",https://sequoia-pgp.org/blog/2021/01/26/202101-sq-release/,112,1613391220,15,upofadown,"[-0.002574751, 0.010520257, -0.0055705975, -0.02623641, -0.012568639, 0.02572253, -0.024409281, -0.00987077, -0.01587317, -0.0082863085, 0.033801857, -0.01423161, -0.009264107, 0.01648697, -0.0010527394, -0.016972302, 0.007023021, -0.0069016884, 0.010227632, 6.691141e-05, 0.010377513, 0.017272064, -0.00856466, -0.01915629, -0.0001577994, 0.027663851, -0.014003219, -0.0040218215, 0.0005977419, 0.0045999363, 0.021754237, 0.006223653, -0.025365667, 0.0023178111, -0.013446516, -0.03257426, 0.0059631444, -0.008536112, -0.021939805, -0.017857317, 0.017843042, 0.0042787613, 0.0029191216, -0.020212598, -0.018913625, -0.007979408, -0.014253022, -0.032288767, 0.014281571, 0.01564478, -0.0013186007, 0.004621348, -0.02566543, 0.01951315, -0.017828768, 0.0067910617, 0.0061986726, -0.005941733, -0.00058435963, 0.00900003, -0.0037006468, 0.018428294, -0.020940594, -0.005327932, 0.026835935, 0.008450464, -0.01341083, -0.010042064, -0.01877088, -0.009157049, -0.0024783984, 0.05118812, 0.0028531023, 0.017657474, 0.02495171, -0.017614651, -0.019784365, 0.0007163981, -0.018970722, -0.015930267, 0.014731215, -0.010869981, -0.014645569, 0.021425925, -0.0018137452, 0.01867096, 0.0056276955, 0.014617019, -0.026650367, 0.008314857, 0.013967533, 0.0195417, 0.034686875, 0.01297546, -0.054271396, 0.020655105, 0.03300249, 0.004978209, -0.0069659236, -0.012276012, -0.015416388, 0.007836664, -0.0062522017, -0.015187997, -0.054956567, -0.01571615, 0.027649578, -0.016030189, 0.027121423, 0.017314889, -0.010891393, 0.042623457, -0.003672098, -0.027164247, 0.024494927, 5.2692732e-05, 0.041852638, -0.011262528, -0.0032295906, 0.00039633855, 0.051302314, -0.021996902, 0.051616352, -0.024395006, 0.0047890726, -0.004464329, -0.0005232472, -0.026050841, 0.011355312, -0.020341067, 0.001542531, 0.030261798, 0.014552785, 0.0062343585, -0.00907854, 0.02128318, 0.007444117, 0.0012249248, -0.02241086, -0.020112677, 0.0037006468, 0.025579784, -0.018399745, -0.01864241, 0.009092814, -0.0033669819, 0.024452105, 0.012211777, 0.020840673, -0.023424346, 0.023167405, -0.0061736926, -0.007544038, -0.0042894674, 0.0037149212, 0.0058382433, -0.008314857, 0.0377987, -0.005995262, -0.0050709923, -0.03702788, 0.0045571127, -0.017086497, 0.0038969202, -0.001191023, 0.037655953, 0.021954078, -0.014788313, 0.0037042154, -0.00086271105, 0.0069195316, 0.028063536, -0.037684504, 0.011390998, 0.012618599, 0.015402114, 0.023495717, -0.010712963, -0.017329162, -0.020226872, 0.021625767, 0.01977009, -0.00469272, 0.043993805, -0.05972423, -0.022453684, 0.014931058, 0.008664581, 0.0042038206, 0.017414808, 0.013353732, -0.007072982, -0.015387839, -0.01146237, -0.6166555, -0.02472332, -0.009670929, -0.045678187, 0.029148392, -0.005210168, 0.012682834, 0.03854097, -0.010477434, 0.035115104, -0.009635243, 0.016015913, 0.012747069, 0.0027442598, -0.03257426, -0.024680495, 0.019927109, -0.024680495, 0.008243485, 0.0107629225, -0.0038148423, 0.032402962, 0.021168984, 0.015516309, 0.035400596, 0.003226022, -0.00058034493, -0.02189698, -0.009756575, -0.005056718, -0.024480654, 0.0024177323, -0.016244305, -0.0001977232, 0.045221403, -0.01977009, -0.039968412, 0.005966713, -0.005831106, 0.050274555, -0.009970692, -0.004210958, 0.007415568, 0.0069909035, 0.018128531, -0.00054465886, 0.022025451, 0.002464124, -0.033230882, 0.0077224686, 0.028891454, -0.020883497, 0.03748466, 0.0071336483, -0.010705825, -0.00044964466, 0.01628713, -0.017143594, 0.023267327, -0.001900284, 0.0125258155, 0.031118264, 0.005777577, -0.015402114, -0.025137277, 0.016015913, 0.0014220905, -0.02192553, 0.008464739, -0.016729636, 0.034401383, -0.010020652, 0.0005089728, -0.033544917, -0.00843619, 0.041424405, 0.016701087, -0.01387475, 0.0042145266, 0.0065840823, 0.023010386, -0.0072371378, -0.034829617, -0.010534531, 0.03126101, 0.0015202272, -0.035115104, -0.024138067, 0.02415234, 0.011005588, 0.010177671, -0.0031368067, 0.010470297, -0.025137277, 0.012482992, 0.009264107, 0.0012052974, 0.0055705975, -0.021168984, -0.036428355, 0.007215726, 0.009449675, -0.007187177, 0.010084887, 0.022011176, 0.032688454, -0.007287098, 0.0046035047, 0.038740814, -0.034201544, -0.012811304, -0.035885926, -0.008928658, -0.012197503, -0.014210198, -0.033230882, 0.031889085, -0.011119784, 0.01989856, -0.022225292, 0.011027, -0.029805018, -0.0025943783, -0.0055420487, 0.007893762, -0.0038077051, 0.007112236, -0.008521836, -0.002328517, -0.006048791, -0.010141985, -0.009057128, 0.021111887, 0.00067089836, -0.0003033317, -0.006798199, 0.01874233, 0.009392577, 0.004500015, -0.014224472, -0.0071229422, 0.0022161058, -0.0027246324, -0.028120633, 0.00856466, -0.007686782, -0.02733554, -0.015245095, -0.009185598, 0.02066938, -0.012325973, -0.0006311976, -0.008843011, 0.02997631, -0.021497296, -0.0021697138, -0.034172993, -0.03343072, 0.0068196105, -0.017057948, 0.0038969202, 0.013582123, -0.026065115, 0.004706994, -0.011526605, -0.028934276, 0.006362829, 0.010869981, -0.0055527547, -0.01259005, 0.00484617, 0.019984206, -0.0028798669, -0.009242696, 0.006662592, 0.0131681645, -0.015973091, 0.0038612343, -0.0029922782, 0.0018521077, 0.023167405, -0.0067803557, -0.016044464, 0.012375934, 0.019184839, 0.0070051784, 0.015944542, 0.034601226, -0.023895402, -0.001067014, 0.005274403, -0.016044464, -0.018885076, 0.034686875, 0.0026568288, 0.0055420487, -0.007651096, -0.0029209058, 0.013532163, 0.052558463, 0.0035436281, -0.016843831, 0.0014881097, -0.0035025892, 0.010862844, -0.03500091, 0.010013515, -0.024380732, 0.04633481, 0.007072982, 0.010934216, 0.008072192, 0.005749028, -0.019227661, 0.0021286749, 0.029805018, 0.0045214267, 0.022724899, 0.011797819, -0.01600164, 0.005913184, -0.0056098523, 0.025422765, -0.0065733767, 0.004271624, 0.03728482, -0.0028602395, 0.022054, -0.008885834, -0.0065733767, -0.014595608, -0.017657474, -0.0019930678, 0.0008921521, 0.019627346, 0.029291138, 0.020926319, -0.027064325, 0.021625767, -0.022353763, -0.023766931, 0.008107878, 0.026165036, -0.032345865, 0.023938226, 0.005559892, 0.031175362, -0.010106299, -0.010691551, 0.005245854, -0.025322845, 0.005684793, -0.008843011, 0.021483023, 0.005959576, 0.0013641005, 0.010820021, 0.00048310036, 0.026650367, 0.028877178, 0.004407231, -0.0077938405, -0.0073013725, -0.011569428, 0.010677276, -0.002915553, 0.012147543, -0.026850209, -0.010420336, 0.013624947, 0.013475065, 0.0070943935, -0.028263379, -0.01012771, -0.0094354, -0.007950859, -0.015887445, 0.031860534, 0.01341083, 0.016586892, -0.010698688, -0.014688392, 0.035115104, 0.003957587, -0.0058025573, -0.01128394, -0.019270485, -0.006059497, 0.013760554, 0.0094782235, -0.009763712, 0.018085707, -0.009670929, -0.013896161, -0.016758185, 0.020212598, 0.01651552, -0.032431513, -0.0062736133, -0.0060987514, -0.007572587, 0.007108668, -0.0043037417, -0.013103929, 0.05181619, 0.01210472, -0.02166859, -0.012782755, 0.015673328, -0.014816862, 0.014831136, -0.012818441, -0.024009597, -0.019613072, 0.007808115, 0.0009599556, 8.503324e-06, -0.037912894, 0.027249893, 0.0119548375, -0.028905727, -0.04376541, -0.016315678, 0.023995323, 0.040710684, 0.023938226, -0.0035293535, 0.008272034, -0.022710623, 0.009813673, -0.038341127, -0.009942143, 0.015944542, -0.013960396, -0.011126921, -0.004118174, -0.005784714, -0.0070087467, 0.022610702, 0.008450464, 0.0049425224, -0.030832777, -0.0011642585, -0.036199965, -0.015630504, 0.008657444, -0.009028579, 0.018885076, 0.021111887, 0.016187208, 0.018599587, 0.007479803, 0.017057948, 0.008129289, -0.0084005045, 0.008578935, -0.004892562, 0.009920731, -0.035429142, 0.020583732, 0.02263925, -0.0060238107, -0.022724899, 0.018242726, 0.019855738, 0.015559132, 0.015059527, 0.0037470388, 0.0051066787, 0.0036453335, -0.0022553604, 0.023809755, 0.0065269847, -0.018428294, -0.009171324, -0.0064163576, -0.02997631, 0.004546407, 0.020012755, 0.010927078, 0.0119548375, 0.016415598, -0.016672539, -0.04385106, -0.033230882, -0.012004798, 0.0003126993, -0.00969234, -0.008300583, -0.0013569633, -0.023038935, -0.002815632, -0.044736072, 0.033459272, -0.009085677, -0.03445848, -0.031660695, -0.00443578, 0.0032135318, 0.00193597, 0.021996902, 0.018314097, 0.02276772, 0.0025140846, -0.0029405332, -0.03168924, -0.0095924195, -0.022268116, 0.0045321328, 0.024523476, 0.011533742, 0.0021697138, -0.0018681665, 0.021297455, 0.017942963, 0.006259339, -0.004938954, -0.011269665, 0.0012802383, 0.007251412, 0.035115104, 0.026264958, 0.014388629, -0.008907246, -0.0057811453, 0.0058346745, 0.042766202, -0.049989067, 0.019184839, -0.014888234, 0.00060621736, 0.0027478284, -0.030889874, -0.004874719, -0.00094924984, -0.018956447, 0.015387839, 0.011305351, 0.023752658, 0.0032920411, -0.0055277743, 0.040168256, 0.0073085097, -0.010327552, -0.0036239217, -0.0028120633, 0.033316527, 0.0018717351, -0.0035186477, 0.02256788, 0.0012088661, -0.028049262, -0.034372836, 0.020269696, 0.0013658848, 0.019456053, -0.009585282, 0.014802587, 0.008172113, -0.013860474, -0.0018092844, 0.010834295, 0.010584492, -0.0017967942, -0.0032920411, -0.003648902, 0.0017602161, -0.004011116, -0.014531373, -0.02041244, -0.023124581, -0.0019395386, -0.00046882592, 0.00058034493, -0.020526635, -0.00856466, -0.0008265789, -0.035943024, -0.003325943, -0.047248375, -0.00835768, -0.005502794, -0.0008292554, 0.023524266, 0.02154012, -0.004442917, 0.005916753, 0.006312868, -0.005520637, -0.018257, 0.018556762, -0.005195894, 0.0009626321, -0.004628485, 0.00034191727, 0.0072835297, -0.00029173374, -0.018442567, -0.009613831, 0.04033955, -0.00015846851, -0.017757395, -0.0013676691, -0.036599647, -0.0045214267, 0.009728027, -0.014659843, 0.014445727, -0.022268116, 0.023938226, 0.031660695, 0.00895007, 0.011141195, 0.009228421, 0.022939015, 0.008571797, 0.0020733615, 0.009563871, 0.02041244, 0.006048791, 0.005295815, -0.035429142, 0.015444937, -0.009207009, 0.029433882, 0.026407702, -0.00050763454, 0.005613421, 0.0023392227, 0.020869222, -0.03274555, -0.0017566475, 0.037456114, -0.03348782, -0.012511541, -0.012340248, -0.0014720509, -0.014731215, 0.0025908097, -0.012218915, 0.01089853, 0.016344227, -0.02018405, -0.012418757, 0.010505983, -0.00026496916, 0.052986696, 0.0073013725, 0.006798199, 0.0035650397, 0.008957207, -0.01864241, 0.018827977, -0.0019020683, -0.012611462, 0.02279627, 0.035058007, 0.0016040894, -0.009421126, -0.002094773, -0.027678126, -0.030290348, -0.035400596, 0.02061228, 0.0010152691, 0.010177671, -0.019712992, 0.0056669503, -0.002041244, 0.017843042, -0.015944542, 0.0053564813, -0.010156259, -0.00014575534, -0.010448885, 0.02820628, 0.009977829, 0.0137177305, 0.03174634, -0.008407641, -0.01366777, -0.02025542, -0.032031827, -0.0017388044, -0.010505983, 0.012682834, 0.0033295115, -0.033059586, 0.012218915, 0.0085146995, 0.013503614, -0.010741511, -0.013310909, 0.035200752, -0.017928688, 0.016558344, 0.00021144004, 0.0029922782, -0.015758974, 0.009835085, -0.010927078, -0.007515489, -0.008129289, 0.011041274, 0.030747129, -0.012397345, 0.0071479226, -0.0075012147, -0.0029494548, -0.013111067, -0.02118326, 0.0001396218, 0.017200692, -0.03274555, -0.012782755, -0.0006316437, -0.022996113, 0.02176851, 0.022111097, -0.0050888355, -0.009813673, 0.029747918, -0.017757395, -0.015187997, 0.033944603, -0.008743091, -0.05013181, -0.0015808935, -0.013689182, -0.024509203, 0.014617019, -0.024494927, -0.008007957, -2.2025004e-05, 0.0077581545, 0.020069852, 0.0099135935, -0.015030978, 0.007544038, 0.026122212, 0.020954868, 0.009806536, -0.029947761, 0.0005870361, 0.008036506, -0.028548867, 0.017443357, -0.0102347685, 0.01089853, -0.017300613, 0.017942963, 0.02607939, -0.028377574, -0.036514, 0.008386229, -0.011876329, -0.0065376903, 0.0052244426, 0.0035703927, 0.006894551, -0.021097612, 0.018813703, 0.0071764714, 0.009278381, -0.0032242376, 0.021611491, -0.007244275, -0.0010964549, 0.011355312, 0.007344196, -0.008050781, -0.025337119, -0.017500455, -0.017486181, -0.018099982, 0.020055579, 0.02720707, -0.029776469, -0.031860534, 0.018885076, -0.03979712, 0.0018226667, -0.034886714, 0.024480654, 0.020440988, 0.041995384, 0.003161787, 0.011198293, 0.009642379, 0.018199902, -0.028805807, -0.00066688366, -0.017586103, -0.022724899, 0.02228239, -0.016658263, -0.02482324, -0.005941733, -0.030233249, -0.0044714664, 9.250502e-05, 0.03551479, -0.002862024, 0.0031510813, -0.014902509, 0.016558344, 0.019170564, 0.043679766, 0.010120573, -0.034601226, 0.0021001261, 0.0070051784, 0.013289497, -0.009049991, 0.0035579025, 0.0045428383, -0.024509203, -0.005556323, -0.011405272, -0.01638705, 0.009663791, 0.0020287537, 0.026878757, 0.018528214, -0.008007957, 0.020312518, -0.01484541, -0.0072835297, -0.0046891514, 0.0061736926, -0.027092874, 0.013724867, 0.0012820226, -0.023038935, -0.007551175, 0.00092070096, 0.017457632, 0.004275193, -0.004535701, 0.009735163, 0.004671308, -0.02997631, -0.010527395, 0.0045035835, 0.0006271829, -0.0006606386, -0.0070943935, -0.004439349, 0.038598068, -0.024680495, -0.02717852, -0.011605115, 0.0015728641, -0.009349754, 0.0056669503, -0.04884711, 0.008272034, 0.020655105, -0.0111055095, -0.0017967942, 0.19424649, 0.01207617, 0.041452955, -0.0036756666, 7.984761e-05, -0.0053636185, 0.0030333172, -0.008100741, -0.0050067576, -0.009164186, -0.011212568, -0.003161787, -0.0052244426, -2.03104e-05, 0.012040485, -0.02833475, -0.007297804, -0.016801009, 0.0041146055, -0.0041502914, 0.013881886, -0.02520865, -0.02971937, -0.00969234, 0.016858106, -0.011376724, 0.0038826459, -0.005327932, 0.011562291, 0.021111887, -0.011876329, 0.01902782, -0.007337059, -0.0009867202, -0.022853367, -0.0069552176, 0.033459272, -0.0135393, -0.0027406912, 0.030690031, 0.029662272, -0.029134119, 0.003854097, -0.03177489, -0.00053529127, -0.0032938255, -0.016858106, 0.01989856, -0.02331015, -0.00076100574, -0.024837514, 0.018314097, 0.018114256, 0.013781966, -0.0010536317, -0.0067660813, -0.024937434, 0.0056205583, 0.019841462, 0.0035471967, 0.0010545237, -0.0015621583, -0.008065055, 0.012625736, -0.03748466, 0.03500091, -0.026636092, 0.02415234, 0.021511571, -0.0058096945, -0.024780417, 0.012054759, -0.010798609, -0.0057882825, -0.010227632, -0.027678126, 0.032088928, 0.0047319746, 0.01333232, -0.0017869807, -0.004753386, 0.0026372015, -0.016772458, -0.021939805, -0.016601166, -0.038569517, 0.010448885, -0.026835935, -0.008393367, -0.009735163, -0.003102905, -0.013253812, 0.008129289, -0.023467168, 0.005338638, -0.008314857, -0.02543704, 0.03882646, 0.010869981, -0.020084128, -0.0176432, 0.050502945, -0.01725779, 0.0055242055, 0.0053422065, 0.03168924, -0.0013516104, 0.018499665, 0.015659053, -0.009670929, 0.02218247, -0.050531495, 0.009563871, -0.012325973, -0.0057597337, 0.007472666, 0.00869313, -0.009720889, 0.0030939835, -0.010677276, 0.019470327, 0.002005558, -0.01800006, 0.014588471, -0.009178461, -0.013632084, -0.018528214, 0.02089777, -0.025394216, -0.005374324, 0.021340277, -0.009378303, 0.027563931, 0.0082863085, 0.027249893, -0.014731215, -0.011176881, 0.0049425224, 0.004089625, 0.012861265, 0.011812094, 0.009028579, 0.014024631, 0.011548016, 0.011069823, -0.017172143, -0.0027531814, -0.025893822, 0.0072228634, -0.009021441, -0.019627346, 0.013653495, -0.0013605319, -0.008850149, 0.011655075, -0.02530857, -0.010605904, -0.018314097, 0.008136427, 0.0105773555, -0.029576626, 0.008379092, 0.0013649927, -0.021083338, -0.034344286, -0.009863634, -0.18351212, 0.0074512544, -0.0095924195, -0.036628194, -0.004582093, -0.006612631, 0.012097582, 0.005459971, -0.0034419228, 0.0047676605, 0.012654285, 0.0092498325, -0.016772458, -0.008093604, 0.00774388, -0.025879547, 0.011341037, 0.0038755087, 0.020483812, 0.029348236, 0.03374476, -0.04179554, 0.002066224, 0.012647148, 0.024423555, -0.014288708, 0.004892562, -0.0031475124, -0.025008807, -0.032174572, -0.01474549, -0.0025426333, 0.02949098, -0.0010393572, 0.0034918832, -0.0043322905, 0.022396587, -0.0068838457, 0.0073299217, 0.025736803, 0.0036167845, 0.016601166, 0.0007320108, 0.0027942203, 0.012689971, 0.0008136427, 0.034115896, -0.0069123944, 0.012832715, -0.0043144473, 0.013039695, -0.018756606, 0.009728027, -0.0025408491, 0.013560711, -0.008022232, 0.003484746, 0.013917573, -0.0018119608, -0.04285185, -0.0032599238, -0.033088136, 0.001994852, -0.0027585342, -0.009728027, -0.021554394, -0.02125463, -0.007023021, -0.0002241532, 0.024023872, 0.007979408, 0.0069195316, 0.013889024, 0.0055313427, -0.015587681, 0.0051887566, -0.029919213, 0.028192006, 0.0064377696, -0.0054920884, 0.008650307, 0.024523476, 0.0066411803, 0.0015371781, 0.03548624, 0.005149502, -0.032431513, -0.017029399, -0.011990524, 0.0010063476, 0.0070194528, -0.018042883, 0.007105099, 0.016615441, 0.026835935, 0.002328517, 0.0069659236, 0.008728816, -0.010684413, -0.019827187, 0.009842222, -0.00039500033, -0.004403663, -0.020355342, 0.028877178, 0.0031403753, -0.00068651105, 0.016215757, 0.030176152, -0.014888234, -0.031118264, 0.017029399, 0.024709044, 0.026507623, -0.0088358745, 0.015473486, -0.005431422, -0.005149502, -0.00066554546, -0.011405272, 0.048675817, -0.0157447, -0.003161787, 0.0152308205, 0.0106701385, -0.022853367, -0.11271092, -0.011062685, -0.010841432, 0.014916783, -0.035600435, 0.009906457, -0.005738322, 0.052101683, -0.008800188, 0.023452895, -0.0034811774, -0.0466203, -0.004699857, 0.010627315, -0.009806536, -0.007551175, -0.03151795, -0.029119844, 0.0023445757, 0.023024661, 0.000108284956, 0.00333308, -0.0049175425, 0.012782755, -0.010363239, -0.004275193, -0.01790014, 0.02102624, 0.02276772, -0.0007873242, 0.024195164, -0.0015648347, 0.0029940624, -0.009642379, -0.023467168, -4.50258e-06, -0.01341083, -0.020969143, 0.023866853, -0.016372776, -0.012161817, -0.0004088287, 0.015944542, -0.013546437, 0.017115045, 0.013853338, -0.020241147, 0.028663062, 0.0107629225, -0.011126921, -0.04459333, -0.0039397436, -0.028363299, -0.00033254968, 0.020812124, 0.007058707, -0.007815252, 0.00035574564, -0.016144384, 0.014873959, -0.0055884407, 0.0024944572, 0.0044322116, -0.013981807, -0.026850209, 0.013432242, -0.008543248, -0.016900929, -0.0005085267, 0.007708194, 0.0015648347, 0.009785124, -0.023538541, 0.011548016, -0.020997692, -0.0014069239, 0.005724048, -0.022582153, 0.015687602, -0.022310939, -0.0042430754, -0.018199902, -0.005777577, -0.022039725, 0.020840673, 0.008964344, 0.021197533, -0.00073825585, 0.024994534, -0.047733705, 0.0092498325, 0.0050031887, -0.008678855, -0.009413988, -0.018399745, -0.005549186, -0.0043501337, -0.008329132, -0.020269696, 0.015816072, -0.044935916, -0.03177489, -0.067204036, 0.025023082, 0.02797789, -0.031375203, -0.014688392, 0.0094782235, -0.0012231405, -0.02430936, 0.006930237, 0.0016701088, -0.036685295, -0.005295815, -0.016701087, -0.0012525815, -0.03525785, -0.005606284, 0.030033408, 0.0118620545, 0.01787159, 0.009463949, -0.0055884407, -0.008200662, -0.004571387, 0.018199902, -0.025451316, -0.0028941412, -0.017843042, -0.006223653, -0.0031600026, -0.025294296, 0.011762133, -0.016972302, -0.03300249, 0.012697108, -0.0021839882, 0.007950859, 0.01915629, 0.010634453, -0.0004799778, 0.030775677, 0.00015278104, -0.033573467, 0.011662212, 0.01838547, -0.020940594, 0.0018984997, 0.010613041, 0.022111097, 0.04407945, -0.029219765, 0.028705886, 0.018571038, -0.03097552, -0.03177489, -0.005056718, -0.022168195, 0.014545647, 0.02492316, 0.010548806, 0.004093194, 0.03702788, 0.02794934, 0.016943753, -0.021040514, 0.008578935, -0.028006438, -0.009892182, -0.005424285, 0.015958816, -0.026736014, -0.010969902, -0.030832777, 0.018685233, -0.0040325276, 0.008100741, -0.0042002522, 0.0049068364, -0.013753417, -0.016858106, 0.016401324, 0.016101561, -0.026250683, 0.0012722089, 0.006441338, 0.014759764, -0.0040039783, 0.004400094, -0.00019337397, -0.0068017673, 0.033173785, 0.004881856, 0.017443357, -0.027835146, 0.004428643, 0.009485361, 0.023981048, -0.004310879, 0.0063200053, -0.0012418757, 0.0047890726, 0.004888993, 0.023724109, 0.010598767, 0.011555154, -0.007601136, -0.006969492, -0.026650367, -0.018356921, -0.0041609975, 0.0064377696, 0.009699478, -0.0063021625, 0.0068660025, -0.00021210915, -0.014324394, 0.025494138, 0.0035507653, -0.009364028, -0.03128956, 0.025708254, 0.0011508762, 0.0038576657, 0.025108729, -0.01120543, 0.027778048, -0.011840642, 0.027492559, -0.011226842, 0.02176851, -0.030375995, 0.012996872, 0.0042430754, 0.000709707, -0.006851728, -0.010684413, -0.0002000651, -0.026907306, 0.0076296846, -0.01722924, 0.083248496, 0.04359412, -0.022268116, -0.009792261, -0.0048247585, 0.0034365698, 0.0021625767, 0.036571097, 0.01700085, -0.032517157, 0.026578994, 0.0065519647, 0.0037755875, -0.014973881, -0.022153921, -0.0069587864, -0.009107089, 0.01628713, -0.0011464155, 0.013503614, 0.034144446, 0.032088928, 0.018185629, -0.016258579, -0.028448945, -0.024480654, 0.040739235, 0.011341037, -0.014674118, -0.05869647, 0.011869191, 0.0064306324, -0.005684793, -0.02530857, -0.008307721, 0.0022214586, -0.0142672965, -0.026065115, 0.011519467, 0.007936585, 0.011854917, -0.020426715, -0.0163585, -0.017700298, 0.012689971, -0.025337119, 0.008172113, 0.0056669503, -0.018328372]" 2958031,NSA built a NoSQL database,http://wiki.apache.org/incubator/AccumuloProposal,139,1315080879,55,rschildmeijer,"[0.006249343, -0.0093493555, 0.0013835566, -0.026026012, -0.043400172, 0.037059236, -0.013604826, 0.00047512972, -0.013985283, -0.009264809, 0.02392646, -0.013379371, 0.016627338, 0.00041986673, -0.014281193, 0.0048226328, 0.03257831, -0.014041646, -0.022320088, 0.0011070215, 0.00217177, 0.001214465, -0.024800098, -0.009610038, -0.018769166, 0.0091168545, 0.03765106, -0.016570974, 0.008602534, -0.001256738, 0.033761952, -0.0066861627, 0.010772543, -0.007306165, -0.009793221, -0.011554591, 0.017796889, -0.016303247, 0.009039354, -0.0067988904, 0.010990953, -0.0014311136, -0.0079966225, -0.035593778, 0.0017367115, -0.0039454703, -0.0073484383, -0.004149789, 0.009927085, 0.016754158, 0.002214043, 0.010723224, -0.032888312, 0.01044845, 0.0017481603, -0.015739609, 0.009617084, 0.00343115, -0.026336014, -0.00941981, 0.026674196, 0.029027387, -0.007820485, 0.015528243, -0.0143234655, -0.01504915, -0.0088209445, 0.0028868865, 0.0033765475, -0.0004037942, 0.031901944, 0.038919244, 0.018614165, 0.016260974, -0.0033237063, -0.011505273, -0.031028304, 0.00046324046, 0.004026493, 0.0068693454, -0.0016882737, -0.011068453, -0.0074400296, -0.007256847, 0.021009628, 0.038299244, 0.002090747, 0.0137950545, 0.004378767, -0.0072991196, 0.010652769, 0.019346895, 0.034973774, 0.019487804, -0.005100929, 0.002023815, 0.0069362773, 0.034973774, -0.00715821, -0.019544167, -0.027632382, -0.0026314878, -0.02922466, -0.0066086627, -0.046810184, 0.0014434432, 0.024856461, -0.0031775127, 0.018318255, -0.0047310414, -0.01437983, 0.016401883, 0.0154577885, -0.037284695, -0.025955558, -0.024461916, 0.02015008, 0.0013765112, 4.3621443e-05, -0.0095043555, 0.022277815, 0.020262808, 0.029562844, -0.013809145, -0.008179805, -0.009863676, -0.016303247, -0.006178888, 0.03080285, -0.014527785, -0.0050304746, 0.008785716, -0.018078707, 0.0021065993, -0.0077782124, 0.0036671737, -0.0043717218, -0.015894609, -0.010695042, -0.013386416, 0.025081918, 0.02322191, -0.0078063947, -0.017923707, -0.0113079995, -0.0023267707, 0.0100961765, 0.0385247, 0.010631633, 0.005893546, 0.02730829, -0.006802413, -0.017726434, 0.018304164, 0.027096925, -0.003948993, -0.009884812, 0.02336282, -0.021869177, 0.0029080228, 0.017599614, 0.0027406926, -0.011202317, 0.027984656, 0.004452745, 0.037481967, 0.008362988, -0.016599156, -0.008461624, -0.011209362, -0.009145036, 0.0056293407, -0.020051444, 0.002879841, 0.0012664255, 0.0025117146, 0.0074541206, 0.027716927, -0.02133372, -0.0063937753, 0.03939834, 0.0029221138, 0.006178888, 0.032493766, -0.015359152, -0.020051444, 0.02408146, 0.031563763, 0.02175645, 0.0015526481, 0.01796598, 0.019093258, -0.015133697, 0.0006988238, -0.63217705, -0.014302329, -0.011709591, -0.05284112, -0.012378912, -0.018600075, 0.02305282, 0.0010233563, -0.0058301366, 0.028886478, 0.011512319, 0.0042167213, -0.0033959225, -0.032803766, -0.005210134, -0.020403717, 0.016091881, -0.034635592, -0.009088673, 0.0056117265, -0.018881893, 0.014386876, -0.008919581, -0.015288697, 0.022249633, 0.009905948, 0.02044599, -0.015063241, -0.037904695, 0.027660564, -0.016599156, 0.0048754737, 0.020516444, -0.0057949093, 0.05828023, 0.017275523, -0.021220993, 0.0065029804, 0.008990035, 0.061380245, -0.017176887, -0.008264351, 0.03286013, 0.0035438777, -0.0016116541, -0.0041885395, 0.022446906, -0.0055447947, 0.0014275908, -0.023546003, -0.019220077, -0.024194187, -0.0103286775, 0.002404271, -0.00024461033, 0.004738087, 0.024771916, -0.0035245025, -0.0055095674, 0.00020409882, 0.017782798, -0.0011915672, -0.0030718304, -0.05041747, -0.042611077, -0.012435276, -0.011949138, -0.009081627, 0.0109345885, -0.015035059, 0.0039137653, -0.009849585, -0.0008423755, -0.028604658, -0.0052312706, 0.016965521, 0.021869177, -0.013647099, 0.006221161, 0.030351939, 0.0135766445, 0.00050155027, -0.02191145, -0.010687997, 0.024560552, 0.005759682, -0.0085250335, 0.007883895, 0.007327302, 0.0017860298, 0.009849585, 0.001623103, -0.0034012066, -0.028266476, 0.0104061775, 0.030070119, -0.014471421, -0.016218701, 0.015979154, -0.022686454, -0.010673906, -0.05436294, 0.00533343, 0.029196478, 0.030774668, 0.01693734, -4.1942636e-05, -0.0058618416, 0.05534931, -0.0047169505, -0.0068411636, -0.005248884, -0.011216408, -0.0062458203, 0.020671446, -0.028886478, 0.02777329, -0.008919581, -0.011448909, -0.0030577395, 0.023024637, 0.012181639, 0.0060485466, -0.012470504, -0.00049934856, 0.0034064907, 0.02408146, -0.02439146, -0.00012703886, -0.012456413, 0.009490265, -0.011174135, 0.007869804, 0.0036037643, 0.036439236, -0.013548463, 0.04013107, -0.017627796, -0.0027494996, -0.026716469, 4.898812e-05, -0.012526868, 0.01182232, -0.012428231, -0.016317338, -0.0068940045, -0.031479217, 0.010913452, -0.024447825, -0.0049741105, -0.017881434, 0.0061718426, -0.028055111, 0.009166173, 0.009159127, -0.00088596944, 0.00412513, -0.033508316, -0.016556883, -0.022897817, -0.013442781, 0.012618459, -0.0061225244, 0.010638678, -0.0045091086, -0.019191895, 0.00138796, 0.0018054049, -0.0053017256, -0.017360069, -0.005270021, -0.009666402, -0.0058547957, 0.045372907, -0.00017492611, 0.026040103, -0.019248258, 0.0103286775, 0.0009872483, 0.00012351612, 0.023447366, 0.01738825, 0.0055095674, -0.0047979737, 0.027153289, 0.0018247799, 0.043484718, 0.035734687, -0.012054821, 0.036044687, 0.017909616, 0.041032888, -0.006178888, 0.0012769937, -0.021869177, -0.017839162, 0.0016548077, -0.012139366, 0.008017759, 0.036467418, 0.01548597, 0.023870094, -0.01409801, -0.00068693457, 0.015302788, -0.010145495, 0.0002780764, -0.012914369, 0.000109315064, 0.011293909, -0.0012356015, -0.008426397, -0.004590132, -0.011047317, -0.006111956, 0.03596014, -0.010060949, 0.0207419, -0.0017032453, 0.014295284, 0.0026402946, 0.0035491618, 0.036467418, -0.01445733, 0.006777754, 0.00941981, -0.0026033057, 0.021629632, 0.00868708, -0.0007926168, 0.0050833155, 0.00038375863, -0.017881434, -0.0042519486, 0.026646014, 0.012604368, 0.019755533, -0.027956475, 0.023024637, 0.008496852, 0.0019727352, 0.03167649, 0.028252384, -0.011131862, 0.013055279, 0.010053904, 0.022418724, 0.031141032, -0.031056486, 0.015175969, -0.009137991, 0.012202776, 0.00014729462, 0.011977321, 0.018388709, -0.016162336, -5.264847e-05, 0.00021004345, 0.022404633, 0.025053736, -0.015387334, 0.006397298, -0.02236236, 0.004315358, -0.0077148033, -0.02425055, 0.008870263, -0.020671446, -0.0091943545, -0.0026931358, -0.014767331, -0.010941634, -0.01754325, 0.00044518642, -0.018755075, 0.014640513, -0.032042854, 0.025645556, 0.029027387, 0.011892774, -0.037397422, -0.016289156, 0.011174135, 0.033959225, 0.0021224516, 0.0044703586, -0.026350105, -0.034156498, -0.0014143806, -0.004442177, -0.016317338, -0.00014278111, -0.021136448, 0.011723683, -0.012498686, 0.0026719992, 0.020671446, -0.020685537, -0.005622295, -0.004452745, 0.002191145, 0.00043659974, 0.011075499, -0.012223912, 0.05639204, -0.012400049, 0.0017499217, -0.01709234, 0.006872868, -0.022432815, 0.0049071787, -0.01416142, 0.0089759445, 0.0016266258, 0.016373701, 0.003260297, -0.018205527, 0.016162336, 0.010568224, -0.0064430935, 0.014253011, 0.005104452, -0.008222078, 0.0061084335, 0.057152953, 0.010377996, -0.024433734, 0.030408302, -0.0300983, 0.025645556, -0.020558719, -0.041089255, 0.014978696, 0.0067742313, -0.008736398, 0.010060949, 0.021981906, -0.017684162, -0.0049247923, 0.011568682, 0.0049635423, -0.022658272, -0.00591116, -0.00795435, -0.002381373, -0.00890549, 0.023306455, 0.024109641, 0.0137950545, 0.016627338, 0.045682907, -0.0073554837, -0.027801475, -0.018783256, -0.029450117, 0.005407408, 0.009821403, 0.002490578, 0.008362988, 0.01233664, -0.003607287, 0.02468737, 0.007855713, 0.021897359, 0.010060949, 0.011561637, 0.00085602613, -0.007919122, -0.025321463, 6.8363195e-05, -0.0011563398, 0.025871012, -0.0133441435, -0.007926168, 0.008306623, -0.01723325, -0.012639595, -0.0014064545, -0.017923707, -0.003853879, -0.009905948, 0.007834576, -0.005062179, -0.046387456, -0.012956643, -0.025899194, -0.00017624715, -0.02468737, 0.014513694, -0.010441405, 0.0038151287, 0.0013139825, -0.03632651, -0.001147533, 0.0029573413, -0.024278732, -0.037594695, -0.009666402, 0.020502353, 0.00559059, 0.0138725545, -0.020037351, -0.019670988, 0.036918327, -0.0019498373, 0.0014628182, 0.003240922, -0.0154577885, -0.012780505, -0.01678234, -0.02933739, -0.016669612, 0.0074259383, 0.0075738938, -0.013541417, -0.016289156, -0.0023778502, 0.010173677, -0.009088673, 0.021249175, 0.044611994, 0.021714177, -0.010244131, -0.026772832, -0.008496852, 0.0056716134, 0.008158669, -0.008081168, 0.007242756, -0.023165546, -0.0048508146, 0.012435276, -0.017486887, -0.0010400893, -0.00094233325, -0.014443239, 0.019727351, 0.0033395586, -0.004868428, -0.009729811, 0.015697334, 0.038045604, 0.00412513, -0.012385958, -0.017360069, 0.01576779, 0.025617374, 0.0077782124, -0.016105972, 0.042836532, 0.011167089, -0.033959225, -0.020558719, -0.02702647, -0.0040934253, 0.014541876, -0.0109979985, 0.0020537581, -0.021840995, 0.005921728, 0.0051784297, 0.000185054, -0.028999206, -0.005569454, -0.014147329, -0.00854617, 0.006330366, -0.017937798, -0.014189602, -0.030436484, -0.010955725, -0.0066121854, -0.013907783, 0.017599614, -0.004709905, -0.020248717, 0.02451828, -0.008313669, 0.0023743275, -0.009927085, -0.0004923031, 0.0018740983, 0.059971146, 0.022221452, 0.021883268, 0.009391628, 0.036129232, 0.009384583, 0.003554446, -0.011505273, -0.00050243095, -0.012956643, -0.009067536, 0.00060767285, 0.016725976, 0.008278442, -0.0065769576, 0.020868719, 0.01910735, 0.047712006, 0.008806853, -0.039144702, -0.0344665, -0.022982365, -0.010462541, 0.010702088, 0.003455809, -0.0031916036, -0.022686454, -0.0155986985, 0.03232467, 0.014710967, 0.029027387, -0.0049776332, 0.041681074, 0.023151455, 0.004614791, 0.0073554837, 0.010201858, -0.023179637, 0.0010585837, -0.014823695, -0.011991411, 0.037481967, 0.0036777419, 0.02992921, 0.017035976, -0.014429148, -0.006358548, 0.0069679823, -0.010786634, 0.009433901, 0.024983281, -0.016035518, -0.03153558, -0.016444156, -0.01867053, -0.025293281, -0.006263434, -0.0004084178, 0.0027001812, 0.006492412, -0.0010233563, -0.0017525638, 0.036270145, 0.0052770665, 0.022320088, -0.012822778, 0.015359152, -0.019656897, -0.01007504, -0.029844664, 0.012963688, 0.0009713959, 0.009631175, 0.027350564, 0.020798264, -0.022587817, 0.013661191, 0.0318174, -0.002946773, -0.005041043, -0.026603742, -0.0145559665, 1.1634678e-05, 0.01423892, -0.010645724, -0.022066452, -0.02000917, -0.007785258, -0.006739004, -0.011660273, 0.028858297, -0.017839162, -0.009722766, 0.02847784, 0.013752782, 0.0017613706, -0.00230035, -0.02570192, 0.0074682115, -0.018487345, -0.017247342, 0.017402342, -0.0069926414, 0.016444156, -0.024377368, 0.020276899, 0.010730269, 0.014203693, -0.026688287, -0.007897986, -0.030492848, 0.029196478, -0.016683703, -0.002015008, 0.012956643, -0.0007133551, -0.0024271687, -0.023151455, -0.026956016, 0.0068693454, -0.00934231, 0.00941981, 0.030408302, -0.0015165401, -0.009159127, -0.009532537, 0.009765038, -0.010222995, -0.025448283, -0.011477091, -0.013414599, -0.018769166, -0.025800556, 0.012970733, -0.016317338, 4.915325e-05, -0.0032444447, -1.6113789e-05, -0.022277815, 0.0032585356, -0.01074436, 0.010927543, 0.03153558, -0.005992183, -0.037622876, 0.028224202, -0.022813272, 0.008010713, 0.039511066, -0.022179179, -0.022263724, -0.027674654, 0.01358369, 0.009765038, 0.00014850555, 0.0015905177, 0.005379226, 0.010518906, 0.038327426, 0.004139221, -0.02425055, 0.017796889, -0.013449826, -0.0036812646, 0.016105972, 0.002585692, 0.033649225, 0.0013465679, -0.014908241, -0.02365873, -0.04162471, -0.024786007, 0.02015008, 0.020770082, -0.019487804, -0.0004506907, -0.0023831343, -0.036185596, -0.007313211, 8.9389556e-05, -0.0021541563, -0.0026508628, 0.023715094, -0.016049609, -0.009018217, 0.008003668, 0.0030542167, 0.0032285922, -0.00941981, -0.038778335, -0.040666524, -0.021728268, -0.007461166, 0.008736398, -0.015542334, -0.022221452, -0.03229649, 0.003055978, -0.03973652, -0.016866885, 0.007306165, 0.001905803, 0.023179637, 0.034410138, 0.0157537, 0.02219327, 0.01402051, 0.009659356, -0.024800098, -0.0062669567, 0.0084475335, -0.032493766, 0.02451828, -0.02364464, -0.03111285, -0.005171384, 0.022573726, -0.016035518, 0.00390672, 0.041399255, -0.009257764, 0.0065522986, -0.015950972, 0.028012838, 0.0051925206, 0.017500978, 0.014372785, -0.024602825, -0.0050480883, 0.019600533, -0.008116396, 0.0138725545, 0.017402342, -0.0039278567, -0.01299187, 0.023574185, -0.018078707, -0.040497433, -0.011843456, -0.0035861505, 0.008236169, -0.0065875263, -0.0037517194, 0.021347811, -0.0137246, -0.002666715, -0.009694584, 0.0016442394, -0.03610105, 0.00055086863, 0.020967355, 0.010032767, -0.0013588974, -0.006763663, -0.0026103512, 0.00860958, -0.01350619, 0.01678234, -0.016232792, -0.0052171797, 0.015133697, 0.0038996746, -0.016683703, 0.0042942218, 0.0030313188, 0.010927543, -0.0043999036, 0.004406949, 0.019614624, 0.017909616, 0.009835494, -0.036157414, -0.0035209798, -0.019614624, 0.007905032, -0.0077288942, -0.015330969, -0.00511502, 0.20516445, 0.008207987, 0.021136448, 0.031648308, -0.0041075163, 0.019530077, -0.005974569, 0.014400966, -0.021573268, 0.026815107, -0.00094233325, -0.004428086, -0.011737774, 0.0008987394, 0.005971046, 0.004244903, -0.02381373, -0.031901944, 0.0031616602, -0.01738825, -0.007785258, -0.008482761, 0.008193896, -0.0072110514, 0.034128316, -0.0048508146, -0.0033906384, -0.0042766077, 0.012160502, 0.017867344, -0.011371409, -0.0023584752, -0.008482761, -0.0030771145, -0.016895067, -0.005062179, 0.0093493555, -0.015359152, -0.005298203, 0.02570192, 0.028351022, -0.0056821816, 0.006274002, -0.0207419, 0.0135766445, 0.019572351, -0.0052030887, 0.013893692, -0.02102372, 0.0069538914, -0.019656897, 0.010821861, 0.0019128484, -0.009828448, 0.0024641575, 0.025842829, -0.0012364822, 0.00330257, -0.013470963, 0.0077993493, -0.014224829, 0.0062845703, 0.014189602, 0.007905032, -0.010842998, -0.0021488722, -0.017430523, 0.017909616, 0.00089697796, -0.023123274, 0.0010427315, -0.013020052, -0.012984824, 0.022320088, 0.005379226, -0.019065075, 0.032606494, 0.025673738, 0.005932296, 0.0033976838, -0.00083577033, 0.007538666, -0.021798722, -0.0071018464, 0.012900278, -0.029591026, 0.021108266, 0.009469128, -0.030605575, -0.003602003, -0.012329594, 0.003327229, -0.018374618, -0.033790134, 0.029083751, 0.003417059, -0.009821403, 0.012703005, -0.008560261, -0.010631633, -0.029252844, 0.07919122, 0.019586442, 0.028097384, -0.031056486, 0.022615999, -0.011019135, 0.0055236584, -0.00085030164, -0.012667777, -0.018698711, -0.04159653, 0.0207419, -0.012717096, 0.005974569, 0.025772374, -0.0031158647, -0.019530077, 0.032042854, 0.0067742313, 0.0033325132, -0.021643722, 0.016895067, 0.022672363, -0.00525593, -0.014837786, -0.008757534, 0.035030138, -0.022911908, -0.019487804, 0.0137246, 0.0012893233, 0.010758452, -0.025152372, -0.01651461, -0.010955725, -0.023123274, -0.0015403186, -0.027533745, 0.006140138, -0.0143234655, 0.010906407, 0.031394668, -0.0009898903, -0.0040758117, -0.009891857, -0.0028675112, -0.004657064, -0.0020220533, -0.027674654, -0.0019921102, -0.021657813, 0.0010788395, -0.013992328, 0.026941925, -0.008926626, 0.008715262, -0.02044599, 0.007292074, 0.0049882014, -0.01943144, 0.013168007, 0.032352854, -0.0044316086, -0.014880059, -0.0064466163, -0.18149163, 0.0079966225, -0.011251636, -0.012083002, 0.010878225, -0.002804102, 0.0007670769, 0.00061692006, -0.009490265, -0.010082086, 0.016866885, -0.015584608, -0.025885103, -0.031169215, 0.034945592, 0.0024782484, -0.008306623, 0.007193438, 0.043907445, 0.010208904, 0.014358693, -0.021826904, 0.015175969, 0.024926918, -0.015387334, 0.0014725059, 0.0037481966, 0.017345978, 0.0072498014, -0.027787384, -0.008440488, -0.015091423, 0.015119606, 0.014408012, -0.0011087828, -0.004738087, -0.019910533, 0.0054250215, 0.01693734, 0.02642056, 0.02220736, 0.041737437, 0.014809604, -0.003355411, 0.0016345519, 0.040356524, 0.027139198, -0.009173218, 0.008680034, -0.0011413682, 0.019797806, -0.011286863, -0.0059393416, 0.0046429727, 0.012097093, 0.00690105, 0.0060238875, -0.0095043555, 0.013435735, -0.016627338, 0.031930126, -0.020206444, 0.014964605, -0.0157537, -0.000251876, -0.034663774, -0.0105470875, 0.0030771145, -0.03491741, 0.008623671, -0.0011219931, 0.008045941, 0.002599783, 0.022813272, -0.015105515, 0.013865509, -0.021559177, 0.034241043, 0.0054355897, -0.0011369648, -0.0068235495, 0.0068446863, -0.018346436, -0.014710967, -0.008038895, -0.0008300459, -0.0022739295, -0.0047169505, -0.0015834721, -0.015415516, 0.01058936, -0.029703753, -0.031394668, 0.0032937631, 0.0035861505, 0.0368056, -0.010976861, -0.0036249007, 0.028646931, -0.007066619, 0.018219618, 0.013816191, -0.031000122, 0.012533913, 0.02294009, 0.0075879847, -0.006791845, -0.0036425143, 0.030436484, -0.0029485344, -0.0031687056, 0.025871012, 0.025152372, 0.0076302574, -0.0002765352, -0.003126433, -8.361006e-05, -0.023785548, 0.027322382, -0.015655061, 0.06442389, -0.022503272, -0.02905557, 0.011935047, -0.008574352, -0.029985573, -0.1024695, -0.008130487, 0.010427314, 0.0069785505, -0.013647099, 0.023560094, -0.006971505, 0.03421286, -0.041258346, 0.014964605, -0.014725058, -0.04176562, -0.017078249, -6.7922854e-05, -8.376831e-07, 0.015612789, -0.010413223, 0.001247931, -0.0105470875, 0.013703464, -0.005062179, -0.021460539, 0.0013042949, -0.004995247, 0.00591116, 0.012879142, -0.021108266, 0.025730101, 0.010455496, 0.0053862715, 0.006217638, -0.0138725545, -0.011484137, -0.008426397, 0.019825988, -0.016021427, -0.03080285, 0.008362988, 0.022742817, -0.03370559, -0.0029450117, 0.025067827, -0.0092789, -0.025969649, -0.007580939, -0.0029168297, -0.011300954, 0.011096635, 0.021235084, -0.011209362, -0.009962312, -0.026646014, -0.030436484, -0.014908241, -0.014069828, 0.012900278, 0.018712802, 0.026913743, -0.01607779, 0.018374618, 0.005639909, -0.02029099, 0.010046858, 0.0052207024, 0.028351022, -0.016415974, 0.002980239, 0.011949138, -0.015175969, -0.03579105, -0.021742359, 0.010702088, -0.020784173, 0.00044012247, -0.005502522, 0.021249175, -0.027054653, -0.010652769, 0.00507627, 0.0041427435, -0.013745736, -0.031310122, 0.025758283, -0.014668695, 0.0023126795, 0.017951889, 0.022672363, -0.013555508, 0.029281026, -0.032803766, 0.002266884, 0.019515986, 0.0019146098, -0.033113766, -0.024137823, 0.03052103, 0.014781422, -0.0085250335, 0.0061965017, 0.009081627, -0.026011921, -0.0012364822, -0.06104206, -0.0017684161, 0.017726434, -0.02336282, -0.020615082, -0.015232333, -0.0013166246, -0.004160357, -0.009391628, 0.0140275555, -0.024757825, 0.00737662, -0.008264351, 0.002152395, -0.025096009, -0.01969917, 0.0315074, -0.020910991, 0.026631923, 0.010258222, -0.014062783, -0.009300037, 0.0051326337, 0.009102764, 0.001483074, 0.0019216554, -0.0027494996, 0.01321028, -0.0062669567, -0.010525951, 0.0033818316, -0.029675571, -0.005622295, 0.026096467, -0.0014681024, -0.00061780075, 0.011110726, 0.021643722, 0.029957391, 0.028125565, -0.013323007, -0.013668236, 0.012160502, -0.02467328, -0.01898053, 0.002319725, 0.0012849199, -0.011441863, 0.017402342, -0.01798007, 0.035001956, 0.023264183, -0.008003668, -0.046697456, -0.015161878, 0.01299187, 0.00040951866, 0.013301871, 5.7850015e-05, -0.018585982, 0.039623793, 0.017923707, 0.009912994, 0.005784341, -0.008257305, -0.0385247, -0.03038012, -0.0010594644, 0.00809526, -0.027646473, 0.005280589, -0.004167403, 0.008285487, -0.014964605, -0.008348897, -0.012949597, 0.0067847995, 0.0015984438, -0.0052066115, 0.017303705, 0.014302329, -0.03751015, 0.0022651227, 0.005960478, 0.04472472, -0.009159127, -0.013337098, 0.010680951, -0.014739149, -0.008842081, -0.008362988, 0.014570057, -0.017275523, 0.023095092, -1.6072507e-05, -0.0031687056, -0.019473713, 0.015542334, 0.008222078, 0.033846498, -0.0054285442, 0.011012089, 0.010913452, -0.0058794552, -0.025871012, 0.009765038, -0.018205527, -0.0013474486, -0.0002681687, 0.03562196, 0.020939173, -0.0003430269, 0.0052911574, -0.0014152613, -0.020939173, -0.0029538185, -0.0059675234, -0.009962312, -0.019008711, 0.010955725, 0.016895067, -3.8598787e-06, 0.03257831, 0.0154577885, 0.026617832, 0.013372325, -0.0010982145, -0.010018676, 0.015345061, -0.016923249, 0.008574352, 0.019191895, -0.011455954, -0.012829823, -0.034832865, -0.0072779832, 0.00075738935, 0.00017404543, -0.004406949, 0.061323877, 0.0053545665, -0.017205069, 0.024560552, -0.010645724, -0.0056011584, 0.01620461, 0.0058195684, -0.0054250215, -0.03300104, 0.004269562, 0.0062000244, -0.009455037, -0.026801014, -0.010067995, -0.0035614914, 0.0016565691, 0.0074823024, -0.019825988, 0.014372785, 0.044358358, -0.0034117748, 0.0071511646, -0.0092014, -0.037735604, -0.017345978, 0.01969917, 0.010878225, 0.0036953555, -0.031873763, 0.011667319, -0.0036389916, -0.024039187, -0.014471421, -0.020558719, 0.008771625, -0.012963688, -0.01721916, 0.002728363, -0.010053904, 0.0022510316, -0.015824154, -0.010349814, -0.013858464, -0.012963688, -0.02746329, -0.008081168, -0.035565596, -0.014626422]" 19888220,What It's Like to Work on Ultra-Violent Games Like Mortal Kombat,https://www.kotaku.com.au/2019/05/id-have-these-extremely-graphic-dreams-what-its-like-to-work-on-ultra-violent-games-like-mortal-kombat-11/,174,1557606802,133,luu,"[-0.001212847, -0.013270261, 0.008409073, -0.025965543, -0.0013002373, 0.011264367, -0.041320104, -0.019405551, -0.01981065, -0.012839027, 0.024802517, 0.03431581, 0.0025400366, -0.007925567, -0.0011695602, 0.01096381, 0.037504334, 0.0018000773, 0.022110568, -0.059379682, 0.02277702, 0.011401579, -0.022855427, -0.00018284588, -0.007559671, 0.03826226, 0.0016293803, -0.03368856, 0.022241246, -0.018124916, -0.009140864, -0.0093760835, -0.00836987, -0.012597274, -0.031623863, 0.0135120135, -0.0025057336, -0.027259247, 0.0058772033, 0.005027802, 0.017955035, -0.0145574305, -0.011983092, -0.0060895537, -0.00080284756, 0.013956316, -0.021535588, -0.021731604, -0.017523801, 0.01770675, 0.043201856, 0.018765233, 0.009212737, -0.033531748, 0.028252393, -0.04116329, 0.010408432, 0.010042536, 0.034368083, 0.0040999944, -0.0015673087, -0.010042536, -0.013498946, 0.004345014, -0.0022182441, -0.003858242, -0.029271673, 0.008304531, -0.016948823, -0.024410486, 0.054413952, 0.041084886, 0.030186415, 0.012825959, 0.00022031345, -0.016203962, 0.01079393, -0.00069299707, -0.004073859, -0.011558391, 0.022946902, 0.002812825, 0.006749473, 0.03392378, 0.017170973, -0.01370803, 0.0089775175, 0.006073219, 0.019497026, 0.0063835774, 0.0028487612, 0.0057791956, 0.017654479, 0.023626423, -0.032198843, 0.022241246, -0.022973036, 0.024528095, -0.030578446, -0.035491906, 0.0036850946, -0.0015975278, 0.003489079, -0.010441102, -0.016295437, 0.0004634954, 0.019575432, -0.0023815904, 0.018007306, -0.0019764914, -0.012264048, 0.020934474, 0.0028879642, -0.019679973, 0.015576712, 0.0032195575, 0.01701416, -0.0056779208, -0.020307224, -0.028958049, 0.023561085, -0.010297357, 0.015406832, 0.0033322666, 0.010852735, -0.0066776006, -0.008317598, -0.0076576793, -0.0063215056, -0.017563004, 0.031571593, 0.012159506, 0.017458463, -0.012832493, -0.0041163294, 0.027494466, -0.027729684, 0.010519508, -0.0034727445, -0.022999173, 0.038288396, -0.0018196788, -0.0047893166, -0.0068213455, -0.0110291485, 0.007533536, 0.00283406, 0.02216284, 0.022489531, -0.011231698, 0.015994878, 0.0055831796, 0.006491386, -0.0031803544, -0.008030109, -0.021823078, -0.00038345566, 0.0063607087, -0.0038321065, -0.035727125, 0.015811931, 0.010486838, -0.024345146, 0.008010508, 0.019118061, 0.019797584, 0.0036458916, 0.011872016, 0.0028716295, -7.7283265e-05, 0.020594714, 0.013348668, -0.024149131, 0.022803158, -0.030343227, -0.011166359, -0.013459743, 0.0060862866, -0.023822438, -0.01059138, 0.014100061, -0.009055925, 0.021574792, 0.03368856, -0.021731604, -0.018294796, 0.03165, -0.034629434, -0.021509454, 0.00029341097, 0.031623863, 0.025847934, 0.009983731, -0.020646984, -0.6276683, 0.005383897, 0.0103822965, 0.000508824, -0.0065469234, 0.017968103, 0.00671027, -0.00092862424, -0.01187855, 0.0142699415, -0.0320943, 0.008467877, -0.0009637437, -0.018582286, -0.026658133, -0.018033443, -0.022110568, -0.003988919, -0.04071899, 0.0052728215, -0.009911859, -0.014570499, -0.031493187, -0.0012912533, -0.044064324, 0.017105635, 0.029219404, -0.011264367, 0.027259247, 0.028017174, -0.027546735, 0.01104875, 0.0075792726, 0.0033110315, 0.04443022, -0.027964903, -0.021836147, 0.018987386, 0.016243165, 0.02433208, -0.02089527, -0.02369176, 0.010343093, -0.011349307, -0.034002185, -0.010395365, 0.03306131, -0.017001092, -0.017602207, -0.008147718, 0.012976238, 0.0066383975, 0.010153612, -0.0035576846, 0.0014652172, 0.007892898, 0.014139264, -0.008062778, 0.0021774075, 0.010232018, -0.024920126, 0.015811931, -0.0112447655, 0.005112742, -0.041868947, 0.03528282, -0.009918394, 0.013838707, -0.014439821, -0.0039137797, 0.014884124, 0.02358722, -0.014191535, -0.023717897, 0.016700536, 0.020751527, 0.014060858, -0.0320943, 0.010388831, 0.005256487, 0.005318559, -0.015119342, -0.0320943, -0.0054427017, 0.026057018, 0.00047452128, -0.00579553, 0.008075845, 0.029271673, 0.01701416, -0.02197989, 0.006079753, -0.0015085039, 0.0048644557, 0.003394338, 0.031127289, -0.008304531, 0.010428034, -0.006661266, -0.026710402, -0.009402218, -0.024501959, 0.01901352, 0.01233592, 0.0041130623, 0.013185321, -0.035491906, -0.013890978, 0.05195722, 0.004534496, -0.015341493, 0.0055472436, 0.0038386404, -0.011016081, 0.022254312, -0.016792009, 0.009565565, 0.019287942, 0.027677413, -0.014296076, 0.02861829, 0.018569218, 0.013498946, -0.002440395, 0.019889057, 0.025612716, 0.0009841621, 0.010232018, -0.010147078, -0.0054688375, 0.022136703, 0.012669146, 0.029245539, -0.005230352, 0.0010838034, -0.0024175267, 0.021796944, 0.0021349373, 0.010388831, -0.023378136, -0.006439115, -0.01421767, 0.0042339386, 0.0127214175, -0.0027017493, -0.025717257, -0.007703416, -0.006615529, 0.0093760835, 0.014910259, 0.00040611997, -0.0062823026, 0.012146438, -0.016399978, 0.0037406324, 0.01992826, -0.027494466, 0.005949076, -0.021836147, 0.00085675187, 0.011669466, -0.0035674854, -0.03729525, 0.024828652, 0.008526682, -0.030918205, 0.00023317698, -0.006938955, -0.025547376, -0.012342454, 0.0018262127, -0.020882204, -0.005024535, 0.0220975, 0.002440395, 0.015432968, 0.021156626, 0.014884124, -0.0041555325, 0.0051356107, 0.004407086, -0.015720457, -0.003851708, 0.008108515, 0.001130357, 0.017667547, 0.0025792397, 0.016530655, 0.0048677227, 0.03883724, 0.014073925, 0.011832813, -0.058334265, 0.00671027, -0.018229458, 0.019157266, -0.0013459743, 0.0015428067, 0.0071807075, 0.03117956, 0.027180841, 0.008023575, -0.033662423, 0.011826279, 0.0014521495, -0.020594714, 0.0059948126, -0.0266712, 0.024253672, -0.010663252, 0.0061352905, -0.007938635, 0.0060993545, 0.00733752, 0.0145574305, 0.006027482, -0.025795663, 0.00825226, -0.024946261, 0.0021398377, 0.015367629, -0.0035936206, 0.034472622, 0.015119342, -0.0127932895, 0.040405363, 0.011577993, 0.022737818, 0.012825959, -0.015446035, -0.018177187, 0.03928154, 0.009820385, -0.010989945, 0.0032587606, 0.004547564, -0.0021398377, 0.0073701893, 0.024031522, -0.0038549749, -0.013322532, 0.024109928, 0.0081150485, -0.012525402, 0.026736539, -0.0088729765, 0.023155985, -0.000833475, -0.02199296, -0.011734805, 0.003926847, 0.014714243, -0.015432968, 0.002157806, 0.0047893166, -0.0199936, -0.010898472, 0.0037537003, 0.024188334, 0.014779582, -0.0073767235, -0.019457823, 0.012812891, 0.0099510625, -0.0041914685, -0.0057759285, -0.011179428, 0.001978125, 0.000633784, -0.019209536, -0.016778942, 0.0032571272, 0.0022198774, 0.0013476078, 0.0044168867, 0.00425354, 0.024606502, 0.009657039, 0.0040215882, 0.025155345, 0.0050180014, -0.03878497, 0.009330346, 0.017863562, -0.025795663, -0.018660692, -0.01467504, -0.03214657, -0.021627063, 0.01804651, -0.020490171, 0.011610662, 0.00031260416, 0.00034629437, 0.015119342, -0.0137603, 0.011813211, -0.02684108, 0.0055701123, -0.0059556095, 0.019745313, 0.017210176, 0.0047762487, -0.017040296, 0.007958236, 0.01342054, -0.0026952156, -0.022528734, 0.004492026, -0.017523801, 0.013577352, -0.018255593, -0.014492093, 0.00097436126, 0.008814172, 0.005844534, 0.0044136196, -0.0006227581, 0.013348668, 0.0062888362, -0.009395685, -0.02170547, -0.0133356, -0.029088726, 0.112277776, 0.022175906, -0.011192495, 0.018974317, -0.015981812, -0.006066685, -0.027834225, -0.03133637, 0.03243406, 0.003897445, 0.006429314, -0.014518227, -0.006530589, -0.029402351, 0.0064227805, -0.014570499, -0.003232625, -0.008892578, -0.0049918657, 0.011676, 0.00274912, -0.012401259, 0.008075845, 0.03368856, -0.016021015, -0.011401579, 0.014374482, 0.025847934, -0.010931141, -0.03609302, -0.00025053252, -0.00039468572, -0.017693682, 0.012152972, 0.00867696, 0.017497666, 0.02192762, 0.00575306, 0.024750246, -0.009349948, -0.0018376469, 0.004367883, 0.008448276, -0.024214469, 0.025037736, -0.04105875, -0.013198389, 0.009062458, -0.008199989, -0.0038255726, 0.028801236, 0.0008739032, -0.04312345, -0.009225804, -0.015628982, -0.012427393, -0.022855427, 0.00013955908, -0.009291143, 0.01713177, -0.0029876055, -0.03648505, 0.004341747, 0.008226125, -0.004612902, -0.0076380773, -0.01890898, 0.02363949, 0.007977838, 0.008572419, 0.001346791, -0.023861641, -0.021522522, -0.02101288, 0.015890338, -0.0073636556, 0.022881564, -0.016007947, 0.004933061, -0.015916472, -0.009663573, 0.008768435, -0.022855427, -0.024462756, -0.016399978, -0.0047337785, 0.010715524, 0.014243806, -0.007814491, 0.008552818, 0.0055439766, 0.011813211, -0.00036038298, -0.0010650185, -0.007651145, 0.01150612, 0.009552497, 0.0025580046, 0.024593433, 0.0013402572, 0.021718537, -0.021770807, -0.023521882, -0.011009547, 0.018477743, -0.056975223, -0.009245406, 0.028409205, -0.0048285197, -0.005488439, 0.013564285, -0.0022656145, 0.0010119309, -0.010957276, 0.014008587, 0.012486199, 0.016386911, 0.025338292, -0.012100701, 0.0026380443, 0.025730325, -0.03763501, 0.008154253, 0.024750246, -0.008552818, 0.008840307, 0.007866763, -0.027076298, -0.02929781, 0.0061091552, -0.0055472436, 0.014831853, 0.015681254, -0.016935755, -0.02197989, -0.01770675, -0.0011246399, 0.017576072, -0.004580233, 0.0007669113, -0.021156626, 0.016295437, 0.00054721045, -0.004109795, 0.011852414, -0.02804331, -0.033401072, 0.025416698, 0.018085713, 0.005318559, -0.024005387, -0.0060895537, -0.021888416, 0.010330026, -0.0011769108, -0.002925534, -0.018765233, -0.013538149, 0.050284553, 0.0004022405, 0.04618129, -0.0054655704, 0.018686827, 0.008827239, 0.0067560067, -0.004086927, -0.008925247, -0.009408752, -0.044848386, 0.01662213, 0.02643598, 0.015576712, 0.00017937477, -0.008206523, 0.03227725, 0.030709123, -0.01138851, -0.0056746537, -0.018765233, 0.009728911, 0.0075008664, -0.016295437, -0.0033976051, 0.0040934607, -0.04019628, -0.007853694, 0.019549297, -0.0019666906, 0.0019552563, -0.0055701123, -0.0153153585, -0.019536229, -0.031676132, -0.021483319, 0.010486838, 0.018974317, 0.0058543347, -0.020437902, 0.020686187, -6.0693394e-05, 0.0037863695, 0.012244446, 0.002971271, -0.010545643, -0.01662213, 0.006978158, -0.030186415, -0.012264048, 0.005615849, 0.0017592406, -0.022437261, 0.019392485, 0.004701109, -0.0065371227, -0.012440462, 0.0068605486, -0.0040019867, 0.040117875, 0.010983411, -0.036903217, 0.021431047, 0.018686827, 0.043881375, 0.024920126, 0.0046847747, 0.00043286794, 0.0026886817, -0.011649865, -0.0040248553, 0.0113558415, -0.0010307158, 0.015576712, 0.024750246, -0.00084450084, -0.023103714, 0.008141184, -0.0032309918, -0.06350908, -0.0346033, 0.009389151, 0.026135424, -0.013943248, -0.019340213, 0.0065991944, -0.010983411, 0.0027099168, -0.0068605486, 0.0016824679, 0.019183401, -0.034472622, -0.0011613929, 0.009108195, -0.016831212, -0.011676, 0.0041065286, -0.024867855, -0.026684267, -0.009349948, -0.017915832, 0.013394404, 0.0199936, 0.027024027, -0.023561085, 9.571078e-05, 0.035727125, 0.0063803103, 0.005063738, -0.013146118, -0.00081591523, 0.029559163, 0.00887951, -0.0137603, -0.020006666, 0.010911539, -0.003101948, -0.010676321, -0.016870417, -0.030029602, 0.0016024282, 0.017001092, 0.008938314, 0.0071349707, -0.010545643, -0.0042862096, -0.03165, -0.017079499, -0.018686827, -0.008663893, 0.021862281, -0.01672667, -0.035883937, -0.007056564, -0.031205695, -0.021640131, -0.012499266, -0.020516308, 0.012146438, 0.036406644, -0.011323173, -0.0011646599, -0.011225164, 0.014857988, -0.010689388, 3.746758e-05, -0.011055284, -0.00081469014, 0.043071177, -0.0037504332, -0.018464677, -0.01758914, -0.01096381, 0.0070500304, 0.009317279, -0.00025788313, 0.0047207107, -0.0007963137, -0.001020915, -0.019157266, -0.011800144, 0.0075008664, 0.004158799, -0.016099421, 0.007834093, -0.0025776061, 0.009741979, -0.0325386, 0.009467557, -0.015001733, -0.023744032, -0.021509454, 0.0007575189, 0.010689388, -0.012446996, -0.032956768, -0.04003947, 0.020189615, -0.0098073175, 0.0129370345, 0.008598554, -0.021862281, 0.026645064, 0.03248633, -0.017092567, 0.00116711, 0.0027376856, -0.018765233, -0.011225164, -0.017053364, -0.018856708, -0.02804331, -0.012891297, 0.04019628, 0.00042225042, 0.0062659676, -0.024789449, -0.011493052, -0.05603435, -0.003098681, -0.006664533, 0.0060340157, 0.02809558, 0.013564285, 0.023116782, 0.023443475, 0.004207803, -0.011016081, -0.024070725, -0.007945169, 0.018948182, 0.0026592794, 0.037425928, 0.011852414, -0.015145478, -0.012348987, 0.007069632, 0.020346427, -0.0074943327, 0.013721097, -0.015432968, -0.008036642, 0.0014554164, 0.011035683, 0.016256234, 0.015772728, 0.0052238177, -0.018425474, -0.00040877436, 0.015811931, 0.01059138, 0.0026870482, -0.0054296344, 0.019862922, 0.0070108273, -0.01196349, 0.008663893, -0.010316959, 0.0027099168, -0.020856068, 0.044508625, 0.013538149, -0.010408432, 0.027259247, 0.008820705, -0.015916472, -0.022345787, -0.0049559297, -0.0005304674, -0.010820066, -0.004622703, 0.0041489983, 0.024854787, -0.011937355, 0.030108009, -0.02187535, -0.014060858, 0.002633144, -0.0083372, -0.01467504, 0.0179289, -0.0045835, 0.014086993, -0.00017988522, 0.011604128, -0.020947542, 0.010388831, -0.025795663, -0.026174627, 0.0046815076, 0.026305303, 0.012192175, 0.024567299, -0.019732244, 0.0008518515, -0.023704829, -0.024253672, 0.025874069, 0.20490173, -0.005805331, -0.01615169, 0.018582286, -0.013890978, 0.0028748966, 0.021823078, -0.012486199, -0.020843, 0.008003973, -0.003154219, 0.020045869, -0.011695602, -7.815104e-05, 0.02712857, -0.010016401, -0.036903217, -0.00996413, 0.026174627, -0.0053708297, -0.0021545389, 0.00141703, -0.006674334, -0.0033584018, 0.018020375, 0.026867215, -0.011571459, 0.003632824, 0.0479585, -0.0038157718, -0.017693682, 0.003284896, 0.004495293, -0.0094479555, -0.0100229345, -0.0019160532, -0.00083143316, 0.009258473, -0.0010495005, 0.0029549364, 0.01621703, 0.029271673, -0.005573379, -0.00821959, 0.022633277, 0.011826279, -0.013577352, 0.0039366484, -0.010519508, -0.03551804, -0.024763314, -0.0038255726, 0.03564872, 0.0047468464, -0.0072852494, 0.007749153, -0.0064979196, -0.0012732851, -0.018634558, 0.036119156, -8.718614e-05, 0.018425474, -0.03507374, 0.037896365, -0.034786247, 0.028801236, -0.0053740963, 0.045423366, 0.005887004, -0.014439821, -0.033427205, -0.0120811, -0.026788808, -0.018595355, -0.0063182386, -0.028748965, 0.0026903152, 0.026187694, 0.020777661, 0.02318212, 0.0045116274, -0.012322852, 0.027938768, 0.010610982, -0.021326505, -0.019274876, 0.032930635, -0.0056975223, -0.0057367254, -0.0052891565, -0.003982385, 0.0072787153, 0.0069977595, -0.0134074725, 0.024201402, 0.0028569284, 0.03470784, 0.007527002, -0.0032032228, -0.03444649, -0.019209536, 0.014531296, 0.024227537, 0.003714497, -0.0038549749, 0.0009139231, -0.010258154, 0.03151932, 0.017223245, -0.023090646, 0.009617836, -0.010225484, 0.009461023, -0.006971624, 0.032068163, 0.028356934, 0.005988279, -0.017510734, -0.009774649, -0.012806358, -0.008003973, -0.0049559297, 0.019575432, -0.014779582, 0.011094487, -0.025155345, -0.004995133, -0.0027785222, -0.010003333, -0.017497666, 0.03624983, -0.020568578, -0.027180841, -0.019823719, -0.0009857955, 0.00040550742, 0.0010258154, -0.01862149, -0.00081346504, 0.022946902, -0.0007971304, 0.023626423, -0.0018899178, 0.0034172067, 0.018974317, -0.011316638, -0.01096381, 0.011806677, -0.019261807, -0.020542443, -0.013681894, -0.0133356, -0.0030366094, -0.0048677227, 0.021522522, -0.02963757, -0.00825226, -0.025338292, -0.014335279, 7.4462987e-06, -0.067586206, 0.025390564, 0.017092567, 0.006118956, -0.012832493, -0.026501318, -0.1629805, 0.005628917, -0.013825639, -0.0034694774, 0.044613168, -0.021391844, -0.0085462835, 0.0013908945, -0.013080779, -0.0010576679, -0.0066906684, 0.011362376, -0.014492093, -0.0114995865, 0.015668185, -0.005305491, -0.00529569, 0.011434248, 0.0098791905, 0.04145078, 0.04929141, 0.0029320677, 0.0059719444, 0.004815452, -0.015341493, -0.015864203, 0.014309145, 0.022933833, 0.012610341, -0.017053364, -0.034812383, -0.044926792, -0.01513241, 0.024893992, 0.007664213, 0.008683494, -0.0043254127, -0.022437261, -0.0195885, 0.043149583, 0.008605088, 0.006971624, -0.018425474, -0.0014496993, 0.017340854, 0.020986745, 0.00091555656, -0.0015583247, 0.016177827, -0.0179289, 0.032460194, -0.046076752, 0.00933688, -0.0004214337, 0.037216842, 0.0038909111, 0.023613354, -0.019601567, -0.00069258874, 0.0030121075, -0.012355521, -0.0044103526, -0.010467237, 0.005073539, -0.00092290714, -0.026893351, -0.029140998, 0.008297997, -0.014753447, -0.0061842944, -0.025299089, 0.008487479, 0.02592634, 0.0040901937, 0.025743391, 0.0061875614, -0.0075531374, -0.03528282, 0.028853508, 0.0038190386, -0.012819425, 0.017955035, -0.02021575, -0.001639181, -0.02147025, -0.004220871, 0.003394338, 0.015027869, -0.010767794, -0.021914553, 0.004851388, -0.006527322, -0.017615275, -0.015720457, 0.0067429394, -0.004537763, 0.00816732, -0.023221323, -0.00787983, -0.024423553, 0.016256234, -0.0016179461, 0.007951703, 1.9729181e-05, 0.012682214, -5.308758e-05, 0.009532896, 0.0053152917, 0.0004622703, -0.0013492412, -0.022371922, -0.011525721, 0.0062529, -0.0039627836, 0.017484598, 0.0016906352, 0.007017361, -0.0039333813, 0.014178467, -0.008918713, 0.061993223, 0.0036752939, -0.020973677, 0.01643918, -0.03421127, -0.028121715, -0.108827904, -0.0042698747, 0.0038647756, 0.031022748, -0.012087633, 0.03345334, -0.014570499, 0.014465957, 0.0044103526, -0.0035544175, -0.019170333, -0.0075400695, -0.008441742, -0.0021480052, 0.0199936, 0.011630263, 0.019980531, -0.023260526, 0.01153879, 0.038366802, 0.010349628, -0.00976158, -0.005834733, -0.017876629, -0.032381788, 0.0035152144, -0.015093207, 0.00233422, -0.004263341, 0.020464037, 0.02363949, -0.01775902, 0.010983411, -0.023234392, 0.00035487005, -0.0050506704, -0.023678694, -0.005070272, 0.03285223, -0.04100648, -0.0028209921, 0.011741339, -0.002781789, 0.0013378069, 0.0015762927, -0.00037916782, -0.031075018, 0.02089527, 0.02633144, -0.021940688, -0.014897191, -0.043541614, -0.01770675, 0.0017576072, 0.00879457, 0.023312798, 0.019601567, -0.015223884, -0.018712964, 0.017393123, -0.036406644, -0.0033780034, 0.0076707467, 0.007148038, 0.003982385, -0.022358855, -0.026253033, -0.0015583247, 0.02621383, -0.0130481105, -0.029167132, -0.0054165665, -0.025900204, 0.0025155344, -0.017170973, -0.010754727, -0.030134143, 0.0007901882, 0.007821025, 0.015054004, -0.011806677, -0.017732885, 0.009944528, -0.018582286, 0.016974958, -0.023744032, -0.009147398, -0.012545004, -0.019849854, -0.023038376, -0.0033714697, 0.011127156, 0.0069062854, -0.0069912258, 0.002453463, 0.004302544, 0.030238684, -0.004841587, 0.015942609, 0.028853508, -0.008827239, 0.024606502, -0.042051896, 0.008892578, 0.0030153745, 0.012741019, -0.0035152144, 0.018320931, 0.015406832, 0.008611622, 0.010905005, 0.016752806, -0.022711683, 0.020333359, -0.009428354, 0.0026870482, -0.025560444, 0.003799437, -0.0034694774, 0.003136251, 0.020843, 0.0013533249, -0.01633464, -0.008892578, 0.0010078473, -0.0075466037, 0.02096061, 0.003038243, -0.002724618, 0.014766514, -0.0036752939, -0.0012030462, 0.022358855, -0.0042470065, -0.0015697589, 0.016243165, -0.000883704, -0.016661333, -0.0141261965, 0.013551217, -0.0040999944, 0.057550203, -0.049265273, -0.007187241, -0.009127797, -0.04631197, -0.009225804, -0.0052728215, 0.0010462337, 0.007383257, 0.0013271895, 0.006932421, 0.02741606, 0.0162693, -0.015210817, -0.008585487, -0.023286663, -0.009787716, 0.018177187, -0.0014946195, -0.0076315436, -0.03528282, 0.028513746, 0.003528282, 0.0017723084, -0.015524441, 0.014400618, -0.0098791905, -0.029454622, -0.008735766, 0.02277702, -0.013812571, -0.0066874013, -0.012701816, -0.0060111475, 0.005122543, -0.011695602, 0.008938314, 0.005151945, 0.014583566, -0.036145292, 0.012277115, 0.02158786, 0.00025359527, -0.0329045, 0.004266608, 0.019340213, 0.017170973, -0.0062169638, 0.04082353, 0.013786436, 0.025482038, -0.020137344, -0.0068082777, -0.023861641, 0.00029933229, 0.014230738, 0.029846653, -0.02192762, 0.012760621, 0.034106728, -0.0045116274, 0.0037275648, -0.026788808, -0.014518227, -0.0049755313, -0.030081872, 0.007821025, -0.03345334, -0.03248633, 0.0266712, 0.0040019867, 0.02814785, -0.016060218, -0.0101666795, 0.0026821478, 0.0030121075, 0.0074485955, 0.018516947, -0.011074886, -0.009291143, 0.040274687, 0.027677413, 0.004815452, 0.025233751, -0.024920126, 0.019915193, 0.0024028255, 0.025834866, -0.024684908, 0.018033443, -0.016700536, -0.0019911926, 0.0012651178, -0.01070899, -0.006272502, -0.008173854, -0.02107822, 0.012754086, 0.011551857, 0.013237592, 0.032068163, 0.022607142, 0.010055604, 0.0034368082, -0.012329386, 0.011094487, -0.007559671, 0.0048677227, 0.0073505878, -0.019784516, 0.018151052, 0.0068605486, 0.027964903, -0.002897765, -0.022528734, 0.020333359, 0.015145478, -0.008899111, 0.03191135, -0.0069062854, 0.032643143, 0.018699896, 0.01753687, -0.013681894, -0.00421107, 0.0056975223, 0.036850948, 0.015955675, -0.013113448, -0.027363788, -0.00813465, 0.0073244525, -0.020738458, -0.018712964, 0.0033747365, 0.024907058, 0.012100701, 0.003407406, 0.0086181555, 0.0107808625, 0.006154892, 0.020856068, -0.01821639, -0.02935008, -0.01741926, 0.007801424, -0.023665626, 2.8611143e-05, -0.035700988]" 7750099,Functional programming explained in Clojure with a terminal-based game,http://www.braveclojure.com/functional-programming/?again,100,1400168705,30,yawz,"[0.010284728, -0.0034265183, 0.009215558, -0.021259243, -0.018403525, 0.0056321127, -0.01063652, -0.01916229, -0.02684652, -0.03777275, 0.026156733, 0.004556045, -0.009236251, -0.0013062846, -0.0048871427, 0.012698984, 0.02665338, -0.004390496, -0.008374018, -0.007311745, -0.011954013, -0.008387813, -0.018168997, 0.00020596616, -0.017727533, 0.0084292, 0.013188733, -0.035427473, 0.005570032, -0.016210001, 0.024432264, -0.009650123, -0.015230503, 0.0028470969, -0.011678099, 9.996526e-05, -0.022280129, -0.008684422, 0.008732706, -0.02869515, 0.021700706, -0.010119179, -0.0057114386, 0.0019900363, 0.00059407926, 0.03167503, -0.01323012, -0.019286452, 0.0005643322, 0.0032040619, 0.04031117, 0.02888829, -0.034572136, 0.012636903, -0.017713737, 0.0020900555, -0.0058804364, -0.002110749, 0.0020159034, 0.0009562176, -0.0031850927, 0.012505843, -0.019438205, -0.010215749, 0.014002682, -0.013961294, -0.0023452768, -0.00057381677, -0.0136715835, 0.011636711, -0.011167656, 0.030267864, 0.014195822, 0.008422302, 0.017810307, -0.014223414, -0.02062464, 0.00787737, 0.008932745, -0.0018072426, 0.016748035, -0.015989268, -0.005687296, 0.021286834, 0.004493964, -0.005894232, 0.029936766, 0.020721208, 0.015865106, -0.028226094, -0.004269783, -0.0018555277, 0.013512933, 0.006673692, -0.005411381, 0.017644757, 0.00044706836, 0.0026470586, -0.013147345, 0.014251005, 0.01212646, 0.023080282, -0.02492891, -0.015340868, -0.014154434, 0.0086568305, 0.003083349, -0.0320889, 0.01757578, -0.015023567, -0.0057631726, 0.022804366, 0.020417703, -0.043208275, 0.026901703, -0.018500093, 0.02091435, -0.0114090815, -0.04334623, -0.026708562, 0.019024333, 0.015051158, 0.031205976, -0.00251255, 0.02045909, -0.0006678003, -0.010284728, -0.0122851115, -0.009863958, -0.035289515, -0.0019176085, 0.0061529023, 0.0009717378, 0.010333013, 0.01887258, -0.009498371, -0.036558725, 0.010126077, -0.004907836, -0.004694002, 0.018031038, 0.0035420575, -0.011595324, 0.0038766044, -0.0014425176, -0.0028608926, 0.028308868, 0.029522894, 0.029329754, 0.0035058437, -0.012167847, -0.011726383, 0.0047009, 0.005794213, -0.0036662193, 0.0070565236, -0.017451618, 0.007677332, -0.002246982, 0.012098868, 0.03868327, 0.00856026, 0.0021055755, 0.0034834256, 0.015478826, 0.025535924, 0.01290592, 0.024859933, 0.011954013, 0.024501244, -6.628424e-05, 0.017327456, -0.028198503, 0.01024334, 0.014375166, -0.009408698, 0.0122851115, 0.0029781566, -0.01981069, -0.010160566, 0.01546503, -0.014457941, 0.02026595, 0.016637668, -0.018389728, 0.022969916, 0.026874112, 0.0054527684, -0.0010441655, -0.00022439641, 0.014444145, 0.0051630577, -0.0030712779, -0.013712971, -0.6237884, -0.00093724846, 0.0104709705, -0.050409652, 0.012664494, 0.011781567, 0.010719294, 0.008712013, -0.026474034, 0.03465491, 0.025756657, 0.014009579, 0.022873346, -0.0074083153, -0.01138149, -0.012216132, 0.009746694, -0.01844491, -0.0076635364, 0.012988694, -0.013919907, 0.023163056, -0.0074566, -0.024556426, 0.015644375, 0.008360222, 0.021162674, 0.004883694, -0.01170569, 0.01355432, -0.04406361, 0.0030592065, -0.020127993, 0.0044111894, 0.044146385, -0.012402375, 0.00010357587, 0.0036075874, 0.015285686, 0.035068784, -0.0033609883, -0.008712013, 0.046905532, 0.021604137, 0.00018721257, 0.0033834064, 0.0054941555, 0.0073255408, 0.0007686817, 0.009863958, -0.010946924, -0.01640314, -0.005180302, 0.015092545, 0.0007057386, -0.047843643, 0.027356962, -0.018127609, 0.008139489, -0.01245066, 0.015437439, 0.012091971, -0.04762291, -0.0011510825, -0.018858783, 0.018844988, -0.0019865872, -0.020307336, -0.0047353897, -0.04811956, 0.022197355, 0.02703966, 0.013995783, -0.023811456, 0.01416823, -0.01669285, 0.03349607, -0.011236634, 0.0073255408, 0.0064115725, 0.029771218, -0.008422302, -0.024032189, -0.010126077, 0.03424104, 0.0029816055, -0.0081463875, -0.030874878, 0.024487447, -0.004652615, 0.0063012065, 0.007822188, 0.009698409, -0.041801106, -0.0060356385, 0.0030402374, -0.029964358, 0.017493004, -0.017258476, -0.0246392, -0.027122434, -0.016320366, 0.017810307, 0.034682505, 0.00943629, -0.008415405, 0.0090017235, 0.016292775, 0.03810385, -0.019465797, -0.0136715835, -0.019576162, -0.012657596, -0.0103468085, 0.0104709705, -0.027936384, 0.031978536, -0.008732706, -0.0038662576, -0.028667558, 0.033634026, -0.005532094, -0.007787698, -0.01741023, 0.0023314808, 0.008822379, -0.010319217, -0.0042870278, -0.01115386, -0.016734239, 0.009277639, -0.008801686, 0.012402375, -0.0010036405, 0.01666526, -0.014692469, 0.0010898638, -0.00898103, 0.021397201, -0.021535158, -0.039152324, -0.016899787, 0.004666411, -0.010291626, -0.035455067, -0.020776393, -0.027150026, -0.0086568305, 0.0013899213, 0.0059908023, -0.0008294692, 0.021190265, -0.011036596, 0.018031038, -0.0020676374, -0.004873347, -0.016361754, -0.02305269, -0.027425941, -0.023218239, 0.0017330905, 0.027826019, -0.006177045, 0.009374209, -0.007180685, -0.011540141, -0.010615826, 0.02136961, -0.019934852, -0.04789883, -0.0051147724, -0.008643034, -0.02554972, -0.008532668, -0.005180302, 0.048257515, -0.040587083, 0.000976049, -0.00010988095, -0.02065223, -0.007835983, -0.014306188, -0.019079516, -0.020045217, 0.035289515, -0.014871813, 0.008305038, -0.004590534, -0.016623873, 0.011464264, 0.018293157, 0.024887525, 0.00033670242, 0.002328032, -0.01410615, 0.020472886, 0.012105767, 0.005087181, -0.01436137, 0.029357346, 0.00800843, 0.00010492311, 0.005470013, -0.04276681, 0.00966392, -0.020886758, 0.01952098, -0.0040180106, -0.022128375, -0.011036596, -0.011809158, -0.024239125, -0.012374784, -0.020141788, -0.016223796, 0.03628281, -0.0065322854, 0.041138913, -0.002246982, -0.0035972407, 0.017906876, 0.013719869, 0.028777925, 0.014513124, -0.01906572, 0.0039214403, 0.016720444, -0.010360604, -0.00010621646, -0.04072504, 0.015699558, 0.004590534, 0.015547805, -0.00080834446, 0.026598196, 0.0037179533, 0.027067252, -0.036420766, 0.031481892, -0.02554972, -0.0023883884, 0.04497413, -0.0072979494, -0.009125886, 0.0043008234, 0.006587468, 0.045305226, 0.006915117, 0.004152519, 0.012712779, -0.01796206, -0.00021523518, -0.0060356385, 0.006942709, 0.0150787495, 0.010498562, -0.002246982, -0.0073738256, 0.015534009, 0.027122434, 0.009181068, 0.00066435133, 1.5910913e-05, -0.0122644175, 0.0047491854, -0.00019217042, 0.009932936, -0.026639584, -0.013299098, 0.011457366, -0.00476643, -0.0066909366, -0.027287984, 0.020983329, 0.0072772554, 0.015244299, 0.017230885, 0.012478252, 0.014747651, 0.015396052, -0.008505077, -0.017906876, 0.03459973, 0.037000187, -0.011340102, -0.03611726, -0.012698984, -0.03244759, -0.014761447, -0.005518298, -0.025191031, 0.016210001, -0.004007664, 0.0118367495, -0.0074428045, -0.0033471927, 0.034268633, -0.006014945, -0.001201092, -0.030847287, -0.0032954586, -0.01176777, -0.015837515, -0.027522512, 0.018362137, 0.020735005, -0.015023567, -0.011602222, 0.030709328, -0.025577312, 0.016789421, -0.026432648, -0.008070511, -0.039014366, 0.033413295, -0.013926805, -0.010132975, 0.0038628087, 0.010229545, 0.0117746685, -0.014968383, -0.018348342, 0.010581337, 0.019189881, 0.08018087, 0.00846369, 0.0060425363, 0.02415635, -0.011829851, -0.008215366, -0.032116495, -0.024749568, 0.032475185, 0.00089155004, 0.011760873, -0.0010053649, 0.012195439, -0.018458707, -0.0012174745, -0.0009820847, -0.011022801, -0.023163056, -0.018182792, -0.0039248895, 0.0022504309, 0.013050775, 0.020279745, 0.01747921, -0.011305613, 0.0246392, 0.02720521, 0.017134316, 0.010677907, -0.016596282, -0.011022801, 0.006066679, 0.0013881968, 0.002214217, 0.0017063612, 0.03551025, 0.008353324, 0.025466945, 0.022459473, -0.0028936577, -0.008318834, 0.01125043, 0.022983711, -0.032916646, -0.022983711, -0.006021843, 0.007532477, 0.0035868937, -0.0040214597, -0.003264418, 0.011057289, 0.010443379, -0.008180877, 0.006501245, 0.011609119, 0.020679822, 0.01572715, 0.022818163, -0.010388196, -0.038821228, 0.012830043, -0.019024333, 0.004652615, -0.0042146, -0.0073324386, -0.006246024, 0.0040111127, 0.01342326, -0.012409273, 0.019796895, 0.0036489747, -0.008967235, -0.03093006, 0.007032381, 0.031923354, 0.03219927, 0.021838665, -0.0015037362, -0.026832724, 0.007415213, 0.0060183937, -0.038379762, -0.011678099, -0.019245064, -0.004128377, -0.006701283, 0.026211916, -0.011760873, -0.018844988, 0.03559302, -0.0330822, 0.01472006, -0.0146510815, 0.01721709, -0.0077532087, 0.031150792, 0.011209043, 0.0046215747, 0.011567732, -0.03995248, 0.010229545, -0.012002299, 0.016913584, -0.025135847, 0.0030730022, -0.00274018, 0.0068357917, 0.028750332, -0.0053286063, -0.041525193, 0.018375933, 0.0006621958, 0.02019697, 0.02545315, 0.029467711, 0.017355047, 0.017175702, 0.036917415, -0.0042146, -0.02574286, 0.011581528, -0.021535158, 0.016748035, 0.014416554, -0.035620615, -0.0137336645, -0.007794596, -0.030598963, -0.022831958, 0.0026470586, -0.005514849, 0.030405823, -0.01436137, -0.025315192, -0.009808775, -0.0011079708, -0.0035317107, 0.026667176, -0.026225712, 0.01741023, -0.004418087, -0.0032971832, -0.003278214, -0.01079517, 0.0004115012, -0.03385476, -0.00095535535, 0.005625215, -0.0032540713, 0.028915882, -0.022086987, 0.0045801876, -0.0043180683, 0.009815672, 0.0100502, -0.031950947, 0.00823606, -0.028998656, 0.032475185, 0.022252537, 0.008912051, -0.004004215, 0.037303694, 0.015009771, -0.0095121665, -0.016099636, 0.0057148873, 0.008794787, -0.029467711, 0.020072808, 0.009243149, 0.0032351022, 0.012119562, -0.021976622, 0.0063632876, 0.0075048856, -0.0108572515, -0.011133166, -0.0063563897, -0.029053839, -0.01844491, 0.03164744, 0.0017115347, 0.025701473, 0.0046284725, 0.007732515, 0.0066357534, -0.020017626, 0.016458323, 0.008242957, 0.020500477, 0.01601686, 0.010367502, -0.004780226, 0.02807434, -0.013374975, 0.010981414, -0.021410996, -0.005242383, 0.01008469, 0.006708181, 0.03981452, -0.010546847, 0.0047457363, -0.000574679, -0.010057098, -0.021673115, -0.007932553, 0.013816439, -0.026860315, -0.0057114386, 0.0033747843, -0.025260009, 0.0018365586, 0.0020021074, 0.009181068, 0.0024177043, 0.008643034, -0.023301013, -0.0405319, -0.019203678, -0.007642843, 0.033634026, 0.0054941555, 0.023756273, 0.013864724, -0.004438781, -0.012885226, -0.0063184514, 0.0049595702, 0.017424027, 0.043291047, -0.007842881, -0.028364051, -0.033468477, -0.015713355, 0.00011758717, -0.019286452, -0.028667558, 0.0050561405, 0.0118367495, 0.007967043, -0.0073324386, 0.016775627, -0.01925886, 0.0140992515, -0.022638818, 0.016320366, -0.020472886, -0.0021814522, -0.020721208, 0.024970299, 0.005311362, 0.008380915, -0.010139872, 0.009850162, -0.001447691, 0.008311937, -0.017630963, 0.020900553, 0.01235409, 0.027287984, -0.016003065, 0.0018607011, 0.020997124, -0.009105192, -0.0027712204, -0.011574631, -0.0039697257, 0.033247747, -0.0136715835, 0.004162866, 0.014664877, 0.0037145044, -0.00031773327, -0.025936, -0.018334545, -0.0118160555, -0.009905345, -0.014251005, 0.033551253, 0.015064954, -0.044091202, 0.00057381677, -0.008518873, -0.0132025285, -0.0056735002, -0.015796129, 0.006273615, 0.00066521356, -0.010712396, 0.008111898, -0.009870856, 0.024321899, -0.011284919, -0.0050113043, 0.005801111, 0.030985244, -0.015161524, 0.0033092543, -0.0057700705, 0.00093035056, -0.020762596, 0.0029936768, -0.0047009, -0.0074841916, 0.015865106, -0.020748802, -0.027315576, -0.0073876213, -0.0047491854, 0.010767579, -0.0053320555, -0.007318643, -0.0059183748, 0.013850928, 0.011022801, -0.016554894, -0.019369226, -0.0055562365, -0.021314425, 0.020238359, 0.022142172, -0.026929295, 0.011905728, -0.011967809, -0.011505651, -0.011526345, -0.01954857, -0.023645908, -0.016278978, -0.005183751, -0.030985244, -0.0040421532, 0.005466564, -0.003248898, -0.001952098, -0.0012519639, 0.011257328, -0.017920673, -0.02389423, 0.014113047, 0.02545315, 0.012402375, -0.030350639, -0.0035937915, -0.023949414, 0.0037420958, -0.01384403, 0.0047560832, 0.004931979, 0.039538607, 0.020748802, -0.007601456, -0.017727533, 0.0025056521, -0.010098485, -0.019824486, 0.0049561216, 0.012471354, 0.03459973, -0.008187775, -0.0020021074, 0.043015134, 0.0018986394, 0.007822188, -0.013899214, 0.0068357917, -0.0090638045, 0.01669285, 0.01060203, 0.0040111127, -0.02506687, -0.017837899, 0.01527189, -0.009187967, 0.014333779, 0.036586314, -0.019645141, 0.031233568, -0.038600493, 0.01618241, 0.03167503, -0.011229737, -0.005456217, -0.016899787, 0.0061046174, 0.0282123, 0.018858783, 0.0044077407, 0.00693926, -0.00025651464, -0.005745928, 0.0038076257, -0.007429009, -0.014044069, 0.00064452, 0.0010657213, 0.048947304, -0.0040800916, -0.015892697, 0.008663728, -0.0072358684, -0.009132783, -0.0043560066, -0.021079898, -0.013581911, -0.028419236, 0.025177235, 0.007939451, 0.0005850258, -0.0039352365, 0.0011545314, -0.0043629045, -0.00823606, -0.026722359, -0.02276298, -0.02785361, 0.00033368458, -0.024032189, 0.008553362, 0.008663728, 0.00037291623, 0.0018813948, -0.004176662, -0.016610077, -1.1720995e-06, -0.003148879, 0.020569457, 0.017368844, -0.0046871044, -0.025397968, 0.002600498, 0.020528069, -0.007153094, -0.008353324, 0.22349107, -0.0033972024, -0.0037420958, 0.027163822, -0.013871621, 0.010091588, -0.009788081, -0.018403525, -0.03167503, 0.01027783, -0.004614677, 0.008953438, -0.027550103, 0.0016313469, -0.005756275, -0.020790188, -0.020693617, -0.015409848, -0.008780992, -0.020817779, 0.02571527, 0.014844222, -0.0181552, -0.008256754, 0.031702623, 0.008215366, -0.012968, -0.004342211, 0.03537229, 0.0005699367, -0.013050775, -0.012533435, 0.0201004, 0.022969916, 0.009898447, -0.00047595322, 0.029412528, -0.023811456, 0.018306954, -0.03330293, 0.0024642649, -0.00091483037, -0.007704924, -0.011553937, 0.025342783, 0.014485532, -0.01961755, -0.015064954, 0.00027160373, 0.010498562, -0.031040426, 0.022362903, 0.006211534, 0.019107107, 0.008698218, 0.012085073, 0.01692738, 0.011422877, 0.024473652, 0.019921057, -0.023563134, 0.018237974, -0.011540141, 0.002655681, -0.024515038, 0.006877179, -0.019038128, 0.010733089, 0.008677524, 0.0036524236, 0.005721785, -0.012298907, 0.017203294, 0.011140064, -0.017341252, -0.027012069, 0.004942326, 0.030433415, 0.021907642, 0.015230503, -0.011436673, -0.011333205, -0.017230885, -0.027370758, -0.022569839, -0.03184058, 0.033413295, -0.02194903, 0.0026987926, -0.008967235, -0.0070496257, -0.015230503, -0.008946541, -0.023811456, 0.015396052, 3.368102e-08, -0.007153094, 0.0066874875, -0.015616784, -0.020969532, -0.011077983, 0.04221498, 0.007980838, 0.028157115, 0.01786549, -0.013781949, 0.017755125, 0.018941559, 0.004490515, -0.022928528, 0.002759149, -0.035979304, -0.010691702, -0.0099812215, 0.01565817, 0.028115729, -0.011209043, -0.022224946, 0.015865106, -0.0013459474, -0.013947498, -0.0011985054, 0.004600881, 0.005256179, -0.01027783, 0.0015106341, -0.032420002, 0.031923354, -0.004556045, -0.014692469, 0.023287218, -0.024859933, 0.015878903, -0.0023107873, -0.010353707, -0.009277639, 0.018486299, -0.018624255, 0.00027052595, 0.0012467905, -0.021535158, -0.0044042915, -0.011588426, 0.024735771, 0.0052699745, -0.014009579, -0.004907836, 0.019727916, -7.0972645e-05, 0.0062563703, -0.011574631, -0.01436137, -0.0019400266, -0.017948264, -0.01582372, -0.003790381, -0.0018486299, -0.003786932, 0.011960911, -0.0010053649, -0.03981452, 0.029467711, 0.033468477, 0.004493964, -0.019796895, -0.034323815, -0.17581297, -0.006280513, 0.011050392, -0.0049630194, 0.031785395, -0.031205976, 0.01601686, 0.005690745, 0.0074979877, -0.021024715, -0.009608736, -0.015520213, -0.032061312, -0.022583636, -0.014251005, 0.013216324, -0.0057045408, 0.025218623, 0.035427473, 0.02389423, 0.0252876, -0.018955354, 0.022031805, 0.0023487257, -0.0008941367, 0.019079516, -0.010333013, 0.0036938107, -0.0046215747, -0.020307336, 0.0018486299, 0.010339911, 0.0076911277, -0.0056562554, 0.0023814905, 0.004428434, -0.012830043, -0.008436098, 0.005756275, -0.009850162, 0.017396435, 0.021038512, -0.013595707, 0.0012036788, 0.0035023948, 0.015699558, 0.013085265, -0.018817397, 0.0149132, -0.014009579, 0.039731745, -0.010201953, -0.015313277, 0.01916229, 0.035317108, -0.035123967, -0.024956504, 0.011112473, -0.009836366, -0.008049818, 0.007311745, -0.03164744, 0.013643992, 0.0039352365, 0.013899214, -0.0039076447, -0.0090776, -9.834857e-05, -0.045608733, 0.015175319, -0.00014194529, -0.037689976, 0.0070220344, -0.008553362, -0.004490515, 0.02617053, -0.004873347, 0.0071255025, -0.0034454872, 0.0026763745, -0.02305269, 0.0024470203, -0.02259743, -0.02285955, -0.009056907, -0.0077601066, 0.003024717, 0.0095121665, -0.027150026, -0.018762214, 0.012567923, -0.034930825, -0.009932936, -0.023673499, -0.0055493386, 0.023935618, 0.017727533, -0.021328222, 0.014237209, -0.026736153, 0.02259743, -0.024390878, -0.0047388384, -0.013678481, 0.0392351, 0.011284919, -0.0011864341, 0.0033730597, 0.048588615, -0.0165411, -0.030488597, 0.012147154, 0.004652615, 0.026322281, -0.012209235, 0.029743627, 0.023908027, -0.019507183, 0.010519256, -0.00833263, 0.059928715, 0.0047215936, -0.014237209, 0.028088138, -0.023176853, -0.0037145044, -0.12526536, -0.02619812, -0.012933511, 0.0314543, 0.0033316724, 0.0099191405, -0.0127334725, 0.025480742, -7.37749e-05, 0.04541559, -0.012505843, -0.028915882, -0.0033644373, -0.0103468085, -0.038821228, 0.008318834, -0.023549337, -0.0052699745, 0.00070444524, 0.011726383, 0.009553554, -0.0030040236, 0.0017580952, -0.014402758, -0.008918949, 0.013919907, -0.007353132, -0.009650123, -0.0051113237, 0.020693617, 0.0024694384, -0.008629238, 0.0011872964, -0.0366415, 0.0104916645, -0.013023184, -0.0066254064, 0.010981414, 0.0126438, -0.017741328, -0.020666026, 0.025328988, 0.0015899596, -0.009381107, 0.0052354853, -0.017341252, -0.021976622, 0.011926422, -0.014954587, -0.026832724, -0.06312933, -0.019424409, -0.033109788, -0.022818163, 0.034848053, -0.0049043875, -0.0016753208, -0.0034161713, -0.014333779, -0.0069358107, -0.0146096945, -0.023452766, -0.01909331, 0.022073193, 0.012022992, 0.0058666407, -0.026598196, -0.012374784, 0.005514849, -0.030626554, 0.004204253, 0.020045217, -0.024832342, 0.008898255, -0.0118160555, 0.011788464, -0.009891549, 0.005883885, 0.01822418, 0.0060252915, -0.012312703, -0.0117746685, 0.00022590533, -0.015478826, 0.020872962, 0.009484575, 0.015975473, 0.01923127, 0.018306954, -0.017975856, -0.0064805513, 0.032061312, 0.020817779, 0.00966392, -0.010650315, -0.010443379, 0.00930523, -0.0011829851, 0.00966392, 0.031702623, -0.030461006, 0.0008350737, -0.037883118, 0.0022625022, -0.0108572515, -0.020541865, 0.013540524, -1.5183403e-05, 0.0034334161, -0.013968192, 0.018251771, -0.0065184897, -0.046215747, 0.009967426, -0.02120406, -0.023825252, -0.0175068, -0.03680705, 0.0002120018, -0.0077256174, 0.0057700705, -0.01222303, -0.0099191405, 0.018334545, 0.025604904, 0.009381107, -0.0012123011, -0.011857443, -0.018789805, 0.0073048472, 0.0006604713, 0.0015244299, 0.017272273, -0.0029816055, -0.0009131059, 0.028198503, 0.004759532, 0.013319792, 0.012623107, 0.0085119745, 0.018017244, 0.021604137, -0.0038697065, -0.01683081, -0.004062847, -0.020238359, -0.0047560832, -0.014995975, -0.00953286, -0.00034079803, -0.001326116, 0.018362137, 0.031950947, 0.019603753, 0.00082386466, -0.017617166, -0.0043042726, -0.006649549, 0.010850353, -0.0090224175, -0.01527189, -0.004811266, 0.034903236, 0.026791338, -0.0011424602, -0.028198503, 0.013581911, -0.016430732, -0.00962943, 0.024239125, 0.015865106, -0.017106725, -0.006173596, -0.010043303, 0.006373634, -0.014237209, 0.051402945, -0.020431498, -0.016389346, -0.004907836, 0.0044560255, 0.034406587, -0.0022573287, -0.014968383, 0.0014839049, 0.001838283, 0.03076451, 0.00073289894, 0.034516953, -0.014885609, -0.025591107, 0.018348342, -0.010029507, -0.008484383, -0.033054605, 0.014885609, 0.016099636, 0.0050630383, 0.005535543, 0.018293157, 0.020666026, -0.00037399403, 0.021121286, -0.018748417, -0.0019089862, -0.0057183364, 0.0012502394, -0.0066012642, -0.021783482, -0.025273805, 0.010126077, 0.022487065, 0.016582485, 0.0065598767, 0.0055631343, -0.009146579, 0.012271315, 0.018527687, 0.0011631538, -0.0034713545, -0.006973749, 0.015630579, 0.027743243, 0.014319983, 0.040504307, -0.013975089, 0.008242957, 0.026625788, 0.025411762, -0.01832075, 0.017065337, -0.0063701854, 0.0029143512, -0.0015606437, 0.0043111704, -0.021824868, -0.011664302, -0.0075531704, 0.03277869, 0.015437439, 0.0099398345, 0.08172599, 0.025273805, -0.003216133, 0.008380915, -0.0029695341, 0.004907836, -0.008277447, 0.0070703193, 0.011553937, -0.018293157, 0.035565432, -0.011340102, 0.0013321516, -0.019079516, -0.0104709705, 0.015934085, -0.017672349, 0.01332669, -0.02908143, 0.002560835, 0.022652613, 0.014885609, 0.0021073, -0.004828511, -0.013457749, -0.010374401, 0.020155584, -0.004014562, -0.010546847, -0.027053457, 0.034516953, -0.0039766235, -0.022583636, -0.03349607, 0.022569839, -0.005404483, -0.009139681, 0.003949032, 0.021038512, 0.008077409, 0.0041835597, 0.00736003, -0.020776393, -0.040145617, -0.009298332, 0.029329754, -0.0026418853, -0.033109788, -0.039897297]" 12550528,Microsoft aren't forcing Lenovo to block free operating systems,http://mjg59.dreamwidth.org/44694.html,367,1474480225,235,robin_reala,"[-0.01491829, -0.035793304, -0.012846673, -0.01370047, -0.029757157, 0.03473433, -0.03460196, -0.031080874, -0.02861876, -0.00780993, 0.021152997, -0.009312348, -0.015328642, -0.030471964, 0.02113976, -0.009610185, 0.016917102, -0.020398479, 0.0033738236, -0.0125885485, -0.010550024, 0.00575155, -0.0011466698, -0.015222745, -0.02571982, -0.01833348, 0.0050102687, -0.02034553, -0.0018184561, -0.01267459, 0.0075187124, 0.006439883, -0.028115747, -0.008683583, -0.022132548, 0.009027749, 0.017420115, -0.01626848, 0.014018162, -0.035502087, 0.009755794, 0.00053651904, 0.012667971, -0.0076113725, -0.0009886511, -0.02169572, 0.0027864242, -0.007267206, -0.0068436167, 0.028221644, 0.016387615, -0.018505562, -0.02800985, -0.013263644, -0.005761478, -0.003208359, -0.007968776, 0.014706495, 0.001456916, -0.020663222, -0.017711332, -0.018399665, -0.028168697, 0.0013352995, 0.0025216807, -0.005774715, -0.0058971588, -0.0034085712, 0.008193808, 0.008253375, 0.0021014006, 0.004712432, 0.02983658, 0.00028625378, 0.0259978, 0.0006341431, -0.0056655086, 0.022860592, 0.011708276, 0.00397446, 0.024779981, -0.034549013, -0.0019905393, 0.018915916, 0.023191521, 0.0070686485, -0.00472236, 0.01650675, 0.0008045717, -0.015858129, 0.001370047, 0.012661353, 0.024025463, 0.008676965, -0.01360781, 0.017870178, -0.0048712785, 0.028698184, 0.0026358513, -0.017367166, -0.006390244, 0.0021080193, 0.014719732, -0.022609085, -0.028036324, -0.018320242, -0.007783456, -0.01632143, 0.013568099, 0.0235754, 0.01501095, 0.032219272, -0.004649556, -0.02614341, 0.010126434, 0.008729913, 0.022079598, -0.02758626, -0.025547737, -0.024621135, -0.0006928831, 0.006850235, 0.022979727, -0.016281718, 0.022423765, -0.0061089536, -0.021113286, -0.019604247, 0.014971239, -0.016811205, 0.010655921, 0.0014809084, 0.02095444, 0.016811205, -0.012727538, 0.010814767, -0.040240996, 0.02675232, -0.02235758, -0.029545363, -0.01781723, 0.026765557, 0.019260082, 0.00050466706, 0.01730098, 0.017420115, 0.025508026, 0.0049176086, -0.0085114995, 0.0045138747, -0.0065689455, 0.007942301, 0.014891815, -0.0010614556, 0.009027749, 0.02333713, 0.00715469, 0.015977263, 0.019670434, -0.0065259244, 0.007479001, 0.0021775144, 0.0027202384, -0.047256693, 0.030419016, 0.040002726, 0.0062876553, -0.0085114995, -0.011569286, -0.015699282, -0.021245657, -0.013098179, -0.02431668, -0.002025287, 0.010960376, -0.004139925, 0.001982266, -0.018717358, -0.008193808, -0.0043086987, -0.026156647, 0.022463476, -0.0027003826, 0.0389967, -0.0032761993, 0.003564108, 0.009418246, 0.005341198, -0.0075451867, -0.013819605, 0.0141770085, 0.015580148, 0.004695886, 0.010828004, -0.65486926, -0.00794892, 0.015090373, -0.011291306, -0.00036733146, 0.006962751, -0.013978451, 0.0070157, -0.020994151, 0.04344439, -0.005668818, 0.008849048, -0.007975395, -0.0031190081, -0.013303355, -0.012926096, 0.0151697965, -0.009722701, 0.009987445, 0.012608404, -0.035793304, 0.011450152, -0.0055265184, 0.03362241, -0.00031769206, -0.0081077665, 0.009391772, -0.015791943, -0.027745107, 0.0025084435, -0.0037560468, -0.0017075948, -0.0024306753, -0.013257025, 0.045006376, 0.0028228264, -0.014415277, 0.023403315, -0.02076912, 0.043603238, -0.011761225, -0.0048282575, 0.047494963, -0.01412406, 0.0071480717, 0.011516337, 0.0011896905, 0.0012492578, -0.018307006, -0.017221557, -0.004960629, 0.001697667, 0.00397446, 0.024488764, 0.00021613816, -0.0042623687, 0.026381679, -0.016850917, 0.0150771355, 0.0010647648, -0.00011954819, 0.023350367, -0.008948326, -0.044635735, -0.008935089, 0.009795506, -0.014997713, -0.020173445, 0.008815954, 0.013462202, -0.0011168862, 0.009451339, -0.009325586, -0.013131272, 0.0031272813, 0.0072804433, 0.01014629, -0.037911255, -0.009894785, 0.0072274944, 0.03068376, -0.0031372092, -0.006234707, -0.010986851, 0.012085536, -0.023323892, -0.0330135, -0.003643531, 0.0007268033, 0.017420115, 0.030127797, -0.00039173747, -0.016625885, -0.01894239, -0.0027053466, -0.007982013, -0.012502506, 0.020080786, 0.017830467, -0.027956901, -0.0052055167, -0.0026921094, 0.008048199, 0.0035707264, 0.025587449, -0.002291685, 0.0057581686, 0.022053124, 0.018002551, -0.034443114, 0.0069693695, -0.0026490886, -0.026580237, 0.008471789, 0.007392959, -0.022198733, -0.00088275375, 0.019246845, 0.015911078, -0.032325167, 0.029148247, 0.014534412, 0.010821386, -0.011357492, 0.015738994, 0.015990501, -0.008928471, -0.029863054, -0.036825806, -0.012509125, -0.0005063217, -0.0031090803, 0.007267206, -0.023932802, 0.023495976, 0.0054967348, 0.009543999, 0.00898142, 0.021298606, -0.0033473491, -0.007472382, 0.0015322024, -0.011589142, 0.009874929, 0.02184133, -0.018929152, -0.01888944, 0.004407977, -0.002721893, 0.038175996, -0.00093073846, 7.7251294e-05, -0.002553119, 0.0052154446, 0.001982266, -0.0054504047, -0.0038851092, -0.023456264, 0.005069836, -0.032219272, -0.0035938914, 0.017181845, -0.00874315, -0.0065523987, -0.013508531, 0.00045544136, 0.020636747, 0.024700558, -0.022106074, -0.04558881, 0.018492326, -0.02965126, -0.012191433, 0.019948414, -0.0032480704, 0.033913627, -0.020186683, -0.017142134, -0.004831567, -0.02062351, 0.00089599093, 0.008140859, 0.006982607, -0.0076246094, 0.037196446, 0.008544593, 0.025918378, 0.0102985175, -0.014203483, 0.006836998, 0.021166233, -0.006251253, 0.005046671, 0.01790989, 0.0020269416, 0.021113286, 0.0048944433, 0.023787193, 0.01206568, 0.016334668, 0.018002551, -0.0133893965, 0.034178372, -0.012800342, -0.007843023, -0.0331194, -0.0017638528, -0.009894785, 0.017473064, 0.012754013, -0.002328087, -0.02618312, -0.011264831, -0.013164365, -0.0031372092, 0.00030859152, -0.012800342, 0.0025746294, -0.01613611, 0.01215834, 0.019643959, 0.006297583, 0.021642772, -0.009808742, -0.005691983, 0.03563446, 0.024171071, 0.044159196, 0.0040439554, -0.034549013, 0.008584305, 0.017565724, 0.0042954613, 0.016652359, -0.0069428952, -0.008392366, 0.0010018883, -0.017764281, 0.026063986, 0.0003050754, 0.014666784, 0.010748582, 0.033940103, -0.021814855, 0.007220876, 0.002563047, 0.02516386, -0.009947733, -0.01061621, 0.022291394, -0.026249306, 0.026805269, -0.016294956, -0.019299792, 0.02431668, -0.005837592, -0.0015470942, 0.010166146, 0.024859404, 0.029545363, 0.02562716, 0.016533224, 0.012356898, -0.0049639386, 0.016030213, -0.004298771, -0.01589784, -0.009133647, 0.017698096, 0.00045792334, -0.02595809, -0.017380403, 0.019008575, -0.012926096, 0.012939333, -0.007121597, 0.002665635, -0.022463476, -0.023297418, -0.006711245, -0.022291394, -0.043709133, 0.013237169, 0.021550111, 0.0016066615, -0.0144814635, -0.029360041, -0.0017886725, -0.0071414527, -0.015024187, -0.004196183, 0.013362923, 0.01716861, -0.0024290206, -0.012826817, 0.023773957, 0.023773957, -0.009246163, 0.026871454, 0.008769625, 0.009100554, -0.002839373, 0.002501825, -0.034919653, -0.0011615616, -0.010232332, -0.0024836238, -0.017459827, 0.009848454, -0.025666872, 0.01229733, 0.015672809, -0.003713026, -0.0005766442, 0.014560887, -0.002189097, -0.0137798935, -0.013098179, 0.03494613, 0.0023959277, 0.009431483, -0.010973614, -0.003904965, 0.010854479, 0.058720082, 0.009272637, 0.013415871, 0.0057680965, -0.017698096, 0.0024422577, -0.015884602, -0.024687322, 0.0165597, -0.012562074, -0.029730683, -0.0101065785, 0.015447777, 0.006949514, 0.023879854, -0.0026871455, 0.036349267, 0.016758256, -0.0021245657, -0.020146972, 0.004649556, 0.019233607, -0.013005519, -0.001690221, 0.035290293, 0.0037560468, -0.012343661, 0.013991688, 0.012899621, 0.0015239292, -0.017075948, 0.012211289, -0.025560975, 0.004007553, 0.00043517194, 0.0491099, 0.00959033, 0.04307375, 0.0021460762, 0.010947139, 0.010682396, 0.001912771, 0.00023744172, 0.020266106, 0.0008000214, -0.0072341133, 0.012078917, 0.013766657, -0.0059368704, -0.03020722, 0.011053037, -0.02230463, -0.014852104, -0.017512776, -0.016970051, 0.007823167, -0.0060990257, -0.01861146, -0.016016975, -0.029121773, -0.028724657, -0.009557236, 0.008809336, -0.014375566, -0.013806367, -0.0034151897, -0.017883416, -0.023734245, -0.025044724, 0.0012136829, -0.01992194, -0.010192621, -0.03338414, 0.007035556, -0.000486466, 0.0015967336, 0.0142829055, -0.0100006815, -0.018187871, -0.010179384, -0.010927283, -0.038705483, 0.011483245, -0.002716929, -0.015686046, 0.0142829055, -0.0022006794, -0.010655921, -0.0059236335, 0.011986257, 0.0007268033, 0.025243282, 0.027559787, -0.013581336, 0.007551805, 0.0057019107, 0.0015371663, -0.009795506, 0.0051029287, -0.009034368, 0.00032224235, -0.026527287, -0.0072274944, -0.018717358, 0.01753925, 0.00038801454, 0.01777752, 0.000591536, -0.0062545626, -0.03063081, 0.009696227, -0.0011243321, 0.007889353, -0.01056988, 0.007730507, 0.006297583, -0.0049407734, 0.007320155, 0.014891815, -0.03362241, 0.0066946982, -0.04246484, 0.020054312, 0.011470008, -0.0065821824, 0.019842517, -0.025521263, -0.018373191, -0.0051227845, -0.00029618168, -0.008815954, 0.008445314, -0.017089186, -0.02376072, -0.029889528, 0.002576284, -0.010060249, 0.020835305, -0.007902591, -0.007982013, -0.027109724, 0.00061594206, -0.00060766883, -0.01543454, -0.0009630041, -0.034310743, 0.004268987, 0.02867171, 0.006188377, 0.029015874, 0.0013261989, 0.0027897335, -0.015513962, -0.021020625, -0.025071198, -0.028962927, -0.0117943175, 0.019008575, 0.03605805, 0.028221644, 0.016387615, -0.005533137, 0.019008575, -0.0147726815, -0.0014718078, -0.009378535, 0.009371916, -0.019988125, -0.009947733, 0.014004925, 0.01197302, 0.037567087, 0.015818417, -0.012648115, -0.00020093609, 0.011754607, 0.009398391, 0.007889353, -0.011542812, -0.008935089, 0.0023909637, -0.003395334, 0.003385406, -0.011079511, -0.014044637, -0.016043449, 0.007009081, 0.011840648, 0.016294956, 0.017923128, 0.026619948, -0.039208494, 0.007604754, -0.006281037, 0.020027837, -0.022053124, -0.00654578, -0.010900809, 0.005490116, 0.020094024, 0.029942477, 0.016890628, -0.0068568536, 0.013018756, -0.013806367, 0.0020236322, -0.0049507013, -0.034813754, -0.012032587, -0.023416553, -0.02108681, -0.0005547201, -0.00944472, -0.012714301, -0.018267294, -0.0015404756, -0.023059148, 0.011072893, -0.010013918, -0.01412406, -0.018598223, -0.023509214, 0.040796958, 0.036693435, 0.02684498, 0.017658385, 0.022264918, 0.020967677, 0.022807643, -0.0013336448, 0.0024389485, 0.025124148, 0.02941299, -0.007598135, -0.024462288, 0.019617485, 0.0027533313, -0.017261269, -0.018254057, 0.010371322, 0.012667971, 0.013753419, -0.008054818, -0.00883581, -0.028883504, 0.017208321, -0.011450152, -0.023747481, -0.015235982, -0.0134820575, -0.035475615, 0.02529623, -0.006482904, 0.0063240575, 0.01796284, 0.016334668, 0.0129922815, -0.0042292755, 0.004278915, 0.009841835, 0.021470688, 0.03457549, -0.014110822, -0.016069924, -0.008412221, 0.0082136635, 0.0073400103, 0.008968182, -0.0075187124, 0.021775143, -0.0018581677, -0.024607899, -0.014838867, 0.012025968, 0.008471789, -0.0042458223, -0.0037064075, -0.0062016137, -0.016850917, -0.0024902425, 0.032245744, -0.014931527, -0.022847354, -0.0039810785, -0.001290624, -0.012303949, -0.030180747, -0.012760632, 0.01145677, -0.02455495, -0.033225294, 0.0042458223, 0.011714895, 0.021589823, 0.024157833, 0.0043285545, 0.014865342, 0.014507937, -0.001618244, 0.016189057, 0.02160306, 0.025428602, -0.022278156, 0.007909209, 0.004507256, -0.01206568, 0.012773869, -0.010927283, -0.02296649, -0.022238445, -0.00360051, 0.003994316, -0.021497164, 0.011655328, -0.0004517184, 0.029677734, 0.008782862, 0.0016116254, -0.008121003, 0.017102422, 0.016943578, 0.019935178, 0.0015553674, -0.020451427, -0.0050963103, -0.02282088, 0.004040646, 0.017248033, -0.043603238, -0.031372093, 0.012125247, -0.012641497, -0.01131778, -0.01922037, -0.033887155, 0.0037229538, -0.011377347, 0.031160297, 0.016970051, -0.0008893723, 0.006648368, 0.012025968, 0.015566912, 0.023562161, -0.023350367, -0.015566912, -0.020491138, -0.017287744, -0.041220546, -0.0069759884, -0.026712608, 0.025494788, 0.0069693695, -0.0016687107, -0.027851004, -0.014560887, -0.03216632, -0.010027156, -0.018346718, 0.010417652, 0.023390079, 0.001959101, 0.00813424, 0.023059148, -0.0020285961, 0.036349267, -0.021907516, 0.021060336, 0.014256432, 0.0033225296, -0.005635725, 0.009378535, -0.032219272, -0.024806455, 0.022106074, -0.002563047, 0.0154742515, 0.021616297, -0.00040104488, 0.00968299, 0.01211201, -0.00019193896, -0.015805181, 0.0075915167, 0.0024240566, -0.016705308, -4.4106662e-05, -0.021761907, 0.004609844, 0.017684858, -0.008432077, 0.009808742, -0.012548837, -0.008723294, -0.014785918, -0.014560887, 0.009226307, -0.002319814, 0.020385241, 0.023747481, -0.008021724, 0.01632143, -0.019273318, -0.0036600775, -0.0050764545, -0.00015346843, -0.021007387, -0.0012840055, 0.014110822, -0.013925502, -0.012615022, -0.014349092, -0.0027252024, -0.02492559, 0.011999494, -0.019021813, 0.006519306, -0.010047012, 0.026302256, 0.016228769, -0.0072605875, 0.0066086566, -0.002740094, -0.025666872, -0.011655328, -0.0059368704, 0.017075948, -0.0289894, 0.024766743, 0.028115747, -0.011774463, -0.0034052618, 0.024184309, 0.012522362, 0.008339417, 0.011542812, 0.23106803, -0.008663727, 0.0008070537, 0.022940015, 0.009716082, 0.0185188, 0.024104886, 0.0069428952, -0.003367205, -0.004652865, 0.0016745019, -0.009338823, -0.021020625, -0.009623422, -0.005662199, -0.02459466, -0.0021295296, -0.012025968, -0.0077966927, -0.030419016, 0.003517778, -0.0071348343, -0.01561986, -0.02352245, 0.026911166, 0.0076113725, 0.004844804, -0.026884692, 0.047865603, 0.00018862967, -0.02071617, 0.0014105858, 0.015368354, 0.011291306, -0.021616297, -0.0070223184, 0.03656106, 0.009186596, 0.031213246, 0.0011938273, -0.0023727627, -0.011311161, 0.013832842, -0.0195513, 0.0023578708, 0.0140314, 0.005602632, -0.034893177, -0.0060394583, 0.0048481133, -9.757242e-05, 0.011225119, 0.017790755, 0.041882403, -0.009358679, 0.017592197, 0.0010490457, -0.0070951227, -0.004404668, 0.021100048, -0.009431483, 0.006962751, 0.009477814, 0.015513962, -0.021351553, 0.016189057, -0.026474338, -0.00827985, 0.0064928317, 0.0027500219, 0.0057416223, -0.011304542, 0.021192709, 0.014018162, -0.027851004, -0.0081143845, 0.014335855, 0.049692333, 0.037593562, 0.007644465, -0.008021724, 0.001295588, -0.012826817, -0.014852104, -0.010113197, -0.0440533, 0.008445314, 0.016612647, -0.0069098026, -0.009874929, -0.0065490897, -0.033569463, -0.007604754, -0.002586212, -0.0019011885, 0.009709463, -0.0012773868, 0.01870412, -0.00050839, 0.006598729, -0.018492326, 0.0074922377, -0.02996895, 0.01809521, -0.017870178, 0.014322617, -0.009127028, 0.01464031, -0.0032993646, -0.006645059, -0.016387615, -0.011761225, 0.024488764, -0.008551211, 0.013660759, 0.0009390117, 0.008200427, 0.0010043703, 0.002417438, 0.014706495, -0.011377347, -0.030657284, -0.029545363, 0.023826905, 0.016480276, -0.013938739, -0.01595079, 0.0045999163, 0.0037494283, -0.018836493, -0.0023512521, 0.0075915167, -0.0030379305, 0.014004925, -0.018558512, -0.007935683, 0.004447689, -0.012330423, 0.0035343242, 0.017843705, 0.0052022077, 0.018214345, 0.011569286, 0.011708276, -0.025759531, -0.04813035, 0.011158934, 0.008140859, -0.010973614, -0.01875707, -0.044821057, 0.009464576, 0.013462202, -0.017089186, 0.02782453, -0.006870091, -0.03020722, -0.024793219, 0.015911078, 0.009034368, -0.042729583, 0.01626848, 0.018412903, -0.014931527, -0.021629535, -0.0036203659, -0.16954167, 0.019538062, 0.011913452, -0.033834204, 0.009517524, 0.015540437, -0.0052717025, 0.005976582, -0.021152997, 0.0052981772, 0.031266194, -0.003871872, -0.028089274, -0.007836404, -0.010781675, -0.0046429373, -0.011417058, 0.015262457, 0.048845157, 0.013687233, 0.046886053, -0.039870355, 0.035713885, 0.013541624, 0.0034449734, -0.004904371, -0.016850917, 0.018201107, -0.003123972, -0.016572936, 0.0014097586, 0.007412815, 0.009266019, 0.023562161, -0.008935089, -0.011218501, 0.026262544, -0.0011210227, -0.024568187, 0.011311161, 0.03081613, 0.02623607, 0.002043488, 0.018598223, 0.010920665, 0.027771581, 0.03484023, -0.00017818471, 0.009219688, -0.014335855, 0.02474027, -0.026275782, 0.005678746, 0.0020501066, 0.016281718, 0.028406966, -0.0041068317, 0.0025878667, 0.0051029287, -0.001126814, 0.024528475, -0.025428602, 0.0113905845, -0.028142223, -0.0012252654, 0.0055265184, 0.0018416212, 0.009418246, 0.0057217665, 0.0064795944, -0.007889353, -0.019511588, -0.0070157, -0.020094024, -0.0055364463, -0.0013055159, -0.02838049, 0.013230551, -0.017340692, -0.017737808, -0.013687233, 0.033463564, -0.007432671, 0.008855666, 0.015249219, 0.0034218084, 0.0032861272, 0.011668565, 0.013806367, -0.028565811, 0.010013918, 0.004619772, -0.012178196, -0.014256432, 0.016189057, 0.008081292, -0.011344254, 0.0071944017, -0.0061453558, -0.008200427, -0.009424864, -0.017698096, -0.0034582105, 0.013065087, 0.032960553, 0.0096035665, -0.0029287238, 0.0022139165, 0.014865342, 0.0042524408, -0.0059137056, 0.007823167, 0.0081143845, 0.026699372, -0.0019508279, 0.010490457, -0.010880954, -0.016440565, 0.018161396, -0.0028476461, 0.023270944, -0.02464761, -0.025825718, -0.00883581, 0.003531015, 0.00071232516, -0.105473764, 0.0042524408, 0.0033820968, -0.0050301244, 0.02080883, 0.022622323, -0.004388122, 0.019908702, 0.002558083, 0.024779981, -0.015791943, -0.018108448, -0.014203483, -0.022754693, 0.0010730381, -0.005761478, 0.0096035665, -0.014865342, -0.0023347058, 0.011714895, -0.024952065, -0.02800985, 0.00040849077, -0.0310544, -0.027347991, -0.001106131, -0.016281718, 0.0014842176, 0.02034553, -0.00036071287, -0.013806367, -0.018042263, 0.004321936, 0.001316271, 0.009563855, 0.015500725, -0.046118297, -0.0091071725, 0.025481552, 0.002834409, -0.0005551338, -0.008782862, 0.008901997, -0.0369317, 0.005920324, 0.005466951, -0.00813424, 0.02123242, -0.004361647, -0.006065933, -0.0165597, -0.002655707, -0.032219272, 0.003157065, 0.007942301, -0.007128216, 0.017261269, 0.0146800205, -0.00094149366, -0.012078917, 0.006850235, -0.030498438, -0.048845157, 0.0038784905, 6.432437e-05, 0.004811711, -0.03997625, 0.0027649137, 0.005109547, -0.003006492, -0.004110141, 0.03423132, 0.008319561, 0.034866706, -0.011026562, -0.011132459, -0.0056291064, -0.017314218, -0.0012484306, 0.014666784, 0.01141044, -0.009974207, 0.014256432, -0.021192709, -0.018479088, 0.0005543065, 0.01154943, 0.010457364, 0.0073400103, -0.045906503, 0.026831742, 0.020491138, 0.0009853418, 0.0024935517, -0.0024902425, 0.008405603, 0.001108613, -0.0059501077, 0.0027665684, 0.026858216, -0.012879766, -0.010543405, -0.07058059, 0.017631909, -0.018955627, -0.013978451, 0.009034368, -0.00771727, -0.0086041605, -0.005195589, -0.016175821, 0.016003737, -0.013362923, 0.016864154, 0.009769031, 0.002553119, -0.0082269, 0.0059236335, 0.008524737, -0.0068171425, 0.024250494, 0.014137297, -0.017261269, -0.025772769, 0.015116847, -0.010642684, 0.0115031, 0.019273318, -0.010192621, 0.0063108206, -0.01501095, -0.008266612, 0.00397446, -0.015699282, 2.4806766e-05, 0.01735393, -0.007929064, -0.013025375, 0.025124148, 0.030842604, 0.002212262, -0.002399237, -0.03473433, -0.024515238, 0.016361142, -0.0055165906, -0.026077224, 0.01922037, -0.03372831, 0.0015214472, 0.013568099, 0.010960376, 0.002604413, -0.0038520163, -0.015130085, -0.017790755, -0.0008662073, -0.026394917, 0.009762413, -0.012826817, 0.008418839, -0.0500365, 0.027559787, 0.009133647, 0.017049475, 0.0049473923, -0.017803993, 0.0006808869, -0.020848542, 0.019471876, 0.006936277, -0.030286644, -0.03616395, -0.0017175227, 0.0055563017, 0.020742644, 0.032854654, 0.03190158, -0.004050574, 0.005930252, -0.031822156, 0.008471789, 0.0071149785, -0.0034151897, -0.027162671, 0.018955627, 0.03155741, 0.02076912, 0.0108941905, -0.003057786, -0.008663727, 0.0046694116, -0.033039976, 0.006823761, -0.0033705144, 0.009769031, 0.0204779, 0.016215533, -0.00472236, 0.0165597, 0.016903866, 0.036746383, 0.029121773, -0.0011838994, 0.0052022077, -0.009014512, -0.019379215, -0.025653634, -0.012694445, -0.038414266, 0.0038851092, 0.024488764, 0.012528981, 0.021682484, -0.0091071725, 0.010900809, -0.012442939, 0.009557236, 0.0053246515, 0.014852104, -0.028354017, 0.05112195, -0.017155372, 0.0029733991, 0.021113286, -0.021920752, 0.01127145, 0.021656008, 0.0029287238, -0.021801619, 0.021576585, -0.011053037, -0.022979727, -0.0065788734, -0.010318373, -0.007042174, 0.0023032676, 0.0077238884, -0.0074922377, 0.025706584, -0.0013526733, 0.07333392, 0.020994151, -0.01127145, 0.009365297, 0.002328087, 0.0045204936, 0.021629535, 0.0075120935, -0.009570474, -0.016652359, 0.011516337, -0.0045767515, 7.0581e-05, -0.042729583, -0.02076912, 0.0009572128, -0.015024187, 0.010695633, -0.0063240575, -0.010166146, 0.030736707, -0.016771493, 0.017181845, -0.011463389, -0.0122907115, 0.0017737807, 0.012661353, -0.023840142, -0.016202295, -0.009656515, 0.013899028, 0.0034714476, -0.034628436, -0.0042954613, -0.0051790425, -0.0022668652, -0.0047355974, -0.006486213, 0.020451427, 0.012436321, 0.031266194, 0.02595809, -0.022741457, -0.022688508, -0.0035045405, 0.011258213, -0.016652359, -0.0075915167, 0.0067079356]" 448340, How to Choose Chart Types (pic),http://www.flickr.com/photos/amit-agarwal/3196386402/sizes/l/,143,1232827086,12,nickb,"[0.01885462, -0.0011348618, -0.00028915945, -0.032590218, -0.038915295, 0.0013961733, -0.02641255, -0.026600158, -0.036235176, -0.028409237, 0.019430846, -0.006345176, -0.009119097, 0.01125649, -0.0028828005, -0.001953135, 0.016737329, 0.004499246, 0.029615289, -0.022539781, -0.015678683, 0.021936756, 0.0019598354, -0.01724655, -0.006686891, 0.003722012, 0.0062580723, -0.019712258, -0.016147703, 0.009494313, 0.006294924, -0.00849597, -0.023786036, -0.0010619962, 0.0009212901, -0.0016172829, 0.003919671, -0.015678683, -0.0049582156, -0.02410765, 0.015142659, -0.001582944, -0.009635019, -0.0043317387, -0.0077991397, 0.010633362, 0.026613558, -0.019002028, -0.0047739577, 0.015705483, 0.028838055, -0.009112396, -0.018211393, -0.017152747, -0.00053016056, 0.009661821, -0.013105771, 0.0143520245, -0.0071961135, 0.0028694, -0.012542946, 0.022231568, -0.014177817, 0.01768877, -0.019028828, 0.021079117, 0.002623164, 0.007055407, -0.020074073, -0.019966869, 0.026801167, 0.037334025, -0.011537902, -0.001367697, 0.02483128, -0.007377021, -0.020851308, -0.018318597, -0.0047471565, 0.021186322, 0.0046198512, 0.008757281, -0.021534737, 0.026117736, 0.00643228, 0.012060525, 0.014727241, 0.028998863, -0.025447708, -0.0160673, 0.008174356, 0.020409089, 0.015973495, 0.029990505, 0.0048577115, 0.021065718, 0.024965286, 0.03358186, -0.0115044005, -0.021883152, -0.014338624, 0.029776096, -0.011457499, -0.017179549, -0.023812836, -0.016402313, 0.017018741, -0.032804627, 0.03149137, -0.014995253, -0.030874943, 0.019859664, 0.012455842, -0.06523404, 0.013139272, -0.022888197, 0.017112546, -0.03331385, 0.010539559, -0.008844385, 0.025420906, 0.015611679, 0.058265734, -0.026720762, -0.002229522, 0.008174356, -0.043953914, 0.011202888, -0.0060436632, -0.0067438437, 0.039156504, 0.02412105, 0.021333728, -0.012395539, -0.019122632, 0.012388839, -0.017192949, 0.010023637, -0.019806063, 0.0134742865, 0.011805914, 0.039638925, -0.016871335, -0.015383869, -0.003378622, 0.056604065, 0.019216437, -0.016603323, 0.027926816, -0.0006838485, 0.010291648, -0.016603323, 0.024335459, 0.009326806, 0.014767443, 0.016388914, 0.0035444542, -0.0012990191, -0.010465856, -0.024978688, 0.0020419138, 0.023022203, 0.02342422, 0.008790783, -0.0020536394, 0.022191366, 0.010137541, 0.013748999, -0.016831134, -0.0072564157, -0.024429264, 0.021842951, 0.0023333766, 0.014258221, 0.0064423303, 0.03406428, -0.0049481653, -0.030044109, -0.020114275, -0.014512831, -0.03261702, -0.009085596, 0.006137467, 0.046285614, -0.010090639, -0.016228106, -0.0058761556, -0.017755773, 0.010673565, 0.010171043, 0.010110741, 0.013976809, 0.006412179, -0.0060034613, -0.6805352, -0.019457648, 0.0030503077, -0.010439054, 0.007189413, 0.016429115, -0.013434085, 0.019270038, -0.0069750035, 0.004670103, 0.0008433992, 0.006050363, -0.003308269, -0.021735746, -0.006643339, -0.008442367, -0.005376984, -0.036395986, -0.0068744994, -0.008991792, -0.005765601, 0.011109084, -0.008174356, -0.00482086, 0.020060673, 0.01334028, -0.0028626996, -0.026372349, -0.0061542178, 0.012556346, -0.017393958, 0.008227958, 0.0134742865, -0.0069214012, 0.02249958, -0.003886169, -0.025219899, 0.006047013, -0.0021038917, 0.038700886, -0.025179695, -0.024013845, 0.024442663, 0.0027822962, 0.0050118184, 0.015759086, 0.013668595, 0.018063987, 0.029534886, 0.0040302253, -0.0033920226, -0.00872378, 0.0055913934, -0.0052965805, -0.012254833, -0.0006344339, 0.0367444, -0.00050670956, 0.00849597, 0.014807644, -0.013286678, 0.022472778, -0.033876676, -0.020141076, -0.040523365, -0.0054942393, -0.010586461, 0.010841072, 0.02483128, 0.007758938, 0.015343668, 0.011390496, -0.0064892326, -0.0017152746, -0.009300005, -0.0038258666, 0.0033266947, 0.0038057656, -0.031357367, 0.0044221925, 0.013166073, 0.021239925, 0.005581343, -0.014432428, 0.015437472, -0.01864021, -0.028596845, 0.019229837, 0.0013157697, 0.01975246, 0.0033501459, -0.010988479, 0.0018760817, -0.009862829, -0.008422267, 0.000287275, 0.005554542, 0.002113942, 0.0055009397, -0.018533006, 0.0046935542, -0.024415864, 0.015357069, -0.009018593, 0.008643377, 0.020355485, -0.0100437375, 0.01677753, 0.0007186063, -0.002780621, -0.006797446, 0.0049113138, -0.004653353, 0.004784008, 0.0057756514, -0.028382435, -0.008181056, 0.0082212575, 0.006827597, -0.011893018, 0.016469317, 0.0040536765, 0.005162575, 0.009702022, 0.017139345, 0.019511249, 0.0018844571, -0.009072195, -0.035699155, -0.00064406556, -0.022392375, -0.007082208, 0.034814715, -0.017072342, -0.0037622137, 0.0058862064, 0.007772338, -0.018305197, 0.011330193, 0.0036349082, -0.029615289, -0.00068301096, -0.002663366, -0.020234881, -0.032027394, -0.007939845, -0.0028811253, -0.0009238027, -0.005990061, 0.009045394, -0.006177669, -0.011403897, -0.0021055667, 0.021052316, 0.013052168, -0.021440933, -0.02181615, -0.022352172, 0.0042915368, -0.027149582, 0.0027504698, 0.016844533, -0.03374267, 0.023987044, -0.0072296145, -0.006753894, -0.009494313, 0.017648568, -0.01767537, -0.036851604, 0.0086567765, 0.0069884043, -0.008114053, 0.02020808, -0.0078058396, -0.0030436076, -0.0073703206, -0.007470825, -0.0026248393, -0.024389062, -0.006914701, 0.008368664, 0.010881274, -0.0015285041, 0.01331348, 0.0016239831, -0.0033518209, 0.001308232, 0.0012537921, 0.018278396, 0.0025142843, -0.007490926, -0.0030938596, 0.008676877, 0.01586629, -0.0004757207, 0.004113979, 0.0073234187, 0.00029732543, 0.0060336124, 0.0206905, -0.0093871085, 0.04341789, -0.014325224, -0.007839342, -0.037977252, 0.008000148, -0.03100895, 0.024683874, 0.0105529595, 0.004867762, -0.0059130075, -0.0006248022, -0.008790783, 0.01287126, 0.0020469392, 0.018171191, 0.0012035399, -0.0032596919, 0.006713692, -0.0069750035, -0.00054900517, 0.007718736, -0.0015184536, -0.009708723, 0.013608293, 0.004201083, 0.025166295, 0.010774069, -0.032483015, -0.007598131, -0.007698635, 0.023812836, 0.034814715, 0.029508084, 0.006412179, 0.010050437, -0.029347278, 0.028382435, 0.0019028828, -0.0070018047, 0.008556273, 0.019966869, 0.0041005784, 0.025782723, 0.025755921, 0.019672057, 0.009514414, -0.011779113, 0.008663477, -0.0023568275, 0.0034875018, 0.005993411, 0.009306706, -0.017594965, -0.0017571514, 0.004851011, 0.0027923465, 0.00504867, 0.016737329, 0.026600158, 0.012462542, -0.0016097451, -0.009206201, 0.005557892, -0.0062815235, 0.0046031005, 0.0062647727, -0.023759235, -0.02136053, -0.019015428, -0.021105919, 0.008026949, -0.019243238, 0.0070152055, 0.02115952, 0.027149582, -0.009842728, 0.0008584749, 0.023571625, -0.0088711865, -0.02204396, 0.018063987, 0.021923354, -0.007544528, -0.010941576, -0.0021323678, 0.03559195, 0.00034653072, 0.032215003, -0.0020787655, 0.039665725, -0.006291574, -0.0050252187, -0.014767443, -0.02827523, 0.012737255, -0.021936756, 0.020422488, 0.0016826107, -0.014512831, -0.010217945, -0.01009734, -0.020167878, 0.026600158, 0.0055645923, 0.0018894823, -0.028168026, -0.0036416084, -0.018251594, -0.018961824, -0.011423998, -0.013233076, -0.012207932, -0.007517727, -0.011899718, 0.013166073, 0.006234621, 0.021909954, 0.0002506328, 0.0101174405, -0.021829551, -0.0027722458, 9.9614495e-05, 0.0643228, 0.004663403, 0.009031993, 0.0015603304, -0.025648717, -0.016147703, -0.0015913192, -0.02501889, 0.015357069, -0.008650077, 0.008616575, -0.015584879, -0.001067859, -0.009434011, 0.021293527, 0.011397196, -0.012013623, -0.010720466, -0.003422174, -0.011450798, 0.0009531165, -0.0026365647, 0.023008801, 0.0206503, 0.0023534775, 0.006016862, 0.023437621, 0.012931563, -0.0011423997, -0.022660386, 0.00024560757, -5.166553e-05, 0.0061877193, 0.030365722, -0.009708723, 0.044757947, -0.011511101, 0.011859517, 0.012496044, 0.0050017675, -0.004643302, 0.025394106, 0.002180945, 0.0040101246, 0.016053898, -0.024027245, -0.028355634, 0.033715867, -0.005785702, -0.01586629, -0.00025482048, 0.0057488503, -0.018760817, -0.014888048, 0.020851308, -0.016455917, 0.0042647356, -0.0067002918, -0.022660386, -0.044409532, -0.0032529917, -0.011698709, 0.014780844, 0.015022054, -0.002706918, -0.01929684, -0.031384166, -0.011055482, -0.026988775, 0.010030337, -0.0023317016, -0.010727167, -0.01931024, -0.006164268, 0.034546703, -0.006499283, 0.028650448, 0.0014279997, -0.00049372774, 0.010660164, 0.0035243535, -0.014365425, 4.1013114e-05, -0.022995401, -0.009936533, 0.015933294, -0.002735394, -0.0020419138, 0.0034942022, 0.023772635, 0.0015804312, 0.014847847, 0.014110814, -0.015732285, 0.0057488503, 0.0146468375, 0.013527889, 0.018023785, 0.0024975338, -0.005996761, -0.009233002, -0.025353903, 0.007772338, -0.0070688077, 0.020020472, -0.011604905, 0.036690798, -0.0010837722, -0.015785888, 0.0076115313, -0.015089056, -0.007993448, -0.006824247, -0.014539633, 0.02231197, 0.017286753, 0.008140855, 0.0068946, 0.0062580723, 0.013963408, -0.003701911, -0.028998863, 0.0004413817, 0.029963704, -0.014285021, 0.029963704, -0.0032278656, -0.020556495, -0.024657072, -0.0057388, -0.0028409236, 0.0113569945, 0.0048610615, -0.0050386195, -0.014633437, -0.0016901486, -0.02894526, 0.016429115, -0.0072564157, 0.00015232695, 0.008053751, -0.00964842, -0.000113381495, 0.0059632594, -0.01630851, -0.034037482, -0.0057019484, -0.011812614, 0.010164343, 0.018801019, -0.0057622506, -0.021320328, -0.013286678, -0.020744102, -0.013501088, -0.028221628, 0.0034037482, 0.012556346, 0.013494387, 0.006472482, 0.026010532, 0.010365351, 0.00848927, 0.01909583, -0.0033652214, -0.008757281, 0.007886243, 0.0075378283, -0.027980419, 0.0021960207, 0.02204396, 0.0160807, 0.0015586553, -0.011176086, 0.021534737, 0.026318746, -0.0050252187, -0.007785739, -0.006134117, -0.02552811, 0.00367511, -0.0029665541, -0.014378826, 0.02000707, -0.019712258, -0.01743416, 0.0026281895, 0.00096149184, 0.015611679, -0.01998027, 0.028007219, -0.010157642, -0.004201083, -0.0030268568, 0.00849597, -0.0113569945, -0.014097414, -0.009501014, 0.012804258, 0.0019213086, 0.0044255424, 0.013675295, -0.009789126, 0.014606636, -0.0073100184, -0.01885462, -0.0115781035, -0.007216214, 0.017715571, -0.008375364, -0.031571776, 0.013950007, -0.010666864, -0.012449142, 0.025675518, 0.009628319, -0.012663552, 0.032777827, -0.016134303, -0.016630124, -0.005711999, 0.009554616, 0.024188053, 0.02046269, 0.017152747, 0.00964172, 0.008770682, 0.008482569, -0.022606784, 4.983342e-05, -0.002343427, 0.026921771, 0.016683726, -0.002663366, -0.02595693, 0.0028694, 0.009943233, 0.00018802694, -0.04065737, 0.027310388, 0.03513633, 0.026573356, -0.005263079, -0.0071090097, -0.0013090695, 0.028087623, 0.0014857897, 0.028757652, -0.0035545048, -0.01583949, -0.018546408, 0.050091382, -0.01815779, 0.0010611587, -0.0009681921, 0.003561205, -0.007671834, -0.017273352, 0.0037119617, 0.020529693, 0.009112396, 0.03631558, 0.008087252, -0.021574939, 0.0011155986, 0.004991717, -0.037548434, 0.009045394, -0.006023562, 0.02205736, -0.014177817, -0.011537902, 0.0118729165, -0.017085744, 0.002113942, -4.949317e-05, 0.00035804685, -0.013581491, -0.022713989, -0.016375514, 0.025327103, -0.0032010644, -0.022687187, -0.00085344963, -0.0076182317, -0.0020268383, -0.018693814, -0.022982001, 0.0061274166, -0.026144538, -0.006643339, -0.025648717, -0.0007872843, -0.0023802787, 0.0028995513, -0.0043987413, 0.0027052427, 0.0074775256, -0.013608293, 0.013052168, -0.0043350887, 0.022124363, -0.030365722, 0.0154508725, 0.0031072602, -0.013427384, 0.010150942, -0.0014991902, 0.0004376128, -0.05443317, 0.018479405, 0.014874647, -0.0060135117, -0.010358651, 0.0007479201, 0.016603323, 0.023518024, 0.0018308547, -0.022874795, 0.0038928695, -0.010184444, -0.0019631854, 0.013199574, -0.00071358104, 0.024683874, 0.010928175, 0.027270187, 0.018224793, 0.0069951047, -0.0298565, -0.0129650645, -0.012824358, -0.018613411, -0.030499728, -0.0077321366, -0.009661821, -0.006827597, 0.014298422, -0.010727167, -0.015772486, 0.0023735783, 0.025943529, -0.005631595, 0.017045543, -0.021333728, -0.0047706077, -0.008328463, -0.029454483, -0.0075512286, 0.0010628338, -0.018479405, 0.025769321, -0.012951664, -0.03406428, -0.033608664, -0.0058426545, -0.026600158, -0.0050151683, 0.011638407, 0.0020620148, 0.009105696, 0.007055407, 0.013702096, 0.030982148, -0.008428967, 0.015035454, -0.025849726, 0.003514303, 0.0011641757, 0.009896331, 0.011973421, 0.0077053355, -0.003976623, -0.03628878, 0.012006923, 0.009963334, 0.007899644, 0.01679093, 0.012509445, -0.017085744, -0.009447412, 0.0068878997, -0.0036684098, 0.013883004, 0.011048781, -0.03127696, 0.019136032, -0.0040704273, 0.005557892, -0.0160941, 0.0016248208, -0.02436226, -0.0115781035, -0.004740456, 0.0071291104, -0.021213124, -0.0028995513, -0.007417223, 0.0006155893, -0.01767537, -0.015611679, 0.018814418, -0.033635464, -0.018291796, 0.0021708945, 0.007149211, -0.012656851, -0.006271473, 0.00942061, -0.009326806, 0.023236612, -0.0057287496, 0.01103538, -0.0052798297, 0.020047273, -0.0034070984, -0.0026131137, -0.010177743, 0.011993522, -0.0023869788, 0.0012797557, -0.003425524, 0.008851085, -0.009588118, -0.014579834, -0.030714137, -0.0031826384, -0.0052798297, 0.0032446163, 0.024992088, -0.014419028, 0.0126769515, -0.0040938784, -0.021467734, 0.0054506874, 0.017970182, 0.19714938, 0.0047739577, -0.0007889593, 0.032268606, -0.0117255105, 0.013588192, 0.015249864, -0.0027672204, -0.004961566, 0.0035210033, -0.0024673825, 0.02365203, -0.012194531, -0.00075587665, 0.012509445, -0.016161103, -0.041005787, -0.027310388, -0.03465391, -0.021440933, 0.016670326, -0.0015536301, -0.0002887407, 0.001996687, 0.044275526, 0.012489344, -0.02457667, 0.029293675, 0.03792365, 0.020275082, 0.006968303, -0.022352172, 0.021025516, 0.0066265883, -0.018894823, -0.010673565, 0.007189413, -0.013413984, 0.009494313, 0.018935025, -0.015491074, 0.007980048, -0.020234881, -0.015115858, -0.024456065, 0.032483015, -0.0016549721, -0.0038995699, 0.007631632, 0.0076919347, -0.027739208, -0.0081475545, -0.00011620818, 0.023035603, -0.004636602, -0.011062182, -0.015799288, -0.014888048, -0.0051324232, -0.0015100782, 0.017072342, 0.028784454, -0.016442515, 0.021293527, -0.03264382, 0.022633586, -0.012462542, 0.03537754, 0.02046269, 0.004569599, 0.011176086, -0.0050285687, -0.01170541, 0.008388765, 0.0114776, -0.01952465, 0.02552811, 0.014285021, 0.010171043, -0.00063694647, -0.0036885105, -0.005681847, -0.03192019, 0.0068175467, -0.020395689, -0.038861692, 0.02642595, 0.009608218, -0.0092397025, -0.020087475, -0.01195332, -0.022084162, -0.012335237, -0.012422341, 0.009360308, 0.01516946, -0.017085744, 0.03146457, -0.02733719, 0.019457648, -0.03355506, 0.039370913, 0.011202888, 0.024978688, -0.029990505, -0.0030218316, -0.010787469, 0.026827969, -0.0010192819, -0.030580131, 0.0058292537, -0.018559808, 0.009259803, -0.016723927, 0.012388839, 0.0077790385, -0.015343668, -0.01904223, 0.03559195, -0.026653761, -0.0112832915, -0.010914776, 0.021467734, -0.0065093334, 0.0006210333, -0.019698858, -0.027658803, 0.0015368795, 0.014780844, -0.02964209, 0.03929051, 0.007162612, -0.0021323678, 0.019189635, -0.0057052984, -0.0034774514, 0.012898061, -0.0053803343, -0.01033185, 0.014955051, -0.00057957525, 0.0008886262, 0.014847847, 0.014713841, -0.017836176, -0.017367156, 0.02437566, -0.0068175467, -0.026077535, 0.0015996946, -0.022660386, -0.013407283, 0.006824247, 0.0160673, 0.025193097, -0.01652292, -0.018211393, -0.025554912, -0.011524501, 0.018680412, -0.024536468, 0.007021906, 0.035484746, -0.020757504, -0.015249864, 0.0040938784, -0.17399317, 0.019953469, 0.016120901, -0.014539633, 0.035752755, 0.010619963, 0.049474955, 0.03331385, -0.00020383543, -0.0028358984, -0.017621767, 0.011095683, -0.024764279, -0.012596549, 0.017836176, -0.019605054, -0.009152599, -0.0005443987, 0.013601592, 0.0160673, 0.018868022, -0.014405627, 0.019216437, -0.02161514, 0.0055243904, 0.017393958, -0.00941391, 0.005487539, 0.0013283328, -0.013360381, -0.0046332516, -0.006854398, 0.0115781035, 0.01032515, 0.016482718, -0.014579834, 0.024697276, 0.0013559716, -0.012770756, 0.02113272, -0.0040838276, 0.0068342974, 0.0026013881, 0.02044929, 0.0126769515, 0.023142807, 0.012080626, 0.0039598723, 0.0032245154, -0.0073167183, 0.014110814, -0.052315876, -0.0015251539, -0.0160941, 0.002708593, 0.002802397, -0.019873066, 0.015249864, 0.025688918, -0.008696979, 0.010278247, -0.022017159, -0.006244672, -0.01630851, 0.0006109828, -0.029481282, -0.033019036, 0.029320477, 0.0032245154, -0.0023769285, 0.008683578, -0.040523365, 0.019363843, -0.005078821, 0.008763981, -0.003514303, -0.029240074, -0.026144538, 0.005303281, -0.0024975338, -0.0035042525, 0.015517876, -0.006291574, 0.004442293, 0.009139198, 0.007966647, -0.014110814, 0.006727093, -0.0063049747, -0.020100875, 0.019806063, -0.018894823, -0.018305197, -0.007993448, 0.029990505, 0.015196262, -0.002159169, -0.01630851, -0.0031374115, -0.012583148, 0.014874647, -0.0021759197, -0.020757504, 0.009802527, 0.059016168, -0.010760669, -0.0028727502, 0.020556495, 0.045615587, -0.02024828, -0.018452603, 0.021923354, 0.0017889779, 0.0009372033, 0.0104792565, 0.00482756, 0.0005657559, -0.039236907, 0.01424482, 0.013454186, 0.023625229, -0.005474138, -0.009581417, 0.020476092, -0.013407283, -0.021869753, -0.090212725, -0.008710379, 0.021909954, 0.012033724, 0.0006909676, 0.03926371, 0.00735022, 0.009340206, -0.02020808, 0.02115952, -0.0033116192, -0.019350443, -0.0010745593, -0.004653353, -0.0030402574, 0.010774069, 0.016469317, -0.0114776, -0.029829698, 0.015263264, 0.0045595486, -0.005219527, 0.0036617094, -0.0075780298, -0.0050151683, -0.012569747, -0.020931711, 0.007082208, 0.019229837, -0.015357069, -0.016120901, -0.021293527, -0.00872378, -0.0413274, 0.0062614228, -0.0016415714, -0.01241564, -0.026466152, 0.032000594, -0.020837907, -0.0026064136, -0.020489492, -0.0022445978, -0.024080848, 0.02574252, 0.0005008468, -0.017568165, 0.0023518023, 0.015946694, -0.025635315, -0.006365277, -0.0027605202, -0.049260546, -0.00103352, 0.028757652, -0.022807794, 0.018224793, 0.013614993, -0.0050185183, 0.004871112, 0.0007198626, -0.003242941, 0.006616538, 0.0016851233, 0.00965512, 0.011812614, 0.0046466524, 0.0011717135, 0.001226991, -0.040603768, 0.015678683, 0.025595114, -0.028007219, 0.020569896, -0.005490889, 0.0056483457, -0.004187682, -0.011759012, -0.00011495188, -0.0096752215, -0.020757504, -0.01102868, -0.0053903847, 0.009259803, 0.009139198, 0.0012169405, 0.031786185, 0.0040134746, -0.018492805, -0.031839784, 0.003167563, 0.030151313, 0.006516034, -0.0031374115, -0.022392375, -0.013078969, -0.005420536, -0.00023032252, 0.033823073, 0.013206275, -0.0010377077, 0.014955051, -0.060999457, 0.010660164, -0.0053133313, -0.0298565, 0.0067237425, -5.9936203e-05, 0.0034640508, -0.0060034613, -0.0007554579, 0.009588118, -0.02228517, 0.0034875018, -0.014861247, -0.01858661, -0.0183722, 0.020047273, 0.044007517, -0.009206201, 0.030526528, 0.016174505, -0.020288482, 0.007544528, 0.020931711, 0.00804035, -0.01563848, 0.011665207, -0.012884661, 0.008797483, -0.024322059, 0.0038694185, 0.011913119, -0.0183722, 0.0007868655, 0.0049515157, -0.029910102, -0.0067170425, -0.003144112, 0.016268307, -0.0021022165, 0.004867762, -0.016228106, -0.029427681, 0.015464273, -0.01583949, -0.012154329, 0.014231419, -0.037119616, 0.0062614228, 0.034332294, -0.002596363, 0.031518172, 0.010673565, -0.030419324, 0.0066232383, -0.02020808, -0.028650448, 0.014794244, -0.02134713, -0.004753857, -0.022982001, 0.036610395, 0.0050888713, 0.010653464, -0.012797557, 0.01240894, 0.010244746, 0.0055712927, 0.031866588, 0.00849597, -0.044275526, -0.023075804, 0.008924789, -0.0022412476, -0.0028509742, 0.014298422, 0.011129185, -0.020864708, 0.00871708, -0.026010532, 0.002616464, 0.017996984, -0.00964842, -0.019457648, 0.022633586, 0.0058158534, 0.017581565, 0.0002135718, 0.004177632, 0.00333507, 0.0047036046, -0.021521337, 0.0039833235, -0.012683652, 0.0014874648, 0.009105696, 4.2164727e-05, 0.01562508, -0.012784157, 0.0252735, 0.009045394, 0.00040934596, 0.0058761556, -0.0026047383, -0.00941391, -0.020717302, -0.00021336241, -0.007444024, -0.06544845, -0.0069281016, 0.0075713294, -0.0068878997, 0.0206771, 0.004807459, 0.015022054, -0.0013970108, 0.021105919, 0.007879543, 0.0059599094, -0.023705631, 0.0066768406, -0.005611494, 0.010867873, 0.0052295774, -0.0067471936, 0.024911685, -0.001275568, 0.012362038, 0.004180982, 0.012248133, -0.009775725, -0.009789126, 0.0025695618, -0.016469317, -0.018251594, -0.01929684, -0.027766008, -0.003973273, 0.003427199, -0.021950155, 0.06566286, -0.004784008, -0.0074105226, 0.024523068, 0.011531202, 0.0015938319, 0.008770682, 0.001364347, -0.018184591, 0.0052094767, 0.019430846, 0.00018300171, 0.026238343, -0.00076550833, -0.004231234, 0.011276591, -0.016576521, 0.012998566, 0.0034154737, -0.021400731, 0.017742373, -0.005601444, 0.0053903847, -0.013065569, -0.0206503, 0.0068946, 0.022888197, -0.013735598, -0.013681996, -0.025380705, -0.007953246, -0.008174356, -0.033153042, -0.01748776, 0.009226302, -0.0038995699, -0.003051983, -0.009119097, 0.023973644, 0.014955051, -0.009568016, -0.0026767666, -0.023960244, -0.010057137, 0.0036818103, -0.0138428025, 0.0012219656, -0.0027203185, -0.012938263]" 6766031,Weak passwords brute forced,https://github.com/blog/1698-weak-passwords-brute-forced,203,1384916178,143,olefoo,"[0.00022313803, 0.01203194, 0.012854879, -0.016175013, 0.013890647, 0.0075270566, -0.027156996, 0.021836268, -0.024106445, -0.046737276, 0.039075427, 0.011173529, -0.03087441, -0.028348839, -0.01218092, 0.003781264, 0.0038947728, -0.025099648, -0.00820811, 0.0007081002, -0.011138057, 0.002885608, 0.0063564964, -0.014302117, -0.026561074, -0.003359153, 0.021169404, -0.032747306, 0.0018179154, -0.025440173, 0.029015703, 0.0011856356, -0.030562261, 0.0007586471, -0.023326071, -0.01442272, -0.01315284, -0.009151652, 0.018402625, 0.017693194, 0.003919603, 0.022801092, 0.009385764, -0.004948277, -0.03842275, 0.023893615, -0.0013736346, -0.013486272, -0.016870255, 0.026319867, -0.0067608715, 0.026859034, -0.00095773104, -0.024191577, 0.016430408, -0.005409407, 9.1228314e-05, 0.014131853, 0.0005010352, 0.010634362, 0.0077895457, 0.0006783928, -0.028987326, 0.005281709, -0.00774698, 0.0066402685, -0.00922969, 0.02099914, -0.00084732595, -0.010109383, 0.027156996, -0.007676037, 0.03118656, -0.010279646, 0.023084864, 0.0012973709, -0.030335244, -0.02282947, 0.00723619, -0.011677224, 0.014153136, -0.005065333, 0.01218092, 0.004593562, -0.009045238, 0.005249785, 0.01599056, 0.01712565, -0.023553088, 0.006069177, 0.007143964, 0.005625783, 0.038649768, 0.022645019, -0.017991155, 0.021084271, 0.004153715, 0.012996765, 0.010322212, -0.042253673, -0.0031817954, 0.0023269316, -0.005306539, -0.01284069, -0.009215501, 0.00058616686, 0.042111788, -0.0041856393, -0.0023482146, 0.02660364, -0.013826799, 0.022361247, 0.0011075982, -0.02507127, 0.005224955, -0.023127431, 0.0021513477, -0.0056435186, 0.013010954, -0.019339072, 0.028831251, 0.011308321, 0.025241533, -0.007817923, -0.014585889, 0.023198374, -0.02070118, 0.0016600671, -0.010762059, -0.017281724, 0.007005625, -0.01823236, 0.010109383, 0.007867583, -0.013096085, 0.0128690675, 0.007874677, 0.0077611683, -0.0113721695, -0.009548933, -0.0011209, 0.015195999, -0.02761103, 0.0025291194, -0.023921993, 0.008215204, 0.0047744666, -0.006470005, 0.03697551, 0.033087835, -0.0050334088, 0.004575826, -0.005519368, 0.013344386, 0.0062855533, 0.01289035, -0.0071120397, 0.010868474, -0.0342513, -0.011620469, -0.0031232673, 0.0007679584, -0.023765918, 0.007988187, 0.03098792, 0.028703554, -0.002626666, -0.026135415, 0.007002078, -0.010457004, 0.009974591, 0.015749354, -0.02447535, 0.012684615, -0.0040082815, 0.019934993, -0.0005174408, -0.0012805219, -0.049404733, 0.012975482, -0.012847784, 0.003174701, 0.017054707, 0.03691876, -0.0075909053, -0.008711806, 0.021368043, 0.018828282, -0.016359465, -0.005675443, 0.01599056, 0.022645019, -0.012152542, 0.012613673, -0.6302012, -0.019807296, -0.017508741, -0.022971356, 0.019026924, -0.0028767402, 0.019239752, 0.025511118, -0.0059201964, 0.010414438, -0.007498679, 0.016955387, 0.004437487, -0.021382231, -0.02221936, -0.046254862, 0.009811422, -0.014252457, 0.011684319, 0.016472973, -0.036209326, 0.00916584, -0.01203194, -0.010052629, 0.01498317, -0.0028501365, 0.0030062112, -0.0058208765, -0.018530322, 0.018572887, -0.036947135, 0.03345674, 0.0019686692, 0.009023954, 0.044410344, -0.00932901, -0.0055441987, 0.016955387, -0.006345855, 0.050085787, -0.011535338, -0.007005625, 0.012847784, 0.008420939, 0.0008788069, -0.00083978823, 0.031356823, -0.0064522694, -0.022971356, -0.0011200132, -0.007002078, -0.011379263, 0.012209297, 0.010705304, -0.010393155, -0.009258066, 0.031612217, 0.0070552854, 0.0019686692, 0.0048702396, -0.008115884, 0.026745526, -0.039075427, -0.011655942, -0.009399952, 0.016118258, -0.0032279084, -0.01650135, -0.002878514, 0.022715962, 0.023028111, -0.00017480808, 0.0013080123, -0.015919618, 0.02210585, 0.036209326, 0.018530322, 0.008052035, -0.00165652, 0.0023659503, 0.0050085788, -0.013131556, 0.030363621, -0.023723353, 0.025553683, 0.017608061, -0.026546884, -0.014912227, 0.019807296, -0.01228024, 0.011897148, 0.024844252, -0.02436184, -0.023127431, 0.020346463, 0.020403218, -0.0050511444, 0.0108897565, 0.014060911, -0.025454363, -0.011329603, -0.004441034, 0.008974294, 0.016572295, 0.011251566, 0.031385202, -0.024730744, 0.005625783, 0.022091663, -0.031640597, -0.022049097, -0.0039586215, -0.0075057736, 0.008052035, 0.0059379325, -0.030278489, -0.007370982, 0.0016698218, 0.013443706, -0.030023094, 0.014968981, -0.0011723337, -0.01040025, -0.022460567, 0.023907805, -0.002250668, -0.0069737006, -0.014529134, -0.010655644, 0.008279053, 0.03252029, 0.010605984, -0.005934385, 0.0067147585, 0.019835673, 0.01305352, 0.014018345, -0.016387843, 0.010754964, -0.017423611, 0.0009067407, 0.013791326, 0.01672837, 0.01559328, -0.019296506, -0.032548666, -0.016870255, -0.018473567, 0.01325216, -0.0038663957, 0.002426252, 0.009655348, -0.020445785, 0.022701772, 0.020672802, 0.0076263766, -0.01814723, -0.04537517, -0.006931135, -0.025624625, -0.0161892, 0.01672837, -0.027667785, -0.010371872, -0.030278489, 0.009336104, -0.024773309, 0.01966541, -0.027582653, -0.024631424, 0.013720384, -0.00066775136, 0.0021814986, -0.009719197, -0.0018108211, 0.008974294, 0.002254215, -0.014444003, -0.01298967, 0.000572865, 0.017906023, 0.010109383, -0.015238564, -0.010229986, 0.014798718, 0.019651221, 0.025198968, 0.013635252, -0.0034389638, 0.00038974333, -0.030505506, 0.015252753, -0.01018742, 0.015281131, -0.027809672, 0.030108226, -0.015451394, -0.0004207809, -0.009300632, 0.035102617, 0.029086646, 0.007959809, 0.004082772, 0.0029388154, -0.0015368036, -0.03169735, -0.014827095, -0.0190553, 0.02599353, 0.0037706224, 0.027171183, -0.008491882, -0.027540088, -0.005295898, 0.02089982, -0.0031587388, -0.016685802, 0.019041112, -0.024759121, 0.0019722164, 0.014614266, 0.011379263, 0.0089672, -0.017182404, 0.026348244, 0.02996634, 0.005494538, 0.035528272, -0.0048489566, -0.030505506, 6.728504e-05, 0.030959543, 0.008846597, -0.010911039, 0.03198112, -4.2344127e-05, 0.0025184778, -0.014188608, 0.025255721, 0.0024422142, 0.015735166, 0.008236486, -0.0015855769, -0.022971356, 0.01386227, -0.023127431, 0.04361578, 0.02058767, -0.030562261, 0.002568138, -0.023141619, -0.0018604812, -0.00073470385, -8.4688254e-05, 0.026149604, -0.0020520275, 0.0038451126, -0.0007307133, 0.007321322, 0.021070082, 0.012478881, 0.012273146, -0.0016068598, 0.0006868173, -0.020616047, 0.0029973434, -0.00450843, -0.021467363, -0.011315415, -0.00601597, 0.013507554, -0.005675443, -0.0037067737, -0.013975779, 0.030760901, 0.014912227, -0.0029051173, 0.011421829, 0.008151355, 0.0136920065, -0.0011953902, -0.0371174, 0.030278489, 0.020048503, 0.006374232, 0.025042893, -0.0022950072, 0.0026550433, -0.020474162, -0.01171979, -0.00341236, 0.0156216575, -0.006636721, -0.014841284, 0.0023819124, -0.0032243612, 0.018360058, -0.011365075, -0.008882068, -0.019253941, 0.0032509647, -0.013784233, -0.0038309242, -0.0033201342, 0.028419781, 0.003667755, -0.012613673, -0.020516727, 0.0017913118, -0.03515937, -0.0005067993, -0.0039125085, 0.010776248, -0.00927935, -0.0014986717, 0.0018356511, 0.028263707, -0.03098792, 0.008130073, 0.011911336, -0.016543917, 0.0060940073, -0.015238564, 0.017849268, 0.10147692, 0.021325478, -0.0014498984, 0.01478453, -0.0088607855, -0.0057109147, -0.024617234, 0.00035249823, 0.0035028125, 0.0009231463, 0.011279943, -0.01986405, 0.01359978, -0.030931165, 0.027227938, 0.0025042894, 0.012634955, -0.033399984, -0.0031605123, -0.018501945, -0.00993912, -0.00830743, 0.01559328, -0.0027259863, 0.04137398, -0.014600078, 0.031101428, 0.02375173, -0.004710618, -0.0111309625, 0.0031516445, 0.012166731, 0.013436612, 0.0050263144, -0.028249519, 0.028831251, 0.013245066, -0.007278756, 0.020644424, -0.012017751, 0.019083677, 0.014585889, 0.008506071, -0.013982873, -0.0071084923, -0.00013080123, 0.0025486287, 0.04389955, -0.04057942, -0.014436908, 0.0062500816, 0.007140417, -0.029682567, 0.020119445, 0.01508249, 0.03331485, 0.008271959, 0.0018533869, -0.0020768575, -0.03555665, -0.007874677, -0.047645345, 0.001317767, -0.013734573, 0.0050724274, 0.00070366624, -5.25699e-05, -0.019381639, -0.02721375, -0.0123866545, -0.0071794353, -0.020247143, -0.037883583, -0.001313333, 0.019112054, -0.012450503, -0.00049926166, 0.01340114, -0.02159506, -0.0029139854, -0.009676631, -0.031470332, 0.00937867, -0.0116133755, 0.002020103, -0.0018037268, -0.014912227, -0.0020733103, -0.004370091, 0.037145775, 0.01865802, -0.0010464098, 0.0020715368, -0.009676631, 0.0022559885, 0.034875598, 0.04151587, 0.019026924, -0.0067360415, 0.0041395263, 0.017991155, -0.028774496, -0.006278459, -0.007399359, -0.0168135, 0.019920805, 0.007619282, 0.022942979, -0.007204266, 0.006721853, 0.000708987, -0.0060408, -0.011535338, -0.00015008886, 0.0040011876, -0.010371872, 0.026759714, -0.011833299, -0.001610407, -0.033598624, 0.0020431594, -0.026929978, 0.025255721, 0.0080875065, 0.011152246, 0.016458785, 0.016841877, -0.03229327, -0.035812046, 0.0015891241, -0.0018551605, 0.0019385186, -0.012060316, 0.0053561996, -0.0066863815, -0.028476536, -0.007888866, 0.007704414, -0.019509336, -0.011329603, -0.004621939, 0.004923447, 0.014110571, 0.00047709193, -0.019594468, -0.02956906, -0.010989076, 0.0116133755, -0.0096837245, 0.026575262, -0.012542729, 0.0098752715, -0.026007717, -0.02904408, -0.018431002, -0.015720978, 0.00013944741, -0.011556621, 0.01284069, 0.03107305, 0.029597435, 0.0035950385, 0.011017454, 0.013819704, 0.0024528555, 0.0025025157, 0.010414438, -0.0011953902, 0.018118853, 0.017820891, 0.016643237, 0.017707383, 0.010336401, -0.018785717, 0.0005857235, 0.024219954, -0.006051441, 0.003086022, 0.0010632589, -0.062316366, -0.03252029, -0.009300632, -0.017281724, 0.020261332, -0.031527087, 0.00360568, 0.02027552, -0.0014144268, 0.023240939, -0.0017611609, 0.021836268, -0.0057534804, 0.022205172, 0.04074968, 0.020218765, -0.0077186027, -0.015224376, -0.03595393, -0.004781561, 0.050681707, 0.037344415, 0.038678143, -0.0012618994, -0.023056488, -0.023056488, 0.019012734, -0.020914009, 0.0055477456, 0.011783639, -0.013876459, 0.024872629, -0.028575856, -0.017154027, -0.0035063596, 0.0013612196, -0.0067857015, 0.015125056, 0.02782386, 0.0034247753, -0.025922587, -0.0012290882, -0.007498679, 0.029427173, 0.019778918, 0.036209326, 0.02385105, 0.029115023, -0.011528244, 0.00038065374, 0.015337885, 0.015564903, 0.017281724, 0.012301523, -0.018785717, -0.010563418, -0.0096837245, 0.0053845765, -0.0081868265, -0.028760308, 0.0153804505, -0.0089104455, -0.0019278771, -0.019778918, -0.003951527, -0.016870255, -0.0045864675, 0.026121227, 0.0037422453, 0.026149604, -0.007988187, 0.010464098, 0.017480364, -0.0065338537, 0.0297677, 0.011414735, -0.001995273, 0.0054555195, -0.007973998, -0.00033454076, 0.0015846902, -0.010151949, 0.022985544, -0.016430408, -0.0031977575, 0.013855175, 0.026887411, 0.01074787, -0.019594468, 0.008640862, 0.029540682, -0.034733713, -0.043871175, 0.004543902, 0.015522337, 0.0108400965, -0.0060833655, -0.022758527, -0.013840987, -0.011187717, -0.00069568516, 0.00840675, 0.024290897, -0.018984357, 0.00942833, 0.0009058539, -0.021183591, -0.012471787, -0.024886819, 0.021538306, -0.032860816, -0.0020094616, 0.003417681, -0.018416813, 0.0060549886, 0.027071863, 0.0017256894, -0.014025439, 0.03606744, -0.023382826, 0.006931135, 0.003300625, 0.018076286, -0.025000326, 0.016231768, -0.021424798, 0.00045625243, -0.0007032229, -0.03098792, -0.012798124, -0.027327258, 0.0028678724, 0.028150197, 0.0037635283, 0.023964558, 0.0075979996, -0.0056080474, 0.0011847487, -0.009747573, -0.019182999, 0.0280225, 0.00606563, -0.015479771, 0.024886819, 0.0049198996, 0.024517914, -0.02588002, 0.009144558, -0.0040969606, -0.016699992, -0.021992343, 0.017480364, -0.007133323, 0.00024275821, -0.004770919, -0.015905429, 0.0029547776, -0.017196592, 0.0054661613, 0.019168809, 0.009470896, -0.00088944833, 0.025624625, 0.009414141, 0.015635846, 0.008633768, 0.0030381356, -0.032350026, -0.0078959605, -0.019424204, -0.00027069202, -0.022588264, 0.028050877, 0.0073851706, -0.018601265, -0.009910743, -0.0055264626, -0.04148749, -0.022999734, -0.002238253, 0.008591202, 0.01671418, 0.01508249, -0.0035187746, 0.001844519, -0.011194811, 0.01702633, 0.005813782, 0.0062429872, 0.02526991, 0.0032350025, 0.0067254, -0.008789843, -0.0067147585, -0.023397014, -0.014628455, 0.007874677, -0.009839799, 0.018203983, -0.0051469174, 0.006228799, 0.026362434, -0.0054768026, 0.015905429, 0.020772122, 0.02436184, -0.0297677, -0.019182999, 0.012266051, -0.0093928585, -0.0076618483, -0.008506071, -0.0012326353, 0.013954496, 0.0050617857, -0.019140432, -0.010279646, -0.0014339362, 0.008130073, 0.009421236, -0.0055158213, -0.0009772404, 0.010613078, 0.016245956, 0.018104663, -0.007477396, 0.010265457, 0.0047957497, 0.01844519, 0.0012450503, -0.027341448, 0.016472973, -0.018374247, -0.0010880888, -0.014479474, -0.013060614, -0.022985544, -0.038961917, -0.043871175, -0.0011067115, -0.0021939136, -0.0062004216, -0.014295022, -0.027398203, 0.0055654813, -0.0038202826, -0.01176945, -0.006278459, -0.0032013047, -0.0011678998, 0.009548933, 0.008002375, -0.026915789, 0.01773576, 0.032123007, -0.03269055, 0.019197186, 0.22633667, -0.017693194, 0.022715962, 0.010719493, -0.02253151, -0.011875865, 0.01310318, 0.0022222907, -0.017877646, 0.002731307, 0.0013700875, 0.019154621, -0.030732524, -0.0053384635, 0.013429517, -0.013578498, -0.03385402, -0.01630271, -0.044608984, 0.013840987, 0.018714774, -0.0038167355, -0.01814723, -0.029115023, -0.0040685833, 0.0019243299, 0.0016999725, 0.009697913, 0.019495146, 0.000316805, -0.020020125, 0.0023109694, -0.0100171575, -0.0037635283, 0.006838909, -0.01997756, 0.025057081, -0.010151949, 0.016175013, -0.0048879753, -0.0089601055, -0.0145717, 0.003809641, -0.031470332, -0.0042849598, 0.001903047, 0.0008504297, -0.0078108287, 0.001639671, 0.0024422142, -0.03606744, -0.0069204937, 0.02650432, 0.026036095, 0.008144261, -0.010882663, 0.013237971, 0.009889459, 0.0047992966, 0.019651221, -0.0101164775, 0.0061188373, -0.0148980385, 0.020616047, -0.038905162, 0.019892428, -0.021751136, 0.024546292, 0.0078959605, -0.014841284, 0.0036358307, -0.022418, -0.0062855533, -0.008612485, -0.027270503, -0.01442272, 0.03087441, 0.0037422453, 0.020757934, 0.038961917, 0.007356793, -0.01125866, -0.028504914, -0.020857254, 0.004451676, -0.04012538, 0.029824454, 0.0048844283, -0.0190553, -0.010173231, 0.010442816, -0.022034908, -0.009123275, 0.005817329, -0.002539761, 0.0138338925, -0.008491882, 0.010279646, -0.015153433, 0.014224079, -0.017948588, 0.04758859, 0.02070118, -0.018303305, -0.0005302992, 0.013571403, -0.005317181, 0.0088111255, 0.010769153, -0.011599187, -0.016061503, -0.026816469, -0.0010774474, 0.0031339088, -0.011180623, 0.013940307, 0.008839503, -0.0078108287, 0.02934204, -0.010584702, 0.00042565825, -0.021822078, 0.0068211732, 0.008498976, -0.015394639, 0.004760278, -0.009045238, -0.0132025, -0.026007717, -0.025837455, -0.005409407, 0.0041146963, 0.016657425, -0.027582653, -0.0033023984, -0.015820298, -0.00022624178, -0.009946214, -0.0241632, 0.0036535666, -0.009094898, -0.008740182, -0.0061933273, -0.014628455, 0.0040189233, -0.010109383, 0.017267536, -0.0063600433, -0.01305352, -0.021112649, -0.022205172, 0.015536525, 0.0040260176, 0.00015685063, 0.02282947, -0.009768857, -0.00199882, -0.008974294, 0.015110867, -0.005434237, -0.030505506, 0.011294132, 0.033598624, 0.011095491, -0.03229327, -0.014585889, -0.18433839, -0.00049926166, -0.011209, -0.03975648, 0.045885958, 0.008108789, 0.022247737, 0.012400843, 0.0036925853, 0.00034651242, 0.0072326427, -0.009080709, -0.015295319, -0.012067411, -0.005693179, 0.016770935, -0.01467102, 0.007633471, 0.02231868, -0.00085175986, 0.03314459, -0.013521743, 0.030704148, 0.002417384, 7.925668e-05, -0.011726884, -0.00804494, 0.0077682626, -0.008718899, -0.01875734, -0.011812016, -0.004856051, 0.043332007, -0.002944136, 0.006505477, 0.00045071, -0.0131599335, -0.0019243299, -0.015905429, 0.011606282, 0.0058918195, 0.016444597, 0.0060549886, 0.013379857, -0.017608061, 0.0051930305, 0.015820298, -0.023326071, 0.005902461, -0.015522337, 0.017948588, -0.036209326, 0.009719197, -0.010591796, 0.013429517, 0.031016298, 0.007874677, 0.0016751426, 0.00499439, -0.04514815, 0.0086692395, -0.0068566445, 0.007924338, -0.008179733, 0.0012015977, -0.035726916, -0.014089287, -0.002814665, -0.018572887, 0.014685209, 0.0045651845, -4.4450248e-05, -0.021552496, -0.018799905, 0.009676631, 0.020672802, -0.03657823, -0.009598593, 0.029313663, -0.023311883, -0.008633768, 0.017466176, 0.008945917, -0.01228024, -0.022999734, -0.0015722751, -0.030221734, 0.0011936167, -0.014018345, 0.0070659267, 0.045091394, -0.016288523, -0.0080875065, -0.006597703, -0.02048835, 0.010045534, 0.021027517, -0.008144261, -0.018927602, -0.008647957, 0.009421236, 0.0072716614, 0.015862864, -0.0018604812, 0.019211374, 0.001986405, -0.029483927, 0.018005343, 0.039784856, -0.007562528, -0.035414767, -0.007204266, -0.0031303617, 0.0004343044, 0.0068672863, 0.03271893, -0.0075554335, -0.004770919, -0.0072220014, -0.011386358, 0.03555665, -0.014004156, -0.0036251892, 0.0034992653, 0.008470599, -0.015437205, -0.08825314, -0.031441957, 0.011514056, 0.0025291194, 0.00056444056, 0.03822411, -0.0134508, 0.0076902253, -0.032945946, 0.03842275, -0.000368017, -0.009719197, -0.0054023126, 0.011826205, 0.024191577, 0.00660125, -0.009151652, -0.027369825, -0.003341417, 0.01391193, 0.0016112938, 0.0050511444, 0.02169438, -0.0064309863, -0.008527353, 0.008030752, -0.039784856, 0.0320095, 0.010293835, 0.006228799, 0.023907805, -0.005721556, -0.0018391983, -0.02579489, -0.021084271, -0.008924634, 0.0013780686, -0.022361247, 0.013493366, -0.03118656, -0.003944433, 0.0101164775, 0.033627, -0.017168216, -0.03751468, 0.0010011836, 0.0037067737, 0.023184186, 0.0024333464, -0.01813304, -0.02383686, -0.0023712711, -0.020332275, -0.0033077192, 0.009733385, -0.0074348305, 0.023482146, -0.011492772, -0.016458785, -0.0115637155, 0.009002672, -0.019353261, -0.012705898, 0.022190982, 0.008839503, 0.0052675204, -0.009052332, -0.023013921, 0.016146636, 0.01171979, -0.0056328773, 0.038082223, -0.019026924, 0.0054732556, -0.013947401, 0.011492772, -0.0053242752, -0.008718899, 0.008953012, -0.028164387, -0.016472973, -0.024673989, 0.019282319, -0.010478287, 0.0069488706, 0.0113225095, -0.00557967, 0.008392561, 0.013770044, -0.03118656, 0.0020183295, 0.0044055628, 0.011521149, -0.0081868265, 0.0016370106, 0.008328713, -0.021013329, -0.029086646, -0.0190553, 0.003383983, -0.017877646, -0.00445877, -0.08638024, 0.018416813, 0.004902164, -0.011882959, 0.0098752715, -0.029597435, 0.0019739901, -0.020928197, 0.0013523517, 0.003057645, -0.036748495, -0.002158442, -0.01661486, -0.011620469, -0.008633768, -0.017097272, 0.02650432, 0.009399952, 0.0018037268, -0.012003562, 0.0033431908, -0.04219692, 0.006370685, 0.013032236, -0.009094898, 0.013010954, -0.022602452, -0.0009000898, -0.009236784, -0.023666598, 0.0006500156, -0.023467958, -0.0031339088, 0.024007125, 0.020445785, -0.03700389, 0.014727775, 0.008974294, 0.025099648, 0.021651816, -0.009357387, -0.024404405, 0.01294001, 0.0012645597, -0.01620339, -0.01640203, -0.008995578, 0.0044729584, 0.01875734, 0.025042893, 0.03740117, 0.01691282, -0.033570245, -0.041657753, 0.0036783966, -0.02233287, -0.01030093, 0.021226157, -0.0010721267, 0.0035418312, 0.046425126, 0.0057854047, 0.013088991, -0.011350886, 0.027866425, -0.00774698, -0.041913148, 0.0034265488, 0.031867612, -0.026632017, -0.023141619, -0.018388435, 0.017423611, 0.019452581, 0.01049957, -0.0077327914, -0.009258066, 0.011797828, -0.008534447, 0.012407937, 0.011138057, -0.005366841, 0.0037954526, 0.027086053, 0.021949776, 0.0012175599, -0.01508249, -0.009031049, -0.0046964292, 0.0013488046, -0.017366856, 0.015777731, 0.0010934096, 0.0085699195, 0.028575856, 0.0100171575, -0.0025752324, 0.0069630593, 0.01864383, -0.01661486, -0.0070907567, 0.013997061, 0.0028057972, -0.024503727, -0.02089982, 0.011542432, -0.010605984, -0.012400843, 0.01376295, 0.03416617, 0.039671347, 0.010464098, -0.02169438, 0.013081896, -0.030278489, 0.000392182, -0.008953012, -0.005423595, -0.014387248, 0.022815282, 0.010492476, -0.008548636, 0.037145775, -0.027738728, 0.034024283, -0.028008312, 0.020360652, -0.006697023, 0.007583811, -0.00402247, -0.0056399717, 0.015323697, -0.017196592, -0.013032236, -0.00013822808, 0.0023322525, -0.014628455, -0.0021336118, -0.011968091, 0.08359928, 0.03933082, -0.02149574, 0.016898632, -0.027454956, -0.0034566997, 0.0034566997, 0.0077398857, -0.004015376, -0.018743152, -0.007683131, -0.0031179467, -0.017494554, -0.0041501676, 0.011989374, 0.002866099, 0.0052604266, 0.03629446, 0.0013567857, -0.007133323, -0.006881475, 0.01834587, 0.024943573, -0.011535338, -0.018700585, -0.009371576, 0.026405, 0.0048170323, -0.007775357, -0.031527087, 0.017054707, 0.0150399245, -0.04046591, -0.00040681398, 0.006157856, 0.031300068, -0.022588264, -0.008995578, 0.023056488, 0.00045979957, 0.024617234, 0.0041111493, -0.01824655, -0.032123007, 0.0014374834, 0.004362997, -0.006693476, -0.012571107, -0.0015403507]" 13767245,Leaked Snapchat emails: Anti-gun group told to pay or NRA ads may appear,https://mic.com/articles/170019/leaked-snapchat-emails-anti-gun-charity-told-to-pay-or-nra-ads-may-appear-on-videos,406,1488396069,249,davidbarker,"[-0.029098207, -0.021369407, -0.010750537, -0.00830813, -0.013285109, -0.0007216948, -0.015167935, -0.014614937, -0.021382574, -0.008380547, 0.023383899, 0.0052073942, -0.011428617, 0.00064722117, 0.042738814, 0.014496437, 0.01655043, -0.0025296349, 0.015444433, -0.015194268, -0.020263413, 0.033337858, -0.018156756, 0.020684743, -0.008038215, 0.006099432, 0.015786765, -0.0037195673, 0.0012631717, -0.03763017, 0.013996107, 0.007096803, -0.017353592, -0.02416073, -0.019012585, 0.016405595, -0.008018466, -0.02089541, 0.024292395, -0.022804568, 0.012745278, 0.0057735583, 0.008117215, -0.007188969, -0.042396482, 0.0017100135, -0.022949401, 0.008657046, 0.0021560322, -0.007998715, 0.0017034301, -0.01587893, -0.0378145, -0.020237079, -0.0009611625, -0.0055332677, -0.002187303, 0.010480622, 0.006543805, -0.0068334704, -0.0017429299, -0.009269293, -0.024726894, 0.0056682257, -0.025503723, -0.020724244, -0.004117857, 0.01709026, -0.031283867, 0.02539839, 0.032521527, 0.014496437, 0.0156946, -0.035839513, 0.008354214, -0.006583305, -0.005786725, 0.016800594, 0.0233049, 0.007926299, 0.027755214, -0.01976308, -0.03539185, 0.037840836, 0.029466873, -0.0072679687, -0.004628063, 0.0116722, -0.007623467, 0.023133734, 0.021303575, 0.00052625296, -0.02077691, -0.014325271, -0.0156946, 0.027149549, 0.0011759428, 0.036418844, -0.014127772, -0.009874958, -0.00045877407, -0.0052008107, -0.01468077, -0.000478524, -0.014944102, -0.003551693, -0.006395681, 0.004015816, 0.016208097, -0.0061586816, -0.017156092, 0.011968448, -0.0050230618, -0.006221223, -0.008624129, 0.0130349435, -0.0110797025, -0.018248921, -0.020948077, -0.024226561, 0.00033122252, 0.0027403007, 0.009453625, -0.028150212, 0.022778235, 0.0075313007, -0.034970514, -0.007182386, 0.006221223, -0.008452963, 0.0071099694, 0.005556309, 0.0063495976, -0.004259398, -0.017801257, 0.046715133, -0.012534613, 0.028650543, -0.039236497, -0.016524095, 0.03009887, 0.025293058, -0.014878269, 0.007472051, -0.012106698, 0.020474078, -0.004539189, 0.0154181, 0.023976397, 0.016576761, 0.017195592, -0.010566205, 0.006583305, -0.0059150993, -0.006201473, 0.007926299, -0.02920354, 0.032442525, -0.002812717, 0.0033772355, -0.020763744, 0.0020869076, 0.0053489353, 0.003788692, 0.010250206, 0.0231074, -0.0030464244, 0.021382574, 0.0017643257, -0.009111294, 0.0023716355, 0.03973683, -0.020171246, -0.008986211, 0.0154181, 0.013693274, 0.0016153784, 0.0073074684, 0.016050097, -0.034549184, -0.0014409209, -0.0062376815, 0.012876945, 0.025135059, -0.015457599, 0.005049395, 0.02388423, -0.020013247, -0.025490556, -0.024371395, 0.00105086, 0.014048773, -0.0071955523, -0.0382885, -0.6206213, -0.005529976, 0.0136011075, 0.015431266, -0.0051843524, 0.034601852, -0.0005719246, 0.006468097, -0.044950806, 0.02260707, -0.017024426, -0.0031978404, -0.013535275, -0.019512916, -0.0019354917, -0.024950726, 0.0045062723, 0.00840688, 0.0037360254, 0.027096882, -0.02376573, -0.014088272, 0.02011858, 0.0020951368, 0.017722256, 0.029071875, -0.015075768, -0.030651867, -0.009703792, 0.010651788, -0.02470056, 0.035365514, 0.021948738, 0.013192943, 0.054351766, -0.005187644, 0.026570218, 0.01816992, 0.0154971, 0.014443771, -0.035470847, -0.009795957, -0.003334444, 0.0010615579, 0.0029377998, -0.012455612, 0.041290488, 0.0016631074, 0.01693226, -0.011968448, 0.022936234, 0.0100329565, -0.018801918, -0.0013602753, 0.0052238526, -0.0031106116, -0.00011582502, -0.007814383, 0.019499749, 0.013706441, -0.03157353, -0.009953957, -0.0064088474, -0.022975734, -0.016866427, 0.02551689, -0.0031040283, 0.037182506, 0.021422073, -0.013508942, 0.009697208, 0.05266644, -0.012297614, -0.0063594724, -0.010691287, 0.024476727, 0.014088272, 0.0028061336, -0.026543885, 0.017761756, -0.024990225, -0.005046103, -0.014404271, -0.0006373462, -0.012607029, -0.011863115, -0.006484555, 0.0118170325, 0.045108806, 0.0016532325, -0.014075106, 0.008097465, -0.012870361, -0.022883568, 0.0060270154, 0.0012384843, -0.031362865, 0.025740722, -0.011487867, -0.019210083, -0.022686068, -0.0032801316, 0.01005929, -0.0032801316, 0.024608394, 0.01890725, -0.012942777, -0.01681376, 0.030704534, -0.032284528, 0.0058393916, -0.0051086447, -0.0050921864, -0.037551172, -0.009795957, -0.02408173, 0.014035606, -0.0031879654, 0.037261505, -0.028913874, 0.004423981, -0.010092206, 0.011843366, -0.00535881, 0.015470766, 0.017340425, 0.0017676174, -0.0021576781, 0.018815085, -0.02155374, 0.000890392, -0.044187143, 0.013943439, -0.007044136, 0.012653112, 0.003314694, 0.0032505067, 0.011158702, 0.0021741365, -0.012791362, -0.012113281, -0.00028534513, -0.0011825261, -0.0035879011, -0.00013722076, -0.028202878, -0.009815708, -0.00212147, 0.0068005538, -0.0011166931, 0.00392365, 2.821049e-05, -0.003551693, 0.017432591, 0.0013874315, 0.011046786, -0.028360877, -0.020961244, -0.032179195, -0.020474078, 0.020092247, 0.026938884, -0.010454288, -0.009624791, -0.011474701, -0.014246272, 0.02081641, 0.0048321458, 0.0055365595, -0.016129097, 0.0031122575, -0.034417517, -0.020381913, 0.015339101, 0.025609056, 0.020711077, -0.008755796, 0.0094799595, 0.004535897, 0.0072021354, 0.022962568, -0.025266724, -0.026478052, 0.008940128, 0.011810449, -0.004575397, 0.009341709, 0.024503062, -0.021501074, 0.018801918, -0.019539248, 0.0015980973, -0.028940208, -0.0040816492, -0.0010780161, 0.014865102, 0.03175786, 0.013680108, 0.033153523, 0.01244903, 0.0037393172, -0.0012829215, 0.021882905, 0.00027382435, 0.0031961945, -0.014614937, 0.0035253598, -0.012949361, 0.0230679, -0.020487245, 0.016892761, 0.0020408246, -0.011217952, -0.0032159444, 0.00015306183, 0.0022416152, 0.00031599862, -0.00041577686, 0.014154105, 0.0103160385, 0.01774859, -0.0037755254, 0.011902615, -0.032547858, 0.0027386548, -0.0029279247, 0.0026366136, 0.020223912, 0.026109386, -0.03175786, -0.004628063, 0.03576051, 0.00059537764, 0.01957875, -0.0028933624, -0.01770909, -0.0019470124, 0.016682094, 0.029572206, 0.000738976, -0.0019996788, 0.0054246434, 0.019486582, 0.010263372, 0.017458925, -0.0021362824, 0.026701884, 0.008551713, -0.021909239, 0.003475985, 0.0048979786, 0.0130349435, -0.017195592, 0.0076761334, 0.013969773, -0.039052166, -0.0012746924, -0.0065701385, 0.030572867, 0.018564919, 0.0019338458, 0.004795938, 0.010730787, -0.008874295, 0.015786765, 0.011856532, 0.018301588, 0.0008126267, -0.0045688134, -0.0043021897, 0.0025148224, -0.01755109, -0.012903278, -0.009993457, 0.00024543382, 0.0022300945, 0.010625454, 0.019723581, -0.00926271, -0.0050691445, -0.01770909, -0.012672862, 0.011665616, 0.030283203, -0.0047597294, -0.0077551333, -0.0046379385, -0.04416081, -0.0065273466, -0.014812436, -0.012778195, 0.018183088, -0.0114483675, 0.011224534, -0.0073667183, -0.024621561, 0.011685366, -0.011020453, -0.016418763, -0.0064944304, 0.011580033, 0.01322586, -0.013469442, -0.0035846096, 0.021171909, 0.024845393, 0.016063264, -0.044661142, -0.02625422, -0.018828252, 0.026241053, -0.01848592, -0.018696586, 0.016260764, 0.02003958, 0.017248258, -0.037919838, 0.0022300945, 0.023686731, -0.00424294, -0.013252193, 0.0055069346, -0.043239146, -0.0064746803, 0.14746603, 0.015747266, -0.006731429, 0.012995444, -0.022040905, -0.002537864, -0.011402284, -0.008380547, 0.02376573, -0.0077683, 0.0053357687, 0.017432591, -0.016655762, -0.00124013, 0.021606406, 0.010144873, -0.002820946, -0.020434579, -0.0053950185, -0.0056188507, 0.0007755956, -0.0010813079, 0.012528029, 0.033653855, -0.0057603917, -0.03368019, 0.017142925, 0.035260182, 0.0006591534, -0.019210083, -0.008413464, 0.022593902, -0.009433876, -0.014786103, -0.00023185577, -0.0057998914, -0.012995444, -0.00011551643, 0.025898721, 0.0027040925, 0.021527408, -0.0009233085, 0.009256126, -0.036603175, 0.014325271, -0.03141553, 0.009842041, 0.0033640687, 0.007346968, -0.004117857, 0.017379925, 0.0035451096, -0.03599751, -0.017656423, -0.0058788913, -0.011191619, -0.017919756, 0.00020490536, -0.030177869, -0.0043811896, 0.014246272, -0.034838848, 0.016247597, -0.022356903, -0.027860546, -0.006563555, -0.01165245, 0.007899966, -0.013212693, 0.006731429, 0.012370029, -0.013192943, -0.039789494, 0.0066260966, 0.034654517, -0.009539208, 0.008762379, 0.032837525, 0.008275215, 0.02481906, 0.012047448, -0.0020243663, -0.008578046, -0.016708428, -0.008472714, 0.00032463923, -0.009506293, 0.0068137203, -0.04171182, 0.016642595, 0.012317363, 0.0062376815, 0.032363527, -0.026728218, -0.0015882223, 0.00069412723, -0.013890773, 0.024647893, -0.0036800674, 0.0230284, 0.01452277, 0.010533288, -0.029229874, -0.018736085, -0.0030184453, -0.0071165524, 0.005141561, 0.027649881, 0.015799932, -0.011678783, 0.014391105, -0.017261425, 0.0045589386, -0.011369367, -0.004374606, 0.0060763904, 0.019407583, 0.027623547, -0.031468198, -0.0081632985, -0.015115268, -0.029730204, 0.007946049, 0.011171868, -0.0025181142, -0.008696546, -0.008709712, -0.019275917, -0.006925637, 0.009591876, -0.016524095, 0.012402946, -0.0027600506, 0.0008764025, -0.037998836, -0.012073781, -0.016142264, -0.0030283201, -0.017063927, 0.00025736607, 0.007425968, -0.0076695504, -0.019526083, -0.008248881, 0.036208175, -0.035049517, -0.027149549, -0.0012993799, 0.0029707162, -0.005085603, -0.008051381, -0.015154768, -0.03033587, -0.010388455, -0.0071363025, -0.017682757, -0.007425968, 0.004851896, 0.01071762, 0.006639263, 0.045688137, -0.011382534, 0.017419424, 0.0048716455, 0.018275253, -0.0021938863, 0.004651105, 0.01149445, 0.005026353, 0.006412139, 0.00539831, 0.012705779, 0.0034167352, 0.011119202, -0.006668888, -0.0020144912, 0.009117877, 0.008472714, -0.022198904, -0.024002729, -0.020184413, -0.0056813923, -0.010269956, 0.002263011, -0.023436565, -0.0031599863, 0.0011882866, -0.0022761778, 0.013423359, -0.023818398, -0.0066721793, 0.0012672861, 0.005385143, -0.004934187, 0.023647232, 0.0022580735, -0.042159483, -0.031362865, -0.007656384, -0.0037821087, 0.01816992, -0.0033327981, 0.013179776, 0.004348273, -0.027544547, 0.033074524, -0.03289019, -0.0024111355, 0.01157345, -0.02543789, -0.0047597294, 0.0073930514, -0.025859222, -0.011902615, 0.02113241, 0.012205447, -0.0104147885, -0.00050074264, -0.0024061978, -0.042659815, -0.024015896, -0.011876282, 0.025490556, 0.01957875, 0.008420047, 0.010803203, -0.010460871, -0.0313892, 0.008518796, 0.018393753, 0.004575397, 0.0027682798, 0.005750517, -0.016629428, -0.014180439, 0.005306144, 0.012955944, -0.034628183, -0.025253557, 0.0391575, -0.010006623, 0.00018968146, -0.02617522, -0.022844069, 0.008038215, 0.0007007105, -0.00083937135, 0.006431889, 0.019684082, -0.02846621, -0.009539208, 0.011698533, 0.011013869, 0.019420749, 0.01930225, -0.023634065, 0.005306144, -0.0064450554, -0.003815025, 0.00836738, 0.0009726833, 0.00998029, -0.03025687, 0.004433856, 0.007939465, -0.004042149, -0.021303575, -0.014904602, 0.0031468198, 0.025174558, -0.0034562352, -0.0231074, 0.010553038, -0.0076893, -0.0043021897, 0.0107834535, -0.0120013645, -0.028360877, -0.022106737, -0.0017001384, 0.025898721, -0.0025329266, 0.0047004796, -0.0016450033, 0.0047004796, -0.004091524, -0.015615599, 0.0046938965, 0.028676877, -0.013291692, -0.023397066, 0.005786725, 0.0070573026, -0.022238404, 0.006563555, 0.012778195, -0.0024325312, 0.046109468, -0.027834212, -0.013344359, -0.008018466, 0.022791402, -0.03444385, 0.008262048, -0.017472092, -0.021211408, 0.01984208, -0.0025806555, -0.038551833, -0.022962568, 0.013535275, 0.022001404, -0.0009669229, -0.0045622303, 0.025490556, 0.01766959, -0.01464127, 0.0012993799, -0.03304819, 0.025042892, -0.0073338016, -0.028992875, 0.033811852, 0.00038759207, 0.00069412723, -0.039236497, 0.02073741, -0.0018959919, -0.02248857, -0.0039730244, 0.0020720952, 0.025148224, -0.010625454, -0.02481906, -0.02645172, 0.016010597, -0.018696586, 0.011217952, 0.018867752, -0.009572125, 0.007037553, 0.018341087, 0.024924392, -0.0039335247, 0.010803203, 0.0015265038, -0.011606366, -0.005217269, -0.037919838, -0.015562933, -0.0110797025, 0.035444513, 0.008288381, -0.013291692, -0.018683419, 0.0015758786, -0.030441202, -0.010974369, -0.031520862, 0.0067478875, 0.0054213516, 0.018564919, -0.0041244407, -0.002017783, -0.0075247176, -0.005928266, -0.0072416356, -0.010790037, 0.013258776, -0.01087562, 0.0048058126, 0.005190936, -0.02822921, 0.015431266, 0.033601187, 0.023252232, 0.006787387, -0.0033476106, -0.019512916, 0.0156946, 0.004117857, -0.0034529434, 0.00924296, 0.009038878, 0.04171182, -0.024068562, 0.004236357, -0.0020490536, 0.0067413044, -0.01697176, -0.00042174297, 0.0107834535, 0.016484596, 0.0063528894, -0.041922487, 0.013956606, -0.0053357687, 0.020013247, 0.03633984, 0.019354917, -0.005786725, 0.023950063, 0.012370029, -0.021474741, 0.0006385806, 0.0062705977, -0.014404271, -0.014891435, -0.005227144, -0.016774261, 0.0230679, -0.019368082, 0.0070902193, -0.006468097, 0.007235052, 0.022001404, -0.049927786, -0.00018957861, -0.000648867, -0.01860442, -0.020750577, 0.020105412, -0.013041527, -0.0072811353, 0.007886799, -0.009091544, -0.0032817775, -0.012198864, -0.0016705137, 0.007379885, 0.0009479959, -0.041501153, 0.012133031, 0.025595888, -0.013291692, 0.020539911, 0.22983634, 0.007899966, -0.007017803, 0.037366837, -0.03402252, 0.022238404, -0.008288381, 0.011599783, 0.0130481105, -0.012817695, -0.019565582, 0.015273267, -0.005227144, -0.0008459547, 0.0063693477, -0.006866387, -0.02179074, -0.021619573, -0.0058788913, -0.011217952, -0.0048420206, 0.011053368, -0.018143589, 0.0053357687, -0.0029954037, 0.031283867, -0.030046204, -0.0072284685, 0.026846718, -0.0136011075, -0.02780788, -0.01790659, 0.029071875, -0.021185076, 0.024029063, -0.0019025751, -0.012416113, 0.0068532205, 0.007946049, 0.026715051, 0.029624872, 0.010243623, 0.005408185, -0.010085623, 0.01145495, -0.014614937, -0.004344981, -0.018512253, 0.00040775345, -0.011659033, -0.019157417, -0.0057702665, 0.021764405, 0.02000008, -0.01229103, 0.00539831, -0.023647232, 0.0021181784, 0.0073140515, 0.0098486245, -0.01093487, 0.0057636835, -0.0006023724, 0.04000016, -0.021422073, 0.0060006822, 0.027623547, 0.0073996345, 0.019052085, -0.011975031, -0.012027698, 0.017116593, -0.03515485, 0.015075768, -0.008057965, -0.02613572, 0.0041112737, 0.028861208, -0.0021280532, 0.018986251, 0.0008912149, 0.015734099, 0.008459547, 0.014746603, -0.0021642614, -0.013429942, 0.019776247, -0.006724846, -0.002386448, -0.007913132, 0.006761054, 0.009637958, -0.015470766, -0.020869076, -0.0059809326, -0.023370732, 0.023910563, 0.010559621, -0.030625535, -0.0030908617, -0.0072482186, 0.033258855, 0.010585954, 0.007662967, 0.0076168836, 0.011336451, 0.019723581, 0.051744778, 0.008380547, -0.041659154, 0.0012639945, -0.018946752, 0.0034628185, 0.0141672725, 0.02392373, 0.017261425, -0.009348293, -0.03739317, 0.0018235755, -0.0115142, 0.014259438, -0.010237039, 0.0030645283, 0.014206772, -0.005944724, -0.01701126, -0.012192281, 0.006431889, 0.0016408887, -0.017248258, 0.02101391, 0.01153395, 0.0069980533, 0.00033369128, -0.019210083, -0.025543222, 0.033838186, -0.017893422, 0.013548441, 0.0063693477, 0.021343075, 0.006619513, 0.02019758, -0.009117877, 0.022119904, -0.020513577, 0.005842683, 0.0035846096, 0.0052633523, 0.007939465, -0.031020533, 0.018130422, 0.001287859, 0.0010640266, 0.011382534, -0.015562933, -0.018973084, -0.03647151, -0.017037593, 0.0037459005, -0.03802517, 0.015865766, 0.014944102, -0.010210706, -0.033416856, -0.0054213516, -0.16558328, 0.027360216, -0.011474701, -0.0020951368, 0.02019758, -0.019776247, -0.00069165847, 0.016695261, -0.012929611, 0.00043038354, 0.017498424, -0.01386444, -0.011711699, -0.010559621, 0.01770909, 0.0063298475, 0.0027024467, 0.04015816, -0.013535275, 0.009545792, 0.05645842, -0.002992112, 0.018011922, -0.0023090942, -0.0077222167, -0.00091754814, 0.005984224, -0.016958592, 0.010678121, -0.02031608, -0.0043877726, -0.00930221, 0.020987576, 0.0061883065, 0.0010590892, 0.0156946, -0.01914425, 0.0036603175, 0.00015985087, 0.06430572, 0.016840095, 0.022264738, -0.0305202, 0.026004054, -0.025345724, 0.01697176, 0.017511591, 0.013377275, -0.006280473, 0.0043910644, 0.032995526, -0.032416195, -0.0069124703, 0.034838848, 0.007544467, 0.006780804, 0.0115537, -0.002955904, 0.033495855, -0.020013247, -0.014812436, -0.02057941, 0.008959878, -0.022238404, -0.02687305, -0.04687313, -0.049190454, -0.0050987694, -0.013508942, 0.014180439, -0.0071758023, -0.010171206, -0.009025711, -0.00030159767, 0.009723541, -0.0089993775, -0.013074444, 0.0003048893, 0.0008665275, 0.028571542, 0.018630752, 0.0310732, -0.011757783, -0.004802521, -0.015628766, 0.0023699899, 0.011007286, 0.026241053, -0.034812517, -0.0037096923, -0.013252193, 0.004799229, -0.0048650624, -0.008229131, 0.0064154305, 0.0057538087, 0.023133734, 0.0021905948, 0.008321297, -0.024792727, 0.01145495, -0.012811111, 0.023002068, 0.02699155, 0.010664954, -0.020632077, 0.014654437, 0.008591213, -0.01705076, -0.02830821, -0.036208175, 0.012139614, 0.027412882, -0.0024753227, -0.001979929, 0.0154971, 0.000833611, -0.0039170664, -0.010625454, -0.012620196, 0.06704438, -0.00908496, 0.003742609, -0.0018515545, -0.014575437, -0.024239728, -0.08700496, -0.015167935, 0.031889528, 0.015655098, -0.00852538, 0.02019758, 0.021724906, 0.036919173, 5.5135177e-05, 0.03662951, -0.00035097243, -0.0073996345, -0.018946752, 0.011527367, 0.027386548, -0.001156193, 0.013930273, -0.010730787, -0.0109677855, 0.0382885, -0.011468117, -0.034233186, 0.01161295, -0.0385255, -0.018156756, 0.00856488, -0.026543885, 0.028413543, -0.0003892379, 0.021000743, 0.0060006822, -0.013350942, 0.0028686752, -0.04063216, -0.030888867, 0.009071794, -0.029861871, -0.01755109, 0.0010409851, -0.01852542, 0.007406218, 0.019091584, -0.00066738256, -0.017327258, -0.011501034, -0.027281215, -0.02000008, 0.007913132, 0.016366096, 0.016287096, -0.00076037174, 0.0055102264, 0.013522108, -0.01452277, -0.0030711116, -0.011059952, -0.0025971138, 0.009111294, -0.019328583, -0.0016334825, 0.014035606, 0.0022794693, 0.0079789655, -0.0065470967, -0.005385143, -0.020065913, -0.038156833, 0.0027024467, 0.012455612, 0.011270618, -0.02019758, 0.016445095, -0.0023634064, 0.016063264, -0.016129097, 0.0061817234, -0.0057077254, 0.017116593, -0.005747225, -0.021461574, -0.0074588843, -0.019894747, 0.012547779, 0.010144873, -0.009210044, -0.012034281, 0.011764366, 0.03657684, -0.002366698, -0.023647232, 0.0015495454, 0.0071165524, -0.006629388, 0.0049210205, -0.004516147, -0.0103160385, -0.023989564, 0.019921081, 0.011876282, -0.0006883668, -0.003551693, -0.0074193846, -0.06240973, 0.024134396, 0.0024407604, 0.029545872, -0.0021642614, -0.017314091, 0.012587279, -0.028729543, 0.011626116, -0.005381852, -0.00074679364, 0.033574853, 0.01460177, -0.007570801, -0.025451057, -0.009828874, 0.0018318046, 0.0031287156, 0.01934175, 0.027913213, 0.011527367, 0.012067198, 0.005608976, 0.01079662, 0.041738153, 0.025108725, -0.027439214, 0.010724204, 0.0055431426, -0.0036504425, 0.022238404, -0.010421372, -0.0022761778, 0.005694559, 0.006224515, -0.02458206, -0.0015256809, -0.0066359714, 0.0010566204, -0.013304859, -0.029124541, -0.013482609, -0.020434579, -0.031046866, -0.015391767, -0.0072416356, -0.0103160385, 0.016339762, 0.010362122, 0.017300926, 0.021356242, 0.012146197, -0.031231198, -0.015747266, -0.0057373503, -0.021250907, 0.003637276, -0.011461534, 0.011244285, -0.024621561, 0.019828914, 0.030362202, 0.02007908, -0.0017742007, 0.027913213, -0.016668929, -0.033021856, -0.007853882, 0.030283203, -0.035233848, -0.007379885, -0.0051448527, 0.01946025, 0.018090922, -0.027992213, -0.0060500572, 0.013291692, 0.011382534, -0.04263348, 0.0123831965, -0.004292315, -0.020144913, -0.0074128015, 0.0045490637, 0.017419424, 0.030651867, -0.038420167, 0.0042857314, 0.0024374686, 0.0017873673, -0.028071212, 0.010678121, -0.002992112, 0.0079789655, 0.003531943, 0.031310197, -0.006201473, 0.009216627, -0.00084348593, -0.010730787, 0.04237015, -0.0029493205, -0.00029439718, 0.024792727, 0.0052633523, 0.03763017, -0.017564258, -0.030125203, 0.011283784, -0.0011973386, 0.012337114, -0.0064911386, -0.00023411878, 0.018920418, -0.025701223, 0.026438553, 0.022304237, -0.029545872, -0.004802521, 0.02179074, 0.037419505, -0.0086307125, 0.020869076, -0.0020688036, 0.04229115, 0.0015503683, -0.0027551132, -0.0307572, 0.01728776, -0.0120145315, 0.009690625, -0.004354856, -0.023989564, 0.015154768, -0.0021115951, 0.0017890132, -0.0111652855, 0.021896072, -0.0057176, 0.044529475, 0.01957875, 0.016247597, -0.022027738, -0.011013869, 0.032916524, -0.0026316762, 0.005362102, -0.00039314674, -0.032521527, 0.015984265, 0.00042256588, 0.023370732, -0.04229115, -0.00034953235, -0.0041441903, 0.00011027035, 0.052139774, -0.02645172, 0.0036636093, 0.028992875, -0.0003826546, 0.017932922, 0.006086265, 0.004127732, -0.020869076, 0.007959216, -0.00051102904, 0.0032603818, -0.025661722, -0.00537856, 0.0056583504, -0.015154768, -0.018946752, 0.006629388, -0.010375288, 0.0014606707, 0.0033871103, -0.013113943, 0.013212693, 8.2085586e-05, 0.018104088, -0.011784116, -0.046425465, 0.011422034, 0.014233105, -0.019210083, -0.0073930514, -0.038788833]" 22427334,"Mapping Coronavirus, Responsibly",https://www.esri.com/arcgis-blog/products/product/mapping/mapping-coronavirus-responsibly/,681,1582751263,166,three14,"[0.021257928, 0.0034413175, 0.01603296, -0.046202507, 0.018141512, 0.0148129165, -0.03150894, -0.009415551, -0.0045851083, -0.03970445, -0.0065411557, 0.023326697, -0.023432788, 0.015184234, 0.00028574042, 0.01733257, 0.036415637, -0.0031147571, -0.0044723866, -0.018313909, -0.026390066, 0.0074396115, 0.013029266, -0.0007418062, -0.046494257, 0.024493694, 0.022371879, -0.011590411, 0.0148129165, -0.0012573408, 0.011252247, -0.00023020856, -0.013572981, -0.030739784, -0.00495311, 0.0053608967, 0.018287387, -0.02296864, 0.007923651, -0.02316756, -0.010277538, 0.010217862, -0.006982095, -0.018937193, 0.011822484, 0.012810454, 0.0004123448, -0.024135638, -0.005801836, 0.023207344, 0.043311536, 0.04010229, -0.027450973, -0.018632183, -0.0112854, -0.025103716, 0.00018410469, -0.010947236, 0.0152770635, -0.034930367, 0.01763758, 0.006365443, -0.026615508, 0.004989579, -0.017372355, -0.027185746, -0.028458834, 0.010191339, 0.031243715, 0.004784028, 0.033100303, 0.027238792, 0.024546739, 0.012034666, 0.023724535, -0.014481382, -0.0132480785, -0.008991188, 0.0061366847, 0.012863499, -0.006514633, -0.03188026, 0.005486879, 0.020223543, 0.014043759, 0.0112854, -0.0023837257, 0.04368285, 0.0070351404, -0.0025345734, -0.009123801, 0.0015971626, 0.019480908, -0.003514255, -0.007492657, 0.0023356534, 0.0132348165, 0.015316847, -0.015966652, -0.026363542, -0.01693473, -0.0042933584, -0.031933304, -0.0151179265, -0.010861037, 0.010648856, 0.022212744, -0.0023953295, 0.027795767, -0.010900821, -0.016550152, 0.0085469335, 0.0073733046, -0.026217667, -0.0015233963, -0.020037884, 0.012260108, -0.0107350545, 0.00811594, 0.010032203, 0.0205816, 0.009614471, 0.017345833, -0.008341382, 0.027663155, 0.012883391, -0.013486782, -0.0009573029, 0.026615508, -0.022318834, 0.008845313, 0.023737798, 0.00599081, 0.018260865, -0.009813392, 0.012260108, 0.006007387, -0.0101117715, -0.008573456, -0.026947042, 0.020674428, 0.0099393735, 0.006050486, -0.0047077755, -0.028034471, 0.015780995, -0.0025494925, 0.025567863, 0.017345833, 0.0083877975, 0.023406263, 0.0032788662, 0.010536134, -0.0066373004, -0.0009962581, 0.0071810153, -0.013897884, -0.0062626675, 0.0044591255, -0.034293823, 0.0124590285, 0.023194082, -0.008672916, 0.013208294, 0.013128726, 0.033816416, 0.004091123, -0.0039054644, 0.0013095572, 0.010251015, -0.0209927, 0.029413652, -0.015820777, 0.00480392, 0.010841145, 0.010801361, -0.01851283, 0.0205816, -0.010204601, -0.012843607, 0.009548164, 0.012903283, 0.013778532, 0.013201663, -0.029731924, 0.0030749731, 0.024493694, -0.0003166145, -0.0051420843, -0.046759482, 0.014362031, 0.0046083154, 0.010058726, -0.012903283, -0.6335738, -0.008341382, 0.005665907, -0.013208294, -0.029493218, -0.028564924, 0.0037297518, 0.015900346, -0.009760346, 0.020170497, -0.0031827216, 0.0072605833, -0.0023240498, -0.028034471, -0.035460822, -0.00930946, -0.007366674, 0.0018681912, -0.00077288743, 0.01762432, -0.017558014, 0.015568812, -0.010436675, 0.016006436, -0.01851283, 0.02376432, 0.011597041, -0.006156577, 0.011855638, 0.041242767, -0.034108166, 0.0076650544, 0.011238985, -0.017982377, 0.038961817, -0.022942116, -0.011736286, 0.025010886, 0.009369137, 0.035116028, -0.033445098, -0.023034947, 0.025461772, -0.007691577, -0.007466134, -0.0024699245, 0.0035772463, -0.013009374, 0.008281707, -0.008208769, -0.022942116, 0.004900065, -0.029307561, 0.005165292, 0.029466696, -0.0035275163, -0.0073268902, -0.005911242, 0.031111103, -0.0036269764, 0.007174385, 0.00470446, -0.0066671385, -0.003723121, -0.028458834, 0.035407778, -0.008109309, -0.0040447083, 0.004542009, 0.011391491, -0.00027828093, 0.013128726, -0.011093111, -0.040128812, 0.008241923, 0.037768293, 0.0261381, -0.031641554, 0.00032759653, -0.02742445, 0.006789806, 0.010204601, -0.019719612, 0.0107881, 0.004979633, -0.0059676026, -0.024493694, -0.00075133773, 0.0058383048, 0.021775119, -0.0133939525, 0.012545227, -0.016510367, -0.021748597, 0.006909158, 0.0148527, 0.009269676, 0.005357581, 0.016483845, -0.00890499, -0.014388553, -0.028644493, 0.024016285, 0.030341946, 0.0035606697, 0.0030617118, -0.020541815, -0.0020571654, 0.04405417, -0.0144946445, 0.004929903, 0.00045875946, -0.015953392, -0.0052912743, 0.038961817, -0.018101728, 0.002173202, 0.014202895, 0.009302829, -0.0047309827, 0.05362886, -0.0014081885, 0.008646393, -0.009820022, -0.016762333, -7.547567e-05, 0.00052879594, 0.0112854, -0.010814622, -0.027000086, 0.012777301, -0.016258402, 0.013831577, -0.0024251675, 0.01771715, -3.3962756e-06, 0.015064881, -0.011895422, -0.0076186396, -0.0040181857, -0.011974989, -0.02327365, 0.011119633, -0.022146437, -0.008619871, -0.011126264, -0.0062527214, -0.005901296, 0.017054083, -0.016205357, -0.016576674, -0.02434782, 0.00420716, 0.019255465, 0.034399915, 0.02465283, 0.008984557, -0.0073998272, -0.022597322, -0.022066869, 0.014282462, 0.02840579, -0.022106653, -0.004910011, 0.018844364, -0.016258402, -0.00049978675, 0.028538402, -0.006120108, -0.031455897, 0.008122571, 0.0022942116, -0.0053642117, 0.05179879, -0.0020919763, 0.019865487, -0.027636632, -0.005384104, -0.0035009936, -0.017650843, 0.01733257, -0.0036402377, -0.012432505, -0.035381254, 0.012061188, -0.010900821, 0.004724352, -0.007320259, -0.020939656, 0.021602722, 0.020064406, 0.031031534, -0.018552614, 0.008845313, 0.012631426, 0.010330584, -0.0108941905, -0.003454579, 0.0063389204, 0.007844082, 0.017611058, 0.021112053, -0.0059874947, 0.0056957453, 0.03307378, -0.019043284, 0.004475702, -0.027053133, -0.010668747, 0.023313435, 0.01842, -0.026111577, -0.02782229, -0.0034910475, -0.0055465554, 0.013513305, -2.5007468e-05, 0.0075655943, -0.022782981, 0.009720562, -0.014070281, -0.00673013, 0.026164623, 0.004760821, -0.000117694384, 0.01405702, 0.0061632073, 0.0147996545, 0.003603769, -0.034108166, -0.01564838, 0.015157711, 0.008772376, 0.002068769, -0.0011404752, 0.019255465, 0.011550627, -0.018313909, 0.0031014958, 0.0083811665, 0.0016153969, 0.020647906, 0.011822484, -0.008427581, 0.002786539, 0.023525616, 0.035301685, -0.0068163285, -0.0026390066, 0.032596372, -0.016497105, 0.012989482, -0.006166523, -0.012127495, 0.01208108, -0.024705876, -0.014879223, 5.9572423e-05, 0.043417625, 0.031217193, 0.010065356, -0.00390878, -0.016364492, -0.019335033, -0.0058283587, -0.01851283, -0.014401815, -0.027742723, -0.018473046, 0.026323758, 0.0020422463, -0.0057554212, -0.0014446572, -0.008871836, -0.01039689, 0.004919957, -0.001999147, -0.020608122, 0.016722549, 0.03710523, -0.019719612, -0.018870886, 0.015091404, 0.010973758, -0.011318553, -0.024082592, -0.034903847, -0.007936912, -0.037184797, -0.012094341, -0.0082220305, -0.0015905319, 0.024838489, 0.008082787, -0.0019693088, 0.0020472193, -0.00067425624, 0.012909914, 0.0016551809, 0.010967128, -0.0010924028, -0.0020521923, -0.002098607, -0.022623844, 0.0419854, 0.015237279, 0.016178833, -0.013884623, -0.018340433, -0.02633702, 0.0044259722, -0.023817366, 0.0013277916, 0.011298661, 0.0066107777, 0.017080605, -0.0073600435, -0.005307851, 0.0040546544, -0.00648148, -0.006803067, -0.035222117, 0.002431798, -0.011000281, 0.08100026, 0.0008744196, 0.0035275163, 0.007810929, -0.021231404, 0.013526566, -0.03930661, -0.043841988, 0.0072937366, 0.011099741, -0.025183283, -0.0035407776, 0.023499094, -0.015316847, 0.029652355, 0.0061234236, 0.011935205, -0.021549677, -0.00891162, 0.018778056, 0.0062626675, -0.016178833, 0.03150894, 0.03612389, 0.020117452, 0.017385617, 0.02811404, 0.012890022, -0.014322246, -0.0015797571, -0.016987776, 0.021775119, -0.012585011, 0.025063932, -0.01693473, 0.032649416, -0.0033832993, -0.016298186, 0.021669028, 0.00920337, 0.018486308, 0.029731924, 0.0069754645, -0.012485551, -0.013228186, 0.010522873, -0.0031479103, 0.004512171, 0.0014637203, -0.0020538499, 0.00029423597, -0.017902808, -0.009150324, -0.02753054, -0.011026803, -0.005496825, 0.008102679, -0.016351232, -0.024467172, -0.03206592, -0.007870605, 0.0015018467, -0.0037164905, -0.002561096, -0.008361274, -0.015104665, 0.00010940605, -0.009780237, -0.020024622, -0.0132348165, 0.016152311, -0.05148052, -0.0028346113, -0.011464428, 0.018327171, 0.0088519445, 0.021377278, -0.00091005943, 0.0047773975, 0.012691102, 0.008082787, -0.025262851, -0.025408726, -0.040367518, -0.010376998, 0.016417539, -0.014375292, -0.012067819, -0.0062925057, 0.012730886, -0.0020604806, -0.017783456, 0.02287581, -0.006060432, 0.0124590285, 0.029731924, 0.0033401998, 0.029334083, 0.013685702, -0.029652355, -0.010357106, -0.030050196, -0.01405702, -0.0070417714, 0.023989763, -0.020913132, -0.0073401514, -0.0042900434, -0.002786539, -0.03872311, 0.013321015, -0.027318358, 0.011935205, 0.0083877975, -0.004419341, 0.0073600435, 0.0297054, 0.02861797, -0.00093823974, -0.01434877, -0.017504968, -0.0040248167, 0.004621577, 0.030554127, -0.015674904, 0.031164147, -0.0066803996, -0.014415076, -0.01771715, -0.016019698, -0.008991188, 0.024029547, 0.0062029916, -0.0010468169, -0.023804104, -0.016775595, 0.020820303, 0.011577149, -0.006454957, 0.012008143, 0.0009490146, 0.016152311, 0.0015457749, -0.01763758, 0.018380217, -0.031906784, -0.00016162258, 0.02345931, 0.007446242, 0.0052183373, -0.013446998, 0.00440608, -0.007432981, -0.012187171, -0.010814622, -0.015290325, 0.01168324, -0.010071987, 0.014282462, 0.016762333, 0.04018186, 0.017677365, 0.030341946, 0.010556026, 0.004419341, -0.00292081, 0.0016924784, -0.00445581, -0.023631707, -0.002493132, 0.0030617118, 0.013844838, -0.025673954, -0.002905891, -0.009654256, 0.000157582, -0.011630194, -0.008725962, 0.010900821, -0.0374235, -0.032410715, 0.015727948, 0.0034512635, 0.014149849, -0.039943155, 0.0068561123, 0.034267303, -0.014043759, 0.024361081, -0.0043033045, 0.014110065, 0.00911054, 0.025196545, 0.010562656, 0.005655961, -0.015727948, 0.0023986448, -0.03612389, 0.017107127, 0.019892009, 0.013685702, 0.012505443, 0.0074992874, -0.0016891632, -0.0014720086, 0.029148424, 0.0016808747, 0.0076783155, 0.0045851083, -0.021059006, 0.0046514147, -0.023552138, -0.006471534, -0.0107284235, 0.006633985, -0.01921568, -0.0057056914, 0.026111577, -0.0215762, -0.031005012, 0.007141231, 0.024666091, 0.023684753, 0.0060637477, 0.03333901, 0.012067819, -0.013420476, -0.008805529, -0.006100216, -0.009256415, -0.0011868898, 0.012691102, -0.018194558, -0.0011487636, -0.027610108, 0.006130054, -0.0017488392, 0.014229417, -0.030235853, 0.025872873, 0.03050108, -0.0032175325, -0.023286913, -0.0043596653, -0.025249591, 0.005622808, -0.025302636, -0.017133651, -0.0033269385, -0.018008899, -0.016192095, 0.01682864, -0.0051520304, 0.020130713, -0.020329634, -0.012704363, -0.012432505, -0.043523718, -0.015568812, 0.0041076997, 0.020966178, -0.0037861124, -0.024467172, 0.025819829, 0.029174946, 0.037768293, -0.015515767, -0.0038325272, -0.02375106, 0.029307561, -0.007810929, -0.015170973, -0.0044723866, -0.011616933, 0.0061930455, -0.0026854211, -0.01069527, -0.046971664, -0.0047409288, 0.0008056264, 0.043815464, -0.0015839012, -0.002885999, -0.03177417, -0.0032722356, -0.016576674, -0.005655961, 0.011756177, -0.0017753618, -0.0076451623, -0.004591739, 0.021523153, -0.012386091, 0.017173434, -0.005778629, -0.0051818686, -0.0023704644, 0.0105759185, -0.018857624, 0.006882635, 0.034426436, -0.0012299892, -0.040818404, 0.0069622034, -0.015966652, -0.019480908, -0.0055697626, -0.003918726, -0.021934256, -0.02702661, 0.019825703, 0.02217296, -0.0052614366, -0.0017737042, 0.0129231755, -0.0016245141, -0.0034678404, -0.028246652, -0.019573737, 0.027318358, -0.0074992874, 0.022318834, 0.00762527, -0.0063057668, 0.022000562, -0.04227715, 0.0030484505, 0.017836502, -0.033153348, -0.020833565, -0.0076186396, 0.025262851, -0.019878747, 0.0074528726, -0.020833565, 0.0066571925, -0.013214924, 0.014322246, 0.0006692832, 0.01910959, 0.03304726, -0.014003974, 0.004959741, 0.001680046, -0.03137633, 0.00031184868, -0.022332096, -0.0036203456, -0.010430044, -0.0029639094, -0.0010327268, 0.03405512, 0.022451447, -0.015383154, -0.049650457, -0.0029191524, -0.040844925, -0.02981149, 0.006445011, 0.005771998, 0.023446048, 0.018831102, 0.0011081507, 0.0010783126, -0.000603391, 0.00032573164, 0.0018549298, -0.012313154, -0.0071213394, -0.031455897, 0.007267214, -0.010078618, -0.03652173, -0.015330109, 0.014879223, 0.00673013, -0.003484417, 0.03790091, -0.016709289, -0.0014032155, -0.013990713, 0.022318834, 0.006385335, 0.013287862, 0.0030932075, -0.042887174, 0.0046646763, 0.025726998, 0.023591923, -0.0046746223, -0.006471534, -0.011265508, -0.0015192522, -0.0018582452, 0.009660886, -0.015475983, -0.0010998624, -0.014136588, 0.031349808, 0.016218618, -0.0056725377, 0.03347162, -0.00015354145, -0.006315713, -0.0067467066, -0.0075324406, -0.018459784, 0.018791318, 0.011769439, -0.008944773, 0.012087711, 0.008825421, 0.0051752375, 0.00831486, -0.010569287, -0.018539352, -0.023923457, -0.028750584, 0.029970627, 0.015449461, -0.004339773, 0.00782419, 0.0138580995, -0.034903847, -0.01869849, 0.0069622034, -0.0035507237, 0.0061134775, 0.011079849, -0.0004985435, 0.006842851, -0.0036269764, 0.0026108262, 0.022133175, -0.0043895035, 0.0020306427, 0.22194178, 0.004170691, 0.01137823, -0.0022710045, -0.01861892, 0.0174254, 0.019228943, 0.024732398, 0.011146156, -0.022226006, -0.006653877, 0.015780995, -0.010317322, 0.0054404647, 0.0155820735, -0.027769245, -0.02139054, -0.020488769, -0.004522117, 0.024069332, -0.0041043847, -0.010509611, -0.026204407, -0.026854213, 0.029493218, 0.010085248, -0.018592399, 0.004644784, 0.03633607, 0.009243154, -0.010648856, -0.0010136636, -0.0036203456, 0.02811404, -0.034108166, 0.010569287, 0.0414019, 0.00045171438, 0.014216156, -0.0009075729, -0.005947711, 0.0036899678, 0.008891728, 0.0054470953, 0.042515855, -0.0004204259, -0.002861134, 0.0060637477, -0.009276307, 0.0052415445, 0.0036866523, -0.022318834, -0.0028694223, 0.032357667, -0.010622333, -0.0050824084, 0.01693473, 0.0073998272, 0.002537889, 0.00053335447, -0.0077777756, -0.0034015335, 0.016165573, -0.00038913742, -0.036919568, 0.029334083, 0.0002822179, 0.012306523, 0.002766647, -0.015422937, -0.0073799356, -0.0009175189, 0.0032374244, -0.010038834, 0.005960972, -0.018870886, 0.037503067, -0.0051155617, 0.025421988, 0.008056263, 0.008798899, 0.006594201, -0.013453629, -0.01780998, -0.014189634, -0.029307561, 0.035752572, 0.009727192, -0.029042333, -0.0003812635, -0.008672916, -0.0102642765, -0.018486308, -0.007784406, 0.0013029266, 0.013486782, 0.005075778, 0.0041507995, -0.008341382, -0.012213694, -0.008188877, 0.039439224, 0.017584536, -0.019480908, 0.0064516417, -0.012439136, 0.00643838, 0.008752484, 0.016775595, -0.011504212, 0.0031595142, -0.052010972, 0.008434212, -0.004542009, -0.007094817, 0.020952916, 0.024135638, -0.0076451623, 0.0027517278, 0.0009639336, -0.017955855, -0.038882248, 0.0074793953, 0.012624796, -0.0013982424, -0.0042303675, -0.011238985, 0.019892009, -0.034638617, -0.0033617495, 0.008679546, -0.017067343, -0.0042999894, -0.023711275, 0.0018599029, -0.017902808, 0.005148715, -0.015290325, -0.01009851, -0.0028843414, 0.00014732519, -0.017756933, 0.024400864, -0.0116699785, 0.004117646, 0.025833089, -0.011325184, 0.011172678, 0.012021404, -0.013062419, -0.008653024, -0.011868899, 0.015091404, -0.019640043, 0.009508381, -0.00087110425, -0.013195033, -0.008825421, 0.0072141686, -0.00078366225, -0.006968834, 0.018950455, 0.039492268, -0.020952916, -0.0039154105, 0.00069953565, -0.1668807, 0.02148337, 0.013659179, -0.019189158, 0.010410151, 0.008182246, 0.014415076, -0.014826178, -0.014839439, -0.008666285, 0.028591448, -0.009892959, -0.017571274, -0.0068760044, 0.017239742, -0.008666285, -0.0034910475, 0.0032026134, 0.037794817, 0.03020933, 0.03209244, -0.018154774, 0.024931319, 0.0043596653, -0.0014678645, -0.0010849433, 0.007001987, 0.040712312, -0.0074595036, -0.027504018, -0.0065477863, -0.031827215, 0.0414019, 0.0025478348, -0.0050857235, -0.0032821815, -0.017836502, -0.024400864, -0.01594013, 0.012591641, 0.01751823, 0.002217959, 0.0005942738, -0.007976696, -0.009720562, 0.034267303, 0.0072340607, -0.015237279, 0.01514445, -0.0072141686, -0.006256037, -0.010071987, 0.013294493, 0.018433262, 0.018327171, 0.003563985, 0.0065212636, 0.011504212, 0.004329827, -0.018247603, -0.033524666, -0.010602441, 0.005848251, -0.010900821, -0.0061433157, -0.0074595036, -0.022637106, 0.017107127, -0.01592687, 0.017743671, -0.037290886, 0.015409676, 0.002945675, -0.022186222, -0.0018814525, 0.011703132, -0.021602722, 0.009475227, 0.027504018, 0.0036170303, -0.011716394, 0.014123326, -0.02028985, -0.019162636, 0.0010327268, -0.012273369, -0.014043759, 0.018327171, -0.006100216, 0.007147862, -0.0044624405, -0.01762432, -0.01681538, -0.008580087, 0.018101728, -0.00010220556, 0.025912657, -0.0029539634, 0.01733257, -0.032914646, 0.012399352, 0.0045784772, -0.012525335, -0.0019742819, 0.036999136, -0.013513305, 0.009442073, 0.007784406, 0.020077668, 0.012936437, -0.014640518, 0.006740076, 0.024241729, -0.008699439, -0.0065212636, 0.033126827, 0.006209622, -0.00017830286, 0.015104665, 0.012704363, 0.0348508, -0.0075987475, -0.019467646, 0.0021201565, -0.018565875, -0.0073799356, -0.11871551, -0.014123326, 0.0082286615, 0.018154774, -0.008149093, 0.0399962, -0.0012291603, -0.0027517278, -0.025024148, 0.03561996, -0.034903847, -0.033153348, -0.0083745355, -0.011238985, 0.016881686, -0.012478921, -0.009335983, -0.00162037, 0.0048569655, 0.014123326, 0.0067699137, -0.039837062, 0.0049829483, -0.013228186, 0.010277538, -0.011849007, -0.015555551, 0.017359093, 0.0006270127, -0.0023157613, -0.0091569545, -0.014985314, 0.0014877565, -0.011557258, 0.00026460516, -0.020727474, -0.02633702, -0.009912851, 0.01534337, -0.038935293, 0.0066472464, 0.019560475, -0.0155820735, -0.012624796, 0.0031247032, -0.021761859, -0.02564743, 0.025713738, 4.91084e-05, -0.009773607, -0.026204407, -0.03328596, -0.016802117, -0.005917873, 0.0020140659, -0.011915313, -0.02445391, -0.016457323, -0.0132348165, 0.010323953, 0.002786539, -0.021775119, -0.03386946, 0.00648148, 0.02169555, 0.0073600435, -0.018128252, 0.00044674138, 0.027053133, -0.020263327, -0.043576762, 0.016855162, -0.014189634, -0.0138713615, -0.02463957, 0.004565216, 0.009495119, 0.0148527, 0.049756546, 0.0009365821, -0.01652363, -0.007061663, 0.013035896, -0.031164147, 0.034903847, 0.022809504, -0.006842851, 0.019679828, -0.0025975648, -0.045088556, 0.019268727, 0.023525616, -0.0002215058, 0.0007471936, -0.0010459882, 0.026283976, 0.004362981, 0.01237946, -0.012233586, 0.008089417, -0.028724061, -0.018976977, -0.038855724, 0.001081628, 0.015409676, -0.0067599677, -0.013805054, -0.00071569794, -0.0057388446, -0.012896652, 0.012657949, -0.01733257, -0.011364968, -0.005403996, -0.021364018, -0.0062593524, -0.04744907, -0.02168229, 0.02028985, 0.00041379523, 0.022716675, -0.0049166414, -0.013572981, 0.012008143, -0.014070281, 0.0026671868, -0.008076156, 0.0020306427, 0.012717624, 0.028379267, -0.008858575, -0.026363542, 0.01960026, -0.0015979914, 0.006673769, 0.012803824, -0.0031313337, -0.033498142, 0.0038623651, 0.014945529, 0.02059486, 0.04927914, -0.008626501, -0.020316372, 0.011902052, -0.0055697626, -0.020661168, 0.010927344, -0.003229136, 0.011557258, -0.0027384665, -0.015330109, 0.021509893, 0.011948467, -0.026323758, -0.0063820197, -0.0011694843, -0.02059486, 0.0155953355, 0.04137538, 0.00037774097, -0.0027567009, 0.04394808, 0.05872121, -0.00663067, -0.0061499462, -0.0028594763, -0.007983326, -0.028379267, -0.003998294, -0.016218618, -0.018725011, -0.004963056, 0.0011263851, 0.010655486, 0.0028296383, 0.023446048, -0.010529503, 0.0044823326, 0.0028047734, -0.011179309, 0.012518705, -0.0023638338, 0.0018615605, -0.036574773, 0.015502506, 0.017465184, 0.004545324, 0.010363737, 0.015913608, -0.015714686, 0.019361556, -0.013526566, 0.008255184, -6.428642e-05, 0.015661642, -0.019308511, 0.009362506, -0.007837452, 0.036627818, 0.029413652, 0.019732874, 0.024599785, 0.008361274, -0.008420951, -0.021655768, -0.034426436, -0.0057554212, -0.024984363, -0.012008143, 0.0085403025, 0.043285012, -0.0024682668, 0.0021499947, 0.007492657, -0.018473046, 0.008420951, 0.019268727, 0.010012311, 0.009150324, -0.026204407, 0.0140172355, 0.008454104, -0.026893996, -0.018857624, -0.013294493, 0.015860561, 0.0035275163, 0.029413652, -0.022358619, 0.010801361, -0.018234342, 0.010078618, 0.0062726135, -0.008871836, -0.02080704, -0.016351232, 0.010662117, 0.012783932, 0.010940605, -0.004793974, 0.06323007, 0.017345833, -0.010469828, 0.016775595, -0.0052415445, 0.025276113, 0.014680303, -0.0006489768, -0.0020505346, -0.03633607, 0.019202419, 0.012359568, -0.011643456, -0.016152311, -0.0024732398, 0.023618445, -0.0070351404, 0.008931512, -0.02981149, 0.033418577, 0.031455897, -0.0017123704, 0.033498142, 0.03010324, -0.030951966, 0.0065975166, 0.017650843, 0.0132348165, -0.011716394, -0.0079103885, -0.01604622, 0.01583404, -0.048377365, -0.02247797, -0.0017571275, -0.01287676, -0.002841242, -0.023485832, 0.024838489, 0.018168036, 0.005904611, 0.019321771, -0.019573737, -0.029970627, -0.017478446, -0.02109879, 0.018061945, -0.030315422, -0.014043759]" 20603908,Why Developers Hate Coding Skills Tests and What Hiring Managers Can Do,https://hackernoon.com/why-developers-hate-coding-skills-8m6u3za1,115,1564882305,117,rmason,"[0.0027929705, -0.00011591169, 0.026984498, -0.03597933, -0.018808618, 0.014782099, -0.007855123, -0.0140313925, -0.021825094, -0.014181534, 0.0056678364, 0.00904943, 0.014468167, -0.009957102, -0.02086965, -0.009083552, 0.034259528, -0.011342498, 0.00088634586, -0.011779272, -0.031993758, -0.0031410255, -0.0072886804, 0.003439602, -0.026998146, 0.015955932, 0.013089596, -0.014167884, -0.0093155885, 0.011506288, 0.019613922, 0.014099639, -0.012400311, -0.00425173, -0.035569854, -0.016092423, -0.010973969, -0.0040606414, 0.023503948, 0.0069952225, 0.037125863, 0.022343764, -0.016706638, -0.03390465, 0.0041937213, 0.014331675, -0.026370283, -0.036579896, -0.003180267, 0.03144779, 0.014918592, -0.001102174, -0.03546066, -0.011192356, 0.0063878326, -0.012400311, -0.00043848102, 0.011792921, 0.013703811, -0.007875597, -0.0035214974, 0.009144974, -0.015437261, -0.0031290825, 0.0014903236, -0.007575314, -0.0136628635, 0.011833869, 0.0051286924, -0.010878424, 0.025797015, 0.013758408, 0.016815832, 0.029127425, 0.039118648, -0.0029704103, -0.017662084, -0.011615481, 0.012038607, -0.015409963, 0.0030403626, -0.025264695, -0.029455004, 0.024391146, -0.0044325823, 0.021333722, -0.00808716, 0.02587891, 0.012113678, -0.01878132, -0.0140313925, 0.014481816, 0.017143413, 0.007868772, -0.0104484735, 0.002293068, -0.004821585, 0.0111855315, -0.018958759, -0.01807156, -0.016119722, 0.0024329724, -0.021306423, -0.0053709657, -0.025237398, 0.0147957485, -0.0023903188, 0.0028356244, 0.013969971, -0.012680121, 0.009240518, 0.01876767, -0.0062069804, 0.00095800427, -0.0056064148, -0.02780345, 0.0106600365, -0.011472165, -0.0036887003, -0.016542848, 0.030082868, 0.001674588, 0.02451399, -0.0399922, 0.024104513, 0.032075655, -0.02519645, -0.0061114356, 0.015682947, -0.00746612, 0.034450617, 0.0018307009, 0.010455298, -0.00075667835, -0.015041434, -0.0049410155, -0.021456566, -0.0015261528, -0.0029482304, -0.018126156, 0.0119498875, 0.00044658524, 0.0065686847, -0.0062786387, 0.002202642, 0.022630397, 0.013669688, 0.01861753, 0.026165545, -0.011226479, -0.016706638, -0.016597444, -0.008469338, 0.0100799445, -0.002450034, 0.010359754, -0.00712489, 0.013007701, -0.018003315, -0.017047869, -0.0027724968, 0.008899288, 0.011676903, -0.0070975916, -0.004214195, 0.029263915, 0.042476356, 0.0028168566, 0.01407234, -0.01771668, -0.015928634, 0.018699424, -0.047035195, 0.043377202, 0.015082382, -0.011492639, 0.00076819485, 0.015955932, -0.009615872, -0.018249, 0.015246172, 0.009383835, 0.030819926, 0.036579896, -0.0014323144, -0.01094667, 0.003405479, 0.011165057, -0.023544895, -0.017771278, 0.010612264, 0.0022640636, -0.00582139, -0.019095251, -0.6237145, -0.033112995, 0.008216827, -0.01565565, 0.0011559179, -0.0011866286, 0.030710733, 0.002013259, -0.0017931656, 0.03507848, -0.0004935044, 0.030601539, -0.009015306, 0.006169445, -0.026697863, -0.0069542746, 0.028226575, -0.03947353, 0.0067529487, 0.017771278, -0.022644047, 0.008715023, -0.020091644, 0.0010526957, -0.007834649, 0.006520912, -0.011738325, 0.0035283219, -0.013724285, 0.028581455, -0.034123037, 0.027953591, -0.0058964607, 0.008107633, 0.05716291, -0.018890513, -0.031120209, 0.022521203, 0.004487179, 0.023913424, -0.034532513, -0.0113970945, 0.006135322, 0.021906989, -0.008407916, 0.012106854, 0.021511162, 0.016201617, -0.010032172, -0.01232524, -0.0165019, -0.012796138, -0.020610314, 0.005033148, -0.005367554, -0.02570147, -0.0032672808, -0.03371356, -0.012570927, -0.01337623, -0.005381203, 0.037999414, -0.020391926, -0.038026713, -0.026602319, 0.033331383, 0.028390367, -0.025483083, 0.0010441649, -0.007472945, 0.005046797, 0.006316174, -0.00642878, -0.0012557277, 0.0072204345, 0.03253973, 0.054132786, -0.012864385, 0.027407622, -0.0054323873, 0.025442136, -0.019941503, 0.0077800523, -0.014331675, 0.014891293, 0.0008125548, -0.03789022, -0.026725162, 0.0061592082, -0.012168275, 0.0107897045, 0.033795454, -0.026042702, -0.021852393, 0.019518377, 0.0417393, -0.011772447, 0.01460466, 0.047663055, -0.03627961, -0.017443696, -0.023162717, 0.025223749, 0.0012386662, 0.01424978, 0.010393877, 0.012987227, -0.0019484254, 0.033467874, -0.019586623, -0.0009639758, -0.02451399, -0.005046797, -0.013963146, 0.006227454, -0.02934581, -0.012448084, 0.0062069804, -0.013410353, -0.024241004, -0.016460953, -0.014481816, 0.0075889635, -0.021784147, -0.015328068, 0.018876864, -0.0023101296, 0.024281953, -0.0049034804, 0.0010100419, -0.018167105, -0.028608754, 0.008271424, 0.0037842446, -0.0049341912, -0.00086373935, 0.00061421463, -0.015887685, -0.008810568, -0.020842351, -0.0066608167, -0.032785412, 0.004596373, -0.005978356, 0.0045042406, -0.009417958, -0.021770498, 0.016024178, 0.015041434, 0.010100419, -0.015942283, 0.0076026125, -9.325186e-05, 0.010114068, -0.01565565, 0.00038729646, -0.0011780978, -0.04217607, -0.02222092, -0.041684702, -0.016283512, 0.01771668, -0.03196646, -0.011246953, -0.00516964, -0.020282732, 0.00408794, -0.0053470796, -0.030601539, -0.018112509, -0.00051867013, 0.0032792238, -0.011308374, 0.009861558, 0.0012907039, 0.014700204, -0.01995515, -0.0012471969, 0.006319586, -0.021879692, 0.01878132, 0.014208833, -0.02918202, -0.027257482, 0.03109291, -0.0015867212, 0.0144272195, 0.026643267, -0.00939066, 0.014836696, -0.013608267, 0.0045827236, -0.01547821, 0.010032172, -0.030628838, 0.016228916, 0.0019347762, 0.018549282, -0.017430047, 0.018958759, 0.0054255626, 0.009861558, 0.0023800817, 0.019013356, -0.003685288, -0.011206005, 0.010059471, -0.013287511, 0.015491858, 0.02762601, -0.0071726623, -0.01753924, 0.013594618, -0.02466413, -0.0117315, 0.012038607, -0.008189529, 0.024473041, -0.008619479, -0.0019143024, 0.024705078, -0.030683434, 0.031229403, 0.0021668128, 0.017293556, 0.02762601, -0.005585941, 0.007247733, 0.0132397385, -0.016965974, -0.005483572, 0.00044402602, 0.0070429947, -0.0013546846, 0.039555423, 0.023422053, 0.01424978, -0.030082868, 0.037316952, 0.002910695, 0.006036365, 0.019709466, 0.004944428, -0.012168275, 0.043732084, 0.0053709657, 0.049410157, 0.004845471, -0.005336843, 0.02970069, 0.005295895, 0.013560494, -0.0088924635, 0.0042107827, 0.030000973, -0.005609827, 0.016256215, 0.0075957878, 0.014222481, 0.01424978, 0.008626304, 0.010257385, -0.008025738, -0.015096031, 0.01929999, -0.0098956805, 0.011874816, -0.020965194, -0.0044598808, -0.03840889, -0.019532027, -0.011206005, -0.004923954, 0.018467387, -0.0069406256, 0.0009742127, -0.007916545, 0.004347275, -0.0023988495, 0.01199766, -0.012686945, -0.02729843, 0.01927269, 0.022971628, -0.008721848, -0.01371746, -0.0087354975, -0.013144193, -0.0063093496, 0.004719216, 0.015546455, -0.015396314, -0.018713074, 0.0014587598, 0.015723895, 0.014290728, 0.030273957, -0.011260602, -0.008414741, -0.0045042406, 0.020364627, -0.0013947791, -0.022152675, -0.013021351, 0.04242176, -0.003349176, -0.03857268, -0.017484644, -0.014386272, -0.011130935, 0.012011309, -0.0057838545, -0.0055245194, 0.015014136, 0.019532027, -0.01928634, -0.010380228, -8.200192e-05, 0.009963927, -0.0048420588, -0.010441649, -0.02276689, -0.0111855315, 0.02920932, 0.12633713, 0.016392706, -0.0165019, 0.0135058975, -0.0036955248, 0.0018409378, -0.024691429, -0.03789022, 0.034095738, -0.003709174, 0.011833869, 0.00052421517, 0.00690309, -0.009247343, 0.006360534, 0.007752754, 0.020091644, -0.010148191, -0.0016890903, 0.005937408, -0.02103344, 0.018904163, 0.009629521, 0.002078093, 0.0452062, -0.004145949, 0.015246172, 0.032621622, -0.010100419, -0.0022384713, -0.019941503, 0.0016728819, -0.009172272, 0.016310811, -0.0061421464, 0.056616943, 0.00016208443, 0.011144584, 0.0138744265, -0.00789607, 0.007356927, 0.020596664, 0.008319196, 0.005753144, 0.01651555, -0.010032172, -0.00067393, 0.04220337, -0.029564198, -0.020583015, 0.020173538, 0.010673686, -0.035924733, -0.0111855315, -0.01094667, -0.008196353, 0.009752364, -0.0073842253, -0.00817588, -0.027516816, -0.018112509, -0.03371356, -0.006203568, -0.0060670758, -0.015874036, -0.005374378, -0.006865555, -0.02344935, -0.008353319, 0.0052071754, -0.008476162, -0.024418445, -0.042885832, -0.009452081, 0.036388807, 0.008571707, 0.013765233, 0.017976016, -0.0057156086, -0.0042756163, -0.013007701, -4.390675e-05, 0.017430047, -0.016979624, 0.00040542433, 0.010366579, -0.019668518, 0.008053036, 0.009397484, 0.017361801, 0.0057599684, 0.0074251727, -0.012093204, -0.0012821731, 0.054460365, 0.030164763, 0.0049956124, 0.015573754, 0.00869455, -0.01278249, -0.01512333, -0.03617042, 0.00043336255, -0.021088036, 0.008544409, 0.018139806, 0.018412791, 0.007957492, -0.0027161937, -0.017675733, 0.008755971, -0.016228916, 0.005780442, 0.0021326898, -0.008633128, 0.005469923, 0.0039582723, 0.017525591, 0.013000877, 0.002125865, 0.005712196, -0.035406064, 0.04605245, 0.023899775, -0.017320853, 0.00422102, -0.008332846, -0.04294043, -0.021470215, -0.0134785995, -0.025305644, 0.025319293, 0.022289168, 0.009356537, -0.0067700106, -0.032375935, -0.007090767, 0.019149847, -0.0044667055, 0.0011192356, -0.0016489957, -0.0042005456, 0.0049580773, -0.010230087, 0.035487957, -0.031202104, -0.01980501, 0.0073091546, -0.012632348, 0.022739591, -0.03543336, 0.0075343666, -0.022616748, -0.011369796, 0.0005980062, -0.05486984, -0.00073193916, -0.014727502, 0.030465046, 0.020173538, 0.0028390365, 0.004603198, 0.028636051, 0.012038607, -0.00011836428, -0.008360144, 0.0051423414, 0.0062308665, 0.005384615, 0.01512333, 0.020405576, -0.007834649, -0.01581944, -0.004190309, 0.0076026125, 0.040265184, -0.024568586, -0.019572973, -0.011676903, -0.023735983, -0.017662084, 0.016297162, 0.0073842253, 0.007786877, -0.017293556, 0.012018133, 0.028881738, 0.017771278, 0.031174807, 0.016815832, 0.03286731, 0.0010740226, 0.0061660325, -0.0030796041, 0.027120989, -0.03196646, 0.0020047284, -0.039528124, -0.007937018, 0.023039874, 0.007800526, 0.026179193, 0.013737935, 0.011349322, -0.002305011, 0.023790581, -0.024391146, -0.013137369, 0.010148191, -0.016379058, 0.017293556, -0.02033733, -0.011335673, 0.02587891, -0.031202104, 0.0072682067, 0.021634005, -0.011615481, -0.031120209, -0.026998146, -0.0012045432, 0.013362581, 0.03196646, -0.000418647, 0.038518082, 0.024595885, 0.02866335, -0.029045528, -0.011178707, 0.020801403, 0.005227649, 0.017989665, 0.03161158, 0.006217217, -0.01756654, 0.025578627, -0.004876182, -0.024568586, -0.026465828, 0.008216827, -0.019627571, -0.026984498, -0.018849565, 0.017634785, -0.027557764, 0.021606706, -0.003202447, 0.0043199765, -0.039691918, -0.013444477, 0.008346494, 0.041957684, -0.013396704, 0.014358974, 0.019477429, 0.0050194985, -0.014085989, -0.032021057, -0.01964122, 0.019218095, 0.0060841376, 0.00382178, -0.017703032, 0.0061216727, 0.0042414935, 0.025660524, 0.010598615, 0.008599005, 0.01633811, 0.029782586, 0.006879204, -0.015710246, 0.0075343666, -0.015423613, -0.02189334, -0.016474603, -0.028035486, -0.02571512, -0.0047328654, 0.0036443402, 0.024896167, -0.007356927, -0.009042605, 0.0022231159, 0.012625524, -0.015723895, 0.01648825, -0.010236911, -0.0057940916, -0.017935067, -0.0021207468, -0.019190796, -0.0083669685, 0.0005259213, 0.0048591206, 0.0039036754, -0.018208053, 0.0057258457, -0.00096824113, 0.020064345, -0.007964317, 0.021825094, -0.035679046, 0.0017675733, -0.0140313925, -0.005541581, 0.02450034, -0.020473821, -0.010612264, 0.017334502, -0.008360144, 0.025605926, -0.021975236, -0.00660622, 0.004125475, 0.022316465, 0.0079984395, 0.002820269, -0.023053523, 0.014413571, -0.015259822, 0.0035795064, 0.03387735, 0.012891683, -0.014372623, -0.00730233, 0.0053641414, -0.005937408, -0.037589937, -0.024827922, 0.0123184165, 0.00746612, -0.013922199, -0.019149847, -0.01859023, -0.0018614116, -0.014440869, 0.016297162, -0.0106600365, -0.009486204, 0.00039220165, -0.0047021545, -0.01860388, 0.019422833, -0.010557667, -0.029100126, -0.040920347, 0.011833869, -0.030028272, 0.013758408, -0.030219361, 0.036252312, 0.026329335, -0.012748366, -0.023654088, -0.02033733, -0.042312566, -0.005292483, -0.009738714, 0.012018133, 0.01583309, -0.001123501, 0.0033252898, 0.021401968, -0.007848298, 0.0074865944, -0.013185142, -0.015682947, 0.008960709, 0.012939455, 0.016679341, -0.021060739, -0.024254654, -0.002753729, 0.013833479, 0.0040845275, 0.004449644, 0.011547236, -0.0032348637, -0.009704592, 0.009411134, 0.0123184165, 0.026575021, 0.013560494, -0.00016613654, -0.034532513, 0.0018631178, 0.009636345, -0.004603198, 0.009336063, -0.0056030024, 0.012065906, -0.004023106, -0.010694159, -0.02866335, -0.0040640538, -0.0017658671, -0.00053061324, 0.01983231, -0.01755289, -0.0013734523, 0.015601052, -0.004395047, -0.005002437, -0.013383055, 0.012645997, 0.007821, 0.008960709, 0.00011281929, -0.044578336, -0.0010936434, -0.016310811, 0.012905332, -0.003238276, -0.015642, -0.020228136, -0.012475383, -0.007855123, 0.009793311, 0.0049273665, 0.014550063, 0.014509115, -0.0077800523, 0.025251048, -0.006592571, -0.020965194, -0.0040060445, -0.015000487, -0.006763186, 0.010100419, -0.014577361, -0.008981183, -0.017853172, 0.031202104, -0.016733937, 0.0076162615, 0.20659451, 0.011342498, -0.0013035, 0.026165545, 0.004787462, 0.0077732275, 0.03627961, 0.014208833, -0.0043199765, 0.01111046, 0.024554936, 0.0047601634, -0.03406844, -0.0052208244, 0.008469338, -0.022466607, -0.01773033, -0.018208053, -0.0015346835, 0.016092423, 0.003101784, -0.007698157, -0.02222092, -0.02501901, 0.021947937, 0.040893048, -0.0065106754, 0.021579409, 0.025974454, 0.012127327, -0.007459296, 0.011827044, 0.0029277566, -0.0015133567, 0.0033560006, -0.003596568, 0.004330213, 0.0045110653, 0.02638393, 0.0009921272, 0.013922199, -0.0069065024, 0.012564102, -0.02241201, 0.0016984742, 0.0014766743, -0.008332846, 0.010878424, -0.014345325, 0.030738031, -0.011567709, 0.011267426, 0.027243832, -0.006677878, 0.00047388367, 0.007834649, 0.013410353, -0.00027255775, -0.01579214, 0.028363068, -0.009943453, 0.004835234, -0.0065823337, 0.024363847, -0.019081602, -0.0024824508, -0.0144272195, 0.014986837, -0.013075948, 0.0062615774, -0.017238958, -0.012461733, -0.005507458, 0.0062922877, -0.028990932, -0.049382858, 0.017935067, 0.013881251, 0.032102954, 0.02137467, 0.0010475772, 0.0041288873, -0.0104484735, -0.023422053, -0.01894511, -0.014986837, 0.040210586, -0.014208833, -0.030301256, 0.0032860483, -0.015396314, -0.019163497, -0.016911376, -0.021333722, -0.0041084136, 0.005708784, -0.00029324484, 0.015369016, -0.014277078, -0.020760456, -0.01808521, 0.04378668, 0.032567024, 0.020077994, -0.011724675, 0.0026615968, -0.008837867, 0.017662084, 0.0025131616, 0.005292483, -0.025291994, -0.009533976, 0.021634005, -0.006398069, 0.012850735, 0.027230183, -0.0039821584, -0.033385977, 0.024923466, -0.007077118, 0.011308374, -0.030301256, -0.001428049, 0.0015380959, -0.0032007408, -0.024718728, -0.03390465, -0.007520717, -0.0074865944, -0.019136198, 0.02032368, -0.01094667, 0.0073091546, -0.020542068, 0.0013069123, -0.029837184, 0.01687043, -0.0055279317, -0.022002533, -0.0026035877, 0.011076338, -0.0094998535, 0.0074115237, 0.0025814078, 0.012413961, -0.02119723, 0.014659257, 0.019559324, -0.0070088715, -0.012611874, -0.01789412, 0.009076728, 0.007889246, -0.013976796, 0.016774885, -0.018180754, -0.025114555, -0.002305011, 0.0013453007, 0.0075343666, -0.033140294, 0.02970069, 0.054132786, -0.0027127813, -0.022821486, -0.013191965, -0.173618, 0.013785707, 0.018726723, -0.024377497, 0.015669297, 5.281073e-05, 0.00939066, 0.016611094, -0.018890513, 0.0008270571, 0.014386272, -0.02380423, -0.01687043, 0.00042163278, -0.002236765, 3.36965e-05, -0.0067904843, 0.0011772447, 0.053204637, 0.011076338, 0.017757628, -0.009568099, 0.027421271, 0.009615872, 0.026056351, -0.01581944, -0.010298332, -0.005428975, 0.013881251, -0.011096812, 0.0061865067, -0.0006466315, 0.0067938967, -0.0036272788, 0.008203178, -0.0013691868, 0.013301159, -0.0023118358, -0.0125299785, 0.013840304, 0.02937311, 0.022384712, 0.021060739, 0.012427609, 0.022712292, 0.022139026, 0.015491858, -0.026342984, 0.018276298, -0.015027786, 0.022821486, -0.035187677, -0.0027707906, -0.012175099, 0.00031329214, -0.010298332, -0.0011823633, 0.028008189, 0.015969582, -0.020774104, -0.0032160962, -0.02067856, -0.00030902674, -0.012031782, -0.014468167, -0.04203958, -0.0015073852, 0.021511162, -0.037153162, 0.00790972, -0.0004529833, -0.00254046, 0.018986057, -0.0059647067, 0.013471775, 0.016788535, -0.0076503847, 0.0045588375, 0.01771668, 0.0030181825, -0.003393536, -0.0028373306, 0.0070975916, 0.009595398, -0.03357707, 0.0036170417, 0.0115540605, 0.010462123, -0.018494686, -0.0072067855, 0.0015756312, -0.04223067, -0.016556498, 0.0013222677, -0.005749732, 0.0034225406, 0.0106327385, 0.011929413, 0.0027469045, -0.00016517683, 0.007145364, -0.0070498195, -0.030383151, 0.015996879, 0.013232914, 0.004541776, 0.007684508, 0.002854392, 0.017170712, 0.016392706, -0.013533196, 0.008660426, 0.010271034, 0.0058179777, -0.016024178, 0.04307692, -0.0027366674, -0.01998245, 0.02362679, -0.012127327, 0.063113965, -0.0010134542, -0.03617042, 0.0065720966, 0.00087610894, -0.007261382, -0.11563615, -0.005326606, 0.019532027, 0.019067952, 0.004234669, 0.018249, -0.012598225, 0.03666179, -0.023872476, 0.037917517, -0.0038388416, -0.019231744, -0.014413571, -0.012352539, -0.0009989518, -0.00258482, -0.009452081, -0.010311982, -0.012959929, 0.024964413, -0.029646095, -0.034887392, 0.018208053, 0.024241004, -0.02866335, 0.014563712, -0.023394754, 0.0030301255, 0.0076503847, -0.028963633, 0.003934386, -0.0132670365, 0.012441259, -0.024937116, 0.0005310397, -0.027830748, -0.008189529, -0.0031324946, 0.043868575, -0.00084454514, 0.0028526857, 0.005234474, 0.025128204, -0.017743979, 0.008012089, 0.030492345, -0.019422833, 0.020896947, -0.001033928, -0.017102465, -0.030792627, -0.003811543, -0.005135517, -0.02452764, 0.022316465, -0.006677878, 0.030164763, -0.012065906, -0.00613191, 0.008831042, 0.003315053, -0.0073296283, -0.0007460149, -0.00516964, 0.021429267, 0.01171785, -0.0108170025, -0.01755289, -0.022193624, -0.02866335, 0.0033235836, -0.0028458613, -0.033631664, 0.016392706, -0.040456273, -0.0088924635, -0.008912937, -0.009165447, -0.005009262, 0.014290728, -0.0068143704, -0.008599005, 0.015232523, -0.018399142, 0.016556498, 0.020978842, -0.002653066, 0.0024483278, 0.01580579, -0.034641705, -0.010741931, 0.020023398, 0.0042176074, 0.017621135, 0.005875987, -0.0058555133, 0.014318026, -0.00018703689, -0.00789607, 0.012386662, 0.0060056546, -0.0012864384, -0.048918784, 0.021934288, -0.02918202, -0.008592181, -0.0031512624, -0.005009262, -0.0024415033, -0.0034686066, -0.0011200886, 0.0017334502, -0.02398167, 0.00042035314, -0.015505508, -0.0064560785, -0.035351466, 0.009254168, 0.012140976, -0.0026854828, 0.019204445, 0.003437896, -0.01616067, -0.012830262, -0.0022521203, 0.005381203, -0.0035863311, 0.009766013, -0.027093692, -0.00014854185, -0.013526372, -0.018126156, 0.019750413, -0.021647654, 0.010673686, -0.00039220165, -0.010728283, -0.022644047, 0.0125026805, 0.022657696, -0.0039036754, 0.011281076, -0.008844691, -0.0076503847, 0.0049717263, -0.033304084, -0.04444184, 0.005756556, -0.011349322, 0.0031188456, 0.00096824113, 0.02048747, -0.006599395, 0.011328848, -0.03578824, -0.026984498, -0.032430533, -0.01407234, -0.0070293453, 0.037781026, -0.0077118063, -0.012536803, 0.04605245, -0.009759189, 0.0100526465, -0.014167884, 0.016420005, -0.01688408, -0.015341717, 0.009445257, 0.0070634685, -0.011724675, -0.020446524, -0.0035317342, 0.011444867, 0.0072682067, 0.005845276, -0.01424978, 0.0075957878, -0.021442916, -0.027748853, 0.029536901, -0.0031632055, -0.0051389295, -0.0009383835, 0.020965194, 0.02327191, -0.0030386564, -0.012584575, -0.0014365799, 0.0052071754, 0.010871599, 0.0045758993, 0.024868868, -0.021661304, 0.004023106, 0.0067836596, -0.0036784634, -0.0012864384, 0.021292774, 0.021238178, 0.013894901, 0.005548406, 0.004944428, 0.030519644, -0.0127142435, -0.008701374, 0.011519937, -0.016433654, -0.015901335, 0.012461733, 0.025646875, 0.038518082, 0.015901335, 0.028799843, -0.005016086, -0.020173538, -0.02465048, -0.00712489, -0.010004874, -0.026875304, 0.016256215, 0.011171882, -0.0077254553, 0.013683338, -0.03546066, 0.04449644, -0.003304816, 0.0033457638, -0.011444867, 0.009711416, -0.021688601, 0.0035010236, -0.016365409, 0.011533586, -0.009028955, 0.0023306033, -0.03404114, 0.0027793213, 0.001404163, 0.0052993074, 0.07157648, 0.038791068, -0.01878132, 0.008271424, -0.009015306, 0.024227357, 0.009574924, 0.01861753, 0.017621135, -0.040319778, 0.027339377, -0.014495466, 0.019368235, -0.0047260406, -0.010120893, -0.0037159987, 0.0054562734, 0.00825095, -0.021265477, 0.017866822, -0.0043984596, 0.006787072, 0.016420005, 0.009902505, -0.020719508, -0.006193331, 0.014208833, -0.0032502192, -0.0053163692, -0.026588669, 0.012311592, 0.0140040945, -0.043677486, -0.007193136, 0.011840694, -0.004906893, -0.0030488933, -0.015546455, 0.0004000926, 0.002820269, 0.018289948, 0.011267426, -0.027120989, -0.028717948, -0.022111727, 0.0073364526, -0.018631177, 0.0044564684, -0.00021006995]" 10122295,Rovio to Cut 260 Jobs as the Angry Birds Franchise Becomes Irrelevant,http://techcrunch.com/2015/08/26/rovio-to-cut-260-jobs-as-the-angry-birds-franchise-becomes-irrelevant/,109,1440590071,123,vvvv,"[-0.034956656, -0.050976288, -0.009982965, -0.019236581, -0.009435954, -0.006329708, -0.032403935, -0.0065999576, -0.001303223, -0.03261232, 0.021203218, 0.010497416, -0.0075865323, -0.0006255633, 0.00665531, 0.024797868, 0.020018026, 0.013147819, 0.016853172, -0.0038486186, -0.018546304, 0.041885473, -0.030111697, -0.0077558453, 0.019627303, -0.0014928863, 0.017061558, -0.00010058057, 0.015524715, 0.0029922847, 0.023560578, 0.008771725, 0.0033667271, 0.008856381, -0.05139306, -0.0005189286, -0.004200269, 0.010087158, 0.025071373, -0.00869358, 0.042406436, 0.0046691364, -0.015654957, -0.012236132, -0.013291083, 0.01904122, 0.009129887, 0.0016271973, 0.013037114, 0.014925607, -0.014495812, 0.0021392067, -0.03977557, -0.023287073, 0.009507585, 0.0045584315, -0.015641931, 0.019510087, 0.013193403, -0.0022792157, 0.012021235, 0.019353798, -0.018285822, 0.0033895194, -0.017126678, 0.0064176205, -0.009540146, -0.023547554, -0.01588939, -0.0039397874, 0.045011256, 0.03581625, 0.028418563, -0.0006919048, 0.009273152, -0.024876012, -0.0039918837, 0.013037114, 0.009540146, -0.0051184674, 0.023013568, -0.0067334543, -0.0035262723, 0.025722578, 0.016345233, 0.03318538, -0.010106694, 0.008003303, -0.016957365, 0.038994126, 0.011265838, 0.006046434, 0.0053170845, 0.010901163, -0.006062714, 0.018793762, -0.035399478, 0.0144306915, -0.021190194, -0.04321393, -0.0067725265, -0.01672293, -0.018910978, 0.0121970605, -0.028496709, 0.01280268, 0.024941131, -0.009898309, 0.02569653, -0.005515702, 0.015915439, -0.014209282, 0.0157331, -0.023951301, 0.025722578, -0.003640233, 0.008823821, -0.0035653445, 0.00018620379, -0.015537739, 0.035425525, 0.023248, 0.0077688694, 0.0046951845, 0.02031758, -0.0061929547, -0.0168141, -0.016410353, 0.00063044735, -0.010634169, 0.008869405, 0.012125428, 0.008472171, -0.0020675743, -0.012392421, -4.4846623e-05, -0.0065478613, 0.014782342, 0.0028539037, -0.008647996, 0.006902768, -0.008856381, 0.002608074, -0.0023638722, 0.0041221245, 0.021606965, 0.01047788, -0.003591393, 0.016775027, -0.0009059883, 0.013505981, -0.024315976, 0.015042824, -0.006518557, 0.019653352, 0.009286176, -0.01445674, 0.016358256, -0.020695278, -0.020565039, -0.0038128023, 0.0062776115, 0.0056101265, 0.011760754, 0.019353798, 0.036623742, 0.0050305547, 0.00035999398, 0.0054440694, -0.007449779, -0.012372886, 0.013844607, -0.01652757, 0.03907227, 0.019471014, 0.023378242, -0.01703551, 0.010888139, 0.009175471, 0.0023817804, 0.0016784796, -0.004620296, 0.03308119, 0.02556629, -0.007417219, 0.0030118208, 0.022714013, -0.018572353, 0.0038616427, -0.0027920392, -0.0026927306, -0.0042751576, 0.0048351935, -0.0051184674, -0.6355756, 0.008185641, 0.01996593, 0.0055775666, -0.008061912, 0.00694184, 0.023195904, -0.027689215, -0.040374678, -0.009761555, 0.0022938678, -0.034722224, 0.02124229, 0.0025494655, -0.027793407, -0.008830333, 0.015876366, -0.011838898, -0.03120572, 0.0074302433, -0.04826728, 0.0350348, 0.0023508482, -0.005681759, -0.0003935717, 0.019887784, -0.016801076, -0.016097775, -0.0115784155, 0.026504023, -0.0006780667, 0.011467711, 0.029408395, 0.017973244, 0.037978247, 0.011474223, -0.020877616, 0.036102775, 0.03047637, 0.025110446, -0.024732746, -0.0022824719, 0.0058868886, -0.010673242, -0.0032250902, -0.010432296, 0.024237832, 0.00404398, 0.009038718, -0.00491985, -0.010614634, -0.00604969, -0.021593941, -0.0108946515, -0.00071673194, 0.011226766, -0.008211689, -0.025318831, 0.007677701, 0.0066032135, -0.026673336, 0.0021131586, 0.019028196, 0.005059859, -0.027194299, 0.033940777, 0.0014293939, -0.004310974, 0.017269943, -0.03477432, 0.0061669066, 0.017282967, -0.011448175, -0.0063329637, -0.005805488, 0.015863342, 0.024407145, 0.006648798, -0.0069939364, 0.008022839, 0.026217492, -0.008947549, -0.018559327, 0.029538635, -0.0017045278, 0.00041290434, 0.009390369, -0.014248354, 0.012053795, -0.0060106176, -0.008296345, 0.0058315364, -0.017947195, -0.0015718448, 0.0015050964, 0.018168606, -0.033471912, -0.004183989, 0.029408395, -0.033680297, -0.029278154, -0.012672439, 0.007970743, -0.0041611968, 0.016397329, 0.021528821, -0.016254064, -0.021320434, 0.030997334, 0.0023134039, 0.014339523, -0.0064208764, 0.005545006, -0.004652856, -0.0018543048, -0.023703843, 0.021776278, -0.017413208, 0.023078687, -0.007703749, -0.015785197, 0.0025478376, 0.00834193, -0.0015742868, -0.008172616, 0.0034057994, -0.0061245784, -0.008296345, -0.017699739, -0.022909375, 0.01133747, -0.009051742, 0.017999291, -0.0035881368, 0.021450676, 0.03060661, 0.008543803, 0.0057143196, 0.02410759, -0.044177715, -0.0031160135, 0.000433865, 0.009292688, -0.008582875, 0.003164854, -0.020343628, 0.016514545, -0.003334167, -0.002583654, 0.004369582, -0.0029271643, -0.0069939364, 0.015407498, -0.022362363, 0.011415615, 0.026217492, -0.009644339, -0.021646038, -0.016136847, -0.019262629, 0.012678952, 0.010139254, -0.019184485, -0.0061636507, -0.015003752, -0.017295992, -0.035686005, 0.003179506, 0.0004912524, -0.0014090437, -0.0016931316, -0.008114008, -0.0023541043, 0.018819809, 0.005388717, 0.0069809123, -0.016970389, 0.022818206, -0.03922856, -0.015120968, -0.005925961, 0.016696883, -0.021125074, -0.033732392, 0.0032088102, 0.014039969, 0.017947195, 0.051705636, -0.027949696, 0.025436047, -0.015863342, 0.026725432, -0.017504377, -0.0049979943, -0.011435151, -0.0034285916, 0.0027920392, -0.0009507586, -0.0006670776, 0.022505628, 0.020721328, 0.029460492, 0.010529976, 0.017803932, 0.004789609, -0.010829531, 0.010106694, -0.00577944, 0.008537291, 0.004213293, 0.033393767, -0.015785197, -0.0022157233, 0.002319916, -0.0017566241, 0.016944341, 0.015173065, 0.015537739, -0.007111153, 0.015876366, -0.019080292, -0.006818111, -0.0074953637, 0.003617441, -0.0016931316, -0.011969139, -0.014613029, 0.0278976, 0.018403038, -0.011246301, -0.020200364, 0.025084397, -0.017660666, 0.0054570935, 0.020968786, 0.020708302, 0.009963429, 0.00041412536, 0.023795012, -0.012561735, 0.011181181, 0.00898011, 0.025279758, -0.016045678, 0.008589387, -0.011526319, 0.037092607, 0.016123824, -0.023547554, 0.031830877, -0.03321143, 0.02219305, -0.016149871, -0.0022824719, 0.0061408584, -0.023065664, 0.024537385, -0.027011963, 0.019418918, 0.029929359, -0.0040537477, 0.00437935, 0.010334616, 0.0041611968, -0.008485194, 0.023378242, 0.016397329, -0.0040146755, 0.007925158, -0.006212491, -0.003617441, -0.006528325, 0.013753439, 0.008856381, 0.013844607, -0.002031758, -0.004242597, -0.022648891, -0.003907227, 0.021086002, 0.0049882266, -0.004610528, 0.0021196706, 0.012171012, -0.021294387, -0.01445674, 0.01824675, -0.022857279, 0.0035555765, 0.020903664, 0.0109272115, 0.011962626, -0.024407145, 0.020760398, -0.0027952953, -0.011415615, 0.017829979, -0.03276861, 0.001893377, 0.0046691364, 0.015641931, 0.006538093, -0.024355048, -0.0026487743, 0.018897954, 0.02776736, 0.016449425, -0.0141832335, -0.021919543, 0.0027318029, -0.021698134, -0.024211783, -0.00977458, -0.010653705, 0.00082418066, -0.002757851, -0.020578062, -0.013636222, 0.029017672, 0.010836042, -0.009468514, 0.0057110633, -0.014665125, -0.007352099, 0.12617739, 0.02047387, -0.016397329, 0.01137003, -0.011435151, 0.011962626, -0.00434679, -0.03177878, -0.019562183, -0.028522756, -0.008159593, -0.015537739, 0.020395724, -0.021919543, 0.015498667, -0.003451384, 0.014144162, -0.01015879, 0.023013568, 0.017973244, -0.0019878016, 0.013987873, 0.0014993984, 0.013115259, 0.04193757, 0.00498497, 0.019405894, 0.021255314, -0.00952061, -0.032273695, -0.0075669964, -0.006427388, -0.030997334, 0.012144964, 0.0056036147, 0.0071567376, 0.025592336, 0.006805087, -0.0044119107, 0.004486799, 0.016449425, -0.013831584, -4.4617682e-05, -0.0077232854, -0.0026943586, -0.013063163, -0.019562183, 0.014052993, -0.005505934, -0.03060661, 0.013922752, 0.009917844, -0.014691173, 0.007111153, 0.0018966331, 0.0060008494, -0.030867092, -0.0030492651, -0.0042686453, -0.01710063, -0.033471912, -0.028835336, 0.010862091, -0.0022580517, -0.0027252908, -0.04034863, -0.006085506, 0.0032609066, -0.023716867, 0.0004216549, 0.007117665, -0.043526508, -0.028600901, -0.013935776, 0.01987476, -0.0079512065, -0.0019454734, 0.0070460327, 0.001147748, 0.0074302433, 0.0061115543, 0.0004464821, -0.0038160584, -0.007820966, -0.016058702, 0.009370833, 0.003177878, -0.0037053535, -0.010328103, -0.007977255, 0.022948446, 0.0203827, 0.008954062, -0.023013568, 0.023391265, 0.0067855506, 0.015225161, -0.00040415378, 0.010262983, 0.022180025, -0.0022026992, 0.009097327, -0.0022303753, -0.023000542, -0.0015091664, -0.002632494, 0.017712763, 0.00406026, -0.015980558, -0.0057208315, -0.0026569143, -0.0006695196, 0.0013935777, 0.005489654, 0.0022385155, -0.014834438, 0.023847109, 0.0139488, 0.017295992, 0.007957719, -0.0047537927, -0.04894453, -0.001019135, 0.023547554, -0.023912229, -0.008973598, -0.019379845, -0.031309914, -0.050038554, -0.023873156, -0.018845858, 0.020070123, 0.011076989, -0.016762003, -0.01665781, -0.012561735, -0.019744521, 0.0024338767, -0.021450676, -0.008654508, -0.02197164, 0.00021367648, 0.032273695, 0.0035425525, 0.011363518, -0.021893496, -0.0051445155, 0.031987164, -0.004157941, 0.0051477714, -0.016905269, -0.027949696, -0.024758795, -0.0115784155, 0.0019926857, -0.016371282, -0.0123533495, -0.026126325, 0.021593941, 0.0117021445, 0.056472454, 0.005808744, 0.010757898, -0.026152372, 0.0016499894, 0.01331062, -0.020499917, -0.014508836, -0.03396683, 0.02124229, -0.009637826, 0.020005003, 0.02095576, -0.02082552, -0.01159144, -0.009006158, -0.0032999788, -0.009442465, -0.022987518, -0.0022173512, -0.023990374, -0.013675295, -0.03302909, -0.001878725, -0.004070028, -0.029538635, 0.010907675, -0.003037869, 0.0150298, 0.006694382, 0.0025136494, 0.0033992874, -0.0023134039, -0.015264234, -0.017751835, -0.021099025, -0.0042491094, -0.02333917, 0.00780143, -0.005203124, 0.017413208, 0.003050893, -0.01245103, 0.011793314, 0.007925158, 0.017843002, -0.035425525, -0.016618738, 0.01703551, 0.0015091664, -0.005212892, -0.019640328, -0.0097810915, -0.016644787, 0.0042328294, 0.01760857, -0.0057371114, -0.0045681996, -0.0018217446, -0.043526508, 0.007540948, -0.020148268, 0.0379001, 0.013030602, 0.015915439, 0.0144306915, 0.02382106, -0.04563641, 0.005092419, 0.0030199608, 0.00070167286, 0.028731143, 0.013831584, -0.030111697, -0.02732454, -0.005518958, 0.00843961, -0.027194299, -0.034253355, 0.027975745, 0.0048286812, -0.013935776, -0.016775027, -0.021659061, -0.0131282825, 0.0061636507, -0.009071278, 0.0019161692, 0.0055612866, -0.025865842, -0.0068571833, 0.033992875, 0.027090106, 0.016436402, 0.011780289, -0.01866352, -0.017921148, -0.014573957, 0.010536489, 0.011689121, 0.0022401435, 0.02703801, -0.024355048, 0.018129533, -0.004242597, -0.015654957, 0.0036500013, 7.137812e-05, 0.008921501, 0.0236257, -0.012724536, -0.009611778, -0.025839794, 0.0045551755, 0.0058738645, 0.00614737, -0.025709553, -0.02748083, -0.0214637, 0.0076125804, 0.034670126, -0.021945592, -0.034227308, 0.018924003, -0.0055743107, -0.03834292, -0.023078687, -0.0034155676, 0.008114008, 0.017126678, -0.0027122668, 0.016853172, -0.014613029, -0.032039262, -0.0031485737, -0.0022075833, -0.0038909467, 0.004538895, -0.0054277894, 0.0063101714, -0.011285374, 0.010119718, -0.009364321, 0.0021603708, -0.011376543, 0.0025380696, 0.032924898, -0.03761357, -0.0036890735, -0.02130741, 0.0055938466, -0.0054245335, -0.00064265745, -0.016423378, 0.021828374, 0.020929713, 0.0019064011, -0.018390015, -0.023417315, 0.029121865, 0.006342732, -0.0070916167, 0.010289031, 0.038395017, 0.008752189, -0.030111697, 0.008465659, -0.023104735, 0.010992331, -0.031700633, -0.0026341223, 0.023156831, -0.02703801, -0.01961428, -0.028053889, 0.010529976, 0.007892598, 0.02031758, -0.008654508, -0.0049068257, 0.0014790482, 0.02452436, 0.011448175, 0.005756648, 0.024276903, -0.013857632, -0.015081896, -0.008381002, -0.034097068, -0.021919543, 0.016983414, 0.019822665, 0.0070525445, 0.017126678, -0.014248354, -0.018259775, -0.044307955, -0.017973244, -0.008498219, 0.018520257, 0.027168252, 0.013675295, 0.022375386, 0.019132389, 0.0026292382, -0.0093773445, -0.004923106, -0.03063266, -0.0068767196, 0.0057501355, 0.0020985065, -0.005027299, -0.029147914, -0.02089064, 0.023091711, -0.004926362, 0.007931671, 0.013121771, -0.023300096, 0.0057273437, 0.0057240874, 0.0055743107, 0.028991625, 0.019601256, 0.032429982, 0.0073455865, -0.032143455, 0.019718472, 0.0012454286, -0.013401789, -0.008797773, -0.003353703, -0.0203827, 0.0065641413, -0.012157988, -0.0011567019, -0.009208032, -0.015720077, 0.017569497, 0.0040928205, 0.016449425, -0.013987873, 0.022023736, -0.023221953, 0.012874313, 0.011155133, -0.022700988, 0.008680556, 0.01853328, -0.005935729, 0.009663874, 0.0011094897, 0.01824675, -0.051158626, -0.013714367, -0.011721681, -0.008537291, -0.01226218, 0.014287427, -0.011936578, -0.0049068257, 0.015016776, 0.00977458, 0.029434443, 0.01041276, 0.010875115, -0.004757049, 0.0055873347, 4.68562e-05, -0.00080830755, 0.021945592, -0.04667834, 0.026829625, 0.01509492, -0.017400185, 0.04446424, 0.20588481, -0.03063266, 0.022062808, 0.03451384, -0.008882429, 0.020434797, 0.0061245784, 0.000579165, 0.00491985, 0.00437935, -0.012509638, 0.017439255, -0.019158436, 0.0061441143, 0.003451384, -0.024771819, -0.023586627, -0.011539344, -0.0070199845, 0.036858175, 0.021359507, -0.012144964, -0.014795366, -0.02276611, 0.022114905, 0.02040875, -0.0343315, 0.013779487, 0.023456385, -0.00466588, -0.008498219, -0.0036760494, 0.020148268, 0.009116863, 0.004630064, 0.00071469694, -0.0029776325, 0.018819809, 0.01668386, 0.007931671, 0.021672085, 0.02223212, -0.0013447372, -0.011376543, 0.007990279, 0.032221597, -0.018259775, 0.021737207, -0.0081074955, -0.00016330987, -0.03664979, 0.004763561, 0.031830877, -0.0067985747, 0.015264234, -0.002738315, 0.008413562, -0.030241936, -0.013147819, 0.020942736, -0.023078687, 0.008973598, -0.007000448, 0.0052454523, -0.056420356, 0.0062971474, -0.026022132, 0.014157185, 0.002883208, -0.009826676, -0.0016483613, -0.022779133, -0.038395017, -0.003620697, -0.013323644, -0.027689215, 0.008706604, 0.008732652, 0.012965482, 0.016866196, -0.013545053, 0.0073455865, 0.008413562, -0.007931671, -0.0019829178, -0.014990727, 0.015785197, -0.0042816694, -0.020643182, -0.013479933, -0.004916594, -0.019536136, -0.019757545, 0.0045486633, 0.014743269, -0.002161999, 0.00260319, 0.032169502, -0.015993582, -0.025514193, -0.011995187, 0.0057208315, 0.014769318, 0.0014155557, -0.018012317, 0.0043174857, 0.0016304533, 0.031700633, 0.02047387, 0.010458345, -0.026009107, -0.047590025, 0.022453532, -0.0059585213, 0.028809287, 0.0016581294, 0.0124770785, -0.018324895, 0.011278862, -0.004844961, 0.014378595, -0.0077428212, 0.03149225, -0.0015547507, -0.021099025, -0.044542387, -0.008973598, 0.010757898, 0.004197013, -0.025396975, 0.0027887833, -0.024446217, 0.00045055212, 0.0010101809, -0.00077737536, 0.029043721, 0.009286176, -0.009383856, 0.022336314, -0.023729892, -0.00604969, 0.012125428, 0.01566798, 0.02468065, 0.02025246, -0.003474176, 0.027116155, -0.0074823396, -0.0105560245, -0.028392516, -0.014066017, -0.012490102, -0.017113654, 0.0009426185, 0.013766463, -0.020591086, -0.021268338, -0.029408395, -0.004144917, 0.0021326947, -0.04120822, 0.0030085647, 0.024003398, -0.014079041, -0.038811788, -0.020174315, -0.16285323, 0.022948446, -0.008328905, -0.004470519, 0.023039615, -0.02318288, 0.0064892527, -0.0037997782, 0.0067725265, -0.005925961, 0.021112049, -0.00024033515, -0.010438808, -0.027064059, 0.04053097, 0.017243896, 0.0019080292, 0.027506879, 0.012744072, -0.004900314, 0.012457542, -0.026491, 0.0105560245, 0.015407498, -0.0021994433, -0.014118114, -0.00061579526, 0.0085698515, 0.020109195, -0.016045678, -0.013935776, -0.0130045535, 0.0261133, 0.005193356, 0.02267494, -0.012731048, 0.007221858, 0.008654508, -0.021997688, 0.0336282, 0.031961117, 0.0153293535, -0.002186419, 0.0074302433, 0.016618738, 0.03589439, 0.0019617535, 0.006078994, 0.022062808, -0.027637118, 0.02547512, -0.028887432, -0.009559682, -0.005629663, -0.0041937567, 0.032377888, -0.018897954, 0.005108699, 0.028522756, -0.030398225, -0.03321143, -0.011780289, 0.011708657, 0.0016573154, -0.015511691, -0.013701343, 0.012998042, 0.0132455, -0.02974702, 0.0099048205, -0.012835241, 0.011363518, 0.025527216, -0.001011809, -0.00033598082, 0.0203827, -0.01633221, -0.0063362196, 0.0061115543, 0.010458345, 0.0046723923, 0.029043721, -0.011513296, 0.0058901445, 0.0029597245, -0.0057240874, 0.020239435, 0.028835336, -0.027116155, -0.01767369, 0.0350348, -0.027246395, 0.02688172, -0.0046268078, -0.011995187, 0.019184485, 0.017621594, -0.0016271973, 0.0044314465, -0.02862695, 0.018676545, -0.0026145861, -0.024407145, 0.010295543, 0.031804826, -0.015303305, 0.016162895, 0.009090815, 0.01206682, -0.003467664, -0.0019959419, 0.017621594, 0.026855674, 0.002738315, -0.020669231, 0.0077884058, -0.0040114196, -0.003327655, 0.010328103, -0.011624, 0.074601986, 0.0013235732, -0.005782696, 0.01815558, -0.023638723, -0.015863342, -0.10492207, -0.029877262, 0.0093773445, 0.0074693155, -0.027194299, 0.0336282, -0.001890121, 0.041677088, -0.022870302, 0.02091669, -0.014795366, -0.029147914, 0.0048905457, 0.0077623576, 0.048110988, -0.012874313, -0.0015091664, -0.001877097, 0.010009013, 0.025722578, -0.0005559658, -0.011278862, -5.7896148e-05, -0.010751386, -0.048840337, 0.012288229, -0.024771819, -0.014951656, 0.0063492437, 0.011767265, 0.04105193, -0.00093529245, 0.018702593, -0.022648891, -0.017686713, -0.00955317, -0.0371968, -0.0052454523, 0.005668735, -0.06288031, 0.0037183776, 0.0061408584, -0.0046268078, -0.04566246, -0.026569143, -0.020591086, -0.008127032, 0.010256471, 0.03779591, -0.025019277, -0.008055399, -0.033732392, -0.003205554, -0.019132389, 0.034539886, -0.014508836, 0.0026210982, 0.008563339, 0.0061962106, -0.0022417714, 0.0041416604, 0.004678904, 0.0039528115, 0.011389567, 0.0139488, -0.014977704, 0.0077363094, -0.0058543286, 0.016709907, -0.0088498695, -0.024159687, 0.01366227, -0.020851567, -0.009475025, -0.020994833, 0.008654508, -0.020747375, -0.0007134759, 0.021020882, 0.004229573, -0.016788052, -0.03691027, 4.268442e-05, -0.0099048205, 0.022779133, -0.015694028, 0.0041611968, 0.0171918, 0.0052682445, -0.025800722, -0.004779841, 0.01044532, -0.00780143, -0.0061929547, 0.013701343, 0.027090106, -0.007677701, -0.0025608616, 0.013844607, 0.006228771, -0.0041514286, -0.020578062, -0.053555056, 0.030163793, 0.0015563788, -0.011285374, -0.0024876012, -0.0019422174, 0.010959771, 0.0061408584, -0.01588939, 0.0022531676, -0.002779015, 0.02095576, -0.026009107, 0.012587783, -0.02333917, 0.012385909, 0.0008343558, 0.011187693, 0.022518652, -0.019444967, 0.008433098, 0.005183588, 0.019692425, 0.016032655, 0.018520257, -0.013558078, 0.0070330086, 0.0110509405, 0.0058510723, -0.013121771, 0.007436755, -0.024576457, -0.010419272, 0.0039397874, 0.016084751, -0.015016776, -0.020565039, 0.0035295284, -0.00013247941, 0.016983414, -0.014652101, -0.009097327, 0.031700633, -0.032794658, -0.008582875, -0.00613109, 0.012581271, -0.002186419, 0.02410759, 0.009833188, 0.023404289, 0.014508836, -0.016214991, -0.024667626, -0.011930066, -0.023104735, 0.034696177, -0.0051217233, -0.012346838, -0.001750112, 0.012288229, 0.009162447, 0.013922752, -0.029590731, -0.008869405, 0.0012413586, -0.013414812, 0.0029385602, 0.0052715004, -0.013466909, 0.025266735, -0.0059585213, -0.002920652, -0.012678952, -0.012333813, 0.021698134, -0.007449779, -0.007521412, -0.023886181, 0.015863342, -0.005372437, -0.032039262, -0.03219555, -0.0052682445, 0.05113258, 0.021528821, 0.00404398, 0.02117717, -0.00019739637, 0.0068506715, -0.020005003, 0.014912583, -0.025670482, -0.017530425, 0.007677701, 0.019145412, -0.021268338, 0.0023655004, 0.0031143855, 0.0018608168, 0.019770568, 0.0031111294, -0.025904914, -0.024368072, -0.018142557, 0.0038453625, -0.0045584315, -0.013186891, 0.01344086, 0.020838544, 0.014378595, 0.018220702, 0.0060236417, 0.010471368, -0.021424627, -0.00640134, 0.002148975, -0.0124770785, -0.017751835, 0.02346941, 0.0154856425, 0.006967888, 0.024368072, -0.0003909262, 0.028965576, 0.0014326499, -0.0006951608, -0.012600807, 0.005063115, -0.018494207, -0.033263527, 0.005056603, -0.010106694, 0.005183588, 0.007827478, -0.012210084, -0.02346941, 0.020265484, 0.00061457424, 0.054023925, 0.0006540535, -0.002173395, -0.004047236, -0.021958616, 0.026308661, 0.0042881817, 0.015199113, -0.014118114, -0.039176464, 0.0025217894, 0.012574758, 0.017295992, -0.01423533, -0.0074693155, -0.0066097258, -0.015694028, -0.0052454523, -0.01888493, 0.02375594, 0.0050142747, -0.016371282, 0.023781989, -0.0040667723, -0.016957365, -0.008830333, 0.019262629, 0.010907675, -0.017921148, -0.042406436, 0.009722483, -2.1647462e-05, -0.017282967, -0.0075865323, 0.035712056, 0.027220348, 0.010914187, -0.0037834982, 0.01738716, 0.010751386, -0.017764859, -0.0005396857, -0.01952311, -0.021789303, -0.010119718, 0.010354151, -0.02260982, -0.009103839, 0.014079041]" 10287983,Google Announces Plan to Put Wi-Fi in 400 Train Stations Across India,http://techcrunch.com/2015/09/27/google-announces-plan-to-put-wi-fi-in-400-train-stations-across-india/,100,1443389031,30,testrun,"[0.016323442, -0.0029206157, 0.01688356, -0.003025638, 0.016750198, -0.001283604, -0.022164673, -0.021364504, -0.014122978, -0.024551842, 0.0031423292, 0.022471404, -0.0070948293, 0.005647857, -0.00033882144, 0.005231103, 0.025178641, -0.003764127, 0.010202151, -0.0018287189, -0.012669338, 0.0038841523, 0.0037541247, 0.030939857, -0.025365347, 0.032913607, 0.016963577, -0.0015544944, 0.008728507, -0.0026038822, 0.007641611, -0.0039208266, -0.006091284, -0.014563071, -0.016443467, -0.015323231, 0.0037841313, -0.01916404, 0.01781709, -0.020684361, 0.030193033, -0.0015361572, 0.0012219243, 0.0022338042, -0.024711877, 0.018763956, -0.005204431, -0.0119091775, 0.006224646, 0.03331369, 0.0025271995, 0.0059079123, -0.0305131, -0.0067480896, -0.02992631, -0.009428655, -0.032753572, 0.031393286, 0.006174635, 0.025925467, 0.018257182, 0.0078949975, -0.025258658, 0.015523273, -0.02587212, -0.010228823, -0.0019487442, -0.004304241, 0.026098836, 0.0022454734, 0.027339097, 0.032673556, 0.0009326966, -0.010422197, 0.04006178, -0.007181514, -0.017723737, -0.0013727894, -0.007448237, 0.0030589784, 0.020284276, -0.03854146, -0.0066747405, 0.019630805, 0.015616626, -0.011615782, 0.016096728, 0.026272206, -0.0050910735, -0.0056611937, 0.029339518, 0.005204431, 0.0043475833, 0.009475331, -0.0018787294, 0.020737706, -0.029899636, 0.010968979, 0.009542012, -0.028912762, -0.0017587041, 0.0045409575, -0.010695589, -0.005331124, 0.0017053596, 0.016150072, 0.0076016025, -0.012782695, 0.025685415, -0.007141506, 0.028085921, 0.0024771888, -0.014949818, -0.019884191, 0.0017320318, -0.032540195, 0.0043542515, -0.0063413368, -0.0035940912, -0.01729698, 0.029206157, 0.013302805, 0.01916404, 0.013342813, -0.0031890057, -0.0022671446, -0.03190006, -0.014656424, 0.025418693, 0.01324946, 0.00097187154, -0.0227648, 0.001001878, 0.004894365, -0.020564336, -0.0033390373, -0.0025905462, 0.0020437643, -0.025512045, -0.04067524, 0.016070055, 0.002302152, -0.0011602446, -0.02033762, -0.0033323693, 0.047023248, -0.00072932045, 0.011595778, 0.012422619, 0.018763956, 0.009241949, -0.006251318, -0.024525171, 0.016630173, -0.013002741, 0.011722472, 0.0064046835, 0.04120869, 0.0016703522, -0.014403037, 0.029339518, 0.019110696, -0.017617047, 0.008175057, 0.012169233, 0.03472732, 0.0021687907, -0.012922725, -0.008021691, 0.0013986282, -0.0038274736, 0.02725908, -0.049103685, 0.002555539, 0.023885036, 0.007948343, 0.015723314, 0.012215909, -0.02584545, -0.0027322427, 0.0062313136, 0.001607839, 0.012689342, 0.0101488065, -0.01380291, -0.018483898, 0.020284276, -0.002555539, -0.008935217, -0.003027305, 0.023564968, 0.0012252583, 0.019110696, -0.009575352, -0.641842, 0.0028456, 0.022751464, -0.021191135, 0.013936272, -0.0011952519, 0.005997931, 0.0028672712, -0.012442623, 0.009902088, -0.017723737, 0.0026172185, -0.023805019, -0.025271995, 0.002843933, -0.02033762, 0.013049418, -0.012569317, 0.020364294, 0.007648279, -0.01231593, 0.0077683046, -0.01286938, 0.008141717, -0.005634521, -0.008141717, 0.018563913, -0.023978388, -0.034834012, 0.013516183, -0.020324284, 0.0052744453, 0.027659165, 0.02515197, 0.04400928, -0.0013486177, -0.016030047, 0.020777714, 0.024405146, 0.014082969, -0.023671657, -0.022738127, -0.01664351, -0.014296347, 0.018537242, 0.017030258, 0.011269042, 0.007814981, -0.010408862, 0.0002831847, 0.016456803, -0.0057078702, -0.03926161, -0.0021554544, -0.0027939223, 0.006077948, -0.007008144, -0.00847512, 0.0068681147, 0.0023404935, 0.0058979103, 0.008948553, -0.022111328, -0.024298456, -0.03144663, 0.02352496, -0.0070414846, -0.01484313, 0.0115557695, -0.0044309343, 0.0010510549, 0.030059671, -0.0038041354, -0.0018853975, -0.006518041, 0.00093353016, 0.052464396, -0.0053911367, -0.0101488065, 0.012562648, -0.011915846, -0.020017553, -0.002287149, -0.01490981, 0.01601671, 0.009175268, 0.0034773997, -0.020044226, -0.0017670392, 2.7577428e-06, -0.010002109, 0.00422089, -0.0014961488, 0.0039308285, 0.0132828, 0.0069414633, 0.0052977838, -0.00301897, 0.02580544, -0.010668916, -0.023671657, -0.031820044, 0.014363028, 0.011869169, 0.038941544, 0.008708503, -0.015043172, 0.0019570794, 0.015269886, 0.0022688117, 0.002567208, -0.0009885418, -0.026458912, -0.013962944, 0.0061179567, -0.017523695, -0.010822281, 0.014363028, -0.0015253216, -0.005524498, 0.0007976682, -0.027472459, -0.011482421, -0.008148384, 0.0070414846, 0.014883138, -0.008375099, -0.022444732, -0.0015853342, -0.0035874231, -0.017603712, -0.017256971, 0.010215487, -0.0065880558, 0.035980918, 0.023618313, 0.019924201, -0.013096094, -0.006724751, -0.034647305, -0.022618102, 0.007248195, 0.03179337, 0.013682885, -0.021524537, -0.017523695, -0.029072797, -0.001745368, -0.03752791, -0.009888751, -0.0026455577, -0.024191767, -0.022871489, -0.0035407464, 0.003038974, -0.0040175137, 0.0067614256, -0.02708571, -0.021017764, -0.019030679, 0.014162986, 0.009401983, -0.0111356815, -0.004057522, 0.014829793, -0.0036174294, 0.010255495, 0.03459396, -0.011062332, -0.0073082075, 0.0102755, -0.00861515, -0.0038374758, 0.042702336, 0.0057412107, -0.004247562, -0.0044976147, -0.0019254059, -0.03424722, -0.002098776, -0.015990037, -0.0058045574, -0.037554584, -0.058252282, 0.045929685, -0.0023771678, 0.030539772, 0.033687104, -0.029419536, 0.0009518674, -0.01134906, 0.015696643, -0.018137157, 0.015963366, -0.0077616363, -0.0035107401, 0.013569527, -0.019590797, 0.014696432, 0.0008985228, 0.008661826, 0.022431396, 0.026832324, 0.000852263, 0.020924412, -0.033473723, -0.002012091, -0.007821649, 0.027312426, 0.038834855, 0.021351168, -0.024378473, -0.013602868, 0.004864359, 0.017030258, 0.0406219, -0.008448448, 0.016523484, -0.022458069, 0.029526224, -0.003950833, 0.0055678408, 0.011315719, -0.025271995, -0.0133161405, 0.019377418, -0.010955643, 0.025885457, 0.02376501, -0.026298879, 0.00021567047, 0.008555137, -0.041102, 0.030939857, 0.0041642115, -0.0047443337, -0.0025938803, -0.020591008, 0.04006178, 0.0023838358, 0.022604765, 0.032353487, 0.033980496, -0.028139265, 0.004937708, 0.024898583, 0.024258448, 0.007081493, -0.010348849, 0.031019874, -0.0007201518, 0.0256054, -0.010428865, 0.0029139477, 0.0011444079, -0.0040775263, 0.0036607718, -0.0072148545, 0.018697275, 0.017590376, -0.007881662, 0.010448869, 0.03144663, -0.005241105, -0.027045703, 0.006794766, 0.021537874, 0.016416794, -0.016203417, 0.0010968979, -0.0063546733, 0.008815192, -0.0019987547, -0.0089285495, 0.0014669759, -0.0042875707, 0.006701413, 0.007261531, 0.018630594, 0.02615218, -0.019177377, 0.002855602, 0.0026388897, 0.01619008, -0.014483053, -0.0004905201, -0.014669759, -0.012295926, -0.012302594, -0.022151336, -0.025005272, 0.034033842, -0.010235491, -0.010368853, -0.010122134, -0.020684361, 0.022191346, -0.004934374, 0.0057345424, 0.005067735, -0.0017336989, 0.009575352, -0.018670604, -0.030486427, 0.0361943, -0.0124893, -0.011542434, -0.012069211, 0.0019770835, -0.0012210908, 0.0015119854, -0.012062543, 0.0072548627, -0.010915635, -0.0041608773, -0.00034778166, 0.0022321374, 0.0025788771, -0.0027072374, -0.00896189, -0.016870223, -0.013296137, -0.024498498, 0.0033507065, 0.12237246, 0.0127293505, -0.019844184, 0.001471977, -0.014869802, 0.0068414425, -0.02515197, -0.028405989, 0.0049210377, -0.016150072, 0.0037141163, 0.004420932, 0.0051710904, -0.008241737, 0.014629751, 0.009435323, 0.011922514, -0.014696432, -0.0064480263, -0.0054578176, -0.008215065, -0.0031173239, 0.0015920023, 0.023231564, 0.04075526, -0.0073215435, 0.018083813, 0.011215698, 0.003760793, -0.02027094, -0.0007818315, 0.0048076804, 0.010708924, 0.010182147, -0.015576618, 0.030193033, -0.029392865, 0.004614306, -0.009748722, 0.016150072, 0.014709768, 0.020004218, -0.0072415266, -0.0061379606, 0.004864359, -0.013536187, -0.0060279374, 0.02660561, -0.02131116, -0.013062754, 0.044302672, 0.0033607085, -0.030779824, -0.0051844264, 0.0069414633, 0.016083391, 0.002480523, -0.026232198, -0.013682885, -0.016030047, -0.036060937, -0.012782695, 0.003980839, -0.014069633, -0.034887355, -0.009955432, 0.016963577, -0.004344249, 0.0012827704, -0.00833509, 0.019244058, -0.04515619, -0.04352918, -0.0041475412, 0.042328924, 0.0029122806, 0.005727874, 0.013909599, 0.008655158, 0.01712361, 0.0031489972, -0.010708924, 0.021817934, -0.023284908, -0.011649122, 0.0046476466, -0.011709135, -0.0056945337, -0.013102762, 0.013776238, 0.0042809024, 0.0020487653, 0.0119091775, -0.020777714, 0.0020487653, 0.017657056, 0.0053044516, -0.004207554, -0.0016286767, -0.011048996, -0.0073348796, 0.009075247, -0.01290272, -0.0052944496, 0.0109223025, 0.0069481316, 0.016350115, -0.014122978, -0.014656424, 0.011509093, 0.0053177876, -0.030006327, 0.00030235542, 0.010068789, -0.006994808, 0.0060279374, 0.013649545, 0.030219704, -0.0027022364, -0.014669759, -0.0031806706, -0.016030047, 0.0013494511, -0.0091686, -0.0063413368, 0.010635575, -0.003222346, -0.012829372, 0.0011094005, -0.00588124, 0.010788942, 0.026112173, 0.013896263, -0.03480734, -0.017216964, -0.014376365, -0.013882927, -0.010882295, -0.022231353, -0.011575774, -0.022831481, 0.0024055073, 0.0046509807, -0.011755812, 0.00041633777, -0.030699806, -0.008321755, -0.01653682, 0.0017437009, 0.022218017, 0.012289258, 0.025938801, -0.012962733, -0.00643469, -0.0011144016, -0.03472732, 0.0077683046, -0.034914028, 0.010408862, 0.05355796, 0.03462063, -0.01688356, 0.006061278, 0.005884574, 0.006901455, -0.014803121, -0.022324707, -0.009341969, -0.00041821317, -0.008161721, 0.026685625, 0.008621817, 0.021231143, -0.00624465, -0.014256339, 0.013569527, 0.003397383, -0.0051944284, -0.014803121, -0.032086764, -0.025445364, 0.012882716, -0.032406833, 0.025992146, -0.015243214, 0.002218801, 0.021257816, 0.001156077, 0.032433506, 0.011182358, 0.0071615097, -0.016376786, 0.030886512, 0.016376786, -0.0062313136, -0.027579147, 0.0031656674, -0.02729909, 0.032593537, 0.022818144, 0.031286597, -0.009315297, -0.021991303, 0.0017320318, -0.0025472038, 0.009888751, -0.017590376, -0.008621817, -0.007694956, -0.02393838, 0.0084351115, -0.037981343, -0.032086764, -0.028005905, -0.0089285495, 0.0006222145, 0.003860814, 0.0082017295, -0.013776238, -0.029419536, 0.0033407044, 0.0074949134, 0.006994808, 0.0030506433, 0.02639223, 0.0054411474, 0.010775605, -0.009915424, -0.00016826464, -0.018070476, 0.00551783, 0.017243635, -0.00061179564, -0.014229666, -0.0172303, -0.000573871, 0.00087768503, 0.0041708793, -0.028592695, 0.007168178, -0.006888119, -0.020137578, -0.0012911055, -0.0019387421, -0.017750409, 0.0177104, 0.03294028, 0.015990037, 0.0002942287, -0.024431817, -0.025618734, 0.025525382, -0.014096306, 0.014723104, 0.013749566, -0.0026422238, -0.017136946, 0.0054578176, 0.00063930143, -0.0046743187, -0.004020848, 0.007821649, -0.031980075, 0.006604726, 0.00042967394, 0.016390122, -0.024005061, 0.009675373, -0.00054844894, 0.019124031, -0.016403459, -0.0060312715, 0.0038774842, -0.0038841523, 0.011889174, -0.025285332, -0.004814348, -0.013789574, -0.019990882, 0.012435955, 0.023044858, 0.0042709005, -0.013602868, -0.018843973, 0.00089768926, -0.0038974884, -0.02957957, 0.013869591, 0.005447815, -0.0019954208, -0.025365347, 0.0072015184, -0.0309932, 0.007941674, 0.008328423, 0.00045842997, -0.0051810923, 0.011502425, -0.018670604, -2.2830334e-05, 0.02760582, 0.03214011, -0.0029656251, 0.024071742, -0.012982737, -0.0062846583, -0.002575543, -0.015016499, -0.04555627, 0.008015024, 0.013116099, 0.021604555, 0.01352952, 0.010768937, 0.013962944, 0.048623584, -0.010768937, 0.002575543, -0.030219704, -0.0001814966, -0.0081083765, 0.0042809024, 0.023818355, 0.0140429605, 0.047423333, -0.009622029, -1.35705695e-05, 0.024405146, 0.0022471405, -0.019737495, -0.0010327178, 0.0069614677, -0.007961678, 0.00975539, 0.0057478785, -0.007354884, -0.015309894, -0.0057212063, -0.016056718, 0.018950662, 0.007454905, 0.0149364825, 0.0011685797, -0.007941674, -0.016510148, -0.0070681567, -0.020537663, -0.029846292, -0.03528744, -0.0032556865, 0.018910654, 0.027205735, 0.0054378132, -0.015536609, -0.010435534, -0.017617047, -0.046196405, -0.007328212, -0.015109852, 0.008768516, 0.020577671, 0.024605189, -0.012475964, 0.01134906, -0.014296347, 0.02269812, 0.014363028, 0.016763534, 0.021391178, -0.0144430455, -0.03075315, 0.011749144, -0.041075327, -0.006438024, 0.033020295, -0.0055211643, 0.008281746, 0.028806074, -0.005261109, 0.016763534, 0.010995652, 0.0070014764, 0.0065147066, -0.008088372, 0.009328634, -0.024085078, -0.010202151, 0.01957746, 0.0095620155, 0.0009093584, -0.004801012, -0.0042642322, 0.01214256, -0.0070348163, -0.016496811, 0.00023817521, -0.00066389, -0.0033990499, 0.01764372, -0.015163197, -0.0006847277, 0.02031095, -0.003577421, -0.007381556, 0.0028856085, 0.019364083, -0.025432028, 0.007694956, 0.014803121, -0.043742556, 0.01542992, 0.027472459, 0.00219713, 0.0008626819, -0.015936693, -0.0027455788, -0.017336989, -0.00861515, 0.009128591, 0.010575563, -0.0048110145, 0.019377418, 0.007101497, 0.022538085, -0.009081915, -0.0064713643, 0.0012460961, -0.013922935, 0.013122766, 0.0015103184, -0.008035027, -0.040595226, 0.013816246, 0.025512045, -0.012395947, -0.019350747, 0.2058034, -0.010302172, 0.0024221772, 0.031846713, -0.023978388, 0.006267988, 0.0361943, 0.022831481, 0.00513775, 0.0076882876, -0.030939857, 0.021231143, -0.035127405, -0.009181936, -0.004961046, -0.011875837, -0.0354208, -0.03096653, -0.015336567, 0.010435534, 0.012562648, -0.022511413, 0.0053744665, 0.0025255324, -0.025098626, 0.0030089677, -1.6618087e-05, 0.0042175557, 0.058999106, 0.018177167, -0.019430764, 0.016816879, -0.026992358, -0.0009960433, -0.016683517, 0.0007459906, 0.025578726, 0.006247984, 0.008728507, 0.01356286, 0.015203205, -0.0032440173, -0.0030873176, -0.0119558545, -0.009355306, 0.009882083, -0.03171335, 0.010375521, 0.01414965, 0.00660806, -0.023271574, -0.0256054, 0.0344606, -0.009862079, -0.0025021941, -0.00010116716, -0.010788942, 0.016203417, 0.0030573113, 0.014563071, -0.020911075, 0.007168178, -0.0038308077, 0.029179486, -0.032113437, 0.0044642747, -0.010362185, 0.009782063, -0.007808313, 0.01861726, -0.0012260919, -0.0045276214, 0.0047309976, 0.0046409783, -0.016176743, -0.008221733, 0.04624975, -0.0059912633, 0.028672712, 0.033740446, 0.008428443, -0.004594302, 0.010388857, 0.0024238443, 0.0018037136, -0.026658954, 0.016896896, -0.008308418, -0.012789363, -0.0019020677, 0.011302383, -0.024191767, -0.00494771, -0.019844184, -0.016176743, -0.0009552014, -0.0060045994, -0.0076816194, -0.0015661635, -0.010548891, 0.013616204, 0.022738127, 0.015549945, 0.015896685, -0.012122556, -0.008021691, -0.0011344058, 0.033553742, -0.017376997, -0.0075882664, -0.013829582, -0.017270308, 0.017857099, -0.022564758, -0.0005922082, 0.00057178724, -0.015963366, -0.032646883, 0.006344671, 4.0451236e-05, 0.014509725, -0.04576965, -0.019964209, 0.011615782, -0.037821308, -0.012889384, -0.018563913, 0.03400717, -0.022324707, -0.03563418, 0.011275711, -0.010348849, 0.0013194449, -0.029312847, -0.013789574, 0.0032440173, 0.002297151, -0.004520953, 0.013596199, -0.009842075, 0.02172458, -0.008568473, -0.003954167, -0.0052677775, 0.029526224, -0.006901455, 0.010888962, 0.010662248, -0.006628064, -0.020577671, -0.010162142, -0.0071481736, 0.01816383, -0.023191556, 0.036861103, 0.004424266, -0.0031173239, -0.025378684, 0.04214222, -0.007248195, 0.012949397, -0.0282993, 0.040168468, -0.0016970244, -0.015016499, -0.0006993141, -0.16888894, 0.032593537, 0.019444099, -0.025485374, 0.005791221, 0.0044709425, 0.03435391, -0.020884404, 0.011175689, -0.00627799, 0.0051044095, -0.024191767, -0.029126141, -0.0061212904, 0.0031156568, 0.03648769, -0.031526648, 0.008141717, 0.022151336, -0.00944199, 0.01566997, -0.0282993, 0.00882186, -0.030593116, -0.019497445, 0.005331124, -0.0305131, 0.020991093, 0.0007764137, -0.032193456, -0.025432028, 0.0017403669, 0.04120869, -0.011509093, 0.004397594, 0.0036107614, 0.021857942, -0.009075247, -0.017803753, 0.020977756, 0.013589532, 0.0089752255, 0.016630173, 0.0031673345, 0.0172303, 0.0039041564, -0.0021887948, -0.021511203, 0.00105939, -0.0013452836, 0.026765643, -0.017070265, 0.00015138608, 0.016910233, -0.019977545, -8.970642e-05, 0.010415529, -0.012889384, 0.017083602, -0.008121712, -0.00809504, -0.011569106, 0.011075668, -0.026472248, -0.028459333, -0.008415108, -0.010528887, -0.015003163, -0.012722682, 0.020844394, -0.0010093795, 0.012702678, 0.022124665, -0.018483898, 0.0013827916, 0.015990037, -0.015803332, -0.007828318, -0.007361552, 0.036381003, -0.009381978, 0.04086195, 0.00054303114, -0.004704325, -0.04414264, 0.0016628506, 0.009495336, 0.008508461, -0.017270308, 0.010142138, 0.025485374, -0.008488457, -0.0037574589, -0.01840388, 0.0047243293, -0.010488878, 0.045342892, 0.010022113, -0.009915424, -0.03808803, -0.0034607297, 0.015109852, -0.023378262, 0.019564126, 0.0034173871, 0.01757704, 0.009215276, 0.021057773, 0.019190712, 0.008921881, -0.018723948, 0.02691234, 0.010602235, -0.00624465, -0.006694745, 0.03622097, -0.0052244347, 0.0020537663, 0.011042329, 0.0012277588, 0.033393707, -0.016723527, 0.008868537, 0.008628486, -0.030913183, -0.010142138, -0.10935639, -0.032886934, 0.03131327, 0.031953402, -0.018977335, 0.0018720614, -0.003212344, 0.0126359975, -0.029979654, 0.039795056, -0.00047968447, -0.034220546, 0.002670563, 0.024098415, 0.022578094, 0.0023171552, -0.016803542, -0.011942518, -0.0287794, 0.005504494, 0.003410719, -0.020257605, 0.0030756486, 0.0017970456, -0.014829793, -0.007048153, -0.016896896, 0.00878852, 0.013449502, -0.029952982, -0.014336356, -0.001101899, 0.011109008, -0.0071615097, 0.0011277378, -2.0746562e-05, -0.0127293505, -0.012149228, 0.021097781, -0.028646039, 0.008628486, 0.0021437854, 0.010708924, -0.0105955675, -0.029499553, -0.017083602, -0.0067847637, 0.008195061, 0.009882083, -0.0287794, -0.013582864, 0.008315086, -0.016923567, -0.008841864, 0.030939857, 0.00878852, 0.017457014, -0.007834985, 0.0070214802, -0.02515197, 0.001611173, -0.016176743, -0.009388646, 0.03304697, -0.0125426445, 0.0048210165, -0.0025488706, -0.027472459, 0.010082126, -0.0037574589, -0.005524498, -0.0140429605, -0.0050944076, 0.027245745, -0.019244058, 0.0046476466, -0.014669759, -0.027792526, 0.010888962, 0.012389279, -0.012082547, -0.033980496, 0.007074825, -0.001932074, 0.008908545, -0.007061489, -0.0007068157, 0.0062079756, -0.018217174, -0.0314733, 0.013682885, 0.030139688, -0.0041008648, 0.0075615942, 0.03622097, 0.035447475, -0.018523905, -0.0035074062, -0.013682885, 0.036701072, -0.029126141, -0.007975015, -0.051050764, -0.00032048422, 0.03878151, -0.0025205314, 0.0036307655, -0.016696854, 0.01653682, 0.00041883832, -0.01747035, 0.021604555, -0.016070055, 0.019537453, -0.015789995, -0.0013136102, -0.026112173, 0.0006684743, 0.028379317, -0.00978873, 0.00736822, -0.0038374758, 0.015056508, 0.010695589, 0.034300566, 0.022271363, -0.014789785, 0.011802488, -0.023258237, 0.023031522, -0.0058412314, -0.029659586, 0.00094436575, -0.023925044, -0.01695024, -0.026805652, -0.005337792, -0.007361552, -0.008188393, 0.014683096, -0.006424688, 0.040035106, -0.0075882664, -0.030086344, 0.020430975, -0.016870223, -0.01293606, -0.007935006, 0.0151231885, -0.019417427, 0.015229878, 0.018790629, -0.011755812, 0.0053911367, -0.0238717, -0.009361974, 0.0012102552, -0.003490736, 0.0047343313, 0.017683728, 0.013869591, 0.0031039878, 0.017830426, 0.028325971, 0.0309932, -0.006908123, 0.012442623, -0.026045492, -0.007788309, -0.008308418, 0.013596199, -0.03902156, 0.013476174, -0.010348849, 0.028939435, -0.009388646, 0.0005334458, 0.0033673765, 0.0075615942, -0.027232409, -0.024511835, 0.021231143, 0.008608482, -0.0020754375, -0.026378894, 0.00864849, 0.023898372, 0.010362185, 0.0035574166, 0.0070548207, -0.023858363, 0.020230932, 0.0027539139, -0.0060079335, 0.010762269, 0.019377418, -0.012602657, 0.036621053, 0.010362185, -0.011189026, 0.02272479, 0.029446209, 0.02415176, -0.017657056, 0.0073348796, -0.007828318, -0.044782776, -0.014229666, 0.005607849, -0.007528254, -0.008488457, 0.0113690635, -0.0001843097, 0.018777292, 0.023898372, 0.012922725, -0.0075149178, -0.000320901, 0.019057352, 0.0033507065, -0.03262021, 0.019110696, -0.0019554123, 0.012602657, -0.007348216, 0.0077016237, 0.033153657, -0.0004884363, 0.007908334, -0.01269601, 0.017897107, -0.0058545675, -0.012355939, 0.002580544, -0.021804597, -0.029046124, -0.016736861, -0.0002107736, 0.00038278903, 0.007261531, -0.013896263, 0.0757493, 0.016616836, -0.0030289718, 0.009088583, 0.01231593, -0.0014211329, 0.022618102, -0.0110156555, -0.020577671, -0.019070687, 0.0003584089, -0.0088818725, 0.023725001, -0.013736229, -0.00090269034, 0.006358007, -0.017256971, 0.019044016, -0.035234094, -0.018870646, 0.019457435, 0.00868183, 0.026592273, 0.010615571, -0.004934374, -0.0019904196, -0.0030756486, -0.0065747197, -0.004450938, -0.034433927, 0.0061813034, 0.013909599, -0.024445154, -0.012289258, 0.040355176, 0.00036549373, -0.0053744665, -0.01764372, 0.020777714, -0.0072415266, 0.016483475, 0.008081703, -0.021151125, -0.029446209, -0.002487191, -0.016590165, -0.029766276, -0.018310526, -0.012242581]" 14773964,Gpu.js – GPU Accelerated JavaScript,http://gpu.rocks/,321,1500074050,77,olegkikin,"[-0.0052898503, 0.0123485895, -0.0182404, -0.025854018, -0.0055218907, -0.0033914903, -0.0032552925, -0.0063861576, -0.026741825, -0.04301829, 0.034382347, -0.002439788, -0.005336931, -0.008481247, -0.006123851, 0.009685168, 0.012583992, -0.006537488, 0.023782467, -0.015550075, -0.018872626, 0.0049670115, -0.0047147935, -0.0058245524, -0.038928993, 0.013505429, 0.020742401, -0.027078114, -0.016303366, -0.026378632, 0.009658265, -0.01733914, -0.014554655, -0.023486532, -0.020002563, 0.006147391, 0.01550972, 0.00048804167, -0.018038625, -0.000121590056, 0.020285046, -0.011279185, 0.0105662495, -0.0054949876, -0.003978317, 0.00990712, 0.013646671, -0.023002274, -0.004627358, 0.020365756, 0.006725811, 0.04301829, -0.018119335, -0.029754989, -0.014325977, 0.015617333, -0.014191462, -0.002239695, 0.0072167953, -0.0035411394, 0.012752138, -0.015940173, -0.015065817, 0.01385517, -0.0036958333, -0.0068132468, -0.023163693, -0.013949332, -0.00034785055, -0.021468788, 0.016680012, 0.012873203, -0.010290491, -0.013169138, 0.017298786, -0.024535758, -0.017271882, -0.020930724, -0.02156295, -0.009227813, -0.002722272, -0.019289626, 0.037503123, 0.0061070365, -0.008716651, -0.004092656, 0.0033074175, 0.02048682, -0.0068872306, -0.022074113, 0.020513725, -0.00516206, 0.001029049, 0.003398216, -0.025006566, 0.017406398, -0.014742978, 0.008326554, -0.030965634, -0.0014679083, -0.0072504245, 0.016989399, -0.011050507, -0.028894084, -0.03847164, -0.0076943277, 0.0013468437, 0.00168986, 0.026163405, 0.004415495, 0.0068939566, 0.016020883, 0.006265093, -0.020513725, -0.0073244083, 0.004597092, 0.042426415, -0.021697467, -0.010209781, -0.019545207, 0.0051553342, -0.006376069, 0.019477949, 0.011299362, 0.024441598, 0.0240515, 0.0021102233, -0.015698044, -0.0027828044, -0.010929443, 0.036534607, -0.0022901387, -0.014837139, 0.008292925, -0.012691606, -0.0008802405, -0.0072167953, 0.006312174, -0.02536976, -0.004674439, 0.005592512, 0.028086986, 0.011232104, 0.0070553757, -0.024737533, 0.05025526, 0.0052965763, 0.017567819, -0.008857893, -0.0042507127, -0.01045191, 0.0010626782, -0.004913205, 0.01144733, 0.021428434, -0.011474234, 0.0019824328, 0.017715786, -0.011783621, 0.0022867757, 0.0340057, 0.016989399, -0.013081702, 0.01131954, 0.0037160106, 0.023567243, 0.035216346, -0.015576978, 0.0014056945, -0.00043969988, 0.015550075, 0.03144989, -0.042641643, 0.02214137, 0.0065812063, -0.014299074, 0.01923582, 0.009382507, -0.030777311, 0.005373923, -0.011622202, -0.004617269, 0.0039615026, 0.03225699, -0.013747558, 0.007828844, 0.01957211, 0.006224738, 0.01322967, -0.0008642667, 0.008965506, 0.0043818657, -0.024024596, -0.023109887, -0.622003, 0.0006608109, 0.017527463, -0.027481664, -0.0028752843, 0.013444897, 0.0133574605, 0.014877494, -0.030400665, 0.025020016, 0.0063928836, 0.006698908, -0.006870416, -0.0024835058, 0.0052091405, -0.0281946, 0.012442751, -0.023594145, -0.00626173, -0.008904974, -0.0032435225, 0.00812478, -0.0065341257, 0.01032412, -0.0068098838, 0.02039266, 0.025719501, -0.007734683, -0.009126926, 0.02596163, -0.005316754, 0.016949045, -0.0047686, 0.022760145, 0.049367454, -0.013660123, -0.007156263, 0.01600743, -0.008501425, 0.052353714, -0.028517438, -0.0151465265, 0.026405534, 0.0023977517, -0.009026038, 0.016410979, 0.035135638, -0.02239695, -0.025275597, 0.00945649, -0.010720943, 0.013713929, -0.0075530857, 0.0045701885, -0.03559299, -0.0031409538, 0.040005125, 0.004415495, -0.01674727, -0.0113329915, 0.007923005, -0.005377286, -0.020957626, -0.008716651, -0.04013964, -0.011232104, -0.020554079, -0.016316818, -0.033548344, 0.0073042307, 0.011723089, -0.0060397782, 0.0194914, 0.0025642156, 0.017581271, 0.011649105, 0.024683727, -0.015281043, 0.010431733, 0.0133574605, 0.0054983506, -0.0015973801, -0.04277616, -0.017110463, 0.040919833, 0.0133776385, -0.026203759, -0.0014267127, 0.029485956, -0.0020328765, 0.028140793, 0.012254428, -0.0034217564, -0.043690868, 0.023257855, 0.016801076, 0.003769817, 0.026486244, 0.0074656503, -0.020338852, -0.015213785, -0.0136197675, 0.004230535, 0.02214137, 0.03349454, -0.011702911, -0.04651571, 0.016020883, 0.02214137, -0.02562534, -0.016397526, -0.010842008, -0.019356884, -0.0131086055, 0.029674279, -0.035028026, 0.028140793, -0.021455338, 0.003924511, -0.025356308, 0.01633027, -0.015792204, 0.012772315, -0.010835282, 0.020285046, -0.012718509, 0.007990263, -0.0373148, -0.019881498, 0.008703199, -0.008588861, -0.0058178264, 0.011877783, 0.0069679404, 0.049367454, 0.0057808347, -0.010384652, -0.001957211, 0.006288633, -0.020096723, 0.008259296, 0.007189892, 0.014864042, -0.001093785, 0.0038572527, 0.02496621, -0.022343144, -0.008057522, 0.0009113474, 0.009765877, 0.0042137206, 0.022988822, 0.029405246, 0.003453704, -0.0018882714, -0.014110751, 0.0050813504, -0.011904686, -0.0039076963, -0.02320405, 0.0194914, -0.002666784, -0.017392948, 0.02462992, -0.00555552, -4.729086e-07, -0.042883772, 0.025504276, -0.0064366013, -0.005236044, -0.010747846, -0.006476956, 0.005616052, 0.023957338, -0.015496269, 0.023029177, 0.0085350545, 0.001994203, -0.03144989, 0.0023725298, 0.029808795, 0.0027743971, -0.0118307015, -0.006456779, 0.042345706, 0.023755565, 0.033037186, 0.014581558, -0.021092143, -0.011211927, 0.005343657, 0.010862185, -0.0055218907, 0.015065817, -0.001069404, 0.008091151, 0.009375781, -0.0016705233, 0.012308234, 0.02255837, 0.026351728, -0.0028500624, 0.024024596, -0.0315037, 0.0232175, -0.030454472, -0.0001656231, -0.03169202, 0.0030938732, -0.012772315, -0.007472376, -0.017514013, -0.020850014, -0.019948756, 0.0034637926, 0.012543637, -0.016034333, -0.012019024, -0.0032636998, -0.013148961, -0.0032737886, -0.00665519, 0.030293053, 0.013532332, -0.009893668, 0.031638216, -0.017769594, 0.013236396, 0.014837139, -0.039789896, -0.020540627, 0.006483682, -3.1369604e-05, -0.013155687, 0.007089005, 0.024105307, 0.006288633, -0.011871057, 0.025598437, -0.018953336, 0.007983537, -0.0044928417, 0.009860039, -0.008696474, -0.012166992, -0.003628575, 0.045385774, -0.0055319797, -0.008057522, 0.00065282406, -0.03134228, 0.028006278, -0.005199052, 0.015240688, 0.018926432, -0.015213785, 0.0136197675, 0.00957083, 0.029728085, 0.021038337, 0.0061608427, 0.011420427, 0.023177145, 0.0014199868, 0.0015864507, -0.011494411, -0.0046105436, -0.007768312, -0.015496269, 0.0005414278, -0.006692182, -0.02645934, -0.002596163, -0.03333312, 0.012328411, 0.01302117, 0.014393236, 0.02089037, 0.0072840536, 0.014500849, -0.040919833, -0.023661403, 0.023984242, -0.004126285, -0.022114467, -0.029835697, -0.0178234, -0.017150817, 0.013660123, -0.005975883, -0.010653685, 0.029808795, 0.012375493, -0.008373635, -0.019935304, -0.0060027866, 0.026176857, 0.0041565513, -0.009375781, -0.017621625, 0.008010441, -0.0099542, -0.0062079234, -0.015819108, 0.021024885, 0.0065744803, -0.02371521, -0.023728661, 0.035458475, -0.013283477, 0.004845947, -0.03782596, -0.0074118436, -0.020083271, -0.0013518881, -0.019464497, -0.005626141, -0.0013779505, 0.009698619, 0.02771034, -0.02206066, 0.0031947603, -0.011373347, 0.026755277, 0.025894372, 0.020796208, -0.0071629887, 0.012240976, -0.03532396, -0.00387743, 0.0011845835, -0.015967075, -0.006083496, 0.014447042, 0.0038236235, -0.024347436, 0.018092431, 0.00028563678, 0.024428146, 0.024912404, -0.021993402, 0.006473593, 0.005955706, 0.0039715916, 0.03365596, 0.0045601, 0.025302501, -0.023540339, 0.010182878, 0.018603593, 0.025262147, -0.002722272, -0.012227524, 0.008904974, -0.024199469, -0.009012586, 0.019060949, 0.0058312784, -0.001975707, 0.05092784, 0.03787977, 0.023661403, 0.010492265, -0.008999135, -0.002629792, 0.0019403965, -0.0038606157, 0.017379496, 0.019720078, -0.012826121, -0.013491977, 0.008649393, -0.014662269, 0.013552509, 0.012980815, 0.008239118, -0.0035377766, 0.0005275558, -0.00817186, 0.020554079, 0.008884797, -0.0069679404, -0.01600743, -0.04455177, -0.015294494, -0.016787624, -0.005256221, 0.0120795565, -0.003253611, -0.018065529, -0.041995965, -0.004755148, -0.02464337, -0.0064668674, -0.004623995, -0.036803637, -0.03782596, 0.003699196, 0.020769304, 0.0087704575, 0.0065341257, 0.008757006, -0.016316818, -0.004553374, -0.018428722, -0.037180282, -0.026055792, -0.027925568, 0.011016878, -0.0064971335, 0.030911827, -0.022585273, -0.009550652, -0.006510585, 0.0051486082, -0.024912404, -0.009860039, -0.0071629887, 0.005121705, -0.0062785447, 0.020285046, 0.016787624, 0.022908112, -0.028894084, 0.009631362, -0.023271305, 0.037207186, -0.031799633, -0.013922429, -0.0004146883, -0.008683022, 0.00704865, -0.028947892, -0.019101303, -0.016626205, 0.0043953178, 0.0076068924, -1.1106784e-05, 0.008487973, 0.0059590684, 0.0037193736, 0.006692182, -0.01550972, 0.014393236, 0.00057631795, -0.0048896647, 0.021764725, 0.014527752, 0.014568107, 0.00032641203, -0.005952343, -0.023769015, 0.0073916665, 0.015993979, 0.014003139, 0.009207635, -0.029997118, -0.0020665054, -0.009496845, -0.01401659, -0.020029465, 0.019262724, 0.013438171, 0.029270729, -0.026997406, 0.021051789, 0.0046508983, 0.0008592224, -0.01774269, -0.021105595, -0.013236396, -0.013545783, 0.0008075177, 0.028840277, -0.0025457195, -0.0006986436, -0.023849726, -0.012362041, -0.037503123, 0.0006582888, -0.0021606667, -0.0020850014, 0.0372879, 0.044148225, 0.031046344, 0.0015570252, 0.02222208, -0.00307874, -0.014299074, -0.0012921965, 0.012590718, -0.0010223233, -0.017514013, 0.011380073, 0.028302213, 0.014366332, 0.011998847, -0.0199084, -0.0069410373, 0.017191174, 0.013922429, 0.010862185, -0.0073580374, -0.031961054, -0.0025928002, 0.00277776, -0.014702623, 0.011911412, -0.0153886555, -0.03333312, 0.013478525, 0.011770169, 0.038202606, 0.026203759, 0.028867181, 0.0060397782, 0.0052125035, -0.0045365593, 0.023540339, -0.0381488, -0.015025462, -0.02023124, 0.006725811, 0.00018464454, 0.011232104, 0.044982225, 0.01666656, 0.0065812063, -0.015657688, 0.007586715, -0.039359447, 0.004812318, 0.013189316, -0.017446755, -0.022787048, -0.026916696, -0.012113186, -0.019935304, -0.026163405, 0.012758863, -0.01123883, 0.016532043, -0.03002402, -0.00615748, -0.008595587, 0.006517311, 0.057788167, -0.009321975, 0.01501201, 0.0123485895, 0.02727989, 0.019800788, -0.024764437, 0.016061237, 0.00783557, 0.03134228, 0.021751273, -0.012906832, -0.02771034, -0.01957211, -0.023674855, -0.028490536, -0.025531178, 0.0194914, -0.0010685632, -0.00011959333, -0.017271882, 0.0133641865, -0.02288121, 0.0008894885, -0.021751273, 0.0011644061, -3.1868785e-05, -0.008804087, -0.04057009, 0.0030114818, -0.009200909, 0.023540339, 0.0017655254, 0.009106748, 0.011117766, -0.0016116725, -0.015106171, 0.005333568, 0.02636518, 0.039198026, -0.018469077, -0.017877206, 0.012402396, 0.019693175, 0.002421292, -0.02495276, -0.009429587, 0.038337123, -0.00733786, 0.0138820745, 0.028060084, 0.017366044, 0.033467636, -0.002752538, -0.025235243, -0.017594721, 0.0056765843, 0.01322967, 0.026795631, -0.0063827946, -0.0154021075, -0.0030703328, -0.009597733, 0.0014813599, -0.031880345, -0.0033914903, 0.03631938, -0.03903661, -0.0069410373, -0.0014359606, -0.008373635, 0.02023124, 0.01592672, -0.012483105, 0.029916408, 0.013787913, -0.019800788, 0.023177145, 0.033064086, -0.011918137, -0.03532396, 0.026526598, -0.0046105436, 0.0012552044, -0.0036083977, -0.030858021, -0.010425007, -0.008985683, -0.040193446, -0.0002957255, -0.018119335, -0.018509433, -0.01103033, 0.003742914, 0.0031510424, -0.025302501, 0.019558659, -0.02148224, -0.011918137, -0.005878359, 0.010781475, -0.021549499, 0.0052965763, -0.010512442, -0.022585273, 0.0050779874, -0.006732537, -0.013935881, 0.012631074, -0.005737117, -0.0001576362, 0.030212343, -0.018845722, 0.007734683, -0.016814528, 0.02148224, 0.018939884, -0.013256574, -0.009638087, 0.016047785, -0.0036790187, 0.027105018, -0.030266149, -0.019222368, -0.0013653396, -0.014231816, -0.007506005, -0.009846588, 0.0138820745, 0.027400954, 0.007089005, -0.02039266, -0.008602313, -0.015993979, -0.020971078, -0.034355443, -0.021845434, 0.010075265, 0.013579412, 0.051116165, 0.016020883, 0.026661115, 0.017016303, 0.016209204, -0.034516864, 0.012133363, 0.0036891075, -0.028302213, 0.0047181565, 0.0002524281, -0.016801076, -0.0032990102, -8.059151e-06, -0.008683022, 0.015213785, 0.0035512282, 0.03559299, -0.015684592, -0.010505717, -0.00883099, -0.008851168, 0.014285623, 0.04444416, -0.04675784, -0.012577266, 0.009624636, -0.010868911, 0.0023641225, 0.01550972, 0.022235531, -0.027320245, -0.022006854, -0.025221791, 0.0017638439, -0.01003491, -0.013666848, 0.0077817636, 0.0070688273, 0.011386798, 0.008972232, 0.018011723, -0.0073311343, 0.009147103, 0.0019656182, -0.026755277, -0.011810524, 0.017863754, -0.01459501, -0.031530604, 0.007996989, 0.012826121, -0.010485539, -0.033064086, 0.002544038, 0.0022935015, -0.025410114, 0.0036655671, 0.014218365, -0.027010858, 0.009860039, 0.005767383, -0.010465362, -0.027656535, -0.03225699, 0.021280466, -0.008158409, -0.016115043, -0.0025457195, 0.0052898503, -0.04304519, 0.0123485895, 0.0027743971, -0.009369055, 0.0016553903, 0.22448067, -0.009880217, 0.016141947, 0.015240688, -0.0012703376, -0.0133709125, -0.008844442, -0.00783557, -0.0076606986, -0.0014603417, 0.008568684, 0.0020345578, -0.011164847, -0.008595587, 0.0014998559, -0.013317106, -0.038094994, -0.027817955, -0.0038000832, 0.0065341257, 0.012442751, 0.0032300707, -0.023661403, -0.027010858, 0.013687026, 0.00644669, -0.010936169, 0.0042170836, 0.026378632, -0.0069612144, -0.012402396, -0.0016688419, 0.004842584, 0.012752138, -0.020217787, 0.0026953688, 0.030938732, -0.008999135, 0.023742113, 0.0021404894, 0.005262947, 0.013196041, -0.0020513723, 0.0052192295, 0.002599526, 0.010028184, -0.026136503, -0.010351024, -0.0027340422, 0.00408593, -0.011716363, -0.023728661, 0.027764149, 0.016599301, -0.046461903, -0.0063928836, 0.015913269, 0.0067089964, 0.021441886, 0.026351728, -0.0067123594, 0.0037933574, -0.023594145, 0.031207763, 0.011010152, 0.020419562, -0.02536976, -8.585918e-05, -0.006947763, -0.003736188, -0.039359447, 0.006056593, 0.010875637, 0.01708356, 0.00783557, 0.00034196547, 0.0007591759, 0.013344009, -0.0018058802, 0.0039312365, 0.003327595, -0.021549499, 0.0022010216, -0.005098165, -0.039897513, -0.011628928, 0.00023098958, 0.0037765428, 0.0030518367, -0.025598437, -0.007620344, -0.02727989, -0.0068838676, 0.0046475353, -0.011810524, 0.0050040036, 0.007613618, 0.021374628, -0.016034333, -0.015038913, -0.01385517, 0.01475643, 0.010620056, -0.014958204, -0.015496269, -0.008353458, -0.0023069533, 0.010646959, -0.005128431, 0.014554655, -0.024307081, -0.03599654, 0.014245268, -0.0041330107, -0.006483682, 0.020190885, 0.022867758, 0.0077010537, 0.006954489, -0.007620344, -0.0120795565, -0.019612465, -0.010135797, -0.0118508795, 0.013814816, -0.017231528, -0.020042917, 0.014083848, -0.018213496, -0.011366621, -0.010673862, -0.004697979, 0.01849598, -0.006265093, -0.0074656503, -0.0048997533, 0.003954777, -0.0014401643, -0.021912692, -0.015617333, 6.463084e-05, 0.0014149426, 0.006234827, 0.009880217, -0.0066820933, 0.015119623, 0.0020143804, 0.030992538, 0.014460494, -0.04361016, -0.02387663, 0.0043986803, 0.006594658, -0.015429011, 0.025194889, -0.017796496, 0.01857669, -0.03217628, 0.022935016, -0.012583992, -0.037933573, -0.016558947, -0.0069343112, 0.00717644, -0.0061305766, -0.03384428, -0.17002851, 0.017527463, 0.013128784, -0.017392948, 0.015375204, 0.020850014, 0.01857669, 0.010189604, 0.010465362, -0.025006566, 0.0033175063, -0.022423854, -0.007996989, -0.011393524, -0.0065509398, 0.01417801, -0.010862185, 0.031718925, 0.04611216, 0.0240515, 0.04611216, -0.03209557, 0.009927297, -0.0041531883, 0.01223425, -0.017621625, -0.008709925, 0.0068300613, 0.0037597283, -0.025194889, -0.019706627, -0.0061709317, 0.020123627, 0.0036218492, 0.01525414, -0.007970086, 0.007425295, -0.0008230711, -0.0010097123, -0.017554367, 0.03368286, 0.0064366013, -0.016949045, 0.0068031577, -0.0071697147, 0.012752138, -0.0009105067, -0.03266054, 0.0273606, -0.00038883596, 0.035781316, -0.02222208, 0.0075194566, 0.0065744803, 0.03747622, -0.017312238, -0.012610896, 0.01318259, -0.0018311021, -0.022908112, -0.010915991, -0.026136503, 0.01040483, 0.008723377, -0.0034083046, -0.007976812, -0.0004226752, 0.0038908818, -0.031718925, -0.012496557, -0.016101591, 0.016774172, 0.012140089, 0.004980463, 0.032364603, 0.019921852, -0.008696474, 0.0008176064, 0.011205201, -0.003026615, -0.024347436, 0.023607597, 0.020446466, 0.017931012, 0.001370384, 0.005518528, 0.009678442, 0.02247766, -0.021078693, -0.009651539, 0.013700477, -0.0074992795, -0.0062482785, -0.013296928, 0.015038913, -0.009133652, 0.022033757, -0.022531467, 0.048076097, -0.017460205, -0.0015805656, -0.0022632354, -0.040193446, -0.021926144, 0.060586106, 0.02744131, 0.0012409121, 0.0019303078, 0.030777311, -0.0120795565, -0.021576403, -0.011763443, -0.01509272, 0.015563527, 0.0016326907, 0.02943215, 0.009005861, -0.013169138, 0.011709637, -0.021119047, 0.055797327, 0.018119335, -0.01857669, 0.012711783, 0.003736188, 0.009416136, -0.0920091, -0.008898248, 0.003736188, 0.027333695, 0.0036891075, 0.030696603, -0.02263908, 0.017487109, -0.0013485252, 0.04576242, -0.02297537, -0.019047497, 0.0118374275, 0.007297505, -0.012429299, 0.0029610384, 0.001336755, -0.0043515996, -0.03190725, 0.023486532, -0.0028214778, -0.0069410373, 0.004913205, -0.022262435, -0.018980239, 0.024697179, -0.0071360855, 0.011037056, -0.014339429, 0.010620056, 0.019841142, 0.003075377, 0.018092431, -0.023621049, -0.0027609454, -0.022410402, 0.0028769658, -0.019935304, 0.014958204, 0.00083231914, -0.00034995234, -0.0019689812, 0.010088717, -0.001167769, -0.0074925534, 0.0151599785, -0.010351024, 0.028167697, 0.012126638, -0.024253275, -0.026674567, -0.016101591, -0.009005861, -0.017769594, 0.020675143, 0.0069141337, 0.02654005, 0.015940173, -0.011628928, 0.0067089964, -0.010458636, 0.004708068, -0.00733786, -0.001938715, 0.015886366, 0.010377927, -0.030212343, -0.016384076, -0.010747846, 0.0017924287, -0.020863466, 0.023459628, -0.022235531, 0.009052942, -0.0136130415, 0.01475643, -0.0071428115, -0.007909554, 0.03368286, 0.030562086, -0.017016303, -0.0028736028, -0.0028836916, 0.01517343, 0.0016015838, -0.013243122, 0.002559171, 0.0055824234, 0.012503283, -0.04753803, -0.013922429, 0.026889794, -0.009052942, -0.011669282, -0.021670563, 0.0005880881, -0.015603881, -0.012577266, 0.011413702, 0.035135638, -0.0323377, 0.00021039178, -0.06844185, 0.029378343, 0.02106524, 0.0033393651, 0.0058918106, -0.006194472, -0.0046374467, -0.0013560917, 0.021872338, -0.008064248, -0.015361752, -0.005589149, -0.01281267, -0.027925568, -0.0047484227, -0.029539762, 0.02604234, -0.0037193736, 0.008373635, 0.010882363, -0.0136130415, 0.006796432, -0.004946834, 0.007512731, -0.00073101156, -0.003921148, -0.033709764, 0.0077481344, 0.0071024564, -0.007041924, -0.0138820745, -0.00050863944, 0.019773884, 0.0065004965, 0.031772733, -0.010391378, 0.014285623, 0.0074185696, 0.041108157, 0.011743266, -0.022423854, -0.027414406, -0.011259007, 0.0061373026, -0.009981103, -0.019087851, 0.008635941, 0.014877494, -0.004307882, 0.034382347, 0.023352016, 0.0005120024, 0.0016915415, -0.0464081, 0.011137943, -0.016047785, 0.0153886555, -0.014958204, 0.016908688, -0.016047785, 0.040193446, 0.023230951, 0.01666656, -0.0085148765, 0.024307081, -0.005874996, -0.0146353645, 0.007768312, -0.006907408, -0.032068666, -0.01475643, -0.01881882, 0.007297505, 0.01111104, -0.010169426, -0.0076606986, 0.0030669698, -0.0040993816, 2.1018159e-05, 0.0056026005, 0.02255837, 0.0032132561, -0.021818532, 0.021549499, -0.0044087693, 0.01981424, 0.015321397, 0.014527752, -0.0076001664, 0.029889503, -0.0011332992, -0.0008424078, 0.0015654325, -0.0005552998, 0.024011146, 0.026271017, -0.027185729, 0.0076337955, 0.026876342, 0.012906832, 0.009254716, 0.0038572527, -0.010714217, -0.009967652, -0.028329115, 0.017904108, -0.025154533, -0.009436313, -0.0113262655, 0.017177721, 0.015684592, 0.020177433, -0.03540467, 0.0019286263, -0.0037160106, 0.021710917, 0.023674855, -0.013787913, -0.012765589, 0.030615892, 0.013693752, 0.0154021075, 0.013323831, -0.014447042, 0.044175126, 0.025275597, 0.009644813, -0.022827404, 0.050766423, -0.011037056, -0.011010152, 0.0047686, -0.0041430998, -0.008891522, 0.009564104, -0.018213496, -0.011743266, 0.02222208, 0.027979374, 0.09631362, 0.013317106, -0.0006158321, -0.0029240462, 0.026472792, -0.027306793, 0.022679435, -0.009342152, -0.02835602, -0.030454472, -0.011097589, 0.016209204, -0.0012989222, -0.0031493611, 0.004445761, 0.008373635, 0.0065812063, -0.00061961537, -0.014917849, -0.029163117, 0.040758416, -0.011642379, 0.023997694, 0.008837716, -0.00924799, -0.01931653, 0.025221791, 0.013586138, 0.014003139, -0.03217628, 0.0052898503, -6.153066e-05, -0.009644813, -0.01766198, 0.0051856004, -0.0025776671, 0.025665695, -0.010882363, 0.017540915, -0.016639657, -0.0027172277, 0.0038572527, -0.015334849, -0.008676296, -0.0044020433, -0.0011896278, -0.017446755, -0.018173141, -0.03742241]" 30343373,"Frawk: A fast, JITted, statically-typed AWK written in Rust",https://github.com/ezrosent/frawk,145,1644905658,38,benhoyt,"[-0.0040175747, -0.0034742288, -0.013479228, -0.0013380117, -0.016296841, 0.014810161, -0.035142273, -0.044515435, 0.0033007828, -0.04137217, 0.009040428, -0.0060812277, -0.012891636, -0.003766255, -0.019992301, -0.0063927225, -0.008084705, 0.0051538227, -2.0242736e-05, -0.02210197, -0.008537789, 0.017372914, -0.009642179, -0.0030105263, 0.005277713, 0.0190295, -0.007907719, -0.024126686, -0.0227108, 0.008835125, -0.0070440294, -0.039956283, 0.01284916, 0.010449233, -0.015999505, -0.022781596, -0.012311123, -0.013493387, 0.00051547075, -0.017089736, 0.031715833, 0.0038476684, 0.0074263187, -0.0033202511, 0.0019379931, 0.0019663107, 0.010689935, -0.00073758775, -0.003518475, 0.013727008, 0.034660872, 0.008714775, -0.03146097, 0.019425947, 0.0119996285, 0.00481755, 0.015022543, 0.009585544, -0.005727256, 0.0054617776, -0.000938024, 0.013684532, -0.024367386, 0.0039255423, 0.012056264, 0.006863504, -0.012388997, -4.7813784e-05, -0.02224356, -0.01482432, 0.0014176551, 0.014852637, -0.0120067075, 0.02469304, 0.04284469, 0.0043680063, -0.03112116, 0.015418991, 0.023163885, -0.0064493576, 0.010243931, -0.009238652, -0.01742955, 0.039106753, 0.004764454, 0.0029308826, 0.0012627927, 0.016933989, -0.0299035, -0.009061666, -0.017160531, -0.011504068, 0.011454512, 0.012381918, -0.012813763, 0.011773087, 0.008920077, 0.009670497, -0.018137492, -0.040211145, 0.0005548501, 0.013146495, -0.0066369628, -0.012374838, -0.021309074, 0.0067254556, -0.006767932, -0.0039432407, 0.0022034715, 0.0055113337, -0.0008305053, 0.03222555, 0.025372665, -0.04726225, -0.0047255172, -0.021096691, 0.039729744, -0.042561512, -0.028176118, -0.010555426, 0.032423776, 0.006941378, 0.014109298, -0.0018353413, 0.015872074, 0.018746322, 0.001322083, -3.34337e-05, -0.009698815, -0.022540895, 0.015843756, 0.005075949, 0.0107182525, 0.00037609454, -0.0053308085, 0.03148929, -0.026477056, 0.005592747, -0.027227474, -0.0076457807, 0.015659692, 0.007104205, -0.022753278, -0.006123704, -0.016495064, -0.0019450726, 0.018364033, 0.008813886, 0.0046511833, -0.03313172, 0.017840154, -0.0009424487, 0.00071059744, -0.010286407, -0.011652736, 0.00840328, 0.008743092, 0.010534187, -0.0015477397, 0.009104143, 0.0011911135, 0.024268275, 0.0016318079, -0.001630038, -0.0069307587, 0.023914304, 0.022668324, -0.013302243, -0.0040919087, 0.002615848, 0.041711982, 0.016438428, -0.014611937, 0.022569213, 0.036048442, 0.0007176769, 0.0050936476, 0.0026494754, -0.031319384, -0.016594177, 0.00019811334, 0.02136571, 0.02285239, 0.025769113, -0.026009813, 0.0074971127, 0.034009565, 0.018165808, -0.008382041, 0.011050985, 0.003369807, 0.009854562, -0.010760728, -0.028515931, -0.61211556, -0.024593929, -0.016891513, -0.04137217, 0.014640255, -0.005741415, 0.015178291, 0.0057626534, -0.002741508, 0.027326588, -0.021648888, 0.005879464, 0.016084457, -0.0037202388, -0.013719929, -0.014767684, -0.009436876, -0.030214993, 0.002076042, 0.020063095, -0.00047963116, 0.025457619, -0.0064528976, -0.0049945354, 0.013981868, 0.0004955599, 0.008927157, -0.021677205, -0.0009300597, -0.0010822674, -0.048479915, -0.0042830533, -0.018137492, 0.00084510655, 0.06297858, -0.011907596, -0.017741043, 0.019539218, 0.016849035, 0.0340662, -0.012020866, -0.018463144, 0.00034113988, 0.011050985, -0.012148296, -0.01691983, 0.011192573, -0.002690182, -0.020091413, -0.03273527, -0.021648888, 0.0023556792, 0.01173061, -0.011928834, -0.015631374, -0.004633485, 0.034802463, -0.010208533, 0.009196175, 0.015050861, -0.011546545, 0.033896293, 0.003222909, -0.013599579, -0.019610012, -0.027000934, -0.019468423, -0.01037136, 0.011794325, -0.01198547, 0.03075303, 0.02768056, 0.025485937, -0.0372661, 0.0069307587, 0.021323234, -0.006743154, -0.016226046, 0.010987271, 0.014852637, 0.0138332, 0.008247532, -0.01776936, 0.008785568, 0.020558655, 0.001618534, -0.028997332, -0.023192203, 0.028954856, -0.013316401, -0.013472149, -0.0001372745, 0.0039043038, -0.064167924, -0.024664722, 0.03313172, 0.0040069553, 0.008339564, -0.007327207, -0.020898467, -0.0011344781, -0.010052786, 0.025259394, 0.015249086, 0.02419748, 0.0046618027, -0.016353475, -0.0055538104, 0.0054617776, -0.0117235305, -0.024494816, -0.015758803, 0.009599702, -0.017981743, 0.012502268, -0.025995655, 0.011652736, -0.031149477, 0.040437687, -0.016367635, 0.028827425, 0.0014636714, 0.019680806, -0.008856363, 0.037351057, -0.0021680745, 0.0077378135, -0.02296566, -0.021181645, 0.0063785636, -0.00011150097, 0.016452588, 0.028997332, -0.0077378135, 0.00962802, 0.0047113583, 0.016905671, -0.01915693, -0.0076033045, -0.019765759, -0.026222197, -3.0713236e-06, 0.015022543, -0.019355152, -0.019185247, -0.0299035, -0.028586725, 0.012898715, 0.026519533, 0.014215489, -0.004435261, 0.011751848, -0.02136571, 0.022300195, -0.017741043, -0.0033928154, -0.008339564, -0.056861956, -0.018137492, -0.011751848, -0.01086692, 0.031914055, 0.0031060984, 0.01099435, 0.0039255423, 0.0055502704, -0.0076599396, 0.024395704, -0.0011512918, -0.047828607, -0.014385395, 0.0018034839, 0.0012017327, -0.0024937282, -0.0027556669, 0.02333379, -0.0076740985, 0.017387072, -0.021535616, -0.015673852, 0.016296841, 0.012311123, -0.01680656, -0.0033149417, -0.012700492, 0.05102851, 0.021280756, 0.022583371, -0.0068989014, 0.023659443, 0.00938024, 0.0009849252, -0.011709372, 0.011043905, 0.0017061419, 0.016749924, -0.0053308085, 0.00097607594, -0.012764206, 0.026703598, -0.00022112147, 0.0021663045, 0.017811839, -0.0069838543, 0.011511148, -0.017840154, 0.015758803, -0.010335963, 0.003631746, 0.016381793, -0.012665095, -0.002691952, -0.0077024163, 0.00082962035, 0.0145553015, 0.029082285, -0.017500343, 0.023701921, -0.00888468, -0.010845682, 0.010222692, -0.008757251, 0.02605229, 0.013684532, 0.008544868, 0.008573186, -0.026972616, 0.02234267, 0.013365958, -0.043042913, 0.0006743154, 0.00031813173, 0.032933492, 0.0033998948, 0.017316278, 0.0018742782, 0.023503697, -0.026562009, 0.038710304, -0.016296841, -0.014994225, 0.01073949, 0.012643856, -0.0044883564, 0.01680656, -0.012629697, 0.036133394, 0.023517856, 0.005369745, -0.020657767, -0.0006212197, 0.044005718, -0.0076387012, 0.0072422535, -0.016523382, 0.0063608647, 0.012020866, -0.0025025774, 0.033046763, 0.029846864, 0.0045980876, 0.014456189, -0.0019008261, 0.015149973, -0.024593929, 0.0008123642, -0.0072705713, -0.012615538, -0.013521705, -0.0061838794, -0.016027821, -0.028331866, -0.018123332, 0.0044777375, 0.023149725, 0.008743092, 0.004350308, 0.029252192, 0.018788798, 0.009670497, -0.03692629, -0.016749924, 0.052897476, 0.005606906, 0.00043826076, -0.012983669, -0.015489786, 0.0065024532, 0.017188849, -0.009217414, 0.003992797, 0.0007667904, 0.0047219777, -0.0025167363, -0.00039180202, 0.014583619, 0.038625352, -0.0340662, 0.0029344223, -0.020586973, -0.025585048, 0.010406758, -0.008325405, -0.025854066, 0.04468534, -0.006084767, -0.006757313, -0.010505869, 0.011737689, -0.0026813329, -0.014293362, 0.019779919, 0.004668882, -0.03434938, 0.0020813514, 0.008346644, -0.0024229337, 0.008205055, 0.045648143, 0.008141341, -0.010243931, -0.03273527, -0.009054587, 0.03987133, 0.05102851, 0.036076758, 0.004665342, 0.004683041, -0.008969634, -0.00925989, -0.012084582, -0.021422345, -0.005235236, -0.0046511833, 0.018080857, -0.0039963364, 0.018349875, 0.005667081, 0.013783644, 0.002173384, -0.020204684, -0.037237786, -0.0023910764, -0.0031662737, 0.012169534, -0.0051078065, 0.017146371, 0.017613614, 0.02397094, 0.02208781, -0.0049237413, 0.0028512392, 0.002063653, -0.015135814, -0.009656338, 0.007865243, 0.01469689, 0.007759052, -0.014314601, 0.020912627, 0.029337144, 0.0034759985, -0.00432199, -0.013691612, -0.0065874066, 0.018746322, 0.015843756, -0.007369683, 0.009104143, -0.0083962, -0.01037136, 0.01691983, -0.01915693, -0.034717508, 0.011454512, 0.020034777, -0.02841682, 0.012035025, 0.00555735, -0.000586265, 0.02827523, 0.026604487, -0.0071679195, -0.031206112, -0.005320189, -0.01000323, 0.016976465, -0.0051042666, 0.011808484, -0.005426381, -0.011850961, -0.015758803, -0.008750171, 0.020643609, -0.00071457966, -0.04015451, -0.025216918, 0.0044918964, -0.0024530215, -0.011489909, -0.0010645688, -0.009861642, -0.02061529, -0.0039821775, -0.004024654, -0.033896293, -0.003297243, -0.037096195, -0.017203007, -0.01432876, -0.008205055, -0.016381793, 0.002421164, 0.012183693, 0.017811839, 0.011220891, 0.0026724837, -0.0070688077, 0.017358754, 0.024155004, 0.036897972, -0.000234506, 0.016820718, -0.030696394, 0.028855743, -0.0031945913, 0.012629697, -0.021280756, -0.0032830841, -0.020303795, -0.010767808, 0.0038122714, -0.006803329, -0.014406634, -0.015857916, -0.0029999071, -0.00024468268, 0.040437687, 0.028997332, 0.0019344534, 0.007921878, 0.004258275, -0.0028742473, 0.02407005, -0.017542819, -0.023404585, 0.032197233, 0.049725894, 0.00629361, 0.02643458, 0.020388748, -0.023149725, -0.036359936, 0.024126686, 0.0013787184, 0.034915734, -0.008325405, -0.019624172, 0.0057945107, -0.0065980256, -0.007185618, 0.020233002, -0.029875182, 0.018010061, -0.021691363, 0.00019368868, -0.0018264921, 0.0014840248, -0.03112116, -0.019794077, 0.0041981, -0.003198131, -0.0011866889, 0.015518104, -0.027807988, 0.019595854, 0.011787246, 0.004123766, 0.00042919026, -0.023546174, -0.000605291, 0.0026193878, 0.0590141, 0.010208533, 0.04227834, 0.012127058, 0.005235236, -0.01223325, -0.028232753, -0.0078864815, -0.0059714965, -0.0010645688, 0.0051219654, 0.0047750734, 0.026363784, 0.0046228655, 0.004874185, -0.018321557, 0.003975098, 0.013719929, -0.015107497, 0.007504192, -0.008459915, -0.0071219034, -0.014003106, 0.015447309, -0.015843756, 0.024013415, -0.0087289335, 0.007681178, 0.0013034994, -0.009882879, 0.029563686, 0.022993978, 0.02235683, -0.019680806, -0.009571385, -0.024636405, 0.026746074, -0.014406634, -0.005815749, -0.021464823, 0.013040304, 0.010966032, 0.004683041, 0.029960133, 0.013819041, -0.0067643924, -0.012806683, 0.011829722, -0.010831523, -0.011249209, 0.031432655, -0.011277527, -0.003677762, -0.03140434, -0.018604733, -0.0015512793, -0.0071219034, 0.0069166, 0.005783892, 0.019128611, -0.010817364, -0.025216918, 0.009946595, -0.03061144, 0.045393284, -0.021747999, 0.0053909835, 0.015319879, 0.007822767, -0.015872074, -0.021521457, 0.014796002, -0.005532572, 0.013804882, 0.022002859, -0.011652736, -0.021917906, -0.014668572, -0.0030830903, -0.037577596, -0.041711982, 0.026250515, 0.0015273864, 0.018165808, -0.028261071, 0.0017964045, -0.018675528, 0.03936161, -0.012311123, 0.0049732975, 0.0012999597, 0.0100173885, -0.014739366, 0.013401355, 0.00049467495, 0.0007521891, 0.015135814, 0.0018583495, 0.007985594, -0.0060599893, -0.016041981, 0.008651059, 0.021960381, 0.02619388, -0.00840328, -0.012325282, 0.007695337, -0.0016132244, 0.010081104, -0.01592871, -0.009769609, 0.037464328, 0.00046989694, 0.007992673, -0.015093338, 0.028445136, -0.0017689718, -0.002704341, 0.0034547602, -0.0111500975, -0.022654166, -0.027822146, 0.034717508, -0.020105572, -0.014406634, -0.015503945, -0.0020371052, 0.005978576, -0.0127146505, -0.0170331, 0.042136747, -0.03123443, -0.020020619, -0.009769609, 0.012063343, -0.0070581883, 0.011688134, -0.010321804, -0.0025468238, 0.037719186, -0.028190278, 0.007090046, 0.00827585, -0.00568124, -0.0139960265, 0.011829722, 0.0014495127, -0.016041981, 0.00840328, -0.027326588, -0.025754955, -0.026009813, -0.0132810045, 0.019425947, -0.0055007148, -0.026165562, 0.025415141, 0.029790228, 0.0020229463, -0.0025096568, -0.014158853, -0.00015010597, -0.019185247, 0.0025131966, 0.043071233, -0.014293362, 0.010555426, -0.009351923, 0.011312924, 0.007178539, -0.014010185, -0.025514254, 0.023050614, -0.00444588, -0.009557226, -0.0060316715, -0.0036742224, -0.0027202698, -0.020898467, 0.026264673, 0.0044777375, 0.011341241, 0.023857668, 0.043071233, 0.003137956, 0.03568031, -0.02483463, -0.017939268, -0.0037379374, -0.033414893, -0.01333764, -0.019425947, 0.006233435, 0.048564866, 0.016211888, -0.03681302, -0.0059573376, 0.020289637, -0.023050614, -0.00079245336, -0.001518537, 0.035170592, 0.034660872, 0.014937591, -0.0016627804, 0.040211145, -0.0139960265, 0.01752866, -0.026236355, 0.0004827284, 0.0035733406, 0.010697014, 0.0063148485, -0.03369807, -0.011787246, -0.021818792, 0.009819165, 0.005097187, 0.008573186, 0.0094439555, -0.008948395, -0.010973112, -0.008920077, -0.0033184814, -0.010208533, 0.015829599, 0.013550023, -0.012204932, -0.012771286, 0.0335848, -0.0035397133, -0.01061914, 0.024508975, -0.007518351, 0.00015320322, -0.012020866, -0.0021645348, -0.027723035, 0.021719681, -0.011702293, 0.030101722, -5.2929776e-05, 0.0027592066, 0.015603056, -0.0012813762, -0.011192573, -0.012806683, -0.014130536, -0.047743656, -0.019794077, -0.01185804, -0.00014634503, -0.0074263187, 0.007348445, 0.014640255, 0.0053272685, -0.015121656, -0.019850712, -0.00023870941, -0.018576415, 0.0087360125, -0.015050861, 0.02827523, 0.0040600514, 0.007146681, 0.0034547602, -0.020317955, -0.010208533, 0.008417439, 0.0021149789, 0.022186924, -0.006682979, 0.0060068937, -0.029167239, 0.011652736, -0.010307645, -0.011305844, 0.011829722, 0.19074808, 0.0070794267, 0.04457207, 0.028983174, 0.02051618, -0.016735764, 0.011270448, 0.0036282062, -0.021634728, 0.0353405, 0.011822643, -0.004113147, -0.019836554, 0.0042511956, 0.013351799, 0.003642365, -0.0016893282, -0.020771038, -0.03497237, 0.006679439, 0.02888406, 0.0041025276, -0.020204684, -0.020091413, 0.016849035, -0.004718438, -0.010888158, -0.0076316223, 0.0122898845, -0.011865119, -0.013592499, -0.00034512204, -0.0074050804, -0.0019627712, -0.019114451, -0.0015380054, 0.028388502, -0.013875676, 0.0303849, -0.0033202511, 0.016197728, -0.048933, -0.024749676, -0.019043658, 0.0068989014, -0.021351552, 0.007298889, 0.008544868, -0.009606782, 0.006456437, -0.036359936, -0.012134138, 0.029365461, 0.03112116, -0.012325282, -0.008431598, -0.012537665, 0.009429797, 0.008849284, 0.02112501, -0.01173061, 0.023078931, -0.014371236, 0.016976465, -0.04485525, 0.022569213, -0.021578092, -0.0031963612, 0.00703695, -0.016226046, -0.026477056, -0.0072139357, 0.010385519, -0.005444079, -0.012360679, -0.03497237, -0.0021167486, 0.009705894, 0.0038228903, 0.059750363, -0.004683041, -0.044657025, 0.002297274, -0.00778029, -0.018250762, -0.012728809, 0.022059495, 0.0015229617, -0.0017433089, -0.038710304, -0.0057980507, -0.016325159, -0.01704726, -0.019992301, 0.022073653, -0.004877725, -0.00011321552, 0.017146371, -0.0071573006, -0.0138473585, -0.03497237, 0.025924861, 0.006127244, 0.0100103095, -0.02137987, 0.02531603, 0.0023662983, 0.016466746, 0.0060564494, -0.016834877, -0.026632803, -0.013132337, -0.003369807, -0.00753251, 0.03655816, 0.0026972615, -0.0122828055, -0.02779383, 0.00308663, -0.02112501, -0.0005141434, -0.024664722, 0.025670001, -0.022059495, -0.007624543, -0.028841585, -0.029818546, 0.030554805, -0.018944547, -0.022385146, 0.010951873, -0.0037627153, 0.0067254556, -0.005967957, -0.008806807, 0.0057626534, -0.0012981899, -0.038228903, -0.002817612, 0.0026459356, 0.0072457935, 0.026108926, 0.010222692, 0.010024468, 0.00085661066, 0.016863195, 0.001704372, -0.0006136978, -0.0056246044, -0.015574738, -0.020643609, 0.0075537483, 0.0032653855, -0.006113085, 0.004952059, -0.016523382, -0.011504068, -0.01309694, 0.021790475, -0.012827922, -0.046497677, 0.009472273, 0.020459544, -0.008629821, -0.013783644, -0.028841585, -0.18157314, 0.011893437, -0.0125730615, -0.018052539, 0.03361312, 0.008240453, 0.012735888, 0.014342919, 0.0017026021, 0.004024654, -0.00962802, 0.01247395, -0.014477428, -0.007518351, -0.0067360746, -0.01495175, -0.0035751106, 0.0139960265, 0.039304975, 0.02555673, 0.04023946, -0.011751848, 0.014173012, -0.0029928277, -0.010527108, 0.0046971994, 0.007238714, -0.0027822147, 0.00222117, -0.019652488, -0.014668572, -0.016041981, 0.013188972, -0.02419748, 0.008778489, -0.025528412, 0.0018866672, -0.002173384, -0.017967585, 0.012042105, 0.016112775, 0.017995903, 0.02208781, -0.0076174634, 0.00078094925, 0.019071976, 0.017627772, -0.0358219, 0.00457331, -0.018364033, 0.045676462, -0.0023804572, -0.013174813, -0.0037733344, 0.010102342, -0.007759052, 0.0102934865, 0.028105324, 0.0054157614, -0.021110851, -0.02667528, -0.02074272, 0.0083962, 0.0015344657, -0.016226046, -0.0072705713, -0.043156184, 0.008240453, 0.0030777808, -0.0020654227, -0.016027821, 0.014512825, -0.0072918097, 0.0023379808, -0.012339441, -0.012296964, -0.04632777, 0.00069245644, 0.016254364, 0.027340746, -0.0059113214, 0.032791905, 0.0019468423, 0.0014583619, 0.0070794267, -0.0037697947, 0.0025592127, 0.013033224, -0.027878782, -0.00938732, 0.014937591, -0.0051325844, -0.01914277, -0.008955475, 0.0036016584, 0.026604487, 0.021762159, 0.0077661313, -0.005022853, -0.02248426, 0.017556978, -0.0170331, -0.031291068, -0.005408682, 0.023277156, -0.00370608, -0.0068847425, 0.015772963, 0.05148159, -0.006728995, -0.025882384, 0.019963983, 0.026023973, 0.0025273554, -0.00011349206, 0.027029252, 0.0058086696, -0.016395953, -0.005171521, -0.009075825, 0.03967311, 3.3820856e-05, 0.016339317, 0.0130049065, 0.0033255608, -0.018958705, -0.10330299, -0.006063529, -0.010909396, -0.002863628, -0.014420792, 0.0053874436, -0.019185247, 0.030668076, 0.006410421, 0.034632556, -0.004753835, -0.023885986, -0.0029220334, 0.01789679, -0.010845682, 0.011688134, 0.017684408, -0.02123828, -0.0047219777, 0.032650318, 0.0062900707, 0.0029857482, -0.02469304, 0.0031167176, 0.008176737, 0.010449233, -0.011178415, 0.008509471, 0.022427624, 0.014293362, 0.012056264, 0.0044635786, 0.020275477, -0.032650318, -0.002284885, -0.011737689, -0.004123766, -0.04103236, 0.0005362666, -0.027397381, -0.005022853, -0.0029945974, 0.018802958, -0.017018942, -0.011334162, 0.026406262, -0.038059, 0.051283367, 0.015249086, -0.015857916, -0.02878495, -0.032508727, -0.046752535, -0.017160531, 0.03936161, -0.02469304, -0.015050861, 0.0016087997, -0.00679271, -0.014796002, -0.027723035, -0.0065413904, 0.0024760296, 0.0050936476, -0.0019149849, 0.01864721, 9.0649846e-05, -0.0070829666, 0.014427871, -0.008856363, -0.0017627772, 0.032990128, -0.036841337, 0.00974837, 0.021875428, 0.0058582257, -0.010449233, 0.003297243, -0.009712974, -0.018349875, -0.029931815, -0.020218844, -0.0063006897, -0.023673603, -0.012119979, 0.020940945, -0.011015588, 0.0006194498, 0.038087316, -0.038172267, 0.004874185, 0.02603813, 0.00050308177, 0.01592871, -0.005617525, -0.016141092, 0.02075688, 0.0039043038, -0.009797927, 0.0010751879, -0.051793087, 0.0029839785, -0.07022791, 0.0073767626, 0.03137602, -0.033896293, 0.008205055, -0.017018942, -0.014010185, -0.023149725, 0.0028972554, 0.011327083, -0.06405465, 0.0045237537, -0.031630877, -0.008197976, -0.022526735, -0.017684408, -0.00444588, -0.014463269, 0.021252438, 0.007128983, 0.01963833, -0.0044600386, 0.011341241, 0.015348197, -0.018590575, -0.015178291, -0.02098342, 0.0303849, 0.0142721245, -0.0308663, 0.007667019, 0.010944794, -0.013401355, 0.011822643, 0.008311247, 0.0005942294, 0.004962678, 0.014399554, 0.034774143, 0.024806311, 0.0032034407, -0.0035839598, 0.037237786, -0.012742968, 0.002743278, -0.035368815, 0.007560828, -0.00042166834, 0.025670001, 0.035255544, 0.021889588, -0.0037202388, -0.02384351, -0.02902565, -0.009882879, 0.0022176304, 0.015418991, -0.010881079, -0.009960754, 0.01284916, 0.030498171, 0.027454017, 0.0152632445, -0.014994225, 0.020190526, -0.020643609, -0.018604733, -0.017387072, 0.0100103095, -0.0340662, -0.0037450166, -0.0023645286, 0.012750047, -0.021960381, 0.008530709, 0.0058865435, -0.025231076, 0.030554805, -0.012608459, 0.016948147, 0.008332485, -0.020445384, 0.0058723846, 0.02643458, 0.014236727, 0.0152774025, -0.0224701, -0.002334441, -0.0040423525, 0.0072457935, -0.022824071, 0.006559089, -0.011277527, 0.0041308454, 0.009663418, 0.012530586, 0.00028207092, 0.018236604, 0.037407693, 0.013443831, 0.007348445, -0.025924861, -0.023277156, -0.024777994, -0.0074404776, 0.012820842, -0.031800784, 0.0117164515, 0.008148421, 0.029535368, 0.017075578, -0.030016769, -0.013465069, 0.014541143, -0.03715283, -0.0064989137, -0.010279328, -0.020105572, -0.013755326, 0.026406262, 0.017995903, 0.011624419, 0.04448712, -0.0068104086, 0.0053555863, -0.014852637, -0.0060175126, -0.0132810045, 0.0018123332, -0.011702293, 0.004481277, 0.01827908, -0.037237786, -0.01840651, 0.00080572726, 0.024636405, 0.0018955165, 0.016254364, -0.0069873943, 0.07855332, 0.023050614, 0.002419394, -0.008778489, 0.009939515, 0.014611937, 0.0104421545, -0.018802958, 0.0019981682, -0.03752096, 0.005752034, -0.0097342115, 0.012020866, -0.017004782, 0.0076033045, -0.006605105, 0.021521457, 0.019340994, -0.03123443, -0.019992301, 0.025613366, 0.0059325597, 0.028246913, 0.019525059, -0.035765264, -0.006431659, 0.012948272, 0.0026866423, 0.0035662611, -0.026165562, 0.021592252, -0.004778613, -0.00044711004, -0.02950705, 0.016891513, -0.009351923, -0.020048937, -0.019128611, 0.016041981, 0.022937343, 0.008382041, -0.010236851, -0.031687513, -0.007383842, 0.0045768493, -0.0051325844, 0.015404833, -0.00021503758, -0.025754955]" 17029560,"Taskwarrior, where have you been all my life?",https://blog.djy.io/taskwarrior-where-have-you-been-all-my-life/,424,1525872191,228,daveyarwood,"[-0.022293698, -0.021140112, 0.00037705287, -0.015103913, 0.0020254804, 0.01198521, -0.021220595, -0.017196462, -0.011126728, -0.007142836, 0.010429212, -0.003886642, 0.009966436, 0.019315839, 0.023500938, 0.006867854, 0.016807463, 0.0029242034, -0.025673969, -0.0012382593, -0.020187734, 0.010301781, 0.009282334, 0.005563364, -0.018081771, -0.0032058926, 0.011220625, -0.006545923, 0.0064587337, -0.007853766, 0.006076441, -0.020080425, 0.011763882, 0.0020707517, -0.015063671, -0.00765256, 0.015989222, -0.012977829, 0.005134123, -0.0031472074, 0.017759841, 0.032407686, 0.009275626, 0.008303128, -0.025995899, 0.018631736, -0.0051643043, -0.03267596, 0.0008827942, -0.0073574567, 0.025995899, 0.0036485472, -0.046116564, 0.0033215864, 0.004778658, -0.0145405345, -0.0014335974, 0.029000586, -0.009396351, -0.011052952, -0.021891285, 0.00044600808, 0.0007465605, 0.014205189, 0.023876524, 0.003547944, -0.045848288, -0.006861147, -0.009114661, -0.016633084, 0.032166235, 0.043916706, -0.0056170193, 0.028732311, 0.030073687, -0.017183049, 0.0028068328, -0.0052950885, 0.015948981, -0.0033048193, -0.0032779917, 0.00049463304, -0.02397042, 0.023487523, 0.011656572, 0.0017504978, 0.03715616, 0.019235356, -0.0059154755, -0.009644506, -0.018779287, 0.02131449, 0.019691424, 0.03391003, 0.015814843, 0.011877899, -0.009228678, 0.010704194, -0.0004195997, -0.018457357, -0.002184769, 0.0055600107, -0.025660556, -0.0035647112, -0.02993955, 0.009879246, 0.025553245, -0.020415768, 0.0029493542, -0.016431877, -0.022079077, 0.02610321, 0.013085139, -0.023098525, -0.010160936, -0.012843692, 0.022012008, -0.028007966, -0.0005482881, -0.007840352, 0.021180354, 0.008269593, 0.051240627, -0.020402355, 0.011891313, 0.02457404, -0.008866507, 0.005979191, 0.029805413, -0.012085813, 0.0007214097, 0.008209231, -0.018202495, 0.024050903, -0.0015895326, 0.012173003, -0.02735069, 0.004657934, -0.017209876, -0.023930177, 0.02183763, 0.03726347, 0.010516401, -0.0038396937, -0.019543873, 0.016177015, 0.036458645, 0.014849051, 0.02401066, -0.0024413073, 0.009711575, 0.0055063553, 0.003360151, -0.011864485, 0.010737728, 0.035546508, 0.012702847, 0.02215956, 0.00057385815, -0.014500293, 0.009369523, 0.0044734944, 0.0040040123, 0.024037488, 0.030744376, 0.03004686, 0.023916764, -0.00937623, -0.0069282157, -0.0066532334, -0.0076659736, 0.016874531, -0.041314434, 0.018390289, -0.010207884, 0.005536536, -0.009081127, 0.021475457, -0.009195144, -0.023500938, -0.0016088148, -0.007961077, 0.017411083, 0.015063671, -0.022012008, -0.016177015, -0.010046919, -0.021180354, 0.018953666, 0.01028166, 0.015144154, 0.00076961546, -0.019584114, -0.0060194326, -0.6223993, -0.010053625, -0.00019628128, -0.0073574567, -0.006921509, 0.0063447165, -0.01804153, 0.009812178, -0.036807403, 0.011260865, 0.0071294224, 0.0042354, 0.019718252, -0.0026039495, -0.01601605, -0.019584114, 0.008457386, -0.023876524, -0.01633798, -0.008846385, -0.03377589, 0.021783974, -0.023635074, 0.003812866, 0.0014838991, -0.015063671, 0.0252179, -0.019704837, -0.0203487, 0.014325914, -0.008048266, 0.022709524, 0.008108628, -0.00091129844, 0.05000656, -0.023769213, -0.012018744, 0.014017397, -0.008242765, 0.02916155, -0.028222587, -0.006830966, 0.015640464, 0.016270911, -0.002082489, 0.009436592, 0.021113284, 0.0025955657, 0.026840968, -0.018873185, 0.013091846, -0.012736381, -0.0088329725, 0.00011988563, 0.00735075, 0.016297739, 0.018350046, -0.005503002, 0.02215956, -0.029912723, -0.009798764, 0.016552601, -0.018926838, -0.0042152796, -0.03782685, 0.024694763, 0.008564697, -0.02123401, 0.0015308473, -0.0132997595, 0.0022652515, -0.0020841656, -0.014728327, -0.01280345, 0.01491612, 0.02177056, 0.024587452, -0.018873185, -0.0016767221, 0.0065492764, -0.009081127, 0.009315868, -0.0141112935, -0.038551196, 0.044802014, 0.001239936, -0.028410379, -0.020442596, 0.009101247, 0.0062474664, -0.006720302, 0.01049628, -0.011166969, -0.030502928, -0.012515054, 0.017115979, -0.017317185, 0.0015367158, 0.011073072, -0.012193123, 0.00051307696, -0.030395618, 0.016713565, 0.015935566, 0.009839006, -0.0069416296, -0.0039570644, 0.022535145, 0.045580015, 0.0010546582, 0.023380212, -0.01107978, -2.6958547e-05, 0.006894681, 0.028464034, -0.028168932, 0.011220625, 0.0132997595, 0.010529815, 0.0029845654, 0.0065157423, -0.018886598, 0.00030537302, -0.014983188, 0.008376904, 0.027162898, 0.005546597, -0.02642514, -0.014621017, -0.021743732, 0.008242765, -0.017464738, 0.004295762, -0.023152178, -0.009550609, -0.006076441, 0.0016356424, 0.00074949476, 0.010610297, -0.0338832, -0.018175667, 0.0015274938, -0.0026659882, -0.0066532334, 0.0029728282, -0.05470138, -0.024627695, 0.0066230525, -0.0045707445, 0.0041180295, 0.0081019215, 0.0024027429, -0.023876524, 0.036458645, 0.00065476, -0.022012008, -0.028625, -0.03780002, -0.0063916645, -0.014205189, 0.0020238035, 0.014352742, -0.020402355, 0.022454662, 0.011696814, -0.0018511012, -0.012032158, 0.033319823, -0.017344013, -0.036378164, -0.008564697, -0.026948277, -0.0032243365, 0.005254847, 0.009523782, 0.006914802, -0.025808107, 0.005382278, -0.002094226, -0.0037323835, -0.013420484, 0.0050268127, 0.0004606794, 0.0034607544, 0.030958997, -0.016525773, 0.0134271905, 0.005653907, -0.028490862, 0.019342666, 0.0047317096, -0.00045900268, -0.011951676, -0.026277589, -0.019101217, 0.03004686, -0.018725632, 0.022669284, 0.0014176685, 0.008591524, 0.01978532, -0.0111066075, -0.0059054154, -0.02127425, 0.0130784325, -0.022414422, 0.02851769, -0.016418463, 0.037853677, 0.007478181, 0.005073761, -0.025056936, -4.2415828e-05, -0.018685391, -0.0053621572, 0.018524425, -0.022964386, 0.016740393, -0.020321872, 0.023152178, 0.014553948, 0.014191776, 0.013588156, -0.0028168932, -0.005358804, 0.019289011, 0.0323272, 0.027820174, 0.013152208, -0.024386246, 0.0074848877, 0.020013355, -0.0084506795, 0.0001633756, 0.039221883, -0.0051609506, 0.011260865, -0.028785964, 0.050489455, -0.0042789946, -0.0073641636, 0.0013044898, 0.030744376, -0.0062541733, 0.029027414, 0.0032293668, 0.04190464, 0.0076592667, -0.006257527, 0.0110261245, -0.028464034, -0.005670674, -0.0037759782, -0.02926886, -0.01623067, -0.014674672, -0.0026928156, -0.017397668, 0.045794636, 0.039812088, -0.0020539847, 0.014299086, -0.0064050783, -0.029912723, 0.020482838, -0.004815546, 0.007015405, -0.022401007, -0.0076123183, -0.013923501, -0.0024647815, -0.016606256, 0.011200503, -0.017733013, 0.006452027, 0.0076592667, -0.009999971, 0.016592842, 0.011334642, 0.008799437, -0.025861762, -0.022669284, 0.016713565, -0.01370888, 0.0012558649, 0.0041012624, -0.00047660826, 0.008350076, 0.007464767, -0.0052716145, -0.0068577933, 0.018403701, -0.005798105, 0.011113314, -0.006116682, 0.0048356666, 0.028115276, -0.0010236389, 0.008350076, -0.009369523, -0.01722329, 0.00089453126, -0.018001288, -0.013205864, 0.028088449, 0.008202525, -0.02621052, -0.013534501, -0.001321257, -0.0111066075, -0.0032746382, -0.025995899, -0.01612336, 0.015439257, 0.02582152, 0.0004258874, 0.005392338, -0.0021177, 0.031549204, 0.013286346, -0.015788015, -0.020885251, -0.02642514, 0.04485567, 0.09164292, 0.01875246, -0.0022836956, 0.016673325, -0.017062325, 0.006750483, -0.02763238, -0.049952906, 0.032112584, -0.0054325797, 0.01260895, -0.009335989, 0.005080468, -0.006730363, 0.010228005, 1.3701963e-05, -0.008457386, -0.018081771, 0.00907442, -0.0143661555, 0.022897318, 0.015546568, -0.018846357, 0.0128235705, 0.037343957, 0.010093867, 0.016378222, 0.019087804, 0.0039067627, -0.027712863, 0.0049262093, 0.03771954, 0.009798764, 0.009724989, -0.025472762, 0.021703491, -0.008269593, -0.00056128274, 0.005660614, -0.034688026, 0.007927543, 0.032541823, 0.01138159, -0.012863812, 0.0056472, -0.017598875, -0.00989266, 0.02819576, -0.012427865, -0.03715616, 0.0341783, 0.007873887, -0.03509044, -0.00076542364, 0.0043594777, 0.022924144, 0.009953022, 0.0061703376, -0.029000586, 0.0064956215, 0.0010177703, -0.015694119, 0.019289011, 7.445694e-05, 0.006452027, -0.031415064, -0.0073641636, 0.008410438, 0.014379568, 0.019342666, -0.013393656, -0.007149543, -0.037880506, 0.030341962, 0.03640499, 0.01782691, 0.0065492764, 0.03256865, -0.0023138765, 0.003234397, -0.012669312, -0.011623038, 0.0039000555, -0.00020173063, 0.0048725544, -0.010590177, 0.013353415, -0.003789392, 0.008249473, -0.0032478108, 0.0012776622, 0.024024075, 0.019624356, 0.020442596, 0.023313144, 0.01782691, -0.006274294, 0.00775987, 0.022897318, -0.0225888, 0.010811504, -0.001604623, 0.0012919144, -0.02364849, 0.00055667176, -0.010891987, 0.039195057, 0.032300375, -0.010663953, -0.0012986213, 0.025191072, 0.0056069586, 0.022454662, 0.023018042, 0.016177015, 0.02063039, 0.0065626903, 0.02993955, 0.017880565, -0.019530458, -0.015331947, -0.031200444, 0.013293053, 0.018014703, -0.025191072, -0.0020539847, 0.033051547, -0.02670683, -0.0014143151, 0.012535174, -0.0073842844, -0.0024849023, -0.009906074, 0.0003464527, -0.040482778, -0.032488167, -0.0047216495, 0.013923501, 0.006032846, -0.014942948, 0.0070690606, 0.008014732, -0.02851769, -0.0026291003, 0.01857808, -0.03267596, 0.009081127, 0.021086458, -0.00967804, 0.03246134, 0.0112944, -0.0061803977, -0.011770589, -0.011884606, -0.0011628068, -0.06583482, -0.0041280896, -0.0112340385, 0.022065664, 0.020657217, 0.011334642, -0.006723656, -0.0045808046, 0.0017236703, 0.023313144, -0.012461399, -0.012977829, 0.004825606, -0.007095888, -0.002243454, 0.026250761, -0.00085554743, 0.028356723, -0.02606297, 0.014392982, 0.011529141, -0.0024966393, -0.008551283, -0.029376172, -0.045580015, 0.006106622, 0.013729, -0.014594189, -0.003638487, -0.013594863, -0.010254832, 0.031817477, 0.021140112, 0.04692139, 0.024547212, 0.007505008, 0.002105963, 0.008376904, -0.013058312, 0.017062325, -0.04367526, 0.00877261, -0.042280223, 0.018926838, 0.0068108453, 0.016458705, -0.0011208887, 0.017773254, -0.009322575, -0.002860488, -0.0024094498, -0.0071361293, -0.0040643746, 0.012662605, -0.017156221, -0.022079077, -0.009121369, 0.0051911315, 0.0057478035, -0.00078302925, -0.0050368733, 0.006468794, 0.01219983, -0.022172973, -0.035492852, 0.0024815488, -0.0051676575, 0.017719598, 0.03672692, 0.016539186, 0.02763238, 0.03149555, 0.0062541733, -0.019114632, -0.01722329, 0.019892631, 0.00064050785, 0.030127343, 0.008128749, -0.017196462, 0.028329898, -0.029537138, -0.01441981, -0.036485475, 0.020737698, 0.0038095126, 0.01708915, -0.03136141, -0.0028705483, -0.011911434, 0.026170278, 0.0056103123, 0.0069550434, 0.0049798647, -0.005888648, -0.024158211, 0.02993955, -0.03171017, -0.00022677667, -0.007491594, -0.0026223934, -0.0020137432, -0.044721533, -0.015895326, 0.012937588, -0.007619025, 0.014446638, -0.036914714, 0.0155733945, 0.01088528, 0.024439901, -0.042789947, -0.0057410966, -0.007833646, 0.02819576, -0.02418504, -0.009470127, -0.014647844, -0.0048759077, -0.014178362, -0.012213244, -0.0016658234, -0.012099227, -0.011388296, -0.017572047, 0.023313144, -0.008497627, -0.012622364, 0.0028755784, 0.010972469, -0.011582796, -0.0063078287, 0.0062407595, -0.0048054857, -0.037209816, -0.018417116, -0.025942244, 0.0043829517, 0.0054862346, -0.022052249, 0.014822223, -0.004191805, 0.025741037, 0.008940282, 0.0052112523, 0.0064050783, 0.019114632, -0.023339972, 0.012776623, -0.0054795276, -0.025673969, 0.026250761, -0.03289058, -0.022186387, -0.0051810713, 0.017317185, 0.016257498, 0.0046914686, 0.003155591, 0.0061703376, -0.0034674613, 0.003433927, 0.0024832254, -0.032944236, -0.004892675, -0.015707532, -0.0043997187, 0.029242033, -0.0020321873, -0.0009347726, 0.0013573065, 0.020227976, 0.00052690995, -0.03782685, -0.015895326, -0.009845712, -0.0027464707, 0.017236704, 0.00594901, 0.002456398, -0.0028101862, -0.01502343, -0.005080468, 0.0069684573, 0.01601605, -0.009141489, 0.004664641, 0.027001932, 0.0032478108, -0.00775987, -0.021126699, -0.010563349, -0.009885954, -0.03970478, -0.009168317, -0.0074848877, 0.027015347, 0.0023625013, 0.001260895, -0.014057638, -0.0203487, -0.050274834, -0.030127343, -0.0075854906, 0.00053403596, 0.023487523, -0.011348056, -0.015492912, 0.015452671, -0.026304416, 0.018631736, -0.024533797, -0.0053051487, -0.0034775217, 0.02528497, 0.023769213, -0.036646437, -0.030529756, -0.0033886554, -0.01935608, -0.04474836, -0.0080214385, 0.013581449, 0.0033769184, 0.017397668, 0.007873887, 0.02287049, 0.028705483, 0.009939609, 0.010160936, -0.018940253, 0.018443944, 0.022642456, -0.0033299702, -0.0074312324, 0.002250161, 0.002449691, -0.009027472, -0.0043292963, -0.0015576748, -0.012441278, 0.014902706, 0.0018812822, 0.022172973, -0.026961692, -0.0090073515, 0.017880565, 0.0058785877, -0.02252173, -0.012273606, 0.021542525, -0.0015031814, -0.0050402265, 0.028785964, -0.02248149, 0.011804123, 0.0012969446, 0.009215265, 0.0025502944, 0.0071294224, -0.01644529, 0.0050838212, -0.02364849, -0.0032595478, 0.005358804, -0.014299086, 0.0058987085, -0.0118376585, 0.029859068, -0.007511715, -0.031388238, -0.0033249399, -0.023916764, -0.009959729, 0.00997985, -0.0015224636, -0.023889937, -0.007981197, 0.021797387, -0.0063212425, 0.021448629, 0.21719587, -0.020308457, 0.013695466, 0.0380683, 0.00877261, 0.007095888, 0.02681414, -0.017384255, 0.006733716, 0.02588859, -0.0031991857, -0.015385602, -0.018376874, -0.006606285, 0.027082415, -0.024963038, -0.018953666, -0.023943592, 0.00026093988, 0.00033073343, 0.026599519, 0.018028116, -0.02287049, 0.003373565, 0.04144857, 0.004228693, -0.023930177, 0.0043058223, 0.013286346, 0.007028819, -0.037424438, -0.0143125, 0.012917467, 0.0054225195, 0.0024278937, 0.015707532, 0.008236059, -0.015036844, 0.01754522, -0.013923501, 0.0033836253, 0.003053311, -0.022548558, -0.0005964939, 0.024761831, 0.011663279, -0.009463419, -0.028490862, 0.00534539, 0.012709553, -0.027444588, 0.004191805, 0.043809395, -0.0031840953, -0.0040576677, -0.003457401, -0.0016968427, 0.0116834, 0.013775948, 0.04869201, 0.0013137117, 0.028222587, -0.018551253, 0.0019399675, -0.0056807343, -0.006589518, -0.004765244, -0.008826265, 0.03519775, -0.013373535, 0.00016253725, 0.006106622, -0.012313847, 0.007323922, -0.019074392, -0.01381619, 0.045767806, 0.023219248, 0.0406974, 0.011971796, -0.029027414, 0.016203843, 0.0064050783, -0.024493556, -0.0019735019, -0.013628397, 0.022401007, -0.012112641, -0.014232017, -0.00091381354, -0.018081771, -0.007900715, -0.016807463, 0.00352447, 0.0058987085, -0.018323218, -0.0008702188, 0.01769277, -0.011515727, -0.018618323, -0.010261539, 0.017840324, 0.021327905, 0.023138765, -0.027712863, -0.018551253, -0.006173691, -0.007686094, -0.0042991154, -0.03686106, 0.029081069, -0.04904077, 0.03278327, -0.008584817, 0.007223319, 0.029456655, -0.012729675, 0.0033215864, -0.0048826146, -0.00017794213, 0.015010016, 0.0057478035, -0.004590865, 0.0020606914, 0.008906748, -0.023380212, -0.06438613, 0.002679402, 0.0008333309, -0.0076995078, 0.03881947, -0.005804812, 0.004845727, -0.0043225894, -0.020590147, -0.016686738, -0.014647844, -0.011991916, -0.016029464, 0.0132528115, -0.014969775, 0.0066230525, 0.020965733, 0.0045808046, 0.0448825, -0.021140112, 0.011287693, 0.01644529, -0.014661258, -0.014513707, -0.002147881, 0.009738402, -0.006921509, 0.0037189696, 0.0195707, 0.0059221825, -0.02819576, -0.0433265, 0.011066366, -0.010570056, -0.030502928, 0.004379598, 0.029859068, -0.010181056, -0.015103913, -0.006183751, -0.16976476, 0.023487523, 0.008718955, 0.0038665212, 0.036378164, -0.01017435, 0.0042823483, 0.009959729, -0.0053353296, -0.0057276827, 0.01985239, 0.0009280657, -0.03149555, -0.030824859, 0.0114084175, 0.0022300405, 0.0014218603, 0.0098658325, 0.03399051, 0.025660556, 0.019289011, -0.01896708, 0.007478181, 0.0039503574, 0.009362816, 0.01502343, -0.009228678, 0.0011041216, -0.00014273098, -0.03696837, -0.022548558, 0.014889292, 0.01601605, 0.005110649, 0.0007985389, -0.0047451234, 0.000585176, -0.022213215, 0.0010521432, 0.02735069, 0.00745806, 0.010127402, -0.016364807, 0.0143661555, -0.0139369145, 0.020469423, 0.009711575, -0.0034708148, -0.014674672, -0.026921451, 0.0066632936, 0.0010990914, -0.011039538, -0.0101676425, -0.0073105083, -0.004453374, 0.0075452495, 0.007337336, -0.015385602, -0.0006597901, 0.0037323835, -0.0085311625, -0.0033031425, 0.007149543, -0.022615628, -0.009255506, -0.0076793875, 0.007619025, -0.009382937, 0.007390991, -0.0047753043, 0.004188452, 0.0038899954, -0.012944295, 0.01890001, 0.0011183736, -0.010395677, 0.009282334, 0.006267587, 0.009543902, 0.002184769, -0.003873228, 0.0068577933, -0.0073574567, -0.0020573381, 0.02461428, 0.0043292963, 0.022132732, -0.025848348, -0.02468135, 0.0086653, -0.015479499, -0.022883903, 0.0030080394, 0.011046246, 0.009154903, 0.0035747716, -0.021488871, 0.0082293525, -0.021824215, -0.002992949, 0.006589518, -0.020804768, -0.008068386, 0.034231957, 0.014714913, 0.0062340526, -0.0016892975, 0.0013279639, -0.03291741, -0.006763897, -0.0034037458, 0.009382937, 0.011884606, 0.007390991, 0.019087804, 0.019651184, -0.02276318, 0.008034852, -0.010697487, 0.030127343, -0.018242737, -0.009973143, -0.004315883, -0.013883259, -0.03847071, -0.104144566, -0.0033584745, -0.004832313, 0.01321257, -0.0067538368, 0.0018175668, -0.02670683, 0.017813496, 0.009711575, 0.040509608, 0.0031757117, -0.009906074, -0.015707532, -0.026344657, 0.004017426, -0.002535204, -0.025258143, -0.051160146, 0.009859126, 0.01754522, -0.0046679946, -0.018511012, -0.030529756, 0.0072970944, -0.02773969, 0.007746456, -0.0199597, 0.0067806644, 0.013722294, -0.020804768, 0.0031237332, -0.0058014584, 0.014942948, -0.028571345, 0.011254159, 0.024453316, -0.014674672, -0.00083836104, 0.017236704, -0.01198521, -0.022843663, 0.0012013714, 0.017142806, -0.004718296, -0.00034079378, -0.0011896343, -0.00926892, 0.00059481716, -0.0017404376, -0.0063514234, -0.029081069, -0.009295748, -0.04311188, -0.0252179, 0.018175667, 0.00046403284, 0.0016222287, -0.0008270432, 0.007779991, 0.023433868, 0.013111967, 0.0042018658, 0.00034058417, 0.028651828, 0.015439257, -0.008249473, -0.008584817, -0.020442596, -0.012843692, -0.003071755, -0.008236059, 0.023903351, -0.029242033, 0.03409782, -0.009014058, -0.010523108, -0.017102566, -0.014044224, 0.014688086, -0.0029242034, -0.003886642, -0.035814784, -0.0064352592, -0.015425843, -0.00032465532, -0.00907442, 0.0077330424, 0.005472821, 0.025861762, -0.03771954, -0.010784676, 0.039221883, 0.0013246104, 0.0004887645, 0.01924877, 0.0032058926, 0.00067068887, -0.00018192435, -0.009040886, 0.011931554, -0.019302424, -0.0133802425, -0.051938143, 0.021005975, 0.001270117, -0.020227976, 0.0021747085, 0.020375527, 0.004832313, -0.01310526, 0.005382278, 0.01924877, -0.023715558, 0.0037927453, -0.01409788, -0.031736996, -0.030985825, -0.0031237332, 0.009510368, -0.016244084, 0.017303772, 0.0058752345, 0.023259489, 0.018135427, -0.01743791, 0.012327261, 0.0059389495, 0.0035311768, -0.017156221, 0.027847001, -0.0026173631, -0.028329898, 0.012582122, -0.007444646, 0.012991243, -0.00024375347, 0.0018611616, 0.001228199, -0.004486908, 0.03629768, -0.01761229, 0.050408974, 0.008765903, -0.019731665, 0.0010068716, -0.018229323, -0.04574098, -0.007498301, -0.008249473, 0.0070556467, 0.024158211, 0.007860473, 0.008511041, 0.013695466, -0.024909385, -0.01864515, 0.013829604, -0.009657919, 0.016136773, 0.009503661, -0.017129393, -0.022830248, 0.028812792, 0.022642456, -0.008806145, -0.012904054, -0.0011359792, -0.029027414, -0.029429827, -0.014594189, 0.008182404, -0.041207124, -0.027605552, -0.036163542, 0.010462746, 0.007840352, 0.012736381, -0.014379568, -0.023353385, 0.011354762, -0.006529156, 0.025566658, 0.008571403, -0.007940955, -0.02461428, 0.017625703, 0.037102506, -0.0064989747, 0.0059054154, -0.0055834847, -0.0012441278, -0.00020917108, -0.016740393, 0.0030667246, -0.021394974, -0.004181745, 0.011301107, 0.03455389, -0.01896708, 0.010073747, 0.006787371, -0.0021763854, 0.018993909, 0.006727009, 0.0019785322, -0.0263849, 0.009329282, 0.0040979087, -0.018336633, -0.009517075, -0.01058347, 0.030824859, 0.025365451, -0.025969071, 0.0058618207, 0.0041381503, -0.018993909, 0.017236704, -0.00928904, -0.04507029, -0.018095184, 0.028732311, 0.025808107, 0.013775948, 0.018926838, -0.022293698, 0.015761187, 0.022146145, 0.012347382, -0.041636363, 0.0022585448, -0.0047015287, 0.015439257, 0.015077085, -0.005586838, -0.012716261, -0.015103913, -0.036351334, -0.0063748974, 0.02851769, -0.015922153, 0.077263355, 0.023031455, -0.009175023, 0.014942948, 0.0153990155, -0.018993909, 0.017572047, 0.005093882, -0.016592842, -0.017276945, 0.022964386, 0.006559337, 0.0028889922, -0.020321872, -0.015063671, 0.01704891, -0.03278327, 0.02606297, -0.018443944, 0.018229323, 0.02741776, 0.0011158586, 0.02177056, -0.009751815, -0.03704885, -0.01644529, 6.9819757e-06, 0.018886598, -0.0016540864, -0.02951031, 0.01047616, -0.0069349227, -0.0014243755, -0.027149484, 0.01890001, -0.0039771846, -0.007686094, -0.0042924085, 0.022843663, 0.0229778, -0.011643158, 0.00089201616, -0.021649836, -0.037773196, -0.011173676, -0.011052952, 0.0024295703, 0.021515697, -0.045472704]" 18653225,Just tell me how to use Go Modules,https://www.kablamo.com.au/blog-1/2018/12/10/just-tell-me-how-to-use-go-modules,331,1544500399,127,boyter,"[-0.0044795936, 0.0031155827, -0.0019109577, -0.016321156, -0.030360572, 0.023220066, -0.01896529, -0.028588869, -0.015086332, -0.002434416, 0.04380942, -0.010529562, -0.009932282, 0.010858401, 0.00730157, 0.006932465, 0.022374481, -0.021676537, 0.017435184, -0.022616077, -0.014093104, 0.00032045034, 0.0026206463, -0.025072303, -0.011563056, 0.015837964, 0.026146064, 0.00035966776, 0.015864808, 0.00078350946, 0.020951748, -0.0038152046, -0.016750662, -0.023126112, -0.006200966, -0.010147035, 0.006378807, -0.015851386, -0.002347173, -0.025743403, 0.029313656, -0.0119791385, 0.0005117139, 0.016052717, -0.0102208555, 0.018428411, -0.0059627253, -0.026441347, -0.010475874, 0.0051674717, 0.02215973, 0.025018616, -0.01881765, 0.0054627554, -0.009992681, -0.0013430392, -0.023005314, 0.017435184, -0.00048151438, -0.005801661, 0.0001025525, 0.0065230937, -0.0042044427, 0.0033051684, -0.00015917658, -0.001351428, -0.02430725, 0.013086454, -0.031246426, -0.01152279, 0.025354166, 0.042010874, 0.0061204336, 0.0011324816, 0.021985242, -0.020589354, -0.021112813, -0.0077176522, -0.024360936, -0.005607042, 0.005613753, 0.0090330085, -0.004046734, 0.038521152, -0.0054157786, -0.007348547, 0.02611922, 0.012341533, -0.014012572, -0.006845222, -0.0035064984, 0.01748887, 0.018146548, 0.0017465382, 0.00037308977, 0.008932344, -0.0068418663, 0.02096517, -0.018616319, -0.021475207, -0.008777991, 0.02197182, -0.0056775077, -0.014455498, -0.018535787, -0.0021777202, 0.018710274, -0.043755732, 0.012214024, -0.0025300477, -0.025206523, 0.024401203, -0.0055567096, -0.0041977316, -0.0033940892, 0.00924776, 0.0026055465, -0.02458911, 0.007798184, -0.004482949, 0.0052882694, 0.007992803, 0.0353804, 0.00950949, 0.013603201, -0.0053956457, -0.037474234, 0.012891835, 0.01379782, -0.02264292, 0.046413288, 0.017381495, 0.007019708, 0.015301084, -0.0051204944, 0.017784156, -0.027649328, 0.016321156, 0.0009219239, -0.027072182, 0.0048923204, 0.01821366, -0.0041373326, -0.014978956, -0.01995852, 0.00011712796, 0.009381981, -0.005023185, 0.023501929, -0.008777991, 0.024951505, -0.021663114, 0.007999514, -0.004046734, 0.014750782, 0.0204954, -0.0041641765, -0.004174243, 0.002400861, 0.0013891774, 0.021998664, 0.04313832, 0.010012815, 0.016938569, 0.022320792, 0.029045217, 0.025944734, -0.018710274, -0.005972792, 0.0034762989, 0.014710517, 0.014294434, -0.052802164, 0.023864323, -0.008777991, 0.022012087, 0.0007281437, 0.022763718, -0.014321278, -0.013878352, -0.0009982615, -0.012871701, 0.029555252, 0.04560797, -0.015730588, -0.016254047, 0.008093468, 0.03301813, 0.011898606, 0.00050793897, 0.012032826, 0.033232883, 0.0025434697, -0.0031642374, -0.6266465, 0.0011207373, 0.012032826, -0.02893784, 0.016133249, 0.0023320732, 0.018670008, 0.02504546, -0.005284914, 0.03033373, -0.031165892, 0.0086370595, -0.00321457, -0.01601245, 0.009234339, -0.010308099, 0.03597097, -0.03650785, -0.01593192, 0.021596003, -0.009697398, 0.021193344, -0.008610215, -0.008496128, 0.021891288, -0.0018270703, -0.0055936202, -0.002333751, 0.013207252, 0.044453677, -0.053151134, 0.018307613, 0.0005964403, 0.0050332514, 0.054090675, -0.029018372, -0.01654933, 0.0035769641, -0.0026189685, 0.04815815, -0.041742433, -0.021783913, -0.01172412, -0.009764507, -0.008959187, 0.012609973, 0.016495643, -0.014576296, -0.022884516, 0.01446892, 0.007328414, 0.00348301, -0.0022817405, -0.014106526, -0.0128851235, -0.020186694, 0.0067613344, -0.01593192, 0.018925026, 0.016334578, -0.009086696, 0.015502415, 0.0020451779, -0.027568797, -0.044131547, -0.004848699, -0.041742433, -0.0048453435, 0.0087511465, -0.0051876046, 0.010348365, -0.011657011, -0.01868343, -0.0035736086, 0.019810878, 0.040212322, 0.018643163, -0.0049728523, 0.0046037473, 0.0045567704, 0.0061640553, 0.027354043, -0.009120252, -0.029770004, 0.028964683, 0.0013623334, -0.015757432, -0.010334943, 0.004395706, -0.010482585, -0.00085145835, 0.020643042, -0.016106404, -0.020723574, 0.022334214, 0.04179612, 0.0042413534, 0.028508335, -0.00078015396, -0.031944368, -0.0058318605, -0.00552651, 0.012354954, 0.012730771, 0.04286988, 0.004281619, -0.024978349, 0.019743768, 0.016240625, -0.02544812, -0.012516019, -0.007932404, -0.01205296, 0.018710274, -0.018092861, -0.019945098, -0.013180408, -0.0011610034, 0.016992256, -0.023233488, 0.018092861, -0.00090682413, -0.016495643, -0.0065230937, -0.0011979139, 0.010032948, 0.0068016006, 0.0061808326, -0.016106404, 0.0037212505, -0.0022699963, -0.0097712185, 0.029850537, -0.023488507, 0.032508094, 0.006368741, 0.023622727, -0.00796596, -0.008737724, -0.03280338, 0.007677386, -0.0028689534, 0.011328171, -0.0034142223, 0.0036205854, -0.013475692, -0.04756758, -0.0026374238, 0.03911172, 0.0057043517, 0.003436033, -0.0023387843, 0.0018388146, -0.0102477, 0.0030199508, -0.005573487, 0.002233086, -0.010100058, -0.029367344, 0.0028186208, -0.00038881868, 0.012422064, -0.016495643, 0.01467025, -0.0012750904, -0.0050064074, -0.014240746, 0.028347272, -0.007858584, -0.02638766, 0.01065036, -0.012368376, -0.008590083, -0.009267894, 0.030602168, -0.003181015, -0.0141333705, 0.013475692, -0.017717045, -0.007308281, 0.015421882, -0.013985728, -0.008026359, -0.00081916165, 0.025125992, 0.020052474, 0.014173636, -2.886255e-05, -0.013153564, 0.004852054, -0.012878412, 0.012428775, -0.009214206, -0.0048721875, -0.024360936, 0.009717531, 0.0034159, 0.01754256, 0.015113177, -0.0024092498, 0.0273272, -0.0023018736, -0.0011744254, -0.01849552, 0.0148715805, -0.012992499, 0.016978836, -0.014509186, 0.0057848836, 0.02022696, 0.017676778, -0.014817893, -0.013321339, -0.017421762, -0.0027213113, 0.015596368, -0.010710759, 0.011938873, -0.008080047, 0.01802575, 0.012549574, 0.0036407185, 0.02264292, -0.0008598471, -0.011328171, 0.022401324, 0.00716735, 0.010616805, 0.004254775, -0.016938569, -0.02539443, 0.033716075, 0.009066564, -9.772897e-05, 0.035353556, -0.007952537, -0.0034326776, -0.014428654, 0.0198243, -0.006388874, 0.010395342, 0.015864808, 0.01601245, -0.0039494247, 0.046574354, 0.01346227, 0.030790078, 0.008939055, -0.041339774, -0.005029896, -0.008388752, 0.010965778, -0.005211093, -0.0072948593, 0.001754927, -0.025488386, -0.0019143133, 0.028213052, 0.023609305, 0.029233124, -0.016160093, -0.002092155, 0.00066522806, -0.0037346727, 0.0046540797, 0.010683915, -0.005513088, -0.020589354, -0.030575324, -0.019086089, -6.123789e-05, 0.018616319, 0.0071807723, -0.01219389, 0.031112205, 0.01393204, 0.011636877, 0.028830465, 0.021059124, 0.0086370595, -0.01332805, -0.013200541, 0.013294495, -0.014992379, -0.008207555, -0.003227992, -0.008314932, 8.965479e-05, 0.005352024, 0.006016413, -0.016361423, -0.0029763293, 0.0014403488, -0.004499727, 0.0049124532, 0.010140324, 0.022884516, -0.021260453, -0.00077679846, 0.015287662, 0.01145568, 0.003536698, -0.017649936, -0.016696973, 0.023193223, 0.0028219763, -0.011475814, -0.001748216, 0.010086636, -0.007986092, -0.008314932, -0.010274544, -9.476668e-06, -0.033528164, 0.02150205, 0.005405712, -0.017435184, 0.005868771, 0.013972306, 0.02591789, 0.0029226413, -0.02123361, -0.0028421094, 0.01393204, 0.05760724, 0.013757554, -0.018200237, 0.009093408, -0.037205793, -0.021381252, -0.036266256, -0.01720701, 0.033608697, 0.014106526, 0.011898606, 0.0063116974, -0.009744375, -0.028427804, 0.013046187, 0.004358796, -0.0013220673, -0.016844615, 0.0044527496, -0.042896725, -0.0052882694, 0.01212007, -0.01607956, 0.006107012, 0.034601927, 0.0133951595, 0.018186815, 0.021287298, 0.019233732, -0.012448909, -0.013341472, 0.015301084, 0.007677386, 0.022723453, -0.0029209636, 0.019408217, 0.007898849, 0.019998785, 0.0076706754, 0.026481614, 0.004140688, 0.016589597, 0.01722043, 0.004160821, 0.009496068, -0.025233367, -0.008133735, 0.015193708, 0.0032514804, -0.017421762, 0.01212678, 0.019743768, -0.023005314, -0.0036910512, 0.025609184, 0.024280405, -0.0032397362, 0.016092982, -0.009422246, -0.035138804, -0.0099389935, -0.037608456, -0.0032581915, -0.0040937113, -0.016254047, -0.039138563, -0.012086514, 0.013046187, -0.021703381, -0.016254047, 0.017958641, -0.022991892, -0.021998664, -0.019381374, 0.023407975, 0.026320549, 0.009952416, 0.01426759, -0.0007927371, 0.02952841, -0.011240928, -0.020992015, 0.012683794, -0.013012633, -0.0061170785, 0.010851691, 0.0035132095, 0.042574596, -0.0011920417, 0.012287845, -0.0005305886, 0.015220553, 0.0007956732, -0.042037714, 0.0353804, 0.020388024, 0.0023454952, 0.00539229, 0.0062512984, -0.024736753, 0.01071747, -0.011281194, 0.004841988, -0.031783305, 0.012415353, 0.0016349679, -0.0013279394, 0.003382345, -0.0064190733, 0.0015955407, 0.0029964624, -0.0041037775, -0.012448909, 0.029689472, 0.003724606, 0.008335064, 0.00451986, 0.012046249, -0.0014369932, 0.0023371065, 0.0009781285, -0.016066138, 0.031058516, 0.0258642, 2.716514e-06, 0.009885306, -0.022817407, -6.532741e-05, -0.04431946, 0.006449273, -0.0064324955, 0.031998057, -0.017314386, -0.02197182, 0.007086818, -0.026763476, 0.023072425, 0.0016626507, -0.0279983, -0.004888965, -0.017837843, -0.018388145, -0.003040084, -0.006711002, -0.0067814672, -0.027515108, -0.0073217032, 0.0008552333, 0.0024730042, 0.004942653, -0.0033303348, 0.006731135, -0.023166379, -0.012220735, -0.002016656, -0.05344642, 0.0008518778, 0.00018266508, 0.0042581307, 0.0056305304, 0.040507607, -0.011804652, 0.026427926, -0.0102208555, -0.012348244, -0.026642678, -0.033984512, -0.002083766, -0.03028004, 0.00065264496, 0.013851508, 0.034575082, -0.021515472, 0.013515958, 0.015341351, 0.004667502, -0.031300113, 0.018092861, -0.010194012, -0.051191524, -0.03610519, 0.007825028, -0.021891288, 0.008395463, -0.02893784, 0.0039494247, 0.005399001, 0.008731013, 0.0409908, -0.006415718, 0.029098904, -0.02605211, 0.022267105, 0.0008049008, 0.0176902, -0.02692454, 0.014307857, -0.032454405, 0.004043379, 0.017368073, 0.0073821023, 0.016388267, 0.01587823, 0.0055164434, -0.013160274, 0.017180165, -0.002696145, 0.004949364, 0.028105676, -0.022763718, -0.011113419, -0.050520424, -0.010751025, 0.015556103, -0.021730224, 0.012012693, 0.017475449, -0.00076295703, -0.022280527, -0.0119791385, 9.185684e-05, 0.0041037775, 0.030602168, 0.01078458, 0.0054963105, 0.02477702, -8.493612e-06, 0.0025971578, 0.011737542, 0.008945766, 0.005674152, -0.0031038383, 0.030870609, -0.009556467, -0.017891532, 0.0016358068, -0.02625344, -0.019394796, -0.031461176, 0.04238669, 0.021179922, -0.0032665802, -0.021783913, 0.006489539, -0.034843523, 0.0022163084, -0.00035778029, 0.024495156, 0.01259655, -0.017193587, -0.008086758, 0.02571656, -0.005885549, 0.011475814, 0.0024662933, 0.02772986, -0.01782442, 0.0041004224, -0.013891774, 0.023354286, 0.008227688, 0.008019648, 0.02217315, -0.015905075, 0.031165892, 0.017676778, -0.031461176, -0.024548845, -0.027783548, 0.025703138, -0.023797212, -0.0029360633, 0.00058175996, -0.008227688, -0.013770976, -0.016911725, 0.00870417, -0.0020988658, 0.011140264, 0.0019596126, 0.022199994, -0.0010175557, -0.028615713, -0.0049090977, 0.004543348, -0.006717713, -0.026763476, -0.0007738624, 0.022723453, -0.028481493, -0.0067479126, -0.017475449, -0.017126476, -0.019502172, -0.012650238, -0.017314386, -0.0010846657, 0.04085658, -0.0156769, -0.0046641463, 0.0049090977, -0.0026055465, -0.03744739, 0.017998908, -0.0050466736, -0.024025386, -0.0019294131, 0.0034796544, -0.016723817, -0.017113054, -0.0019260575, 0.009469224, 0.007939115, 0.0082411105, 0.0030484726, 0.007563299, 0.01185834, -0.0048285658, -0.013683733, -0.006939176, 0.0024277049, 0.0010578217, 0.0005389773, -0.0011433869, -0.021851022, 0.0057144184, 0.005445978, -0.010871823, -0.01098591, -0.038628526, 0.00870417, -0.011818075, 0.013643467, -0.01681777, -0.01601245, -0.027810391, -0.0056540193, -0.0051876046, 0.0143615445, 0.00736868, 0.0049929856, 0.020267226, 0.022683186, 0.004620525, -0.008932344, 0.023904588, -0.04005126, 0.002488104, -0.029662628, 0.00368434, -0.022186572, 0.01935453, 4.1629184e-05, -0.020549089, -0.0001232098, -0.019864565, -0.030924296, -0.016361423, 0.0019512238, -0.0036474296, 0.011032887, -0.004043379, -0.010187301, 0.027112449, 0.002306907, 0.010871823, -0.033796605, -0.0070666852, 0.0094289575, 0.0129321, -0.01593192, -0.014160214, -0.036937356, 0.007160639, -0.014173636, 0.009932282, 0.012562996, 0.010301388, 0.004929231, 0.0004827727, -0.018361302, -0.0040568006, 0.0022683186, 0.003993046, 0.020374602, -0.0218376, -0.035326716, 0.027421154, 0.014119948, -0.006959309, -0.014388388, -0.00017574437, 0.00850955, 0.009281316, 0.007395524, -0.003744739, 0.00026382625, -0.013368316, 0.02772986, -0.010777869, 0.030253196, 0.039487537, -0.0047581005, -0.0029276747, -0.014281012, 0.0054526892, -0.023649571, -0.0266561, -0.017059367, -0.012831436, -0.023260333, -0.0030686057, -0.004325241, -0.0006027319, -0.006851933, -0.017529137, -0.006036546, -0.012509308, 0.020817528, -0.0078451615, -0.0012323078, 0.015824543, -0.011542924, 0.014374966, 0.007328414, -0.063351855, -0.023475084, -0.006335186, -0.0030333728, -0.0110731535, 0.001835459, -0.018227082, -0.014052838, 0.008120312, -0.012469041, -0.0122073125, 0.21303405, 0.027354043, 0.011710699, 0.029313656, 0.015126598, -0.029877381, 0.028749932, -0.0010913766, -0.0067747566, 0.012435487, 0.011240928, 0.013945462, -0.010408764, -0.0123213995, 0.0184821, -0.030038444, -0.048399746, -0.0028387539, -0.028293584, 0.024280405, 0.03186384, -0.015529258, -0.04305779, -0.0133951595, 0.012341533, 0.0024243495, -0.028830465, 0.045232154, 0.03529987, 0.012214024, -0.019045824, -0.004053445, 0.015059488, -0.011469102, 0.00950949, 0.00036533017, 0.027756704, -0.0031709485, 0.00039951433, 0.0022565743, 0.024683066, -0.003744739, -0.022414746, -0.018710274, 0.00512385, 0.02036118, -0.018790806, 0.0068687103, 0.019045824, 0.000510875, -0.025703138, 0.011140264, 0.011703988, 0.0020904772, -0.010824846, -0.00089340215, 0.0031071939, -0.011368438, 0.02425356, 0.037286326, 0.0048319213, 0.0036004526, -0.00965042, 0.015958762, -0.02371668, 0.012650238, -0.013489114, -0.02096517, -0.0062177433, -0.0036675625, -0.009422246, -0.018763961, 0.009563178, -0.003959491, 0.017851265, -0.008489418, -0.015099755, 0.008643771, 0.019099511, 0.03376976, -0.010455741, 0.018240504, -0.014938691, -0.02249528, -0.028830465, -0.0459301, 0.008516261, -0.022736875, 0.0067512677, -0.017958641, -0.015032644, -0.02103228, 0.008408885, 0.0017381494, 0.014885002, 0.030602168, -0.011771098, 0.0021995308, -0.0018958581, -0.019005558, -0.020804105, 0.06351292, 0.03100483, 0.012469041, -0.0024595822, 0.0027783548, 0.008033069, 0.014039416, -0.008321642, -0.0082411105, 0.0025300477, -0.03237387, 0.013274361, -0.0014076326, 0.01754256, 0.024481734, 0.0141333705, 0.007710941, -0.009905439, 0.0052480036, -0.015301084, 0.0030467948, -0.0067344904, -0.015126598, 0.0015762466, 0.006291564, -0.03623941, 0.011006043, -0.016965413, -0.019260576, 0.011401992, 0.0015208808, 0.006016413, -0.017287541, 0.012864991, -0.009046431, 0.021340987, -0.025032038, -0.022602655, 0.011542924, -0.02062962, 0.012442198, 0.015770854, 0.011099997, 0.026401082, 0.002944452, 0.015811121, 0.00844244, 0.008153867, -0.0033756339, -0.04292357, -0.003899092, -0.015341351, 0.001875725, 0.0032867133, -0.031058516, -0.03014582, -0.03342079, 0.019743768, -0.028427804, -0.05712405, 0.010147035, 0.042359844, 0.0016014128, -0.010079925, -0.033179194, -0.16965413, 0.033071816, 0.029421033, -0.03041426, 0.01962297, -0.0046876348, -0.0024159607, 0.0012331466, -0.023394553, -0.002978007, 0.015046067, -0.022334214, -0.013093165, -0.0102477, -0.008247822, -0.003246447, -0.0047782334, 0.019448483, 0.045312684, 0.03113905, 0.026575567, -0.0042346423, -0.0024579044, -0.019784033, -0.010012815, 0.0047312565, 0.01179123, -0.0040232455, -0.033742916, -0.03736686, 0.0018237148, 0.004271553, -0.005103717, -0.015274241, 0.036722604, -0.011683854, 0.014522608, 0.0123213995, 0.01854921, 0.016374845, 0.019367952, -0.005607042, 0.012710637, -0.01547557, 0.008885367, 0.0066875136, 0.013267651, -0.0044594607, -0.012073092, -0.011542924, 0.02042829, 0.005164116, -0.0013598168, 0.011348304, 0.016321156, -0.0027078893, 0.015824543, 0.024870973, -0.0148715805, 0.002655879, 0.029770004, -0.015341351, -0.0042782635, 0.012844858, -0.01621378, -0.025327321, -0.023931433, -0.009710819, -0.03556831, 0.004227931, -0.0016978835, -0.021085968, 0.006737846, 0.0060399016, 0.0131669855, 0.003630652, -0.0013036121, 0.013891774, 0.011764387, 0.005244648, -0.009368558, 0.002514948, 0.0077512073, 0.006482828, -0.011274483, 0.029447876, -0.014898424, 0.014482342, -0.000631673, 0.006892199, 0.014952112, -0.003315235, -0.042628285, -0.0026995004, -0.011891895, -0.0047144787, 0.03564884, -0.006892199, 0.0001968211, -0.028562024, 0.024360936, 0.0004068545, -0.0074357903, 0.009704108, 0.027944611, 0.003956136, 0.0035937415, 0.009046431, 0.05183578, -0.001728083, -0.054600712, 0.020723574, 0.00977793, -0.0005452689, -0.010059792, 0.034333486, 0.009972549, -0.03019951, -0.00025837356, 0.007898849, 0.014589719, -0.00984504, -0.023824057, 0.003865537, 0.0026273571, -0.030065289, -0.10700022, -0.027112449, 0.0073821023, 0.027783548, -0.037474234, 0.018133128, -0.012180468, 0.023193223, 0.011193952, 0.03154171, -0.009207495, -0.0024226718, -0.0023438174, -0.01212678, -0.023260333, -0.014885002, 0.003650785, -0.026696365, -0.030763233, 0.017394917, 0.023179801, -0.015032644, 0.0035064984, -0.0037078285, -0.017918374, 0.008026359, -0.023542196, 0.025515229, -0.012261, -0.005003052, -0.021649692, -0.002798488, 0.0063653854, -0.0071539283, 0.0031222936, -0.017837843, -0.0062445872, -0.008697459, 0.01420048, 0.009717531, -0.007509611, 0.016938569, 0.009422246, -0.010120191, -0.0032179253, 0.012220735, -0.042816192, 0.0383064, -0.002184431, 0.0026323905, -0.02504546, 0.011261061, -0.03376976, 0.0010477551, 0.008308221, -0.00046096195, 0.028454648, 0.0034729436, -0.01554268, 0.009623577, -0.012462331, 0.025260212, 0.008053202, 0.037823208, 0.01373071, 0.005036607, -0.013388448, 0.0025132701, 0.007865294, 0.002890764, -0.015811121, -0.0012113359, -0.02230737, -0.0034997875, -0.024454892, 0.0011811364, 0.016334578, -0.012898546, 0.008482707, -0.0013346506, -0.018441834, -0.0218376, 0.001848881, -0.04171559, 0.017623091, 0.015623213, 0.017891532, 0.008663904, 0.0053218245, -0.056533482, 0.0032045033, 0.018200237, 0.015623213, -0.018388145, 0.008335064, 0.0051607606, 0.0006744557, -0.009945705, -0.016925147, 0.028991528, 0.0010100058, -0.0061640553, -0.041473992, -0.0030988052, -0.0065566488, -0.007744496, 0.003509854, -0.012516019, -0.013314628, -0.029098904, 0.009167229, 0.012965656, -0.03637363, -0.0030971274, -0.025032038, -0.0064996053, -0.011623455, -0.015421882, 0.025944734, -0.021448363, 0.009798063, 0.0048554097, -0.020804105, -0.022226838, -0.006972731, 0.028508335, -0.016441954, -0.009079985, -0.026226595, 0.022146307, -0.0021475207, -0.019180043, 0.014428654, -0.012234157, -0.0020955103, 0.003597097, 0.009811485, -0.010019526, 0.03927278, 0.019421639, 0.0131669855, 0.04125924, -0.017609669, -0.018576054, 0.019381374, -0.024656221, -0.026844008, -0.022669764, 0.0041775987, 0.016925147, 0.011408703, 0.010502718, 0.031165892, 0.0037883606, -0.019139778, -0.015999028, -0.00931487, -0.031675927, -0.02069673, 0.003630652, -0.05218475, -0.015515837, 0.04152768, 0.019233732, 0.023126112, -0.020039052, 0.019945098, -0.008261244, -0.045769032, 0.015757432, 0.014965534, -0.042413533, -0.008878656, -0.028991528, -0.015757432, -0.0048990315, 0.022092618, -0.007603565, -0.00026823036, 0.026897695, -0.0019143133, 0.018871337, 0.001250763, 0.004429261, -0.010039659, 0.02491124, -0.0032732913, 0.010697337, 0.028964683, 0.012703926, 0.0034595216, 0.013375027, -0.03742055, 0.0078048953, -0.0032481248, 0.009348426, 0.016509065, -0.0016307734, -2.8312039e-05, 0.025099147, 0.026320549, -0.030521637, 0.02217315, 0.0048788986, -0.012294555, -0.036803134, -0.0015510803, 0.007858584, -0.030387416, -0.02042829, -0.001513331, -0.001263346, -0.0024461602, -0.011469102, 0.003469588, 0.0058721267, -0.018951869, 0.013073032, 0.01720701, -0.014415232, -0.03283022, 0.029394189, 0.010019526, 0.013046187, 0.02491124, -0.01881765, 0.01440181, 0.014012572, -0.0018371368, -0.014213902, 0.013710577, -0.0101671675, -0.004526571, -0.011153685, -0.0059862137, -0.01440181, -0.008925633, -0.014777626, -0.011677143, 0.007247882, -0.0054292004, 0.06705633, 0.03186384, -0.025072303, 0.019139778, -0.0052345814, 0.024065653, 0.014415232, 0.003865537, 0.017435184, -0.0021508762, -0.0032128922, 0.0139051955, -0.0059090373, -0.0036407185, 0.003972913, 0.0055097328, -0.006979442, -0.0025652805, 0.013723999, 0.010818135, 0.0293405, 0.015462148, 0.004331952, 0.026884275, -0.021461785, 0.006529805, 0.030494792, 0.01834788, -0.021488627, -0.039407004, 0.026481614, 0.014213902, -0.025085725, -0.01821366, -0.002400861, 0.016119827, 0.005143983, -0.017676778, 0.008180711, -0.0027598995, 0.014374966, -0.029770004, -0.020790683, -0.023555616, -0.01205296, 0.026468191, -0.015515837, 0.0044091283, -0.017086212]" ================================================ FILE: docs/javadoc/csv/2.10/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-CSV 2.10.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.10/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-CSV 2.10.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvCharacterEscapes.html ================================================ CsvCharacterEscapes (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvCharacterEscapes

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes
        • com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
    • All Implemented Interfaces:
      Serializable


      public final class CsvCharacterEscapes
      extends com.fasterxml.jackson.core.io.CharacterEscapes
      Character escapes for CSV. There are multiple types of escapes.
      • no escapes - return all characters the same way they are defined
      • quote escape - return all characters except the quote character which is escaped (backwards compat)
      • control escape - same as CharTypes.get7BitOutputEscapes(), escape all control characters
      • control and quote escape - do not double up quote, escape control characters and quote.
      See Also:
      Serialized Form
      • Method Detail

        • controlQuoteEscapesInstance

          public static CsvCharacterEscapes controlQuoteEscapesInstance()
        • getEscapeSequence

          public com.fasterxml.jackson.core.SerializableString getEscapeSequence(int ch)
          Specified by:
          getEscapeSequence in class com.fasterxml.jackson.core.io.CharacterEscapes
        • getEscapeCodesForAscii

          public int[] getEscapeCodesForAscii()
          Specified by:
          getEscapeCodesForAscii in class com.fasterxml.jackson.core.io.CharacterEscapes

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvFactory.html ================================================ CsvFactory (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.csv.CsvFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_LF

          protected static final char[] DEFAULT_LF
        • DEFAULT_SCHEMA

          protected static final CsvSchema DEFAULT_SCHEMA
        • _csvParserFeatures

          protected int _csvParserFeatures
        • _csvGeneratorFeatures

          protected int _csvGeneratorFeatures
      • Constructor Detail

        • CsvFactory

          public CsvFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • CsvFactory

          public CsvFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • CsvFactory

          protected CsvFactory(CsvFactory src,
                               com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • rebuild

          public CsvFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static CsvFactoryBuilder builder()
          Main factory method to use for constructing CsvFactory instances with different configuration.
        • copy

          public CsvFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public CsvParser createParser(byte[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(byte[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out)
                                       throws IOException
          This method assumes use of UTF-8 for encoding.
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(File f,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(InputStream in,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(byte[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(Reader r,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(char[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt,
                                            boolean recyclable)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected CsvGenerator _createGenerator(Writer out,
                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                           throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected CsvGenerator _createUTF8Generator(OutputStream out,
                                                      com.fasterxml.jackson.core.io.IOContext ctxt)
                                               throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createContext

          protected com.fasterxml.jackson.core.io.IOContext _createContext(Object srcRef,
                                                                           boolean resourceManaged)
          Overrides:
          _createContext in class com.fasterxml.jackson.core.JsonFactory

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvFactoryBuilder.html ================================================ CsvFactoryBuilder (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactoryBuilder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvGenerator.Feature.html ================================================ CsvGenerator.Feature (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvGenerator.Feature

      • Enum Constant Detail

        • STRICT_CHECK_FOR_QUOTING

          public static final CsvGenerator.Feature STRICT_CHECK_FOR_QUOTING
          Feature that determines how much work is done before determining that a column value requires quoting: when set as true, full check is made to only use quoting when it is strictly necessary; but when false, a faster but more conservative check is made, and possibly quoting is used for values that might not need it. Trade-offs is basically between optimal/minimal quoting (true), and faster handling (false). Faster check involves only checking first N characters of value, as well as possible looser checks.

          Note, however, that regardless setting, all values that need to be quoted will be: it is just that when set to false, other values may also be quoted (to avoid having to do more expensive checks).

          Default value is false for "loose" (approximate, conservative) checking.

          Since:
          2.4
        • OMIT_MISSING_TAIL_COLUMNS

          public static final CsvGenerator.Feature OMIT_MISSING_TAIL_COLUMNS
          Feature that determines whether columns without matching value may be omitted, when they are the last values of the row. If true, values and separators between values may be omitted, to slightly reduce length of the row; if false, separators need to stay in place and values are indicated by empty Strings.
          Since:
          2.4
        • ALWAYS_QUOTE_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_STRINGS
          Feature that determines whether values written as Strings (from java.lang.String valued POJO properties) should be forced to be quoted, regardless of whether they actually need this. Note that this feature has precedence over STRICT_CHECK_FOR_QUOTING, when both would be applicable.
          Since:
          2.5
        • ALWAYS_QUOTE_EMPTY_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_EMPTY_STRINGS
          Feature that determines whether values written as empty Strings (from java.lang.String valued POJO properties) should be forced to be quoted.
          Since:
          2.9
        • ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR
          Feature that determines whether quote characters within quoted String values are escaped using configured escape character, instead of being "doubled up" (that is: a quote character is written twice in a row).

          Default value is false so that quotes are doubled as necessary, not escaped.

          Since:
          2.9.3
        • ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR
          Feature that determines whether control characters (non-printable) are escaped using the configured escape character. This feature allows LF and CR characters to be output as
          \n
          and
          \r
          instead of being echoed out. This is a compatibility feature for some parsers that can not read such output back in.

          Default value is false so that control characters are echoed out (backwards compatible).

          Since:
          2.9.9
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static CsvGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvGenerator.Feature c : CsvGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvGenerator.html ================================================ CsvGenerator (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.csv.CsvGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class CsvGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvGenerator.Feature
        Enumeration that defines all togglable features for CSV writers (if any: currently none)
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _arrayContents
        Accumulated contents of an array cell, if any
        protected int _arrayElements
        Additional counter that indicates number of value entries in the array.
        protected String _arraySeparator
        Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
        protected com.fasterxml.jackson.core.io.CharacterEscapes _characterEscapes 
        protected int _formatFeatures
        Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        protected boolean _handleFirstLine
        Flag that indicates that we need to write header line, if one is needed.
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected int _nextColumnByName
        Index of column that we will be getting next, based on field name call that was made.
        protected CsvSchema _schema
        Definition of columns being written, if available.
        protected boolean _skipValue
        Flag set when property to write is unknown, and the matching value is to be skipped quietly.
        protected com.fasterxml.jackson.core.json.JsonWriteContext _skipWithin
        When skipping output (for "unknown" output), outermost write context where skipping should occur
        protected CsvEncoder _writer 
        protected static long MAX_INT_AS_LONG 
        protected static long MIN_INT_AS_LONG 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, CsvEncoder csvWriter) 
        CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Writer out, CsvSchema schema) 
      • Field Detail

        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        • _schema

          protected CsvSchema _schema
          Definition of columns being written, if available.
        • _characterEscapes

          protected com.fasterxml.jackson.core.io.CharacterEscapes _characterEscapes
        • _handleFirstLine

          protected boolean _handleFirstLine
          Flag that indicates that we need to write header line, if one is needed. Used because schema may be specified after instance is constructed.
        • _nextColumnByName

          protected int _nextColumnByName
          Index of column that we will be getting next, based on field name call that was made.
        • _skipValue

          protected boolean _skipValue
          Flag set when property to write is unknown, and the matching value is to be skipped quietly.
          Since:
          2.5
        • _arraySeparator

          protected String _arraySeparator
          Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
          Since:
          2.5
        • _arrayContents

          protected StringBuilder _arrayContents
          Accumulated contents of an array cell, if any
        • _arrayElements

          protected int _arrayElements
          Additional counter that indicates number of value entries in the array. Needed because `null` entries do not add content, but need to be separated by array cell separator
          Since:
          2.7
        • _skipWithin

          protected com.fasterxml.jackson.core.json.JsonWriteContext _skipWithin
          When skipping output (for "unknown" output), outermost write context where skipping should occur
          Since:
          2.7
      • Constructor Detail

        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              Writer out,
                              CsvSchema schema)
          Since:
          2.4
        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              CsvEncoder csvWriter)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public CsvGenerator useDefaultPrettyPrinter()
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public CsvGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • setCharacterEscapes

          public com.fasterxml.jackson.core.JsonGenerator setCharacterEscapes(com.fasterxml.jackson.core.io.CharacterEscapes esc)
          Overrides:
          setCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • getCharacterEscapes

          public com.fasterxml.jackson.core.io.CharacterEscapes getCharacterEscapes()
          Overrides:
          getCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStringField

          public final void writeStringField(String fieldName,
                                             String value)
                                      throws IOException
          Overrides:
          writeStringField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeOmittedField

          public void writeOmittedField(String fieldName)
                                 throws IOException
          Overrides:
          writeOmittedField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _reportMappingError

          protected void _reportMappingError(String msg)
                                      throws com.fasterxml.jackson.core.JsonProcessingException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
          Since:
          2.7
        • _columnIndex

          protected final int _columnIndex()
        • finishRow

          protected void finishRow()
                            throws IOException
          Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
          Throws:
          IOException
        • _addToArray

          protected void _addToArray(String value)
        • _addToArray

          protected void _addToArray(char[] value)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvMapper.Builder.html ================================================ CsvMapper.Builder (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper.Builder

    • Enclosing class:
      CsvMapper


      public static class CsvMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<CsvMapper,CsvMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      Since:
      2.10

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvMapper.html ================================================ CsvMapper (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        protected void _addSchemaProperties(CsvSchema.Builder builder, com.fasterxml.jackson.databind.AnnotationIntrospector intr, boolean typed, com.fasterxml.jackson.databind.JavaType pojoType, com.fasterxml.jackson.databind.util.NameTransformer unwrapper) 
        protected CsvSchema.ColumnType _determineType(Class<?> propType) 
        protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t) 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas, boolean typed) 
        static CsvMapper.Builder builder() 
        static CsvMapper.Builder builder(CsvFactory streamFactory) 
        CsvMapper configure(CsvGenerator.Feature f, boolean state) 
        CsvMapper configure(CsvParser.Feature f, boolean state) 
        CsvMapper copy() 
        static CsvMapper.Builder csvBuilder()
        Short-cut for:
        CsvMapper disable(CsvGenerator.Feature f) 
        CsvMapper disable(CsvParser.Feature f) 
        CsvMapper enable(CsvGenerator.Feature f) 
        CsvMapper enable(CsvParser.Feature f) 
        CsvFactory getFactory()
        Overridden with more specific type, since factory we have is always of type CsvFactory
        com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        CsvSchema schema()
        Convenience method that is same as
        CsvSchema schemaFor(Class<?> pojoType) 
        CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema schemaWithHeader()
        Convenience method that is same as
        CsvSchema typedSchemaFor(Class<?> pojoType) 
        CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createObjectNode, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
      • Field Detail

        • _untypedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • _typedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Constructor Detail

        • CsvMapper

          public CsvMapper()
        • CsvMapper

          protected CsvMapper(CsvMapper src)
          Copy-constructor, mostly used to support copy().

          NOTE: ObjectMapper had this method since 2.1.

          Since:
          2.5
      • Method Detail

        • csvBuilder

          public static CsvMapper.Builder csvBuilder()
          Short-cut for:
             return builder(new CsvFactory());
          
          Since:
          2.10
        • copy

          public CsvMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
          Since:
          2.5
        • getFactory

          public CsvFactory getFactory()
          Overridden with more specific type, since factory we have is always of type CsvFactory
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(schemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no CSV types can be mapped to arrays or Collections)
        • readerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • writerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(schemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no root-level CSV types can be mapped to arrays or Collections)
        • writerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • schemaWithHeader

          public CsvSchema schemaWithHeader()
          Convenience method that is same as
             CsvSchema.emptySchema().withHeader();
          
          and returns a CsvSchema instance that uses default configuration with additional setting that the first content line contains intended column names.
          Since:
          2.5
        • schema

          public CsvSchema schema()
          Convenience method that is same as
             CsvSchema.emptySchema()
          
          that is, returns an "empty" Schema; one with default values and no column definitions.
          Since:
          2.5
        • schemaFor

          public CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition will not be strictly typed (that is, all columns are just defined to be exposed as String tokens).
        • schemaFor

          public final CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • typedSchemaFor

          public CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition WILL be strictly typed: that is, code will try to determine type limitations which may make parsing more efficient (especially for numeric types like java.lang.Integer).
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(Class<?> pojoType)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • _schemaFor

          protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType,
                                         LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas,
                                         boolean typed)
        • _nonPojoType

          protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t)
        • _addSchemaProperties

          protected void _addSchemaProperties(CsvSchema.Builder builder,
                                              com.fasterxml.jackson.databind.AnnotationIntrospector intr,
                                              boolean typed,
                                              com.fasterxml.jackson.databind.JavaType pojoType,
                                              com.fasterxml.jackson.databind.util.NameTransformer unwrapper)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvMappingException.html ================================================ CsvMappingException (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMappingException

    • All Implemented Interfaces:
      Serializable


      public class CsvMappingException
      extends com.fasterxml.jackson.databind.JsonMappingException
      Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.
      Since:
      2.9
      See Also:
      Serialized Form

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvParser.Feature.html ================================================ CsvParser.Feature (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvParser.Feature

      • Enum Constant Detail

        • TRIM_SPACES

          public static final CsvParser.Feature TRIM_SPACES
          Feature determines whether spaces around separator characters (commas) are to be automatically trimmed before being reported or not. Note that this does NOT force trimming of possible white space from within double-quoted values, but only those surrounding unquoted values (white space outside of double-quotes is never included regardless of trimming).

          Default value is false, as per RFC-4180.

        • WRAP_AS_ARRAY

          public static final CsvParser.Feature WRAP_AS_ARRAY
          Feature that determines how stream of records (usually CSV lines, but sometimes multiple lines when linefeeds are included in quoted values) is exposed: either as a sequence of Objects (false), or as an Array of Objects (true). Using stream of Objects is convenient when using ObjectMapper.readValues(...) and array of Objects convenient when binding to Lists or arrays of values.

          Default value is false, meaning that by default a CSV document is exposed as a sequence of root-level Object entries.

        • IGNORE_TRAILING_UNMAPPABLE

          public static final CsvParser.Feature IGNORE_TRAILING_UNMAPPABLE
          Feature that allows ignoring of unmappable "extra" columns; that is, values for columns that appear after columns for which types are defined. When disabled, an exception is thrown for such column values, but if enabled, they are silently ignored.

          Feature is disabled by default.

          Since:
          2.7
        • SKIP_EMPTY_LINES

          public static final CsvParser.Feature SKIP_EMPTY_LINES
          Feature that allows skipping input lines that are completely empty, instead of being decoded as lines of just a single column with empty String value (or, depending on binding, `null`).

          Feature is disabled by default.

          Since:
          2.9
        • ALLOW_TRAILING_COMMA

          public static final CsvParser.Feature ALLOW_TRAILING_COMMA
          Feature that allows there to be a trailing single extraneous data column that is empty. When this feature is disabled, any extraneous column, regardless of content will cause an exception to be thrown. Disabling this feature is only useful when IGNORE_TRAILING_UNMAPPABLE is also disabled.
        • ALLOW_COMMENTS

          public static final CsvParser.Feature ALLOW_COMMENTS
          Feature that allows accepting "hash comments" by default, similar to CsvSchema.withAllowComments(boolean). If enabled, such comments are by default allowed on all columns of all documents.
          Since:
          2.10
        • FAIL_ON_MISSING_COLUMNS

          public static final CsvParser.Feature FAIL_ON_MISSING_COLUMNS
          Feature that allows failing (with a CsvMappingException) in cases where number of column values encountered is less than number of columns declared in active schema ("missing columns").

          Note that this feature has precedence over INSERT_NULLS_FOR_MISSING_COLUMNS

          Feature is disabled by default.

          Since:
          2.9
        • INSERT_NULLS_FOR_MISSING_COLUMNS

          public static final CsvParser.Feature INSERT_NULLS_FOR_MISSING_COLUMNS
          Feature that allows "inserting" virtual key / `null` value pairs in case a row contains fewer columns than declared by configured schema. This typically has the effect of forcing an explicit `null` assigment (or corresponding "null value", if so configured) at databinding level. If disabled, no extra work is done and values for "missing" columns are not exposed as part of the token stream.

          Note that this feature is only considered if INSERT_NULLS_FOR_MISSING_COLUMNS is disabled.

          Feature is disabled by default.

          Since:
          2.9
      • Method Detail

        • values

          public static CsvParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvParser.Feature c : CsvParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvParser.html ================================================ CsvParser (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class CsvParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.

      Implementation is based on a state-machine that pulls information using CsvDecoder.

      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvParser.Feature
        Enumeration that defines all togglable features for CSV parsers
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _arraySeparator 
        protected String _arrayValue
        Contents of the cell, to be split into distinct array values.
        protected int _arrayValueStart
        Pointer to the first character of the next array value to return.
        protected byte[] _binaryValue
        We will hold on to decoded binary data, for duration of current event, so that multiple calls to getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected int _columnCount
        Number of columns defined by schema.
        protected int _columnIndex
        Index of the column we are exposing
        protected String _currentName
        Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        protected String _currentValue
        String value for the current column, if accessed.
        protected int _formatFeatures 
        protected String _nullValue 
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
        Information about parser context, context in which the next token is to be parsed (root, array, object).
        protected CsvDecoder _reader
        Thing that actually reads the CSV content
        protected CsvSchema _schema
        Definition of columns being read.
        protected int _state
        Current logical state of the parser; one of STATE_ constants.
        protected TextBuffer _textBuffer
        Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        protected static int STATE_DOC_END
        State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
        protected static int STATE_DOC_START
        Initial state before anything is read from document.
        protected static int STATE_IN_ARRAY
        State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
        protected static int STATE_MISSING_NAME
        State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_MISSING_VALUE
        State in which we should expose `null` value token as a value for "missing" column; see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_NAMED_VALUE
        State in which value matching field name will be returned.
        protected static int STATE_NEXT_ENTRY
        State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
        protected static int STATE_RECORD_START
        State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
        protected static int STATE_SKIP_EXTRA_COLUMNS
        State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
        protected static int STATE_UNNAMED_VALUE
        State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvParser(CsvIOContext ctxt, int stdFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Field Detail

        • STATE_DOC_START

          protected static final int STATE_DOC_START
          Initial state before anything is read from document.
          See Also:
          Constant Field Values
        • STATE_RECORD_START

          protected static final int STATE_RECORD_START
          State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
          See Also:
          Constant Field Values
        • STATE_NEXT_ENTRY

          protected static final int STATE_NEXT_ENTRY
          State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
          See Also:
          Constant Field Values
        • STATE_NAMED_VALUE

          protected static final int STATE_NAMED_VALUE
          State in which value matching field name will be returned.
          See Also:
          Constant Field Values
        • STATE_UNNAMED_VALUE

          protected static final int STATE_UNNAMED_VALUE
          State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
          See Also:
          Constant Field Values
        • STATE_IN_ARRAY

          protected static final int STATE_IN_ARRAY
          State in which a column value has been determined to be of an array type, and will need to be split into multiple values. This can currently only occur for named values.
          Since:
          2.5
          See Also:
          Constant Field Values
        • STATE_SKIP_EXTRA_COLUMNS

          protected static final int STATE_SKIP_EXTRA_COLUMNS
          State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
          Since:
          2.6
          See Also:
          Constant Field Values
        • STATE_DOC_END

          protected static final int STATE_DOC_END
          State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping. This step will loop, returning series of nulls if nextToken() is called multiple times.
          See Also:
          Constant Field Values
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _schema

          protected CsvSchema _schema
          Definition of columns being read. Initialized to "empty" instance, which has default configuration settings.
        • _columnCount

          protected int _columnCount
          Number of columns defined by schema.
        • _parsingContext

          protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
          Information about parser context, context in which the next token is to be parsed (root, array, object).
        • _currentName

          protected String _currentName
          Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        • _currentValue

          protected String _currentValue
          String value for the current column, if accessed.
        • _columnIndex

          protected int _columnIndex
          Index of the column we are exposing
        • _state

          protected int _state
          Current logical state of the parser; one of STATE_ constants.
        • _arrayValueStart

          protected int _arrayValueStart
          Pointer to the first character of the next array value to return.
        • _arrayValue

          protected String _arrayValue
          Contents of the cell, to be split into distinct array values.
        • _arraySeparator

          protected String _arraySeparator
        • _nullValue

          protected String _nullValue
        • _reader

          protected final CsvDecoder _reader
          Thing that actually reads the CSV content
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
      • Constructor Detail

        • CsvParser

          public CsvParser(CsvIOContext ctxt,
                           int stdFeatures,
                           int csvFeatures,
                           com.fasterxml.jackson.core.ObjectCodec codec,
                           Reader reader)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • releaseBuffered

          public int releaseBuffered(Writer out)
                              throws IOException
          Overrides:
          releaseBuffered in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • enable

          public com.fasterxml.jackson.core.JsonParser enable(CsvParser.Feature f)
          Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
        • disable

          public com.fasterxml.jackson.core.JsonParser disable(CsvParser.Feature f)
          Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(CsvParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
        • getSchema

          public CsvSchema getSchema()
          Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • isExpectedStartArrayToken

          public boolean isExpectedStartArrayToken()
          We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
          Overrides:
          isExpectedStartArrayToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextFieldName

          public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString str)
                                throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextFieldName

          public String nextFieldName()
                               throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextTextValue

          public String nextTextValue()
                               throws IOException
          Overrides:
          nextTextValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _readHeaderLine

          protected void _readHeaderLine()
                                  throws IOException
          Method called to process the expected header line
          Throws:
          IOException
        • _handleStartDoc

          protected com.fasterxml.jackson.core.JsonToken _handleStartDoc()
                                                                  throws IOException
          Method called to handle details of initializing things to return the very first token.
          Throws:
          IOException
        • _handleRecordStart

          protected com.fasterxml.jackson.core.JsonToken _handleRecordStart()
                                                                     throws IOException
          Throws:
          IOException
        • _handleNextEntry

          protected com.fasterxml.jackson.core.JsonToken _handleNextEntry()
                                                                   throws IOException
          Throws:
          IOException
        • _handleNamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleNamedValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleUnnamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleUnnamedValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleArrayValue

          protected com.fasterxml.jackson.core.JsonToken _handleArrayValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleExtraColumn

          protected com.fasterxml.jackson.core.JsonToken _handleExtraColumn(String value)
                                                                     throws IOException
          Helper method called when an extraneous column value is found. What happens then depends on configuration, but there are three main choices: ignore value (and rest of line); expose extra value as "any property" using configured name, or throw an exception.
          Throws:
          IOException
          Since:
          2.7
        • _handleMissingColumns

          protected com.fasterxml.jackson.core.JsonToken _handleMissingColumns()
                                                                        throws IOException
          Helper method called when end of row occurs before finding values for all schema-specified columns.
          Throws:
          IOException
          Since:
          2.9
        • _handleMissingName

          protected com.fasterxml.jackson.core.JsonToken _handleMissingName()
                                                                     throws IOException
          Throws:
          IOException
        • _handleMissingValue

          protected com.fasterxml.jackson.core.JsonToken _handleMissingValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleObjectRowEnd

          protected final com.fasterxml.jackson.core.JsonToken _handleObjectRowEnd()
                                                                            throws IOException
          Helper method called to handle details of state update when end of logical record occurs.
          Throws:
          IOException
          Since:
          2.9
        • _skipUntilEndOfLine

          protected final com.fasterxml.jackson.core.JsonToken _skipUntilEndOfLine()
                                                                            throws IOException
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer w)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • _reportCsvMappingError

          public <T> T _reportCsvMappingError(String msg,
                                              Object... args)
                                       throws com.fasterxml.jackson.core.JsonProcessingException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
          Since:
          2.9
        • _reportParsingError

          public void _reportParsingError(String msg)
                                   throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _reportUnexpectedCsvChar

          public void _reportUnexpectedCsvChar(int ch,
                                               String msg)
                                        throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvSchema.Builder.html ================================================ CsvSchema.Builder (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Builder

    • Enclosing class:
      CsvSchema


      public static class CsvSchema.Builder
      extends Object
      Class used for building CsvSchema instances.
      • Field Detail

        • _encodingFeatures

          protected int _encodingFeatures
          Bit-flag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected char _columnSeparator
        • _arrayElementSeparator

          protected String _arrayElementSeparator
        • _anyPropertyName

          protected String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _lineSeparator

          protected char[] _lineSeparator
        • _nullValue

          protected char[] _nullValue
          Since:
          2.5
      • Constructor Detail

        • Builder

          public Builder()
        • Builder

          public Builder(CsvSchema src)
          "Copy" constructor which creates builder that has settings of given source schema
      • Method Detail

        • addColumn

          public CsvSchema.Builder addColumn(String name)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumn

          public CsvSchema.Builder addColumn(CsvSchema.Column c)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumnsFrom

          public CsvSchema.Builder addColumnsFrom(CsvSchema schema)
          NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
          Since:
          2.9
        • removeArrayElementSeparator

          public CsvSchema.Builder removeArrayElementSeparator(int index)
        • size

          public int size()
        • hasColumn

          public boolean hasColumn(String name)

          NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).

          Since:
          2.9
        • setUseHeader

          public CsvSchema.Builder setUseHeader(boolean b)
          Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
        • setReorderColumns

          public CsvSchema.Builder setReorderColumns(boolean b)
          Use in combination with setUseHeader. When use header flag is is set, this setting will reorder the columns defined in this schema to match the order set by the header.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setStrictHeaders

          public CsvSchema.Builder setStrictHeaders(boolean b)
          Use in combination with setUseHeader(boolean). When `strict-headers` is set, encoder will ensure the headers are in the order of the schema; if order differs, an exception is thrown.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setSkipFirstDataRow

          public CsvSchema.Builder setSkipFirstDataRow(boolean b)
          Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
        • setAllowComments

          public CsvSchema.Builder setAllowComments(boolean b)
          Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
          Since:
          2.5
        • _feature

          protected final void _feature(int feature,
                                        boolean state)
        • setColumnSeparator

          public CsvSchema.Builder setColumnSeparator(char c)
          Method for specifying character used to separate column values. Default is comma (',').
        • setArrayElementSeparator

          public CsvSchema.Builder setArrayElementSeparator(String separator)
          Method for specifying character used to separate array element values. Default value is semicolon (";")
          Since:
          2.7
        • disableArrayElementSeparator

          public CsvSchema.Builder disableArrayElementSeparator()
          Since:
          2.7
        • setQuoteChar

          public CsvSchema.Builder setQuoteChar(char c)
          Method for specifying character used for optional quoting of values. Default is double-quote ('"').
        • setEscapeChar

          public CsvSchema.Builder setEscapeChar(char c)
          Method for specifying character used for optional escaping of characters in quoted String values. Default is "not used", meaning that no escaping used.
        • disableEscapeChar

          public CsvSchema.Builder disableEscapeChar()
          Method for specifying that no escape character is to be used with CSV documents this schema defines.
        • _checkIndex

          protected void _checkIndex(int index)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvSchema.Column.html ================================================ CsvSchema.Column (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Column

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvSchema.ColumnType.html ================================================ CsvSchema.ColumnType (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvSchema.ColumnType

      • Enum Constant Summary

        Enum Constants 
        Enum Constant and Description
        ARRAY
        Value will be a multi-value sequence, separated by array element separator.
        BOOLEAN
        Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null).
        NUMBER
        Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null.
        NUMBER_OR_STRING
        Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match.
        STRING
        Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.
        STRING_OR_LITERAL
        Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
      • Enum Constant Detail

        • STRING

          public static final CsvSchema.ColumnType STRING
          Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.

          Note that this type allows coercion into array, if higher level application calls JsonParser.isExpectedStartArrayToken(), unlike more explicit types.

        • STRING_OR_LITERAL

          public static final CsvSchema.ColumnType STRING_OR_LITERAL
          Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
        • NUMBER

          public static final CsvSchema.ColumnType NUMBER
          Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null. Values are also trimmed (leading/trailing white space) Other non-numeric Strings may cause parsing exception.
        • NUMBER_OR_STRING

          public static final CsvSchema.ColumnType NUMBER_OR_STRING
          Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match. Values are also trimmed (leading/trailing white space)
        • BOOLEAN

          public static final CsvSchema.ColumnType BOOLEAN
          Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null). Values are trimmed (leading/trailing white space). Values other than indicated above may result in an exception.
          Since:
          2.5
        • ARRAY

          public static final CsvSchema.ColumnType ARRAY
          Value will be a multi-value sequence, separated by array element separator. Element type itself may be any scalar type (that is, number or String) and will not be optimized. Separator may be overridden on per-column basis.

          Note that this type is used for generic concept of multiple values, and not specifically to match Java arrays: data-binding may match such columns to Collections as well, or even other types as necessary.

          Since:
          2.5
      • Method Detail

        • values

          public static CsvSchema.ColumnType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvSchema.ColumnType c : CsvSchema.ColumnType.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvSchema.ColumnType valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvSchema.html ================================================ CsvSchema (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable, Iterable<CsvSchema.Column>


      public class CsvSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Iterable<CsvSchema.Column>, Serializable
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write. Properties supported currently are:
      • columns (List of ColumnDef) [default: empty List]: Ordered list of columns (which may be empty, see below). Each column has name (mandatory) as well as type (optional; if not defined, defaults to "String"). Note that
      • useHeader (boolean) [default: false]: whether the first line of physical document defines column names (true) or not (false): if enabled, parser will take first-line values to define column names; and generator will output column names as the first line
      • quoteChar (char) [default: double-quote ('")]: character used for quoting values that contain quote characters or linefeeds.
      • columnSeparator (char) [default: comma (',')]: character used to separate values. Other commonly used values include tab ('\t') and pipe ('|')
      • arrayElementSeparator (String) [default: semicolon (";")]: string used to separate array elements.
      • lineSeparator (String) [default: "\n"]: character used to separate data rows. Only used by generator; parser accepts three standard linefeeds ("\r", "\r\n", "\n").
      • escapeChar (int) [default: -1 meaning "none"]: character, if any, used to escape values. Most commonly defined as backslash ('\'). Only used by parser; generator only uses quoting, including doubling up of quotes to indicate quote char itself.
      • skipFirstDataRow (boolean) [default: false]: whether the first data line (either first line of the document, if useHeader=false, or second, if useHeader=true) should be completely ignored by parser. Needed to support CSV-like file formats that include additional non-data content before real data begins (specifically some database dumps do this)
      • nullValue (String) [default: "" (empty String)]: When asked to write Java `null`, this String value will be used instead.
        With 2.6, value will also be recognized during value reads.
      • strictHeaders (boolean) [default: false] (added in Jackson 2.7): whether names of columns defined in the schema MUST match with actual declaration from the header row (if header row handling enabled): if true, they must be and an exception if thrown if order differs: if false, no verification is performed.

      Note that schemas without any columns are legal, but if no columns are added, behavior of parser/generator is usually different and content will be exposed as logical Arrays instead of Objects.

      There are 4 ways to create CsvSchema instances:

      See Also:
      Serialized Form
      • Field Detail

        • ENCODING_FEATURE_USE_HEADER

          protected static final int ENCODING_FEATURE_USE_HEADER
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_SKIP_FIRST_DATA_ROW

          protected static final int ENCODING_FEATURE_SKIP_FIRST_DATA_ROW
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_ALLOW_COMMENTS

          protected static final int ENCODING_FEATURE_ALLOW_COMMENTS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_REORDER_COLUMNS

          protected static final int ENCODING_FEATURE_REORDER_COLUMNS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_STRICT_HEADERS

          protected static final int ENCODING_FEATURE_STRICT_HEADERS
          See Also:
          Constant Field Values
        • DEFAULT_ENCODING_FEATURES

          protected static final int DEFAULT_ENCODING_FEATURES
          See Also:
          Constant Field Values
        • NO_CHARS

          protected static final char[] NO_CHARS
        • DEFAULT_COLUMN_SEPARATOR

          public static final char DEFAULT_COLUMN_SEPARATOR
          Default separator for column values is comma (hence "Comma-Separated Values")
          See Also:
          Constant Field Values
        • DEFAULT_ARRAY_ELEMENT_SEPARATOR

          public static final String DEFAULT_ARRAY_ELEMENT_SEPARATOR
          Default separator for array elements within a column value is semicolon.
          See Also:
          Constant Field Values
        • NO_ARRAY_ELEMENT_SEPARATOR

          public static final String NO_ARRAY_ELEMENT_SEPARATOR
          Marker for the case where no array element separator is used
          See Also:
          Constant Field Values
        • DEFAULT_ANY_PROPERTY_NAME

          public static final String DEFAULT_ANY_PROPERTY_NAME
          By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
          Since:
          2.7
        • DEFAULT_NULL_VALUE

          public static final char[] DEFAULT_NULL_VALUE
          By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls). To use automatic coercion on reading, null value must be set explicitly to empty String ("").

          NOTE: before 2.6, this value default to empty char[]; changed to Java null in 2.6.

        • DEFAULT_ESCAPE_CHAR

          public static final int DEFAULT_ESCAPE_CHAR
          By default, no escape character is used -- this is denoted by int value that does not map to a valid character
          See Also:
          Constant Field Values
        • DEFAULT_LINEFEED

          public static final char[] DEFAULT_LINEFEED
        • _columns

          protected final CsvSchema.Column[] _columns
          Column definitions, needed for optional header and/or mapping of field names to column positions.
        • _features

          protected int _features
          Bitflag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected final char _columnSeparator
        • _arrayElementSeparator

          protected final String _arrayElementSeparator
        • _quoteChar

          protected final int _quoteChar
        • _escapeChar

          protected final int _escapeChar
        • _lineSeparator

          protected final char[] _lineSeparator
        • _nullValue

          protected final char[] _nullValue
          Since:
          2.5
        • _nullValueAsString

          protected transient String _nullValueAsString
        • _anyPropertyName

          protected final String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
      • Constructor Detail

        • CsvSchema

          public CsvSchema(CsvSchema.Column[] columns,
                           int features,
                           char columnSeparator,
                           int quoteChar,
                           int escapeChar,
                           char[] lineSeparator,
                           String arrayElementSeparator,
                           char[] nullValue,
                           String anyPropertyName)
          Since:
          2.7
        • CsvSchema

          protected CsvSchema(CsvSchema.Column[] columns,
                              int features,
                              char columnSeparator,
                              int quoteChar,
                              int escapeChar,
                              char[] lineSeparator,
                              String arrayElementSeparator,
                              char[] nullValue,
                              Map<String,CsvSchema.Column> columnsByName,
                              String anyPropertyName)
          Copy constructor used for creating variants using withXxx() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              CsvSchema.Column[] columns)
          Copy constructor used for creating variants using sortedBy() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              int features)
          Copy constructor used for creating variants for on/off features
          Since:
          2.5
      • Method Detail

        • emptySchema

          public static CsvSchema emptySchema()
          Accessor for creating a "default" CSV schema instance, with following settings:
          • Does NOT use header line
          • Uses double quotes ('"') for quoting of field values (if necessary)
          • Uses comma (',') as the field separator
          • Uses Unix linefeed ('\n') as row separator
          • Does NOT use any escape characters
          • Does NOT have any columns defined
        • rebuild

          public CsvSchema.Builder rebuild()
          Helper method for constructing Builder that can be used to create modified schema.
        • withUseHeader

          public CsvSchema withUseHeader(boolean state)
        • withColumnReordering

          public CsvSchema withColumnReordering(boolean state)
          Returns a clone of this instance by changing or setting the column reordering flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the column reordering feature.
          Since:
          2.7
        • withStrictHeaders

          public CsvSchema withStrictHeaders(boolean state)
          Returns a clone of this instance by changing or setting the strict headers flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the strict headers feature.
          Since:
          2.7
        • withHeader

          public CsvSchema withHeader()
          Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
        • withoutHeader

          public CsvSchema withoutHeader()
          Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
        • withSkipFirstDataRow

          public CsvSchema withSkipFirstDataRow(boolean state)
        • withAllowComments

          public CsvSchema withAllowComments(boolean state)
          Method to indicate whether "hash comments" are allowed for document described by this schema.
          Since:
          2.5
        • withComments

          public CsvSchema withComments()
          Method to indicate that "hash comments" ARE allowed for document described by this schema.
          Since:
          2.5
        • withoutComments

          public CsvSchema withoutComments()
          Method to indicate that "hash comments" are NOT allowed for document described by this schema.
          Since:
          2.5
        • _withFeature

          protected CsvSchema _withFeature(int feature,
                                           boolean state)
        • withColumnSeparator

          public CsvSchema withColumnSeparator(char sep)
        • withQuoteChar

          public CsvSchema withQuoteChar(char c)
        • withoutQuoteChar

          public CsvSchema withoutQuoteChar()
        • withEscapeChar

          public CsvSchema withEscapeChar(char c)
        • withoutEscapeChar

          public CsvSchema withoutEscapeChar()
        • withArrayElementSeparator

          public CsvSchema withArrayElementSeparator(String separator)
          Since:
          2.7
        • withoutArrayElementSeparator

          public CsvSchema withoutArrayElementSeparator()
          Since:
          2.5
        • withoutColumns

          public CsvSchema withoutColumns()
        • withColumnsFrom

          public CsvSchema withColumnsFrom(CsvSchema toAppend)
          Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`. All settings aside from column sets are copied from `this` instance.

          As with all `withXxx()` methods this method never modifies `this` but either returns it unmodified (if no new columns found from `toAppend`), or constructs a new instance and returns that.

          Since:
          2.9
        • withAnyPropertyName

          public CsvSchema withAnyPropertyName(String name)
          Since:
          2.7
        • sortedBy

          public CsvSchema sortedBy(String... columnNames)
          Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument. Columns not listed in argument will be sorted after those within list, using existing ordering.

          For example, schema that has columns:

          "a", "d", "c", "b"
          
          ordered with schema.sortedBy("a", "b"); would result instance that columns in order:
          "a", "b", "d", "c"
          
          Since:
          2.4
        • sortedBy

          public CsvSchema sortedBy(Comparator<String> cmp)
          Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
          Since:
          2.4
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • usesHeader

          public boolean usesHeader()
        • reordersColumns

          public boolean reordersColumns()
        • skipsFirstDataRow

          public boolean skipsFirstDataRow()
        • allowsComments

          public boolean allowsComments()
        • strictHeaders

          public boolean strictHeaders()
        • getColumnSeparator

          public char getColumnSeparator()
        • getArrayElementSeparator

          public String getArrayElementSeparator()
        • getQuoteChar

          public int getQuoteChar()
        • getEscapeChar

          public int getEscapeChar()
        • getLineSeparator

          public char[] getLineSeparator()
        • getNullValue

          public char[] getNullValue()
          Returns:
          Null value defined, as char array, if one is defined to be recognized; Java null if not.
          Since:
          2.5
        • getNullValueOrEmpty

          public char[] getNullValueOrEmpty()
          Same as getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
          Since:
          2.6
        • getNullValueString

          public String getNullValueString()
          Since:
          2.6
        • usesQuoteChar

          public boolean usesQuoteChar()
        • usesEscapeChar

          public boolean usesEscapeChar()
        • hasArrayElementSeparator

          public boolean hasArrayElementSeparator()
          Since:
          2.5
        • getAnyPropertyName

          public String getAnyPropertyName()
          Since:
          2.7
        • size

          public int size()
          Accessor for finding out how many columns this schema defines.
          Returns:
          Number of columns this schema defines
        • column

          public CsvSchema.Column column(int index)
          Accessor for column at specified index (0-based); index having to be within
              0 <= index < size()
          
        • columnName

          public String columnName(int index)
          Since:
          2.6
        • column

          public CsvSchema.Column column(String name,
                                         int probableIndex)
          Optimized variant where a hint is given as to likely index of the column name.
          Since:
          2.6
        • getColumnDesc

          public String getColumnDesc()
          Method for getting description of column definitions in developer-readable form
        • _validArrayElementSeparator

          protected static String _validArrayElementSeparator(String sep)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvCharacterEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactory (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactory

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvMappingException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMappingException (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMappingException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser.Feature (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser.Feature

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Column.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Column

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.ColumnType.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.PackageVersion (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.csv.PackageVersion

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.BooleanValue.html ================================================ BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.BooleanValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.DoubleValue.html ================================================ BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.DoubleValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.IntValue.html ================================================ BufferedValue.IntValue (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.IntValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.LongValue.html ================================================ BufferedValue.LongValue (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.LongValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.NullValue.html ================================================ BufferedValue.NullValue (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.NullValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.RawValue.html ================================================ BufferedValue.RawValue (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.RawValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.TextValue.html ================================================ BufferedValue.TextValue (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.TextValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.html ================================================ BufferedValue (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/CsvDecoder.html ================================================ CsvDecoder (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvDecoder



    • public class CsvDecoder
      extends Object
      Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
      • Field Detail

        • _owner

          protected final CsvParser _owner
          Unfortunate back reference, needed for error reporting
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
          I/O context for this reader. It handles buffer allocation for the reader.
        • _inputSource

          protected Reader _inputSource
          Input stream that can be used for reading more content, if one in use. May be null, if input comes just as a full buffer, or if the stream has been closed.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.

          If it is not, it also means that parser can NOT modify underlying buffer.

        • _autoCloseInput

          protected boolean _autoCloseInput
        • _trimSpaces

          protected boolean _trimSpaces
          Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
        • _allowComments

          protected boolean _allowComments
        • _maxSpecialChar

          protected int _maxSpecialChar
          Maximum of quote character, linefeeds (\r and \n), escape character.
        • _separatorChar

          protected int _separatorChar
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _inputBuffer

          protected char[] _inputBuffer
          Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
        • _inputPtr

          protected int _inputPtr
          Pointer to next available character in buffer
        • _inputEnd

          protected int _inputEnd
          Index of character after last available one in the buffer.
        • _pendingLF

          protected int _pendingLF
          Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
        • _closed

          protected boolean _closed
          Flag that indicates whether parser is closed or not. Gets set when parser is either closed by explicit call (close()) or when end-of-input is reached.
        • _currInputProcessed

          protected long _currInputProcessed
          Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
        • _currInputRow

          protected int _currInputRow
          Current row location of current point in input buffer, starting from 1, if available.
        • _currInputRowStart

          protected int _currInputRowStart
          Current index of the first character of the current row in input buffer. Needed to calculate column position, if necessary; benefit of not having column itself is that this only has to be updated once per line.
        • _tokenInputTotal

          protected long _tokenInputTotal
          Total number of bytes/characters read before start of current token. For big (gigabyte-sized) sizes are possible, needs to be long, unlike pointers and sizes related to in-memory buffers.
        • _tokenInputRow

          protected int _tokenInputRow
          Input row on which current token starts, 1-based
        • _tokenInputCol

          protected int _tokenInputCol
          Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
        • _numTypesValid

          protected int _numTypesValid
          Bitfield that indicates which numeric representations have been calculated for the current type
        • _numberInt

          protected int _numberInt
        • _numberLong

          protected long _numberLong
        • _numberDouble

          protected double _numberDouble
        • _numberBigInt

          protected BigInteger _numberBigInt
        • _numberBigDecimal

          protected BigDecimal _numberBigDecimal
      • Constructor Detail

        • CsvDecoder

          public CsvDecoder(CsvParser owner,
                            com.fasterxml.jackson.core.io.IOContext ctxt,
                            Reader r,
                            CsvSchema schema,
                            TextBuffer textBuffer,
                            int stdFeatures,
                            int csvFeatures)
      • Method Detail

        • setSchema

          public void setSchema(CsvSchema schema)
        • overrideFormatFeatures

          public void overrideFormatFeatures(int csvFeatures)
          Since:
          2.7
        • getInputSource

          public Object getInputSource()
        • isClosed

          public boolean isClosed()
        • childArrayContext

          public com.fasterxml.jackson.core.json.JsonReadContext childArrayContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • childObjectContext

          public com.fasterxml.jackson.core.json.JsonReadContext childObjectContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
        • getCurrentRow

          public final int getCurrentRow()
        • getCurrentColumn

          public final int getCurrentColumn()
        • getTokenCharacterOffset

          protected final long getTokenCharacterOffset()
        • getTokenLineNr

          protected final int getTokenLineNr()
        • getTokenColumnNr

          protected final int getTokenColumnNr()
        • getText

          public String getText()
        • hasMoreInput

          public boolean hasMoreInput()
                               throws IOException
          Method that can be called to see if there is at least one more character to be parsed.
          Throws:
          IOException
        • startNewLine

          public boolean startNewLine()
                               throws IOException
          Method called to handle details of starting a new line, which may include skipping a linefeed.
          Returns:
          True if there is a new data line to handle; false if not
          Throws:
          IOException
        • skipLine

          public boolean skipLine()
                           throws IOException
          Method called to blindly skip a single line of content, without considering aspects like quoting or escaping. Used currently simply to skip the first line of input document, if instructed to do so.
          Throws:
          IOException
        • nextString

          public String nextString()
                            throws IOException
          Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
          Returns:
          Column value if more found; null to indicate end of line of input
          Throws:
          IOException
        • nextStringOrLiteral

          public com.fasterxml.jackson.core.JsonToken nextStringOrLiteral()
                                                                   throws IOException
          Throws:
          IOException
        • nextNumber

          public com.fasterxml.jackson.core.JsonToken nextNumber()
                                                          throws IOException
          Throws:
          IOException
        • nextNumberOrString

          public com.fasterxml.jackson.core.JsonToken nextNumberOrString()
                                                                  throws IOException
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Method that will parse actual numeric value out of a syntactically valid number value. Type it will parse into depends on whether it is a floating point number, as well as its magnitude: smallest legal type (of ones available) is used for efficiency.
          Parameters:
          expType - Numeric type that we will immediately need, if any; mostly necessary to optimize handling of floating point numbers
          Throws:
          IOException
        • convertNumberToBigInteger

          protected void convertNumberToBigInteger()
                                            throws IOException
          Throws:
          IOException
        • convertNumberToBigDecimal

          protected void convertNumberToBigDecimal()
                                            throws IOException
          Throws:
          IOException
        • reportUnexpectedNumberChar

          protected void reportUnexpectedNumberChar(int ch,
                                                    String comment)
                                             throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • reportInvalidNumber

          protected void reportInvalidNumber(String msg)
                                      throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • constructError

          protected final com.fasterxml.jackson.core.JsonParseException constructError(String msg,
                                                                                       Throwable t)
        • _getCharDesc

          protected static final String _getCharDesc(int ch)
        • _reportError

          protected final void _reportError(String msg)
                                     throws com.fasterxml.jackson.core.JsonParseException
          Method for reporting low-level decoding (parsing) problems
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/CsvEncoder.html ================================================ CsvEncoder (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvEncoder



    • public class CsvEncoder
      extends Object
      Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
      • Field Detail

        • HEX_CHARS

          protected static final char[] HEX_CHARS
        • _outputEscapes

          protected int[] _outputEscapes
          Currently active set of output escape code definitions (whether and how to escape or not).
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _out

          protected final Writer _out
          Underlying Writer used for output.
        • _cfgColumnSeparator

          protected final char _cfgColumnSeparator
        • _cfgQuoteCharacter

          protected final int _cfgQuoteCharacter
        • _cfgEscapeCharacter

          protected final int _cfgEscapeCharacter
          Since:
          2.7
        • _cfgLineSeparator

          protected final char[] _cfgLineSeparator
        • _cfgNullValue

          protected final char[] _cfgNullValue
          Since:
          2.5
        • _cfgLineSeparatorLength

          protected final int _cfgLineSeparatorLength
        • _cfgMaxQuoteCheckChars

          protected int _cfgMaxQuoteCheckChars
        • _cfgMinSafeChar

          protected final int _cfgMinSafeChar
          Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
        • _csvFeatures

          protected int _csvFeatures
        • _cfgOptimalQuoting

          protected boolean _cfgOptimalQuoting
          Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
          Since:
          2.4
        • _cfgIncludeMissingTail

          protected boolean _cfgIncludeMissingTail
          Since:
          2.4
        • _cfgAlwaysQuoteStrings

          protected boolean _cfgAlwaysQuoteStrings
          Since:
          2.5
        • _cfgAlwaysQuoteEmptyStrings

          protected boolean _cfgAlwaysQuoteEmptyStrings
        • _cfgEscapeQuoteCharWithEscapeChar

          protected boolean _cfgEscapeQuoteCharWithEscapeChar
        • _cfgEscapeControlCharWithEscapeChar

          protected boolean _cfgEscapeControlCharWithEscapeChar
          Since:
          2.9.9
        • _cfgQuoteCharEscapeChar

          protected final char _cfgQuoteCharEscapeChar
        • _cfgControlCharEscapeChar

          protected final char _cfgControlCharEscapeChar
          Since:
          2.9.9
        • _columnCount

          protected int _columnCount
          Since:
          2.4
        • _nextColumnToWrite

          protected int _nextColumnToWrite
          Index of column we expect to write next
        • _buffered

          protected BufferedValue[] _buffered
          And if output comes in shuffled order we will need to do bit of ordering.
        • _lastBuffered

          protected int _lastBuffered
          Index of the last buffered value
        • _outputBuffer

          protected char[] _outputBuffer
          Intermediate buffer in which contents are buffered before being written using _out.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
        • _outputTail

          protected int _outputTail
          Pointer to the next available char position in _outputBuffer
        • _outputEnd

          protected final int _outputEnd
          Offset to index after the last valid index in _outputBuffer. Typically same as length of the buffer.
        • _charsWritten

          protected int _charsWritten
          Let's keep track of how many bytes have been output, may prove useful when debugging. This does not include bytes buffered in the output buffer, just bytes that have been written using underlying stream writer.
      • Constructor Detail

        • CsvEncoder

          public CsvEncoder(com.fasterxml.jackson.core.io.IOContext ctxt,
                            int csvFeatures,
                            Writer out,
                            CsvSchema schema)
      • Method Detail

        • overrideFormatFeatures

          public CsvEncoder overrideFormatFeatures(int feat)
        • setOutputEscapes

          public CsvEncoder setOutputEscapes(int[] esc)
        • getOutputTarget

          public Object getOutputTarget()
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
        • nextColumnIndex

          public int nextColumnIndex()
        • write

          public final void write(int columnIndex,
                                  char[] ch,
                                  int offset,
                                  int len)
                           throws IOException
          Throws:
          IOException
        • _writeQuotedAndEscaped

          protected void _writeQuotedAndEscaped(String text,
                                                char q,
                                                char esc,
                                                int i)
                                         throws IOException
          Throws:
          IOException
        • _mayNeedQuotes

          protected boolean _mayNeedQuotes(String value,
                                           int length)
          Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
        • _needsQuotingLoose

          protected final boolean _needsQuotingLoose(String value)

          NOTE: final since checking is not expected to be changed here; override calling method (_mayNeedQuotes) instead, if necessary.

          Since:
          2.4
        • _needsQuotingLoose

          protected final boolean _needsQuotingLoose(String value,
                                                     int esc)
        • _needsQuotingStrict

          protected boolean _needsQuotingStrict(String value)
          Since:
          2.4
        • _needsQuotingStrict

          protected boolean _needsQuotingStrict(String value,
                                                int esc)
          Since:
          2.7
        • _releaseBuffers

          public void _releaseBuffers()

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/CsvIOContext.html ================================================ CsvIOContext (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvIOContext

    • java.lang.Object
      • com.fasterxml.jackson.core.io.IOContext
        • com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext


    • public class CsvIOContext
      extends com.fasterxml.jackson.core.io.IOContext
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.io.IOContext

          _base64Buffer, _bufferRecycler, _concatCBuffer, _encoding, _managedResource, _nameCopyBuffer, _readIOBuffer, _sourceRef, _tokenCBuffer, _writeEncodingBuffer
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br, Object sourceRef, boolean managedResource) 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        TextBuffer csvTextBuffer() 
        • Methods inherited from class com.fasterxml.jackson.core.io.IOContext

          _verifyAlloc, _verifyRelease, _verifyRelease, allocBase64Buffer, allocBase64Buffer, allocConcatBuffer, allocNameCopyBuffer, allocReadIOBuffer, allocReadIOBuffer, allocTokenBuffer, allocTokenBuffer, allocWriteEncodingBuffer, allocWriteEncodingBuffer, constructTextBuffer, getEncoding, getSourceReference, isResourceManaged, releaseBase64Buffer, releaseConcatBuffer, releaseNameCopyBuffer, releaseReadIOBuffer, releaseTokenBuffer, releaseWriteEncodingBuffer, setEncoding, withEncoding
      • Constructor Detail

        • CsvIOContext

          public CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br,
                              Object sourceRef,
                              boolean managedResource)
      • Method Detail

        • csvTextBuffer

          public TextBuffer csvTextBuffer()

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/CsvParserBootstrapper.html ================================================ CsvParserBootstrapper (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvParserBootstrapper

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper


    • public final class CsvParserBootstrapper
      extends Object
      This class is used to determine the encoding of byte stream that is to contain CSV document. Since there is no real specification for how this should work with CSV, it will be based on rules used with JSON (which themselves are similar to those used with XML); main points are to check for BOM first, then look for multi-byted fixed-length encodings (UTF-16, UTF-32). And finally, if neither found, must decide between most likely alternatives, UTF-8 and Latin-1.
      • Field Detail

        • _context

          protected final com.fasterxml.jackson.core.io.IOContext _context
        • _codec

          protected final com.fasterxml.jackson.core.ObjectCodec _codec
        • _inputBuffer

          protected final byte[] _inputBuffer
        • _inputProcessed

          protected int _inputProcessed
          Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.

          Note: includes possible BOMs, if those were part of the input.

        • _bigEndian

          protected boolean _bigEndian
        • _bytesPerChar

          protected int _bytesPerChar
      • Constructor Detail

        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       InputStream in)
        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       byte[] inputBuffer,
                                       int inputStart,
                                       int inputLen)
      • Method Detail

        • hasCSVFormat

          public static com.fasterxml.jackson.core.format.MatchStrength hasCSVFormat(com.fasterxml.jackson.core.format.InputAccessor acc,
                                                                                     int quoteChar,
                                                                                     char separatorChar)
                                                                              throws IOException
          Current implementation is not as thorough as one used by other data formats like JSON. But it should work, for now, and can be improved as necessary.
          Throws:
          IOException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/LRUMap.html ================================================ LRUMap (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class LRUMap<K,V>

      • Field Detail

        • _maxEntries

          protected final int _maxEntries
      • Constructor Detail

        • LRUMap

          public LRUMap(int initialEntries,
                        int maxEntries)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/NumberInput.html ================================================ NumberInput (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberInput



    • public final class NumberInput
      extends Object
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        static String NASTY_SMALL_DOUBLE
        Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
      • Constructor Summary

        Constructors 
        Constructor and Description
        NumberInput() 
      • Field Detail

        • NASTY_SMALL_DOUBLE

          public static final String NASTY_SMALL_DOUBLE
          Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
          See Also:
          Constant Field Values
      • Constructor Detail

        • NumberInput

          public NumberInput()
      • Method Detail

        • parseInt

          public static final int parseInt(char[] digitChars,
                                           int offset,
                                           int len)
          Fast method for parsing integers that are known to fit into regular 32-bit signed int type. This means that length is between 1 and 9 digits (inclusive)

          Note: public to let unit tests call it

        • parseLong

          public static final long parseLong(char[] digitChars,
                                             int offset,
                                             int len)
        • inLongRange

          public static final boolean inLongRange(char[] digitChars,
                                                  int offset,
                                                  int len,
                                                  boolean negative)
          Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not. Note that input String must NOT contain leading minus sign (even if 'negative' is set to true).
          Parameters:
          negative - Whether original number had a minus sign (which is NOT passed to this method) or not

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/NumberOutput.html ================================================ NumberOutput (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberOutput



    • public final class NumberOutput
      extends Object
      Helper class for efficient writing of numeric values

      NOTE: modified from Jackson Core's similar functionality

      • Constructor Detail

        • NumberOutput

          public NumberOutput()
      • Method Detail

        • outputInt

          public static int outputInt(int value,
                                      char[] buffer,
                                      int offset)
          Returns:
          Offset within buffer after outputting int
        • outputLong

          public static int outputLong(long value,
                                       char[] buffer,
                                       int offset)
          Returns:
          Offset within buffer after outputting int
        • toString

          public static String toString(double value)
        • toString

          public static String toString(float value)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/TextBuffer.html ================================================ TextBuffer (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class TextBuffer



    • public final class TextBuffer
      extends Object
      Helper class for efficiently aggregating parsed and decoded textual content
      • Constructor Detail

        • TextBuffer

          public TextBuffer(com.fasterxml.jackson.core.util.BufferRecycler allocator)
      • Method Detail

        • releaseBuffers

          public void releaseBuffers()
        • reset

          public void reset()
        • resetWithString

          public void resetWithString(String value)
        • size

          public int size()
          Returns:
          Number of characters currently stored by this collector
        • getTextOffset

          public int getTextOffset()
        • hasTextAsCharacters

          public boolean hasTextAsCharacters()
        • getTextBuffer

          public char[] getTextBuffer()
        • contentsAsString

          public String contentsAsString()
        • contentsAsArray

          public char[] contentsAsArray()
        • looksLikeInt

          public boolean looksLikeInt()
        • ensureNotShared

          public void ensureNotShared()
          Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.
        • getCurrentSegment

          public char[] getCurrentSegment()
        • emptyAndGetCurrentSegment

          public final char[] emptyAndGetCurrentSegment()
        • getCurrentSegmentSize

          public int getCurrentSegmentSize()
        • finishAndReturn

          public String finishAndReturn(int lastSegmentEnd,
                                        boolean trimTrailingSpaces)
          Parameters:
          lastSegmentEnd - End offset in the currently active segment, could be 0 in the case of first character is delimiter or end-of-line
          trimTrailingSpaces - Whether trailing spaces should be trimmed or not
        • finishCurrentSegment

          public char[] finishCurrentSegment()

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose)
      • Method Detail

        • canModifyBuffer

          protected final boolean canModifyBuffer()
          Method that can be used to see if we can actually modify the underlying buffer. This is the case if we are managing the buffer, but not if it was just given to us.
        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException
        • reportInvalidInitial

          protected void reportInvalidInitial(int mask,
                                              int outputDecoded)
                                       throws IOException
          Throws:
          IOException
        • reportInvalidOther

          protected void reportInvalidOther(int mask,
                                            int outputDecoded,
                                            int errorPosition)
                                     throws IOException
          Throws:
          IOException
        • reportUnexpectedEOF

          protected void reportUnexpectedEOF(int gotBytes,
                                             int needed)
                                      throws IOException
          Throws:
          IOException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-CSV 2.10.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Writer

    • All Implemented Interfaces:
      Closeable, Flushable, Appendable, AutoCloseable


      public final class UTF8Writer
      extends Writer
      Efficient UTF-8 backed writer.

      Note: original implementation based on writer from Jackson core package; modified slightly, copied to reduce dependency to impl details.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.BooleanValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.DoubleValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.IntValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.LongValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.NullValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.RawValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.TextValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvDecoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvEncoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvIOContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvParserBootstrapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    No usage of com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/LRUMap.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.LRUMap (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.LRUMap

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberInput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberInput (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberOutput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/TextBuffer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.TextBuffer

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.10.0 API)

    com.fasterxml.jackson.dataformat.csv.impl

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.10.0 API)

    Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv.impl Class Hierarchy (Jackson-dataformat-CSV 2.10.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.10.0 API)

    com.fasterxml.jackson.dataformat.csv

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.10.0 API)

    Package com.fasterxml.jackson.dataformat.csv

    • Class Summary 
      Class Description
      CsvCharacterEscapes
      Character escapes for CSV.
      CsvFactory  
      CsvFactoryBuilder
      TSFBuilder implementation for constructing CsvFactory instances.
      CsvGenerator  
      CsvMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      CsvMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      CsvParser
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
      CsvSchema
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
      CsvSchema.Builder
      Class used for building CsvSchema instances.
      CsvSchema.Column
      Representation of info for a single column
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    • Enum Summary 
      Enum Description
      CsvGenerator.Feature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      CsvParser.Feature
      Enumeration that defines all togglable features for CSV parsers
      CsvSchema.ColumnType
      Enumeration that defines optional type indicators that can be passed with schema.
    • Exception Summary 
      Exception Description
      CsvMappingException
      Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv Class Hierarchy (Jackson-dataformat-CSV 2.10.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes (implements java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema (implements com.fasterxml.jackson.core.FormatSchema, java.lang.Iterable<T>, java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (implements java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.csv.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JsonProcessingException
              • com.fasterxml.jackson.databind.JsonMappingException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.10.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-CSV 2.10.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    • com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder 
      Modifier and Type Constant Field Value
      protected static final char CHAR_NULL 0
      protected static final int INT_0 48
      protected static final int INT_1 49
      protected static final int INT_2 50
      protected static final int INT_3 51
      protected static final int INT_4 52
      protected static final int INT_5 53
      protected static final int INT_6 54
      protected static final int INT_7 55
      protected static final int INT_8 56
      protected static final int INT_9 57
      protected static final int INT_DECIMAL_POINT 46
      protected static final int INT_e 101
      protected static final int INT_E 69
      protected static final int INT_MINUS 45
      protected static final int INT_PLUS 43
      protected static final int NR_BIGDECIMAL 16
      protected static final int NR_BIGINT 4
      protected static final int NR_DOUBLE 8
      protected static final int NR_INT 1
      protected static final int NR_LONG 2
      protected static final int NR_UNKNOWN 0
    • com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder 
      Modifier and Type Constant Field Value
      protected static final int MAX_QUOTE_CHECK 24
      protected static final int SHORT_WRITE 32
    • com.fasterxml.jackson.dataformat.csv.impl.NumberInput 
      Modifier and Type Constant Field Value
      public static final String NASTY_SMALL_DOUBLE "2.2250738585072012e-308"

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-CSV 2.10.0 API)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/help-doc.html ================================================ API Help (Jackson-dataformat-CSV 2.10.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/index-all.html ================================================ Index (Jackson-dataformat-CSV 2.10.0 API)
    A B C D E F G H I L M N O P Q R S T U V W _ 

    A

    addArrayColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addArrayColumn(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    addArrayColumn(String, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addBooleanColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(String, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<CsvSchema.Column>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<String>, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
    addNumberColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    allowsComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    append(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    appendColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendNull() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    B

    BooleanValue(boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    buffered(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(long) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedNull() - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedRaw(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class used for holding values for a while until output can proceed in expected order.
    BufferedValue() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue.BooleanValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.DoubleValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.IntValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.LongValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.NullValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.RawValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.TextValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Main factory method to use for constructing CsvFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    builder(CsvFactory) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    Builder(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    Builder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    Builder(CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    "Copy" constructor which creates builder that has settings of given source schema

    C

    canModifyBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method that can be used to see if we can actually modify the underlying buffer.
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CHAR_NULL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childArrayContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childObjectContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    clearColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    close(boolean, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    column(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for column at specified index (0-based); index having to be within
    column(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    column(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Optimized variant where a hint is given as to likely index of the column name.
    Column(int, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Deprecated.
    use variant where `arrayElementSep` is String
    Column(int, String, CsvSchema.ColumnType, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, int, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    columnName(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    com.fasterxml.jackson.dataformat.csv - package com.fasterxml.jackson.dataformat.csv
     
    com.fasterxml.jackson.dataformat.csv.impl - package com.fasterxml.jackson.dataformat.csv.impl
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified parser feature (check CsvParser.Feature for list of features)
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified generator feature (check CsvGenerator.Feature for list of features)
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
    constructError(String, Throwable) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    constructParser(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    contentsAsArray() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    contentsAsDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a BigDecimal.
    contentsAsDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a Double value.
    contentsAsString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    controlEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    controlQuoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    convertNumberToBigDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToBigInteger() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    This method assumes use of UTF-8 for encoding.
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    csvBuilder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Short-cut for:
    CsvCharacterEscapes - Class in com.fasterxml.jackson.dataformat.csv
    Character escapes for CSV.
    CsvDecoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
    CsvDecoder(CsvParser, IOContext, Reader, CsvSchema, TextBuffer, int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    CsvEncoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
    CsvEncoder(IOContext, int, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvEncoder(CsvEncoder, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvFactory - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvFactory() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Default constructor used to create factory instances.
    CsvFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Constructors used by CsvFactoryBuilder for instantiation.
    CsvFactoryBuilder - Class in com.fasterxml.jackson.dataformat.csv
    TSFBuilder implementation for constructing CsvFactory instances.
    CsvFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvFactoryBuilder(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvGenerator - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvGenerator(IOContext, int, int, ObjectCodec, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator(IOContext, int, int, ObjectCodec, CsvEncoder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV writers (if any: currently none)
    CsvIOContext - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    CsvIOContext(BufferRecycler, Object, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     
    CsvMapper - Class in com.fasterxml.jackson.dataformat.csv
    Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
    CsvMapper() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Copy-constructor, mostly used to support CsvMapper.copy().
    CsvMapper.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
    CsvMappingException - Exception in com.fasterxml.jackson.dataformat.csv
    Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.
    CsvMappingException(CsvParser, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    CsvMappingException(CsvGenerator, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    CsvParser - Class in com.fasterxml.jackson.dataformat.csv
    JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
    CsvParser(CsvIOContext, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    CsvParser.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV parsers
    CsvParserBootstrapper - Class in com.fasterxml.jackson.dataformat.csv.impl
    This class is used to determine the encoding of byte stream that is to contain CSV document.
    CsvParserBootstrapper(IOContext, ObjectCodec, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvParserBootstrapper(IOContext, ObjectCodec, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvSchema - Class in com.fasterxml.jackson.dataformat.csv
    Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], int, char[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], Map<String, CsvSchema.Column>, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using withXxx() methods.
    CsvSchema(CsvSchema, CsvSchema.Column[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using sortedBy() methods.
    CsvSchema(CsvSchema, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants for on/off features
    CsvSchema.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Class used for building CsvSchema instances.
    CsvSchema.Column - Class in com.fasterxml.jackson.dataformat.csv
    Representation of info for a single column
    CsvSchema.ColumnType - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines optional type indicators that can be passed with schema.
    csvTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     

    D

    DEFAULT_ANY_PROPERTY_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
    DEFAULT_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for array elements within a column value is semicolon.
    DEFAULT_COLUMN_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for column values is comma (hence "Comma-Separated Values")
    DEFAULT_ENCODING_FEATURES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_ESCAPE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, no escape character is used -- this is denoted by int value that does not map to a valid character
    DEFAULT_LF - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    DEFAULT_LINEFEED - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_NULL_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls).
    DEFAULT_QUOTE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified parser features (check CsvParser.Feature for list of features)
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified generator feature (check CsvGenerator.Feature for list of features)
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    disable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
    disableArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    disableElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    disableEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying that no escape character is to be used with CSV documents this schema defines.
    disableQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    DoubleValue(double) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     

    E

    emptyAndGetCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for creating a "default" CSV schema instance, with following settings: Does NOT use header line Uses double quotes ('"') for quoting of field values (if necessary) Uses comma (',') as the field separator Uses Unix linefeed ('\n') as row separator Does NOT use any escape characters Does NOT have any columns defined
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified parser feature (check CsvParser.Feature for list of features)
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified generator features (check CsvGenerator.Feature for list of features)
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    enable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    ENCODING_FEATURE_ALLOW_COMMENTS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_REORDER_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_SKIP_FIRST_DATA_ROW - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_STRICT_HEADERS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_USE_HEADER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    endRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    ensureLoaded(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    ensureNotShared() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.

    F

    FALSE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    finishAndReturn(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    flush(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    FORMAT_NAME_CSV - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Name used to identify CSV format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    formatParserFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(CsvParser, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    from(CsvGenerator, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    fromCsvFeatures(int) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    G

    getAnyPropertyName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCharacterEscapes() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getColumnDesc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method for getting description of column definitions in developer-readable form
    getColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    getColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getCurrentColumn() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentSegmentSize() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getEscapeCodesForAscii() - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getEscapeSequence(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Overridden with more specific type, since factory we have is always of type CsvFactory
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getLineSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNextWithName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Access that returns same as CsvSchema.Column.getNext() iff name of that column is same as given name
    getNullValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNullValueOrEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Same as CsvSchema.getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
    getNullValueString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getSchema() - Method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTokenCharacterOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenColumnNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLineNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    H

    hasArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    hasColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).
    hasCSVFormat(InputAccessor, int, char) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current implementation is not as thorough as one used by other data formats like JSON.
    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    hasMoreInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that can be called to see if there is at least one more character to be parsed.
    hasName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    hasTextAsCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    HEX_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    I

    inLongRange(char[], int, int, boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not.
    INT_0 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_1 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_2 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_3 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_4 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_5 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_6 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_7 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_8 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_9 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_DECIMAL_POINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_e - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_E - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_MINUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_PLUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    IntValue(int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Checked whether specified parser feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Check whether specified generator feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for checking whether specified CSV CsvParser.Feature is enabled.
    isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
    iterator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    L

    loadMore() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    LongValue(long) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    looksLikeInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    LRUMap<K,V> - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper for simple bounded LRU maps used for reusing lookup values.
    LRUMap(int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     

    M

    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    MAX_QUOTE_CHECK - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    N

    NASTY_SMALL_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
    nextColumnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextFieldName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextNumber() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextNumberOrString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
    nextStringOrLiteral() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextTextValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    NO_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Marker for the case where no array element separator is used
    NO_BUFFERED - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    NO_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    NO_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    noEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    NR_BIGDECIMAL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_BIGINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_INT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_UNKNOWN - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NumberInput - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    NumberInput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    NumberOutput - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficient writing of numeric values
    NumberOutput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     

    O

    outputInt(int, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    outputLong(long, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.csv
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    parseDouble(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    parseInt(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Fast method for parsing integers that are known to fit into regular 32-bit signed int type.
    parseLong(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    PLACEHOLDER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    Q

    quoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    R

    RawValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    read() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readResolve() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing Builder that can be used to create modified schema.
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    removeArrayElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    removeEldestEntry(Map.Entry<K, V>) - Method in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    renameColumn(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reordersColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    replaceColumn(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportDeferredInvalid() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidInitial(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportInvalidOther(int, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportOverflowInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportOverflowLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedEOF(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedNumberChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    reset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    resetWithString(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     

    S

    schema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    schemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    schemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaWithHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    setAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
    setAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(int, char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate array element values.
    setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate column values.
    setColumnType(int, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional escaping of characters in quoted String values.
    setLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setLineSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setOutputEscapes(int[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    setQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional quoting of values.
    setReorderColumns(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Use in combination with setUseHeader.
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    setSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
    setStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for finding out how many columns this schema defines.
    size() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    skipFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    skipLeadingComments() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    skipLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to blindly skip a single line of content, without considering aspects like quoting or escaping.
    skipsFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    sortedBy(String...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument.
    sortedBy(Comparator<String>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
    startNewLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to handle details of starting a new line, which may include skipping a linefeed.
    STATE_DOC_END - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
    STATE_DOC_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Initial state before anything is read from document.
    STATE_IN_ARRAY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
    STATE_MISSING_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_MISSING_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose `null` value token as a value for "missing" column; see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_NAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which value matching field name will be returned.
    STATE_NEXT_ENTRY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
    STATE_RECORD_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
    STATE_SKIP_EXTRA_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
    STATE_UNNAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
    std - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    strictHeaders() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    T

    TextBuffer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficiently aggregating parsed and decoded textual content
    TextBuffer(BufferRecycler) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    TextValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    toString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    toString(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    toString(float) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    TRUE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    typedSchemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    typedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    useHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    usesEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.csv.impl
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(IOContext, InputStream, boolean, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Efficient UTF-8 backed writer.
    UTF8Writer(IOContext, OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns an array containing the constants of this enum type, in the order they are declared.
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     

    W

    withAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate whether "hash comments" are allowed for document described by this schema.
    withAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnReordering(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the column reordering flag
    withColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`.
    withComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" ARE allowed for document described by this schema.
    withElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    withEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
    withLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" are NOT allowed for document described by this schema.
    withoutEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
    withoutQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    withSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the strict headers flag
    withType(CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    write(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeColumnName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNonEscaped(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNull(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeOmittedField(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeStringField(String, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    _

    _addSchemaProperties(CsvSchema.Builder, AnnotationIntrospector, boolean, JavaType, NameTransformer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _addToArray(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _addToArray(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _allowComments - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _append(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _arrayContents - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Accumulated contents of an array cell, if any
    _arrayElements - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Additional counter that indicates number of value entries in the array.
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _arrayValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Contents of the cell, to be split into distinct array values.
    _arrayValueStart - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Pointer to the first character of the next array value to return.
    _autoCloseInput - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _bigEndian - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We will hold on to decoded binary data, for duration of current event, so that multiple calls to CsvParser.getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
    _buffer(int, BufferedValue) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _buffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    And if output comes in shuffled order we will need to do bit of ordering.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _bytesPerChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _cfgAlwaysQuoteEmptyStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgAlwaysQuoteStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgColumnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgControlCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeControlCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeQuoteCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgIncludeMissingTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMaxQuoteCheckChars - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMinSafeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
    _cfgNullValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgOptimalQuoting - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
    _cfgQuoteCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgQuoteCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _characterEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _charsWritten - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Let's keep track of how many bytes have been output, may prove useful when debugging.
    _checkIndex(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether parser is closed or not.
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _codec - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Number of columns defined by schema.
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _columnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _columnIndex - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Index of the column we are exposing
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Column definitions, needed for optional header and/or mapping of field names to column positions.
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _columnsByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _context - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _createContext(Object, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(IOContext, Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _csvGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    String value for the current column, if accessed.
    _currInputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
    _currInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current row location of current point in input buffer, starting from 1, if available.
    _currInputRowStart - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current index of the first character of the current row in input buffer.
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _determineType(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _encodingFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Bit-flag for general-purpose on/off features.
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _feature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _features - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Bitflag for general-purpose on/off features.
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvGenerator.Features enabled, as bitmask.
    _formatParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvParser.Features enabled, as bitmask.
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _getCharDesc(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _handleArrayValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleExtraColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when an extraneous column value is found.
    _handleFirstLine - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag that indicates that we need to write header line, if one is needed.
    _handleFirstLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _handleLF() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _handleMissingColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when end of row occurs before finding values for all schema-specified columns.
    _handleMissingName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleMissingValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNextEntry() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleObjectRowEnd() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called to handle details of state update when end of logical record occurs.
    _handleRecordStart() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleStartDoc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to handle details of initializing things to return the very first token.
    _handleUnnamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _in - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Index of character after last available one in the buffer.
    _inputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Pointer to next available character in buffer
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input stream that can be used for reading more content, if one in use.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    I/O context for this reader.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _lastBuffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of the last buffered value
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _maxEntries - Variable in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    _maxSpecialChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Maximum of quote character, linefeeds (\r and \n), escape character.
    _mayNeedQuotes(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
    _needsQuotingLoose(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: final since checking is not expected to be changed here; override calling method (_mayNeedQuotes) instead, if necessary.
    _needsQuotingLoose(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _nextChar() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextColumnByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Index of column that we will be getting next, based on field name call that was made.
    _nextColumnToWrite - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of column we expect to write next
    _nextQuotedString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextUnquotedString(char[], int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nonPojoType(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _nullValueAsString - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _numberBigDecimal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberBigInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberDouble - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberLong - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numTypesValid - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Bitfield that indicates which numeric representations have been calculated for the current type
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Intermediate buffer in which contents are buffered before being written using CsvEncoder._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Offset to index after the last valid index in CsvEncoder._outputBuffer.
    _outputEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Currently active set of output escape code definitions (whether and how to escape or not).
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Pointer to the next available char position in CsvEncoder._outputBuffer
    _owner - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Unfortunate back reference, needed for error reporting
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that will parse actual numeric value out of a syntactically valid number value.
    _parsingContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Information about parser context, context in which the next token is to be parsed (root, array, object).
    _pendingLF - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Thing that actually reads the CSV content
    _readHeaderLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to process the expected header line
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _reportCsvMappingError(String, Object...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportError(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method for reporting low-level decoding (parsing) problems
    _reportMappingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportParsingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _reportUnexpectedCsvChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Definition of columns being written, if available.
    _schema - Variable in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Definition of columns being read.
    _schemaFor(JavaType, LRUMap<JavaType, CsvSchema>, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _separatorChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipCommentLines() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipLeadingSpace() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipUntilEndOfLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _skipValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag set when property to write is unknown, and the matching value is to be skipped quietly.
    _skipWithin - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    When skipping output (for "unknown" output), outermost write context where skipping should occur
    _startArray(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _state - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Current logical state of the parser; one of STATE_ constants.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _tokenInputCol - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
    _tokenInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input row on which current token starts, 1-based
    _tokenInputTotal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Total number of bytes/characters read before start of current token.
    _trimSpaces - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
    _typedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
    _unescape() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _untypedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
    _validArrayElementSeparator(String) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _withFeature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _writeQuoted(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuoted(String, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    A B C D E F G H I L M N O P Q R S T U V W _ 

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/index.html ================================================ Jackson-dataformat-CSV 2.10.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/csv/2.10/overview-frame.html ================================================ Overview List (Jackson-dataformat-CSV 2.10.0 API)

     

    ================================================ FILE: docs/javadoc/csv/2.10/overview-summary.html ================================================ Overview (Jackson-dataformat-CSV 2.10.0 API)

    Jackson-dataformat-CSV 2.10.0 API

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-CSV 2.10.0 API)

    Hierarchy For All Packages

    Package Hierarchies:

    Class Hierarchy

    Enum Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/package-list ================================================ com.fasterxml.jackson.dataformat.csv com.fasterxml.jackson.dataformat.csv.impl ================================================ FILE: docs/javadoc/csv/2.10/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/csv/2.10/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-CSV 2.10.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.csv

      • Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes extends com.fasterxml.jackson.core.io.CharacterEscapes implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • escapes

            int[] escapes
      • Class com.fasterxml.jackson.dataformat.csv.CsvFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
        • Serialization Methods

          • readResolve

            protected Object readResolve()
            Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
        • Serialized Fields

          • _schema

            CsvSchema _schema
          • _csvParserFeatures

            int _csvParserFeatures
          • _csvGeneratorFeatures

            int _csvGeneratorFeatures
      • Class com.fasterxml.jackson.dataformat.csv.CsvMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _untypedSchemas

            LRUMap<K,V> _untypedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
          • _typedSchemas

            LRUMap<K,V> _typedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Class com.fasterxml.jackson.dataformat.csv.CsvMappingException extends com.fasterxml.jackson.databind.JsonMappingException implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _columns

            CsvSchema.Column[] _columns
            Column definitions, needed for optional header and/or mapping of field names to column positions.
          • _columnsByName

            Map<K,V> _columnsByName
          • _features

            int _features
            Bitflag for general-purpose on/off features.
            Since:
            2.5
          • _columnSeparator

            char _columnSeparator
          • _arrayElementSeparator

            String _arrayElementSeparator
          • _quoteChar

            int _quoteChar
          • _escapeChar

            int _escapeChar
          • _lineSeparator

            char[] _lineSeparator
          • _nullValue

            char[] _nullValue
            Since:
            2.5
          • _anyPropertyName

            String _anyPropertyName
            If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
            Since:
            2.7
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _name

            String _name
          • _index

            int _index
          • _type

            CsvSchema.ColumnType _type
          • _arrayElementSeparator

            String _arrayElementSeparator
            NOTE: type changed from `char` to `java.lang.String` in 2.7
            Since:
            2.5
          • _next

            CsvSchema.Column _next
            Link to the next column within schema, if one exists; null for the last column.
            Since:
            2.6
    • Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.10/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/csv/2.11/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-CSV 2.11.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.11/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-CSV 2.11.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvCharacterEscapes.html ================================================ CsvCharacterEscapes (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvCharacterEscapes

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes
        • com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
    • All Implemented Interfaces:
      Serializable


      public final class CsvCharacterEscapes
      extends com.fasterxml.jackson.core.io.CharacterEscapes
      Character escapes for CSV. There are multiple types of escapes.
      • no escapes - return all characters the same way they are defined
      • quote escape - return all characters except the quote character which is escaped (backwards compat)
      • control escape - same as CharTypes.get7BitOutputEscapes(), escape all control characters
      • control and quote escape - do not double up quote, escape control characters and quote.
      See Also:
      Serialized Form
      • Method Detail

        • controlQuoteEscapesInstance

          public static CsvCharacterEscapes controlQuoteEscapesInstance()
        • getEscapeSequence

          public com.fasterxml.jackson.core.SerializableString getEscapeSequence(int ch)
          Specified by:
          getEscapeSequence in class com.fasterxml.jackson.core.io.CharacterEscapes
        • getEscapeCodesForAscii

          public int[] getEscapeCodesForAscii()
          Specified by:
          getEscapeCodesForAscii in class com.fasterxml.jackson.core.io.CharacterEscapes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvFactory.html ================================================ CsvFactory (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.csv.CsvFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_LF

          protected static final char[] DEFAULT_LF
        • DEFAULT_SCHEMA

          protected static final CsvSchema DEFAULT_SCHEMA
        • _csvParserFeatures

          protected int _csvParserFeatures
        • _csvGeneratorFeatures

          protected int _csvGeneratorFeatures
      • Constructor Detail

        • CsvFactory

          public CsvFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • CsvFactory

          public CsvFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • CsvFactory

          protected CsvFactory(CsvFactory src,
                               com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • rebuild

          public CsvFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static CsvFactoryBuilder builder()
          Main factory method to use for constructing CsvFactory instances with different configuration.
        • copy

          public CsvFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public CsvParser createParser(byte[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(byte[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out)
                                       throws IOException
          This method assumes use of UTF-8 for encoding.
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(File f,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(InputStream in,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(byte[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(Reader r,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(char[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt,
                                            boolean recyclable)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected CsvGenerator _createGenerator(Writer out,
                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                           throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected CsvGenerator _createUTF8Generator(OutputStream out,
                                                      com.fasterxml.jackson.core.io.IOContext ctxt)
                                               throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createContext

          protected com.fasterxml.jackson.core.io.IOContext _createContext(Object srcRef,
                                                                           boolean resourceManaged)
          Overrides:
          _createContext in class com.fasterxml.jackson.core.JsonFactory

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvFactoryBuilder.html ================================================ CsvFactoryBuilder (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvGenerator.Feature.html ================================================ CsvGenerator.Feature (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvGenerator.Feature

      • Enum Constant Detail

        • STRICT_CHECK_FOR_QUOTING

          public static final CsvGenerator.Feature STRICT_CHECK_FOR_QUOTING
          Feature that determines how much work is done before determining that a column value requires quoting: when set as true, full check is made to only use quoting when it is strictly necessary; but when false, a faster but more conservative check is made, and possibly quoting is used for values that might not need it. Trade-offs is basically between optimal/minimal quoting (true), and faster handling (false). Faster check involves only checking first N characters of value, as well as possible looser checks.

          Note, however, that regardless setting, all values that need to be quoted will be: it is just that when set to false, other values may also be quoted (to avoid having to do more expensive checks).

          Default value is false for "loose" (approximate, conservative) checking.

          Since:
          2.4
        • OMIT_MISSING_TAIL_COLUMNS

          public static final CsvGenerator.Feature OMIT_MISSING_TAIL_COLUMNS
          Feature that determines whether columns without matching value may be omitted, when they are the last values of the row. If true, values and separators between values may be omitted, to slightly reduce length of the row; if false, separators need to stay in place and values are indicated by empty Strings.
          Since:
          2.4
        • ALWAYS_QUOTE_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_STRINGS
          Feature that determines whether values written as Strings (from java.lang.String valued POJO properties) should be forced to be quoted, regardless of whether they actually need this. Note that this feature has precedence over STRICT_CHECK_FOR_QUOTING, when both would be applicable.
          Since:
          2.5
        • ALWAYS_QUOTE_EMPTY_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_EMPTY_STRINGS
          Feature that determines whether values written as empty Strings (from java.lang.String valued POJO properties) should be forced to be quoted.
          Since:
          2.9
        • ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR
          Feature that determines whether quote characters within quoted String values are escaped using configured escape character, instead of being "doubled up" (that is: a quote character is written twice in a row).

          Default value is false so that quotes are doubled as necessary, not escaped.

          Since:
          2.9.3
        • ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR
          Feature that determines whether control characters (non-printable) are escaped using the configured escape character. This feature allows LF and CR characters to be output as
          \n
          and
          \r
          instead of being echoed out. This is a compatibility feature for some parsers that can not read such output back in.

          Default value is false so that control characters are echoed out (backwards compatible).

          Since:
          2.9.9
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static CsvGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvGenerator.Feature c : CsvGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvGenerator.html ================================================ CsvGenerator (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.csv.CsvGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class CsvGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Field Detail

        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        • _schema

          protected CsvSchema _schema
          Definition of columns being written, if available.
        • _tokenWriteContext

          protected SimpleTokenWriteContext _tokenWriteContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
          Since:
          2.11
        • _characterEscapes

          protected com.fasterxml.jackson.core.io.CharacterEscapes _characterEscapes
        • _handleFirstLine

          protected boolean _handleFirstLine
          Flag that indicates that we need to write header line, if one is needed. Used because schema may be specified after instance is constructed.
        • _nextColumnByName

          protected int _nextColumnByName
          Index of column that we will be getting next, based on field name call that was made.
        • _skipValue

          protected boolean _skipValue
          Flag set when property to write is unknown, and the matching value is to be skipped quietly.
          Since:
          2.5
        • _arraySeparator

          protected String _arraySeparator
          Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
          Since:
          2.5
        • _arrayContents

          protected StringBuilder _arrayContents
          Accumulated contents of an array cell, if any
        • _arrayElements

          protected int _arrayElements
          Additional counter that indicates number of value entries in the array. Needed because `null` entries do not add content, but need to be separated by array cell separator
          Since:
          2.7
        • _skipWithin

          protected SimpleTokenWriteContext _skipWithin
          When skipping output (for "unknown" output), outermost write context where skipping should occur
          Since:
          2.7
      • Constructor Detail

        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              Writer out,
                              CsvSchema schema)
          Since:
          2.4
        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              CsvEncoder csvWriter)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public CsvGenerator useDefaultPrettyPrinter()
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public CsvGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public SimpleTokenWriteContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • setCharacterEscapes

          public com.fasterxml.jackson.core.JsonGenerator setCharacterEscapes(com.fasterxml.jackson.core.io.CharacterEscapes esc)
          Overrides:
          setCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • getCharacterEscapes

          public com.fasterxml.jackson.core.io.CharacterEscapes getCharacterEscapes()
          Overrides:
          getCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeOmittedField

          public void writeOmittedField(String fieldName)
                                 throws IOException
          Overrides:
          writeOmittedField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _reportMappingError

          protected void _reportMappingError(String msg)
                                      throws com.fasterxml.jackson.core.JsonProcessingException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
          Since:
          2.7
        • _columnIndex

          protected final int _columnIndex()
        • finishRow

          protected void finishRow()
                            throws IOException
          Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
          Throws:
          IOException
        • _addToArray

          protected void _addToArray(String value)
        • _addToArray

          protected void _addToArray(char[] value)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvMapper.Builder.html ================================================ CsvMapper.Builder (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper.Builder

    • Enclosing class:
      CsvMapper


      public static class CsvMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<CsvMapper,CsvMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      Since:
      2.10

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvMapper.html ================================================ CsvMapper (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _addSchemaProperties(CsvSchema.Builder builder, com.fasterxml.jackson.databind.AnnotationIntrospector intr, boolean typed, com.fasterxml.jackson.databind.JavaType pojoType, com.fasterxml.jackson.databind.util.NameTransformer unwrapper, Class<?> view) 
        protected CsvSchema.ColumnType _determineType(Class<?> propType) 
        protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t) 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas, boolean typed)
        Deprecated. 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas, boolean typed, Class<?> view) 
        static CsvMapper.Builder builder() 
        static CsvMapper.Builder builder(CsvFactory streamFactory) 
        CsvMapper configure(CsvGenerator.Feature f, boolean state) 
        CsvMapper configure(CsvParser.Feature f, boolean state) 
        CsvMapper copy() 
        static CsvMapper.Builder csvBuilder()
        Short-cut for:
        CsvMapper disable(CsvGenerator.Feature f) 
        CsvMapper disable(CsvParser.Feature f) 
        CsvMapper enable(CsvGenerator.Feature f) 
        CsvMapper enable(CsvParser.Feature f) 
        CsvFactory getFactory()
        Overridden with more specific type, since factory we have is always of type CsvFactory
        com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        CsvSchema schema()
        Convenience method that is same as
        CsvSchema schemaFor(Class<?> pojoType) 
        CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema schemaForWithView(Class<?> pojoType, Class<?> view) 
        CsvSchema schemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType, Class<?> view) 
        CsvSchema schemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef, Class<?> view) 
        CsvSchema schemaWithHeader()
        Convenience method that is same as
        CsvSchema typedSchemaFor(Class<?> pojoType) 
        CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema typedSchemaForWithView(Class<?> pojoType, Class<?> view) 
        CsvSchema typedSchemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType, Class<?> view) 
        CsvSchema typedSchemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef, Class<?> view) 
        com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
      • Field Detail

        • _untypedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • _typedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Constructor Detail

        • CsvMapper

          public CsvMapper()
        • CsvMapper

          protected CsvMapper(CsvMapper src)
          Copy-constructor, mostly used to support copy().

          NOTE: ObjectMapper had this method since 2.1.

          Since:
          2.5
      • Method Detail

        • csvBuilder

          public static CsvMapper.Builder csvBuilder()
          Short-cut for:
             return builder(new CsvFactory());
          
          Since:
          2.10
        • copy

          public CsvMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
          Since:
          2.5
        • getFactory

          public CsvFactory getFactory()
          Overridden with more specific type, since factory we have is always of type CsvFactory
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(schemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no CSV types can be mapped to arrays or Collections)
        • readerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • writerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(schemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no root-level CSV types can be mapped to arrays or Collections)
        • writerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • schemaWithHeader

          public CsvSchema schemaWithHeader()
          Convenience method that is same as
             CsvSchema.emptySchema().withHeader();
          
          and returns a CsvSchema instance that uses default configuration with additional setting that the first content line contains intended column names.
          Since:
          2.5
        • schema

          public CsvSchema schema()
          Convenience method that is same as
             CsvSchema.emptySchema()
          
          that is, returns an "empty" Schema; one with default values and no column definitions.
          Since:
          2.5
        • schemaFor

          public CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition will not be strictly typed (that is, all columns are just defined to be exposed as String tokens).
        • schemaForWithView

          public CsvSchema schemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType,
                                             Class<?> view)
        • schemaForWithView

          public final CsvSchema schemaForWithView(Class<?> pojoType,
                                                   Class<?> view)
        • schemaFor

          public final CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • schemaForWithView

          public final CsvSchema schemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef,
                                                   Class<?> view)
        • typedSchemaFor

          public CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition WILL be strictly typed: that is, code will try to determine type limitations which may make parsing more efficient (especially for numeric types like java.lang.Integer).
        • typedSchemaForWithView

          public CsvSchema typedSchemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType,
                                                  Class<?> view)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(Class<?> pojoType)
        • typedSchemaForWithView

          public final CsvSchema typedSchemaForWithView(Class<?> pojoType,
                                                        Class<?> view)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • typedSchemaForWithView

          public final CsvSchema typedSchemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef,
                                                        Class<?> view)
        • _schemaFor

          protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType,
                                         LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas,
                                         boolean typed,
                                         Class<?> view)
        • _schemaFor

          @Deprecated
          protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType,
                                                     LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas,
                                                     boolean typed)
          Deprecated. 
        • _nonPojoType

          protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t)
        • _addSchemaProperties

          protected void _addSchemaProperties(CsvSchema.Builder builder,
                                              com.fasterxml.jackson.databind.AnnotationIntrospector intr,
                                              boolean typed,
                                              com.fasterxml.jackson.databind.JavaType pojoType,
                                              com.fasterxml.jackson.databind.util.NameTransformer unwrapper,
                                              Class<?> view)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvMappingException.html ================================================ CsvMappingException (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMappingException

    • All Implemented Interfaces:
      Serializable


      public class CsvMappingException
      extends com.fasterxml.jackson.databind.JsonMappingException
      Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.
      Since:
      2.9
      See Also:
      Serialized Form

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvParser.Feature.html ================================================ CsvParser.Feature (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvParser.Feature

      • Enum Constant Detail

        • TRIM_SPACES

          public static final CsvParser.Feature TRIM_SPACES
          Feature determines whether spaces around separator characters (commas) are to be automatically trimmed before being reported or not. Note that this does NOT force trimming of possible white space from within double-quoted values, but only those surrounding unquoted values (white space outside of double-quotes is never included regardless of trimming).

          Default value is false, as per RFC-4180.

        • WRAP_AS_ARRAY

          public static final CsvParser.Feature WRAP_AS_ARRAY
          Feature that determines how stream of records (usually CSV lines, but sometimes multiple lines when linefeeds are included in quoted values) is exposed: either as a sequence of Objects (false), or as an Array of Objects (true). Using stream of Objects is convenient when using ObjectMapper.readValues(...) and array of Objects convenient when binding to Lists or arrays of values.

          Default value is false, meaning that by default a CSV document is exposed as a sequence of root-level Object entries.

        • IGNORE_TRAILING_UNMAPPABLE

          public static final CsvParser.Feature IGNORE_TRAILING_UNMAPPABLE
          Feature that allows ignoring of unmappable "extra" columns; that is, values for columns that appear after columns for which types are defined. When disabled, an exception is thrown for such column values, but if enabled, they are silently ignored.

          Feature is disabled by default.

          Since:
          2.7
        • SKIP_EMPTY_LINES

          public static final CsvParser.Feature SKIP_EMPTY_LINES
          Feature that allows skipping input lines that are completely empty or blank (composed only of whitespace), instead of being decoded as lines of just a single column with an empty/blank String value (or, of being decoded as lines of just a single column with empty String value (or, depending on binding, `null`).

          Feature is disabled by default.

          Since:
          2.10
        • ALLOW_TRAILING_COMMA

          public static final CsvParser.Feature ALLOW_TRAILING_COMMA
          Feature that allows there to be a trailing single extraneous data column that is empty. When this feature is disabled, any extraneous column, regardless of content will cause an exception to be thrown. Disabling this feature is only useful when IGNORE_TRAILING_UNMAPPABLE is also disabled.
        • ALLOW_COMMENTS

          public static final CsvParser.Feature ALLOW_COMMENTS
          Feature that allows accepting "hash comments" by default, similar to CsvSchema.withAllowComments(boolean). If enabled, such comments are by default allowed on all columns of all documents.
          Since:
          2.10
        • FAIL_ON_MISSING_COLUMNS

          public static final CsvParser.Feature FAIL_ON_MISSING_COLUMNS
          Feature that allows failing (with a CsvMappingException) in cases where number of column values encountered is less than number of columns declared in active schema ("missing columns").

          Note that this feature has precedence over INSERT_NULLS_FOR_MISSING_COLUMNS

          Feature is disabled by default.

          Since:
          2.9
        • INSERT_NULLS_FOR_MISSING_COLUMNS

          public static final CsvParser.Feature INSERT_NULLS_FOR_MISSING_COLUMNS
          Feature that allows "inserting" virtual key / `null` value pairs in case a row contains fewer columns than declared by configured schema. This typically has the effect of forcing an explicit `null` assigment (or corresponding "null value", if so configured) at databinding level. If disabled, no extra work is done and values for "missing" columns are not exposed as part of the token stream.

          Note that this feature is only considered if FAIL_ON_MISSING_COLUMNS is disabled.

          Feature is disabled by default.

          Since:
          2.9
        • EMPTY_STRING_AS_NULL

          public static final CsvParser.Feature EMPTY_STRING_AS_NULL
          Feature that enables coercing an empty String to `null` Feature is disabled by default
      • Method Detail

        • values

          public static CsvParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvParser.Feature c : CsvParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvParser.html ================================================ CsvParser (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class CsvParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.

      Implementation is based on a state-machine that pulls information using CsvDecoder.

      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvParser.Feature
        Enumeration that defines all togglable features for CSV parsers
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _arraySeparator 
        protected String _arrayValue
        Contents of the cell, to be split into distinct array values.
        protected int _arrayValueStart
        Pointer to the first character of the next array value to return.
        protected byte[] _binaryValue
        We will hold on to decoded binary data, for duration of current event, so that multiple calls to getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected int _columnCount
        Number of columns defined by schema.
        protected int _columnIndex
        Index of the column we are exposing
        protected String _currentName
        Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        protected String _currentValue
        String value for the current column, if accessed.
        protected int _formatFeatures 
        protected String _nullValue 
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
        Information about parser context, context in which the next token is to be parsed (root, array, object).
        protected CsvDecoder _reader
        Thing that actually reads the CSV content
        protected CsvSchema _schema
        Definition of columns being read.
        protected int _state
        Current logical state of the parser; one of STATE_ constants.
        protected TextBuffer _textBuffer
        Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        protected static int STATE_DOC_END
        State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
        protected static int STATE_DOC_START
        Initial state before anything is read from document.
        protected static int STATE_IN_ARRAY
        State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
        protected static int STATE_MISSING_NAME
        State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_MISSING_VALUE
        State in which we should expose `null` value token as a value for "missing" column; see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_NAMED_VALUE
        State in which value matching field name will be returned.
        protected static int STATE_NEXT_ENTRY
        State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
        protected static int STATE_RECORD_START
        State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
        protected static int STATE_SKIP_EXTRA_COLUMNS
        State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
        protected static int STATE_UNNAMED_VALUE
        State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvParser(CsvIOContext ctxt, int stdFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Field Detail

        • STATE_DOC_START

          protected static final int STATE_DOC_START
          Initial state before anything is read from document.
          See Also:
          Constant Field Values
        • STATE_RECORD_START

          protected static final int STATE_RECORD_START
          State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
          See Also:
          Constant Field Values
        • STATE_NEXT_ENTRY

          protected static final int STATE_NEXT_ENTRY
          State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
          See Also:
          Constant Field Values
        • STATE_NAMED_VALUE

          protected static final int STATE_NAMED_VALUE
          State in which value matching field name will be returned.
          See Also:
          Constant Field Values
        • STATE_UNNAMED_VALUE

          protected static final int STATE_UNNAMED_VALUE
          State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
          See Also:
          Constant Field Values
        • STATE_IN_ARRAY

          protected static final int STATE_IN_ARRAY
          State in which a column value has been determined to be of an array type, and will need to be split into multiple values. This can currently only occur for named values.
          Since:
          2.5
          See Also:
          Constant Field Values
        • STATE_SKIP_EXTRA_COLUMNS

          protected static final int STATE_SKIP_EXTRA_COLUMNS
          State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
          Since:
          2.6
          See Also:
          Constant Field Values
        • STATE_DOC_END

          protected static final int STATE_DOC_END
          State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping. This step will loop, returning series of nulls if nextToken() is called multiple times.
          See Also:
          Constant Field Values
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _schema

          protected CsvSchema _schema
          Definition of columns being read. Initialized to "empty" instance, which has default configuration settings.
        • _columnCount

          protected int _columnCount
          Number of columns defined by schema.
        • _parsingContext

          protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
          Information about parser context, context in which the next token is to be parsed (root, array, object).
        • _currentName

          protected String _currentName
          Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        • _currentValue

          protected String _currentValue
          String value for the current column, if accessed.
        • _columnIndex

          protected int _columnIndex
          Index of the column we are exposing
        • _state

          protected int _state
          Current logical state of the parser; one of STATE_ constants.
        • _arrayValueStart

          protected int _arrayValueStart
          Pointer to the first character of the next array value to return.
        • _arrayValue

          protected String _arrayValue
          Contents of the cell, to be split into distinct array values.
        • _arraySeparator

          protected String _arraySeparator
        • _nullValue

          protected String _nullValue
        • _reader

          protected final CsvDecoder _reader
          Thing that actually reads the CSV content
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
      • Constructor Detail

        • CsvParser

          public CsvParser(CsvIOContext ctxt,
                           int stdFeatures,
                           int csvFeatures,
                           com.fasterxml.jackson.core.ObjectCodec codec,
                           Reader reader)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • releaseBuffered

          public int releaseBuffered(Writer out)
                              throws IOException
          Overrides:
          releaseBuffered in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • enable

          public com.fasterxml.jackson.core.JsonParser enable(CsvParser.Feature f)
          Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
        • disable

          public com.fasterxml.jackson.core.JsonParser disable(CsvParser.Feature f)
          Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(CsvParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
        • getSchema

          public CsvSchema getSchema()
          Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • isExpectedStartArrayToken

          public boolean isExpectedStartArrayToken()
          We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
          Overrides:
          isExpectedStartArrayToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextFieldName

          public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString str)
                                throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextFieldName

          public String nextFieldName()
                               throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextTextValue

          public String nextTextValue()
                               throws IOException
          Overrides:
          nextTextValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _readHeaderLine

          protected void _readHeaderLine()
                                  throws IOException
          Method called to process the expected header line
          Throws:
          IOException
        • _handleStartDoc

          protected com.fasterxml.jackson.core.JsonToken _handleStartDoc()
                                                                  throws IOException
          Method called to handle details of initializing things to return the very first token.
          Throws:
          IOException
        • _handleRecordStart

          protected com.fasterxml.jackson.core.JsonToken _handleRecordStart()
                                                                     throws IOException
          Throws:
          IOException
        • _handleNextEntry

          protected com.fasterxml.jackson.core.JsonToken _handleNextEntry()
                                                                   throws IOException
          Throws:
          IOException
        • _handleNamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleNamedValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleUnnamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleUnnamedValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleArrayValue

          protected com.fasterxml.jackson.core.JsonToken _handleArrayValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleExtraColumn

          protected com.fasterxml.jackson.core.JsonToken _handleExtraColumn(String value)
                                                                     throws IOException
          Helper method called when an extraneous column value is found. What happens then depends on configuration, but there are three main choices: ignore value (and rest of line); expose extra value as "any property" using configured name, or throw an exception.
          Throws:
          IOException
          Since:
          2.7
        • _handleMissingColumns

          protected com.fasterxml.jackson.core.JsonToken _handleMissingColumns()
                                                                        throws IOException
          Helper method called when end of row occurs before finding values for all schema-specified columns.
          Throws:
          IOException
          Since:
          2.9
        • _handleMissingName

          protected com.fasterxml.jackson.core.JsonToken _handleMissingName()
                                                                     throws IOException
          Throws:
          IOException
        • _handleMissingValue

          protected com.fasterxml.jackson.core.JsonToken _handleMissingValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleObjectRowEnd

          protected final com.fasterxml.jackson.core.JsonToken _handleObjectRowEnd()
                                                                            throws IOException
          Helper method called to handle details of state update when end of logical record occurs.
          Throws:
          IOException
          Since:
          2.9
        • _skipUntilEndOfLine

          protected final com.fasterxml.jackson.core.JsonToken _skipUntilEndOfLine()
                                                                            throws IOException
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer w)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • _reportCsvMappingError

          public <T> T _reportCsvMappingError(String msg,
                                              Object... args)
                                       throws com.fasterxml.jackson.core.JsonProcessingException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
          Since:
          2.9
        • _reportParsingError

          public void _reportParsingError(String msg)
                                   throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _reportUnexpectedCsvChar

          public void _reportUnexpectedCsvChar(int ch,
                                               String msg)
                                        throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvSchema.Builder.html ================================================ CsvSchema.Builder (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Builder

    • Enclosing class:
      CsvSchema


      public static class CsvSchema.Builder
      extends Object
      Class used for building CsvSchema instances.
      • Field Detail

        • _encodingFeatures

          protected int _encodingFeatures
          Bit-flag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected char _columnSeparator
        • _arrayElementSeparator

          protected String _arrayElementSeparator
        • _anyPropertyName

          protected String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _lineSeparator

          protected char[] _lineSeparator
        • _nullValue

          protected char[] _nullValue
          Since:
          2.5
      • Constructor Detail

        • Builder

          public Builder()
        • Builder

          public Builder(CsvSchema src)
          "Copy" constructor which creates builder that has settings of given source schema
      • Method Detail

        • addColumn

          public CsvSchema.Builder addColumn(String name)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumn

          public CsvSchema.Builder addColumn(CsvSchema.Column c)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumnsFrom

          public CsvSchema.Builder addColumnsFrom(CsvSchema schema)
          NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
          Since:
          2.9
        • removeArrayElementSeparator

          public CsvSchema.Builder removeArrayElementSeparator(int index)
        • size

          public int size()
        • hasColumn

          public boolean hasColumn(String name)

          NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).

          Since:
          2.9
        • setUseHeader

          public CsvSchema.Builder setUseHeader(boolean b)
          Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
        • setReorderColumns

          public CsvSchema.Builder setReorderColumns(boolean b)
          Use in combination with setUseHeader. When use header flag is is set, this setting will reorder the columns defined in this schema to match the order set by the header.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setStrictHeaders

          public CsvSchema.Builder setStrictHeaders(boolean b)
          Use in combination with setUseHeader(boolean). When `strict-headers` is set, encoder will ensure the headers are in the order of the schema; if order differs, an exception is thrown.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setSkipFirstDataRow

          public CsvSchema.Builder setSkipFirstDataRow(boolean b)
          Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
        • setAllowComments

          public CsvSchema.Builder setAllowComments(boolean b)
          Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
          Since:
          2.5
        • _feature

          protected final void _feature(int feature,
                                        boolean state)
        • setColumnSeparator

          public CsvSchema.Builder setColumnSeparator(char c)
          Method for specifying character used to separate column values. Default is comma (',').
        • setArrayElementSeparator

          public CsvSchema.Builder setArrayElementSeparator(String separator)
          Method for specifying character used to separate array element values. Default value is semicolon (";")
          Since:
          2.7
        • disableArrayElementSeparator

          public CsvSchema.Builder disableArrayElementSeparator()
          Since:
          2.7
        • setQuoteChar

          public CsvSchema.Builder setQuoteChar(char c)
          Method for specifying character used for optional quoting of values. Default is double-quote ('"').
        • setEscapeChar

          public CsvSchema.Builder setEscapeChar(char c)
          Method for specifying character used for optional escaping of characters in quoted String values. Default is "not used", meaning that no escaping used.
        • disableEscapeChar

          public CsvSchema.Builder disableEscapeChar()
          Method for specifying that no escape character is to be used with CSV documents this schema defines.
        • _checkIndex

          protected void _checkIndex(int index)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvSchema.Column.html ================================================ CsvSchema.Column (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Column

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvSchema.ColumnType.html ================================================ CsvSchema.ColumnType (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvSchema.ColumnType

      • Enum Constant Summary

        Enum Constants 
        Enum Constant and Description
        ARRAY
        Value will be a multi-value sequence, separated by array element separator.
        BOOLEAN
        Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null).
        NUMBER
        Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null.
        NUMBER_OR_STRING
        Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match.
        STRING
        Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.
        STRING_OR_LITERAL
        Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
      • Enum Constant Detail

        • STRING

          public static final CsvSchema.ColumnType STRING
          Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.

          Note that this type allows coercion into array, if higher level application calls JsonParser.isExpectedStartArrayToken(), unlike more explicit types.

        • STRING_OR_LITERAL

          public static final CsvSchema.ColumnType STRING_OR_LITERAL
          Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
        • NUMBER

          public static final CsvSchema.ColumnType NUMBER
          Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null. Values are also trimmed (leading/trailing white space) Other non-numeric Strings may cause parsing exception.
        • NUMBER_OR_STRING

          public static final CsvSchema.ColumnType NUMBER_OR_STRING
          Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match. Values are also trimmed (leading/trailing white space)
        • BOOLEAN

          public static final CsvSchema.ColumnType BOOLEAN
          Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null). Values are trimmed (leading/trailing white space). Values other than indicated above may result in an exception.
          Since:
          2.5
        • ARRAY

          public static final CsvSchema.ColumnType ARRAY
          Value will be a multi-value sequence, separated by array element separator. Element type itself may be any scalar type (that is, number or String) and will not be optimized. Separator may be overridden on per-column basis.

          Note that this type is used for generic concept of multiple values, and not specifically to match Java arrays: data-binding may match such columns to Collections as well, or even other types as necessary.

          Since:
          2.5
      • Method Detail

        • values

          public static CsvSchema.ColumnType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvSchema.ColumnType c : CsvSchema.ColumnType.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvSchema.ColumnType valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/CsvSchema.html ================================================ CsvSchema (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable, Iterable<CsvSchema.Column>


      public class CsvSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Iterable<CsvSchema.Column>, Serializable
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write. Properties supported currently are:
      • columns (List of ColumnDef) [default: empty List]: Ordered list of columns (which may be empty, see below). Each column has name (mandatory) as well as type (optional; if not defined, defaults to "String"). Note that
      • useHeader (boolean) [default: false]: whether the first line of physical document defines column names (true) or not (false): if enabled, parser will take first-line values to define column names; and generator will output column names as the first line
      • quoteChar (char) [default: double-quote ('")]: character used for quoting values that contain quote characters or linefeeds.
      • columnSeparator (char) [default: comma (',')]: character used to separate values. Other commonly used values include tab ('\t') and pipe ('|')
      • arrayElementSeparator (String) [default: semicolon (";")]: string used to separate array elements.
      • lineSeparator (String) [default: "\n"]: character used to separate data rows. Only used by generator; parser accepts three standard linefeeds ("\r", "\r\n", "\n").
      • escapeChar (int) [default: -1 meaning "none"]: character, if any, used to escape values. Most commonly defined as backslash ('\'). Only used by parser; generator only uses quoting, including doubling up of quotes to indicate quote char itself.
      • skipFirstDataRow (boolean) [default: false]: whether the first data line (either first line of the document, if useHeader=false, or second, if useHeader=true) should be completely ignored by parser. Needed to support CSV-like file formats that include additional non-data content before real data begins (specifically some database dumps do this)
      • nullValue (String) [default: "" (empty String)]: When asked to write Java `null`, this String value will be used instead.
        With 2.6, value will also be recognized during value reads.
      • strictHeaders (boolean) [default: false] (added in Jackson 2.7): whether names of columns defined in the schema MUST match with actual declaration from the header row (if header row handling enabled): if true, they must be and an exception if thrown if order differs: if false, no verification is performed.

      Note that schemas without any columns are legal, but if no columns are added, behavior of parser/generator is usually different and content will be exposed as logical Arrays instead of Objects.

      There are 4 ways to create CsvSchema instances:

      See Also:
      Serialized Form
      • Field Detail

        • ENCODING_FEATURE_USE_HEADER

          protected static final int ENCODING_FEATURE_USE_HEADER
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_SKIP_FIRST_DATA_ROW

          protected static final int ENCODING_FEATURE_SKIP_FIRST_DATA_ROW
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_ALLOW_COMMENTS

          protected static final int ENCODING_FEATURE_ALLOW_COMMENTS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_REORDER_COLUMNS

          protected static final int ENCODING_FEATURE_REORDER_COLUMNS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_STRICT_HEADERS

          protected static final int ENCODING_FEATURE_STRICT_HEADERS
          See Also:
          Constant Field Values
        • DEFAULT_ENCODING_FEATURES

          protected static final int DEFAULT_ENCODING_FEATURES
          See Also:
          Constant Field Values
        • NO_CHARS

          protected static final char[] NO_CHARS
        • DEFAULT_COLUMN_SEPARATOR

          public static final char DEFAULT_COLUMN_SEPARATOR
          Default separator for column values is comma (hence "Comma-Separated Values")
          See Also:
          Constant Field Values
        • DEFAULT_ARRAY_ELEMENT_SEPARATOR

          public static final String DEFAULT_ARRAY_ELEMENT_SEPARATOR
          Default separator for array elements within a column value is semicolon.
          See Also:
          Constant Field Values
        • NO_ARRAY_ELEMENT_SEPARATOR

          public static final String NO_ARRAY_ELEMENT_SEPARATOR
          Marker for the case where no array element separator is used
          See Also:
          Constant Field Values
        • DEFAULT_ANY_PROPERTY_NAME

          public static final String DEFAULT_ANY_PROPERTY_NAME
          By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
          Since:
          2.7
        • DEFAULT_NULL_VALUE

          public static final char[] DEFAULT_NULL_VALUE
          By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls). To use automatic coercion on reading, null value must be set explicitly to empty String ("").

          NOTE: before 2.6, this value default to empty char[]; changed to Java null in 2.6.

        • DEFAULT_ESCAPE_CHAR

          public static final int DEFAULT_ESCAPE_CHAR
          By default, no escape character is used -- this is denoted by int value that does not map to a valid character
          See Also:
          Constant Field Values
        • DEFAULT_LINEFEED

          public static final char[] DEFAULT_LINEFEED
        • _columns

          protected final CsvSchema.Column[] _columns
          Column definitions, needed for optional header and/or mapping of field names to column positions.
        • _features

          protected int _features
          Bitflag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected final char _columnSeparator
        • _arrayElementSeparator

          protected final String _arrayElementSeparator
        • _quoteChar

          protected final int _quoteChar
        • _escapeChar

          protected final int _escapeChar
        • _lineSeparator

          protected final char[] _lineSeparator
        • _nullValue

          protected final char[] _nullValue
          Since:
          2.5
        • _nullValueAsString

          protected transient String _nullValueAsString
        • _anyPropertyName

          protected final String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
      • Constructor Detail

        • CsvSchema

          public CsvSchema(CsvSchema.Column[] columns,
                           int features,
                           char columnSeparator,
                           int quoteChar,
                           int escapeChar,
                           char[] lineSeparator,
                           String arrayElementSeparator,
                           char[] nullValue,
                           String anyPropertyName)
          Since:
          2.7
        • CsvSchema

          protected CsvSchema(CsvSchema.Column[] columns,
                              int features,
                              char columnSeparator,
                              int quoteChar,
                              int escapeChar,
                              char[] lineSeparator,
                              String arrayElementSeparator,
                              char[] nullValue,
                              Map<String,CsvSchema.Column> columnsByName,
                              String anyPropertyName)
          Copy constructor used for creating variants using withXxx() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              CsvSchema.Column[] columns)
          Copy constructor used for creating variants using sortedBy() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              int features)
          Copy constructor used for creating variants for on/off features
          Since:
          2.5
      • Method Detail

        • emptySchema

          public static CsvSchema emptySchema()
          Accessor for creating a "default" CSV schema instance, with following settings:
          • Does NOT use header line
          • Uses double quotes ('"') for quoting of field values (if necessary)
          • Uses comma (',') as the field separator
          • Uses Unix linefeed ('\n') as row separator
          • Does NOT use any escape characters
          • Does NOT have any columns defined
        • rebuild

          public CsvSchema.Builder rebuild()
          Helper method for constructing Builder that can be used to create modified schema.
        • withUseHeader

          public CsvSchema withUseHeader(boolean state)
        • withColumnReordering

          public CsvSchema withColumnReordering(boolean state)
          Returns a clone of this instance by changing or setting the column reordering flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the column reordering feature.
          Since:
          2.7
        • withStrictHeaders

          public CsvSchema withStrictHeaders(boolean state)
          Returns a clone of this instance by changing or setting the strict headers flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the strict headers feature.
          Since:
          2.7
        • withHeader

          public CsvSchema withHeader()
          Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
        • withoutHeader

          public CsvSchema withoutHeader()
          Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
        • withSkipFirstDataRow

          public CsvSchema withSkipFirstDataRow(boolean state)
        • withAllowComments

          public CsvSchema withAllowComments(boolean state)
          Method to indicate whether "hash comments" are allowed for document described by this schema.
          Since:
          2.5
        • withComments

          public CsvSchema withComments()
          Method to indicate that "hash comments" ARE allowed for document described by this schema.
          Since:
          2.5
        • withoutComments

          public CsvSchema withoutComments()
          Method to indicate that "hash comments" are NOT allowed for document described by this schema.
          Since:
          2.5
        • _withFeature

          protected CsvSchema _withFeature(int feature,
                                           boolean state)
        • withColumnSeparator

          public CsvSchema withColumnSeparator(char sep)
        • withQuoteChar

          public CsvSchema withQuoteChar(char c)
        • withoutQuoteChar

          public CsvSchema withoutQuoteChar()
        • withEscapeChar

          public CsvSchema withEscapeChar(char c)
        • withoutEscapeChar

          public CsvSchema withoutEscapeChar()
        • withArrayElementSeparator

          public CsvSchema withArrayElementSeparator(String separator)
          Since:
          2.7
        • withoutArrayElementSeparator

          public CsvSchema withoutArrayElementSeparator()
          Since:
          2.5
        • withoutColumns

          public CsvSchema withoutColumns()
        • withColumnsFrom

          public CsvSchema withColumnsFrom(CsvSchema toAppend)
          Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`. All settings aside from column sets are copied from `this` instance.

          As with all `withXxx()` methods this method never modifies `this` but either returns it unmodified (if no new columns found from `toAppend`), or constructs a new instance and returns that.

          Since:
          2.9
        • withAnyPropertyName

          public CsvSchema withAnyPropertyName(String name)
          Since:
          2.7
        • sortedBy

          public CsvSchema sortedBy(String... columnNames)
          Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument. Columns not listed in argument will be sorted after those within list, using existing ordering.

          For example, schema that has columns:

          "a", "d", "c", "b"
          
          ordered with schema.sortedBy("a", "b"); would result instance that columns in order:
          "a", "b", "d", "c"
          
          Since:
          2.4
        • sortedBy

          public CsvSchema sortedBy(Comparator<String> cmp)
          Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
          Since:
          2.4
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • usesHeader

          public boolean usesHeader()
        • reordersColumns

          public boolean reordersColumns()
        • skipsFirstDataRow

          public boolean skipsFirstDataRow()
        • allowsComments

          public boolean allowsComments()
        • strictHeaders

          public boolean strictHeaders()
        • getColumnSeparator

          public char getColumnSeparator()
        • getArrayElementSeparator

          public String getArrayElementSeparator()
        • getQuoteChar

          public int getQuoteChar()
        • getEscapeChar

          public int getEscapeChar()
        • getLineSeparator

          public char[] getLineSeparator()
        • getNullValue

          public char[] getNullValue()
          Returns:
          Null value defined, as char array, if one is defined to be recognized; Java null if not.
          Since:
          2.5
        • getNullValueOrEmpty

          public char[] getNullValueOrEmpty()
          Same as getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
          Since:
          2.6
        • getNullValueString

          public String getNullValueString()
          Since:
          2.6
        • usesQuoteChar

          public boolean usesQuoteChar()
        • usesEscapeChar

          public boolean usesEscapeChar()
        • hasArrayElementSeparator

          public boolean hasArrayElementSeparator()
          Since:
          2.5
        • getAnyPropertyName

          public String getAnyPropertyName()
          Since:
          2.7
        • size

          public int size()
          Accessor for finding out how many columns this schema defines.
          Returns:
          Number of columns this schema defines
        • column

          public CsvSchema.Column column(int index)
          Accessor for column at specified index (0-based); index having to be within
              0 <= index < size()
          
        • columnName

          public String columnName(int index)
          Since:
          2.6
        • column

          public CsvSchema.Column column(String name,
                                         int probableIndex)
          Optimized variant where a hint is given as to likely index of the column name.
          Since:
          2.6
        • getColumnDesc

          public String getColumnDesc()
          Method for getting description of column definitions in developer-readable form
        • _validArrayElementSeparator

          protected static String _validArrayElementSeparator(String sep)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvCharacterEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactory (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactory

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvMappingException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMappingException (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMappingException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser.Feature (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser.Feature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Column.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Column

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.ColumnType.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.PackageVersion (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.csv.PackageVersion

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.BooleanValue.html ================================================ BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.BooleanValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.DoubleValue.html ================================================ BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.DoubleValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.IntValue.html ================================================ BufferedValue.IntValue (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.IntValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.LongValue.html ================================================ BufferedValue.LongValue (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.LongValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.NullValue.html ================================================ BufferedValue.NullValue (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.NullValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.RawValue.html ================================================ BufferedValue.RawValue (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.RawValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.TextValue.html ================================================ BufferedValue.TextValue (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.TextValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.html ================================================ BufferedValue (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/CsvDecoder.html ================================================ CsvDecoder (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvDecoder



    • public class CsvDecoder
      extends Object
      Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
      • Field Detail

        • _owner

          protected final CsvParser _owner
          Unfortunate back reference, needed for error reporting
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
          I/O context for this reader. It handles buffer allocation for the reader.
        • _inputSource

          protected Reader _inputSource
          Input stream that can be used for reading more content, if one in use. May be null, if input comes just as a full buffer, or if the stream has been closed.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.

          If it is not, it also means that parser can NOT modify underlying buffer.

        • _autoCloseInput

          protected boolean _autoCloseInput
        • _trimSpaces

          protected boolean _trimSpaces
          Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
        • _allowComments

          protected boolean _allowComments
        • _skipBlankLines

          protected boolean _skipBlankLines
          Since:
          2.10.1
        • _maxSpecialChar

          protected int _maxSpecialChar
          Maximum of quote character, linefeeds (\r and \n), escape character.
        • _separatorChar

          protected int _separatorChar
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _inputBuffer

          protected char[] _inputBuffer
          Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
        • _inputPtr

          protected int _inputPtr
          Pointer to next available character in buffer
        • _inputEnd

          protected int _inputEnd
          Index of character after last available one in the buffer.
        • _pendingLF

          protected int _pendingLF
          Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
        • _closed

          protected boolean _closed
          Flag that indicates whether parser is closed or not. Gets set when parser is either closed by explicit call (close()) or when end-of-input is reached.
        • _currInputProcessed

          protected long _currInputProcessed
          Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
        • _currInputRow

          protected int _currInputRow
          Current row location of current point in input buffer, starting from 1, if available.
        • _currInputRowStart

          protected int _currInputRowStart
          Current index of the first character of the current row in input buffer. Needed to calculate column position, if necessary; benefit of not having column itself is that this only has to be updated once per line.
        • _tokenInputTotal

          protected long _tokenInputTotal
          Total number of bytes/characters read before start of current token. For big (gigabyte-sized) sizes are possible, needs to be long, unlike pointers and sizes related to in-memory buffers.
        • _tokenInputRow

          protected int _tokenInputRow
          Input row on which current token starts, 1-based
        • _tokenInputCol

          protected int _tokenInputCol
          Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
        • _numTypesValid

          protected int _numTypesValid
          Bitfield that indicates which numeric representations have been calculated for the current type
        • _numberInt

          protected int _numberInt
        • _numberLong

          protected long _numberLong
        • _numberDouble

          protected double _numberDouble
        • _numberBigInt

          protected BigInteger _numberBigInt
        • _numberBigDecimal

          protected BigDecimal _numberBigDecimal
      • Constructor Detail

        • CsvDecoder

          public CsvDecoder(CsvParser owner,
                            com.fasterxml.jackson.core.io.IOContext ctxt,
                            Reader r,
                            CsvSchema schema,
                            TextBuffer textBuffer,
                            int stdFeatures,
                            int csvFeatures)
      • Method Detail

        • setSchema

          public void setSchema(CsvSchema schema)
        • overrideFormatFeatures

          public void overrideFormatFeatures(int csvFeatures)
          Since:
          2.7
        • getInputSource

          public Object getInputSource()
        • isClosed

          public boolean isClosed()
        • childArrayContext

          public com.fasterxml.jackson.core.json.JsonReadContext childArrayContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • childObjectContext

          public com.fasterxml.jackson.core.json.JsonReadContext childObjectContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
        • getCurrentRow

          public final int getCurrentRow()
        • getCurrentColumn

          public final int getCurrentColumn()
        • getTokenCharacterOffset

          protected final long getTokenCharacterOffset()
        • getTokenLineNr

          protected final int getTokenLineNr()
        • getTokenColumnNr

          protected final int getTokenColumnNr()
        • getText

          public String getText()
        • hasMoreInput

          public boolean hasMoreInput()
                               throws IOException
          Method that can be called to see if there is at least one more character to be parsed.
          Throws:
          IOException
        • startNewLine

          public boolean startNewLine()
                               throws IOException
          Method called to handle details of starting a new line, which may include skipping a linefeed.
          Returns:
          True if there is a new data line to handle; false if not
          Throws:
          IOException
        • skipLinesWhenNeeded

          public boolean skipLinesWhenNeeded()
                                      throws IOException
          optionally skip lines that are empty or are comments, depending on the feature activated in the parser
          Returns:
          false if the end of input was reached
          Throws:
          IOException
          Since:
          2.10.1
        • skipLine

          public boolean skipLine()
                           throws IOException
          Method called to blindly skip a single line of content, without considering aspects like quoting or escaping. Used currently simply to skip the first line of input document, if instructed to do so.
          Throws:
          IOException
        • nextString

          public String nextString()
                            throws IOException
          Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
          Returns:
          Column value if more found; null to indicate end of line of input
          Throws:
          IOException
        • nextStringOrLiteral

          public com.fasterxml.jackson.core.JsonToken nextStringOrLiteral()
                                                                   throws IOException
          Throws:
          IOException
        • nextNumber

          public com.fasterxml.jackson.core.JsonToken nextNumber()
                                                          throws IOException
          Throws:
          IOException
        • nextNumberOrString

          public com.fasterxml.jackson.core.JsonToken nextNumberOrString()
                                                                  throws IOException
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Method that will parse actual numeric value out of a syntactically valid number value. Type it will parse into depends on whether it is a floating point number, as well as its magnitude: smallest legal type (of ones available) is used for efficiency.
          Parameters:
          expType - Numeric type that we will immediately need, if any; mostly necessary to optimize handling of floating point numbers
          Throws:
          IOException
        • convertNumberToBigInteger

          protected void convertNumberToBigInteger()
                                            throws IOException
          Throws:
          IOException
        • convertNumberToBigDecimal

          protected void convertNumberToBigDecimal()
                                            throws IOException
          Throws:
          IOException
        • reportUnexpectedNumberChar

          protected void reportUnexpectedNumberChar(int ch,
                                                    String comment)
                                             throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • reportInvalidNumber

          protected void reportInvalidNumber(String msg)
                                      throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • constructError

          protected final com.fasterxml.jackson.core.JsonParseException constructError(String msg,
                                                                                       Throwable t)
        • _getCharDesc

          protected static final String _getCharDesc(int ch)
        • _reportError

          protected final void _reportError(String msg)
                                     throws com.fasterxml.jackson.core.JsonParseException
          Method for reporting low-level decoding (parsing) problems
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/CsvEncoder.html ================================================ CsvEncoder (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvEncoder



    • public class CsvEncoder
      extends Object
      Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
      • Field Detail

        • HEX_CHARS

          protected static final char[] HEX_CHARS
        • _outputEscapes

          protected int[] _outputEscapes
          Currently active set of output escape code definitions (whether and how to escape or not).
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _out

          protected final Writer _out
          Underlying Writer used for output.
        • _cfgColumnSeparator

          protected final char _cfgColumnSeparator
        • _cfgQuoteCharacter

          protected final int _cfgQuoteCharacter
        • _cfgEscapeCharacter

          protected final int _cfgEscapeCharacter
          Since:
          2.7
        • _cfgLineSeparator

          protected final char[] _cfgLineSeparator
        • _cfgNullValue

          protected final char[] _cfgNullValue
          Since:
          2.5
        • _cfgLineSeparatorLength

          protected final int _cfgLineSeparatorLength
        • _cfgMaxQuoteCheckChars

          protected int _cfgMaxQuoteCheckChars
        • _cfgMinSafeChar

          protected final int _cfgMinSafeChar
          Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
        • _csvFeatures

          protected int _csvFeatures
        • _cfgOptimalQuoting

          protected boolean _cfgOptimalQuoting
          Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
          Since:
          2.4
        • _cfgIncludeMissingTail

          protected boolean _cfgIncludeMissingTail
          Since:
          2.4
        • _cfgAlwaysQuoteStrings

          protected boolean _cfgAlwaysQuoteStrings
          Since:
          2.5
        • _cfgAlwaysQuoteEmptyStrings

          protected boolean _cfgAlwaysQuoteEmptyStrings
        • _cfgEscapeQuoteCharWithEscapeChar

          protected boolean _cfgEscapeQuoteCharWithEscapeChar
        • _cfgEscapeControlCharWithEscapeChar

          protected boolean _cfgEscapeControlCharWithEscapeChar
          Since:
          2.9.9
        • _cfgQuoteCharEscapeChar

          protected final char _cfgQuoteCharEscapeChar
        • _cfgControlCharEscapeChar

          protected final char _cfgControlCharEscapeChar
          Since:
          2.9.9
        • _columnCount

          protected int _columnCount
          Since:
          2.4
        • _nextColumnToWrite

          protected int _nextColumnToWrite
          Index of column we expect to write next
        • _buffered

          protected BufferedValue[] _buffered
          And if output comes in shuffled order we will need to do bit of ordering.
        • _lastBuffered

          protected int _lastBuffered
          Index of the last buffered value
        • _outputBuffer

          protected char[] _outputBuffer
          Intermediate buffer in which contents are buffered before being written using _out.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
        • _outputTail

          protected int _outputTail
          Pointer to the next available char position in _outputBuffer
        • _outputEnd

          protected final int _outputEnd
          Offset to index after the last valid index in _outputBuffer. Typically same as length of the buffer.
        • _charsWritten

          protected int _charsWritten
          Let's keep track of how many bytes have been output, may prove useful when debugging. This does not include bytes buffered in the output buffer, just bytes that have been written using underlying stream writer.
      • Constructor Detail

        • CsvEncoder

          public CsvEncoder(com.fasterxml.jackson.core.io.IOContext ctxt,
                            int csvFeatures,
                            Writer out,
                            CsvSchema schema)
      • Method Detail

        • overrideFormatFeatures

          public CsvEncoder overrideFormatFeatures(int feat)
        • setOutputEscapes

          public CsvEncoder setOutputEscapes(int[] esc)
        • getOutputTarget

          public Object getOutputTarget()
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
        • nextColumnIndex

          public int nextColumnIndex()
        • write

          public final void write(int columnIndex,
                                  char[] ch,
                                  int offset,
                                  int len)
                           throws IOException
          Throws:
          IOException
        • _writeQuotedAndEscaped

          protected void _writeQuotedAndEscaped(String text,
                                                char q,
                                                char esc,
                                                int i)
                                         throws IOException
          Throws:
          IOException
        • _mayNeedQuotes

          protected boolean _mayNeedQuotes(String value,
                                           int length)
          Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
        • _needsQuotingLoose

          protected final boolean _needsQuotingLoose(String value)

          NOTE: final since checking is not expected to be changed here; override calling method (_mayNeedQuotes) instead, if necessary.

          Since:
          2.4
        • _needsQuotingLoose

          protected final boolean _needsQuotingLoose(String value,
                                                     int esc)
        • _needsQuotingStrict

          protected boolean _needsQuotingStrict(String value)
          Since:
          2.4
        • _needsQuotingStrict

          protected boolean _needsQuotingStrict(String value,
                                                int esc)
          Since:
          2.7
        • _releaseBuffers

          public void _releaseBuffers()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/CsvIOContext.html ================================================ CsvIOContext (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvIOContext

    • java.lang.Object
      • com.fasterxml.jackson.core.io.IOContext
        • com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext


    • public class CsvIOContext
      extends com.fasterxml.jackson.core.io.IOContext
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.io.IOContext

          _base64Buffer, _bufferRecycler, _concatCBuffer, _encoding, _managedResource, _nameCopyBuffer, _readIOBuffer, _sourceRef, _tokenCBuffer, _writeEncodingBuffer
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br, Object sourceRef, boolean managedResource) 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        TextBuffer csvTextBuffer() 
        • Methods inherited from class com.fasterxml.jackson.core.io.IOContext

          _verifyAlloc, _verifyRelease, _verifyRelease, allocBase64Buffer, allocBase64Buffer, allocConcatBuffer, allocNameCopyBuffer, allocReadIOBuffer, allocReadIOBuffer, allocTokenBuffer, allocTokenBuffer, allocWriteEncodingBuffer, allocWriteEncodingBuffer, constructTextBuffer, getEncoding, getSourceReference, isResourceManaged, releaseBase64Buffer, releaseConcatBuffer, releaseNameCopyBuffer, releaseReadIOBuffer, releaseTokenBuffer, releaseWriteEncodingBuffer, setEncoding, withEncoding
      • Constructor Detail

        • CsvIOContext

          public CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br,
                              Object sourceRef,
                              boolean managedResource)
      • Method Detail

        • csvTextBuffer

          public TextBuffer csvTextBuffer()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/CsvParserBootstrapper.html ================================================ CsvParserBootstrapper (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvParserBootstrapper

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper


    • public final class CsvParserBootstrapper
      extends Object
      This class is used to determine the encoding of byte stream that is to contain CSV document. Since there is no real specification for how this should work with CSV, it will be based on rules used with JSON (which themselves are similar to those used with XML); main points are to check for BOM first, then look for multi-byted fixed-length encodings (UTF-16, UTF-32). And finally, if neither found, must decide between most likely alternatives, UTF-8 and Latin-1.
      • Field Detail

        • _context

          protected final com.fasterxml.jackson.core.io.IOContext _context
        • _codec

          protected final com.fasterxml.jackson.core.ObjectCodec _codec
        • _inputBuffer

          protected final byte[] _inputBuffer
        • _inputProcessed

          protected int _inputProcessed
          Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.

          Note: includes possible BOMs, if those were part of the input.

        • _bigEndian

          protected boolean _bigEndian
        • _bytesPerChar

          protected int _bytesPerChar
      • Constructor Detail

        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       InputStream in)
        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       byte[] inputBuffer,
                                       int inputStart,
                                       int inputLen)
      • Method Detail

        • hasCSVFormat

          public static com.fasterxml.jackson.core.format.MatchStrength hasCSVFormat(com.fasterxml.jackson.core.format.InputAccessor acc,
                                                                                     int quoteChar,
                                                                                     char separatorChar)
                                                                              throws IOException
          Current implementation is not as thorough as one used by other data formats like JSON. But it should work, for now, and can be improved as necessary.
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/LRUMap.html ================================================ LRUMap (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class LRUMap<K,V>

      • Field Detail

        • _maxEntries

          protected final int _maxEntries
      • Constructor Detail

        • LRUMap

          public LRUMap(int initialEntries,
                        int maxEntries)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/NumberInput.html ================================================ NumberInput (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberInput



    • public final class NumberInput
      extends Object
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        static String NASTY_SMALL_DOUBLE
        Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
      • Constructor Summary

        Constructors 
        Constructor and Description
        NumberInput() 
      • Field Detail

        • NASTY_SMALL_DOUBLE

          public static final String NASTY_SMALL_DOUBLE
          Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
          See Also:
          Constant Field Values
      • Constructor Detail

        • NumberInput

          public NumberInput()
      • Method Detail

        • parseInt

          public static final int parseInt(char[] digitChars,
                                           int offset,
                                           int len)
          Fast method for parsing integers that are known to fit into regular 32-bit signed int type. This means that length is between 1 and 9 digits (inclusive)

          Note: public to let unit tests call it

        • parseLong

          public static final long parseLong(char[] digitChars,
                                             int offset,
                                             int len)
        • inLongRange

          public static final boolean inLongRange(char[] digitChars,
                                                  int offset,
                                                  int len,
                                                  boolean negative)
          Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not. Note that input String must NOT contain leading minus sign (even if 'negative' is set to true).
          Parameters:
          negative - Whether original number had a minus sign (which is NOT passed to this method) or not

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/NumberOutput.html ================================================ NumberOutput (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberOutput



    • public final class NumberOutput
      extends Object
      Helper class for efficient writing of numeric values

      NOTE: modified from Jackson Core's similar functionality

      • Constructor Detail

        • NumberOutput

          public NumberOutput()
      • Method Detail

        • outputInt

          public static int outputInt(int value,
                                      char[] buffer,
                                      int offset)
          Returns:
          Offset within buffer after outputting int
        • outputLong

          public static int outputLong(long value,
                                       char[] buffer,
                                       int offset)
          Returns:
          Offset within buffer after outputting int
        • toString

          public static String toString(double value)
        • toString

          public static String toString(float value)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/SimpleTokenWriteContext.html ================================================ SimpleTokenWriteContext (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class SimpleTokenWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext


    • public final class SimpleTokenWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      Intermediate base context; for 2.x copied within CSV format codebase, in 3.0 will be part of jackson-core
      Since:
      2.11
      • Field Detail

        • _dups

          protected com.fasterxml.jackson.core.json.DupDetector _dups
        • _currentName

          protected String _currentName
          Name of the field of which value is to be written; only used for OBJECT contexts
        • _currentValue

          protected Object _currentValue
        • _gotFieldId

          protected boolean _gotFieldId
          Marker used to indicate that we just wrote a field name and now expect a value to write
      • Constructor Detail

        • SimpleTokenWriteContext

          protected SimpleTokenWriteContext(int type,
                                            SimpleTokenWriteContext parent,
                                            com.fasterxml.jackson.core.json.DupDetector dups,
                                            Object currentValue)
      • Method Detail

        • withDupDetector

          public SimpleTokenWriteContext withDupDetector(com.fasterxml.jackson.core.json.DupDetector dups)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • createRootContext

          public static SimpleTokenWriteContext createRootContext(com.fasterxml.jackson.core.json.DupDetector dd)
        • getParent

          public final SimpleTokenWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • hasCurrentName

          public boolean hasCurrentName()
          Overrides:
          hasCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • clearAndGetParent

          public SimpleTokenWriteContext clearAndGetParent()
          Method that can be used to both clear the accumulated references (specifically value set with setCurrentValue(Object)) that should not be retained, and returns parent (as would getParent() do). Typically called when closing the active context when encountering JsonToken.END_ARRAY or JsonToken.END_OBJECT.
        • getDupDetector

          public com.fasterxml.jackson.core.json.DupDetector getDupDetector()
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Method that writer is to call before it writes a field name.
          Returns:
          Ok if name writing should proceed
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/TextBuffer.html ================================================ TextBuffer (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class TextBuffer



    • public final class TextBuffer
      extends Object
      Helper class for efficiently aggregating parsed and decoded textual content
      • Constructor Detail

        • TextBuffer

          public TextBuffer(com.fasterxml.jackson.core.util.BufferRecycler allocator)
      • Method Detail

        • releaseBuffers

          public void releaseBuffers()
        • reset

          public void reset()
        • resetWithString

          public void resetWithString(String value)
        • size

          public int size()
          Returns:
          Number of characters currently stored by this collector
        • getTextOffset

          public int getTextOffset()
        • hasTextAsCharacters

          public boolean hasTextAsCharacters()
        • getTextBuffer

          public char[] getTextBuffer()
        • contentsAsString

          public String contentsAsString()
        • contentsAsArray

          public char[] contentsAsArray()
        • looksLikeInt

          public boolean looksLikeInt()
        • ensureNotShared

          public void ensureNotShared()
          Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.
        • getCurrentSegment

          public char[] getCurrentSegment()
        • emptyAndGetCurrentSegment

          public final char[] emptyAndGetCurrentSegment()
        • getCurrentSegmentSize

          public int getCurrentSegmentSize()
        • finishAndReturn

          public String finishAndReturn(int lastSegmentEnd,
                                        boolean trimTrailingSpaces)
          Parameters:
          lastSegmentEnd - End offset in the currently active segment, could be 0 in the case of first character is delimiter or end-of-line
          trimTrailingSpaces - Whether trailing spaces should be trimmed or not
        • finishCurrentSegment

          public char[] finishCurrentSegment()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose)
      • Method Detail

        • canModifyBuffer

          protected final boolean canModifyBuffer()
          Method that can be used to see if we can actually modify the underlying buffer. This is the case if we are managing the buffer, but not if it was just given to us.
        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException
        • reportInvalidInitial

          protected void reportInvalidInitial(int mask,
                                              int outputDecoded)
                                       throws IOException
          Throws:
          IOException
        • reportInvalidOther

          protected void reportInvalidOther(int mask,
                                            int outputDecoded,
                                            int errorPosition)
                                     throws IOException
          Throws:
          IOException
        • reportUnexpectedEOF

          protected void reportUnexpectedEOF(int gotBytes,
                                             int needed)
                                      throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-CSV 2.11.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Writer

    • All Implemented Interfaces:
      Closeable, Flushable, Appendable, AutoCloseable


      public final class UTF8Writer
      extends Writer
      Efficient UTF-8 backed writer.

      Note: original implementation based on writer from Jackson core package; modified slightly, copied to reduce dependency to impl details.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.BooleanValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.DoubleValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.IntValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.LongValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.NullValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.RawValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.TextValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvDecoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvEncoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvIOContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvParserBootstrapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    No usage of com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/LRUMap.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.LRUMap (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.LRUMap

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberInput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberInput (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberOutput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/SimpleTokenWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/TextBuffer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.TextBuffer

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.11.0 API)

    com.fasterxml.jackson.dataformat.csv.impl

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.11.0 API)

    Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv.impl Class Hierarchy (Jackson-dataformat-CSV 2.11.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.11.0 API)

    com.fasterxml.jackson.dataformat.csv

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.11.0 API)

    Package com.fasterxml.jackson.dataformat.csv

    • Class Summary 
      Class Description
      CsvCharacterEscapes
      Character escapes for CSV.
      CsvFactory  
      CsvFactoryBuilder
      TSFBuilder implementation for constructing CsvFactory instances.
      CsvGenerator  
      CsvMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      CsvMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      CsvParser
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
      CsvSchema
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
      CsvSchema.Builder
      Class used for building CsvSchema instances.
      CsvSchema.Column
      Representation of info for a single column
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    • Enum Summary 
      Enum Description
      CsvGenerator.Feature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      CsvParser.Feature
      Enumeration that defines all togglable features for CSV parsers
      CsvSchema.ColumnType
      Enumeration that defines optional type indicators that can be passed with schema.
    • Exception Summary 
      Exception Description
      CsvMappingException
      Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv Class Hierarchy (Jackson-dataformat-CSV 2.11.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes (implements java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema (implements com.fasterxml.jackson.core.FormatSchema, java.lang.Iterable<T>, java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (implements java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.csv.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JsonProcessingException
              • com.fasterxml.jackson.databind.JsonMappingException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/com/fasterxml/jackson/dataformat/csv/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.11.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-CSV 2.11.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    • com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder 
      Modifier and Type Constant Field Value
      protected static final char CHAR_NULL 0
      protected static final int INT_0 48
      protected static final int INT_1 49
      protected static final int INT_2 50
      protected static final int INT_3 51
      protected static final int INT_4 52
      protected static final int INT_5 53
      protected static final int INT_6 54
      protected static final int INT_7 55
      protected static final int INT_8 56
      protected static final int INT_9 57
      protected static final int INT_DECIMAL_POINT 46
      protected static final int INT_e 101
      protected static final int INT_E 69
      protected static final int INT_MINUS 45
      protected static final int INT_PLUS 43
      protected static final int NR_BIGDECIMAL 16
      protected static final int NR_BIGINT 4
      protected static final int NR_DOUBLE 8
      protected static final int NR_INT 1
      protected static final int NR_LONG 2
      protected static final int NR_UNKNOWN 0
    • com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder 
      Modifier and Type Constant Field Value
      protected static final int MAX_QUOTE_CHECK 24
      protected static final int SHORT_WRITE 32
    • com.fasterxml.jackson.dataformat.csv.impl.NumberInput 
      Modifier and Type Constant Field Value
      public static final String NASTY_SMALL_DOUBLE "2.2250738585072012e-308"

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-CSV 2.11.0 API)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/help-doc.html ================================================ API Help (Jackson-dataformat-CSV 2.11.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/index-all.html ================================================ Index (Jackson-dataformat-CSV 2.11.0 API)
    A B C D E F G H I L M N O P Q R S T U V W _ 

    A

    addArrayColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addArrayColumn(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    addArrayColumn(String, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addBooleanColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(String, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<CsvSchema.Column>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<String>, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
    addNumberColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    allowsComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    append(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    appendColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendNull() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    B

    BooleanValue(boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    buffered(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(long) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedNull() - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedRaw(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class used for holding values for a while until output can proceed in expected order.
    BufferedValue() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue.BooleanValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.DoubleValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.IntValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.LongValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.NullValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.RawValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.TextValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Main factory method to use for constructing CsvFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    builder(CsvFactory) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    Builder(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    Builder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    Builder(CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    "Copy" constructor which creates builder that has settings of given source schema

    C

    canModifyBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method that can be used to see if we can actually modify the underlying buffer.
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CHAR_NULL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childArrayContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childObjectContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    clearAndGetParent() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Method that can be used to both clear the accumulated references (specifically value set with SimpleTokenWriteContext.setCurrentValue(Object)) that should not be retained, and returns parent (as would SimpleTokenWriteContext.getParent() do).
    clearColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    close(boolean, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    column(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for column at specified index (0-based); index having to be within
    column(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    column(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Optimized variant where a hint is given as to likely index of the column name.
    Column(int, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Deprecated.
    use variant where `arrayElementSep` is String
    Column(int, String, CsvSchema.ColumnType, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, int, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    columnName(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    com.fasterxml.jackson.dataformat.csv - package com.fasterxml.jackson.dataformat.csv
     
    com.fasterxml.jackson.dataformat.csv.impl - package com.fasterxml.jackson.dataformat.csv.impl
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified parser feature (check CsvParser.Feature for list of features)
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified generator feature (check CsvGenerator.Feature for list of features)
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
    constructError(String, Throwable) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    constructParser(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    contentsAsArray() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    contentsAsDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a BigDecimal.
    contentsAsDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a Double value.
    contentsAsString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    controlEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    controlQuoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    convertNumberToBigDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToBigInteger() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    createChildArrayContext(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    createChildObjectContext(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    This method assumes use of UTF-8 for encoding.
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createRootContext(DupDetector) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    csvBuilder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Short-cut for:
    CsvCharacterEscapes - Class in com.fasterxml.jackson.dataformat.csv
    Character escapes for CSV.
    CsvDecoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
    CsvDecoder(CsvParser, IOContext, Reader, CsvSchema, TextBuffer, int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    CsvEncoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
    CsvEncoder(IOContext, int, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvEncoder(CsvEncoder, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvFactory - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvFactory() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Default constructor used to create factory instances.
    CsvFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Constructors used by CsvFactoryBuilder for instantiation.
    CsvFactoryBuilder - Class in com.fasterxml.jackson.dataformat.csv
    TSFBuilder implementation for constructing CsvFactory instances.
    CsvFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvFactoryBuilder(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvGenerator - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvGenerator(IOContext, int, int, ObjectCodec, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator(IOContext, int, int, ObjectCodec, CsvEncoder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV writers (if any: currently none)
    CsvIOContext - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    CsvIOContext(BufferRecycler, Object, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     
    CsvMapper - Class in com.fasterxml.jackson.dataformat.csv
    Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
    CsvMapper() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Copy-constructor, mostly used to support CsvMapper.copy().
    CsvMapper.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
    CsvMappingException - Exception in com.fasterxml.jackson.dataformat.csv
    Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.
    CsvMappingException(CsvParser, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    CsvMappingException(CsvGenerator, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    CsvParser - Class in com.fasterxml.jackson.dataformat.csv
    JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
    CsvParser(CsvIOContext, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    CsvParser.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV parsers
    CsvParserBootstrapper - Class in com.fasterxml.jackson.dataformat.csv.impl
    This class is used to determine the encoding of byte stream that is to contain CSV document.
    CsvParserBootstrapper(IOContext, ObjectCodec, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvParserBootstrapper(IOContext, ObjectCodec, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvSchema - Class in com.fasterxml.jackson.dataformat.csv
    Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], int, char[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], Map<String, CsvSchema.Column>, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using withXxx() methods.
    CsvSchema(CsvSchema, CsvSchema.Column[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using sortedBy() methods.
    CsvSchema(CsvSchema, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants for on/off features
    CsvSchema.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Class used for building CsvSchema instances.
    CsvSchema.Column - Class in com.fasterxml.jackson.dataformat.csv
    Representation of info for a single column
    CsvSchema.ColumnType - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines optional type indicators that can be passed with schema.
    csvTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     

    D

    DEFAULT_ANY_PROPERTY_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
    DEFAULT_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for array elements within a column value is semicolon.
    DEFAULT_COLUMN_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for column values is comma (hence "Comma-Separated Values")
    DEFAULT_ENCODING_FEATURES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_ESCAPE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, no escape character is used -- this is denoted by int value that does not map to a valid character
    DEFAULT_LF - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    DEFAULT_LINEFEED - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_NULL_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls).
    DEFAULT_QUOTE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified parser features (check CsvParser.Feature for list of features)
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified generator feature (check CsvGenerator.Feature for list of features)
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    disable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
    disableArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    disableElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    disableEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying that no escape character is to be used with CSV documents this schema defines.
    disableQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    DoubleValue(double) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     

    E

    emptyAndGetCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for creating a "default" CSV schema instance, with following settings: Does NOT use header line Uses double quotes ('"') for quoting of field values (if necessary) Uses comma (',') as the field separator Uses Unix linefeed ('\n') as row separator Does NOT use any escape characters Does NOT have any columns defined
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified parser feature (check CsvParser.Feature for list of features)
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified generator features (check CsvGenerator.Feature for list of features)
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    enable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    ENCODING_FEATURE_ALLOW_COMMENTS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_REORDER_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_SKIP_FIRST_DATA_ROW - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_STRICT_HEADERS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_USE_HEADER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    endRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    ensureLoaded(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    ensureNotShared() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.

    F

    FALSE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    finishAndReturn(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    flush(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    FORMAT_NAME_CSV - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Name used to identify CSV format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    formatParserFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(CsvParser, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    from(CsvGenerator, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    fromCsvFeatures(int) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    G

    getAnyPropertyName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCharacterEscapes() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getColumnDesc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method for getting description of column definitions in developer-readable form
    getColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    getColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getCurrentColumn() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getCurrentRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentSegmentSize() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDupDetector() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getEscapeCodesForAscii() - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getEscapeSequence(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Overridden with more specific type, since factory we have is always of type CsvFactory
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getLineSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNextWithName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Access that returns same as CsvSchema.Column.getNext() iff name of that column is same as given name
    getNullValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNullValueOrEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Same as CsvSchema.getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
    getNullValueString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getSchema() - Method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTokenCharacterOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenColumnNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLineNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    H

    hasArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    hasColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).
    hasCSVFormat(InputAccessor, int, char) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current implementation is not as thorough as one used by other data formats like JSON.
    hasCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    hasMoreInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that can be called to see if there is at least one more character to be parsed.
    hasName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    hasTextAsCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    HEX_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    I

    inLongRange(char[], int, int, boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not.
    INT_0 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_1 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_2 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_3 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_4 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_5 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_6 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_7 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_8 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_9 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_DECIMAL_POINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_e - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_E - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_MINUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_PLUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    IntValue(int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Checked whether specified parser feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Check whether specified generator feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for checking whether specified CSV CsvParser.Feature is enabled.
    isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
    iterator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    L

    loadMore() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    LongValue(long) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    looksLikeInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    LRUMap<K,V> - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper for simple bounded LRU maps used for reusing lookup values.
    LRUMap(int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     

    M

    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    MAX_QUOTE_CHECK - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    N

    NASTY_SMALL_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
    nextColumnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextFieldName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextNumber() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextNumberOrString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
    nextStringOrLiteral() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextTextValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    NO_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Marker for the case where no array element separator is used
    NO_BUFFERED - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    NO_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    NO_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    noEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    NR_BIGDECIMAL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_BIGINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_INT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_UNKNOWN - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NumberInput - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    NumberInput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    NumberOutput - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficient writing of numeric values
    NumberOutput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     

    O

    outputInt(int, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    outputLong(long, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.csv
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    parseDouble(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    parseInt(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Fast method for parsing integers that are known to fit into regular 32-bit signed int type.
    parseLong(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    PLACEHOLDER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    Q

    quoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    R

    RawValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    read() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readResolve() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing Builder that can be used to create modified schema.
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    removeArrayElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    removeEldestEntry(Map.Entry<K, V>) - Method in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    renameColumn(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reordersColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    replaceColumn(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportDeferredInvalid() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidInitial(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportInvalidOther(int, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportOverflowInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportOverflowLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedEOF(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedNumberChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    reset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    resetWithString(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     

    S

    schema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    schemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    schemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(JavaType, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(Class<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(TypeReference<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaWithHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    setAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
    setAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(int, char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate array element values.
    setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate column values.
    setColumnType(int, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    setEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional escaping of characters in quoted String values.
    setLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setLineSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setOutputEscapes(int[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    setQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional quoting of values.
    setReorderColumns(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Use in combination with setUseHeader.
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    setSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
    setStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    SimpleTokenWriteContext - Class in com.fasterxml.jackson.dataformat.csv.impl
    Intermediate base context; for 2.x copied within CSV format codebase, in 3.0 will be part of jackson-core
    SimpleTokenWriteContext(int, SimpleTokenWriteContext, DupDetector, Object) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for finding out how many columns this schema defines.
    size() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    skipFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    skipLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to blindly skip a single line of content, without considering aspects like quoting or escaping.
    skipLinesWhenNeeded() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    optionally skip lines that are empty or are comments, depending on the feature activated in the parser
    skipsFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    sortedBy(String...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument.
    sortedBy(Comparator<String>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
    startNewLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to handle details of starting a new line, which may include skipping a linefeed.
    STATE_DOC_END - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
    STATE_DOC_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Initial state before anything is read from document.
    STATE_IN_ARRAY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
    STATE_MISSING_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_MISSING_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose `null` value token as a value for "missing" column; see INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_NAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which value matching field name will be returned.
    STATE_NEXT_ENTRY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
    STATE_RECORD_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
    STATE_SKIP_EXTRA_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
    STATE_UNNAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
    std - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    strictHeaders() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    T

    TextBuffer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficiently aggregating parsed and decoded textual content
    TextBuffer(BufferRecycler) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    TextValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    toString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    toString(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    toString(float) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    TRUE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    typedSchemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    typedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(JavaType, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(Class<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(TypeReference<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    useHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    usesEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.csv.impl
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(IOContext, InputStream, boolean, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Efficient UTF-8 backed writer.
    UTF8Writer(IOContext, OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns an array containing the constants of this enum type, in the order they are declared.
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     

    W

    withAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate whether "hash comments" are allowed for document described by this schema.
    withAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnReordering(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the column reordering flag
    withColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`.
    withComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" ARE allowed for document described by this schema.
    withDupDetector(DupDetector) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    withElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    withEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
    withLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" are NOT allowed for document described by this schema.
    withoutEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
    withoutQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    withSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the strict headers flag
    withType(CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    write(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeColumnName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Method that writer is to call before it writes a field name.
    writeNonEscaped(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNull(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeOmittedField(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     

    _

    _addSchemaProperties(CsvSchema.Builder, AnnotationIntrospector, boolean, JavaType, NameTransformer, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _addToArray(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _addToArray(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _allowComments - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _append(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _arrayContents - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Accumulated contents of an array cell, if any
    _arrayElements - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Additional counter that indicates number of value entries in the array.
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _arrayValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Contents of the cell, to be split into distinct array values.
    _arrayValueStart - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Pointer to the first character of the next array value to return.
    _autoCloseInput - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _bigEndian - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We will hold on to decoded binary data, for duration of current event, so that multiple calls to CsvParser.getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
    _buffer(int, BufferedValue) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _buffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    And if output comes in shuffled order we will need to do bit of ordering.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _bytesPerChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _cfgAlwaysQuoteEmptyStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgAlwaysQuoteStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgColumnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgControlCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeControlCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeQuoteCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgIncludeMissingTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMaxQuoteCheckChars - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMinSafeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
    _cfgNullValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgOptimalQuoting - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
    _cfgQuoteCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgQuoteCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _characterEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _charsWritten - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Let's keep track of how many bytes have been output, may prove useful when debugging.
    _checkIndex(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _childToRecycle - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether parser is closed or not.
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _codec - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Number of columns defined by schema.
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _columnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _columnIndex - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Index of the column we are exposing
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Column definitions, needed for optional header and/or mapping of field names to column positions.
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _columnsByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _context - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _createContext(Object, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(IOContext, Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _csvGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Name of the field of which value is to be written; only used for OBJECT contexts
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    String value for the current column, if accessed.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _currInputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
    _currInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current row location of current point in input buffer, starting from 1, if available.
    _currInputRowStart - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current index of the first character of the current row in input buffer.
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _determineType(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _dups - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _encodingFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Bit-flag for general-purpose on/off features.
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _feature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _features - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Bitflag for general-purpose on/off features.
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvGenerator.Features enabled, as bitmask.
    _formatParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvParser.Features enabled, as bitmask.
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _getCharDesc(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _gotFieldId - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Marker used to indicate that we just wrote a field name and now expect a value to write
    _handleArrayValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleExtraColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when an extraneous column value is found.
    _handleFirstLine - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag that indicates that we need to write header line, if one is needed.
    _handleFirstLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _handleLF() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _handleMissingColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when end of row occurs before finding values for all schema-specified columns.
    _handleMissingName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleMissingValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNextEntry() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleObjectRowEnd() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called to handle details of state update when end of logical record occurs.
    _handleRecordStart() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleStartDoc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to handle details of initializing things to return the very first token.
    _handleUnnamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _in - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Index of character after last available one in the buffer.
    _inputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Pointer to next available character in buffer
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input stream that can be used for reading more content, if one in use.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    I/O context for this reader.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _lastBuffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of the last buffered value
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _maxEntries - Variable in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    _maxSpecialChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Maximum of quote character, linefeeds (\r and \n), escape character.
    _mayNeedQuotes(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
    _needsQuotingLoose(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: final since checking is not expected to be changed here; override calling method (_mayNeedQuotes) instead, if necessary.
    _needsQuotingLoose(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _nextChar() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextColumnByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Index of column that we will be getting next, based on field name call that was made.
    _nextColumnToWrite - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of column we expect to write next
    _nextQuotedString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextUnquotedString(char[], int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nonPojoType(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _nullValueAsString - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _numberBigDecimal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberBigInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberDouble - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberLong - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numTypesValid - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Bitfield that indicates which numeric representations have been calculated for the current type
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Intermediate buffer in which contents are buffered before being written using CsvEncoder._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Offset to index after the last valid index in CsvEncoder._outputBuffer.
    _outputEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Currently active set of output escape code definitions (whether and how to escape or not).
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Pointer to the next available char position in CsvEncoder._outputBuffer
    _owner - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Unfortunate back reference, needed for error reporting
    _parent - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Parent context for this context; null for root context.
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that will parse actual numeric value out of a syntactically valid number value.
    _parsingContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Information about parser context, context in which the next token is to be parsed (root, array, object).
    _pendingLF - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Thing that actually reads the CSV content
    _readHeaderLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to process the expected header line
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _reportCsvMappingError(String, Object...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportError(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method for reporting low-level decoding (parsing) problems
    _reportMappingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportParsingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _reportUnexpectedCsvChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Definition of columns being written, if available.
    _schema - Variable in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Definition of columns being read.
    _schemaFor(JavaType, LRUMap<JavaType, CsvSchema>, boolean, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _schemaFor(JavaType, LRUMap<JavaType, CsvSchema>, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Deprecated.
    _separatorChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipBlankLines - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipCommentLines() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipLeadingSpace() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipUntilEndOfLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _skipValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag set when property to write is unknown, and the matching value is to be skipped quietly.
    _skipWithin - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    When skipping output (for "unknown" output), outermost write context where skipping should occur
    _startArray(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _state - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Current logical state of the parser; one of STATE_ constants.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _tokenInputCol - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
    _tokenInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input row on which current token starts, 1-based
    _tokenInputTotal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Total number of bytes/characters read before start of current token.
    _tokenWriteContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _trimSpaces - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
    _typedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
    _unescape() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _untypedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
    _validArrayElementSeparator(String) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _withFeature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _writeQuoted(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuoted(String, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    A B C D E F G H I L M N O P Q R S T U V W _ 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/index.html ================================================ Jackson-dataformat-CSV 2.11.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/csv/2.11/overview-frame.html ================================================ Overview List (Jackson-dataformat-CSV 2.11.0 API)

     

    ================================================ FILE: docs/javadoc/csv/2.11/overview-summary.html ================================================ Overview (Jackson-dataformat-CSV 2.11.0 API)

    Jackson-dataformat-CSV 2.11.0 API

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-CSV 2.11.0 API)

    Hierarchy For All Packages

    Package Hierarchies:

    Class Hierarchy

    Enum Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/package-list ================================================ com.fasterxml.jackson.dataformat.csv com.fasterxml.jackson.dataformat.csv.impl ================================================ FILE: docs/javadoc/csv/2.11/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/csv/2.11/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-CSV 2.11.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.csv

      • Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes extends com.fasterxml.jackson.core.io.CharacterEscapes implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • escapes

            int[] escapes
      • Class com.fasterxml.jackson.dataformat.csv.CsvFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
        • Serialization Methods

          • readResolve

            protected Object readResolve()
            Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
        • Serialized Fields

          • _schema

            CsvSchema _schema
          • _csvParserFeatures

            int _csvParserFeatures
          • _csvGeneratorFeatures

            int _csvGeneratorFeatures
      • Class com.fasterxml.jackson.dataformat.csv.CsvMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _untypedSchemas

            LRUMap<K,V> _untypedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
          • _typedSchemas

            LRUMap<K,V> _typedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Class com.fasterxml.jackson.dataformat.csv.CsvMappingException extends com.fasterxml.jackson.databind.JsonMappingException implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _columns

            CsvSchema.Column[] _columns
            Column definitions, needed for optional header and/or mapping of field names to column positions.
          • _columnsByName

            Map<K,V> _columnsByName
          • _features

            int _features
            Bitflag for general-purpose on/off features.
            Since:
            2.5
          • _columnSeparator

            char _columnSeparator
          • _arrayElementSeparator

            String _arrayElementSeparator
          • _quoteChar

            int _quoteChar
          • _escapeChar

            int _escapeChar
          • _lineSeparator

            char[] _lineSeparator
          • _nullValue

            char[] _nullValue
            Since:
            2.5
          • _anyPropertyName

            String _anyPropertyName
            If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
            Since:
            2.7
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _name

            String _name
          • _index

            int _index
          • _type

            CsvSchema.ColumnType _type
          • _arrayElementSeparator

            String _arrayElementSeparator
            NOTE: type changed from `char` to `java.lang.String` in 2.7
            Since:
            2.5
          • _next

            CsvSchema.Column _next
            Link to the next column within schema, if one exists; null for the last column.
            Since:
            2.6
    • Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.11/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/csv/2.12/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-CSV 2.12.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.12/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-CSV 2.12.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvCharacterEscapes.html ================================================ CsvCharacterEscapes (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvCharacterEscapes

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes
        • com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
    • All Implemented Interfaces:
      Serializable


      public final class CsvCharacterEscapes
      extends com.fasterxml.jackson.core.io.CharacterEscapes
      Character escapes for CSV. There are multiple types of escapes.
      • no escapes - return all characters the same way they are defined
      • quote escape - return all characters except the quote character which is escaped (backwards compat)
      • control escape - same as CharTypes.get7BitOutputEscapes(), escape all control characters
      • control and quote escape - do not double up quote, escape control characters and quote.
      See Also:
      Serialized Form
      • Method Detail

        • controlQuoteEscapesInstance

          public static CsvCharacterEscapes controlQuoteEscapesInstance()
        • getEscapeSequence

          public com.fasterxml.jackson.core.SerializableString getEscapeSequence(int ch)
          Specified by:
          getEscapeSequence in class com.fasterxml.jackson.core.io.CharacterEscapes
        • getEscapeCodesForAscii

          public int[] getEscapeCodesForAscii()
          Specified by:
          getEscapeCodesForAscii in class com.fasterxml.jackson.core.io.CharacterEscapes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvFactory.html ================================================ CsvFactory (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.csv.CsvFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_LF

          protected static final char[] DEFAULT_LF
        • DEFAULT_SCHEMA

          protected static final CsvSchema DEFAULT_SCHEMA
        • _csvParserFeatures

          protected int _csvParserFeatures
        • _csvGeneratorFeatures

          protected int _csvGeneratorFeatures
      • Constructor Detail

        • CsvFactory

          public CsvFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • CsvFactory

          public CsvFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • CsvFactory

          protected CsvFactory(CsvFactory src,
                               com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • rebuild

          public CsvFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static CsvFactoryBuilder builder()
          Main factory method to use for constructing CsvFactory instances with different configuration.
        • copy

          public CsvFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public CsvParser createParser(byte[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(byte[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out)
                                       throws IOException
          This method assumes use of UTF-8 for encoding.
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(File f,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(InputStream in,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(byte[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(Reader r,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(char[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt,
                                            boolean recyclable)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected CsvGenerator _createGenerator(Writer out,
                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                           throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected CsvGenerator _createUTF8Generator(OutputStream out,
                                                      com.fasterxml.jackson.core.io.IOContext ctxt)
                                               throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createContext

          protected com.fasterxml.jackson.core.io.IOContext _createContext(Object srcRef,
                                                                           boolean resourceManaged)
          Overrides:
          _createContext in class com.fasterxml.jackson.core.JsonFactory

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvFactoryBuilder.html ================================================ CsvFactoryBuilder (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvGenerator.Feature.html ================================================ CsvGenerator.Feature (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvGenerator.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<CsvGenerator.Feature>
      Enclosing class:
      CsvGenerator


      public static enum CsvGenerator.Feature
      extends Enum<CsvGenerator.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      • Enum Constant Detail

        • STRICT_CHECK_FOR_QUOTING

          public static final CsvGenerator.Feature STRICT_CHECK_FOR_QUOTING
          Feature that determines how much work is done before determining that a column value requires quoting: when set as true, full check is made to only use quoting when it is strictly necessary; but when false, a faster but more conservative check is made, and possibly quoting is used for values that might not need it. Trade-offs is basically between optimal/minimal quoting (true), and possibly faster handling (false). Faster check involves only checking first N characters of value, as well as possible looser checks. However: strict check can also be more efficient in some cases when it allows omitting quoting, so trade-off is not always simple.

          Note, however, that regardless setting, all values that need to be quoted will be: it is just that when set to false, other values may also be quoted (to avoid having to do more expensive checks).

          Default value is false for "loose" (approximate, conservative) checking.

          Since:
          2.4
        • OMIT_MISSING_TAIL_COLUMNS

          public static final CsvGenerator.Feature OMIT_MISSING_TAIL_COLUMNS
          Feature that determines whether columns without matching value may be omitted, when they are the last values of the row. If true, values and separators between values may be omitted, to slightly reduce length of the row; if false, separators need to stay in place and values are indicated by empty Strings.
          Since:
          2.4
        • ALWAYS_QUOTE_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_STRINGS
          Feature that determines whether values written as Strings (from java.lang.String valued POJO properties) should be forced to be quoted, regardless of whether they actually need this. Note that this feature has precedence over STRICT_CHECK_FOR_QUOTING, when both would be applicable.
          Since:
          2.5
        • ALWAYS_QUOTE_EMPTY_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_EMPTY_STRINGS
          Feature that determines whether values written as empty Strings (from java.lang.String valued POJO properties) should be forced to be quoted.
          Since:
          2.9
        • ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR
          Feature that determines whether quote characters within quoted String values are escaped using configured escape character, instead of being "doubled up" (that is: a quote character is written twice in a row).

          Default value is false so that quotes are doubled as necessary, not escaped.

          Since:
          2.9.3
        • ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR
          Feature that determines whether control characters (non-printable) are escaped using the configured escape character. This feature allows LF and CR characters to be output as
          \n
          and
          \r
          instead of being echoed out. This is a compatibility feature for some parsers that can not read such output back in.

          Default value is false so that control characters are echoed out (backwards compatible).

          Since:
          2.9.9
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static CsvGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvGenerator.Feature c : CsvGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvGenerator.html ================================================ CsvGenerator (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.csv.CsvGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class CsvGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Field Detail

        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        • _schema

          protected CsvSchema _schema
          Definition of columns being written, if available.
        • _tokenWriteContext

          protected SimpleTokenWriteContext _tokenWriteContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
          Since:
          2.11
        • _characterEscapes

          protected com.fasterxml.jackson.core.io.CharacterEscapes _characterEscapes
        • _handleFirstLine

          protected boolean _handleFirstLine
          Flag that indicates that we need to write header line, if one is needed. Used because schema may be specified after instance is constructed.
        • _nextColumnByName

          protected int _nextColumnByName
          Index of column that we will be getting next, based on field name call that was made.
        • _skipValue

          protected boolean _skipValue
          Flag set when property to write is unknown, and the matching value is to be skipped quietly.
          Since:
          2.5
        • _arraySeparator

          protected String _arraySeparator
          Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
          Since:
          2.5
        • _arrayContents

          protected StringBuilder _arrayContents
          Accumulated contents of an array cell, if any
        • _arrayElements

          protected int _arrayElements
          Additional counter that indicates number of value entries in the array. Needed because `null` entries do not add content, but need to be separated by array cell separator
          Since:
          2.7
        • _skipWithin

          protected SimpleTokenWriteContext _skipWithin
          When skipping output (for "unknown" output), outermost write context where skipping should occur
          Since:
          2.7
      • Constructor Detail

        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              Writer out,
                              CsvSchema schema)
          Since:
          2.4
        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              CsvEncoder csvWriter)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public CsvGenerator useDefaultPrettyPrinter()
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public CsvGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public SimpleTokenWriteContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • setCharacterEscapes

          public com.fasterxml.jackson.core.JsonGenerator setCharacterEscapes(com.fasterxml.jackson.core.io.CharacterEscapes esc)
          Overrides:
          setCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • getCharacterEscapes

          public com.fasterxml.jackson.core.io.CharacterEscapes getCharacterEscapes()
          Overrides:
          getCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeOmittedField

          public void writeOmittedField(String fieldName)
                                 throws IOException
          Overrides:
          writeOmittedField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _reportMappingError

          protected void _reportMappingError(String msg)
                                      throws com.fasterxml.jackson.core.JsonProcessingException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
          Since:
          2.7
        • _columnIndex

          protected final int _columnIndex()
        • finishRow

          protected void finishRow()
                            throws IOException
          Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
          Throws:
          IOException
        • _addToArray

          protected void _addToArray(String value)
        • _addToArray

          protected void _addToArray(char[] value)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvMapper.Builder.html ================================================ CsvMapper.Builder (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper.Builder

    • Enclosing class:
      CsvMapper


      public static class CsvMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<CsvMapper,CsvMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      Since:
      2.10
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Constructor Summary

        Constructors 
        Constructor and Description
        Builder(CsvMapper m) 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvMapper.html ================================================ CsvMapper (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _addSchemaProperties(CsvSchema.Builder builder, com.fasterxml.jackson.databind.AnnotationIntrospector intr, boolean typed, com.fasterxml.jackson.databind.JavaType pojoType, com.fasterxml.jackson.databind.util.NameTransformer unwrapper, Class<?> view) 
        protected CsvSchema.ColumnType _determineType(Class<?> propType) 
        protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t) 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas, boolean typed)
        Deprecated. 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas, boolean typed, Class<?> view) 
        static CsvMapper.Builder builder() 
        static CsvMapper.Builder builder(CsvFactory streamFactory) 
        CsvMapper configure(CsvGenerator.Feature f, boolean state) 
        CsvMapper configure(CsvParser.Feature f, boolean state) 
        CsvMapper copy() 
        static CsvMapper.Builder csvBuilder()
        Short-cut for:
        CsvMapper disable(CsvGenerator.Feature f) 
        CsvMapper disable(CsvParser.Feature f) 
        CsvMapper enable(CsvGenerator.Feature f) 
        CsvMapper enable(CsvParser.Feature f) 
        CsvFactory getFactory()
        Overridden with more specific type, since factory we have is always of type CsvFactory
        com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        CsvSchema schema()
        Convenience method that is same as
        CsvSchema schemaFor(Class<?> pojoType) 
        CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema schemaForWithView(Class<?> pojoType, Class<?> view) 
        CsvSchema schemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType, Class<?> view) 
        CsvSchema schemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef, Class<?> view) 
        CsvSchema schemaWithHeader()
        Convenience method that is same as
        CsvSchema typedSchemaFor(Class<?> pojoType) 
        CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema typedSchemaForWithView(Class<?> pojoType, Class<?> view) 
        CsvSchema typedSchemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType, Class<?> view) 
        CsvSchema typedSchemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef, Class<?> view) 
        com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
      • Field Detail

        • _untypedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • _typedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Constructor Detail

        • CsvMapper

          public CsvMapper()
        • CsvMapper

          protected CsvMapper(CsvMapper src)
          Copy-constructor, mostly used to support copy().

          NOTE: ObjectMapper had this method since 2.1.

          Since:
          2.5
      • Method Detail

        • csvBuilder

          public static CsvMapper.Builder csvBuilder()
          Short-cut for:
             return builder(new CsvFactory());
          
          Since:
          2.10
        • copy

          public CsvMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
          Since:
          2.5
        • getFactory

          public CsvFactory getFactory()
          Overridden with more specific type, since factory we have is always of type CsvFactory
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(schemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no CSV types can be mapped to arrays or Collections)
        • readerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • writerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(schemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no root-level CSV types can be mapped to arrays or Collections)
        • writerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • schemaWithHeader

          public CsvSchema schemaWithHeader()
          Convenience method that is same as
             CsvSchema.emptySchema().withHeader();
          
          and returns a CsvSchema instance that uses default configuration with additional setting that the first content line contains intended column names.
          Since:
          2.5
        • schema

          public CsvSchema schema()
          Convenience method that is same as
             CsvSchema.emptySchema()
          
          that is, returns an "empty" Schema; one with default values and no column definitions.
          Since:
          2.5
        • schemaFor

          public CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition will not be strictly typed (that is, all columns are just defined to be exposed as String tokens).
        • schemaForWithView

          public CsvSchema schemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType,
                                             Class<?> view)
        • schemaForWithView

          public final CsvSchema schemaForWithView(Class<?> pojoType,
                                                   Class<?> view)
        • schemaFor

          public final CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • schemaForWithView

          public final CsvSchema schemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef,
                                                   Class<?> view)
        • typedSchemaFor

          public CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition WILL be strictly typed: that is, code will try to determine type limitations which may make parsing more efficient (especially for numeric types like java.lang.Integer).
        • typedSchemaForWithView

          public CsvSchema typedSchemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType,
                                                  Class<?> view)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(Class<?> pojoType)
        • typedSchemaForWithView

          public final CsvSchema typedSchemaForWithView(Class<?> pojoType,
                                                        Class<?> view)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • typedSchemaForWithView

          public final CsvSchema typedSchemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef,
                                                        Class<?> view)
        • _schemaFor

          protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType,
                                         LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas,
                                         boolean typed,
                                         Class<?> view)
        • _schemaFor

          @Deprecated
          protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType,
                                                     LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas,
                                                     boolean typed)
          Deprecated. 
        • _nonPojoType

          protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t)
        • _addSchemaProperties

          protected void _addSchemaProperties(CsvSchema.Builder builder,
                                              com.fasterxml.jackson.databind.AnnotationIntrospector intr,
                                              boolean typed,
                                              com.fasterxml.jackson.databind.JavaType pojoType,
                                              com.fasterxml.jackson.databind.util.NameTransformer unwrapper,
                                              Class<?> view)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvMappingException.html ================================================ CsvMappingException (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMappingException

    • All Implemented Interfaces:
      Serializable


      public class CsvMappingException
      extends com.fasterxml.jackson.databind.JsonMappingException
      Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.
      Since:
      2.9
      See Also:
      Serialized Form

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvParser.Feature.html ================================================ CsvParser.Feature (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvParser.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<CsvParser.Feature>
      Enclosing class:
      CsvParser


      public static enum CsvParser.Feature
      extends Enum<CsvParser.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for CSV parsers
      • Enum Constant Detail

        • TRIM_SPACES

          public static final CsvParser.Feature TRIM_SPACES
          Feature determines whether spaces around separator characters (commas) are to be automatically trimmed before being reported or not. Note that this does NOT force trimming of possible white space from within double-quoted values, but only those surrounding unquoted values (white space outside of double-quotes is never included regardless of trimming).

          Default value is false, as per RFC-4180.

        • WRAP_AS_ARRAY

          public static final CsvParser.Feature WRAP_AS_ARRAY
          Feature that determines how stream of records (usually CSV lines, but sometimes multiple lines when linefeeds are included in quoted values) is exposed: either as a sequence of Objects (false), or as an Array of Objects (true). Using stream of Objects is convenient when using ObjectMapper.readValues(...) and array of Objects convenient when binding to Lists or arrays of values.

          Default value is false, meaning that by default a CSV document is exposed as a sequence of root-level Object entries.

        • IGNORE_TRAILING_UNMAPPABLE

          public static final CsvParser.Feature IGNORE_TRAILING_UNMAPPABLE
          Feature that allows ignoring of unmappable "extra" columns; that is, values for columns that appear after columns for which types are defined. When disabled, an exception is thrown for such column values, but if enabled, they are silently ignored.

          Feature is disabled by default.

          Since:
          2.7
        • SKIP_EMPTY_LINES

          public static final CsvParser.Feature SKIP_EMPTY_LINES
          Feature that allows skipping input lines that are completely empty or blank (composed only of whitespace), instead of being decoded as lines of just a single column with an empty/blank String value (or, of being decoded as lines of just a single column with empty String value (or, depending on binding, `null`).

          Feature is disabled by default.

          Since:
          2.10
        • ALLOW_TRAILING_COMMA

          public static final CsvParser.Feature ALLOW_TRAILING_COMMA
          Feature that allows there to be a trailing single extraneous data column that is empty. When this feature is disabled, any extraneous column, regardless of content will cause an exception to be thrown. Disabling this feature is only useful when IGNORE_TRAILING_UNMAPPABLE is also disabled.
        • ALLOW_COMMENTS

          public static final CsvParser.Feature ALLOW_COMMENTS
          Feature that allows accepting "hash comments" by default, similar to CsvSchema.withAllowComments(boolean). If enabled, such comments are by default allowed on all columns of all documents.
          Since:
          2.10
        • FAIL_ON_MISSING_COLUMNS

          public static final CsvParser.Feature FAIL_ON_MISSING_COLUMNS
          Feature that allows failing (with a CsvMappingException) in cases where number of column values encountered is less than number of columns declared in active schema ("missing columns").

          Note that this feature has precedence over INSERT_NULLS_FOR_MISSING_COLUMNS

          Feature is disabled by default.

          Since:
          2.9
        • INSERT_NULLS_FOR_MISSING_COLUMNS

          public static final CsvParser.Feature INSERT_NULLS_FOR_MISSING_COLUMNS
          Feature that allows "inserting" virtual key / `null` value pairs in case a row contains fewer columns than declared by configured schema. This typically has the effect of forcing an explicit `null` assigment (or corresponding "null value", if so configured) at databinding level. If disabled, no extra work is done and values for "missing" columns are not exposed as part of the token stream.

          Note that this feature is only considered if FAIL_ON_MISSING_COLUMNS is disabled.

          Feature is disabled by default.

          Since:
          2.9
        • EMPTY_STRING_AS_NULL

          public static final CsvParser.Feature EMPTY_STRING_AS_NULL
          Feature that enables coercing an empty String to `null` Feature is disabled by default
      • Method Detail

        • values

          public static CsvParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvParser.Feature c : CsvParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvParser.html ================================================ CsvParser (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class CsvParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.

      Implementation is based on a state-machine that pulls information using CsvDecoder.

      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvParser.Feature
        Enumeration that defines all togglable features for CSV parsers
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _arraySeparator 
        protected String _arrayValue
        Contents of the cell, to be split into distinct array values.
        protected int _arrayValueStart
        Pointer to the first character of the next array value to return.
        protected byte[] _binaryValue
        We will hold on to decoded binary data, for duration of current event, so that multiple calls to getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _cfgEmptyStringAsNull 
        protected int _columnCount
        Number of columns defined by schema.
        protected int _columnIndex
        Index of the column we are exposing
        protected String _currentName
        Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        protected String _currentValue
        String value for the current column, if accessed.
        protected int _formatFeatures 
        protected String _nullValue 
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
        Information about parser context, context in which the next token is to be parsed (root, array, object).
        protected CsvDecoder _reader
        Thing that actually reads the CSV content
        protected CsvSchema _schema
        Definition of columns being read.
        protected int _state
        Current logical state of the parser; one of STATE_ constants.
        protected TextBuffer _textBuffer
        Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        protected static int STATE_DOC_END
        State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
        protected static int STATE_DOC_START
        Initial state before anything is read from document.
        protected static int STATE_IN_ARRAY
        State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
        protected static int STATE_MISSING_NAME
        State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_MISSING_VALUE
        State in which we should expose `null` value token as a value for "missing" column; see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_NAMED_VALUE
        State in which value matching field name will be returned.
        protected static int STATE_NEXT_ENTRY
        State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
        protected static int STATE_RECORD_START
        State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
        protected static int STATE_SKIP_EXTRA_COLUMNS
        State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
        protected static int STATE_UNNAMED_VALUE
        State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
        protected static com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
        CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvParser(CsvIOContext ctxt, int stdFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Field Detail

        • STREAM_READ_CAPABILITIES

          protected static final com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
          CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
          Since:
          2.12
        • STATE_DOC_START

          protected static final int STATE_DOC_START
          Initial state before anything is read from document.
          See Also:
          Constant Field Values
        • STATE_RECORD_START

          protected static final int STATE_RECORD_START
          State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
          See Also:
          Constant Field Values
        • STATE_NEXT_ENTRY

          protected static final int STATE_NEXT_ENTRY
          State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
          See Also:
          Constant Field Values
        • STATE_NAMED_VALUE

          protected static final int STATE_NAMED_VALUE
          State in which value matching field name will be returned.
          See Also:
          Constant Field Values
        • STATE_UNNAMED_VALUE

          protected static final int STATE_UNNAMED_VALUE
          State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
          See Also:
          Constant Field Values
        • STATE_IN_ARRAY

          protected static final int STATE_IN_ARRAY
          State in which a column value has been determined to be of an array type, and will need to be split into multiple values. This can currently only occur for named values.
          Since:
          2.5
          See Also:
          Constant Field Values
        • STATE_SKIP_EXTRA_COLUMNS

          protected static final int STATE_SKIP_EXTRA_COLUMNS
          State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
          Since:
          2.6
          See Also:
          Constant Field Values
        • STATE_DOC_END

          protected static final int STATE_DOC_END
          State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping. This step will loop, returning series of nulls if nextToken() is called multiple times.
          See Also:
          Constant Field Values
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _schema

          protected CsvSchema _schema
          Definition of columns being read. Initialized to "empty" instance, which has default configuration settings.
        • _columnCount

          protected int _columnCount
          Number of columns defined by schema.
        • _cfgEmptyStringAsNull

          protected boolean _cfgEmptyStringAsNull
          Since:
          2.12
        • _parsingContext

          protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
          Information about parser context, context in which the next token is to be parsed (root, array, object).
        • _currentName

          protected String _currentName
          Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        • _currentValue

          protected String _currentValue
          String value for the current column, if accessed.
        • _columnIndex

          protected int _columnIndex
          Index of the column we are exposing
        • _state

          protected int _state
          Current logical state of the parser; one of STATE_ constants.
        • _arrayValueStart

          protected int _arrayValueStart
          Pointer to the first character of the next array value to return.
        • _arrayValue

          protected String _arrayValue
          Contents of the cell, to be split into distinct array values.
        • _arraySeparator

          protected String _arraySeparator
        • _nullValue

          protected String _nullValue
        • _reader

          protected final CsvDecoder _reader
          Thing that actually reads the CSV content
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
      • Constructor Detail

        • CsvParser

          public CsvParser(CsvIOContext ctxt,
                           int stdFeatures,
                           int csvFeatures,
                           com.fasterxml.jackson.core.ObjectCodec codec,
                           Reader reader)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • releaseBuffered

          public int releaseBuffered(Writer out)
                              throws IOException
          Overrides:
          releaseBuffered in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • enable

          public com.fasterxml.jackson.core.JsonParser enable(CsvParser.Feature f)
          Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
        • disable

          public com.fasterxml.jackson.core.JsonParser disable(CsvParser.Feature f)
          Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(CsvParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
        • getSchema

          public CsvSchema getSchema()
          Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • isExpectedStartArrayToken

          public boolean isExpectedStartArrayToken()
          We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
          Overrides:
          isExpectedStartArrayToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • isExpectedNumberIntToken

          public boolean isExpectedNumberIntToken()
          Overrides:
          isExpectedNumberIntToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextFieldName

          public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString str)
                                throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextFieldName

          public String nextFieldName()
                               throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextTextValue

          public String nextTextValue()
                               throws IOException
          Overrides:
          nextTextValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _readHeaderLine

          protected void _readHeaderLine()
                                  throws IOException
          Method called to process the expected header line
          Throws:
          IOException
        • _handleStartDoc

          protected com.fasterxml.jackson.core.JsonToken _handleStartDoc()
                                                                  throws IOException
          Method called to handle details of initializing things to return the very first token.
          Throws:
          IOException
        • _handleRecordStart

          protected com.fasterxml.jackson.core.JsonToken _handleRecordStart()
                                                                     throws IOException
          Throws:
          IOException
        • _handleNextEntry

          protected com.fasterxml.jackson.core.JsonToken _handleNextEntry()
                                                                   throws IOException
          Throws:
          IOException
        • _handleNamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleNamedValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleUnnamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleUnnamedValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleArrayValue

          protected com.fasterxml.jackson.core.JsonToken _handleArrayValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleExtraColumn

          protected com.fasterxml.jackson.core.JsonToken _handleExtraColumn(String value)
                                                                     throws IOException
          Helper method called when an extraneous column value is found. What happens then depends on configuration, but there are three main choices: ignore value (and rest of line); expose extra value as "any property" using configured name, or throw an exception.
          Throws:
          IOException
          Since:
          2.7
        • _handleMissingColumns

          protected com.fasterxml.jackson.core.JsonToken _handleMissingColumns()
                                                                        throws IOException
          Helper method called when end of row occurs before finding values for all schema-specified columns.
          Throws:
          IOException
          Since:
          2.9
        • _handleMissingName

          protected com.fasterxml.jackson.core.JsonToken _handleMissingName()
                                                                     throws IOException
          Throws:
          IOException
        • _handleMissingValue

          protected com.fasterxml.jackson.core.JsonToken _handleMissingValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleObjectRowEnd

          protected final com.fasterxml.jackson.core.JsonToken _handleObjectRowEnd()
                                                                            throws IOException
          Helper method called to handle details of state update when end of logical record occurs.
          Throws:
          IOException
          Since:
          2.9
        • _skipUntilEndOfLine

          protected final com.fasterxml.jackson.core.JsonToken _skipUntilEndOfLine()
                                                                            throws IOException
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer w)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValueExact

          public Number getNumberValueExact()
                                     throws IOException
          Overrides:
          getNumberValueExact in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • _reportCsvMappingError

          public <T> T _reportCsvMappingError(String msg,
                                              Object... args)
                                       throws com.fasterxml.jackson.core.JsonProcessingException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
          Since:
          2.9
        • _reportParsingError

          public void _reportParsingError(String msg)
                                   throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _reportUnexpectedCsvChar

          public void _reportUnexpectedCsvChar(int ch,
                                               String msg)
                                        throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvSchema.Builder.html ================================================ CsvSchema.Builder (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Builder

    • Enclosing class:
      CsvSchema


      public static class CsvSchema.Builder
      extends Object
      Class used for building CsvSchema instances.
      • Field Detail

        • _encodingFeatures

          protected int _encodingFeatures
          Bit-flag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected char _columnSeparator
        • _arrayElementSeparator

          protected String _arrayElementSeparator
        • _anyPropertyName

          protected String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _lineSeparator

          protected char[] _lineSeparator
        • _nullValue

          protected char[] _nullValue
          Since:
          2.5
      • Constructor Detail

        • Builder

          public Builder()
        • Builder

          public Builder(CsvSchema src)
          "Copy" constructor which creates builder that has settings of given source schema
      • Method Detail

        • addColumn

          public CsvSchema.Builder addColumn(String name)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumn

          public CsvSchema.Builder addColumn(CsvSchema.Column c)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumnsFrom

          public CsvSchema.Builder addColumnsFrom(CsvSchema schema)
          NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
          Since:
          2.9
        • dropLastColumnIfEmpty

          public void dropLastColumnIfEmpty()
          Helper method called to drop the last collected column name if it is empty: called if {link CsvParser.Feature#ALLOW_TRAILING_COMMA} enabled to remove the last entry after being added initially.
          Since:
          2.11.2
        • removeArrayElementSeparator

          public CsvSchema.Builder removeArrayElementSeparator(int index)
        • size

          public int size()
        • hasColumn

          public boolean hasColumn(String name)

          NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).

          Since:
          2.9
        • setUseHeader

          public CsvSchema.Builder setUseHeader(boolean b)
          Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
        • setReorderColumns

          public CsvSchema.Builder setReorderColumns(boolean b)
          Use in combination with setUseHeader. When use header flag is is set, this setting will reorder the columns defined in this schema to match the order set by the header.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setStrictHeaders

          public CsvSchema.Builder setStrictHeaders(boolean b)
          Use in combination with setUseHeader(boolean). When `strict-headers` is set, encoder will ensure the headers are in the order of the schema; if order differs, an exception is thrown.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setSkipFirstDataRow

          public CsvSchema.Builder setSkipFirstDataRow(boolean b)
          Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
        • setAllowComments

          public CsvSchema.Builder setAllowComments(boolean b)
          Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
          Since:
          2.5
        • _feature

          protected final void _feature(int feature,
                                        boolean state)
        • setColumnSeparator

          public CsvSchema.Builder setColumnSeparator(char c)
          Method for specifying character used to separate column values. Default is comma (',').
        • setArrayElementSeparator

          public CsvSchema.Builder setArrayElementSeparator(String separator)
          Method for specifying character used to separate array element values. Default value is semicolon (";")
          Since:
          2.7
        • disableArrayElementSeparator

          public CsvSchema.Builder disableArrayElementSeparator()
          Since:
          2.7
        • setQuoteChar

          public CsvSchema.Builder setQuoteChar(char c)
          Method for specifying character used for optional quoting of values. Default is double-quote ('"').
        • setEscapeChar

          public CsvSchema.Builder setEscapeChar(char c)
          Method for specifying character used for optional escaping of characters in quoted String values. Default is "not used", meaning that no escaping used.
        • disableEscapeChar

          public CsvSchema.Builder disableEscapeChar()
          Method for specifying that no escape character is to be used with CSV documents this schema defines.
        • _checkIndex

          protected void _checkIndex(int index)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvSchema.Column.html ================================================ CsvSchema.Column (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Column

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvSchema.ColumnType.html ================================================ CsvSchema.ColumnType (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvSchema.ColumnType

      • Enum Constant Summary

        Enum Constants 
        Enum Constant and Description
        ARRAY
        Value will be a multi-value sequence, separated by array element separator.
        BOOLEAN
        Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null).
        NUMBER
        Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null.
        NUMBER_OR_STRING
        Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match.
        STRING
        Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.
        STRING_OR_LITERAL
        Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
      • Enum Constant Detail

        • STRING

          public static final CsvSchema.ColumnType STRING
          Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.

          Note that this type allows coercion into array, if higher level application calls JsonParser.isExpectedStartArrayToken(), unlike more explicit types.

        • STRING_OR_LITERAL

          public static final CsvSchema.ColumnType STRING_OR_LITERAL
          Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
        • NUMBER

          public static final CsvSchema.ColumnType NUMBER
          Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null. Values are also trimmed (leading/trailing white space) Other non-numeric Strings may cause parsing exception.
        • NUMBER_OR_STRING

          public static final CsvSchema.ColumnType NUMBER_OR_STRING
          Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match. Values are also trimmed (leading/trailing white space)
        • BOOLEAN

          public static final CsvSchema.ColumnType BOOLEAN
          Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null). Values are trimmed (leading/trailing white space). Values other than indicated above may result in an exception.
          Since:
          2.5
        • ARRAY

          public static final CsvSchema.ColumnType ARRAY
          Value will be a multi-value sequence, separated by array element separator. Element type itself may be any scalar type (that is, number or String) and will not be optimized. Separator may be overridden on per-column basis.

          Note that this type is used for generic concept of multiple values, and not specifically to match Java arrays: data-binding may match such columns to Collections as well, or even other types as necessary.

          Since:
          2.5
      • Method Detail

        • values

          public static CsvSchema.ColumnType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvSchema.ColumnType c : CsvSchema.ColumnType.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvSchema.ColumnType valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/CsvSchema.html ================================================ CsvSchema (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable, Iterable<CsvSchema.Column>


      public class CsvSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Iterable<CsvSchema.Column>, Serializable
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write. Properties supported currently are:
      • columns (List of ColumnDef) [default: empty List]: Ordered list of columns (which may be empty, see below). Each column has name (mandatory) as well as type (optional; if not defined, defaults to "String"). Note that
      • useHeader (boolean) [default: false]: whether the first line of physical document defines column names (true) or not (false): if enabled, parser will take first-line values to define column names; and generator will output column names as the first line
      • quoteChar (char) [default: double-quote ('")]: character used for quoting values that contain quote characters or linefeeds.
      • columnSeparator (char) [default: comma (',')]: character used to separate values. Other commonly used values include tab ('\t') and pipe ('|')
      • arrayElementSeparator (String) [default: semicolon (";")]: string used to separate array elements.
      • lineSeparator (String) [default: "\n"]: character used to separate data rows. Only used by generator; parser accepts three standard linefeeds ("\r", "\r\n", "\n").
      • escapeChar (int) [default: -1 meaning "none"]: character, if any, used to escape values. Most commonly defined as backslash ('\'). Only used by parser; generator only uses quoting, including doubling up of quotes to indicate quote char itself.
      • skipFirstDataRow (boolean) [default: false]: whether the first data line (either first line of the document, if useHeader=false, or second, if useHeader=true) should be completely ignored by parser. Needed to support CSV-like file formats that include additional non-data content before real data begins (specifically some database dumps do this)
      • nullValue (String) [default: "" (empty String)]: When asked to write Java `null`, this String value will be used instead.
        With 2.6, value will also be recognized during value reads.
      • strictHeaders (boolean) [default: false] (added in Jackson 2.7): whether names of columns defined in the schema MUST match with actual declaration from the header row (if header row handling enabled): if true, they must be and an exception if thrown if order differs: if false, no verification is performed.

      Note that schemas without any columns are legal, but if no columns are added, behavior of parser/generator is usually different and content will be exposed as logical Arrays instead of Objects.

      There are 4 ways to create CsvSchema instances:

      See Also:
      Serialized Form
      • Field Detail

        • ENCODING_FEATURE_USE_HEADER

          protected static final int ENCODING_FEATURE_USE_HEADER
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_SKIP_FIRST_DATA_ROW

          protected static final int ENCODING_FEATURE_SKIP_FIRST_DATA_ROW
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_ALLOW_COMMENTS

          protected static final int ENCODING_FEATURE_ALLOW_COMMENTS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_REORDER_COLUMNS

          protected static final int ENCODING_FEATURE_REORDER_COLUMNS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_STRICT_HEADERS

          protected static final int ENCODING_FEATURE_STRICT_HEADERS
          See Also:
          Constant Field Values
        • DEFAULT_ENCODING_FEATURES

          protected static final int DEFAULT_ENCODING_FEATURES
          See Also:
          Constant Field Values
        • NO_CHARS

          protected static final char[] NO_CHARS
        • DEFAULT_COLUMN_SEPARATOR

          public static final char DEFAULT_COLUMN_SEPARATOR
          Default separator for column values is comma (hence "Comma-Separated Values")
          See Also:
          Constant Field Values
        • DEFAULT_ARRAY_ELEMENT_SEPARATOR

          public static final String DEFAULT_ARRAY_ELEMENT_SEPARATOR
          Default separator for array elements within a column value is semicolon.
          See Also:
          Constant Field Values
        • NO_ARRAY_ELEMENT_SEPARATOR

          public static final String NO_ARRAY_ELEMENT_SEPARATOR
          Marker for the case where no array element separator is used
          See Also:
          Constant Field Values
        • DEFAULT_ANY_PROPERTY_NAME

          public static final String DEFAULT_ANY_PROPERTY_NAME
          By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
          Since:
          2.7
        • DEFAULT_NULL_VALUE

          public static final char[] DEFAULT_NULL_VALUE
          By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls). To use automatic coercion on reading, null value must be set explicitly to empty String ("").

          NOTE: before 2.6, this value default to empty char[]; changed to Java null in 2.6.

        • DEFAULT_ESCAPE_CHAR

          public static final int DEFAULT_ESCAPE_CHAR
          By default, no escape character is used -- this is denoted by int value that does not map to a valid character
          See Also:
          Constant Field Values
        • DEFAULT_LINEFEED

          public static final char[] DEFAULT_LINEFEED
        • _columns

          protected final CsvSchema.Column[] _columns
          Column definitions, needed for optional header and/or mapping of field names to column positions.
        • _features

          protected int _features
          Bitflag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected final char _columnSeparator
        • _arrayElementSeparator

          protected final String _arrayElementSeparator
        • _quoteChar

          protected final int _quoteChar
        • _escapeChar

          protected final int _escapeChar
        • _lineSeparator

          protected final char[] _lineSeparator
        • _nullValue

          protected final char[] _nullValue
          Since:
          2.5
        • _nullValueAsString

          protected transient String _nullValueAsString
        • _anyPropertyName

          protected final String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
      • Constructor Detail

        • CsvSchema

          public CsvSchema(CsvSchema.Column[] columns,
                           int features,
                           char columnSeparator,
                           int quoteChar,
                           int escapeChar,
                           char[] lineSeparator,
                           String arrayElementSeparator,
                           char[] nullValue,
                           String anyPropertyName)
          Since:
          2.7
        • CsvSchema

          protected CsvSchema(CsvSchema.Column[] columns,
                              int features,
                              char columnSeparator,
                              int quoteChar,
                              int escapeChar,
                              char[] lineSeparator,
                              String arrayElementSeparator,
                              char[] nullValue,
                              Map<String,CsvSchema.Column> columnsByName,
                              String anyPropertyName)
          Copy constructor used for creating variants using withXxx() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              CsvSchema.Column[] columns)
          Copy constructor used for creating variants using sortedBy() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              int features)
          Copy constructor used for creating variants for on/off features
          Since:
          2.5
      • Method Detail

        • emptySchema

          public static CsvSchema emptySchema()
          Accessor for creating a "default" CSV schema instance, with following settings:
          • Does NOT use header line
          • Uses double quotes ('"') for quoting of field values (if necessary)
          • Uses comma (',') as the field separator
          • Uses Unix linefeed ('\n') as row separator
          • Does NOT use any escape characters
          • Does NOT have any columns defined
        • rebuild

          public CsvSchema.Builder rebuild()
          Helper method for constructing Builder that can be used to create modified schema.
        • withUseHeader

          public CsvSchema withUseHeader(boolean state)
        • withColumnReordering

          public CsvSchema withColumnReordering(boolean state)
          Returns a clone of this instance by changing or setting the column reordering flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the column reordering feature.
          Since:
          2.7
        • withStrictHeaders

          public CsvSchema withStrictHeaders(boolean state)
          Returns a clone of this instance by changing or setting the strict headers flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the strict headers feature.
          Since:
          2.7
        • withHeader

          public CsvSchema withHeader()
          Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
        • withoutHeader

          public CsvSchema withoutHeader()
          Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
        • withSkipFirstDataRow

          public CsvSchema withSkipFirstDataRow(boolean state)
        • withAllowComments

          public CsvSchema withAllowComments(boolean state)
          Method to indicate whether "hash comments" are allowed for document described by this schema.
          Since:
          2.5
        • withComments

          public CsvSchema withComments()
          Method to indicate that "hash comments" ARE allowed for document described by this schema.
          Since:
          2.5
        • withoutComments

          public CsvSchema withoutComments()
          Method to indicate that "hash comments" are NOT allowed for document described by this schema.
          Since:
          2.5
        • _withFeature

          protected CsvSchema _withFeature(int feature,
                                           boolean state)
        • withColumnSeparator

          public CsvSchema withColumnSeparator(char sep)
        • withQuoteChar

          public CsvSchema withQuoteChar(char c)
        • withoutQuoteChar

          public CsvSchema withoutQuoteChar()
        • withEscapeChar

          public CsvSchema withEscapeChar(char c)
        • withoutEscapeChar

          public CsvSchema withoutEscapeChar()
        • withArrayElementSeparator

          public CsvSchema withArrayElementSeparator(String separator)
          Since:
          2.7
        • withoutArrayElementSeparator

          public CsvSchema withoutArrayElementSeparator()
          Since:
          2.5
        • withoutColumns

          public CsvSchema withoutColumns()
        • withColumnsFrom

          public CsvSchema withColumnsFrom(CsvSchema toAppend)
          Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`. All settings aside from column sets are copied from `this` instance.

          As with all `withXxx()` methods this method never modifies `this` but either returns it unmodified (if no new columns found from `toAppend`), or constructs a new instance and returns that.

          Since:
          2.9
        • withAnyPropertyName

          public CsvSchema withAnyPropertyName(String name)
          Since:
          2.7
        • sortedBy

          public CsvSchema sortedBy(String... columnNames)
          Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument. Columns not listed in argument will be sorted after those within list, using existing ordering.

          For example, schema that has columns:

          "a", "d", "c", "b"
          
          ordered with schema.sortedBy("a", "b"); would result instance that columns in order:
          "a", "b", "d", "c"
          
          Since:
          2.4
        • sortedBy

          public CsvSchema sortedBy(Comparator<String> cmp)
          Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
          Since:
          2.4
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • usesHeader

          public boolean usesHeader()
        • reordersColumns

          public boolean reordersColumns()
        • skipsFirstDataRow

          public boolean skipsFirstDataRow()
        • allowsComments

          public boolean allowsComments()
        • strictHeaders

          public boolean strictHeaders()
        • getColumnSeparator

          public char getColumnSeparator()
        • getArrayElementSeparator

          public String getArrayElementSeparator()
        • getQuoteChar

          public int getQuoteChar()
        • getEscapeChar

          public int getEscapeChar()
        • getLineSeparator

          public char[] getLineSeparator()
        • getNullValue

          public char[] getNullValue()
          Returns:
          Null value defined, as char array, if one is defined to be recognized; Java null if not.
          Since:
          2.5
        • getNullValueOrEmpty

          public char[] getNullValueOrEmpty()
          Same as getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
          Since:
          2.6
        • getNullValueString

          public String getNullValueString()
          Since:
          2.6
        • usesQuoteChar

          public boolean usesQuoteChar()
        • usesEscapeChar

          public boolean usesEscapeChar()
        • hasArrayElementSeparator

          public boolean hasArrayElementSeparator()
          Since:
          2.5
        • getAnyPropertyName

          public String getAnyPropertyName()
          Since:
          2.7
        • size

          public int size()
          Accessor for finding out how many columns this schema defines.
          Returns:
          Number of columns this schema defines
        • column

          public CsvSchema.Column column(int index)
          Accessor for column at specified index (0-based); index having to be within
              0 <= index < size()
          
        • columnName

          public String columnName(int index)
          Since:
          2.6
        • column

          public CsvSchema.Column column(String name,
                                         int probableIndex)
          Optimized variant where a hint is given as to likely index of the column name.
          Since:
          2.6
        • getColumnDesc

          public String getColumnDesc()
          Method for getting description of column definitions in developer-readable form
        • _validArrayElementSeparator

          protected static String _validArrayElementSeparator(String sep)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvCharacterEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactory (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactory

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvMappingException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMappingException (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMappingException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser.Feature (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser.Feature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Column.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Column

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.ColumnType.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.PackageVersion (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.csv.PackageVersion

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.BooleanValue.html ================================================ BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.BooleanValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.DoubleValue.html ================================================ BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.DoubleValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.IntValue.html ================================================ BufferedValue.IntValue (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.IntValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.LongValue.html ================================================ BufferedValue.LongValue (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.LongValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.NullValue.html ================================================ BufferedValue.NullValue (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.NullValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.RawValue.html ================================================ BufferedValue.RawValue (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.RawValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.TextValue.html ================================================ BufferedValue.TextValue (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.TextValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.html ================================================ BufferedValue (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/CsvDecoder.html ================================================ CsvDecoder (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvDecoder



    • public class CsvDecoder
      extends Object
      Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
      • Field Detail

        • _owner

          protected final CsvParser _owner
          Unfortunate back reference, needed for error reporting
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
          I/O context for this reader. It handles buffer allocation for the reader.
        • _inputSource

          protected Reader _inputSource
          Input stream that can be used for reading more content, if one in use. May be null, if input comes just as a full buffer, or if the stream has been closed.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.

          If it is not, it also means that parser can NOT modify underlying buffer.

        • _autoCloseInput

          protected boolean _autoCloseInput
        • _trimSpaces

          protected boolean _trimSpaces
          Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
        • _allowComments

          protected boolean _allowComments
        • _skipBlankLines

          protected boolean _skipBlankLines
          Since:
          2.10.1
        • _maxSpecialChar

          protected int _maxSpecialChar
          Maximum of quote character, linefeeds (\r and \n), escape character.
        • _separatorChar

          protected int _separatorChar
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _inputBuffer

          protected char[] _inputBuffer
          Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
        • _inputPtr

          protected int _inputPtr
          Pointer to next available character in buffer
        • _inputEnd

          protected int _inputEnd
          Index of character after last available one in the buffer.
        • _pendingLF

          protected int _pendingLF
          Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
        • _closed

          protected boolean _closed
          Flag that indicates whether parser is closed or not. Gets set when parser is either closed by explicit call (close()) or when end-of-input is reached.
        • _currInputProcessed

          protected long _currInputProcessed
          Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
        • _currInputRow

          protected int _currInputRow
          Current row location of current point in input buffer, starting from 1, if available.
        • _currInputRowStart

          protected int _currInputRowStart
          Current index of the first character of the current row in input buffer. Needed to calculate column position, if necessary; benefit of not having column itself is that this only has to be updated once per line.
        • _tokenInputTotal

          protected long _tokenInputTotal
          Total number of bytes/characters read before start of current token. For big (gigabyte-sized) sizes are possible, needs to be long, unlike pointers and sizes related to in-memory buffers.
        • _tokenInputRow

          protected int _tokenInputRow
          Input row on which current token starts, 1-based
        • _tokenInputCol

          protected int _tokenInputCol
          Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
        • _numTypesValid

          protected int _numTypesValid
          Bitfield that indicates which numeric representations have been calculated for the current type
        • _numberInt

          protected int _numberInt
        • _numberLong

          protected long _numberLong
        • _numberDouble

          protected double _numberDouble
        • _numberBigInt

          protected BigInteger _numberBigInt
        • _numberBigDecimal

          protected BigDecimal _numberBigDecimal
      • Constructor Detail

        • CsvDecoder

          public CsvDecoder(CsvParser owner,
                            com.fasterxml.jackson.core.io.IOContext ctxt,
                            Reader r,
                            CsvSchema schema,
                            TextBuffer textBuffer,
                            int stdFeatures,
                            int csvFeatures)
      • Method Detail

        • setSchema

          public void setSchema(CsvSchema schema)
        • overrideFormatFeatures

          public void overrideFormatFeatures(int csvFeatures)
          Since:
          2.7
        • getInputSource

          public Object getInputSource()
        • isClosed

          public boolean isClosed()
        • childArrayContext

          public com.fasterxml.jackson.core.json.JsonReadContext childArrayContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • childObjectContext

          public com.fasterxml.jackson.core.json.JsonReadContext childObjectContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
        • getCurrentRow

          public final int getCurrentRow()
        • getCurrentColumn

          public final int getCurrentColumn()
        • getTokenCharacterOffset

          protected final long getTokenCharacterOffset()
        • getTokenLineNr

          protected final int getTokenLineNr()
        • getTokenColumnNr

          protected final int getTokenColumnNr()
        • getText

          public String getText()
        • hasMoreInput

          public boolean hasMoreInput()
                               throws IOException
          Method that can be called to see if there is at least one more character to be parsed.
          Throws:
          IOException
        • startNewLine

          public boolean startNewLine()
                               throws IOException
          Method called to handle details of starting a new line, which may include skipping a linefeed.
          Returns:
          True if there is a new data line to handle; false if not
          Throws:
          IOException
        • skipLinesWhenNeeded

          public boolean skipLinesWhenNeeded()
                                      throws IOException
          optionally skip lines that are empty or are comments, depending on the feature activated in the parser
          Returns:
          false if the end of input was reached
          Throws:
          IOException
          Since:
          2.10.1
        • skipLine

          public boolean skipLine()
                           throws IOException
          Method called to blindly skip a single line of content, without considering aspects like quoting or escaping. Used currently simply to skip the first line of input document, if instructed to do so.
          Throws:
          IOException
        • nextString

          public String nextString()
                            throws IOException
          Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
          Returns:
          Column value if more found; null to indicate end of line of input
          Throws:
          IOException
        • nextStringOrLiteral

          public com.fasterxml.jackson.core.JsonToken nextStringOrLiteral()
                                                                   throws IOException
          Throws:
          IOException
        • nextNumber

          public com.fasterxml.jackson.core.JsonToken nextNumber()
                                                          throws IOException
          Throws:
          IOException
        • nextNumberOrString

          public com.fasterxml.jackson.core.JsonToken nextNumberOrString()
                                                                  throws IOException
          Throws:
          IOException
        • isExpectedNumberIntToken

          public boolean isExpectedNumberIntToken()
          Method used by CsvParser.isExpectedNumberIntToken() to coerce current token into integer number, if it looks like one.
          Since:
          2.12
        • getNumberValue

          public Number getNumberValue(boolean exact)
                                throws IOException
          Parameters:
          exact - Whether we should try to retain maximum precision or not; passed as true by getNumberValueExact(), and as false by regular getNumberValue).
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(boolean exactNumber)
                                     throws IOException
          Method that will parse actual numeric value out of a syntactically valid number value. Type it will parse into depends on whether it is a floating point number, as well as its magnitude: smallest legal type (of ones available) is used for efficiency.
          Parameters:
          exactNumber - Whether to try to retain the highest precision for floating-point values or not
          Throws:
          IOException
        • convertNumberToBigInteger

          protected void convertNumberToBigInteger()
                                            throws IOException
          Throws:
          IOException
        • convertNumberToBigDecimal

          protected void convertNumberToBigDecimal()
                                            throws IOException
          Throws:
          IOException
        • reportUnexpectedNumberChar

          protected void reportUnexpectedNumberChar(int ch,
                                                    String comment)
                                             throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • reportInvalidNumber

          protected void reportInvalidNumber(String msg)
                                      throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • constructError

          protected final com.fasterxml.jackson.core.JsonParseException constructError(String msg,
                                                                                       Throwable t)
        • _getCharDesc

          protected static final String _getCharDesc(int ch)
        • _reportError

          protected final void _reportError(String msg)
                                     throws com.fasterxml.jackson.core.JsonParseException
          Method for reporting low-level decoding (parsing) problems
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/CsvEncoder.html ================================================ CsvEncoder (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvEncoder



    • public class CsvEncoder
      extends Object
      Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
      • Field Detail

        • HEX_CHARS

          protected static final char[] HEX_CHARS
        • SHORT_WRITE

          protected static final int SHORT_WRITE
          As an optimization we try coalescing short writes into buffer; but pass longer directly.
          See Also:
          Constant Field Values
        • MAX_QUOTE_CHECK

          protected static final int MAX_QUOTE_CHECK
          Also: only do check for optional quotes for short values; longer ones will always be quoted.
          See Also:
          Constant Field Values
        • _outputEscapes

          protected int[] _outputEscapes
          Currently active set of output escape code definitions (whether and how to escape or not).
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _out

          protected final Writer _out
          Underlying Writer used for output.
        • _cfgColumnSeparator

          protected final char _cfgColumnSeparator
        • _cfgQuoteCharacter

          protected final int _cfgQuoteCharacter
        • _cfgEscapeCharacter

          protected final int _cfgEscapeCharacter
          Since:
          2.7
        • _cfgLineSeparator

          protected final char[] _cfgLineSeparator
        • _cfgNullValue

          protected final char[] _cfgNullValue
          Since:
          2.5
        • _cfgLineSeparatorLength

          protected final int _cfgLineSeparatorLength
        • _cfgMaxQuoteCheckChars

          protected int _cfgMaxQuoteCheckChars
        • _cfgMinSafeChar

          protected final int _cfgMinSafeChar
          Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
        • _csvFeatures

          protected int _csvFeatures
        • _cfgOptimalQuoting

          protected boolean _cfgOptimalQuoting
          Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
          Since:
          2.4
        • _cfgIncludeMissingTail

          protected boolean _cfgIncludeMissingTail
          Since:
          2.4
        • _cfgAlwaysQuoteStrings

          protected boolean _cfgAlwaysQuoteStrings
          Since:
          2.5
        • _cfgAlwaysQuoteEmptyStrings

          protected boolean _cfgAlwaysQuoteEmptyStrings
        • _cfgEscapeQuoteCharWithEscapeChar

          protected boolean _cfgEscapeQuoteCharWithEscapeChar
        • _cfgEscapeControlCharWithEscapeChar

          protected boolean _cfgEscapeControlCharWithEscapeChar
          Since:
          2.9.9
        • _cfgQuoteCharEscapeChar

          protected final char _cfgQuoteCharEscapeChar
        • _cfgControlCharEscapeChar

          protected final char _cfgControlCharEscapeChar
          Since:
          2.9.9
        • _columnCount

          protected int _columnCount
          Since:
          2.4
        • _nextColumnToWrite

          protected int _nextColumnToWrite
          Index of column we expect to write next
        • _buffered

          protected BufferedValue[] _buffered
          And if output comes in shuffled order we will need to do bit of ordering.
        • _lastBuffered

          protected int _lastBuffered
          Index of the last buffered value
        • _outputBuffer

          protected char[] _outputBuffer
          Intermediate buffer in which contents are buffered before being written using _out.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
        • _outputTail

          protected int _outputTail
          Pointer to the next available char position in _outputBuffer
        • _outputEnd

          protected final int _outputEnd
          Offset to index after the last valid index in _outputBuffer. Typically same as length of the buffer.
        • _charsWritten

          protected int _charsWritten
          Let's keep track of how many bytes have been output, may prove useful when debugging. This does not include bytes buffered in the output buffer, just bytes that have been written using underlying stream writer.
      • Constructor Detail

        • CsvEncoder

          public CsvEncoder(com.fasterxml.jackson.core.io.IOContext ctxt,
                            int csvFeatures,
                            Writer out,
                            CsvSchema schema)
      • Method Detail

        • overrideFormatFeatures

          public CsvEncoder overrideFormatFeatures(int feat)
        • setOutputEscapes

          public CsvEncoder setOutputEscapes(int[] esc)
        • getOutputTarget

          public Object getOutputTarget()
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
        • nextColumnIndex

          public int nextColumnIndex()
        • write

          public final void write(int columnIndex,
                                  char[] ch,
                                  int offset,
                                  int len)
                           throws IOException
          Throws:
          IOException
        • _writeQuotedAndEscaped

          protected void _writeQuotedAndEscaped(String text,
                                                char q,
                                                char esc,
                                                int i)
                                         throws IOException
          Throws:
          IOException
        • _mayNeedQuotes

          protected boolean _mayNeedQuotes(String value,
                                           int length)
          Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
        • _needsQuotingLoose

          protected final boolean _needsQuotingLoose(String value)

          NOTE: final since checking is not expected to be changed here; override calling method (_mayNeedQuotes) instead, if necessary.

          Since:
          2.4
        • _needsQuotingLoose

          protected final boolean _needsQuotingLoose(String value,
                                                     int esc)
        • _needsQuotingStrict

          protected boolean _needsQuotingStrict(String value)
          Since:
          2.4
        • _needsQuotingStrict

          protected boolean _needsQuotingStrict(String value,
                                                int esc)
          Since:
          2.7
        • _releaseBuffers

          public void _releaseBuffers()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/CsvIOContext.html ================================================ CsvIOContext (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvIOContext

    • java.lang.Object
      • com.fasterxml.jackson.core.io.IOContext
        • com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext


    • public class CsvIOContext
      extends com.fasterxml.jackson.core.io.IOContext
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.io.IOContext

          _base64Buffer, _bufferRecycler, _concatCBuffer, _encoding, _managedResource, _nameCopyBuffer, _readIOBuffer, _sourceRef, _tokenCBuffer, _writeEncodingBuffer
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br, Object sourceRef, boolean managedResource) 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        TextBuffer csvTextBuffer() 
        • Methods inherited from class com.fasterxml.jackson.core.io.IOContext

          _verifyAlloc, _verifyRelease, _verifyRelease, allocBase64Buffer, allocBase64Buffer, allocConcatBuffer, allocNameCopyBuffer, allocReadIOBuffer, allocReadIOBuffer, allocTokenBuffer, allocTokenBuffer, allocWriteEncodingBuffer, allocWriteEncodingBuffer, constructTextBuffer, getEncoding, getSourceReference, isResourceManaged, releaseBase64Buffer, releaseConcatBuffer, releaseNameCopyBuffer, releaseReadIOBuffer, releaseTokenBuffer, releaseWriteEncodingBuffer, setEncoding, withEncoding
      • Constructor Detail

        • CsvIOContext

          public CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br,
                              Object sourceRef,
                              boolean managedResource)
      • Method Detail

        • csvTextBuffer

          public TextBuffer csvTextBuffer()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/CsvParserBootstrapper.html ================================================ CsvParserBootstrapper (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvParserBootstrapper

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper


    • public final class CsvParserBootstrapper
      extends Object
      This class is used to determine the encoding of byte stream that is to contain CSV document. Since there is no real specification for how this should work with CSV, it will be based on rules used with JSON (which themselves are similar to those used with XML); main points are to check for BOM first, then look for multi-byted fixed-length encodings (UTF-16, UTF-32). And finally, if neither found, must decide between most likely alternatives, UTF-8 and Latin-1.
      • Field Detail

        • _context

          protected final com.fasterxml.jackson.core.io.IOContext _context
        • _codec

          protected final com.fasterxml.jackson.core.ObjectCodec _codec
        • _inputBuffer

          protected final byte[] _inputBuffer
        • _inputProcessed

          protected int _inputProcessed
          Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.

          Note: includes possible BOMs, if those were part of the input.

        • _bigEndian

          protected boolean _bigEndian
        • _bytesPerChar

          protected int _bytesPerChar
      • Constructor Detail

        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       InputStream in)
        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       byte[] inputBuffer,
                                       int inputStart,
                                       int inputLen)
      • Method Detail

        • hasCSVFormat

          public static com.fasterxml.jackson.core.format.MatchStrength hasCSVFormat(com.fasterxml.jackson.core.format.InputAccessor acc,
                                                                                     int quoteChar,
                                                                                     char separatorChar)
                                                                              throws IOException
          Current implementation is not as thorough as one used by other data formats like JSON. But it should work, for now, and can be improved as necessary.
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/LRUMap.html ================================================ LRUMap (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class LRUMap<K,V>

      • Field Detail

        • _maxEntries

          protected final int _maxEntries
      • Constructor Detail

        • LRUMap

          public LRUMap(int initialEntries,
                        int maxEntries)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/NumberInput.html ================================================ NumberInput (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberInput



    • public final class NumberInput
      extends Object
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        static String NASTY_SMALL_DOUBLE
        Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
      • Constructor Summary

        Constructors 
        Constructor and Description
        NumberInput() 
      • Field Detail

        • NASTY_SMALL_DOUBLE

          public static final String NASTY_SMALL_DOUBLE
          Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
          See Also:
          Constant Field Values
      • Constructor Detail

        • NumberInput

          public NumberInput()
      • Method Detail

        • parseInt

          public static final int parseInt(char[] digitChars,
                                           int offset,
                                           int len)
          Fast method for parsing integers that are known to fit into regular 32-bit signed int type. This means that length is between 1 and 9 digits (inclusive)

          Note: public to let unit tests call it

        • parseLong

          public static final long parseLong(char[] digitChars,
                                             int offset,
                                             int len)
        • inLongRange

          public static final boolean inLongRange(char[] digitChars,
                                                  int offset,
                                                  int len,
                                                  boolean negative)
          Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not. Note that input String must NOT contain leading minus sign (even if 'negative' is set to true).
          Parameters:
          negative - Whether original number had a minus sign (which is NOT passed to this method) or not

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/NumberOutput.html ================================================ NumberOutput (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberOutput



    • public final class NumberOutput
      extends Object
      Helper class for efficient writing of numeric values

      NOTE: modified from Jackson Core's similar functionality

      • Constructor Detail

        • NumberOutput

          public NumberOutput()
      • Method Detail

        • outputInt

          public static int outputInt(int value,
                                      char[] buffer,
                                      int offset)
          Returns:
          Offset within buffer after outputting int
        • outputLong

          public static int outputLong(long value,
                                       char[] buffer,
                                       int offset)
          Returns:
          Offset within buffer after outputting int
        • toString

          public static String toString(double value)
        • toString

          public static String toString(float value)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/SimpleTokenWriteContext.html ================================================ SimpleTokenWriteContext (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class SimpleTokenWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext


    • public final class SimpleTokenWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      Intermediate base context; for 2.x copied within CSV format codebase, in 3.0 will be part of jackson-core
      Since:
      2.11
      • Field Detail

        • _dups

          protected com.fasterxml.jackson.core.json.DupDetector _dups
        • _currentName

          protected String _currentName
          Name of the field of which value is to be written; only used for OBJECT contexts
        • _currentValue

          protected Object _currentValue
        • _gotFieldId

          protected boolean _gotFieldId
          Marker used to indicate that we just wrote a field name and now expect a value to write
      • Constructor Detail

        • SimpleTokenWriteContext

          protected SimpleTokenWriteContext(int type,
                                            SimpleTokenWriteContext parent,
                                            com.fasterxml.jackson.core.json.DupDetector dups,
                                            Object currentValue)
      • Method Detail

        • withDupDetector

          public SimpleTokenWriteContext withDupDetector(com.fasterxml.jackson.core.json.DupDetector dups)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • createRootContext

          public static SimpleTokenWriteContext createRootContext(com.fasterxml.jackson.core.json.DupDetector dd)
        • getParent

          public final SimpleTokenWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • hasCurrentName

          public boolean hasCurrentName()
          Overrides:
          hasCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • clearAndGetParent

          public SimpleTokenWriteContext clearAndGetParent()
          Method that can be used to both clear the accumulated references (specifically value set with setCurrentValue(Object)) that should not be retained, and returns parent (as would getParent() do). Typically called when closing the active context when encountering JsonToken.END_ARRAY or JsonToken.END_OBJECT.
        • getDupDetector

          public com.fasterxml.jackson.core.json.DupDetector getDupDetector()
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Method that writer is to call before it writes a field name.
          Returns:
          Ok if name writing should proceed
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/TextBuffer.html ================================================ TextBuffer (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class TextBuffer



    • public final class TextBuffer
      extends Object
      Helper class for efficiently aggregating parsed and decoded textual content
      • Constructor Detail

        • TextBuffer

          public TextBuffer(com.fasterxml.jackson.core.util.BufferRecycler allocator)
      • Method Detail

        • releaseBuffers

          public void releaseBuffers()
        • reset

          public void reset()
        • resetWithString

          public void resetWithString(String value)
        • size

          public int size()
          Returns:
          Number of characters currently stored by this collector
        • getTextOffset

          public int getTextOffset()
        • hasTextAsCharacters

          public boolean hasTextAsCharacters()
        • getTextBuffer

          public char[] getTextBuffer()
        • contentsAsString

          public String contentsAsString()
        • contentsAsArray

          public char[] contentsAsArray()
        • looksLikeInt

          public boolean looksLikeInt()
        • ensureNotShared

          public void ensureNotShared()
          Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.
        • getCurrentSegment

          public char[] getCurrentSegment()
        • emptyAndGetCurrentSegment

          public final char[] emptyAndGetCurrentSegment()
        • getCurrentSegmentSize

          public int getCurrentSegmentSize()
        • finishAndReturn

          public String finishAndReturn(int lastSegmentEnd,
                                        boolean trimTrailingSpaces)
          Parameters:
          lastSegmentEnd - End offset in the currently active segment, could be 0 in the case of first character is delimiter or end-of-line
          trimTrailingSpaces - Whether trailing spaces should be trimmed or not
        • finishCurrentSegment

          public char[] finishCurrentSegment()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose)
      • Method Detail

        • canModifyBuffer

          protected final boolean canModifyBuffer()
          Method that can be used to see if we can actually modify the underlying buffer. This is the case if we are managing the buffer, but not if it was just given to us.
        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException
        • reportInvalidInitial

          protected void reportInvalidInitial(int mask,
                                              int outputDecoded)
                                       throws IOException
          Throws:
          IOException
        • reportInvalidOther

          protected void reportInvalidOther(int mask,
                                            int outputDecoded,
                                            int errorPosition)
                                     throws IOException
          Throws:
          IOException
        • reportUnexpectedEOF

          protected void reportUnexpectedEOF(int gotBytes,
                                             int needed)
                                      throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-CSV 2.12.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Writer

    • All Implemented Interfaces:
      Closeable, Flushable, Appendable, AutoCloseable


      public final class UTF8Writer
      extends Writer
      Efficient UTF-8 backed writer.

      Note: original implementation based on writer from Jackson core package; modified slightly, copied to reduce dependency to impl details.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.BooleanValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.DoubleValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.IntValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.LongValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.NullValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.RawValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.TextValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvDecoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvEncoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvIOContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvParserBootstrapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    No usage of com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/LRUMap.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.LRUMap (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.LRUMap

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberInput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberInput (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberOutput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/SimpleTokenWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/TextBuffer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.TextBuffer

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.12.0 API)

    com.fasterxml.jackson.dataformat.csv.impl

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv.impl Class Hierarchy (Jackson-dataformat-CSV 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.12.0 API)

    com.fasterxml.jackson.dataformat.csv

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.csv

    • Class Summary 
      Class Description
      CsvCharacterEscapes
      Character escapes for CSV.
      CsvFactory  
      CsvFactoryBuilder
      TSFBuilder implementation for constructing CsvFactory instances.
      CsvGenerator  
      CsvMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      CsvMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      CsvParser
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
      CsvSchema
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
      CsvSchema.Builder
      Class used for building CsvSchema instances.
      CsvSchema.Column
      Representation of info for a single column
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    • Enum Summary 
      Enum Description
      CsvGenerator.Feature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      CsvParser.Feature
      Enumeration that defines all togglable features for CSV parsers
      CsvSchema.ColumnType
      Enumeration that defines optional type indicators that can be passed with schema.
    • Exception Summary 
      Exception Description
      CsvMappingException
      Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv Class Hierarchy (Jackson-dataformat-CSV 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes (implements java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema (implements com.fasterxml.jackson.core.FormatSchema, java.lang.Iterable<T>, java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (implements java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.csv.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.databind.JsonMappingException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/com/fasterxml/jackson/dataformat/csv/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-CSV 2.12.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    • com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder 
      Modifier and Type Constant Field Value
      protected static final char CHAR_NULL 0
      protected static final int INT_0 48
      protected static final int INT_1 49
      protected static final int INT_2 50
      protected static final int INT_3 51
      protected static final int INT_4 52
      protected static final int INT_5 53
      protected static final int INT_6 54
      protected static final int INT_7 55
      protected static final int INT_8 56
      protected static final int INT_9 57
      protected static final int INT_DECIMAL_POINT 46
      protected static final int INT_e 101
      protected static final int INT_E 69
      protected static final int INT_MINUS 45
      protected static final int INT_PLUS 43
      protected static final int NR_BIGDECIMAL 16
      protected static final int NR_BIGINT 4
      protected static final int NR_DOUBLE 8
      protected static final int NR_INT 1
      protected static final int NR_LONG 2
      protected static final int NR_UNKNOWN 0
    • com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder 
      Modifier and Type Constant Field Value
      protected static final int MAX_QUOTE_CHECK 24
      protected static final int SHORT_WRITE 32
    • com.fasterxml.jackson.dataformat.csv.impl.NumberInput 
      Modifier and Type Constant Field Value
      public static final String NASTY_SMALL_DOUBLE "2.2250738585072012e-308"

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-CSV 2.12.0 API)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/help-doc.html ================================================ API Help (Jackson-dataformat-CSV 2.12.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/index-all.html ================================================ Index (Jackson-dataformat-CSV 2.12.0 API)
    A B C D E F G H I L M N O P Q R S T U V W _ 

    A

    addArrayColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addArrayColumn(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    addArrayColumn(String, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addBooleanColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(String, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<CsvSchema.Column>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<String>, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
    addNumberColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    allowsComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    append(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    appendColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendNull() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    B

    BooleanValue(boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    buffered(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(long) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedNull() - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedRaw(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class used for holding values for a while until output can proceed in expected order.
    BufferedValue() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue.BooleanValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.DoubleValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.IntValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.LongValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.NullValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.RawValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.TextValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Main factory method to use for constructing CsvFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    builder(CsvFactory) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    Builder(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    Builder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    Builder(CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    "Copy" constructor which creates builder that has settings of given source schema

    C

    canModifyBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method that can be used to see if we can actually modify the underlying buffer.
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CHAR_NULL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childArrayContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childObjectContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    clearAndGetParent() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Method that can be used to both clear the accumulated references (specifically value set with SimpleTokenWriteContext.setCurrentValue(Object)) that should not be retained, and returns parent (as would SimpleTokenWriteContext.getParent() do).
    clearColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    close(boolean, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    column(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for column at specified index (0-based); index having to be within
    column(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    column(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Optimized variant where a hint is given as to likely index of the column name.
    Column(int, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Deprecated.
    use variant where `arrayElementSep` is String
    Column(int, String, CsvSchema.ColumnType, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, int, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    columnName(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    com.fasterxml.jackson.dataformat.csv - package com.fasterxml.jackson.dataformat.csv
     
    com.fasterxml.jackson.dataformat.csv.impl - package com.fasterxml.jackson.dataformat.csv.impl
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified parser feature (check CsvParser.Feature for list of features)
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified generator feature (check CsvGenerator.Feature for list of features)
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
    constructError(String, Throwable) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    constructParser(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    contentsAsArray() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    contentsAsDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a BigDecimal.
    contentsAsDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a Double value.
    contentsAsString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    controlEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    controlQuoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    convertNumberToBigDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToBigInteger() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    createChildArrayContext(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    createChildObjectContext(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    This method assumes use of UTF-8 for encoding.
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createRootContext(DupDetector) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    csvBuilder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Short-cut for:
    CsvCharacterEscapes - Class in com.fasterxml.jackson.dataformat.csv
    Character escapes for CSV.
    CsvDecoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
    CsvDecoder(CsvParser, IOContext, Reader, CsvSchema, TextBuffer, int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    CsvEncoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
    CsvEncoder(IOContext, int, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvEncoder(CsvEncoder, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvFactory - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvFactory() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Default constructor used to create factory instances.
    CsvFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Constructors used by CsvFactoryBuilder for instantiation.
    CsvFactoryBuilder - Class in com.fasterxml.jackson.dataformat.csv
    TSFBuilder implementation for constructing CsvFactory instances.
    CsvFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvFactoryBuilder(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvGenerator - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvGenerator(IOContext, int, int, ObjectCodec, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator(IOContext, int, int, ObjectCodec, CsvEncoder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV writers (if any: currently none)
    CsvIOContext - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    CsvIOContext(BufferRecycler, Object, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     
    CsvMapper - Class in com.fasterxml.jackson.dataformat.csv
    Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
    CsvMapper() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Copy-constructor, mostly used to support CsvMapper.copy().
    CsvMapper.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
    CsvMappingException - Exception in com.fasterxml.jackson.dataformat.csv
    Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.
    CsvMappingException(CsvParser, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    CsvMappingException(CsvGenerator, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    CsvParser - Class in com.fasterxml.jackson.dataformat.csv
    JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
    CsvParser(CsvIOContext, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    CsvParser.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV parsers
    CsvParserBootstrapper - Class in com.fasterxml.jackson.dataformat.csv.impl
    This class is used to determine the encoding of byte stream that is to contain CSV document.
    CsvParserBootstrapper(IOContext, ObjectCodec, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvParserBootstrapper(IOContext, ObjectCodec, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvSchema - Class in com.fasterxml.jackson.dataformat.csv
    Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], int, char[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], Map<String, CsvSchema.Column>, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using withXxx() methods.
    CsvSchema(CsvSchema, CsvSchema.Column[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using sortedBy() methods.
    CsvSchema(CsvSchema, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants for on/off features
    CsvSchema.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Class used for building CsvSchema instances.
    CsvSchema.Column - Class in com.fasterxml.jackson.dataformat.csv
    Representation of info for a single column
    CsvSchema.ColumnType - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines optional type indicators that can be passed with schema.
    csvTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     

    D

    DEFAULT_ANY_PROPERTY_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
    DEFAULT_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for array elements within a column value is semicolon.
    DEFAULT_COLUMN_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for column values is comma (hence "Comma-Separated Values")
    DEFAULT_ENCODING_FEATURES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_ESCAPE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, no escape character is used -- this is denoted by int value that does not map to a valid character
    DEFAULT_LF - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    DEFAULT_LINEFEED - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_NULL_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls).
    DEFAULT_QUOTE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified parser features (check CsvParser.Feature for list of features)
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified generator feature (check CsvGenerator.Feature for list of features)
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    disable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
    disableArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    disableElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    disableEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying that no escape character is to be used with CSV documents this schema defines.
    disableQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    DoubleValue(double) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    dropLastColumnIfEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Helper method called to drop the last collected column name if it is empty: called if {link CsvParser.Feature#ALLOW_TRAILING_COMMA} enabled to remove the last entry after being added initially.

    E

    emptyAndGetCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for creating a "default" CSV schema instance, with following settings: Does NOT use header line Uses double quotes ('"') for quoting of field values (if necessary) Uses comma (',') as the field separator Uses Unix linefeed ('\n') as row separator Does NOT use any escape characters Does NOT have any columns defined
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified parser feature (check CsvParser.Feature for list of features)
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified generator features (check CsvGenerator.Feature for list of features)
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    enable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    ENCODING_FEATURE_ALLOW_COMMENTS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_REORDER_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_SKIP_FIRST_DATA_ROW - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_STRICT_HEADERS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_USE_HEADER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    endRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    ensureLoaded(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    ensureNotShared() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.

    F

    FALSE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    finishAndReturn(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    flush(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    FORMAT_NAME_CSV - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Name used to identify CSV format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    formatParserFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(CsvParser, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    from(CsvGenerator, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    fromCsvFeatures(int) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    G

    getAnyPropertyName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCharacterEscapes() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getColumnDesc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method for getting description of column definitions in developer-readable form
    getColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    getColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getCurrentColumn() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getCurrentRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentSegmentSize() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDupDetector() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getEscapeCodesForAscii() - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getEscapeSequence(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Overridden with more specific type, since factory we have is always of type CsvFactory
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getLineSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNextWithName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Access that returns same as CsvSchema.Column.getNext() iff name of that column is same as given name
    getNullValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNullValueOrEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Same as CsvSchema.getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
    getNullValueString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValueExact() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getSchema() - Method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTokenCharacterOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenColumnNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLineNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    H

    hasArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    hasColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).
    hasCSVFormat(InputAccessor, int, char) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current implementation is not as thorough as one used by other data formats like JSON.
    hasCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    hasMoreInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that can be called to see if there is at least one more character to be parsed.
    hasName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    hasTextAsCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    HEX_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    I

    inLongRange(char[], int, int, boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not.
    INT_0 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_1 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_2 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_3 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_4 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_5 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_6 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_7 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_8 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_9 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_DECIMAL_POINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_e - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_E - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_MINUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_PLUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    IntValue(int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Checked whether specified parser feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Check whether specified generator feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for checking whether specified CSV CsvParser.Feature is enabled.
    isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method used by CsvParser.isExpectedNumberIntToken() to coerce current token into integer number, if it looks like one.
    isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
    iterator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    L

    loadMore() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    LongValue(long) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    looksLikeInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    LRUMap<K,V> - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper for simple bounded LRU maps used for reusing lookup values.
    LRUMap(int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     

    M

    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    MAX_QUOTE_CHECK - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Also: only do check for optional quotes for short values; longer ones will always be quoted.
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    N

    NASTY_SMALL_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
    nextColumnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextFieldName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextNumber() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextNumberOrString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
    nextStringOrLiteral() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextTextValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    NO_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Marker for the case where no array element separator is used
    NO_BUFFERED - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    NO_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    NO_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    noEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    NR_BIGDECIMAL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_BIGINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_INT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_UNKNOWN - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NumberInput - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    NumberInput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    NumberOutput - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficient writing of numeric values
    NumberOutput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     

    O

    outputInt(int, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    outputLong(long, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.csv
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    parseDouble(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    parseInt(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Fast method for parsing integers that are known to fit into regular 32-bit signed int type.
    parseLong(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    PLACEHOLDER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    Q

    quoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    R

    RawValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    read() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readResolve() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing Builder that can be used to create modified schema.
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    removeArrayElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    removeEldestEntry(Map.Entry<K, V>) - Method in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    renameColumn(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reordersColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    replaceColumn(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportDeferredInvalid() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidInitial(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportInvalidOther(int, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportOverflowInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportOverflowLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedEOF(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedNumberChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    reset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    resetWithString(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     

    S

    schema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    schemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    schemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(JavaType, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(Class<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(TypeReference<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaWithHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    setAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
    setAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(int, char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate array element values.
    setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate column values.
    setColumnType(int, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    setEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional escaping of characters in quoted String values.
    setLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setLineSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setOutputEscapes(int[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    setQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional quoting of values.
    setReorderColumns(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Use in combination with setUseHeader.
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    setSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
    setStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    As an optimization we try coalescing short writes into buffer; but pass longer directly.
    SimpleTokenWriteContext - Class in com.fasterxml.jackson.dataformat.csv.impl
    Intermediate base context; for 2.x copied within CSV format codebase, in 3.0 will be part of jackson-core
    SimpleTokenWriteContext(int, SimpleTokenWriteContext, DupDetector, Object) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for finding out how many columns this schema defines.
    size() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    skipFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    skipLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to blindly skip a single line of content, without considering aspects like quoting or escaping.
    skipLinesWhenNeeded() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    optionally skip lines that are empty or are comments, depending on the feature activated in the parser
    skipsFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    sortedBy(String...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument.
    sortedBy(Comparator<String>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
    startNewLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to handle details of starting a new line, which may include skipping a linefeed.
    STATE_DOC_END - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
    STATE_DOC_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Initial state before anything is read from document.
    STATE_IN_ARRAY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
    STATE_MISSING_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_MISSING_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose `null` value token as a value for "missing" column; see INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_NAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which value matching field name will be returned.
    STATE_NEXT_ENTRY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
    STATE_RECORD_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
    STATE_SKIP_EXTRA_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
    STATE_UNNAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
    std - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    STREAM_READ_CAPABILITIES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
    strictHeaders() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    T

    TextBuffer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficiently aggregating parsed and decoded textual content
    TextBuffer(BufferRecycler) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    TextValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    toString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    toString(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    toString(float) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    TRUE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    typedSchemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    typedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(JavaType, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(Class<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(TypeReference<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    useHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    usesEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.csv.impl
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(IOContext, InputStream, boolean, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Efficient UTF-8 backed writer.
    UTF8Writer(IOContext, OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns an array containing the constants of this enum type, in the order they are declared.
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     

    W

    withAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate whether "hash comments" are allowed for document described by this schema.
    withAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnReordering(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the column reordering flag
    withColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`.
    withComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" ARE allowed for document described by this schema.
    withDupDetector(DupDetector) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    withElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    withEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
    withLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" are NOT allowed for document described by this schema.
    withoutEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
    withoutQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    withSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the strict headers flag
    withType(CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    write(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeColumnName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Method that writer is to call before it writes a field name.
    writeNonEscaped(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNull(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeOmittedField(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     

    _

    _addSchemaProperties(CsvSchema.Builder, AnnotationIntrospector, boolean, JavaType, NameTransformer, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _addToArray(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _addToArray(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _allowComments - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _append(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _arrayContents - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Accumulated contents of an array cell, if any
    _arrayElements - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Additional counter that indicates number of value entries in the array.
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _arrayValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Contents of the cell, to be split into distinct array values.
    _arrayValueStart - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Pointer to the first character of the next array value to return.
    _autoCloseInput - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _bigEndian - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We will hold on to decoded binary data, for duration of current event, so that multiple calls to CsvParser.getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
    _buffer(int, BufferedValue) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _buffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    And if output comes in shuffled order we will need to do bit of ordering.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _bytesPerChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _cfgAlwaysQuoteEmptyStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgAlwaysQuoteStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgColumnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgControlCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEmptyStringAsNull - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _cfgEscapeCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeControlCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeQuoteCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgIncludeMissingTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMaxQuoteCheckChars - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMinSafeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
    _cfgNullValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgOptimalQuoting - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
    _cfgQuoteCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgQuoteCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _characterEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _charsWritten - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Let's keep track of how many bytes have been output, may prove useful when debugging.
    _checkIndex(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _childToRecycle - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether parser is closed or not.
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _codec - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Number of columns defined by schema.
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _columnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _columnIndex - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Index of the column we are exposing
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Column definitions, needed for optional header and/or mapping of field names to column positions.
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _columnsByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _context - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _createContext(Object, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(IOContext, Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _csvGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Name of the field of which value is to be written; only used for OBJECT contexts
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    String value for the current column, if accessed.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _currInputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
    _currInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current row location of current point in input buffer, starting from 1, if available.
    _currInputRowStart - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current index of the first character of the current row in input buffer.
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _determineType(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _dups - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _encodingFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Bit-flag for general-purpose on/off features.
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _feature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _features - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Bitflag for general-purpose on/off features.
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvGenerator.Features enabled, as bitmask.
    _formatParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvParser.Features enabled, as bitmask.
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _getCharDesc(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _gotFieldId - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Marker used to indicate that we just wrote a field name and now expect a value to write
    _handleArrayValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleExtraColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when an extraneous column value is found.
    _handleFirstLine - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag that indicates that we need to write header line, if one is needed.
    _handleFirstLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _handleLF() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _handleMissingColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when end of row occurs before finding values for all schema-specified columns.
    _handleMissingName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleMissingValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNextEntry() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleObjectRowEnd() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called to handle details of state update when end of logical record occurs.
    _handleRecordStart() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleStartDoc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to handle details of initializing things to return the very first token.
    _handleUnnamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _in - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Index of character after last available one in the buffer.
    _inputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Pointer to next available character in buffer
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input stream that can be used for reading more content, if one in use.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    I/O context for this reader.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _lastBuffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of the last buffered value
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _maxEntries - Variable in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    _maxSpecialChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Maximum of quote character, linefeeds (\r and \n), escape character.
    _mayNeedQuotes(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
    _needsQuotingLoose(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: final since checking is not expected to be changed here; override calling method (_mayNeedQuotes) instead, if necessary.
    _needsQuotingLoose(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _nextChar() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextColumnByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Index of column that we will be getting next, based on field name call that was made.
    _nextColumnToWrite - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of column we expect to write next
    _nextQuotedString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextUnquotedString(char[], int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nonPojoType(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _nullValueAsString - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _numberBigDecimal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberBigInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberDouble - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberLong - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numTypesValid - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Bitfield that indicates which numeric representations have been calculated for the current type
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Intermediate buffer in which contents are buffered before being written using CsvEncoder._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Offset to index after the last valid index in CsvEncoder._outputBuffer.
    _outputEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Currently active set of output escape code definitions (whether and how to escape or not).
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Pointer to the next available char position in CsvEncoder._outputBuffer
    _owner - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Unfortunate back reference, needed for error reporting
    _parent - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Parent context for this context; null for root context.
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _parseNumericValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that will parse actual numeric value out of a syntactically valid number value.
    _parsingContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Information about parser context, context in which the next token is to be parsed (root, array, object).
    _pendingLF - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Thing that actually reads the CSV content
    _readHeaderLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to process the expected header line
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _reportCsvMappingError(String, Object...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportError(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method for reporting low-level decoding (parsing) problems
    _reportMappingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportParsingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _reportUnexpectedCsvChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Definition of columns being written, if available.
    _schema - Variable in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Definition of columns being read.
    _schemaFor(JavaType, LRUMap<JavaType, CsvSchema>, boolean, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _schemaFor(JavaType, LRUMap<JavaType, CsvSchema>, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Deprecated.
    _separatorChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipBlankLines - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipCommentLines() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipLeadingSpace() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipUntilEndOfLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _skipValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag set when property to write is unknown, and the matching value is to be skipped quietly.
    _skipWithin - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    When skipping output (for "unknown" output), outermost write context where skipping should occur
    _startArray(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _state - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Current logical state of the parser; one of STATE_ constants.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _tokenInputCol - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
    _tokenInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input row on which current token starts, 1-based
    _tokenInputTotal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Total number of bytes/characters read before start of current token.
    _tokenWriteContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _trimSpaces - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
    _typedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
    _unescape() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _untypedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
    _validArrayElementSeparator(String) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _withFeature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _writeQuoted(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuoted(String, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    A B C D E F G H I L M N O P Q R S T U V W _ 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/index.html ================================================ Jackson-dataformat-CSV 2.12.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/csv/2.12/overview-frame.html ================================================ Overview List (Jackson-dataformat-CSV 2.12.0 API)

     

    ================================================ FILE: docs/javadoc/csv/2.12/overview-summary.html ================================================ Overview (Jackson-dataformat-CSV 2.12.0 API)

    Jackson-dataformat-CSV 2.12.0 API

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-CSV 2.12.0 API)

    Hierarchy For All Packages

    Package Hierarchies:

    Class Hierarchy

    Enum Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/package-list ================================================ com.fasterxml.jackson.dataformat.csv com.fasterxml.jackson.dataformat.csv.impl ================================================ FILE: docs/javadoc/csv/2.12/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/csv/2.12/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-CSV 2.12.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.csv

      • Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes extends com.fasterxml.jackson.core.io.CharacterEscapes implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • escapes

            int[] escapes
      • Class com.fasterxml.jackson.dataformat.csv.CsvFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
        • Serialization Methods

          • readResolve

            protected Object readResolve()
            Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
        • Serialized Fields

          • _schema

            CsvSchema _schema
          • _csvParserFeatures

            int _csvParserFeatures
          • _csvGeneratorFeatures

            int _csvGeneratorFeatures
      • Class com.fasterxml.jackson.dataformat.csv.CsvMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _untypedSchemas

            LRUMap<K,V> _untypedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
          • _typedSchemas

            LRUMap<K,V> _typedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Class com.fasterxml.jackson.dataformat.csv.CsvMappingException extends com.fasterxml.jackson.databind.JsonMappingException implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _columns

            CsvSchema.Column[] _columns
            Column definitions, needed for optional header and/or mapping of field names to column positions.
          • _columnsByName

            Map<K,V> _columnsByName
          • _features

            int _features
            Bitflag for general-purpose on/off features.
            Since:
            2.5
          • _columnSeparator

            char _columnSeparator
          • _arrayElementSeparator

            String _arrayElementSeparator
          • _quoteChar

            int _quoteChar
          • _escapeChar

            int _escapeChar
          • _lineSeparator

            char[] _lineSeparator
          • _nullValue

            char[] _nullValue
            Since:
            2.5
          • _anyPropertyName

            String _anyPropertyName
            If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
            Since:
            2.7
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _name

            String _name
          • _index

            int _index
          • _type

            CsvSchema.ColumnType _type
          • _arrayElementSeparator

            String _arrayElementSeparator
            NOTE: type changed from `char` to `java.lang.String` in 2.7
            Since:
            2.5
          • _next

            CsvSchema.Column _next
            Link to the next column within schema, if one exists; null for the last column.
            Since:
            2.6
    • Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.12/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/csv/2.13/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-CSV 2.13.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.13/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-CSV 2.13.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvCharacterEscapes.html ================================================ CsvCharacterEscapes (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvCharacterEscapes

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes
        • com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
    • All Implemented Interfaces:
      Serializable


      public final class CsvCharacterEscapes
      extends com.fasterxml.jackson.core.io.CharacterEscapes
      Character escapes for CSV. There are multiple types of escapes.
      • no escapes - return all characters the same way they are defined
      • quote escape - return all characters except the quote character which is escaped (backwards compat)
      • control escape - same as CharTypes.get7BitOutputEscapes(), escape all control characters
      • control and quote escape - do not double up quote, escape control characters and quote.
      See Also:
      Serialized Form
      • Method Detail

        • controlQuoteEscapesInstance

          public static CsvCharacterEscapes controlQuoteEscapesInstance()
        • getEscapeSequence

          public com.fasterxml.jackson.core.SerializableString getEscapeSequence(int ch)
          Specified by:
          getEscapeSequence in class com.fasterxml.jackson.core.io.CharacterEscapes
        • getEscapeCodesForAscii

          public int[] getEscapeCodesForAscii()
          Specified by:
          getEscapeCodesForAscii in class com.fasterxml.jackson.core.io.CharacterEscapes

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvFactory.html ================================================ CsvFactory (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.csv.CsvFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_LF

          protected static final char[] DEFAULT_LF
        • DEFAULT_SCHEMA

          protected static final CsvSchema DEFAULT_SCHEMA
        • _csvParserFeatures

          protected int _csvParserFeatures
        • _csvGeneratorFeatures

          protected int _csvGeneratorFeatures
      • Constructor Detail

        • CsvFactory

          public CsvFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • CsvFactory

          public CsvFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • CsvFactory

          protected CsvFactory(CsvFactory src,
                               com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • rebuild

          public CsvFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static CsvFactoryBuilder builder()
          Main factory method to use for constructing CsvFactory instances with different configuration.
        • copy

          public CsvFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public CsvParser createParser(byte[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(byte[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out)
                                       throws IOException
          This method assumes use of UTF-8 for encoding.
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(File f,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(InputStream in,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(byte[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(Reader r,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(char[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt,
                                            boolean recyclable)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected CsvGenerator _createGenerator(Writer out,
                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                           throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected CsvGenerator _createUTF8Generator(OutputStream out,
                                                      com.fasterxml.jackson.core.io.IOContext ctxt)
                                               throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createContext

          protected com.fasterxml.jackson.core.io.IOContext _createContext(com.fasterxml.jackson.core.io.ContentReference contentRef,
                                                                           boolean resourceManaged)
          Overrides:
          _createContext in class com.fasterxml.jackson.core.JsonFactory

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvFactoryBuilder.html ================================================ CsvFactoryBuilder (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactoryBuilder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvGenerator.Feature.html ================================================ CsvGenerator.Feature (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvGenerator.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<CsvGenerator.Feature>
      Enclosing class:
      CsvGenerator


      public static enum CsvGenerator.Feature
      extends Enum<CsvGenerator.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      • Enum Constant Detail

        • STRICT_CHECK_FOR_QUOTING

          public static final CsvGenerator.Feature STRICT_CHECK_FOR_QUOTING
          Feature that determines how much work is done before determining that a column value requires quoting: when set as true, full check is made to only use quoting when it is strictly necessary; but when false, a faster but more conservative check is made, and possibly quoting is used for values that might not need it. Trade-offs is basically between optimal/minimal quoting (true), and possibly faster handling (false). Faster check involves only checking first N characters of value, as well as possible looser checks. However: strict check can also be more efficient in some cases when it allows omitting quoting, so trade-off is not always simple.

          Note, however, that regardless setting, all values that need to be quoted will be: it is just that when set to false, other values may also be quoted (to avoid having to do more expensive checks).

          Default value is false for "loose" (approximate, conservative) checking.

          Since:
          2.4
        • OMIT_MISSING_TAIL_COLUMNS

          public static final CsvGenerator.Feature OMIT_MISSING_TAIL_COLUMNS
          Feature that determines whether columns without matching value may be omitted, when they are the last values of the row. If true, values and separators between values may be omitted, to slightly reduce length of the row; if false, separators need to stay in place and values are indicated by empty Strings.
          Since:
          2.4
        • ALWAYS_QUOTE_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_STRINGS
          Feature that determines whether values written as Strings (from java.lang.String valued POJO properties) should be forced to be quoted, regardless of whether they actually need this. Note that this feature has precedence over STRICT_CHECK_FOR_QUOTING, when both would be applicable.
          Since:
          2.5
        • ALWAYS_QUOTE_EMPTY_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_EMPTY_STRINGS
          Feature that determines whether values written as empty Strings (from java.lang.String valued POJO properties) should be forced to be quoted.
          Since:
          2.9
        • ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR
          Feature that determines whether quote characters within quoted String values are escaped using configured escape character, instead of being "doubled up" (that is: a quote character is written twice in a row).

          Default value is false so that quotes are doubled as necessary, not escaped.

          Since:
          2.9.3
        • ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR
          Feature that determines whether control characters (non-printable) are escaped using the configured escape character. This feature allows LF and CR characters to be output as
          \n
          and
          \r
          instead of being echoed out. This is a compatibility feature for some parsers that can not read such output back in.

          Default value is false so that control characters are echoed out (backwards compatible).

          Since:
          2.9.9
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static CsvGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvGenerator.Feature c : CsvGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvGenerator.html ================================================ CsvGenerator (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.csv.CsvGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class CsvGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvGenerator.Feature
        Enumeration that defines all togglable features for CSV writers (if any: currently none)
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _arrayContents
        Accumulated contents of an array cell, if any
        protected int _arrayElements
        Additional counter that indicates number of value entries in the array.
        protected String _arraySeparator
        Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
        protected com.fasterxml.jackson.core.io.CharacterEscapes _characterEscapes 
        protected int _formatFeatures
        Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        protected boolean _handleFirstLine
        Flag that indicates that we need to write header line, if one is needed.
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected int _nextColumnByName
        Index of column that we will be getting next, based on field name call that was made.
        protected CsvSchema _schema
        Definition of columns being written, if available.
        protected boolean _skipValue
        Flag set when property to write is unknown, and the matching value is to be skipped quietly.
        protected SimpleTokenWriteContext _skipWithin
        When skipping output (for "unknown" output), outermost write context where skipping should occur
        protected SimpleTokenWriteContext _tokenWriteContext
        Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        protected CsvEncoder _writer 
        protected static long MAX_INT_AS_LONG 
        protected static long MIN_INT_AS_LONG 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter, DEFAULT_BINARY_WRITE_CAPABILITIES, DEFAULT_TEXTUAL_WRITE_CAPABILITIES, DEFAULT_WRITE_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, CsvEncoder csvWriter) 
        CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Writer out, CsvSchema schema) 
      • Field Detail

        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        • _schema

          protected CsvSchema _schema
          Definition of columns being written, if available.
        • _tokenWriteContext

          protected SimpleTokenWriteContext _tokenWriteContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
          Since:
          2.11
        • _characterEscapes

          protected com.fasterxml.jackson.core.io.CharacterEscapes _characterEscapes
        • _handleFirstLine

          protected boolean _handleFirstLine
          Flag that indicates that we need to write header line, if one is needed. Used because schema may be specified after instance is constructed.
        • _nextColumnByName

          protected int _nextColumnByName
          Index of column that we will be getting next, based on field name call that was made.
        • _skipValue

          protected boolean _skipValue
          Flag set when property to write is unknown, and the matching value is to be skipped quietly.
          Since:
          2.5
        • _arraySeparator

          protected String _arraySeparator
          Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
          Since:
          2.5
        • _arrayContents

          protected StringBuilder _arrayContents
          Accumulated contents of an array cell, if any
        • _arrayElements

          protected int _arrayElements
          Additional counter that indicates number of value entries in the array. Needed because `null` entries do not add content, but need to be separated by array cell separator
          Since:
          2.7
        • _skipWithin

          protected SimpleTokenWriteContext _skipWithin
          When skipping output (for "unknown" output), outermost write context where skipping should occur
          Since:
          2.7
      • Constructor Detail

        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              Writer out,
                              CsvSchema schema)
          Since:
          2.4
        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              CsvEncoder csvWriter)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public CsvGenerator useDefaultPrettyPrinter()
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public CsvGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public SimpleTokenWriteContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • setCharacterEscapes

          public com.fasterxml.jackson.core.JsonGenerator setCharacterEscapes(com.fasterxml.jackson.core.io.CharacterEscapes esc)
          Overrides:
          setCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • getCharacterEscapes

          public com.fasterxml.jackson.core.io.CharacterEscapes getCharacterEscapes()
          Overrides:
          getCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeOmittedField

          public void writeOmittedField(String fieldName)
                                 throws IOException
          Overrides:
          writeOmittedField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _reportMappingError

          protected void _reportMappingError(String msg)
                                      throws IOException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          IOException
          Since:
          2.7
        • _columnIndex

          protected final int _columnIndex()
        • finishRow

          protected void finishRow()
                            throws IOException
          Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
          Throws:
          IOException
        • _addToArray

          protected void _addToArray(String value)
        • _addToArray

          protected void _addToArray(char[] value)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvMapper.Builder.html ================================================ CsvMapper.Builder (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper.Builder

    • Enclosing class:
      CsvMapper


      public static class CsvMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<CsvMapper,CsvMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      Since:
      2.10
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Constructor Summary

        Constructors 
        Constructor and Description
        Builder(CsvMapper m) 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        CsvMapper.Builder configure(CsvGenerator.Feature f, boolean state) 
        CsvMapper.Builder configure(CsvParser.Feature f, boolean state) 
        CsvMapper.Builder disable(CsvGenerator.Feature... features) 
        CsvMapper.Builder disable(CsvParser.Feature... features) 
        CsvMapper.Builder enable(CsvGenerator.Feature... features) 
        CsvMapper.Builder enable(CsvParser.Feature... features) 
        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, accessorNaming, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, constructorDetector, deactivateDefaultTyping, defaultAttributes, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, removeMixIn, serializationInclusion, serializerFactory, setDefaultTyping, streamFactory, subtypeResolver, typeFactory, visibility, visibility, withCoercionConfig, withCoercionConfig, withCoercionConfigDefaults, withConfigOverride

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvMapper.html ================================================ CsvMapper (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _addSchemaProperties(CsvSchema.Builder builder, com.fasterxml.jackson.databind.AnnotationIntrospector intr, boolean typed, com.fasterxml.jackson.databind.JavaType pojoType, com.fasterxml.jackson.databind.util.NameTransformer unwrapper, Class<?> view) 
        protected CsvSchema.ColumnType _determineType(Class<?> propType) 
        protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t) 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas, boolean typed)
        Deprecated. 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas, boolean typed, Class<?> view) 
        static CsvMapper.Builder builder() 
        static CsvMapper.Builder builder(CsvFactory streamFactory) 
        CsvMapper configure(CsvGenerator.Feature f, boolean state) 
        CsvMapper configure(CsvParser.Feature f, boolean state) 
        CsvMapper copy() 
        static CsvMapper.Builder csvBuilder()
        Short-cut for:
        CsvMapper disable(CsvGenerator.Feature f) 
        CsvMapper disable(CsvParser.Feature f) 
        CsvMapper enable(CsvGenerator.Feature f) 
        CsvMapper enable(CsvParser.Feature f) 
        CsvFactory getFactory()
        Overridden with more specific type, since factory we have is always of type CsvFactory
        com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        CsvSchema schema()
        Convenience method that is same as
        CsvSchema schemaFor(Class<?> pojoType) 
        CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema schemaForWithView(Class<?> pojoType, Class<?> view) 
        CsvSchema schemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType, Class<?> view) 
        CsvSchema schemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef, Class<?> view) 
        CsvSchema schemaWithHeader()
        Convenience method that is same as
        CsvSchema typedSchemaFor(Class<?> pojoType) 
        CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema typedSchemaForWithView(Class<?> pojoType, Class<?> view) 
        CsvSchema typedSchemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType, Class<?> view) 
        CsvSchema typedSchemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef, Class<?> view) 
        com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultAttributes, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
        • Methods inherited from class com.fasterxml.jackson.core.ObjectCodec

          getJsonFactory
      • Field Detail

        • _untypedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • _typedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Constructor Detail

        • CsvMapper

          public CsvMapper()
        • CsvMapper

          protected CsvMapper(CsvMapper src)
          Copy-constructor, mostly used to support copy().

          NOTE: ObjectMapper had this method since 2.1.

          Since:
          2.5
      • Method Detail

        • csvBuilder

          public static CsvMapper.Builder csvBuilder()
          Short-cut for:
             return builder(new CsvFactory());
          
          Since:
          2.10
        • copy

          public CsvMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
          Since:
          2.5
        • getFactory

          public CsvFactory getFactory()
          Overridden with more specific type, since factory we have is always of type CsvFactory
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(schemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no CSV types can be mapped to arrays or Collections)
        • readerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • writerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(schemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no root-level CSV types can be mapped to arrays or Collections)
        • writerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • schemaWithHeader

          public CsvSchema schemaWithHeader()
          Convenience method that is same as
             CsvSchema.emptySchema().withHeader();
          
          and returns a CsvSchema instance that uses default configuration with additional setting that the first content line contains intended column names.
          Since:
          2.5
        • schema

          public CsvSchema schema()
          Convenience method that is same as
             CsvSchema.emptySchema()
          
          that is, returns an "empty" Schema; one with default values and no column definitions.
          Since:
          2.5
        • schemaFor

          public CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition will not be strictly typed (that is, all columns are just defined to be exposed as String tokens).
        • schemaForWithView

          public CsvSchema schemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType,
                                             Class<?> view)
        • schemaForWithView

          public final CsvSchema schemaForWithView(Class<?> pojoType,
                                                   Class<?> view)
        • schemaFor

          public final CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • schemaForWithView

          public final CsvSchema schemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef,
                                                   Class<?> view)
        • typedSchemaFor

          public CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition WILL be strictly typed: that is, code will try to determine type limitations which may make parsing more efficient (especially for numeric types like java.lang.Integer).
        • typedSchemaForWithView

          public CsvSchema typedSchemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType,
                                                  Class<?> view)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(Class<?> pojoType)
        • typedSchemaForWithView

          public final CsvSchema typedSchemaForWithView(Class<?> pojoType,
                                                        Class<?> view)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • typedSchemaForWithView

          public final CsvSchema typedSchemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef,
                                                        Class<?> view)
        • _schemaFor

          protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType,
                                         LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas,
                                         boolean typed,
                                         Class<?> view)
        • _schemaFor

          @Deprecated
          protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType,
                                                     LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas,
                                                     boolean typed)
          Deprecated. 
        • _nonPojoType

          protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t)
        • _addSchemaProperties

          protected void _addSchemaProperties(CsvSchema.Builder builder,
                                              com.fasterxml.jackson.databind.AnnotationIntrospector intr,
                                              boolean typed,
                                              com.fasterxml.jackson.databind.JavaType pojoType,
                                              com.fasterxml.jackson.databind.util.NameTransformer unwrapper,
                                              Class<?> view)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvMappingException.html ================================================ CsvMappingException (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMappingException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvParser.Feature.html ================================================ CsvParser.Feature (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvParser.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<CsvParser.Feature>
      Enclosing class:
      CsvParser


      public static enum CsvParser.Feature
      extends Enum<CsvParser.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for CSV parsers
      • Enum Constant Detail

        • TRIM_SPACES

          public static final CsvParser.Feature TRIM_SPACES
          Feature determines whether spaces around separator characters (commas) are to be automatically trimmed before being reported or not. Note that this does NOT force trimming of possible white space from within double-quoted values, but only those surrounding unquoted values (white space outside of double-quotes is never included regardless of trimming).

          Default value is false, as per RFC-4180.

        • WRAP_AS_ARRAY

          public static final CsvParser.Feature WRAP_AS_ARRAY
          Feature that determines how stream of records (usually CSV lines, but sometimes multiple lines when linefeeds are included in quoted values) is exposed: either as a sequence of Objects (false), or as an Array of Objects (true). Using stream of Objects is convenient when using ObjectMapper.readValues(...) and array of Objects convenient when binding to Lists or arrays of values.

          Default value is false, meaning that by default a CSV document is exposed as a sequence of root-level Object entries.

        • IGNORE_TRAILING_UNMAPPABLE

          public static final CsvParser.Feature IGNORE_TRAILING_UNMAPPABLE
          Feature that allows ignoring of unmappable "extra" columns; that is, values for columns that appear after columns for which types are defined. When disabled, an exception is thrown for such column values, but if enabled, they are silently ignored.

          Feature is disabled by default.

          Since:
          2.7
        • SKIP_EMPTY_LINES

          public static final CsvParser.Feature SKIP_EMPTY_LINES
          Feature that allows skipping input lines that are completely empty or blank (composed only of whitespace), instead of being decoded as lines of just a single column with an empty/blank String value (or, of being decoded as lines of just a single column with empty String value (or, depending on binding, `null`).

          Feature is disabled by default.

          Since:
          2.10
        • ALLOW_TRAILING_COMMA

          public static final CsvParser.Feature ALLOW_TRAILING_COMMA
          Feature that allows there to be a trailing single extraneous data column that is empty. When this feature is disabled, any extraneous column, regardless of content will cause an exception to be thrown. Disabling this feature is only useful when IGNORE_TRAILING_UNMAPPABLE is also disabled.
        • ALLOW_COMMENTS

          public static final CsvParser.Feature ALLOW_COMMENTS
          Feature that allows accepting "hash comments" by default, similar to CsvSchema.withAllowComments(boolean). If enabled, such comments are by default allowed on all columns of all documents.
          Since:
          2.10
        • FAIL_ON_MISSING_COLUMNS

          public static final CsvParser.Feature FAIL_ON_MISSING_COLUMNS
          Feature that allows failing (with a CsvReadException) in cases where number of column values encountered is less than number of columns declared in active schema ("missing columns").

          Note that this feature has precedence over INSERT_NULLS_FOR_MISSING_COLUMNS

          Feature is disabled by default.

          Since:
          2.9
        • INSERT_NULLS_FOR_MISSING_COLUMNS

          public static final CsvParser.Feature INSERT_NULLS_FOR_MISSING_COLUMNS
          Feature that allows "inserting" virtual key / `null` value pairs in case a row contains fewer columns than declared by configured schema. This typically has the effect of forcing an explicit `null` assigment (or corresponding "null value", if so configured) at databinding level. If disabled, no extra work is done and values for "missing" columns are not exposed as part of the token stream.

          Note that this feature is only considered if FAIL_ON_MISSING_COLUMNS is disabled.

          Feature is disabled by default.

          Since:
          2.9
        • EMPTY_STRING_AS_NULL

          public static final CsvParser.Feature EMPTY_STRING_AS_NULL
          Feature that enables coercing an empty String to `null` Feature is disabled by default
      • Method Detail

        • values

          public static CsvParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvParser.Feature c : CsvParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvParser.html ================================================ CsvParser (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class CsvParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.

      Implementation is based on a state-machine that pulls information using CsvDecoder.

      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvParser.Feature
        Enumeration that defines all togglable features for CSV parsers
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _arraySeparator 
        protected String _arrayValue
        Contents of the cell, to be split into distinct array values.
        protected int _arrayValueStart
        Pointer to the first character of the next array value to return.
        protected byte[] _binaryValue
        We will hold on to decoded binary data, for duration of current event, so that multiple calls to getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _cfgEmptyStringAsNull 
        protected int _columnCount
        Number of columns defined by schema.
        protected int _columnIndex
        Index of the column we are exposing
        protected String _currentName
        Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        protected String _currentValue
        String value for the current column, if accessed.
        protected int _formatFeatures 
        protected String _nullValue 
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
        Information about parser context, context in which the next token is to be parsed (root, array, object).
        protected CsvDecoder _reader
        Thing that actually reads the CSV content
        protected CsvSchema _schema
        Definition of columns being read.
        protected int _state
        Current logical state of the parser; one of STATE_ constants.
        protected TextBuffer _textBuffer
        Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        protected static int STATE_DOC_END
        State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
        protected static int STATE_DOC_START
        Initial state before anything is read from document.
        protected static int STATE_IN_ARRAY
        State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
        protected static int STATE_MISSING_NAME
        State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_MISSING_VALUE
        State in which we should expose `null` value token as a value for "missing" column; see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_NAMED_VALUE
        State in which value matching field name will be returned.
        protected static int STATE_NEXT_ENTRY
        State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
        protected static int STATE_RECORD_START
        State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
        protected static int STATE_SKIP_EXTRA_COLUMNS
        State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
        protected static int STATE_UNNAMED_VALUE
        State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
        protected static com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
        CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvParser(CsvIOContext ctxt, int stdFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Field Detail

        • STREAM_READ_CAPABILITIES

          protected static final com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
          CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
          Since:
          2.12
        • STATE_DOC_START

          protected static final int STATE_DOC_START
          Initial state before anything is read from document.
          See Also:
          Constant Field Values
        • STATE_RECORD_START

          protected static final int STATE_RECORD_START
          State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
          See Also:
          Constant Field Values
        • STATE_NEXT_ENTRY

          protected static final int STATE_NEXT_ENTRY
          State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
          See Also:
          Constant Field Values
        • STATE_NAMED_VALUE

          protected static final int STATE_NAMED_VALUE
          State in which value matching field name will be returned.
          See Also:
          Constant Field Values
        • STATE_UNNAMED_VALUE

          protected static final int STATE_UNNAMED_VALUE
          State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
          See Also:
          Constant Field Values
        • STATE_IN_ARRAY

          protected static final int STATE_IN_ARRAY
          State in which a column value has been determined to be of an array type, and will need to be split into multiple values. This can currently only occur for named values.
          Since:
          2.5
          See Also:
          Constant Field Values
        • STATE_SKIP_EXTRA_COLUMNS

          protected static final int STATE_SKIP_EXTRA_COLUMNS
          State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
          Since:
          2.6
          See Also:
          Constant Field Values
        • STATE_DOC_END

          protected static final int STATE_DOC_END
          State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping. This step will loop, returning series of nulls if nextToken() is called multiple times.
          See Also:
          Constant Field Values
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _schema

          protected CsvSchema _schema
          Definition of columns being read. Initialized to "empty" instance, which has default configuration settings.
        • _columnCount

          protected int _columnCount
          Number of columns defined by schema.
        • _cfgEmptyStringAsNull

          protected boolean _cfgEmptyStringAsNull
          Since:
          2.12
        • _parsingContext

          protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
          Information about parser context, context in which the next token is to be parsed (root, array, object).
        • _currentName

          protected String _currentName
          Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        • _currentValue

          protected String _currentValue
          String value for the current column, if accessed.
        • _columnIndex

          protected int _columnIndex
          Index of the column we are exposing
        • _state

          protected int _state
          Current logical state of the parser; one of STATE_ constants.
        • _arrayValueStart

          protected int _arrayValueStart
          Pointer to the first character of the next array value to return.
        • _arrayValue

          protected String _arrayValue
          Contents of the cell, to be split into distinct array values.
        • _arraySeparator

          protected String _arraySeparator
        • _nullValue

          protected String _nullValue
        • _reader

          protected final CsvDecoder _reader
          Thing that actually reads the CSV content
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
      • Constructor Detail

        • CsvParser

          public CsvParser(CsvIOContext ctxt,
                           int stdFeatures,
                           int csvFeatures,
                           com.fasterxml.jackson.core.ObjectCodec codec,
                           Reader reader)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • releaseBuffered

          public int releaseBuffered(Writer out)
                              throws IOException
          Overrides:
          releaseBuffered in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • enable

          public com.fasterxml.jackson.core.JsonParser enable(CsvParser.Feature f)
          Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
        • disable

          public com.fasterxml.jackson.core.JsonParser disable(CsvParser.Feature f)
          Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(CsvParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
        • getSchema

          public CsvSchema getSchema()
          Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • isExpectedStartArrayToken

          public boolean isExpectedStartArrayToken()
          We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
          Overrides:
          isExpectedStartArrayToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • isExpectedNumberIntToken

          public boolean isExpectedNumberIntToken()
          Overrides:
          isExpectedNumberIntToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextFieldName

          public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString str)
                                throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextFieldName

          public String nextFieldName()
                               throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextTextValue

          public String nextTextValue()
                               throws IOException
          Overrides:
          nextTextValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _readHeaderLine

          protected void _readHeaderLine()
                                  throws IOException
          Method called to process the expected header line
          Throws:
          IOException
        • _handleStartDoc

          protected com.fasterxml.jackson.core.JsonToken _handleStartDoc()
                                                                  throws IOException
          Method called to handle details of initializing things to return the very first token.
          Throws:
          IOException
        • _handleRecordStart

          protected com.fasterxml.jackson.core.JsonToken _handleRecordStart()
                                                                     throws IOException
          Throws:
          IOException
        • _handleNextEntry

          protected com.fasterxml.jackson.core.JsonToken _handleNextEntry()
                                                                   throws IOException
          Throws:
          IOException
        • _handleNamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleNamedValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleUnnamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleUnnamedValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleArrayValue

          protected com.fasterxml.jackson.core.JsonToken _handleArrayValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleExtraColumn

          protected com.fasterxml.jackson.core.JsonToken _handleExtraColumn(String value)
                                                                     throws IOException
          Helper method called when an extraneous column value is found. What happens then depends on configuration, but there are three main choices: ignore value (and rest of line); expose extra value as "any property" using configured name, or throw an exception.
          Throws:
          IOException
          Since:
          2.7
        • _handleMissingColumns

          protected com.fasterxml.jackson.core.JsonToken _handleMissingColumns()
                                                                        throws IOException
          Helper method called when end of row occurs before finding values for all schema-specified columns.
          Throws:
          IOException
          Since:
          2.9
        • _handleMissingName

          protected com.fasterxml.jackson.core.JsonToken _handleMissingName()
                                                                     throws IOException
          Throws:
          IOException
        • _handleMissingValue

          protected com.fasterxml.jackson.core.JsonToken _handleMissingValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleObjectRowEnd

          protected final com.fasterxml.jackson.core.JsonToken _handleObjectRowEnd()
                                                                            throws IOException
          Helper method called to handle details of state update when end of logical record occurs.
          Throws:
          IOException
          Since:
          2.9
        • _skipUntilEndOfLine

          protected final com.fasterxml.jackson.core.JsonToken _skipUntilEndOfLine()
                                                                            throws IOException
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer w)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValueExact

          public Number getNumberValueExact()
                                     throws IOException
          Overrides:
          getNumberValueExact in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • _reportCsvMappingError

          public <T> T _reportCsvMappingError(String msg,
                                              Object... args)
                                       throws IOException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          IOException
          Since:
          2.9
        • _reportParsingError

          public void _reportParsingError(String msg)
                                   throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _reportUnexpectedCsvChar

          public void _reportUnexpectedCsvChar(int ch,
                                               String msg)
                                        throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvReadException.html ================================================ CsvReadException (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvReadException

    • All Implemented Interfaces:
      Serializable


      public class CsvReadException
      extends CsvMappingException
      Format-specific exception used to indicate problems regarding low-level decoding/parsing issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.

      In Jackson 2.x this type extends DatabindException, but for Jackson 3.0 will become streaming-level exception

      Since:
      2.13
      See Also:
      Serialized Form

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvSchema.Builder.html ================================================ CsvSchema.Builder (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Builder

    • Enclosing class:
      CsvSchema


      public static class CsvSchema.Builder
      extends Object
      Class used for building CsvSchema instances.
      • Field Detail

        • _encodingFeatures

          protected int _encodingFeatures
          Bit-flag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected char _columnSeparator
        • _arrayElementSeparator

          protected String _arrayElementSeparator
        • _anyPropertyName

          protected String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _lineSeparator

          protected char[] _lineSeparator
        • _nullValue

          protected char[] _nullValue
          Since:
          2.5
      • Constructor Detail

        • Builder

          public Builder()
        • Builder

          public Builder(CsvSchema src)
          "Copy" constructor which creates builder that has settings of given source schema
      • Method Detail

        • addColumn

          public CsvSchema.Builder addColumn(String name)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumn

          public CsvSchema.Builder addColumn(CsvSchema.Column c)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumnsFrom

          public CsvSchema.Builder addColumnsFrom(CsvSchema schema)
          NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
          Since:
          2.9
        • dropLastColumnIfEmpty

          public void dropLastColumnIfEmpty()
          Helper method called to drop the last collected column name if it is empty: called if {link CsvParser.Feature#ALLOW_TRAILING_COMMA} enabled to remove the last entry after being added initially.
          Since:
          2.11.2
        • removeArrayElementSeparator

          public CsvSchema.Builder removeArrayElementSeparator(int index)
        • size

          public int size()
        • hasColumn

          public boolean hasColumn(String name)

          NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).

          Since:
          2.9
        • setUseHeader

          public CsvSchema.Builder setUseHeader(boolean b)
          Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
        • setReorderColumns

          public CsvSchema.Builder setReorderColumns(boolean b)
          Use in combination with setUseHeader. When use header flag is is set, this setting will reorder the columns defined in this schema to match the order set by the header.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setStrictHeaders

          public CsvSchema.Builder setStrictHeaders(boolean b)
          Use in combination with setUseHeader(boolean). When `strict-headers` is set, encoder will ensure the headers are in the order of the schema; if order differs, an exception is thrown.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setSkipFirstDataRow

          public CsvSchema.Builder setSkipFirstDataRow(boolean b)
          Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
        • setAllowComments

          public CsvSchema.Builder setAllowComments(boolean b)
          Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
          Since:
          2.5
        • _feature

          protected final void _feature(int feature,
                                        boolean state)
        • setColumnSeparator

          public CsvSchema.Builder setColumnSeparator(char c)
          Method for specifying character used to separate column values. Default is comma (',').
        • setArrayElementSeparator

          public CsvSchema.Builder setArrayElementSeparator(String separator)
          Method for specifying character used to separate array element values. Default value is semicolon (";")
          Since:
          2.7
        • disableArrayElementSeparator

          public CsvSchema.Builder disableArrayElementSeparator()
          Since:
          2.7
        • setQuoteChar

          public CsvSchema.Builder setQuoteChar(char c)
          Method for specifying character used for optional quoting of values. Default is double-quote ('"').
        • setEscapeChar

          public CsvSchema.Builder setEscapeChar(char c)
          Method for specifying character used for optional escaping of characters in quoted String values. Default is "not used", meaning that no escaping used.
        • disableEscapeChar

          public CsvSchema.Builder disableEscapeChar()
          Method for specifying that no escape character is to be used with CSV documents this schema defines.
        • _checkIndex

          protected void _checkIndex(int index)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvSchema.Column.html ================================================ CsvSchema.Column (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Column

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvSchema.ColumnType.html ================================================ CsvSchema.ColumnType (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvSchema.ColumnType

      • Enum Constant Summary

        Enum Constants 
        Enum Constant and Description
        ARRAY
        Value will be a multi-value sequence, separated by array element separator.
        BOOLEAN
        Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null).
        NUMBER
        Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null.
        NUMBER_OR_STRING
        Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match.
        STRING
        Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.
        STRING_OR_LITERAL
        Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
      • Enum Constant Detail

        • STRING

          public static final CsvSchema.ColumnType STRING
          Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.

          Note that this type allows coercion into array, if higher level application calls JsonParser.isExpectedStartArrayToken(), unlike more explicit types.

        • STRING_OR_LITERAL

          public static final CsvSchema.ColumnType STRING_OR_LITERAL
          Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
        • NUMBER

          public static final CsvSchema.ColumnType NUMBER
          Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null. Values are also trimmed (leading/trailing white space) Other non-numeric Strings may cause parsing exception.
        • NUMBER_OR_STRING

          public static final CsvSchema.ColumnType NUMBER_OR_STRING
          Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match. Values are also trimmed (leading/trailing white space)
        • BOOLEAN

          public static final CsvSchema.ColumnType BOOLEAN
          Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null). Values are trimmed (leading/trailing white space). Values other than indicated above may result in an exception.
          Since:
          2.5
        • ARRAY

          public static final CsvSchema.ColumnType ARRAY
          Value will be a multi-value sequence, separated by array element separator. Element type itself may be any scalar type (that is, number or String) and will not be optimized. Separator may be overridden on per-column basis.

          Note that this type is used for generic concept of multiple values, and not specifically to match Java arrays: data-binding may match such columns to Collections as well, or even other types as necessary.

          Since:
          2.5
      • Method Detail

        • values

          public static CsvSchema.ColumnType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvSchema.ColumnType c : CsvSchema.ColumnType.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvSchema.ColumnType valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvSchema.html ================================================ CsvSchema (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable, Iterable<CsvSchema.Column>


      public class CsvSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Iterable<CsvSchema.Column>, Serializable
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write. Properties supported currently are:
      • columns (List of ColumnDef) [default: empty List]: Ordered list of columns (which may be empty, see below). Each column has name (mandatory) as well as type (optional; if not defined, defaults to "String"). Note that
      • useHeader (boolean) [default: false]: whether the first line of physical document defines column names (true) or not (false): if enabled, parser will take first-line values to define column names; and generator will output column names as the first line
      • quoteChar (char) [default: double-quote ('")]: character used for quoting values that contain quote characters or linefeeds.
      • columnSeparator (char) [default: comma (',')]: character used to separate values. Other commonly used values include tab ('\t') and pipe ('|')
      • arrayElementSeparator (String) [default: semicolon (";")]: string used to separate array elements.
      • lineSeparator (String) [default: "\n"]: character used to separate data rows. Only used by generator; parser accepts three standard linefeeds ("\r", "\r\n", "\n").
      • escapeChar (int) [default: -1 meaning "none"]: character, if any, used to escape values. Most commonly defined as backslash ('\'). Only used by parser; generator only uses quoting, including doubling up of quotes to indicate quote char itself.
      • skipFirstDataRow (boolean) [default: false]: whether the first data line (either first line of the document, if useHeader=false, or second, if useHeader=true) should be completely ignored by parser. Needed to support CSV-like file formats that include additional non-data content before real data begins (specifically some database dumps do this)
      • nullValue (String) [default: "" (empty String)]: When asked to write Java `null`, this String value will be used instead.
        With 2.6, value will also be recognized during value reads.
      • strictHeaders (boolean) [default: false] (added in Jackson 2.7): whether names of columns defined in the schema MUST match with actual declaration from the header row (if header row handling enabled): if true, they must be and an exception if thrown if order differs: if false, no verification is performed.
      • allowComments (boolean) [default: false]: whether lines that start with character "#" are processed as comment lines and skipped/ignored.
      • anyProperty (String] [default: none]: if "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name. Most often used with Jackson @JsonAnySetter annotation.

        Note that schemas without any columns are legal, but if no columns are added, behavior of parser/generator is usually different and content will be exposed as logical Arrays instead of Objects.

        There are 4 ways to create CsvSchema instances:

      See Also:
      Serialized Form
      • Field Detail

        • ENCODING_FEATURE_USE_HEADER

          protected static final int ENCODING_FEATURE_USE_HEADER
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_SKIP_FIRST_DATA_ROW

          protected static final int ENCODING_FEATURE_SKIP_FIRST_DATA_ROW
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_ALLOW_COMMENTS

          protected static final int ENCODING_FEATURE_ALLOW_COMMENTS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_REORDER_COLUMNS

          protected static final int ENCODING_FEATURE_REORDER_COLUMNS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_STRICT_HEADERS

          protected static final int ENCODING_FEATURE_STRICT_HEADERS
          See Also:
          Constant Field Values
        • DEFAULT_ENCODING_FEATURES

          protected static final int DEFAULT_ENCODING_FEATURES
          See Also:
          Constant Field Values
        • NO_CHARS

          protected static final char[] NO_CHARS
        • DEFAULT_COLUMN_SEPARATOR

          public static final char DEFAULT_COLUMN_SEPARATOR
          Default separator for column values is comma (hence "Comma-Separated Values")
          See Also:
          Constant Field Values
        • DEFAULT_ARRAY_ELEMENT_SEPARATOR

          public static final String DEFAULT_ARRAY_ELEMENT_SEPARATOR
          Default separator for array elements within a column value is semicolon.
          See Also:
          Constant Field Values
        • NO_ARRAY_ELEMENT_SEPARATOR

          public static final String NO_ARRAY_ELEMENT_SEPARATOR
          Marker for the case where no array element separator is used
          See Also:
          Constant Field Values
        • DEFAULT_ANY_PROPERTY_NAME

          public static final String DEFAULT_ANY_PROPERTY_NAME
          By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
          Since:
          2.7
        • DEFAULT_NULL_VALUE

          public static final char[] DEFAULT_NULL_VALUE
          By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls). To use automatic coercion on reading, null value must be set explicitly to empty String ("").

          NOTE: before 2.6, this value default to empty char[]; changed to Java null in 2.6.

        • DEFAULT_ESCAPE_CHAR

          public static final int DEFAULT_ESCAPE_CHAR
          By default, no escape character is used -- this is denoted by int value that does not map to a valid character
          See Also:
          Constant Field Values
        • DEFAULT_LINEFEED

          public static final char[] DEFAULT_LINEFEED
        • _columns

          protected final CsvSchema.Column[] _columns
          Column definitions, needed for optional header and/or mapping of field names to column positions.
        • _features

          protected int _features
          Bitflag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected final char _columnSeparator
        • _arrayElementSeparator

          protected final String _arrayElementSeparator
        • _quoteChar

          protected final int _quoteChar
        • _escapeChar

          protected final int _escapeChar
        • _lineSeparator

          protected final char[] _lineSeparator
        • _nullValue

          protected final char[] _nullValue
          Since:
          2.5
        • _nullValueAsString

          protected transient String _nullValueAsString
        • _anyPropertyName

          protected final String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
      • Constructor Detail

        • CsvSchema

          public CsvSchema(CsvSchema.Column[] columns,
                           int features,
                           char columnSeparator,
                           int quoteChar,
                           int escapeChar,
                           char[] lineSeparator,
                           String arrayElementSeparator,
                           char[] nullValue,
                           String anyPropertyName)
          Since:
          2.7
        • CsvSchema

          protected CsvSchema(CsvSchema.Column[] columns,
                              int features,
                              char columnSeparator,
                              int quoteChar,
                              int escapeChar,
                              char[] lineSeparator,
                              String arrayElementSeparator,
                              char[] nullValue,
                              Map<String,CsvSchema.Column> columnsByName,
                              String anyPropertyName)
          Copy constructor used for creating variants using withXxx() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              CsvSchema.Column[] columns)
          Copy constructor used for creating variants using sortedBy() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              int features)
          Copy constructor used for creating variants for on/off features
          Since:
          2.5
      • Method Detail

        • emptySchema

          public static CsvSchema emptySchema()
          Accessor for creating a "default" CSV schema instance, with following settings:
          • Does NOT use header line
          • Uses double quotes ('"') for quoting of field values (if necessary)
          • Uses comma (',') as the field separator
          • Uses Unix linefeed ('\n') as row separator
          • Does NOT use any escape characters
          • Does NOT have any columns defined
        • rebuild

          public CsvSchema.Builder rebuild()
          Helper method for constructing Builder that can be used to create modified schema.
        • withUseHeader

          public CsvSchema withUseHeader(boolean state)
        • withColumnReordering

          public CsvSchema withColumnReordering(boolean state)
          Returns a clone of this instance by changing or setting the column reordering flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the column reordering feature.
          Since:
          2.7
        • withStrictHeaders

          public CsvSchema withStrictHeaders(boolean state)
          Returns a clone of this instance by changing or setting the strict headers flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the strict headers feature.
          Since:
          2.7
        • withHeader

          public CsvSchema withHeader()
          Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
        • withoutHeader

          public CsvSchema withoutHeader()
          Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
        • withSkipFirstDataRow

          public CsvSchema withSkipFirstDataRow(boolean state)
        • withAllowComments

          public CsvSchema withAllowComments(boolean state)
          Method to indicate whether "hash comments" are allowed for document described by this schema.
          Since:
          2.5
        • withComments

          public CsvSchema withComments()
          Method to indicate that "hash comments" ARE allowed for document described by this schema.
          Since:
          2.5
        • withoutComments

          public CsvSchema withoutComments()
          Method to indicate that "hash comments" are NOT allowed for document described by this schema.
          Since:
          2.5
        • _withFeature

          protected CsvSchema _withFeature(int feature,
                                           boolean state)
        • withColumnSeparator

          public CsvSchema withColumnSeparator(char sep)
        • withQuoteChar

          public CsvSchema withQuoteChar(char c)
        • withoutQuoteChar

          public CsvSchema withoutQuoteChar()
        • withEscapeChar

          public CsvSchema withEscapeChar(char c)
        • withoutEscapeChar

          public CsvSchema withoutEscapeChar()
        • withArrayElementSeparator

          public CsvSchema withArrayElementSeparator(String separator)
          Since:
          2.7
        • withoutArrayElementSeparator

          public CsvSchema withoutArrayElementSeparator()
          Since:
          2.5
        • withoutColumns

          public CsvSchema withoutColumns()
        • withColumnsFrom

          public CsvSchema withColumnsFrom(CsvSchema toAppend)
          Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`. All settings aside from column sets are copied from `this` instance.

          As with all `withXxx()` methods this method never modifies `this` but either returns it unmodified (if no new columns found from `toAppend`), or constructs a new instance and returns that.

          Since:
          2.9
        • withAnyPropertyName

          public CsvSchema withAnyPropertyName(String name)
          Since:
          2.7
        • sortedBy

          public CsvSchema sortedBy(String... columnNames)
          Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument. Columns not listed in argument will be sorted after those within list, using existing ordering.

          For example, schema that has columns:

          "a", "d", "c", "b"
          
          ordered with schema.sortedBy("a", "b"); would result instance that columns in order:
          "a", "b", "d", "c"
          
          Since:
          2.4
        • sortedBy

          public CsvSchema sortedBy(Comparator<String> cmp)
          Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
          Since:
          2.4
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • usesHeader

          public boolean usesHeader()
        • reordersColumns

          public boolean reordersColumns()
        • skipsFirstDataRow

          public boolean skipsFirstDataRow()
        • allowsComments

          public boolean allowsComments()
        • strictHeaders

          public boolean strictHeaders()
        • getColumnSeparator

          public char getColumnSeparator()
        • getArrayElementSeparator

          public String getArrayElementSeparator()
        • getQuoteChar

          public int getQuoteChar()
        • getEscapeChar

          public int getEscapeChar()
        • getLineSeparator

          public char[] getLineSeparator()
        • getNullValue

          public char[] getNullValue()
          Returns:
          Null value defined, as char array, if one is defined to be recognized; Java null if not.
          Since:
          2.5
        • getNullValueOrEmpty

          public char[] getNullValueOrEmpty()
          Same as getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
          Since:
          2.6
        • getNullValueString

          public String getNullValueString()
          Since:
          2.6
        • usesQuoteChar

          public boolean usesQuoteChar()
        • usesEscapeChar

          public boolean usesEscapeChar()
        • hasArrayElementSeparator

          public boolean hasArrayElementSeparator()
          Since:
          2.5
        • getAnyPropertyName

          public String getAnyPropertyName()
          Since:
          2.7
        • size

          public int size()
          Accessor for finding out how many columns this schema defines.
          Returns:
          Number of columns this schema defines
        • column

          public CsvSchema.Column column(int index)
          Accessor for column at specified index (0-based); index having to be within
              0 <= index < size()
          
        • columnName

          public String columnName(int index)
          Since:
          2.6
        • column

          public CsvSchema.Column column(String name,
                                         int probableIndex)
          Optimized variant where a hint is given as to likely index of the column name.
          Since:
          2.6
        • getColumnDesc

          public String getColumnDesc()
          Method for getting description of column definitions in developer-readable form
        • _validArrayElementSeparator

          protected static String _validArrayElementSeparator(String sep)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/CsvWriteException.html ================================================ CsvWriteException (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvWriteException

    • All Implemented Interfaces:
      Serializable


      public class CsvWriteException
      extends CsvMappingException
      Format-specific exception used to indicate problems regarding low-level generation issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.

      In Jackson 2.x this type extends DatabindException, but for Jackson 3.0 will become streaming-level exception

      Since:
      2.13
      See Also:
      Serialized Form

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvCharacterEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactory (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactory

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvMappingException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMappingException (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMappingException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser.Feature (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser.Feature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvReadException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvReadException (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvReadException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Column.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Column

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.ColumnType.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/CsvWriteException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvWriteException (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvWriteException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.PackageVersion (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.csv.PackageVersion

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.BooleanValue.html ================================================ BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.BooleanValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.DoubleValue.html ================================================ BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.DoubleValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.IntValue.html ================================================ BufferedValue.IntValue (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.IntValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.LongValue.html ================================================ BufferedValue.LongValue (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.LongValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.NullValue.html ================================================ BufferedValue.NullValue (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.NullValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.RawValue.html ================================================ BufferedValue.RawValue (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.RawValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.TextValue.html ================================================ BufferedValue.TextValue (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.TextValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.html ================================================ BufferedValue (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/CsvDecoder.html ================================================ CsvDecoder (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvDecoder



    • public class CsvDecoder
      extends Object
      Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
      • Field Detail

        • _owner

          protected final CsvParser _owner
          Unfortunate back reference, needed for error reporting
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
          I/O context for this reader. It handles buffer allocation for the reader.
        • _inputReader

          protected Reader _inputReader
          Input stream that can be used for reading more content, if one in use. May be null, if input comes just as a full buffer, or if the stream has been closed.

          NOTE: renamed in 2.13 from _inputSource.

        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.

          If it is not, it also means that parser can NOT modify underlying buffer.

        • _autoCloseInput

          protected boolean _autoCloseInput
        • _trimSpaces

          protected boolean _trimSpaces
          Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
        • _allowComments

          protected boolean _allowComments
        • _skipBlankLines

          protected boolean _skipBlankLines
          Since:
          2.10.1
        • _maxSpecialChar

          protected int _maxSpecialChar
          Maximum of quote character, linefeeds (\r and \n), escape character.
        • _separatorChar

          protected int _separatorChar
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _inputBuffer

          protected char[] _inputBuffer
          Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
        • _inputPtr

          protected int _inputPtr
          Pointer to next available character in buffer
        • _inputEnd

          protected int _inputEnd
          Index of character after last available one in the buffer.
        • _pendingLF

          protected int _pendingLF
          Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
        • _closed

          protected boolean _closed
          Flag that indicates whether parser is closed or not. Gets set when parser is either closed by explicit call (close()) or when end-of-input is reached.
        • _currInputProcessed

          protected long _currInputProcessed
          Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
        • _currInputRow

          protected int _currInputRow
          Current row location of current point in input buffer, starting from 1, if available.
        • _currInputRowStart

          protected int _currInputRowStart
          Current index of the first character of the current row in input buffer. Needed to calculate column position, if necessary; benefit of not having column itself is that this only has to be updated once per line.
        • _tokenInputTotal

          protected long _tokenInputTotal
          Total number of bytes/characters read before start of current token. For big (gigabyte-sized) sizes are possible, needs to be long, unlike pointers and sizes related to in-memory buffers.
        • _tokenInputRow

          protected int _tokenInputRow
          Input row on which current token starts, 1-based
        • _tokenInputCol

          protected int _tokenInputCol
          Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
        • _numTypesValid

          protected int _numTypesValid
          Bitfield that indicates which numeric representations have been calculated for the current type
        • _numberInt

          protected int _numberInt
        • _numberLong

          protected long _numberLong
        • _numberDouble

          protected double _numberDouble
        • _numberBigInt

          protected BigInteger _numberBigInt
        • _numberBigDecimal

          protected BigDecimal _numberBigDecimal
      • Constructor Detail

        • CsvDecoder

          public CsvDecoder(CsvParser owner,
                            com.fasterxml.jackson.core.io.IOContext ctxt,
                            Reader r,
                            CsvSchema schema,
                            TextBuffer textBuffer,
                            int stdFeatures,
                            int csvFeatures)
      • Method Detail

        • setSchema

          public void setSchema(CsvSchema schema)
        • overrideFormatFeatures

          public void overrideFormatFeatures(int csvFeatures)
          Since:
          2.7
        • getInputSource

          public Object getInputSource()
        • isClosed

          public boolean isClosed()
        • childArrayContext

          public com.fasterxml.jackson.core.json.JsonReadContext childArrayContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • childObjectContext

          public com.fasterxml.jackson.core.json.JsonReadContext childObjectContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
        • getCurrentRow

          public final int getCurrentRow()
        • getCurrentColumn

          public final int getCurrentColumn()
        • getTokenCharacterOffset

          protected final long getTokenCharacterOffset()
        • getTokenLineNr

          protected final int getTokenLineNr()
        • getTokenColumnNr

          protected final int getTokenColumnNr()
        • getText

          public String getText()
        • hasMoreInput

          public boolean hasMoreInput()
                               throws IOException
          Method that can be called to see if there is at least one more character to be parsed.
          Throws:
          IOException
        • startNewLine

          public boolean startNewLine()
                               throws IOException
          Method called to handle details of starting a new line, which may include skipping a linefeed.
          Returns:
          True if there is a new data line to handle; false if not
          Throws:
          IOException
        • skipLinesWhenNeeded

          public boolean skipLinesWhenNeeded()
                                      throws IOException
          optionally skip lines that are empty or are comments, depending on the feature activated in the parser
          Returns:
          false if the end of input was reached
          Throws:
          IOException
          Since:
          2.10.1
        • skipLine

          public boolean skipLine()
                           throws IOException
          Method called to blindly skip a single line of content, without considering aspects like quoting or escaping. Used currently simply to skip the first line of input document, if instructed to do so.
          Throws:
          IOException
        • nextString

          public String nextString()
                            throws IOException
          Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
          Returns:
          Column value if more found; null to indicate end of line of input
          Throws:
          IOException
        • nextStringOrLiteral

          public com.fasterxml.jackson.core.JsonToken nextStringOrLiteral()
                                                                   throws IOException
          Throws:
          IOException
        • nextNumber

          public com.fasterxml.jackson.core.JsonToken nextNumber()
                                                          throws IOException
          Throws:
          IOException
        • nextNumberOrString

          public com.fasterxml.jackson.core.JsonToken nextNumberOrString()
                                                                  throws IOException
          Throws:
          IOException
        • isExpectedNumberIntToken

          public boolean isExpectedNumberIntToken()
          Method used by CsvParser.isExpectedNumberIntToken() to coerce current token into integer number, if it looks like one.
          Since:
          2.12
        • getNumberValue

          public Number getNumberValue(boolean exact)
                                throws IOException
          Parameters:
          exact - Whether we should try to retain maximum precision or not; passed as true by getNumberValueExact(), and as false by regular getNumberValue).
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(boolean exactNumber)
                                     throws IOException
          Method that will parse actual numeric value out of a syntactically valid number value. Type it will parse into depends on whether it is a floating point number, as well as its magnitude: smallest legal type (of ones available) is used for efficiency.
          Parameters:
          exactNumber - Whether to try to retain the highest precision for floating-point values or not
          Throws:
          IOException
        • convertNumberToBigInteger

          protected void convertNumberToBigInteger()
                                            throws IOException
          Throws:
          IOException
        • convertNumberToBigDecimal

          protected void convertNumberToBigDecimal()
                                            throws IOException
          Throws:
          IOException
        • reportUnexpectedNumberChar

          protected void reportUnexpectedNumberChar(int ch,
                                                    String comment)
                                             throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • reportInvalidNumber

          protected void reportInvalidNumber(String msg)
                                      throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • constructError

          protected final com.fasterxml.jackson.core.JsonParseException constructError(String msg,
                                                                                       Throwable t)
        • _getCharDesc

          protected static final String _getCharDesc(int ch)
        • _reportError

          protected final void _reportError(String msg)
                                     throws com.fasterxml.jackson.core.JsonParseException
          Method for reporting low-level decoding (parsing) problems
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/CsvEncoder.html ================================================ CsvEncoder (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvEncoder



    • public class CsvEncoder
      extends Object
      Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
      • Field Detail

        • HEX_CHARS

          protected static final char[] HEX_CHARS
        • SHORT_WRITE

          protected static final int SHORT_WRITE
          As an optimization we try coalescing short writes into buffer; but pass longer directly.
          See Also:
          Constant Field Values
        • MAX_QUOTE_CHECK

          protected static final int MAX_QUOTE_CHECK
          Also: only do check for optional quotes for short values; longer ones will always be quoted.
          See Also:
          Constant Field Values
        • _outputEscapes

          protected int[] _outputEscapes
          Currently active set of output escape code definitions (whether and how to escape or not).
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _out

          protected final Writer _out
          Underlying Writer used for output.
        • _cfgColumnSeparator

          protected final char _cfgColumnSeparator
        • _cfgQuoteCharacter

          protected final int _cfgQuoteCharacter
        • _cfgEscapeCharacter

          protected final int _cfgEscapeCharacter
          Since:
          2.7
        • _cfgLineSeparator

          protected final char[] _cfgLineSeparator
        • _cfgNullValue

          protected final char[] _cfgNullValue
          Since:
          2.5
        • _cfgLineSeparatorLength

          protected final int _cfgLineSeparatorLength
        • _cfgMaxQuoteCheckChars

          protected final int _cfgMaxQuoteCheckChars
        • _cfgMinSafeChar

          protected final int _cfgMinSafeChar
          Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
        • _csvFeatures

          protected int _csvFeatures
        • _cfgOptimalQuoting

          protected boolean _cfgOptimalQuoting
          Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
          Since:
          2.4
        • _cfgAllowsComments

          protected final boolean _cfgAllowsComments
        • _cfgIncludeMissingTail

          protected boolean _cfgIncludeMissingTail
          Since:
          2.4
        • _cfgAlwaysQuoteStrings

          protected boolean _cfgAlwaysQuoteStrings
          Since:
          2.5
        • _cfgAlwaysQuoteEmptyStrings

          protected boolean _cfgAlwaysQuoteEmptyStrings
        • _cfgEscapeQuoteCharWithEscapeChar

          protected boolean _cfgEscapeQuoteCharWithEscapeChar
        • _cfgEscapeControlCharWithEscapeChar

          protected boolean _cfgEscapeControlCharWithEscapeChar
          Since:
          2.9.9
        • _cfgQuoteCharEscapeChar

          protected final char _cfgQuoteCharEscapeChar
        • _cfgControlCharEscapeChar

          protected final char _cfgControlCharEscapeChar
          Since:
          2.9.9
        • _columnCount

          protected int _columnCount
          Since:
          2.4
        • _nextColumnToWrite

          protected int _nextColumnToWrite
          Index of column we expect to write next
        • _buffered

          protected BufferedValue[] _buffered
          And if output comes in shuffled order we will need to do bit of ordering.
        • _lastBuffered

          protected int _lastBuffered
          Index of the last buffered value
        • _outputBuffer

          protected char[] _outputBuffer
          Intermediate buffer in which contents are buffered before being written using _out.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
        • _outputTail

          protected int _outputTail
          Pointer to the next available char position in _outputBuffer
        • _outputEnd

          protected final int _outputEnd
          Offset to index after the last valid index in _outputBuffer. Typically same as length of the buffer.
        • _charsWritten

          protected int _charsWritten
          Let's keep track of how many bytes have been output, may prove useful when debugging. This does not include bytes buffered in the output buffer, just bytes that have been written using underlying stream writer.
      • Constructor Detail

        • CsvEncoder

          public CsvEncoder(com.fasterxml.jackson.core.io.IOContext ctxt,
                            int csvFeatures,
                            Writer out,
                            CsvSchema schema)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/CsvIOContext.html ================================================ CsvIOContext (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvIOContext

    • java.lang.Object
      • com.fasterxml.jackson.core.io.IOContext
        • com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext


    • public class CsvIOContext
      extends com.fasterxml.jackson.core.io.IOContext
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.io.IOContext

          _base64Buffer, _bufferRecycler, _concatCBuffer, _contentReference, _encoding, _managedResource, _nameCopyBuffer, _readIOBuffer, _sourceRef, _tokenCBuffer, _writeEncodingBuffer
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br, com.fasterxml.jackson.core.io.ContentReference sourceRef, boolean managedResource) 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        TextBuffer csvTextBuffer() 
        • Methods inherited from class com.fasterxml.jackson.core.io.IOContext

          _verifyAlloc, _verifyRelease, _verifyRelease, allocBase64Buffer, allocBase64Buffer, allocConcatBuffer, allocNameCopyBuffer, allocReadIOBuffer, allocReadIOBuffer, allocTokenBuffer, allocTokenBuffer, allocWriteEncodingBuffer, allocWriteEncodingBuffer, constructTextBuffer, contentReference, getEncoding, getSourceReference, isResourceManaged, releaseBase64Buffer, releaseConcatBuffer, releaseNameCopyBuffer, releaseReadIOBuffer, releaseTokenBuffer, releaseWriteEncodingBuffer, setEncoding, withEncoding
      • Constructor Detail

        • CsvIOContext

          public CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br,
                              com.fasterxml.jackson.core.io.ContentReference sourceRef,
                              boolean managedResource)
      • Method Detail

        • csvTextBuffer

          public TextBuffer csvTextBuffer()

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/CsvParserBootstrapper.html ================================================ CsvParserBootstrapper (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvParserBootstrapper

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper


    • public final class CsvParserBootstrapper
      extends Object
      This class is used to determine the encoding of byte stream that is to contain CSV document. Since there is no real specification for how this should work with CSV, it will be based on rules used with JSON (which themselves are similar to those used with XML); main points are to check for BOM first, then look for multi-byted fixed-length encodings (UTF-16, UTF-32). And finally, if neither found, must decide between most likely alternatives, UTF-8 and Latin-1.
      • Field Detail

        • _context

          protected final com.fasterxml.jackson.core.io.IOContext _context
        • _codec

          protected final com.fasterxml.jackson.core.ObjectCodec _codec
        • _inputBuffer

          protected final byte[] _inputBuffer
        • _inputProcessed

          protected int _inputProcessed
          Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.

          Note: includes possible BOMs, if those were part of the input.

        • _bigEndian

          protected boolean _bigEndian
        • _bytesPerChar

          protected int _bytesPerChar
      • Constructor Detail

        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       InputStream in)
        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       byte[] inputBuffer,
                                       int inputStart,
                                       int inputLen)
      • Method Detail

        • hasCSVFormat

          public static com.fasterxml.jackson.core.format.MatchStrength hasCSVFormat(com.fasterxml.jackson.core.format.InputAccessor acc,
                                                                                     int quoteChar,
                                                                                     char separatorChar)
                                                                              throws IOException
          Current implementation is not as thorough as one used by other data formats like JSON. But it should work, for now, and can be improved as necessary.
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/LRUMap.html ================================================ LRUMap (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class LRUMap<K,V>

      • Field Detail

        • _maxEntries

          protected final int _maxEntries
      • Constructor Detail

        • LRUMap

          public LRUMap(int initialEntries,
                        int maxEntries)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/NumberInput.html ================================================ NumberInput (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberInput



    • public final class NumberInput
      extends Object
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        static String NASTY_SMALL_DOUBLE
        Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
      • Constructor Summary

        Constructors 
        Constructor and Description
        NumberInput() 
      • Field Detail

        • NASTY_SMALL_DOUBLE

          public static final String NASTY_SMALL_DOUBLE
          Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
          See Also:
          Constant Field Values
      • Constructor Detail

        • NumberInput

          public NumberInput()
      • Method Detail

        • parseInt

          public static final int parseInt(char[] digitChars,
                                           int offset,
                                           int len)
          Fast method for parsing integers that are known to fit into regular 32-bit signed int type. This means that length is between 1 and 9 digits (inclusive)

          Note: public to let unit tests call it

        • parseLong

          public static final long parseLong(char[] digitChars,
                                             int offset,
                                             int len)
        • inLongRange

          public static final boolean inLongRange(char[] digitChars,
                                                  int offset,
                                                  int len,
                                                  boolean negative)
          Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not. Note that input String must NOT contain leading minus sign (even if 'negative' is set to true).
          Parameters:
          negative - Whether original number had a minus sign (which is NOT passed to this method) or not

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/NumberOutput.html ================================================ NumberOutput (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberOutput



    • public final class NumberOutput
      extends Object
      Helper class for efficient writing of numeric values

      NOTE: modified from Jackson Core's similar functionality

      • Constructor Detail

        • NumberOutput

          public NumberOutput()
      • Method Detail

        • outputInt

          public static int outputInt(int value,
                                      char[] buffer,
                                      int offset)
          Returns:
          Offset within buffer after outputting int
        • outputLong

          public static int outputLong(long value,
                                       char[] buffer,
                                       int offset)
          Returns:
          Offset within buffer after outputting int
        • toString

          public static String toString(double value)
        • toString

          public static String toString(float value)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/SimpleTokenWriteContext.html ================================================ SimpleTokenWriteContext (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class SimpleTokenWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext


    • public final class SimpleTokenWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      Intermediate base context; for 2.x copied within CSV format codebase, in 3.0 will be part of jackson-core
      Since:
      2.11
      • Field Detail

        • _dups

          protected com.fasterxml.jackson.core.json.DupDetector _dups
        • _currentName

          protected String _currentName
          Name of the field of which value is to be written; only used for OBJECT contexts
        • _currentValue

          protected Object _currentValue
        • _gotFieldId

          protected boolean _gotFieldId
          Marker used to indicate that we just wrote a field name and now expect a value to write
      • Constructor Detail

        • SimpleTokenWriteContext

          protected SimpleTokenWriteContext(int type,
                                            SimpleTokenWriteContext parent,
                                            com.fasterxml.jackson.core.json.DupDetector dups,
                                            Object currentValue)
      • Method Detail

        • withDupDetector

          public SimpleTokenWriteContext withDupDetector(com.fasterxml.jackson.core.json.DupDetector dups)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • createRootContext

          public static SimpleTokenWriteContext createRootContext(com.fasterxml.jackson.core.json.DupDetector dd)
        • getParent

          public final SimpleTokenWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • hasCurrentName

          public boolean hasCurrentName()
          Overrides:
          hasCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • clearAndGetParent

          public SimpleTokenWriteContext clearAndGetParent()
          Method that can be used to both clear the accumulated references (specifically value set with setCurrentValue(Object)) that should not be retained, and returns parent (as would getParent() do). Typically called when closing the active context when encountering JsonToken.END_ARRAY or JsonToken.END_OBJECT.
        • getDupDetector

          public com.fasterxml.jackson.core.json.DupDetector getDupDetector()
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Method that writer is to call before it writes a field name.
          Returns:
          Ok if name writing should proceed
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/TextBuffer.html ================================================ TextBuffer (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class TextBuffer



    • public final class TextBuffer
      extends Object
      Helper class for efficiently aggregating parsed and decoded textual content
      • Constructor Detail

        • TextBuffer

          public TextBuffer(com.fasterxml.jackson.core.util.BufferRecycler allocator)
      • Method Detail

        • releaseBuffers

          public void releaseBuffers()
        • reset

          public void reset()
        • resetWithString

          public void resetWithString(String value)
        • size

          public int size()
          Returns:
          Number of characters currently stored by this collector
        • getTextOffset

          public int getTextOffset()
        • hasTextAsCharacters

          public boolean hasTextAsCharacters()
        • getTextBuffer

          public char[] getTextBuffer()
        • contentsAsString

          public String contentsAsString()
        • contentsAsArray

          public char[] contentsAsArray()
        • looksLikeInt

          public boolean looksLikeInt()
        • ensureNotShared

          public void ensureNotShared()
          Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.
        • getCurrentSegment

          public char[] getCurrentSegment()
        • emptyAndGetCurrentSegment

          public final char[] emptyAndGetCurrentSegment()
        • getCurrentSegmentSize

          public int getCurrentSegmentSize()
        • finishAndReturn

          public String finishAndReturn(int lastSegmentEnd,
                                        boolean trimTrailingSpaces)
          Parameters:
          lastSegmentEnd - End offset in the currently active segment, could be 0 in the case of first character is delimiter or end-of-line
          trimTrailingSpaces - Whether trailing spaces should be trimmed or not
        • finishCurrentSegment

          public char[] finishCurrentSegment()

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose)
      • Method Detail

        • canModifyBuffer

          protected final boolean canModifyBuffer()
          Method that can be used to see if we can actually modify the underlying buffer. This is the case if we are managing the buffer, but not if it was just given to us.
        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException
        • reportInvalidInitial

          protected void reportInvalidInitial(int mask,
                                              int outputDecoded)
                                       throws IOException
          Throws:
          IOException
        • reportInvalidOther

          protected void reportInvalidOther(int mask,
                                            int outputDecoded,
                                            int errorPosition)
                                     throws IOException
          Throws:
          IOException
        • reportUnexpectedEOF

          protected void reportUnexpectedEOF(int gotBytes,
                                             int needed)
                                      throws IOException
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-CSV 2.13.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Writer

    • All Implemented Interfaces:
      Closeable, Flushable, Appendable, AutoCloseable


      public final class UTF8Writer
      extends Writer
      Efficient UTF-8 backed writer.

      Note: original implementation based on writer from Jackson core package; modified slightly, copied to reduce dependency to impl details.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.BooleanValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.DoubleValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.IntValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.LongValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.NullValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.RawValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.TextValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvDecoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvEncoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvIOContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvParserBootstrapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    No usage of com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/LRUMap.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.LRUMap (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.LRUMap

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberInput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberInput (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberOutput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/SimpleTokenWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/TextBuffer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.TextBuffer

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.13.0 API)

    com.fasterxml.jackson.dataformat.csv.impl

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv.impl Class Hierarchy (Jackson-dataformat-CSV 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.13.0 API)

    com.fasterxml.jackson.dataformat.csv

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.csv

    • Class Summary 
      Class Description
      CsvCharacterEscapes
      Character escapes for CSV.
      CsvFactory  
      CsvFactoryBuilder
      TSFBuilder implementation for constructing CsvFactory instances.
      CsvGenerator  
      CsvMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      CsvMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      CsvParser
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
      CsvSchema
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
      CsvSchema.Builder
      Class used for building CsvSchema instances.
      CsvSchema.Column
      Representation of info for a single column
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    • Enum Summary 
      Enum Description
      CsvGenerator.Feature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      CsvParser.Feature
      Enumeration that defines all togglable features for CSV parsers
      CsvSchema.ColumnType
      Enumeration that defines optional type indicators that can be passed with schema.
    • Exception Summary 
      Exception Description
      CsvMappingException Deprecated
      Since 2.13 use sub-class CsvReadException and CsvWriteException instead
      CsvReadException
      Format-specific exception used to indicate problems regarding low-level decoding/parsing issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.
      CsvWriteException
      Format-specific exception used to indicate problems regarding low-level generation issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv Class Hierarchy (Jackson-dataformat-CSV 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes (implements java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema (implements com.fasterxml.jackson.core.FormatSchema, java.lang.Iterable<T>, java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (implements java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.csv.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.databind.DatabindException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/com/fasterxml/jackson/dataformat/csv/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-CSV 2.13.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    • com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder 
      Modifier and Type Constant Field Value
      protected static final char CHAR_NULL 0
      protected static final int INT_0 48
      protected static final int INT_1 49
      protected static final int INT_2 50
      protected static final int INT_3 51
      protected static final int INT_4 52
      protected static final int INT_5 53
      protected static final int INT_6 54
      protected static final int INT_7 55
      protected static final int INT_8 56
      protected static final int INT_9 57
      protected static final int INT_DECIMAL_POINT 46
      protected static final int INT_e 101
      protected static final int INT_E 69
      protected static final int INT_MINUS 45
      protected static final int INT_PLUS 43
      protected static final int NR_BIGDECIMAL 16
      protected static final int NR_BIGINT 4
      protected static final int NR_DOUBLE 8
      protected static final int NR_INT 1
      protected static final int NR_LONG 2
      protected static final int NR_UNKNOWN 0
    • com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder 
      Modifier and Type Constant Field Value
      protected static final int MAX_QUOTE_CHECK 24
      protected static final int SHORT_WRITE 32
    • com.fasterxml.jackson.dataformat.csv.impl.NumberInput 
      Modifier and Type Constant Field Value
      public static final String NASTY_SMALL_DOUBLE "2.2250738585072012e-308"

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-CSV 2.13.0 API)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/help-doc.html ================================================ API Help (Jackson-dataformat-CSV 2.13.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/index-all.html ================================================ Index (Jackson-dataformat-CSV 2.13.0 API)
    A B C D E F G H I L M N O P Q R S T U V W _ 

    A

    addArrayColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addArrayColumn(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    addArrayColumn(String, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addBooleanColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(String, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<CsvSchema.Column>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<String>, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
    addNumberColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    allowsComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    append(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    appendColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendNull() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    B

    BooleanValue(boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    buffered(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(long) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedNull() - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedRaw(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class used for holding values for a while until output can proceed in expected order.
    BufferedValue() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue.BooleanValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.DoubleValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.IntValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.LongValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.NullValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.RawValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.TextValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Main factory method to use for constructing CsvFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    builder(CsvFactory) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    Builder(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    Builder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    Builder(CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    "Copy" constructor which creates builder that has settings of given source schema

    C

    canModifyBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method that can be used to see if we can actually modify the underlying buffer.
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CHAR_NULL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childArrayContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childObjectContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    clearAndGetParent() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Method that can be used to both clear the accumulated references (specifically value set with SimpleTokenWriteContext.setCurrentValue(Object)) that should not be retained, and returns parent (as would SimpleTokenWriteContext.getParent() do).
    clearColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    close(boolean, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    column(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for column at specified index (0-based); index having to be within
    column(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    column(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Optimized variant where a hint is given as to likely index of the column name.
    Column(int, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Deprecated.
    use variant where `arrayElementSep` is String
    Column(int, String, CsvSchema.ColumnType, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, int, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    columnName(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    com.fasterxml.jackson.dataformat.csv - package com.fasterxml.jackson.dataformat.csv
     
    com.fasterxml.jackson.dataformat.csv.impl - package com.fasterxml.jackson.dataformat.csv.impl
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified parser feature (check CsvParser.Feature for list of features)
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified generator feature (check CsvGenerator.Feature for list of features)
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
    constructError(String, Throwable) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    constructParser(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    contentsAsArray() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    contentsAsDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a BigDecimal.
    contentsAsDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a Double value.
    contentsAsString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    controlEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    controlQuoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    convertNumberToBigDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToBigInteger() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    createChildArrayContext(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    createChildObjectContext(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    This method assumes use of UTF-8 for encoding.
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createRootContext(DupDetector) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    csvBuilder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Short-cut for:
    CsvCharacterEscapes - Class in com.fasterxml.jackson.dataformat.csv
    Character escapes for CSV.
    CsvDecoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
    CsvDecoder(CsvParser, IOContext, Reader, CsvSchema, TextBuffer, int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    CsvEncoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
    CsvEncoder(IOContext, int, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvEncoder(CsvEncoder, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvFactory - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvFactory() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Default constructor used to create factory instances.
    CsvFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Constructors used by CsvFactoryBuilder for instantiation.
    CsvFactoryBuilder - Class in com.fasterxml.jackson.dataformat.csv
    TSFBuilder implementation for constructing CsvFactory instances.
    CsvFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvFactoryBuilder(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvGenerator - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvGenerator(IOContext, int, int, ObjectCodec, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator(IOContext, int, int, ObjectCodec, CsvEncoder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV writers (if any: currently none)
    CsvIOContext - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    CsvIOContext(BufferRecycler, ContentReference, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     
    CsvMapper - Class in com.fasterxml.jackson.dataformat.csv
    Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
    CsvMapper() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Copy-constructor, mostly used to support CsvMapper.copy().
    CsvMapper.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
    CsvMappingException - Exception in com.fasterxml.jackson.dataformat.csv
    Deprecated.
    Since 2.13 use sub-class CsvReadException and CsvWriteException instead
    CsvMappingException(CsvParser, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
     
    CsvMappingException(CsvGenerator, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
     
    CsvParser - Class in com.fasterxml.jackson.dataformat.csv
    JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
    CsvParser(CsvIOContext, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    CsvParser.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV parsers
    CsvParserBootstrapper - Class in com.fasterxml.jackson.dataformat.csv.impl
    This class is used to determine the encoding of byte stream that is to contain CSV document.
    CsvParserBootstrapper(IOContext, ObjectCodec, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvParserBootstrapper(IOContext, ObjectCodec, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvReadException - Exception in com.fasterxml.jackson.dataformat.csv
    Format-specific exception used to indicate problems regarding low-level decoding/parsing issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.
    CsvReadException(CsvParser, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvReadException
     
    CsvSchema - Class in com.fasterxml.jackson.dataformat.csv
    Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], int, char[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], Map<String, CsvSchema.Column>, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using withXxx() methods.
    CsvSchema(CsvSchema, CsvSchema.Column[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using sortedBy() methods.
    CsvSchema(CsvSchema, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants for on/off features
    CsvSchema.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Class used for building CsvSchema instances.
    CsvSchema.Column - Class in com.fasterxml.jackson.dataformat.csv
    Representation of info for a single column
    CsvSchema.ColumnType - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines optional type indicators that can be passed with schema.
    csvTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     
    CsvWriteException - Exception in com.fasterxml.jackson.dataformat.csv
    Format-specific exception used to indicate problems regarding low-level generation issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.
    CsvWriteException(CsvGenerator, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvWriteException
     

    D

    DEFAULT_ANY_PROPERTY_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
    DEFAULT_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for array elements within a column value is semicolon.
    DEFAULT_COLUMN_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for column values is comma (hence "Comma-Separated Values")
    DEFAULT_ENCODING_FEATURES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_ESCAPE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, no escape character is used -- this is denoted by int value that does not map to a valid character
    DEFAULT_LF - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    DEFAULT_LINEFEED - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_NULL_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls).
    DEFAULT_QUOTE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified parser features (check CsvParser.Feature for list of features)
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified generator feature (check CsvGenerator.Feature for list of features)
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    disable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
    disableArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    disableElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    disableEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying that no escape character is to be used with CSV documents this schema defines.
    disableQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    DoubleValue(double) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    dropLastColumnIfEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Helper method called to drop the last collected column name if it is empty: called if {link CsvParser.Feature#ALLOW_TRAILING_COMMA} enabled to remove the last entry after being added initially.

    E

    emptyAndGetCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for creating a "default" CSV schema instance, with following settings: Does NOT use header line Uses double quotes ('"') for quoting of field values (if necessary) Uses comma (',') as the field separator Uses Unix linefeed ('\n') as row separator Does NOT use any escape characters Does NOT have any columns defined
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified parser feature (check CsvParser.Feature for list of features)
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified generator features (check CsvGenerator.Feature for list of features)
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    enable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    ENCODING_FEATURE_ALLOW_COMMENTS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_REORDER_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_SKIP_FIRST_DATA_ROW - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_STRICT_HEADERS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_USE_HEADER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    endRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    ensureLoaded(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    ensureNotShared() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.

    F

    FALSE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    finishAndReturn(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    flush(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    FORMAT_NAME_CSV - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Name used to identify CSV format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    formatParserFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(CsvParser, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
    from(CsvGenerator, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
    from(CsvParser, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvReadException
     
    from(CsvGenerator, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvWriteException
     
    fromCsvFeatures(int) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    G

    getAnyPropertyName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCharacterEscapes() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getColumnDesc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method for getting description of column definitions in developer-readable form
    getColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    getColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getCurrentColumn() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getCurrentRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentSegmentSize() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDupDetector() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getEscapeCodesForAscii() - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getEscapeSequence(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Overridden with more specific type, since factory we have is always of type CsvFactory
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getLineSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNextWithName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Access that returns same as CsvSchema.Column.getNext() iff name of that column is same as given name
    getNullValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNullValueOrEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Same as CsvSchema.getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
    getNullValueString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValueExact() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getSchema() - Method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTokenCharacterOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenColumnNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLineNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    H

    hasArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    hasColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).
    hasCSVFormat(InputAccessor, int, char) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current implementation is not as thorough as one used by other data formats like JSON.
    hasCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    hasMoreInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that can be called to see if there is at least one more character to be parsed.
    hasName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    hasTextAsCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    HEX_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    I

    inLongRange(char[], int, int, boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not.
    INT_0 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_1 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_2 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_3 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_4 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_5 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_6 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_7 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_8 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_9 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_DECIMAL_POINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_e - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_E - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_MINUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_PLUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    IntValue(int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Checked whether specified parser feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Check whether specified generator feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for checking whether specified CSV CsvParser.Feature is enabled.
    isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method used by CsvParser.isExpectedNumberIntToken() to coerce current token into integer number, if it looks like one.
    isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
    iterator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    L

    loadMore() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    LongValue(long) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    looksLikeInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    LRUMap<K,V> - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper for simple bounded LRU maps used for reusing lookup values.
    LRUMap(int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     

    M

    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    MAX_QUOTE_CHECK - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Also: only do check for optional quotes for short values; longer ones will always be quoted.
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    N

    NASTY_SMALL_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
    nextColumnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextFieldName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextNumber() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextNumberOrString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
    nextStringOrLiteral() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextTextValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    NO_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Marker for the case where no array element separator is used
    NO_BUFFERED - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    NO_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    NO_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    noEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    NR_BIGDECIMAL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_BIGINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_INT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_UNKNOWN - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NumberInput - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    NumberInput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    NumberOutput - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficient writing of numeric values
    NumberOutput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     

    O

    outputInt(int, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    outputLong(long, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.csv
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    parseDouble(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    parseInt(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Fast method for parsing integers that are known to fit into regular 32-bit signed int type.
    parseLong(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    PLACEHOLDER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    Q

    quoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    R

    RawValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    read() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readResolve() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing Builder that can be used to create modified schema.
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    removeArrayElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    removeEldestEntry(Map.Entry<K, V>) - Method in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    renameColumn(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reordersColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    replaceColumn(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportDeferredInvalid() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidInitial(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportInvalidOther(int, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportOverflowInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportOverflowLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedEOF(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedNumberChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    reset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    resetWithString(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     

    S

    schema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    schemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    schemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(JavaType, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(Class<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(TypeReference<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaWithHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    setAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
    setAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(int, char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate array element values.
    setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate column values.
    setColumnType(int, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    setEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional escaping of characters in quoted String values.
    setLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setLineSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setOutputEscapes(int[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    setQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional quoting of values.
    setReorderColumns(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Use in combination with setUseHeader.
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    setSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
    setStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    As an optimization we try coalescing short writes into buffer; but pass longer directly.
    SimpleTokenWriteContext - Class in com.fasterxml.jackson.dataformat.csv.impl
    Intermediate base context; for 2.x copied within CSV format codebase, in 3.0 will be part of jackson-core
    SimpleTokenWriteContext(int, SimpleTokenWriteContext, DupDetector, Object) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for finding out how many columns this schema defines.
    size() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    skipFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    skipLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to blindly skip a single line of content, without considering aspects like quoting or escaping.
    skipLinesWhenNeeded() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    optionally skip lines that are empty or are comments, depending on the feature activated in the parser
    skipsFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    sortedBy(String...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument.
    sortedBy(Comparator<String>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
    startNewLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to handle details of starting a new line, which may include skipping a linefeed.
    STATE_DOC_END - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
    STATE_DOC_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Initial state before anything is read from document.
    STATE_IN_ARRAY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
    STATE_MISSING_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_MISSING_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose `null` value token as a value for "missing" column; see INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_NAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which value matching field name will be returned.
    STATE_NEXT_ENTRY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
    STATE_RECORD_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
    STATE_SKIP_EXTRA_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
    STATE_UNNAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
    std - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    STREAM_READ_CAPABILITIES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
    strictHeaders() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    T

    TextBuffer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficiently aggregating parsed and decoded textual content
    TextBuffer(BufferRecycler) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    TextValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    toString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    toString(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    toString(float) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    TRUE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    typedSchemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    typedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(JavaType, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(Class<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(TypeReference<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    useHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    usesEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.csv.impl
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(IOContext, InputStream, boolean, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Efficient UTF-8 backed writer.
    UTF8Writer(IOContext, OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns an array containing the constants of this enum type, in the order they are declared.
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     

    W

    withAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate whether "hash comments" are allowed for document described by this schema.
    withAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnReordering(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the column reordering flag
    withColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`.
    withComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" ARE allowed for document described by this schema.
    withDupDetector(DupDetector) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    withElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    withEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
    withLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" are NOT allowed for document described by this schema.
    withoutEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
    withoutQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    withSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the strict headers flag
    withType(CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    write(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeColumnName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Method that writer is to call before it writes a field name.
    writeNonEscaped(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNull(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeOmittedField(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     

    _

    _addSchemaProperties(CsvSchema.Builder, AnnotationIntrospector, boolean, JavaType, NameTransformer, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _addToArray(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _addToArray(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _allowComments - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _append(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _arrayContents - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Accumulated contents of an array cell, if any
    _arrayElements - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Additional counter that indicates number of value entries in the array.
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _arrayValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Contents of the cell, to be split into distinct array values.
    _arrayValueStart - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Pointer to the first character of the next array value to return.
    _autoCloseInput - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _bigEndian - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We will hold on to decoded binary data, for duration of current event, so that multiple calls to CsvParser.getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
    _buffer(int, BufferedValue) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _buffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    And if output comes in shuffled order we will need to do bit of ordering.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _bytesPerChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _cfgAllowsComments - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgAlwaysQuoteEmptyStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgAlwaysQuoteStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgColumnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgControlCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEmptyStringAsNull - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _cfgEscapeCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeControlCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeQuoteCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgIncludeMissingTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMaxQuoteCheckChars - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMinSafeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
    _cfgNullValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgOptimalQuoting - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
    _cfgQuoteCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgQuoteCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _characterEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _charsWritten - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Let's keep track of how many bytes have been output, may prove useful when debugging.
    _checkIndex(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _childToRecycle - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether parser is closed or not.
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _codec - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Number of columns defined by schema.
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _columnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _columnIndex - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Index of the column we are exposing
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Column definitions, needed for optional header and/or mapping of field names to column positions.
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _columnsByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _context - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _createContext(ContentReference, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(IOContext, Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _csvGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Name of the field of which value is to be written; only used for OBJECT contexts
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    String value for the current column, if accessed.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _currInputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
    _currInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current row location of current point in input buffer, starting from 1, if available.
    _currInputRowStart - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current index of the first character of the current row in input buffer.
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _determineType(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _dups - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _encodingFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Bit-flag for general-purpose on/off features.
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _feature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _features - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Bitflag for general-purpose on/off features.
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvGenerator.Features enabled, as bitmask.
    _formatParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvParser.Features enabled, as bitmask.
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _getCharDesc(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _gotFieldId - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Marker used to indicate that we just wrote a field name and now expect a value to write
    _handleArrayValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleExtraColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when an extraneous column value is found.
    _handleFirstLine - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag that indicates that we need to write header line, if one is needed.
    _handleFirstLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _handleLF() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _handleMissingColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when end of row occurs before finding values for all schema-specified columns.
    _handleMissingName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleMissingValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNextEntry() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleObjectRowEnd() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called to handle details of state update when end of logical record occurs.
    _handleRecordStart() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleStartDoc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to handle details of initializing things to return the very first token.
    _handleUnnamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _in - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Index of character after last available one in the buffer.
    _inputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Pointer to next available character in buffer
    _inputReader - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input stream that can be used for reading more content, if one in use.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    I/O context for this reader.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _lastBuffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of the last buffered value
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _maxEntries - Variable in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    _maxSpecialChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Maximum of quote character, linefeeds (\r and \n), escape character.
    _mayNeedQuotes(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
    _needsQuotingLoose(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingLoose(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _nextChar() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextColumnByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Index of column that we will be getting next, based on field name call that was made.
    _nextColumnToWrite - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of column we expect to write next
    _nextQuotedString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextUnquotedString(char[], int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nonPojoType(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _nullValueAsString - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _numberBigDecimal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberBigInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberDouble - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberLong - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numTypesValid - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Bitfield that indicates which numeric representations have been calculated for the current type
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Intermediate buffer in which contents are buffered before being written using CsvEncoder._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Offset to index after the last valid index in CsvEncoder._outputBuffer.
    _outputEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Currently active set of output escape code definitions (whether and how to escape or not).
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Pointer to the next available char position in CsvEncoder._outputBuffer
    _owner - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Unfortunate back reference, needed for error reporting
    _parent - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Parent context for this context; null for root context.
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _parseNumericValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that will parse actual numeric value out of a syntactically valid number value.
    _parsingContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Information about parser context, context in which the next token is to be parsed (root, array, object).
    _pendingLF - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Thing that actually reads the CSV content
    _readHeaderLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to process the expected header line
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _reportCsvMappingError(String, Object...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportError(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method for reporting low-level decoding (parsing) problems
    _reportMappingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportParsingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _reportUnexpectedCsvChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Definition of columns being written, if available.
    _schema - Variable in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Definition of columns being read.
    _schemaFor(JavaType, LRUMap<JavaType, CsvSchema>, boolean, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _schemaFor(JavaType, LRUMap<JavaType, CsvSchema>, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Deprecated.
    _separatorChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipBlankLines - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipCommentLines() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipLeadingSpace() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipUntilEndOfLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _skipValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag set when property to write is unknown, and the matching value is to be skipped quietly.
    _skipWithin - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    When skipping output (for "unknown" output), outermost write context where skipping should occur
    _startArray(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _state - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Current logical state of the parser; one of STATE_ constants.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _tokenInputCol - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
    _tokenInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input row on which current token starts, 1-based
    _tokenInputTotal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Total number of bytes/characters read before start of current token.
    _tokenWriteContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _trimSpaces - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
    _typedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
    _unescape() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _untypedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
    _validArrayElementSeparator(String) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _withFeature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _writeQuoted(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuoted(String, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    A B C D E F G H I L M N O P Q R S T U V W _ 

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/index.html ================================================ Jackson-dataformat-CSV 2.13.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/csv/2.13/overview-frame.html ================================================ Overview List (Jackson-dataformat-CSV 2.13.0 API)

     

    ================================================ FILE: docs/javadoc/csv/2.13/overview-summary.html ================================================ Overview (Jackson-dataformat-CSV 2.13.0 API)

    Jackson-dataformat-CSV 2.13.0 API

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-CSV 2.13.0 API)

    Hierarchy For All Packages

    Package Hierarchies:

    Class Hierarchy

    Enum Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/package-list ================================================ com.fasterxml.jackson.dataformat.csv com.fasterxml.jackson.dataformat.csv.impl ================================================ FILE: docs/javadoc/csv/2.13/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/csv/2.13/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-CSV 2.13.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.csv

      • Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes extends com.fasterxml.jackson.core.io.CharacterEscapes implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • escapes

            int[] escapes
      • Class com.fasterxml.jackson.dataformat.csv.CsvFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
        • Serialization Methods

          • readResolve

            protected Object readResolve()
            Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
        • Serialized Fields

          • _schema

            CsvSchema _schema
          • _csvParserFeatures

            int _csvParserFeatures
          • _csvGeneratorFeatures

            int _csvGeneratorFeatures
      • Class com.fasterxml.jackson.dataformat.csv.CsvMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _untypedSchemas

            LRUMap<K,V> _untypedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
          • _typedSchemas

            LRUMap<K,V> _typedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Class com.fasterxml.jackson.dataformat.csv.CsvMappingException extends com.fasterxml.jackson.databind.JsonMappingException implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

      • Class com.fasterxml.jackson.dataformat.csv.CsvReadException extends CsvMappingException implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _columns

            CsvSchema.Column[] _columns
            Column definitions, needed for optional header and/or mapping of field names to column positions.
          • _columnsByName

            Map<K,V> _columnsByName
          • _features

            int _features
            Bitflag for general-purpose on/off features.
            Since:
            2.5
          • _columnSeparator

            char _columnSeparator
          • _arrayElementSeparator

            String _arrayElementSeparator
          • _quoteChar

            int _quoteChar
          • _escapeChar

            int _escapeChar
          • _lineSeparator

            char[] _lineSeparator
          • _nullValue

            char[] _nullValue
            Since:
            2.5
          • _anyPropertyName

            String _anyPropertyName
            If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
            Since:
            2.7
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _name

            String _name
          • _index

            int _index
          • _type

            CsvSchema.ColumnType _type
          • _arrayElementSeparator

            String _arrayElementSeparator
            NOTE: type changed from `char` to `java.lang.String` in 2.7
            Since:
            2.5
          • _next

            CsvSchema.Column _next
            Link to the next column within schema, if one exists; null for the last column.
            Since:
            2.6
      • Class com.fasterxml.jackson.dataformat.csv.CsvWriteException extends CsvMappingException implements Serializable

        serialVersionUID:
        1L
    • Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.13/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/csv/2.14/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-CSV 2.14.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.14/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-CSV 2.14.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvCharacterEscapes.html ================================================ CsvCharacterEscapes (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvCharacterEscapes

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes
        • com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
    • All Implemented Interfaces:
      Serializable


      public final class CsvCharacterEscapes
      extends com.fasterxml.jackson.core.io.CharacterEscapes
      Character escapes for CSV. There are multiple types of escapes.
      • no escapes - return all characters the same way they are defined
      • quote escape - return all characters except the quote character which is escaped (backwards compat)
      • control escape - same as CharTypes.get7BitOutputEscapes(), escape all control characters
      • control and quote escape - do not double up quote, escape control characters and quote.
      See Also:
      Serialized Form
      • Method Detail

        • controlQuoteEscapesInstance

          public static CsvCharacterEscapes controlQuoteEscapesInstance()
        • getEscapeSequence

          public com.fasterxml.jackson.core.SerializableString getEscapeSequence(int ch)
          Specified by:
          getEscapeSequence in class com.fasterxml.jackson.core.io.CharacterEscapes
        • getEscapeCodesForAscii

          public int[] getEscapeCodesForAscii()
          Specified by:
          getEscapeCodesForAscii in class com.fasterxml.jackson.core.io.CharacterEscapes

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvFactory.html ================================================ CsvFactory (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.csv.CsvFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_LF

          protected static final char[] DEFAULT_LF
        • DEFAULT_SCHEMA

          protected static final CsvSchema DEFAULT_SCHEMA
        • _csvParserFeatures

          protected int _csvParserFeatures
        • _csvGeneratorFeatures

          protected int _csvGeneratorFeatures
      • Constructor Detail

        • CsvFactory

          public CsvFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • CsvFactory

          public CsvFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • CsvFactory

          protected CsvFactory(CsvFactory src,
                               com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • rebuild

          public CsvFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static CsvFactoryBuilder builder()
          Main factory method to use for constructing CsvFactory instances with different configuration.
        • copy

          public CsvFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public CsvParser createParser(byte[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(byte[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data,
                                        int offset,
                                        int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out)
                                       throws IOException
          This method assumes use of UTF-8 for encoding.
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(File f,
                                              com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(InputStream in,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(byte[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(Reader r,
                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(char[] data,
                                            int offset,
                                            int len,
                                            com.fasterxml.jackson.core.io.IOContext ctxt,
                                            boolean recyclable)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected CsvGenerator _createGenerator(Writer out,
                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                           throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected CsvGenerator _createUTF8Generator(OutputStream out,
                                                      com.fasterxml.jackson.core.io.IOContext ctxt)
                                               throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createContext

          protected com.fasterxml.jackson.core.io.IOContext _createContext(com.fasterxml.jackson.core.io.ContentReference contentRef,
                                                                           boolean resourceManaged)
          Overrides:
          _createContext in class com.fasterxml.jackson.core.JsonFactory

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvFactoryBuilder.html ================================================ CsvFactoryBuilder (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactoryBuilder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvGenerator.Feature.html ================================================ CsvGenerator.Feature (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvGenerator.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<CsvGenerator.Feature>
      Enclosing class:
      CsvGenerator


      public static enum CsvGenerator.Feature
      extends Enum<CsvGenerator.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      • Enum Constant Detail

        • STRICT_CHECK_FOR_QUOTING

          public static final CsvGenerator.Feature STRICT_CHECK_FOR_QUOTING
          Feature that determines how much work is done before determining that a column value requires quoting: when set as true, full check is made to only use quoting when it is strictly necessary; but when false, a faster but more conservative check is made, and possibly quoting is used for values that might not need it. Trade-offs is basically between optimal/minimal quoting (true), and possibly faster handling (false). Faster check involves only checking first N characters of value, as well as possible looser checks. However: strict check can also be more efficient in some cases when it allows omitting quoting, so trade-off is not always simple.

          Note, however, that regardless setting, all values that need to be quoted will be: it is just that when set to false, other values may also be quoted (to avoid having to do more expensive checks).

          Default value is false for "loose" (approximate, conservative) checking.

          Since:
          2.4
        • OMIT_MISSING_TAIL_COLUMNS

          public static final CsvGenerator.Feature OMIT_MISSING_TAIL_COLUMNS
          Feature that determines whether columns without matching value may be omitted, when they are the last values of the row. If true, values and separators between values may be omitted, to slightly reduce length of the row; if false, separators need to stay in place and values are indicated by empty Strings.
          Since:
          2.4
        • ALWAYS_QUOTE_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_STRINGS
          Feature that determines whether values written as Strings (from java.lang.String valued POJO properties) should be forced to be quoted, regardless of whether they actually need this. Note that this feature has precedence over STRICT_CHECK_FOR_QUOTING, when both would be applicable.
          Since:
          2.5
        • ALWAYS_QUOTE_EMPTY_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_EMPTY_STRINGS
          Feature that determines whether values written as empty Strings (from java.lang.String valued POJO properties) should be forced to be quoted.
          Since:
          2.9
        • ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR
          Feature that determines whether quote characters within quoted String values are escaped using configured escape character, instead of being "doubled up" (that is: a quote character is written twice in a row).

          Default value is false so that quotes are doubled as necessary, not escaped.

          Since:
          2.9.3
        • ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR

          public static final CsvGenerator.Feature ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR
          Feature that determines whether control characters (non-printable) are escaped using the configured escape character. This feature allows LF and CR characters to be output as
          \n
          and
          \r
          instead of being echoed out. This is a compatibility feature for some parsers that can not read such output back in.

          Default value is false so that control characters are echoed out (backwards compatible).

          Since:
          2.9.9
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static CsvGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvGenerator.Feature c : CsvGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvGenerator.html ================================================ CsvGenerator (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.csv.CsvGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class CsvGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvGenerator.Feature
        Enumeration that defines all togglable features for CSV writers (if any: currently none)
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _arrayContents
        Accumulated contents of an array cell, if any
        protected int _arrayElements
        Additional counter that indicates number of value entries in the array.
        protected String _arraySeparator
        Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
        protected com.fasterxml.jackson.core.io.CharacterEscapes _characterEscapes 
        protected int _formatFeatures
        Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        protected boolean _handleFirstLine
        Flag that indicates that we need to write header line, if one is needed.
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected int _nextColumnByName
        Index of column that we will be getting next, based on field name call that was made.
        protected CsvSchema _schema
        Definition of columns being written, if available.
        protected boolean _skipValue
        Flag set when property to write is unknown, and the matching value is to be skipped quietly.
        protected SimpleTokenWriteContext _skipWithin
        When skipping output (for "unknown" output), outermost write context where skipping should occur
        protected SimpleTokenWriteContext _tokenWriteContext
        Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        protected CsvEncoder _writer 
        protected static long MAX_INT_AS_LONG 
        protected static long MIN_INT_AS_LONG 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter, DEFAULT_BINARY_WRITE_CAPABILITIES, DEFAULT_TEXTUAL_WRITE_CAPABILITIES, DEFAULT_WRITE_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, CsvEncoder csvWriter) 
        CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Writer out, CsvSchema schema) 
      • Field Detail

        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        • _schema

          protected CsvSchema _schema
          Definition of columns being written, if available.
        • _tokenWriteContext

          protected SimpleTokenWriteContext _tokenWriteContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
          Since:
          2.11
        • _characterEscapes

          protected com.fasterxml.jackson.core.io.CharacterEscapes _characterEscapes
        • _handleFirstLine

          protected boolean _handleFirstLine
          Flag that indicates that we need to write header line, if one is needed. Used because schema may be specified after instance is constructed.
        • _nextColumnByName

          protected int _nextColumnByName
          Index of column that we will be getting next, based on field name call that was made.
        • _skipValue

          protected boolean _skipValue
          Flag set when property to write is unknown, and the matching value is to be skipped quietly.
          Since:
          2.5
        • _arraySeparator

          protected String _arraySeparator
          Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
          Since:
          2.5
        • _arrayContents

          protected StringBuilder _arrayContents
          Accumulated contents of an array cell, if any
        • _arrayElements

          protected int _arrayElements
          Additional counter that indicates number of value entries in the array. Needed because `null` entries do not add content, but need to be separated by array cell separator
          Since:
          2.7
        • _skipWithin

          protected SimpleTokenWriteContext _skipWithin
          When skipping output (for "unknown" output), outermost write context where skipping should occur
          Since:
          2.7
      • Constructor Detail

        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              Writer out,
                              CsvSchema schema)
          Since:
          2.4
        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                              int jsonFeatures,
                              int csvFeatures,
                              com.fasterxml.jackson.core.ObjectCodec codec,
                              CsvEncoder csvWriter)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public CsvGenerator useDefaultPrettyPrinter()
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public CsvGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public SimpleTokenWriteContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • setCharacterEscapes

          public com.fasterxml.jackson.core.JsonGenerator setCharacterEscapes(com.fasterxml.jackson.core.io.CharacterEscapes esc)
          Overrides:
          setCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • getCharacterEscapes

          public com.fasterxml.jackson.core.io.CharacterEscapes getCharacterEscapes()
          Overrides:
          getCharacterEscapes in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeOmittedField

          public void writeOmittedField(String fieldName)
                                 throws IOException
          Overrides:
          writeOmittedField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _reportMappingError

          protected void _reportMappingError(String msg)
                                      throws IOException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          IOException
          Since:
          2.7
        • _columnIndex

          protected final int _columnIndex()
        • finishRow

          protected void finishRow()
                            throws IOException
          Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
          Throws:
          IOException
        • _addToArray

          protected void _addToArray(String value)
        • _addToArray

          protected void _addToArray(char[] value)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvMapper.Builder.html ================================================ CsvMapper.Builder (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper.Builder

    • Enclosing class:
      CsvMapper


      public static class CsvMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<CsvMapper,CsvMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      Since:
      2.10
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Constructor Summary

        Constructors 
        Constructor and Description
        Builder(CsvMapper m) 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        CsvMapper.Builder configure(CsvGenerator.Feature f, boolean state) 
        CsvMapper.Builder configure(CsvParser.Feature f, boolean state) 
        CsvMapper.Builder disable(CsvGenerator.Feature... features) 
        CsvMapper.Builder disable(CsvParser.Feature... features) 
        CsvMapper.Builder enable(CsvGenerator.Feature... features) 
        CsvMapper.Builder enable(CsvParser.Feature... features) 
        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, accessorNaming, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, configure, constructorDetector, deactivateDefaultTyping, defaultAttributes, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, removeMixIn, serializationInclusion, serializerFactory, setDefaultTyping, streamFactory, subtypeResolver, typeFactory, visibility, visibility, withCoercionConfig, withCoercionConfig, withCoercionConfigDefaults, withConfigOverride

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvMapper.ViewKey.html ================================================ CsvMapper.ViewKey (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper.ViewKey

    • All Implemented Interfaces:
      Serializable
      Enclosing class:
      CsvMapper


      public static final class CsvMapper.ViewKey
      extends Object
      implements Serializable
      Simple class in order to create a map key based on JavaType and a given view. Used for caching associated schemas in _untypedSchemas and _typedSchemas.
      Since:
      2.14
      See Also:
      Serialized Form
      • Constructor Detail

        • ViewKey

          public ViewKey(com.fasterxml.jackson.databind.JavaType pojoType,
                         Class<?> view)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvMapper.html ================================================ CsvMapper (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
        static class  CsvMapper.ViewKey
        Simple class in order to create a map key based on JavaType and a given view.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected LRUMap<CsvMapper.ViewKey,CsvSchema> _typedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
        protected LRUMap<CsvMapper.ViewKey,CsvSchema> _untypedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _addSchemaProperties(CsvSchema.Builder builder, com.fasterxml.jackson.databind.AnnotationIntrospector intr, boolean typed, com.fasterxml.jackson.databind.JavaType pojoType, com.fasterxml.jackson.databind.util.NameTransformer unwrapper, Class<?> view) 
        protected CsvSchema.ColumnType _determineType(Class<?> propType) 
        protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t) 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<CsvMapper.ViewKey,CsvSchema> schemas, boolean typed)
        Deprecated. 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<CsvMapper.ViewKey,CsvSchema> schemas, boolean typed, Class<?> view) 
        static CsvMapper.Builder builder() 
        static CsvMapper.Builder builder(CsvFactory streamFactory) 
        CsvMapper configure(CsvGenerator.Feature f, boolean state) 
        CsvMapper configure(CsvParser.Feature f, boolean state) 
        CsvMapper copy() 
        static CsvMapper.Builder csvBuilder()
        Short-cut for:
        CsvMapper disable(CsvGenerator.Feature f) 
        CsvMapper disable(CsvParser.Feature f) 
        CsvMapper enable(CsvGenerator.Feature f) 
        CsvMapper enable(CsvParser.Feature f) 
        CsvFactory getFactory()
        Overridden with more specific type, since factory we have is always of type CsvFactory
        com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        CsvSchema schema()
        Convenience method that is same as
        CsvSchema schemaFor(Class<?> pojoType) 
        CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema schemaForWithView(Class<?> pojoType, Class<?> view) 
        CsvSchema schemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType, Class<?> view) 
        CsvSchema schemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef, Class<?> view) 
        CsvSchema schemaWithHeader()
        Convenience method that is same as
        CsvSchema typedSchemaFor(Class<?> pojoType) 
        CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema typedSchemaForWithView(Class<?> pojoType, Class<?> view) 
        CsvSchema typedSchemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType, Class<?> view) 
        CsvSchema typedSchemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef, Class<?> view) 
        com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, copyWith, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultAttributes, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
        • Methods inherited from class com.fasterxml.jackson.core.ObjectCodec

          getJsonFactory
      • Field Detail

        • _untypedSchemas

          protected final LRUMap<CsvMapper.ViewKey,CsvSchema> _untypedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • _typedSchemas

          protected final LRUMap<CsvMapper.ViewKey,CsvSchema> _typedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Constructor Detail

        • CsvMapper

          public CsvMapper()
        • CsvMapper

          protected CsvMapper(CsvMapper src)
          Copy-constructor, mostly used to support copy().

          NOTE: ObjectMapper had this method since 2.1.

          Since:
          2.5
      • Method Detail

        • csvBuilder

          public static CsvMapper.Builder csvBuilder()
          Short-cut for:
             return builder(new CsvFactory());
          
          Since:
          2.10
        • copy

          public CsvMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
          Since:
          2.5
        • getFactory

          public CsvFactory getFactory()
          Overridden with more specific type, since factory we have is always of type CsvFactory
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(schemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no CSV types can be mapped to arrays or Collections)
        • readerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • writerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(schemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no root-level CSV types can be mapped to arrays or Collections)
        • writerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • schemaWithHeader

          public CsvSchema schemaWithHeader()
          Convenience method that is same as
             CsvSchema.emptySchema().withHeader();
          
          and returns a CsvSchema instance that uses default configuration with additional setting that the first content line contains intended column names.
          Since:
          2.5
        • schema

          public CsvSchema schema()
          Convenience method that is same as
             CsvSchema.emptySchema()
          
          that is, returns an "empty" Schema; one with default values and no column definitions.
          Since:
          2.5
        • schemaFor

          public CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition will not be strictly typed (that is, all columns are just defined to be exposed as String tokens).
        • schemaForWithView

          public CsvSchema schemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType,
                                             Class<?> view)
        • schemaForWithView

          public final CsvSchema schemaForWithView(Class<?> pojoType,
                                                   Class<?> view)
        • schemaFor

          public final CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • schemaForWithView

          public final CsvSchema schemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef,
                                                   Class<?> view)
        • typedSchemaFor

          public CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition WILL be strictly typed: that is, code will try to determine type limitations which may make parsing more efficient (especially for numeric types like java.lang.Integer).
        • typedSchemaForWithView

          public CsvSchema typedSchemaForWithView(com.fasterxml.jackson.databind.JavaType pojoType,
                                                  Class<?> view)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(Class<?> pojoType)
        • typedSchemaForWithView

          public final CsvSchema typedSchemaForWithView(Class<?> pojoType,
                                                        Class<?> view)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • typedSchemaForWithView

          public final CsvSchema typedSchemaForWithView(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef,
                                                        Class<?> view)
        • _nonPojoType

          protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t)
        • _addSchemaProperties

          protected void _addSchemaProperties(CsvSchema.Builder builder,
                                              com.fasterxml.jackson.databind.AnnotationIntrospector intr,
                                              boolean typed,
                                              com.fasterxml.jackson.databind.JavaType pojoType,
                                              com.fasterxml.jackson.databind.util.NameTransformer unwrapper,
                                              Class<?> view)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvMappingException.html ================================================ CsvMappingException (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMappingException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvParser.Feature.html ================================================ CsvParser.Feature (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvParser.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<CsvParser.Feature>
      Enclosing class:
      CsvParser


      public static enum CsvParser.Feature
      extends Enum<CsvParser.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for CSV parsers
      • Enum Constant Detail

        • TRIM_SPACES

          public static final CsvParser.Feature TRIM_SPACES
          Feature determines whether spaces around separator characters (commas) are to be automatically trimmed before being reported or not. Note that this does NOT force trimming of possible white space from within double-quoted values, but only those surrounding unquoted values (white space outside of double-quotes is never included regardless of trimming).

          Default value is false, as per RFC-4180.

        • WRAP_AS_ARRAY

          public static final CsvParser.Feature WRAP_AS_ARRAY
          Feature that determines how stream of records (usually CSV lines, but sometimes multiple lines when linefeeds are included in quoted values) is exposed: either as a sequence of Objects (false), or as an Array of Objects (true). Using stream of Objects is convenient when using ObjectMapper.readValues(...) and array of Objects convenient when binding to Lists or arrays of values.

          Default value is false, meaning that by default a CSV document is exposed as a sequence of root-level Object entries.

        • IGNORE_TRAILING_UNMAPPABLE

          public static final CsvParser.Feature IGNORE_TRAILING_UNMAPPABLE
          Feature that allows ignoring of unmappable "extra" columns; that is, values for columns that appear after columns for which types are defined. When disabled, an exception is thrown for such column values, but if enabled, they are silently ignored.

          Feature is disabled by default.

          Since:
          2.7
        • SKIP_EMPTY_LINES

          public static final CsvParser.Feature SKIP_EMPTY_LINES
          Feature that allows skipping input lines that are completely empty or blank (composed only of whitespace), instead of being decoded as lines of just a single column with an empty/blank String value (or, of being decoded as lines of just a single column with empty String value (or, depending on binding, `null`).

          Feature is disabled by default.

          Since:
          2.10
        • ALLOW_TRAILING_COMMA

          public static final CsvParser.Feature ALLOW_TRAILING_COMMA
          Feature that allows there to be a trailing single extraneous data column that is empty. When this feature is disabled, any extraneous column, regardless of content will cause an exception to be thrown. Disabling this feature is only useful when IGNORE_TRAILING_UNMAPPABLE is also disabled.
        • ALLOW_COMMENTS

          public static final CsvParser.Feature ALLOW_COMMENTS
          Feature that allows accepting "hash comments" by default, similar to CsvSchema.withAllowComments(boolean). If enabled, such comments are by default allowed on all columns of all documents.
          Since:
          2.10
        • FAIL_ON_MISSING_COLUMNS

          public static final CsvParser.Feature FAIL_ON_MISSING_COLUMNS
          Feature that allows failing (with a CsvReadException) in cases where number of column values encountered is less than number of columns declared in the active schema ("missing columns").

          Note that this feature has precedence over INSERT_NULLS_FOR_MISSING_COLUMNS

          Feature is disabled by default.

          Since:
          2.9
        • FAIL_ON_MISSING_HEADER_COLUMNS

          public static final CsvParser.Feature FAIL_ON_MISSING_HEADER_COLUMNS
          Feature that allows failing (with a CsvReadException) in cases where number of header columns encountered is less than number of columns declared in the active schema (if there is one).

          Feature is enabled by default

          Since:
          2.14
        • INSERT_NULLS_FOR_MISSING_COLUMNS

          public static final CsvParser.Feature INSERT_NULLS_FOR_MISSING_COLUMNS
          Feature that allows "inserting" virtual key / `null` value pairs in case a row contains fewer columns than declared by configured schema. This typically has the effect of forcing an explicit `null` assigment (or corresponding "null value", if so configured) at databinding level. If disabled, no extra work is done and values for "missing" columns are not exposed as part of the token stream.

          Note that this feature is only considered if FAIL_ON_MISSING_COLUMNS is disabled.

          Feature is disabled by default.

          Since:
          2.9
        • EMPTY_STRING_AS_NULL

          public static final CsvParser.Feature EMPTY_STRING_AS_NULL
          Feature that enables coercing an empty String to `null` Feature is disabled by default
      • Method Detail

        • values

          public static CsvParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvParser.Feature c : CsvParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvParser.html ================================================ CsvParser (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class CsvParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.

      Implementation is based on a state-machine that pulls information using CsvDecoder.

      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvParser.Feature
        Enumeration that defines all togglable features for CSV parsers
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _arraySeparator 
        protected String _arrayValue
        Contents of the cell, to be split into distinct array values.
        protected int _arrayValueStart
        Pointer to the first character of the next array value to return.
        protected byte[] _binaryValue
        We will hold on to decoded binary data, for duration of current event, so that multiple calls to getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _cfgEmptyStringAsNull 
        protected int _columnCount
        Number of columns defined by schema.
        protected int _columnIndex
        Index of the column we are exposing
        protected String _currentName
        Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        protected String _currentValue
        String value for the current column, if accessed.
        protected int _formatFeatures 
        protected String _nullValue 
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
        Information about parser context, context in which the next token is to be parsed (root, array, object).
        protected CsvDecoder _reader
        Thing that actually reads the CSV content
        protected CsvSchema _schema
        Definition of columns being read.
        protected int _state
        Current logical state of the parser; one of STATE_ constants.
        protected TextBuffer _textBuffer
        Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        protected static int STATE_DOC_END
        State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
        protected static int STATE_DOC_START
        Initial state before anything is read from document.
        protected static int STATE_IN_ARRAY
        State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
        protected static int STATE_MISSING_NAME
        State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_MISSING_VALUE
        State in which we should expose `null` value token as a value for "missing" column; see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_NAMED_VALUE
        State in which value matching field name will be returned.
        protected static int STATE_NEXT_ENTRY
        State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
        protected static int STATE_RECORD_START
        State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
        protected static int STATE_SKIP_EXTRA_COLUMNS
        State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
        protected static int STATE_UNNAMED_VALUE
        State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
        protected static com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
        CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvParser(CsvIOContext ctxt, int stdFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Field Detail

        • STREAM_READ_CAPABILITIES

          protected static final com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
          CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
          Since:
          2.12
        • STATE_DOC_START

          protected static final int STATE_DOC_START
          Initial state before anything is read from document.
          See Also:
          Constant Field Values
        • STATE_RECORD_START

          protected static final int STATE_RECORD_START
          State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
          See Also:
          Constant Field Values
        • STATE_NEXT_ENTRY

          protected static final int STATE_NEXT_ENTRY
          State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
          See Also:
          Constant Field Values
        • STATE_NAMED_VALUE

          protected static final int STATE_NAMED_VALUE
          State in which value matching field name will be returned.
          See Also:
          Constant Field Values
        • STATE_UNNAMED_VALUE

          protected static final int STATE_UNNAMED_VALUE
          State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
          See Also:
          Constant Field Values
        • STATE_IN_ARRAY

          protected static final int STATE_IN_ARRAY
          State in which a column value has been determined to be of an array type, and will need to be split into multiple values. This can currently only occur for named values.
          Since:
          2.5
          See Also:
          Constant Field Values
        • STATE_SKIP_EXTRA_COLUMNS

          protected static final int STATE_SKIP_EXTRA_COLUMNS
          State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
          Since:
          2.6
          See Also:
          Constant Field Values
        • STATE_DOC_END

          protected static final int STATE_DOC_END
          State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping. This step will loop, returning series of nulls if nextToken() is called multiple times.
          See Also:
          Constant Field Values
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _schema

          protected CsvSchema _schema
          Definition of columns being read. Initialized to "empty" instance, which has default configuration settings.
        • _columnCount

          protected int _columnCount
          Number of columns defined by schema.
        • _cfgEmptyStringAsNull

          protected boolean _cfgEmptyStringAsNull
          Since:
          2.12
        • _parsingContext

          protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
          Information about parser context, context in which the next token is to be parsed (root, array, object).
        • _currentName

          protected String _currentName
          Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        • _currentValue

          protected String _currentValue
          String value for the current column, if accessed.
        • _columnIndex

          protected int _columnIndex
          Index of the column we are exposing
        • _state

          protected int _state
          Current logical state of the parser; one of STATE_ constants.
        • _arrayValueStart

          protected int _arrayValueStart
          Pointer to the first character of the next array value to return.
        • _arrayValue

          protected String _arrayValue
          Contents of the cell, to be split into distinct array values.
        • _arraySeparator

          protected String _arraySeparator
        • _nullValue

          protected String _nullValue
        • _reader

          protected final CsvDecoder _reader
          Thing that actually reads the CSV content
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
      • Constructor Detail

        • CsvParser

          public CsvParser(CsvIOContext ctxt,
                           int stdFeatures,
                           int csvFeatures,
                           com.fasterxml.jackson.core.ObjectCodec codec,
                           Reader reader)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • releaseBuffered

          public int releaseBuffered(Writer out)
                              throws IOException
          Overrides:
          releaseBuffered in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • enable

          public com.fasterxml.jackson.core.JsonParser enable(CsvParser.Feature f)
          Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
        • disable

          public com.fasterxml.jackson.core.JsonParser disable(CsvParser.Feature f)
          Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(CsvParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
        • getSchema

          public CsvSchema getSchema()
          Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • isExpectedStartArrayToken

          public boolean isExpectedStartArrayToken()
          We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
          Overrides:
          isExpectedStartArrayToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • isExpectedNumberIntToken

          public boolean isExpectedNumberIntToken()
          Overrides:
          isExpectedNumberIntToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextFieldName

          public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString str)
                                throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextFieldName

          public String nextFieldName()
                               throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextTextValue

          public String nextTextValue()
                               throws IOException
          Overrides:
          nextTextValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _readHeaderLine

          protected void _readHeaderLine()
                                  throws IOException
          Method called to process the expected header line
          Throws:
          IOException
        • _handleStartDoc

          protected com.fasterxml.jackson.core.JsonToken _handleStartDoc()
                                                                  throws IOException
          Method called to handle details of initializing things to return the very first token.
          Throws:
          IOException
        • _handleRecordStart

          protected com.fasterxml.jackson.core.JsonToken _handleRecordStart()
                                                                     throws IOException
          Throws:
          IOException
        • _handleNextEntry

          protected com.fasterxml.jackson.core.JsonToken _handleNextEntry()
                                                                   throws IOException
          Throws:
          IOException
        • _handleNamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleNamedValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleUnnamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleUnnamedValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleArrayValue

          protected com.fasterxml.jackson.core.JsonToken _handleArrayValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleExtraColumn

          protected com.fasterxml.jackson.core.JsonToken _handleExtraColumn(String value)
                                                                     throws IOException
          Helper method called when an extraneous column value is found. What happens then depends on configuration, but there are three main choices: ignore value (and rest of line); expose extra value as "any property" using configured name, or throw an exception.
          Throws:
          IOException
          Since:
          2.7
        • _handleMissingColumns

          protected com.fasterxml.jackson.core.JsonToken _handleMissingColumns()
                                                                        throws IOException
          Helper method called when end of row occurs before finding values for all schema-specified columns.
          Throws:
          IOException
          Since:
          2.9
        • _handleMissingName

          protected com.fasterxml.jackson.core.JsonToken _handleMissingName()
                                                                     throws IOException
          Throws:
          IOException
        • _handleMissingValue

          protected com.fasterxml.jackson.core.JsonToken _handleMissingValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleObjectRowEnd

          protected final com.fasterxml.jackson.core.JsonToken _handleObjectRowEnd()
                                                                            throws IOException
          Helper method called to handle details of state update when end of logical record occurs.
          Throws:
          IOException
          Since:
          2.9
        • _skipUntilEndOfLine

          protected final com.fasterxml.jackson.core.JsonToken _skipUntilEndOfLine()
                                                                            throws IOException
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer w)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValueExact

          public Number getNumberValueExact()
                                     throws IOException
          Overrides:
          getNumberValueExact in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • _reportCsvMappingError

          public <T> T _reportCsvMappingError(String msg,
                                              Object... args)
                                       throws IOException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          IOException
          Since:
          2.9
        • _reportParsingError

          public void _reportParsingError(String msg)
                                   throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _reportUnexpectedCsvChar

          public void _reportUnexpectedCsvChar(int ch,
                                               String msg)
                                        throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvReadException.html ================================================ CsvReadException (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvReadException

    • All Implemented Interfaces:
      Serializable


      public class CsvReadException
      extends CsvMappingException
      Format-specific exception used to indicate problems regarding low-level decoding/parsing issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.

      In Jackson 2.x this type extends DatabindException, but for Jackson 3.0 will become streaming-level exception

      Since:
      2.13
      See Also:
      Serialized Form

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvSchema.Builder.html ================================================ CsvSchema.Builder (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Builder

    • Enclosing class:
      CsvSchema


      public static class CsvSchema.Builder
      extends Object
      Class used for building CsvSchema instances.
      • Field Detail

        • _encodingFeatures

          protected int _encodingFeatures
          Bit-flag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected char _columnSeparator
        • _arrayElementSeparator

          protected String _arrayElementSeparator
        • _anyPropertyName

          protected String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _lineSeparator

          protected char[] _lineSeparator
        • _nullValue

          protected char[] _nullValue
          Since:
          2.5
      • Constructor Detail

        • Builder

          public Builder()
        • Builder

          public Builder(CsvSchema src)
          "Copy" constructor which creates builder that has settings of given source schema
      • Method Detail

        • addColumn

          public CsvSchema.Builder addColumn(String name)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumn

          public CsvSchema.Builder addColumn(CsvSchema.Column c)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumnsFrom

          public CsvSchema.Builder addColumnsFrom(CsvSchema schema)
          NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
          Since:
          2.9
        • dropLastColumnIfEmpty

          public void dropLastColumnIfEmpty()
          Helper method called to drop the last collected column name if it is empty: called if {link CsvParser.Feature#ALLOW_TRAILING_COMMA} enabled to remove the last entry after being added initially.
          Since:
          2.11.2
        • removeArrayElementSeparator

          public CsvSchema.Builder removeArrayElementSeparator(int index)
        • size

          public int size()
        • hasColumn

          public boolean hasColumn(String name)

          NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).

          Since:
          2.9
        • setUseHeader

          public CsvSchema.Builder setUseHeader(boolean b)
          Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
        • setReorderColumns

          public CsvSchema.Builder setReorderColumns(boolean b)
          Use in combination with setUseHeader. When use header flag is is set, this setting will reorder the columns defined in this schema to match the order set by the header.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setStrictHeaders

          public CsvSchema.Builder setStrictHeaders(boolean b)
          Use in combination with setUseHeader(boolean). When `strict-headers` is set, encoder will ensure the headers are in the order of the schema; if order differs, an exception is thrown.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setSkipFirstDataRow

          public CsvSchema.Builder setSkipFirstDataRow(boolean b)
          Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
        • setAllowComments

          public CsvSchema.Builder setAllowComments(boolean b)
          Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
          Since:
          2.5
        • _feature

          protected final void _feature(int feature,
                                        boolean state)
        • setColumnSeparator

          public CsvSchema.Builder setColumnSeparator(char c)
          Method for specifying character used to separate column values. Default is comma (',').
        • setArrayElementSeparator

          public CsvSchema.Builder setArrayElementSeparator(String separator)
          Method for specifying character used to separate array element values. Default value is semicolon (";")
          Since:
          2.7
        • disableArrayElementSeparator

          public CsvSchema.Builder disableArrayElementSeparator()
          Since:
          2.7
        • setQuoteChar

          public CsvSchema.Builder setQuoteChar(char c)
          Method for specifying character used for optional quoting of values. Default is double-quote ('"').
        • setEscapeChar

          public CsvSchema.Builder setEscapeChar(char c)
          Method for specifying character used for optional escaping of characters in quoted String values. Default is "not used", meaning that no escaping used.
        • disableEscapeChar

          public CsvSchema.Builder disableEscapeChar()
          Method for specifying that no escape character is to be used with CSV documents this schema defines.
        • _checkIndex

          protected void _checkIndex(int index)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvSchema.Column.html ================================================ CsvSchema.Column (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Column

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvSchema.ColumnType.html ================================================ CsvSchema.ColumnType (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvSchema.ColumnType

      • Enum Constant Summary

        Enum Constants 
        Enum Constant and Description
        ARRAY
        Value will be a multi-value sequence, separated by array element separator.
        BOOLEAN
        Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null).
        NUMBER
        Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null.
        NUMBER_OR_STRING
        Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match.
        STRING
        Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.
        STRING_OR_LITERAL
        Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
      • Enum Constant Detail

        • STRING

          public static final CsvSchema.ColumnType STRING
          Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.

          Note that this type allows coercion into array, if higher level application calls JsonParser.isExpectedStartArrayToken(), unlike more explicit types.

        • STRING_OR_LITERAL

          public static final CsvSchema.ColumnType STRING_OR_LITERAL
          Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
        • NUMBER

          public static final CsvSchema.ColumnType NUMBER
          Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null. Values are also trimmed (leading/trailing white space) Other non-numeric Strings may cause parsing exception.
        • NUMBER_OR_STRING

          public static final CsvSchema.ColumnType NUMBER_OR_STRING
          Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match. Values are also trimmed (leading/trailing white space)
        • BOOLEAN

          public static final CsvSchema.ColumnType BOOLEAN
          Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null). Values are trimmed (leading/trailing white space). Values other than indicated above may result in an exception.
          Since:
          2.5
        • ARRAY

          public static final CsvSchema.ColumnType ARRAY
          Value will be a multi-value sequence, separated by array element separator. Element type itself may be any scalar type (that is, number or String) and will not be optimized. Separator may be overridden on per-column basis.

          Note that this type is used for generic concept of multiple values, and not specifically to match Java arrays: data-binding may match such columns to Collections as well, or even other types as necessary.

          Since:
          2.5
      • Method Detail

        • values

          public static CsvSchema.ColumnType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvSchema.ColumnType c : CsvSchema.ColumnType.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvSchema.ColumnType valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvSchema.html ================================================ CsvSchema (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable, Iterable<CsvSchema.Column>


      public class CsvSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Iterable<CsvSchema.Column>, Serializable
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write. Properties supported currently are:
      • columns (List of ColumnDef) [default: empty List]: Ordered list of columns (which may be empty, see below). Each column has name (mandatory) as well as type (optional; if not defined, defaults to "String"). Note that
      • useHeader (boolean) [default: false]: whether the first line of physical document defines column names (true) or not (false): if enabled, parser will take first-line values to define column names; and generator will output column names as the first line
      • quoteChar (char) [default: double-quote ('")]: character used for quoting values that contain quote characters or linefeeds.
      • columnSeparator (char) [default: comma (',')]: character used to separate values. Other commonly used values include tab ('\t') and pipe ('|')
      • arrayElementSeparator (String) [default: semicolon (";")]: string used to separate array elements.
      • lineSeparator (String) [default: "\n"]: character used to separate data rows. Only used by generator; parser accepts three standard linefeeds ("\r", "\r\n", "\n").
      • escapeChar (int) [default: -1 meaning "none"]: character, if any, used to escape values. Most commonly defined as backslash ('\'). Only used by parser; generator only uses quoting, including doubling up of quotes to indicate quote char itself.
      • skipFirstDataRow (boolean) [default: false]: whether the first data line (either first line of the document, if useHeader=false, or second, if useHeader=true) should be completely ignored by parser. Needed to support CSV-like file formats that include additional non-data content before real data begins (specifically some database dumps do this)
      • nullValue (String) [default: "" (empty String)]: When asked to write Java `null`, this String value will be used instead.
        With 2.6, value will also be recognized during value reads.
      • strictHeaders (boolean) [default: false] (added in Jackson 2.7): whether names of columns defined in the schema MUST match with actual declaration from the header row (if header row handling enabled): if true, they must be and an exception if thrown if order differs: if false, no verification is performed.
      • allowComments (boolean) [default: false]: whether lines that start with character "#" are processed as comment lines and skipped/ignored.
      • anyProperty (String] [default: none]: if "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name. Most often used with Jackson @JsonAnySetter annotation.

        Note that schemas without any columns are legal, but if no columns are added, behavior of parser/generator is usually different and content will be exposed as logical Arrays instead of Objects.

        There are 4 ways to create CsvSchema instances:

      See Also:
      Serialized Form
      • Field Detail

        • ENCODING_FEATURE_USE_HEADER

          protected static final int ENCODING_FEATURE_USE_HEADER
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_SKIP_FIRST_DATA_ROW

          protected static final int ENCODING_FEATURE_SKIP_FIRST_DATA_ROW
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_ALLOW_COMMENTS

          protected static final int ENCODING_FEATURE_ALLOW_COMMENTS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_REORDER_COLUMNS

          protected static final int ENCODING_FEATURE_REORDER_COLUMNS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_STRICT_HEADERS

          protected static final int ENCODING_FEATURE_STRICT_HEADERS
          See Also:
          Constant Field Values
        • DEFAULT_ENCODING_FEATURES

          protected static final int DEFAULT_ENCODING_FEATURES
          See Also:
          Constant Field Values
        • NO_CHARS

          protected static final char[] NO_CHARS
        • DEFAULT_COLUMN_SEPARATOR

          public static final char DEFAULT_COLUMN_SEPARATOR
          Default separator for column values is comma (hence "Comma-Separated Values")
          See Also:
          Constant Field Values
        • DEFAULT_ARRAY_ELEMENT_SEPARATOR

          public static final String DEFAULT_ARRAY_ELEMENT_SEPARATOR
          Default separator for array elements within a column value is semicolon.
          See Also:
          Constant Field Values
        • NO_ARRAY_ELEMENT_SEPARATOR

          public static final String NO_ARRAY_ELEMENT_SEPARATOR
          Marker for the case where no array element separator is used
          See Also:
          Constant Field Values
        • DEFAULT_ANY_PROPERTY_NAME

          public static final String DEFAULT_ANY_PROPERTY_NAME
          By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
          Since:
          2.7
        • DEFAULT_NULL_VALUE

          public static final char[] DEFAULT_NULL_VALUE
          By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls). To use automatic coercion on reading, null value must be set explicitly to empty String ("").

          NOTE: before 2.6, this value default to empty char[]; changed to Java null in 2.6.

        • DEFAULT_ESCAPE_CHAR

          public static final int DEFAULT_ESCAPE_CHAR
          By default, no escape character is used -- this is denoted by int value that does not map to a valid character
          See Also:
          Constant Field Values
        • DEFAULT_LINEFEED

          public static final char[] DEFAULT_LINEFEED
        • _columns

          protected final CsvSchema.Column[] _columns
          Column definitions, needed for optional header and/or mapping of field names to column positions.
        • _features

          protected int _features
          Bitflag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected final char _columnSeparator
        • _arrayElementSeparator

          protected final String _arrayElementSeparator
        • _quoteChar

          protected final int _quoteChar
        • _escapeChar

          protected final int _escapeChar
        • _lineSeparator

          protected final char[] _lineSeparator
        • _nullValue

          protected final char[] _nullValue
          Since:
          2.5
        • _nullValueAsString

          protected transient String _nullValueAsString
        • _anyPropertyName

          protected final String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
      • Constructor Detail

        • CsvSchema

          public CsvSchema(CsvSchema.Column[] columns,
                           int features,
                           char columnSeparator,
                           int quoteChar,
                           int escapeChar,
                           char[] lineSeparator,
                           String arrayElementSeparator,
                           char[] nullValue,
                           String anyPropertyName)
          Since:
          2.7
        • CsvSchema

          protected CsvSchema(CsvSchema.Column[] columns,
                              int features,
                              char columnSeparator,
                              int quoteChar,
                              int escapeChar,
                              char[] lineSeparator,
                              String arrayElementSeparator,
                              char[] nullValue,
                              Map<String,CsvSchema.Column> columnsByName,
                              String anyPropertyName)
          Copy constructor used for creating variants using withXxx() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              CsvSchema.Column[] columns)
          Copy constructor used for creating variants using sortedBy() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                              int features)
          Copy constructor used for creating variants for on/off features
          Since:
          2.5
      • Method Detail

        • emptySchema

          public static CsvSchema emptySchema()
          Accessor for creating a "default" CSV schema instance, with following settings:
          • Does NOT use header line
          • Uses double quotes ('"') for quoting of field values (if necessary)
          • Uses comma (',') as the field separator
          • Uses Unix linefeed ('\n') as row separator
          • Does NOT use any escape characters
          • Does NOT have any columns defined
        • rebuild

          public CsvSchema.Builder rebuild()
          Helper method for constructing Builder that can be used to create modified schema.
        • withUseHeader

          public CsvSchema withUseHeader(boolean state)
        • withColumnReordering

          public CsvSchema withColumnReordering(boolean state)
          Returns a clone of this instance by changing or setting the column reordering flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the column reordering feature.
          Since:
          2.7
        • withStrictHeaders

          public CsvSchema withStrictHeaders(boolean state)
          Returns a clone of this instance by changing or setting the strict headers flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the strict headers feature.
          Since:
          2.7
        • withHeader

          public CsvSchema withHeader()
          Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
        • withoutHeader

          public CsvSchema withoutHeader()
          Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
        • withSkipFirstDataRow

          public CsvSchema withSkipFirstDataRow(boolean state)
        • withAllowComments

          public CsvSchema withAllowComments(boolean state)
          Method to indicate whether "hash comments" are allowed for document described by this schema.
          Since:
          2.5
        • withComments

          public CsvSchema withComments()
          Method to indicate that "hash comments" ARE allowed for document described by this schema.
          Since:
          2.5
        • withoutComments

          public CsvSchema withoutComments()
          Method to indicate that "hash comments" are NOT allowed for document described by this schema.
          Since:
          2.5
        • _withFeature

          protected CsvSchema _withFeature(int feature,
                                           boolean state)
        • withColumnSeparator

          public CsvSchema withColumnSeparator(char sep)
        • withQuoteChar

          public CsvSchema withQuoteChar(char c)
        • withoutQuoteChar

          public CsvSchema withoutQuoteChar()
        • withEscapeChar

          public CsvSchema withEscapeChar(char c)
        • withoutEscapeChar

          public CsvSchema withoutEscapeChar()
        • withArrayElementSeparator

          public CsvSchema withArrayElementSeparator(String separator)
          Since:
          2.7
        • withoutArrayElementSeparator

          public CsvSchema withoutArrayElementSeparator()
          Since:
          2.5
        • withoutColumns

          public CsvSchema withoutColumns()
        • withColumnsFrom

          public CsvSchema withColumnsFrom(CsvSchema toAppend)
          Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`. All settings aside from column sets are copied from `this` instance.

          As with all `withXxx()` methods this method never modifies `this` but either returns it unmodified (if no new columns found from `toAppend`), or constructs a new instance and returns that.

          Since:
          2.9
        • withAnyPropertyName

          public CsvSchema withAnyPropertyName(String name)
          Since:
          2.7
        • sortedBy

          public CsvSchema sortedBy(String... columnNames)
          Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument. Columns not listed in argument will be sorted after those within list, using existing ordering.

          For example, schema that has columns:

          "a", "d", "c", "b"
          
          ordered with schema.sortedBy("a", "b"); would result instance that columns in order:
          "a", "b", "d", "c"
          
          Since:
          2.4
        • sortedBy

          public CsvSchema sortedBy(Comparator<String> cmp)
          Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
          Since:
          2.4
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • usesHeader

          public boolean usesHeader()
        • reordersColumns

          public boolean reordersColumns()
        • skipsFirstDataRow

          public boolean skipsFirstDataRow()
        • allowsComments

          public boolean allowsComments()
        • strictHeaders

          public boolean strictHeaders()
        • getColumnSeparator

          public char getColumnSeparator()
        • getArrayElementSeparator

          public String getArrayElementSeparator()
        • getQuoteChar

          public int getQuoteChar()
        • getEscapeChar

          public int getEscapeChar()
        • getLineSeparator

          public char[] getLineSeparator()
        • getNullValue

          public char[] getNullValue()
          Returns:
          Null value defined, as char array, if one is defined to be recognized; Java null if not.
          Since:
          2.5
        • getNullValueOrEmpty

          public char[] getNullValueOrEmpty()
          Same as getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
          Since:
          2.6
        • getNullValueString

          public String getNullValueString()
          Since:
          2.6
        • usesQuoteChar

          public boolean usesQuoteChar()
        • usesEscapeChar

          public boolean usesEscapeChar()
        • hasArrayElementSeparator

          public boolean hasArrayElementSeparator()
          Since:
          2.5
        • getAnyPropertyName

          public String getAnyPropertyName()
          Since:
          2.7
        • size

          public int size()
          Accessor for finding out how many columns this schema defines.
          Returns:
          Number of columns this schema defines
        • column

          public CsvSchema.Column column(int index)
          Accessor for column at specified index (0-based); index having to be within
              0 <= index < size()
          
        • columnName

          public String columnName(int index)
          Since:
          2.6
        • column

          public CsvSchema.Column column(String name,
                                         int probableIndex)
          Optimized variant where a hint is given as to likely index of the column name.
          Since:
          2.6
        • getColumnNames

          public List<String> getColumnNames()
          Accessor for getting names of included columns, in the order they are included in the schema.
          Since:
          2.14
        • getColumnNames

          public Collection<String> getColumnNames(Collection<String> names)
          Accessor for getting names of included columns, added in given Collection.
          Since:
          2.14
        • getColumnDesc

          public String getColumnDesc()
          Method for getting description of column definitions in developer-readable form
        • _validArrayElementSeparator

          protected static String _validArrayElementSeparator(String sep)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/CsvWriteException.html ================================================ CsvWriteException (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvWriteException

    • All Implemented Interfaces:
      Serializable


      public class CsvWriteException
      extends CsvMappingException
      Format-specific exception used to indicate problems regarding low-level generation issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.

      In Jackson 2.x this type extends DatabindException, but for Jackson 3.0 will become streaming-level exception

      Since:
      2.13
      See Also:
      Serialized Form

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvCharacterEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactory (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactory

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.ViewKey.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvMappingException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMappingException (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMappingException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser.Feature (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser.Feature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvReadException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvReadException (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvReadException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Column.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Column

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.ColumnType.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/CsvWriteException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvWriteException (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvWriteException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.PackageVersion (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.csv.PackageVersion

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.BooleanValue.html ================================================ BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.BooleanValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.DoubleValue.html ================================================ BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.DoubleValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.IntValue.html ================================================ BufferedValue.IntValue (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.IntValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.LongValue.html ================================================ BufferedValue.LongValue (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.LongValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.NullValue.html ================================================ BufferedValue.NullValue (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.NullValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.RawValue.html ================================================ BufferedValue.RawValue (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.RawValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.TextValue.html ================================================ BufferedValue.TextValue (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.TextValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.html ================================================ BufferedValue (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/CsvDecoder.html ================================================ CsvDecoder (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvDecoder



    • public class CsvDecoder
      extends Object
      Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
      • Field Detail

        • _owner

          protected final CsvParser _owner
          Unfortunate back reference, needed for error reporting
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
          I/O context for this reader. It handles buffer allocation for the reader.
        • _inputReader

          protected Reader _inputReader
          Input stream that can be used for reading more content, if one in use. May be null, if input comes just as a full buffer, or if the stream has been closed.

          NOTE: renamed in 2.13 from _inputSource.

        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.

          If it is not, it also means that parser can NOT modify underlying buffer.

        • _autoCloseInput

          protected boolean _autoCloseInput
        • _trimSpaces

          protected boolean _trimSpaces
          Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
        • _allowComments

          protected boolean _allowComments
        • _skipBlankLines

          protected boolean _skipBlankLines
          Since:
          2.10.1
        • _maxSpecialChar

          protected int _maxSpecialChar
          Maximum of quote character, linefeeds (\r and \n), escape character.
        • _separatorChar

          protected int _separatorChar
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _inputBuffer

          protected char[] _inputBuffer
          Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
        • _inputPtr

          protected int _inputPtr
          Pointer to next available character in buffer
        • _inputEnd

          protected int _inputEnd
          Index of character after last available one in the buffer.
        • _pendingLF

          protected int _pendingLF
          Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
        • _closed

          protected boolean _closed
          Flag that indicates whether parser is closed or not. Gets set when parser is either closed by explicit call (close()) or when end-of-input is reached.
        • _currInputProcessed

          protected long _currInputProcessed
          Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
        • _currInputRow

          protected int _currInputRow
          Current row location of current point in input buffer, starting from 1, if available.
        • _currInputRowStart

          protected int _currInputRowStart
          Current index of the first character of the current row in input buffer. Needed to calculate column position, if necessary; benefit of not having column itself is that this only has to be updated once per line.
        • _tokenInputTotal

          protected long _tokenInputTotal
          Total number of bytes/characters read before start of current token. For big (gigabyte-sized) sizes are possible, needs to be long, unlike pointers and sizes related to in-memory buffers.
        • _tokenInputRow

          protected int _tokenInputRow
          Input row on which current token starts, 1-based
        • _tokenInputCol

          protected int _tokenInputCol
          Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
        • _numTypesValid

          protected int _numTypesValid
          Bitfield that indicates which numeric representations have been calculated for the current type
        • _numberInt

          protected int _numberInt
        • _numberLong

          protected long _numberLong
        • _numberDouble

          protected double _numberDouble
        • _numberBigInt

          protected BigInteger _numberBigInt
        • _numberBigDecimal

          protected BigDecimal _numberBigDecimal
        • _numberString

          protected String _numberString
          Textual number representation captured from input in cases lazy-parsing is desired.

          As of 2.14, this only applies to BigInteger and BigDecimal.

          Since:
          2.14
      • Constructor Detail

        • CsvDecoder

          public CsvDecoder(CsvParser owner,
                            com.fasterxml.jackson.core.io.IOContext ctxt,
                            Reader r,
                            CsvSchema schema,
                            TextBuffer textBuffer,
                            int stdFeatures,
                            int csvFeatures)
      • Method Detail

        • setSchema

          public void setSchema(CsvSchema schema)
        • overrideFormatFeatures

          public void overrideFormatFeatures(int csvFeatures)
          Since:
          2.7
        • getInputSource

          public Object getInputSource()
        • isClosed

          public boolean isClosed()
        • childArrayContext

          public com.fasterxml.jackson.core.json.JsonReadContext childArrayContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • childObjectContext

          public com.fasterxml.jackson.core.json.JsonReadContext childObjectContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
        • getCurrentRow

          public final int getCurrentRow()
        • getCurrentColumn

          public final int getCurrentColumn()
        • getTokenCharacterOffset

          protected final long getTokenCharacterOffset()
        • getTokenLineNr

          protected final int getTokenLineNr()
        • getTokenColumnNr

          protected final int getTokenColumnNr()
        • getText

          public String getText()
        • hasMoreInput

          public boolean hasMoreInput()
                               throws IOException
          Method that can be called to see if there is at least one more character to be parsed.
          Throws:
          IOException
        • startNewLine

          public boolean startNewLine()
                               throws IOException
          Method called to handle details of starting a new line, which may include skipping a linefeed.
          Returns:
          True if there is a new data line to handle; false if not
          Throws:
          IOException
        • skipLinesWhenNeeded

          public boolean skipLinesWhenNeeded()
                                      throws IOException
          Optionally skip lines that are empty or are comments, depending on the feature activated in the parser
          Returns:
          false if the end of input was reached
          Throws:
          IOException
          Since:
          2.10.1
        • skipLine

          public boolean skipLine()
                           throws IOException
          Method called to blindly skip a single line of content, without considering aspects like quoting or escaping. Used currently simply to skip the first line of input document, if instructed to do so.
          Throws:
          IOException
        • nextString

          public String nextString()
                            throws IOException
          Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
          Returns:
          Column value if more found; null to indicate end of line of input
          Throws:
          IOException
        • nextStringOrLiteral

          public com.fasterxml.jackson.core.JsonToken nextStringOrLiteral()
                                                                   throws IOException
          Throws:
          IOException
        • nextNumber

          public com.fasterxml.jackson.core.JsonToken nextNumber()
                                                          throws IOException
          Throws:
          IOException
        • nextNumberOrString

          public com.fasterxml.jackson.core.JsonToken nextNumberOrString()
                                                                  throws IOException
          Throws:
          IOException
        • isExpectedNumberIntToken

          public boolean isExpectedNumberIntToken()
          Method used by CsvParser.isExpectedNumberIntToken() to coerce current token into integer number, if it looks like one.
          Since:
          2.12
        • getNumberValue

          public Number getNumberValue(boolean exact)
                                throws IOException
          Parameters:
          exact - Whether we should try to retain maximum precision or not; passed as true by getNumberValueExact(), and as false by regular getNumberValue).
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Throws:
          IOException
        • _getBigInteger

          protected BigInteger _getBigInteger()
          Internal accessor that needs to be used for accessing number value of type BigInteger which -- as of 2.14 -- is typically lazily parsed.
          Since:
          2.14
        • _getBigDecimal

          protected BigDecimal _getBigDecimal()
          Internal accessor that needs to be used for accessing number value of type BigDecimal which -- as of 2.14 -- is typically lazily parsed.
          Since:
          2.14
        • _parseNumericValue

          protected void _parseNumericValue(boolean exactNumber)
                                     throws IOException
          Method that will parse actual numeric value out of a syntactically valid number value. Type it will parse into depends on whether it is a floating point number, as well as its magnitude: smallest legal type (of ones available) is used for efficiency.
          Parameters:
          exactNumber - Whether to try to retain the highest precision for floating-point values or not
          Throws:
          IOException
        • convertNumberToBigInteger

          protected void convertNumberToBigInteger()
                                            throws IOException
          Throws:
          IOException
        • convertNumberToBigDecimal

          protected void convertNumberToBigDecimal()
                                            throws IOException
          Throws:
          IOException
        • reportUnexpectedNumberChar

          protected void reportUnexpectedNumberChar(int ch,
                                                    String comment)
                                             throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • reportInvalidNumber

          protected void reportInvalidNumber(String msg)
                                      throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • constructError

          protected final com.fasterxml.jackson.core.JsonParseException constructError(String msg,
                                                                                       Throwable t)
        • _getCharDesc

          protected static final String _getCharDesc(int ch)
        • _reportError

          protected final void _reportError(String msg)
                                     throws com.fasterxml.jackson.core.JsonParseException
          Method for reporting low-level decoding (parsing) problems
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/CsvEncoder.html ================================================ CsvEncoder (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvEncoder



    • public class CsvEncoder
      extends Object
      Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
      • Field Detail

        • HEX_CHARS

          protected static final char[] HEX_CHARS
        • SHORT_WRITE

          protected static final int SHORT_WRITE
          As an optimization we try coalescing short writes into buffer; but pass longer directly.
          See Also:
          Constant Field Values
        • MAX_QUOTE_CHECK

          protected static final int MAX_QUOTE_CHECK
          Also: only do check for optional quotes for short values; longer ones will always be quoted.
          See Also:
          Constant Field Values
        • _outputEscapes

          protected int[] _outputEscapes
          Currently active set of output escape code definitions (whether and how to escape or not).
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _out

          protected final Writer _out
          Underlying Writer used for output.
        • _cfgColumnSeparator

          protected final char _cfgColumnSeparator
        • _cfgQuoteCharacter

          protected final int _cfgQuoteCharacter
        • _cfgEscapeCharacter

          protected final int _cfgEscapeCharacter
          Since:
          2.7
        • _cfgLineSeparator

          protected final char[] _cfgLineSeparator
        • _cfgNullValue

          protected final char[] _cfgNullValue
          Since:
          2.5
        • _cfgLineSeparatorLength

          protected final int _cfgLineSeparatorLength
        • _cfgMaxQuoteCheckChars

          protected final int _cfgMaxQuoteCheckChars
        • _cfgMinSafeChar

          protected final int _cfgMinSafeChar
          Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
        • _csvFeatures

          protected int _csvFeatures
        • _cfgOptimalQuoting

          protected boolean _cfgOptimalQuoting
          Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
          Since:
          2.4
        • _cfgAllowsComments

          protected final boolean _cfgAllowsComments
        • _cfgIncludeMissingTail

          protected boolean _cfgIncludeMissingTail
          Since:
          2.4
        • _cfgAlwaysQuoteStrings

          protected boolean _cfgAlwaysQuoteStrings
          Since:
          2.5
        • _cfgAlwaysQuoteEmptyStrings

          protected boolean _cfgAlwaysQuoteEmptyStrings
        • _cfgEscapeQuoteCharWithEscapeChar

          protected boolean _cfgEscapeQuoteCharWithEscapeChar
        • _cfgEscapeControlCharWithEscapeChar

          protected boolean _cfgEscapeControlCharWithEscapeChar
          Since:
          2.9.9
        • _cfgUseFastDoubleWriter

          protected boolean _cfgUseFastDoubleWriter
          Since:
          2.14
        • _cfgQuoteCharEscapeChar

          protected final char _cfgQuoteCharEscapeChar
        • _cfgControlCharEscapeChar

          protected final char _cfgControlCharEscapeChar
          Since:
          2.9.9
        • _columnCount

          protected int _columnCount
          Since:
          2.4
        • _nextColumnToWrite

          protected int _nextColumnToWrite
          Index of column we expect to write next
        • _buffered

          protected BufferedValue[] _buffered
          And if output comes in shuffled order we will need to do bit of ordering.
        • _lastBuffered

          protected int _lastBuffered
          Index of the last buffered value
        • _outputBuffer

          protected char[] _outputBuffer
          Intermediate buffer in which contents are buffered before being written using _out.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
        • _outputTail

          protected int _outputTail
          Pointer to the next available char position in _outputBuffer
        • _outputEnd

          protected final int _outputEnd
          Offset to index after the last valid index in _outputBuffer. Typically same as length of the buffer.
        • _charsWritten

          protected int _charsWritten
          Let's keep track of how many bytes have been output, may prove useful when debugging. This does not include bytes buffered in the output buffer, just bytes that have been written using underlying stream writer.
      • Constructor Detail

        • CsvEncoder

          @Deprecated
          public CsvEncoder(com.fasterxml.jackson.core.io.IOContext ctxt,
                                        int csvFeatures,
                                        Writer out,
                                        CsvSchema schema)
          Deprecated. 
        • CsvEncoder

          public CsvEncoder(com.fasterxml.jackson.core.io.IOContext ctxt,
                            int csvFeatures,
                            Writer out,
                            CsvSchema schema,
                            boolean useFastDoubleWriter)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/CsvIOContext.html ================================================ CsvIOContext (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvIOContext

    • java.lang.Object
      • com.fasterxml.jackson.core.io.IOContext
        • com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext


    • public class CsvIOContext
      extends com.fasterxml.jackson.core.io.IOContext
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.io.IOContext

          _base64Buffer, _bufferRecycler, _concatCBuffer, _contentReference, _encoding, _managedResource, _nameCopyBuffer, _readIOBuffer, _sourceRef, _tokenCBuffer, _writeEncodingBuffer
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br, com.fasterxml.jackson.core.io.ContentReference sourceRef, boolean managedResource) 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        TextBuffer csvTextBuffer() 
        • Methods inherited from class com.fasterxml.jackson.core.io.IOContext

          _verifyAlloc, _verifyRelease, _verifyRelease, allocBase64Buffer, allocBase64Buffer, allocConcatBuffer, allocNameCopyBuffer, allocReadIOBuffer, allocReadIOBuffer, allocTokenBuffer, allocTokenBuffer, allocWriteEncodingBuffer, allocWriteEncodingBuffer, constructTextBuffer, contentReference, getEncoding, getSourceReference, isResourceManaged, releaseBase64Buffer, releaseConcatBuffer, releaseNameCopyBuffer, releaseReadIOBuffer, releaseTokenBuffer, releaseWriteEncodingBuffer, setEncoding, withEncoding
      • Constructor Detail

        • CsvIOContext

          public CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br,
                              com.fasterxml.jackson.core.io.ContentReference sourceRef,
                              boolean managedResource)
      • Method Detail

        • csvTextBuffer

          public TextBuffer csvTextBuffer()

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/CsvParserBootstrapper.html ================================================ CsvParserBootstrapper (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvParserBootstrapper

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper


    • public final class CsvParserBootstrapper
      extends Object
      This class is used to determine the encoding of byte stream that is to contain CSV document. Since there is no real specification for how this should work with CSV, it will be based on rules used with JSON (which themselves are similar to those used with XML); main points are to check for BOM first, then look for multi-byted fixed-length encodings (UTF-16, UTF-32). And finally, if neither found, must decide between most likely alternatives, UTF-8 and Latin-1.
      • Field Detail

        • _context

          protected final com.fasterxml.jackson.core.io.IOContext _context
        • _codec

          protected final com.fasterxml.jackson.core.ObjectCodec _codec
        • _inputBuffer

          protected final byte[] _inputBuffer
        • _inputProcessed

          protected int _inputProcessed
          Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.

          Note: includes possible BOMs, if those were part of the input.

        • _bigEndian

          protected boolean _bigEndian
        • _bytesPerChar

          protected int _bytesPerChar
      • Constructor Detail

        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       InputStream in)
        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                                       com.fasterxml.jackson.core.ObjectCodec codec,
                                       byte[] inputBuffer,
                                       int inputStart,
                                       int inputLen)
      • Method Detail

        • hasCSVFormat

          public static com.fasterxml.jackson.core.format.MatchStrength hasCSVFormat(com.fasterxml.jackson.core.format.InputAccessor acc,
                                                                                     int quoteChar,
                                                                                     char separatorChar)
                                                                              throws IOException
          Current implementation is not as thorough as one used by other data formats like JSON. But it should work, for now, and can be improved as necessary.
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/LRUMap.html ================================================ LRUMap (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class LRUMap<K,V>

      • Field Detail

        • _maxEntries

          protected final int _maxEntries
      • Constructor Detail

        • LRUMap

          public LRUMap(int initialEntries,
                        int maxEntries)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/SimpleTokenWriteContext.html ================================================ SimpleTokenWriteContext (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class SimpleTokenWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext


    • public final class SimpleTokenWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      Intermediate base context; for 2.x copied within CSV format codebase, in 3.0 will be part of jackson-core
      Since:
      2.11
      • Field Detail

        • _dups

          protected com.fasterxml.jackson.core.json.DupDetector _dups
        • _currentName

          protected String _currentName
          Name of the field of which value is to be written; only used for OBJECT contexts
        • _currentValue

          protected Object _currentValue
        • _gotFieldId

          protected boolean _gotFieldId
          Marker used to indicate that we just wrote a field name and now expect a value to write
      • Constructor Detail

        • SimpleTokenWriteContext

          protected SimpleTokenWriteContext(int type,
                                            SimpleTokenWriteContext parent,
                                            com.fasterxml.jackson.core.json.DupDetector dups,
                                            Object currentValue)
      • Method Detail

        • withDupDetector

          public SimpleTokenWriteContext withDupDetector(com.fasterxml.jackson.core.json.DupDetector dups)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • createRootContext

          public static SimpleTokenWriteContext createRootContext(com.fasterxml.jackson.core.json.DupDetector dd)
        • getParent

          public final SimpleTokenWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • hasCurrentName

          public boolean hasCurrentName()
          Overrides:
          hasCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • clearAndGetParent

          public SimpleTokenWriteContext clearAndGetParent()
          Method that can be used to both clear the accumulated references (specifically value set with setCurrentValue(Object)) that should not be retained, and returns parent (as would getParent() do). Typically called when closing the active context when encountering JsonToken.END_ARRAY or JsonToken.END_OBJECT.
        • getDupDetector

          public com.fasterxml.jackson.core.json.DupDetector getDupDetector()
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Method that writer is to call before it writes a field name.
          Returns:
          Ok if name writing should proceed
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/TextBuffer.html ================================================ TextBuffer (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class TextBuffer



    • public final class TextBuffer
      extends Object
      Helper class for efficiently aggregating parsed and decoded textual content
      • Constructor Detail

        • TextBuffer

          public TextBuffer(com.fasterxml.jackson.core.util.BufferRecycler allocator)
      • Method Detail

        • releaseBuffers

          public void releaseBuffers()
        • reset

          public void reset()
        • resetWithString

          public void resetWithString(String value)
        • size

          public int size()
          Returns:
          Number of characters currently stored by this collector
        • getTextOffset

          public int getTextOffset()
        • hasTextAsCharacters

          public boolean hasTextAsCharacters()
        • getTextBuffer

          public char[] getTextBuffer()
        • contentsAsString

          public String contentsAsString()
        • contentsAsArray

          public char[] contentsAsArray()
        • contentsAsDouble

          public double contentsAsDouble(boolean useFastParser)
                                  throws NumberFormatException
          Convenience method for converting contents of the buffer into a Double value.
          Parameters:
          useFastParser - whether to use com.fasterxml.jackson.core.io.doubleparser
          Returns:
          Buffered text value parsed as a Double, if possible
          Throws:
          NumberFormatException - if contents are not a valid Java number
          Since:
          2.14
        • looksLikeInt

          public boolean looksLikeInt()
        • ensureNotShared

          public void ensureNotShared()
          Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.
        • getCurrentSegment

          public char[] getCurrentSegment()
        • emptyAndGetCurrentSegment

          public final char[] emptyAndGetCurrentSegment()
        • getCurrentSegmentSize

          public int getCurrentSegmentSize()
        • finishAndReturn

          public String finishAndReturn(int lastSegmentEnd,
                                        boolean trimTrailingSpaces)
          Parameters:
          lastSegmentEnd - End offset in the currently active segment, could be 0 in the case of first character is delimiter or end-of-line
          trimTrailingSpaces - Whether trailing spaces should be trimmed or not
        • finishCurrentSegment

          public char[] finishCurrentSegment()

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            byte[] buf,
                            int ptr,
                            int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                            InputStream in,
                            boolean autoClose)
      • Method Detail

        • canModifyBuffer

          protected final boolean canModifyBuffer()
          Method that can be used to see if we can actually modify the underlying buffer. This is the case if we are managing the buffer, but not if it was just given to us.
        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException
        • reportInvalidInitial

          protected void reportInvalidInitial(int mask,
                                              int outputDecoded)
                                       throws IOException
          Throws:
          IOException
        • reportInvalidOther

          protected void reportInvalidOther(int mask,
                                            int outputDecoded,
                                            int errorPosition)
                                     throws IOException
          Throws:
          IOException
        • reportUnexpectedEOF

          protected void reportUnexpectedEOF(int gotBytes,
                                             int needed)
                                      throws IOException
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-CSV 2.14.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Writer

    • All Implemented Interfaces:
      Closeable, Flushable, Appendable, AutoCloseable


      public final class UTF8Writer
      extends Writer
      Efficient UTF-8 backed writer.

      Note: original implementation based on writer from Jackson core package; modified slightly, copied to reduce dependency to impl details.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.BooleanValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.DoubleValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.IntValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.LongValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.NullValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.RawValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.TextValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvDecoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvEncoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvIOContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvParserBootstrapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    No usage of com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/LRUMap.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.LRUMap (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.LRUMap

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/SimpleTokenWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/TextBuffer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.TextBuffer

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.14.0 API)

    com.fasterxml.jackson.dataformat.csv.impl

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv.impl Class Hierarchy (Jackson-dataformat-CSV 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.14.0 API)

    com.fasterxml.jackson.dataformat.csv

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.csv

    • Class Summary 
      Class Description
      CsvCharacterEscapes
      Character escapes for CSV.
      CsvFactory  
      CsvFactoryBuilder
      TSFBuilder implementation for constructing CsvFactory instances.
      CsvGenerator  
      CsvMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      CsvMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
      CsvMapper.ViewKey
      Simple class in order to create a map key based on JavaType and a given view.
      CsvParser
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
      CsvSchema
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
      CsvSchema.Builder
      Class used for building CsvSchema instances.
      CsvSchema.Column
      Representation of info for a single column
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    • Enum Summary 
      Enum Description
      CsvGenerator.Feature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      CsvParser.Feature
      Enumeration that defines all togglable features for CSV parsers
      CsvSchema.ColumnType
      Enumeration that defines optional type indicators that can be passed with schema.
    • Exception Summary 
      Exception Description
      CsvMappingException Deprecated
      Since 2.13 use sub-class CsvReadException and CsvWriteException instead
      CsvReadException
      Format-specific exception used to indicate problems regarding low-level decoding/parsing issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.
      CsvWriteException
      Format-specific exception used to indicate problems regarding low-level generation issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv Class Hierarchy (Jackson-dataformat-CSV 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.io.CharacterEscapes (implements java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey (implements java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema (implements com.fasterxml.jackson.core.FormatSchema, java.lang.Iterable<T>, java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (implements java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.csv.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.databind.DatabindException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/com/fasterxml/jackson/dataformat/csv/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-CSV 2.14.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    • com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder 
      Modifier and Type Constant Field Value
      protected static final char CHAR_NULL 0
      protected static final int INT_0 48
      protected static final int INT_1 49
      protected static final int INT_2 50
      protected static final int INT_3 51
      protected static final int INT_4 52
      protected static final int INT_5 53
      protected static final int INT_6 54
      protected static final int INT_7 55
      protected static final int INT_8 56
      protected static final int INT_9 57
      protected static final int INT_DECIMAL_POINT 46
      protected static final int INT_e 101
      protected static final int INT_E 69
      protected static final int INT_MINUS 45
      protected static final int INT_PLUS 43
      protected static final int NR_BIGDECIMAL 16
      protected static final int NR_BIGINT 4
      protected static final int NR_DOUBLE 8
      protected static final int NR_INT 1
      protected static final int NR_LONG 2
      protected static final int NR_UNKNOWN 0
    • com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder 
      Modifier and Type Constant Field Value
      protected static final int MAX_QUOTE_CHECK 24
      protected static final int SHORT_WRITE 32

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-CSV 2.14.0 API)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/help-doc.html ================================================ API Help (Jackson-dataformat-CSV 2.14.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/index-all.html ================================================ Index (Jackson-dataformat-CSV 2.14.0 API)
    A B C D E F G H I L M N O P Q R S T U V W _ 

    A

    addArrayColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addArrayColumn(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    addArrayColumn(String, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addBooleanColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(String, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<CsvSchema.Column>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<String>, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
    addNumberColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    allowsComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    append(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    appendColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendNull() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    B

    BooleanValue(boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    buffered(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(long) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedNull() - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedRaw(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class used for holding values for a while until output can proceed in expected order.
    BufferedValue() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue.BooleanValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.DoubleValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.IntValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.LongValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.NullValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.RawValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.TextValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Main factory method to use for constructing CsvFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    builder(CsvFactory) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    Builder(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    Builder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    Builder(CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    "Copy" constructor which creates builder that has settings of given source schema

    C

    canModifyBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method that can be used to see if we can actually modify the underlying buffer.
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CHAR_NULL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childArrayContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childObjectContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    clearAndGetParent() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Method that can be used to both clear the accumulated references (specifically value set with SimpleTokenWriteContext.setCurrentValue(Object)) that should not be retained, and returns parent (as would SimpleTokenWriteContext.getParent() do).
    clearColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    close(boolean, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    column(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for column at specified index (0-based); index having to be within
    column(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    column(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Optimized variant where a hint is given as to likely index of the column name.
    Column(int, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(int, String, CsvSchema.ColumnType, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Deprecated.
    use variant where `arrayElementSep` is String
    Column(int, String, CsvSchema.ColumnType, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    Column(CsvSchema.Column, int, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    columnName(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    com.fasterxml.jackson.dataformat.csv - package com.fasterxml.jackson.dataformat.csv
     
    com.fasterxml.jackson.dataformat.csv.impl - package com.fasterxml.jackson.dataformat.csv.impl
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified parser feature (check CsvParser.Feature for list of features)
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified generator feature (check CsvGenerator.Feature for list of features)
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
    constructError(String, Throwable) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    constructParser(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    contentsAsArray() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    contentsAsDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a BigDecimal.
    contentsAsDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    contentsAsDouble(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a Double value.
    contentsAsString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    controlEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    controlQuoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    convertNumberToBigDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToBigInteger() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    createChildArrayContext(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    createChildObjectContext(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    This method assumes use of UTF-8 for encoding.
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createRootContext(DupDetector) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    csvBuilder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Short-cut for:
    CsvCharacterEscapes - Class in com.fasterxml.jackson.dataformat.csv
    Character escapes for CSV.
    CsvDecoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
    CsvDecoder(CsvParser, IOContext, Reader, CsvSchema, TextBuffer, int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    CsvEncoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
    CsvEncoder(IOContext, int, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Deprecated.
    CsvEncoder(IOContext, int, Writer, CsvSchema, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvEncoder(CsvEncoder, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvFactory - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvFactory() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Default constructor used to create factory instances.
    CsvFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Constructors used by CsvFactoryBuilder for instantiation.
    CsvFactoryBuilder - Class in com.fasterxml.jackson.dataformat.csv
    TSFBuilder implementation for constructing CsvFactory instances.
    CsvFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvFactoryBuilder(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    CsvGenerator - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvGenerator(IOContext, int, int, ObjectCodec, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator(IOContext, int, int, ObjectCodec, CsvEncoder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV writers (if any: currently none)
    CsvIOContext - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    CsvIOContext(BufferRecycler, ContentReference, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     
    CsvMapper - Class in com.fasterxml.jackson.dataformat.csv
    Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
    CsvMapper() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Copy-constructor, mostly used to support CsvMapper.copy().
    CsvMapper.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Base implementation for "Vanilla" ObjectMapper, used with CSV backend.
    CsvMapper.ViewKey - Class in com.fasterxml.jackson.dataformat.csv
    Simple class in order to create a map key based on JavaType and a given view.
    CsvMappingException - Exception in com.fasterxml.jackson.dataformat.csv
    Deprecated.
    Since 2.13 use sub-class CsvReadException and CsvWriteException instead
    CsvMappingException(CsvParser, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
     
    CsvMappingException(CsvGenerator, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
     
    CsvParser - Class in com.fasterxml.jackson.dataformat.csv
    JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
    CsvParser(CsvIOContext, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    CsvParser.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV parsers
    CsvParserBootstrapper - Class in com.fasterxml.jackson.dataformat.csv.impl
    This class is used to determine the encoding of byte stream that is to contain CSV document.
    CsvParserBootstrapper(IOContext, ObjectCodec, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvParserBootstrapper(IOContext, ObjectCodec, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvReadException - Exception in com.fasterxml.jackson.dataformat.csv
    Format-specific exception used to indicate problems regarding low-level decoding/parsing issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.
    CsvReadException(CsvParser, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvReadException
     
    CsvSchema - Class in com.fasterxml.jackson.dataformat.csv
    Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], int, char[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], Map<String, CsvSchema.Column>, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using withXxx() methods.
    CsvSchema(CsvSchema, CsvSchema.Column[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using sortedBy() methods.
    CsvSchema(CsvSchema, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants for on/off features
    CsvSchema.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Class used for building CsvSchema instances.
    CsvSchema.Column - Class in com.fasterxml.jackson.dataformat.csv
    Representation of info for a single column
    CsvSchema.ColumnType - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines optional type indicators that can be passed with schema.
    csvTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     
    CsvWriteException - Exception in com.fasterxml.jackson.dataformat.csv
    Format-specific exception used to indicate problems regarding low-level generation issues specific to CSV content; usually problems with field-to-column mapping as defined by CsvSchema.
    CsvWriteException(CsvGenerator, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvWriteException
     

    D

    DEFAULT_ANY_PROPERTY_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
    DEFAULT_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for array elements within a column value is semicolon.
    DEFAULT_COLUMN_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for column values is comma (hence "Comma-Separated Values")
    DEFAULT_ENCODING_FEATURES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_ESCAPE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, no escape character is used -- this is denoted by int value that does not map to a valid character
    DEFAULT_LF - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    DEFAULT_LINEFEED - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_NULL_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls).
    DEFAULT_QUOTE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified parser features (check CsvParser.Feature for list of features)
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified generator feature (check CsvGenerator.Feature for list of features)
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    disable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
    disableArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    disableElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    disableEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying that no escape character is to be used with CSV documents this schema defines.
    disableQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    DoubleValue(double) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    dropLastColumnIfEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Helper method called to drop the last collected column name if it is empty: called if {link CsvParser.Feature#ALLOW_TRAILING_COMMA} enabled to remove the last entry after being added initially.

    E

    emptyAndGetCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for creating a "default" CSV schema instance, with following settings: Does NOT use header line Uses double quotes ('"') for quoting of field values (if necessary) Uses comma (',') as the field separator Uses Unix linefeed ('\n') as row separator Does NOT use any escape characters Does NOT have any columns defined
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified parser feature (check CsvParser.Feature for list of features)
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified generator features (check CsvGenerator.Feature for list of features)
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvParser.Feature, CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature, CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    enable(CsvParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.Builder
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    ENCODING_FEATURE_ALLOW_COMMENTS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_REORDER_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_SKIP_FIRST_DATA_ROW - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_STRICT_HEADERS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_USE_HEADER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    endRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    ensureLoaded(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    ensureNotShared() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.
    equals(Object) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey
     

    F

    FALSE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    finishAndReturn(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    flush(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    FORMAT_NAME_CSV - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Name used to identify CSV format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    formatParserFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(CsvParser, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
    from(CsvGenerator, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
    from(CsvParser, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvReadException
     
    from(CsvGenerator, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvWriteException
     
    fromCsvFeatures(int) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    G

    getAnyPropertyName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCharacterEscapes() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getColumnDesc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method for getting description of column definitions in developer-readable form
    getColumnNames() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for getting names of included columns, in the order they are included in the schema.
    getColumnNames(Collection<String>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for getting names of included columns, added in given Collection.
    getColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    getColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getCurrentColumn() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getCurrentRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentSegmentSize() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDupDetector() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getEscapeCodesForAscii() - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getEscapeSequence(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Overridden with more specific type, since factory we have is always of type CsvFactory
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getLineSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNextWithName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Access that returns same as CsvSchema.Column.getNext() iff name of that column is same as given name
    getNullValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNullValueOrEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Same as CsvSchema.getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
    getNullValueString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValueExact() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getSchema() - Method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTokenCharacterOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenColumnNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLineNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    H

    hasArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    hasColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).
    hasCSVFormat(InputAccessor, int, char) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current implementation is not as thorough as one used by other data formats like JSON.
    hasCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    hashCode() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey
     
    hasMoreInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that can be called to see if there is at least one more character to be parsed.
    hasName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    hasTextAsCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    HEX_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    I

    INT_0 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_1 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_2 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_3 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_4 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_5 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_6 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_7 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_8 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_9 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_DECIMAL_POINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_e - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_E - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_MINUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_PLUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    IntValue(int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Checked whether specified parser feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Check whether specified generator feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for checking whether specified CSV CsvParser.Feature is enabled.
    isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isExpectedNumberIntToken() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method used by CsvParser.isExpectedNumberIntToken() to coerce current token into integer number, if it looks like one.
    isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
    iterator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    L

    loadMore() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    LongValue(long) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    looksLikeInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    LRUMap<K,V> - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper for simple bounded LRU maps used for reusing lookup values.
    LRUMap(int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     

    M

    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    MAX_QUOTE_CHECK - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Also: only do check for optional quotes for short values; longer ones will always be quoted.
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    N

    nextColumnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextFieldName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextNumber() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextNumberOrString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
    nextStringOrLiteral() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextTextValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    NO_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Marker for the case where no array element separator is used
    NO_BUFFERED - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    NO_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    NO_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    noEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     
    NR_BIGDECIMAL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_BIGINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_INT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_UNKNOWN - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     

    O

    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.csv
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    PLACEHOLDER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    Q

    quoteEscapesInstance() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes
     

    R

    RawValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    read() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readResolve() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing Builder that can be used to create modified schema.
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    removeArrayElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    removeEldestEntry(Map.Entry<K, V>) - Method in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    renameColumn(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reordersColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    replaceColumn(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportDeferredInvalid() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidInitial(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportInvalidOther(int, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportOverflowInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportOverflowLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedEOF(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedNumberChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    reset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    resetWithString(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     

    S

    schema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    schemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    schemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(JavaType, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(Class<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaForWithView(TypeReference<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaWithHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    setAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
    setAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(int, char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate array element values.
    setCharacterEscapes(CharacterEscapes) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate column values.
    setColumnType(int, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    setEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional escaping of characters in quoted String values.
    setLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setLineSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setOutputEscapes(int[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    setQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional quoting of values.
    setReorderColumns(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Use in combination with setUseHeader.
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    setSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
    setStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    As an optimization we try coalescing short writes into buffer; but pass longer directly.
    SimpleTokenWriteContext - Class in com.fasterxml.jackson.dataformat.csv.impl
    Intermediate base context; for 2.x copied within CSV format codebase, in 3.0 will be part of jackson-core
    SimpleTokenWriteContext(int, SimpleTokenWriteContext, DupDetector, Object) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for finding out how many columns this schema defines.
    size() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    skipFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    skipLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to blindly skip a single line of content, without considering aspects like quoting or escaping.
    skipLinesWhenNeeded() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Optionally skip lines that are empty or are comments, depending on the feature activated in the parser
    skipsFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    sortedBy(String...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument.
    sortedBy(Comparator<String>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
    startNewLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to handle details of starting a new line, which may include skipping a linefeed.
    STATE_DOC_END - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
    STATE_DOC_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Initial state before anything is read from document.
    STATE_IN_ARRAY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
    STATE_MISSING_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_MISSING_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose `null` value token as a value for "missing" column; see INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_NAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which value matching field name will be returned.
    STATE_NEXT_ENTRY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
    STATE_RECORD_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
    STATE_SKIP_EXTRA_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
    STATE_UNNAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
    std - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    STREAM_READ_CAPABILITIES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    CSV is slightly different from defaults, having essentially untyped scalars except if indicated by schema
    strictHeaders() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    T

    TextBuffer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficiently aggregating parsed and decoded textual content
    TextBuffer(BufferRecycler) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    TextValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    toString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey
     
    toString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    TRUE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    typedSchemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    typedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(JavaType, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(Class<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaForWithView(TypeReference<?>, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    useHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    usesEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.csv.impl
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(IOContext, InputStream, boolean, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Efficient UTF-8 backed writer.
    UTF8Writer(IOContext, OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns an array containing the constants of this enum type, in the order they are declared.
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    ViewKey(JavaType, Class<?>) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey
     

    W

    withAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate whether "hash comments" are allowed for document described by this schema.
    withAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnReordering(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the column reordering flag
    withColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`.
    withComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" ARE allowed for document described by this schema.
    withDupDetector(DupDetector) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    withElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    withEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
    withLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" are NOT allowed for document described by this schema.
    withoutEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
    withoutQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    withSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the strict headers flag
    withType(CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    write(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeColumnName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Method that writer is to call before it writes a field name.
    writeNonEscaped(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNull(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeOmittedField(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     

    _

    _addSchemaProperties(CsvSchema.Builder, AnnotationIntrospector, boolean, JavaType, NameTransformer, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _addToArray(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _addToArray(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _allowComments - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _append(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _arrayContents - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Accumulated contents of an array cell, if any
    _arrayElements - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Additional counter that indicates number of value entries in the array.
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _arrayValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Contents of the cell, to be split into distinct array values.
    _arrayValueStart - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Pointer to the first character of the next array value to return.
    _autoCloseInput - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _bigEndian - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We will hold on to decoded binary data, for duration of current event, so that multiple calls to CsvParser.getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
    _buffer(int, BufferedValue) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _buffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    And if output comes in shuffled order we will need to do bit of ordering.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _bytesPerChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _cfgAllowsComments - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgAlwaysQuoteEmptyStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgAlwaysQuoteStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgColumnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgControlCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEmptyStringAsNull - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _cfgEscapeCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeControlCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeQuoteCharWithEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgIncludeMissingTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMaxQuoteCheckChars - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMinSafeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
    _cfgNullValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgOptimalQuoting - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
    _cfgQuoteCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgQuoteCharEscapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgUseFastDoubleWriter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _characterEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _charsWritten - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Let's keep track of how many bytes have been output, may prove useful when debugging.
    _checkIndex(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _childToRecycle - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether parser is closed or not.
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _codec - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Number of columns defined by schema.
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _columnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _columnIndex - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Index of the column we are exposing
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Column definitions, needed for optional header and/or mapping of field names to column positions.
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _columnsByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _context - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _createContext(ContentReference, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(IOContext, Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _csvGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Name of the field of which value is to be written; only used for OBJECT contexts
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    String value for the current column, if accessed.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _currInputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
    _currInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current row location of current point in input buffer, starting from 1, if available.
    _currInputRowStart - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current index of the first character of the current row in input buffer.
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _determineType(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _dups - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
     
    _encodingFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Bit-flag for general-purpose on/off features.
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _feature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _features - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Bitflag for general-purpose on/off features.
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvGenerator.Features enabled, as bitmask.
    _formatParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactoryBuilder
    Set of CsvParser.Features enabled, as bitmask.
    _getBigDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Internal accessor that needs to be used for accessing number value of type BigDecimal which -- as of 2.14 -- is typically lazily parsed.
    _getBigInteger() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Internal accessor that needs to be used for accessing number value of type BigInteger which -- as of 2.14 -- is typically lazily parsed.
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _getCharDesc(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _gotFieldId - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Marker used to indicate that we just wrote a field name and now expect a value to write
    _handleArrayValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleExtraColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when an extraneous column value is found.
    _handleFirstLine - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag that indicates that we need to write header line, if one is needed.
    _handleFirstLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _handleLF() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _handleMissingColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when end of row occurs before finding values for all schema-specified columns.
    _handleMissingName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleMissingValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNextEntry() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleObjectRowEnd() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called to handle details of state update when end of logical record occurs.
    _handleRecordStart() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleStartDoc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to handle details of initializing things to return the very first token.
    _handleUnnamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _in - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Index of character after last available one in the buffer.
    _inputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Pointer to next available character in buffer
    _inputReader - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input stream that can be used for reading more content, if one in use.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    I/O context for this reader.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _lastBuffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of the last buffered value
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _maxEntries - Variable in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    _maxSpecialChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Maximum of quote character, linefeeds (\r and \n), escape character.
    _mayNeedQuotes(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
    _needsQuotingLoose(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingLoose(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _nextChar() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextColumnByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Index of column that we will be getting next, based on field name call that was made.
    _nextColumnToWrite - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of column we expect to write next
    _nextQuotedString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextUnquotedString(char[], int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nonPojoType(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _nullValueAsString - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _numberBigDecimal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberBigInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberDouble - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberLong - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberString - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Textual number representation captured from input in cases lazy-parsing is desired.
    _numTypesValid - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Bitfield that indicates which numeric representations have been calculated for the current type
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Intermediate buffer in which contents are buffered before being written using CsvEncoder._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Offset to index after the last valid index in CsvEncoder._outputBuffer.
    _outputEscapes - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Currently active set of output escape code definitions (whether and how to escape or not).
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Pointer to the next available char position in CsvEncoder._outputBuffer
    _owner - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Unfortunate back reference, needed for error reporting
    _parent - Variable in class com.fasterxml.jackson.dataformat.csv.impl.SimpleTokenWriteContext
    Parent context for this context; null for root context.
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _parseNumericValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that will parse actual numeric value out of a syntactically valid number value.
    _parsingContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Information about parser context, context in which the next token is to be parsed (root, array, object).
    _pendingLF - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Thing that actually reads the CSV content
    _readHeaderLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to process the expected header line
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _reportCsvMappingError(String, Object...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportError(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method for reporting low-level decoding (parsing) problems
    _reportMappingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportParsingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _reportUnexpectedCsvChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Definition of columns being written, if available.
    _schema - Variable in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
    Deprecated.
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Definition of columns being read.
    _schemaFor(JavaType, LRUMap<CsvMapper.ViewKey, CsvSchema>, boolean, Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _schemaFor(JavaType, LRUMap<CsvMapper.ViewKey, CsvSchema>, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Deprecated.
    _separatorChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipBlankLines - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipCommentLines() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipLeadingSpace() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipUntilEndOfLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _skipValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag set when property to write is unknown, and the matching value is to be skipped quietly.
    _skipWithin - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    When skipping output (for "unknown" output), outermost write context where skipping should occur
    _startArray(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _state - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Current logical state of the parser; one of STATE_ constants.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _tokenInputCol - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
    _tokenInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input row on which current token starts, 1-based
    _tokenInputTotal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Total number of bytes/characters read before start of current token.
    _tokenWriteContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _trimSpaces - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
    _typedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
    _unescape() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _untypedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
    _validArrayElementSeparator(String) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _withFeature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _writeQuoted(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuoted(String, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    A B C D E F G H I L M N O P Q R S T U V W _ 

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/index.html ================================================ Jackson-dataformat-CSV 2.14.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/csv/2.14/javadoc.sh ================================================ /Users/tatu/.sdkman/candidates/java/8.0.345-tem/jre/../bin/javadoc @options @packages ================================================ FILE: docs/javadoc/csv/2.14/options ================================================ -classpath '/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.14.0/jackson-databind-2.14.0.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.14.0/jackson-annotations-2.14.0.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.14.0/jackson-core-2.14.0.jar' -encoding 'UTF-8' -protected -quiet -source '1.8' -sourcepath '/Users/tatu/jackson/jackson-dataformats-text/csv/src/main/java:/Users/tatu/jackson/jackson-dataformats-text/csv/target/generated-sources:/Users/tatu/jackson/jackson-dataformats-text/csv/target/generated-sources/annotations' -author -bottom 'Copyright © 2022 FasterXML. All rights reserved.' -charset 'UTF-8' -d '/Users/tatu/jackson/jackson-dataformats-text/csv/target/apidocs' -docencoding 'UTF-8' -doctitle 'Jackson-dataformat-CSV 2.14.0 API' -link 'https://docs.oracle.com/javase/8/docs/api' -linkoffline 'https://docs.oracle.com/javase/8/docs/api' '/Users/tatu/jackson/jackson-dataformats-text/csv/target/javadoc-bundle-options' -notimestamp -use -version -windowtitle 'Jackson-dataformat-CSV 2.14.0 API' ================================================ FILE: docs/javadoc/csv/2.14/overview-frame.html ================================================ Overview List (Jackson-dataformat-CSV 2.14.0 API)

     

    ================================================ FILE: docs/javadoc/csv/2.14/overview-summary.html ================================================ Overview (Jackson-dataformat-CSV 2.14.0 API)

    Jackson-dataformat-CSV 2.14.0 API

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-CSV 2.14.0 API)

    Hierarchy For All Packages

    Package Hierarchies:

    Class Hierarchy

    Enum Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/package-list ================================================ com.fasterxml.jackson.dataformat.csv com.fasterxml.jackson.dataformat.csv.impl ================================================ FILE: docs/javadoc/csv/2.14/packages ================================================ com.fasterxml.jackson.dataformat.csv.impl com.fasterxml.jackson.dataformat.csv ================================================ FILE: docs/javadoc/csv/2.14/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/csv/2.14/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-CSV 2.14.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.csv

      • Class com.fasterxml.jackson.dataformat.csv.CsvCharacterEscapes extends com.fasterxml.jackson.core.io.CharacterEscapes implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • escapes

            int[] escapes
      • Class com.fasterxml.jackson.dataformat.csv.CsvFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
        • Serialization Methods

          • readResolve

            protected Object readResolve()
            Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
        • Serialized Fields

          • _schema

            CsvSchema _schema
          • _csvParserFeatures

            int _csvParserFeatures
          • _csvGeneratorFeatures

            int _csvGeneratorFeatures
      • Class com.fasterxml.jackson.dataformat.csv.CsvMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _untypedSchemas

            LRUMap<K,V> _untypedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
          • _typedSchemas

            LRUMap<K,V> _typedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Class com.fasterxml.jackson.dataformat.csv.CsvMapper.ViewKey extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _pojoType

            com.fasterxml.jackson.databind.JavaType _pojoType
          • _view

            Class<T> _view
          • _hashCode

            int _hashCode
      • Class com.fasterxml.jackson.dataformat.csv.CsvMappingException extends com.fasterxml.jackson.databind.JsonMappingException implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

      • Class com.fasterxml.jackson.dataformat.csv.CsvReadException extends CsvMappingException implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _columns

            CsvSchema.Column[] _columns
            Column definitions, needed for optional header and/or mapping of field names to column positions.
          • _columnsByName

            Map<K,V> _columnsByName
          • _features

            int _features
            Bitflag for general-purpose on/off features.
            Since:
            2.5
          • _columnSeparator

            char _columnSeparator
          • _arrayElementSeparator

            String _arrayElementSeparator
          • _quoteChar

            int _quoteChar
          • _escapeChar

            int _escapeChar
          • _lineSeparator

            char[] _lineSeparator
          • _nullValue

            char[] _nullValue
            Since:
            2.5
          • _anyPropertyName

            String _anyPropertyName
            If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
            Since:
            2.7
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _name

            String _name
          • _index

            int _index
          • _type

            CsvSchema.ColumnType _type
          • _arrayElementSeparator

            String _arrayElementSeparator
            NOTE: type changed from `char` to `java.lang.String` in 2.7
            Since:
            2.5
          • _next

            CsvSchema.Column _next
            Link to the next column within schema, if one exists; null for the last column.
            Since:
            2.6
      • Class com.fasterxml.jackson.dataformat.csv.CsvWriteException extends CsvMappingException implements Serializable

        serialVersionUID:
        1L
    • Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.14/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/csv/2.9/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-CSV 2.9.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.9/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-CSV 2.9.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvFactory.html ================================================ CsvFactory (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonFactory
        • com.fasterxml.jackson.dataformat.csv.CsvFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_LF

          protected static final char[] DEFAULT_LF
        • DEFAULT_SCHEMA

          protected static final CsvSchema DEFAULT_SCHEMA
        • _csvParserFeatures

          protected int _csvParserFeatures
        • _csvGeneratorFeatures

          protected int _csvGeneratorFeatures
      • Constructor Detail

        • CsvFactory

          public CsvFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • CsvFactory

          public CsvFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • CsvFactory

          protected CsvFactory(CsvFactory src,
                    com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • copy

          public CsvFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(CsvParser.Feature f)
          Checked whether specified parser feature is enabled.
        • isEnabled

          public final boolean isEnabled(CsvGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • createParser

          public CsvParser createParser(byte[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(byte[] data,
                               int offset,
                               int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public CsvParser createParser(char[] data,
                               int offset,
                               int len)
                                 throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out,
                                     com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(OutputStream out)
                                       throws IOException
          This method assumes use of UTF-8 for encoding.
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public CsvGenerator createGenerator(File f,
                                     com.fasterxml.jackson.core.JsonEncoding enc)
                                       throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(InputStream in,
                                com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(byte[] data,
                                int offset,
                                int len,
                                com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(Reader r,
                                com.fasterxml.jackson.core.io.IOContext ctxt)
                                     throws IOException
          Overridable factory method that actually instantiates desired parser.
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected CsvParser _createParser(char[] data,
                                int offset,
                                int len,
                                com.fasterxml.jackson.core.io.IOContext ctxt,
                                boolean recyclable)
                                     throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected CsvGenerator _createGenerator(Writer out,
                                      com.fasterxml.jackson.core.io.IOContext ctxt)
                                           throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected CsvGenerator _createUTF8Generator(OutputStream out,
                                          com.fasterxml.jackson.core.io.IOContext ctxt)
                                               throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                             com.fasterxml.jackson.core.JsonEncoding enc,
                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                             com.fasterxml.jackson.core.JsonEncoding enc,
                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                             int offset,
                             int len,
                             com.fasterxml.jackson.core.JsonEncoding enc,
                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createContext

          protected com.fasterxml.jackson.core.io.IOContext _createContext(Object srcRef,
                                                               boolean resourceManaged)
          Overrides:
          _createContext in class com.fasterxml.jackson.core.JsonFactory

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvGenerator.Feature.html ================================================ CsvGenerator.Feature (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvGenerator.Feature

      • Enum Constant Summary

        Enum Constants 
        Enum Constant and Description
        ALWAYS_QUOTE_EMPTY_STRINGS
        Feature that determines whether values written as empty Strings (from java.lang.String valued POJO properties) should be forced to be quoted.
        ALWAYS_QUOTE_STRINGS
        Feature that determines whether values written as Strings (from java.lang.String valued POJO properties) should be forced to be quoted, regardless of whether they actually need this.
        OMIT_MISSING_TAIL_COLUMNS
        Feature that determines whether columns without matching value may be omitted, when they are the last values of the row.
        STRICT_CHECK_FOR_QUOTING
        Feature that determines how much work is done before determining that a column value requires quoting: when set as true, full check is made to only use quoting when it is strictly necessary; but when false, a faster but more conservative check is made, and possibly quoting is used for values that might not need it.
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected boolean _defaultState 
        protected int _mask 
      • Enum Constant Detail

        • STRICT_CHECK_FOR_QUOTING

          public static final CsvGenerator.Feature STRICT_CHECK_FOR_QUOTING
          Feature that determines how much work is done before determining that a column value requires quoting: when set as true, full check is made to only use quoting when it is strictly necessary; but when false, a faster but more conservative check is made, and possibly quoting is used for values that might not need it. Trade-offs is basically between optimal/minimal quoting (true), and faster handling (false). Faster check involves only checking first N characters of value, as well as possible looser checks.

          Note, however, that regardless setting, all values that need to be quoted will be: it is just that when set to false, other values may also be quoted (to avoid having to do more expensive checks).

          Default value is false for "loose" (approximate, conservative) checking.

          Since:
          2.4
        • OMIT_MISSING_TAIL_COLUMNS

          public static final CsvGenerator.Feature OMIT_MISSING_TAIL_COLUMNS
          Feature that determines whether columns without matching value may be omitted, when they are the last values of the row. If true, values and separators between values may be omitted, to slightly reduce length of the row; if false, separators need to stay in place and values are indicated by empty Strings.
          Since:
          2.4
        • ALWAYS_QUOTE_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_STRINGS
          Feature that determines whether values written as Strings (from java.lang.String valued POJO properties) should be forced to be quoted, regardless of whether they actually need this. Note that this feature has precedence over STRICT_CHECK_FOR_QUOTING, when both would be applicable.
          Since:
          2.5
        • ALWAYS_QUOTE_EMPTY_STRINGS

          public static final CsvGenerator.Feature ALWAYS_QUOTE_EMPTY_STRINGS
          Feature that determines whether values written as empty Strings (from java.lang.String valued POJO properties) should be forced to be quoted.
          Since:
          2.9
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static CsvGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvGenerator.Feature c : CsvGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvGenerator.html ================================================ CsvGenerator (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.csv.CsvGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class CsvGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvGenerator.Feature
        Enumeration that defines all togglable features for CSV writers (if any: currently none)
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _arrayContents
        Accumulated contents of an array cell, if any
        protected int _arrayElements
        Additional counter that indicates number of value entries in the array.
        protected String _arraySeparator
        Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
        protected int _formatFeatures
        Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        protected boolean _handleFirstLine
        Flag that indicates that we need to write header line, if one is needed.
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected int _nextColumnByName
        Index of column that we will be getting next, based on field name call that was made.
        protected CsvSchema _schema
        Definition of columns being written, if available.
        protected boolean _skipValue
        Flag set when property to write is unknown, and the matching value is to be skipped quietly.
        protected com.fasterxml.jackson.core.json.JsonWriteContext _skipWithin
        When skipping output (for "unknown" output), outermost write context where skipping should occur
        protected CsvEncoder _writer 
        protected static long MAX_INT_AS_LONG 
        protected static long MIN_INT_AS_LONG 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, CsvEncoder csvWriter) 
        CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Writer out, CsvSchema schema) 
      • Field Detail

        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
        • _schema

          protected CsvSchema _schema
          Definition of columns being written, if available.
        • _handleFirstLine

          protected boolean _handleFirstLine
          Flag that indicates that we need to write header line, if one is needed. Used because schema may be specified after instance is constructed.
        • _nextColumnByName

          protected int _nextColumnByName
          Index of column that we will be getting next, based on field name call that was made.
        • _skipValue

          protected boolean _skipValue
          Flag set when property to write is unknown, and the matching value is to be skipped quietly.
          Since:
          2.5
        • _arraySeparator

          protected String _arraySeparator
          Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
          Since:
          2.5
        • _arrayContents

          protected StringBuilder _arrayContents
          Accumulated contents of an array cell, if any
        • _arrayElements

          protected int _arrayElements
          Additional counter that indicates number of value entries in the array. Needed because `null` entries do not add content, but need to be separated by array cell separator
          Since:
          2.7
        • _skipWithin

          protected com.fasterxml.jackson.core.json.JsonWriteContext _skipWithin
          When skipping output (for "unknown" output), outermost write context where skipping should occur
          Since:
          2.7
      • Constructor Detail

        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                      int jsonFeatures,
                      int csvFeatures,
                      com.fasterxml.jackson.core.ObjectCodec codec,
                      Writer out,
                      CsvSchema schema)
          Since:
          2.4
        • CsvGenerator

          public CsvGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                      int jsonFeatures,
                      int csvFeatures,
                      com.fasterxml.jackson.core.ObjectCodec codec,
                      CsvEncoder csvWriter)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public CsvGenerator useDefaultPrettyPrinter()
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public CsvGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          No way (or need) to indent anything, so let's block any attempts. (should we throw an exception instead?)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                        int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStringField

          public final void writeStringField(String fieldName,
                              String value)
                                      throws IOException
          Overrides:
          writeStringField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                         int offset,
                         int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                int offset,
                                int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                             int offset,
                             int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                      int offset,
                      int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                      int offset,
                      int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                           int offset,
                           int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                           int offset,
                           int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                         byte[] data,
                         int offset,
                         int len)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeOmittedField

          public void writeOmittedField(String fieldName)
                                 throws IOException
          Overrides:
          writeOmittedField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _reportMappingError

          protected void _reportMappingError(String msg)
                                      throws com.fasterxml.jackson.core.JsonProcessingException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
          Since:
          2.7
        • _columnIndex

          protected final int _columnIndex()
        • finishRow

          protected void finishRow()
                            throws IOException
          Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
          Throws:
          IOException
        • _addToArray

          protected void _addToArray(String value)
        • _addToArray

          protected void _addToArray(char[] value)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvMapper.html ================================================ CsvMapper (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.csv.CsvMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class CsvMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
        protected LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
        Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        protected void _addSchemaProperties(CsvSchema.Builder builder, com.fasterxml.jackson.databind.AnnotationIntrospector intr, boolean typed, com.fasterxml.jackson.databind.JavaType pojoType, com.fasterxml.jackson.databind.util.NameTransformer unwrapper) 
        protected CsvSchema.ColumnType _determineType(Class<?> propType) 
        protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t) 
        protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType, LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas, boolean typed) 
        CsvMapper configure(CsvGenerator.Feature f, boolean state) 
        CsvMapper configure(CsvParser.Feature f, boolean state) 
        CsvMapper copy() 
        CsvMapper disable(CsvGenerator.Feature f) 
        CsvMapper disable(CsvParser.Feature f) 
        CsvMapper enable(CsvGenerator.Feature f) 
        CsvMapper enable(CsvParser.Feature f) 
        CsvFactory getFactory()
        Overridden with more specific type, since factory we have is always of type CsvFactory
        com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        CsvSchema schema()
        Convenience method that is same as
        CsvSchema schemaFor(Class<?> pojoType) 
        CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        CsvSchema schemaWithHeader()
        Convenience method that is same as
        CsvSchema typedSchemaFor(Class<?> pojoType) 
        CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
        Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
        CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef) 
        com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
        Convenience method which is functionally equivalent to:
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _checkInvalidCopy, _configAndWriteValue, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createObjectNode, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPropertyNamingStrategy, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, mixInCount, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, treeAsTokens, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
      • Field Detail

        • _untypedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _untypedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
        • _typedSchemas

          protected final LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> _typedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Constructor Detail

        • CsvMapper

          public CsvMapper()
        • CsvMapper

          protected CsvMapper(CsvMapper src)
          Copy-constructor, mostly used to support copy().

          NOTE: ObjectMapper had this method since 2.1.

          Since:
          2.5
      • Method Detail

        • copy

          public CsvMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
          Since:
          2.5
        • getFactory

          public CsvFactory getFactory()
          Overridden with more specific type, since factory we have is always of type CsvFactory
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(schemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no CSV types can be mapped to arrays or Collections)
        • readerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            reader(pojoType).withSchema(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectReader which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • writerWithSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(schemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).

          Parameters:
          pojoType - Type used both for data-binding (result type) and for schema introspection. NOTE: must NOT be an array or Collection type, since these only make sense for data-binding (like arrays of objects to bind), but not for schema construction (no root-level CSV types can be mapped to arrays or Collections)
        • writerWithTypedSchemaFor

          public com.fasterxml.jackson.databind.ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
          Convenience method which is functionally equivalent to:
            writer(pojoType).with(typedSchemaFor(pojoType));
          
          that is, constructs a ObjectWriter which both binds to specified type and uses "strict" CsvSchema introspected from specified type (one where typing is inferred).
        • schemaWithHeader

          public CsvSchema schemaWithHeader()
          Convenience method that is same as
             CsvSchema.emptySchema().withHeader();
          
          and returns a CsvSchema instance that uses default configuration with additional setting that the first content line contains intended column names.
          Since:
          2.5
        • schema

          public CsvSchema schema()
          Convenience method that is same as
             CsvSchema.emptySchema()
          
          that is, returns an "empty" Schema; one with default values and no column definitions.
          Since:
          2.5
        • schemaFor

          public CsvSchema schemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition will not be strictly typed (that is, all columns are just defined to be exposed as String tokens).
        • schemaFor

          public final CsvSchema schemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • typedSchemaFor

          public CsvSchema typedSchemaFor(com.fasterxml.jackson.databind.JavaType pojoType)
          Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering. Definition WILL be strictly typed: that is, code will try to determine type limitations which may make parsing more efficient (especially for numeric types like java.lang.Integer).
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(Class<?> pojoType)
        • typedSchemaFor

          public final CsvSchema typedSchemaFor(com.fasterxml.jackson.core.type.TypeReference<?> pojoTypeRef)
        • _schemaFor

          protected CsvSchema _schemaFor(com.fasterxml.jackson.databind.JavaType pojoType,
                             LRUMap<com.fasterxml.jackson.databind.JavaType,CsvSchema> schemas,
                             boolean typed)
        • _nonPojoType

          protected boolean _nonPojoType(com.fasterxml.jackson.databind.JavaType t)
        • _addSchemaProperties

          protected void _addSchemaProperties(CsvSchema.Builder builder,
                                  com.fasterxml.jackson.databind.AnnotationIntrospector intr,
                                  boolean typed,
                                  com.fasterxml.jackson.databind.JavaType pojoType,
                                  com.fasterxml.jackson.databind.util.NameTransformer unwrapper)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvMappingException.html ================================================ CsvMappingException (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvMappingException

    • All Implemented Interfaces:
      Serializable


      public class CsvMappingException
      extends com.fasterxml.jackson.databind.JsonMappingException
      Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.
      Since:
      2.9
      See Also:
      Serialized Form

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvParser.Feature.html ================================================ CsvParser.Feature (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvParser.Feature

      • Enum Constant Summary

        Enum Constants 
        Enum Constant and Description
        ALLOW_TRAILING_COMMA
        Feature that allows there to be a trailing single extraneous data column that is empty.
        FAIL_ON_MISSING_COLUMNS
        Feature that allows failing (with a CsvMappingException) in cases where number of column values encountered is less than number of columns declared in active schema ("missing columns").
        IGNORE_TRAILING_UNMAPPABLE
        Feature that allows ignoring of unmappable "extra" columns; that is, values for columns that appear after columns for which types are defined.
        INSERT_NULLS_FOR_MISSING_COLUMNS
        Feature that allows "inserting" virtual key / `null` value pairs in case a row contains fewer columns than declared by configured schema.
        SKIP_EMPTY_LINES
        Feature that allows skipping input lines that are completely empty, instead of being decoded as lines of just a single column with empty String value (or, depending on binding, `null`).
        TRIM_SPACES
        Feature determines whether spaces around separator characters (commas) are to be automatically trimmed before being reported or not.
        WRAP_AS_ARRAY
        Feature that determines how stream of records (usually CSV lines, but sometimes multiple lines when linefeeds are included in quoted values) is exposed: either as a sequence of Objects (false), or as an Array of Objects (true).
      • Enum Constant Detail

        • TRIM_SPACES

          public static final CsvParser.Feature TRIM_SPACES
          Feature determines whether spaces around separator characters (commas) are to be automatically trimmed before being reported or not. Note that this does NOT force trimming of possible white space from within double-quoted values, but only those surrounding unquoted values (white space outside of double-quotes is never included regardless of trimming).

          Default value is false, as per RFC-4180.

        • WRAP_AS_ARRAY

          public static final CsvParser.Feature WRAP_AS_ARRAY
          Feature that determines how stream of records (usually CSV lines, but sometimes multiple lines when linefeeds are included in quoted values) is exposed: either as a sequence of Objects (false), or as an Array of Objects (true). Using stream of Objects is convenient when using ObjectMapper.readValues(...) and array of Objects convenient when binding to Lists or arrays of values.

          Default value is false, meaning that by default a CSV document is exposed as a sequence of root-level Object entries.

        • IGNORE_TRAILING_UNMAPPABLE

          public static final CsvParser.Feature IGNORE_TRAILING_UNMAPPABLE
          Feature that allows ignoring of unmappable "extra" columns; that is, values for columns that appear after columns for which types are defined. When disabled, an exception is thrown for such column values, but if enabled, they are silently ignored.

          Feature is disabled by default.

          Since:
          2.7
        • SKIP_EMPTY_LINES

          public static final CsvParser.Feature SKIP_EMPTY_LINES
          Feature that allows skipping input lines that are completely empty, instead of being decoded as lines of just a single column with empty String value (or, depending on binding, `null`).

          Feature is disabled by default.

          Since:
          2.9
        • ALLOW_TRAILING_COMMA

          public static final CsvParser.Feature ALLOW_TRAILING_COMMA
          Feature that allows there to be a trailing single extraneous data column that is empty. When this feature is disabled, any extraneous column, regardless of content will cause an exception to be thrown. Disabling this feature is only useful when IGNORE_TRAILING_UNMAPPABLE is also disabled.
        • FAIL_ON_MISSING_COLUMNS

          public static final CsvParser.Feature FAIL_ON_MISSING_COLUMNS
          Feature that allows failing (with a CsvMappingException) in cases where number of column values encountered is less than number of columns declared in active schema ("missing columns").

          Note that this feature has precedence over INSERT_NULLS_FOR_MISSING_COLUMNS

          Feature is disabled by default.

          Since:
          2.9
        • INSERT_NULLS_FOR_MISSING_COLUMNS

          public static final CsvParser.Feature INSERT_NULLS_FOR_MISSING_COLUMNS
          Feature that allows "inserting" virtual key / `null` value pairs in case a row contains fewer columns than declared by configured schema. This typically has the effect of forcing an explicit `null` assigment (or corresponding "null value", if so configured) at databinding level. If disabled, no extra work is done and values for "missing" columns are not exposed as part of the token stream.

          Note that this feature is only considered if INSERT_NULLS_FOR_MISSING_COLUMNS is disabled.

          Feature is disabled by default.

          Since:
          2.9
      • Method Detail

        • values

          public static CsvParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvParser.Feature c : CsvParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvParser.html ================================================ CsvParser (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class CsvParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.

      Implementation is based on a state-machine that pulls information using CsvDecoder.

      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  CsvParser.Feature
        Enumeration that defines all togglable features for CSV parsers
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _arraySeparator 
        protected String _arrayValue
        Contents of the cell, to be split into distinct array values.
        protected int _arrayValueStart
        Pointer to the first character of the next array value to return.
        protected byte[] _binaryValue
        We will hold on to decoded binary data, for duration of current event, so that multiple calls to getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected int _columnCount
        Number of columns defined by schema.
        protected int _columnIndex
        Index of the column we are exposing
        protected String _currentName
        Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        protected String _currentValue
        String value for the current column, if accessed.
        protected int _formatFeatures 
        protected String _nullValue 
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
        Information about parser context, context in which the next token is to be parsed (root, array, object).
        protected CsvDecoder _reader
        Thing that actually reads the CSV content
        protected CsvSchema _schema
        Definition of columns being read.
        protected int _state
        Current logical state of the parser; one of STATE_ constants.
        protected TextBuffer _textBuffer
        Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        protected static int STATE_DOC_END
        State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
        protected static int STATE_DOC_START
        Initial state before anything is read from document.
        protected static int STATE_IN_ARRAY
        State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
        protected static int STATE_MISSING_NAME
        State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_MISSING_VALUE
        State in which we should expose `null` value token as a value for "missing" column; see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
        protected static int STATE_NAMED_VALUE
        State in which value matching field name will be returned.
        protected static int STATE_NEXT_ENTRY
        State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
        protected static int STATE_RECORD_START
        State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
        protected static int STATE_SKIP_EXTRA_COLUMNS
        State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
        protected static int STATE_UNNAMED_VALUE
        State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvParser(CsvIOContext ctxt, int stdFeatures, int csvFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Field Detail

        • STATE_DOC_START

          protected static final int STATE_DOC_START
          Initial state before anything is read from document.
          See Also:
          Constant Field Values
        • STATE_RECORD_START

          protected static final int STATE_RECORD_START
          State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
          See Also:
          Constant Field Values
        • STATE_NEXT_ENTRY

          protected static final int STATE_NEXT_ENTRY
          State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
          See Also:
          Constant Field Values
        • STATE_NAMED_VALUE

          protected static final int STATE_NAMED_VALUE
          State in which value matching field name will be returned.
          See Also:
          Constant Field Values
        • STATE_UNNAMED_VALUE

          protected static final int STATE_UNNAMED_VALUE
          State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
          See Also:
          Constant Field Values
        • STATE_IN_ARRAY

          protected static final int STATE_IN_ARRAY
          State in which a column value has been determined to be of an array type, and will need to be split into multiple values. This can currently only occur for named values.
          Since:
          2.5
          See Also:
          Constant Field Values
        • STATE_SKIP_EXTRA_COLUMNS

          protected static final int STATE_SKIP_EXTRA_COLUMNS
          State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
          Since:
          2.6
          See Also:
          Constant Field Values
        • STATE_DOC_END

          protected static final int STATE_DOC_END
          State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping. This step will loop, returning series of nulls if nextToken() is called multiple times.
          See Also:
          Constant Field Values
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _schema

          protected CsvSchema _schema
          Definition of columns being read. Initialized to "empty" instance, which has default configuration settings.
        • _columnCount

          protected int _columnCount
          Number of columns defined by schema.
        • _parsingContext

          protected com.fasterxml.jackson.core.json.JsonReadContext _parsingContext
          Information about parser context, context in which the next token is to be parsed (root, array, object).
        • _currentName

          protected String _currentName
          Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
        • _currentValue

          protected String _currentValue
          String value for the current column, if accessed.
        • _columnIndex

          protected int _columnIndex
          Index of the column we are exposing
        • _state

          protected int _state
          Current logical state of the parser; one of STATE_ constants.
        • _arrayValueStart

          protected int _arrayValueStart
          Pointer to the first character of the next array value to return.
        • _arrayValue

          protected String _arrayValue
          Contents of the cell, to be split into distinct array values.
        • _arraySeparator

          protected String _arraySeparator
        • _nullValue

          protected String _nullValue
        • _reader

          protected final CsvDecoder _reader
          Thing that actually reads the CSV content
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
      • Constructor Detail

        • CsvParser

          public CsvParser(CsvIOContext ctxt,
                   int stdFeatures,
                   int csvFeatures,
                   com.fasterxml.jackson.core.ObjectCodec codec,
                   Reader reader)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • releaseBuffered

          public int releaseBuffered(Writer out)
                              throws IOException
          Overrides:
          releaseBuffered in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                     int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • enable

          public com.fasterxml.jackson.core.JsonParser enable(CsvParser.Feature f)
          Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
        • disable

          public com.fasterxml.jackson.core.JsonParser disable(CsvParser.Feature f)
          Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(CsvParser.Feature f,
                                                        boolean state)
          Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
        • getSchema

          public CsvSchema getSchema()
          Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • isExpectedStartArrayToken

          public boolean isExpectedStartArrayToken()
          We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
          Overrides:
          isExpectedStartArrayToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextFieldName

          public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString str)
                                throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextFieldName

          public String nextFieldName()
                               throws IOException
          Overrides:
          nextFieldName in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • nextTextValue

          public String nextTextValue()
                               throws IOException
          Overrides:
          nextTextValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _readHeaderLine

          protected void _readHeaderLine()
                                  throws IOException
          Method called to process the expected header line
          Throws:
          IOException
        • _handleStartDoc

          protected com.fasterxml.jackson.core.JsonToken _handleStartDoc()
                                                                  throws IOException
          Method called to handle details of initializing things to return the very first token.
          Throws:
          IOException
        • _handleRecordStart

          protected com.fasterxml.jackson.core.JsonToken _handleRecordStart()
                                                                     throws IOException
          Throws:
          IOException
        • _handleNextEntry

          protected com.fasterxml.jackson.core.JsonToken _handleNextEntry()
                                                                   throws IOException
          Throws:
          IOException
        • _handleNamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleNamedValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleUnnamedValue

          protected com.fasterxml.jackson.core.JsonToken _handleUnnamedValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleArrayValue

          protected com.fasterxml.jackson.core.JsonToken _handleArrayValue()
                                                                    throws IOException
          Throws:
          IOException
        • _handleExtraColumn

          protected com.fasterxml.jackson.core.JsonToken _handleExtraColumn(String value)
                                                                     throws IOException
          Helper method called when an extraneous column value is found. What happens then depends on configuration, but there are three main choices: ignore value (and rest of line); expose extra value as "any property" using configured name, or throw an exception.
          Throws:
          IOException
          Since:
          2.7
        • _handleMissingColumns

          protected com.fasterxml.jackson.core.JsonToken _handleMissingColumns()
                                                                        throws IOException
          Helper method called when end of row occurs before finding values for all schema-specified columns.
          Throws:
          IOException
          Since:
          2.9
        • _handleMissingName

          protected com.fasterxml.jackson.core.JsonToken _handleMissingName()
                                                                     throws IOException
          Throws:
          IOException
        • _handleMissingValue

          protected com.fasterxml.jackson.core.JsonToken _handleMissingValue()
                                                                      throws IOException
          Throws:
          IOException
        • _handleObjectRowEnd

          protected final com.fasterxml.jackson.core.JsonToken _handleObjectRowEnd()
                                                                            throws IOException
          Helper method called to handle details of state update when end of logical record occurs.
          Throws:
          IOException
          Since:
          2.9
        • _skipUntilEndOfLine

          protected final com.fasterxml.jackson.core.JsonToken _skipUntilEndOfLine()
                                                                            throws IOException
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer w)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • _reportCsvMappingError

          public <T> T _reportCsvMappingError(String msg,
                                     Object... args)
                                   throws com.fasterxml.jackson.core.JsonProcessingException
          Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
          Since:
          2.9
        • _reportParsingError

          public void _reportParsingError(String msg)
                                   throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _reportUnexpectedCsvChar

          public void _reportUnexpectedCsvChar(int ch,
                                      String msg)
                                        throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvSchema.Builder.html ================================================ CsvSchema.Builder (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Builder

    • Enclosing class:
      CsvSchema


      public static class CsvSchema.Builder
      extends Object
      Class used for building CsvSchema instances.
      • Field Detail

        • _encodingFeatures

          protected int _encodingFeatures
          Bit-flag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected char _columnSeparator
        • _arrayElementSeparator

          protected String _arrayElementSeparator
        • _anyPropertyName

          protected String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _lineSeparator

          protected char[] _lineSeparator
        • _nullValue

          protected char[] _nullValue
          Since:
          2.5
      • Constructor Detail

        • CsvSchema.Builder

          public CsvSchema.Builder()
        • CsvSchema.Builder

          public CsvSchema.Builder(CsvSchema src)
          "Copy" constructor which creates builder that has settings of given source schema
      • Method Detail

        • addColumn

          public CsvSchema.Builder addColumn(String name)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumn

          public CsvSchema.Builder addColumn(CsvSchema.Column c)
          NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
        • addColumnsFrom

          public CsvSchema.Builder addColumnsFrom(CsvSchema schema)
          NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
          Since:
          2.9
        • removeArrayElementSeparator

          public CsvSchema.Builder removeArrayElementSeparator(int index)
        • size

          public int size()
        • hasColumn

          public boolean hasColumn(String name)

          NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).

          Since:
          2.9
        • setUseHeader

          public CsvSchema.Builder setUseHeader(boolean b)
          Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
        • setReorderColumns

          public CsvSchema.Builder setReorderColumns(boolean b)
          Use in combination with setUseHeader. When use header flag is is set, this setting will reorder the columns defined in this schema to match the order set by the header.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setStrictHeaders

          public CsvSchema.Builder setStrictHeaders(boolean b)
          Use in combination with setUseHeader(boolean). When `strict-headers` is set, encoder will ensure the headers are in the order of the schema; if order differs, an exception is thrown.
          Parameters:
          b - Enable / Disable this setting
          Returns:
          This Builder instance
          Since:
          2.7
        • setSkipFirstDataRow

          public CsvSchema.Builder setSkipFirstDataRow(boolean b)
          Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
        • setAllowComments

          public CsvSchema.Builder setAllowComments(boolean b)
          Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
          Since:
          2.5
        • _feature

          protected final void _feature(int feature,
                      boolean state)
        • setColumnSeparator

          public CsvSchema.Builder setColumnSeparator(char c)
          Method for specifying character used to separate column values. Default is comma (',').
        • setArrayElementSeparator

          public CsvSchema.Builder setArrayElementSeparator(String separator)
          Method for specifying character used to separate array element values. Default value is semicolon (";")
          Since:
          2.7
        • disableArrayElementSeparator

          public CsvSchema.Builder disableArrayElementSeparator()
          Since:
          2.7
        • setQuoteChar

          public CsvSchema.Builder setQuoteChar(char c)
          Method for specifying character used for optional quoting of values. Default is double-quote ('"').
        • setEscapeChar

          public CsvSchema.Builder setEscapeChar(char c)
          Method for specifying character used for optional escaping of characters in quoted String values. Default is "not used", meaning that no escaping used.
        • disableEscapeChar

          public CsvSchema.Builder disableEscapeChar()
          Method for specifying that no escape character is to be used with CSV documents this schema defines.
        • _checkIndex

          protected void _checkIndex(int index)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvSchema.Column.html ================================================ CsvSchema.Column (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema.Column

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvSchema.ColumnType.html ================================================ CsvSchema.ColumnType (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Enum CsvSchema.ColumnType

      • Enum Constant Summary

        Enum Constants 
        Enum Constant and Description
        ARRAY
        Value will be a multi-value sequence, separated by array element separator.
        BOOLEAN
        Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null).
        NUMBER
        Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null.
        NUMBER_OR_STRING
        Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match.
        STRING
        Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.
        STRING_OR_LITERAL
        Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
      • Enum Constant Detail

        • STRING

          public static final CsvSchema.ColumnType STRING
          Default type if not explicitly defined; value will be presented as VALUE_STRING by parser, that is, no type-inference is performed, and value is not trimmed.

          Note that this type allows coercion into array, if higher level application calls JsonParser.isExpectedStartArrayToken(), unlike more explicit types.

        • STRING_OR_LITERAL

          public static final CsvSchema.ColumnType STRING_OR_LITERAL
          Value is considered to be a String, except that tokens "null", "true" and "false" are recognized as matching tokens and reported as such; and values are trimmed (leading/trailing white space)
        • NUMBER

          public static final CsvSchema.ColumnType NUMBER
          Value should be a number, but literals "null", "true" and "false" are also understood, and an empty String is considered null. Values are also trimmed (leading/trailing white space) Other non-numeric Strings may cause parsing exception.
        • NUMBER_OR_STRING

          public static final CsvSchema.ColumnType NUMBER_OR_STRING
          Value is taken to be a number (if it matches valid JSON number formatting rules), literal (null, true or false) or String, depending on best match. Values are also trimmed (leading/trailing white space)
        • BOOLEAN

          public static final CsvSchema.ColumnType BOOLEAN
          Value is expected to be a boolean ("true", "false") String, or "null", or empty String (equivalent to null). Values are trimmed (leading/trailing white space). Values other than indicated above may result in an exception.
          Since:
          2.5
        • ARRAY

          public static final CsvSchema.ColumnType ARRAY
          Value will be a multi-value sequence, separated by array element separator. Element type itself may be any scalar type (that is, number or String) and will not be optimized. Separator may be overridden on per-column basis.

          Note that this type is used for generic concept of multiple values, and not specifically to match Java arrays: data-binding may match such columns to Collections as well, or even other types as necessary.

          Since:
          2.5
      • Method Detail

        • values

          public static CsvSchema.ColumnType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (CsvSchema.ColumnType c : CsvSchema.ColumnType.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static CsvSchema.ColumnType valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/CsvSchema.html ================================================ CsvSchema (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class CsvSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable, Iterable<CsvSchema.Column>


      public class CsvSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Iterable<CsvSchema.Column>, Serializable
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write. Properties supported currently are:
      • columns (List of ColumnDef) [default: empty List]: Ordered list of columns (which may be empty, see below). Each column has name (mandatory) as well as type (optional; if not defined, defaults to "String"). Note that
      • useHeader (boolean) [default: false]: whether the first line of physical document defines column names (true) or not (false): if enabled, parser will take first-line values to define column names; and generator will output column names as the first line
      • quoteChar (char) [default: double-quote ('")]: character used for quoting values that contain quote characters or linefeeds.
      • columnSeparator (char) [default: comma (',')]: character used to separate values. Other commonly used values include tab ('\t') and pipe ('|')
      • arrayElementSeparator (String) [default: semicolon (";")]: string used to separate array elements.
      • lineSeparator (String) [default: "\n"]: character used to separate data rows. Only used by generator; parser accepts three standard linefeeds ("\r", "\r\n", "\n").
      • escapeChar (int) [default: -1 meaning "none"]: character, if any, used to escape values. Most commonly defined as backslash ('\'). Only used by parser; generator only uses quoting, including doubling up of quotes to indicate quote char itself.
      • skipFirstDataRow (boolean) [default: false]: whether the first data line (either first line of the document, if useHeader=false, or second, if useHeader=true) should be completely ignored by parser. Needed to support CSV-like file formats that include additional non-data content before real data begins (specifically some database dumps do this)
      • nullValue (String) [default: "" (empty String)]: When asked to write Java `null`, this String value will be used instead.
        With 2.6, value will also be recognized during value reads.
      • strictHeaders (boolean) [default: false] (added in Jackson 2.7): whether names of columns defined in the schema MUST match with actual declaration from the header row (if header row handling enabled): if true, they must be and an exception if thrown if order differs: if false, no verification is performed.

      Note that schemas without any columns are legal, but if no columns are added, behavior of parser/generator is usually different and content will be exposed as logical Arrays instead of Objects.

      There are 4 ways to create CsvSchema instances:

      See Also:
      Serialized Form
      • Field Detail

        • ENCODING_FEATURE_USE_HEADER

          protected static final int ENCODING_FEATURE_USE_HEADER
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_SKIP_FIRST_DATA_ROW

          protected static final int ENCODING_FEATURE_SKIP_FIRST_DATA_ROW
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_ALLOW_COMMENTS

          protected static final int ENCODING_FEATURE_ALLOW_COMMENTS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_REORDER_COLUMNS

          protected static final int ENCODING_FEATURE_REORDER_COLUMNS
          See Also:
          Constant Field Values
        • ENCODING_FEATURE_STRICT_HEADERS

          protected static final int ENCODING_FEATURE_STRICT_HEADERS
          See Also:
          Constant Field Values
        • DEFAULT_ENCODING_FEATURES

          protected static final int DEFAULT_ENCODING_FEATURES
          See Also:
          Constant Field Values
        • NO_CHARS

          protected static final char[] NO_CHARS
        • DEFAULT_COLUMN_SEPARATOR

          public static final char DEFAULT_COLUMN_SEPARATOR
          Default separator for column values is comma (hence "Comma-Separated Values")
          See Also:
          Constant Field Values
        • DEFAULT_ARRAY_ELEMENT_SEPARATOR

          public static final String DEFAULT_ARRAY_ELEMENT_SEPARATOR
          Default separator for array elements within a column value is semicolon.
          See Also:
          Constant Field Values
        • NO_ARRAY_ELEMENT_SEPARATOR

          public static final String NO_ARRAY_ELEMENT_SEPARATOR
          Marker for the case where no array element separator is used
          See Also:
          Constant Field Values
        • DEFAULT_ANY_PROPERTY_NAME

          public static final String DEFAULT_ANY_PROPERTY_NAME
          By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
          Since:
          2.7
        • DEFAULT_NULL_VALUE

          public static final char[] DEFAULT_NULL_VALUE
          By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls). To use automatic coercion on reading, null value must be set explicitly to empty String ("").

          NOTE: before 2.6, this value default to empty char[]; changed to Java null in 2.6.

        • DEFAULT_ESCAPE_CHAR

          public static final int DEFAULT_ESCAPE_CHAR
          By default, no escape character is used -- this is denoted by int value that does not map to a valid character
          See Also:
          Constant Field Values
        • DEFAULT_LINEFEED

          public static final char[] DEFAULT_LINEFEED
        • _columns

          protected final CsvSchema.Column[] _columns
          Column definitions, needed for optional header and/or mapping of field names to column positions.
        • _features

          protected int _features
          Bitflag for general-purpose on/off features.
          Since:
          2.5
        • _columnSeparator

          protected final char _columnSeparator
        • _arrayElementSeparator

          protected final String _arrayElementSeparator
        • _quoteChar

          protected final int _quoteChar
        • _escapeChar

          protected final int _escapeChar
        • _lineSeparator

          protected final char[] _lineSeparator
        • _nullValue

          protected final char[] _nullValue
          Since:
          2.5
        • _nullValueAsString

          protected transient String _nullValueAsString
        • _anyPropertyName

          protected final String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
      • Constructor Detail

        • CsvSchema

          public CsvSchema(CsvSchema.Column[] columns,
                   int features,
                   char columnSeparator,
                   int quoteChar,
                   int escapeChar,
                   char[] lineSeparator,
                   String arrayElementSeparator,
                   char[] nullValue,
                   String anyPropertyName)
          Since:
          2.7
        • CsvSchema

          protected CsvSchema(CsvSchema.Column[] columns,
                   int features,
                   char columnSeparator,
                   int quoteChar,
                   int escapeChar,
                   char[] lineSeparator,
                   String arrayElementSeparator,
                   char[] nullValue,
                   Map<String,CsvSchema.Column> columnsByName,
                   String anyPropertyName)
          Copy constructor used for creating variants using withXxx() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                   CsvSchema.Column[] columns)
          Copy constructor used for creating variants using sortedBy() methods.
        • CsvSchema

          protected CsvSchema(CsvSchema base,
                   int features)
          Copy constructor used for creating variants for on/off features
          Since:
          2.5
      • Method Detail

        • emptySchema

          public static CsvSchema emptySchema()
          Accessor for creating a "default" CSV schema instance, with following settings:
          • Does NOT use header line
          • Uses double quotes ('"') for quoting of field values (if necessary)
          • Uses comma (',') as the field separator
          • Uses Unix linefeed ('\n') as row separator
          • Does NOT use any escape characters
          • Does NOT have any columns defined
        • rebuild

          public CsvSchema.Builder rebuild()
          Helper method for constructing Builder that can be used to create modified schema.
        • withUseHeader

          public CsvSchema withUseHeader(boolean state)
        • withColumnReordering

          public CsvSchema withColumnReordering(boolean state)
          Returns a clone of this instance by changing or setting the column reordering flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the column reordering feature.
          Since:
          2.7
        • withStrictHeaders

          public CsvSchema withStrictHeaders(boolean state)
          Returns a clone of this instance by changing or setting the strict headers flag
          Parameters:
          state - New value for setting
          Returns:
          A copy of itself, ensuring the setting for the strict headers feature.
          Since:
          2.7
        • withHeader

          public CsvSchema withHeader()
          Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
        • withoutHeader

          public CsvSchema withoutHeader()
          Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
        • withSkipFirstDataRow

          public CsvSchema withSkipFirstDataRow(boolean state)
        • withAllowComments

          public CsvSchema withAllowComments(boolean state)
          Method to indicate whether "hash comments" are allowed for document described by this schema.
          Since:
          2.5
        • withComments

          public CsvSchema withComments()
          Method to indicate that "hash comments" ARE allowed for document described by this schema.
          Since:
          2.5
        • withoutComments

          public CsvSchema withoutComments()
          Method to indicate that "hash comments" are NOT allowed for document described by this schema.
          Since:
          2.5
        • _withFeature

          protected CsvSchema _withFeature(int feature,
                               boolean state)
        • withColumnSeparator

          public CsvSchema withColumnSeparator(char sep)
        • withQuoteChar

          public CsvSchema withQuoteChar(char c)
        • withoutQuoteChar

          public CsvSchema withoutQuoteChar()
        • withEscapeChar

          public CsvSchema withEscapeChar(char c)
        • withoutEscapeChar

          public CsvSchema withoutEscapeChar()
        • withArrayElementSeparator

          public CsvSchema withArrayElementSeparator(String separator)
          Since:
          2.7
        • withoutArrayElementSeparator

          public CsvSchema withoutArrayElementSeparator()
          Since:
          2.5
        • withoutColumns

          public CsvSchema withoutColumns()
        • withColumnsFrom

          public CsvSchema withColumnsFrom(CsvSchema toAppend)
          Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`. All settings aside from column sets are copied from `this` instance.

          As with all `withXxx()` methods this method never modifies `this` but either returns it unmodified (if no new columns found from `toAppend`), or constructs a new instance and returns that.

          Since:
          2.9
        • withAnyPropertyName

          public CsvSchema withAnyPropertyName(String name)
          Since:
          2.7
        • sortedBy

          public CsvSchema sortedBy(String... columnNames)
          Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument. Columns not listed in argument will be sorted after those within list, using existing ordering.

          For example, schema that has columns:

          "a", "d", "c", "b"
          
          ordered with schema.sortedBy("a", "b"); would result instance that columns in order:
          "a", "b", "d", "c"
          
          Since:
          2.4
        • sortedBy

          public CsvSchema sortedBy(Comparator<String> cmp)
          Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
          Since:
          2.4
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • usesHeader

          public boolean usesHeader()
        • reordersColumns

          public boolean reordersColumns()
        • skipsFirstDataRow

          public boolean skipsFirstDataRow()
        • allowsComments

          public boolean allowsComments()
        • strictHeaders

          public boolean strictHeaders()
        • getColumnSeparator

          public char getColumnSeparator()
        • getArrayElementSeparator

          public String getArrayElementSeparator()
        • getQuoteChar

          public int getQuoteChar()
        • getEscapeChar

          public int getEscapeChar()
        • getLineSeparator

          public char[] getLineSeparator()
        • getNullValue

          public char[] getNullValue()
          Returns:
          Null value defined, as char array, if one is defined to be recognized; Java null if not.
          Since:
          2.5
        • getNullValueOrEmpty

          public char[] getNullValueOrEmpty()
          Same as getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
          Since:
          2.6
        • getNullValueString

          public String getNullValueString()
          Since:
          2.6
        • usesQuoteChar

          public boolean usesQuoteChar()
        • usesEscapeChar

          public boolean usesEscapeChar()
        • hasArrayElementSeparator

          public boolean hasArrayElementSeparator()
          Since:
          2.5
        • getAnyPropertyName

          public String getAnyPropertyName()
          Since:
          2.7
        • size

          public int size()
          Accessor for finding out how many columns this schema defines.
          Returns:
          Number of columns this schema defines
        • column

          public CsvSchema.Column column(int index)
          Accessor for column at specified index (0-based); index having to be within
              0 <= index < size()
          
        • columnName

          public String columnName(int index)
          Since:
          2.6
        • column

          public CsvSchema.Column column(String name,
                                int probableIndex)
          Optimized variant where a hint is given as to likely index of the column name.
          Since:
          2.6
        • getColumnDesc

          public String getColumnDesc()
          Method for getting description of column definitions in developer-readable form
        • _validArrayElementSeparator

          protected static String _validArrayElementSeparator(String sep)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvFactory (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvFactory

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvGenerator (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvGenerator

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMapper (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMapper

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvMappingException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvMappingException (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvMappingException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser.Feature (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser.Feature

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvParser (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvParser

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Column.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.Column

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.ColumnType.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.CsvSchema (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.CsvSchema

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.PackageVersion (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.csv.PackageVersion

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.BooleanValue.html ================================================ BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.BooleanValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.DoubleValue.html ================================================ BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.DoubleValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.IntValue.html ================================================ BufferedValue.IntValue (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.IntValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.LongValue.html ================================================ BufferedValue.LongValue (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.LongValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.NullValue.html ================================================ BufferedValue.NullValue (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.NullValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.RawValue.html ================================================ BufferedValue.RawValue (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.RawValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.TextValue.html ================================================ BufferedValue.TextValue (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue.TextValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.html ================================================ BufferedValue (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class BufferedValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/CsvDecoder.html ================================================ CsvDecoder (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvDecoder



    • public class CsvDecoder
      extends Object
      Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
      • Field Detail

        • _owner

          protected final CsvParser _owner
          Unfortunate back reference, needed for error reporting
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
          I/O context for this reader. It handles buffer allocation for the reader.
        • _inputSource

          protected Reader _inputSource
          Input stream that can be used for reading more content, if one in use. May be null, if input comes just as a full buffer, or if the stream has been closed.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.

          If it is not, it also means that parser can NOT modify underlying buffer.

        • _autoCloseInput

          protected boolean _autoCloseInput
        • _trimSpaces

          protected boolean _trimSpaces
          Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
        • _allowComments

          protected boolean _allowComments
        • _maxSpecialChar

          protected int _maxSpecialChar
          Maximum of quote character, linefeeds (\r and \n), escape character.
        • _separatorChar

          protected int _separatorChar
        • _quoteChar

          protected int _quoteChar
        • _escapeChar

          protected int _escapeChar
        • _textBuffer

          protected final TextBuffer _textBuffer
          Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
        • _inputBuffer

          protected char[] _inputBuffer
          Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
        • _inputPtr

          protected int _inputPtr
          Pointer to next available character in buffer
        • _inputEnd

          protected int _inputEnd
          Index of character after last available one in the buffer.
        • _pendingLF

          protected int _pendingLF
          Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
        • _closed

          protected boolean _closed
          Flag that indicates whether parser is closed or not. Gets set when parser is either closed by explicit call (close()) or when end-of-input is reached.
        • _currInputProcessed

          protected long _currInputProcessed
          Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
        • _currInputRow

          protected int _currInputRow
          Current row location of current point in input buffer, starting from 1, if available.
        • _currInputRowStart

          protected int _currInputRowStart
          Current index of the first character of the current row in input buffer. Needed to calculate column position, if necessary; benefit of not having column itself is that this only has to be updated once per line.
        • _tokenInputTotal

          protected long _tokenInputTotal
          Total number of bytes/characters read before start of current token. For big (gigabyte-sized) sizes are possible, needs to be long, unlike pointers and sizes related to in-memory buffers.
        • _tokenInputRow

          protected int _tokenInputRow
          Input row on which current token starts, 1-based
        • _tokenInputCol

          protected int _tokenInputCol
          Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
        • _numTypesValid

          protected int _numTypesValid
          Bitfield that indicates which numeric representations have been calculated for the current type
        • _numberInt

          protected int _numberInt
        • _numberLong

          protected long _numberLong
        • _numberDouble

          protected double _numberDouble
        • _numberBigInt

          protected BigInteger _numberBigInt
        • _numberBigDecimal

          protected BigDecimal _numberBigDecimal
      • Constructor Detail

        • CsvDecoder

          public CsvDecoder(CsvParser owner,
                    com.fasterxml.jackson.core.io.IOContext ctxt,
                    Reader r,
                    CsvSchema schema,
                    TextBuffer textBuffer,
                    int stdFeatures,
                    int csvFeatures)
      • Method Detail

        • setSchema

          public void setSchema(CsvSchema schema)
        • overrideFormatFeatures

          public void overrideFormatFeatures(int csvFeatures)
          Since:
          2.7
        • getInputSource

          public Object getInputSource()
        • isClosed

          public boolean isClosed()
        • childArrayContext

          public com.fasterxml.jackson.core.json.JsonReadContext childArrayContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • childObjectContext

          public com.fasterxml.jackson.core.json.JsonReadContext childObjectContext(com.fasterxml.jackson.core.json.JsonReadContext context)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
        • getCurrentRow

          public final int getCurrentRow()
        • getCurrentColumn

          public final int getCurrentColumn()
        • getTokenCharacterOffset

          protected final long getTokenCharacterOffset()
        • getTokenLineNr

          protected final int getTokenLineNr()
        • getTokenColumnNr

          protected final int getTokenColumnNr()
        • getText

          public String getText()
        • hasMoreInput

          public boolean hasMoreInput()
                               throws IOException
          Method that can be called to see if there is at least one more character to be parsed.
          Throws:
          IOException
        • startNewLine

          public boolean startNewLine()
                               throws IOException
          Method called to handle details of starting a new line, which may include skipping a linefeed.
          Returns:
          True if there is a new data line to handle; false if not
          Throws:
          IOException
        • skipLine

          public boolean skipLine()
                           throws IOException
          Method called to blindly skip a single line of content, without considering aspects like quoting or escaping. Used currently simply to skip the first line of input document, if instructed to do so.
          Throws:
          IOException
        • nextString

          public String nextString()
                            throws IOException
          Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
          Returns:
          Column value if more found; null to indicate end of line of input
          Throws:
          IOException
        • nextStringOrLiteral

          public com.fasterxml.jackson.core.JsonToken nextStringOrLiteral()
                                                                   throws IOException
          Throws:
          IOException
        • nextNumber

          public com.fasterxml.jackson.core.JsonToken nextNumber()
                                                          throws IOException
          Throws:
          IOException
        • nextNumberOrString

          public com.fasterxml.jackson.core.JsonToken nextNumberOrString()
                                                                  throws IOException
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Method that will parse actual numeric value out of a syntactically valid number value. Type it will parse into depends on whether it is a floating point number, as well as its magnitude: smallest legal type (of ones available) is used for efficiency.
          Parameters:
          expType - Numeric type that we will immediately need, if any; mostly necessary to optimize handling of floating point numbers
          Throws:
          IOException
        • convertNumberToBigInteger

          protected void convertNumberToBigInteger()
                                            throws IOException
          Throws:
          IOException
        • convertNumberToBigDecimal

          protected void convertNumberToBigDecimal()
                                            throws IOException
          Throws:
          IOException
        • reportUnexpectedNumberChar

          protected void reportUnexpectedNumberChar(int ch,
                                        String comment)
                                             throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • reportInvalidNumber

          protected void reportInvalidNumber(String msg)
                                      throws com.fasterxml.jackson.core.JsonParseException
          Throws:
          com.fasterxml.jackson.core.JsonParseException
        • constructError

          protected final com.fasterxml.jackson.core.JsonParseException constructError(String msg,
                                                                     Throwable t)
        • _getCharDesc

          protected static final String _getCharDesc(int ch)
        • _reportError

          protected final void _reportError(String msg)
                                     throws com.fasterxml.jackson.core.JsonParseException
          Method for reporting low-level decoding (parsing) problems
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/CsvEncoder.html ================================================ CsvEncoder (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvEncoder



    • public class CsvEncoder
      extends Object
      Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
      • Field Detail

        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _out

          protected final Writer _out
          Underlying Writer used for output.
        • _cfgColumnSeparator

          protected final char _cfgColumnSeparator
        • _cfgQuoteCharacter

          protected final int _cfgQuoteCharacter
        • _cfgEscapeCharacter

          protected final int _cfgEscapeCharacter
          Since:
          2.7
        • _cfgLineSeparator

          protected final char[] _cfgLineSeparator
        • _cfgNullValue

          protected final char[] _cfgNullValue
          Since:
          2.5
        • _cfgLineSeparatorLength

          protected final int _cfgLineSeparatorLength
        • _cfgMaxQuoteCheckChars

          protected int _cfgMaxQuoteCheckChars
        • _cfgMinSafeChar

          protected final int _cfgMinSafeChar
          Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
        • _csvFeatures

          protected int _csvFeatures
        • _cfgOptimalQuoting

          protected boolean _cfgOptimalQuoting
          Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
          Since:
          2.4
        • _cfgIncludeMissingTail

          protected boolean _cfgIncludeMissingTail
          Since:
          2.4
        • _cfgAlwaysQuoteStrings

          protected boolean _cfgAlwaysQuoteStrings
          Since:
          2.5
        • _cfgAlwaysQuoteEmptyStrings

          protected boolean _cfgAlwaysQuoteEmptyStrings
        • _columnCount

          protected int _columnCount
          Since:
          2.4
        • _nextColumnToWrite

          protected int _nextColumnToWrite
          Index of column we expect to write next
        • _buffered

          protected BufferedValue[] _buffered
          And if output comes in shuffled order we will need to do bit of ordering.
        • _lastBuffered

          protected int _lastBuffered
          Index of the last buffered value
        • _outputBuffer

          protected char[] _outputBuffer
          Intermediate buffer in which contents are buffered before being written using _out.
        • _bufferRecyclable

          protected boolean _bufferRecyclable
          Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
        • _outputTail

          protected int _outputTail
          Pointer to the next available char position in _outputBuffer
        • _outputEnd

          protected final int _outputEnd
          Offset to index after the last valid index in _outputBuffer. Typically same as length of the buffer.
        • _charsWritten

          protected int _charsWritten
          Let's keep track of how many bytes have been output, may prove useful when debugging. This does not include bytes buffered in the output buffer, just bytes that have been written using underlying stream writer.
      • Constructor Detail

        • CsvEncoder

          public CsvEncoder(com.fasterxml.jackson.core.io.IOContext ctxt,
                    int csvFeatures,
                    Writer out,
                    CsvSchema schema)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/CsvIOContext.html ================================================ CsvIOContext (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvIOContext

    • java.lang.Object
      • com.fasterxml.jackson.core.io.IOContext
        • com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext


    • public class CsvIOContext
      extends com.fasterxml.jackson.core.io.IOContext
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.io.IOContext

          _base64Buffer, _bufferRecycler, _concatCBuffer, _encoding, _managedResource, _nameCopyBuffer, _readIOBuffer, _sourceRef, _tokenCBuffer, _writeEncodingBuffer
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br, Object sourceRef, boolean managedResource) 
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        TextBuffer csvTextBuffer() 
        • Methods inherited from class com.fasterxml.jackson.core.io.IOContext

          _verifyAlloc, _verifyRelease, _verifyRelease, allocBase64Buffer, allocBase64Buffer, allocConcatBuffer, allocNameCopyBuffer, allocReadIOBuffer, allocReadIOBuffer, allocTokenBuffer, allocTokenBuffer, allocWriteEncodingBuffer, allocWriteEncodingBuffer, constructTextBuffer, getEncoding, getSourceReference, isResourceManaged, releaseBase64Buffer, releaseConcatBuffer, releaseNameCopyBuffer, releaseReadIOBuffer, releaseTokenBuffer, releaseWriteEncodingBuffer, setEncoding, withEncoding
      • Constructor Detail

        • CsvIOContext

          public CsvIOContext(com.fasterxml.jackson.core.util.BufferRecycler br,
                      Object sourceRef,
                      boolean managedResource)
      • Method Detail

        • csvTextBuffer

          public TextBuffer csvTextBuffer()

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/CsvParserBootstrapper.html ================================================ CsvParserBootstrapper (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class CsvParserBootstrapper

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper


    • public final class CsvParserBootstrapper
      extends Object
      This class is used to determine the encoding of byte stream that is to contain CSV document. Since there is no real specification for how this should work with CSV, it will be based on rules used with JSON (which themselves are similar to those used with XML); main points are to check for BOM first, then look for multi-byted fixed-length encodings (UTF-16, UTF-32). And finally, if neither found, must decide between most likely alternatives, UTF-8 and Latin-1.
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected boolean _bigEndian 
        protected int _bytesPerChar 
        protected com.fasterxml.jackson.core.ObjectCodec _codec 
        protected com.fasterxml.jackson.core.io.IOContext _context 
        protected InputStream _in 
        protected byte[] _inputBuffer 
        protected int _inputProcessed
        Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.
      • Constructor Summary

        Constructors 
        Constructor and Description
        CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt, com.fasterxml.jackson.core.ObjectCodec codec, byte[] inputBuffer, int inputStart, int inputLen) 
        CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt, com.fasterxml.jackson.core.ObjectCodec codec, InputStream in) 
      • Field Detail

        • _context

          protected final com.fasterxml.jackson.core.io.IOContext _context
        • _codec

          protected final com.fasterxml.jackson.core.ObjectCodec _codec
        • _inputBuffer

          protected final byte[] _inputBuffer
        • _inputProcessed

          protected int _inputProcessed
          Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.

          Note: includes possible BOMs, if those were part of the input.

        • _bigEndian

          protected boolean _bigEndian
        • _bytesPerChar

          protected int _bytesPerChar
      • Constructor Detail

        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                               com.fasterxml.jackson.core.ObjectCodec codec,
                               InputStream in)
        • CsvParserBootstrapper

          public CsvParserBootstrapper(com.fasterxml.jackson.core.io.IOContext ctxt,
                               com.fasterxml.jackson.core.ObjectCodec codec,
                               byte[] inputBuffer,
                               int inputStart,
                               int inputLen)
      • Method Detail

        • hasCSVFormat

          public static com.fasterxml.jackson.core.format.MatchStrength hasCSVFormat(com.fasterxml.jackson.core.format.InputAccessor acc,
                                                                     int quoteChar,
                                                                     char separatorChar)
                                                                              throws IOException
          Current implementation is not as thorough as one used by other data formats like JSON. But it should work, for now, and can be improved as necessary.
          Throws:
          IOException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/LRUMap.html ================================================ LRUMap (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class LRUMap<K,V>

      • Field Detail

        • _maxEntries

          protected final int _maxEntries
      • Constructor Detail

        • LRUMap

          public LRUMap(int initialEntries,
                int maxEntries)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/NumberInput.html ================================================ NumberInput (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberInput



    • public final class NumberInput
      extends Object
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        static String NASTY_SMALL_DOUBLE
        Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
      • Constructor Summary

        Constructors 
        Constructor and Description
        NumberInput() 
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        static boolean inLongRange(char[] digitChars, int offset, int len, boolean negative)
        Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not.
        static double parseDouble(String numStr) 
        static int parseInt(char[] digitChars, int offset, int len)
        Fast method for parsing integers that are known to fit into regular 32-bit signed int type.
        static long parseLong(char[] digitChars, int offset, int len) 
      • Field Detail

        • NASTY_SMALL_DOUBLE

          public static final String NASTY_SMALL_DOUBLE
          Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
          See Also:
          Constant Field Values
      • Constructor Detail

        • NumberInput

          public NumberInput()
      • Method Detail

        • parseInt

          public static final int parseInt(char[] digitChars,
                     int offset,
                     int len)
          Fast method for parsing integers that are known to fit into regular 32-bit signed int type. This means that length is between 1 and 9 digits (inclusive)

          Note: public to let unit tests call it

        • parseLong

          public static final long parseLong(char[] digitChars,
                       int offset,
                       int len)
        • inLongRange

          public static final boolean inLongRange(char[] digitChars,
                            int offset,
                            int len,
                            boolean negative)
          Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not. Note that input String must NOT contain leading minus sign (even if 'negative' is set to true).
          Parameters:
          negative - Whether original number had a minus sign (which is NOT passed to this method) or not

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/NumberOutput.html ================================================ NumberOutput (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class NumberOutput



    • public final class NumberOutput
      extends Object
      Helper class for efficient writing of numeric values

      NOTE: modified from Jackson Core's similar functionality

      • Constructor Detail

        • NumberOutput

          public NumberOutput()
      • Method Detail

        • outputInt

          public static int outputInt(int value,
                      char[] buffer,
                      int offset)
          Returns:
          Offset within buffer after outputting int
        • outputLong

          public static int outputLong(long value,
                       char[] buffer,
                       int offset)
          Returns:
          Offset within buffer after outputting int
        • toString

          public static String toString(double value)
        • toString

          public static String toString(float value)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/TextBuffer.html ================================================ TextBuffer (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class TextBuffer



    • public final class TextBuffer
      extends Object
      Helper class for efficiently aggregating parsed and decoded textual content
      • Constructor Detail

        • TextBuffer

          public TextBuffer(com.fasterxml.jackson.core.util.BufferRecycler allocator)
      • Method Detail

        • releaseBuffers

          public void releaseBuffers()
        • reset

          public void reset()
        • resetWithString

          public void resetWithString(String value)
        • size

          public int size()
          Returns:
          Number of characters currently stored by this collector
        • getTextOffset

          public int getTextOffset()
        • hasTextAsCharacters

          public boolean hasTextAsCharacters()
        • getTextBuffer

          public char[] getTextBuffer()
        • contentsAsString

          public String contentsAsString()
        • contentsAsArray

          public char[] contentsAsArray()
        • looksLikeInt

          public boolean looksLikeInt()
        • ensureNotShared

          public void ensureNotShared()
          Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.
        • getCurrentSegment

          public char[] getCurrentSegment()
        • emptyAndGetCurrentSegment

          public final char[] emptyAndGetCurrentSegment()
        • getCurrentSegmentSize

          public int getCurrentSegmentSize()
        • finishAndReturn

          public String finishAndReturn(int lastSegmentEnd,
                               boolean trimTrailingSpaces)
          Parameters:
          lastSegmentEnd - End offset in the currently active segment, could be 0 in the case of first character is delimiter or end-of-line
          trimTrailingSpaces - Whether trailing spaces should be trimmed or not
        • finishCurrentSegment

          public char[] finishCurrentSegment()

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Field Summary

      • Constructor Summary

        Constructors 
        Constructor and Description
        UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt, byte[] buf, int ptr, int len) 
        UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt, InputStream in, boolean autoClose) 
        UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt, InputStream in, boolean autoClose, byte[] buf, int ptr, int len) 
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                    InputStream in,
                    boolean autoClose,
                    byte[] buf,
                    int ptr,
                    int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                    byte[] buf,
                    int ptr,
                    int len)
        • UTF8Reader

          public UTF8Reader(com.fasterxml.jackson.core.io.IOContext ctxt,
                    InputStream in,
                    boolean autoClose)
      • Method Detail

        • canModifyBuffer

          protected final boolean canModifyBuffer()
          Method that can be used to see if we can actually modify the underlying buffer. This is the case if we are managing the buffer, but not if it was just given to us.
        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                          int start,
                          int len)
                               throws IOException
          Throws:
          IOException
        • reportInvalidInitial

          protected void reportInvalidInitial(int mask,
                                  int outputDecoded)
                                       throws IOException
          Throws:
          IOException
        • reportInvalidOther

          protected void reportInvalidOther(int mask,
                                int outputDecoded,
                                int errorPosition)
                                     throws IOException
          Throws:
          IOException
        • reportUnexpectedEOF

          protected void reportUnexpectedEOF(int gotBytes,
                                 int needed)
                                      throws IOException
          Throws:
          IOException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-CSV 2.9.0 API)
    com.fasterxml.jackson.dataformat.csv.impl

    Class UTF8Writer

    • All Implemented Interfaces:
      Closeable, Flushable, Appendable, AutoCloseable


      public final class UTF8Writer
      extends Writer
      Efficient UTF-8 backed writer.

      Note: original implementation based on writer from Jackson core package; modified slightly, copied to reduce dependency to impl details.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.BooleanValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.DoubleValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.IntValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.LongValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.NullValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.RawValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.TextValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    No usage of com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.BufferedValue

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvDecoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvEncoder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvIOContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/CsvParserBootstrapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    No usage of com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/LRUMap.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.LRUMap (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.LRUMap

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberInput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberInput (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberInput

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/NumberOutput.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    No usage of com.fasterxml.jackson.dataformat.csv.impl.NumberOutput

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/TextBuffer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.TextBuffer

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.9.0 API)

    com.fasterxml.jackson.dataformat.csv.impl

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.9.0 API)

    Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv.impl Class Hierarchy (Jackson-dataformat-CSV 2.9.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv.impl (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/package-frame.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.9.0 API)

    com.fasterxml.jackson.dataformat.csv

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/package-summary.html ================================================ com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.9.0 API)

    Package com.fasterxml.jackson.dataformat.csv

    • Class Summary 
      Class Description
      CsvFactory  
      CsvGenerator  
      CsvMapper
      Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
      CsvParser
      JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
      CsvSchema
      Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
      CsvSchema.Builder
      Class used for building CsvSchema instances.
      CsvSchema.Column
      Representation of info for a single column
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    • Enum Summary 
      Enum Description
      CsvGenerator.Feature
      Enumeration that defines all togglable features for CSV writers (if any: currently none)
      CsvParser.Feature
      Enumeration that defines all togglable features for CSV parsers
      CsvSchema.ColumnType
      Enumeration that defines optional type indicators that can be passed with schema.
    • Exception Summary 
      Exception Description
      CsvMappingException
      Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/package-tree.html ================================================ com.fasterxml.jackson.dataformat.csv Class Hierarchy (Jackson-dataformat-CSV 2.9.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.csv

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.csv.CsvSchema (implements com.fasterxml.jackson.core.FormatSchema, java.lang.Iterable<T>, java.io.Serializable)
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
      • com.fasterxml.jackson.dataformat.csv.CsvSchema.Column (implements java.io.Serializable)
      • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.csv.CsvParser
      • com.fasterxml.jackson.dataformat.csv.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JsonProcessingException
              • com.fasterxml.jackson.databind.JsonMappingException
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.csv.CsvMapper

    Enum Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/com/fasterxml/jackson/dataformat/csv/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.csv (Jackson-dataformat-CSV 2.9.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.csv

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-CSV 2.9.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    • com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder 
      Modifier and Type Constant Field Value
      protected static final char CHAR_NULL 0
      protected static final int INT_0 48
      protected static final int INT_1 49
      protected static final int INT_2 50
      protected static final int INT_3 51
      protected static final int INT_4 52
      protected static final int INT_5 53
      protected static final int INT_6 54
      protected static final int INT_7 55
      protected static final int INT_8 56
      protected static final int INT_9 57
      protected static final int INT_DECIMAL_POINT 46
      protected static final int INT_e 101
      protected static final int INT_E 69
      protected static final int INT_MINUS 45
      protected static final int INT_PLUS 43
      protected static final int NR_BIGDECIMAL 16
      protected static final int NR_BIGINT 4
      protected static final int NR_DOUBLE 8
      protected static final int NR_INT 1
      protected static final int NR_LONG 2
      protected static final int NR_UNKNOWN 0
    • com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder 
      Modifier and Type Constant Field Value
      protected static final int MAX_QUOTE_CHECK 24
      protected static final int SHORT_WRITE 32
    • com.fasterxml.jackson.dataformat.csv.impl.NumberInput 
      Modifier and Type Constant Field Value
      public static final String NASTY_SMALL_DOUBLE "2.2250738585072012e-308"

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-CSV 2.9.0 API)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/help-doc.html ================================================ API Help (Jackson-dataformat-CSV 2.9.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/index-all.html ================================================ Index (Jackson-dataformat-CSV 2.9.0 API)
    A B C D E F G H I L M N O P R S T U V W _ 

    A

    addArrayColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addArrayColumn(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    addArrayColumn(String, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addBooleanColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    addColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(String, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumn(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<CsvSchema.Column>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumns(Iterable<String>, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: does NOT check for duplicate column names so it is possibly to accidentally add duplicates.
    addColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: unlike many other add methods, this method DOES check for, and discard, possible duplicate columns: that is, if this builder already has a column with same name as column to be added, existing column is retained and new column ignored.
    addNumberColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    allowsComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    append(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    appendColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendNull() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    appendValue(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    B

    buffered(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(long) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    buffered(boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedNull() - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    bufferedRaw(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class used for holding values for a while until output can proceed in expected order.
    BufferedValue() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    BufferedValue.BooleanValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.BooleanValue(boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    BufferedValue.DoubleValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.DoubleValue(double) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    BufferedValue.IntValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.IntValue(int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    BufferedValue.LongValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.LongValue(long) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    BufferedValue.NullValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.RawValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.RawValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    BufferedValue.TextValue - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    BufferedValue.TextValue(String) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    build() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    C

    canModifyBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method that can be used to see if we can actually modify the underlying buffer.
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CHAR_NULL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childArrayContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    childObjectContext(JsonReadContext) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    clearColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    close(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    column(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for column at specified index (0-based); index having to be within
    column(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    column(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Optimized variant where a hint is given as to likely index of the column name.
    columnName(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    com.fasterxml.jackson.dataformat.csv - package com.fasterxml.jackson.dataformat.csv
     
    com.fasterxml.jackson.dataformat.csv.impl - package com.fasterxml.jackson.dataformat.csv.impl
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified parser feature (check CsvParser.Feature for list of features)
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling or disabling specified generator feature (check CsvGenerator.Feature for list of features)
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    configure(CsvGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    configure(CsvParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
    constructError(String, Throwable) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    constructParser(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    contentsAsArray() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    contentsAsDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a BigDecimal.
    contentsAsDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Convenience method for converting contents of the buffer into a Double value.
    contentsAsString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    convertNumberToBigDecimal() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToBigInteger() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToDouble() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    convertNumberToLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    This method assumes use of UTF-8 for encoding.
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvDecoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Low-level helper class that handles actual reading of CSV, purely based on indexes given without worrying about reordering etc.
    CsvDecoder(CsvParser, IOContext, Reader, CsvSchema, TextBuffer, int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    CsvEncoder - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class that handles actual low-level construction of CSV output, based only on indexes given without worrying about reordering, or binding from logical properties.
    CsvEncoder(IOContext, int, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvEncoder(CsvEncoder, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    CsvFactory - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvFactory() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Default constructor used to create factory instances.
    CsvFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvFactory(CsvFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    CsvGenerator - Class in com.fasterxml.jackson.dataformat.csv
     
    CsvGenerator(IOContext, int, int, ObjectCodec, Writer, CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator(IOContext, int, int, ObjectCodec, CsvEncoder) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    CsvGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV writers (if any: currently none)
    CsvIOContext - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    CsvIOContext(BufferRecycler, Object, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     
    CsvMapper - Class in com.fasterxml.jackson.dataformat.csv
    Specialized ObjectMapper, with extended functionality to produce CsvSchema instances out of POJOs.
    CsvMapper() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvFactory) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    CsvMapper(CsvMapper) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Copy-constructor, mostly used to support CsvMapper.copy().
    CsvMappingException - Exception in com.fasterxml.jackson.dataformat.csv
    Format-specific exception used to indicate problems regarding handling of CSV content above minimal decoding, based on CsvSchema.
    CsvMappingException(CsvParser, String, CsvSchema) - Constructor for exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    CsvParser - Class in com.fasterxml.jackson.dataformat.csv
    JsonParser implementation used to expose CSV documents in form that allows other Jackson functionality to deal with it.
    CsvParser(CsvIOContext, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    CsvParser.Feature - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines all togglable features for CSV parsers
    CsvParserBootstrapper - Class in com.fasterxml.jackson.dataformat.csv.impl
    This class is used to determine the encoding of byte stream that is to contain CSV document.
    CsvParserBootstrapper(IOContext, ObjectCodec, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvParserBootstrapper(IOContext, ObjectCodec, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    CsvSchema - Class in com.fasterxml.jackson.dataformat.csv
    Simple FormatSchema sub-type that defines properties of a CSV document to read or write.
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], int, char[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    CsvSchema(CsvSchema.Column[], int, char, int, int, char[], String, char[], Map<String, CsvSchema.Column>, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using withXxx() methods.
    CsvSchema(CsvSchema, CsvSchema.Column[]) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants using sortedBy() methods.
    CsvSchema(CsvSchema, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Copy constructor used for creating variants for on/off features
    CsvSchema.Builder - Class in com.fasterxml.jackson.dataformat.csv
    Class used for building CsvSchema instances.
    CsvSchema.Builder() - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    CsvSchema.Builder(CsvSchema) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    "Copy" constructor which creates builder that has settings of given source schema
    CsvSchema.Column - Class in com.fasterxml.jackson.dataformat.csv
    Representation of info for a single column
    CsvSchema.Column(int, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    CsvSchema.Column(int, String, CsvSchema.ColumnType) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    CsvSchema.Column(int, String, CsvSchema.ColumnType, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Deprecated.
    use variant where `arrayElementSep` is String
    CsvSchema.Column(int, String, CsvSchema.ColumnType, String) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    CsvSchema.Column(CsvSchema.Column, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    CsvSchema.Column(CsvSchema.Column, int, CsvSchema.Column) - Constructor for class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    CsvSchema.ColumnType - Enum in com.fasterxml.jackson.dataformat.csv
    Enumeration that defines optional type indicators that can be passed with schema.
    csvTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvIOContext
     

    D

    DEFAULT_ANY_PROPERTY_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default no "any properties" (properties for 'extra' columns; ones not specified in schema) are used, so null is used as marker.
    DEFAULT_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for array elements within a column value is semicolon.
    DEFAULT_COLUMN_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Default separator for column values is comma (hence "Comma-Separated Values")
    DEFAULT_ENCODING_FEATURES - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_ESCAPE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, no escape character is used -- this is denoted by int value that does not map to a valid character
    DEFAULT_LF - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    DEFAULT_LINEFEED - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_NULL_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    By default, nulls are written as empty Strings (""); and no coercion is performed from any String (higher level databind may, however, coerce Strings into Java nulls).
    DEFAULT_QUOTE_CHAR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified parser features (check CsvParser.Feature for list of features)
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for disabling specified generator feature (check CsvGenerator.Feature for list of features)
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    disable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    disable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
    disableArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    disableElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    disableEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying that no escape character is to be used with CSV documents this schema defines.
    disableQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     

    E

    emptyAndGetCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for creating a "default" CSV schema instance, with following settings: Does NOT use header line Uses double quotes ('"') for quoting of field values (if necessary) Uses comma (',') as the field separator Uses Unix linefeed ('\n') as row separator Does NOT use any escape characters Does NOT have any columns defined
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified parser feature (check CsvParser.Feature for list of features)
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method for enabling specified generator features (check CsvGenerator.Feature for list of features)
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    enable(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    enable(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    ENCODING_FEATURE_ALLOW_COMMENTS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_REORDER_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_SKIP_FIRST_DATA_ROW - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_STRICT_HEADERS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    ENCODING_FEATURE_USE_HEADER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    endRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    ensureLoaded(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    ensureNotShared() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
    Method called to make sure that buffer is not using shared input buffer; if it is, it will copy such contents to private buffer.

    F

    FALSE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    finishAndReturn(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    finishRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when the current row is complete; typically will flush possibly buffered column values, append linefeed and reset state appropriately.
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    flush(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    flush() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    FORMAT_NAME_CSV - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Name used to identify CSV format.
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(CsvParser, String, CsvSchema) - Static method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     

    G

    getAnyPropertyName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getColumnDesc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method for getting description of column definitions in developer-readable form
    getColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    getColumnSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getCurrentColumn() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getCurrentRow() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getCurrentSegment() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getCurrentSegmentSize() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Overridden with more specific type, since factory we have is always of type CsvFactory
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getLineSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    getNextWithName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    Access that returns same as CsvSchema.Column.getNext() iff name of that column is same as given name
    getNullValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNullValueOrEmpty() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Same as CsvSchema.getNullValue() except that undefined null value (one that remains as null, or explicitly set as such) will be returned as empty char[]
    getNullValueString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    NOTE: while this method will return some information on amount of data buffered, it may be an incomplete view as some buffering happens at a higher level, as not-yet-serialized values.
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: while value does indeed indicate amount that has been written in the buffer, there may be more intermediate data that is buffered as values but not yet in buffer.
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getSchema() - Method in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Accessor for getting active schema definition: it may be "empty" (no column definitions), but will never be null since it defaults to an empty schema (and default configuration)
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getText() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTextBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    getTokenCharacterOffset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenColumnNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLineNr() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    getType() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    H

    hasArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    hasColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    NOTE: this method requires linear scan over existing columns so it may be more efficient to use other types of lookups if available (for example, CsvSchema.column(String) has a hash lookup to use).
    hasCSVFormat(InputAccessor, int, char) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current implementation is not as thorough as one used by other data formats like JSON.
    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    hasMoreInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that can be called to see if there is at least one more character to be parsed.
    hasName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    hasTextAsCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     

    I

    inLongRange(char[], int, int, boolean) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Helper method for determining if given String representation of an integral number would fit in 64-bit Java long or not.
    INT_0 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_1 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_2 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_3 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_4 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_5 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_6 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_7 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_8 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_9 - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_DECIMAL_POINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_e - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_E - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_MINUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    INT_PLUS - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Checked whether specified parser feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Check whether specified generator feature is enabled.
    isEnabled(CsvGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    isEnabled(CsvParser.Feature) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method for checking whether specified CSV CsvParser.Feature is enabled.
    isExpectedStartArrayToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We need to override this method to support coercion from basic String value into array, in cases where schema does not specify actual type.
    iterator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    L

    loadMore() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    looksLikeInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    LRUMap<K,V> - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper for simple bounded LRU maps used for reusing lookup values.
    LRUMap(int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     

    M

    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    MAX_QUOTE_CHECK - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    N

    NASTY_SMALL_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Textual representation of a double constant that can cause nasty problems with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308).
    nextColumnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    nextFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextFieldName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextNumber() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextNumberOrString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to parse the next token when we don't have any type information, so that all tokens are exposed as basic String values.
    nextStringOrLiteral() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    nextTextValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    NO_ARRAY_ELEMENT_SEPARATOR - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Marker for the case where no array element separator is used
    NO_BUFFERED - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    NO_CHARS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    NO_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    NR_BIGDECIMAL - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_BIGINT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_DOUBLE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_INT - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_LONG - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NR_UNKNOWN - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    NumberInput - Class in com.fasterxml.jackson.dataformat.csv.impl
     
    NumberInput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    NumberOutput - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficient writing of numeric values
    NumberOutput() - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     

    O

    outputInt(int, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    outputLong(long, char[], int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    overrideFormatFeatures(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.csv
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    parseDouble(String) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    parseInt(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
    Fast method for parsing integers that are known to fit into regular 32-bit signed int type.
    parseLong(char[], int, int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberInput
     
    PLACEHOLDER - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by parser code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    readResolve() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing Builder that can be used to create modified schema.
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    releaseBuffered(Writer) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    removeArrayElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    removeEldestEntry(Map.Entry<K, V>) - Method in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    renameColumn(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reordersColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    replaceColumn(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportDeferredInvalid() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidInitial(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportInvalidNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportInvalidOther(int, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportOverflowInt() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportOverflowLong() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedEOF(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    reportUnexpectedNumberChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    reset() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    resetWithString(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     

    S

    schema() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    schemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    schemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    schemaWithHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method that is same as
    setAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that "hash comments" (lines where the first non-whitespace character is '#') are allowed; if so, they will be skipped without processing.
    setAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(int, char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate array element values.
    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used to separate column values.
    setColumnType(int, CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional escaping of characters in quoted String values.
    setLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setLineSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setNullValue(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    setQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying character used for optional quoting of values.
    setReorderColumns(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Use in combination with setUseHeader.
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    setSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    setSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that the first line that is not a header (if header handling enabled) should be skipped in its entirety.
    setStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    setUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Method for specifying whether Schema should indicate that a header line (first row that contains column names) is to be used for reading and writing or not.
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    size() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Accessor for finding out how many columns this schema defines.
    size() - Method in class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    skipFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    skipLeadingComments() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    skipLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to blindly skip a single line of content, without considering aspects like quoting or escaping.
    skipsFirstDataRow() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    sortedBy(String...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted based on names given as argument.
    sortedBy(Comparator<String>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will construct a new instance in which columns are sorted using given Comparator over column names.
    startNewLine() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method called to handle details of starting a new line, which may include skipping a linefeed.
    STATE_DOC_END - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which end marker is returned; either null (if no array wrapping), or JsonToken.END_ARRAY for wrapping.
    STATE_DOC_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Initial state before anything is read from document.
    STATE_IN_ARRAY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which a column value has been determined to be of an array type, and will need to be split into multiple values.
    STATE_MISSING_NAME - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose name token for a "missing column" (for which placeholder `null` value is to be added as well); see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_MISSING_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we should expose `null` value token as a value for "missing" column; see CsvParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS for details.
    STATE_NAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which value matching field name will be returned.
    STATE_NEXT_ENTRY - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which next entry will be available, returning either JsonToken.FIELD_NAME or value (depending on whether entries are expressed as Objects or just Arrays); or matching close marker.
    STATE_RECORD_START - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State before logical start of a record, in which next token to return will be JsonToken.START_OBJECT (or if no Schema is provided, JsonToken.START_ARRAY).
    STATE_SKIP_EXTRA_COLUMNS - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which we have encountered more column values than there should be, and need to basically skip extra values if callers tries to advance parser state.
    STATE_UNNAMED_VALUE - Static variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    State in which "unnamed" value (entry in an array) will be returned, if one available; otherwise end-array is returned.
    std - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    strictHeaders() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     

    T

    TextBuffer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Helper class for efficiently aggregating parsed and decoded textual content
    TextBuffer(BufferRecycler) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.TextBuffer
     
    toString() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    toString(double) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    toString(float) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.NumberOutput
     
    TRUE - Static variable in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    typedSchemaFor(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
    typedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    typedSchemaFor(TypeReference<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    No way (or need) to indent anything, so let's block any attempts.
    useHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Deprecated.
    usesEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    usesQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.csv.impl
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(IOContext, InputStream, boolean, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Reader(IOContext, InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.csv.impl
    Efficient UTF-8 backed writer.
    UTF8Writer(IOContext, OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
    Returns an array containing the constants of this enum type, in the order they are declared.
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.csv.PackageVersion
     

    W

    withAllowComments(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate whether "hash comments" are allowed for document described by this schema.
    withAnyPropertyName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withArrayElementSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    withArrayElementSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnReordering(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the column reordering flag
    withColumnSeparator(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withColumnsFrom(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Mutant factory method that will try to combine columns of this schema with those from `toAppend`, starting with columns of this instance, and ignoring duplicates (if any) from argument `toAppend`.
    withComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" ARE allowed for document described by this schema.
    withElementSeparator(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
    withEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for constructing and returning schema instance that is similar to this one, except that it will be using header line.
    withLineSeparator(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNext(int, CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withNullValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutArrayElementSeparator() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutComments() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Method to indicate that "hash comments" are NOT allowed for document described by this schema.
    withoutEscapeChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Helper method for construcing and returning schema instance that is similar to this one, except that it will not be using header line.
    withoutQuoteChar() - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withQuoteChar(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withSchema(CsvSchema) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    withSkipFirstDataRow(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    withStrictHeaders(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Returns a clone of this instance by changing or setting the strict headers flag
    withType(CsvSchema.ColumnType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column
     
    withUseHeader(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.BooleanValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.DoubleValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.IntValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.LongValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.NullValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.RawValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue.TextValue
     
    write(CsvEncoder) - Method in class com.fasterxml.jackson.dataformat.csv.impl.BufferedValue
     
    write(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, long) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, float) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, double) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    write(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeColumnName(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNonEscaped(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNull(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeOmittedField(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writerWithSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writerWithTypedSchemaFor(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Convenience method which is functionally equivalent to:
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeStringField(String, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     

    _

    _addSchemaProperties(CsvSchema.Builder, AnnotationIntrospector, boolean, JavaType, NameTransformer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _addToArray(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _addToArray(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _allowComments - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _anyPropertyName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
    _append(char[]) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _arrayContents - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Accumulated contents of an array cell, if any
    _arrayElements - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Additional counter that indicates number of value entries in the array.
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _arrayElementSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Separator to use during writing of (simple) array value, to be encoded as a single column value, if any.
    _arraySeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _arrayValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Contents of the cell, to be split into distinct array values.
    _arrayValueStart - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Pointer to the first character of the next array value to return.
    _autoCloseInput - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _bigEndian - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    We will hold on to decoded binary data, for duration of current event, so that multiple calls to CsvParser.getBinaryValue(com.fasterxml.jackson.core.Base64Variant) will not need to decode data more than once.
    _buffer(int, BufferedValue) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _buffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    And if output comes in shuffled order we will need to do bit of ordering.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether the input buffer is recycable (and needs to be returned to recycler once we are done) or not.
    _bufferRecyclable - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Flag that indicates whether the _outputBuffer is recyclable (and needs to be returned to recycler once we are done) or not.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _bytesPerChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _cfgAlwaysQuoteEmptyStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgAlwaysQuoteStrings - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgColumnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgEscapeCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgIncludeMissingTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgLineSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMaxQuoteCheckChars - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgMinSafeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Lowest-valued character that is safe to output without using quotes around value, NOT including possible escape character.
    _cfgNullValue - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _cfgOptimalQuoting - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Marker flag used to determine if to do optimal (aka "strict") quoting checks or not (looser conservative check)
    _cfgQuoteCharacter - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _charsWritten - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Let's keep track of how many bytes have been output, may prove useful when debugging.
    _checkIndex(int) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Flag that indicates whether parser is closed or not.
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _codec - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Number of columns defined by schema.
    _columnCount - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _columnIndex() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _columnIndex - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Index of the column we are exposing
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Column definitions, needed for optional header and/or mapping of field names to column positions.
    _columns - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _columnsByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _columnSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _context - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _createContext(Object, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createGenerator(IOContext, Writer) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
    Overridable factory method that actually instantiates desired parser.
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _csvGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _csvParserFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Name of column that we exposed most recently, accessible after JsonToken.FIELD_NAME as well as value tokens immediately following field name.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    String value for the current column, if accessed.
    _currInputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Number of characters/bytes that were contained in previous blocks (blocks that were already processed prior to the current buffer).
    _currInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current row location of current point in input buffer, starting from 1, if available.
    _currInputRowStart - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current index of the first character of the current row in input buffer.
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _determineType(Class<?>) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _encodingFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
    Bit-flag for general-purpose on/off features.
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _escapeChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _feature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _features - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
    Bitflag for general-purpose on/off features.
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Bit flag composed of bits that indicate which CsvGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _getCharDesc(int) - Static method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _handleArrayValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleExtraColumn(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when an extraneous column value is found.
    _handleFirstLine - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag that indicates that we need to write header line, if one is needed.
    _handleFirstLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _handleLF() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _handleMissingColumns() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called when end of row occurs before finding values for all schema-specified columns.
    _handleMissingName() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleMissingValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleNextEntry() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleObjectRowEnd() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Helper method called to handle details of state update when end of logical record occurs.
    _handleRecordStart() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _handleStartDoc() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to handle details of initializing things to return the very first token.
    _handleUnnamedValue() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _in - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Current buffer from which data is read; generally data is read into buffer from input source, but in some cases pre-loaded buffer is handed to the parser.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Index of character after last available one in the buffer.
    _inputProcessed - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvParserBootstrapper
    Current number of input units (bytes or chars) that were processed in previous blocks, before contents of current input buffer.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Pointer to next available character in buffer
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input stream that can be used for reading more content, if one in use.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    I/O context for this reader.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _lastBuffered - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of the last buffered value
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _lineSeparator - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.csv.CsvGenerator.Feature
     
    _maxEntries - Variable in class com.fasterxml.jackson.dataformat.csv.impl.LRUMap
     
    _maxSpecialChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Maximum of quote character, linefeeds (\r and \n), escape character.
    _mayNeedQuotes(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Helper method that determines whether given String is likely to require quoting; check tries to optimize for speed.
    _needsQuotingLoose(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    NOTE: final since checking is not expected to be changed here; override calling method (_mayNeedQuotes) instead, if necessary.
    _needsQuotingLoose(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _needsQuotingStrict(String, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _nextChar() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextColumnByName - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Index of column that we will be getting next, based on field name call that was made.
    _nextColumnToWrite - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Index of column we expect to write next
    _nextQuotedString() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nextUnquotedString(char[], int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _nonPojoType(JavaType) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _nullValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _nullValueAsString - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _numberBigDecimal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberBigInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberDouble - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberInt - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numberLong - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _numTypesValid - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Bitfield that indicates which numeric representations have been calculated for the current type
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Intermediate buffer in which contents are buffered before being written using CsvEncoder._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Offset to index after the last valid index in CsvEncoder._outputBuffer.
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
    Pointer to the next available char position in CsvEncoder._outputBuffer
    _owner - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Unfortunate back reference, needed for error reporting
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method that will parse actual numeric value out of a syntactically valid number value.
    _parsingContext - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Information about parser context, context in which the next token is to be parsed (root, array, object).
    _pendingLF - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Marker to indicate that a linefeed was encountered and now needs to be handled (indicates end-of-record).
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.CsvSchema.Builder
     
    _quoteChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Thing that actually reads the CSV content
    _readHeaderLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called to process the expected header line
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _reportCsvMappingError(String, Object...) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportError(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Method for reporting low-level decoding (parsing) problems
    _reportMappingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Method called when there is a problem related to mapping data (compared to a low-level generation); if so, should be surfaced as
    _reportParsingError(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _reportUnexpectedCsvChar(int, String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvFactory
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Definition of columns being written, if available.
    _schema - Variable in exception com.fasterxml.jackson.dataformat.csv.CsvMappingException
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Definition of columns being read.
    _schemaFor(JavaType, LRUMap<JavaType, CsvSchema>, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvMapper
     
    _separatorChar - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipCommentLines() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipLeadingSpace() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _skipUntilEndOfLine() - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _skipValue - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    Flag set when property to write is unknown, and the matching value is to be skipped quietly.
    _skipWithin - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
    When skipping output (for "unknown" output), outermost write context where skipping should occur
    _startArray(CsvSchema.Column) - Method in class com.fasterxml.jackson.dataformat.csv.CsvParser
     
    _state - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Current logical state of the parser; one of STATE_ constants.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvParser
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _textBuffer - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Buffer that contains contents of all values after processing of doubled-quotes, escaped characters.
    _tokenInputCol - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Column on input row that current token starts; 0-based (although in the end it'll be converted to 1-based)
    _tokenInputRow - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Input row on which current token starts, 1-based
    _tokenInputTotal - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Total number of bytes/characters read before start of current token.
    _trimSpaces - Variable in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
    Configuration flag that determines whether spaces surrounding separator characters are to be automatically trimmed or not.
    _typedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
    _unescape() - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvDecoder
     
    _untypedSchemas - Variable in class com.fasterxml.jackson.dataformat.csv.CsvMapper
    Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
    _validArrayElementSeparator(String) - Static method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    _withFeature(int, boolean) - Method in class com.fasterxml.jackson.dataformat.csv.CsvSchema
     
    _writeQuoted(String) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuoted(String, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writeQuotedAndEscaped(String, char, char, int) - Method in class com.fasterxml.jackson.dataformat.csv.impl.CsvEncoder
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.csv.CsvGenerator
     
    A B C D E F G H I L M N O P R S T U V W _ 

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/index.html ================================================ Jackson-dataformat-CSV 2.9.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/csv/2.9/overview-frame.html ================================================ Overview List (Jackson-dataformat-CSV 2.9.0 API)

     

    ================================================ FILE: docs/javadoc/csv/2.9/overview-summary.html ================================================ Overview (Jackson-dataformat-CSV 2.9.0 API)

    Jackson-dataformat-CSV 2.9.0 API

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-CSV 2.9.0 API)

    Hierarchy For All Packages

    Package Hierarchies:

    Class Hierarchy

    Enum Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/package-list ================================================ com.fasterxml.jackson.dataformat.csv com.fasterxml.jackson.dataformat.csv.impl ================================================ FILE: docs/javadoc/csv/2.9/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-CSV 2.9.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.csv

      • Class com.fasterxml.jackson.dataformat.csv.CsvFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
        • Serialization Methods

          • readResolve

            protected Object readResolve()
            Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
        • Serialized Fields

          • _schema

            CsvSchema _schema
          • _csvParserFeatures

            int _csvParserFeatures
          • _csvGeneratorFeatures

            int _csvGeneratorFeatures
      • Class com.fasterxml.jackson.dataformat.csv.CsvMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _untypedSchemas

            LRUMap<K,V> _untypedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
          • _typedSchemas

            LRUMap<K,V> _typedSchemas
            Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
      • Class com.fasterxml.jackson.dataformat.csv.CsvMappingException extends com.fasterxml.jackson.databind.JsonMappingException implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _columns

            CsvSchema.Column[] _columns
            Column definitions, needed for optional header and/or mapping of field names to column positions.
          • _columnsByName

            Map<K,V> _columnsByName
          • _features

            int _features
            Bitflag for general-purpose on/off features.
            Since:
            2.5
          • _columnSeparator

            char _columnSeparator
          • _arrayElementSeparator

            String _arrayElementSeparator
          • _quoteChar

            int _quoteChar
          • _escapeChar

            int _escapeChar
          • _lineSeparator

            char[] _lineSeparator
          • _nullValue

            char[] _nullValue
            Since:
            2.5
          • _anyPropertyName

            String _anyPropertyName
            If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
            Since:
            2.7
      • Class com.fasterxml.jackson.dataformat.csv.CsvSchema.Column extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _name

            String _name
          • _index

            int _index
          • _type

            CsvSchema.ColumnType _type
          • _arrayElementSeparator

            String _arrayElementSeparator
            NOTE: type changed from `char` to `java.lang.String` in 2.7
            Since:
            2.5
          • _next

            CsvSchema.Column _next
            Link to the next column within schema, if one exists; null for the last column.
            Since:
            2.6
    • Package com.fasterxml.jackson.dataformat.csv.impl

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/csv/2.9/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ body { background-color:#ffffff; color:#353833; font-family:Arial, Helvetica, sans-serif; font-size:76%; margin:0; } a:link, a:visited { text-decoration:none; color:#4c6b87; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4c6b87; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-size:1.3em; } h1 { font-size:1.8em; } h2 { font-size:1.5em; } h3 { font-size:1.4em; } h4 { font-size:1.3em; } h5 { font-size:1.2em; } h6 { font-size:1.1em; } ul { list-style-type:disc; } code, tt { font-size:1.2em; } dt code { font-size:1.2em; } table tr td dt code { font-size:1.2em; vertical-align:top; } sup { font-size:.6em; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:.8em; z-index:200; margin-top:-7px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; background-image:url(resources/titlebar.gif); background-position:left top; background-repeat:no-repeat; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:1em; margin:0; } .topNav { background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; } .bottomNav { margin-top:10px; background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; } .subNav { background-color:#dee3e9; border-bottom:1px solid #9eadc0; float:left; width:100%; overflow:hidden; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding:3px 6px; } ul.subNavList li{ list-style:none; float:left; font-size:90%; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; } .navBarCell1Rev { background-image:url(resources/tab.gif); background-color:#a88834; color:#FFFFFF; margin: auto 5px; border:1px solid #c9aa44; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader h1 { font-size:1.3em; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 25px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:1.2em; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; margin:0 0 6px -8px; padding:2px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; margin:0 0 6px -8px; padding:2px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:1.0em; } .indexContainer h2 { font-size:1.1em; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:1.1em; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:10px 0 10px 20px; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:25px; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #9eadc0; background-color:#f9f9f9; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:1px solid #9eadc0; border-top:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; border-bottom:1px solid #9eadc0; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .contentContainer table, .classUseContainer table, .constantValuesContainer table { border-bottom:1px solid #9eadc0; width:100%; } .contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table { width:100%; } .contentContainer .description table, .contentContainer .details table { border-bottom:none; } .contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{ vertical-align:top; padding-right:20px; } .contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast, .contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast, .contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne, .contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne { padding-right:3px; } .overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption { position:relative; text-align:left; background-repeat:no-repeat; color:#FFFFFF; font-weight:bold; clear:none; overflow:hidden; padding:0px; margin:0px; } caption a:link, caption a:hover, caption a:active, caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span { white-space:nowrap; padding-top:8px; padding-left:8px; display:block; float:left; background-image:url(resources/titlebar.gif); height:18px; } .overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd { width:10px; background-image:url(resources/titlebar_end.gif); background-repeat:no-repeat; background-position:top right; position:relative; float:left; } ul.blockList ul.blockList li.blockList table { margin:0 0 12px 0px; width:100%; } .tableSubHeadingColor { background-color: #EEEEFF; } .altColor { background-color:#eeeeef; } .rowColor { background-color:#ffffff; } .overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td { text-align:left; padding:3px 3px 3px 7px; } th.colFirst, th.colLast, th.colOne, .constantValuesContainer th { background:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; text-align:left; padding:3px 3px 3px 7px; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } td.colFirst, th.colFirst { border-left:1px solid #9eadc0; white-space:nowrap; } td.colLast, th.colLast { border-right:1px solid #9eadc0; } td.colOne, th.colOne { border-right:1px solid #9eadc0; border-left:1px solid #9eadc0; } table.overviewSummary { padding:0px; margin-left:0px; } table.overviewSummary td.colFirst, table.overviewSummary th.colFirst, table.overviewSummary td.colOne, table.overviewSummary th.colOne { width:25%; vertical-align:middle; } table.packageSummary td.colFirst, table.overviewSummary th.colFirst { width:25%; vertical-align:middle; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:.9em; } .block { display:block; margin:3px 0 0 0; } .strong { font-weight:bold; } ================================================ FILE: docs/javadoc/properties/2.10/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-Properties 2.10.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.10/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-Properties 2.10.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactory.html ================================================ JavaPropsFactory (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

          com.fasterxml.jackson.core.JsonFactory.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected static String CHARSET_ID_LATIN1 
        static String FORMAT_NAME_JAVA_PROPERTIES 
        • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

          _byteSymbolCanonicalizer, _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _maximumNonEscapedChar, _objectCodec, _outputDecorator, _parserFeatures, _quoteChar, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, DEFAULT_QUOTE_CHAR, DEFAULT_ROOT_VALUE_SEPARATOR, FORMAT_NAME_JSON
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt, boolean recyclable) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Writer _createWriter(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(Reader r0, com.fasterxml.jackson.core.io.IOContext ctxt) 
        static JavaPropsFactoryBuilder builder()
        Main factory method to use for constructing JavaPropsFactory instances with different configuration.
        boolean canHandleBinaryNatively() 
        boolean canUseCharArrays() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        JavaPropsFactory copy() 
        JavaPropsGenerator createGenerator(Map<?,?> target, JavaPropsSchema schema)
        Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
        Method for constructing JsonGenerator for generating CBOR-encoded output.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) 
        JavaPropsGenerator createGenerator(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data) 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data, int offset, int len) 
        com.fasterxml.jackson.core.JsonParser createParser(File f) 
        com.fasterxml.jackson.core.JsonParser createParser(InputStream in) 
        JavaPropsParser createParser(Map<?,?> content)
        Convenience method to allow feeding a pre-parsed Properties instance as input.
        JavaPropsParser createParser(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(URL url) 
        String getFormatName() 
        com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
        Sub-classes need to override this method
        JavaPropsFactoryBuilder rebuild() 
        boolean requiresPropertyOrdering() 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.JsonFactory

          _checkInvalidCopy, _createContext, _createNonBlockingContext, _createParser, _decorate, _decorate, _decorate, _decorate, _decorate, _getBufferRecycler, canParseAsync, configure, configure, configure, createGenerator, createGenerator, createGenerator, createGenerator, createJsonGenerator, createJsonGenerator, createJsonGenerator, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createNonBlockingByteArrayParser, createParser, createParser, createParser, createParser, createParser, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getCodec, getFormatGeneratorFeatures, getFormatParserFeatures, getFormatReadFeatureType, getFormatWriteFeatureType, getGeneratorFeatures, getInputDecorator, getOutputDecorator, getParserFeatures, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, readResolve, requiresCustomCodec, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparator
        • Methods inherited from class com.fasterxml.jackson.core.TokenStreamFactory

          _createDataOutputWrapper, _optimizedStreamFromURL
      • Constructor Detail

        • JavaPropsFactory

          public JavaPropsFactory()
        • JavaPropsFactory

          public JavaPropsFactory(com.fasterxml.jackson.core.ObjectCodec codec)
        • JavaPropsFactory

          protected JavaPropsFactory(JavaPropsFactory src,
                                     com.fasterxml.jackson.core.ObjectCodec oc)
        • JavaPropsFactory

          protected JavaPropsFactory(JavaPropsFactoryBuilder b)
          Constructors used by CsvFactoryBuilder for instantiation.
          Since:
          2.9
      • Method Detail

        • rebuild

          public JavaPropsFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • copy

          public JavaPropsFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canHandleBinaryNatively

          public boolean canHandleBinaryNatively()
          Overrides:
          canHandleBinaryNatively in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public JavaPropsParser createParser(Map<?,?> content)
          Convenience method to allow feeding a pre-parsed Properties instance as input.
          Since:
          2.10
        • createGenerator

          public JavaPropsGenerator createGenerator(Map<?,?> target,
                                                    JavaPropsSchema schema)
          Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
          Since:
          2.10
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(File f)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(URL url)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(InputStream in)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data,
                                                                    int offset,
                                                                    int len)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
                                                                   throws IOException
          Method for constructing JsonGenerator for generating CBOR-encoded output.

          Since CBOR format always uses UTF-8 internally, no encoding need to be passed to this method.

          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt,
                                                                        boolean recyclable)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out,
                                                                              com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                       throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out,
                                                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                           throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactoryBuilder.html ================================================ JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactoryBuilder

      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.TSFBuilder

          _factoryFeatures, _inputDecorator, _outputDecorator, _streamReadFeatures, _streamWriteFeatures, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        JavaPropsFactory build() 
        • Methods inherited from class com.fasterxml.jackson.core.TSFBuilder

          _legacyDisable, _legacyDisable, _legacyEnable, _legacyEnable, _this, configure, configure, configure, configure, configure, disable, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, enable, factoryFeaturesMask, inputDecorator, inputDecorator, outputDecorator, outputDecorator, streamReadFeatures, streamWriteFeatures

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/JavaPropsGenerator.html ================================================ JavaPropsGenerator (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonGenerator

          com.fasterxml.jackson.core.JsonGenerator.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _basePath 
        protected boolean _headerChecked 
        protected int _indentLength 
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected JPropWriteContext _jpropContext
        Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        protected JavaPropsSchema _schema
        Definition of columns being written, if available.
        protected static com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
        Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        protected static int SHORT_WRITE 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int stdFeatures, com.fasterxml.jackson.core.ObjectCodec codec) 
      • Field Detail

        • BOGUS_WRITE_CONTEXT

          protected static final com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
          Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _schema

          protected JavaPropsSchema _schema
          Definition of columns being written, if available.
        • _jpropContext

          protected JPropWriteContext _jpropContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        • _headerChecked

          protected boolean _headerChecked
        • _indentLength

          protected int _indentLength
      • Constructor Detail

        • JavaPropsGenerator

          public JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                                    int stdFeatures,
                                    com.fasterxml.jackson.core.ObjectCodec codec)
      • Method Detail

        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator useDefaultPrettyPrinter()
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getSchema

          public com.fasterxml.jackson.core.FormatSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteBinaryNatively

          public boolean canWriteBinaryNatively()
          Overrides:
          canWriteBinaryNatively in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public com.fasterxml.jackson.core.JsonStreamContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • writeFieldName

          public void writeFieldName(String name)
                              throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _appendFieldName

          protected abstract void _appendFieldName(StringBuilder path,
                                                   String name)
        • writeStartArray

          public void writeStartArray()
                               throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public void writeEndArray()
                             throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public void writeStartObject()
                                throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public void writeEndObject()
                              throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(com.fasterxml.jackson.core.SerializableString text)
                        throws IOException,
                               com.fasterxml.jackson.core.JsonGenerationException
          Overrides:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected void _verifyValueWrite(String typeMsg)
                                    throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _writeEscapedEntry

          protected abstract void _writeEscapedEntry(char[] text,
                                                     int offset,
                                                     int len)
                                              throws IOException
          Throws:
          IOException
        • _writeRaw

          protected abstract void _writeRaw(char[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Throws:
          IOException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.Builder.html ================================================ JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper.Builder

    • Enclosing class:
      JavaPropsMapper


      public static class JavaPropsMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<JavaPropsMapper,JavaPropsMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
      Since:
      2.10
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, deactivateDefaultTyping, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, serializationInclusion, serializerFactory, streamFactory, subtypeResolver, typeFactory, visibility, visibility

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.html ================================================ JavaPropsMapper (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  JavaPropsMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected Properties _env() 
        static JavaPropsMapper.Builder builder() 
        static JavaPropsMapper.Builder builder(JavaPropsFactory streamFactory) 
        JavaPropsMapper copy() 
        JavaPropsFactory getFactory() 
        <T> T readEnvVariablesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readEnvVariablesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        com.fasterxml.jackson.core.Version version() 
        void writeValue(Map<?,?> target, Object value)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Map<?,?> target, Object value, JavaPropsSchema schema)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Properties targetProps, Object value)
        Deprecated. 
        void writeValue(Properties targetProps, Object value, JavaPropsSchema schema)
        Deprecated. 
        Map<String,String> writeValueAsMap(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Map<String,String> writeValueAsMap(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        Properties writeValueAsProperties(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Properties writeValueAsProperties(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createObjectNode, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
      • Constructor Detail

        • JavaPropsMapper

          public JavaPropsMapper()
      • Method Detail

        • copy

          public JavaPropsMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.databind.ObjectMapper
        • getFactory

          public JavaPropsFactory getFactory()
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 Class<T> valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 Class<T> valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              Class<T> valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              com.fasterxml.jackson.databind.JavaType valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          Class<T> valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          com.fasterxml.jackson.databind.JavaType valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • writeValue

          public void writeValue(Map<?,?> target,
                                 Object value)
                          throws IOException
          Convenience method that "writes" given `value` as properties in given Map object.
          Throws:
          IOException
          Since:
          2.10
        • writeValueAsProperties

          public Properties writeValueAsProperties(Object value)
                                            throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.9
        • writeValueAsMap

          public Map<String,String> writeValueAsMap(Object value)
                                             throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.10

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/JavaPropsParser.html ================================================ JavaPropsParser (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class JavaPropsParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.Feature, com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected byte[] _binaryValue 
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _closed 
        protected Object _inputSource
        Although most massaging is done later, caller may be interested in the ultimate source.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected JPropReadContext _readContext 
        protected JavaPropsSchema _schema
        Schema we use for parsing Properties into structure of some kind.
        protected Map<?,?> _sourceContent
        Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        protected static JavaPropsSchema DEFAULT_SCHEMA 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, int parserFeatures, Object inputSource, com.fasterxml.jackson.core.ObjectCodec codec, Map<?,?> sourceMap) 
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, Object inputSource, int parserFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Properties sourceProps)
        Deprecated. 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder() 
        protected void _handleEOF() 
        protected <T> T _noNumbers() 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        void close() 
        BigInteger getBigIntegerValue() 
        byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant) 
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        BigDecimal getDecimalValue() 
        double getDoubleValue() 
        Object getEmbeddedObject() 
        float getFloatValue() 
        Object getInputSource() 
        int getIntValue() 
        long getLongValue() 
        com.fasterxml.jackson.core.JsonParser.NumberType getNumberType() 
        Number getNumberValue() 
        com.fasterxml.jackson.core.JsonStreamContext getParsingContext() 
        JavaPropsSchema getSchema() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        boolean hasTextCharacters() 
        boolean isClosed() 
        com.fasterxml.jackson.core.JsonToken nextToken() 
        void overrideCurrentName(String name) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        void setSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _reportUnsupportedOperation, canParseAsync, configure, currentName, disable, enable, finishToken, getBinaryValue, getBooleanValue, getByteValue, getCurrentValue, getFeatureMask, getFormatFeatures, getNonBlockingInputFeeder, getObjectId, getShortValue, getTypeId, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, isNaN, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, overrideFormatFeatures, overrideStdFeatures, readBinaryValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setCurrentValue, setFeatureMask, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _inputSource

          protected final Object _inputSource
          Although most massaging is done later, caller may be interested in the ultimate source.
        • _sourceContent

          protected final Map<?,?> _sourceContent
          Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        • _schema

          protected JavaPropsSchema _schema
          Schema we use for parsing Properties into structure of some kind.
        • _closed

          protected boolean _closed
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
        • _binaryValue

          protected byte[] _binaryValue
      • Constructor Detail

        • JavaPropsParser

          @Deprecated
          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                             Object inputSource,
                                             int parserFeatures,
                                             com.fasterxml.jackson.core.ObjectCodec codec,
                                             Properties sourceProps)
          Deprecated. 
        • JavaPropsParser

          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                 int parserFeatures,
                                 Object inputSource,
                                 com.fasterxml.jackson.core.ObjectCodec codec,
                                 Map<?,?> sourceMap)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • getSchema

          public JavaPropsSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/JavaPropsSchema.html ================================================ JavaPropsSchema (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable


      public class JavaPropsSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Serializable
      Simple FormatSchema sub-type that defines details of things like:
      • How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
      • What indentation (if any) is used before key values, and between key/value
      • If and how are Array values inferred from property names
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_INDEX_MARKER

          protected static final Markers DEFAULT_INDEX_MARKER
        • _splitter

          protected transient JPropPathSplitter _splitter
          Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
        • _firstArrayOffset

          protected int _firstArrayOffset
          Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

          Default value is 1.

        • _pathSeparator

          protected String _pathSeparator
          Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
        • _indexMarker

          protected Markers _indexMarker
          Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

          Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

        • _parseSimpleIndexes

          protected boolean _parseSimpleIndexes
          Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

          Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on _indexMarker.

          Default value is true, "plain" index segments are supported.

        • _writeIndexUsingMarkers

          protected boolean _writeIndexUsingMarkers
          Whether array-element paths are written using start/end markers (see _indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
             startMarker index endMarker
          
          to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
        • _lineIndentation

          protected String _lineIndentation
          String prepended before key value, as possible indentation
        • _keyValueSeparator

          protected String _keyValueSeparator
          String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
        • _lineEnding

          protected String _lineEnding
          String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
        • _header

          protected String _header
          Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
        • _prefix

          protected String _prefix
          Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
          Since:
          2.10
      • Constructor Detail

        • JavaPropsSchema

          public JavaPropsSchema()
      • Method Detail

        • pathSplitter

          public JPropPathSplitter pathSplitter()
          Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.

          Note that instance is constructed lazily as needed, but reused afterwards for this instance (and for these specific settings).

        • withFirstArrayOffset

          public JavaPropsSchema withFirstArrayOffset(int v)
        • withPathSeparator

          public JavaPropsSchema withPathSeparator(String v)
          Mutant factory method for constructing a new instance with specified path separator; default being comma ("."). Note that setting separator to `null` or empty String will basically disable handling of nesting, similar to calling withoutPathSeparator().
        • withoutPathSeparator

          public JavaPropsSchema withoutPathSeparator()
          Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
        • withParseSimpleIndexes

          public JavaPropsSchema withParseSimpleIndexes(boolean v)
        • withWriteIndexUsingMarkers

          public JavaPropsSchema withWriteIndexUsingMarkers(boolean v)
        • withoutLineIndentation

          public JavaPropsSchema withoutLineIndentation()
          Since:
          2.8
        • withPrefix

          public JavaPropsSchema withPrefix(String v)
          Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
          Since:
          2.10
        • withHeader

          public JavaPropsSchema withHeader(String v)
          Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used. Note that caller must specify any and all linefeeds to use: generator will NOT modify header String contents in any way, and will not append a linefeed after contents (if any).
        • withoutHeader

          public JavaPropsSchema withoutHeader()
          Convenience method, functionally equivalent to:
             withHeader("")
          
          used to ensure that no header is prepended before actual property values are output.
          Since:
          2.8
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • firstArrayOffset

          public int firstArrayOffset()
        • header

          public String header()
        • indexMarker

          public Markers indexMarker()
        • lineEnding

          public String lineEnding()
        • lineIndentation

          public String lineIndentation()
        • keyValueSeparator

          public String keyValueSeparator()
        • parseSimpleIndexes

          public boolean parseSimpleIndexes()
        • pathSeparator

          public String pathSeparator()
        • prefix

          public String prefix()
          Since:
          2.10
        • writeIndexUsingMarkers

          public boolean writeIndexUsingMarkers()

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.PackageVersion (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/impl/PropertiesBackedGenerator.html ================================================ PropertiesBackedGenerator (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class PropertiesBackedGenerator

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/impl/WriterBackedGenerator.html ================================================ WriterBackedGenerator (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class WriterBackedGenerator

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/PropertiesBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/WriterBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.10.0 API)

    com.fasterxml.jackson.dataformat.javaprop.impl

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.10.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl Class Hierarchy (Jackson-dataformat-Properties 2.10.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.impl

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/JPropEscapes.html ================================================ JPropEscapes (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropEscapes



    • public class JPropEscapes
      extends Object
      Container class for definitions of characters to escape.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ArrayContext.html ================================================ JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ArrayContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ArrayContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Array nodes

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ObjectContext.html ================================================ JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ObjectContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ObjectContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Object nodes

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.html ================================================ JPropReadContext (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
      • Field Detail

        • _parent

          protected final JPropReadContext _parent
          Parent cursor of this cursor, if any; null for root cursors.
        • _currentName

          protected String _currentName
          Current field name
        • _currentText

          protected String _currentText
        • _currentValue

          protected Object _currentValue
          Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
        • _nextNode

          protected JPropNode _nextNode
          We need to keep track of value nodes to construct further contexts.
        • _branchText

          protected String _branchText
          Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
        • _state

          protected int _state
      • Method Detail

        • getParent

          public final JPropReadContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • overrideCurrentName

          public void overrideCurrentName(String name)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • nextToken

          public abstract com.fasterxml.jackson.core.JsonToken nextToken()
        • nextContext

          public JPropReadContext nextContext()
          Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
        • getCurrentText

          public String getCurrentText()

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/JPropWriteContext.html ================================================ JPropWriteContext (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext


    • public class JPropWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      • Field Detail

        • _parent

          protected final JPropWriteContext _parent
          Parent context for this context; null for root context.
        • _currentValue

          protected Object _currentValue
          Value that is being serialized and caused this context to be created; typically a POJO or container type.
        • _gotName

          protected boolean _gotName
          Marker used to indicate that we just received a name, and now expect a value
        • _currentName

          protected String _currentName
          Name of the field of which value is to be parsed; only used for OBJECT contexts
        • _basePathLength

          protected int _basePathLength
      • Constructor Detail

        • JPropWriteContext

          protected JPropWriteContext(int type,
                                      JPropWriteContext parent,
                                      int basePathLength)
      • Method Detail

        • createRootContext

          public static JPropWriteContext createRootContext(int basePathLength)
        • createChildArrayContext

          public JPropWriteContext createChildArrayContext(int basePathLength)
        • createChildObjectContext

          public JPropWriteContext createChildObjectContext(int basePathLength)
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()
        • getParent

          public final JPropWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • toString

          public final String toString()
          Overridden to provide developer JsonPointer representation of the context.
          Overrides:
          toString in class com.fasterxml.jackson.core.JsonStreamContext

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/Latin1Reader.html ================================================ Latin1Reader (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class Latin1Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class Latin1Reader
      extends Reader
      Optimized Reader that reads ISO-8859-1 encoded content from an input stream. The reason for custom implementation is that this allows recycling of underlying read buffer, which is important for small content.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ArrayContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ObjectContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/class-use/Latin1Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.10.0 API)

    com.fasterxml.jackson.dataformat.javaprop.io

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.10.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.io

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop.io Description

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io Class Hierarchy (Jackson-dataformat-Properties 2.10.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.io

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/io/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.io

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.10.0 API)

    com.fasterxml.jackson.dataformat.javaprop

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.10.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop

    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop Description

    Basic API types to use with this module:
    • JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators
    • JavaPropsGenerator is the matching JsonGenerator implementation to use
    • JavaPropsParser is the matching JsonParser implementation to use
    • JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties
    • JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop Class Hierarchy (Jackson-dataformat-Properties 2.10.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (implements com.fasterxml.jackson.core.FormatSchema, java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.javaprop.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/JPropNode.html ================================================ JPropNode (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNode



    • public class JPropNode
      extends Object
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values. Since either index- OR name-based access is to be supported (similar to, say, Javascript objects) -- but only one, not both -- storage is bit of a hybrid. In addition, branches may also have values. So, code does bit coercion as necessary, trying to maintain something consistent and usable at all times, without failure.
      • Field Detail

        • _value

          protected String _value
          Value for the path, for leaf nodes; usually null for branches. If both children and value exists, typically need to construct bogus value with empty String key.
        • _byName

          protected Map<String,JPropNode> _byName
          Child entries accessed with String property name, if any.
        • _hasContents

          protected boolean _hasContents
      • Constructor Detail

        • JPropNode

          public JPropNode()
      • Method Detail

        • addByIndex

          public JPropNode addByIndex(int index)
        • isLeaf

          public boolean isLeaf()
        • isArray

          public boolean isArray()
        • getValue

          public String getValue()
        • asRaw

          public Object asRaw()
          Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/JPropNodeBuilder.html ================================================ JPropNodeBuilder (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNodeBuilder

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder


    • public class JPropNodeBuilder
      extends Object

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.CharPathOnlySplitter.html ================================================ JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.CharPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.CharPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparatorChar

          protected final char _pathSeparatorChar
      • Constructor Detail

        • CharPathOnlySplitter

          public CharPathOnlySplitter(char sepChar,
                                      boolean useIndex)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.FullSplitter.html ================================================ JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.FullSplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.FullSplitter
      extends JPropPathSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
        • _indexFirstChar

          protected final int _indexFirstChar
        • _prefix

          protected final String _prefix
          Since:
          2.10

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.IndexOnlySplitter.html ================================================ JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.IndexOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.IndexOnlySplitter
      extends JPropPathSplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
      • Constructor Detail

        • IndexOnlySplitter

          public IndexOnlySplitter(boolean useSimpleIndex,
                                   Markers indexMarker)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.NonSplitting.html ================================================ JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.NonSplitting

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.NonSplitting
      extends JPropPathSplitter
      "No-op" implementation that does no splitting and simply adds entries as is.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.StringPathOnlySplitter.html ================================================ JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.StringPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.StringPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparator

          protected final String _pathSeparator
        • _pathSeparatorLength

          protected final int _pathSeparatorLength
      • Constructor Detail

        • StringPathOnlySplitter

          public StringPathOnlySplitter(String pathSeparator,
                                        boolean useIndex)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.html ================================================ JPropPathSplitter (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
      • Field Detail

        • _useSimpleIndex

          protected final boolean _useSimpleIndex
      • Constructor Detail

        • JPropPathSplitter

          protected JPropPathSplitter(boolean useSimpleIndex)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/Markers.html ================================================ Markers (Jackson-dataformat-Properties 2.10.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class Markers



    • public class Markers
      extends Object
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
      • Field Detail

        • _start

          protected final String _start
        • _end

          protected final String _end
      • Constructor Detail

      • Method Detail

        • create

          public static Markers create(String start,
                                       String end)
          Factory method for creating simple marker pair with given start and end markers. Note that both are needed; neither may be empty or null
        • getStart

          public String getStart()
        • getEnd

          public String getEnd()

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNode.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNode

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNodeBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.CharPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.FullSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.IndexOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.NonSplitting.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.StringPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/class-use/Markers.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.Markers (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.Markers

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.10.0 API)

    com.fasterxml.jackson.dataformat.javaprop.util

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.10.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.util

    Helper classes for dealing with property key to structured path conversion.

    See: Description

    • Class Summary 
      Class Description
      JPropNode
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
      JPropNodeBuilder  
      JPropPathSplitter
      Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
      JPropPathSplitter.CharPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      JPropPathSplitter.FullSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      JPropPathSplitter.IndexOnlySplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      JPropPathSplitter.NonSplitting
      "No-op" implementation that does no splitting and simply adds entries as is.
      JPropPathSplitter.StringPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      Markers
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").

    Package com.fasterxml.jackson.dataformat.javaprop.util Description

    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util Class Hierarchy (Jackson-dataformat-Properties 2.10.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/com/fasterxml/jackson/dataformat/javaprop/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.10.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.util

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-Properties 2.10.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-Properties 2.10.0 API)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/help-doc.html ================================================ API Help (Jackson-dataformat-Properties 2.10.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/index-all.html ================================================ Index (Jackson-dataformat-Properties 2.10.0 API)
    A B C D E F G H I J K L M N O P R S T U V W _ 

    A

    addByIndex(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    addByName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    appendDesc(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    appendKey(StringBuilder, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    appendValue(String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    arrayContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    ArrayContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    asRaw() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    B

    BOGUS_WRITE_CONTEXT - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Since our context object does NOT implement standard write context, need to do something like use a placeholder...
    build() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    build(JavaPropsSchema, Properties) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
    Deprecated.
    Since 2.10
    build(Map<?, ?>, JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Main factory method to use for constructing JavaPropsFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    builder(JavaPropsFactory) - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    Builder(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder
     

    C

    canHandleBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canWriteBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    CharPathOnlySplitter(char, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    CHARSET_ID_LATIN1 - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    com.fasterxml.jackson.dataformat.javaprop - package com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl - package com.fasterxml.jackson.dataformat.javaprop.impl
     
    com.fasterxml.jackson.dataformat.javaprop.io - package com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util - package com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    create(JPropNode) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    create(JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    create(String, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
    Factory method for creating simple marker pair with given start and end markers.
    createChildArrayContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createChildObjectContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createGenerator(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createGenerator(Map<?, ?>, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Method for constructing JsonGenerator for generating CBOR-encoded output.
    createParser(Map<?, ?>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow feeding a pre-parsed Properties instance as input.
    createParser(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createRootContext() - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createRootContext(int) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    D

    DEFAULT_INDEX_MARKER - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    E

    EMPTY - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    F

    firstArrayOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    FORMAT_NAME_JAVA_PROPERTIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    FullSplitter(String, boolean, Markers, JPropPathSplitter, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     

    G

    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentText() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEnd() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCharsCount() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    getStart() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getText() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    header() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    I

    indexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    IndexOnlySplitter(boolean, Markers) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    instance - Static variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    isLeaf() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    J

    JavaPropsFactory - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsFactory() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Constructors used by CsvFactoryBuilder for instantiation.
    JavaPropsFactoryBuilder - Class in com.fasterxml.jackson.dataformat.javaprop
    TSFBuilder implementation for constructing JavaPropsFactory instances.
    JavaPropsFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsFactoryBuilder(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsGenerator - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsGenerator(IOContext, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    JavaPropsMapper - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsMapper() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper.Builder - Class in com.fasterxml.jackson.dataformat.javaprop
    Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
    JavaPropsParser - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsParser(IOContext, Object, int, ObjectCodec, Properties) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Deprecated.
    JavaPropsParser(IOContext, int, Object, ObjectCodec, Map<?, ?>) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    JavaPropsSchema - Class in com.fasterxml.jackson.dataformat.javaprop
    Simple FormatSchema sub-type that defines details of things like: How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
    JavaPropsSchema() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JavaPropsSchema(JavaPropsSchema) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JPropEscapes - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Container class for definitions of characters to escape.
    JPropEscapes() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    JPropNode - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
    JPropNode() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    JPropNodeBuilder - Class in com.fasterxml.jackson.dataformat.javaprop.util
     
    JPropNodeBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    JPropPathSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
    JPropPathSplitter(boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    JPropPathSplitter.CharPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropPathSplitter.FullSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Instance that supports both path separator and index markers (and possibly also "simple" indexes)
    JPropPathSplitter.IndexOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Special variant that does not use path separator, but does allow index indicator, at the end of path.
    JPropPathSplitter.NonSplitting - Class in com.fasterxml.jackson.dataformat.javaprop.util
    "No-op" implementation that does no splitting and simply adds entries as is.
    JPropPathSplitter.StringPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropReadContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Helper class used to keep track of traversal over contents of content tree expressed as JPropNodes.
    JPropReadContext(int, JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    JPropReadContext.ArrayContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Array nodes
    JPropReadContext.ObjectContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Object nodes
    JPropWriteContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
     
    JPropWriteContext(int, JPropWriteContext, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    K

    keyValueSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    L

    Latin1Reader - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Optimized Reader that reads ISO-8859-1 encoded content from an input stream.
    Latin1Reader(byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    Latin1Reader(IOContext, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    lineEnding() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    lineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    M

    Markers - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
    Markers(String, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     

    N

    nextContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    O

    objectContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    ObjectContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.javaprop
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    parseSimpleIndexes() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSplitter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.
    prefix() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    PropertiesBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    PropertiesBackedGenerator(IOContext, Map<?, ?>, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    PropertiesBackedGenerator(IOContext, Properties, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Deprecated.

    R

    read() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    readEnvVariablesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readEnvVariablesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    rebuild() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setValue(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
    Main access method for splitting key into one or more segments and using segmentation to add the String value as a node in its proper location.
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    StringPathOnlySplitter(String, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     

    T

    toString() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Overridden to provide developer JsonPointer representation of the context.
    truncatePath(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    V

    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     

    W

    withFirstArrayOffset(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withHeader(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used.
    withIndexMarker(Markers) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withKeyValueSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineEnding(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineIndentation(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Convenience method, functionally equivalent to:
    withoutIndexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutLineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutPathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
    withParseSimpleIndexes(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withPathSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance with specified path separator; default being comma (".").
    withPrefix(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
    withWriteIndexUsingMarkers(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeIndexUsingMarkers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(SerializableString) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    WriterBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    WriterBackedGenerator(IOContext, Writer, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeValue(Map<?, ?>, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Map<?, ?>, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Properties, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValue(Properties, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValueAsMap(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsMap(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.
    writeValueAsProperties(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsProperties(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.

    _

    _addSegment(JPropNode, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _asInt(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _basePath - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _basePathLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _branchText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
    _byIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries with integral number index, if any.
    _byName - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _child - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _content - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Underlying Properties that we will update with logical properties written out.
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
    Iterator over child values.
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Current field name
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Name of the field of which value is to be parsed; only used for OBJECT contexts
    _currentText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Value that is being serialized and caused this context to be created; typically a POJO or container type.
    _end - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _env() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    _firstArrayOffset - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Specifies index number used when writing the first array entry (which in Java has index of 0).
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _gotName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Marker used to indicate that we just received a name, and now expect a value
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _hasContents - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    _header - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional header to prepend before any other output: typically a comment section or so.
    _headerChecked - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indentLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indexFirstChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMarker - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Although most massaging is done later, caller may be interested in the ultimate source.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _jpropContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _keyValueSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character".
    _lastSegment(JPropNode, String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _lineEnding - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added after value, including at least one linefeed.
    _lineIndentation - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String prepended before key value, as possible indentation
    _loadProperties(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _loadProperties(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _nextNode - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    We need to keep track of value nodes to construct further contexts.
    _noNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Intermediate buffer in which contents are buffered before being written using WriterBackedGenerator._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Offset to index after the last valid index in WriterBackedGenerator._outputBuffer.
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Pointer to the next available location in WriterBackedGenerator._outputBuffer
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Parent cursor of this cursor, if any; null for root cursors.
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Parent context for this context; null for root context.
    _parseSimpleIndexes - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _pathSeparatorChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    _pathSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional prefix to strip and append to key names.
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _readContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Definition of columns being written, if available.
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Schema we use for parsing Properties into structure of some kind.
    _simpleSplitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _sourceContent - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
    _splitMore(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _splitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
    _start - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _state - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _useSimpleIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _value - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Value for the path, for leaf nodes; usually null for branches.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscaped(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscaped(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeIndexUsingMarkers - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
    _writeLinefeed() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    A B C D E F G H I J K L M N O P R S T U V W _ 

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/index.html ================================================ Jackson-dataformat-Properties 2.10.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/properties/2.10/javadoc.sh ================================================ /Library/Java/JavaVirtualMachines/jdk1.8.0_162.jdk/Contents/Home/jre/../bin/javadoc @options @packages ================================================ FILE: docs/javadoc/properties/2.10/options ================================================ -classpath '/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.10.0/jackson-annotations-2.10.0.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.10.0/jackson-core-2.10.0.jar' -encoding 'UTF-8' -protected -quiet -sourcepath '/opt/java/jackson-dataformats-text/properties/src/main/java:/opt/java/jackson-dataformats-text/properties/target/generated-sources:/opt/java/jackson-dataformats-text/properties/target/generated-sources/annotations' -author -bottom 'Copyright © 2019 FasterXML. All rights reserved.' -charset 'UTF-8' -d '/opt/java/jackson-dataformats-text/properties/target/apidocs' -docencoding 'UTF-8' -doctitle 'Jackson-dataformat-Properties 2.10.0 API' -link 'https://docs.oracle.com/javase/8/docs/api' -linkoffline 'https://docs.oracle.com/javase/7/docs/api' '/opt/java/jackson-dataformats-text/properties/target/javadoc-bundle-options' -use -version -windowtitle 'Jackson-dataformat-Properties 2.10.0 API' ================================================ FILE: docs/javadoc/properties/2.10/overview-frame.html ================================================ Overview List (Jackson-dataformat-Properties 2.10.0 API)

     

    ================================================ FILE: docs/javadoc/properties/2.10/overview-summary.html ================================================ Overview (Jackson-dataformat-Properties 2.10.0 API)

    Jackson-dataformat-Properties 2.10.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl  
    com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-Properties 2.10.0 API)

    Class Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/package-list ================================================ com.fasterxml.jackson.dataformat.javaprop com.fasterxml.jackson.dataformat.javaprop.impl com.fasterxml.jackson.dataformat.javaprop.io com.fasterxml.jackson.dataformat.javaprop.util ================================================ FILE: docs/javadoc/properties/2.10/packages ================================================ com.fasterxml.jackson.dataformat.javaprop.impl com.fasterxml.jackson.dataformat.javaprop.io com.fasterxml.jackson.dataformat.javaprop com.fasterxml.jackson.dataformat.javaprop.util ================================================ FILE: docs/javadoc/properties/2.10/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/properties/2.10/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-Properties 2.10.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.javaprop

      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _firstArrayOffset

            int _firstArrayOffset
            Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

            Default value is 1.

          • _pathSeparator

            String _pathSeparator
            Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
          • _indexMarker

            Markers _indexMarker
            Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

            Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

          • _parseSimpleIndexes

            boolean _parseSimpleIndexes
            Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

            Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on JavaPropsSchema._indexMarker.

            Default value is true, "plain" index segments are supported.

          • _writeIndexUsingMarkers

            boolean _writeIndexUsingMarkers
            Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
               startMarker index endMarker
            
            to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
          • _lineIndentation

            String _lineIndentation
            String prepended before key value, as possible indentation
          • _keyValueSeparator

            String _keyValueSeparator
            String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
          • _lineEnding

            String _lineEnding
            String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
          • _header

            String _header
            Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
          • _prefix

            String _prefix
            Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
            Since:
            2.10

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.10/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/properties/2.11/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-Properties 2.11.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.11/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-Properties 2.11.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactory.html ================================================ JavaPropsFactory (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

          com.fasterxml.jackson.core.JsonFactory.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected static String CHARSET_ID_LATIN1 
        static String FORMAT_NAME_JAVA_PROPERTIES 
        • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

          _byteSymbolCanonicalizer, _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _maximumNonEscapedChar, _objectCodec, _outputDecorator, _parserFeatures, _quoteChar, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, DEFAULT_QUOTE_CHAR, DEFAULT_ROOT_VALUE_SEPARATOR, FORMAT_NAME_JSON
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt, boolean recyclable) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Writer _createWriter(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(Reader r0, com.fasterxml.jackson.core.io.IOContext ctxt) 
        static JavaPropsFactoryBuilder builder()
        Main factory method to use for constructing JavaPropsFactory instances with different configuration.
        boolean canHandleBinaryNatively() 
        boolean canUseCharArrays() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        JavaPropsFactory copy() 
        JavaPropsGenerator createGenerator(Map<?,?> target, JavaPropsSchema schema)
        Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
        Method for constructing JsonGenerator for generating CBOR-encoded output.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) 
        JavaPropsGenerator createGenerator(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data) 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data, int offset, int len) 
        com.fasterxml.jackson.core.JsonParser createParser(File f) 
        com.fasterxml.jackson.core.JsonParser createParser(InputStream in) 
        JavaPropsParser createParser(Map<?,?> content)
        Convenience method to allow feeding a pre-parsed Properties instance as input.
        JavaPropsParser createParser(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(URL url) 
        String getFormatName() 
        com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
        Sub-classes need to override this method
        JavaPropsFactoryBuilder rebuild() 
        boolean requiresPropertyOrdering() 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.JsonFactory

          _checkInvalidCopy, _createContext, _createNonBlockingContext, _createParser, _decorate, _decorate, _decorate, _decorate, _decorate, _getBufferRecycler, canParseAsync, configure, configure, configure, createGenerator, createGenerator, createGenerator, createGenerator, createJsonGenerator, createJsonGenerator, createJsonGenerator, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createNonBlockingByteArrayParser, createParser, createParser, createParser, createParser, createParser, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getCodec, getFormatGeneratorFeatures, getFormatParserFeatures, getFormatReadFeatureType, getFormatWriteFeatureType, getGeneratorFeatures, getInputDecorator, getOutputDecorator, getParserFeatures, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, readResolve, requiresCustomCodec, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparator
        • Methods inherited from class com.fasterxml.jackson.core.TokenStreamFactory

          _createDataOutputWrapper, _optimizedStreamFromURL
      • Constructor Detail

        • JavaPropsFactory

          public JavaPropsFactory()
        • JavaPropsFactory

          public JavaPropsFactory(com.fasterxml.jackson.core.ObjectCodec codec)
        • JavaPropsFactory

          protected JavaPropsFactory(JavaPropsFactory src,
                                     com.fasterxml.jackson.core.ObjectCodec oc)
      • Method Detail

        • rebuild

          public JavaPropsFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • copy

          public JavaPropsFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canHandleBinaryNatively

          public boolean canHandleBinaryNatively()
          Overrides:
          canHandleBinaryNatively in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public JavaPropsParser createParser(Map<?,?> content)
          Convenience method to allow feeding a pre-parsed Properties instance as input.
          Since:
          2.10
        • createGenerator

          public JavaPropsGenerator createGenerator(Map<?,?> target,
                                                    JavaPropsSchema schema)
          Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
          Since:
          2.10
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(File f)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(URL url)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(InputStream in)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data,
                                                                    int offset,
                                                                    int len)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
                                                                   throws IOException
          Method for constructing JsonGenerator for generating CBOR-encoded output.

          Since CBOR format always uses UTF-8 internally, no encoding need to be passed to this method.

          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt,
                                                                        boolean recyclable)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out,
                                                                              com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                       throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out,
                                                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                           throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactoryBuilder.html ================================================ JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactoryBuilder

      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.TSFBuilder

          _factoryFeatures, _inputDecorator, _outputDecorator, _streamReadFeatures, _streamWriteFeatures, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        JavaPropsFactory build() 
        • Methods inherited from class com.fasterxml.jackson.core.TSFBuilder

          _legacyDisable, _legacyDisable, _legacyEnable, _legacyEnable, _this, configure, configure, configure, configure, configure, disable, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, enable, factoryFeaturesMask, inputDecorator, inputDecorator, outputDecorator, outputDecorator, streamReadFeatures, streamWriteFeatures

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/JavaPropsGenerator.html ================================================ JavaPropsGenerator (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonGenerator

          com.fasterxml.jackson.core.JsonGenerator.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _basePath 
        protected boolean _headerChecked 
        protected int _indentLength 
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected JPropWriteContext _jpropContext
        Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        protected JavaPropsSchema _schema
        Definition of columns being written, if available.
        protected static com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
        Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        protected static int SHORT_WRITE 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int stdFeatures, com.fasterxml.jackson.core.ObjectCodec codec) 
      • Field Detail

        • BOGUS_WRITE_CONTEXT

          protected static final com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
          Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _schema

          protected JavaPropsSchema _schema
          Definition of columns being written, if available.
        • _jpropContext

          protected JPropWriteContext _jpropContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        • _headerChecked

          protected boolean _headerChecked
        • _indentLength

          protected int _indentLength
      • Constructor Detail

        • JavaPropsGenerator

          public JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                                    int stdFeatures,
                                    com.fasterxml.jackson.core.ObjectCodec codec)
      • Method Detail

        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator useDefaultPrettyPrinter()
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getSchema

          public com.fasterxml.jackson.core.FormatSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteBinaryNatively

          public boolean canWriteBinaryNatively()
          Overrides:
          canWriteBinaryNatively in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public com.fasterxml.jackson.core.JsonStreamContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • writeFieldName

          public void writeFieldName(String name)
                              throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _appendFieldName

          protected abstract void _appendFieldName(StringBuilder path,
                                                   String name)
        • writeStartArray

          public void writeStartArray()
                               throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public void writeEndArray()
                             throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public void writeStartObject()
                                throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public void writeEndObject()
                              throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(com.fasterxml.jackson.core.SerializableString text)
                        throws IOException,
                               com.fasterxml.jackson.core.JsonGenerationException
          Overrides:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected void _verifyValueWrite(String typeMsg)
                                    throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _writeEscapedEntry

          protected abstract void _writeEscapedEntry(char[] text,
                                                     int offset,
                                                     int len)
                                              throws IOException
          Throws:
          IOException
        • _writeRaw

          protected abstract void _writeRaw(char[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.Builder.html ================================================ JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper.Builder

    • Enclosing class:
      JavaPropsMapper


      public static class JavaPropsMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<JavaPropsMapper,JavaPropsMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
      Since:
      2.10
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, deactivateDefaultTyping, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, serializationInclusion, serializerFactory, streamFactory, subtypeResolver, typeFactory, visibility, visibility

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.html ================================================ JavaPropsMapper (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  JavaPropsMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected Properties _env() 
        static JavaPropsMapper.Builder builder() 
        static JavaPropsMapper.Builder builder(JavaPropsFactory streamFactory) 
        JavaPropsMapper copy() 
        JavaPropsFactory getFactory() 
        <T> T readEnvVariablesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readEnvVariablesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        com.fasterxml.jackson.core.Version version() 
        void writeValue(Map<?,?> target, Object value)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Map<?,?> target, Object value, JavaPropsSchema schema)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Properties targetProps, Object value)
        Deprecated. 
        void writeValue(Properties targetProps, Object value, JavaPropsSchema schema)
        Deprecated. 
        Map<String,String> writeValueAsMap(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Map<String,String> writeValueAsMap(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        Properties writeValueAsProperties(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Properties writeValueAsProperties(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
      • Constructor Detail

        • JavaPropsMapper

          public JavaPropsMapper()
      • Method Detail

        • copy

          public JavaPropsMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.databind.ObjectMapper
        • getFactory

          public JavaPropsFactory getFactory()
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 Class<T> valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 Class<T> valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              Class<T> valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              com.fasterxml.jackson.databind.JavaType valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          Class<T> valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          com.fasterxml.jackson.databind.JavaType valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • writeValue

          public void writeValue(Map<?,?> target,
                                 Object value)
                          throws IOException
          Convenience method that "writes" given `value` as properties in given Map object.
          Throws:
          IOException
          Since:
          2.10
        • writeValueAsProperties

          public Properties writeValueAsProperties(Object value)
                                            throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.9
        • writeValueAsMap

          public Map<String,String> writeValueAsMap(Object value)
                                             throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.10

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/JavaPropsParser.html ================================================ JavaPropsParser (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class JavaPropsParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.Feature, com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected byte[] _binaryValue 
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _closed 
        protected Object _inputSource
        Although most massaging is done later, caller may be interested in the ultimate source.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected JPropReadContext _readContext 
        protected JavaPropsSchema _schema
        Schema we use for parsing Properties into structure of some kind.
        protected Map<?,?> _sourceContent
        Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        protected static JavaPropsSchema DEFAULT_SCHEMA 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, int parserFeatures, Object inputSource, com.fasterxml.jackson.core.ObjectCodec codec, Map<?,?> sourceMap) 
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, Object inputSource, int parserFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Properties sourceProps)
        Deprecated. 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder() 
        protected void _handleEOF() 
        protected <T> T _noNumbers() 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        void close() 
        BigInteger getBigIntegerValue() 
        byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant) 
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        BigDecimal getDecimalValue() 
        double getDoubleValue() 
        Object getEmbeddedObject() 
        float getFloatValue() 
        Object getInputSource() 
        int getIntValue() 
        long getLongValue() 
        com.fasterxml.jackson.core.JsonParser.NumberType getNumberType() 
        Number getNumberValue() 
        com.fasterxml.jackson.core.JsonStreamContext getParsingContext() 
        JavaPropsSchema getSchema() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        boolean hasTextCharacters() 
        boolean isClosed() 
        com.fasterxml.jackson.core.JsonToken nextToken() 
        void overrideCurrentName(String name) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        void setSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _reportUnsupportedOperation, canParseAsync, configure, currentName, disable, enable, finishToken, getBinaryValue, getBooleanValue, getByteValue, getCurrentValue, getFeatureMask, getFormatFeatures, getNonBlockingInputFeeder, getObjectId, getShortValue, getTypeId, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, isNaN, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, overrideFormatFeatures, overrideStdFeatures, readBinaryValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setCurrentValue, setFeatureMask, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _inputSource

          protected final Object _inputSource
          Although most massaging is done later, caller may be interested in the ultimate source.
        • _sourceContent

          protected final Map<?,?> _sourceContent
          Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        • _schema

          protected JavaPropsSchema _schema
          Schema we use for parsing Properties into structure of some kind.
        • _closed

          protected boolean _closed
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
        • _binaryValue

          protected byte[] _binaryValue
      • Constructor Detail

        • JavaPropsParser

          @Deprecated
          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                             Object inputSource,
                                             int parserFeatures,
                                             com.fasterxml.jackson.core.ObjectCodec codec,
                                             Properties sourceProps)
          Deprecated. 
        • JavaPropsParser

          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                 int parserFeatures,
                                 Object inputSource,
                                 com.fasterxml.jackson.core.ObjectCodec codec,
                                 Map<?,?> sourceMap)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • getSchema

          public JavaPropsSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/JavaPropsSchema.html ================================================ JavaPropsSchema (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable


      public class JavaPropsSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Serializable
      Simple FormatSchema sub-type that defines details of things like:
      • How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
      • What indentation (if any) is used before key values, and between key/value
      • If and how are Array values inferred from property names
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_INDEX_MARKER

          protected static final Markers DEFAULT_INDEX_MARKER
        • _splitter

          protected transient JPropPathSplitter _splitter
          Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
        • _firstArrayOffset

          protected int _firstArrayOffset
          Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

          Default value is 1.

        • _pathSeparator

          protected String _pathSeparator
          Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
        • _indexMarker

          protected Markers _indexMarker
          Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

          Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

        • _parseSimpleIndexes

          protected boolean _parseSimpleIndexes
          Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

          Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on _indexMarker.

          Default value is true, "plain" index segments are supported.

        • _writeIndexUsingMarkers

          protected boolean _writeIndexUsingMarkers
          Whether array-element paths are written using start/end markers (see _indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
             startMarker index endMarker
          
          to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
        • _lineIndentation

          protected String _lineIndentation
          String prepended before key value, as possible indentation
        • _keyValueSeparator

          protected String _keyValueSeparator
          String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
        • _lineEnding

          protected String _lineEnding
          String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
        • _header

          protected String _header
          Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
        • _prefix

          protected String _prefix
          Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
          Since:
          2.10
      • Constructor Detail

        • JavaPropsSchema

          public JavaPropsSchema()
      • Method Detail

        • pathSplitter

          public JPropPathSplitter pathSplitter()
          Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.

          Note that instance is constructed lazily as needed, but reused afterwards for this instance (and for these specific settings).

        • withFirstArrayOffset

          public JavaPropsSchema withFirstArrayOffset(int v)
        • withPathSeparator

          public JavaPropsSchema withPathSeparator(String v)
          Mutant factory method for constructing a new instance with specified path separator; default being comma ("."). Note that setting separator to `null` or empty String will basically disable handling of nesting, similar to calling withoutPathSeparator().
        • withoutPathSeparator

          public JavaPropsSchema withoutPathSeparator()
          Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
        • withParseSimpleIndexes

          public JavaPropsSchema withParseSimpleIndexes(boolean v)
        • withWriteIndexUsingMarkers

          public JavaPropsSchema withWriteIndexUsingMarkers(boolean v)
        • withoutLineIndentation

          public JavaPropsSchema withoutLineIndentation()
          Since:
          2.8
        • withPrefix

          public JavaPropsSchema withPrefix(String v)
          Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
          Since:
          2.10
        • withHeader

          public JavaPropsSchema withHeader(String v)
          Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used. Note that caller must specify any and all linefeeds to use: generator will NOT modify header String contents in any way, and will not append a linefeed after contents (if any).
        • withoutHeader

          public JavaPropsSchema withoutHeader()
          Convenience method, functionally equivalent to:
             withHeader("")
          
          used to ensure that no header is prepended before actual property values are output.
          Since:
          2.8
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • firstArrayOffset

          public int firstArrayOffset()
        • header

          public String header()
        • indexMarker

          public Markers indexMarker()
        • lineEnding

          public String lineEnding()
        • lineIndentation

          public String lineIndentation()
        • keyValueSeparator

          public String keyValueSeparator()
        • parseSimpleIndexes

          public boolean parseSimpleIndexes()
        • pathSeparator

          public String pathSeparator()
        • prefix

          public String prefix()
          Since:
          2.10
        • writeIndexUsingMarkers

          public boolean writeIndexUsingMarkers()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.PackageVersion (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/impl/PropertiesBackedGenerator.html ================================================ PropertiesBackedGenerator (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class PropertiesBackedGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/impl/WriterBackedGenerator.html ================================================ WriterBackedGenerator (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class WriterBackedGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/PropertiesBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/WriterBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.11.0 API)

    com.fasterxml.jackson.dataformat.javaprop.impl

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.11.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl Class Hierarchy (Jackson-dataformat-Properties 2.11.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.impl

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/JPropEscapes.html ================================================ JPropEscapes (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropEscapes



    • public class JPropEscapes
      extends Object
      Container class for definitions of characters to escape.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ArrayContext.html ================================================ JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ArrayContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ArrayContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Array nodes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ObjectContext.html ================================================ JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ObjectContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ObjectContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Object nodes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.html ================================================ JPropReadContext (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
      • Field Detail

        • _parent

          protected final JPropReadContext _parent
          Parent cursor of this cursor, if any; null for root cursors.
        • _currentName

          protected String _currentName
          Current field name
        • _currentText

          protected String _currentText
        • _currentValue

          protected Object _currentValue
          Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
        • _nextNode

          protected JPropNode _nextNode
          We need to keep track of value nodes to construct further contexts.
        • _branchText

          protected String _branchText
          Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
        • _state

          protected int _state
      • Method Detail

        • getParent

          public final JPropReadContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • overrideCurrentName

          public void overrideCurrentName(String name)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • nextToken

          public abstract com.fasterxml.jackson.core.JsonToken nextToken()
        • nextContext

          public JPropReadContext nextContext()
          Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
        • getCurrentText

          public String getCurrentText()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/JPropWriteContext.html ================================================ JPropWriteContext (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext


    • public class JPropWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      • Field Detail

        • _parent

          protected final JPropWriteContext _parent
          Parent context for this context; null for root context.
        • _currentValue

          protected Object _currentValue
          Value that is being serialized and caused this context to be created; typically a POJO or container type.
        • _gotName

          protected boolean _gotName
          Marker used to indicate that we just received a name, and now expect a value
        • _currentName

          protected String _currentName
          Name of the field of which value is to be parsed; only used for OBJECT contexts
        • _basePathLength

          protected int _basePathLength
      • Constructor Detail

        • JPropWriteContext

          protected JPropWriteContext(int type,
                                      JPropWriteContext parent,
                                      int basePathLength)
      • Method Detail

        • createRootContext

          public static JPropWriteContext createRootContext(int basePathLength)
        • createChildArrayContext

          public JPropWriteContext createChildArrayContext(int basePathLength)
        • createChildObjectContext

          public JPropWriteContext createChildObjectContext(int basePathLength)
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()
        • getParent

          public final JPropWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • toString

          public final String toString()
          Overridden to provide developer JsonPointer representation of the context.
          Overrides:
          toString in class com.fasterxml.jackson.core.JsonStreamContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/Latin1Reader.html ================================================ Latin1Reader (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class Latin1Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class Latin1Reader
      extends Reader
      Optimized Reader that reads ISO-8859-1 encoded content from an input stream. The reason for custom implementation is that this allows recycling of underlying read buffer, which is important for small content.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ArrayContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ObjectContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/class-use/Latin1Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.11.0 API)

    com.fasterxml.jackson.dataformat.javaprop.io

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.11.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.io

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop.io Description

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io Class Hierarchy (Jackson-dataformat-Properties 2.11.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.io

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/io/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.io

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.11.0 API)

    com.fasterxml.jackson.dataformat.javaprop

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.11.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop

    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop Description

    Basic API types to use with this module:
    • JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators
    • JavaPropsGenerator is the matching JsonGenerator implementation to use
    • JavaPropsParser is the matching JsonParser implementation to use
    • JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties
    • JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop Class Hierarchy (Jackson-dataformat-Properties 2.11.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (implements com.fasterxml.jackson.core.FormatSchema, java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.javaprop.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/JPropNode.html ================================================ JPropNode (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNode



    • public class JPropNode
      extends Object
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values. Since either index- OR name-based access is to be supported (similar to, say, Javascript objects) -- but only one, not both -- storage is bit of a hybrid. In addition, branches may also have values. So, code does bit coercion as necessary, trying to maintain something consistent and usable at all times, without failure.
      • Field Detail

        • _value

          protected String _value
          Value for the path, for leaf nodes; usually null for branches. If both children and value exists, typically need to construct bogus value with empty String key.
        • _byName

          protected Map<String,JPropNode> _byName
          Child entries accessed with String property name, if any.
        • _hasContents

          protected boolean _hasContents
      • Constructor Detail

        • JPropNode

          public JPropNode()
      • Method Detail

        • addByIndex

          public JPropNode addByIndex(int index)
        • isLeaf

          public boolean isLeaf()
        • isArray

          public boolean isArray()
        • getValue

          public String getValue()
        • asRaw

          public Object asRaw()
          Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/JPropNodeBuilder.html ================================================ JPropNodeBuilder (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNodeBuilder

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder


    • public class JPropNodeBuilder
      extends Object

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.CharPathOnlySplitter.html ================================================ JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.CharPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.CharPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparatorChar

          protected final char _pathSeparatorChar
      • Constructor Detail

        • CharPathOnlySplitter

          public CharPathOnlySplitter(char sepChar,
                                      boolean useIndex)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.FullSplitter.html ================================================ JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.FullSplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.FullSplitter
      extends JPropPathSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
        • _indexFirstChar

          protected final int _indexFirstChar
        • _prefix

          protected final String _prefix
          Since:
          2.10

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.IndexOnlySplitter.html ================================================ JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.IndexOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.IndexOnlySplitter
      extends JPropPathSplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
      • Constructor Detail

        • IndexOnlySplitter

          public IndexOnlySplitter(boolean useSimpleIndex,
                                   Markers indexMarker)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.NonSplitting.html ================================================ JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.NonSplitting

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.NonSplitting
      extends JPropPathSplitter
      "No-op" implementation that does no splitting and simply adds entries as is.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.StringPathOnlySplitter.html ================================================ JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.StringPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.StringPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparator

          protected final String _pathSeparator
        • _pathSeparatorLength

          protected final int _pathSeparatorLength
      • Constructor Detail

        • StringPathOnlySplitter

          public StringPathOnlySplitter(String pathSeparator,
                                        boolean useIndex)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.html ================================================ JPropPathSplitter (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
      • Field Detail

        • _useSimpleIndex

          protected final boolean _useSimpleIndex
      • Constructor Detail

        • JPropPathSplitter

          protected JPropPathSplitter(boolean useSimpleIndex)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/Markers.html ================================================ Markers (Jackson-dataformat-Properties 2.11.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class Markers



    • public class Markers
      extends Object
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
      • Field Detail

        • _start

          protected final String _start
        • _end

          protected final String _end
      • Constructor Detail

      • Method Detail

        • create

          public static Markers create(String start,
                                       String end)
          Factory method for creating simple marker pair with given start and end markers. Note that both are needed; neither may be empty or null
        • getStart

          public String getStart()
        • getEnd

          public String getEnd()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNode.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNode

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNodeBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.CharPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.FullSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.IndexOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.NonSplitting.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.StringPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/class-use/Markers.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.Markers (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.Markers

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.11.0 API)

    com.fasterxml.jackson.dataformat.javaprop.util

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.11.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.util

    Helper classes for dealing with property key to structured path conversion.

    See: Description

    • Class Summary 
      Class Description
      JPropNode
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
      JPropNodeBuilder  
      JPropPathSplitter
      Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
      JPropPathSplitter.CharPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      JPropPathSplitter.FullSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      JPropPathSplitter.IndexOnlySplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      JPropPathSplitter.NonSplitting
      "No-op" implementation that does no splitting and simply adds entries as is.
      JPropPathSplitter.StringPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      Markers
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").

    Package com.fasterxml.jackson.dataformat.javaprop.util Description

    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util Class Hierarchy (Jackson-dataformat-Properties 2.11.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/com/fasterxml/jackson/dataformat/javaprop/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.11.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.util

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-Properties 2.11.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-Properties 2.11.0 API)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/help-doc.html ================================================ API Help (Jackson-dataformat-Properties 2.11.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/index-all.html ================================================ Index (Jackson-dataformat-Properties 2.11.0 API)
    A B C D E F G H I J K L M N O P R S T U V W _ 

    A

    addByIndex(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    addByName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    appendDesc(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    appendKey(StringBuilder, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    appendValue(String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    arrayContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    ArrayContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    asRaw() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    B

    BOGUS_WRITE_CONTEXT - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Since our context object does NOT implement standard write context, need to do something like use a placeholder...
    build() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    build(JavaPropsSchema, Properties) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
    Deprecated.
    Since 2.10
    build(Map<?, ?>, JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Main factory method to use for constructing JavaPropsFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    builder(JavaPropsFactory) - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    Builder(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder
     

    C

    canHandleBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canWriteBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    CharPathOnlySplitter(char, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    CHARSET_ID_LATIN1 - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    com.fasterxml.jackson.dataformat.javaprop - package com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl - package com.fasterxml.jackson.dataformat.javaprop.impl
     
    com.fasterxml.jackson.dataformat.javaprop.io - package com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util - package com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    create(JPropNode) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    create(JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    create(String, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
    Factory method for creating simple marker pair with given start and end markers.
    createChildArrayContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createChildObjectContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createGenerator(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createGenerator(Map<?, ?>, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Method for constructing JsonGenerator for generating CBOR-encoded output.
    createParser(Map<?, ?>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow feeding a pre-parsed Properties instance as input.
    createParser(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createRootContext() - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createRootContext(int) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    D

    DEFAULT_INDEX_MARKER - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    E

    EMPTY - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    F

    firstArrayOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    FORMAT_NAME_JAVA_PROPERTIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    FullSplitter(String, boolean, Markers, JPropPathSplitter, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     

    G

    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentText() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEnd() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCharsCount() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    getStart() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getText() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    header() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    I

    indexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    IndexOnlySplitter(boolean, Markers) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    instance - Static variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    isLeaf() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    J

    JavaPropsFactory - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsFactory() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Constructors used by JavaPropsFactoryBuilder for instantiation.
    JavaPropsFactoryBuilder - Class in com.fasterxml.jackson.dataformat.javaprop
    TSFBuilder implementation for constructing JavaPropsFactory instances.
    JavaPropsFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsFactoryBuilder(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsGenerator - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsGenerator(IOContext, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    JavaPropsMapper - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsMapper() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper.Builder - Class in com.fasterxml.jackson.dataformat.javaprop
    Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
    JavaPropsParser - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsParser(IOContext, Object, int, ObjectCodec, Properties) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Deprecated.
    JavaPropsParser(IOContext, int, Object, ObjectCodec, Map<?, ?>) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    JavaPropsSchema - Class in com.fasterxml.jackson.dataformat.javaprop
    Simple FormatSchema sub-type that defines details of things like: How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
    JavaPropsSchema() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JavaPropsSchema(JavaPropsSchema) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JPropEscapes - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Container class for definitions of characters to escape.
    JPropEscapes() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    JPropNode - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
    JPropNode() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    JPropNodeBuilder - Class in com.fasterxml.jackson.dataformat.javaprop.util
     
    JPropNodeBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    JPropPathSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
    JPropPathSplitter(boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    JPropPathSplitter.CharPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropPathSplitter.FullSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Instance that supports both path separator and index markers (and possibly also "simple" indexes)
    JPropPathSplitter.IndexOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Special variant that does not use path separator, but does allow index indicator, at the end of path.
    JPropPathSplitter.NonSplitting - Class in com.fasterxml.jackson.dataformat.javaprop.util
    "No-op" implementation that does no splitting and simply adds entries as is.
    JPropPathSplitter.StringPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropReadContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Helper class used to keep track of traversal over contents of content tree expressed as JPropNodes.
    JPropReadContext(int, JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    JPropReadContext.ArrayContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Array nodes
    JPropReadContext.ObjectContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Object nodes
    JPropWriteContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
     
    JPropWriteContext(int, JPropWriteContext, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    K

    keyValueSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    L

    Latin1Reader - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Optimized Reader that reads ISO-8859-1 encoded content from an input stream.
    Latin1Reader(byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    Latin1Reader(IOContext, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    lineEnding() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    lineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    M

    Markers - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
    Markers(String, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     

    N

    nextContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    O

    objectContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    ObjectContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.javaprop
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    parseSimpleIndexes() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSplitter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.
    prefix() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    PropertiesBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    PropertiesBackedGenerator(IOContext, Map<?, ?>, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    PropertiesBackedGenerator(IOContext, Properties, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Deprecated.

    R

    read() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    readEnvVariablesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readEnvVariablesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    rebuild() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setValue(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
    Main access method for splitting key into one or more segments and using segmentation to add the String value as a node in its proper location.
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    StringPathOnlySplitter(String, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     

    T

    toString() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Overridden to provide developer JsonPointer representation of the context.
    truncatePath(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    V

    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     

    W

    withFirstArrayOffset(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withHeader(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used.
    withIndexMarker(Markers) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withKeyValueSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineEnding(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineIndentation(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Convenience method, functionally equivalent to:
    withoutIndexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutLineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutPathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
    withParseSimpleIndexes(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withPathSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance with specified path separator; default being comma (".").
    withPrefix(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
    withWriteIndexUsingMarkers(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeIndexUsingMarkers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(SerializableString) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    WriterBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    WriterBackedGenerator(IOContext, Writer, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeValue(Map<?, ?>, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Map<?, ?>, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Properties, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValue(Properties, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValueAsMap(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsMap(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.
    writeValueAsProperties(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsProperties(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.

    _

    _addSegment(JPropNode, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _asInt(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _basePath - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _basePathLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _branchText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
    _byIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries with integral number index, if any.
    _byName - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _child - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _content - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Underlying Properties that we will update with logical properties written out.
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
    Iterator over child values.
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Current field name
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Name of the field of which value is to be parsed; only used for OBJECT contexts
    _currentText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Value that is being serialized and caused this context to be created; typically a POJO or container type.
    _end - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _env() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    _firstArrayOffset - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Specifies index number used when writing the first array entry (which in Java has index of 0).
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _gotName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Marker used to indicate that we just received a name, and now expect a value
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _hasContents - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    _header - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional header to prepend before any other output: typically a comment section or so.
    _headerChecked - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indentLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indexFirstChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMarker - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Although most massaging is done later, caller may be interested in the ultimate source.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _jpropContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _keyValueSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character".
    _lastSegment(JPropNode, String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _lineEnding - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added after value, including at least one linefeed.
    _lineIndentation - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String prepended before key value, as possible indentation
    _loadProperties(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _loadProperties(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _nextNode - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    We need to keep track of value nodes to construct further contexts.
    _noNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Intermediate buffer in which contents are buffered before being written using WriterBackedGenerator._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Offset to index after the last valid index in WriterBackedGenerator._outputBuffer.
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Pointer to the next available location in WriterBackedGenerator._outputBuffer
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Parent cursor of this cursor, if any; null for root cursors.
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Parent context for this context; null for root context.
    _parseSimpleIndexes - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _pathSeparatorChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    _pathSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional prefix to strip and append to key names.
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _readContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Definition of columns being written, if available.
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Schema we use for parsing Properties into structure of some kind.
    _simpleSplitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _sourceContent - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
    _splitMore(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _splitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
    _start - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _state - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _useSimpleIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _value - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Value for the path, for leaf nodes; usually null for branches.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscaped(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscaped(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeIndexUsingMarkers - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
    _writeLinefeed() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    A B C D E F G H I J K L M N O P R S T U V W _ 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/index.html ================================================ Jackson-dataformat-Properties 2.11.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/properties/2.11/overview-frame.html ================================================ Overview List (Jackson-dataformat-Properties 2.11.0 API)

     

    ================================================ FILE: docs/javadoc/properties/2.11/overview-summary.html ================================================ Overview (Jackson-dataformat-Properties 2.11.0 API)

    Jackson-dataformat-Properties 2.11.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl  
    com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-Properties 2.11.0 API)

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/package-list ================================================ com.fasterxml.jackson.dataformat.javaprop com.fasterxml.jackson.dataformat.javaprop.impl com.fasterxml.jackson.dataformat.javaprop.io com.fasterxml.jackson.dataformat.javaprop.util ================================================ FILE: docs/javadoc/properties/2.11/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/properties/2.11/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-Properties 2.11.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.javaprop

      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _firstArrayOffset

            int _firstArrayOffset
            Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

            Default value is 1.

          • _pathSeparator

            String _pathSeparator
            Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
          • _indexMarker

            Markers _indexMarker
            Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

            Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

          • _parseSimpleIndexes

            boolean _parseSimpleIndexes
            Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

            Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on JavaPropsSchema._indexMarker.

            Default value is true, "plain" index segments are supported.

          • _writeIndexUsingMarkers

            boolean _writeIndexUsingMarkers
            Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
               startMarker index endMarker
            
            to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
          • _lineIndentation

            String _lineIndentation
            String prepended before key value, as possible indentation
          • _keyValueSeparator

            String _keyValueSeparator
            String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
          • _lineEnding

            String _lineEnding
            String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
          • _header

            String _header
            Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
          • _prefix

            String _prefix
            Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
            Since:
            2.10

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.11/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/properties/2.12/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-Properties 2.12.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.12/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-Properties 2.12.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactory.html ================================================ JavaPropsFactory (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

          com.fasterxml.jackson.core.JsonFactory.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected static String CHARSET_ID_LATIN1 
        static String FORMAT_NAME_JAVA_PROPERTIES 
        • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

          _byteSymbolCanonicalizer, _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _maximumNonEscapedChar, _objectCodec, _outputDecorator, _parserFeatures, _quoteChar, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, DEFAULT_QUOTE_CHAR, DEFAULT_ROOT_VALUE_SEPARATOR, FORMAT_NAME_JSON
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt, boolean recyclable) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Writer _createWriter(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(Reader r0, com.fasterxml.jackson.core.io.IOContext ctxt) 
        static JavaPropsFactoryBuilder builder()
        Main factory method to use for constructing JavaPropsFactory instances with different configuration.
        boolean canHandleBinaryNatively() 
        boolean canUseCharArrays() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        JavaPropsFactory copy() 
        JavaPropsGenerator createGenerator(Map<?,?> target, JavaPropsSchema schema)
        Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
        Method for constructing JsonGenerator for generating CBOR-encoded output.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) 
        JavaPropsGenerator createGenerator(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data) 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data, int offset, int len) 
        com.fasterxml.jackson.core.JsonParser createParser(File f) 
        com.fasterxml.jackson.core.JsonParser createParser(InputStream in) 
        JavaPropsParser createParser(Map<?,?> content)
        Convenience method to allow feeding a pre-parsed Properties instance as input.
        JavaPropsParser createParser(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(URL url) 
        String getFormatName() 
        com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
        Sub-classes need to override this method
        JavaPropsFactoryBuilder rebuild() 
        boolean requiresPropertyOrdering() 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.JsonFactory

          _checkInvalidCopy, _createContext, _createNonBlockingContext, _createParser, _decorate, _decorate, _decorate, _decorate, _decorate, _getBufferRecycler, canParseAsync, configure, configure, configure, createGenerator, createGenerator, createGenerator, createGenerator, createJsonGenerator, createJsonGenerator, createJsonGenerator, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createNonBlockingByteArrayParser, createParser, createParser, createParser, createParser, createParser, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getCodec, getFormatGeneratorFeatures, getFormatParserFeatures, getFormatReadFeatureType, getFormatWriteFeatureType, getGeneratorFeatures, getInputDecorator, getOutputDecorator, getParserFeatures, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, readResolve, requiresCustomCodec, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparator
        • Methods inherited from class com.fasterxml.jackson.core.TokenStreamFactory

          _createDataOutputWrapper, _optimizedStreamFromURL
      • Constructor Detail

        • JavaPropsFactory

          public JavaPropsFactory()
        • JavaPropsFactory

          public JavaPropsFactory(com.fasterxml.jackson.core.ObjectCodec codec)
        • JavaPropsFactory

          protected JavaPropsFactory(JavaPropsFactory src,
                                     com.fasterxml.jackson.core.ObjectCodec oc)
      • Method Detail

        • rebuild

          public JavaPropsFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • copy

          public JavaPropsFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canHandleBinaryNatively

          public boolean canHandleBinaryNatively()
          Overrides:
          canHandleBinaryNatively in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public JavaPropsParser createParser(Map<?,?> content)
          Convenience method to allow feeding a pre-parsed Properties instance as input.
          Since:
          2.10
        • createGenerator

          public JavaPropsGenerator createGenerator(Map<?,?> target,
                                                    JavaPropsSchema schema)
          Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
          Since:
          2.10
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(File f)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(URL url)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(InputStream in)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data,
                                                                    int offset,
                                                                    int len)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
                                                                   throws IOException
          Method for constructing JsonGenerator for generating CBOR-encoded output.

          Since CBOR format always uses UTF-8 internally, no encoding need to be passed to this method.

          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt,
                                                                        boolean recyclable)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out,
                                                                              com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                       throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out,
                                                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                           throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactoryBuilder.html ================================================ JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactoryBuilder

      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.TSFBuilder

          _factoryFeatures, _inputDecorator, _outputDecorator, _streamReadFeatures, _streamWriteFeatures, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        JavaPropsFactory build() 
        • Methods inherited from class com.fasterxml.jackson.core.TSFBuilder

          _legacyDisable, _legacyDisable, _legacyEnable, _legacyEnable, _this, configure, configure, configure, configure, configure, disable, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, enable, factoryFeaturesMask, inputDecorator, inputDecorator, outputDecorator, outputDecorator, streamReadFeatures, streamWriteFeatures

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/JavaPropsGenerator.html ================================================ JavaPropsGenerator (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonGenerator

          com.fasterxml.jackson.core.JsonGenerator.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _basePath 
        protected boolean _headerChecked 
        protected int _indentLength 
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected JPropWriteContext _jpropContext
        Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        protected JavaPropsSchema _schema
        Definition of columns being written, if available.
        protected static com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
        Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        protected static int SHORT_WRITE 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter, DEFAULT_BINARY_WRITE_CAPABILITIES, DEFAULT_TEXTUAL_WRITE_CAPABILITIES, DEFAULT_WRITE_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int stdFeatures, com.fasterxml.jackson.core.ObjectCodec codec) 
      • Field Detail

        • BOGUS_WRITE_CONTEXT

          protected static final com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
          Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _schema

          protected JavaPropsSchema _schema
          Definition of columns being written, if available.
        • _jpropContext

          protected JPropWriteContext _jpropContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        • _headerChecked

          protected boolean _headerChecked
        • _indentLength

          protected int _indentLength
      • Constructor Detail

        • JavaPropsGenerator

          public JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                                    int stdFeatures,
                                    com.fasterxml.jackson.core.ObjectCodec codec)
      • Method Detail

        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator useDefaultPrettyPrinter()
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getSchema

          public com.fasterxml.jackson.core.FormatSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteBinaryNatively

          public boolean canWriteBinaryNatively()
          Overrides:
          canWriteBinaryNatively in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public com.fasterxml.jackson.core.JsonStreamContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • writeFieldName

          public void writeFieldName(String name)
                              throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _appendFieldName

          protected abstract void _appendFieldName(StringBuilder path,
                                                   String name)
        • writeStartArray

          public void writeStartArray()
                               throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public void writeEndArray()
                             throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public void writeStartObject()
                                throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public void writeEndObject()
                              throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(com.fasterxml.jackson.core.SerializableString text)
                        throws IOException,
                               com.fasterxml.jackson.core.JsonGenerationException
          Overrides:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected void _verifyValueWrite(String typeMsg)
                                    throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _writeEscapedEntry

          protected abstract void _writeEscapedEntry(char[] text,
                                                     int offset,
                                                     int len)
                                              throws IOException
          Throws:
          IOException
        • _writeRaw

          protected abstract void _writeRaw(char[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.Builder.html ================================================ JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper.Builder

    • Enclosing class:
      JavaPropsMapper


      public static class JavaPropsMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<JavaPropsMapper,JavaPropsMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
      Since:
      2.10
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, accessorNaming, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, constructorDetector, deactivateDefaultTyping, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, serializationInclusion, serializerFactory, setDefaultTyping, streamFactory, subtypeResolver, typeFactory, visibility, visibility

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.html ================================================ JavaPropsMapper (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  JavaPropsMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected Properties _env() 
        static JavaPropsMapper.Builder builder() 
        static JavaPropsMapper.Builder builder(JavaPropsFactory streamFactory) 
        JavaPropsMapper copy() 
        JavaPropsFactory getFactory() 
        <T> T readEnvVariablesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readEnvVariablesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        com.fasterxml.jackson.core.Version version() 
        void writeValue(Map<?,?> target, Object value)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Map<?,?> target, Object value, JavaPropsSchema schema)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Properties targetProps, Object value)
        Deprecated. 
        void writeValue(Properties targetProps, Object value, JavaPropsSchema schema)
        Deprecated. 
        Map<String,String> writeValueAsMap(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Map<String,String> writeValueAsMap(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        Properties writeValueAsProperties(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Properties writeValueAsProperties(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
      • Constructor Detail

        • JavaPropsMapper

          public JavaPropsMapper()
      • Method Detail

        • copy

          public JavaPropsMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.databind.ObjectMapper
        • getFactory

          public JavaPropsFactory getFactory()
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 Class<T> valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 Class<T> valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              Class<T> valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              com.fasterxml.jackson.databind.JavaType valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          Class<T> valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          com.fasterxml.jackson.databind.JavaType valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • writeValue

          public void writeValue(Map<?,?> target,
                                 Object value)
                          throws IOException
          Convenience method that "writes" given `value` as properties in given Map object.
          Throws:
          IOException
          Since:
          2.10
        • writeValueAsProperties

          public Properties writeValueAsProperties(Object value)
                                            throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.9
        • writeValueAsMap

          public Map<String,String> writeValueAsMap(Object value)
                                             throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.10

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/JavaPropsParser.html ================================================ JavaPropsParser (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class JavaPropsParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.Feature, com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected byte[] _binaryValue 
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _closed 
        protected Object _inputSource
        Although most massaging is done later, caller may be interested in the ultimate source.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected JPropReadContext _readContext 
        protected JavaPropsSchema _schema
        Schema we use for parsing Properties into structure of some kind.
        protected Map<?,?> _sourceContent
        Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        protected static JavaPropsSchema DEFAULT_SCHEMA 
        protected static com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
        Properties capabilities slightly different from defaults, having untyped (text-only) scalars
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, int parserFeatures, Object inputSource, com.fasterxml.jackson.core.ObjectCodec codec, Map<?,?> sourceMap) 
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, Object inputSource, int parserFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Properties sourceProps)
        Deprecated. 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder() 
        protected void _handleEOF() 
        protected <T> T _noNumbers() 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        void close() 
        BigInteger getBigIntegerValue() 
        byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant) 
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        BigDecimal getDecimalValue() 
        double getDoubleValue() 
        Object getEmbeddedObject() 
        float getFloatValue() 
        Object getInputSource() 
        int getIntValue() 
        long getLongValue() 
        com.fasterxml.jackson.core.JsonParser.NumberType getNumberType() 
        Number getNumberValue() 
        com.fasterxml.jackson.core.JsonStreamContext getParsingContext() 
        com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities() 
        JavaPropsSchema getSchema() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        boolean hasTextCharacters() 
        boolean isClosed() 
        com.fasterxml.jackson.core.JsonToken nextToken() 
        void overrideCurrentName(String name) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        void setSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedNumberIntToken, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _reportUnsupportedOperation, canParseAsync, configure, currentName, disable, enable, finishToken, getBinaryValue, getBooleanValue, getByteValue, getCurrentValue, getFeatureMask, getFormatFeatures, getNonBlockingInputFeeder, getNumberValueExact, getObjectId, getShortValue, getTypeId, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, isNaN, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, overrideFormatFeatures, overrideStdFeatures, readBinaryValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setCurrentValue, setFeatureMask, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError
      • Field Detail

        • STREAM_READ_CAPABILITIES

          protected static final com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
          Properties capabilities slightly different from defaults, having untyped (text-only) scalars
          Since:
          2.12
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _inputSource

          protected final Object _inputSource
          Although most massaging is done later, caller may be interested in the ultimate source.
        • _sourceContent

          protected final Map<?,?> _sourceContent
          Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        • _schema

          protected JavaPropsSchema _schema
          Schema we use for parsing Properties into structure of some kind.
        • _closed

          protected boolean _closed
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
        • _binaryValue

          protected byte[] _binaryValue
      • Constructor Detail

        • JavaPropsParser

          @Deprecated
          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                             Object inputSource,
                                             int parserFeatures,
                                             com.fasterxml.jackson.core.ObjectCodec codec,
                                             Properties sourceProps)
          Deprecated. 
        • JavaPropsParser

          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                 int parserFeatures,
                                 Object inputSource,
                                 com.fasterxml.jackson.core.ObjectCodec codec,
                                 Map<?,?> sourceMap)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • getSchema

          public JavaPropsSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/JavaPropsSchema.html ================================================ JavaPropsSchema (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable


      public class JavaPropsSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Serializable
      Simple FormatSchema sub-type that defines details of things like:
      • How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
      • What indentation (if any) is used before key values, and between key/value
      • If and how are Array values inferred from property names
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_INDEX_MARKER

          protected static final Markers DEFAULT_INDEX_MARKER
        • _splitter

          protected transient JPropPathSplitter _splitter
          Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
        • _firstArrayOffset

          protected int _firstArrayOffset
          Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

          Default value is 1.

        • _pathSeparator

          protected String _pathSeparator
          Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
        • _indexMarker

          protected Markers _indexMarker
          Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

          Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

        • _parseSimpleIndexes

          protected boolean _parseSimpleIndexes
          Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

          Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on _indexMarker.

          Default value is true, "plain" index segments are supported.

        • _writeIndexUsingMarkers

          protected boolean _writeIndexUsingMarkers
          Whether array-element paths are written using start/end markers (see _indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
             startMarker index endMarker
          
          to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
        • _lineIndentation

          protected String _lineIndentation
          String prepended before key value, as possible indentation
        • _keyValueSeparator

          protected String _keyValueSeparator
          String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
        • _lineEnding

          protected String _lineEnding
          String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
        • _header

          protected String _header
          Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
        • _prefix

          protected String _prefix
          Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
          Since:
          2.10
      • Constructor Detail

        • JavaPropsSchema

          public JavaPropsSchema()
      • Method Detail

        • pathSplitter

          public JPropPathSplitter pathSplitter()
          Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.

          Note that instance is constructed lazily as needed, but reused afterwards for this instance (and for these specific settings).

        • withFirstArrayOffset

          public JavaPropsSchema withFirstArrayOffset(int v)
        • withPathSeparator

          public JavaPropsSchema withPathSeparator(String v)
          Mutant factory method for constructing a new instance with specified path separator; default being comma ("."). Note that setting separator to `null` or empty String will basically disable handling of nesting, similar to calling withoutPathSeparator().
        • withoutPathSeparator

          public JavaPropsSchema withoutPathSeparator()
          Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
        • withParseSimpleIndexes

          public JavaPropsSchema withParseSimpleIndexes(boolean v)
        • withWriteIndexUsingMarkers

          public JavaPropsSchema withWriteIndexUsingMarkers(boolean v)
        • withoutLineIndentation

          public JavaPropsSchema withoutLineIndentation()
          Since:
          2.8
        • withPrefix

          public JavaPropsSchema withPrefix(String v)
          Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
          Since:
          2.10
        • withHeader

          public JavaPropsSchema withHeader(String v)
          Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used. Note that caller must specify any and all linefeeds to use: generator will NOT modify header String contents in any way, and will not append a linefeed after contents (if any).
        • withoutHeader

          public JavaPropsSchema withoutHeader()
          Convenience method, functionally equivalent to:
             withHeader("")
          
          used to ensure that no header is prepended before actual property values are output.
          Since:
          2.8
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • firstArrayOffset

          public int firstArrayOffset()
        • header

          public String header()
        • indexMarker

          public Markers indexMarker()
        • lineEnding

          public String lineEnding()
        • lineIndentation

          public String lineIndentation()
        • keyValueSeparator

          public String keyValueSeparator()
        • parseSimpleIndexes

          public boolean parseSimpleIndexes()
        • pathSeparator

          public String pathSeparator()
        • prefix

          public String prefix()
          Since:
          2.10
        • writeIndexUsingMarkers

          public boolean writeIndexUsingMarkers()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.PackageVersion (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/impl/PropertiesBackedGenerator.html ================================================ PropertiesBackedGenerator (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class PropertiesBackedGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/impl/WriterBackedGenerator.html ================================================ WriterBackedGenerator (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class WriterBackedGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/PropertiesBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/WriterBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.12.0 API)

    com.fasterxml.jackson.dataformat.javaprop.impl

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl Class Hierarchy (Jackson-dataformat-Properties 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.impl

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/JPropEscapes.html ================================================ JPropEscapes (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropEscapes



    • public class JPropEscapes
      extends Object
      Container class for definitions of characters to escape.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ArrayContext.html ================================================ JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ArrayContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ArrayContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Array nodes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ObjectContext.html ================================================ JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ObjectContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ObjectContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Object nodes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.html ================================================ JPropReadContext (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
      • Field Detail

        • _parent

          protected final JPropReadContext _parent
          Parent cursor of this cursor, if any; null for root cursors.
        • _currentName

          protected String _currentName
          Current field name
        • _currentText

          protected String _currentText
        • _currentValue

          protected Object _currentValue
          Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
        • _nextNode

          protected JPropNode _nextNode
          We need to keep track of value nodes to construct further contexts.
        • _branchText

          protected String _branchText
          Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
        • _state

          protected int _state
      • Method Detail

        • getParent

          public final JPropReadContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • overrideCurrentName

          public void overrideCurrentName(String name)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • nextToken

          public abstract com.fasterxml.jackson.core.JsonToken nextToken()
        • nextContext

          public JPropReadContext nextContext()
          Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
        • getCurrentText

          public String getCurrentText()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/JPropWriteContext.html ================================================ JPropWriteContext (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext


    • public class JPropWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      • Field Detail

        • _parent

          protected final JPropWriteContext _parent
          Parent context for this context; null for root context.
        • _currentValue

          protected Object _currentValue
          Value that is being serialized and caused this context to be created; typically a POJO or container type.
        • _gotName

          protected boolean _gotName
          Marker used to indicate that we just received a name, and now expect a value
        • _currentName

          protected String _currentName
          Name of the field of which value is to be parsed; only used for OBJECT contexts
        • _basePathLength

          protected int _basePathLength
      • Constructor Detail

        • JPropWriteContext

          protected JPropWriteContext(int type,
                                      JPropWriteContext parent,
                                      int basePathLength)
      • Method Detail

        • createRootContext

          public static JPropWriteContext createRootContext(int basePathLength)
        • createChildArrayContext

          public JPropWriteContext createChildArrayContext(int basePathLength)
        • createChildObjectContext

          public JPropWriteContext createChildObjectContext(int basePathLength)
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()
        • getParent

          public final JPropWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • toString

          public final String toString()
          Overridden to provide developer JsonPointer representation of the context.
          Overrides:
          toString in class com.fasterxml.jackson.core.JsonStreamContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/Latin1Reader.html ================================================ Latin1Reader (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class Latin1Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class Latin1Reader
      extends Reader
      Optimized Reader that reads ISO-8859-1 encoded content from an input stream. The reason for custom implementation is that this allows recycling of underlying read buffer, which is important for small content.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ArrayContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ObjectContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/class-use/Latin1Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.12.0 API)

    com.fasterxml.jackson.dataformat.javaprop.io

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.io

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop.io Description

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io Class Hierarchy (Jackson-dataformat-Properties 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.io

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/io/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.io

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.12.0 API)

    com.fasterxml.jackson.dataformat.javaprop

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop

    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop Description

    Basic API types to use with this module:
    • JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators
    • JavaPropsGenerator is the matching JsonGenerator implementation to use
    • JavaPropsParser is the matching JsonParser implementation to use
    • JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties
    • JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop Class Hierarchy (Jackson-dataformat-Properties 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (implements com.fasterxml.jackson.core.FormatSchema, java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.javaprop.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/JPropNode.html ================================================ JPropNode (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNode



    • public class JPropNode
      extends Object
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values. Since either index- OR name-based access is to be supported (similar to, say, Javascript objects) -- but only one, not both -- storage is bit of a hybrid. In addition, branches may also have values. So, code does bit coercion as necessary, trying to maintain something consistent and usable at all times, without failure.
      • Field Detail

        • _value

          protected String _value
          Value for the path, for leaf nodes; usually null for branches. If both children and value exists, typically need to construct bogus value with empty String key.
        • _byName

          protected Map<String,JPropNode> _byName
          Child entries accessed with String property name, if any.
        • _hasContents

          protected boolean _hasContents
      • Constructor Detail

        • JPropNode

          public JPropNode()
      • Method Detail

        • addByIndex

          public JPropNode addByIndex(int index)
        • isLeaf

          public boolean isLeaf()
        • isArray

          public boolean isArray()
        • getValue

          public String getValue()
        • asRaw

          public Object asRaw()
          Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/JPropNodeBuilder.html ================================================ JPropNodeBuilder (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNodeBuilder

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder


    • public class JPropNodeBuilder
      extends Object

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.CharPathOnlySplitter.html ================================================ JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.CharPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.CharPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparatorChar

          protected final char _pathSeparatorChar
      • Constructor Detail

        • CharPathOnlySplitter

          public CharPathOnlySplitter(char sepChar,
                                      boolean useIndex)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.FullSplitter.html ================================================ JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.FullSplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.FullSplitter
      extends JPropPathSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
        • _indexFirstChar

          protected final int _indexFirstChar
        • _prefix

          protected final String _prefix
          Since:
          2.10

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.IndexOnlySplitter.html ================================================ JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.IndexOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.IndexOnlySplitter
      extends JPropPathSplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
      • Constructor Detail

        • IndexOnlySplitter

          public IndexOnlySplitter(boolean useSimpleIndex,
                                   Markers indexMarker)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.NonSplitting.html ================================================ JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.NonSplitting

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.NonSplitting
      extends JPropPathSplitter
      "No-op" implementation that does no splitting and simply adds entries as is.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.StringPathOnlySplitter.html ================================================ JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.StringPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.StringPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparator

          protected final String _pathSeparator
        • _pathSeparatorLength

          protected final int _pathSeparatorLength
      • Constructor Detail

        • StringPathOnlySplitter

          public StringPathOnlySplitter(String pathSeparator,
                                        boolean useIndex)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.html ================================================ JPropPathSplitter (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
      • Field Detail

        • _useSimpleIndex

          protected final boolean _useSimpleIndex
      • Constructor Detail

        • JPropPathSplitter

          protected JPropPathSplitter(boolean useSimpleIndex)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/Markers.html ================================================ Markers (Jackson-dataformat-Properties 2.12.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class Markers



    • public class Markers
      extends Object
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
      • Field Detail

        • _start

          protected final String _start
        • _end

          protected final String _end
      • Constructor Detail

      • Method Detail

        • create

          public static Markers create(String start,
                                       String end)
          Factory method for creating simple marker pair with given start and end markers. Note that both are needed; neither may be empty or null
        • getStart

          public String getStart()
        • getEnd

          public String getEnd()

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNode.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNode

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNodeBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.CharPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.FullSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.IndexOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.NonSplitting.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.StringPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/class-use/Markers.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.Markers (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.Markers

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.12.0 API)

    com.fasterxml.jackson.dataformat.javaprop.util

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.util

    Helper classes for dealing with property key to structured path conversion.

    See: Description

    • Class Summary 
      Class Description
      JPropNode
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
      JPropNodeBuilder  
      JPropPathSplitter
      Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
      JPropPathSplitter.CharPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      JPropPathSplitter.FullSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      JPropPathSplitter.IndexOnlySplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      JPropPathSplitter.NonSplitting
      "No-op" implementation that does no splitting and simply adds entries as is.
      JPropPathSplitter.StringPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      Markers
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").

    Package com.fasterxml.jackson.dataformat.javaprop.util Description

    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util Class Hierarchy (Jackson-dataformat-Properties 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/com/fasterxml/jackson/dataformat/javaprop/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.util

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-Properties 2.12.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-Properties 2.12.0 API)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/help-doc.html ================================================ API Help (Jackson-dataformat-Properties 2.12.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/index-all.html ================================================ Index (Jackson-dataformat-Properties 2.12.0 API)
    A B C D E F G H I J K L M N O P R S T U V W _ 

    A

    addByIndex(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    addByName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    appendDesc(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    appendKey(StringBuilder, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    appendValue(String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    arrayContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    ArrayContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    asRaw() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    B

    BOGUS_WRITE_CONTEXT - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Since our context object does NOT implement standard write context, need to do something like use a placeholder...
    build() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    build(JavaPropsSchema, Properties) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
    Deprecated.
    Since 2.10
    build(Map<?, ?>, JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Main factory method to use for constructing JavaPropsFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    builder(JavaPropsFactory) - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    Builder(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder
     

    C

    canHandleBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canWriteBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    CharPathOnlySplitter(char, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    CHARSET_ID_LATIN1 - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    com.fasterxml.jackson.dataformat.javaprop - package com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl - package com.fasterxml.jackson.dataformat.javaprop.impl
     
    com.fasterxml.jackson.dataformat.javaprop.io - package com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util - package com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    create(JPropNode) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    create(JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    create(String, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
    Factory method for creating simple marker pair with given start and end markers.
    createChildArrayContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createChildObjectContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createGenerator(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createGenerator(Map<?, ?>, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Method for constructing JsonGenerator for generating CBOR-encoded output.
    createParser(Map<?, ?>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow feeding a pre-parsed Properties instance as input.
    createParser(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createRootContext() - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createRootContext(int) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    D

    DEFAULT_INDEX_MARKER - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    E

    EMPTY - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    F

    firstArrayOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    FORMAT_NAME_JAVA_PROPERTIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    FullSplitter(String, boolean, Markers, JPropPathSplitter, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     

    G

    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentText() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEnd() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCharsCount() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    getStart() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getText() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    header() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    I

    indexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    IndexOnlySplitter(boolean, Markers) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    instance - Static variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    isLeaf() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    J

    JavaPropsFactory - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsFactory() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Constructors used by JavaPropsFactoryBuilder for instantiation.
    JavaPropsFactoryBuilder - Class in com.fasterxml.jackson.dataformat.javaprop
    TSFBuilder implementation for constructing JavaPropsFactory instances.
    JavaPropsFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsFactoryBuilder(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsGenerator - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsGenerator(IOContext, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    JavaPropsMapper - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsMapper() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper.Builder - Class in com.fasterxml.jackson.dataformat.javaprop
    Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
    JavaPropsParser - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsParser(IOContext, Object, int, ObjectCodec, Properties) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Deprecated.
    JavaPropsParser(IOContext, int, Object, ObjectCodec, Map<?, ?>) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    JavaPropsSchema - Class in com.fasterxml.jackson.dataformat.javaprop
    Simple FormatSchema sub-type that defines details of things like: How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
    JavaPropsSchema() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JavaPropsSchema(JavaPropsSchema) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JPropEscapes - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Container class for definitions of characters to escape.
    JPropEscapes() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    JPropNode - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
    JPropNode() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    JPropNodeBuilder - Class in com.fasterxml.jackson.dataformat.javaprop.util
     
    JPropNodeBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    JPropPathSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
    JPropPathSplitter(boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    JPropPathSplitter.CharPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropPathSplitter.FullSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Instance that supports both path separator and index markers (and possibly also "simple" indexes)
    JPropPathSplitter.IndexOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Special variant that does not use path separator, but does allow index indicator, at the end of path.
    JPropPathSplitter.NonSplitting - Class in com.fasterxml.jackson.dataformat.javaprop.util
    "No-op" implementation that does no splitting and simply adds entries as is.
    JPropPathSplitter.StringPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropReadContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Helper class used to keep track of traversal over contents of content tree expressed as JPropNodes.
    JPropReadContext(int, JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    JPropReadContext.ArrayContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Array nodes
    JPropReadContext.ObjectContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Object nodes
    JPropWriteContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
     
    JPropWriteContext(int, JPropWriteContext, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    K

    keyValueSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    L

    Latin1Reader - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Optimized Reader that reads ISO-8859-1 encoded content from an input stream.
    Latin1Reader(byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    Latin1Reader(IOContext, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    lineEnding() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    lineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    M

    Markers - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
    Markers(String, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     

    N

    nextContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    O

    objectContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    ObjectContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.javaprop
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    parseSimpleIndexes() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSplitter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.
    prefix() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    PropertiesBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    PropertiesBackedGenerator(IOContext, Map<?, ?>, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    PropertiesBackedGenerator(IOContext, Properties, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Deprecated.

    R

    read() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    readEnvVariablesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readEnvVariablesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    rebuild() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setValue(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
    Main access method for splitting key into one or more segments and using segmentation to add the String value as a node in its proper location.
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    STREAM_READ_CAPABILITIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Properties capabilities slightly different from defaults, having untyped (text-only) scalars
    StringPathOnlySplitter(String, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     

    T

    toString() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Overridden to provide developer JsonPointer representation of the context.
    truncatePath(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    V

    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     

    W

    withFirstArrayOffset(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withHeader(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used.
    withIndexMarker(Markers) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withKeyValueSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineEnding(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineIndentation(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Convenience method, functionally equivalent to:
    withoutIndexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutLineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutPathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
    withParseSimpleIndexes(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withPathSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance with specified path separator; default being comma (".").
    withPrefix(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
    withWriteIndexUsingMarkers(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeIndexUsingMarkers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(SerializableString) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    WriterBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    WriterBackedGenerator(IOContext, Writer, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeValue(Map<?, ?>, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Map<?, ?>, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Properties, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValue(Properties, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValueAsMap(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsMap(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.
    writeValueAsProperties(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsProperties(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.

    _

    _addSegment(JPropNode, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _asInt(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _basePath - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _basePathLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _branchText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
    _byIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries with integral number index, if any.
    _byName - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _child - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _content - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Underlying Properties that we will update with logical properties written out.
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
    Iterator over child values.
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Current field name
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Name of the field of which value is to be parsed; only used for OBJECT contexts
    _currentText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Value that is being serialized and caused this context to be created; typically a POJO or container type.
    _end - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _env() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    _firstArrayOffset - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Specifies index number used when writing the first array entry (which in Java has index of 0).
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _gotName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Marker used to indicate that we just received a name, and now expect a value
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _hasContents - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    _header - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional header to prepend before any other output: typically a comment section or so.
    _headerChecked - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indentLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indexFirstChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMarker - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Although most massaging is done later, caller may be interested in the ultimate source.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _jpropContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _keyValueSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character".
    _lastSegment(JPropNode, String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _lineEnding - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added after value, including at least one linefeed.
    _lineIndentation - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String prepended before key value, as possible indentation
    _loadProperties(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _loadProperties(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _nextNode - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    We need to keep track of value nodes to construct further contexts.
    _noNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Intermediate buffer in which contents are buffered before being written using WriterBackedGenerator._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Offset to index after the last valid index in WriterBackedGenerator._outputBuffer.
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Pointer to the next available location in WriterBackedGenerator._outputBuffer
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Parent cursor of this cursor, if any; null for root cursors.
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Parent context for this context; null for root context.
    _parseSimpleIndexes - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _pathSeparatorChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    _pathSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional prefix to strip and append to key names.
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _readContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Definition of columns being written, if available.
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Schema we use for parsing Properties into structure of some kind.
    _simpleSplitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _sourceContent - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
    _splitMore(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _splitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
    _start - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _state - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _useSimpleIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _value - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Value for the path, for leaf nodes; usually null for branches.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscaped(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscaped(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeIndexUsingMarkers - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
    _writeLinefeed() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    A B C D E F G H I J K L M N O P R S T U V W _ 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/index.html ================================================ Jackson-dataformat-Properties 2.12.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/properties/2.12/overview-frame.html ================================================ Overview List (Jackson-dataformat-Properties 2.12.0 API)

     

    ================================================ FILE: docs/javadoc/properties/2.12/overview-summary.html ================================================ Overview (Jackson-dataformat-Properties 2.12.0 API)

    Jackson-dataformat-Properties 2.12.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl  
    com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-Properties 2.12.0 API)

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/package-list ================================================ com.fasterxml.jackson.dataformat.javaprop com.fasterxml.jackson.dataformat.javaprop.impl com.fasterxml.jackson.dataformat.javaprop.io com.fasterxml.jackson.dataformat.javaprop.util ================================================ FILE: docs/javadoc/properties/2.12/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/properties/2.12/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-Properties 2.12.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.javaprop

      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _firstArrayOffset

            int _firstArrayOffset
            Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

            Default value is 1.

          • _pathSeparator

            String _pathSeparator
            Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
          • _indexMarker

            Markers _indexMarker
            Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

            Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

          • _parseSimpleIndexes

            boolean _parseSimpleIndexes
            Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

            Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on JavaPropsSchema._indexMarker.

            Default value is true, "plain" index segments are supported.

          • _writeIndexUsingMarkers

            boolean _writeIndexUsingMarkers
            Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
               startMarker index endMarker
            
            to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
          • _lineIndentation

            String _lineIndentation
            String prepended before key value, as possible indentation
          • _keyValueSeparator

            String _keyValueSeparator
            String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
          • _lineEnding

            String _lineEnding
            String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
          • _header

            String _header
            Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
          • _prefix

            String _prefix
            Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
            Since:
            2.10

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.12/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/properties/2.13/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-Properties 2.13.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.13/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-Properties 2.13.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactory.html ================================================ JavaPropsFactory (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

          com.fasterxml.jackson.core.JsonFactory.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected static String CHARSET_ID_LATIN1 
        static String FORMAT_NAME_JAVA_PROPERTIES 
        • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

          _byteSymbolCanonicalizer, _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _maximumNonEscapedChar, _objectCodec, _outputDecorator, _parserFeatures, _quoteChar, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, DEFAULT_QUOTE_CHAR, DEFAULT_ROOT_VALUE_SEPARATOR, FORMAT_NAME_JSON
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt, boolean recyclable) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Writer _createWriter(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(Reader r0, com.fasterxml.jackson.core.io.IOContext ctxt) 
        static JavaPropsFactoryBuilder builder()
        Main factory method to use for constructing JavaPropsFactory instances with different configuration.
        boolean canHandleBinaryNatively() 
        boolean canUseCharArrays() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        JavaPropsFactory copy() 
        JavaPropsGenerator createGenerator(Map<?,?> target, JavaPropsSchema schema)
        Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
        Method for constructing JsonGenerator for generating CBOR-encoded output.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) 
        JavaPropsGenerator createGenerator(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data) 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data, int offset, int len) 
        com.fasterxml.jackson.core.JsonParser createParser(File f) 
        com.fasterxml.jackson.core.JsonParser createParser(InputStream in) 
        JavaPropsParser createParser(Map<?,?> content)
        Convenience method to allow feeding a pre-parsed Properties instance as input.
        JavaPropsParser createParser(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(URL url) 
        String getFormatName() 
        com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
        Sub-classes need to override this method
        JavaPropsFactoryBuilder rebuild() 
        boolean requiresPropertyOrdering() 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.JsonFactory

          _checkInvalidCopy, _createContentReference, _createContentReference, _createContext, _createContext, _createNonBlockingContext, _createParser, _decorate, _decorate, _decorate, _decorate, _decorate, _getBufferRecycler, canParseAsync, configure, configure, configure, createGenerator, createGenerator, createGenerator, createGenerator, createJsonGenerator, createJsonGenerator, createJsonGenerator, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createNonBlockingByteArrayParser, createParser, createParser, createParser, createParser, createParser, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getCodec, getFormatGeneratorFeatures, getFormatParserFeatures, getFormatReadFeatureType, getFormatWriteFeatureType, getGeneratorFeatures, getInputDecorator, getOutputDecorator, getParserFeatures, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, readResolve, requiresCustomCodec, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparator
        • Methods inherited from class com.fasterxml.jackson.core.TokenStreamFactory

          _createDataOutputWrapper, _optimizedStreamFromURL
      • Constructor Detail

        • JavaPropsFactory

          public JavaPropsFactory()
        • JavaPropsFactory

          public JavaPropsFactory(com.fasterxml.jackson.core.ObjectCodec codec)
        • JavaPropsFactory

          protected JavaPropsFactory(JavaPropsFactory src,
                                     com.fasterxml.jackson.core.ObjectCodec oc)
      • Method Detail

        • rebuild

          public JavaPropsFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • copy

          public JavaPropsFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canHandleBinaryNatively

          public boolean canHandleBinaryNatively()
          Overrides:
          canHandleBinaryNatively in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public JavaPropsParser createParser(Map<?,?> content)
          Convenience method to allow feeding a pre-parsed Properties instance as input.
          Since:
          2.10
        • createGenerator

          public JavaPropsGenerator createGenerator(Map<?,?> target,
                                                    JavaPropsSchema schema)
          Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
          Since:
          2.10
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(File f)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(URL url)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(InputStream in)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data,
                                                                    int offset,
                                                                    int len)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
                                                                   throws IOException
          Method for constructing JsonGenerator for generating CBOR-encoded output.

          Since CBOR format always uses UTF-8 internally, no encoding need to be passed to this method.

          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt,
                                                                        boolean recyclable)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out,
                                                                              com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                       throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out,
                                                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                           throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactoryBuilder.html ================================================ JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactoryBuilder

      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.TSFBuilder

          _factoryFeatures, _inputDecorator, _outputDecorator, _streamReadFeatures, _streamWriteFeatures, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        JavaPropsFactory build() 
        • Methods inherited from class com.fasterxml.jackson.core.TSFBuilder

          _legacyDisable, _legacyDisable, _legacyEnable, _legacyEnable, _this, configure, configure, configure, configure, configure, disable, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, enable, factoryFeaturesMask, inputDecorator, inputDecorator, outputDecorator, outputDecorator, streamReadFeatures, streamWriteFeatures

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/JavaPropsGenerator.html ================================================ JavaPropsGenerator (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonGenerator

          com.fasterxml.jackson.core.JsonGenerator.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _basePath 
        protected boolean _headerChecked 
        protected int _indentLength 
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected JPropWriteContext _jpropContext
        Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        protected JavaPropsSchema _schema
        Definition of columns being written, if available.
        protected static com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
        Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        protected static int SHORT_WRITE 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter, DEFAULT_BINARY_WRITE_CAPABILITIES, DEFAULT_TEXTUAL_WRITE_CAPABILITIES, DEFAULT_WRITE_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int stdFeatures, com.fasterxml.jackson.core.ObjectCodec codec) 
      • Field Detail

        • BOGUS_WRITE_CONTEXT

          protected static final com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
          Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _schema

          protected JavaPropsSchema _schema
          Definition of columns being written, if available.
        • _jpropContext

          protected JPropWriteContext _jpropContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        • _headerChecked

          protected boolean _headerChecked
        • _indentLength

          protected int _indentLength
      • Constructor Detail

        • JavaPropsGenerator

          public JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                                    int stdFeatures,
                                    com.fasterxml.jackson.core.ObjectCodec codec)
      • Method Detail

        • currentValue

          public Object currentValue()
          Overrides:
          currentValue in class com.fasterxml.jackson.core.JsonGenerator
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • assignCurrentValue

          public void assignCurrentValue(Object v)
          Overrides:
          assignCurrentValue in class com.fasterxml.jackson.core.JsonGenerator
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator useDefaultPrettyPrinter()
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getSchema

          public com.fasterxml.jackson.core.FormatSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteBinaryNatively

          public boolean canWriteBinaryNatively()
          Overrides:
          canWriteBinaryNatively in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public com.fasterxml.jackson.core.JsonStreamContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • writeFieldName

          public void writeFieldName(String name)
                              throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _appendFieldName

          protected abstract void _appendFieldName(StringBuilder path,
                                                   String name)
        • writeStartArray

          public void writeStartArray()
                               throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public void writeEndArray()
                             throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public void writeStartObject()
                                throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public void writeEndObject()
                              throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(com.fasterxml.jackson.core.SerializableString text)
                        throws IOException,
                               com.fasterxml.jackson.core.JsonGenerationException
          Overrides:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected void _verifyValueWrite(String typeMsg)
                                    throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _writeEscapedEntry

          protected abstract void _writeEscapedEntry(char[] text,
                                                     int offset,
                                                     int len)
                                              throws IOException
          Throws:
          IOException
        • _writeRaw

          protected abstract void _writeRaw(char[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.Builder.html ================================================ JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper.Builder

    • Enclosing class:
      JavaPropsMapper


      public static class JavaPropsMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<JavaPropsMapper,JavaPropsMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
      Since:
      2.10
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, accessorNaming, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, constructorDetector, deactivateDefaultTyping, defaultAttributes, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, removeMixIn, serializationInclusion, serializerFactory, setDefaultTyping, streamFactory, subtypeResolver, typeFactory, visibility, visibility, withCoercionConfig, withCoercionConfig, withCoercionConfigDefaults, withConfigOverride

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.html ================================================ JavaPropsMapper (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  JavaPropsMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected Properties _env() 
        static JavaPropsMapper.Builder builder() 
        static JavaPropsMapper.Builder builder(JavaPropsFactory streamFactory) 
        JavaPropsMapper copy() 
        JavaPropsFactory getFactory() 
        <T> T readEnvVariablesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readEnvVariablesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        com.fasterxml.jackson.core.Version version() 
        void writeValue(Map<?,?> target, Object value)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Map<?,?> target, Object value, JavaPropsSchema schema)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Properties targetProps, Object value)
        Deprecated. 
        void writeValue(Properties targetProps, Object value, JavaPropsSchema schema)
        Deprecated. 
        Map<String,String> writeValueAsMap(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Map<String,String> writeValueAsMap(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        Properties writeValueAsProperties(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Properties writeValueAsProperties(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultAttributes, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, treeToValue, updateValue, valueToTree, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
        • Methods inherited from class com.fasterxml.jackson.core.ObjectCodec

          getJsonFactory
      • Constructor Detail

        • JavaPropsMapper

          public JavaPropsMapper()
      • Method Detail

        • copy

          public JavaPropsMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.databind.ObjectMapper
        • getFactory

          public JavaPropsFactory getFactory()
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 Class<T> valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 Class<T> valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              Class<T> valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              com.fasterxml.jackson.databind.JavaType valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          Class<T> valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          com.fasterxml.jackson.databind.JavaType valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • writeValue

          public void writeValue(Map<?,?> target,
                                 Object value)
                          throws IOException
          Convenience method that "writes" given `value` as properties in given Map object.
          Throws:
          IOException
          Since:
          2.10
        • writeValueAsProperties

          public Properties writeValueAsProperties(Object value)
                                            throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.9
        • writeValueAsMap

          public Map<String,String> writeValueAsMap(Object value)
                                             throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.10

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/JavaPropsParser.html ================================================ JavaPropsParser (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class JavaPropsParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.Feature, com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected byte[] _binaryValue 
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _closed 
        protected Object _inputSource
        Although most massaging is done later, caller may be interested in the ultimate source.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected JPropReadContext _readContext 
        protected JavaPropsSchema _schema
        Schema we use for parsing Properties into structure of some kind.
        protected Map<?,?> _sourceContent
        Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        protected static JavaPropsSchema DEFAULT_SCHEMA 
        protected static com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
        Properties capabilities slightly different from defaults, having untyped (text-only) scalars
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, int parserFeatures, Object inputSource, com.fasterxml.jackson.core.ObjectCodec codec, Map<?,?> sourceMap) 
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, Object inputSource, int parserFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Properties sourceProps)
        Deprecated. 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder() 
        protected void _handleEOF() 
        protected <T> T _noNumbers() 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        void close() 
        BigInteger getBigIntegerValue() 
        byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant) 
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        BigDecimal getDecimalValue() 
        double getDoubleValue() 
        Object getEmbeddedObject() 
        float getFloatValue() 
        Object getInputSource() 
        int getIntValue() 
        long getLongValue() 
        com.fasterxml.jackson.core.JsonParser.NumberType getNumberType() 
        Number getNumberValue() 
        com.fasterxml.jackson.core.JsonStreamContext getParsingContext() 
        com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities() 
        JavaPropsSchema getSchema() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        boolean hasTextCharacters() 
        boolean isClosed() 
        com.fasterxml.jackson.core.JsonToken nextToken() 
        void overrideCurrentName(String name) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        void setSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedNumberIntToken, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _reportUnsupportedOperation, assignCurrentValue, canParseAsync, configure, currentLocation, currentName, currentTokenLocation, currentValue, disable, enable, finishToken, getBinaryValue, getBooleanValue, getByteValue, getCurrentValue, getFeatureMask, getFormatFeatures, getNonBlockingInputFeeder, getNumberValueExact, getObjectId, getShortValue, getTypeId, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, isNaN, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, overrideFormatFeatures, overrideStdFeatures, readBinaryValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setCurrentValue, setFeatureMask, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError
      • Field Detail

        • STREAM_READ_CAPABILITIES

          protected static final com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
          Properties capabilities slightly different from defaults, having untyped (text-only) scalars
          Since:
          2.12
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _inputSource

          protected final Object _inputSource
          Although most massaging is done later, caller may be interested in the ultimate source.
        • _sourceContent

          protected final Map<?,?> _sourceContent
          Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        • _schema

          protected JavaPropsSchema _schema
          Schema we use for parsing Properties into structure of some kind.
        • _closed

          protected boolean _closed
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
        • _binaryValue

          protected byte[] _binaryValue
      • Constructor Detail

        • JavaPropsParser

          @Deprecated
          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                             Object inputSource,
                                             int parserFeatures,
                                             com.fasterxml.jackson.core.ObjectCodec codec,
                                             Properties sourceProps)
          Deprecated. 
        • JavaPropsParser

          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                 int parserFeatures,
                                 Object inputSource,
                                 com.fasterxml.jackson.core.ObjectCodec codec,
                                 Map<?,?> sourceMap)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • getSchema

          public JavaPropsSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/JavaPropsSchema.html ================================================ JavaPropsSchema (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable


      public class JavaPropsSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Serializable
      Simple FormatSchema sub-type that defines details of things like:
      • How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
      • What indentation (if any) is used before key values, and between key/value
      • If and how are Array values inferred from property names
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_INDEX_MARKER

          protected static final Markers DEFAULT_INDEX_MARKER
        • _splitter

          protected transient JPropPathSplitter _splitter
          Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
        • _firstArrayOffset

          protected int _firstArrayOffset
          Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

          Default value is 1.

        • _pathSeparator

          protected String _pathSeparator
          Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
        • _indexMarker

          protected Markers _indexMarker
          Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

          Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

        • _parseSimpleIndexes

          protected boolean _parseSimpleIndexes
          Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

          Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on _indexMarker.

          Default value is true, "plain" index segments are supported.

        • _writeIndexUsingMarkers

          protected boolean _writeIndexUsingMarkers
          Whether array-element paths are written using start/end markers (see _indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
             startMarker index endMarker
          
          to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
        • _lineIndentation

          protected String _lineIndentation
          String prepended before key value, as possible indentation
        • _keyValueSeparator

          protected String _keyValueSeparator
          String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
        • _lineEnding

          protected String _lineEnding
          String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
        • _header

          protected String _header
          Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
        • _prefix

          protected String _prefix
          Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
          Since:
          2.10
      • Constructor Detail

        • JavaPropsSchema

          public JavaPropsSchema()
      • Method Detail

        • pathSplitter

          public JPropPathSplitter pathSplitter()
          Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.

          Note that instance is constructed lazily as needed, but reused afterwards for this instance (and for these specific settings).

        • withFirstArrayOffset

          public JavaPropsSchema withFirstArrayOffset(int v)
        • withPathSeparator

          public JavaPropsSchema withPathSeparator(String v)
          Mutant factory method for constructing a new instance with specified path separator; default being comma ("."). Note that setting separator to `null` or empty String will basically disable handling of nesting, similar to calling withoutPathSeparator().
        • withoutPathSeparator

          public JavaPropsSchema withoutPathSeparator()
          Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
        • withParseSimpleIndexes

          public JavaPropsSchema withParseSimpleIndexes(boolean v)
        • withWriteIndexUsingMarkers

          public JavaPropsSchema withWriteIndexUsingMarkers(boolean v)
        • withoutLineIndentation

          public JavaPropsSchema withoutLineIndentation()
          Since:
          2.8
        • withPrefix

          public JavaPropsSchema withPrefix(String v)
          Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
          Since:
          2.10
        • withHeader

          public JavaPropsSchema withHeader(String v)
          Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used. Note that caller must specify any and all linefeeds to use: generator will NOT modify header String contents in any way, and will not append a linefeed after contents (if any).
        • withoutHeader

          public JavaPropsSchema withoutHeader()
          Convenience method, functionally equivalent to:
             withHeader("")
          
          used to ensure that no header is prepended before actual property values are output.
          Since:
          2.8
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • firstArrayOffset

          public int firstArrayOffset()
        • header

          public String header()
        • indexMarker

          public Markers indexMarker()
        • lineEnding

          public String lineEnding()
        • lineIndentation

          public String lineIndentation()
        • keyValueSeparator

          public String keyValueSeparator()
        • parseSimpleIndexes

          public boolean parseSimpleIndexes()
        • pathSeparator

          public String pathSeparator()
        • prefix

          public String prefix()
          Since:
          2.10
        • writeIndexUsingMarkers

          public boolean writeIndexUsingMarkers()

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.PackageVersion (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/impl/PropertiesBackedGenerator.html ================================================ PropertiesBackedGenerator (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class PropertiesBackedGenerator

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/impl/WriterBackedGenerator.html ================================================ WriterBackedGenerator (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class WriterBackedGenerator

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/PropertiesBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/WriterBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.13.0 API)

    com.fasterxml.jackson.dataformat.javaprop.impl

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl Class Hierarchy (Jackson-dataformat-Properties 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.impl

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/JPropEscapes.html ================================================ JPropEscapes (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropEscapes



    • public class JPropEscapes
      extends Object
      Container class for definitions of characters to escape.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ArrayContext.html ================================================ JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ArrayContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ArrayContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Array nodes

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ObjectContext.html ================================================ JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ObjectContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ObjectContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Object nodes

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.html ================================================ JPropReadContext (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
      • Field Detail

        • _parent

          protected final JPropReadContext _parent
          Parent cursor of this cursor, if any; null for root cursors.
        • _currentName

          protected String _currentName
          Current field name
        • _currentText

          protected String _currentText
        • _currentValue

          protected Object _currentValue
          Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
        • _nextNode

          protected JPropNode _nextNode
          We need to keep track of value nodes to construct further contexts.
        • _branchText

          protected String _branchText
          Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
        • _state

          protected int _state
      • Method Detail

        • getParent

          public final JPropReadContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • overrideCurrentName

          public void overrideCurrentName(String name)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • nextToken

          public abstract com.fasterxml.jackson.core.JsonToken nextToken()
        • nextContext

          public JPropReadContext nextContext()
          Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
        • getCurrentText

          public String getCurrentText()

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/JPropWriteContext.html ================================================ JPropWriteContext (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext


    • public class JPropWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      • Field Detail

        • _parent

          protected final JPropWriteContext _parent
          Parent context for this context; null for root context.
        • _currentValue

          protected Object _currentValue
          Value that is being serialized and caused this context to be created; typically a POJO or container type.
        • _gotName

          protected boolean _gotName
          Marker used to indicate that we just received a name, and now expect a value
        • _currentName

          protected String _currentName
          Name of the field of which value is to be parsed; only used for OBJECT contexts
        • _basePathLength

          protected int _basePathLength
      • Constructor Detail

        • JPropWriteContext

          protected JPropWriteContext(int type,
                                      JPropWriteContext parent,
                                      int basePathLength)
      • Method Detail

        • createRootContext

          public static JPropWriteContext createRootContext(int basePathLength)
        • createChildArrayContext

          public JPropWriteContext createChildArrayContext(int basePathLength)
        • createChildObjectContext

          public JPropWriteContext createChildObjectContext(int basePathLength)
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()
        • getParent

          public final JPropWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • toString

          public final String toString()
          Overridden to provide developer JsonPointer representation of the context.
          Overrides:
          toString in class com.fasterxml.jackson.core.JsonStreamContext

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/Latin1Reader.html ================================================ Latin1Reader (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class Latin1Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class Latin1Reader
      extends Reader
      Optimized Reader that reads ISO-8859-1 encoded content from an input stream. The reason for custom implementation is that this allows recycling of underlying read buffer, which is important for small content.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ArrayContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ObjectContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/class-use/Latin1Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.13.0 API)

    com.fasterxml.jackson.dataformat.javaprop.io

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.io

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop.io Description

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io Class Hierarchy (Jackson-dataformat-Properties 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.io

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/io/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.io

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.13.0 API)

    com.fasterxml.jackson.dataformat.javaprop

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop

    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop Description

    Basic API types to use with this module:
    • JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators
    • JavaPropsGenerator is the matching JsonGenerator implementation to use
    • JavaPropsParser is the matching JsonParser implementation to use
    • JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties
    • JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop Class Hierarchy (Jackson-dataformat-Properties 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (implements com.fasterxml.jackson.core.FormatSchema, java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.javaprop.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/JPropNode.html ================================================ JPropNode (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNode



    • public class JPropNode
      extends Object
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values. Since either index- OR name-based access is to be supported (similar to, say, Javascript objects) -- but only one, not both -- storage is bit of a hybrid. In addition, branches may also have values. So, code does bit coercion as necessary, trying to maintain something consistent and usable at all times, without failure.
      • Field Detail

        • _value

          protected String _value
          Value for the path, for leaf nodes; usually null for branches. If both children and value exists, typically need to construct bogus value with empty String key.
        • _byName

          protected Map<String,JPropNode> _byName
          Child entries accessed with String property name, if any.
        • _hasContents

          protected boolean _hasContents
      • Constructor Detail

        • JPropNode

          public JPropNode()
      • Method Detail

        • addByIndex

          public JPropNode addByIndex(int index)
        • isLeaf

          public boolean isLeaf()
        • isArray

          public boolean isArray()
        • getValue

          public String getValue()
        • asRaw

          public Object asRaw()
          Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/JPropNodeBuilder.html ================================================ JPropNodeBuilder (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNodeBuilder

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder


    • public class JPropNodeBuilder
      extends Object

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.CharPathOnlySplitter.html ================================================ JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.CharPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.CharPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparatorChar

          protected final char _pathSeparatorChar
      • Constructor Detail

        • CharPathOnlySplitter

          public CharPathOnlySplitter(char sepChar,
                                      boolean useIndex)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.FullSplitter.html ================================================ JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.FullSplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.FullSplitter
      extends JPropPathSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
        • _indexFirstChar

          protected final int _indexFirstChar
        • _prefix

          protected final String _prefix
          Since:
          2.10

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.IndexOnlySplitter.html ================================================ JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.IndexOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.IndexOnlySplitter
      extends JPropPathSplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
      • Constructor Detail

        • IndexOnlySplitter

          public IndexOnlySplitter(boolean useSimpleIndex,
                                   Markers indexMarker)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.NonSplitting.html ================================================ JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.NonSplitting

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.NonSplitting
      extends JPropPathSplitter
      "No-op" implementation that does no splitting and simply adds entries as is.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.StringPathOnlySplitter.html ================================================ JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.StringPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.StringPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparator

          protected final String _pathSeparator
        • _pathSeparatorLength

          protected final int _pathSeparatorLength
      • Constructor Detail

        • StringPathOnlySplitter

          public StringPathOnlySplitter(String pathSeparator,
                                        boolean useIndex)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.html ================================================ JPropPathSplitter (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
      • Field Detail

        • _useSimpleIndex

          protected final boolean _useSimpleIndex
      • Constructor Detail

        • JPropPathSplitter

          protected JPropPathSplitter(boolean useSimpleIndex)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/Markers.html ================================================ Markers (Jackson-dataformat-Properties 2.13.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class Markers



    • public class Markers
      extends Object
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
      • Field Detail

        • _start

          protected final String _start
        • _end

          protected final String _end
      • Constructor Detail

      • Method Detail

        • create

          public static Markers create(String start,
                                       String end)
          Factory method for creating simple marker pair with given start and end markers. Note that both are needed; neither may be empty or null
        • getStart

          public String getStart()
        • getEnd

          public String getEnd()

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNode.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNode

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNodeBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.CharPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.FullSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.IndexOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.NonSplitting.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.StringPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/class-use/Markers.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.Markers (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.Markers

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.13.0 API)

    com.fasterxml.jackson.dataformat.javaprop.util

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.util

    Helper classes for dealing with property key to structured path conversion.

    See: Description

    • Class Summary 
      Class Description
      JPropNode
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
      JPropNodeBuilder  
      JPropPathSplitter
      Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
      JPropPathSplitter.CharPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      JPropPathSplitter.FullSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      JPropPathSplitter.IndexOnlySplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      JPropPathSplitter.NonSplitting
      "No-op" implementation that does no splitting and simply adds entries as is.
      JPropPathSplitter.StringPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      Markers
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").

    Package com.fasterxml.jackson.dataformat.javaprop.util Description

    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util Class Hierarchy (Jackson-dataformat-Properties 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/com/fasterxml/jackson/dataformat/javaprop/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.util

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-Properties 2.13.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-Properties 2.13.0 API)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/help-doc.html ================================================ API Help (Jackson-dataformat-Properties 2.13.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/index-all.html ================================================ Index (Jackson-dataformat-Properties 2.13.0 API)
    A B C D E F G H I J K L M N O P R S T U V W _ 

    A

    addByIndex(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    addByName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    appendDesc(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    appendKey(StringBuilder, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    appendValue(String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    arrayContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    ArrayContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    asRaw() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.
    assignCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    B

    BOGUS_WRITE_CONTEXT - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Since our context object does NOT implement standard write context, need to do something like use a placeholder...
    build() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    build(JavaPropsSchema, Properties) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
    Deprecated.
    Since 2.10
    build(Map<?, ?>, JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Main factory method to use for constructing JavaPropsFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    builder(JavaPropsFactory) - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    Builder(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder
     

    C

    canHandleBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canWriteBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    CharPathOnlySplitter(char, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    CHARSET_ID_LATIN1 - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    com.fasterxml.jackson.dataformat.javaprop - package com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl - package com.fasterxml.jackson.dataformat.javaprop.impl
     
    com.fasterxml.jackson.dataformat.javaprop.io - package com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util - package com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    create(JPropNode) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    create(JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    create(String, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
    Factory method for creating simple marker pair with given start and end markers.
    createChildArrayContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createChildObjectContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createGenerator(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createGenerator(Map<?, ?>, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Method for constructing JsonGenerator for generating CBOR-encoded output.
    createParser(Map<?, ?>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow feeding a pre-parsed Properties instance as input.
    createParser(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createRootContext() - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createRootContext(int) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    currentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    D

    DEFAULT_INDEX_MARKER - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    E

    EMPTY - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    F

    firstArrayOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    FORMAT_NAME_JAVA_PROPERTIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    FullSplitter(String, boolean, Markers, JPropPathSplitter, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     

    G

    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentText() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEnd() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCharsCount() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    getStart() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getText() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    header() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    I

    indexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    IndexOnlySplitter(boolean, Markers) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    instance - Static variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    isLeaf() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    J

    JavaPropsFactory - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsFactory() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Constructors used by JavaPropsFactoryBuilder for instantiation.
    JavaPropsFactoryBuilder - Class in com.fasterxml.jackson.dataformat.javaprop
    TSFBuilder implementation for constructing JavaPropsFactory instances.
    JavaPropsFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsFactoryBuilder(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsGenerator - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsGenerator(IOContext, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    JavaPropsMapper - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsMapper() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper.Builder - Class in com.fasterxml.jackson.dataformat.javaprop
    Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
    JavaPropsParser - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsParser(IOContext, Object, int, ObjectCodec, Properties) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Deprecated.
    JavaPropsParser(IOContext, int, Object, ObjectCodec, Map<?, ?>) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    JavaPropsSchema - Class in com.fasterxml.jackson.dataformat.javaprop
    Simple FormatSchema sub-type that defines details of things like: How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
    JavaPropsSchema() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JavaPropsSchema(JavaPropsSchema) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JPropEscapes - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Container class for definitions of characters to escape.
    JPropEscapes() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    JPropNode - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
    JPropNode() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    JPropNodeBuilder - Class in com.fasterxml.jackson.dataformat.javaprop.util
     
    JPropNodeBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    JPropPathSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
    JPropPathSplitter(boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    JPropPathSplitter.CharPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropPathSplitter.FullSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Instance that supports both path separator and index markers (and possibly also "simple" indexes)
    JPropPathSplitter.IndexOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Special variant that does not use path separator, but does allow index indicator, at the end of path.
    JPropPathSplitter.NonSplitting - Class in com.fasterxml.jackson.dataformat.javaprop.util
    "No-op" implementation that does no splitting and simply adds entries as is.
    JPropPathSplitter.StringPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropReadContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Helper class used to keep track of traversal over contents of content tree expressed as JPropNodes.
    JPropReadContext(int, JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    JPropReadContext.ArrayContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Array nodes
    JPropReadContext.ObjectContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Object nodes
    JPropWriteContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
     
    JPropWriteContext(int, JPropWriteContext, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    K

    keyValueSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    L

    Latin1Reader - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Optimized Reader that reads ISO-8859-1 encoded content from an input stream.
    Latin1Reader(byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    Latin1Reader(IOContext, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    lineEnding() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    lineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    M

    Markers - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
    Markers(String, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     

    N

    nextContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    O

    objectContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    ObjectContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.javaprop
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    parseSimpleIndexes() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSplitter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.
    prefix() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    PropertiesBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    PropertiesBackedGenerator(IOContext, Map<?, ?>, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    PropertiesBackedGenerator(IOContext, Properties, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Deprecated.

    R

    read() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    readEnvVariablesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readEnvVariablesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    rebuild() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setValue(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
    Main access method for splitting key into one or more segments and using segmentation to add the String value as a node in its proper location.
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    STREAM_READ_CAPABILITIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Properties capabilities slightly different from defaults, having untyped (text-only) scalars
    StringPathOnlySplitter(String, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     

    T

    toString() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Overridden to provide developer JsonPointer representation of the context.
    truncatePath(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    V

    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     

    W

    withFirstArrayOffset(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withHeader(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used.
    withIndexMarker(Markers) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withKeyValueSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineEnding(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineIndentation(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Convenience method, functionally equivalent to:
    withoutIndexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutLineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutPathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
    withParseSimpleIndexes(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withPathSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance with specified path separator; default being comma (".").
    withPrefix(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
    withWriteIndexUsingMarkers(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeIndexUsingMarkers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(SerializableString) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    WriterBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    WriterBackedGenerator(IOContext, Writer, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeValue(Map<?, ?>, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Map<?, ?>, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Properties, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValue(Properties, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValueAsMap(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsMap(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.
    writeValueAsProperties(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsProperties(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.

    _

    _addSegment(JPropNode, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _asInt(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _basePath - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _basePathLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _branchText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
    _byIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries with integral number index, if any.
    _byName - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _child - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _content - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Underlying Properties that we will update with logical properties written out.
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
    Iterator over child values.
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Current field name
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Name of the field of which value is to be parsed; only used for OBJECT contexts
    _currentText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Value that is being serialized and caused this context to be created; typically a POJO or container type.
    _end - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _env() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    _firstArrayOffset - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Specifies index number used when writing the first array entry (which in Java has index of 0).
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _gotName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Marker used to indicate that we just received a name, and now expect a value
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _hasContents - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    _header - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional header to prepend before any other output: typically a comment section or so.
    _headerChecked - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indentLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indexFirstChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMarker - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Although most massaging is done later, caller may be interested in the ultimate source.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _jpropContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _keyValueSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character".
    _lastSegment(JPropNode, String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _lineEnding - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added after value, including at least one linefeed.
    _lineIndentation - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String prepended before key value, as possible indentation
    _loadProperties(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _loadProperties(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _nextNode - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    We need to keep track of value nodes to construct further contexts.
    _noNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Intermediate buffer in which contents are buffered before being written using WriterBackedGenerator._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Offset to index after the last valid index in WriterBackedGenerator._outputBuffer.
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Pointer to the next available location in WriterBackedGenerator._outputBuffer
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Parent cursor of this cursor, if any; null for root cursors.
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Parent context for this context; null for root context.
    _parseSimpleIndexes - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _pathSeparatorChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    _pathSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional prefix to strip and append to key names.
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _readContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Definition of columns being written, if available.
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Schema we use for parsing Properties into structure of some kind.
    _simpleSplitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _sourceContent - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
    _splitMore(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _splitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
    _start - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _state - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _useSimpleIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _value - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Value for the path, for leaf nodes; usually null for branches.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscaped(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscaped(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeIndexUsingMarkers - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
    _writeLinefeed() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    A B C D E F G H I J K L M N O P R S T U V W _ 

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/index.html ================================================ Jackson-dataformat-Properties 2.13.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/properties/2.13/overview-frame.html ================================================ Overview List (Jackson-dataformat-Properties 2.13.0 API)

     

    ================================================ FILE: docs/javadoc/properties/2.13/overview-summary.html ================================================ Overview (Jackson-dataformat-Properties 2.13.0 API)

    Jackson-dataformat-Properties 2.13.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl  
    com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-Properties 2.13.0 API)

    Class Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/package-list ================================================ com.fasterxml.jackson.dataformat.javaprop com.fasterxml.jackson.dataformat.javaprop.impl com.fasterxml.jackson.dataformat.javaprop.io com.fasterxml.jackson.dataformat.javaprop.util ================================================ FILE: docs/javadoc/properties/2.13/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/properties/2.13/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-Properties 2.13.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.javaprop

      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _firstArrayOffset

            int _firstArrayOffset
            Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

            Default value is 1.

          • _pathSeparator

            String _pathSeparator
            Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
          • _indexMarker

            Markers _indexMarker
            Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

            Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

          • _parseSimpleIndexes

            boolean _parseSimpleIndexes
            Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

            Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on JavaPropsSchema._indexMarker.

            Default value is true, "plain" index segments are supported.

          • _writeIndexUsingMarkers

            boolean _writeIndexUsingMarkers
            Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
               startMarker index endMarker
            
            to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
          • _lineIndentation

            String _lineIndentation
            String prepended before key value, as possible indentation
          • _keyValueSeparator

            String _keyValueSeparator
            String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
          • _lineEnding

            String _lineEnding
            String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
          • _header

            String _header
            Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
          • _prefix

            String _prefix
            Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
            Since:
            2.10

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.13/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/properties/2.14/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-Properties 2.14.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.14/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-Properties 2.14.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactory.html ================================================ JavaPropsFactory (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

          com.fasterxml.jackson.core.JsonFactory.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected static String CHARSET_ID_LATIN1 
        static String FORMAT_NAME_JAVA_PROPERTIES 
        • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

          _byteSymbolCanonicalizer, _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _maximumNonEscapedChar, _objectCodec, _outputDecorator, _parserFeatures, _quoteChar, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, DEFAULT_QUOTE_CHAR, DEFAULT_ROOT_VALUE_SEPARATOR, FORMAT_NAME_JSON
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt, boolean recyclable) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Writer _createWriter(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(Reader r0, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected <T> T _reportReadException(String msg, Exception rootCause) 
        static JavaPropsFactoryBuilder builder()
        Main factory method to use for constructing JavaPropsFactory instances with different configuration.
        boolean canHandleBinaryNatively() 
        boolean canUseCharArrays() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        JavaPropsFactory copy() 
        JavaPropsGenerator createGenerator(Map<?,?> target, JavaPropsSchema schema)
        Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
        Method for constructing JsonGenerator for generating CBOR-encoded output.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) 
        JavaPropsGenerator createGenerator(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data) 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data, int offset, int len) 
        com.fasterxml.jackson.core.JsonParser createParser(File f) 
        com.fasterxml.jackson.core.JsonParser createParser(InputStream in) 
        JavaPropsParser createParser(Map<?,?> content)
        Convenience method to allow feeding a pre-parsed Properties instance as input.
        JavaPropsParser createParser(Properties props)
        Deprecated. 
        com.fasterxml.jackson.core.JsonParser createParser(URL url) 
        String getFormatName() 
        com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
        Sub-classes need to override this method
        JavaPropsFactoryBuilder rebuild() 
        boolean requiresPropertyOrdering() 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.JsonFactory

          _checkInvalidCopy, _createContentReference, _createContentReference, _createContext, _createContext, _createNonBlockingContext, _createParser, _decorate, _decorate, _decorate, _decorate, _decorate, _getBufferRecycler, canParseAsync, configure, configure, configure, createGenerator, createGenerator, createGenerator, createGenerator, createJsonGenerator, createJsonGenerator, createJsonGenerator, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createNonBlockingByteArrayParser, createNonBlockingByteBufferParser, createParser, createParser, createParser, createParser, createParser, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getCodec, getFormatGeneratorFeatures, getFormatParserFeatures, getFormatReadFeatureType, getFormatWriteFeatureType, getGeneratorFeatures, getInputDecorator, getOutputDecorator, getParserFeatures, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, readResolve, requiresCustomCodec, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparator
        • Methods inherited from class com.fasterxml.jackson.core.TokenStreamFactory

          _checkRangeBoundsForByteArray, _checkRangeBoundsForCharArray, _createDataOutputWrapper, _fileInputStream, _fileOutputStream, _optimizedStreamFromURL, _reportRangeError
      • Constructor Detail

        • JavaPropsFactory

          public JavaPropsFactory()
        • JavaPropsFactory

          public JavaPropsFactory(com.fasterxml.jackson.core.ObjectCodec codec)
        • JavaPropsFactory

          protected JavaPropsFactory(JavaPropsFactory src,
                                     com.fasterxml.jackson.core.ObjectCodec oc)
      • Method Detail

        • rebuild

          public JavaPropsFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • copy

          public JavaPropsFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canHandleBinaryNatively

          public boolean canHandleBinaryNatively()
          Overrides:
          canHandleBinaryNatively in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public JavaPropsParser createParser(Map<?,?> content)
          Convenience method to allow feeding a pre-parsed Properties instance as input.
          Since:
          2.10
        • createGenerator

          public JavaPropsGenerator createGenerator(Map<?,?> target,
                                                    JavaPropsSchema schema)
          Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
          Since:
          2.10
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(File f)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(URL url)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(InputStream in)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data,
                                                                    int offset,
                                                                    int len)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
                                                                   throws IOException
          Method for constructing JsonGenerator for generating CBOR-encoded output.

          Since CBOR format always uses UTF-8 internally, no encoding need to be passed to this method.

          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt,
                                                                        boolean recyclable)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out,
                                                                              com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                       throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out,
                                                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                           throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactoryBuilder.html ================================================ JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactoryBuilder

      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.core.TSFBuilder

          _factoryFeatures, _inputDecorator, _outputDecorator, _streamReadFeatures, _streamWriteFeatures, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        JavaPropsFactory build() 
        • Methods inherited from class com.fasterxml.jackson.core.TSFBuilder

          _legacyDisable, _legacyDisable, _legacyEnable, _legacyEnable, _this, configure, configure, configure, configure, configure, disable, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, enable, factoryFeaturesMask, inputDecorator, inputDecorator, outputDecorator, outputDecorator, streamReadFeatures, streamWriteFeatures

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/JavaPropsGenerator.html ================================================ JavaPropsGenerator (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonGenerator

          com.fasterxml.jackson.core.JsonGenerator.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _basePath 
        protected boolean _headerChecked 
        protected int _indentLength 
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected JPropWriteContext _jpropContext
        Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        protected JavaPropsSchema _schema
        Definition of columns being written, if available.
        protected static com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
        Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        protected static int SHORT_WRITE 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter, DEFAULT_BINARY_WRITE_CAPABILITIES, DEFAULT_TEXTUAL_WRITE_CAPABILITIES, DEFAULT_WRITE_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int stdFeatures, com.fasterxml.jackson.core.ObjectCodec codec) 
      • Field Detail

        • BOGUS_WRITE_CONTEXT

          protected static final com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
          Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _schema

          protected JavaPropsSchema _schema
          Definition of columns being written, if available.
        • _jpropContext

          protected JPropWriteContext _jpropContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        • _headerChecked

          protected boolean _headerChecked
        • _indentLength

          protected int _indentLength
      • Constructor Detail

        • JavaPropsGenerator

          public JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                                    int stdFeatures,
                                    com.fasterxml.jackson.core.ObjectCodec codec)
      • Method Detail

        • currentValue

          public Object currentValue()
          Overrides:
          currentValue in class com.fasterxml.jackson.core.JsonGenerator
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • assignCurrentValue

          public void assignCurrentValue(Object v)
          Overrides:
          assignCurrentValue in class com.fasterxml.jackson.core.JsonGenerator
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator useDefaultPrettyPrinter()
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getSchema

          public com.fasterxml.jackson.core.FormatSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteBinaryNatively

          public boolean canWriteBinaryNatively()
          Overrides:
          canWriteBinaryNatively in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public com.fasterxml.jackson.core.JsonStreamContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • writeFieldName

          public void writeFieldName(String name)
                              throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _appendFieldName

          protected abstract void _appendFieldName(StringBuilder path,
                                                   String name)
        • writeStartArray

          public void writeStartArray()
                               throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public void writeEndArray()
                             throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public void writeStartObject()
                                throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public void writeEndObject()
                              throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                                      int offset,
                                      int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(com.fasterxml.jackson.core.SerializableString text)
                        throws IOException,
                               com.fasterxml.jackson.core.JsonGenerationException
          Overrides:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected void _verifyValueWrite(String typeMsg)
                                    throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _writeEscapedEntry

          protected abstract void _writeEscapedEntry(char[] text,
                                                     int offset,
                                                     int len)
                                              throws IOException
          Throws:
          IOException
        • _writeRaw

          protected abstract void _writeRaw(char[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.Builder.html ================================================ JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper.Builder

    • Enclosing class:
      JavaPropsMapper


      public static class JavaPropsMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<JavaPropsMapper,JavaPropsMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
      Since:
      2.10
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, accessorNaming, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, configure, constructorDetector, deactivateDefaultTyping, defaultAttributes, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, removeMixIn, serializationInclusion, serializerFactory, setDefaultTyping, streamFactory, subtypeResolver, typeFactory, visibility, visibility, withCoercionConfig, withCoercionConfig, withCoercionConfigDefaults, withConfigOverride

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.html ================================================ JavaPropsMapper (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  JavaPropsMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected Properties _env() 
        static JavaPropsMapper.Builder builder() 
        static JavaPropsMapper.Builder builder(JavaPropsFactory streamFactory) 
        JavaPropsMapper copy() 
        JavaPropsFactory getFactory() 
        <T> T readEnvVariablesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readEnvVariablesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readMapAs(Map<String,String> map, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        com.fasterxml.jackson.core.Version version() 
        void writeValue(Map<?,?> target, Object value)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Map<?,?> target, Object value, JavaPropsSchema schema)
        Convenience method that "writes" given `value` as properties in given Map object.
        void writeValue(Properties targetProps, Object value)
        Deprecated. 
        void writeValue(Properties targetProps, Object value, JavaPropsSchema schema)
        Deprecated. 
        Map<String,String> writeValueAsMap(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Map<String,String> writeValueAsMap(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        Properties writeValueAsProperties(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Properties writeValueAsProperties(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, copyWith, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultAttributes, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, treeToValue, updateValue, valueToTree, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
        • Methods inherited from class com.fasterxml.jackson.core.ObjectCodec

          getJsonFactory
      • Constructor Detail

        • JavaPropsMapper

          public JavaPropsMapper()
      • Method Detail

        • copy

          public JavaPropsMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.databind.ObjectMapper
        • getFactory

          public JavaPropsFactory getFactory()
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        JavaPropsSchema schema,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        Class<T> valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                                        com.fasterxml.jackson.databind.JavaType valueType)
                                 throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 Class<T> valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 JavaPropsSchema schema,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 Class<T> valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readMapAs

          public <T> T readMapAs(Map<String,String> map,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                          throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.10
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              Class<T> valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                              com.fasterxml.jackson.databind.JavaType valueType)
                                       throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          Class<T> valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                          com.fasterxml.jackson.databind.JavaType valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • writeValue

          public void writeValue(Map<?,?> target,
                                 Object value)
                          throws IOException
          Convenience method that "writes" given `value` as properties in given Map object.
          Throws:
          IOException
          Since:
          2.10
        • writeValueAsProperties

          public Properties writeValueAsProperties(Object value)
                                            throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.9
        • writeValueAsMap

          public Map<String,String> writeValueAsMap(Object value)
                                             throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.10

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/JavaPropsParser.html ================================================ JavaPropsParser (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class JavaPropsParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.Feature, com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected byte[] _binaryValue 
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _closed 
        protected Object _inputSource
        Although most massaging is done later, caller may be interested in the ultimate source.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected JPropReadContext _readContext 
        protected JavaPropsSchema _schema
        Schema we use for parsing Properties into structure of some kind.
        protected Map<?,?> _sourceContent
        Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        protected static JavaPropsSchema DEFAULT_SCHEMA 
        protected static com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
        Properties capabilities slightly different from defaults, having untyped (text-only) scalars
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, int parserFeatures, Object inputSource, com.fasterxml.jackson.core.ObjectCodec codec, Map<?,?> sourceMap) 
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, Object inputSource, int parserFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Properties sourceProps)
        Deprecated. 
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder() 
        protected void _handleEOF() 
        protected <T> T _noNumbers() 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        void close() 
        BigInteger getBigIntegerValue() 
        byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant) 
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        BigDecimal getDecimalValue() 
        double getDoubleValue() 
        Object getEmbeddedObject() 
        float getFloatValue() 
        Object getInputSource() 
        int getIntValue() 
        long getLongValue() 
        com.fasterxml.jackson.core.JsonParser.NumberType getNumberType() 
        Number getNumberValue() 
        com.fasterxml.jackson.core.JsonStreamContext getParsingContext() 
        com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities() 
        JavaPropsSchema getSchema() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        boolean hasTextCharacters() 
        boolean isClosed() 
        com.fasterxml.jackson.core.JsonToken nextToken() 
        void overrideCurrentName(String name) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        void setSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _reportUnexpectedNumberChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedNumberIntToken, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _reportUnsupportedOperation, assignCurrentValue, canParseAsync, configure, currentLocation, currentName, currentTokenLocation, currentValue, disable, enable, finishToken, getBinaryValue, getBooleanValue, getByteValue, getCurrentValue, getFeatureMask, getFormatFeatures, getNonBlockingInputFeeder, getNumberValueExact, getObjectId, getShortValue, getTypeId, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, isNaN, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, overrideFormatFeatures, overrideStdFeatures, readBinaryValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setCurrentValue, setFeatureMask, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError
      • Field Detail

        • STREAM_READ_CAPABILITIES

          protected static final com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> STREAM_READ_CAPABILITIES
          Properties capabilities slightly different from defaults, having untyped (text-only) scalars
          Since:
          2.12
        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _inputSource

          protected final Object _inputSource
          Although most massaging is done later, caller may be interested in the ultimate source.
        • _sourceContent

          protected final Map<?,?> _sourceContent
          Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
        • _schema

          protected JavaPropsSchema _schema
          Schema we use for parsing Properties into structure of some kind.
        • _closed

          protected boolean _closed
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
        • _binaryValue

          protected byte[] _binaryValue
      • Constructor Detail

        • JavaPropsParser

          @Deprecated
          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                             Object inputSource,
                                             int parserFeatures,
                                             com.fasterxml.jackson.core.ObjectCodec codec,
                                             Properties sourceProps)
          Deprecated. 
        • JavaPropsParser

          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                 int parserFeatures,
                                 Object inputSource,
                                 com.fasterxml.jackson.core.ObjectCodec codec,
                                 Map<?,?> sourceMap)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • getSchema

          public JavaPropsSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/JavaPropsSchema.html ================================================ JavaPropsSchema (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable


      public class JavaPropsSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Serializable
      Simple FormatSchema sub-type that defines details of things like:
      • How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
      • What indentation (if any) is used before key values, and between key/value
      • If and how are Array values inferred from property names
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_INDEX_MARKER

          protected static final Markers DEFAULT_INDEX_MARKER
        • _splitter

          protected transient JPropPathSplitter _splitter
          Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
        • _firstArrayOffset

          protected int _firstArrayOffset
          Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

          Default value is 1.

        • _pathSeparator

          protected String _pathSeparator
          Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
        • _pathSeparatorEscapeChar

          protected char _pathSeparatorEscapeChar
          Default escape character to use for single character path separators , enabling the pathSeparator to be included in a segment. Note that this is only used if the path separator is a single character. The default value is NULL ('\0') which effectively disables escape processing. The escape character is only used for escaping either the pathSeparator character or a sequence of escape characters immediately prior to the pathSeparator. i.e., if the pathSeparator is "." and the escape char is '#' then "a#.b" produces a segment called "a.b", but "a##.b" produces a segment called "a#" with a child called "b" and "a###.b" produces a segment called "a#.b". Finally, "a#b" produces a segment called "a#b" - the escape processing is only used immediately prior to the path separator. Any escape character may be used. Backslash ('\\') is the most obvious candidate but be aware that the JDK Properties loader has its own rules for escape processing (documented in the Javadoc for Properties.load ) that will remove ALL duplicated backslash characters (and also carry out other escape handling) before the JavaPropsMapper gets to see them.
          Since:
          2.14
        • _indexMarker

          protected Markers _indexMarker
          Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

          Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

        • _parseSimpleIndexes

          protected boolean _parseSimpleIndexes
          Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

          Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on _indexMarker.

          Default value is true, "plain" index segments are supported.

        • _writeIndexUsingMarkers

          protected boolean _writeIndexUsingMarkers
          Whether array-element paths are written using start/end markers (see _indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
             startMarker index endMarker
          
          to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
        • _lineIndentation

          protected String _lineIndentation
          String prepended before key value, as possible indentation
        • _keyValueSeparator

          protected String _keyValueSeparator
          String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
        • _lineEnding

          protected String _lineEnding
          String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
        • _header

          protected String _header
          Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
        • _prefix

          protected String _prefix
          Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
          Since:
          2.10
      • Constructor Detail

        • JavaPropsSchema

          public JavaPropsSchema()
      • Method Detail

        • pathSplitter

          public JPropPathSplitter pathSplitter()
          Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.

          Note that instance is constructed lazily as needed, but reused afterwards for this instance (and for these specific settings).

        • withFirstArrayOffset

          public JavaPropsSchema withFirstArrayOffset(int v)
        • withPathSeparator

          public JavaPropsSchema withPathSeparator(String v)
          Mutant factory method for constructing a new instance with specified path separator; default being comma ("."). Note that setting separator to `null` or empty String will basically disable handling of nesting, similar to calling withoutPathSeparator().
        • withPathSeparatorEscapeChar

          public JavaPropsSchema withPathSeparatorEscapeChar(char v)
          Mutant factory method for constructing a new instance with a different escape character to use for single character path separators , enabling the pathSeparator to be included in a segment. Note that this is only used if the path separator is a single character. The default value is NULL ('\0') which effectively disables escape processing. The escape character is only used for escaping either the pathSeparator character or a sequence of escape characters immediately prior to the pathSeparator. i.e., if the pathSeparator is "." and the escape char is '#' then "a#.b" produces a segment called "a.b", but "a##.b" produces a segment called "a#" with a child called "b" and "a###.b" produces a segment called "a#.b". Finally, "a#b" produces a segment called "a#b" - the escape processing is only used immediately prior to the path separator. Any escape character may be used. Backslash ('\\') is the most obvious candidate but be aware that the JDK Properties loader has its own rules for escape processing (documented in the Javadoc for Properties.load ) that will remove ALL duplicated backslash characters (and also carry out other escape handling) before the JavaPropsMapper gets to see them.
          Since:
          2.14
        • withoutPathSeparator

          public JavaPropsSchema withoutPathSeparator()
          Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
        • withParseSimpleIndexes

          public JavaPropsSchema withParseSimpleIndexes(boolean v)
        • withWriteIndexUsingMarkers

          public JavaPropsSchema withWriteIndexUsingMarkers(boolean v)
        • withoutLineIndentation

          public JavaPropsSchema withoutLineIndentation()
          Since:
          2.8
        • withPrefix

          public JavaPropsSchema withPrefix(String v)
          Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
          Since:
          2.10
        • withHeader

          public JavaPropsSchema withHeader(String v)
          Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used. Note that caller must specify any and all linefeeds to use: generator will NOT modify header String contents in any way, and will not append a linefeed after contents (if any).
        • withoutHeader

          public JavaPropsSchema withoutHeader()
          Convenience method, functionally equivalent to:
             withHeader("")
          
          used to ensure that no header is prepended before actual property values are output.
          Since:
          2.8
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • firstArrayOffset

          public int firstArrayOffset()
        • header

          public String header()
        • indexMarker

          public Markers indexMarker()
        • lineEnding

          public String lineEnding()
        • lineIndentation

          public String lineIndentation()
        • keyValueSeparator

          public String keyValueSeparator()
        • parseSimpleIndexes

          public boolean parseSimpleIndexes()
        • pathSeparator

          public String pathSeparator()
        • pathSeparatorEscapeChar

          public char pathSeparatorEscapeChar()
          Since:
          2.14
        • prefix

          public String prefix()
          Since:
          2.10
        • writeIndexUsingMarkers

          public boolean writeIndexUsingMarkers()

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.PackageVersion (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/impl/PropertiesBackedGenerator.html ================================================ PropertiesBackedGenerator (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class PropertiesBackedGenerator

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/impl/WriterBackedGenerator.html ================================================ WriterBackedGenerator (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class WriterBackedGenerator

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/PropertiesBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/WriterBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.14.0 API)

    com.fasterxml.jackson.dataformat.javaprop.impl

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl Class Hierarchy (Jackson-dataformat-Properties 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.impl

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/JPropEscapes.html ================================================ JPropEscapes (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropEscapes



    • public class JPropEscapes
      extends Object
      Container class for definitions of characters to escape.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ArrayContext.html ================================================ JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ArrayContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ArrayContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Array nodes

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ObjectContext.html ================================================ JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ObjectContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ObjectContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Object nodes

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.html ================================================ JPropReadContext (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
      • Field Detail

        • _parent

          protected final JPropReadContext _parent
          Parent cursor of this cursor, if any; null for root cursors.
        • _currentName

          protected String _currentName
          Current field name
        • _currentText

          protected String _currentText
        • _currentValue

          protected Object _currentValue
          Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
        • _nextNode

          protected JPropNode _nextNode
          We need to keep track of value nodes to construct further contexts.
        • _branchText

          protected String _branchText
          Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
        • _state

          protected int _state
      • Method Detail

        • getParent

          public final JPropReadContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • overrideCurrentName

          public void overrideCurrentName(String name)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • nextToken

          public abstract com.fasterxml.jackson.core.JsonToken nextToken()
        • nextContext

          public JPropReadContext nextContext()
          Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
        • getCurrentText

          public String getCurrentText()

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/JPropWriteContext.html ================================================ JPropWriteContext (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext


    • public class JPropWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      • Field Detail

        • _parent

          protected final JPropWriteContext _parent
          Parent context for this context; null for root context.
        • _currentValue

          protected Object _currentValue
          Value that is being serialized and caused this context to be created; typically a POJO or container type.
        • _gotName

          protected boolean _gotName
          Marker used to indicate that we just received a name, and now expect a value
        • _currentName

          protected String _currentName
          Name of the field of which value is to be parsed; only used for OBJECT contexts
        • _basePathLength

          protected int _basePathLength
      • Constructor Detail

        • JPropWriteContext

          protected JPropWriteContext(int type,
                                      JPropWriteContext parent,
                                      int basePathLength)
      • Method Detail

        • createRootContext

          public static JPropWriteContext createRootContext(int basePathLength)
        • createChildArrayContext

          public JPropWriteContext createChildArrayContext(int basePathLength)
        • createChildObjectContext

          public JPropWriteContext createChildObjectContext(int basePathLength)
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()
        • getParent

          public final JPropWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • toString

          public final String toString()
          Overridden to provide developer JsonPointer representation of the context.
          Overrides:
          toString in class com.fasterxml.jackson.core.JsonStreamContext

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/Latin1Reader.html ================================================ Latin1Reader (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class Latin1Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class Latin1Reader
      extends Reader
      Optimized Reader that reads ISO-8859-1 encoded content from an input stream. The reason for custom implementation is that this allows recycling of underlying read buffer, which is important for small content.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ArrayContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ObjectContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/class-use/Latin1Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.14.0 API)

    com.fasterxml.jackson.dataformat.javaprop.io

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.io

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop.io Description

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io Class Hierarchy (Jackson-dataformat-Properties 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.io

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/io/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.io

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.14.0 API)

    com.fasterxml.jackson.dataformat.javaprop

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop

    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop Description

    Basic API types to use with this module:
    • JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators
    • JavaPropsGenerator is the matching JsonGenerator implementation to use
    • JavaPropsParser is the matching JsonParser implementation to use
    • JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties
    • JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop Class Hierarchy (Jackson-dataformat-Properties 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (implements com.fasterxml.jackson.core.FormatSchema, java.io.Serializable)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.javaprop.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/JPropNode.html ================================================ JPropNode (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNode



    • public class JPropNode
      extends Object
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values. Since either index- OR name-based access is to be supported (similar to, say, Javascript objects) -- but only one, not both -- storage is bit of a hybrid. In addition, branches may also have values. So, code does bit coercion as necessary, trying to maintain something consistent and usable at all times, without failure.
      • Field Detail

        • _value

          protected String _value
          Value for the path, for leaf nodes; usually null for branches. If both children and value exists, typically need to construct bogus value with empty String key.
        • _byName

          protected Map<String,JPropNode> _byName
          Child entries accessed with String property name, if any.
        • _hasContents

          protected boolean _hasContents
      • Constructor Detail

        • JPropNode

          public JPropNode()
      • Method Detail

        • addByIndex

          public JPropNode addByIndex(int index)
        • isLeaf

          public boolean isLeaf()
        • isArray

          public boolean isArray()
        • getValue

          public String getValue()
        • asRaw

          public Object asRaw()
          Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/JPropNodeBuilder.html ================================================ JPropNodeBuilder (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNodeBuilder

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder


    • public class JPropNodeBuilder
      extends Object

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.CharPathOnlySplitter.html ================================================ JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.CharPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.CharPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparatorChar

          protected final char _pathSeparatorChar
        • _pathSeparatorEscapeChar

          protected final char _pathSeparatorEscapeChar
      • Constructor Detail

        • CharPathOnlySplitter

          public CharPathOnlySplitter(char sepChar,
                                      char pathSeparatorEscapeChar,
                                      boolean useIndex)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.FullSplitter.html ================================================ JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.FullSplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.FullSplitter
      extends JPropPathSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
        • _indexFirstChar

          protected final int _indexFirstChar
        • _prefix

          protected final String _prefix
          Since:
          2.10

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.IndexOnlySplitter.html ================================================ JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.IndexOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.IndexOnlySplitter
      extends JPropPathSplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
      • Constructor Detail

        • IndexOnlySplitter

          public IndexOnlySplitter(boolean useSimpleIndex,
                                   Markers indexMarker)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.NonSplitting.html ================================================ JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.NonSplitting

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.NonSplitting
      extends JPropPathSplitter
      "No-op" implementation that does no splitting and simply adds entries as is.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.StringPathOnlySplitter.html ================================================ JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.StringPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.StringPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparator

          protected final String _pathSeparator
        • _pathSeparatorLength

          protected final int _pathSeparatorLength
      • Constructor Detail

        • StringPathOnlySplitter

          public StringPathOnlySplitter(String pathSeparator,
                                        boolean useIndex)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.html ================================================ JPropPathSplitter (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
      • Field Detail

        • _useSimpleIndex

          protected final boolean _useSimpleIndex
      • Constructor Detail

        • JPropPathSplitter

          protected JPropPathSplitter(boolean useSimpleIndex)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/Markers.html ================================================ Markers (Jackson-dataformat-Properties 2.14.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class Markers



    • public class Markers
      extends Object
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
      • Field Detail

        • _start

          protected final String _start
        • _end

          protected final String _end
      • Constructor Detail

      • Method Detail

        • create

          public static Markers create(String start,
                                       String end)
          Factory method for creating simple marker pair with given start and end markers. Note that both are needed; neither may be empty or null
        • getStart

          public String getStart()
        • getEnd

          public String getEnd()

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNode.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNode

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNodeBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.CharPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.FullSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.IndexOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.NonSplitting.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.StringPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/class-use/Markers.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.Markers (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.Markers

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.14.0 API)

    com.fasterxml.jackson.dataformat.javaprop.util

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.util

    Helper classes for dealing with property key to structured path conversion.

    See: Description

    • Class Summary 
      Class Description
      JPropNode
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
      JPropNodeBuilder  
      JPropPathSplitter
      Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
      JPropPathSplitter.CharPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      JPropPathSplitter.FullSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      JPropPathSplitter.IndexOnlySplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      JPropPathSplitter.NonSplitting
      "No-op" implementation that does no splitting and simply adds entries as is.
      JPropPathSplitter.StringPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      Markers
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").

    Package com.fasterxml.jackson.dataformat.javaprop.util Description

    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util Class Hierarchy (Jackson-dataformat-Properties 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/com/fasterxml/jackson/dataformat/javaprop/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.util

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-Properties 2.14.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-Properties 2.14.0 API)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/help-doc.html ================================================ API Help (Jackson-dataformat-Properties 2.14.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/index-all.html ================================================ Index (Jackson-dataformat-Properties 2.14.0 API)
    A B C D E F G H I J K L M N O P R S T U V W _ 

    A

    addByIndex(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    addByName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    appendDesc(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    appendKey(StringBuilder, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    appendValue(String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    arrayContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    ArrayContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    asRaw() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.
    assignCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    B

    BOGUS_WRITE_CONTEXT - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Since our context object does NOT implement standard write context, need to do something like use a placeholder...
    build() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    build(JavaPropsSchema, Properties) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
    Deprecated.
    Since 2.10
    build(Map<?, ?>, JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Main factory method to use for constructing JavaPropsFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    builder(JavaPropsFactory) - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    Builder(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper.Builder
     

    C

    canHandleBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canWriteBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    CharPathOnlySplitter(char, char, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    CHARSET_ID_LATIN1 - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    com.fasterxml.jackson.dataformat.javaprop - package com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl - package com.fasterxml.jackson.dataformat.javaprop.impl
     
    com.fasterxml.jackson.dataformat.javaprop.io - package com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util - package com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    create(JPropNode) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    create(JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    create(String, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
    Factory method for creating simple marker pair with given start and end markers.
    createChildArrayContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createChildObjectContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createGenerator(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createGenerator(Map<?, ?>, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow using a pre-constructed Map instance as output target, so that serialized property values are added.
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Method for constructing JsonGenerator for generating CBOR-encoded output.
    createParser(Map<?, ?>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow feeding a pre-parsed Properties instance as input.
    createParser(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Deprecated.
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createRootContext() - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createRootContext(int) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    currentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    D

    DEFAULT_INDEX_MARKER - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    E

    EMPTY - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    F

    firstArrayOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    FORMAT_NAME_JAVA_PROPERTIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    FullSplitter(String, boolean, Markers, JPropPathSplitter, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     

    G

    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentText() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEnd() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCharsCount() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    getStart() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getText() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    header() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    I

    indexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    IndexOnlySplitter(boolean, Markers) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    instance - Static variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    isLeaf() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    J

    JavaPropsFactory - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsFactory() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Constructors used by JavaPropsFactoryBuilder for instantiation.
    JavaPropsFactoryBuilder - Class in com.fasterxml.jackson.dataformat.javaprop
    TSFBuilder implementation for constructing JavaPropsFactory instances.
    JavaPropsFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsFactoryBuilder(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactoryBuilder
     
    JavaPropsGenerator - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsGenerator(IOContext, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    JavaPropsMapper - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsMapper() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper.Builder - Class in com.fasterxml.jackson.dataformat.javaprop
    Base implementation for "Vanilla" ObjectMapper, used with Java Properties backend.
    JavaPropsParser - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsParser(IOContext, Object, int, ObjectCodec, Properties) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Deprecated.
    JavaPropsParser(IOContext, int, Object, ObjectCodec, Map<?, ?>) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    JavaPropsSchema - Class in com.fasterxml.jackson.dataformat.javaprop
    Simple FormatSchema sub-type that defines details of things like: How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
    JavaPropsSchema() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JavaPropsSchema(JavaPropsSchema) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JPropEscapes - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Container class for definitions of characters to escape.
    JPropEscapes() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    JPropNode - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
    JPropNode() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    JPropNodeBuilder - Class in com.fasterxml.jackson.dataformat.javaprop.util
     
    JPropNodeBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    JPropPathSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
    JPropPathSplitter(boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    JPropPathSplitter.CharPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropPathSplitter.FullSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Instance that supports both path separator and index markers (and possibly also "simple" indexes)
    JPropPathSplitter.IndexOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Special variant that does not use path separator, but does allow index indicator, at the end of path.
    JPropPathSplitter.NonSplitting - Class in com.fasterxml.jackson.dataformat.javaprop.util
    "No-op" implementation that does no splitting and simply adds entries as is.
    JPropPathSplitter.StringPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropReadContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Helper class used to keep track of traversal over contents of content tree expressed as JPropNodes.
    JPropReadContext(int, JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    JPropReadContext.ArrayContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Array nodes
    JPropReadContext.ObjectContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Object nodes
    JPropWriteContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
     
    JPropWriteContext(int, JPropWriteContext, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    K

    keyValueSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    L

    Latin1Reader - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Optimized Reader that reads ISO-8859-1 encoded content from an input stream.
    Latin1Reader(byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    Latin1Reader(IOContext, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    lineEnding() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    lineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    M

    Markers - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
    Markers(String, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     

    N

    nextContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    O

    objectContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    ObjectContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.javaprop
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    parseSimpleIndexes() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSeparatorEscapeChar() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSplitter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.
    prefix() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    PropertiesBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    PropertiesBackedGenerator(IOContext, Map<?, ?>, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    PropertiesBackedGenerator(IOContext, Properties, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Deprecated.

    R

    read() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    readEnvVariablesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readEnvVariablesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readMapAs(Map<String, String>, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readMapAs(Map<String, String>, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    rebuild() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setValue(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
    Main access method for splitting key into one or more segments and using segmentation to add the String value as a node in its proper location.
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    STREAM_READ_CAPABILITIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Properties capabilities slightly different from defaults, having untyped (text-only) scalars
    StringPathOnlySplitter(String, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     

    T

    toString() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Overridden to provide developer JsonPointer representation of the context.
    truncatePath(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    V

    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     

    W

    withFirstArrayOffset(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withHeader(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used.
    withIndexMarker(Markers) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withKeyValueSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineEnding(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineIndentation(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Convenience method, functionally equivalent to:
    withoutIndexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutLineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutPathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
    withParseSimpleIndexes(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withPathSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance with specified path separator; default being comma (".").
    withPathSeparatorEscapeChar(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance with a different escape character to use for single character path separators , enabling the pathSeparator to be included in a segment.
    withPrefix(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified prefix is prepended before logical path when generator writes output and removed by parser before binding back as properties.
    withWriteIndexUsingMarkers(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeIndexUsingMarkers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(SerializableString) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    WriterBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    WriterBackedGenerator(IOContext, Writer, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeValue(Map<?, ?>, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Map<?, ?>, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Map object.
    writeValue(Properties, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValue(Properties, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Deprecated.
    writeValueAsMap(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsMap(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.
    writeValueAsProperties(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsProperties(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.

    _

    _addSegment(JPropNode, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _appendFieldName(StringBuilder, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _asInt(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _basePath - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _basePathLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _branchText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
    _byIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries with integral number index, if any.
    _byName - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _child - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _content - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Underlying Properties that we will update with logical properties written out.
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
    Iterator over child values.
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Current field name
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Name of the field of which value is to be parsed; only used for OBJECT contexts
    _currentText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Value that is being serialized and caused this context to be created; typically a POJO or container type.
    _end - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _env() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    _firstArrayOffset - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Specifies index number used when writing the first array entry (which in Java has index of 0).
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _gotName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Marker used to indicate that we just received a name, and now expect a value
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _hasContents - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    _header - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional header to prepend before any other output: typically a comment section or so.
    _headerChecked - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indentLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indexFirstChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMarker - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Although most massaging is done later, caller may be interested in the ultimate source.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _jpropContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _keyValueSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character".
    _lastSegment(JPropNode, String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _lineEnding - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added after value, including at least one linefeed.
    _lineIndentation - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String prepended before key value, as possible indentation
    _loadProperties(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _loadProperties(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _nextNode - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    We need to keep track of value nodes to construct further contexts.
    _noNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Intermediate buffer in which contents are buffered before being written using WriterBackedGenerator._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Offset to index after the last valid index in WriterBackedGenerator._outputBuffer.
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Pointer to the next available location in WriterBackedGenerator._outputBuffer
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Parent cursor of this cursor, if any; null for root cursors.
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Parent context for this context; null for root context.
    _parseSimpleIndexes - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _pathSeparatorChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    _pathSeparatorEscapeChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default escape character to use for single character path separators , enabling the pathSeparator to be included in a segment.
    _pathSeparatorEscapeChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    _pathSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional prefix to strip and append to key names.
    _prefix - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _readContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _reportReadException(String, Exception) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Definition of columns being written, if available.
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Schema we use for parsing Properties into structure of some kind.
    _simpleSplitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _sourceContent - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Actual Properties (or, actually, any Map with String keys, values) that were parsed and handed to us for further processing.
    _splitMore(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _splitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
    _start - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _state - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _useSimpleIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _value - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Value for the path, for leaf nodes; usually null for branches.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscaped(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscaped(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeIndexUsingMarkers - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
    _writeLinefeed() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    A B C D E F G H I J K L M N O P R S T U V W _ 

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/index.html ================================================ Jackson-dataformat-Properties 2.14.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/properties/2.14/overview-frame.html ================================================ Overview List (Jackson-dataformat-Properties 2.14.0 API)

     

    ================================================ FILE: docs/javadoc/properties/2.14/overview-summary.html ================================================ Overview (Jackson-dataformat-Properties 2.14.0 API)

    Jackson-dataformat-Properties 2.14.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl  
    com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-Properties 2.14.0 API)

    Class Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/package-list ================================================ com.fasterxml.jackson.dataformat.javaprop com.fasterxml.jackson.dataformat.javaprop.impl com.fasterxml.jackson.dataformat.javaprop.io com.fasterxml.jackson.dataformat.javaprop.util ================================================ FILE: docs/javadoc/properties/2.14/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/properties/2.14/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-Properties 2.14.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.javaprop

      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _firstArrayOffset

            int _firstArrayOffset
            Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

            Default value is 1.

          • _pathSeparator

            String _pathSeparator
            Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
          • _pathSeparatorEscapeChar

            char _pathSeparatorEscapeChar
            Default escape character to use for single character path separators , enabling the pathSeparator to be included in a segment. Note that this is only used if the path separator is a single character. The default value is NULL ('\0') which effectively disables escape processing. The escape character is only used for escaping either the pathSeparator character or a sequence of escape characters immediately prior to the pathSeparator. i.e., if the pathSeparator is "." and the escape char is '#' then "a#.b" produces a segment called "a.b", but "a##.b" produces a segment called "a#" with a child called "b" and "a###.b" produces a segment called "a#.b". Finally, "a#b" produces a segment called "a#b" - the escape processing is only used immediately prior to the path separator. Any escape character may be used. Backslash ('\\') is the most obvious candidate but be aware that the JDK Properties loader has its own rules for escape processing (documented in the Javadoc for Properties.load ) that will remove ALL duplicated backslash characters (and also carry out other escape handling) before the JavaPropsMapper gets to see them.
            Since:
            2.14
          • _indexMarker

            Markers _indexMarker
            Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

            Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

          • _parseSimpleIndexes

            boolean _parseSimpleIndexes
            Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

            Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on JavaPropsSchema._indexMarker.

            Default value is true, "plain" index segments are supported.

          • _writeIndexUsingMarkers

            boolean _writeIndexUsingMarkers
            Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
               startMarker index endMarker
            
            to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
          • _lineIndentation

            String _lineIndentation
            String prepended before key value, as possible indentation
          • _keyValueSeparator

            String _keyValueSeparator
            String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
          • _lineEnding

            String _lineEnding
            String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
          • _header

            String _header
            Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
          • _prefix

            String _prefix
            Optional prefix to strip and append to key names. Useful when subset of properties need to be processed.
            Since:
            2.10

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.14/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/properties/2.9/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-Properties 2.9.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.9/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-Properties 2.9.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/JavaPropsFactory.html ================================================ JavaPropsFactory (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonFactory
        • com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

          com.fasterxml.jackson.core.JsonFactory.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected static String CHARSET_ID_LATIN1 
        static String FORMAT_NAME_JAVA_PROPERTIES 
        • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

          _byteSymbolCanonicalizer, _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _objectCodec, _outputDecorator, _parserFeatures, _recyclerRef, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, FORMAT_NAME_JSON
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data, int offset, int len, com.fasterxml.jackson.core.io.IOContext ctxt, boolean recyclable) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Writer _createWriter(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(InputStream in, com.fasterxml.jackson.core.io.IOContext ctxt) 
        protected Properties _loadProperties(Reader r0, com.fasterxml.jackson.core.io.IOContext ctxt) 
        boolean canHandleBinaryNatively() 
        boolean canUseCharArrays() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        JavaPropsFactory copy() 
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
        Method for constructing JsonGenerator for generating CBOR-encoded output.
        com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) 
        JavaPropsGenerator createGenerator(Properties props)
        Convenience method to allow using a pre-constructed Properties instance as output target, so that serialized property values are added.
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data) 
        com.fasterxml.jackson.core.JsonParser createParser(byte[] data, int offset, int len) 
        com.fasterxml.jackson.core.JsonParser createParser(File f) 
        com.fasterxml.jackson.core.JsonParser createParser(InputStream in) 
        JavaPropsParser createParser(Properties props)
        Convenience method to allow feeding a pre-parsed Properties instance as input.
        com.fasterxml.jackson.core.JsonParser createParser(URL url) 
        String getFormatName() 
        com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
        Sub-classes need to override this method
        boolean requiresPropertyOrdering() 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.JsonFactory

          _checkInvalidCopy, _createContext, _createDataOutputWrapper, _createParser, _decorate, _decorate, _decorate, _decorate, _decorate, _getBufferRecycler, _optimizedStreamFromURL, canParseAsync, configure, configure, configure, createGenerator, createGenerator, createGenerator, createGenerator, createJsonGenerator, createJsonGenerator, createJsonGenerator, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createNonBlockingByteArrayParser, createParser, createParser, createParser, createParser, createParser, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getCodec, getFormatReadFeatureType, getFormatWriteFeatureType, getInputDecorator, getOutputDecorator, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, readResolve, requiresCustomCodec, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparator
      • Constructor Detail

        • JavaPropsFactory

          public JavaPropsFactory()
        • JavaPropsFactory

          public JavaPropsFactory(com.fasterxml.jackson.core.ObjectCodec codec)
        • JavaPropsFactory

          protected JavaPropsFactory(JavaPropsFactory src,
                          com.fasterxml.jackson.core.ObjectCodec oc)
      • Method Detail

        • copy

          public JavaPropsFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canHandleBinaryNatively

          public boolean canHandleBinaryNatively()
          Overrides:
          canHandleBinaryNatively in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • createGenerator

          public JavaPropsGenerator createGenerator(Properties props)
          Convenience method to allow using a pre-constructed Properties instance as output target, so that serialized property values are added.
          Since:
          2.9
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(File f)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(URL url)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(InputStream in)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public com.fasterxml.jackson.core.JsonParser createParser(byte[] data,
                                                           int offset,
                                                           int len)
                                                             throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out,
                                                                 com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(OutputStream out)
                                                                   throws IOException
          Method for constructing JsonGenerator for generating CBOR-encoded output.

          Since CBOR format always uses UTF-8 internally, no encoding need to be passed to this method.

          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(InputStream in,
                                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(Reader r,
                                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data,
                                                            int offset,
                                                            int len,
                                                            com.fasterxml.jackson.core.io.IOContext ctxt,
                                                            boolean recyclable)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(byte[] data,
                                                            int offset,
                                                            int len,
                                                            com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out,
                                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                       throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out,
                                                                      com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                           throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                             com.fasterxml.jackson.core.JsonEncoding enc,
                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/JavaPropsGenerator.html ================================================ JavaPropsGenerator (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonGenerator

          com.fasterxml.jackson.core.JsonGenerator.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected StringBuilder _basePath 
        protected boolean _headerChecked 
        protected int _indentLength 
        protected com.fasterxml.jackson.core.io.IOContext _ioContext 
        protected JPropWriteContext _jpropContext
        Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        protected JavaPropsSchema _schema
        Definition of columns being written, if available.
        protected static com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
        Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        protected static int SHORT_WRITE 
        • Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase

          _cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext, DERIVED_FEATURES_MASK, MAX_BIG_DECIMAL_SCALE, SURR1_FIRST, SURR1_LAST, SURR2_FIRST, SURR2_LAST, WRITE_BINARY, WRITE_BOOLEAN, WRITE_NULL, WRITE_NUMBER, WRITE_RAW, WRITE_STRING
        • Fields inherited from class com.fasterxml.jackson.core.JsonGenerator

          _cfgPrettyPrinter
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int stdFeatures, com.fasterxml.jackson.core.ObjectCodec codec) 
      • Field Detail

        • BOGUS_WRITE_CONTEXT

          protected static final com.fasterxml.jackson.core.json.JsonWriteContext BOGUS_WRITE_CONTEXT
          Since our context object does NOT implement standard write context, need to do something like use a placeholder...
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _schema

          protected JavaPropsSchema _schema
          Definition of columns being written, if available.
        • _jpropContext

          protected JPropWriteContext _jpropContext
          Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
        • _headerChecked

          protected boolean _headerChecked
        • _indentLength

          protected int _indentLength
      • Constructor Detail

        • JavaPropsGenerator

          public JavaPropsGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                            int stdFeatures,
                            com.fasterxml.jackson.core.ObjectCodec codec)
      • Method Detail

        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.base.GeneratorBase
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator useDefaultPrettyPrinter()
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public com.fasterxml.jackson.core.JsonGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonGenerator
        • getSchema

          public com.fasterxml.jackson.core.FormatSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteBinaryNatively

          public boolean canWriteBinaryNatively()
          Overrides:
          canWriteBinaryNatively in class com.fasterxml.jackson.core.JsonGenerator
        • canOmitFields

          public boolean canOmitFields()
          Overrides:
          canOmitFields in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputContext

          public com.fasterxml.jackson.core.JsonStreamContext getOutputContext()
          Overrides:
          getOutputContext in class com.fasterxml.jackson.core.base.GeneratorBase
        • writeFieldName

          public void writeFieldName(String name)
                              throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartArray

          public void writeStartArray()
                               throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public void writeEndArray()
                             throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public void writeStartObject()
                                throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public void writeEndObject()
                              throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(char[] text,
                         int offset,
                         int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                int offset,
                                int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public void writeUTF8String(byte[] text,
                             int offset,
                             int len)
                               throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                      int offset,
                      int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                      int offset,
                      int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(com.fasterxml.jackson.core.SerializableString text)
                        throws IOException,
                               com.fasterxml.jackson.core.JsonGenerationException
          Overrides:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                         byte[] data,
                         int offset,
                         int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(String encodedValue)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected void _verifyValueWrite(String typeMsg)
                                    throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _writeEscapedEntry

          protected abstract void _writeEscapedEntry(char[] text,
                                int offset,
                                int len)
                                              throws IOException
          Throws:
          IOException
        • _writeRaw

          protected abstract void _writeRaw(char[] text,
                       int offset,
                       int len)
                                     throws IOException
          Throws:
          IOException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/JavaPropsMapper.html ================================================ JavaPropsMapper (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class JavaPropsMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        protected Properties _env() 
        JavaPropsMapper copy() 
        JavaPropsFactory getFactory() 
        <T> T readEnvVariablesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readEnvVariablesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, Class<T> valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
        <T> T readPropertiesAs(Properties props, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, Class<T> valueType)
        Convenience method, functionally equivalent to:
        <T> T readSystemPropertiesAs(JavaPropsSchema schema, com.fasterxml.jackson.databind.JavaType valueType)
        Convenience method, functionally equivalent to:
        com.fasterxml.jackson.core.Version version() 
        void writeValue(Properties targetProps, Object value)
        Convenience method that "writes" given `value` as properties in given Properties object.
        void writeValue(Properties targetProps, Object value, JavaPropsSchema schema)
        Convenience method that "writes" given `value` as properties in given Properties object.
        Properties writeValueAsProperties(Object value)
        Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
        Properties writeValueAsProperties(Object value, JavaPropsSchema schema)
        Convenience method that serializes given value but so that results are stored in given Properties instance.
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _checkInvalidCopy, _configAndWriteValue, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createObjectNode, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPropertyNamingStrategy, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, mixInCount, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, treeAsTokens, treeToValue, updateValue, valueToTree, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
      • Constructor Detail

        • JavaPropsMapper

          public JavaPropsMapper()
      • Method Detail

        • copy

          public JavaPropsMapper copy()
          Overrides:
          copy in class com.fasterxml.jackson.databind.ObjectMapper
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.databind.ObjectMapper
        • getFactory

          public JavaPropsFactory getFactory()
          Overrides:
          getFactory in class com.fasterxml.jackson.databind.ObjectMapper
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                               JavaPropsSchema schema,
                               Class<T> valueType)
                             throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                               JavaPropsSchema schema,
                               com.fasterxml.jackson.databind.JavaType valueType)
                             throws IOException
          Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.

          Note that this is NOT identical to calling ObjectMapper.convertValue(Object, Class); rather, it would be similar to writing `Properties` out into a File, then calling `readValue()` on this mapper to bind contents.

          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                               Class<T> valueType)
                             throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readPropertiesAs

          public <T> T readPropertiesAs(Properties props,
                               com.fasterxml.jackson.databind.JavaType valueType)
                             throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                     Class<T> valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readSystemPropertiesAs

          public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
                                     com.fasterxml.jackson.databind.JavaType valueType)
                                   throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(System.getProperties(), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                 Class<T> valueType)
                               throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • readEnvVariablesAs

          public <T> T readEnvVariablesAs(JavaPropsSchema schema,
                                 com.fasterxml.jackson.databind.JavaType valueType)
                               throws IOException
          Convenience method, functionally equivalent to:
             readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
          
          Throws:
          IOException
          Since:
          2.9
        • writeValueAsProperties

          public Properties writeValueAsProperties(Object value)
                                            throws IOException
          Convenience method that serializes given value but so that results are stored in a newly constructed Properties. Functionally equivalent to serializing in a File and reading contents into Properties.
          Throws:
          IOException
          Since:
          2.9

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/JavaPropsParser.html ================================================ JavaPropsParser (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class JavaPropsParser
      extends com.fasterxml.jackson.core.base.ParserMinimalBase
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.Feature, com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected byte[] _binaryValue 
        protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder 
        protected boolean _closed 
        protected Object _inputSource
        Although most massaging is done later, caller may be interested in the ultimate source.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected JPropReadContext _readContext 
        protected JavaPropsSchema _schema
        Schema we use for parsing Properties into structure of some kind.
        protected Properties _sourceProperties
        Actual Properties that were parsed and handed to us for further processing.
        protected static JavaPropsSchema DEFAULT_SCHEMA 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt, Object inputSource, int parserFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Properties sourceProps) 
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder() 
        protected void _handleEOF() 
        protected <T> T _noNumbers() 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        void close() 
        BigInteger getBigIntegerValue() 
        byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant) 
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        BigDecimal getDecimalValue() 
        double getDoubleValue() 
        Object getEmbeddedObject() 
        float getFloatValue() 
        Object getInputSource() 
        int getIntValue() 
        long getLongValue() 
        com.fasterxml.jackson.core.JsonParser.NumberType getNumberType() 
        Number getNumberValue() 
        com.fasterxml.jackson.core.JsonStreamContext getParsingContext() 
        JavaPropsSchema getSchema() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        boolean hasTextCharacters() 
        boolean isClosed() 
        com.fasterxml.jackson.core.JsonToken nextToken() 
        void overrideCurrentName(String name) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        void setSchema(com.fasterxml.jackson.core.FormatSchema schema) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _handleUnrecognizedCharacterEscape, _hasTextualNull, _reportError, _reportError, _reportError, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _throwUnquotedSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _reportUnsupportedOperation, canParseAsync, configure, disable, enable, finishToken, getBinaryValue, getBooleanValue, getByteValue, getCurrentValue, getFeatureMask, getFormatFeatures, getNonBlockingInputFeeder, getObjectId, getShortValue, getTypeId, getValueAsBoolean, getValueAsDouble, isEnabled, isNaN, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, overrideFormatFeatures, overrideStdFeatures, readBinaryValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setCurrentValue, setFeatureMask, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _inputSource

          protected final Object _inputSource
          Although most massaging is done later, caller may be interested in the ultimate source.
        • _sourceProperties

          protected final Properties _sourceProperties
          Actual Properties that were parsed and handed to us for further processing.
        • _schema

          protected JavaPropsSchema _schema
          Schema we use for parsing Properties into structure of some kind.
        • _closed

          protected boolean _closed
        • _byteArrayBuilder

          protected com.fasterxml.jackson.core.util.ByteArrayBuilder _byteArrayBuilder
        • _binaryValue

          protected byte[] _binaryValue
      • Constructor Detail

        • JavaPropsParser

          public JavaPropsParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                         Object inputSource,
                         int parserFeatures,
                         com.fasterxml.jackson.core.ObjectCodec codec,
                         Properties sourceProps)
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Specified by:
          version in class com.fasterxml.jackson.core.JsonParser
        • setSchema

          public void setSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          setSchema in class com.fasterxml.jackson.core.JsonParser
        • getSchema

          public JavaPropsSchema getSchema()
          Overrides:
          getSchema in class com.fasterxml.jackson.core.JsonParser
        • isClosed

          public boolean isClosed()
          Specified by:
          isClosed in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • getInputSource

          public Object getInputSource()
          Overrides:
          getInputSource in class com.fasterxml.jackson.core.JsonParser
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonParser
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getParsingContext

          public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
          Specified by:
          getParsingContext in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • overrideCurrentName

          public void overrideCurrentName(String name)
          Specified by:
          overrideCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Specified by:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Specified by:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _getByteArrayBuilder

          public com.fasterxml.jackson.core.util.ByteArrayBuilder _getByteArrayBuilder()
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Specified by:
          getTokenLocation in class com.fasterxml.jackson.core.JsonParser
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Specified by:
          getCurrentLocation in class com.fasterxml.jackson.core.JsonParser
        • getNumberValue

          public Number getNumberValue()
                                throws IOException
          Specified by:
          getNumberValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getNumberType

          public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType()
                                                                         throws IOException
          Specified by:
          getNumberType in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getIntValue

          public int getIntValue()
                          throws IOException
          Specified by:
          getIntValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getLongValue

          public long getLongValue()
                            throws IOException
          Specified by:
          getLongValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBigIntegerValue

          public BigInteger getBigIntegerValue()
                                        throws IOException
          Specified by:
          getBigIntegerValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getFloatValue

          public float getFloatValue()
                              throws IOException
          Specified by:
          getFloatValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDoubleValue

          public double getDoubleValue()
                                throws IOException
          Specified by:
          getDoubleValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getDecimalValue

          public BigDecimal getDecimalValue()
                                     throws IOException
          Specified by:
          getDecimalValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _handleEOF

          protected void _handleEOF()
                             throws com.fasterxml.jackson.core.JsonParseException
          Specified by:
          _handleEOF in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          com.fasterxml.jackson.core.JsonParseException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/JavaPropsSchema.html ================================================ JavaPropsSchema (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class JavaPropsSchema

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatSchema, Serializable


      public class JavaPropsSchema
      extends Object
      implements com.fasterxml.jackson.core.FormatSchema, Serializable
      Simple FormatSchema sub-type that defines details of things like:
      • How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
      • What indentation (if any) is used before key values, and between key/value
      • If and how are Array values inferred from property names
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_INDEX_MARKER

          protected static final Markers DEFAULT_INDEX_MARKER
        • _splitter

          protected transient JPropPathSplitter _splitter
          Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
        • _firstArrayOffset

          protected int _firstArrayOffset
          Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

          Default value is 1.

        • _pathSeparator

          protected String _pathSeparator
          Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
        • _indexMarker

          protected Markers _indexMarker
          Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

          Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

        • _parseSimpleIndexes

          protected boolean _parseSimpleIndexes
          Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

          Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on _indexMarker.

          Default value is true, "plain" index segments are supported.

        • _writeIndexUsingMarkers

          protected boolean _writeIndexUsingMarkers
          Whether array-element paths are written using start/end markers (see _indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
             startMarker index endMarker
          
          to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
        • _lineIndentation

          protected String _lineIndentation
          String prepended before key value, as possible indentation
        • _keyValueSeparator

          protected String _keyValueSeparator
          String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
        • _lineEnding

          protected String _lineEnding
          String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
        • _header

          protected String _header
          Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.
      • Constructor Detail

        • JavaPropsSchema

          public JavaPropsSchema()
      • Method Detail

        • pathSplitter

          public JPropPathSplitter pathSplitter()
          Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.

          Note that instance is constructed lazily as needed, but reused afterwards for this instance (and for these specific settings).

        • withFirstArrayOffset

          public JavaPropsSchema withFirstArrayOffset(int v)
        • withPathSeparator

          public JavaPropsSchema withPathSeparator(String v)
          Mutant factory method for constructing a new instance with specified path separator; default being comma ("."). Note that setting separator to `null` or empty String will basically disable handling of nesting, similar to calling withoutPathSeparator().
        • withoutPathSeparator

          public JavaPropsSchema withoutPathSeparator()
          Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
        • withParseSimpleIndexes

          public JavaPropsSchema withParseSimpleIndexes(boolean v)
        • withWriteIndexUsingMarkers

          public JavaPropsSchema withWriteIndexUsingMarkers(boolean v)
        • withoutLineIndentation

          public JavaPropsSchema withoutLineIndentation()
          Since:
          2.8
        • withHeader

          public JavaPropsSchema withHeader(String v)
          Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used. Note that caller must specify any and all linefeeds to use: generator will NOT modify header String contents in any way, and will not append a linefeed after contents (if any).
        • withoutHeader

          public JavaPropsSchema withoutHeader()
          Convenience method, functionally equivalent to:
             withHeader("")
          
          used to ensure that no header is prepended before actual property values are output.
          Since:
          2.8
        • getSchemaType

          public String getSchemaType()
          Specified by:
          getSchemaType in interface com.fasterxml.jackson.core.FormatSchema
        • firstArrayOffset

          public int firstArrayOffset()
        • header

          public String header()
        • indexMarker

          public Markers indexMarker()
        • lineEnding

          public String lineEnding()
        • lineIndentation

          public String lineIndentation()
        • keyValueSeparator

          public String keyValueSeparator()
        • parseSimpleIndexes

          public boolean parseSimpleIndexes()
        • pathSeparator

          public String pathSeparator()
        • writeIndexUsingMarkers

          public boolean writeIndexUsingMarkers()

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/class-use/JavaPropsSchema.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.PackageVersion (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.javaprop.PackageVersion

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/impl/PropertiesBackedGenerator.html ================================================ PropertiesBackedGenerator (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class PropertiesBackedGenerator

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/impl/WriterBackedGenerator.html ================================================ WriterBackedGenerator (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.impl

    Class WriterBackedGenerator

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/PropertiesBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/impl/class-use/WriterBackedGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/impl/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.9.0 API)

    com.fasterxml.jackson.dataformat.javaprop.impl

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/impl/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.9.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/impl/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.impl Class Hierarchy (Jackson-dataformat-Properties 2.9.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.impl

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/impl/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.impl (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.impl

    No usage of com.fasterxml.jackson.dataformat.javaprop.impl

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/JPropEscapes.html ================================================ JPropEscapes (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropEscapes



    • public class JPropEscapes
      extends Object
      Container class for definitions of characters to escape.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ArrayContext.html ================================================ JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ArrayContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ArrayContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Array nodes

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.ObjectContext.html ================================================ JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext.ObjectContext

    • Enclosing class:
      JPropReadContext


      protected static final class JPropReadContext.ObjectContext
      extends JPropReadContext
      Cursor used for traversing non-empty JSON Object nodes

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/JPropReadContext.html ================================================ JPropReadContext (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropReadContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
      • Field Detail

        • _parent

          protected final JPropReadContext _parent
          Parent cursor of this cursor, if any; null for root cursors.
        • _currentName

          protected String _currentName
          Current field name
        • _currentText

          protected String _currentText
        • _currentValue

          protected Object _currentValue
          Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
        • _nextNode

          protected JPropNode _nextNode
          We need to keep track of value nodes to construct further contexts.
        • _branchText

          protected String _branchText
          Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
        • _state

          protected int _state
      • Method Detail

        • getParent

          public final JPropReadContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public final String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • overrideCurrentName

          public void overrideCurrentName(String name)
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • nextToken

          public abstract com.fasterxml.jackson.core.JsonToken nextToken()
        • nextContext

          public JPropReadContext nextContext()
          Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
        • getCurrentText

          public String getCurrentText()

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/JPropWriteContext.html ================================================ JPropWriteContext (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class JPropWriteContext

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonStreamContext
        • com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext


    • public class JPropWriteContext
      extends com.fasterxml.jackson.core.JsonStreamContext
      • Field Detail

        • _parent

          protected final JPropWriteContext _parent
          Parent context for this context; null for root context.
        • _currentValue

          protected Object _currentValue
          Value that is being serialized and caused this context to be created; typically a POJO or container type.
        • _gotName

          protected boolean _gotName
          Marker used to indicate that we just received a name, and now expect a value
        • _currentName

          protected String _currentName
          Name of the field of which value is to be parsed; only used for OBJECT contexts
        • _basePathLength

          protected int _basePathLength
      • Constructor Detail

        • JPropWriteContext

          protected JPropWriteContext(int type,
                           JPropWriteContext parent,
                           int basePathLength)
      • Method Detail

        • createRootContext

          public static JPropWriteContext createRootContext(int basePathLength)
        • createChildArrayContext

          public JPropWriteContext createChildArrayContext(int basePathLength)
        • createChildObjectContext

          public JPropWriteContext createChildObjectContext(int basePathLength)
        • writeFieldName

          public boolean writeFieldName(String name)
                                 throws com.fasterxml.jackson.core.JsonProcessingException
          Throws:
          com.fasterxml.jackson.core.JsonProcessingException
        • writeValue

          public boolean writeValue()
        • getParent

          public final JPropWriteContext getParent()
          Specified by:
          getParent in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentName

          public String getCurrentName()
          Specified by:
          getCurrentName in class com.fasterxml.jackson.core.JsonStreamContext
        • getCurrentValue

          public Object getCurrentValue()
          Overrides:
          getCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • setCurrentValue

          public void setCurrentValue(Object v)
          Overrides:
          setCurrentValue in class com.fasterxml.jackson.core.JsonStreamContext
        • toString

          public final String toString()
          Overridden to provide developer JsonPointer representation of the context.
          Overrides:
          toString in class com.fasterxml.jackson.core.JsonStreamContext

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/Latin1Reader.html ================================================ Latin1Reader (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.io

    Class Latin1Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class Latin1Reader
      extends Reader
      Optimized Reader that reads ISO-8859-1 encoded content from an input stream. The reason for custom implementation is that this allows recycling of underlying read buffer, which is important for small content.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropEscapes.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ArrayContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.ObjectContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropReadContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/class-use/JPropWriteContext.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/class-use/Latin1Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    No usage of com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.9.0 API)

    com.fasterxml.jackson.dataformat.javaprop.io

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.9.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.io

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop.io Description

    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.io Class Hierarchy (Jackson-dataformat-Properties 2.9.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.io

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/io/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.io (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.io

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.9.0 API)

    com.fasterxml.jackson.dataformat.javaprop

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.9.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop

    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    See: Description

    Package com.fasterxml.jackson.dataformat.javaprop Description

    Basic API types to use with this module:
    • JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators
    • JavaPropsGenerator is the matching JsonGenerator implementation to use
    • JavaPropsParser is the matching JsonParser implementation to use
    • JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties
    • JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop Class Hierarchy (Jackson-dataformat-Properties 2.9.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema (implements com.fasterxml.jackson.core.FormatSchema, java.io.Serializable)
      • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
      • com.fasterxml.jackson.dataformat.javaprop.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/JPropNode.html ================================================ JPropNode (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNode



    • public class JPropNode
      extends Object
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values. Since either index- OR name-based access is to be supported (similar to, say, Javascript objects) -- but only one, not both -- storage is bit of a hybrid. In addition, branches may also have values. So, code does bit coercion as necessary, trying to maintain something consistent and usable at all times, without failure.
      • Field Detail

        • _value

          protected String _value
          Value for the path, for leaf nodes; usually null for branches. If both children and value exists, typically need to construct bogus value with empty String key.
        • _byName

          protected Map<String,JPropNode> _byName
          Child entries accessed with String property name, if any.
        • _hasContents

          protected boolean _hasContents
      • Constructor Detail

        • JPropNode

          public JPropNode()
      • Method Detail

        • addByIndex

          public JPropNode addByIndex(int index)
        • isLeaf

          public boolean isLeaf()
        • isArray

          public boolean isArray()
        • getValue

          public String getValue()
        • asRaw

          public Object asRaw()
          Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/JPropNodeBuilder.html ================================================ JPropNodeBuilder (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropNodeBuilder

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder


    • public class JPropNodeBuilder
      extends Object

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.CharPathOnlySplitter.html ================================================ JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.CharPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.CharPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparatorChar

          protected final char _pathSeparatorChar
      • Constructor Detail

        • JPropPathSplitter.CharPathOnlySplitter

          public JPropPathSplitter.CharPathOnlySplitter(char sepChar,
                                                boolean useIndex)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.FullSplitter.html ================================================ JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.FullSplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.FullSplitter
      extends JPropPathSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
        • _indexFirstChar

          protected final int _indexFirstChar
      • Constructor Detail

        • JPropPathSplitter.FullSplitter

          public JPropPathSplitter.FullSplitter(String pathSeparator,
                                        boolean useSimpleIndex,
                                        Markers indexMarker,
                                        JPropPathSplitter fallbackSplitter)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.IndexOnlySplitter.html ================================================ JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.IndexOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.IndexOnlySplitter
      extends JPropPathSplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      • Field Detail

        • _indexMatch

          protected final Pattern _indexMatch
      • Constructor Detail

        • JPropPathSplitter.IndexOnlySplitter

          public JPropPathSplitter.IndexOnlySplitter(boolean useSimpleIndex,
                                             Markers indexMarker)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.NonSplitting.html ================================================ JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.NonSplitting

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.NonSplitting
      extends JPropPathSplitter
      "No-op" implementation that does no splitting and simply adds entries as is.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.StringPathOnlySplitter.html ================================================ JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter.StringPathOnlySplitter

    • Enclosing class:
      JPropPathSplitter


      public static class JPropPathSplitter.StringPathOnlySplitter
      extends JPropPathSplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      • Field Detail

        • _pathSeparator

          protected final String _pathSeparator
        • _pathSeparatorLength

          protected final int _pathSeparatorLength
      • Constructor Detail

        • JPropPathSplitter.StringPathOnlySplitter

          public JPropPathSplitter.StringPathOnlySplitter(String pathSeparator,
                                                  boolean useIndex)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/JPropPathSplitter.html ================================================ JPropPathSplitter (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class JPropPathSplitter

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
      • Field Detail

        • _useSimpleIndex

          protected final boolean _useSimpleIndex
      • Constructor Detail

        • JPropPathSplitter

          protected JPropPathSplitter(boolean useSimpleIndex)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/Markers.html ================================================ Markers (Jackson-dataformat-Properties 2.9.0 API)
    com.fasterxml.jackson.dataformat.javaprop.util

    Class Markers



    • public class Markers
      extends Object
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
      • Field Detail

        • _start

          protected final String _start
        • _end

          protected final String _end
      • Constructor Detail

      • Method Detail

        • create

          public static Markers create(String start,
                       String end)
          Factory method for creating simple marker pair with given start and end markers. Note that both are needed; neither may be empty or null
        • getStart

          public String getStart()
        • getEnd

          public String getEnd()

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNode.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNode

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropNodeBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.CharPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.FullSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.IndexOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.NonSplitting.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.StringPathOnlySplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    No usage of com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/JPropPathSplitter.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/class-use/Markers.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.javaprop.util.Markers (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.javaprop.util.Markers

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.9.0 API)

    com.fasterxml.jackson.dataformat.javaprop.util

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.9.0 API)

    Package com.fasterxml.jackson.dataformat.javaprop.util

    Helper classes for dealing with property key to structured path conversion.

    See: Description

    • Class Summary 
      Class Description
      JPropNode
      Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
      JPropNodeBuilder  
      JPropPathSplitter
      Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
      JPropPathSplitter.CharPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      JPropPathSplitter.FullSplitter
      Instance that supports both path separator and index markers (and possibly also "simple" indexes)
      JPropPathSplitter.IndexOnlySplitter
      Special variant that does not use path separator, but does allow index indicator, at the end of path.
      JPropPathSplitter.NonSplitting
      "No-op" implementation that does no splitting and simply adds entries as is.
      JPropPathSplitter.StringPathOnlySplitter
      Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
      Markers
      Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").

    Package com.fasterxml.jackson.dataformat.javaprop.util Description

    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.javaprop.util Class Hierarchy (Jackson-dataformat-Properties 2.9.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.javaprop.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/com/fasterxml/jackson/dataformat/javaprop/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.javaprop.util (Jackson-dataformat-Properties 2.9.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.javaprop.util

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-Properties 2.9.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-Properties 2.9.0 API)

    Deprecated API

    Contents

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/help-doc.html ================================================ API Help (Jackson-dataformat-Properties 2.9.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/index-all.html ================================================ Index (Jackson-dataformat-Properties 2.9.0 API)
    A B C D E F G H I J K L M N O P R S T U V W _ 

    A

    addByIndex(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    addByName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    appendDesc(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    appendKey(StringBuilder, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    appendValue(String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    arrayContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    asRaw() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Helper method, mostly for debugging/testing, to convert structure contained into simple List/Map/String equivalent.

    B

    BOGUS_WRITE_CONTEXT - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Since our context object does NOT implement standard write context, need to do something like use a placeholder...
    build(JavaPropsSchema, Properties) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     

    C

    canHandleBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canOmitFields() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    canWriteBinaryNatively() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    CHARSET_ID_LATIN1 - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    com.fasterxml.jackson.dataformat.javaprop - package com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl - package com.fasterxml.jackson.dataformat.javaprop.impl
     
    com.fasterxml.jackson.dataformat.javaprop.io - package com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util - package com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    create(JPropNode) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    create(JavaPropsSchema) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    create(String, String) - Static method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
    Factory method for creating simple marker pair with given start and end markers.
    createChildArrayContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createChildObjectContext(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createGenerator(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow using a pre-constructed Properties instance as output target, so that serialized property values are added.
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Method for constructing JsonGenerator for generating CBOR-encoded output.
    createParser(Properties) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Convenience method to allow feeding a pre-parsed Properties instance as input.
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    createRootContext() - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    createRootContext(int) - Static method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    D

    DEFAULT_INDEX_MARKER - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    DEFAULT_SCHEMA - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    E

    EMPTY - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    emptySchema() - Static method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    F

    firstArrayOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    flush() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    FORMAT_NAME_JAVA_PROPERTIES - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     

    G

    getBigIntegerValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getCurrentText() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getCurrentValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getDecimalValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getDoubleValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getEnd() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    getFloatValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    getInputSource() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getIntValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getLongValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getNumberValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getOutputContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    getParent() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    getParsingContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getReadCharsCount() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    getSchema() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getSchemaType() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    getStart() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    getText() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    getValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    header() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    I

    indexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    instance - Static variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    isArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    isClosed() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    isLeaf() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     

    J

    JavaPropsFactory - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsFactory() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsFactory(JavaPropsFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    JavaPropsGenerator - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsGenerator(IOContext, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    JavaPropsMapper - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsMapper() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsFactory) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsMapper(JavaPropsMapper) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    JavaPropsParser - Class in com.fasterxml.jackson.dataformat.javaprop
     
    JavaPropsParser(IOContext, Object, int, ObjectCodec, Properties) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    JavaPropsSchema - Class in com.fasterxml.jackson.dataformat.javaprop
    Simple FormatSchema sub-type that defines details of things like: How are "flat" property names mapped to hierarchic POJO types, using separator-based naming convention.
    JavaPropsSchema() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JavaPropsSchema(JavaPropsSchema) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    JPropEscapes - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Container class for definitions of characters to escape.
    JPropEscapes() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropEscapes
     
    JPropNode - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Value in an ordered tree presentation built from an arbitrarily ordered set of flat input values.
    JPropNode() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    JPropNodeBuilder - Class in com.fasterxml.jackson.dataformat.javaprop.util
     
    JPropNodeBuilder() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropNodeBuilder
     
    JPropPathSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Helper class used for splitting a flattened property key into nested/structured path that can be used to traverse and/or define hierarchic structure.
    JPropPathSplitter(boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    JPropPathSplitter.CharPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropPathSplitter.CharPathOnlySplitter(char, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    JPropPathSplitter.FullSplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Instance that supports both path separator and index markers (and possibly also "simple" indexes)
    JPropPathSplitter.FullSplitter(String, boolean, Markers, JPropPathSplitter) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    JPropPathSplitter.IndexOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Special variant that does not use path separator, but does allow index indicator, at the end of path.
    JPropPathSplitter.IndexOnlySplitter(boolean, Markers) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    JPropPathSplitter.NonSplitting - Class in com.fasterxml.jackson.dataformat.javaprop.util
    "No-op" implementation that does no splitting and simply adds entries as is.
    JPropPathSplitter.StringPathOnlySplitter - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple variant where we only have path separator, and optional "segment is index iff value is integer number"
    JPropPathSplitter.StringPathOnlySplitter(String, boolean) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    JPropReadContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Helper class used to keep track of traversal over contents of content tree expressed as JPropNodes.
    JPropReadContext(int, JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    JPropReadContext.ArrayContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Array nodes
    JPropReadContext.ArrayContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    JPropReadContext.ObjectContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Cursor used for traversing non-empty JSON Object nodes
    JPropReadContext.ObjectContext(JPropReadContext, JPropNode) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    JPropWriteContext - Class in com.fasterxml.jackson.dataformat.javaprop.io
     
    JPropWriteContext(int, JPropWriteContext, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    K

    keyValueSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    L

    Latin1Reader - Class in com.fasterxml.jackson.dataformat.javaprop.io
    Optimized Reader that reads ISO-8859-1 encoded content from an input stream.
    Latin1Reader(byte[], int, int) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    Latin1Reader(IOContext, InputStream) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    lineEnding() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    lineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     

    M

    Markers - Class in com.fasterxml.jackson.dataformat.javaprop.util
    Simple value class for encapsulating a pair of start and end markers; initially needed for index markers (like "[" and "]").
    Markers(String, String) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     

    N

    nextContext() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Method called to figure out child or parent context when change is needed, as indicated by this context returning `null`.
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
     
    nextToken() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    O

    objectContents() - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    overrideCurrentName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.javaprop
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    parseSimpleIndexes() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    pathSplitter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Accessor for getting a JPropPathSplitter instance that does splitting according to the settings of this instance.
    PropertiesBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    PropertiesBackedGenerator(IOContext, Properties, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.Latin1Reader
     
    readEnvVariablesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readEnvVariablesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method which uses given `Properties` as the source as if they had been read from an external source, processes them (splits paths etc), and then binds as given result value.
    readPropertiesAs(Properties, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readPropertiesAs(Properties, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, Class<T>) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    readSystemPropertiesAs(JavaPropsSchema, JavaType) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method, functionally equivalent to:
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    setCurrentValue(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    setSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    setValue(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    SHORT_WRITE - Static variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.NonSplitting
     
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
    Main access method for splitting key into one or more segments and using segmentation to add the String value as a node in its proper location.
    splitAndAdd(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     

    T

    toString() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Overridden to provide developer JsonPointer representation of the context.
    truncatePath(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     

    V

    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.javaprop.PackageVersion
     

    W

    withFirstArrayOffset(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withHeader(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory for constructing schema instance where specified header section (piece of text written out right before actual properties entries) will be used.
    withIndexMarker(Markers) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withKeyValueSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineEnding(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withLineIndentation(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutHeader() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Convenience method, functionally equivalent to:
    withoutIndexMarker() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutLineIndentation() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withoutPathSeparator() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance that specifies that no "path splitting" is to be done: this is similar to default behavior of Properties in which keys are full Strings and there is no nesting of values.
    withParseSimpleIndexes(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    withPathSeparator(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Mutant factory method for constructing a new instance with specified path separator; default being comma (".").
    withWriteIndexUsingMarkers(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeIndexUsingMarkers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRaw(SerializableString) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    WriterBackedGenerator - Class in com.fasterxml.jackson.dataformat.javaprop.impl
     
    WriterBackedGenerator(IOContext, Writer, int, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    writeValue() - Method in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    writeValue(Properties, Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Properties object.
    writeValue(Properties, Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that "writes" given `value` as properties in given Properties object.
    writeValueAsProperties(Object) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in a newly constructed Properties.
    writeValueAsProperties(Object, JavaPropsSchema) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
    Convenience method that serializes given value but so that results are stored in given Properties instance.

    _

    _addSegment(JPropNode, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _asInt(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _basePath - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _basePathLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _binaryValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _branchText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Optional "this" value for cases where path branches have direct values; these are exposed before child values with bogus 'name' of empty String.
    _byIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries with integral number index, if any.
    _byName - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Child entries accessed with String property name, if any.
    _byteArrayBuilder - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _child - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
     
    _closed - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ArrayContext
     
    _contents - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext.ObjectContext
    Iterator over child values.
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Current field name
    _currentName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Name of the field of which value is to be parsed; only used for OBJECT contexts
    _currentText - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Java-level Object that corresponds to this level of input hierarchy, if any; used by databinding functionality, opaque for parser.
    _currentValue - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Value that is being serialized and caused this context to be created; typically a POJO or container type.
    _end - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _env() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper
     
    _firstArrayOffset - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Specifies index number used when writing the first array entry (which in Java has index of 0).
    _flushBuffer() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _getByteArrayBuilder() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _gotName - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Marker used to indicate that we just received a name, and now expect a value
    _handleEOF() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _hasContents - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
     
    _header - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Optional header to prepend before any other output: typically a comment section or so.
    _headerChecked - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indentLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _indexFirstChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMarker - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _indexMatch - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _inputSource - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Although most massaging is done later, caller may be interested in the ultimate source.
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _jpropContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Current context, in form we can use it (GeneratorBase has untyped reference; left as null)
    _keyValueSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character".
    _lastSegment(JPropNode, String, int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _lineEnding - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String added after value, including at least one linefeed.
    _lineIndentation - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    String prepended before key value, as possible indentation
    _loadProperties(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _loadProperties(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory
     
    _nextNode - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    We need to keep track of value nodes to construct further contexts.
    _noNumbers() - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Codec used for data binding when (if) requested.
    _out - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Underlying Writer used for output.
    _outputBuffer - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Intermediate buffer in which contents are buffered before being written using WriterBackedGenerator._out.
    _outputEnd - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Offset to index after the last valid index in WriterBackedGenerator._outputBuffer.
    _outputTail - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
    Pointer to the next available location in WriterBackedGenerator._outputBuffer
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
    Parent cursor of this cursor, if any; null for root cursors.
    _parent - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropWriteContext
    Parent context for this context; null for root context.
    _parseSimpleIndexes - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
    _pathSeparator - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _pathSeparatorChar - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.CharPathOnlySplitter
     
    _pathSeparatorLength - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.StringPathOnlySplitter
     
    _props - Variable in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
    Underlying Properties that we will update with logical properties written out.
    _readContext - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
    Definition of columns being written, if available.
    _schema - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Schema we use for parsing Properties into structure of some kind.
    _simpleSplitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.FullSplitter
     
    _sourceProperties - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsParser
    Actual Properties that were parsed and handed to us for further processing.
    _splitMore(JPropNode, String, String) - Method in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter.IndexOnlySplitter
     
    _splitter - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Since splitter instances are slightly costly to build in some cases, we will lazily instantiate and cache them.
    _start - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.Markers
     
    _state - Variable in class com.fasterxml.jackson.dataformat.javaprop.io.JPropReadContext
     
    _useSimpleIndex - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropPathSplitter
     
    _value - Variable in class com.fasterxml.jackson.dataformat.javaprop.util.JPropNode
    Value for the path, for leaf nodes; usually null for branches.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscaped(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscaped(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeEscapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeEscapedEntry(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeIndexUsingMarkers - Variable in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema
    Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
    _writeLinefeed() - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeRawLong(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeRawLong(StringBuilder) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.impl.WriterBackedGenerator
     
    _writeUnescapedEntry(String) - Method in class com.fasterxml.jackson.dataformat.javaprop.JavaPropsGenerator
     
    A B C D E F G H I J K L M N O P R S T U V W _ 

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/index.html ================================================ Jackson-dataformat-Properties 2.9.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/properties/2.9/overview-frame.html ================================================ Overview List (Jackson-dataformat-Properties 2.9.0 API)

     

    ================================================ FILE: docs/javadoc/properties/2.9/overview-summary.html ================================================ Overview (Jackson-dataformat-Properties 2.9.0 API)

    Jackson-dataformat-Properties 2.9.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.javaprop
    Basic API types to use with this module: JavaPropsFactory is the JsonFactory implementation used to create Java Properties parsers and generators JavaPropsGenerator is the matching JsonGenerator implementation to use JavaPropsParser is the matching JsonParser implementation to use JavaPropsMapper is a convenience sub-class of ObjectMapper that is both configured to use JavaPropsFactory, and adds additional methods for using alternate content sources and targets for improved interoperability with Properties, System Properties, and env properties JavaPropsSchema is the FormatSchema implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    com.fasterxml.jackson.dataformat.javaprop.impl  
    com.fasterxml.jackson.dataformat.javaprop.io
    Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content.
    com.fasterxml.jackson.dataformat.javaprop.util
    Helper classes for dealing with property key to structured path conversion.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-Properties 2.9.0 API)

    Class Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/package-list ================================================ com.fasterxml.jackson.dataformat.javaprop com.fasterxml.jackson.dataformat.javaprop.impl com.fasterxml.jackson.dataformat.javaprop.io com.fasterxml.jackson.dataformat.javaprop.util ================================================ FILE: docs/javadoc/properties/2.9/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-Properties 2.9.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.javaprop

      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.javaprop.JavaPropsSchema extends Object implements Serializable

        serialVersionUID:
        1L
        • Serialized Fields

          • _firstArrayOffset

            int _firstArrayOffset
            Specifies index number used when writing the first array entry (which in Java has index of 0). After this initial value, additional elements will have consecutive values, incremented by 1. Note that this setting has no effect on reading: input indexes are only used for sorting values, and their exact values have no meaning.

            Default value is 1.

          • _pathSeparator

            String _pathSeparator
            Default path separator to use for hierarchic paths, if any; empty String may be used to indicate that no hierarchy should be inferred using a simple separator (although index markers may still be used, if defined).
          • _indexMarker

            Markers _indexMarker
            Default start marker for index access, if any; empty String may be used to indicate no marker-based index detection should be made.

            Default value of "[" is usually combined with end marker of "]" to allow C/Java-style bracket notation, like "settings.path[1]".

          • _parseSimpleIndexes

            boolean _parseSimpleIndexes
            Whether 'simple' index-notation is supported for path segments or not: simple meaning that if a path segment is a textual representation of a non-negative integer value with length of 9 or less (that is, up to but no including one billion), it will be considered index, not property name.

            Note that this settings does NOT control whether "start/end marker" indicated indexes are enabled or not; those depend on JavaPropsSchema._indexMarker.

            Default value is true, "plain" index segments are supported.

          • _writeIndexUsingMarkers

            boolean _writeIndexUsingMarkers
            Whether array-element paths are written using start/end markers (see JavaPropsSchema._indexMarker or "simple" index number: if set to true AND markers are specified as non-empty Strings, will use sequence of
               startMarker index endMarker
            
            to include index in path; otherwise will simply use textual representation of the index number as path segment, prefixed by path separator as necessary.
          • _lineIndentation

            String _lineIndentation
            String prepended before key value, as possible indentation
          • _keyValueSeparator

            String _keyValueSeparator
            String added between key and value; needs to include the "equals character" (either '=' or ':', both allowed by Java Properties specification), may also include white before and/or after "equals character". Default value is a single '=' character with no white spaces around
          • _lineEnding

            String _lineEnding
            String added after value, including at least one linefeed. Default value is the 'Unix linefeed'.
          • _header

            String _header
            Optional header to prepend before any other output: typically a comment section or so. Note that contents here are NOT modified in any way, meaning that any comment indicators (leading '#' or '!') and linefeeds MUST be specified by caller.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/properties/2.9/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ body { background-color:#ffffff; color:#353833; font-family:Arial, Helvetica, sans-serif; font-size:76%; margin:0; } a:link, a:visited { text-decoration:none; color:#4c6b87; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4c6b87; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-size:1.3em; } h1 { font-size:1.8em; } h2 { font-size:1.5em; } h3 { font-size:1.4em; } h4 { font-size:1.3em; } h5 { font-size:1.2em; } h6 { font-size:1.1em; } ul { list-style-type:disc; } code, tt { font-size:1.2em; } dt code { font-size:1.2em; } table tr td dt code { font-size:1.2em; vertical-align:top; } sup { font-size:.6em; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:.8em; z-index:200; margin-top:-7px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; background-image:url(resources/titlebar.gif); background-position:left top; background-repeat:no-repeat; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:1em; margin:0; } .topNav { background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; } .bottomNav { margin-top:10px; background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; } .subNav { background-color:#dee3e9; border-bottom:1px solid #9eadc0; float:left; width:100%; overflow:hidden; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding:3px 6px; } ul.subNavList li{ list-style:none; float:left; font-size:90%; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; } .navBarCell1Rev { background-image:url(resources/tab.gif); background-color:#a88834; color:#FFFFFF; margin: auto 5px; border:1px solid #c9aa44; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader h1 { font-size:1.3em; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 25px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:1.2em; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; margin:0 0 6px -8px; padding:2px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; margin:0 0 6px -8px; padding:2px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:1.0em; } .indexContainer h2 { font-size:1.1em; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:1.1em; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:10px 0 10px 20px; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:25px; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #9eadc0; background-color:#f9f9f9; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:1px solid #9eadc0; border-top:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; border-bottom:1px solid #9eadc0; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .contentContainer table, .classUseContainer table, .constantValuesContainer table { border-bottom:1px solid #9eadc0; width:100%; } .contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table { width:100%; } .contentContainer .description table, .contentContainer .details table { border-bottom:none; } .contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{ vertical-align:top; padding-right:20px; } .contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast, .contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast, .contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne, .contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne { padding-right:3px; } .overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption { position:relative; text-align:left; background-repeat:no-repeat; color:#FFFFFF; font-weight:bold; clear:none; overflow:hidden; padding:0px; margin:0px; } caption a:link, caption a:hover, caption a:active, caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span { white-space:nowrap; padding-top:8px; padding-left:8px; display:block; float:left; background-image:url(resources/titlebar.gif); height:18px; } .overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd { width:10px; background-image:url(resources/titlebar_end.gif); background-repeat:no-repeat; background-position:top right; position:relative; float:left; } ul.blockList ul.blockList li.blockList table { margin:0 0 12px 0px; width:100%; } .tableSubHeadingColor { background-color: #EEEEFF; } .altColor { background-color:#eeeeef; } .rowColor { background-color:#ffffff; } .overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td { text-align:left; padding:3px 3px 3px 7px; } th.colFirst, th.colLast, th.colOne, .constantValuesContainer th { background:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; text-align:left; padding:3px 3px 3px 7px; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } td.colFirst, th.colFirst { border-left:1px solid #9eadc0; white-space:nowrap; } td.colLast, th.colLast { border-right:1px solid #9eadc0; } td.colOne, th.colOne { border-right:1px solid #9eadc0; border-left:1px solid #9eadc0; } table.overviewSummary { padding:0px; margin-left:0px; } table.overviewSummary td.colFirst, table.overviewSummary th.colFirst, table.overviewSummary td.colOne, table.overviewSummary th.colOne { width:25%; vertical-align:middle; } table.packageSummary td.colFirst, table.overviewSummary th.colFirst { width:25%; vertical-align:middle; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:.9em; } .block { display:block; margin:3px 0 0 0; } .strong { font-weight:bold; } ================================================ FILE: docs/javadoc/toml/2.13/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-TOML 2.13.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/toml/2.13/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-TOML 2.13.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/TomlFactory.html ================================================ TomlFactory (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.toml.TomlFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public final class TomlFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

          com.fasterxml.jackson.core.JsonFactory.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected int _tomlGeneratorFeatures 
        protected int _tomlParserFeatures 
        static String FORMAT_NAME_TOML 
        • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

          _byteSymbolCanonicalizer, _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _maximumNonEscapedChar, _objectCodec, _outputDecorator, _parserFeatures, _quoteChar, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, DEFAULT_QUOTE_CHAR, DEFAULT_ROOT_VALUE_SEPARATOR, FORMAT_NAME_JSON
      • Constructor Summary

        Constructors 
        Constructor and Description
        TomlFactory() 
      • Field Detail

        • _tomlParserFeatures

          protected int _tomlParserFeatures
        • _tomlGeneratorFeatures

          protected int _tomlGeneratorFeatures
      • Constructor Detail

        • TomlFactory

          public TomlFactory()
      • Method Detail

        • rebuild

          public TomlFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static TomlFactoryBuilder builder()
          Main factory method to use for constructing TomlFactory instances with different configuration.
        • copy

          public TomlFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • canParseAsync

          public boolean canParseAsync()
          Overrides:
          canParseAsync in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • getFormatReadFeatureType

          public Class<? extends com.fasterxml.jackson.core.FormatFeature> getFormatReadFeatureType()
          Overrides:
          getFormatReadFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • getFormatWriteFeatureType

          public Class<? extends com.fasterxml.jackson.core.FormatFeature> getFormatWriteFeatureType()
          Overrides:
          getFormatWriteFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • isEnabled

          public final boolean isEnabled(TomlReadFeature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(TomlWriteFeature f)
          Checked whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • _createParser

          public com.fasterxml.jackson.core.JsonParser _createParser(InputStream in,
                                                                     com.fasterxml.jackson.core.io.IOContext ctxt)
                                                              throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          public com.fasterxml.jackson.core.JsonParser _createParser(Reader r,
                                                                     com.fasterxml.jackson.core.io.IOContext ctxt)
                                                              throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          public com.fasterxml.jackson.core.JsonParser _createParser(byte[] data,
                                                                     int offset,
                                                                     int len,
                                                                     com.fasterxml.jackson.core.io.IOContext ctxt)
                                                              throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt,
                                                                        boolean recyclable)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out,
                                                                              com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                       throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out,
                                                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                           throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/TomlFactoryBuilder.html ================================================ TomlFactoryBuilder (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlFactoryBuilder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/TomlMapper.Builder.html ================================================ TomlMapper.Builder (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlMapper.Builder

      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        TomlMapper.Builder configure(TomlReadFeature feature, boolean state) 
        TomlMapper.Builder configure(TomlWriteFeature feature, boolean state) 
        TomlMapper.Builder disable(TomlReadFeature... features) 
        TomlMapper.Builder disable(TomlWriteFeature... features) 
        TomlMapper.Builder enable(TomlReadFeature... features) 
        TomlMapper.Builder enable(TomlWriteFeature... features) 
        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, accessorNaming, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, constructorDetector, deactivateDefaultTyping, defaultAttributes, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, removeMixIn, serializationInclusion, serializerFactory, setDefaultTyping, streamFactory, subtypeResolver, typeFactory, visibility, visibility, withCoercionConfig, withCoercionConfig, withCoercionConfigDefaults, withConfigOverride

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/TomlMapper.html ================================================ TomlMapper (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.toml.TomlMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class TomlMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  TomlMapper.Builder 
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        static TomlMapper.Builder builder() 
        static TomlMapper.Builder builder(TomlFactory streamFactory) 
        TomlMapper configure(TomlReadFeature f, boolean state) 
        TomlMapper configure(TomlWriteFeature f, boolean state) 
        TomlMapper copy() 
        TomlMapper disable(TomlReadFeature f) 
        TomlMapper disable(TomlWriteFeature f) 
        TomlMapper enable(TomlReadFeature f) 
        TomlMapper enable(TomlWriteFeature f) 
        TomlFactory tokenStreamFactory() 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getFactory, getInjectableValues, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultAttributes, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, treeAsTokens, treeToValue, treeToValue, updateValue, valueToTree, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
        • Methods inherited from class com.fasterxml.jackson.core.ObjectCodec

          getJsonFactory

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/TomlReadFeature.html ================================================ TomlReadFeature (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Enum TomlReadFeature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<TomlReadFeature>


      public enum TomlReadFeature
      extends Enum<TomlReadFeature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for TOML parsers.
      • Enum Constant Detail

        • PARSE_JAVA_TIME

          public static final TomlReadFeature PARSE_JAVA_TIME
          TOML has special syntax for time types corresponding to LocalDate, LocalTime, LocalDateTime and OffsetDateTime. By default, the TOML parser just returns them as strings.

          When this option is set, these time types will be parsed to their proper java.time counterparts and appear as JsonToken.VALUE_EMBEDDED_OBJECT tokens.

      • Method Detail

        • values

          public static TomlReadFeature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (TomlReadFeature c : TomlReadFeature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static TomlReadFeature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/TomlStreamReadException.html ================================================ TomlStreamReadException (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlStreamReadException

    • All Implemented Interfaces:
      Serializable


      public class TomlStreamReadException
      extends com.fasterxml.jackson.core.exc.StreamReadException
      See Also:
      Serialized Form
      • Method Detail

        • withParser

          public TomlStreamReadException withParser(com.fasterxml.jackson.core.JsonParser p)
          Specified by:
          withParser in class com.fasterxml.jackson.core.exc.StreamReadException
        • withRequestPayload

          public TomlStreamReadException withRequestPayload(com.fasterxml.jackson.core.util.RequestPayload p)
          Specified by:
          withRequestPayload in class com.fasterxml.jackson.core.exc.StreamReadException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/TomlStreamWriteException.html ================================================ TomlStreamWriteException (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlStreamWriteException

    • All Implemented Interfaces:
      Serializable


      public final class TomlStreamWriteException
      extends com.fasterxml.jackson.core.exc.StreamWriteException
      See Also:
      Serialized Form
      • Method Detail

        • withGenerator

          public com.fasterxml.jackson.core.exc.StreamWriteException withGenerator(com.fasterxml.jackson.core.JsonGenerator g)
          Specified by:
          withGenerator in class com.fasterxml.jackson.core.exc.StreamWriteException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/TomlWriteFeature.html ================================================ TomlWriteFeature (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Enum TomlWriteFeature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<TomlWriteFeature>


      public enum TomlWriteFeature
      extends Enum<TomlWriteFeature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for TOML generators.
      • Enum Constant Detail

        • FAIL_ON_NULL_WRITE

          public static final TomlWriteFeature FAIL_ON_NULL_WRITE
          The TOML spec does not allow null values. We instead write an empty string when JsonGenerator.writeNull() by default.

          When this option is set, any attempt to write a null value will error instead.

      • Method Detail

        • values

          public static TomlWriteFeature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (TomlWriteFeature c : TomlWriteFeature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static TomlWriteFeature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-TOML 2.13.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. Content may come either from a static byte[] buffer or InputStream.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.PackageVersion (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.toml.PackageVersion

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/TomlFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlFactory (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlFactory

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/TomlFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/TomlMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/TomlMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlMapper (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlMapper

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/TomlReadFeature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlReadFeature (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlReadFeature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/TomlStreamReadException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlStreamReadException (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlStreamReadException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/TomlStreamWriteException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException

    No usage of com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/TomlWriteFeature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlWriteFeature (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlWriteFeature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.UTF8Reader (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.UTF8Reader

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/package-frame.html ================================================ com.fasterxml.jackson.dataformat.toml (Jackson-dataformat-TOML 2.13.0 API)

    com.fasterxml.jackson.dataformat.toml

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/package-summary.html ================================================ com.fasterxml.jackson.dataformat.toml (Jackson-dataformat-TOML 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.toml

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/package-tree.html ================================================ com.fasterxml.jackson.dataformat.toml Class Hierarchy (Jackson-dataformat-TOML 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.toml

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.toml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.toml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.toml.TomlMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/com/fasterxml/jackson/dataformat/toml/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.toml (Jackson-dataformat-TOML 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.toml

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-TOML 2.13.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-TOML 2.13.0 API)

    Deprecated API

    Contents

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/help-doc.html ================================================ API Help (Jackson-dataformat-TOML 2.13.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/index-all.html ================================================ Index (Jackson-dataformat-TOML 2.13.0 API)
    B C D E F G H I P R T U V W _ 

    B

    build() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Main factory method to use for constructing TomlFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    builder(TomlFactory) - Static method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     

    C

    canParseAsync() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    close() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
     
    com.fasterxml.jackson.dataformat.toml - package com.fasterxml.jackson.dataformat.toml
     
    configure(TomlReadFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for enabling or disabling specified parser feature (check TomlReadFeature for list of features)
    configure(TomlWriteFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for enabling or disabling specified generator feature (check TomlWriteFeature for list of features)
    configure(TomlReadFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    configure(TomlWriteFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    configure(TomlReadFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    configure(TomlWriteFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    configure(TomlReadFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    configure(TomlWriteFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    construct(IOContext, InputStream, boolean) - Static method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    construct(byte[], int, int) - Static method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    copy() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     

    D

    disable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for disabling specified parser features (check TomlReadFeature for list of features)
    disable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for disabling specified generator features (check TomlWriteFeature for list of features)
    disable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    disable(TomlReadFeature, TomlReadFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    disable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    disable(TomlWriteFeature, TomlWriteFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    disable(TomlReadFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    disable(TomlWriteFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    disable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    disable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     

    E

    enable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for enabling specified parser feature (check TomlReadFeature for list of features)
    enable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for enabling specified generator feature (check TomlWriteFeature for list of features)
    enable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    enable(TomlReadFeature, TomlReadFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    enable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    enable(TomlWriteFeature, TomlWriteFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    enable(TomlReadFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    enable(TomlWriteFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    enable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    enable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
     

    F

    FORMAT_NAME_TOML - Static variable in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     

    G

    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getFormatReadFeatureType() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getFormatWriteFeatureType() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     

    I

    isEnabled(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Checked whether specified parser feature is enabled.
    isEnabled(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Checked whether specified generator feature is enabled.

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.toml
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.toml.PackageVersion
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    rebuild() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     

    T

    tokenStreamFactory() - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    TomlFactory - Class in com.fasterxml.jackson.dataformat.toml
     
    TomlFactory() - Constructor for class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    TomlFactoryBuilder - Class in com.fasterxml.jackson.dataformat.toml
    TSFBuilder implementation for constructing TomlFactory instances.
    TomlMapper - Class in com.fasterxml.jackson.dataformat.toml
     
    TomlMapper() - Constructor for class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    TomlMapper(TomlFactory) - Constructor for class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    TomlMapper.Builder - Class in com.fasterxml.jackson.dataformat.toml
     
    TomlReadFeature - Enum in com.fasterxml.jackson.dataformat.toml
    Enumeration that defines all togglable features for TOML parsers.
    TomlStreamReadException - Exception in com.fasterxml.jackson.dataformat.toml
     
    TomlStreamWriteException - Exception in com.fasterxml.jackson.dataformat.toml
     
    TomlWriteFeature - Enum in com.fasterxml.jackson.dataformat.toml
    Enumeration that defines all togglable features for TOML generators.

    U

    UTF8Reader - Class in com.fasterxml.jackson.dataformat.toml
    Optimized Reader that reads UTF-8 encoded content from an input stream.

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
    Returns an array containing the constants of this enum type, in the order they are declared.
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.toml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.toml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     

    W

    withGenerator(JsonGenerator) - Method in exception com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException
     
    withParser(JsonParser) - Method in exception com.fasterxml.jackson.dataformat.toml.TomlStreamReadException
     
    withRequestPayload(RequestPayload) - Method in exception com.fasterxml.jackson.dataformat.toml.TomlStreamReadException
     

    _

    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    _formatParserFeatures - Variable in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    _tomlGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _tomlParserFeatures - Variable in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    B C D E F G H I P R T U V W _ 

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/index.html ================================================ Jackson-dataformat-TOML 2.13.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="com/fasterxml/jackson/dataformat/toml/package-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/toml/2.13/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-TOML 2.13.0 API)

    Hierarchy For All Packages

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.toml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.toml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.toml.TomlMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/package-list ================================================ com.fasterxml.jackson.dataformat.toml ================================================ FILE: docs/javadoc/toml/2.13/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/toml/2.13/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-TOML 2.13.0 API)

    Serialized Form

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.13/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/toml/2.14/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-TOML 2.14.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/toml/2.14/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-TOML 2.14.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/TomlFactory.html ================================================ TomlFactory (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.toml.TomlFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public final class TomlFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

          com.fasterxml.jackson.core.JsonFactory.Feature
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected int _tomlGeneratorFeatures 
        protected int _tomlParserFeatures 
        static String FORMAT_NAME_TOML 
        • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

          _byteSymbolCanonicalizer, _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _maximumNonEscapedChar, _objectCodec, _outputDecorator, _parserFeatures, _quoteChar, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, DEFAULT_QUOTE_CHAR, DEFAULT_ROOT_VALUE_SEPARATOR, FORMAT_NAME_JSON
      • Constructor Summary

        Constructors 
        Constructor and Description
        TomlFactory() 
      • Field Detail

        • _tomlParserFeatures

          protected int _tomlParserFeatures
        • _tomlGeneratorFeatures

          protected int _tomlGeneratorFeatures
      • Constructor Detail

        • TomlFactory

          public TomlFactory()
      • Method Detail

        • rebuild

          public TomlFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static TomlFactoryBuilder builder()
          Main factory method to use for constructing TomlFactory instances with different configuration.
        • copy

          public TomlFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • requiresPropertyOrdering

          public boolean requiresPropertyOrdering()
          Overrides:
          requiresPropertyOrdering in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • canParseAsync

          public boolean canParseAsync()
          Overrides:
          canParseAsync in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonFactory
        • getFormatReadFeatureType

          public Class<? extends com.fasterxml.jackson.core.FormatFeature> getFormatReadFeatureType()
          Overrides:
          getFormatReadFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • getFormatWriteFeatureType

          public Class<? extends com.fasterxml.jackson.core.FormatFeature> getFormatWriteFeatureType()
          Overrides:
          getFormatWriteFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • isEnabled

          public final boolean isEnabled(TomlReadFeature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(TomlWriteFeature f)
          Checked whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • _createParser

          public com.fasterxml.jackson.core.JsonParser _createParser(InputStream in,
                                                                     com.fasterxml.jackson.core.io.IOContext ctxt)
                                                              throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          public com.fasterxml.jackson.core.JsonParser _createParser(Reader r,
                                                                     com.fasterxml.jackson.core.io.IOContext ctxt)
                                                              throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          public com.fasterxml.jackson.core.JsonParser _createParser(byte[] data,
                                                                     int offset,
                                                                     int len,
                                                                     com.fasterxml.jackson.core.io.IOContext ctxt)
                                                              throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected com.fasterxml.jackson.core.JsonParser _createParser(char[] data,
                                                                        int offset,
                                                                        int len,
                                                                        com.fasterxml.jackson.core.io.IOContext ctxt,
                                                                        boolean recyclable)
                                                                 throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected com.fasterxml.jackson.core.JsonGenerator _createGenerator(Writer out,
                                                                              com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                       throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected com.fasterxml.jackson.core.JsonGenerator _createUTF8Generator(OutputStream out,
                                                                                  com.fasterxml.jackson.core.io.IOContext ctxt)
                                                                           throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/TomlFactoryBuilder.html ================================================ TomlFactoryBuilder (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlFactoryBuilder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/TomlMapper.Builder.html ================================================ TomlMapper.Builder (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlMapper.Builder

      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        TomlMapper.Builder configure(TomlReadFeature feature, boolean state) 
        TomlMapper.Builder configure(TomlWriteFeature feature, boolean state) 
        TomlMapper.Builder disable(TomlReadFeature... features) 
        TomlMapper.Builder disable(TomlWriteFeature... features) 
        TomlMapper.Builder enable(TomlReadFeature... features) 
        TomlMapper.Builder enable(TomlWriteFeature... features) 
        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, accessorNaming, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, configure, constructorDetector, deactivateDefaultTyping, defaultAttributes, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, removeMixIn, serializationInclusion, serializerFactory, setDefaultTyping, streamFactory, subtypeResolver, typeFactory, visibility, visibility, withCoercionConfig, withCoercionConfig, withCoercionConfigDefaults, withConfigOverride

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/TomlMapper.html ================================================ TomlMapper (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.toml.TomlMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class TomlMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  TomlMapper.Builder 
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        static TomlMapper.Builder builder() 
        static TomlMapper.Builder builder(TomlFactory streamFactory) 
        TomlMapper configure(TomlReadFeature f, boolean state) 
        TomlMapper configure(TomlWriteFeature f, boolean state) 
        TomlMapper copy() 
        TomlMapper disable(TomlReadFeature f) 
        TomlMapper disable(TomlWriteFeature f) 
        TomlMapper enable(TomlReadFeature f) 
        TomlMapper enable(TomlWriteFeature f) 
        TomlFactory tokenStreamFactory() 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, copyWith, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getFactory, getInjectableValues, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultAttributes, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, treeAsTokens, treeToValue, treeToValue, updateValue, valueToTree, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
        • Methods inherited from class com.fasterxml.jackson.core.ObjectCodec

          getJsonFactory

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/TomlReadFeature.html ================================================ TomlReadFeature (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Enum TomlReadFeature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<TomlReadFeature>


      public enum TomlReadFeature
      extends Enum<TomlReadFeature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for TOML parsers.
      • Enum Constant Detail

        • PARSE_JAVA_TIME

          public static final TomlReadFeature PARSE_JAVA_TIME
          TOML has special syntax for time types corresponding to LocalDate, LocalTime, LocalDateTime and OffsetDateTime. By default, the TOML parser just returns them as strings.

          When this option is set, these time types will be parsed to their proper java.time counterparts and appear as JsonToken.VALUE_EMBEDDED_OBJECT tokens.

      • Method Detail

        • values

          public static TomlReadFeature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (TomlReadFeature c : TomlReadFeature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static TomlReadFeature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/TomlStreamReadException.html ================================================ TomlStreamReadException (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlStreamReadException

    • All Implemented Interfaces:
      Serializable


      public class TomlStreamReadException
      extends com.fasterxml.jackson.core.exc.StreamReadException
      See Also:
      Serialized Form
      • Method Detail

        • withParser

          public TomlStreamReadException withParser(com.fasterxml.jackson.core.JsonParser p)
          Specified by:
          withParser in class com.fasterxml.jackson.core.exc.StreamReadException
        • withRequestPayload

          public TomlStreamReadException withRequestPayload(com.fasterxml.jackson.core.util.RequestPayload p)
          Specified by:
          withRequestPayload in class com.fasterxml.jackson.core.exc.StreamReadException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/TomlStreamWriteException.html ================================================ TomlStreamWriteException (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class TomlStreamWriteException

    • All Implemented Interfaces:
      Serializable


      public final class TomlStreamWriteException
      extends com.fasterxml.jackson.core.exc.StreamWriteException
      See Also:
      Serialized Form
      • Method Detail

        • withGenerator

          public com.fasterxml.jackson.core.exc.StreamWriteException withGenerator(com.fasterxml.jackson.core.JsonGenerator g)
          Specified by:
          withGenerator in class com.fasterxml.jackson.core.exc.StreamWriteException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/TomlWriteFeature.html ================================================ TomlWriteFeature (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Enum TomlWriteFeature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<TomlWriteFeature>


      public enum TomlWriteFeature
      extends Enum<TomlWriteFeature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for TOML generators.
      • Enum Constant Detail

        • FAIL_ON_NULL_WRITE

          public static final TomlWriteFeature FAIL_ON_NULL_WRITE
          The TOML spec does not allow null values. We instead write an empty string when JsonGenerator.writeNull() by default.

          When this option is set, any attempt to write a null value will error instead.

      • Method Detail

        • values

          public static TomlWriteFeature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (TomlWriteFeature c : TomlWriteFeature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static TomlWriteFeature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-TOML 2.14.0 API)
    com.fasterxml.jackson.dataformat.toml

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. Content may come either from a static byte[] buffer or InputStream.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.PackageVersion (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.toml.PackageVersion

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/TomlFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlFactory (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlFactory

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/TomlFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/TomlMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/TomlMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlMapper (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlMapper

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/TomlReadFeature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlReadFeature (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlReadFeature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/TomlStreamReadException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlStreamReadException (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlStreamReadException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/TomlStreamWriteException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException

    No usage of com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/TomlWriteFeature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.TomlWriteFeature (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.TomlWriteFeature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.toml.UTF8Reader (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.toml.UTF8Reader

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/package-frame.html ================================================ com.fasterxml.jackson.dataformat.toml (Jackson-dataformat-TOML 2.14.0 API)

    com.fasterxml.jackson.dataformat.toml

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/package-summary.html ================================================ com.fasterxml.jackson.dataformat.toml (Jackson-dataformat-TOML 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.toml

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/package-tree.html ================================================ com.fasterxml.jackson.dataformat.toml Class Hierarchy (Jackson-dataformat-TOML 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.toml

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.toml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.toml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.toml.TomlMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/com/fasterxml/jackson/dataformat/toml/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.toml (Jackson-dataformat-TOML 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.toml

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-TOML 2.14.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-TOML 2.14.0 API)

    Deprecated API

    Contents

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/help-doc.html ================================================ API Help (Jackson-dataformat-TOML 2.14.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/index-all.html ================================================ Index (Jackson-dataformat-TOML 2.14.0 API)
    B C D E F G H I P R T U V W _ 

    B

    build() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Main factory method to use for constructing TomlFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    builder(TomlFactory) - Static method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     

    C

    canModifyBuffer() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
    Method that can be used to see if we can actually modify the underlying buffer.
    canParseAsync() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    close() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
     
    com.fasterxml.jackson.dataformat.toml - package com.fasterxml.jackson.dataformat.toml
     
    configure(TomlReadFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for enabling or disabling specified parser feature (check TomlReadFeature for list of features)
    configure(TomlWriteFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for enabling or disabling specified generator feature (check TomlWriteFeature for list of features)
    configure(TomlReadFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    configure(TomlWriteFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    configure(TomlReadFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    configure(TomlWriteFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    configure(TomlReadFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    configure(TomlWriteFeature, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    construct(IOContext, InputStream, boolean) - Static method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    construct(byte[], int, int) - Static method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    copy() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     

    D

    disable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for disabling specified parser features (check TomlReadFeature for list of features)
    disable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for disabling specified generator features (check TomlWriteFeature for list of features)
    disable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    disable(TomlReadFeature, TomlReadFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    disable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    disable(TomlWriteFeature, TomlWriteFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    disable(TomlReadFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    disable(TomlWriteFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    disable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    disable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     

    E

    enable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for enabling specified parser feature (check TomlReadFeature for list of features)
    enable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Method for enabling specified generator feature (check TomlWriteFeature for list of features)
    enable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    enable(TomlReadFeature, TomlReadFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    enable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    enable(TomlWriteFeature, TomlWriteFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    enable(TomlReadFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    enable(TomlWriteFeature...) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper.Builder
     
    enable(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    enable(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
     

    F

    FORMAT_NAME_TOML - Static variable in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     

    G

    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getFormatReadFeatureType() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getFormatWriteFeatureType() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     

    I

    isEnabled(TomlReadFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Checked whether specified parser feature is enabled.
    isEnabled(TomlWriteFeature) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
    Checked whether specified generator feature is enabled.

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.toml
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.toml.PackageVersion
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    rebuild() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.toml.UTF8Reader
     
    requiresPropertyOrdering() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     

    T

    tokenStreamFactory() - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    TomlFactory - Class in com.fasterxml.jackson.dataformat.toml
     
    TomlFactory() - Constructor for class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    TomlFactoryBuilder - Class in com.fasterxml.jackson.dataformat.toml
    TSFBuilder implementation for constructing TomlFactory instances.
    TomlMapper - Class in com.fasterxml.jackson.dataformat.toml
     
    TomlMapper() - Constructor for class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    TomlMapper(TomlFactory) - Constructor for class com.fasterxml.jackson.dataformat.toml.TomlMapper
     
    TomlMapper.Builder - Class in com.fasterxml.jackson.dataformat.toml
     
    TomlReadFeature - Enum in com.fasterxml.jackson.dataformat.toml
    Enumeration that defines all togglable features for TOML parsers.
    TomlStreamReadException - Exception in com.fasterxml.jackson.dataformat.toml
     
    TomlStreamWriteException - Exception in com.fasterxml.jackson.dataformat.toml
     
    TomlWriteFeature - Enum in com.fasterxml.jackson.dataformat.toml
    Enumeration that defines all togglable features for TOML generators.

    U

    UTF8Reader - Class in com.fasterxml.jackson.dataformat.toml
    Optimized Reader that reads UTF-8 encoded content from an input stream.

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlReadFeature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.toml.TomlWriteFeature
    Returns an array containing the constants of this enum type, in the order they are declared.
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.toml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.toml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.toml.TomlMapper
     

    W

    withGenerator(JsonGenerator) - Method in exception com.fasterxml.jackson.dataformat.toml.TomlStreamWriteException
     
    withParser(JsonParser) - Method in exception com.fasterxml.jackson.dataformat.toml.TomlStreamReadException
     
    withRequestPayload(RequestPayload) - Method in exception com.fasterxml.jackson.dataformat.toml.TomlStreamReadException
     

    _

    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    _formatParserFeatures - Variable in class com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
     
    _tomlGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    _tomlParserFeatures - Variable in class com.fasterxml.jackson.dataformat.toml.TomlFactory
     
    B C D E F G H I P R T U V W _ 

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/index.html ================================================ Jackson-dataformat-TOML 2.14.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="com/fasterxml/jackson/dataformat/toml/package-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/toml/2.14/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-TOML 2.14.0 API)

    Hierarchy For All Packages

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.toml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.toml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.toml.TomlMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>

    Enum Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/package-list ================================================ com.fasterxml.jackson.dataformat.toml ================================================ FILE: docs/javadoc/toml/2.14/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/toml/2.14/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-TOML 2.14.0 API)

    Serialized Form

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/toml/2.14/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/yaml/2.10/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-YAML 2.10.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.10/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-YAML 2.10.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/JacksonYAMLParseException.html ================================================ JacksonYAMLParseException (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class JacksonYAMLParseException

    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      YAMLException


      public class JacksonYAMLParseException
      extends com.fasterxml.jackson.core.JsonParseException
      Since:
      2.8
      See Also:
      Serialized Form
      • Constructor Detail

        • JacksonYAMLParseException

          public JacksonYAMLParseException(com.fasterxml.jackson.core.JsonParser p,
                                           String msg,
                                           Exception e)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Field Detail

        • _bufferRecycler

          protected static final ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
          This ThreadLocal contains a SoftRerefence to a byte array used for holding content to decode
        • _bufferHolder

          protected final byte[][] _bufferHolder
        • _inputBuffer

          protected byte[] _inputBuffer
        • _inputPtr

          protected int _inputPtr
          Pointer to the next available byte (if any), iff less than mByteBufferEnd
        • _inputEnd

          protected int _inputEnd
          Pointed to the end marker, that is, position one after the last valid available byte.
        • _surrogate

          protected int _surrogate
          Decoded first character of a surrogate pair, if one needs to be buffered
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(InputStream in,
                            boolean autoClose)
        • UTF8Reader

          public UTF8Reader(byte[] buf,
                            int ptr,
                            int len,
                            boolean autoClose)
      • Method Detail

        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Returns:
          Number of bytes read, if any; -1 for end-of-input.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Writer

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/YAMLFactory.html ================================================ YAMLFactory (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • UTF8

          protected static final Charset UTF8
        • DEFAULT_YAML_PARSER_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_PARSER_FEATURE_FLAGS
          Bitfield (set of flags) of all parser features that are enabled by default.
        • DEFAULT_YAML_GENERATOR_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_GENERATOR_FEATURE_FLAGS
          Bitfield (set of flags) of all generator features that are enabled by default.
        • _yamlParserFeatures

          protected int _yamlParserFeatures
        • _yamlGeneratorFeatures

          protected int _yamlGeneratorFeatures
        • _version

          protected org.yaml.snakeyaml.DumperOptions.Version _version
      • Constructor Detail

        • YAMLFactory

          public YAMLFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • YAMLFactory

          public YAMLFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • YAMLFactory

          public YAMLFactory(YAMLFactory src,
                             com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • rebuild

          public YAMLFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static YAMLFactoryBuilder builder()
          Main factory method to use for constructing YAMLFactory instances with different configuration.
        • copy

          public YAMLFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method (as of 1.8)
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • isEnabled

          public final boolean isEnabled(YAMLParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(YAMLGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public YAMLParser createParser(char[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(char[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public YAMLGenerator createGenerator(OutputStream out,
                                               com.fasterxml.jackson.core.JsonEncoding enc)
                                        throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(File f,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(InputStream in,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(Reader r,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(char[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt,
                                             boolean recyclable)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(byte[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected YAMLGenerator _createGenerator(Writer out,
                                                   com.fasterxml.jackson.core.io.IOContext ctxt)
                                            throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected YAMLGenerator _createUTF8Generator(OutputStream out,
                                                       com.fasterxml.jackson.core.io.IOContext ctxt)
                                                throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/YAMLFactoryBuilder.html ================================================ YAMLFactoryBuilder (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactoryBuilder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.Feature.html ================================================ YAMLGenerator.Feature (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLGenerator.Feature

      • Enum Constant Detail

        • WRITE_DOC_START_MARKER

          public static final YAMLGenerator.Feature WRITE_DOC_START_MARKER
          Whether we are to write an explicit document start marker ("---") or not.
          Since:
          2.3
        • USE_NATIVE_OBJECT_ID

          public static final YAMLGenerator.Feature USE_NATIVE_OBJECT_ID
          Whether to use YAML native Object Id construct for indicating type (true); or "generic" Object Id mechanism (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • USE_NATIVE_TYPE_ID

          public static final YAMLGenerator.Feature USE_NATIVE_TYPE_ID
          Whether to use YAML native Type Id construct for indicating type (true); or "generic" type property (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • CANONICAL_OUTPUT

          public static final YAMLGenerator.Feature CANONICAL_OUTPUT
          Do we try to force so-called canonical output or not.
        • SPLIT_LINES

          public static final YAMLGenerator.Feature SPLIT_LINES
          Options passed to SnakeYAML that determines whether longer textual content gets automatically split into multiple lines or not.

          Feature is enabled by default to conform to SnakeYAML defaults as well as backwards compatibility with 2.5 and earlier versions.

          Since:
          2.6
        • MINIMIZE_QUOTES

          public static final YAMLGenerator.Feature MINIMIZE_QUOTES
          Whether strings will be rendered without quotes (true) or with quotes (false, default).

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.7
        • ALWAYS_QUOTE_NUMBERS_AS_STRINGS

          public static final YAMLGenerator.Feature ALWAYS_QUOTE_NUMBERS_AS_STRINGS
          Whether numbers stored as strings will be rendered with quotes (true) or without quotes (false, default) when MINIMIZE_QUOTES is enabled.

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.8.2
        • INDENT_ARRAYS

          public static final YAMLGenerator.Feature INDENT_ARRAYS
          Feature enabling of which adds indentation for array entry generation (default indentation being 2 spaces).

          Default value is `false` for backwards compatibility

          Since:
          2.9
        • USE_PLATFORM_LINE_BREAKS

          public static final YAMLGenerator.Feature USE_PLATFORM_LINE_BREAKS
          Option passed to SnakeYAML that determines if the line breaks used for serialization should be same as what the default is for current platform. If disabled, Unix linefeed (\n) will be used.

          Default value is `false` for backwards compatibility.

          Since:
          2.9.6
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static YAMLGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLGenerator.Feature c : YAMLGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.html ================================================ YAMLGenerator (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class YAMLGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Field Detail

        • PLAIN_NUMBER_P

          protected static final Pattern PLAIN_NUMBER_P
        • TAG_BINARY

          protected static final String TAG_BINARY
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
        • _writer

          protected Writer _writer
        • _outputOptions

          protected org.yaml.snakeyaml.DumperOptions _outputOptions
        • _emitter

          protected org.yaml.snakeyaml.emitter.Emitter _emitter
        • _objectId

          protected String _objectId
          YAML supports native Object identifiers, so databinder may indicate need to output one.
        • _typeId

          protected String _typeId
          YAML supports native Type identifiers, so databinder may indicate need to output one.
      • Constructor Detail

        • YAMLGenerator

          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                               int jsonFeatures,
                               int yamlFeatures,
                               com.fasterxml.jackson.core.ObjectCodec codec,
                               Writer out,
                               org.yaml.snakeyaml.DumperOptions.Version version)
                        throws IOException
          Throws:
          IOException
      • Method Detail

        • buildDumperOptions

          protected org.yaml.snakeyaml.DumperOptions buildDumperOptions(int jsonFeatures,
                                                                        int yamlFeatures,
                                                                        org.yaml.snakeyaml.DumperOptions.Version version)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public YAMLGenerator useDefaultPrettyPrinter()
          Not sure what to do here; could reset indentation to some value maybe?
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public YAMLGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Not sure what to do here; will always indent, but uses YAML-specific settings etc.
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          SnakeYAML does not expose buffered content amount, so we can only return -1 from here
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeFieldId

          public void writeFieldId(long id)
                            throws IOException
          Overrides:
          writeFieldId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStringField

          public final void writeStringField(String fieldName,
                                             String value)
                                      throws IOException
          Overrides:
          writeStringField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public final void writeUTF8String(byte[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • writeTypeId

          public void writeTypeId(Object id)
                           throws IOException
          Overrides:
          writeTypeId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectRef

          public void writeObjectRef(Object id)
                              throws IOException
          Overrides:
          writeObjectRef in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectId

          public void writeObjectId(Object id)
                             throws IOException
          Overrides:
          writeObjectId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _scalarEvent

          protected org.yaml.snakeyaml.events.ScalarEvent _scalarEvent(String value,
                                                                       org.yaml.snakeyaml.DumperOptions.ScalarStyle style)
        • _lf

          protected String _lf()

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.Builder.html ================================================ YAMLMapper.Builder (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper.Builder

    • Enclosing class:
      YAMLMapper


      public static class YAMLMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<YAMLMapper,YAMLMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      Since:
      3.0
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        YAMLMapper.Builder configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper.Builder disable(YAMLGenerator.Feature... features) 
        YAMLMapper.Builder enable(YAMLGenerator.Feature... features) 
        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, deactivateDefaultTyping, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, serializationInclusion, serializerFactory, streamFactory, subtypeResolver, typeFactory, visibility, visibility

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.html ================================================ YAMLMapper (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        static YAMLMapper.Builder builder() 
        static YAMLMapper.Builder builder(YAMLFactory streamFactory) 
        YAMLMapper configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper configure(YAMLParser.Feature f, boolean state) 
        YAMLMapper copy() 
        YAMLMapper disable(YAMLGenerator.Feature f) 
        YAMLMapper disable(YAMLParser.Feature f) 
        YAMLMapper enable(YAMLGenerator.Feature f) 
        YAMLMapper enable(YAMLParser.Feature f) 
        YAMLFactory getFactory()
        Overridden with more specific type, since factory we have is always of type YAMLFactory
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createObjectNode, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/YAMLParser.Feature.html ================================================ YAMLParser.Feature (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLParser.Feature

      • Method Detail

        • values

          public static YAMLParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLParser.Feature c : YAMLParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/YAMLParser.html ================================================ YAMLParser (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class YAMLParser
      extends com.fasterxml.jackson.core.base.ParserBase
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLParser.Feature
        Enumeration that defines all togglable features for YAML parsers.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _cleanedTextValue
        For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        protected String _currentAnchor
        Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
        protected String _currentFieldName
        Let's also have a local copy of the current field name
        protected boolean _currentIsAlias
        Flag that is set when current token was derived from an Alias (reference to another value's anchor)
        protected int _formatFeatures 
        protected org.yaml.snakeyaml.events.Event _lastEvent
        Keep track of the last event read, to get access to Location info
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected Reader _reader
        Need to keep track of underlying Reader to be able to auto-close it (if required to)
        protected String _textValue
        We need to keep track of text values.
        protected org.yaml.snakeyaml.parser.ParserImpl _yamlParser 
        protected org.yaml.snakeyaml.resolver.Resolver _yamlResolver 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserBase

          _binaryValue, _byteArrayBuilder, _closed, _currInputProcessed, _currInputRow, _currInputRowStart, _expLength, _fractLength, _inputEnd, _inputPtr, _intLength, _ioContext, _nameCopied, _nameCopyBuffer, _nextToken, _numberBigDecimal, _numberBigInt, _numberDouble, _numberInt, _numberLong, _numberNegative, _numTypesValid, _parsingContext, _textBuffer, _tokenInputCol, _tokenInputRow, _tokenInputTotal
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt, com.fasterxml.jackson.core.util.BufferRecycler br, int parserFeatures, int formatFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Method Summary

        All Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _closeInput() 
        protected com.fasterxml.jackson.core.JsonToken _decodeIntWithUnderscores(String value, int len) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value, int len) 
        protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar) 
        protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m) 
        protected Boolean _matchYAMLBoolean(String value, int len) 
        protected int _parseIntValue() 
        protected void _parseNumericValue(int expType) 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f, boolean state)
        Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser disable(YAMLParser.Feature f)
        Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser enable(YAMLParser.Feature f)
        Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        String getCurrentAnchor()
        Deprecated. 
        Since 2.3 (was added in 2.1) -- use getObjectId() instead
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        Object getEmbeddedObject() 
        int getFormatFeatures() 
        String getObjectId() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        String getTypeId() 
        boolean hasTextCharacters() 
        boolean isCurrentAlias()
        Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
        boolean isEnabled(YAMLParser.Feature f)
        Method for checking whether specified CSV YAMLParser.Feature is enabled.
        com.fasterxml.jackson.core.JsonToken nextToken() 
        com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values, int mask) 
        int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant, OutputStream out) 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserBase

          _checkStdFeatureChanges, _decodeBase64Escape, _decodeBase64Escape, _decodeEscaped, _eofAsNextChar, _finishString, _getByteArrayBuilder, _getSourceReference, _handleBase64MissingPadding, _handleEOF, _handleUnrecognizedCharacterEscape, _releaseBuffers, _reportMismatchedEndMarker, _reportTooLongIntegral, _throwUnquotedSpace, _validJsonTokenList, _validJsonValueList, close, convertNumberToBigDecimal, convertNumberToBigInteger, convertNumberToDouble, convertNumberToInt, convertNumberToLong, disable, enable, getBigIntegerValue, getBinaryValue, getCurrentValue, getDecimalValue, getDoubleValue, getFloatValue, getIntValue, getLongValue, getNumberType, getNumberValue, getParsingContext, getTokenCharacterOffset, getTokenColumnNr, getTokenLineNr, growArrayBy, isClosed, isNaN, loadMore, loadMoreGuaranteed, overrideCurrentName, overrideStdFeatures, reportInvalidBase64Char, reportInvalidBase64Char, reset, resetAsNaN, resetFloat, resetInt, setCurrentValue, setFeatureMask
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _reportUnsupportedOperation, canParseAsync, canUseSchema, configure, currentName, finishToken, getBinaryValue, getBooleanValue, getByteValue, getFeatureMask, getInputSource, getNonBlockingInputFeeder, getSchema, getShortValue, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, requiresCustomCodec, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError, setSchema
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _reader

          protected final Reader _reader
          Need to keep track of underlying Reader to be able to auto-close it (if required to)
        • _yamlParser

          protected final org.yaml.snakeyaml.parser.ParserImpl _yamlParser
        • _yamlResolver

          protected final org.yaml.snakeyaml.resolver.Resolver _yamlResolver
        • _lastEvent

          protected org.yaml.snakeyaml.events.Event _lastEvent
          Keep track of the last event read, to get access to Location info
        • _textValue

          protected String _textValue
          We need to keep track of text values.
        • _cleanedTextValue

          protected String _cleanedTextValue
          For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        • _currentFieldName

          protected String _currentFieldName
          Let's also have a local copy of the current field name
        • _currentIsAlias

          protected boolean _currentIsAlias
          Flag that is set when current token was derived from an Alias (reference to another value's anchor)
          Since:
          2.1
        • _currentAnchor

          protected String _currentAnchor
          Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
      • Constructor Detail

        • YAMLParser

          public YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                            com.fasterxml.jackson.core.util.BufferRecycler br,
                            int parserFeatures,
                            int formatFeatures,
                            com.fasterxml.jackson.core.ObjectCodec codec,
                            Reader reader)
      • Method Detail

        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • isCurrentAlias

          public boolean isCurrentAlias()
          Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
          Since:
          2.1
        • getCurrentAnchor

          @Deprecated
          public String getCurrentAnchor()
          Deprecated. Since 2.3 (was added in 2.1) -- use getObjectId() instead
          Method that can be used to check if the current token has an associated anchor (id to reference via Alias)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.ParserBase
        • _closeInput

          protected void _closeInput()
                              throws IOException
          Specified by:
          _closeInput in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Overrides:
          getTokenLocation in class com.fasterxml.jackson.core.base.ParserBase
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Overrides:
          getCurrentLocation in class com.fasterxml.jackson.core.base.ParserBase
        • _locationFor

          protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m)
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _decodeScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar)
                                                                throws IOException
          Throws:
          IOException
        • _matchYAMLBoolean

          protected Boolean _matchYAMLBoolean(String value,
                                              int len)
        • _decodeNumberScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value,
                                                                             int len)
        • _decodeIntWithUnderscores

          protected com.fasterxml.jackson.core.JsonToken _decodeIntWithUnderscores(String value,
                                                                                   int len)
        • hasTextCharacters

          public boolean hasTextCharacters()
          Overrides:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Overrides:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • readBinaryValue

          public int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant,
                                     OutputStream out)
                              throws IOException
          Overrides:
          readBinaryValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Overrides:
          _parseNumericValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • _parseIntValue

          protected int _parseIntValue()
                                throws IOException
          Overrides:
          _parseIntValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getObjectId

          public String getObjectId()
                             throws IOException
          Overrides:
          getObjectId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTypeId

          public String getTypeId()
                           throws IOException
          Overrides:
          getTypeId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/JacksonYAMLParseException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.PackageVersion (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.yaml.PackageVersion

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Reader (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Writer (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactory (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactory

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.10.0 API)

    com.fasterxml.jackson.dataformat.yaml

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.10.0 API)

    Package com.fasterxml.jackson.dataformat.yaml

    • Class Summary 
      Class Description
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      UTF8Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream.
      UTF8Writer  
      YAMLFactory  
      YAMLFactoryBuilder
      TSFBuilder implementation for constructing YAMLFactory instances.
      YAMLGenerator  
      YAMLMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      YAMLMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      YAMLParser
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    • Enum Summary 
      Enum Description
      YAMLGenerator.Feature
      Enumeration that defines all togglable features for YAML generators
      YAMLParser.Feature
      Enumeration that defines all togglable features for YAML parsers.
    • Exception Summary 
      Exception Description
      JacksonYAMLParseException  

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml Class Hierarchy (Jackson-dataformat-YAML 2.10.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JsonProcessingException
              • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/Mark.html ================================================ Mark (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class Mark


    • Deprecated. 
      Should use basic JsonLocation instead

      @Deprecated
      public class Mark
      extends Object
      Placeholder for shaded org.yaml.snakeyaml.error.Mark
      Since:
      2.8 (as non-shaded); earlier shaded in
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.Mark _source
          Deprecated. 
      • Constructor Detail

        • Mark

          protected Mark(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
      • Method Detail

        • from

          public static Mark from(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
        • getName

          public String getName()
          Deprecated. 
        • get_snippet

          public String get_snippet()
          Deprecated. 
        • get_snippet

          public String get_snippet(int indent,
                                    int max_length)
          Deprecated. 
        • getColumn

          public int getColumn()
          Deprecated. 
        • getLine

          public int getLine()
          Deprecated. 
        • getIndex

          public int getIndex()
          Deprecated. 

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/MarkedYAMLException.html ================================================ MarkedYAMLException (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class MarkedYAMLException

    • All Implemented Interfaces:
      Serializable

      Deprecated. 
      Since 2.8

      @Deprecated
      public class MarkedYAMLException
      extends YAMLException
      Replacement for formerly shaded exception type from SnakeYAML; included in 2.8 solely for backwards compatibility: new code that relies on Jackson 2.8 and alter should NOT use this type but only base type YAMLException.
      See Also:
      Serialized Form
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.MarkedYAMLException _source
          Deprecated. 
      • Constructor Detail

        • MarkedYAMLException

          protected MarkedYAMLException(com.fasterxml.jackson.core.JsonParser p,
                                        org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static MarkedYAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                                 org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
        • getContext

          public String getContext()
          Deprecated. 
        • getContextMark

          public Mark getContextMark()
          Deprecated. 
        • getProblem

          public String getProblem()
          Deprecated. 
        • getProblemMark

          public Mark getProblemMark()
          Deprecated. 

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/YAMLException.html ================================================ YAMLException (Jackson-dataformat-YAML 2.10.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class YAMLException

      • Constructor Detail

        • YAMLException

          public YAMLException(com.fasterxml.jackson.core.JsonParser p,
                               org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static YAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                           org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/Mark.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/MarkedYAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/YAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.10.0 API)

    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.10.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    See: Description

    • Class Summary 
      Class Description
      Mark Deprecated
      Should use basic JsonLocation instead
    • Exception Summary 
      Exception Description
      MarkedYAMLException Deprecated
      Since 2.8
      YAMLException Deprecated
      Since 2.8

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Description

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types. This is needed to improve backwards compatibility with frameworks like DropWizard.

    New code based on Jackson 2.8 and later should NOT use types in this package but instead rely on JacksonYAMLParseException

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Class Hierarchy (Jackson-dataformat-YAML 2.10.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.10.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-YAML 2.10.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-YAML 2.10.0 API)

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/help-doc.html ================================================ API Help (Jackson-dataformat-YAML 2.10.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/index-all.html ================================================ Index (Jackson-dataformat-YAML 2.10.0 API)
    A B C D E F G H I J M N O P R S T U V W Y _ 

    A

    append(char) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    B

    build() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    buildDumperOptions(int, int, DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Main factory method to use for constructing YAMLFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    builder(YAMLFactory) - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    Builder(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     

    C

    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    com.fasterxml.jackson.dataformat.yaml - package com.fasterxml.jackson.dataformat.yaml
     
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error - package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified parser feature (check YAMLParser.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     

    D

    DEFAULT_YAML_GENERATOR_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all generator features that are enabled by default.
    DEFAULT_YAML_PARSER_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all parser features that are enabled by default.
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified parser features (check YAMLParser.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    disable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)

    E

    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified parser feature (check YAMLParser.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified generator features (check YAMLGenerator.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    enable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     

    F

    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    FORMAT_NAME_YAML - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Name used to identify YAML format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(Mark) - Static method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    from(JsonParser, MarkedYAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    from(JsonParser, YAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     

    G

    get_snippet() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    get_snippet(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getColumn() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getContext() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getContextMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getCurrentAnchor() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Deprecated.
    Since 2.3 (was added in 2.1) -- use YAMLParser.getObjectId() instead
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    Overridden with more specific type, since factory we have is always of type YAMLFactory
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getLine() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    SnakeYAML does not expose buffered content amount, so we can only return -1 from here
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getProblem() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getProblemMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Sub-classes need to override this method (as of 1.8)
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    I

    isCurrentAlias() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Checked whether specified parser feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Check whether specified generator feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for checking whether specified CSV YAMLParser.Feature is enabled.

    J

    JacksonYAMLParseException - Exception in com.fasterxml.jackson.dataformat.yaml
     
    JacksonYAMLParseException(JsonParser, String, Exception) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException
     

    M

    Mark - Class in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Should use basic JsonLocation instead
    Mark(Mark) - Constructor for class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    MarkedYAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    MarkedYAMLException(JsonParser, MarkedYAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    N

    nextToken() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    O

    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.yaml
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    PLAIN_NUMBER_P - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readResolve() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; will always indent, but uses YAML-specific settings etc.

    T

    TAG_BINARY - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; could reset indentation to some value maybe?
    UTF8 - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.yaml
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Reader(byte[], int, int, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.yaml
     
    UTF8Writer(OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    W

    write(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldId(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectRef(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStringField(String, String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeTypeId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    Y

    YAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    YAMLException(JsonParser, YAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     
    YAMLFactory - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLFactory() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Default constructor used to create factory instances.
    YAMLFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Constructors used by YAMLFactoryBuilder for instantiation.
    YAMLFactoryBuilder - Class in com.fasterxml.jackson.dataformat.yaml
    TSFBuilder implementation for constructing YAMLFactory instances.
    YAMLFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLFactoryBuilder(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLGenerator - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLGenerator(IOContext, int, int, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    YAMLGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML generators
    YAMLMapper - Class in com.fasterxml.jackson.dataformat.yaml
    Convenience version of ObjectMapper which is configured with YAMLFactory.
    YAMLMapper() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper.Builder - Class in com.fasterxml.jackson.dataformat.yaml
    Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
    YAMLParser - Class in com.fasterxml.jackson.dataformat.yaml
    JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    YAMLParser(IOContext, BufferRecycler, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    YAMLParser.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML parsers.

    _

    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This ThreadLocal contains a SoftRerefence to a byte array used for holding content to decode
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
    This ThreadLocal contains a SoftRerefence to a byte array used for holding content to decode
    _cleanedTextValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _currentAnchor - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
    _currentFieldName - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Let's also have a local copy of the current field name
    _currentIsAlias - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Flag that is set when current token was derived from an Alias (reference to another value's anchor)
    _decodeIntWithUnderscores(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberScalar(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeScalar(ScalarEvent) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _emitter - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Set of YAMLGenerator.Features enabled, as bitmask.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointed to the end marker, that is, position one after the last valid available byte.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointer to the next available byte (if any), iff less than mByteBufferEnd
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _lastEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Keep track of the last event read, to get access to Location info
    _lf() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _locationFor(Mark) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _matchYAMLBoolean(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Codec used for data binding when (if) requested.
    _objectId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Object identifiers, so databinder may indicate need to output one.
    _outputOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Need to keep track of underlying Reader to be able to auto-close it (if required to)
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _scalarEvent(String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _source - Variable in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    _source - Variable in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    _surrogate - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Decoded first character of a surrogate pair, if one needs to be buffered
    _textValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    We need to keep track of text values.
    _typeId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Type identifiers, so databinder may indicate need to output one.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _writeScalar(String, String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _yamlGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlParser - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _yamlParserFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlResolver - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    A B C D E F G H I J M N O P R S T U V W Y _ 

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/index.html ================================================ Jackson-dataformat-YAML 2.10.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/yaml/2.10/javadoc.sh ================================================ /Library/Java/JavaVirtualMachines/jdk1.8.0_162.jdk/Contents/Home/jre/../bin/javadoc @options @packages ================================================ FILE: docs/javadoc/yaml/2.10/options ================================================ -classpath '/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.10.0/jackson-annotations-2.10.0.jar:/Users/tatu/.m2/repository/org/yaml/snakeyaml/1.24/snakeyaml-1.24.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.10.0/jackson-core-2.10.0.jar' -encoding 'UTF-8' -protected -quiet -sourcepath '/opt/java/jackson-dataformats-text/yaml/src/main/java:/opt/java/jackson-dataformats-text/yaml/target/generated-sources:/opt/java/jackson-dataformats-text/yaml/target/generated-sources/annotations' -author -bottom 'Copyright © 2019 FasterXML. All rights reserved.' -charset 'UTF-8' -d '/opt/java/jackson-dataformats-text/yaml/target/apidocs' -docencoding 'UTF-8' -doctitle 'Jackson-dataformat-YAML 2.10.0 API' -link 'https://docs.oracle.com/javase/8/docs/api' -linkoffline 'https://docs.oracle.com/javase/7/docs/api' '/opt/java/jackson-dataformats-text/yaml/target/javadoc-bundle-options' -use -version -windowtitle 'Jackson-dataformat-YAML 2.10.0 API' ================================================ FILE: docs/javadoc/yaml/2.10/overview-frame.html ================================================ Overview List (Jackson-dataformat-YAML 2.10.0 API)

     

    ================================================ FILE: docs/javadoc/yaml/2.10/overview-summary.html ================================================ Overview (Jackson-dataformat-YAML 2.10.0 API)

    Jackson-dataformat-YAML 2.10.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.yaml  
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-YAML 2.10.0 API)

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JsonProcessingException
              • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/package-list ================================================ com.fasterxml.jackson.dataformat.yaml com.fasterxml.jackson.dataformat.yaml.snakeyaml.error ================================================ FILE: docs/javadoc/yaml/2.10/packages ================================================ com.fasterxml.jackson.dataformat.yaml com.fasterxml.jackson.dataformat.yaml.snakeyaml.error ================================================ FILE: docs/javadoc/yaml/2.10/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/yaml/2.10/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-YAML 2.10.0 API)

    Serialized Form

    Copyright © 2019 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.10/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/yaml/2.11/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-YAML 2.11.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.11/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-YAML 2.11.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/JacksonYAMLParseException.html ================================================ JacksonYAMLParseException (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class JacksonYAMLParseException

    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      YAMLException


      public class JacksonYAMLParseException
      extends com.fasterxml.jackson.core.JsonParseException
      Since:
      2.8
      See Also:
      Serialized Form
      • Constructor Detail

        • JacksonYAMLParseException

          public JacksonYAMLParseException(com.fasterxml.jackson.core.JsonParser p,
                                           String msg,
                                           Exception e)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Field Detail

        • _bufferRecycler

          protected static final ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
          This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
        • _bufferHolder

          protected final byte[][] _bufferHolder
        • _inputBuffer

          protected byte[] _inputBuffer
        • _inputPtr

          protected int _inputPtr
          Pointer to the next available byte (if any), iff less than mByteBufferEnd
        • _inputEnd

          protected int _inputEnd
          Pointed to the end marker, that is, position one after the last valid available byte.
        • _surrogate

          protected int _surrogate
          Decoded first character of a surrogate pair, if one needs to be buffered
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(InputStream in,
                            boolean autoClose)
        • UTF8Reader

          public UTF8Reader(byte[] buf,
                            int ptr,
                            int len,
                            boolean autoClose)
      • Method Detail

        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Returns:
          Number of bytes read, if any; -1 for end-of-input.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Writer

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/YAMLFactory.html ================================================ YAMLFactory (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • UTF8

          protected static final Charset UTF8
        • DEFAULT_YAML_PARSER_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_PARSER_FEATURE_FLAGS
          Bitfield (set of flags) of all parser features that are enabled by default.
        • DEFAULT_YAML_GENERATOR_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_GENERATOR_FEATURE_FLAGS
          Bitfield (set of flags) of all generator features that are enabled by default.
        • _yamlParserFeatures

          protected int _yamlParserFeatures
        • _yamlGeneratorFeatures

          protected int _yamlGeneratorFeatures
        • _version

          protected org.yaml.snakeyaml.DumperOptions.Version _version
      • Constructor Detail

        • YAMLFactory

          public YAMLFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • YAMLFactory

          public YAMLFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • YAMLFactory

          public YAMLFactory(YAMLFactory src,
                             com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • rebuild

          public YAMLFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static YAMLFactoryBuilder builder()
          Main factory method to use for constructing YAMLFactory instances with different configuration.
        • copy

          public YAMLFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method (as of 1.8)
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • isEnabled

          public final boolean isEnabled(YAMLParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(YAMLGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public YAMLParser createParser(char[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(char[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public YAMLGenerator createGenerator(OutputStream out,
                                               com.fasterxml.jackson.core.JsonEncoding enc)
                                        throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(File f,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(InputStream in,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(Reader r,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(char[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt,
                                             boolean recyclable)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(byte[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected YAMLGenerator _createGenerator(Writer out,
                                                   com.fasterxml.jackson.core.io.IOContext ctxt)
                                            throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected YAMLGenerator _createUTF8Generator(OutputStream out,
                                                       com.fasterxml.jackson.core.io.IOContext ctxt)
                                                throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/YAMLFactoryBuilder.html ================================================ YAMLFactoryBuilder (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.Feature.html ================================================ YAMLGenerator.Feature (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLGenerator.Feature

      • Enum Constant Detail

        • WRITE_DOC_START_MARKER

          public static final YAMLGenerator.Feature WRITE_DOC_START_MARKER
          Whether we are to write an explicit document start marker ("---") or not.
          Since:
          2.3
        • USE_NATIVE_OBJECT_ID

          public static final YAMLGenerator.Feature USE_NATIVE_OBJECT_ID
          Whether to use YAML native Object Id construct for indicating type (true); or "generic" Object Id mechanism (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • USE_NATIVE_TYPE_ID

          public static final YAMLGenerator.Feature USE_NATIVE_TYPE_ID
          Whether to use YAML native Type Id construct for indicating type (true); or "generic" type property (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • CANONICAL_OUTPUT

          public static final YAMLGenerator.Feature CANONICAL_OUTPUT
          Do we try to force so-called canonical output or not.
        • SPLIT_LINES

          public static final YAMLGenerator.Feature SPLIT_LINES
          Options passed to SnakeYAML that determines whether longer textual content gets automatically split into multiple lines or not.

          Feature is enabled by default to conform to SnakeYAML defaults as well as backwards compatibility with 2.5 and earlier versions.

          Since:
          2.6
        • MINIMIZE_QUOTES

          public static final YAMLGenerator.Feature MINIMIZE_QUOTES
          Whether strings will be rendered without quotes (true) or with quotes (false, default).

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.7
        • ALWAYS_QUOTE_NUMBERS_AS_STRINGS

          public static final YAMLGenerator.Feature ALWAYS_QUOTE_NUMBERS_AS_STRINGS
          Whether numbers stored as strings will be rendered with quotes (true) or without quotes (false, default) when MINIMIZE_QUOTES is enabled.

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.8.2
        • INDENT_ARRAYS

          public static final YAMLGenerator.Feature INDENT_ARRAYS
          Feature enabling of which adds indentation for array entry generation (default indentation being 2 spaces).

          Default value is `false` for backwards compatibility

          Since:
          2.9
        • USE_PLATFORM_LINE_BREAKS

          public static final YAMLGenerator.Feature USE_PLATFORM_LINE_BREAKS
          Option passed to SnakeYAML that determines if the line breaks used for serialization should be same as what the default is for current platform. If disabled, Unix linefeed (\n) will be used.

          Default value is `false` for backwards compatibility.

          Since:
          2.9.6
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static YAMLGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLGenerator.Feature c : YAMLGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.html ================================================ YAMLGenerator (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class YAMLGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Field Detail

        • PLAIN_NUMBER_P

          protected static final Pattern PLAIN_NUMBER_P
        • TAG_BINARY

          protected static final String TAG_BINARY
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
        • _writer

          protected Writer _writer
        • _outputOptions

          protected org.yaml.snakeyaml.DumperOptions _outputOptions
        • _docVersion

          protected final org.yaml.snakeyaml.DumperOptions.Version _docVersion
        • _emitter

          protected org.yaml.snakeyaml.emitter.Emitter _emitter
        • _objectId

          protected String _objectId
          YAML supports native Object identifiers, so databinder may indicate need to output one.
        • _typeId

          protected String _typeId
          YAML supports native Type identifiers, so databinder may indicate need to output one.
        • _rootValueCount

          protected int _rootValueCount
      • Constructor Detail

        • YAMLGenerator

          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                               int jsonFeatures,
                               int yamlFeatures,
                               com.fasterxml.jackson.core.ObjectCodec codec,
                               Writer out,
                               org.yaml.snakeyaml.DumperOptions.Version version)
                        throws IOException
          Throws:
          IOException
      • Method Detail

        • buildDumperOptions

          protected org.yaml.snakeyaml.DumperOptions buildDumperOptions(int jsonFeatures,
                                                                        int yamlFeatures,
                                                                        org.yaml.snakeyaml.DumperOptions.Version version)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public YAMLGenerator useDefaultPrettyPrinter()
          Not sure what to do here; could reset indentation to some value maybe?
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public YAMLGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Not sure what to do here; will always indent, but uses YAML-specific settings etc.
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          SnakeYAML does not expose buffered content amount, so we can only return -1 from here
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeFieldId

          public void writeFieldId(long id)
                            throws IOException
          Overrides:
          writeFieldId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public final void writeUTF8String(byte[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • writeTypeId

          public void writeTypeId(Object id)
                           throws IOException
          Overrides:
          writeTypeId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectRef

          public void writeObjectRef(Object id)
                              throws IOException
          Overrides:
          writeObjectRef in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectId

          public void writeObjectId(Object id)
                             throws IOException
          Overrides:
          writeObjectId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _scalarEvent

          protected org.yaml.snakeyaml.events.ScalarEvent _scalarEvent(String value,
                                                                       org.yaml.snakeyaml.DumperOptions.ScalarStyle style)
        • _lf

          protected String _lf()
        • _emit

          protected final void _emit(org.yaml.snakeyaml.events.Event e)
                              throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.Builder.html ================================================ YAMLMapper.Builder (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper.Builder

    • Enclosing class:
      YAMLMapper


      public static class YAMLMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<YAMLMapper,YAMLMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      Since:
      3.0
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        YAMLMapper.Builder configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper.Builder disable(YAMLGenerator.Feature... features) 
        YAMLMapper.Builder enable(YAMLGenerator.Feature... features) 
        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, deactivateDefaultTyping, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, serializationInclusion, serializerFactory, streamFactory, subtypeResolver, typeFactory, visibility, visibility

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.html ================================================ YAMLMapper (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        static YAMLMapper.Builder builder() 
        static YAMLMapper.Builder builder(YAMLFactory streamFactory) 
        YAMLMapper configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper configure(YAMLParser.Feature f, boolean state) 
        YAMLMapper copy() 
        YAMLMapper disable(YAMLGenerator.Feature f) 
        YAMLMapper disable(YAMLParser.Feature f) 
        YAMLMapper enable(YAMLGenerator.Feature f) 
        YAMLMapper enable(YAMLParser.Feature f) 
        YAMLFactory getFactory()
        Overridden with more specific type, since factory we have is always of type YAMLFactory
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/YAMLParser.Feature.html ================================================ YAMLParser.Feature (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLParser.Feature

      • Method Detail

        • values

          public static YAMLParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLParser.Feature c : YAMLParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/YAMLParser.html ================================================ YAMLParser (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class YAMLParser
      extends com.fasterxml.jackson.core.base.ParserBase
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLParser.Feature
        Enumeration that defines all togglable features for YAML parsers.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _cleanedTextValue
        For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        protected String _currentAnchor
        Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
        protected String _currentFieldName
        Let's also have a local copy of the current field name
        protected boolean _currentIsAlias
        Flag that is set when current token was derived from an Alias (reference to another value's anchor)
        protected int _formatFeatures 
        protected org.yaml.snakeyaml.events.Event _lastEvent
        Keep track of the last event read, to get access to Location info
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected Reader _reader
        Need to keep track of underlying Reader to be able to auto-close it (if required to)
        protected String _textValue
        We need to keep track of text values.
        protected org.yaml.snakeyaml.parser.ParserImpl _yamlParser 
        protected org.yaml.snakeyaml.resolver.Resolver _yamlResolver 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserBase

          _binaryValue, _byteArrayBuilder, _closed, _currInputProcessed, _currInputRow, _currInputRowStart, _expLength, _fractLength, _inputEnd, _inputPtr, _intLength, _ioContext, _nameCopied, _nameCopyBuffer, _nextToken, _numberBigDecimal, _numberBigInt, _numberDouble, _numberInt, _numberLong, _numberNegative, _numTypesValid, _parsingContext, _textBuffer, _tokenInputCol, _tokenInputRow, _tokenInputTotal
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt, com.fasterxml.jackson.core.util.BufferRecycler br, int parserFeatures, int formatFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Method Summary

        All Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _closeInput() 
        protected com.fasterxml.jackson.core.JsonToken _decodeIntWithUnderscores(String value, int len) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value, int len) 
        protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar) 
        protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m) 
        protected Boolean _matchYAMLBoolean(String value, int len) 
        protected int _parseIntValue() 
        protected void _parseNumericValue(int expType) 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f, boolean state)
        Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser disable(YAMLParser.Feature f)
        Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser enable(YAMLParser.Feature f)
        Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        String getCurrentAnchor()
        Deprecated. 
        Since 2.3 (was added in 2.1) -- use getObjectId() instead
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        Object getEmbeddedObject() 
        int getFormatFeatures() 
        String getObjectId() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        String getTypeId() 
        boolean hasTextCharacters() 
        boolean isCurrentAlias()
        Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
        boolean isEnabled(YAMLParser.Feature f)
        Method for checking whether specified CSV YAMLParser.Feature is enabled.
        com.fasterxml.jackson.core.JsonToken nextToken() 
        com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values, int mask) 
        int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant, OutputStream out) 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserBase

          _checkStdFeatureChanges, _decodeBase64Escape, _decodeBase64Escape, _decodeEscaped, _eofAsNextChar, _finishString, _getByteArrayBuilder, _getSourceReference, _handleBase64MissingPadding, _handleEOF, _handleUnrecognizedCharacterEscape, _releaseBuffers, _reportMismatchedEndMarker, _reportTooLongIntegral, _throwUnquotedSpace, _validJsonTokenList, _validJsonValueList, close, convertNumberToBigDecimal, convertNumberToBigInteger, convertNumberToDouble, convertNumberToInt, convertNumberToLong, disable, enable, getBigIntegerValue, getBinaryValue, getCurrentValue, getDecimalValue, getDoubleValue, getFloatValue, getIntValue, getLongValue, getNumberType, getNumberValue, getParsingContext, getTokenCharacterOffset, getTokenColumnNr, getTokenLineNr, growArrayBy, isClosed, isNaN, loadMore, loadMoreGuaranteed, overrideCurrentName, overrideStdFeatures, reportInvalidBase64Char, reportInvalidBase64Char, reset, resetAsNaN, resetFloat, resetInt, setCurrentValue, setFeatureMask
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _reportUnsupportedOperation, canParseAsync, canUseSchema, configure, currentName, finishToken, getBinaryValue, getBooleanValue, getByteValue, getFeatureMask, getInputSource, getNonBlockingInputFeeder, getSchema, getShortValue, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, requiresCustomCodec, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError, setSchema
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _reader

          protected final Reader _reader
          Need to keep track of underlying Reader to be able to auto-close it (if required to)
        • _yamlParser

          protected final org.yaml.snakeyaml.parser.ParserImpl _yamlParser
        • _yamlResolver

          protected final org.yaml.snakeyaml.resolver.Resolver _yamlResolver
        • _lastEvent

          protected org.yaml.snakeyaml.events.Event _lastEvent
          Keep track of the last event read, to get access to Location info
        • _textValue

          protected String _textValue
          We need to keep track of text values.
        • _cleanedTextValue

          protected String _cleanedTextValue
          For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        • _currentFieldName

          protected String _currentFieldName
          Let's also have a local copy of the current field name
        • _currentIsAlias

          protected boolean _currentIsAlias
          Flag that is set when current token was derived from an Alias (reference to another value's anchor)
          Since:
          2.1
        • _currentAnchor

          protected String _currentAnchor
          Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
      • Constructor Detail

        • YAMLParser

          public YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                            com.fasterxml.jackson.core.util.BufferRecycler br,
                            int parserFeatures,
                            int formatFeatures,
                            com.fasterxml.jackson.core.ObjectCodec codec,
                            Reader reader)
      • Method Detail

        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • isCurrentAlias

          public boolean isCurrentAlias()
          Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
          Since:
          2.1
        • getCurrentAnchor

          @Deprecated
          public String getCurrentAnchor()
          Deprecated. Since 2.3 (was added in 2.1) -- use getObjectId() instead
          Method that can be used to check if the current token has an associated anchor (id to reference via Alias)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.ParserBase
        • _closeInput

          protected void _closeInput()
                              throws IOException
          Specified by:
          _closeInput in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Overrides:
          getTokenLocation in class com.fasterxml.jackson.core.base.ParserBase
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Overrides:
          getCurrentLocation in class com.fasterxml.jackson.core.base.ParserBase
        • _locationFor

          protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m)
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _decodeScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar)
                                                                throws IOException
          Throws:
          IOException
        • _matchYAMLBoolean

          protected Boolean _matchYAMLBoolean(String value,
                                              int len)
        • _decodeNumberScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value,
                                                                             int len)
        • _decodeIntWithUnderscores

          protected com.fasterxml.jackson.core.JsonToken _decodeIntWithUnderscores(String value,
                                                                                   int len)
        • hasTextCharacters

          public boolean hasTextCharacters()
          Overrides:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Overrides:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • readBinaryValue

          public int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant,
                                     OutputStream out)
                              throws IOException
          Overrides:
          readBinaryValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Overrides:
          _parseNumericValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • _parseIntValue

          protected int _parseIntValue()
                                throws IOException
          Overrides:
          _parseIntValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getObjectId

          public String getObjectId()
                             throws IOException
          Overrides:
          getObjectId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTypeId

          public String getTypeId()
                           throws IOException
          Overrides:
          getTypeId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/JacksonYAMLParseException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.PackageVersion (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.yaml.PackageVersion

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Reader (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Writer (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactory (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactory

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.11.0 API)

    com.fasterxml.jackson.dataformat.yaml

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.11.0 API)

    Package com.fasterxml.jackson.dataformat.yaml

    • Class Summary 
      Class Description
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      UTF8Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream.
      UTF8Writer  
      YAMLFactory  
      YAMLFactoryBuilder
      TSFBuilder implementation for constructing YAMLFactory instances.
      YAMLGenerator  
      YAMLMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      YAMLMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      YAMLParser
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    • Enum Summary 
      Enum Description
      YAMLGenerator.Feature
      Enumeration that defines all togglable features for YAML generators
      YAMLParser.Feature
      Enumeration that defines all togglable features for YAML parsers.
    • Exception Summary 
      Exception Description
      JacksonYAMLParseException  

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml Class Hierarchy (Jackson-dataformat-YAML 2.11.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JsonProcessingException
              • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/Mark.html ================================================ Mark (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class Mark


    • Deprecated. 
      Should use basic JsonLocation instead

      @Deprecated
      public class Mark
      extends Object
      Placeholder for shaded org.yaml.snakeyaml.error.Mark
      Since:
      2.8 (as non-shaded); earlier shaded in
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.Mark _source
          Deprecated. 
      • Constructor Detail

        • Mark

          protected Mark(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
      • Method Detail

        • from

          public static Mark from(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
        • getName

          public String getName()
          Deprecated. 
        • get_snippet

          public String get_snippet()
          Deprecated. 
        • get_snippet

          public String get_snippet(int indent,
                                    int max_length)
          Deprecated. 
        • getColumn

          public int getColumn()
          Deprecated. 
        • getLine

          public int getLine()
          Deprecated. 
        • getIndex

          public int getIndex()
          Deprecated. 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/MarkedYAMLException.html ================================================ MarkedYAMLException (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class MarkedYAMLException

    • All Implemented Interfaces:
      Serializable

      Deprecated. 
      Since 2.8

      @Deprecated
      public class MarkedYAMLException
      extends YAMLException
      Replacement for formerly shaded exception type from SnakeYAML; included in 2.8 solely for backwards compatibility: new code that relies on Jackson 2.8 and alter should NOT use this type but only base type YAMLException.
      See Also:
      Serialized Form
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.MarkedYAMLException _source
          Deprecated. 
      • Constructor Detail

        • MarkedYAMLException

          protected MarkedYAMLException(com.fasterxml.jackson.core.JsonParser p,
                                        org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static MarkedYAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                                 org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
        • getContext

          public String getContext()
          Deprecated. 
        • getContextMark

          public Mark getContextMark()
          Deprecated. 
        • getProblem

          public String getProblem()
          Deprecated. 
        • getProblemMark

          public Mark getProblemMark()
          Deprecated. 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/YAMLException.html ================================================ YAMLException (Jackson-dataformat-YAML 2.11.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class YAMLException

      • Constructor Detail

        • YAMLException

          public YAMLException(com.fasterxml.jackson.core.JsonParser p,
                               org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static YAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                           org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/Mark.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/MarkedYAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/YAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.11.0 API)

    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.11.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    See: Description

    • Class Summary 
      Class Description
      Mark Deprecated
      Should use basic JsonLocation instead
    • Exception Summary 
      Exception Description
      MarkedYAMLException Deprecated
      Since 2.8
      YAMLException Deprecated
      Since 2.8

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Description

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types. This is needed to improve backwards compatibility with frameworks like DropWizard.

    New code based on Jackson 2.8 and later should NOT use types in this package but instead rely on JacksonYAMLParseException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Class Hierarchy (Jackson-dataformat-YAML 2.11.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.11.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-YAML 2.11.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-YAML 2.11.0 API)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/help-doc.html ================================================ API Help (Jackson-dataformat-YAML 2.11.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/index-all.html ================================================ Index (Jackson-dataformat-YAML 2.11.0 API)
    A B C D E F G H I J M N O P R S T U V W Y _ 

    A

    append(char) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    B

    build() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    buildDumperOptions(int, int, DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Main factory method to use for constructing YAMLFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    builder(YAMLFactory) - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    Builder(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     

    C

    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    com.fasterxml.jackson.dataformat.yaml - package com.fasterxml.jackson.dataformat.yaml
     
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error - package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified parser feature (check YAMLParser.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     

    D

    DEFAULT_YAML_GENERATOR_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all generator features that are enabled by default.
    DEFAULT_YAML_PARSER_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all parser features that are enabled by default.
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified parser features (check YAMLParser.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    disable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)

    E

    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified parser feature (check YAMLParser.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified generator features (check YAMLGenerator.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    enable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     

    F

    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    FORMAT_NAME_YAML - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Name used to identify YAML format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(Mark) - Static method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    from(JsonParser, MarkedYAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    from(JsonParser, YAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     

    G

    get_snippet() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    get_snippet(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getColumn() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getContext() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getContextMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getCurrentAnchor() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Deprecated.
    Since 2.3 (was added in 2.1) -- use YAMLParser.getObjectId() instead
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    Overridden with more specific type, since factory we have is always of type YAMLFactory
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getLine() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    SnakeYAML does not expose buffered content amount, so we can only return -1 from here
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getProblem() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getProblemMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Sub-classes need to override this method (as of 1.8)
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    I

    isCurrentAlias() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Checked whether specified parser feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Check whether specified generator feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for checking whether specified CSV YAMLParser.Feature is enabled.

    J

    JacksonYAMLParseException - Exception in com.fasterxml.jackson.dataformat.yaml
     
    JacksonYAMLParseException(JsonParser, String, Exception) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException
     

    M

    Mark - Class in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Should use basic JsonLocation instead
    Mark(Mark) - Constructor for class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    MarkedYAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    MarkedYAMLException(JsonParser, MarkedYAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    N

    nextToken() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    O

    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.yaml
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    PLAIN_NUMBER_P - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readResolve() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; will always indent, but uses YAML-specific settings etc.

    T

    TAG_BINARY - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; could reset indentation to some value maybe?
    UTF8 - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.yaml
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Reader(byte[], int, int, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.yaml
     
    UTF8Writer(OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    W

    write(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldId(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectRef(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeTypeId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    Y

    YAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    YAMLException(JsonParser, YAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     
    YAMLFactory - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLFactory() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Default constructor used to create factory instances.
    YAMLFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Constructors used by YAMLFactoryBuilder for instantiation.
    YAMLFactoryBuilder - Class in com.fasterxml.jackson.dataformat.yaml
    TSFBuilder implementation for constructing YAMLFactory instances.
    YAMLFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLFactoryBuilder(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLGenerator - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLGenerator(IOContext, int, int, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    YAMLGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML generators
    YAMLMapper - Class in com.fasterxml.jackson.dataformat.yaml
    Convenience version of ObjectMapper which is configured with YAMLFactory.
    YAMLMapper() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper.Builder - Class in com.fasterxml.jackson.dataformat.yaml
    Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
    YAMLParser - Class in com.fasterxml.jackson.dataformat.yaml
    JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    YAMLParser(IOContext, BufferRecycler, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    YAMLParser.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML parsers.

    _

    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
    This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
    _cleanedTextValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _currentAnchor - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
    _currentFieldName - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Let's also have a local copy of the current field name
    _currentIsAlias - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Flag that is set when current token was derived from an Alias (reference to another value's anchor)
    _decodeIntWithUnderscores(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberScalar(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeScalar(ScalarEvent) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _docVersion - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emit(Event) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitEndDocument() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitStartDocument() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitter - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Set of YAMLGenerator.Features enabled, as bitmask.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointed to the end marker, that is, position one after the last valid available byte.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointer to the next available byte (if any), iff less than mByteBufferEnd
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _lastEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Keep track of the last event read, to get access to Location info
    _lf() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _locationFor(Mark) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _matchYAMLBoolean(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Codec used for data binding when (if) requested.
    _objectId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Object identifiers, so databinder may indicate need to output one.
    _outputOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Need to keep track of underlying Reader to be able to auto-close it (if required to)
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _rootValueCount - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _scalarEvent(String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _source - Variable in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    _source - Variable in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    _surrogate - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Decoded first character of a surrogate pair, if one needs to be buffered
    _textValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    We need to keep track of text values.
    _typeId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Type identifiers, so databinder may indicate need to output one.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _writeScalar(String, String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _yamlGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlParser - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _yamlParserFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlResolver - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    A B C D E F G H I J M N O P R S T U V W Y _ 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/index.html ================================================ Jackson-dataformat-YAML 2.11.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/yaml/2.11/overview-frame.html ================================================ Overview List (Jackson-dataformat-YAML 2.11.0 API)

     

    ================================================ FILE: docs/javadoc/yaml/2.11/overview-summary.html ================================================ Overview (Jackson-dataformat-YAML 2.11.0 API)

    Jackson-dataformat-YAML 2.11.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.yaml  
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-YAML 2.11.0 API)

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JsonProcessingException
              • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/package-list ================================================ com.fasterxml.jackson.dataformat.yaml com.fasterxml.jackson.dataformat.yaml.snakeyaml.error ================================================ FILE: docs/javadoc/yaml/2.11/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/yaml/2.11/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-YAML 2.11.0 API)

    Serialized Form

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.11/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/yaml/2.12/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-YAML 2.12.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.12/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-YAML 2.12.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/JacksonYAMLParseException.html ================================================ JacksonYAMLParseException (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class JacksonYAMLParseException

    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      YAMLException


      public class JacksonYAMLParseException
      extends com.fasterxml.jackson.core.JsonParseException
      Since:
      2.8
      See Also:
      Serialized Form
      • Constructor Detail

        • JacksonYAMLParseException

          public JacksonYAMLParseException(com.fasterxml.jackson.core.JsonParser p,
                                           String msg,
                                           Exception e)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Field Detail

        • _bufferRecycler

          protected static final ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
          This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
        • _bufferHolder

          protected final byte[][] _bufferHolder
        • _inputBuffer

          protected byte[] _inputBuffer
        • _inputPtr

          protected int _inputPtr
          Pointer to the next available byte (if any), iff less than mByteBufferEnd
        • _inputEnd

          protected int _inputEnd
          Pointed to the end marker, that is, position one after the last valid available byte.
        • _surrogate

          protected int _surrogate
          Decoded first character of a surrogate pair, if one needs to be buffered
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(InputStream in,
                            boolean autoClose)
        • UTF8Reader

          public UTF8Reader(byte[] buf,
                            int ptr,
                            int len,
                            boolean autoClose)
      • Method Detail

        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Returns:
          Number of bytes read, if any; -1 for end-of-input.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Writer

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/YAMLFactory.html ================================================ YAMLFactory (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • UTF8

          protected static final Charset UTF8
        • DEFAULT_YAML_PARSER_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_PARSER_FEATURE_FLAGS
          Bitfield (set of flags) of all parser features that are enabled by default.
        • DEFAULT_YAML_GENERATOR_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_GENERATOR_FEATURE_FLAGS
          Bitfield (set of flags) of all generator features that are enabled by default.
        • _yamlParserFeatures

          protected int _yamlParserFeatures
        • _yamlGeneratorFeatures

          protected int _yamlGeneratorFeatures
        • _version

          protected final org.yaml.snakeyaml.DumperOptions.Version _version
          YAML version for underlying generator to follow, if specified.
          Since:
          2.12
        • _quotingChecker

          protected final StringQuotingChecker _quotingChecker
          Helper object used to determine whether property names, String values must be quoted or not.
          Since:
          2.12
      • Constructor Detail

        • YAMLFactory

          public YAMLFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • YAMLFactory

          public YAMLFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • YAMLFactory

          public YAMLFactory(YAMLFactory src,
                             com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2
      • Method Detail

        • rebuild

          public YAMLFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static YAMLFactoryBuilder builder()
          Main factory method to use for constructing YAMLFactory instances with different configuration.
        • copy

          public YAMLFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatReadFeatureType

          public Class<YAMLParser.Feature> getFormatReadFeatureType()
          Overrides:
          getFormatReadFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • getFormatWriteFeatureType

          public Class<YAMLGenerator.Feature> getFormatWriteFeatureType()
          Overrides:
          getFormatWriteFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • isEnabled

          public final boolean isEnabled(YAMLParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(YAMLGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public YAMLParser createParser(char[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(char[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public YAMLGenerator createGenerator(OutputStream out,
                                               com.fasterxml.jackson.core.JsonEncoding enc)
                                        throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(File f,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(InputStream in,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(Reader r,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(char[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt,
                                             boolean recyclable)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(byte[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected YAMLGenerator _createGenerator(Writer out,
                                                   com.fasterxml.jackson.core.io.IOContext ctxt)
                                            throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected YAMLGenerator _createUTF8Generator(OutputStream out,
                                                       com.fasterxml.jackson.core.io.IOContext ctxt)
                                                throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/YAMLFactoryBuilder.html ================================================ YAMLFactoryBuilder (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactoryBuilder

      • Field Detail

        • _formatGeneratorFeatures

          protected int _formatGeneratorFeatures
          Set of YAMLGenerator.Features enabled, as bitmask.
        • _quotingChecker

          protected StringQuotingChecker _quotingChecker
          Helper object used to determine whether property names, String values must be quoted or not.
          Since:
          2.12
        • _version

          protected org.yaml.snakeyaml.DumperOptions.Version _version
          YAML version for underlying generator to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
      • Constructor Detail

        • YAMLFactoryBuilder

          protected YAMLFactoryBuilder()
        • YAMLFactoryBuilder

          public YAMLFactoryBuilder(YAMLFactory base)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.Feature.html ================================================ YAMLGenerator.Feature (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLGenerator.Feature

      • Enum Constant Detail

        • WRITE_DOC_START_MARKER

          public static final YAMLGenerator.Feature WRITE_DOC_START_MARKER
          Whether we are to write an explicit document start marker ("---") or not.
          Since:
          2.3
        • USE_NATIVE_OBJECT_ID

          public static final YAMLGenerator.Feature USE_NATIVE_OBJECT_ID
          Whether to use YAML native Object Id construct for indicating type (true); or "generic" Object Id mechanism (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • USE_NATIVE_TYPE_ID

          public static final YAMLGenerator.Feature USE_NATIVE_TYPE_ID
          Whether to use YAML native Type Id construct for indicating type (true); or "generic" type property (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • CANONICAL_OUTPUT

          public static final YAMLGenerator.Feature CANONICAL_OUTPUT
          Do we try to force so-called canonical output or not.
        • SPLIT_LINES

          public static final YAMLGenerator.Feature SPLIT_LINES
          Options passed to SnakeYAML that determines whether longer textual content gets automatically split into multiple lines or not.

          Feature is enabled by default to conform to SnakeYAML defaults as well as backwards compatibility with 2.5 and earlier versions.

          Since:
          2.6
        • MINIMIZE_QUOTES

          public static final YAMLGenerator.Feature MINIMIZE_QUOTES
          Whether strings will be rendered without quotes (true) or with quotes (false, default).

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.7
        • ALWAYS_QUOTE_NUMBERS_AS_STRINGS

          public static final YAMLGenerator.Feature ALWAYS_QUOTE_NUMBERS_AS_STRINGS
          Whether numbers stored as strings will be rendered with quotes (true) or without quotes (false, default) when MINIMIZE_QUOTES is enabled.

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.8.2
        • INDENT_ARRAYS

          public static final YAMLGenerator.Feature INDENT_ARRAYS
          Feature enabling of which adds indentation for array entry generation (default indentation being 2 spaces).

          Default value is false for backwards compatibility

          Since:
          2.9
        • INDENT_ARRAYS_WITH_INDICATOR

          public static final YAMLGenerator.Feature INDENT_ARRAYS_WITH_INDICATOR
          Feature enabling of which adds indentation with indicator for array entry generation (default indentation being 2 spaces).

          Default value is false for backwards compatibility

          Since:
          2.12
        • USE_PLATFORM_LINE_BREAKS

          public static final YAMLGenerator.Feature USE_PLATFORM_LINE_BREAKS
          Option passed to SnakeYAML that determines if the line breaks used for serialization should be same as what the default is for current platform. If disabled, Unix linefeed (\n) will be used.

          Default value is false for backwards compatibility.

          Since:
          2.9.6
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static YAMLGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLGenerator.Feature c : YAMLGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.html ================================================ YAMLGenerator (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class YAMLGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Field Detail

        • PLAIN_NUMBER_P

          protected static final Pattern PLAIN_NUMBER_P
        • TAG_BINARY

          protected static final String TAG_BINARY
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
        • _writer

          protected Writer _writer
        • _outputOptions

          protected org.yaml.snakeyaml.DumperOptions _outputOptions
        • _docVersion

          protected final org.yaml.snakeyaml.DumperOptions.Version _docVersion
        • _emitter

          protected org.yaml.snakeyaml.emitter.Emitter _emitter
        • _objectId

          protected String _objectId
          YAML supports native Object identifiers, so databinder may indicate need to output one.
        • _typeId

          protected String _typeId
          YAML supports native Type identifiers, so databinder may indicate need to output one.
        • _rootValueCount

          protected int _rootValueCount
      • Constructor Detail

        • YAMLGenerator

          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                               int jsonFeatures,
                               int yamlFeatures,
                               StringQuotingChecker quotingChecker,
                               com.fasterxml.jackson.core.ObjectCodec codec,
                               Writer out,
                               org.yaml.snakeyaml.DumperOptions.Version version)
                        throws IOException
          Throws:
          IOException
        • YAMLGenerator

          @Deprecated
          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                                           int jsonFeatures,
                                           int yamlFeatures,
                                           com.fasterxml.jackson.core.ObjectCodec codec,
                                           Writer out,
                                           org.yaml.snakeyaml.DumperOptions.Version version)
                                    throws IOException
          Deprecated. 
          Throws:
          IOException
      • Method Detail

        • buildDumperOptions

          protected org.yaml.snakeyaml.DumperOptions buildDumperOptions(int jsonFeatures,
                                                                        int yamlFeatures,
                                                                        org.yaml.snakeyaml.DumperOptions.Version version)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public YAMLGenerator useDefaultPrettyPrinter()
          Not sure what to do here; could reset indentation to some value maybe?
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public YAMLGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Not sure what to do here; will always indent, but uses YAML-specific settings etc.
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          SnakeYAML does not expose buffered content amount, so we can only return -1 from here
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeFieldId

          public void writeFieldId(long id)
                            throws IOException
          Overrides:
          writeFieldId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public final void writeUTF8String(byte[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • writeTypeId

          public void writeTypeId(Object id)
                           throws IOException
          Overrides:
          writeTypeId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectRef

          public void writeObjectRef(Object id)
                              throws IOException
          Overrides:
          writeObjectRef in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectId

          public void writeObjectId(Object id)
                             throws IOException
          Overrides:
          writeObjectId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _scalarEvent

          protected org.yaml.snakeyaml.events.ScalarEvent _scalarEvent(String value,
                                                                       org.yaml.snakeyaml.DumperOptions.ScalarStyle style)
        • _lf

          protected String _lf()
        • _emit

          protected final void _emit(org.yaml.snakeyaml.events.Event e)
                              throws IOException
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.Builder.html ================================================ YAMLMapper.Builder (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper.Builder

    • Enclosing class:
      YAMLMapper


      public static class YAMLMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<YAMLMapper,YAMLMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      Since:
      3.0

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.html ================================================ YAMLMapper (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        static YAMLMapper.Builder builder() 
        static YAMLMapper.Builder builder(YAMLFactory streamFactory) 
        YAMLMapper configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper configure(YAMLParser.Feature f, boolean state) 
        YAMLMapper copy() 
        YAMLMapper disable(YAMLGenerator.Feature f) 
        YAMLMapper disable(YAMLParser.Feature f) 
        YAMLMapper enable(YAMLGenerator.Feature f) 
        YAMLMapper enable(YAMLParser.Feature f) 
        YAMLFactory getFactory()
        Overridden with more specific type, since factory we have is always of type YAMLFactory
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/YAMLParser.Feature.html ================================================ YAMLParser.Feature (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLParser.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<YAMLParser.Feature>
      Enclosing class:
      YAMLParser


      public static enum YAMLParser.Feature
      extends Enum<YAMLParser.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for YAML parsers.
      • Enum Constant Detail

        • EMPTY_STRING_AS_NULL

          public static final YAMLParser.Feature EMPTY_STRING_AS_NULL
          Feature that determines whether an empty String will be parsed as null. Logic is part of YAML 1.1 Null Language-Independent Type.

          Feature is enabled by default in Jackson 2.12 for backwards-compatibility reasons.

      • Method Detail

        • values

          public static YAMLParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLParser.Feature c : YAMLParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/YAMLParser.html ================================================ YAMLParser (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class YAMLParser
      extends com.fasterxml.jackson.core.base.ParserBase
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLParser.Feature
        Enumeration that defines all togglable features for YAML parsers.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected boolean _cfgEmptyStringsToNull 
        protected String _cleanedTextValue
        For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        protected String _currentAnchor
        Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
        protected String _currentFieldName
        Let's also have a local copy of the current field name
        protected boolean _currentIsAlias
        Flag that is set when current token was derived from an Alias (reference to another value's anchor)
        protected int _formatFeatures 
        protected org.yaml.snakeyaml.events.Event _lastEvent
        Keep track of the last event read, to get access to Location info
        protected org.yaml.snakeyaml.events.Event _lastTagEvent
        To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected Reader _reader
        Need to keep track of underlying Reader to be able to auto-close it (if required to)
        protected String _textValue
        We need to keep track of text values.
        protected org.yaml.snakeyaml.parser.ParserImpl _yamlParser 
        protected org.yaml.snakeyaml.resolver.Resolver _yamlResolver 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserBase

          _binaryValue, _byteArrayBuilder, _closed, _currInputProcessed, _currInputRow, _currInputRowStart, _expLength, _fractLength, _inputEnd, _inputPtr, _intLength, _ioContext, _nameCopied, _nameCopyBuffer, _nextToken, _numberBigDecimal, _numberBigInt, _numberDouble, _numberInt, _numberLong, _numberNegative, _numTypesValid, _parsingContext, _textBuffer, _tokenInputCol, _tokenInputRow, _tokenInputTotal, JSON_READ_CAPABILITIES
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt, com.fasterxml.jackson.core.util.BufferRecycler br, int parserFeatures, int formatFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Method Summary

        All Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _closeInput() 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntBinary(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntHex(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntOctal(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value, int len) 
        protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar) 
        protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m) 
        protected Boolean _matchYAMLBoolean(String value, int len) 
        protected int _parseIntValue() 
        protected void _parseNumericValue(int expType) 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f, boolean state)
        Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser disable(YAMLParser.Feature f)
        Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser enable(YAMLParser.Feature f)
        Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        String getCurrentAnchor()
        Deprecated. 
        Since 2.3 (was added in 2.1) -- use getObjectId() instead
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        Object getEmbeddedObject() 
        int getFormatFeatures() 
        String getObjectId() 
        com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        String getTypeId() 
        boolean hasTextCharacters() 
        boolean isCurrentAlias()
        Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
        boolean isEnabled(YAMLParser.Feature f)
        Method for checking whether specified CSV YAMLParser.Feature is enabled.
        com.fasterxml.jackson.core.JsonToken nextToken() 
        com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values, int mask) 
        int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant, OutputStream out) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserBase

          _checkStdFeatureChanges, _decodeBase64Escape, _decodeBase64Escape, _decodeEscaped, _eofAsNextChar, _finishString, _getByteArrayBuilder, _getSourceReference, _handleBase64MissingPadding, _handleEOF, _handleUnrecognizedCharacterEscape, _releaseBuffers, _reportMismatchedEndMarker, _reportTooLongIntegral, _throwUnquotedSpace, _validJsonTokenList, _validJsonValueList, close, convertNumberToBigDecimal, convertNumberToBigInteger, convertNumberToDouble, convertNumberToInt, convertNumberToLong, disable, enable, getBigIntegerValue, getBinaryValue, getCurrentValue, getDecimalValue, getDoubleValue, getFloatValue, getIntValue, getLongValue, getNumberType, getNumberValue, getNumberValueExact, getParsingContext, getTokenCharacterOffset, getTokenColumnNr, getTokenLineNr, growArrayBy, isClosed, isNaN, loadMore, loadMoreGuaranteed, overrideCurrentName, overrideStdFeatures, reportInvalidBase64Char, reportInvalidBase64Char, reset, resetAsNaN, resetFloat, resetInt, setCurrentValue, setFeatureMask
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedNumberIntToken, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _reportUnsupportedOperation, canParseAsync, canUseSchema, configure, currentName, finishToken, getBinaryValue, getBooleanValue, getByteValue, getFeatureMask, getInputSource, getNonBlockingInputFeeder, getSchema, getShortValue, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError, setSchema
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _cfgEmptyStringsToNull

          protected boolean _cfgEmptyStringsToNull
        • _reader

          protected final Reader _reader
          Need to keep track of underlying Reader to be able to auto-close it (if required to)
        • _yamlParser

          protected final org.yaml.snakeyaml.parser.ParserImpl _yamlParser
        • _yamlResolver

          protected final org.yaml.snakeyaml.resolver.Resolver _yamlResolver
        • _lastEvent

          protected org.yaml.snakeyaml.events.Event _lastEvent
          Keep track of the last event read, to get access to Location info
        • _lastTagEvent

          protected org.yaml.snakeyaml.events.Event _lastTagEvent
          To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
          Since:
          2.12
        • _textValue

          protected String _textValue
          We need to keep track of text values.
        • _cleanedTextValue

          protected String _cleanedTextValue
          For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        • _currentFieldName

          protected String _currentFieldName
          Let's also have a local copy of the current field name
        • _currentIsAlias

          protected boolean _currentIsAlias
          Flag that is set when current token was derived from an Alias (reference to another value's anchor)
          Since:
          2.1
        • _currentAnchor

          protected String _currentAnchor
          Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
      • Constructor Detail

        • YAMLParser

          public YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                            com.fasterxml.jackson.core.util.BufferRecycler br,
                            int parserFeatures,
                            int formatFeatures,
                            com.fasterxml.jackson.core.ObjectCodec codec,
                            Reader reader)
      • Method Detail

        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • isCurrentAlias

          public boolean isCurrentAlias()
          Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
          Since:
          2.1
        • getCurrentAnchor

          @Deprecated
          public String getCurrentAnchor()
          Deprecated. Since 2.3 (was added in 2.1) -- use getObjectId() instead
          Method that can be used to check if the current token has an associated anchor (id to reference via Alias)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.ParserBase
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • _closeInput

          protected void _closeInput()
                              throws IOException
          Specified by:
          _closeInput in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Overrides:
          getTokenLocation in class com.fasterxml.jackson.core.base.ParserBase
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Overrides:
          getCurrentLocation in class com.fasterxml.jackson.core.base.ParserBase
        • _locationFor

          protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m)
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _decodeScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar)
                                                                throws IOException
          Throws:
          IOException
        • _matchYAMLBoolean

          protected Boolean _matchYAMLBoolean(String value,
                                              int len)
        • _decodeNumberScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value,
                                                                             int len)
        • _decodeNumberIntBinary

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntBinary(String value,
                                                                                int i,
                                                                                int origLen,
                                                                                boolean negative)
        • _decodeNumberIntOctal

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntOctal(String value,
                                                                               int i,
                                                                               int origLen,
                                                                               boolean negative)
        • _decodeNumberIntHex

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntHex(String value,
                                                                             int i,
                                                                             int origLen,
                                                                             boolean negative)
        • hasTextCharacters

          public boolean hasTextCharacters()
          Overrides:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Overrides:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • readBinaryValue

          public int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant,
                                     OutputStream out)
                              throws IOException
          Overrides:
          readBinaryValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Overrides:
          _parseNumericValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • _parseIntValue

          protected int _parseIntValue()
                                throws IOException
          Overrides:
          _parseIntValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getObjectId

          public String getObjectId()
                             throws IOException
          Overrides:
          getObjectId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTypeId

          public String getTypeId()
                           throws IOException
          Overrides:
          getTypeId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/JacksonYAMLParseException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.PackageVersion (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.yaml.PackageVersion

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Reader (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Writer (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactory (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactory

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.12.0 API)

    com.fasterxml.jackson.dataformat.yaml

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.yaml

    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).

    See: Description

    • Class Summary 
      Class Description
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      UTF8Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream.
      UTF8Writer  
      YAMLFactory  
      YAMLFactoryBuilder
      TSFBuilder implementation for constructing YAMLFactory instances.
      YAMLGenerator  
      YAMLMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      YAMLMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      YAMLParser
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    • Enum Summary 
      Enum Description
      YAMLGenerator.Feature
      Enumeration that defines all togglable features for YAML generators
      YAMLParser.Feature
      Enumeration that defines all togglable features for YAML parsers.
    • Exception Summary 
      Exception Description
      JacksonYAMLParseException  

    Package com.fasterxml.jackson.dataformat.yaml Description

    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml Class Hierarchy (Jackson-dataformat-YAML 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/Mark.html ================================================ Mark (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class Mark


    • Deprecated. 
      Should use basic JsonLocation instead

      @Deprecated
      public class Mark
      extends Object
      Placeholder for shaded org.yaml.snakeyaml.error.Mark
      Since:
      2.8 (as non-shaded); earlier shaded in
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.Mark _source
          Deprecated. 
      • Constructor Detail

        • Mark

          protected Mark(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
      • Method Detail

        • from

          public static Mark from(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
        • getName

          public String getName()
          Deprecated. 
        • get_snippet

          public String get_snippet()
          Deprecated. 
        • get_snippet

          public String get_snippet(int indent,
                                    int max_length)
          Deprecated. 
        • getColumn

          public int getColumn()
          Deprecated. 
        • getLine

          public int getLine()
          Deprecated. 
        • getIndex

          public int getIndex()
          Deprecated. 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/MarkedYAMLException.html ================================================ MarkedYAMLException (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class MarkedYAMLException

    • All Implemented Interfaces:
      Serializable

      Deprecated. 
      Since 2.8

      @Deprecated
      public class MarkedYAMLException
      extends YAMLException
      Replacement for formerly shaded exception type from SnakeYAML; included in 2.8 solely for backwards compatibility: new code that relies on Jackson 2.8 and after should NOT use this type but only base type JacksonYAMLParseException.
      See Also:
      Serialized Form
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.MarkedYAMLException _source
          Deprecated. 
      • Constructor Detail

        • MarkedYAMLException

          protected MarkedYAMLException(com.fasterxml.jackson.core.JsonParser p,
                                        org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static MarkedYAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                                 org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
        • getContext

          public String getContext()
          Deprecated. 
        • getContextMark

          public Mark getContextMark()
          Deprecated. 
        • getProblem

          public String getProblem()
          Deprecated. 
        • getProblemMark

          public Mark getProblemMark()
          Deprecated. 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/YAMLException.html ================================================ YAMLException (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class YAMLException

      • Constructor Detail

        • YAMLException

          public YAMLException(com.fasterxml.jackson.core.JsonParser p,
                               org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static YAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                           org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/Mark.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/MarkedYAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/YAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.12.0 API)

    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    See: Description

    • Class Summary 
      Class Description
      Mark Deprecated
      Should use basic JsonLocation instead
    • Exception Summary 
      Exception Description
      MarkedYAMLException Deprecated
      Since 2.8
      YAMLException Deprecated
      Since 2.8

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Description

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types. This is needed to improve backwards compatibility with frameworks like DropWizard.

    New code based on Jackson 2.8 and later should NOT use types in this package but instead rely on JacksonYAMLParseException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Class Hierarchy (Jackson-dataformat-YAML 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/util/StringQuotingChecker.Default.html ================================================ StringQuotingChecker.Default (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml.util

    Class StringQuotingChecker.Default

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/util/StringQuotingChecker.html ================================================ StringQuotingChecker (Jackson-dataformat-YAML 2.12.0 API)
    com.fasterxml.jackson.dataformat.yaml.util

    Class StringQuotingChecker

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      StringQuotingChecker.Default


      public abstract class StringQuotingChecker
      extends Object
      implements Serializable
      Helper class that defines API used by YAMLGenerator to check whether property names and String values need to be quoted or not. Also contains default logic implementation; may be sub-classes to provide alternate implementation.
      Since:
      2.12
      See Also:
      Serialized Form
      • Constructor Detail

        • StringQuotingChecker

          public StringQuotingChecker()
      • Method Detail

        • needToQuoteName

          public abstract boolean needToQuoteName(String name)
          Method called by YAMLGenerator to check whether given property name should be quoted: usually to prevent it from being read as non-String key (boolean or number)
        • needToQuoteValue

          public abstract boolean needToQuoteValue(String value)
          Method called by YAMLGenerator to check whether given String value should be quoted: usually to prevent it from being value of different type (boolean or number).
        • isReservedKeyword

          protected boolean isReservedKeyword(String value)
          Helper method that sub-classes may use to see if given String value is one of:
          • YAML 1.1 keyword representing boolean
          • YAML 1.1 keyword representing null value
          • empty String (length 0)
          • and returns true if so.
          Parameters:
          value - String to check
          Returns:
          true if given value is a Boolean or Null representation (as per YAML 1.1 specification) or empty String
        • _isReservedKeyword

          protected boolean _isReservedKeyword(int firstChar,
                                               String name)
        • looksLikeYAMLNumber

          protected boolean looksLikeYAMLNumber(String name)
          Helper method that sub-classes may use to see if given String value looks like a YAML 1.1 numeric value and would likely be considered a number when parsing unless quoting is used.
        • _looksLikeYAMLNumber

          protected boolean _looksLikeYAMLNumber(int firstChar,
                                                 String name)
        • valueHasQuotableChar

          protected boolean valueHasQuotableChar(String inputStr)
          As per YAML Plain Styleunquoted strings are restricted to a reduced charset and must be quoted in case they contain one of the following characters or character combinations.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/util/class-use/StringQuotingChecker.Default.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/util/class-use/StringQuotingChecker.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.12.0 API)

    com.fasterxml.jackson.dataformat.yaml.util

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.12.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.util

    Helper classes for YAML backend.

    See: Description

    Package com.fasterxml.jackson.dataformat.yaml.util Description

    Helper classes for YAML backend.
    Since:
    2.12

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.util Class Hierarchy (Jackson-dataformat-YAML 2.12.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/com/fasterxml/jackson/dataformat/yaml/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.12.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.util

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-YAML 2.12.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-YAML 2.12.0 API)

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/help-doc.html ================================================ API Help (Jackson-dataformat-YAML 2.12.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/index-all.html ================================================ Index (Jackson-dataformat-YAML 2.12.0 API)
    A B C D E F G H I J L M N O P R S T U V W Y _ 

    A

    append(char) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    B

    build() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    buildDumperOptions(int, int, DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Main factory method to use for constructing YAMLFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    builder(YAMLFactory) - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    Builder(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     

    C

    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    com.fasterxml.jackson.dataformat.yaml - package com.fasterxml.jackson.dataformat.yaml
    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error - package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    com.fasterxml.jackson.dataformat.yaml.util - package com.fasterxml.jackson.dataformat.yaml.util
    Helper classes for YAML backend.
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified parser feature (check YAMLParser.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     

    D

    Default() - Constructor for class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
     
    DEFAULT_YAML_GENERATOR_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all generator features that are enabled by default.
    DEFAULT_YAML_PARSER_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all parser features that are enabled by default.
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified parser features (check YAMLParser.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    disable(YAMLParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    disable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)

    E

    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified parser feature (check YAMLParser.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified generator features (check YAMLGenerator.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    enable(YAMLParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    enable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     

    F

    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    FORMAT_NAME_YAML - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Name used to identify YAML format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(Mark) - Static method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    from(JsonParser, MarkedYAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    from(JsonParser, YAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     

    G

    get_snippet() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    get_snippet(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getColumn() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getContext() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getContextMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getCurrentAnchor() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Deprecated.
    Since 2.3 (was added in 2.1) -- use YAMLParser.getObjectId() instead
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    Overridden with more specific type, since factory we have is always of type YAMLFactory
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatReadFeatureType() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatWriteFeatureType() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getLine() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    SnakeYAML does not expose buffered content amount, so we can only return -1 from here
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getProblem() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getProblemMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    I

    instance() - Static method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
     
    isCurrentAlias() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Checked whether specified parser feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Check whether specified generator feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for checking whether specified CSV YAMLParser.Feature is enabled.
    isReservedKeyword(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Helper method that sub-classes may use to see if given String value is one of: YAML 1.1 keyword representing boolean YAML 1.1 keyword representing null value empty String (length 0) and returns true if so.

    J

    JacksonYAMLParseException - Exception in com.fasterxml.jackson.dataformat.yaml
     
    JacksonYAMLParseException(JsonParser, String, Exception) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException
     

    L

    looksLikeYAMLNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Helper method that sub-classes may use to see if given String value looks like a YAML 1.1 numeric value and would likely be considered a number when parsing unless quoting is used.

    M

    Mark - Class in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Should use basic JsonLocation instead
    Mark(Mark) - Constructor for class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    MarkedYAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    MarkedYAMLException(JsonParser, MarkedYAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    N

    needToQuoteName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
    Default implementation will call StringQuotingChecker.isReservedKeyword(String) and StringQuotingChecker.looksLikeYAMLNumber(String) to determine if quoting should be applied.
    needToQuoteName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Method called by YAMLGenerator to check whether given property name should be quoted: usually to prevent it from being read as non-String key (boolean or number)
    needToQuoteValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
    Default implementation will call StringQuotingChecker.isReservedKeyword(String) and StringQuotingChecker.valueHasQuotableChar(String) to determine if quoting should be applied.
    needToQuoteValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Method called by YAMLGenerator to check whether given String value should be quoted: usually to prevent it from being value of different type (boolean or number).
    nextToken() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    O

    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.yaml
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    PLAIN_NUMBER_P - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readResolve() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; will always indent, but uses YAML-specific settings etc.
    StringQuotingChecker - Class in com.fasterxml.jackson.dataformat.yaml.util
    Helper class that defines API used by YAMLGenerator to check whether property names and String values need to be quoted or not.
    StringQuotingChecker() - Constructor for class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    stringQuotingChecker(StringQuotingChecker) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Method for specifying either custom StringQuotingChecker to use instead of default one, or, that default one (see StringQuotingChecker.Default#instance()) is to be used (when passing null
    stringQuotingChecker() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    StringQuotingChecker.Default - Class in com.fasterxml.jackson.dataformat.yaml.util
    Default StringQuotingChecker implementation used unless custom implementation registered.

    T

    TAG_BINARY - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; could reset indentation to some value maybe?
    UTF8 - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.yaml
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Reader(byte[], int, int, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.yaml
     
    UTF8Writer(OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    V

    valueHasQuotableChar(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    As per YAML Plain Styleunquoted strings are restricted to a reduced charset and must be quoted in case they contain one of the following characters or character combinations.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    W

    write(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldId(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectRef(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeTypeId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    Y

    YAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    YAMLException(JsonParser, YAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     
    YAMLFactory - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLFactory() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Default constructor used to create factory instances.
    YAMLFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Constructors used by YAMLFactoryBuilder for instantiation.
    YAMLFactoryBuilder - Class in com.fasterxml.jackson.dataformat.yaml
    TSFBuilder implementation for constructing YAMLFactory instances.
    YAMLFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLFactoryBuilder(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLGenerator - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLGenerator(IOContext, int, int, StringQuotingChecker, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    YAMLGenerator(IOContext, int, int, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Deprecated.
    YAMLGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML generators
    YAMLMapper - Class in com.fasterxml.jackson.dataformat.yaml
    Convenience version of ObjectMapper which is configured with YAMLFactory.
    YAMLMapper() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper.Builder - Class in com.fasterxml.jackson.dataformat.yaml
    Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
    YAMLParser - Class in com.fasterxml.jackson.dataformat.yaml
    JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    YAMLParser(IOContext, BufferRecycler, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    YAMLParser.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML parsers.
    yamlVersionToWrite(DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Method for specifying YAML version for generator to use (to produce compliant output); if null passed, will let SnakeYAML use its default settings.
    yamlVersionToWrite() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     

    _

    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
    This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
    _cfgEmptyStringsToNull - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _cleanedTextValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _currentAnchor - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
    _currentFieldName - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Let's also have a local copy of the current field name
    _currentIsAlias - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Flag that is set when current token was derived from an Alias (reference to another value's anchor)
    _decodeNumberIntBinary(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberIntHex(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberIntOctal(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberScalar(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeScalar(ScalarEvent) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _docVersion - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emit(Event) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitEndDocument() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitStartDocument() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitter - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Set of YAMLGenerator.Features enabled, as bitmask.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointed to the end marker, that is, position one after the last valid available byte.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointer to the next available byte (if any), iff less than mByteBufferEnd
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _isReservedKeyword(int, String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    _lastEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Keep track of the last event read, to get access to Location info
    _lastTagEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
    _lf() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _locationFor(Mark) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _looksLikeYAMLNumber(int, String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _matchYAMLBoolean(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Codec used for data binding when (if) requested.
    _objectId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Object identifiers, so databinder may indicate need to output one.
    _outputOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Helper object used to determine whether property names, String values must be quoted or not.
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Helper object used to determine whether property names, String values must be quoted or not.
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Need to keep track of underlying Reader to be able to auto-close it (if required to)
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _rootValueCount - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _scalarEvent(String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _source - Variable in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    _source - Variable in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    _surrogate - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Decoded first character of a surrogate pair, if one needs to be buffered
    _textValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    We need to keep track of text values.
    _typeId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Type identifiers, so databinder may indicate need to output one.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    YAML version for underlying generator to follow, if specified.
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    YAML version for underlying generator to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
    _writer - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _writeScalar(String, String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _yamlGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlParser - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _yamlParserFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlResolver - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    A B C D E F G H I J L M N O P R S T U V W Y _ 

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/index.html ================================================ Jackson-dataformat-YAML 2.12.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/yaml/2.12/javadoc.sh ================================================ /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/jre/../bin/javadoc @options @packages ================================================ FILE: docs/javadoc/yaml/2.12/options ================================================ -classpath '/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.0/jackson-databind-2.12.0.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.0/jackson-annotations-2.12.0.jar:/Users/tatu/.m2/repository/org/yaml/snakeyaml/1.27/snakeyaml-1.27.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.0/jackson-core-2.12.0.jar' -encoding 'UTF-8' -protected -quiet -sourcepath '/Users/tatu/jackson/jackson-dataformats-text/yaml/src/main/java:/Users/tatu/jackson/jackson-dataformats-text/yaml/target/generated-sources:/Users/tatu/jackson/jackson-dataformats-text/yaml/target/generated-sources/annotations' -author -bottom 'Copyright © 2020 FasterXML. All rights reserved.' -charset 'UTF-8' -d '/Users/tatu/jackson/jackson-dataformats-text/yaml/target/apidocs' -docencoding 'UTF-8' -doctitle 'Jackson-dataformat-YAML 2.12.0 API' -link 'https://docs.oracle.com/javase/8/docs/api' -linkoffline 'https://docs.oracle.com/javase/7/docs/api' '/Users/tatu/jackson/jackson-dataformats-text/yaml/target/javadoc-bundle-options' -use -version -windowtitle 'Jackson-dataformat-YAML 2.12.0 API' ================================================ FILE: docs/javadoc/yaml/2.12/overview-frame.html ================================================ Overview List (Jackson-dataformat-YAML 2.12.0 API)

     

    ================================================ FILE: docs/javadoc/yaml/2.12/overview-summary.html ================================================ Overview (Jackson-dataformat-YAML 2.12.0 API)

    Jackson-dataformat-YAML 2.12.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.yaml
    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    com.fasterxml.jackson.dataformat.yaml.util
    Helper classes for YAML backend.

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-YAML 2.12.0 API)

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker (implements java.io.Serializable)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/package-list ================================================ com.fasterxml.jackson.dataformat.yaml com.fasterxml.jackson.dataformat.yaml.snakeyaml.error com.fasterxml.jackson.dataformat.yaml.util ================================================ FILE: docs/javadoc/yaml/2.12/packages ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error com.fasterxml.jackson.dataformat.yaml.util com.fasterxml.jackson.dataformat.yaml ================================================ FILE: docs/javadoc/yaml/2.12/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/yaml/2.12/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-YAML 2.12.0 API)

    Serialized Form

    Copyright © 2020 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.12/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/yaml/2.13/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-YAML 2.13.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.13/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-YAML 2.13.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/JacksonYAMLParseException.html ================================================ JacksonYAMLParseException (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class JacksonYAMLParseException

    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      YAMLException


      public class JacksonYAMLParseException
      extends com.fasterxml.jackson.core.JsonParseException
      Since:
      2.8
      See Also:
      Serialized Form
      • Constructor Detail

        • JacksonYAMLParseException

          public JacksonYAMLParseException(com.fasterxml.jackson.core.JsonParser p,
                                           String msg,
                                           Exception e)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Field Detail

        • _bufferRecycler

          protected static final ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
          This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
        • _bufferHolder

          protected final byte[][] _bufferHolder
        • _inputBuffer

          protected byte[] _inputBuffer
        • _inputPtr

          protected int _inputPtr
          Pointer to the next available byte (if any), iff less than mByteBufferEnd
        • _inputEnd

          protected int _inputEnd
          Pointed to the end marker, that is, position one after the last valid available byte.
        • _surrogate

          protected int _surrogate
          Decoded first character of a surrogate pair, if one needs to be buffered
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(InputStream in,
                            boolean autoClose)
        • UTF8Reader

          public UTF8Reader(byte[] buf,
                            int ptr,
                            int len,
                            boolean autoClose)
      • Method Detail

        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Returns:
          Number of bytes read, if any; -1 for end-of-input.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Writer

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/YAMLFactory.html ================================================ YAMLFactory (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • UTF8

          protected static final Charset UTF8
        • DEFAULT_YAML_PARSER_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_PARSER_FEATURE_FLAGS
          Bitfield (set of flags) of all parser features that are enabled by default.
        • DEFAULT_YAML_GENERATOR_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_GENERATOR_FEATURE_FLAGS
          Bitfield (set of flags) of all generator features that are enabled by default.
        • _yamlParserFeatures

          protected int _yamlParserFeatures
        • _yamlGeneratorFeatures

          protected int _yamlGeneratorFeatures
        • _version

          protected final org.yaml.snakeyaml.DumperOptions.Version _version
          YAML version for underlying generator to follow, if specified.
          Since:
          2.12
        • _quotingChecker

          protected final StringQuotingChecker _quotingChecker
          Helper object used to determine whether property names, String values must be quoted or not.
          Since:
          2.12
      • Constructor Detail

        • YAMLFactory

          public YAMLFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • YAMLFactory

          public YAMLFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • YAMLFactory

          public YAMLFactory(YAMLFactory src,
                             com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2
      • Method Detail

        • rebuild

          public YAMLFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static YAMLFactoryBuilder builder()
          Main factory method to use for constructing YAMLFactory instances with different configuration.
        • copy

          public YAMLFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatReadFeatureType

          public Class<YAMLParser.Feature> getFormatReadFeatureType()
          Overrides:
          getFormatReadFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • getFormatWriteFeatureType

          public Class<YAMLGenerator.Feature> getFormatWriteFeatureType()
          Overrides:
          getFormatWriteFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • isEnabled

          public final boolean isEnabled(YAMLParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(YAMLGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public YAMLParser createParser(char[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(char[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public YAMLGenerator createGenerator(OutputStream out,
                                               com.fasterxml.jackson.core.JsonEncoding enc)
                                        throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(File f,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(InputStream in,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(Reader r,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(char[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt,
                                             boolean recyclable)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(byte[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected YAMLGenerator _createGenerator(Writer out,
                                                   com.fasterxml.jackson.core.io.IOContext ctxt)
                                            throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected YAMLGenerator _createUTF8Generator(OutputStream out,
                                                       com.fasterxml.jackson.core.io.IOContext ctxt)
                                                throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/YAMLFactoryBuilder.html ================================================ YAMLFactoryBuilder (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactoryBuilder

      • Field Detail

        • _formatGeneratorFeatures

          protected int _formatGeneratorFeatures
          Set of YAMLGenerator.Features enabled, as bitmask.
        • _quotingChecker

          protected StringQuotingChecker _quotingChecker
          Helper object used to determine whether property names, String values must be quoted or not.
          Since:
          2.12
        • _version

          protected org.yaml.snakeyaml.DumperOptions.Version _version
          YAML version for underlying generator to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
      • Constructor Detail

        • YAMLFactoryBuilder

          protected YAMLFactoryBuilder()
        • YAMLFactoryBuilder

          public YAMLFactoryBuilder(YAMLFactory base)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.Feature.html ================================================ YAMLGenerator.Feature (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLGenerator.Feature

      • Enum Constant Detail

        • WRITE_DOC_START_MARKER

          public static final YAMLGenerator.Feature WRITE_DOC_START_MARKER
          Whether we are to write an explicit document start marker ("---") or not.
          Since:
          2.3
        • USE_NATIVE_OBJECT_ID

          public static final YAMLGenerator.Feature USE_NATIVE_OBJECT_ID
          Whether to use YAML native Object Id construct for indicating type (true); or "generic" Object Id mechanism (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • USE_NATIVE_TYPE_ID

          public static final YAMLGenerator.Feature USE_NATIVE_TYPE_ID
          Whether to use YAML native Type Id construct for indicating type (true); or "generic" type property (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • CANONICAL_OUTPUT

          public static final YAMLGenerator.Feature CANONICAL_OUTPUT
          Do we try to force so-called canonical output or not.
        • SPLIT_LINES

          public static final YAMLGenerator.Feature SPLIT_LINES
          Options passed to SnakeYAML that determines whether longer textual content gets automatically split into multiple lines or not.

          Feature is enabled by default to conform to SnakeYAML defaults as well as backwards compatibility with 2.5 and earlier versions.

          Since:
          2.6
        • MINIMIZE_QUOTES

          public static final YAMLGenerator.Feature MINIMIZE_QUOTES
          Whether strings will be rendered without quotes (true) or with quotes (false, default).

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.7
        • ALWAYS_QUOTE_NUMBERS_AS_STRINGS

          public static final YAMLGenerator.Feature ALWAYS_QUOTE_NUMBERS_AS_STRINGS
          Whether numbers stored as strings will be rendered with quotes (true) or without quotes (false, default) when MINIMIZE_QUOTES is enabled.

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.8.2
        • INDENT_ARRAYS

          public static final YAMLGenerator.Feature INDENT_ARRAYS
          Feature enabling of which adds indentation for array entry generation (default indentation being 2 spaces).

          Default value is false for backwards compatibility

          Since:
          2.9
        • INDENT_ARRAYS_WITH_INDICATOR

          public static final YAMLGenerator.Feature INDENT_ARRAYS_WITH_INDICATOR
          Feature enabling of which adds indentation with indicator for array entry generation (default indentation being 2 spaces).

          Default value is false for backwards compatibility

          Since:
          2.12
        • USE_PLATFORM_LINE_BREAKS

          public static final YAMLGenerator.Feature USE_PLATFORM_LINE_BREAKS
          Option passed to SnakeYAML that determines if the line breaks used for serialization should be same as what the default is for current platform. If disabled, Unix linefeed (\n) will be used.

          Default value is false for backwards compatibility.

          Since:
          2.9.6
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static YAMLGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLGenerator.Feature c : YAMLGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.html ================================================ YAMLGenerator (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class YAMLGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Field Detail

        • PLAIN_NUMBER_P

          protected static final Pattern PLAIN_NUMBER_P
        • TAG_BINARY

          protected static final String TAG_BINARY
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
        • _writer

          protected Writer _writer
        • _outputOptions

          protected org.yaml.snakeyaml.DumperOptions _outputOptions
        • _docVersion

          protected final org.yaml.snakeyaml.DumperOptions.Version _docVersion
        • _emitter

          protected org.yaml.snakeyaml.emitter.Emitter _emitter
        • _objectId

          protected String _objectId
          YAML supports native Object identifiers, so databinder may indicate need to output one.
        • _typeId

          protected String _typeId
          YAML supports native Type identifiers, so databinder may indicate need to output one.
        • _rootValueCount

          protected int _rootValueCount
      • Constructor Detail

        • YAMLGenerator

          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                               int jsonFeatures,
                               int yamlFeatures,
                               StringQuotingChecker quotingChecker,
                               com.fasterxml.jackson.core.ObjectCodec codec,
                               Writer out,
                               org.yaml.snakeyaml.DumperOptions.Version version)
                        throws IOException
          Throws:
          IOException
        • YAMLGenerator

          @Deprecated
          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                                           int jsonFeatures,
                                           int yamlFeatures,
                                           com.fasterxml.jackson.core.ObjectCodec codec,
                                           Writer out,
                                           org.yaml.snakeyaml.DumperOptions.Version version)
                                    throws IOException
          Deprecated. 
          Throws:
          IOException
      • Method Detail

        • buildDumperOptions

          protected org.yaml.snakeyaml.DumperOptions buildDumperOptions(int jsonFeatures,
                                                                        int yamlFeatures,
                                                                        org.yaml.snakeyaml.DumperOptions.Version version)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public YAMLGenerator useDefaultPrettyPrinter()
          Not sure what to do here; could reset indentation to some value maybe?
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public YAMLGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Not sure what to do here; will always indent, but uses YAML-specific settings etc.
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          SnakeYAML does not expose buffered content amount, so we can only return -1 from here
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeFieldId

          public void writeFieldId(long id)
                            throws IOException
          Overrides:
          writeFieldId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public final void writeUTF8String(byte[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • writeTypeId

          public void writeTypeId(Object id)
                           throws IOException
          Overrides:
          writeTypeId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectRef

          public void writeObjectRef(Object id)
                              throws IOException
          Overrides:
          writeObjectRef in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectId

          public void writeObjectId(Object id)
                             throws IOException
          Overrides:
          writeObjectId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _scalarEvent

          protected org.yaml.snakeyaml.events.ScalarEvent _scalarEvent(String value,
                                                                       org.yaml.snakeyaml.DumperOptions.ScalarStyle style)
        • _lf

          protected String _lf()
        • _emit

          protected final void _emit(org.yaml.snakeyaml.events.Event e)
                              throws IOException
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.Builder.html ================================================ YAMLMapper.Builder (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper.Builder

    • Enclosing class:
      YAMLMapper


      public static class YAMLMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<YAMLMapper,YAMLMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      Since:
      3.0
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.html ================================================ YAMLMapper (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        static YAMLMapper.Builder builder() 
        static YAMLMapper.Builder builder(YAMLFactory streamFactory) 
        YAMLMapper configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper configure(YAMLParser.Feature f, boolean state) 
        YAMLMapper copy() 
        YAMLMapper disable(YAMLGenerator.Feature f) 
        YAMLMapper disable(YAMLParser.Feature f) 
        YAMLMapper enable(YAMLGenerator.Feature f) 
        YAMLMapper enable(YAMLParser.Feature f) 
        YAMLFactory getFactory()
        Overridden with more specific type, since factory we have is always of type YAMLFactory
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultAttributes, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
        • Methods inherited from class com.fasterxml.jackson.core.ObjectCodec

          getJsonFactory

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/YAMLParser.Feature.html ================================================ YAMLParser.Feature (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLParser.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<YAMLParser.Feature>
      Enclosing class:
      YAMLParser


      public static enum YAMLParser.Feature
      extends Enum<YAMLParser.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for YAML parsers.
      • Enum Constant Detail

        • EMPTY_STRING_AS_NULL

          public static final YAMLParser.Feature EMPTY_STRING_AS_NULL
          Feature that determines whether an empty String will be parsed as null. Logic is part of YAML 1.1 Null Language-Independent Type.

          Feature is enabled by default in Jackson 2.12 for backwards-compatibility reasons.

      • Method Detail

        • values

          public static YAMLParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLParser.Feature c : YAMLParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/YAMLParser.html ================================================ YAMLParser (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class YAMLParser
      extends com.fasterxml.jackson.core.base.ParserBase
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLParser.Feature
        Enumeration that defines all togglable features for YAML parsers.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected boolean _cfgEmptyStringsToNull 
        protected String _cleanedTextValue
        For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        protected String _currentAnchor
        Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
        protected String _currentFieldName
        Let's also have a local copy of the current field name
        protected boolean _currentIsAlias
        Flag that is set when current token was derived from an Alias (reference to another value's anchor)
        protected int _formatFeatures 
        protected org.yaml.snakeyaml.events.Event _lastEvent
        Keep track of the last event read, to get access to Location info
        protected org.yaml.snakeyaml.events.Event _lastTagEvent
        To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected Reader _reader
        Need to keep track of underlying Reader to be able to auto-close it (if required to)
        protected String _textValue
        We need to keep track of text values.
        protected org.yaml.snakeyaml.parser.ParserImpl _yamlParser 
        protected org.yaml.snakeyaml.resolver.Resolver _yamlResolver 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserBase

          _binaryValue, _byteArrayBuilder, _closed, _currInputProcessed, _currInputRow, _currInputRowStart, _expLength, _fractLength, _inputEnd, _inputPtr, _intLength, _ioContext, _nameCopied, _nameCopyBuffer, _nextToken, _numberBigDecimal, _numberBigInt, _numberDouble, _numberInt, _numberLong, _numberNegative, _numTypesValid, _parsingContext, _textBuffer, _tokenInputCol, _tokenInputRow, _tokenInputTotal, JSON_READ_CAPABILITIES
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt, com.fasterxml.jackson.core.util.BufferRecycler br, int parserFeatures, int formatFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Method Summary

        All Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _closeInput() 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntBinary(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntHex(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntOctal(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value, int len) 
        protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar) 
        protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m) 
        protected Boolean _matchYAMLBoolean(String value, int len) 
        protected int _parseIntValue() 
        protected void _parseNumericValue(int expType) 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f, boolean state)
        Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser disable(YAMLParser.Feature f)
        Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser enable(YAMLParser.Feature f)
        Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        String getCurrentAnchor()
        Deprecated. 
        Since 2.3 (was added in 2.1) -- use getObjectId() instead
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        Object getEmbeddedObject() 
        int getFormatFeatures() 
        String getObjectId() 
        com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        String getTypeId() 
        boolean hasTextCharacters() 
        boolean isCurrentAlias()
        Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
        boolean isEnabled(YAMLParser.Feature f)
        Method for checking whether specified CSV YAMLParser.Feature is enabled.
        com.fasterxml.jackson.core.JsonToken nextToken() 
        com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values, int mask) 
        int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant, OutputStream out) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserBase

          _checkStdFeatureChanges, _contentReference, _decodeBase64Escape, _decodeBase64Escape, _decodeEscaped, _eofAsNextChar, _finishString, _getByteArrayBuilder, _getSourceReference, _handleBase64MissingPadding, _handleEOF, _handleUnrecognizedCharacterEscape, _releaseBuffers, _reportMismatchedEndMarker, _reportTooLongIntegral, _throwUnquotedSpace, _validJsonTokenList, _validJsonValueList, close, convertNumberToBigDecimal, convertNumberToBigInteger, convertNumberToDouble, convertNumberToInt, convertNumberToLong, disable, enable, getBigIntegerValue, getBinaryValue, getCurrentValue, getDecimalValue, getDoubleValue, getFloatValue, getIntValue, getLongValue, getNumberType, getNumberValue, getNumberValueExact, getParsingContext, getTokenCharacterOffset, getTokenColumnNr, getTokenLineNr, growArrayBy, isClosed, isNaN, loadMore, loadMoreGuaranteed, overrideCurrentName, overrideStdFeatures, reportInvalidBase64Char, reportInvalidBase64Char, reset, resetAsNaN, resetFloat, resetInt, setCurrentValue, setFeatureMask
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedNumberIntToken, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _reportUnsupportedOperation, assignCurrentValue, canParseAsync, canUseSchema, configure, currentLocation, currentName, currentTokenLocation, currentValue, finishToken, getBinaryValue, getBooleanValue, getByteValue, getFeatureMask, getInputSource, getNonBlockingInputFeeder, getSchema, getShortValue, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError, setSchema
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _cfgEmptyStringsToNull

          protected boolean _cfgEmptyStringsToNull
        • _reader

          protected final Reader _reader
          Need to keep track of underlying Reader to be able to auto-close it (if required to)
        • _yamlParser

          protected final org.yaml.snakeyaml.parser.ParserImpl _yamlParser
        • _yamlResolver

          protected final org.yaml.snakeyaml.resolver.Resolver _yamlResolver
        • _lastEvent

          protected org.yaml.snakeyaml.events.Event _lastEvent
          Keep track of the last event read, to get access to Location info
        • _lastTagEvent

          protected org.yaml.snakeyaml.events.Event _lastTagEvent
          To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
          Since:
          2.12
        • _textValue

          protected String _textValue
          We need to keep track of text values.
        • _cleanedTextValue

          protected String _cleanedTextValue
          For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        • _currentFieldName

          protected String _currentFieldName
          Let's also have a local copy of the current field name
        • _currentIsAlias

          protected boolean _currentIsAlias
          Flag that is set when current token was derived from an Alias (reference to another value's anchor)
          Since:
          2.1
        • _currentAnchor

          protected String _currentAnchor
          Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
      • Constructor Detail

        • YAMLParser

          public YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                            com.fasterxml.jackson.core.util.BufferRecycler br,
                            int parserFeatures,
                            int formatFeatures,
                            com.fasterxml.jackson.core.ObjectCodec codec,
                            Reader reader)
      • Method Detail

        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • isCurrentAlias

          public boolean isCurrentAlias()
          Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
          Since:
          2.1
        • getCurrentAnchor

          @Deprecated
          public String getCurrentAnchor()
          Deprecated. Since 2.3 (was added in 2.1) -- use getObjectId() instead
          Method that can be used to check if the current token has an associated anchor (id to reference via Alias)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.ParserBase
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • _closeInput

          protected void _closeInput()
                              throws IOException
          Specified by:
          _closeInput in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Overrides:
          getTokenLocation in class com.fasterxml.jackson.core.base.ParserBase
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Overrides:
          getCurrentLocation in class com.fasterxml.jackson.core.base.ParserBase
        • _locationFor

          protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m)
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _decodeScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar)
                                                                throws IOException
          Throws:
          IOException
        • _matchYAMLBoolean

          protected Boolean _matchYAMLBoolean(String value,
                                              int len)
        • _decodeNumberScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value,
                                                                             int len)
        • _decodeNumberIntBinary

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntBinary(String value,
                                                                                int i,
                                                                                int origLen,
                                                                                boolean negative)
        • _decodeNumberIntOctal

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntOctal(String value,
                                                                               int i,
                                                                               int origLen,
                                                                               boolean negative)
        • _decodeNumberIntHex

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntHex(String value,
                                                                             int i,
                                                                             int origLen,
                                                                             boolean negative)
        • hasTextCharacters

          public boolean hasTextCharacters()
          Overrides:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Overrides:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • readBinaryValue

          public int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant,
                                     OutputStream out)
                              throws IOException
          Overrides:
          readBinaryValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Overrides:
          _parseNumericValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • _parseIntValue

          protected int _parseIntValue()
                                throws IOException
          Overrides:
          _parseIntValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getObjectId

          public String getObjectId()
                             throws IOException
          Overrides:
          getObjectId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTypeId

          public String getTypeId()
                           throws IOException
          Overrides:
          getTypeId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/JacksonYAMLParseException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.PackageVersion (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.yaml.PackageVersion

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Reader (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Writer (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactory (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactory

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.13.0 API)

    com.fasterxml.jackson.dataformat.yaml

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.yaml

    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).

    See: Description

    • Class Summary 
      Class Description
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      UTF8Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream.
      UTF8Writer  
      YAMLFactory  
      YAMLFactoryBuilder
      TSFBuilder implementation for constructing YAMLFactory instances.
      YAMLGenerator  
      YAMLMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      YAMLMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      YAMLParser
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    • Enum Summary 
      Enum Description
      YAMLGenerator.Feature
      Enumeration that defines all togglable features for YAML generators
      YAMLParser.Feature
      Enumeration that defines all togglable features for YAML parsers.
    • Exception Summary 
      Exception Description
      JacksonYAMLParseException  

    Package com.fasterxml.jackson.dataformat.yaml Description

    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml Class Hierarchy (Jackson-dataformat-YAML 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/Mark.html ================================================ Mark (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class Mark


    • Deprecated. 
      Should use basic JsonLocation instead

      @Deprecated
      public class Mark
      extends Object
      Placeholder for shaded org.yaml.snakeyaml.error.Mark
      Since:
      2.8 (as non-shaded); earlier shaded in
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.Mark _source
          Deprecated. 
      • Constructor Detail

        • Mark

          protected Mark(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
      • Method Detail

        • from

          public static Mark from(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
        • getName

          public String getName()
          Deprecated. 
        • get_snippet

          public String get_snippet()
          Deprecated. 
        • get_snippet

          public String get_snippet(int indent,
                                    int max_length)
          Deprecated. 
        • getColumn

          public int getColumn()
          Deprecated. 
        • getLine

          public int getLine()
          Deprecated. 
        • getIndex

          public int getIndex()
          Deprecated. 

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/MarkedYAMLException.html ================================================ MarkedYAMLException (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class MarkedYAMLException

    • All Implemented Interfaces:
      Serializable

      Deprecated. 
      Since 2.8

      @Deprecated
      public class MarkedYAMLException
      extends YAMLException
      Replacement for formerly shaded exception type from SnakeYAML; included in 2.8 solely for backwards compatibility: new code that relies on Jackson 2.8 and after should NOT use this type but only base type JacksonYAMLParseException.
      See Also:
      Serialized Form
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.MarkedYAMLException _source
          Deprecated. 
      • Constructor Detail

        • MarkedYAMLException

          protected MarkedYAMLException(com.fasterxml.jackson.core.JsonParser p,
                                        org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static MarkedYAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                                 org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
        • getContext

          public String getContext()
          Deprecated. 
        • getContextMark

          public Mark getContextMark()
          Deprecated. 
        • getProblem

          public String getProblem()
          Deprecated. 
        • getProblemMark

          public Mark getProblemMark()
          Deprecated. 

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/YAMLException.html ================================================ YAMLException (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class YAMLException

      • Constructor Detail

        • YAMLException

          public YAMLException(com.fasterxml.jackson.core.JsonParser p,
                               org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static YAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                           org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/Mark.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/MarkedYAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/YAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.13.0 API)

    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    See: Description

    • Class Summary 
      Class Description
      Mark Deprecated
      Should use basic JsonLocation instead
    • Exception Summary 
      Exception Description
      MarkedYAMLException Deprecated
      Since 2.8
      YAMLException Deprecated
      Since 2.8

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Description

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types. This is needed to improve backwards compatibility with frameworks like DropWizard.

    New code based on Jackson 2.8 and later should NOT use types in this package but instead rely on JacksonYAMLParseException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Class Hierarchy (Jackson-dataformat-YAML 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/util/StringQuotingChecker.Default.html ================================================ StringQuotingChecker.Default (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml.util

    Class StringQuotingChecker.Default

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/util/StringQuotingChecker.html ================================================ StringQuotingChecker (Jackson-dataformat-YAML 2.13.0 API)
    com.fasterxml.jackson.dataformat.yaml.util

    Class StringQuotingChecker

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      StringQuotingChecker.Default


      public abstract class StringQuotingChecker
      extends Object
      implements Serializable
      Helper class that defines API used by YAMLGenerator to check whether property names and String values need to be quoted or not. Also contains default logic implementation; may be sub-classes to provide alternate implementation.
      Since:
      2.12
      See Also:
      Serialized Form
      • Constructor Detail

        • StringQuotingChecker

          public StringQuotingChecker()
      • Method Detail

        • needToQuoteName

          public abstract boolean needToQuoteName(String name)
          Method called by YAMLGenerator to check whether given property name should be quoted: usually to prevent it from being read as non-String key (boolean or number)
        • needToQuoteValue

          public abstract boolean needToQuoteValue(String value)
          Method called by YAMLGenerator to check whether given String value should be quoted: usually to prevent it from being value of different type (boolean or number).
        • isReservedKeyword

          protected boolean isReservedKeyword(String value)
          Helper method that sub-classes may use to see if given String value is one of:
          • YAML 1.1 keyword representing boolean
          • YAML 1.1 keyword representing null value
          • empty String (length 0)
          • and returns true if so.
          Parameters:
          value - String to check
          Returns:
          true if given value is a Boolean or Null representation (as per YAML 1.1 specification) or empty String
        • _isReservedKeyword

          protected boolean _isReservedKeyword(int firstChar,
                                               String name)
        • looksLikeYAMLNumber

          protected boolean looksLikeYAMLNumber(String name)
          Helper method that sub-classes may use to see if given String value looks like a YAML 1.1 numeric value and would likely be considered a number when parsing unless quoting is used.
        • _looksLikeYAMLNumber

          protected boolean _looksLikeYAMLNumber(int firstChar,
                                                 String name)
        • valueHasQuotableChar

          protected boolean valueHasQuotableChar(String inputStr)
          As per YAML Plain Styleunquoted strings are restricted to a reduced charset and must be quoted in case they contain one of the following characters or character combinations.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/util/class-use/StringQuotingChecker.Default.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/util/class-use/StringQuotingChecker.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.13.0 API)

    com.fasterxml.jackson.dataformat.yaml.util

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.13.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.util

    Helper classes for YAML backend.

    See: Description

    Package com.fasterxml.jackson.dataformat.yaml.util Description

    Helper classes for YAML backend.
    Since:
    2.12

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.util Class Hierarchy (Jackson-dataformat-YAML 2.13.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/com/fasterxml/jackson/dataformat/yaml/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.13.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.util

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-YAML 2.13.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-YAML 2.13.0 API)

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/help-doc.html ================================================ API Help (Jackson-dataformat-YAML 2.13.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/index-all.html ================================================ Index (Jackson-dataformat-YAML 2.13.0 API)
    A B C D E F G H I J L M N O P R S T U V W Y _ 

    A

    append(char) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    B

    build() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    buildDumperOptions(int, int, DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Main factory method to use for constructing YAMLFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    builder(YAMLFactory) - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    Builder(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     

    C

    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    com.fasterxml.jackson.dataformat.yaml - package com.fasterxml.jackson.dataformat.yaml
    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error - package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    com.fasterxml.jackson.dataformat.yaml.util - package com.fasterxml.jackson.dataformat.yaml.util
    Helper classes for YAML backend.
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified parser feature (check YAMLParser.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     

    D

    Default() - Constructor for class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
     
    DEFAULT_YAML_GENERATOR_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all generator features that are enabled by default.
    DEFAULT_YAML_PARSER_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all parser features that are enabled by default.
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified parser features (check YAMLParser.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    disable(YAMLParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    disable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)

    E

    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified parser feature (check YAMLParser.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified generator features (check YAMLGenerator.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    enable(YAMLParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    enable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     

    F

    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    FORMAT_NAME_YAML - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Name used to identify YAML format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(Mark) - Static method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    from(JsonParser, MarkedYAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    from(JsonParser, YAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     

    G

    get_snippet() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    get_snippet(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getColumn() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getContext() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getContextMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getCurrentAnchor() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Deprecated.
    Since 2.3 (was added in 2.1) -- use YAMLParser.getObjectId() instead
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    Overridden with more specific type, since factory we have is always of type YAMLFactory
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatReadFeatureType() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatWriteFeatureType() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getLine() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    SnakeYAML does not expose buffered content amount, so we can only return -1 from here
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getProblem() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getProblemMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    I

    instance() - Static method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
     
    isCurrentAlias() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Checked whether specified parser feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Check whether specified generator feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for checking whether specified CSV YAMLParser.Feature is enabled.
    isReservedKeyword(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Helper method that sub-classes may use to see if given String value is one of: YAML 1.1 keyword representing boolean YAML 1.1 keyword representing null value empty String (length 0) and returns true if so.

    J

    JacksonYAMLParseException - Exception in com.fasterxml.jackson.dataformat.yaml
     
    JacksonYAMLParseException(JsonParser, String, Exception) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException
     

    L

    looksLikeYAMLNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Helper method that sub-classes may use to see if given String value looks like a YAML 1.1 numeric value and would likely be considered a number when parsing unless quoting is used.

    M

    Mark - Class in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Should use basic JsonLocation instead
    Mark(Mark) - Constructor for class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    MarkedYAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    MarkedYAMLException(JsonParser, MarkedYAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    N

    needToQuoteName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
    Default implementation will call StringQuotingChecker.isReservedKeyword(String) and StringQuotingChecker.looksLikeYAMLNumber(String) to determine if quoting should be applied.
    needToQuoteName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Method called by YAMLGenerator to check whether given property name should be quoted: usually to prevent it from being read as non-String key (boolean or number)
    needToQuoteValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
    Default implementation will call StringQuotingChecker.isReservedKeyword(String) and StringQuotingChecker.valueHasQuotableChar(String) to determine if quoting should be applied.
    needToQuoteValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Method called by YAMLGenerator to check whether given String value should be quoted: usually to prevent it from being value of different type (boolean or number).
    nextToken() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    O

    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.yaml
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    PLAIN_NUMBER_P - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readResolve() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; will always indent, but uses YAML-specific settings etc.
    StringQuotingChecker - Class in com.fasterxml.jackson.dataformat.yaml.util
    Helper class that defines API used by YAMLGenerator to check whether property names and String values need to be quoted or not.
    StringQuotingChecker() - Constructor for class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    stringQuotingChecker(StringQuotingChecker) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Method for specifying either custom StringQuotingChecker to use instead of default one, or, that default one (see StringQuotingChecker.Default.instance()) is to be used (when passing null
    stringQuotingChecker() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    StringQuotingChecker.Default - Class in com.fasterxml.jackson.dataformat.yaml.util
    Default StringQuotingChecker implementation used unless custom implementation registered.

    T

    TAG_BINARY - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; could reset indentation to some value maybe?
    UTF8 - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.yaml
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Reader(byte[], int, int, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.yaml
     
    UTF8Writer(OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    V

    valueHasQuotableChar(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    As per YAML Plain Styleunquoted strings are restricted to a reduced charset and must be quoted in case they contain one of the following characters or character combinations.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    W

    write(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldId(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectRef(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeTypeId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    Y

    YAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    YAMLException(JsonParser, YAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     
    YAMLFactory - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLFactory() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Default constructor used to create factory instances.
    YAMLFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Constructors used by YAMLFactoryBuilder for instantiation.
    YAMLFactoryBuilder - Class in com.fasterxml.jackson.dataformat.yaml
    TSFBuilder implementation for constructing YAMLFactory instances.
    YAMLFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLFactoryBuilder(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLGenerator - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLGenerator(IOContext, int, int, StringQuotingChecker, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    YAMLGenerator(IOContext, int, int, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Deprecated.
    YAMLGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML generators
    YAMLMapper - Class in com.fasterxml.jackson.dataformat.yaml
    Convenience version of ObjectMapper which is configured with YAMLFactory.
    YAMLMapper() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper.Builder - Class in com.fasterxml.jackson.dataformat.yaml
    Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
    YAMLParser - Class in com.fasterxml.jackson.dataformat.yaml
    JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    YAMLParser(IOContext, BufferRecycler, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    YAMLParser.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML parsers.
    yamlVersionToWrite(DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Method for specifying YAML version for generator to use (to produce compliant output); if null passed, will let SnakeYAML use its default settings.
    yamlVersionToWrite() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     

    _

    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
    This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
    _cfgEmptyStringsToNull - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _cleanedTextValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _currentAnchor - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
    _currentFieldName - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Let's also have a local copy of the current field name
    _currentIsAlias - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Flag that is set when current token was derived from an Alias (reference to another value's anchor)
    _decodeNumberIntBinary(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberIntHex(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberIntOctal(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberScalar(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeScalar(ScalarEvent) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _docVersion - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emit(Event) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitEndDocument() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitStartDocument() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitter - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Set of YAMLGenerator.Features enabled, as bitmask.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointed to the end marker, that is, position one after the last valid available byte.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointer to the next available byte (if any), iff less than mByteBufferEnd
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _isReservedKeyword(int, String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    _lastEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Keep track of the last event read, to get access to Location info
    _lastTagEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
    _lf() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _locationFor(Mark) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _looksLikeYAMLNumber(int, String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _matchYAMLBoolean(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Codec used for data binding when (if) requested.
    _objectId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Object identifiers, so databinder may indicate need to output one.
    _outputOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Helper object used to determine whether property names, String values must be quoted or not.
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Helper object used to determine whether property names, String values must be quoted or not.
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Need to keep track of underlying Reader to be able to auto-close it (if required to)
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _rootValueCount - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _scalarEvent(String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _source - Variable in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    _source - Variable in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    _surrogate - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Decoded first character of a surrogate pair, if one needs to be buffered
    _textValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    We need to keep track of text values.
    _typeId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Type identifiers, so databinder may indicate need to output one.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    YAML version for underlying generator to follow, if specified.
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    YAML version for underlying generator to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
    _writer - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _writeScalar(String, String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _yamlGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlParser - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _yamlParserFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlResolver - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    A B C D E F G H I J L M N O P R S T U V W Y _ 

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/index.html ================================================ Jackson-dataformat-YAML 2.13.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/yaml/2.13/javadoc.sh ================================================ /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/jre/../bin/javadoc @options @packages ================================================ FILE: docs/javadoc/yaml/2.13/options ================================================ -classpath '/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.13.0/jackson-databind-2.13.0.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.13.0/jackson-annotations-2.13.0.jar:/Users/tatu/.m2/repository/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.13.0/jackson-core-2.13.0.jar' -encoding 'UTF-8' -protected -quiet -sourcepath '/Users/tatu/jackson/jackson-dataformats-text/yaml/src/main/java:/Users/tatu/jackson/jackson-dataformats-text/yaml/target/generated-sources:/Users/tatu/jackson/jackson-dataformats-text/yaml/target/generated-sources/annotations' -author -bottom 'Copyright © 2021 FasterXML. All rights reserved.' -charset 'UTF-8' -d '/Users/tatu/jackson/jackson-dataformats-text/yaml/target/apidocs' -docencoding 'UTF-8' -doctitle 'Jackson-dataformat-YAML 2.13.0 API' -link 'https://docs.oracle.com/javase/8/docs/api' -linkoffline 'https://docs.oracle.com/javase/8/docs/api' '/Users/tatu/jackson/jackson-dataformats-text/yaml/target/javadoc-bundle-options' -use -version -windowtitle 'Jackson-dataformat-YAML 2.13.0 API' ================================================ FILE: docs/javadoc/yaml/2.13/overview-frame.html ================================================ Overview List (Jackson-dataformat-YAML 2.13.0 API)

     

    ================================================ FILE: docs/javadoc/yaml/2.13/overview-summary.html ================================================ Overview (Jackson-dataformat-YAML 2.13.0 API)

    Jackson-dataformat-YAML 2.13.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.yaml
    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    com.fasterxml.jackson.dataformat.yaml.util
    Helper classes for YAML backend.

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-YAML 2.13.0 API)

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker (implements java.io.Serializable)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/package-list ================================================ com.fasterxml.jackson.dataformat.yaml com.fasterxml.jackson.dataformat.yaml.snakeyaml.error com.fasterxml.jackson.dataformat.yaml.util ================================================ FILE: docs/javadoc/yaml/2.13/packages ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error com.fasterxml.jackson.dataformat.yaml.util com.fasterxml.jackson.dataformat.yaml ================================================ FILE: docs/javadoc/yaml/2.13/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/yaml/2.13/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-YAML 2.13.0 API)

    Serialized Form

    Copyright © 2021 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.13/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/yaml/2.14/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-YAML 2.14.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.14/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-YAML 2.14.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/JacksonYAMLParseException.html ================================================ JacksonYAMLParseException (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class JacksonYAMLParseException

    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      YAMLException


      public class JacksonYAMLParseException
      extends com.fasterxml.jackson.core.JsonParseException
      Since:
      2.8
      See Also:
      Serialized Form
      • Constructor Detail

        • JacksonYAMLParseException

          public JacksonYAMLParseException(com.fasterxml.jackson.core.JsonParser p,
                                           String msg,
                                           Exception e)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected byte[][] _bufferHolder 
        protected static ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
        This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
        protected byte[] _inputBuffer 
        protected int _inputEnd
        Pointed to the end marker, that is, position one after the last valid available byte.
        protected int _inputPtr
        Pointer to the next available byte (if any), iff less than mByteBufferEnd
        protected int _surrogate
        Decoded first character of a surrogate pair, if one needs to be buffered
      • Constructor Summary

        Constructors 
        Constructor and Description
        UTF8Reader(byte[] buf, int ptr, int len, boolean autoClose) 
        UTF8Reader(InputStream in, boolean autoClose) 
      • Field Detail

        • _bufferRecycler

          protected static final ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
          This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
        • _bufferHolder

          protected final byte[][] _bufferHolder
        • _inputBuffer

          protected byte[] _inputBuffer
        • _inputPtr

          protected int _inputPtr
          Pointer to the next available byte (if any), iff less than mByteBufferEnd
        • _inputEnd

          protected int _inputEnd
          Pointed to the end marker, that is, position one after the last valid available byte.
        • _surrogate

          protected int _surrogate
          Decoded first character of a surrogate pair, if one needs to be buffered
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(InputStream in,
                            boolean autoClose)
        • UTF8Reader

          public UTF8Reader(byte[] buf,
                            int ptr,
                            int len,
                            boolean autoClose)
      • Method Detail

        • canModifyBuffer

          protected final boolean canModifyBuffer()
          Method that can be used to see if we can actually modify the underlying buffer. This is the case if we are managing the buffer, but not if it was just given to us.
        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Returns:
          Number of bytes read, if any; -1 for end-of-input.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                                      int start,
                                      int len)
                               throws IOException
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Writer

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/YAMLFactory.html ================================================ YAMLFactory (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.TokenStreamFactory
        • com.fasterxml.jackson.core.JsonFactory
          • com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_YAML_PARSER_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_PARSER_FEATURE_FLAGS
          Bitfield (set of flags) of all parser features that are enabled by default.
        • DEFAULT_YAML_GENERATOR_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_GENERATOR_FEATURE_FLAGS
          Bitfield (set of flags) of all generator features that are enabled by default.
        • _yamlParserFeatures

          protected int _yamlParserFeatures
        • _yamlGeneratorFeatures

          protected int _yamlGeneratorFeatures
        • _version

          protected final org.yaml.snakeyaml.DumperOptions.Version _version
          YAML version for underlying generator to follow, if specified.
          Since:
          2.12
        • _quotingChecker

          protected final StringQuotingChecker _quotingChecker
          Helper object used to determine whether property names, String values must be quoted or not.
          Since:
          2.12
        • _loaderOptions

          protected final org.yaml.snakeyaml.LoaderOptions _loaderOptions
          Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).

          If you need to support parsing YAML files that are larger than 3Mb, it is recommended that you provide a LoaderOptions instance where you set the Codepoint Limit to a larger value than its 3Mb default.

          Since:
          2.14
        • _dumperOptions

          protected final org.yaml.snakeyaml.DumperOptions _dumperOptions
          Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).

          These YAMLGenerator.Features are ignored if you provide your own DumperOptions:

          • YAMLGenerator.Feature.ALLOW_LONG_KEYS
          • YAMLGenerator.Feature.CANONICAL_OUTPUT
          • YAMLGenerator.Feature.INDENT_ARRAYS
          • YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR
          • YAMLGenerator.Feature.SPLIT_LINES
          • YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS

          Since:
          2.14
      • Constructor Detail

        • YAMLFactory

          public YAMLFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • YAMLFactory

          public YAMLFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • YAMLFactory

          public YAMLFactory(YAMLFactory src,
                             com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2
      • Method Detail

        • rebuild

          public YAMLFactoryBuilder rebuild()
          Overrides:
          rebuild in class com.fasterxml.jackson.core.JsonFactory
        • builder

          public static YAMLFactoryBuilder builder()
          Main factory method to use for constructing YAMLFactory instances with different configuration.
        • copy

          public YAMLFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatReadFeatureType

          public Class<YAMLParser.Feature> getFormatReadFeatureType()
          Overrides:
          getFormatReadFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • getFormatWriteFeatureType

          public Class<YAMLGenerator.Feature> getFormatWriteFeatureType()
          Overrides:
          getFormatWriteFeatureType in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • isEnabled

          public final boolean isEnabled(YAMLParser.Feature f)
          Checked whether specified parser feature is enabled.
        • getFormatParserFeatures

          public int getFormatParserFeatures()
          Overrides:
          getFormatParserFeatures in class com.fasterxml.jackson.core.JsonFactory
        • isEnabled

          public final boolean isEnabled(YAMLGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • getFormatGeneratorFeatures

          public int getFormatGeneratorFeatures()
          Overrides:
          getFormatGeneratorFeatures in class com.fasterxml.jackson.core.JsonFactory
        • createParser

          public YAMLParser createParser(char[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(char[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data,
                                         int offset,
                                         int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public YAMLGenerator createGenerator(OutputStream out,
                                               com.fasterxml.jackson.core.JsonEncoding enc)
                                        throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(File f,
                                                                          com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(InputStream in,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(Reader r,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(char[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt,
                                             boolean recyclable)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(byte[] data,
                                             int offset,
                                             int len,
                                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected YAMLGenerator _createGenerator(Writer out,
                                                   com.fasterxml.jackson.core.io.IOContext ctxt)
                                            throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected YAMLGenerator _createUTF8Generator(OutputStream out,
                                                       com.fasterxml.jackson.core.io.IOContext ctxt)
                                                throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                                         int offset,
                                         int len,
                                         com.fasterxml.jackson.core.JsonEncoding enc,
                                         com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/YAMLFactoryBuilder.html ================================================ YAMLFactoryBuilder (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactoryBuilder

      • Field Detail

        • _formatGeneratorFeatures

          protected int _formatGeneratorFeatures
          Set of YAMLGenerator.Features enabled, as bitmask.
        • _quotingChecker

          protected StringQuotingChecker _quotingChecker
          Helper object used to determine whether property names, String values must be quoted or not.
          Since:
          2.12
        • _version

          protected org.yaml.snakeyaml.DumperOptions.Version _version
          YAML version for underlying generator to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).

          Ignored if you provide your own DumperOptions.

        • _loaderOptions

          protected org.yaml.snakeyaml.LoaderOptions _loaderOptions
          Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).

          If you need to support parsing YAML files that are larger than 3Mb, it is recommended that you provide a LoaderOptions instance where you set the Codepoint Limit to a larger value than its 3Mb default.

          Since:
          2.14
        • _dumperOptions

          protected org.yaml.snakeyaml.DumperOptions _dumperOptions
          Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).

          These YAMLGenerator.Features are ignored if you provide your own DumperOptions:

          • YAMLGenerator.Feature.ALLOW_LONG_KEYS
          • YAMLGenerator.Feature.CANONICAL_OUTPUT
          • YAMLGenerator.Feature.INDENT_ARRAYS
          • YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR
          • YAMLGenerator.Feature.SPLIT_LINES
          • YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS

          Since:
          2.14
      • Constructor Detail

        • YAMLFactoryBuilder

          protected YAMLFactoryBuilder()
        • YAMLFactoryBuilder

          public YAMLFactoryBuilder(YAMLFactory base)
      • Method Detail

        • stringQuotingChecker

          public YAMLFactoryBuilder stringQuotingChecker(StringQuotingChecker sqc)
          Method for specifying either custom StringQuotingChecker to use instead of default one, or, that default one (see StringQuotingChecker.Default.instance()) is to be used (when passing null
          Parameters:
          sqc - Checker to use (if non-null), or null to use the default one (see StringQuotingChecker.Default.instance())
          Returns:
          This builder instance, to allow chaining
        • yamlVersionToWrite

          public YAMLFactoryBuilder yamlVersionToWrite(org.yaml.snakeyaml.DumperOptions.Version v)
          Method for specifying YAML version for generator to use (to produce compliant output); if null passed, will let SnakeYAML use its default settings.
          Parameters:
          v - YAML specification version to use for output, if not-null; null for default handling
          Returns:
          This builder instance, to allow chaining
        • loaderOptions

          public YAMLFactoryBuilder loaderOptions(org.yaml.snakeyaml.LoaderOptions loaderOptions)
          Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).

          If you need to support parsing YAML files that are larger than 3Mb, it is recommended that you provide a LoaderOptions instance where you set the Codepoint Limit to a larger value than its 3Mb default.

          Parameters:
          loaderOptions - the SnakeYAML configuration to use when parsing YAML
          Returns:
          This builder instance, to allow chaining
          Since:
          2.14
        • dumperOptions

          public YAMLFactoryBuilder dumperOptions(org.yaml.snakeyaml.DumperOptions dumperOptions)
          Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).

          These YAMLGenerator.Features are ignored if you provide your own DumperOptions:

          • YAMLGenerator.Feature.ALLOW_LONG_KEYS
          • YAMLGenerator.Feature.CANONICAL_OUTPUT
          • YAMLGenerator.Feature.INDENT_ARRAYS
          • YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR
          • YAMLGenerator.Feature.SPLIT_LINES
          • YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS

          Parameters:
          dumperOptions - the SnakeYAML configuration to use when generating YAML
          Returns:
          This builder instance, to allow chaining
          Since:
          2.14
        • formatGeneratorFeaturesMask

          public int formatGeneratorFeaturesMask()
        • yamlVersionToWrite

          public org.yaml.snakeyaml.DumperOptions.Version yamlVersionToWrite()
        • loaderOptions

          public org.yaml.snakeyaml.LoaderOptions loaderOptions()
          Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).

          If you need to support parsing YAML files that are larger than 3Mb, it is recommended that you provide a LoaderOptions instance where you set the Codepoint Limit to a larger value than its 3Mb default.

          Returns:
          the SnakeYAML configuration to use when parsing YAML
          Since:
          2.14
        • dumperOptions

          public org.yaml.snakeyaml.DumperOptions dumperOptions()
          Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).

          These YAMLGenerator.Features are ignored if you provide your own DumperOptions:

          • YAMLGenerator.Feature.ALLOW_LONG_KEYS
          • YAMLGenerator.Feature.CANONICAL_OUTPUT
          • YAMLGenerator.Feature.INDENT_ARRAYS
          • YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR
          • YAMLGenerator.Feature.SPLIT_LINES
          • YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS

          Returns:
          the SnakeYAML configuration to use when generating YAML
          Since:
          2.14

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.Feature.html ================================================ YAMLGenerator.Feature (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLGenerator.Feature

      • Enum Constant Detail

        • WRITE_DOC_START_MARKER

          public static final YAMLGenerator.Feature WRITE_DOC_START_MARKER
          Whether we are to write an explicit document start marker ("---") or not.
          Since:
          2.3
        • USE_NATIVE_OBJECT_ID

          public static final YAMLGenerator.Feature USE_NATIVE_OBJECT_ID
          Whether to use YAML native Object Id construct for indicating type (true); or "generic" Object Id mechanism (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • USE_NATIVE_TYPE_ID

          public static final YAMLGenerator.Feature USE_NATIVE_TYPE_ID
          Whether to use YAML native Type Id construct for indicating type (true); or "generic" type property (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • CANONICAL_OUTPUT

          public static final YAMLGenerator.Feature CANONICAL_OUTPUT
          Do we try to force so-called canonical output or not.

          Ignored if you provide your own DumperOptions.

        • SPLIT_LINES

          public static final YAMLGenerator.Feature SPLIT_LINES
          Options passed to SnakeYAML that determines whether longer textual content gets automatically split into multiple lines or not.

          Feature is enabled by default to conform to SnakeYAML defaults as well as backwards compatibility with 2.5 and earlier versions.

          Ignored if you provide your own DumperOptions.

          Since:
          2.6
        • MINIMIZE_QUOTES

          public static final YAMLGenerator.Feature MINIMIZE_QUOTES
          Whether strings will be rendered without quotes (true) or with quotes (false, default).

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.7
        • ALWAYS_QUOTE_NUMBERS_AS_STRINGS

          public static final YAMLGenerator.Feature ALWAYS_QUOTE_NUMBERS_AS_STRINGS
          Whether numbers stored as strings will be rendered with quotes (true) or without quotes (false, default) when MINIMIZE_QUOTES is enabled.

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.8.2
        • INDENT_ARRAYS

          public static final YAMLGenerator.Feature INDENT_ARRAYS
          Feature enabling of which adds indentation for array entry generation (default indentation being 2 spaces).

          Default value is false for backwards compatibility

          Ignored if you provide your own DumperOptions.

          Since:
          2.9
        • INDENT_ARRAYS_WITH_INDICATOR

          public static final YAMLGenerator.Feature INDENT_ARRAYS_WITH_INDICATOR
          Feature enabling of which adds indentation with indicator for array entry generation (default indentation being 2 spaces).

          Default value is false for backwards compatibility

          Ignored if you provide your own DumperOptions.

          Since:
          2.12
        • USE_PLATFORM_LINE_BREAKS

          public static final YAMLGenerator.Feature USE_PLATFORM_LINE_BREAKS
          Option passed to SnakeYAML that determines if the line breaks used for serialization should be same as what the default is for current platform. If disabled, Unix linefeed (\n) will be used.

          Default value is false for backwards compatibility

          Ignored if you provide your own DumperOptions.

          Since:
          2.9.6
        • ALLOW_LONG_KEYS

          public static final YAMLGenerator.Feature ALLOW_LONG_KEYS
          Option passed to SnakeYAML to allows writing key longer that 128 characters (up to 1024 characters). If disabled, the max key length is left as 128 characters: longer names are truncated. If enabled, limit is raised to 1024 characters.

          Default value is false for backwards-compatibility (same as behavior before this feature was added).

          Ignored if you provide your own DumperOptions.

          Since:
          2.14
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static YAMLGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLGenerator.Feature c : YAMLGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.html ================================================ YAMLGenerator (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class YAMLGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Field Detail

        • PLAIN_NUMBER_P

          protected static final Pattern PLAIN_NUMBER_P
        • TAG_BINARY

          protected static final String TAG_BINARY
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
        • _writer

          protected Writer _writer
        • _outputOptions

          protected org.yaml.snakeyaml.DumperOptions _outputOptions
        • _docVersion

          protected final org.yaml.snakeyaml.DumperOptions.Version _docVersion
        • _emitter

          protected org.yaml.snakeyaml.emitter.Emitter _emitter
        • _objectId

          protected String _objectId
          YAML supports native Object identifiers, so databinder may indicate need to output one.
        • _typeId

          protected String _typeId
          YAML supports native Type identifiers, so databinder may indicate need to output one.
        • _rootValueCount

          protected int _rootValueCount
      • Constructor Detail

        • YAMLGenerator

          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                               int jsonFeatures,
                               int yamlFeatures,
                               StringQuotingChecker quotingChecker,
                               com.fasterxml.jackson.core.ObjectCodec codec,
                               Writer out,
                               org.yaml.snakeyaml.DumperOptions.Version version)
                        throws IOException
          Throws:
          IOException
        • YAMLGenerator

          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                               int jsonFeatures,
                               int yamlFeatures,
                               StringQuotingChecker quotingChecker,
                               com.fasterxml.jackson.core.ObjectCodec codec,
                               Writer out,
                               org.yaml.snakeyaml.DumperOptions dumperOptions)
                        throws IOException
          Throws:
          IOException
          Since:
          2.14
        • YAMLGenerator

          @Deprecated
          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                                           int jsonFeatures,
                                           int yamlFeatures,
                                           com.fasterxml.jackson.core.ObjectCodec codec,
                                           Writer out,
                                           org.yaml.snakeyaml.DumperOptions.Version version)
                                    throws IOException
          Deprecated. 
          Throws:
          IOException
      • Method Detail

        • buildDumperOptions

          protected org.yaml.snakeyaml.DumperOptions buildDumperOptions(int jsonFeatures,
                                                                        int yamlFeatures,
                                                                        org.yaml.snakeyaml.DumperOptions.Version version)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public YAMLGenerator useDefaultPrettyPrinter()
          Not sure what to do here; could reset indentation to some value maybe?
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public YAMLGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Not sure what to do here; will always indent, but uses YAML-specific settings etc.
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          SnakeYAML does not expose buffered content amount, so we can only return -1 from here
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                                 int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • getWriteCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamWriteCapability> getWriteCapabilities()
          Overrides:
          getWriteCapabilities in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeFieldId

          public void writeFieldId(long id)
                            throws IOException
          Overrides:
          writeFieldId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeString

          public void writeString(char[] text,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                         int offset,
                                         int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public final void writeUTF8String(byte[] text,
                                            int offset,
                                            int len)
                                     throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                               int offset,
                               int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                                    int offset,
                                    int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                                  byte[] data,
                                  int offset,
                                  int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • writeTypeId

          public void writeTypeId(Object id)
                           throws IOException
          Overrides:
          writeTypeId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectRef

          public void writeObjectRef(Object id)
                              throws IOException
          Overrides:
          writeObjectRef in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectId

          public void writeObjectId(Object id)
                             throws IOException
          Overrides:
          writeObjectId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _scalarEvent

          protected org.yaml.snakeyaml.events.ScalarEvent _scalarEvent(String value,
                                                                       org.yaml.snakeyaml.DumperOptions.ScalarStyle style)
        • _lf

          protected String _lf()
        • _emit

          protected final void _emit(org.yaml.snakeyaml.events.Event e)
                              throws IOException
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.Builder.html ================================================ YAMLMapper.Builder (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper.Builder

    • Enclosing class:
      YAMLMapper


      public static class YAMLMapper.Builder
      extends com.fasterxml.jackson.databind.cfg.MapperBuilder<YAMLMapper,YAMLMapper.Builder>
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      Since:
      3.0
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _mapper
      • Method Summary

        All Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        YAMLMapper.Builder configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper.Builder configure(YAMLParser.Feature f, boolean state) 
        YAMLMapper.Builder disable(YAMLGenerator.Feature... features) 
        YAMLMapper.Builder disable(YAMLParser.Feature... features) 
        YAMLMapper.Builder enable(YAMLGenerator.Feature... features) 
        YAMLMapper.Builder enable(YAMLParser.Feature... features) 
        • Methods inherited from class com.fasterxml.jackson.databind.cfg.MapperBuilder

          _this, accessorNaming, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addModule, addModules, addModules, annotationIntrospector, build, clearProblemHandlers, configure, configure, configure, configure, configure, configure, configure, configure, constructorDetector, deactivateDefaultTyping, defaultAttributes, defaultBase64Variant, defaultDateFormat, defaultLeniency, defaultLocale, defaultMergeable, defaultPrettyPrinter, defaultPropertyInclusion, defaultSetterInfo, defaultTimeZone, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, filterProvider, findAndAddModules, findModules, findModules, handlerInstantiator, injectableValues, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, nodeFactory, polymorphicTypeValidator, propertyNamingStrategy, registerSubtypes, registerSubtypes, registerSubtypes, removeMixIn, serializationInclusion, serializerFactory, setDefaultTyping, streamFactory, subtypeResolver, typeFactory, visibility, visibility, withCoercionConfig, withCoercionConfig, withCoercionConfigDefaults, withConfigOverride

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.html ================================================ YAMLMapper (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      See Also:
      Serialized Form
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLMapper.Builder
        Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _coercionConfigs, _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        All Methods Static Methods Instance Methods Concrete Methods 
        Modifier and Type Method and Description
        static YAMLMapper.Builder builder() 
        static YAMLMapper.Builder builder(YAMLFactory streamFactory) 
        YAMLMapper configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper configure(YAMLParser.Feature f, boolean state) 
        YAMLMapper copy() 
        YAMLMapper disable(YAMLGenerator.Feature f) 
        YAMLMapper disable(YAMLParser.Feature f) 
        YAMLMapper enable(YAMLGenerator.Feature f) 
        YAMLMapper enable(YAMLParser.Feature f) 
        YAMLFactory getFactory()
        Overridden with more specific type, since factory we have is always of type YAMLFactory
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _assertNotNull, _checkInvalidCopy, _configAndWriteValue, _constructDefaultTypeResolverBuilder, _convert, _findRootDeserializer, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _verifyNoTrailingTokens, _verifySchemaType, _writeValueAndClose, acceptJsonFormatVisitor, acceptJsonFormatVisitor, activateDefaultTyping, activateDefaultTyping, activateDefaultTyping, activateDefaultTypingAsProperty, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, coercionConfigDefaults, coercionConfigFor, coercionConfigFor, configOverride, configure, configure, configure, configure, configure, configure, constructType, constructType, convertValue, convertValue, convertValue, copyWith, createArrayNode, createDeserializationContext, createGenerator, createGenerator, createGenerator, createGenerator, createGenerator, createNonBlockingByteArrayParser, createObjectNode, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, deactivateDefaultTyping, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getNodeFactory, getPolymorphicTypeValidator, getPropertyNamingStrategy, getRegisteredModuleIds, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, missingNode, mixInCount, nullNode, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForArrayOf, readerForListOf, readerForMapOf, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAccessorNaming, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setConstructorDetector, setDateFormat, setDefaultAttributes, setDefaultLeniency, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPolymorphicTypeValidator, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, tokenStreamFactory, treeAsTokens, treeToValue, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString
        • Methods inherited from class com.fasterxml.jackson.core.ObjectCodec

          getJsonFactory

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/YAMLParser.Feature.html ================================================ YAMLParser.Feature (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLParser.Feature

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.FormatFeature, com.fasterxml.jackson.core.util.JacksonFeature, Serializable, Comparable<YAMLParser.Feature>
      Enclosing class:
      YAMLParser


      public static enum YAMLParser.Feature
      extends Enum<YAMLParser.Feature>
      implements com.fasterxml.jackson.core.FormatFeature
      Enumeration that defines all togglable features for YAML parsers.
      • Enum Constant Detail

        • EMPTY_STRING_AS_NULL

          public static final YAMLParser.Feature EMPTY_STRING_AS_NULL
          Feature that determines whether an empty String will be parsed as null. Logic is part of YAML 1.1 Null Language-Independent Type.

          Feature is enabled by default in Jackson 2.12 for backwards-compatibility reasons.

      • Method Detail

        • values

          public static YAMLParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLParser.Feature c : YAMLParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.util.JacksonFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.util.JacksonFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature
          Specified by:
          getMask in interface com.fasterxml.jackson.core.util.JacksonFeature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/YAMLParser.html ================================================ YAMLParser (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class YAMLParser
      extends com.fasterxml.jackson.core.base.ParserBase
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLParser.Feature
        Enumeration that defines all togglable features for YAML parsers.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected boolean _cfgEmptyStringsToNull 
        protected String _cleanedTextValue
        For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        protected String _currentAnchor
        Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
        protected String _currentFieldName
        Let's also have a local copy of the current field name
        protected boolean _currentIsAlias
        Flag that is set when current token was derived from an Alias (reference to another value's anchor)
        protected int _formatFeatures 
        protected org.yaml.snakeyaml.events.Event _lastEvent
        Keep track of the last event read, to get access to Location info
        protected org.yaml.snakeyaml.events.Event _lastTagEvent
        To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected Reader _reader
        Need to keep track of underlying Reader to be able to auto-close it (if required to)
        protected String _textValue
        We need to keep track of text values.
        protected org.yaml.snakeyaml.parser.ParserImpl _yamlParser 
        protected org.yaml.snakeyaml.resolver.Resolver _yamlResolver 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserBase

          _binaryValue, _byteArrayBuilder, _closed, _currInputProcessed, _currInputRow, _currInputRowStart, _expLength, _fractLength, _inputEnd, _inputPtr, _intLength, _ioContext, _nameCopied, _nameCopyBuffer, _nextToken, _numberBigDecimal, _numberBigInt, _numberDouble, _numberFloat, _numberInt, _numberLong, _numberNegative, _numberString, _numTypesValid, _parsingContext, _textBuffer, _tokenInputCol, _tokenInputRow, _tokenInputTotal, JSON_READ_CAPABILITIES
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload, DEFAULT_READ_CAPABILITIES
      • Constructor Summary

        Constructors 
        Constructor and Description
        YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt, com.fasterxml.jackson.core.util.BufferRecycler br, int parserFeatures, int formatFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader)
        Deprecated. 
        since 2.14, use other constructor
        YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt, int parserFeatures, int formatFeatures, org.yaml.snakeyaml.LoaderOptions loaderOptions, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Method Summary

        All Methods Instance Methods Concrete Methods Deprecated Methods 
        Modifier and Type Method and Description
        protected void _closeInput() 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntBinary(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntHex(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntOctal(String value, int i, int origLen, boolean negative) 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value, int len) 
        protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar) 
        protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m) 
        protected Boolean _matchYAMLBoolean(String value, int len) 
        protected int _parseIntValue() 
        protected void _parseNumericValue(int expType) 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f, boolean state)
        Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser disable(YAMLParser.Feature f)
        Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser enable(YAMLParser.Feature f)
        Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        String getCurrentAnchor()
        Deprecated. 
        Since 2.3 (was added in 2.1) -- use getObjectId() instead
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        Object getEmbeddedObject() 
        int getFormatFeatures() 
        String getObjectId() 
        com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        String getTypeId() 
        boolean hasTextCharacters() 
        boolean isCurrentAlias()
        Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
        boolean isEnabled(YAMLParser.Feature f)
        Method for checking whether specified CSV YAMLParser.Feature is enabled.
        com.fasterxml.jackson.core.JsonToken nextToken() 
        com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values, int mask) 
        int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant, OutputStream out) 
        boolean requiresCustomCodec() 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserBase

          _checkStdFeatureChanges, _contentReference, _decodeBase64Escape, _decodeBase64Escape, _decodeEscaped, _eofAsNextChar, _finishString, _getBigDecimal, _getBigInteger, _getByteArrayBuilder, _getSourceReference, _handleBase64MissingPadding, _handleEOF, _handleUnrecognizedCharacterEscape, _releaseBuffers, _reportMismatchedEndMarker, _reportTooLongIntegral, _throwUnquotedSpace, _validJsonTokenList, _validJsonValueList, close, convertNumberToBigDecimal, convertNumberToBigInteger, convertNumberToDouble, convertNumberToFloat, convertNumberToInt, convertNumberToLong, disable, enable, getBigIntegerValue, getBinaryValue, getCurrentValue, getDecimalValue, getDoubleValue, getFloatValue, getIntValue, getLongValue, getNumberType, getNumberValue, getNumberValueExact, getParsingContext, getTokenCharacterOffset, getTokenColumnNr, getTokenLineNr, growArrayBy, isClosed, isNaN, loadMore, loadMoreGuaranteed, overrideCurrentName, overrideStdFeatures, reportInvalidBase64Char, reportInvalidBase64Char, reset, resetAsNaN, resetFloat, resetInt, setCurrentValue, setFeatureMask
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _reportUnexpectedNumberChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedNumberIntToken, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _constructReadException, _reportUnsupportedOperation, assignCurrentValue, canParseAsync, canUseSchema, configure, currentLocation, currentName, currentTokenLocation, currentValue, finishToken, getBinaryValue, getBooleanValue, getByteValue, getFeatureMask, getInputSource, getNonBlockingInputFeeder, getSchema, getShortValue, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError, setSchema
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _cfgEmptyStringsToNull

          protected boolean _cfgEmptyStringsToNull
        • _reader

          protected final Reader _reader
          Need to keep track of underlying Reader to be able to auto-close it (if required to)
        • _yamlParser

          protected final org.yaml.snakeyaml.parser.ParserImpl _yamlParser
        • _yamlResolver

          protected final org.yaml.snakeyaml.resolver.Resolver _yamlResolver
        • _lastEvent

          protected org.yaml.snakeyaml.events.Event _lastEvent
          Keep track of the last event read, to get access to Location info
        • _lastTagEvent

          protected org.yaml.snakeyaml.events.Event _lastTagEvent
          To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
          Since:
          2.12
        • _textValue

          protected String _textValue
          We need to keep track of text values.
        • _cleanedTextValue

          protected String _cleanedTextValue
          For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
        • _currentFieldName

          protected String _currentFieldName
          Let's also have a local copy of the current field name
        • _currentIsAlias

          protected boolean _currentIsAlias
          Flag that is set when current token was derived from an Alias (reference to another value's anchor)
          Since:
          2.1
        • _currentAnchor

          protected String _currentAnchor
          Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
      • Constructor Detail

        • YAMLParser

          @Deprecated
          public YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                                        com.fasterxml.jackson.core.util.BufferRecycler br,
                                        int parserFeatures,
                                        int formatFeatures,
                                        com.fasterxml.jackson.core.ObjectCodec codec,
                                        Reader reader)
          Deprecated. since 2.14, use other constructor
        • YAMLParser

          public YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                            int parserFeatures,
                            int formatFeatures,
                            org.yaml.snakeyaml.LoaderOptions loaderOptions,
                            com.fasterxml.jackson.core.ObjectCodec codec,
                            Reader reader)
      • Method Detail

        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • isCurrentAlias

          public boolean isCurrentAlias()
          Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
          Since:
          2.1
        • getCurrentAnchor

          @Deprecated
          public String getCurrentAnchor()
          Deprecated. Since 2.3 (was added in 2.1) -- use getObjectId() instead
          Method that can be used to check if the current token has an associated anchor (id to reference via Alias)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.ParserBase
        • requiresCustomCodec

          public boolean requiresCustomCodec()
          Overrides:
          requiresCustomCodec in class com.fasterxml.jackson.core.JsonParser
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getReadCapabilities

          public com.fasterxml.jackson.core.util.JacksonFeatureSet<com.fasterxml.jackson.core.StreamReadCapability> getReadCapabilities()
          Overrides:
          getReadCapabilities in class com.fasterxml.jackson.core.JsonParser
        • _closeInput

          protected void _closeInput()
                              throws IOException
          Specified by:
          _closeInput in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                              int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f,
                                                                 boolean state)
          Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Overrides:
          getTokenLocation in class com.fasterxml.jackson.core.base.ParserBase
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Overrides:
          getCurrentLocation in class com.fasterxml.jackson.core.base.ParserBase
        • _locationFor

          protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m)
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _decodeScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar)
                                                                throws IOException
          Throws:
          IOException
        • _matchYAMLBoolean

          protected Boolean _matchYAMLBoolean(String value,
                                              int len)
        • _decodeNumberScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value,
                                                                             int len)
                                                                      throws IOException
          Throws:
          IOException
        • _decodeNumberIntBinary

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntBinary(String value,
                                                                                int i,
                                                                                int origLen,
                                                                                boolean negative)
                                                                         throws IOException
          Throws:
          IOException
        • _decodeNumberIntOctal

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntOctal(String value,
                                                                               int i,
                                                                               int origLen,
                                                                               boolean negative)
                                                                        throws IOException
          Throws:
          IOException
        • _decodeNumberIntHex

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberIntHex(String value,
                                                                             int i,
                                                                             int origLen,
                                                                             boolean negative)
                                                                      throws IOException
          Throws:
          IOException
        • hasTextCharacters

          public boolean hasTextCharacters()
          Overrides:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Overrides:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • readBinaryValue

          public int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant,
                                     OutputStream out)
                              throws IOException
          Overrides:
          readBinaryValue in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Overrides:
          _parseNumericValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • _parseIntValue

          protected int _parseIntValue()
                                throws IOException
          Overrides:
          _parseIntValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getObjectId

          public String getObjectId()
                             throws IOException
          Overrides:
          getObjectId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getTypeId

          public String getTypeId()
                           throws IOException
          Overrides:
          getTypeId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/JacksonYAMLParseException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.PackageVersion (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.yaml.PackageVersion

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Reader (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Writer (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactory (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactory

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactoryBuilder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.Builder.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.14.0 API)

    com.fasterxml.jackson.dataformat.yaml

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.yaml

    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).

    See: Description

    • Class Summary 
      Class Description
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      UTF8Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream.
      UTF8Writer  
      YAMLFactory  
      YAMLFactoryBuilder
      TSFBuilder implementation for constructing YAMLFactory instances.
      YAMLGenerator  
      YAMLMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      YAMLMapper.Builder
      Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
      YAMLParser
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    • Enum Summary 
      Enum Description
      YAMLGenerator.Feature
      Enumeration that defines all togglable features for YAML generators
      YAMLParser.Feature
      Enumeration that defines all togglable features for YAML parsers.
    • Exception Summary 
      Exception Description
      JacksonYAMLParseException  

    Package com.fasterxml.jackson.dataformat.yaml Description

    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml Class Hierarchy (Jackson-dataformat-YAML 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/Mark.html ================================================ Mark (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class Mark


    • Deprecated. 
      Should use basic JsonLocation instead

      @Deprecated
      public class Mark
      extends Object
      Placeholder for shaded org.yaml.snakeyaml.error.Mark
      Since:
      2.8 (as non-shaded); earlier shaded in
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.Mark _source
          Deprecated. 
      • Constructor Detail

        • Mark

          protected Mark(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
      • Method Detail

        • from

          public static Mark from(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
        • getName

          public String getName()
          Deprecated. 
        • get_snippet

          public String get_snippet()
          Deprecated. 
        • get_snippet

          public String get_snippet(int indent,
                                    int max_length)
          Deprecated. 
        • getColumn

          public int getColumn()
          Deprecated. 
        • getLine

          public int getLine()
          Deprecated. 
        • getIndex

          public int getIndex()
          Deprecated. 

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/MarkedYAMLException.html ================================================ MarkedYAMLException (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class MarkedYAMLException

    • All Implemented Interfaces:
      Serializable

      Deprecated. 
      Since 2.8

      @Deprecated
      public class MarkedYAMLException
      extends YAMLException
      Replacement for formerly shaded exception type from SnakeYAML; included in 2.8 solely for backwards compatibility: new code that relies on Jackson 2.8 and after should NOT use this type but only base type JacksonYAMLParseException.
      See Also:
      Serialized Form
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.MarkedYAMLException _source
          Deprecated. 
      • Constructor Detail

        • MarkedYAMLException

          protected MarkedYAMLException(com.fasterxml.jackson.core.JsonParser p,
                                        org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static MarkedYAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                                 org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
        • getContext

          public String getContext()
          Deprecated. 
        • getContextMark

          public Mark getContextMark()
          Deprecated. 
        • getProblem

          public String getProblem()
          Deprecated. 
        • getProblemMark

          public Mark getProblemMark()
          Deprecated. 

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/YAMLException.html ================================================ YAMLException (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class YAMLException

      • Constructor Detail

        • YAMLException

          public YAMLException(com.fasterxml.jackson.core.JsonParser p,
                               org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static YAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                           org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/Mark.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/MarkedYAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/YAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.14.0 API)

    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    See: Description

    • Class Summary 
      Class Description
      Mark Deprecated
      Should use basic JsonLocation instead
    • Exception Summary 
      Exception Description
      MarkedYAMLException Deprecated
      Since 2.8
      YAMLException Deprecated
      Since 2.8

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Description

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types. This is needed to improve backwards compatibility with frameworks like DropWizard.

    New code based on Jackson 2.8 and later should NOT use types in this package but instead rely on JacksonYAMLParseException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Class Hierarchy (Jackson-dataformat-YAML 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/util/StringQuotingChecker.Default.html ================================================ StringQuotingChecker.Default (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml.util

    Class StringQuotingChecker.Default

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/util/StringQuotingChecker.html ================================================ StringQuotingChecker (Jackson-dataformat-YAML 2.14.0 API)
    com.fasterxml.jackson.dataformat.yaml.util

    Class StringQuotingChecker

    • java.lang.Object
      • com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      StringQuotingChecker.Default


      public abstract class StringQuotingChecker
      extends Object
      implements Serializable
      Helper class that defines API used by YAMLGenerator to check whether property names and String values need to be quoted or not. Also contains default logic implementation; may be sub-classes to provide alternate implementation.
      Since:
      2.12
      See Also:
      Serialized Form
      • Constructor Detail

        • StringQuotingChecker

          public StringQuotingChecker()
      • Method Detail

        • needToQuoteName

          public abstract boolean needToQuoteName(String name)
          Method called by YAMLGenerator to check whether given property name should be quoted: usually to prevent it from being read as non-String key (boolean or number)
        • needToQuoteValue

          public abstract boolean needToQuoteValue(String value)
          Method called by YAMLGenerator to check whether given String value should be quoted: usually to prevent it from being value of different type (boolean or number).
        • isReservedKeyword

          protected boolean isReservedKeyword(String value)
          Helper method that sub-classes may use to see if given String value is one of:
          • YAML 1.1 keyword representing boolean
          • YAML 1.1 keyword representing null value
          • empty String (length 0)
          • and returns true if so.
          Parameters:
          value - String to check
          Returns:
          true if given value is a Boolean or Null representation (as per YAML 1.1 specification) or empty String
        • _isReservedKeyword

          protected boolean _isReservedKeyword(int firstChar,
                                               String name)
        • looksLikeYAMLNumber

          protected boolean looksLikeYAMLNumber(String name)
          Helper method that sub-classes may use to see if given String value looks like a YAML 1.1 numeric value and would likely be considered a number when parsing unless quoting is used.
        • _looksLikeYAMLNumber

          protected boolean _looksLikeYAMLNumber(int firstChar,
                                                 String name)
        • valueHasQuotableChar

          protected boolean valueHasQuotableChar(String inputStr)
          As per YAML Plain Styleunquoted strings are restricted to a reduced charset and must be quoted in case they contain one of the following characters or character combinations.
        • nameHasQuotableChar

          protected boolean nameHasQuotableChar(String inputStr)
          Looks like we may get names with "funny characters" so.
          Since:
          2.13.2

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/util/class-use/StringQuotingChecker.Default.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/util/class-use/StringQuotingChecker.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/util/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.14.0 API)

    com.fasterxml.jackson.dataformat.yaml.util

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/util/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.14.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.util

    Helper classes for YAML backend.

    See: Description

    Package com.fasterxml.jackson.dataformat.yaml.util Description

    Helper classes for YAML backend.
    Since:
    2.12

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/util/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.util Class Hierarchy (Jackson-dataformat-YAML 2.14.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.util

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/com/fasterxml/jackson/dataformat/yaml/util/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.util (Jackson-dataformat-YAML 2.14.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.util

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-YAML 2.14.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-YAML 2.14.0 API)

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/help-doc.html ================================================ API Help (Jackson-dataformat-YAML 2.14.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/index-all.html ================================================ Index (Jackson-dataformat-YAML 2.14.0 API)
    A B C D E F G H I J L M N O P R S T U V W Y _ 

    A

    append(char) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    B

    build() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    buildDumperOptions(int, int, DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Main factory method to use for constructing YAMLFactory instances with different configuration.
    builder() - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    builder(YAMLFactory) - Static method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    Builder(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     

    C

    canModifyBuffer() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method that can be used to see if we can actually modify the underlying buffer.
    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    com.fasterxml.jackson.dataformat.yaml - package com.fasterxml.jackson.dataformat.yaml
    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error - package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    com.fasterxml.jackson.dataformat.yaml.util - package com.fasterxml.jackson.dataformat.yaml.util
    Helper classes for YAML backend.
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified parser feature (check YAMLParser.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     

    D

    Default() - Constructor for class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
     
    DEFAULT_YAML_GENERATOR_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all generator features that are enabled by default.
    DEFAULT_YAML_PARSER_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all parser features that are enabled by default.
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified parser features (check YAMLParser.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    disable(YAMLParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    disable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)
    dumperOptions(DumperOptions) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).
    dumperOptions() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).

    E

    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified parser feature (check YAMLParser.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified generator features (check YAMLGenerator.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature, YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    enable(YAMLParser.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    enable(YAMLGenerator.Feature...) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper.Builder
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     

    F

    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    FORMAT_NAME_YAML - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Name used to identify YAML format.
    formatGeneratorFeaturesMask() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(Mark) - Static method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    from(JsonParser, MarkedYAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    from(JsonParser, YAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     

    G

    get_snippet() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    get_snippet(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getColumn() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getContext() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getContextMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getCurrentAnchor() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Deprecated.
    Since 2.3 (was added in 2.1) -- use YAMLParser.getObjectId() instead
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    Overridden with more specific type, since factory we have is always of type YAMLFactory
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFormatGeneratorFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatParserFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatReadFeatureType() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getFormatWriteFeatureType() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getLine() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    SnakeYAML does not expose buffered content amount, so we can only return -1 from here
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getProblem() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getProblemMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getReadCapabilities() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getWriteCapabilities() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Sub-classes need to override this method
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    I

    instance() - Static method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
     
    isCurrentAlias() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Checked whether specified parser feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Check whether specified generator feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for checking whether specified CSV YAMLParser.Feature is enabled.
    isReservedKeyword(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Helper method that sub-classes may use to see if given String value is one of: YAML 1.1 keyword representing boolean YAML 1.1 keyword representing null value empty String (length 0) and returns true if so.

    J

    JacksonYAMLParseException - Exception in com.fasterxml.jackson.dataformat.yaml
     
    JacksonYAMLParseException(JsonParser, String, Exception) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException
     

    L

    loaderOptions(LoaderOptions) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
    loaderOptions() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
    looksLikeYAMLNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Helper method that sub-classes may use to see if given String value looks like a YAML 1.1 numeric value and would likely be considered a number when parsing unless quoting is used.

    M

    Mark - Class in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Should use basic JsonLocation instead
    Mark(Mark) - Constructor for class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    MarkedYAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    MarkedYAMLException(JsonParser, MarkedYAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    N

    nameHasQuotableChar(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Looks like we may get names with "funny characters" so.
    needToQuoteName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
    Default implementation will call StringQuotingChecker.isReservedKeyword(String) and StringQuotingChecker.looksLikeYAMLNumber(String) to determine if quoting should be applied.
    needToQuoteName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Method called by YAMLGenerator to check whether given property name should be quoted: usually to prevent it from being read as non-String key (boolean or number)
    needToQuoteValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker.Default
    Default implementation will call StringQuotingChecker.isReservedKeyword(String) and StringQuotingChecker.valueHasQuotableChar(String) to determine if quoting should be applied.
    needToQuoteValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    Method called by YAMLGenerator to check whether given String value should be quoted: usually to prevent it from being value of different type (boolean or number).
    nextToken() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    O

    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.yaml
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    PLAIN_NUMBER_P - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    readBinaryValue(Base64Variant, OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readResolve() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method that we need to override to actually make restoration go through constructors etc.
    rebuild() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    requiresCustomCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; will always indent, but uses YAML-specific settings etc.
    StringQuotingChecker - Class in com.fasterxml.jackson.dataformat.yaml.util
    Helper class that defines API used by YAMLGenerator to check whether property names and String values need to be quoted or not.
    StringQuotingChecker() - Constructor for class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    stringQuotingChecker(StringQuotingChecker) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Method for specifying either custom StringQuotingChecker to use instead of default one, or, that default one (see StringQuotingChecker.Default.instance()) is to be used (when passing null
    stringQuotingChecker() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    StringQuotingChecker.Default - Class in com.fasterxml.jackson.dataformat.yaml.util
    Default StringQuotingChecker implementation used unless custom implementation registered.

    T

    TAG_BINARY - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; could reset indentation to some value maybe?
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.yaml
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Reader(byte[], int, int, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.yaml
     
    UTF8Writer(OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    V

    valueHasQuotableChar(String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
    As per YAML Plain Styleunquoted strings are restricted to a reduced charset and must be quoted in case they contain one of the following characters or character combinations.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    W

    write(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldId(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectRef(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeTypeId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    Y

    YAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    YAMLException(JsonParser, YAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     
    YAMLFactory - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLFactory() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Default constructor used to create factory instances.
    YAMLFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactoryBuilder) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Constructors used by YAMLFactoryBuilder for instantiation.
    YAMLFactoryBuilder - Class in com.fasterxml.jackson.dataformat.yaml
    TSFBuilder implementation for constructing YAMLFactory instances.
    YAMLFactoryBuilder() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLFactoryBuilder(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     
    YAMLGenerator - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLGenerator(IOContext, int, int, StringQuotingChecker, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    YAMLGenerator(IOContext, int, int, StringQuotingChecker, ObjectCodec, Writer, DumperOptions) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    YAMLGenerator(IOContext, int, int, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Deprecated.
    YAMLGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML generators
    YAMLMapper - Class in com.fasterxml.jackson.dataformat.yaml
    Convenience version of ObjectMapper which is configured with YAMLFactory.
    YAMLMapper() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper.Builder - Class in com.fasterxml.jackson.dataformat.yaml
    Base implementation for "Vanilla" ObjectMapper, used with YAML backend.
    YAMLParser - Class in com.fasterxml.jackson.dataformat.yaml
    JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    YAMLParser(IOContext, BufferRecycler, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Deprecated.
    since 2.14, use other constructor
    YAMLParser(IOContext, int, int, LoaderOptions, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    YAMLParser.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML parsers.
    yamlVersionToWrite(DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Method for specifying YAML version for generator to use (to produce compliant output); if null passed, will let SnakeYAML use its default settings.
    yamlVersionToWrite() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
     

    _

    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
    This ThreadLocal contains a SoftReference to a byte array used for holding content to decode
    _cfgEmptyStringsToNull - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _cleanedTextValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    For some tokens (specifically, numbers), we'll have cleaned up version, mostly free of underscores
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _currentAnchor - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
    _currentFieldName - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Let's also have a local copy of the current field name
    _currentIsAlias - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Flag that is set when current token was derived from an Alias (reference to another value's anchor)
    _decodeNumberIntBinary(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberIntHex(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberIntOctal(String, int, int, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeNumberScalar(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeScalar(ScalarEvent) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _docVersion - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _dumperOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).
    _dumperOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).
    _emit(Event) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitEndDocument() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitStartDocument() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _emitter - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _formatGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Set of YAMLGenerator.Features enabled, as bitmask.
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointed to the end marker, that is, position one after the last valid available byte.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointer to the next available byte (if any), iff less than mByteBufferEnd
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _isReservedKeyword(int, String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    _lastEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Keep track of the last event read, to get access to Location info
    _lastTagEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    To keep track of tags ("type ids"), need to either get tags for all events, or, keep tag of relevant event that might have it: this is different from _lastEvent in some cases.
    _lf() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _loaderOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
    _loaderOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
    _locationFor(Mark) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _looksLikeYAMLNumber(int, String) - Method in class com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _matchYAMLBoolean(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Codec used for data binding when (if) requested.
    _objectId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Object identifiers, so databinder may indicate need to output one.
    _outputOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Helper object used to determine whether property names, String values must be quoted or not.
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    Helper object used to determine whether property names, String values must be quoted or not.
    _quotingChecker - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Need to keep track of underlying Reader to be able to auto-close it (if required to)
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _rootValueCount - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _scalarEvent(String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _source - Variable in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    _source - Variable in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    _surrogate - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Decoded first character of a surrogate pair, if one needs to be buffered
    _textValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    We need to keep track of text values.
    _typeId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Type identifiers, so databinder may indicate need to output one.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    YAML version for underlying generator to follow, if specified.
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
    YAML version for underlying generator to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).
    _writer - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _writeScalar(String, String, DumperOptions.ScalarStyle) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _yamlGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlParser - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _yamlParserFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlResolver - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    A B C D E F G H I J L M N O P R S T U V W Y _ 

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/index.html ================================================ Jackson-dataformat-YAML 2.14.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/yaml/2.14/javadoc.sh ================================================ /Users/tatu/.sdkman/candidates/java/8.0.345-tem/jre/../bin/javadoc @options @packages ================================================ FILE: docs/javadoc/yaml/2.14/options ================================================ -classpath '/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.14.0/jackson-databind-2.14.0.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.14.0/jackson-annotations-2.14.0.jar:/Users/tatu/.m2/repository/org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar:/Users/tatu/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.14.0/jackson-core-2.14.0.jar' -encoding 'UTF-8' -protected -quiet -source '1.8' -sourcepath '/Users/tatu/jackson/jackson-dataformats-text/yaml/src/main/java:/Users/tatu/jackson/jackson-dataformats-text/yaml/target/generated-sources:/Users/tatu/jackson/jackson-dataformats-text/yaml/target/generated-sources/annotations' -author -bottom 'Copyright © 2022 FasterXML. All rights reserved.' -charset 'UTF-8' -d '/Users/tatu/jackson/jackson-dataformats-text/yaml/target/apidocs' -docencoding 'UTF-8' -doctitle 'Jackson-dataformat-YAML 2.14.0 API' -link 'https://docs.oracle.com/javase/8/docs/api' -linkoffline 'https://docs.oracle.com/javase/8/docs/api' '/Users/tatu/jackson/jackson-dataformats-text/yaml/target/javadoc-bundle-options' -notimestamp -use -version -windowtitle 'Jackson-dataformat-YAML 2.14.0 API' ================================================ FILE: docs/javadoc/yaml/2.14/overview-frame.html ================================================ Overview List (Jackson-dataformat-YAML 2.14.0 API)

     

    ================================================ FILE: docs/javadoc/yaml/2.14/overview-summary.html ================================================ Overview (Jackson-dataformat-YAML 2.14.0 API)

    Jackson-dataformat-YAML 2.14.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.yaml
    Main abstractions for Jackson YAML format backend, including streaming reader ((YAMLParser), writer (YAMLGenerator) (and factory to create them, YAMLFactory) as well as mapper (YAMLMapper).
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    com.fasterxml.jackson.dataformat.yaml.util
    Helper classes for YAML backend.

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-YAML 2.14.0 API)

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.databind.cfg.MapperBuilder<M,B>
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker (implements java.io.Serializable)
      • java.lang.Throwable (implements java.io.Serializable)
        • java.lang.Exception
          • java.io.IOException
            • com.fasterxml.jackson.core.JacksonException
              • com.fasterxml.jackson.core.JsonProcessingException
                • com.fasterxml.jackson.core.exc.StreamReadException
      • com.fasterxml.jackson.core.TokenStreamFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • com.fasterxml.jackson.core.TSFBuilder<F,B>
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/package-list ================================================ com.fasterxml.jackson.dataformat.yaml com.fasterxml.jackson.dataformat.yaml.snakeyaml.error com.fasterxml.jackson.dataformat.yaml.util ================================================ FILE: docs/javadoc/yaml/2.14/packages ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error com.fasterxml.jackson.dataformat.yaml.util com.fasterxml.jackson.dataformat.yaml ================================================ FILE: docs/javadoc/yaml/2.14/script.js ================================================ function show(type) { count = 0; for (var key in methods) { var row = document.getElementById(key); if ((methods[key] & type) != 0) { row.style.display = ''; row.className = (count++ % 2) ? rowColor : altColor; } else row.style.display = 'none'; } updateTabs(type); } function updateTabs(type) { for (var value in tabs) { var sNode = document.getElementById(tabs[value][0]); var spanNode = sNode.firstChild; if (value == type) { sNode.className = activeTableTab; spanNode.innerHTML = tabs[value][1]; } else { sNode.className = tableTab; spanNode.innerHTML = "" + tabs[value][1] + ""; } } } ================================================ FILE: docs/javadoc/yaml/2.14/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-YAML 2.14.0 API)

    Serialized Form

    • Package com.fasterxml.jackson.dataformat.yaml

      • Class com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException extends com.fasterxml.jackson.core.JsonParseException implements Serializable

        serialVersionUID:
        1L
      • Class com.fasterxml.jackson.dataformat.yaml.YAMLFactory extends com.fasterxml.jackson.core.JsonFactory implements Serializable

        serialVersionUID:
        1L
        • Serialization Methods

          • readResolve

            protected Object readResolve()
            Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
        • Serialized Fields

          • _yamlParserFeatures

            int _yamlParserFeatures
          • _yamlGeneratorFeatures

            int _yamlGeneratorFeatures
          • _version

            org.yaml.snakeyaml.DumperOptions.Version _version
            YAML version for underlying generator to follow, if specified.
            Since:
            2.12
          • _quotingChecker

            StringQuotingChecker _quotingChecker
            Helper object used to determine whether property names, String values must be quoted or not.
            Since:
            2.12
          • _loaderOptions

            org.yaml.snakeyaml.LoaderOptions _loaderOptions
            Configuration for underlying parser to follow, if specified; left as null for backwards compatibility (which means whatever default settings SnakeYAML deems best).

            If you need to support parsing YAML files that are larger than 3Mb, it is recommended that you provide a LoaderOptions instance where you set the Codepoint Limit to a larger value than its 3Mb default.

            Since:
            2.14
          • _dumperOptions

            org.yaml.snakeyaml.DumperOptions _dumperOptions
            Configuration for underlying generator to follow, if specified; left as null for backwards compatibility (which means the dumper options are derived based on YAMLGenerator.Features).

            These YAMLGenerator.Features are ignored if you provide your own DumperOptions:

            • YAMLGenerator.Feature.ALLOW_LONG_KEYS
            • YAMLGenerator.Feature.CANONICAL_OUTPUT
            • YAMLGenerator.Feature.INDENT_ARRAYS
            • YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR
            • YAMLGenerator.Feature.SPLIT_LINES
            • YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS

            Since:
            2.14
      • Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper extends com.fasterxml.jackson.databind.ObjectMapper implements Serializable

        serialVersionUID:
        1L
    • Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    • Package com.fasterxml.jackson.dataformat.yaml.util

    Copyright © 2022 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.14/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ @import url('resources/fonts/dejavu.css'); body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; } a:link, a:visited { text-decoration:none; color:#4A6782; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4A6782; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-family:'DejaVu Sans Mono', monospace; font-size:14px; } h1 { font-size:20px; } h2 { font-size:18px; } h3 { font-size:16px; font-style:italic; } h4 { font-size:13px; } h5 { font-size:12px; } h6 { font-size:11px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; margin-top:8px; line-height:1.4em; } dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; padding-top:4px; } table tr td dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; padding-top:4px; } sup { font-size:8px; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:11px; z-index:200; margin-top:-9px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-color:#4D7A97; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:11px; margin:0; } .topNav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .bottomNav { margin-top:10px; background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } .subNav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } ul.subNavList li{ list-style:none; float:left; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } .navBarCell1Rev { background-color:#F8981D; color:#253441; margin: auto 5px; } .skipNav { position:absolute; top:auto; left:-9999px; overflow:hidden; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader span{ margin-right:15px; } .indexHeader h1 { font-size:13px; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 15px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:13px; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border:1px solid #d0d9e0; margin:0 0 6px -8px; padding:7px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:12px; } .indexContainer h2 { font-size:13px; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; padding-top:2px; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:12px; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:5px 0 10px 0px; font-size:14px; font-family:'DejaVu Sans Mono',monospace; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:15px; line-height:1.4; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #ededed; background-color:#f8f8f8; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { width:100%; border-left:1px solid #EEE; border-right:1px solid #EEE; border-bottom:1px solid #EEE; } .overviewSummary, .memberSummary { padding:0px; } .overviewSummary caption, .memberSummary caption, .typeSummary caption, .useSummary caption, .constantsSummary caption, .deprecatedSummary caption { position:relative; text-align:left; background-repeat:no-repeat; color:#253441; font-weight:bold; clear:none; overflow:hidden; padding:0px; padding-top:10px; padding-left:1px; margin:0px; white-space:pre; } .overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, .useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, .overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, .useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, .useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, .overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, .useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; padding-bottom:7px; display:inline-block; float:left; background-color:#F8981D; border: none; height:16px; } .memberSummary caption span.activeTableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#F8981D; height:16px; } .memberSummary caption span.tableTab span { white-space:nowrap; padding-top:5px; padding-left:12px; padding-right:12px; margin-right:3px; display:inline-block; float:left; background-color:#4D7A97; height:16px; } .memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { padding-top:0px; padding-left:0px; padding-right:0px; background-image:none; float:none; display:inline; } .overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, .useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { display:none; width:5px; position:relative; float:left; background-color:#F8981D; } .memberSummary .activeTableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; float:left; background-color:#F8981D; } .memberSummary .tableTab .tabEnd { display:none; width:5px; margin-right:3px; position:relative; background-color:#4D7A97; float:left; } .overviewSummary td, .memberSummary td, .typeSummary td, .useSummary td, .constantsSummary td, .deprecatedSummary td { text-align:left; padding:0px 0px 12px 10px; } th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ vertical-align:top; padding-right:0px; padding-top:8px; padding-bottom:3px; } th.colFirst, th.colLast, th.colOne, .constantsSummary th { background:#dee3e9; text-align:left; padding:8px 3px 3px 7px; } td.colFirst, th.colFirst { white-space:nowrap; font-size:13px; } td.colLast, th.colLast { font-size:13px; } td.colOne, th.colOne { font-size:13px; } .overviewSummary td.colFirst, .overviewSummary th.colFirst, .useSummary td.colFirst, .useSummary th.colFirst, .overviewSummary td.colOne, .overviewSummary th.colOne, .memberSummary td.colFirst, .memberSummary th.colFirst, .memberSummary td.colOne, .memberSummary th.colOne, .typeSummary td.colFirst{ width:25%; vertical-align:top; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } .tableSubHeadingColor { background-color:#EEEEFF; } .altColor { background-color:#FFFFFF; } .rowColor { background-color:#EEEEEF; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } ul.blockList ul.blockList ul.blockList li.blockList h3 { font-style:normal; } div.block { font-size:14px; font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } td.colLast div { padding-top:0px; } td.colLast a { padding-bottom:3px; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:10px; } .block { display:block; margin:3px 10px 2px 0px; color:#474747; } .deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, .overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { font-weight:bold; } .deprecationComment, .emphasizedPhrase, .interfaceName { font-style:italic; } div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, div.block div.block span.interfaceName { font-style:normal; } div.contentContainer ul.blockList li.blockList h2{ padding-bottom:0px; } ================================================ FILE: docs/javadoc/yaml/2.9/allclasses-frame.html ================================================ All Classes (Jackson-dataformat-YAML 2.9.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.9/allclasses-noframe.html ================================================ All Classes (Jackson-dataformat-YAML 2.9.0 API)

    All Classes

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/JacksonYAMLParseException.html ================================================ JacksonYAMLParseException (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class JacksonYAMLParseException

    • All Implemented Interfaces:
      Serializable
      Direct Known Subclasses:
      YAMLException


      public class JacksonYAMLParseException
      extends com.fasterxml.jackson.core.JsonParseException
      Since:
      2.8
      See Also:
      Serialized Form
      • Constructor Detail

        • JacksonYAMLParseException

          public JacksonYAMLParseException(com.fasterxml.jackson.core.JsonParser p,
                                   String msg,
                                   Exception e)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/PackageVersion.html ================================================ PackageVersion (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class PackageVersion

    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned


      public final class PackageVersion
      extends Object
      implements com.fasterxml.jackson.core.Versioned
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      • Field Detail

        • VERSION

          public static final com.fasterxml.jackson.core.Version VERSION
      • Constructor Detail

        • PackageVersion

          public PackageVersion()
      • Method Detail

        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/UTF8Reader.html ================================================ UTF8Reader (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Reader

    • All Implemented Interfaces:
      Closeable, AutoCloseable, Readable


      public final class UTF8Reader
      extends Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream. In addition to doing (hopefully) optimal conversion, it can also take array of "pre-read" (leftover) bytes; this is necessary when preliminary stream/reader is trying to figure out underlying character encoding.
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected byte[][] _bufferHolder 
        protected static ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
        This ThreadLocal contains a SoftRerefence to a byte array used for holding content to decode
        protected byte[] _inputBuffer 
        protected int _inputEnd
        Pointed to the end marker, that is, position one after the last valid available byte.
        protected int _inputPtr
        Pointer to the next available byte (if any), iff less than mByteBufferEnd
        protected int _surrogate
        Decoded first character of a surrogate pair, if one needs to be buffered
      • Constructor Summary

        Constructors 
        Constructor and Description
        UTF8Reader(byte[] buf, int ptr, int len, boolean autoClose) 
        UTF8Reader(InputStream in, boolean autoClose) 
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        void close() 
        void freeBuffers()
        This method should be called along with (or instead of) normal close.
        protected InputStream getStream() 
        int read()
        Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
        int read(char[] cbuf) 
        int read(char[] cbuf, int start, int len) 
        protected int readBytes()
        Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
        protected int readBytesAt(int offset)
        Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
        protected void reportBounds(char[] cbuf, int start, int len) 
        protected void reportStrangeStream() 
      • Field Detail

        • _bufferRecycler

          protected static final ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
          This ThreadLocal contains a SoftRerefence to a byte array used for holding content to decode
        • _bufferHolder

          protected final byte[][] _bufferHolder
        • _inputBuffer

          protected byte[] _inputBuffer
        • _inputPtr

          protected int _inputPtr
          Pointer to the next available byte (if any), iff less than mByteBufferEnd
        • _inputEnd

          protected int _inputEnd
          Pointed to the end marker, that is, position one after the last valid available byte.
        • _surrogate

          protected int _surrogate
          Decoded first character of a surrogate pair, if one needs to be buffered
      • Constructor Detail

        • UTF8Reader

          public UTF8Reader(InputStream in,
                    boolean autoClose)
        • UTF8Reader

          public UTF8Reader(byte[] buf,
                    int ptr,
                    int len,
                    boolean autoClose)
      • Method Detail

        • read

          public int read()
                   throws IOException
          Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
          Overrides:
          read in class Reader
          Throws:
          IOException
        • readBytes

          protected final int readBytes()
                                 throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
          Returns:
          Number of bytes read, if any; -1 for end-of-input.
          Throws:
          IOException
        • readBytesAt

          protected final int readBytesAt(int offset)
                                   throws IOException
          Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
          Returns:
          Number of bytes read, if any; -1 to indicate none available (that is, end of input)
          Throws:
          IOException
        • freeBuffers

          public final void freeBuffers()
          This method should be called along with (or instead of) normal close. After calling this method, no further reads should be tried. Method will try to recycle read buffers (if any).
        • reportBounds

          protected void reportBounds(char[] cbuf,
                          int start,
                          int len)
                               throws IOException
          Throws:
          IOException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/UTF8Writer.html ================================================ UTF8Writer (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class UTF8Writer

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/YAMLFactory.html ================================================ YAMLFactory (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLFactory

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonFactory
        • com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLFactory
      extends com.fasterxml.jackson.core.JsonFactory
      See Also:
      Serialized Form
      • Field Detail

        • DEFAULT_YAML_PARSER_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_PARSER_FEATURE_FLAGS
          Bitfield (set of flags) of all parser features that are enabled by default.
        • DEFAULT_YAML_GENERATOR_FEATURE_FLAGS

          protected static final int DEFAULT_YAML_GENERATOR_FEATURE_FLAGS
          Bitfield (set of flags) of all generator features that are enabled by default.
        • _yamlParserFeatures

          protected int _yamlParserFeatures
        • _yamlGeneratorFeatures

          protected int _yamlGeneratorFeatures
        • _version

          protected org.yaml.snakeyaml.DumperOptions.Version _version
        • UTF8

          protected final Charset UTF8
      • Constructor Detail

        • YAMLFactory

          public YAMLFactory()
          Default constructor used to create factory instances. Creation of a factory instance is a light-weight operation, but it is still a good idea to reuse limited number of factory instances (and quite often just a single instance): factories are used as context for storing some reused processing objects (such as symbol tables parsers use) and this reuse only works within context of a single factory instance.
        • YAMLFactory

          public YAMLFactory(com.fasterxml.jackson.core.ObjectCodec oc)
        • YAMLFactory

          public YAMLFactory(YAMLFactory src,
                     com.fasterxml.jackson.core.ObjectCodec oc)
          Since:
          2.2.1
      • Method Detail

        • copy

          public YAMLFactory copy()
          Overrides:
          copy in class com.fasterxml.jackson.core.JsonFactory
        • readResolve

          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
          Overrides:
          readResolve in class com.fasterxml.jackson.core.JsonFactory
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.JsonFactory
        • canUseCharArrays

          public boolean canUseCharArrays()
          Overrides:
          canUseCharArrays in class com.fasterxml.jackson.core.JsonFactory
        • getFormatName

          public String getFormatName()
          Overrides:
          getFormatName in class com.fasterxml.jackson.core.JsonFactory
        • hasFormat

          public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                    throws IOException
          Sub-classes need to override this method (as of 1.8)
          Overrides:
          hasFormat in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • isEnabled

          public final boolean isEnabled(YAMLParser.Feature f)
          Checked whether specified parser feature is enabled.
        • isEnabled

          public final boolean isEnabled(YAMLGenerator.Feature f)
          Check whether specified generator feature is enabled.
        • createParser

          public YAMLParser createParser(char[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(char[] data,
                                int offset,
                                int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createParser

          public YAMLParser createParser(byte[] data,
                                int offset,
                                int len)
                                  throws IOException
          Overrides:
          createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public YAMLGenerator createGenerator(OutputStream out,
                                      com.fasterxml.jackson.core.JsonEncoding enc)
                                        throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • createGenerator

          public com.fasterxml.jackson.core.JsonGenerator createGenerator(File f,
                                                                 com.fasterxml.jackson.core.JsonEncoding enc)
                                                                   throws IOException
          Overrides:
          createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(InputStream in,
                                 com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(Reader r,
                                 com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(char[] data,
                                 int offset,
                                 int len,
                                 com.fasterxml.jackson.core.io.IOContext ctxt,
                                 boolean recyclable)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createParser

          protected YAMLParser _createParser(byte[] data,
                                 int offset,
                                 int len,
                                 com.fasterxml.jackson.core.io.IOContext ctxt)
                                      throws IOException
          Overrides:
          _createParser in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createGenerator

          protected YAMLGenerator _createGenerator(Writer out,
                                       com.fasterxml.jackson.core.io.IOContext ctxt)
                                            throws IOException
          Overrides:
          _createGenerator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createUTF8Generator

          protected YAMLGenerator _createUTF8Generator(OutputStream out,
                                           com.fasterxml.jackson.core.io.IOContext ctxt)
                                                throws IOException
          Overrides:
          _createUTF8Generator in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createWriter

          protected Writer _createWriter(OutputStream out,
                             com.fasterxml.jackson.core.JsonEncoding enc,
                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Overrides:
          _createWriter in class com.fasterxml.jackson.core.JsonFactory
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(InputStream in,
                             com.fasterxml.jackson.core.JsonEncoding enc,
                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException
        • _createReader

          protected Reader _createReader(byte[] data,
                             int offset,
                             int len,
                             com.fasterxml.jackson.core.JsonEncoding enc,
                             com.fasterxml.jackson.core.io.IOContext ctxt)
                                  throws IOException
          Throws:
          IOException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.Feature.html ================================================ YAMLGenerator.Feature (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLGenerator.Feature

      • Enum Constant Detail

        • WRITE_DOC_START_MARKER

          public static final YAMLGenerator.Feature WRITE_DOC_START_MARKER
          Whether we are to write an explicit document start marker ("---") or not.
          Since:
          2.3
        • USE_NATIVE_OBJECT_ID

          public static final YAMLGenerator.Feature USE_NATIVE_OBJECT_ID
          Whether to use YAML native Object Id construct for indicating type (true); or "generic" Object Id mechanism (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • USE_NATIVE_TYPE_ID

          public static final YAMLGenerator.Feature USE_NATIVE_TYPE_ID
          Whether to use YAML native Type Id construct for indicating type (true); or "generic" type property (false). Former works better for systems that are YAML-centric; latter may be better choice for interoperability, when converting between formats or accepting other formats.
          Since:
          2.5
        • CANONICAL_OUTPUT

          public static final YAMLGenerator.Feature CANONICAL_OUTPUT
          Do we try to force so-called canonical output or not.
        • SPLIT_LINES

          public static final YAMLGenerator.Feature SPLIT_LINES
          Options passed to SnakeYAML that determines whether longer textual content gets automatically split into multiple lines or not.

          Feature is enabled by default to conform to SnakeYAML defaults as well as backwards compatibility with 2.5 and earlier versions.

          Since:
          2.6
        • MINIMIZE_QUOTES

          public static final YAMLGenerator.Feature MINIMIZE_QUOTES
          Whether strings will be rendered without quotes (true) or with quotes (false, default).

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.7
        • ALWAYS_QUOTE_NUMBERS_AS_STRINGS

          public static final YAMLGenerator.Feature ALWAYS_QUOTE_NUMBERS_AS_STRINGS
          Whether numbers stored as strings will be rendered with quotes (true) or without quotes (false, default) when MINIMIZE_QUOTES is enabled.

          Minimized quote usage makes for more human readable output; however, content is limited to printable characters according to the rules of literal block style.

          Since:
          2.8.2
        • INDENT_ARRAYS

          public static final YAMLGenerator.Feature INDENT_ARRAYS
          Feature enabling of which adds indentation for array entry generation (default indentation being 2 spaces).

          Default value is `false` for backwards compatibility

          Since:
          2.9
      • Field Detail

        • _defaultState

          protected final boolean _defaultState
        • _mask

          protected final int _mask
      • Method Detail

        • values

          public static YAMLGenerator.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLGenerator.Feature c : YAMLGenerator.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLGenerator.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/YAMLGenerator.html ================================================ YAMLGenerator (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLGenerator

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonGenerator
        • com.fasterxml.jackson.core.base.GeneratorBase
          • com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, Flushable, AutoCloseable


      public class YAMLGenerator
      extends com.fasterxml.jackson.core.base.GeneratorBase
      • Field Detail

        • PLAIN_NUMBER_P

          protected static final Pattern PLAIN_NUMBER_P
        • _ioContext

          protected final com.fasterxml.jackson.core.io.IOContext _ioContext
        • _formatFeatures

          protected int _formatFeatures
          Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
        • _writer

          protected Writer _writer
        • _outputOptions

          protected org.yaml.snakeyaml.DumperOptions _outputOptions
        • _emitter

          protected org.yaml.snakeyaml.emitter.Emitter _emitter
        • _objectId

          protected String _objectId
          YAML supports native Object identifiers, so databinder may indicate need to output one.
        • _typeId

          protected String _typeId
          YAML supports native Type identifiers, so databinder may indicate need to output one.
      • Constructor Detail

        • YAMLGenerator

          public YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt,
                       int jsonFeatures,
                       int yamlFeatures,
                       com.fasterxml.jackson.core.ObjectCodec codec,
                       Writer out,
                       org.yaml.snakeyaml.DumperOptions.Version version)
                        throws IOException
          Throws:
          IOException
      • Method Detail

        • buildDumperOptions

          protected org.yaml.snakeyaml.DumperOptions buildDumperOptions(int jsonFeatures,
                                                            int yamlFeatures,
                                                            org.yaml.snakeyaml.DumperOptions.Version version)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.GeneratorBase
        • useDefaultPrettyPrinter

          public YAMLGenerator useDefaultPrettyPrinter()
          Not sure what to do here; could reset indentation to some value maybe?
          Overrides:
          useDefaultPrettyPrinter in class com.fasterxml.jackson.core.base.GeneratorBase
        • setPrettyPrinter

          public YAMLGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
          Not sure what to do here; will always indent, but uses YAML-specific settings etc.
          Overrides:
          setPrettyPrinter in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputTarget

          public Object getOutputTarget()
          Overrides:
          getOutputTarget in class com.fasterxml.jackson.core.JsonGenerator
        • getOutputBuffered

          public int getOutputBuffered()
          SnakeYAML does not expose buffered content amount, so we can only return -1 from here
          Overrides:
          getOutputBuffered in class com.fasterxml.jackson.core.JsonGenerator
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int values,
                                                                        int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonGenerator
        • canUseSchema

          public boolean canUseSchema(com.fasterxml.jackson.core.FormatSchema schema)
          Overrides:
          canUseSchema in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteFormattedNumbers

          public boolean canWriteFormattedNumbers()
          Overrides:
          canWriteFormattedNumbers in class com.fasterxml.jackson.core.JsonGenerator
        • writeFieldName

          public final void writeFieldName(String name)
                                    throws IOException
          Specified by:
          writeFieldName in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeFieldName

          public final void writeFieldName(com.fasterxml.jackson.core.SerializableString name)
                                    throws IOException
          Overrides:
          writeFieldName in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStringField

          public final void writeStringField(String fieldName,
                              String value)
                                      throws IOException
          Overrides:
          writeStringField in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • flush

          public final void flush()
                           throws IOException
          Specified by:
          flush in interface Flushable
          Specified by:
          flush in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeStartArray

          public final void writeStartArray()
                                     throws IOException
          Specified by:
          writeStartArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndArray

          public final void writeEndArray()
                                   throws IOException
          Specified by:
          writeEndArray in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeStartObject

          public final void writeStartObject()
                                      throws IOException
          Specified by:
          writeStartObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeEndObject

          public final void writeEndObject()
                                    throws IOException
          Specified by:
          writeEndObject in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public void writeString(String text)
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • writeString

          public void writeString(char[] text,
                         int offset,
                         int len)
                           throws IOException
          Specified by:
          writeString in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeString

          public final void writeString(com.fasterxml.jackson.core.SerializableString sstr)
                                 throws IOException
          Overrides:
          writeString in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawUTF8String

          public void writeRawUTF8String(byte[] text,
                                int offset,
                                int len)
                                  throws IOException
          Specified by:
          writeRawUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeUTF8String

          public final void writeUTF8String(byte[] text,
                             int offset,
                             int len)
                                     throws IOException
          Specified by:
          writeUTF8String in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(String text,
                      int offset,
                      int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char[] text,
                      int offset,
                      int len)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRaw

          public void writeRaw(char c)
                        throws IOException
          Specified by:
          writeRaw in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(String text,
                           int offset,
                           int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeRawValue

          public void writeRawValue(char[] text,
                           int offset,
                           int len)
                             throws IOException
          Overrides:
          writeRawValue in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • writeBinary

          public void writeBinary(com.fasterxml.jackson.core.Base64Variant b64variant,
                         byte[] data,
                         int offset,
                         int len)
                           throws IOException
          Specified by:
          writeBinary in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeBoolean

          public void writeBoolean(boolean state)
                            throws IOException
          Specified by:
          writeBoolean in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(int i)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(long l)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigInteger v)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(double d)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(float f)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNumber

          public void writeNumber(BigDecimal dec)
                           throws IOException
          Specified by:
          writeNumber in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeNull

          public void writeNull()
                         throws IOException
          Specified by:
          writeNull in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • canWriteObjectId

          public boolean canWriteObjectId()
          Overrides:
          canWriteObjectId in class com.fasterxml.jackson.core.JsonGenerator
        • canWriteTypeId

          public boolean canWriteTypeId()
          Overrides:
          canWriteTypeId in class com.fasterxml.jackson.core.JsonGenerator
        • writeTypeId

          public void writeTypeId(Object id)
                           throws IOException
          Overrides:
          writeTypeId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectRef

          public void writeObjectRef(Object id)
                              throws IOException
          Overrides:
          writeObjectRef in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • writeObjectId

          public void writeObjectId(Object id)
                             throws IOException
          Overrides:
          writeObjectId in class com.fasterxml.jackson.core.JsonGenerator
          Throws:
          IOException
        • _verifyValueWrite

          protected final void _verifyValueWrite(String typeMsg)
                                          throws IOException
          Specified by:
          _verifyValueWrite in class com.fasterxml.jackson.core.base.GeneratorBase
          Throws:
          IOException
        • _releaseBuffers

          protected void _releaseBuffers()
          Specified by:
          _releaseBuffers in class com.fasterxml.jackson.core.base.GeneratorBase
        • _scalarEvent

          protected org.yaml.snakeyaml.events.ScalarEvent _scalarEvent(String value,
                                                           Character style)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/YAMLMapper.html ================================================ YAMLMapper (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLMapper

    • java.lang.Object
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec
          • com.fasterxml.jackson.databind.ObjectMapper
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Serializable


      public class YAMLMapper
      extends com.fasterxml.jackson.databind.ObjectMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      See Also:
      Serialized Form
      • Nested Class Summary

        • Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.ObjectMapper

          com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder, com.fasterxml.jackson.databind.ObjectMapper.DefaultTyping
      • Field Summary

        • Fields inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _configOverrides, _deserializationConfig, _deserializationContext, _injectableValues, _jsonFactory, _mixIns, _registeredModuleTypes, _rootDeserializers, _serializationConfig, _serializerFactory, _serializerProvider, _subtypeResolver, _typeFactory, DEFAULT_ANNOTATION_INTROSPECTOR, DEFAULT_BASE
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        YAMLMapper configure(YAMLGenerator.Feature f, boolean state) 
        YAMLMapper configure(YAMLParser.Feature f, boolean state) 
        YAMLMapper copy() 
        YAMLMapper disable(YAMLGenerator.Feature f) 
        YAMLMapper disable(YAMLParser.Feature f) 
        YAMLMapper enable(YAMLGenerator.Feature f) 
        YAMLMapper enable(YAMLParser.Feature f) 
        YAMLFactory getFactory()
        Overridden with more specific type, since factory we have is always of type YAMLFactory
        • Methods inherited from class com.fasterxml.jackson.databind.ObjectMapper

          _checkInvalidCopy, _configAndWriteValue, _convert, _findRootDeserializer, _initForReading, _initForReading, _newReader, _newReader, _newWriter, _newWriter, _newWriter, _readMapAndClose, _readTreeAndClose, _readValue, _serializerProvider, _unwrapAndDeserialize, _verifyNoTrailingTokens, _verifySchemaType, acceptJsonFormatVisitor, acceptJsonFormatVisitor, addHandler, addMixIn, addMixInAnnotations, canDeserialize, canDeserialize, canSerialize, canSerialize, clearProblemHandlers, configOverride, configure, configure, configure, configure, configure, constructType, convertValue, convertValue, convertValue, createArrayNode, createDeserializationContext, createObjectNode, defaultClassIntrospector, disable, disable, disable, disable, disable, disable, disable, disableDefaultTyping, enable, enable, enable, enable, enable, enable, enable, enableDefaultTyping, enableDefaultTyping, enableDefaultTyping, enableDefaultTypingAsProperty, findAndRegisterModules, findMixInClassFor, findModules, findModules, generateJsonSchema, getDateFormat, getDeserializationConfig, getDeserializationContext, getInjectableValues, getJsonFactory, getNodeFactory, getPropertyNamingStrategy, getSerializationConfig, getSerializerFactory, getSerializerProvider, getSerializerProviderInstance, getSubtypeResolver, getTypeFactory, getVisibilityChecker, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, isEnabled, mixInCount, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, reader, readerFor, readerFor, readerFor, readerForUpdating, readerWithView, readTree, readTree, readTree, readTree, readTree, readTree, readTree, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValue, readValues, readValues, readValues, readValues, registerModule, registerModules, registerModules, registerSubtypes, registerSubtypes, registerSubtypes, setAnnotationIntrospector, setAnnotationIntrospectors, setBase64Variant, setConfig, setConfig, setDateFormat, setDefaultMergeable, setDefaultPrettyPrinter, setDefaultPropertyInclusion, setDefaultPropertyInclusion, setDefaultSetterInfo, setDefaultTyping, setDefaultVisibility, setFilterProvider, setFilters, setHandlerInstantiator, setInjectableValues, setLocale, setMixInAnnotations, setMixInResolver, setMixIns, setNodeFactory, setPropertyInclusion, setPropertyNamingStrategy, setSerializationInclusion, setSerializerFactory, setSerializerProvider, setSubtypeResolver, setTimeZone, setTypeFactory, setVisibility, setVisibility, setVisibilityChecker, treeAsTokens, treeToValue, updateValue, valueToTree, version, writer, writer, writer, writer, writer, writer, writer, writer, writer, writer, writerFor, writerFor, writerFor, writerWithDefaultPrettyPrinter, writerWithType, writerWithType, writerWithType, writerWithView, writeTree, writeTree, writeValue, writeValue, writeValue, writeValue, writeValue, writeValueAsBytes, writeValueAsString

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/YAMLParser.Feature.html ================================================ YAMLParser.Feature (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Enum YAMLParser.Feature

      • Method Detail

        • values

          public static YAMLParser.Feature[] values()
          Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
          for (YAMLParser.Feature c : YAMLParser.Feature.values())
              System.out.println(c);
          
          Returns:
          an array containing the constants of this enum type, in the order they are declared
        • valueOf

          public static YAMLParser.Feature valueOf(String name)
          Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
          Parameters:
          name - the name of the enum constant to be returned.
          Returns:
          the enum constant with the specified name
          Throws:
          IllegalArgumentException - if this enum type has no constant with the specified name
          NullPointerException - if the argument is null
        • collectDefaults

          public static int collectDefaults()
          Method that calculates bit set (flags) of all features that are enabled by default.
        • enabledByDefault

          public boolean enabledByDefault()
          Specified by:
          enabledByDefault in interface com.fasterxml.jackson.core.FormatFeature
        • enabledIn

          public boolean enabledIn(int flags)
          Specified by:
          enabledIn in interface com.fasterxml.jackson.core.FormatFeature
        • getMask

          public int getMask()
          Specified by:
          getMask in interface com.fasterxml.jackson.core.FormatFeature

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/YAMLParser.html ================================================ YAMLParser (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml

    Class YAMLParser

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonParser
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
    • All Implemented Interfaces:
      com.fasterxml.jackson.core.Versioned, Closeable, AutoCloseable


      public class YAMLParser
      extends com.fasterxml.jackson.core.base.ParserBase
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
      • Nested Class Summary

        Nested Classes 
        Modifier and Type Class and Description
        static class  YAMLParser.Feature
        Enumeration that defines all togglable features for YAML parsers.
        • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser

          com.fasterxml.jackson.core.JsonParser.NumberType
      • Field Summary

        Fields 
        Modifier and Type Field and Description
        protected String _currentAnchor
        Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
        protected String _currentFieldName
        Let's also have a local copy of the current field name
        protected boolean _currentIsAlias
        Flag that is set when current token was derived from an Alias (reference to another value's anchor)
        protected int _formatFeatures 
        protected org.yaml.snakeyaml.events.Event _lastEvent
        Keep track of the last event read, to get access to Location info
        protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
        Codec used for data binding when (if) requested.
        protected Reader _reader
        Need to keep track of underlying Reader to be able to auto-close it (if required to)
        protected String _textValue
        We need to keep track of text values.
        protected org.yaml.snakeyaml.parser.ParserImpl _yamlParser 
        protected org.yaml.snakeyaml.resolver.Resolver _yamlResolver 
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserBase

          _binaryValue, _byteArrayBuilder, _closed, _currInputProcessed, _currInputRow, _currInputRowStart, _expLength, _fractLength, _inputEnd, _inputPtr, _intLength, _ioContext, _nameCopied, _nameCopyBuffer, _nextToken, _numberBigDecimal, _numberBigInt, _numberDouble, _numberInt, _numberLong, _numberNegative, _numTypesValid, _parsingContext, _textBuffer, _tokenInputCol, _tokenInputRow, _tokenInputTotal
        • Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
        • Fields inherited from class com.fasterxml.jackson.core.JsonParser

          _features, _requestPayload
      • Constructor Summary

        Constructors 
        Constructor and Description
        YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt, com.fasterxml.jackson.core.util.BufferRecycler br, int parserFeatures, int formatFeatures, com.fasterxml.jackson.core.ObjectCodec codec, Reader reader) 
      • Method Summary

        Methods 
        Modifier and Type Method and Description
        protected void _closeInput() 
        protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value, int len) 
        protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar) 
        protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m) 
        protected Boolean _matchYAMLBoolean(String value, int len) 
        protected int _parseIntValue() 
        protected void _parseNumericValue(int expType) 
        boolean canReadObjectId() 
        boolean canReadTypeId() 
        com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f, boolean state)
        Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser disable(YAMLParser.Feature f)
        Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)
        com.fasterxml.jackson.core.JsonParser enable(YAMLParser.Feature f)
        Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
        byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant) 
        com.fasterxml.jackson.core.ObjectCodec getCodec() 
        String getCurrentAnchor()
        Deprecated. 
        Since 2.3 (was added in 2.1) -- use getObjectId() instead
        com.fasterxml.jackson.core.JsonLocation getCurrentLocation() 
        String getCurrentName() 
        Object getEmbeddedObject() 
        int getFormatFeatures() 
        String getObjectId() 
        String getText() 
        int getText(Writer writer) 
        char[] getTextCharacters() 
        int getTextLength() 
        int getTextOffset() 
        com.fasterxml.jackson.core.JsonLocation getTokenLocation() 
        String getTypeId() 
        boolean hasTextCharacters() 
        boolean isCurrentAlias()
        Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
        boolean isEnabled(YAMLParser.Feature f)
        Method for checking whether specified CSV YAMLParser.Feature is enabled.
        com.fasterxml.jackson.core.JsonToken nextToken() 
        com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values, int mask) 
        void setCodec(com.fasterxml.jackson.core.ObjectCodec c) 
        com.fasterxml.jackson.core.Version version() 
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserBase

          _checkStdFeatureChanges, _decodeBase64Escape, _decodeBase64Escape, _decodeEscaped, _eofAsNextChar, _finishString, _getByteArrayBuilder, _getSourceReference, _handleEOF, _releaseBuffers, _reportMismatchedEndMarker, close, convertNumberToBigDecimal, convertNumberToBigInteger, convertNumberToDouble, convertNumberToInt, convertNumberToLong, disable, enable, getBigIntegerValue, getCurrentValue, getDecimalValue, getDoubleValue, getFloatValue, getIntValue, getLongValue, getNumberType, getNumberValue, getParsingContext, getTokenCharacterOffset, getTokenColumnNr, getTokenLineNr, growArrayBy, isClosed, isNaN, loadMore, loadMoreGuaranteed, overrideCurrentName, overrideStdFeatures, reportInvalidBase64Char, reportInvalidBase64Char, reset, resetAsNaN, resetFloat, resetInt, setCurrentValue, setFeatureMask
        • Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase

          _ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _handleUnrecognizedCharacterEscape, _hasTextualNull, _reportError, _reportError, _reportError, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _throwUnquotedSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
        • Methods inherited from class com.fasterxml.jackson.core.JsonParser

          _codec, _constructError, _reportUnsupportedOperation, canParseAsync, canUseSchema, configure, finishToken, getBinaryValue, getBooleanValue, getByteValue, getFeatureMask, getInputSource, getNonBlockingInputFeeder, getSchema, getShortValue, getValueAsBoolean, getValueAsDouble, isEnabled, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, readBinaryValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, requiresCustomCodec, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError, setSchema
      • Field Detail

        • _objectCodec

          protected com.fasterxml.jackson.core.ObjectCodec _objectCodec
          Codec used for data binding when (if) requested.
        • _formatFeatures

          protected int _formatFeatures
        • _reader

          protected final Reader _reader
          Need to keep track of underlying Reader to be able to auto-close it (if required to)
        • _yamlParser

          protected final org.yaml.snakeyaml.parser.ParserImpl _yamlParser
        • _yamlResolver

          protected final org.yaml.snakeyaml.resolver.Resolver _yamlResolver
        • _lastEvent

          protected org.yaml.snakeyaml.events.Event _lastEvent
          Keep track of the last event read, to get access to Location info
        • _textValue

          protected String _textValue
          We need to keep track of text values.
        • _currentFieldName

          protected String _currentFieldName
          Let's also have a local copy of the current field name
        • _currentIsAlias

          protected boolean _currentIsAlias
          Flag that is set when current token was derived from an Alias (reference to another value's anchor)
          Since:
          2.1
        • _currentAnchor

          protected String _currentAnchor
          Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
      • Constructor Detail

        • YAMLParser

          public YAMLParser(com.fasterxml.jackson.core.io.IOContext ctxt,
                    com.fasterxml.jackson.core.util.BufferRecycler br,
                    int parserFeatures,
                    int formatFeatures,
                    com.fasterxml.jackson.core.ObjectCodec codec,
                    Reader reader)
      • Method Detail

        • getCodec

          public com.fasterxml.jackson.core.ObjectCodec getCodec()
          Specified by:
          getCodec in class com.fasterxml.jackson.core.JsonParser
        • setCodec

          public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
          Specified by:
          setCodec in class com.fasterxml.jackson.core.JsonParser
        • isCurrentAlias

          public boolean isCurrentAlias()
          Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
          Since:
          2.1
        • getCurrentAnchor

          @Deprecated
          public String getCurrentAnchor()
          Deprecated. Since 2.3 (was added in 2.1) -- use getObjectId() instead
          Method that can be used to check if the current token has an associated anchor (id to reference via Alias)
        • version

          public com.fasterxml.jackson.core.Version version()
          Specified by:
          version in interface com.fasterxml.jackson.core.Versioned
          Overrides:
          version in class com.fasterxml.jackson.core.base.ParserBase
        • _closeInput

          protected void _closeInput()
                              throws IOException
          Specified by:
          _closeInput in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getFormatFeatures

          public int getFormatFeatures()
          Overrides:
          getFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • overrideFormatFeatures

          public com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int values,
                                                                     int mask)
          Overrides:
          overrideFormatFeatures in class com.fasterxml.jackson.core.JsonParser
        • configure

          public com.fasterxml.jackson.core.JsonParser configure(YAMLParser.Feature f,
                                                        boolean state)
          Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
        • getTokenLocation

          public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
          Overrides:
          getTokenLocation in class com.fasterxml.jackson.core.base.ParserBase
        • getCurrentLocation

          public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
          Overrides:
          getCurrentLocation in class com.fasterxml.jackson.core.base.ParserBase
        • _locationFor

          protected com.fasterxml.jackson.core.JsonLocation _locationFor(org.yaml.snakeyaml.error.Mark m)
        • nextToken

          public com.fasterxml.jackson.core.JsonToken nextToken()
                                                         throws IOException
          Specified by:
          nextToken in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • _decodeScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeScalar(org.yaml.snakeyaml.events.ScalarEvent scalar)
        • _matchYAMLBoolean

          protected Boolean _matchYAMLBoolean(String value,
                                  int len)
        • _decodeNumberScalar

          protected com.fasterxml.jackson.core.JsonToken _decodeNumberScalar(String value,
                                                                 int len)
        • hasTextCharacters

          public boolean hasTextCharacters()
          Overrides:
          hasTextCharacters in class com.fasterxml.jackson.core.base.ParserBase
        • getText

          public String getText()
                         throws IOException
          Specified by:
          getText in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getCurrentName

          public String getCurrentName()
                                throws IOException
          Overrides:
          getCurrentName in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • getTextCharacters

          public char[] getTextCharacters()
                                   throws IOException
          Specified by:
          getTextCharacters in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextLength

          public int getTextLength()
                            throws IOException
          Specified by:
          getTextLength in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getTextOffset

          public int getTextOffset()
                            throws IOException
          Specified by:
          getTextOffset in class com.fasterxml.jackson.core.base.ParserMinimalBase
          Throws:
          IOException
        • getText

          public int getText(Writer writer)
                      throws IOException
          Overrides:
          getText in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getEmbeddedObject

          public Object getEmbeddedObject()
                                   throws IOException
          Overrides:
          getEmbeddedObject in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
        • getBinaryValue

          public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant variant)
                                throws IOException
          Overrides:
          getBinaryValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • _parseNumericValue

          protected void _parseNumericValue(int expType)
                                     throws IOException
          Overrides:
          _parseNumericValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • _parseIntValue

          protected int _parseIntValue()
                                throws IOException
          Overrides:
          _parseIntValue in class com.fasterxml.jackson.core.base.ParserBase
          Throws:
          IOException
        • canReadObjectId

          public boolean canReadObjectId()
          Overrides:
          canReadObjectId in class com.fasterxml.jackson.core.JsonParser
        • canReadTypeId

          public boolean canReadTypeId()
          Overrides:
          canReadTypeId in class com.fasterxml.jackson.core.JsonParser
        • getObjectId

          public String getObjectId()
                             throws IOException,
                                    com.fasterxml.jackson.core.JsonGenerationException
          Overrides:
          getObjectId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException
        • getTypeId

          public String getTypeId()
                           throws IOException,
                                  com.fasterxml.jackson.core.JsonGenerationException
          Overrides:
          getTypeId in class com.fasterxml.jackson.core.JsonParser
          Throws:
          IOException
          com.fasterxml.jackson.core.JsonGenerationException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/JacksonYAMLParseException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/PackageVersion.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.PackageVersion (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.PackageVersion

    No usage of com.fasterxml.jackson.dataformat.yaml.PackageVersion

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Reader.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Reader (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Reader

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/UTF8Writer.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.UTF8Writer (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    No usage of com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLFactory.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLFactory (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLFactory

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLGenerator.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLGenerator

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLMapper.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLMapper (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLMapper

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.Feature.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/class-use/YAMLParser.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.YAMLParser (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.YAMLParser

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.9.0 API)

    com.fasterxml.jackson.dataformat.yaml

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.9.0 API)

    Package com.fasterxml.jackson.dataformat.yaml

    • Class Summary 
      Class Description
      PackageVersion
      Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
      UTF8Reader
      Optimized Reader that reads UTF-8 encoded content from an input stream.
      UTF8Writer  
      YAMLFactory  
      YAMLGenerator  
      YAMLMapper
      Convenience version of ObjectMapper which is configured with YAMLFactory.
      YAMLParser
      JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    • Enum Summary 
      Enum Description
      YAMLGenerator.Feature
      Enumeration that defines all togglable features for YAML generators
      YAMLParser.Feature
      Enumeration that defines all togglable features for YAML parsers.
    • Exception Summary 
      Exception Description
      JacksonYAMLParseException  

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml Class Hierarchy (Jackson-dataformat-YAML 2.9.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml

    Package Hierarchies:

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/Mark.html ================================================ Mark (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class Mark


    • Deprecated. 
      Should use basic JsonLocation instead

      @Deprecated
      public class Mark
      extends Object
      Placeholder for shaded org.yaml.snakeyaml.error.Mark
      Since:
      2.8 (as non-shaded); earlier shaded in
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.Mark _source
          Deprecated. 
      • Constructor Detail

        • Mark

          protected Mark(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
      • Method Detail

        • from

          public static Mark from(org.yaml.snakeyaml.error.Mark src)
          Deprecated. 
        • getName

          public String getName()
          Deprecated. 
        • get_snippet

          public String get_snippet()
          Deprecated. 
        • get_snippet

          public String get_snippet(int indent,
                           int max_length)
          Deprecated. 
        • getColumn

          public int getColumn()
          Deprecated. 
        • getLine

          public int getLine()
          Deprecated. 
        • getIndex

          public int getIndex()
          Deprecated. 

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/MarkedYAMLException.html ================================================ MarkedYAMLException (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class MarkedYAMLException

    • All Implemented Interfaces:
      Serializable

      Deprecated. 
      Since 2.8

      @Deprecated
      public class MarkedYAMLException
      extends YAMLException
      Replacement for formerly shaded exception type from SnakeYAML; included in 2.8 solely for backwards compatibility: new code that relies on Jackson 2.8 and alter should NOT use this type but only base type YAMLException.
      See Also:
      Serialized Form
      • Field Detail

        • _source

          protected final org.yaml.snakeyaml.error.MarkedYAMLException _source
          Deprecated. 
      • Constructor Detail

        • MarkedYAMLException

          protected MarkedYAMLException(com.fasterxml.jackson.core.JsonParser p,
                             org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static MarkedYAMLException from(com.fasterxml.jackson.core.JsonParser p,
                                 org.yaml.snakeyaml.error.MarkedYAMLException src)
          Deprecated. 
        • getContext

          public String getContext()
          Deprecated. 
        • getContextMark

          public Mark getContextMark()
          Deprecated. 
        • getProblem

          public String getProblem()
          Deprecated. 
        • getProblemMark

          public Mark getProblemMark()
          Deprecated. 

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/YAMLException.html ================================================ YAMLException (Jackson-dataformat-YAML 2.9.0 API)
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Class YAMLException

      • Constructor Detail

        • YAMLException

          public YAMLException(com.fasterxml.jackson.core.JsonParser p,
                       org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 
      • Method Detail

        • from

          public static YAMLException from(com.fasterxml.jackson.core.JsonParser p,
                           org.yaml.snakeyaml.error.YAMLException src)
          Deprecated. 

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/Mark.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/MarkedYAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/class-use/YAMLException.html ================================================ Uses of Class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Class
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-frame.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.9.0 API)

    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-summary.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.9.0 API)

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    See: Description

    • Class Summary 
      Class Description
      Mark Deprecated
      Should use basic JsonLocation instead
    • Exception Summary 
      Exception Description
      MarkedYAMLException Deprecated
      Since 2.8
      YAMLException Deprecated
      Since 2.8

    Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Description

    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types. This is needed to improve backwards compatibility with frameworks like DropWizard.

    New code based on Jackson 2.8 and later should NOT use types in this package but instead rely on JacksonYAMLParseException

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-tree.html ================================================ com.fasterxml.jackson.dataformat.yaml.snakeyaml.error Class Hierarchy (Jackson-dataformat-YAML 2.9.0 API)

    Hierarchy For Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Package Hierarchies:

    Class Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/com/fasterxml/jackson/dataformat/yaml/snakeyaml/error/package-use.html ================================================ Uses of Package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error (Jackson-dataformat-YAML 2.9.0 API)

    Uses of Package
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/constant-values.html ================================================ Constant Field Values (Jackson-dataformat-YAML 2.9.0 API)

    Constant Field Values

    Contents

    com.fasterxml.*

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/deprecated-list.html ================================================ Deprecated List (Jackson-dataformat-YAML 2.9.0 API)

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/help-doc.html ================================================ API Help (Jackson-dataformat-YAML 2.9.0 API)

    How This API Document Is Organized

    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    • Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    • Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      • Interfaces (italic)
      • Classes
      • Enums
      • Exceptions
      • Errors
      • Annotation Types
    • Class/Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      • Class inheritance diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • Class/interface declaration
      • Class/interface description
      • Nested Class Summary
      • Field Summary
      • Constructor Summary
      • Method Summary
      • Field Detail
      • Constructor Detail
      • Method Detail

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    • Annotation Type

      Each annotation type has its own separate page with the following sections:

      • Annotation Type declaration
      • Annotation Type description
      • Required Element Summary
      • Optional Element Summary
      • Element Detail
    • Enum

      Each enum has its own separate page with the following sections:

      • Enum declaration
      • Enum description
      • Enum Constant Summary
      • Enum Constant Detail
    • Use

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    • Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • Deprecated API

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    • Index

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    • Prev/Next

      These links take you to the next or previous class, interface, package, or related page.

    • Frames/No Frames

      These links show and hide the HTML frames. All pages are available with or without frames.

    • All Classes

      The All Classes link shows all classes and interfaces except non-static nested types.

    • Serialized Form

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    • Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

    This help file applies to API documentation generated using the standard doclet.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/index-all.html ================================================ Index (Jackson-dataformat-YAML 2.9.0 API)
    A B C D E F G H I J M N O P R S U V W Y _ 

    A

    append(char) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    B

    buildDumperOptions(int, int, DumperOptions.Version) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    C

    canReadObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canReadTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    canUseCharArrays() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    canUseSchema(FormatSchema) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteFormattedNumbers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    canWriteTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    close() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    collectDefaults() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Method that calculates bit set (flags) of all features that are enabled by default.
    com.fasterxml.jackson.dataformat.yaml - package com.fasterxml.jackson.dataformat.yaml
     
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error - package com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified parser feature (check YAMLParser.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling or disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    configure(YAMLGenerator.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    configure(YAMLParser.Feature, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling or disabling specified CSV feature (check YAMLParser.Feature for list of features)
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    copy() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    createGenerator(OutputStream, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(OutputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createGenerator(File, JsonEncoding) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(File) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(URL) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(InputStream) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(Reader) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[]) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    createParser(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     

    D

    DEFAULT_YAML_GENERATOR_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all generator features that are enabled by default.
    DEFAULT_YAML_PARSER_FEATURE_FLAGS - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Bitfield (set of flags) of all parser features that are enabled by default.
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified parser features (check YAMLParser.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for disabling specified generator feature (check YAMLGenerator.Feature for list of features)
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    disable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    disable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for disabling specified CSV feature (check YAMLParser.Feature for list of features)

    E

    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified parser feature (check YAMLParser.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method for enabling specified generator features (check YAMLGenerator.Feature for list of features)
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    enable(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    enable(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for enabling specified CSV feature (check YAMLParser.Feature for list of features)
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledByDefault() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    enabledIn(int) - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     

    F

    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    flush() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    FORMAT_NAME_YAML - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Name used to identify YAML format.
    freeBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This method should be called along with (or instead of) normal close.
    from(Mark) - Static method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    from(JsonParser, MarkedYAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    from(JsonParser, YAMLException) - Static method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     

    G

    get_snippet() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    get_snippet(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getBinaryValue(Base64Variant) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getCodec() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getColumn() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getContext() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getContextMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getCurrentAnchor() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Deprecated.
    Since 2.3 (was added in 2.1) -- use YAMLParser.getObjectId() instead
    getCurrentLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getCurrentName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getEmbeddedObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFactory() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
    Overridden with more specific type, since factory we have is always of type YAMLFactory
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getFormatFeatures() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getFormatName() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    getIndex() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getLine() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    getMask() - Method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
     
    getName() - Method in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    getObjectId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getOutputBuffered() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    SnakeYAML does not expose buffered content amount, so we can only return -1 from here
    getOutputTarget() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    getProblem() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getProblemMark() - Method in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    getStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    getText() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getText(Writer) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextLength() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTextOffset() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTokenLocation() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    getTypeId() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    H

    hasFormat(InputAccessor) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Sub-classes need to override this method (as of 1.8)
    hasTextCharacters() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    I

    isCurrentAlias() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method that can be used to check whether current token was created from YAML Alias token (reference to an anchor).
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Checked whether specified parser feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Check whether specified generator feature is enabled.
    isEnabled(YAMLGenerator.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    isEnabled(YAMLParser.Feature) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Method for checking whether specified CSV YAMLParser.Feature is enabled.

    J

    JacksonYAMLParseException - Exception in com.fasterxml.jackson.dataformat.yaml
     
    JacksonYAMLParseException(JsonParser, String, Exception) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.JacksonYAMLParseException
     

    M

    Mark - Class in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Should use basic JsonLocation instead
    Mark(Mark) - Constructor for class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    MarkedYAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    MarkedYAMLException(JsonParser, MarkedYAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    MAX_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    MIN_INT_AS_LONG - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    N

    nextToken() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    O

    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    overrideFormatFeatures(int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    P

    PackageVersion - Class in com.fasterxml.jackson.dataformat.yaml
    Automatically generated from PackageVersion.java.in during packageVersion-generate execution of maven-replacer-plugin in pom.xml.
    PackageVersion() - Constructor for class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    PLAIN_NUMBER_P - Static variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    R

    read() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Although this method is implemented by the base class, AND it should never be called by Woodstox code, let's still implement it bit more efficiently just in case
    read(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    read(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    readBytes() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer), to the beginning of the buffer.
    readBytesAt(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Method for reading as many bytes from the underlying stream as possible (that fit in the buffer considering offset), to the specified offset.
    readResolve() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Method that we need to override to actually make restoration go through constructors etc.
    reportBounds(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    reportStrangeStream() - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     

    S

    setCodec(ObjectCodec) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    setPrettyPrinter(PrettyPrinter) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; will always indent, but uses YAML-specific settings etc.

    U

    useDefaultPrettyPrinter() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Not sure what to do here; could reset indentation to some value maybe?
    UTF8 - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    UTF8Reader - Class in com.fasterxml.jackson.dataformat.yaml
    Optimized Reader that reads UTF-8 encoded content from an input stream.
    UTF8Reader(InputStream, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Reader(byte[], int, int, boolean) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    UTF8Writer - Class in com.fasterxml.jackson.dataformat.yaml
     
    UTF8Writer(OutputStream) - Constructor for class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     

    V

    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns the enum constant of this type with the specified name.
    valueOf(String) - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns the enum constant of this type with the specified name.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    values() - Static method in enum com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
    Returns an array containing the constants of this enum type, in the order they are declared.
    VERSION - Static variable in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.PackageVersion
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    version() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     

    W

    write(char[]) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    write(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    writeBinary(Base64Variant, byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeBoolean(boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeEndObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeFieldName(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNull() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(long) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigInteger) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(double) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(float) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(BigDecimal) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeNumber(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeObjectRef(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRaw(char) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(String, int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeRawValue(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartArray() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStartObject() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(char[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeString(SerializableString) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeStringField(String, String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeTypeId(Object) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    writeUTF8String(byte[], int, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     

    Y

    YAMLException - Exception in com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Deprecated.
    Since 2.8
    YAMLException(JsonParser, YAMLException) - Constructor for exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.YAMLException
    Deprecated.
     
    YAMLFactory - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLFactory() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
    Default constructor used to create factory instances.
    YAMLFactory(ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLFactory(YAMLFactory, ObjectCodec) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    YAMLGenerator - Class in com.fasterxml.jackson.dataformat.yaml
     
    YAMLGenerator(IOContext, int, int, ObjectCodec, Writer, DumperOptions.Version) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    YAMLGenerator.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML generators
    YAMLMapper - Class in com.fasterxml.jackson.dataformat.yaml
    Convenience version of ObjectMapper which is configured with YAMLFactory.
    YAMLMapper() - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLFactory) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLMapper(YAMLMapper) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLMapper
     
    YAMLParser - Class in com.fasterxml.jackson.dataformat.yaml
    JsonParser implementation used to expose YAML documents in form that allows other Jackson functionality to process YAML content, such as binding POJOs to and from it, and building tree representations.
    YAMLParser(IOContext, BufferRecycler, int, int, ObjectCodec, Reader) - Constructor for class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    YAMLParser.Feature - Enum in com.fasterxml.jackson.dataformat.yaml
    Enumeration that defines all togglable features for YAML parsers.

    _

    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _bufferHolder - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
     
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    This ThreadLocal contains a SoftRerefence to a byte array used for holding content to decode
    _bufferRecycler - Static variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Writer
    This ThreadLocal contains a SoftRerefence to a byte array used for holding content to decode
    _closeInput() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _createGenerator(Writer, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(InputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(Reader, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(char[], int, int, IOContext, boolean) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createParser(byte[], int, int, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(InputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createReader(byte[], int, int, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createUTF8Generator(OutputStream, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _currentAnchor - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Anchor for the value that parser currently points to: in case of structured types, value whose first token current token is.
    _currentFieldName - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Let's also have a local copy of the current field name
    _currentIsAlias - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Flag that is set when current token was derived from an Alias (reference to another value's anchor)
    _decodeNumberScalar(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _decodeScalar(ScalarEvent) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _defaultState - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _emitter - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    Bit flag composed of bits that indicate which YAMLGenerator.Features are enabled.
    _formatFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _inputBuffer - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
     
    _inputEnd - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointed to the end marker, that is, position one after the last valid available byte.
    _inputPtr - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Pointer to the next available byte (if any), iff less than mByteBufferEnd
    _ioContext - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _lastEvent - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Keep track of the last event read, to get access to Location info
    _locationFor(Mark) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _mask - Variable in enum com.fasterxml.jackson.dataformat.yaml.YAMLGenerator.Feature
     
    _matchYAMLBoolean(String, int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _objectCodec - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Codec used for data binding when (if) requested.
    _objectId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Object identifiers, so databinder may indicate need to output one.
    _outputOptions - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _parseIntValue() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _parseNumericValue(int) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _reader - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    Need to keep track of underlying Reader to be able to auto-close it (if required to)
    _releaseBuffers() - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _scalarEvent(String, Character) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _source - Variable in class com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
    Deprecated.
     
    _source - Variable in exception com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException
    Deprecated.
     
    _surrogate - Variable in class com.fasterxml.jackson.dataformat.yaml.UTF8Reader
    Decoded first character of a surrogate pair, if one needs to be buffered
    _textValue - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
    We need to keep track of text values.
    _typeId - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
    YAML supports native Type identifiers, so databinder may indicate need to output one.
    _verifyValueWrite(String) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _version - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _writer - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _writeScalar(String, String, Character) - Method in class com.fasterxml.jackson.dataformat.yaml.YAMLGenerator
     
    _yamlGeneratorFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlParser - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    _yamlParserFeatures - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLFactory
     
    _yamlResolver - Variable in class com.fasterxml.jackson.dataformat.yaml.YAMLParser
     
    A B C D E F G H I J M N O P R S U V W Y _ 

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/index.html ================================================ Jackson-dataformat-YAML 2.9.0 API <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <h2>Frame Alert</h2> <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> ================================================ FILE: docs/javadoc/yaml/2.9/overview-frame.html ================================================ Overview List (Jackson-dataformat-YAML 2.9.0 API)

     

    ================================================ FILE: docs/javadoc/yaml/2.9/overview-summary.html ================================================ Overview (Jackson-dataformat-YAML 2.9.0 API)

    Jackson-dataformat-YAML 2.9.0 API

    Packages 
    Package Description
    com.fasterxml.jackson.dataformat.yaml  
    com.fasterxml.jackson.dataformat.yaml.snakeyaml.error
    Replacement for shaded-in package that Jackson versions up to and including 2.7 had; with 2.8 (and later 2.x) we unfortunately fake to sort of fake formerly relocated types.

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/overview-tree.html ================================================ Class Hierarchy (Jackson-dataformat-YAML 2.9.0 API)

    Class Hierarchy

    • java.lang.Object
      • com.fasterxml.jackson.core.JsonFactory (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
      • com.fasterxml.jackson.core.JsonGenerator (implements java.io.Closeable, java.io.Flushable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.GeneratorBase
      • com.fasterxml.jackson.core.JsonParser (implements java.io.Closeable, com.fasterxml.jackson.core.Versioned)
        • com.fasterxml.jackson.core.base.ParserMinimalBase
          • com.fasterxml.jackson.core.base.ParserBase
            • com.fasterxml.jackson.dataformat.yaml.YAMLParser
      • com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.Mark
      • com.fasterxml.jackson.dataformat.yaml.PackageVersion (implements com.fasterxml.jackson.core.Versioned)
      • java.io.Reader (implements java.io.Closeable, java.lang.Readable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Reader
      • java.lang.Throwable (implements java.io.Serializable)
      • com.fasterxml.jackson.core.TreeCodec
        • com.fasterxml.jackson.core.ObjectCodec (implements com.fasterxml.jackson.core.Versioned)
          • com.fasterxml.jackson.databind.ObjectMapper (implements java.io.Serializable, com.fasterxml.jackson.core.Versioned)
            • com.fasterxml.jackson.dataformat.yaml.YAMLMapper
      • java.io.Writer (implements java.lang.Appendable, java.io.Closeable, java.io.Flushable)
        • com.fasterxml.jackson.dataformat.yaml.UTF8Writer

    Enum Hierarchy

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/package-list ================================================ com.fasterxml.jackson.dataformat.yaml com.fasterxml.jackson.dataformat.yaml.snakeyaml.error ================================================ FILE: docs/javadoc/yaml/2.9/serialized-form.html ================================================ Serialized Form (Jackson-dataformat-YAML 2.9.0 API)

    Serialized Form

    Copyright © 2017 FasterXML. All rights reserved.

    ================================================ FILE: docs/javadoc/yaml/2.9/stylesheet.css ================================================ /* Javadoc style sheet */ /* Overall document style */ body { background-color:#ffffff; color:#353833; font-family:Arial, Helvetica, sans-serif; font-size:76%; margin:0; } a:link, a:visited { text-decoration:none; color:#4c6b87; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4c6b87; } a[name] { color:#353833; } a[name]:hover { text-decoration:none; color:#353833; } pre { font-size:1.3em; } h1 { font-size:1.8em; } h2 { font-size:1.5em; } h3 { font-size:1.4em; } h4 { font-size:1.3em; } h5 { font-size:1.2em; } h6 { font-size:1.1em; } ul { list-style-type:disc; } code, tt { font-size:1.2em; } dt code { font-size:1.2em; } table tr td dt code { font-size:1.2em; vertical-align:top; } sup { font-size:.6em; } /* Document title and Copyright styles */ .clear { clear:both; height:0px; overflow:hidden; } .aboutLanguage { float:right; padding:0px 21px; font-size:.8em; z-index:200; margin-top:-7px; } .legalCopy { margin-left:.5em; } .bar a, .bar a:link, .bar a:visited, .bar a:active { color:#FFFFFF; text-decoration:none; } .bar a:hover, .bar a:focus { color:#bb7a2a; } .tab { background-color:#0066FF; background-image:url(resources/titlebar.gif); background-position:left top; background-repeat:no-repeat; color:#ffffff; padding:8px; width:5em; font-weight:bold; } /* Navigation bar styles */ .bar { background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; padding:.8em .5em .4em .8em; height:auto;/*height:1.8em;*/ font-size:1em; margin:0; } .topNav { background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; } .bottomNav { margin-top:10px; background-image:url(resources/background.gif); background-repeat:repeat-x; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; height:2.8em; padding-top:10px; overflow:hidden; } .subNav { background-color:#dee3e9; border-bottom:1px solid #9eadc0; float:left; width:100%; overflow:hidden; } .subNav div { clear:left; float:left; padding:0 0 5px 6px; } ul.navList, ul.subNavList { float:left; margin:0 25px 0 0; padding:0; } ul.navList li{ list-style:none; float:left; padding:3px 6px; } ul.subNavList li{ list-style:none; float:left; font-size:90%; } .topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { color:#FFFFFF; text-decoration:none; } .topNav a:hover, .bottomNav a:hover { text-decoration:none; color:#bb7a2a; } .navBarCell1Rev { background-image:url(resources/tab.gif); background-color:#a88834; color:#FFFFFF; margin: auto 5px; border:1px solid #c9aa44; } /* Page header and footer styles */ .header, .footer { clear:both; margin:0 20px; padding:5px 0 0 0; } .indexHeader { margin:10px; position:relative; } .indexHeader h1 { font-size:1.3em; } .title { color:#2c4557; margin:10px 0; } .subTitle { margin:5px 0 0 0; } .header ul { margin:0 0 25px 0; padding:0; } .footer ul { margin:20px 0 5px 0; } .header ul li, .footer ul li { list-style:none; font-size:1.2em; } /* Heading styles */ div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { background-color:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; margin:0 0 6px -8px; padding:2px 5px; } ul.blockList ul.blockList ul.blockList li.blockList h3 { background-color:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; margin:0 0 6px -8px; padding:2px 5px; } ul.blockList ul.blockList li.blockList h3 { padding:0; margin:15px 0; } ul.blockList li.blockList h2 { padding:0px 0 20px 0; } /* Page layout container styles */ .contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { clear:both; padding:10px 20px; position:relative; } .indexContainer { margin:10px; position:relative; font-size:1.0em; } .indexContainer h2 { font-size:1.1em; padding:0 0 3px 0; } .indexContainer ul { margin:0; padding:0; } .indexContainer ul li { list-style:none; } .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { font-size:1.1em; font-weight:bold; margin:10px 0 0 0; color:#4E4E4E; } .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { margin:10px 0 10px 20px; } .serializedFormContainer dl.nameValue dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } .serializedFormContainer dl.nameValue dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* List styles */ ul.horizontal li { display:inline; font-size:0.9em; } ul.inheritance { margin:0; padding:0; } ul.inheritance li { display:inline; list-style:none; } ul.inheritance li ul.inheritance { margin-left:15px; padding-left:15px; padding-top:1px; } ul.blockList, ul.blockListLast { margin:10px 0 10px 0; padding:0; } ul.blockList li.blockList, ul.blockListLast li.blockList { list-style:none; margin-bottom:25px; } ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { padding:0px 20px 5px 10px; border:1px solid #9eadc0; background-color:#f9f9f9; } ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { padding:0 0 5px 8px; background-color:#ffffff; border:1px solid #9eadc0; border-top:none; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { margin-left:0; padding-left:0; padding-bottom:15px; border:none; border-bottom:1px solid #9eadc0; } ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { list-style:none; border-bottom:none; padding-bottom:0; } table tr td dl, table tr td dl dt, table tr td dl dd { margin-top:0; margin-bottom:1px; } /* Table styles */ .contentContainer table, .classUseContainer table, .constantValuesContainer table { border-bottom:1px solid #9eadc0; width:100%; } .contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table { width:100%; } .contentContainer .description table, .contentContainer .details table { border-bottom:none; } .contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{ vertical-align:top; padding-right:20px; } .contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast, .contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast, .contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne, .contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne { padding-right:3px; } .overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption { position:relative; text-align:left; background-repeat:no-repeat; color:#FFFFFF; font-weight:bold; clear:none; overflow:hidden; padding:0px; margin:0px; } caption a:link, caption a:hover, caption a:active, caption a:visited { color:#FFFFFF; } .overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span { white-space:nowrap; padding-top:8px; padding-left:8px; display:block; float:left; background-image:url(resources/titlebar.gif); height:18px; } .overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd { width:10px; background-image:url(resources/titlebar_end.gif); background-repeat:no-repeat; background-position:top right; position:relative; float:left; } ul.blockList ul.blockList li.blockList table { margin:0 0 12px 0px; width:100%; } .tableSubHeadingColor { background-color: #EEEEFF; } .altColor { background-color:#eeeeef; } .rowColor { background-color:#ffffff; } .overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td { text-align:left; padding:3px 3px 3px 7px; } th.colFirst, th.colLast, th.colOne, .constantValuesContainer th { background:#dee3e9; border-top:1px solid #9eadc0; border-bottom:1px solid #9eadc0; text-align:left; padding:3px 3px 3px 7px; } td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { font-weight:bold; } td.colFirst, th.colFirst { border-left:1px solid #9eadc0; white-space:nowrap; } td.colLast, th.colLast { border-right:1px solid #9eadc0; } td.colOne, th.colOne { border-right:1px solid #9eadc0; border-left:1px solid #9eadc0; } table.overviewSummary { padding:0px; margin-left:0px; } table.overviewSummary td.colFirst, table.overviewSummary th.colFirst, table.overviewSummary td.colOne, table.overviewSummary th.colOne { width:25%; vertical-align:middle; } table.packageSummary td.colFirst, table.overviewSummary th.colFirst { width:25%; vertical-align:middle; } /* Content styles */ .description pre { margin-top:0; } .deprecatedContent { margin:0; padding:10px 0; } .docSummary { padding:0; } /* Formatting effect styles */ .sourceLineNo { color:green; padding:0 30px 0 0; } h1.hidden { visibility:hidden; overflow:hidden; font-size:.9em; } .block { display:block; margin:3px 0 0 0; } .strong { font-weight:bold; } ================================================ FILE: mvnw ================================================ #!/bin/sh # ---------------------------------------------------------------------------- # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # ---------------------------------------------------------------------------- # ---------------------------------------------------------------------------- # Maven Start Up Batch script # # Required ENV vars: # ------------------ # JAVA_HOME - location of a JDK home dir # # Optional ENV vars # ----------------- # M2_HOME - location of maven2's installed home dir # MAVEN_OPTS - parameters passed to the Java VM when running Maven # e.g. to debug Maven itself, use # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 # MAVEN_SKIP_RC - flag to disable loading of mavenrc files # ---------------------------------------------------------------------------- if [ -z "$MAVEN_SKIP_RC" ] ; then if [ -f /etc/mavenrc ] ; then . /etc/mavenrc fi if [ -f "$HOME/.mavenrc" ] ; then . "$HOME/.mavenrc" fi fi # OS specific support. $var _must_ be set to either true or false. cygwin=false; darwin=false; mingw=false case "`uname`" in CYGWIN*) cygwin=true ;; MINGW*) mingw=true;; Darwin*) darwin=true # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home # See https://developer.apple.com/library/mac/qa/qa1170/_index.html if [ -z "$JAVA_HOME" ]; then if [ -x "/usr/libexec/java_home" ]; then export JAVA_HOME="`/usr/libexec/java_home`" else export JAVA_HOME="/Library/Java/Home" fi fi ;; esac if [ -z "$JAVA_HOME" ] ; then if [ -r /etc/gentoo-release ] ; then JAVA_HOME=`java-config --jre-home` fi fi if [ -z "$M2_HOME" ] ; then ## resolve links - $0 may be a link to maven's home PRG="$0" # need this for relative symlinks while [ -h "$PRG" ] ; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then PRG="$link" else PRG="`dirname "$PRG"`/$link" fi done saveddir=`pwd` M2_HOME=`dirname "$PRG"`/.. # make it fully qualified M2_HOME=`cd "$M2_HOME" && pwd` cd "$saveddir" # echo Using m2 at $M2_HOME fi # For Cygwin, ensure paths are in UNIX format before anything is touched if $cygwin ; then [ -n "$M2_HOME" ] && M2_HOME=`cygpath --unix "$M2_HOME"` [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` [ -n "$CLASSPATH" ] && CLASSPATH=`cygpath --path --unix "$CLASSPATH"` fi # For Mingw, ensure paths are in UNIX format before anything is touched if $mingw ; then [ -n "$M2_HOME" ] && M2_HOME="`(cd "$M2_HOME"; pwd)`" [ -n "$JAVA_HOME" ] && JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" fi if [ -z "$JAVA_HOME" ]; then javaExecutable="`which javac`" if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then # readlink(1) is not available as standard on Solaris 10. readLink=`which readlink` if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then if $darwin ; then javaHome="`dirname \"$javaExecutable\"`" javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" else javaExecutable="`readlink -f \"$javaExecutable\"`" fi javaHome="`dirname \"$javaExecutable\"`" javaHome=`expr "$javaHome" : '\(.*\)/bin'` JAVA_HOME="$javaHome" export JAVA_HOME fi fi fi if [ -z "$JAVACMD" ] ; then if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then # IBM's JDK on AIX uses strange locations for the executables JAVACMD="$JAVA_HOME/jre/sh/java" else JAVACMD="$JAVA_HOME/bin/java" fi else JAVACMD="`which java`" fi fi if [ ! -x "$JAVACMD" ] ; then echo "Error: JAVA_HOME is not defined correctly." >&2 echo " We cannot execute $JAVACMD" >&2 exit 1 fi if [ -z "$JAVA_HOME" ] ; then echo "Warning: JAVA_HOME environment variable is not set." fi CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher # traverses directory structure from process work directory to filesystem root # first directory with .mvn subdirectory is considered project base directory find_maven_basedir() { if [ -z "$1" ] then echo "Path not specified to find_maven_basedir" return 1 fi basedir="$1" wdir="$1" while [ "$wdir" != '/' ] ; do if [ -d "$wdir"/.mvn ] ; then basedir=$wdir break fi # workaround for JBEAP-8937 (on Solaris 10/Sparc) if [ -d "${wdir}" ]; then wdir=`cd "$wdir/.."; pwd` fi # end of workaround done echo "${basedir}" } # concatenates all lines of a file concat_lines() { if [ -f "$1" ]; then echo "$(tr -s '\n' ' ' < "$1")" fi } BASE_DIR=`find_maven_basedir "$(pwd)"` if [ -z "$BASE_DIR" ]; then exit 1; fi ########################################################################################## # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central # This allows using the maven wrapper in projects that prohibit checking in binary data. ########################################################################################## if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then if [ "$MVNW_VERBOSE" = true ]; then echo "Found .mvn/wrapper/maven-wrapper.jar" fi else if [ "$MVNW_VERBOSE" = true ]; then echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." fi if [ -n "$MVNW_REPOURL" ]; then jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" else jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" fi while IFS="=" read key value; do case "$key" in (wrapperUrl) jarUrl="$value"; break ;; esac done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" if [ "$MVNW_VERBOSE" = true ]; then echo "Downloading from: $jarUrl" fi wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" if $cygwin; then wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` fi if command -v wget > /dev/null; then if [ "$MVNW_VERBOSE" = true ]; then echo "Found wget ... using wget" fi if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then wget "$jarUrl" -O "$wrapperJarPath" else wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" fi elif command -v curl > /dev/null; then if [ "$MVNW_VERBOSE" = true ]; then echo "Found curl ... using curl" fi if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then curl -o "$wrapperJarPath" "$jarUrl" -f else curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f fi else if [ "$MVNW_VERBOSE" = true ]; then echo "Falling back to using Java to download" fi javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" # For Cygwin, switch paths to Windows format before running javac if $cygwin; then javaClass=`cygpath --path --windows "$javaClass"` fi if [ -e "$javaClass" ]; then if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then if [ "$MVNW_VERBOSE" = true ]; then echo " - Compiling MavenWrapperDownloader.java ..." fi # Compiling the Java class ("$JAVA_HOME/bin/javac" "$javaClass") fi if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then # Running the downloader if [ "$MVNW_VERBOSE" = true ]; then echo " - Running MavenWrapperDownloader.java ..." fi ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") fi fi fi fi ########################################################################################## # End of extension ########################################################################################## export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} if [ "$MVNW_VERBOSE" = true ]; then echo $MAVEN_PROJECTBASEDIR fi MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" # For Cygwin, switch paths to Windows format before running java if $cygwin; then [ -n "$M2_HOME" ] && M2_HOME=`cygpath --path --windows "$M2_HOME"` [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` [ -n "$CLASSPATH" ] && CLASSPATH=`cygpath --path --windows "$CLASSPATH"` [ -n "$MAVEN_PROJECTBASEDIR" ] && MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` fi # Provide a "standardized" way to retrieve the CLI args that will # work with both Windows and non-Windows executions. MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" export MAVEN_CMD_LINE_ARGS WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain exec "$JAVACMD" \ $MAVEN_OPTS \ -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" ================================================ FILE: mvnw.cmd ================================================ @REM ---------------------------------------------------------------------------- @REM Licensed to the Apache Software Foundation (ASF) under one @REM or more contributor license agreements. See the NOTICE file @REM distributed with this work for additional information @REM regarding copyright ownership. The ASF licenses this file @REM to you under the Apache License, Version 2.0 (the @REM "License"); you may not use this file except in compliance @REM with the License. You may obtain a copy of the License at @REM @REM http://www.apache.org/licenses/LICENSE-2.0 @REM @REM Unless required by applicable law or agreed to in writing, @REM software distributed under the License is distributed on an @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @REM KIND, either express or implied. See the License for the @REM specific language governing permissions and limitations @REM under the License. @REM ---------------------------------------------------------------------------- @REM ---------------------------------------------------------------------------- @REM Maven Start Up Batch script @REM @REM Required ENV vars: @REM JAVA_HOME - location of a JDK home dir @REM @REM Optional ENV vars @REM M2_HOME - location of maven2's installed home dir @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven @REM e.g. to debug Maven itself, use @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files @REM ---------------------------------------------------------------------------- @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' @echo off @REM set title of command window title %0 @REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% @REM set %HOME% to equivalent of $HOME if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") @REM Execute a user defined script before this one if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre @REM check for pre script, once with legacy .bat ending and once with .cmd ending if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" :skipRcPre @setlocal set ERROR_CODE=0 @REM To isolate internal variables from possible post scripts, we use another setlocal @setlocal @REM ==== START VALIDATION ==== if not "%JAVA_HOME%" == "" goto OkJHome echo. echo Error: JAVA_HOME not found in your environment. >&2 echo Please set the JAVA_HOME variable in your environment to match the >&2 echo location of your Java installation. >&2 echo. goto error :OkJHome if exist "%JAVA_HOME%\bin\java.exe" goto init echo. echo Error: JAVA_HOME is set to an invalid directory. >&2 echo JAVA_HOME = "%JAVA_HOME%" >&2 echo Please set the JAVA_HOME variable in your environment to match the >&2 echo location of your Java installation. >&2 echo. goto error @REM ==== END VALIDATION ==== :init @REM Find the project base dir, i.e. the directory that contains the folder ".mvn". @REM Fallback to current working directory if not found. set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir set EXEC_DIR=%CD% set WDIR=%EXEC_DIR% :findBaseDir IF EXIST "%WDIR%"\.mvn goto baseDirFound cd .. IF "%WDIR%"=="%CD%" goto baseDirNotFound set WDIR=%CD% goto findBaseDir :baseDirFound set MAVEN_PROJECTBASEDIR=%WDIR% cd "%EXEC_DIR%" goto endDetectBaseDir :baseDirNotFound set MAVEN_PROJECTBASEDIR=%EXEC_DIR% cd "%EXEC_DIR%" :endDetectBaseDir IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig @setlocal EnableExtensions EnableDelayedExpansion for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% :endReadAdditionalConfig SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B ) @REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central @REM This allows using the maven wrapper in projects that prohibit checking in binary data. if exist %WRAPPER_JAR% ( if "%MVNW_VERBOSE%" == "true" ( echo Found %WRAPPER_JAR% ) ) else ( if not "%MVNW_REPOURL%" == "" ( SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" ) if "%MVNW_VERBOSE%" == "true" ( echo Couldn't find %WRAPPER_JAR%, downloading it ... echo Downloading from: %DOWNLOAD_URL% ) powershell -Command "&{"^ "$webclient = new-object System.Net.WebClient;"^ "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ "}"^ "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ "}" if "%MVNW_VERBOSE%" == "true" ( echo Finished downloading %WRAPPER_JAR% ) ) @REM End of extension @REM Provide a "standardized" way to retrieve the CLI args that will @REM work with both Windows and non-Windows executions. set MAVEN_CMD_LINE_ARGS=%* %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* if ERRORLEVEL 1 goto error goto end :error set ERROR_CODE=1 :end @endlocal & set ERROR_CODE=%ERROR_CODE% if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost @REM check for post script, once with legacy .bat ending and once with .cmd ending if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" :skipRcPost @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' if "%MAVEN_BATCH_PAUSE%" == "on" pause if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% exit /B %ERROR_CODE% ================================================ FILE: pom.xml ================================================ 4.0.0 tools.jackson jackson-base 3.2.0-SNAPSHOT tools.jackson.dataformat jackson-dataformats-text Jackson dataformats: Text 3.2.0-SNAPSHOT pom Parent pom for Jackson text-based dataformats (as opposed to binary). The Apache Software License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0.txt repo csv properties yaml toml https://github.com/FasterXML/jackson-dataformats-text scm:git:git@github.com:FasterXML/jackson-dataformats-text.git scm:git:git@github.com:FasterXML/jackson-dataformats-text.git https://github.com/FasterXML/jackson-dataformats-text HEAD https://github.com/FasterXML/jackson-dataformats-text/issues 2026-02-24T23:04:48Z tools.jackson.core jackson-core org.junit.jupiter junit-jupiter test org.junit.jupiter junit-jupiter-api test org.assertj assertj-core test central-snapshots Sonatype Central Portal (snapshots) https://central.sonatype.com/repository/maven-snapshots false true com.google.code.maven-replacer-plugin replacer process-packageVersion generate-sources ================================================ FILE: properties/.gitattributes ================================================ # Do not merge `pom.xml` from older version, as it will typically conflict pom.xml merge=ours ================================================ FILE: properties/README.md ================================================ ## Overview [Jackson](../../../../jackson) (Java) data format module that supports reading and writing [Java Properties](https://en.wikipedia.org/wiki/.properties) files, using naming convention to determine implied structure (by default assuming dotted notation, but configurable from non-nested to other separators). ## Status Since version 2.9 this module is considered complete and production ready. All Jackson layers (streaming, databind, tree model) are supported. ## Maven dependency To use this extension on Maven-based projects, use following dependency: ```xml com.fasterxml.jackson.dataformat jackson-dataformat-properties 2.13.4 ``` # Usage Basic usage is by using `JavaPropsFactory` in places where you would usually use `JsonFactory`; or, for convenience, `JavaPropsMapper` instead of plain `ObjectMapper`. ```java JavaPropsMapper mapper = new JavaPropsMapper(); // and then read/write data as usual SomeType value = ...; String props = mapper.writeValueAsBytes(value); // or mapper.writeValue(new File("stuff.properties", value); SomeType otherValue = mapper.readValue(props, SomeType.class); ``` For reading and writing, you most commonly use `ObjectReader` and `ObjectWriter`, created using mapper object you have; for example: ```java String props = mapper.writerFor(Pojo.class) .writeValueAsString(pojo); Pojo result = mapper.readerFor(Pojo.class) .with(schema) // if customization needed .readValue(propsFile); ``` ## Basics of conversion Since default `java.util.Properties` can read "flat" key/value entries in, what is the big deal here? Most properties files actually use an implied structure by using a naming convention; most commonly by using period ('.') as logical path separator. So you may have something like: ``` title=Home Page site.host=localhost site.port=8080 ``` to group related properties together. This implied structure could easily be made actual explicit Structure: for example, we could consider following Class definitions ```java public class WebPage { public String title; public Site site; } static class Site { public String host; public int port; } ``` So what this module does is to convert "flattened" properties keys into hierarchic structure and back; and by doing this allows Jackson databinding to bind such properties content into full hierarcic Object model. ## Simple POJO serialization Let's consider another simple POJO definition of: ```java public class User { public Gender gender; public Name name; // nested object public boolean verified; public byte[] userImage; } static class Name { public String first, last; } enum Gender { M, F, O; } ``` and code ```java User user = new User(Gender.M, new Name("Bob", "Palmer"), true, new byte[] { 1, 2, 3, 4 }); String propStr = mapper.writeValueAsString(user); ``` and with that, we could have following contents in String `propStr`: ``` gender=M name.first=Bob name.last=Palmer verified=true userImage=AQIDBA== ``` ## Simple POJO deserialization Given a String of `propStr`, we could easily read contents back as a POJO with: ```java User result = mapper.readValue(props, User.class); ``` and verify that contents are as expected. ## Basic array handling Although path notation usually assumes that path segments (pieces between separators, comma by default) are to be considered logical POJO properties (no pun intended), or fields, there is default handling (which may be disabled) to infer index values from path segments that are simple numbers. This means that default handling for Properties content like: ``` boxes.1.x = 5 boxes.1.y = 6 boxes.2.x = -5 boxes.2.y = 15 ``` could be easily read into following POJO: ```java public class Container { public List boxes; } static class Box { public int x, y; } ``` with ```java Container c = mapper.readValue(propsFile, Boxes.class); ``` Similarly when writing out Properties content, default inclusion mechanism is to use "simple" indexes, and to start with index `1`. Note that most of these aspects are configurable; and note also that when reading, absolute value of index is not used as-is but only to indicate ordering of entries: that is, gaps in logical numbering do not indicate `null` values in resulting arrays and `List`s. ## Using "Any" properties TO BE WRITTEN ## Customizing handling with `JavaPropsSchema` The most important format-specific configuration mechanism is the ability to define a `FormatSchema` (type define in `jackson-core`) to use for parsing and generating content in specific format. In case of Java Properties, schema type to use is `JavaPropsSchema`. Format definitions may be passed either directly to specific `JavaPropsGenerator` / `JavaPropsParser` (when working directly with low-level Streaming API), or, more commonly, when constructing `ObjectReader` / `ObjectWriter` (as shown in samples above). If no schema is explicitly specified, the default instance (accessible with `JavaPropsSchema.emptySchema()`) is used. Schema instances are created by using "mutant factory" methods like `withPathSeparator` on an instance; since schema instances are fully immutable (to allow thread-safe sharing and reuse), a new instance is always created if settings would need to change. Typical usage, then is: ```java JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withPathSeparator("->"); Pojo stuff = mapper.readerFor(Pojo.class) .with(schema) .readValue(source); // and writing mapper.writer(schema) .writeValue(stuff, new File("stuff.properties"); ``` Currently existing configuration settings to use can be divide into three groups: * Separators for indicating how components of logical entries are separated from each other. Some settings apply to both reading and writing, others to only generation * Array settings for indicating how flat Property keys can be interpreted as hierarchic paths * Other settings for things that are neither separators nor array settings. ### JavaPropsSchema: separators #### JavaPropsSchema.keyValueSeparator * Marker used to separate property key and value segments when writing content * Only affects writing: currently (2.7) has no effect on reading * Default value: "=" * Mutator method: `JavaPropsSchema.withKeyValueSeparator(String)` #### JavaPropsSchema.lineEnding * String output after each logical key/value entry, usually linefeed * Only affects writing: currently (2.7) has no effect on reading (reader assumes a linefeed) * Default value: "\n" (Unix linefeed) * Mutator method: `JavaPropsSchema.withLineEnding(String)` #### JavaPropsSchema.lineIndentation * String output before each logical key/value entry, useful for adding indentation * Only affects writing: currently (2.7) has no effect on reading (reader skips any white space that precedes key name) * Default value: "" (empty String; that is, no indentation prepended) * Mutator method: `JavaPropsSchema.withLineIndentation(String)` #### JavaPropsSchema.pathSeparator * Marker used to separate logical path segments within key name, if any; if disabled (specified as empty String), no path component separation is performed * Affects both reading and writing * Default value: "." * Mutator methods * `JavaPropsSchema.withPathSeparator(String)` to assign path separator (except if "" given, same as disabling) * `JavaPropsSchema.withoutPathSeparator()` to disable use of path logic; if so, only main-level properties are available, with exact property key as name #### JavaPropsSchema.pathSeparatorEscapeChar * Marker used to enable the JavaPropsSchema.pathSeparator to be included in key names. * Default value: '\0' (effectively disabling it). * Mutator methods * `JavaPropsSchema.withPathSeparatorEscapeChar(char)` to assign path separator escape char * Notes * The escape character is only used if the path separator is a single character. * The escape character is only used for escaping either the pathSeparator character or a sequence of escape characters immediately prior to the pathSeparator. * Any escape character may be used. * Backslash ('\\') is the most obvious character to use, but be aware that the JDK Properties loader has its own rules for escape processing (documented in the Javadoc for [Properties.load] (https://docs.oracle.com/en/java/javase/18/docs/api/java.base/java/util/Properties.html#load(java.io.Reader) ) ) that will remove ALL duplicated backslash characters (and also carry out other escape handling) before the JavaPropsMapper gets to see them. * Examples * Given a pathSeparator of "." and an escape char of '#' then * a#.b produces a segment called "a.b" * a##.b produces a segment called "a#" with a child called "b" * a###.b produces a segment called "a#.b" * a#b produces a segment called "a#b" - the escape processing is only used immediately prior to the path separator. ### JavaPropsSchema: array representation #### JavaPropsSchema.firstArrayOffset * If array handling is enabled (simple and/or marker-based indexes), defines the value used as path component for the first element; other elements advance index value by 1 * Has only effect on writing: when reading, index values are used for ordering but are not used as absolute physical indexes within logical arrays * Most commonly used values are `1` and `0`, although any integer value may be used * Default value: `1` * Mutator method: `JavaPropsSchema.withFirstArrayOffset(int)` #### JavaPropsSchema.indexMarker * Optional pair of start- and end-markers that may be used to denote array entries * Default value: `Markers("[", "]")` -- allows use of notation like "path.array[1].x = 15" * Means that by default marker-based notation IS allowed * Mutator methods: * `JavaPropsSchema.withIndexMarker(Markers)` * `JavaPropsSchema.withoutIndexMarker()` #### JavaPropsSchema.parseSimpleIndexes * On/off setting that determines whether path segments that are valid positive integers are automatically considered to indicate an array value * As name implies, only affects reading * Default value: `true` -- means that by default path segments that "look like array index" will be considered to be array entries * Mutator method: `JavaPropsSchema.withParseSimpleIndexes(boolean)` #### JavaPropsSchema.writeIndexUsingMarkers * On/off setting that determines which notation (simple, or marker-based) is used for writing paths for array values: if `true`, marker-based (start/end markers) indexing is used, if `false`, "simple" notation where index is output as path segment * With default settings these would lead to either "path.array.1.x = 15" (`false`) or "path.array[1].x = 15" output * Default value: `false` (so "simple" notation is used, "path.array.1.x = 15") * Mutator method: `JavaPropsSchema.withWriteIndexUsingMarkers(boolean)` ### JavaPropsSchema: other configuration #### JavaPropsSchema.header * Optional String to output at the beginning of resulting Properties output, before any of the values is output; typically to add comment line(s) * NOTE: should always end with a linefeed (unless specified as empty String), as otherwise first entry would be concatenated as part of last line of header * Default value: "" (empty String, that is, no output) * Mutator method: `JavaPropsSchema.withHeader(String)` # Sample Usage ## ZooKeeper Configs Consider following simple [ZooKeeper](https://zookeeper.apache.org/) config file from [ZK Documentation](https://zookeeper.apache.org/doc/r3.1.2/zookeeperStarted.html): ``` tickTime=2000 dataDir=/var/zookeeper clientPort=2181 initLimit=5 syncLimit=2 server.1=zoo1:2888:3888 server.2=zoo2:2888:3888 server.3=zoo3:2888:3888 ``` this could be expressed by, say, following Java classes (used by unit tests of this module): ```java static class ZKConfig { public int tickTime; public File dataDir; public int clientPort; public int initLimit, syncLimit; @JsonProperty("server") public List servers; } static class ZKServer { public final int srcPort, dstPort; public final String host; @JsonCreator public ZKServer(String combo) { // should validate better; should work for now String[] parts = combo.split(":"); host = parts[0];h srcPort = Integer.parseInt(parts[1]); dstPort = Integer.parseInt(parts[2]); } @JsonValue public String asString() { return String.format("%s:%d:%d", host, srcPort, dstPort); } } ``` where the only slightly complicated part is splitting of colon-separated endpoint definition. As earlier, reading such Configuration would be as simple as: ```java ZKConfig config = propsMapper.readValue(new File("zook.properties"), ZKConfig.class); ``` after which access to properties would be done using simple field access (or, if we prefer, additional getters). Note: in this example, default schema configuration worked so we did not have to set it for reading. If we did, we would have used something like: ```java JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withPathSeparator("->"); propsMapper.writer(schema) .writeValue(config, new File("zook-modified.properties"); // and similarly when reading ``` ================================================ FILE: properties/pom.xml ================================================ 4.0.0 tools.jackson.dataformat jackson-dataformats-text 3.2.0-SNAPSHOT jackson-dataformat-properties Jackson-dataformat-Properties jar Support for reading and writing content of "Java Properties" style configuration files as if there was implied nesting structure (by default using dots as separators). https://github.com/FasterXML/jackson-dataformats-text The Apache Software License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0.txt repo tools/jackson/dataformat/javaprop ${project.groupId}.javaprop tools.jackson.core jackson-databind com.google.code.maven-replacer-plugin replacer org.cyclonedx cyclonedx-maven-plugin org.gradlex gradle-module-metadata-maven-plugin ================================================ FILE: properties/src/main/java/module-info.java ================================================ // Properties Main artifact Module descriptor module tools.jackson.dataformat.properties { requires tools.jackson.core; requires tools.jackson.databind; exports tools.jackson.dataformat.javaprop; // exports tools.jackson.dataformat.javaprop.impl; exports tools.jackson.dataformat.javaprop.io; exports tools.jackson.dataformat.javaprop.util; provides tools.jackson.core.TokenStreamFactory with tools.jackson.dataformat.javaprop.JavaPropsFactory; provides tools.jackson.databind.ObjectMapper with tools.jackson.dataformat.javaprop.JavaPropsMapper; } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsFactory.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.*; import java.util.*; import tools.jackson.core.*; import tools.jackson.core.base.TextualTSFactory; import tools.jackson.core.exc.StreamReadException; import tools.jackson.core.io.IOContext; import tools.jackson.dataformat.javaprop.impl.PropertiesBackedGenerator; import tools.jackson.dataformat.javaprop.impl.WriterBackedGenerator; import tools.jackson.dataformat.javaprop.io.Latin1Reader; @SuppressWarnings("resource") public class JavaPropsFactory extends TextualTSFactory implements java.io.Serializable { private static final long serialVersionUID = 1L; public final static String FORMAT_NAME_JAVA_PROPERTIES = "java_properties"; protected final static String CHARSET_ID_LATIN1 = "ISO-8859-1"; final static JavaPropsSchema EMPTY_SCHEMA; static { EMPTY_SCHEMA = JavaPropsSchema.emptySchema(); } /* /********************************************************************** /* Factory construction, configuration /********************************************************************** */ public JavaPropsFactory() { // No format-specific features yet so: super(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), 0, 0); } protected JavaPropsFactory(JavaPropsFactory src) { super(src); } /** * Constructors used by {@link JavaPropsFactoryBuilder} for instantiation. * * @since 3.0 */ protected JavaPropsFactory(JavaPropsFactoryBuilder b) { super(b); } @Override public JavaPropsFactoryBuilder rebuild() { return new JavaPropsFactoryBuilder(this); } /** * Main factory method to use for constructing {@link JavaPropsFactory} instances with * different configuration. */ public static JavaPropsFactoryBuilder builder() { return new JavaPropsFactoryBuilder(); } @Override public JavaPropsFactory copy() { return new JavaPropsFactory(this); } /** * Instances are immutable so just return `this` */ @Override public TokenStreamFactory snapshot() { return this; } /* /********************************************************************** /* Introspection /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } // Not positional @Override public boolean requiresPropertyOrdering() { return false; } // Not using char[] internally @Override public boolean canUseCharArrays() { return false; } @Override public boolean canParseAsync() { // 30-Sep-2017, tatu: No async parsing yet return false; } /* /********************************************************************** /* Format support /********************************************************************** */ @Override public String getFormatName() { return FORMAT_NAME_JAVA_PROPERTIES; } @Override public boolean canUseSchema(FormatSchema schema) { return schema instanceof JavaPropsSchema; } // No format-specific configuration, yet: @Override public Class getFormatReadFeatureType() { return null; } @Override public Class getFormatWriteFeatureType() { return null; } @Override public int getFormatReadFeatures() { return 0; } @Override public int getFormatWriteFeatures() { return 0; } /* /********************************************************************** /* Extended parser/generator factory methods /********************************************************************** */ /** * Convenience method to allow feeding a pre-parsed {@link Properties} * (or, generally {@link java.util.Map}) instance as input. */ public JavaPropsParser createParser(ObjectReadContext readCtxt, JavaPropsSchema schema, Map content) { return new JavaPropsParser(readCtxt, _createContext(_createContentReference(content), true), readCtxt.getStreamReadFeatures(_streamReadFeatures), schema, content, content); } /** * Convenience method to allow using a pre-constructed {@link Map} * instance as output target, so that serialized property values * are added. */ public JavaPropsGenerator createGenerator(ObjectWriteContext writeCtxt, JavaPropsSchema schema, Map target) { if (schema == null) { schema = EMPTY_SCHEMA; } return new PropertiesBackedGenerator(writeCtxt, _createContext(_createContentReference(target), true), writeCtxt.getStreamWriteFeatures(_streamWriteFeatures), schema, target); } /* /********************************************************************** /* Overridden internal factory methods, parser /********************************************************************** */ /* // fine as-is: @Override protected IOContext _createContext(Object srcRef, boolean resourceManaged) { return super._createContext(srcRef, resourceManaged); } */ @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, InputStream in) { Properties props = _loadProperties(in, ioCtxt); return new JavaPropsParser(readCtxt, ioCtxt, readCtxt.getStreamReadFeatures(_streamReadFeatures), _getSchema(readCtxt), in, props); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, Reader r) { Properties props = _loadProperties(r, ioCtxt); return new JavaPropsParser(readCtxt, ioCtxt, readCtxt.getStreamReadFeatures(_streamReadFeatures), _getSchema(readCtxt), r, props); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, char[] data, int offset, int len, boolean recyclable) { return _createParser(readCtxt, ioCtxt, new CharArrayReader(data, offset, len)); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, byte[] data, int offset, int len) { return _createParser(readCtxt, ioCtxt, new Latin1Reader(data, offset, len)); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ctxt, DataInput input) { return _unsupported(); } private final JavaPropsSchema _getSchema(ObjectReadContext readCtxt) { FormatSchema sch = readCtxt.getSchema(); if (sch == null) { return JavaPropsParser.DEFAULT_SCHEMA; } return (JavaPropsSchema) sch; } /* /********************************************************************** /* Overridden internal factory methods, generator /********************************************************************** */ @Override protected JsonGenerator _createGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, Writer out) { return new WriterBackedGenerator(writeCtxt, ioCtxt, writeCtxt.getStreamWriteFeatures(_streamWriteFeatures), _getSchema(writeCtxt), out); } @Override protected JsonGenerator _createUTF8Generator(ObjectWriteContext writeCtxt, IOContext ioCtxt, OutputStream out) { return new WriterBackedGenerator(writeCtxt, ioCtxt, writeCtxt.getStreamWriteFeatures(_streamWriteFeatures), _getSchema(writeCtxt), _createWriter(ioCtxt, out, null)); } @Override protected Writer _createWriter(IOContext ctioCtxtxt, OutputStream out, JsonEncoding enc) { // 27-Jan-2016, tatu: Properties javadoc is quite clear on Latin-1 (ISO-8859-1) being // the default, so let's actually override try { return new OutputStreamWriter(out, CHARSET_ID_LATIN1); } catch (IOException e) { throw _wrapIOFailure(e); } } private final JavaPropsSchema _getSchema(ObjectWriteContext ctxt) { FormatSchema sch = ctxt.getSchema(); if (sch == null) { return JavaPropsParser.DEFAULT_SCHEMA; } return (JavaPropsSchema) sch; } /* /********************************************************************** /* Low-level methods for reading/writing Properties; currently /* we simply delegate to `java.util.Properties` /********************************************************************** */ protected Properties _loadProperties(InputStream in, IOContext ctxt) { // NOTE: Properties default to ISO-8859-1 (aka Latin-1), NOT UTF-8; this // as per JDK documentation return _loadProperties(new Latin1Reader(ctxt, in), ctxt); } protected Properties _loadProperties(Reader r0, IOContext ctxt) { Properties props = new Properties(); // May or may not want to close the reader, so... try { if (ctxt.isResourceManaged() || isEnabled(StreamReadFeature.AUTO_CLOSE_SOURCE)) { try (Reader r = r0) { props.load(r); } } else { props.load(r0); } } catch (IllegalArgumentException e) { _reportReadException("Invalid content, problem: "+e.getMessage(), e); } catch (IOException e) { throw _wrapIOFailure(e); } return props; } protected T _reportReadException(String msg, Exception rootCause) { throw new StreamReadException((JsonParser) null, msg, rootCause); } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsFactoryBuilder.java ================================================ package tools.jackson.dataformat.javaprop; import tools.jackson.core.ErrorReportConfiguration; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.base.DecorableTSFactory.DecorableTSFBuilder; /** * {@link tools.jackson.core.TSFBuilder} * implementation for constructing {@link JavaPropsFactory} * instances. * * @since 3.0 */ public class JavaPropsFactoryBuilder extends DecorableTSFBuilder { public JavaPropsFactoryBuilder() { // No format-specific features yet so: super(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), 0, 0); } public JavaPropsFactoryBuilder(JavaPropsFactory base) { super(base); } @Override public JavaPropsFactory build() { return new JavaPropsFactory(this); } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsGenerator.java ================================================ package tools.jackson.dataformat.javaprop; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.charset.StandardCharsets; import java.util.Arrays; import tools.jackson.core.*; import tools.jackson.core.base.GeneratorBase; import tools.jackson.core.io.IOContext; import tools.jackson.core.util.JacksonFeatureSet; import tools.jackson.dataformat.javaprop.io.JPropWriteContext; import tools.jackson.dataformat.javaprop.util.Markers; public abstract class JavaPropsGenerator extends GeneratorBase { // As an optimization we try coalescing short writes into // buffer; but pass longer directly. protected final static int SHORT_WRITE = 100; /* /********************************************************************** /* Configuration /********************************************************************** */ /** * Definition of mapping of logically structured property names into actual * flattened property names. */ protected final JavaPropsSchema _schema; /* /********************************************************************** /* Output state /********************************************************************** */ /** * Current context, in form we can use it (GeneratorBase has * untyped reference; left as null) */ protected JPropWriteContext _streamWriteContext; /* /********************************************************************** /* Output buffering /********************************************************************** */ protected final StringBuilder _basePath = new StringBuilder(50); protected boolean _headerChecked; protected int _indentLength; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public JavaPropsGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, int stdFeatures, JavaPropsSchema schema) { super(writeCtxt, ioCtxt, stdFeatures); _streamWriteContext = JPropWriteContext.createRootContext(); _schema = schema; // Indentation to use? if (_streamWriteContext.inRoot()) { String indent = _schema.lineIndentation(); _indentLength = (indent == null) ? 0 : indent.length(); if (_indentLength > 0) { _basePath.setLength(0); _basePath.append(indent); _streamWriteContext = JPropWriteContext.createRootContext(_indentLength); } // [dataformats-text#100]: Allow use of optional prefix final String prefix = _schema.prefix(); if (prefix != null) { _basePath.append(prefix); } } } /* /********************************************************************** /* Versioned /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } /* /********************************************************************** /* Overrides: capability introspection methods /********************************************************************** */ // Base class impl fine: //@Override public boolean canWriteObjectId() { return false; } // Base class impl fine: //@Override public boolean canWriteTypeId() { return false; } // Base class impl fine: //@Override public boolean canOmitProperties() { return true; } @Override public boolean has(StreamWriteCapability capability) { return DEFAULT_TEXTUAL_WRITE_CAPABILITIES.isEnabled(capability); } @Override public JacksonFeatureSet streamWriteCapabilities() { return DEFAULT_TEXTUAL_WRITE_CAPABILITIES; } /* /********************************************************************** /* Overrides: output state handling methods /********************************************************************** */ @Override public TokenStreamContext streamWriteContext() { return _streamWriteContext; } @Override public Object currentValue() { return _streamWriteContext.currentValue(); } @Override public void assignCurrentValue(Object v) { _streamWriteContext.assignCurrentValue(v); } /* /********************************************************************** /* Overrides: configuration /********************************************************************** */ // public abstract getOutputTarget() // Base impl fine /* @Override public int getOutputBuffered() { return -1; } */ @Override public PrettyPrinter getPrettyPrinter() { return null; } @Override public FormatSchema getSchema() { return _schema; } /* /********************************************************************** /* Overridden methods; writing property names /********************************************************************** */ @Override public JsonGenerator writeName(String name) throws JacksonException { if (!_streamWriteContext.writeName(name)) { _reportError("Cannot write a property name, expecting a value"); } // also, may need to output header if this would be first write if (!_headerChecked) { _headerChecked = true; String header = _schema.header(); if (header != null && !header.isEmpty()) { _writeRaw(header); } } // Ok; append to base path at this point. // First: ensure possibly preceding property name is removed: _streamWriteContext.truncatePath(_basePath); if (_basePath.length() > _indentLength) { String sep = _schema.pathSeparator(); if (!sep.isEmpty()) { _basePath.append(sep); } } _appendPropertyName(_basePath, name); return this; } @Override public JsonGenerator writePropertyId(long id) throws JacksonException { // 15-Aug-2019, tatu: should be improved to avoid String generation return writeName(Long.toString(id)); } protected abstract void _appendPropertyName(StringBuilder path, String name); /* /********************************************************************** /* Public API: structural output /********************************************************************** */ @Override public JsonGenerator writeStartArray() throws JacksonException { _verifyValueWrite("start an array"); _streamWriteContext = _streamWriteContext.createChildArrayContext(null, _basePath.length()); streamWriteConstraints().validateNestingDepth(_streamWriteContext.getNestingDepth()); return this; } @Override public JsonGenerator writeStartArray(Object currValue) throws JacksonException { _verifyValueWrite("start an array"); _streamWriteContext = _streamWriteContext.createChildArrayContext(currValue, _basePath.length()); streamWriteConstraints().validateNestingDepth(_streamWriteContext.getNestingDepth()); return this; } @Override public JsonGenerator writeEndArray() throws JacksonException { if (!_streamWriteContext.inArray()) { _reportError("Current context not an Array but "+_streamWriteContext.typeDesc()); } _streamWriteContext = _streamWriteContext.getParent(); return this; } @Override public JsonGenerator writeStartObject() throws JacksonException { _verifyValueWrite("start an object"); _streamWriteContext = _streamWriteContext.createChildObjectContext(null, _basePath.length()); streamWriteConstraints().validateNestingDepth(_streamWriteContext.getNestingDepth()); return this; } @Override public JsonGenerator writeStartObject(Object forValue) throws JacksonException { _verifyValueWrite("start an object"); _streamWriteContext = _streamWriteContext.createChildObjectContext(forValue, _basePath.length()); streamWriteConstraints().validateNestingDepth(_streamWriteContext.getNestingDepth()); return this; } @Override public JsonGenerator writeEndObject() throws JacksonException { if (!_streamWriteContext.inObject()) { _reportError("Current context not an Ibject but "+_streamWriteContext.typeDesc()); } _streamWriteContext = _streamWriteContext.getParent(); return this; } /* /********************************************************************** /* Output method implementations, textual /********************************************************************** */ @Override public JsonGenerator writeString(String text) throws JacksonException { if (text == null) { return writeNull(); } _verifyValueWrite("write String value"); _writeEscapedEntry(text); return this; } @Override public JsonGenerator writeString(char[] text, int offset, int len) throws JacksonException { _verifyValueWrite("write String value"); _writeEscapedEntry(text, offset, len); return this; } @Override public JsonGenerator writeRawUTF8String(byte[] text, int offset, int len)throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeUTF8String(byte[] text, int offset, int len) throws JacksonException { return writeString(new String(text, offset, len, StandardCharsets.UTF_8)); } /* /********************************************************************** /* Output method implementations, unprocessed ("raw") /********************************************************************** */ @Override public JsonGenerator writeRaw(String text) throws JacksonException { _writeRaw(text); return this; } @Override public JsonGenerator writeRaw(String text, int offset, int len) throws JacksonException { _writeRaw(text.substring(offset, offset+len)); return this; } @Override public JsonGenerator writeRaw(char[] text, int offset, int len) throws JacksonException { _writeRaw(text, offset, len); return this; } @Override public JsonGenerator writeRaw(char c) throws JacksonException { _writeRaw(c); return this; } @Override public JsonGenerator writeRaw(SerializableString text) throws JacksonException { writeRaw(text.toString()); return this; } /* /********************************************************************** /* Output method implementations, base64-encoded binary /********************************************************************** */ @Override public JsonGenerator writeBinary(Base64Variant b64variant, byte[] data, int offset, int len) throws JacksonException { if (data == null) { return writeNull(); } _verifyValueWrite("write Binary value"); // ok, better just Base64 encode as a String... if (offset > 0 || (offset+len) != data.length) { data = Arrays.copyOfRange(data, offset, offset+len); } String encoded = b64variant.encode(data); _writeEscapedEntry(encoded); return this; } /* /********************************************************************** /* Output method implementations, scalars /********************************************************************** */ @Override public JsonGenerator writeBoolean(boolean state) throws JacksonException { _verifyValueWrite("write boolean value"); _writeUnescapedEntry(state ? "true" : "false"); return this; } @Override public JsonGenerator writeNumber(short v) throws JacksonException { return writeNumber((int) v); } @Override public JsonGenerator writeNumber(int i) throws JacksonException { _verifyValueWrite("write number"); _writeUnescapedEntry(String.valueOf(i)); return this; } @Override public JsonGenerator writeNumber(long l) throws JacksonException { _verifyValueWrite("write number"); _writeUnescapedEntry(String.valueOf(l)); return this; } @Override public JsonGenerator writeNumber(BigInteger v) throws JacksonException { if (v == null) { return writeNull(); } _verifyValueWrite("write number"); _writeUnescapedEntry(String.valueOf(v)); return this; } @Override public JsonGenerator writeNumber(double d) throws JacksonException { _verifyValueWrite("write number"); _writeUnescapedEntry(String.valueOf(d)); return this; } @Override public JsonGenerator writeNumber(float f) throws JacksonException { _verifyValueWrite("write number"); _writeUnescapedEntry(String.valueOf(f)); return this; } @Override public JsonGenerator writeNumber(BigDecimal dec) throws JacksonException { if (dec == null) { return writeNull(); } _verifyValueWrite("write number"); String str = isEnabled(StreamWriteFeature.WRITE_BIGDECIMAL_AS_PLAIN) ? dec.toPlainString() : dec.toString(); _writeUnescapedEntry(str); return this; } @Override public JsonGenerator writeNumber(String encodedValue) throws JacksonException { if (encodedValue == null) { return writeNull(); } _verifyValueWrite("write number"); _writeUnescapedEntry(encodedValue); return this; } @Override public JsonGenerator writeNull() throws JacksonException { _verifyValueWrite("write null value"); _writeUnescapedEntry(""); return this; } /* /********************************************************************** /* Implementations for methods from base class /********************************************************************** */ // protected void _releaseBuffers() // protected void _flushBuffer() throws JacksonException @Override protected void _verifyValueWrite(String typeMsg) throws JacksonException { // first, check that name/value cadence works if (!_streamWriteContext.writeValue()) { _reportError("Cannot "+typeMsg+", expecting a property name"); } // and if so, update path if we are in array if (_streamWriteContext.inArray()) { // remove possible path remnants from an earlier sibling _streamWriteContext.truncatePath(_basePath); int ix = _streamWriteContext.getCurrentIndex() + _schema.firstArrayOffset(); if (_schema.writeIndexUsingMarkers()) { Markers m = _schema.indexMarker(); // no leading path separator, if using enclosed indexes _basePath.append(m.getStart()); _basePath.append(ix); _basePath.append(m.getEnd()); } else { // leading path separator, if using "simple" index markers if (_basePath.length() > 0) { String sep = _schema.pathSeparator(); if (!sep.isEmpty()) { _basePath.append(sep); } } _basePath.append(ix); } } } /* /********************************************************************** /* Abstract methods for sub-classes /********************************************************************** */ protected abstract void _writeEscapedEntry(String value) throws JacksonException; protected abstract void _writeEscapedEntry(char[] text, int offset, int len) throws JacksonException; protected abstract void _writeUnescapedEntry(String value) throws JacksonException; protected abstract void _writeRaw(char c) throws JacksonException; protected abstract void _writeRaw(String text) throws JacksonException; protected abstract void _writeRaw(StringBuilder text) throws JacksonException; protected abstract void _writeRaw(char[] text, int offset, int len) throws JacksonException; } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsMapper.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.IOException; import java.util.*; import tools.jackson.core.JsonParser; import tools.jackson.core.Version; import tools.jackson.databind.DeserializationContext; import tools.jackson.databind.DeserializationFeature; import tools.jackson.databind.JavaType; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.cfg.*; import tools.jackson.databind.ser.SerializationContextExt; public class JavaPropsMapper extends ObjectMapper { private static final long serialVersionUID = 3L; /** * Base implementation for "Vanilla" {@link ObjectMapper}, used with * Java Properties backend. * * @since 3.0 */ public static class Builder extends MapperBuilder { public Builder(JavaPropsFactory f) { super(f); // 09-Apr-2021, tatu: [dataformats-text#255]: take empty String to // mean `null` where applicable; also accept Blank same way enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT); _coercionConfigs.defaultCoercions() .setAcceptBlankAsEmpty(Boolean.TRUE) .setCoercion(CoercionInputShape.EmptyString, CoercionAction.AsEmpty) ; } public Builder(StateImpl state) { super(state); } @Override public JavaPropsMapper build() { return new JavaPropsMapper(this); } @Override protected MapperBuilderState _saveState() { return new StateImpl(this); } protected static class StateImpl extends MapperBuilderState implements java.io.Serializable // important! { private static final long serialVersionUID = 3L; public StateImpl(Builder src) { super(src); } // We also need actual instance of state as base class can not implement logic // for reinstating mapper (via mapper builder) from state. @Override protected Object readResolve() { return new Builder(this).build(); } } } /* /********************************************************************** /* Life-cycle /********************************************************************** */ public JavaPropsMapper() { this(new JavaPropsFactory()); } public JavaPropsMapper(JavaPropsFactory f) { this(new Builder(f)); } public JavaPropsMapper(Builder b) { super(b); } public static Builder builder() { return new Builder(new JavaPropsFactory()); } public static Builder builder(JavaPropsFactory streamFactory) { return new Builder(streamFactory); } @SuppressWarnings("unchecked") @Override public Builder rebuild() { return new Builder((Builder.StateImpl) _savedBuilderState); } /* /********************************************************************** /* Life-cycle, shared "vanilla" (default configuration) instance /********************************************************************** */ /** * Accessor method for getting globally shared "default" {@link JavaPropsMapper} * instance: one that has default configuration, no modules registered, no * config overrides. Usable mostly when dealing "untyped" or Tree-style * content reading and writing. */ public static JavaPropsMapper shared() { return SharedWrapper.wrapped(); } /* /********************************************************************** /* Life-cycle: JDK serialization support /********************************************************************** */ // 27-Feb-2018, tatu: Not sure why but it seems base class definitions // are not sufficient alone; sub-classes must re-define. @Override protected Object writeReplace() { return _savedBuilderState; } @Override protected Object readResolve() { throw new IllegalStateException("Should never deserialize `"+getClass().getName()+"` directly"); } /* /********************************************************************** /* Basic accessor overrides /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } @Override public JavaPropsFactory tokenStreamFactory() { return (JavaPropsFactory) _streamFactory; } /* /********************************************************************** /* Extended read methods, from Properties objects /********************************************************************** */ /** * Convenience method which uses given `Properties` as the source * as if they had been read from an external source, processes * them (splits paths etc), and then binds as given result * value. *

    * Note that this is NOT identical to calling {@link #convertValue(Object, Class)}; * rather, it would be similar to writing `Properties` out into a File, * then calling `readValue()` on this mapper to bind contents. */ @SuppressWarnings("resource") public T readPropertiesAs(Properties props, JavaPropsSchema schema, Class valueType) throws IOException { DeserializationContext ctxt = _deserializationContext(); JsonParser p = tokenStreamFactory().createParser(ctxt, schema, props); return (T) readValue(p, valueType); } /** * Convenience method which uses given `Properties` as the source * as if they had been read from an external source, processes * them (splits paths etc), and then binds as given result * value. *

    * Note that this is NOT identical to calling {@link #convertValue(Object, Class)}; * rather, it would be similar to writing `Properties` out into a File, * then calling `readValue()` on this mapper to bind contents. */ @SuppressWarnings({ "resource", "unchecked" }) public T readPropertiesAs(Properties props, JavaPropsSchema schema, JavaType valueType) throws IOException { DeserializationContext ctxt = _deserializationContext(); JsonParser p = tokenStreamFactory().createParser(ctxt, schema, props); return (T) readValue(p, valueType); } /** * Convenience method, functionally equivalent to: *

         *   readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
         *
    */ public T readPropertiesAs(Properties props, Class valueType) throws IOException { return readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType); } /** * Convenience method, functionally equivalent to: *
         *   readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
         *
    */ public T readPropertiesAs(Properties props, JavaType valueType) throws IOException { return readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType); } /* /********************************************************************** /* Extended read methods, from Map objects /********************************************************************** */ /** * Convenience method which uses given `Properties` as the source * as if they had been read from an external source, processes * them (splits paths etc), and then binds as given result * value. *

    * Note that this is NOT identical to calling {@link #convertValue(Object, Class)}; * rather, it would be similar to writing `Properties` out into a File, * then calling `readValue()` on this mapper to bind contents. */ @SuppressWarnings("resource") public T readMapAs(Map map, JavaPropsSchema schema, Class valueType) throws IOException { DeserializationContext ctxt = _deserializationContext(); JsonParser p = tokenStreamFactory().createParser(ctxt, schema, map); return (T) readValue(p, valueType); } /** * Convenience method which uses given `Properties` as the source * as if they had been read from an external source, processes * them (splits paths etc), and then binds as given result * value. *

    * Note that this is NOT identical to calling {@link #convertValue(Object, Class)}; * rather, it would be similar to writing `Properties` out into a File, * then calling `readValue()` on this mapper to bind contents. */ @SuppressWarnings({ "resource", "unchecked" }) public T readMapAs(Map map, JavaPropsSchema schema, JavaType valueType) throws IOException { DeserializationContext ctxt = _deserializationContext(); JsonParser p = tokenStreamFactory().createParser(ctxt, schema, map); return (T) readValue(p, valueType); } /** * Convenience method, functionally equivalent to: *

         *   readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
         *
    */ public T readMapAs(Map map, Class valueType) throws IOException { return readMapAs(map, JavaPropsSchema.emptySchema(), valueType); } /** * Convenience method, functionally equivalent to: *
         *   readPropertiesAs(props, JavaPropsSchema.emptySchema(), valueType);
         *
    */ public T readMapAs(Map map, JavaType valueType) throws IOException { return readMapAs(map, JavaPropsSchema.emptySchema(), valueType); } /* /********************************************************************** /* Extended read methods, from System Properties /********************************************************************** */ /** * Convenience method, functionally equivalent to: *
         *   readPropertiesAs(System.getProperties(), schema, valueType);
         *
    */ public T readSystemPropertiesAs(JavaPropsSchema schema, Class valueType) throws IOException { return readPropertiesAs(System.getProperties(), schema, valueType); } /** * Convenience method, functionally equivalent to: *
         *   readPropertiesAs(System.getProperties(), schema, valueType);
         *
    */ public T readSystemPropertiesAs(JavaPropsSchema schema, JavaType valueType) throws IOException { return readPropertiesAs(System.getProperties(), schema, valueType); } /* /********************************************************************** /* Extended read methods, from Env variables /********************************************************************** */ /** * Convenience method, functionally equivalent to: *
         *   readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
         *
    */ public T readEnvVariablesAs(JavaPropsSchema schema, Class valueType) throws IOException { return readPropertiesAs(_env(), schema, valueType); } /** * Convenience method, functionally equivalent to: *
         *   readPropertiesAs(convertMapToProperties(System.getenv()), schema, valueType);
         *
    */ public T readEnvVariablesAs(JavaPropsSchema schema, JavaType valueType) throws IOException { return readPropertiesAs(_env(), schema, valueType); } protected Properties _env() { Properties props = new Properties(); props.putAll(System.getenv()); return props; } /* /********************************************************************** /* Extended write methods /********************************************************************** */ /** * Convenience method that "writes" given `value` as properties * in given {@link Map} object. */ public void writeValue(Map target, Object value) throws IOException { if (target == null) { throw new IllegalArgumentException("Can not pass `null` target"); } SerializationContextExt prov = _serializationContext(); try (JavaPropsGenerator g = tokenStreamFactory().createGenerator(prov, null, target)) { writeValue(g, value); } } /** * Convenience method that "writes" given `value` as properties * in given {@link Map} object. */ public void writeValue(Map target, Object value, JavaPropsSchema schema) throws IOException { if (target == null) { throw new IllegalArgumentException("Can not pass `null` target"); } SerializationContextExt prov = _serializationContext(); try (JavaPropsGenerator g = tokenStreamFactory().createGenerator(prov, schema, target)) { writeValue(g, value); } } /** * Convenience method that serializes given value but so that results are * stored in a newly constructed {@link Properties}. Functionally equivalent * to serializing in a File and reading contents into {@link Properties}. */ public Properties writeValueAsProperties(Object value) throws IOException { final Properties props = new Properties(); writeValue(props, value); return props; } /** * Convenience method that serializes given value but so that results are * stored in given {@link Properties} instance. */ public Properties writeValueAsProperties(Object value, JavaPropsSchema schema) throws IOException { final Properties props = new Properties(); writeValue(props, value, schema); return props; } /** * Convenience method that serializes given value but so that results are * stored in a newly constructed {@link Properties}. Functionally equivalent * to serializing in a File and reading contents into {@link Properties}. */ public Map writeValueAsMap(Object value) throws IOException { final Map map = new LinkedHashMap<>(); writeValue(map, value); return map; } /** * Convenience method that serializes given value but so that results are * stored in given {@link Properties} instance. */ public Map writeValueAsMap(Object value, JavaPropsSchema schema) throws IOException { final Map map = new LinkedHashMap<>(); writeValue(map, value, schema); return map; } /* /********************************************************************** /* Schema support methods? /********************************************************************** */ // do we have any actually? /* /********************************************************** /* Helper class(es) /********************************************************** */ /** * Helper class to contain dynamically constructed "shared" instance of * mapper, should one be needed via {@link #shared}. */ private final static class SharedWrapper { private final static JavaPropsMapper MAPPER = JavaPropsMapper.builder().build(); public static JavaPropsMapper wrapped() { return MAPPER; } } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsParser.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.*; import java.math.BigDecimal; import java.math.BigInteger; import java.util.Map; import tools.jackson.core.*; import tools.jackson.core.base.ParserMinimalBase; import tools.jackson.core.exc.StreamReadException; import tools.jackson.core.io.IOContext; import tools.jackson.core.util.ByteArrayBuilder; import tools.jackson.core.util.JacksonFeatureSet; import tools.jackson.dataformat.javaprop.io.JPropReadContext; import tools.jackson.dataformat.javaprop.util.JPropNode; import tools.jackson.dataformat.javaprop.util.JPropNodeBuilder; public class JavaPropsParser extends ParserMinimalBase { protected final static JavaPropsSchema DEFAULT_SCHEMA = new JavaPropsSchema(); /** * Properties capabilities slightly different from defaults, having * untyped (text-only) scalars. */ protected final static JacksonFeatureSet STREAM_READ_CAPABILITIES = DEFAULT_READ_CAPABILITIES .with(StreamReadCapability.UNTYPED_SCALARS) ; /* /********************************************************************** /* Configuration /********************************************************************** */ /** * Although most massaging is done later, caller may be interested in the * ultimate source. */ protected final Object _inputSource; /** * Actual {@link java.util.Properties} (or, actually, any {@link java.util.Map} * with String keys, values) that were parsed and handed to us * for further processing. */ protected final Map _sourceContent; /** * Schema we use for parsing Properties into structure of some kind. */ protected JavaPropsSchema _schema = DEFAULT_SCHEMA; /* /********************************************************************** /* Parsing state /********************************************************************** */ protected JPropReadContext _streamReadContext; /* /********************************************************************** /* Recycled helper objects /********************************************************************** */ protected ByteArrayBuilder _byteArrayBuilder; protected byte[] _binaryValue; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public JavaPropsParser(ObjectReadContext readCtxt, IOContext ioCtxt, int parserFeatures, JavaPropsSchema schema, Object inputSource, Map sourceMap) { super(readCtxt, ioCtxt, parserFeatures); _inputSource = inputSource; _sourceContent = sourceMap; _schema = schema; } @Override public Version version() { return PackageVersion.VERSION; } @Override public JavaPropsSchema getSchema() { return _schema; } /* /********************************************************************** /* Public API overrides: input state /********************************************************************** */ // we do not take byte-based input, so base impl would be fine /* @Override public int releaseBuffered(OutputStream out) { return -1; } */ // current implementation delegates to JDK `Properties, so we don't ever // see the input so: /* @Override public int releaseBuffered(Writer w) { return -1; } */ @Override protected void _closeInput() throws IOException { _streamReadContext = null; } @Override protected void _releaseBuffers() { } @Override public Object streamReadInputSource() { return _inputSource; } /* /********************************************************************** /* Public API overrides: capability introspection methods /********************************************************************** */ @Override public boolean canReadObjectId() { return false; } @Override public boolean canReadTypeId() { return false; } // @since 3.2 @Override public boolean willInternPropertyNames() { return false; } @Override public JacksonFeatureSet streamReadCapabilities() { return STREAM_READ_CAPABILITIES; } /* /********************************************************************** /* Public API, structural /********************************************************************** */ @Override public TokenStreamContext streamReadContext() { return _streamReadContext; } @Override public void assignCurrentValue(Object v) { _streamReadContext.assignCurrentValue(v); } @Override public Object currentValue() { return _streamReadContext.currentValue(); } /* /********************************************************************** /* Main parsing API, textual values /********************************************************************** */ @Override public String currentName() { if (_streamReadContext == null) { return null; } if (_currToken == JsonToken.START_OBJECT || _currToken == JsonToken.START_ARRAY) { JPropReadContext parent = _streamReadContext.getParent(); if (parent != null) { return parent.currentName(); } } return _streamReadContext.currentName(); } @Override public JsonToken nextToken() throws JacksonException { _binaryValue = null; if (_streamReadContext == null) { if (_closed) { return null; } JPropNode root = JPropNodeBuilder.build(_sourceContent, _schema); _streamReadContext = JPropReadContext.create(root); // 30-Mar-2016, tatu: For debugging can be useful: /* System.err.println("SOURCE: ("+root.getClass().getName()+") <<\n"+new ObjectMapper().writerWithDefaultPrettyPrinter() .writeValueAsString(root.asRaw())); System.err.println("\n>>"); */ } JsonToken t; while ((t = _streamReadContext.nextToken()) == null) { _streamReadContext = _streamReadContext.nextContext(); if (_streamReadContext == null) { // end of content return _updateTokenToNull(); } streamReadConstraints().validateNestingDepth(_streamReadContext.getNestingDepth()); } // [dataformats-text#636]: validate name/string value lengths if (t == JsonToken.PROPERTY_NAME) { final String name = _streamReadContext.currentName(); if (name != null) { _streamReadConstraints.validateNameLength(name.length()); } } else if (t == JsonToken.VALUE_STRING) { final String text = _streamReadContext.getCurrentText(); if (text != null) { _streamReadConstraints.validateStringLength(text.length()); } } return _updateToken(t); } @Override public String getString() throws JacksonException { JsonToken t = _currToken; if (t == JsonToken.VALUE_STRING) { return _streamReadContext.getCurrentText(); } if (t == JsonToken.PROPERTY_NAME) { return _streamReadContext.currentName(); } // shouldn't have non-String scalar values so: return (t == null) ? null : t.asString(); } @Override public boolean hasStringCharacters() { return false; } @Override public char[] getStringCharacters() throws JacksonException { String text = getString(); return (text == null) ? null : text.toCharArray(); } @Override public int getStringLength() throws JacksonException { String text = getString(); return (text == null) ? 0 : text.length(); } @Override public int getStringOffset() throws JacksonException { return 0; } @Override public int getString(Writer writer) throws JacksonException { String str = getString(); if (str == null) { return 0; } try { writer.write(str); } catch (IOException e) { throw _wrapIOFailure(e); } return str.length(); } @SuppressWarnings("resource") @Override public byte[] getBinaryValue(Base64Variant variant) throws JacksonException { if (_binaryValue == null) { if (_currToken != JsonToken.VALUE_STRING) { _reportError("Current token ("+_currToken+") not VALUE_STRING, cannot access as binary"); } ByteArrayBuilder builder = _getByteArrayBuilder(); _decodeBase64(getString(), builder, variant); _binaryValue = builder.toByteArray(); } return _binaryValue; } public ByteArrayBuilder _getByteArrayBuilder() { if (_byteArrayBuilder == null) { _byteArrayBuilder = new ByteArrayBuilder(); } else { _byteArrayBuilder.reset(); } return _byteArrayBuilder; } /* /********************************************************************** /* Other accessor overrides /********************************************************************** */ @Override public Object getEmbeddedObject() throws JacksonException { return null; } @Override public TokenStreamLocation currentTokenLocation() { return TokenStreamLocation.NA; } @Override public TokenStreamLocation currentLocation() { return TokenStreamLocation.NA; } /* /********************************************************************** /* Main parsing API, textual values /********************************************************************** */ @Override public Number getNumberValue() throws JacksonException { return _noNumbers(); } @Override public NumberType getNumberType() throws JacksonException { // 01-Jun-2025, tatu: As per [core#1434] 3.x should just return null // for non-number tokens return null; } @Override public int getIntValue() throws JacksonException { return _noNumbers(); } @Override public long getLongValue() throws JacksonException { return _noNumbers(); } @Override public BigInteger getBigIntegerValue() throws JacksonException { return _noNumbers(); } @Override public float getFloatValue() throws JacksonException { return _noNumbers(); } @Override public double getDoubleValue() throws JacksonException { return _noNumbers(); } @Override public BigDecimal getDecimalValue() throws JacksonException { return _noNumbers(); } @Override public boolean isNaN() { return false; } /* /********************************************************************** /* Internal helper methods /********************************************************************** */ protected T _noNumbers() throws StreamReadException { _reportError("Current token ("+_currToken+") not numeric, cannot use numeric value accessors"); return null; } @Override protected void _handleEOF() throws StreamReadException { if ((_streamReadContext != null) && !_streamReadContext.inRoot()) { _reportInvalidEOF(": expected close marker for "+_streamReadContext.typeDesc(), null); } } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsSchema.java ================================================ package tools.jackson.dataformat.javaprop; import tools.jackson.core.FormatSchema; import tools.jackson.dataformat.javaprop.util.JPropPathSplitter; import tools.jackson.dataformat.javaprop.util.Markers; /** * Simple {@link FormatSchema} sub-type that defines details of things like: *
      *
    • How are "flat" property names mapped to hierarchic POJO types, using * separator-based naming convention. *
    • *
    • What indentation (if any) is used before key values, and between key/value *
    • *
    • If and how are Array values inferred from property names *
    • *
    */ public class JavaPropsSchema implements FormatSchema, java.io.Serializable { private static final long serialVersionUID = 3L; protected final static Markers DEFAULT_INDEX_MARKER = Markers.create("[", "]"); protected final static JavaPropsSchema EMPTY = new JavaPropsSchema(); /** * Since splitter instances are slightly costly to build in some cases, * we will lazily instantiate and cache them. */ protected transient JPropPathSplitter _splitter; /* /********************************************************************** /* Simple numeric properties /********************************************************************** */ /** * Specifies index number used when writing the first array entry (which * in Java has index of 0). After this initial value, additional elements * will have consecutive values, incremented by 1. * Note that this setting has no effect on reading: input indexes are only * used for sorting values, and their exact values have no meaning. *

    * Default value is 1. */ protected int _firstArrayOffset = 1; /* /********************************************************************** /* Formatting constants for input and output /********************************************************************** */ /** * Default path separator to use for hierarchic paths, if any; empty * String may be used to indicate that no hierarchy should be inferred * using a simple separator (although index markers may still be used, * if defined). */ protected String _pathSeparator = "."; /** * Default escape character to use for single character path separators * , enabling the pathSeparator to be included in a segment. * Note that this is only used if the path separator is a single character. * * The default value is NULL ('\0') which effectively disables escape processing. * * The escape character is only used for escaping either the pathSeparator character * or a sequence of escape characters immediately prior to the pathSeparator. * i.e., if the pathSeparator is "." and the escape char is '#' then "a#.b" * produces a segment called "a.b", but "a##.b" produces a segment called "a#" * with a child called "b" and "a###.b" produces a segment called "a#.b". * Finally, "a#b" produces a segment called "a#b" - the escape processing is only used * immediately prior to the path separator. * * Any escape character may be used. * Backslash ('\\') is the most obvious candidate but be aware that the JDK Properties * loader has its own rules for escape processing (documented in the Javadoc for * Properties.load * ) that will remove ALL duplicated backslash characters (and also carry out * other escape handling) before the JavaPropsMapper gets to see them. * * @since 2.14 */ protected char _pathSeparatorEscapeChar = '\0'; /** * Default start marker for index access, if any; empty String may be used * to indicate no marker-based index detection should be made. *

    * Default value of "[" is usually combined with end marker of "]" to allow * C/Java-style bracket notation, like "settings.path[1]". */ protected Markers _indexMarker = DEFAULT_INDEX_MARKER; /* /********************************************************************** /* Formatting constants for input(-only) /********************************************************************** */ /** * Whether 'simple' index-notation is supported for path segments or not: * simple meaning that if a path segment is a textual representation of * a non-negative integer value with length of 9 or less (that is, up to * but no including one billion), it will be considered index, not property * name. *

    * Note that this settings does NOT control whether "start/end marker" indicated * indexes are enabled or not; those depend on {@link #_indexMarker}. *

    * Default value is true, "plain" index segments are * supported. */ protected boolean _parseSimpleIndexes = true; /* /********************************************************************** /* Formatting constants for output(-only) /********************************************************************** */ /** * Whether array-element paths are written using start/end markers * (see {@link #_indexMarker} or * "simple" index number: if set to true AND markers * are specified as non-empty Strings, will use sequence of *

         *   startMarker index endMarker
         *
    * to include index in path; otherwise will simply use textual representation * of the index number as path segment, prefixed by path separator as necessary. */ protected boolean _writeIndexUsingMarkers; /** * String prepended before key value, as possible indentation */ protected String _lineIndentation = ""; /** * String added between key and value; needs to include the "equals character" * (either '=' or ':', both allowed by Java Properties specification), may * also include white before and/or after "equals character". * Default value is a single '=' character with no white spaces around */ protected String _keyValueSeparator = "="; /** * String added after value, including at least one linefeed. * Default value is the 'Unix linefeed'. */ protected String _lineEnding = "\n"; /** * Optional header to prepend before any other output: typically a * comment section or so. Note that contents here are * NOT modified in any way, meaning that any comment indicators * (leading '#' or '!') and linefeeds MUST be specified by caller. */ protected String _header = ""; /** * Optional prefix to strip and append to key names. * Useful when subset of properties need to be processed. */ protected String _prefix; /* /********************************************************************** /* Construction, factories, mutant factories /********************************************************************** */ public JavaPropsSchema() { } public JavaPropsSchema(JavaPropsSchema base) { _firstArrayOffset = base._firstArrayOffset; _pathSeparator = base._pathSeparator; _pathSeparatorEscapeChar = base._pathSeparatorEscapeChar; _indexMarker = base._indexMarker; _parseSimpleIndexes = base._parseSimpleIndexes; _writeIndexUsingMarkers = base._writeIndexUsingMarkers; _lineIndentation = base._lineIndentation; _keyValueSeparator = base._keyValueSeparator; _lineEnding = base._lineEnding; _header = base._header; _prefix = base._prefix; } /** * Accessor for getting a {@link JPropPathSplitter} instance that does * splitting according to the settings of this instance. *

    * Note that instance is constructed lazily as needed, but reused afterwards * for this instance (and for these specific settings). */ public JPropPathSplitter pathSplitter() { JPropPathSplitter splitter = _splitter; if (splitter == null) { _splitter = splitter = JPropPathSplitter.create(this); } return splitter; } public JavaPropsSchema withFirstArrayOffset(int v) { if (v == _firstArrayOffset) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._firstArrayOffset = v; return s; } /** * Mutant factory method for constructing a new instance with * specified path separator; default being comma ("."). * Note that setting separator to `null` or empty String will * basically disable handling of nesting, similar to * calling {@link #withoutPathSeparator}. */ public JavaPropsSchema withPathSeparator(String v) { if (v == null) { v = ""; } if (_equals(v, _pathSeparator)) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._pathSeparator = v; return s; } /** * Mutant factory method for constructing a new instance with * a different escape character to use for single character path separators * , enabling the pathSeparator to be included in a segment. * Note that this is only used if the path separator is a single character. * * The default value is NULL ('\0') which effectively disables escape processing. * * The escape character is only used for escaping either the pathSeparator character * or a sequence of escape characters immediately prior to the pathSeparator. * i.e., if the pathSeparator is "." and the escape char is '#' then "a#.b" * produces a segment called "a.b", but "a##.b" produces a segment called "a#" * with a child called "b" and "a###.b" produces a segment called "a#.b". * Finally, "a#b" produces a segment called "a#b" - the escape processing is only used * immediately prior to the path separator. * * Any escape character may be used. * Backslash ('\\') is the most obvious candidate but be aware that the JDK Properties * loader has its own rules for escape processing (documented in the Javadoc for * Properties.load * ) that will remove ALL duplicated backslash characters (and also carry out * other escape handling) before the JavaPropsMapper gets to see them. * * @since 2.14 */ public JavaPropsSchema withPathSeparatorEscapeChar(char v) { if (v == _pathSeparatorEscapeChar) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._pathSeparatorEscapeChar = v; return s; } /** * Mutant factory method for constructing a new instance that * specifies that no "path splitting" is to be done: this is * similar to default behavior of {@link java.util.Properties} * in which keys are full Strings and there is no nesting of values. */ public JavaPropsSchema withoutPathSeparator() { if ("".equals(_pathSeparator)) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._pathSeparator = ""; return s; } public JavaPropsSchema withIndexMarker(Markers v) { if (_equals(v, _indexMarker)) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._indexMarker = v; return s; } public JavaPropsSchema withoutIndexMarker() { if (_indexMarker == null) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._indexMarker = null; return s; } public JavaPropsSchema withParseSimpleIndexes(boolean v) { if (v == _parseSimpleIndexes) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._parseSimpleIndexes = v; return s; } public JavaPropsSchema withWriteIndexUsingMarkers(boolean v) { if (v == _writeIndexUsingMarkers) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._writeIndexUsingMarkers = v; return s; } public JavaPropsSchema withLineIndentation(String v) { if (_equals(v, _lineIndentation)) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._lineIndentation = v; return s; } public JavaPropsSchema withoutLineIndentation() { return withLineIndentation(""); } public JavaPropsSchema withKeyValueSeparator(String v) { if (_equals(v, _keyValueSeparator)) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._keyValueSeparator = v; return s; } public JavaPropsSchema withLineEnding(String v) { if (_equals(v, _lineEnding)) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._lineEnding = v; return s; } /** * Mutant factory for constructing schema instance where specified * prefix is prepended before logical path when generator writes output * and removed by parser before binding back as properties. */ public JavaPropsSchema withPrefix(String v) { if (_equals(v, _prefix)) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._prefix = v; return s; } /** * Mutant factory for constructing schema instance where specified * header section (piece of text written out right before actual * properties entries) will be used. * Note that caller must specify any and all linefeeds to use: generator * will NOT modify header String contents in any way, and will not append * a linefeed after contents (if any). */ public JavaPropsSchema withHeader(String v) { if (_equals(v, _header)) { return this; } JavaPropsSchema s = new JavaPropsSchema(this); s._header = v; return s; } /** * Convenience method, functionally equivalent to: *

         *   withHeader("")
         *
    * used to ensure that no header is prepended before actual property values * are output. */ public JavaPropsSchema withoutHeader() { return withHeader(""); } /* /********************************************************************** /* Public API, FormatSchema /********************************************************************** */ @Override public String getSchemaType() { return "JavaProps"; } public static JavaPropsSchema emptySchema() { return EMPTY; } /* /********************************************************************** /* Public API, extended, properties /********************************************************************** */ public int firstArrayOffset() { return _firstArrayOffset; } public String header() { return _header; } public Markers indexMarker() { return _indexMarker; } public String lineEnding() { return _lineEnding; } public String lineIndentation() { return _lineIndentation; } public String keyValueSeparator() { return _keyValueSeparator; } public boolean parseSimpleIndexes() { return _parseSimpleIndexes; } public String pathSeparator() { return _pathSeparator; } public char pathSeparatorEscapeChar() { return _pathSeparatorEscapeChar; } public String prefix() { return _prefix; } public boolean writeIndexUsingMarkers() { return _writeIndexUsingMarkers && (_indexMarker != null); } private boolean _equals(V a, V b) { if (a == null) { return (b == null); } return (b != null) && a.equals(b); } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/PackageVersion.java.in ================================================ package @package@; import tools.jackson.core.Version; import tools.jackson.core.Versioned; import tools.jackson.core.util.VersionUtil; /** * Automatically generated from PackageVersion.java.in during * packageVersion-generate execution of maven-replacer-plugin in * pom.xml. */ public final class PackageVersion implements Versioned { public final static Version VERSION = VersionUtil.parseVersion( "@projectversion@", "@projectgroupid@", "@projectartifactid@"); @Override public Version version() { return VERSION; } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/impl/PropertiesBackedGenerator.java ================================================ package tools.jackson.dataformat.javaprop.impl; import java.util.Map; import java.util.Properties; import tools.jackson.core.*; import tools.jackson.core.io.IOContext; import tools.jackson.dataformat.javaprop.JavaPropsGenerator; import tools.jackson.dataformat.javaprop.JavaPropsSchema; public class PropertiesBackedGenerator extends JavaPropsGenerator { /* /********************************************************************** /* Configuration /********************************************************************** */ /** * Underlying {@link Properties} that we will update with logical * properties written out. */ protected final Map _content; /* /********************************************************************** /* Life-cycle /********************************************************************** */ @SuppressWarnings("unchecked") public PropertiesBackedGenerator(ObjectWriteContext writeCtxt, IOContext ctxt, int stdFeatures, JavaPropsSchema schema, Map content) { super(writeCtxt, ctxt, stdFeatures, schema); _content = (Map) content; // Since this is not physically encoding properties, should NOT try // to attempt writing headers. Easy way is to just fake we already did it _headerChecked = true; } /* /********************************************************************** /* Overridden methods, configuration /********************************************************************** */ @Override public Object streamWriteOutputTarget() { return _content; } @Override public int streamWriteOutputBuffered() { return -1; } /* /********************************************************************** /* Overridden methods: low-level I/O /********************************************************************** */ @Override public void close() { } @Override public void flush() { } /* /********************************************************************** /* Implementations for methods from base class /********************************************************************** */ @Override protected void _closeInput() { } @Override protected void _releaseBuffers() { } @Override protected void _appendPropertyName(StringBuilder path, String name) { // No escaping should be applied path.append(name); } /* /********************************************************************** /* Internal methods; escaping writes /********************************************************************** */ @Override protected void _writeEscapedEntry(char[] text, int offset, int len) throws JacksonException { _writeEscapedEntry(new String(text, offset, len)); } @Override protected void _writeEscapedEntry(String value) throws JacksonException { _content.put(_basePath.toString(), value); } @Override protected void _writeUnescapedEntry(String value) throws JacksonException { _content.put(_basePath.toString(), value); } /* /********************************************************************** /* Internal methods; raw writes /********************************************************************** */ /* 02-Jun-2016, tatu: no way to support raw writes, so two things we * could do instead: throw exception, or just quietly ignore. Typically * I favor throwing exception, but here it's probably better to simply * ignore. */ @Override protected void _writeRaw(char c) throws JacksonException { } @Override protected void _writeRaw(String text) throws JacksonException { } @Override protected void _writeRaw(StringBuilder text) throws JacksonException { } @Override protected void _writeRaw(char[] text, int offset, int len) throws JacksonException { } protected void _writeRawLong(String text) throws JacksonException { } protected void _writeRawLong(StringBuilder text) throws JacksonException { } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/impl/WriterBackedGenerator.java ================================================ package tools.jackson.dataformat.javaprop.impl; import java.io.IOException; import java.io.Writer; import tools.jackson.core.*; import tools.jackson.core.io.IOContext; import tools.jackson.dataformat.javaprop.JavaPropsGenerator; import tools.jackson.dataformat.javaprop.JavaPropsSchema; import tools.jackson.dataformat.javaprop.io.JPropEscapes; public class WriterBackedGenerator extends JavaPropsGenerator { /* /********************************************************************** /* Configuration /********************************************************************** */ /** * Underlying {@link Writer} used for output. */ protected final Writer _out; /* /********************************************************************** /* Output buffering /********************************************************************** */ /** * Intermediate buffer in which contents are buffered before * being written using {@link #_out}. */ protected char[] _outputBuffer; /** * Pointer to the next available location in {@link #_outputBuffer} */ protected int _outputTail = 0; /** * Offset to index after the last valid index in {@link #_outputBuffer}. * Typically same as length of the buffer. */ protected final int _outputEnd; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public WriterBackedGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, int stdFeatures, JavaPropsSchema schema, Writer out) { super(writeCtxt, ioCtxt, stdFeatures, schema); _out = out; _outputBuffer = ioCtxt.allocConcatBuffer(); _outputEnd = _outputBuffer.length; } /* /********************************************************************** /* Overridden methods, configuration /********************************************************************** */ @Override public Object streamWriteOutputTarget() { return _out; } @Override public int streamWriteOutputBuffered() { return _outputTail; } /* /********************************************************************** /* Overridden methods: low-level I/O /********************************************************************** */ @Override public void close() { if (!isClosed()) { try { _flushBuffer(); } finally { _outputTail = 0; // just to ensure we don't think there's anything buffered super.close(); } } } @Override protected void _closeInput() throws IOException { if (_out != null) { if (_ioContext.isResourceManaged() || isEnabled(StreamWriteFeature.AUTO_CLOSE_TARGET)) { _out.close(); } else if (isEnabled(StreamWriteFeature.FLUSH_PASSED_TO_STREAM)) { // If we can't close it, we should at least flush _out.flush(); } } } @Override public void flush() { _flushBuffer(); if (_out != null) { if (isEnabled(StreamWriteFeature.FLUSH_PASSED_TO_STREAM)) { try { _out.flush(); } catch (IOException e) { throw _wrapIOFailure(e); } } } } /* /********************************************************************** /* Implementations for methods from base class /********************************************************************** */ @Override protected void _releaseBuffers() { char[] buf = _outputBuffer; if (buf != null) { _outputBuffer = null; _ioContext.releaseConcatBuffer(buf); } } protected void _flushBuffer() throws JacksonException { if (_outputTail > 0) { try { _out.write(_outputBuffer, 0, _outputTail); } catch (IOException e) { throw _wrapIOFailure(e); } _outputTail = 0; } } @Override protected void _appendPropertyName(StringBuilder path, String name) { // Note that escaping needs to be applied now... JPropEscapes.appendKey(_basePath, name); // NOTE: we do NOT yet write the key; wait until we have value; just append to path } /* /********************************************************************** /* Internal methods; escaping writes /********************************************************************** */ @Override protected void _writeEscapedEntry(String value) throws JacksonException { // note: key has been already escaped so: _writeRaw(_basePath); _writeRaw(_schema.keyValueSeparator()); _writeEscaped(value); _writeLinefeed(); } @Override protected void _writeEscapedEntry(char[] text, int offset, int len) throws JacksonException { // note: key has been already escaped so: _writeRaw(_basePath); _writeRaw(_schema.keyValueSeparator()); _writeEscaped(text, offset, len); _writeLinefeed(); } @Override protected void _writeUnescapedEntry(String value) throws JacksonException { // note: key has been already escaped so: _writeRaw(_basePath); _writeRaw(_schema.keyValueSeparator()); _writeRaw(value); _writeLinefeed(); } protected void _writeEscaped(String value) throws JacksonException { StringBuilder sb = JPropEscapes.appendValue(value); if (sb == null) { _writeRaw(value); } else { _writeRaw(sb); } } protected void _writeEscaped(char[] text, int offset, int len) throws JacksonException { _writeEscaped(new String(text, offset, len)); } protected void _writeLinefeed() throws JacksonException { _writeRaw(_schema.lineEnding()); } /* /********************************************************************** /* Internal methods; raw writes /********************************************************************** */ @Override protected void _writeRaw(char c) throws JacksonException { if (_outputTail >= _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = c; } @Override protected void _writeRaw(String text) throws JacksonException { // Nothing to check, can just output as is int len = text.length(); int room = _outputEnd - _outputTail; if (room == 0) { _flushBuffer(); room = _outputEnd - _outputTail; } // But would it nicely fit in? If yes, it's easy if (room >= len) { text.getChars(0, len, _outputBuffer, _outputTail); _outputTail += len; } else { _writeRawLong(text); } } @Override protected void _writeRaw(StringBuilder text) throws JacksonException { // Nothing to check, can just output as is int len = text.length(); int room = _outputEnd - _outputTail; if (room == 0) { _flushBuffer(); room = _outputEnd - _outputTail; } // But would it nicely fit in? If yes, it's easy if (room >= len) { text.getChars(0, len, _outputBuffer, _outputTail); _outputTail += len; } else { _writeRawLong(text); } } @Override protected void _writeRaw(char[] text, int offset, int len) throws JacksonException { // Only worth buffering if it's a short write? if (len < SHORT_WRITE) { int room = _outputEnd - _outputTail; if (len > room) { _flushBuffer(); } System.arraycopy(text, offset, _outputBuffer, _outputTail, len); _outputTail += len; return; } // Otherwise, better just pass through: _flushBuffer(); try { _out.write(text, offset, len); } catch (IOException e) { throw _wrapIOFailure(e); } } protected void _writeRawLong(String text) throws JacksonException { int room = _outputEnd - _outputTail; text.getChars(0, room, _outputBuffer, _outputTail); _outputTail += room; _flushBuffer(); int offset = room; int len = text.length() - room; while (len > _outputEnd) { int amount = _outputEnd; text.getChars(offset, offset+amount, _outputBuffer, 0); _outputTail = amount; _flushBuffer(); offset += amount; len -= amount; } // And last piece (at most length of buffer) text.getChars(offset, offset+len, _outputBuffer, 0); _outputTail = len; } protected void _writeRawLong(StringBuilder text) throws JacksonException { int room = _outputEnd - _outputTail; text.getChars(0, room, _outputBuffer, _outputTail); _outputTail += room; _flushBuffer(); int offset = room; int len = text.length() - room; while (len > _outputEnd) { int amount = _outputEnd; text.getChars(offset, offset+amount, _outputBuffer, 0); _outputTail = amount; _flushBuffer(); offset += amount; len -= amount; } // And last piece (at most length of buffer) text.getChars(offset, offset+len, _outputBuffer, 0); _outputTail = len; } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/JPropEscapes.java ================================================ package tools.jackson.dataformat.javaprop.io; import java.util.Arrays; /** * Container class for definitions of characters to escape. */ public class JPropEscapes { private final static char[] HEX = "0123456789ABCDEF".toCharArray(); private final static int UNICODE_ESCAPE = -1; private final static int[] sValueEscapes; static { final int[] table = new int[256]; // For values, fewer escapes needed, but most control chars need them for (int i = 0; i < 32; ++i) { table[i] = UNICODE_ESCAPE; // also high-bit ones table[128+i] = UNICODE_ESCAPE; } // also, that one weird character needs escaping: table[0x7F] = UNICODE_ESCAPE; // except for "well-known" ones table['\t'] = 't'; table['\r'] = 'r'; table['\n'] = 'n'; // Beyond that, just backslash table['\\'] = '\\'; sValueEscapes = table; } private final static int[] sKeyEscapes; static { // with keys, start with value escapes, and add the rest final int[] table = Arrays.copyOf(sValueEscapes, 256); // comment line starters (could get by with just start char but whatever) table['#'] = '#'; table['!'] = '!'; // and then equals (and equivalents) that mark end of key table['='] = '='; table[':'] = ':'; // plus space chars are escapes too table[' '] = ' '; sKeyEscapes = table; } public static void appendKey(StringBuilder sb, String key) { final int end = key.length(); if (end == 0) { return; } final int[] esc = sKeyEscapes; // first quick loop for common case of no escapes int i = 0; while (true) { char c = key.charAt(i); if ((c > 0xFF) || esc[c] != 0) { break; } sb.append(c); if (++i == end) { return; } } _appendWithEscapes(sb, key, esc, i); } public static StringBuilder appendValue(String value) { final int end = value.length(); if (end == 0) { return null; // nothing to write, but "write as is" } final int[] esc = sValueEscapes; int i = 0; // little bit different here; we scan to ensure nothing to escape while (true) { char c = value.charAt(i); if ((c > 0xFF) || esc[c] != 0) { break; } if (++i == end) { return null; // write as-is } } // if not real work StringBuilder sb = new StringBuilder(end + 5 + (end>>3)); for (int j = 0; j < i; ++j) { sb.append(value.charAt(j)); } _appendWithEscapes(sb, value, esc, i); return sb; } private static void _appendWithEscapes(StringBuilder sb, String key, int[] esc, int i) { final int end = key.length(); do { char c = key.charAt(i); int type = (c > 0xFF) ? UNICODE_ESCAPE : esc[c]; if (type == 0) { sb.append(c); continue; } if (type == UNICODE_ESCAPE) { sb.append('\\'); sb.append('u'); sb.append(HEX[c >>> 12]); sb.append(HEX[(c >> 8) & 0xF]); sb.append(HEX[(c >> 4) & 0xF]); sb.append(HEX[c & 0xF]); } else { sb.append('\\'); sb.append((char) type); } } while (++i < end); } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/JPropReadContext.java ================================================ package tools.jackson.dataformat.javaprop.io; import java.util.Iterator; import java.util.Map; import tools.jackson.core.TokenStreamContext; import tools.jackson.core.JsonToken; import tools.jackson.dataformat.javaprop.util.JPropNode; /** * Helper class used to keep track of traversal over contents of * content tree expressed as {@link JPropNode}s. */ public abstract class JPropReadContext extends TokenStreamContext { /** * Parent cursor of this cursor, if any; null for root * cursors. */ protected final JPropReadContext _parent; /** * Current property name */ protected String _currentName; protected String _currentText; /** * Java-level Object that corresponds to this level of input hierarchy, * if any; used by databinding functionality, opaque for parser. */ protected java.lang.Object _currentValue; /** * We need to keep track of value nodes to construct further contexts. */ protected JPropNode _nextNode; /** * Optional "this" value for cases where path branches have * direct values; these are exposed before child values * with bogus 'name' of empty String. */ protected String _branchText; protected int _state; public JPropReadContext(int contextType, JPropReadContext p, JPropNode node) { super(contextType, -1); _parent = p; _branchText = node.getValue(); _nestingDepth = (p == null) ? 0 : p._nestingDepth + 1; } public static JPropReadContext create(JPropNode root) { if (root.isArray()) { // can this ever occur? return new ArrayContext(null, root); } return new ObjectContext(null, root); } /* /********************************************************************** /* TokenStreamContext impl /********************************************************************** */ // note: co-variant return type @Override public final JPropReadContext getParent() { return _parent; } @Override public final String currentName() { return _currentName; } public void overrideCurrentName(String name) { _currentName = name; } @Override public Object currentValue() { return _currentValue; } @Override public void assignCurrentValue(Object v) { _currentValue = v; } /* /********************************************************************** /* Extended API /********************************************************************** */ public abstract JsonToken nextToken(); /** * Method called to figure out child or parent context when change * is needed, as indicated by this context returning `null`. */ public JPropReadContext nextContext() { JPropNode n = _nextNode; if (n == null) { return _parent; } _nextNode = null; if (n.isArray()) { return new ArrayContext(this, n); } return new ObjectContext(this, n); } public String getCurrentText() { return _currentText; } /* /********************************************************************** /* Concrete implementations /********************************************************************** */ /** * Cursor used for traversing non-empty JSON Array nodes */ protected final static class ArrayContext extends JPropReadContext { final static int STATE_START = 0; // before START_ARRAY final static int STATE_BRANCH_VALUE = 1; final static int STATE_CONTENT_VALUE = 2; final static int STATE_END = 3; // after END_ARRAY protected Iterator _contents; public ArrayContext(JPropReadContext p, JPropNode arrayNode) { super(TokenStreamContext.TYPE_ARRAY, p, arrayNode); _contents = arrayNode.arrayContents(); _state = STATE_START; } @Override public JsonToken nextToken() { switch (_state) { case STATE_START: // START_ARRAY _state = (_branchText == null) ? STATE_CONTENT_VALUE : STATE_BRANCH_VALUE; return JsonToken.START_ARRAY; case STATE_BRANCH_VALUE: _state = STATE_CONTENT_VALUE; _currentText = _branchText; return JsonToken.VALUE_STRING; case STATE_CONTENT_VALUE: if (!_contents.hasNext()) { _state = STATE_END; return JsonToken.END_ARRAY; } JPropNode n = _contents.next(); if (n.isLeaf()) { _currentText = n.getValue(); return JsonToken.VALUE_STRING; } _nextNode = n; // Structured; need to indicate indirectly return null; case STATE_END: default: } return null; } } /** * Cursor used for traversing non-empty JSON Object nodes */ protected final static class ObjectContext extends JPropReadContext { final static int STATE_START = 0; // before START_OBJECT final static int STATE_BRANCH_KEY = 1; // if (and only if) we have intermediate node ("branch") value final static int STATE_BRANCH_VALUE = 2; final static int STATE_CONTENT_KEY = 3; final static int STATE_CONTENT_VALUE = 4; final static int STATE_END = 5; // after END_OBJECT /** * Iterator over child values. */ protected Iterator> _contents; public ObjectContext(JPropReadContext p, JPropNode objectNode) { super(TokenStreamContext.TYPE_OBJECT, p, objectNode); _contents = objectNode.objectContents(); _state = STATE_START; } @Override public JsonToken nextToken() { switch (_state) { case STATE_START: // START_OBJECT _state = (_branchText == null) ? STATE_CONTENT_KEY : STATE_BRANCH_KEY; return JsonToken.START_OBJECT; case STATE_BRANCH_KEY: _currentName = ""; _state = STATE_BRANCH_VALUE; return JsonToken.PROPERTY_NAME; case STATE_BRANCH_VALUE: _currentText = _branchText; _state = STATE_CONTENT_KEY; return JsonToken.VALUE_STRING; case STATE_CONTENT_KEY: if (!_contents.hasNext()) { _state = STATE_END; _nextNode = null; return JsonToken.END_OBJECT; } Map.Entry entry = _contents.next(); _currentName = entry.getKey(); _nextNode = entry.getValue(); _state = STATE_CONTENT_VALUE; return JsonToken.PROPERTY_NAME; case STATE_CONTENT_VALUE: _state = STATE_CONTENT_KEY; // Simple textual leaf? if (_nextNode.isLeaf()) { _currentText = _nextNode.getValue(); _nextNode = null; return JsonToken.VALUE_STRING; } // Structured; need to indicate indirectly return null; case STATE_END: default: } return null; } } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/JPropWriteContext.java ================================================ package tools.jackson.dataformat.javaprop.io; import tools.jackson.core.TokenStreamContext; public class JPropWriteContext extends TokenStreamContext { /** * Parent context for this context; null for root context. */ protected final JPropWriteContext _parent; /* /********************************************************************** /* Simple instance reuse slots; speed up things /* a bit (10-15%) for docs with lots of small arrays/objects /********************************************************************** */ protected JPropWriteContext _child = null; /* /********************************************************************** /* Location/state information (minus source reference) /********************************************************************** */ /** * Value that is being serialized and caused this context to be created; * typically a POJO or container type. */ protected Object _currentValue; /** * Marker used to indicate that we just received a name, and * now expect a value */ protected boolean _gotName; /** * Name of the field of which value is to be parsed; only * used for OBJECT contexts */ protected String _currentName; protected int _basePathLength; /* /********************************************************************** /* Life-cycle /********************************************************************** */ protected JPropWriteContext(int type, JPropWriteContext parent, Object currValue, int basePathLength) { super(); _type = type; _parent = parent; _nestingDepth = parent == null ? 0 : parent._nestingDepth + 1; _basePathLength = basePathLength; _index = -1; _currentValue = currValue; } private void reset(int type, Object currValue, int basePathLength) { _type = type; _basePathLength = basePathLength; _currentValue = null; _index = -1; _currentValue = currValue; _gotName = false; } // // // Factory methods public static JPropWriteContext createRootContext() { return new JPropWriteContext(TYPE_ROOT, null, null, 0); } public static JPropWriteContext createRootContext(int basePathLength) { return new JPropWriteContext(TYPE_ROOT, null, null, basePathLength); } public JPropWriteContext createChildArrayContext(Object currValue, int basePathLength) { JPropWriteContext ctxt = _child; if (ctxt == null) { _child = ctxt = new JPropWriteContext(TYPE_ARRAY, this, currValue, basePathLength); return ctxt; } ctxt.reset(TYPE_ARRAY, currValue, basePathLength); return ctxt; } public JPropWriteContext createChildObjectContext(Object currValue, int basePathLength) { JPropWriteContext ctxt = _child; if (ctxt == null) { _child = ctxt = new JPropWriteContext(TYPE_OBJECT, this, currValue, basePathLength); return ctxt; } ctxt.reset(TYPE_OBJECT, currValue, basePathLength); return ctxt; } /* /********************************************************************** /* State changes /********************************************************************** */ public boolean writeName(String name) { if (_gotName) { return false; } _gotName = true; _currentName = name; return true; } public boolean writeValue() { // Most likely, object: if (_type == TYPE_OBJECT) { if (!_gotName) { return false; } _gotName = false; } // Array fine, and must allow root context for Object values too so... ++_index; return true; } public void truncatePath(StringBuilder sb) { int len = sb.length(); if (len != _basePathLength) { if (len < _basePathLength) { // sanity check throw new IllegalStateException(String.format ("Internal error: base path length %d, buffered %d, trying to truncate", _basePathLength, len)); } sb.setLength(_basePathLength); } } /* /********************************************************************** /* Simple accessors, mutators /********************************************************************** */ @Override public final JPropWriteContext getParent() { return _parent; } @Override public String currentName() { return _currentName; } @Override public Object currentValue() { return _currentValue; } @Override public void assignCurrentValue(Object v) { _currentValue = v; } public StringBuilder appendDesc(StringBuilder sb) { if (_parent != null) { sb = _parent.appendDesc(sb); sb.append('/'); } switch (_type) { case TYPE_OBJECT: if (_currentName != null) { sb.append(_currentName); } break; case TYPE_ARRAY: sb.append(getCurrentIndex()); break; case TYPE_ROOT: } return sb; } // // // Overridden standard methods /** * Overridden to provide developer JsonPointer representation * of the context. */ @Override public final String toString() { return appendDesc(new StringBuilder(64)).toString(); } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/Latin1Reader.java ================================================ package tools.jackson.dataformat.javaprop.io; import java.io.*; import tools.jackson.core.io.IOContext; /** * Optimized Reader that reads ISO-8859-1 encoded content from an input stream. * The reason for custom implementation is that this allows recycling of * underlying read buffer, which is important for small content. */ public final class Latin1Reader extends Reader { /** * IO context to use for returning input buffer, iff * buffer is to be recycled when input ends. */ private final IOContext _ioContext; private InputStream _inputSource; private byte[] _inputBuffer; /** * Pointer to the next available byte (if any), iff less than * mByteBufferEnd */ private int _inputPtr; /** * Pointed to the end marker, that is, position one after the last * valid available byte. */ private int _inputEnd; /** * Total read character count; used for error reporting purposes */ private int _charCount = 0; /* /********************************************************************** /* Life-cycle /********************************************************************** */ /* public Latin1Reader(IOContext ctxt, InputStream in, byte[] buf, int ptr, int len) { super((in == null) ? buf : in); _ioContext = ctxt; _inputSource = in; _inputBuffer = buf; _inputPtr = ptr; _inputEnd = ptr+len; } */ public Latin1Reader(byte[] buf, int ptr, int len) { super(new Object()); _ioContext = null; _inputSource = null; _inputBuffer = buf; _inputPtr = ptr; _inputEnd = ptr+len; } public Latin1Reader(IOContext ctxt, InputStream in) { super(in); _ioContext = ctxt; _inputSource = in; _inputBuffer = ctxt.allocReadIOBuffer(); _inputPtr = 0; _inputEnd = 0; } /* /********************************************************************** /* Extended API /********************************************************************** */ public int getReadCharsCount() { return _charCount; } /* /********************************************************************** /* Reader API /********************************************************************** */ @Override public void close() throws IOException { InputStream in = _inputSource; if (in != null) { _inputSource = null; freeBuffers(); in.close(); } } private char[] _tmpBuffer = null; // Although this method is implemented by the base class, AND it should // never be called by parser code, let's still implement it bit more // efficiently just in case @Override public int read() throws IOException { if (_tmpBuffer == null) { _tmpBuffer = new char[1]; } if (read(_tmpBuffer, 0, 1) < 1) { return -1; } return _tmpBuffer[0]; } @Override public int read(char[] cbuf) throws IOException { return read(cbuf, 0, cbuf.length); } @Override public int read(char[] cbuf, int start, int len) throws IOException { if (_inputBuffer == null) { return -1; } if (len < 1) { return len; } // To prevent unnecessary blocking (esp. with network streams), // we'll only require decoding of a single char int left = (_inputEnd - _inputPtr); if (left < 1) { if (!loadMore()) { // (legal) EOF? return -1; } left = (_inputEnd - _inputPtr); } if (left > len) { left = len; } final byte[] inBuf = _inputBuffer; int inPtr = _inputPtr; int outPtr = start; final int inEnd = inPtr + left; do { cbuf[outPtr++] = (char) inBuf[inPtr++]; } while (inPtr < inEnd); _inputPtr = inPtr; return left; } /* /********************************************************************** /* Internal methods /********************************************************************** */ /** * @return True, if enough bytes were read to allow decoding of at least * one full character; false if EOF was encountered instead. */ private boolean loadMore() throws IOException { _charCount += _inputEnd; _inputPtr = 0; _inputEnd = 0; if (_inputSource == null) { freeBuffers(); return false; } int count = _inputSource.read(_inputBuffer, 0, _inputBuffer.length); if (count < 1) { freeBuffers(); if (count < 0) { // -1 return false; } // 0 count is no good; let's err out throw new IOException("Strange I/O stream, returned 0 bytes on read"); } _inputEnd = count; return true; } /** * This method should be called along with (or instead of) normal * close. After calling this method, no further reads should be tried. * Method will try to recycle read buffers (if any). */ private final void freeBuffers() { if (_ioContext != null) { byte[] buf = _inputBuffer; if (buf != null) { _inputBuffer = null; _ioContext.releaseReadIOBuffer(buf); } } } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/package-info.java ================================================ /** Internal helper classes used for handling of input and out contexts and efficient reading/writing of Java Properties encoded content. */ package tools.jackson.dataformat.javaprop.io; ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/package-info.java ================================================ /** Basic API types to use with this module:
    • {@link tools.jackson.dataformat.javaprop.JavaPropsFactory} is the {@link tools.jackson.core.JsonFactory} implementation used to create Java Properties parsers and generators
    • {@link tools.jackson.dataformat.javaprop.JavaPropsGenerator} is the matching {@link tools.jackson.core.JsonGenerator} implementation to use
    • {@link tools.jackson.dataformat.javaprop.JavaPropsParser} is the matching {@link tools.jackson.core.JsonParser} implementation to use
    • {@link tools.jackson.dataformat.javaprop.JavaPropsMapper} is a convenience sub-class of {@link tools.jackson.databind.ObjectMapper} that is both configured to use {@link tools.jackson.dataformat.javaprop.JavaPropsFactory}, and adds additional methods for using alternate content sources and targets for improved interoperability with {@link java.util.Properties}, System Properties, and env properties
    • {@link tools.jackson.dataformat.javaprop.JavaPropsSchema} is the {@link tools.jackson.core.FormatSchema} implementation to use with Java Properties and defines details of how flat Java Properties keys are mapped to structured names of logical properties, POJOs, as well as other variations within possible Properties file notation (like indentation, key/value separator, linefeed to use)
    */ package tools.jackson.dataformat.javaprop; ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/JPropNode.java ================================================ package tools.jackson.dataformat.javaprop.util; import java.util.*; /** * Value in an ordered tree presentation built from an arbitrarily ordered * set of flat input values. Since either index- OR name-based access is to * be supported (similar to, say, Javascript objects) -- but only one, not both -- * storage is bit of a hybrid. In addition, branches may also have values. * So, code does bit coercion as necessary, trying to maintain something * consistent and usable at all times, without failure. */ public class JPropNode { /** * Value for the path, for leaf nodes; usually null for branches. * If both children and value exists, typically need to construct * bogus value with empty String key. */ protected String _value; /** * Child entries with integral number index, if any. */ protected TreeMap _byIndex; /** * Child entries accessed with String property name, if any. */ protected Map _byName; protected boolean _hasContents = false; public JPropNode setValue(String v) { // should we care about overwrite? _value = v; return this; } public JPropNode addByIndex(int index) { // if we already have named entries, coerce into name if (_byName != null) { return addByName(String.valueOf(index)); } _hasContents = true; if (_byIndex == null) { _byIndex = new TreeMap<>(); } Integer key = Integer.valueOf(index); JPropNode n = _byIndex.get(key); if (n == null) { n = new JPropNode(); _byIndex.put(key, n); } return n; } public JPropNode addByName(String name) { // if former index entries, first coerce them _hasContents = true; if (_byIndex != null) { if (_byName == null) { _byName = new LinkedHashMap<>(); } for (Map.Entry entry : _byIndex.entrySet()) { _byName.put(entry.getKey().toString(), entry.getValue()); } _byIndex = null; } if (_byName == null) { _byName = new LinkedHashMap<>(); } else { JPropNode old = _byName.get(name); if (old != null) { return old; } } JPropNode result = new JPropNode(); _byName.put(name, result); return result; } public boolean isLeaf() { return !_hasContents && (_value != null); } public boolean isArray() { return _byIndex != null; } public String getValue() { return _value; } public Iterator arrayContents() { // should never be called if `_byIndex` is null, hence no checks return _byIndex.values().iterator(); } /** * Child entries accessed with String property name, if any. */ public Iterator> objectContents() { if (_byName == null) { // only value, most likely return Collections.emptyIterator(); } return _byName.entrySet().iterator(); } /** * Helper method, mostly for debugging/testing, to convert structure contained * into simple List/Map/String equivalent. */ public Object asRaw() { if (isArray()) { List result = new ArrayList<>(); if (_value != null) { result.add(_value); } for (JPropNode v : _byIndex.values()) { result.add(v.asRaw()); } return result; } if (_byName != null) { Map result = new LinkedHashMap<>(); if (_value != null) { result.put("", _value); } for (Map.Entry entry : _byName.entrySet()) { result.put(entry.getKey(), entry.getValue().asRaw()); } return result; } return _value; } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/JPropNodeBuilder.java ================================================ package tools.jackson.dataformat.javaprop.util; import java.util.Map; import tools.jackson.dataformat.javaprop.JavaPropsSchema; public class JPropNodeBuilder { public static JPropNode build(Map content, JavaPropsSchema schema) { JPropNode root = new JPropNode(); JPropPathSplitter splitter = schema.pathSplitter(); for (Map.Entry entry : content.entrySet()) { // these should be Strings; but due to possible "compromised" properties, // let's play safe, coerce if and as necessary String key = String.valueOf(entry.getKey()); String value = String.valueOf(entry.getValue()); splitter.splitAndAdd(root, key, value); } return root; } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/JPropPathSplitter.java ================================================ package tools.jackson.dataformat.javaprop.util; import java.util.regex.Matcher; import java.util.regex.Pattern; import tools.jackson.dataformat.javaprop.JavaPropsSchema; /** * Helper class used for splitting a flattened property key into * nested/structured path that can be used to traverse and/or define * hierarchic structure. */ public abstract class JPropPathSplitter { protected final boolean _useSimpleIndex; protected JPropPathSplitter(boolean useSimpleIndex) { _useSimpleIndex = useSimpleIndex; } public static JPropPathSplitter create(JavaPropsSchema schema) { // will never be null String sep = schema.pathSeparator(); final Markers indexMarker = schema.indexMarker(); // First: index marker in use? if (indexMarker == null) { // nope, only path separator, if anything // and if no separator, can use bogus "splitter": return pathOnlySplitter(schema); } // Yes, got index marker to use. But separator? if (sep.isEmpty()) { return new IndexOnlySplitter(schema.parseSimpleIndexes(), indexMarker); } return new FullSplitter(sep, schema.parseSimpleIndexes(), indexMarker, pathOnlySplitter(schema), schema.prefix()); } private static JPropPathSplitter pathOnlySplitter(JavaPropsSchema schema) { String sep = schema.pathSeparator(); if (sep.isEmpty()) { return NonSplitting.instance; } // otherwise it's still quite simple if (sep.length() == 1) { return new CharPathOnlySplitter(sep.charAt(0), schema.pathSeparatorEscapeChar(), schema.parseSimpleIndexes()); } return new StringPathOnlySplitter(sep, schema.parseSimpleIndexes()); } /** * Main access method for splitting key into one or more segments and using * segmentation to add the String value as a node in its proper location. * * @return Newly added node */ public abstract JPropNode splitAndAdd(JPropNode parent, String key, String value); /* /********************************************************************** /* Helper methods for implementations /********************************************************************** */ protected JPropNode _addSegment(JPropNode parent, String segment) { if (_useSimpleIndex) { int ix = _asInt(segment); if (ix >= 0) { return parent.addByIndex(ix); } } return parent.addByName(segment); } protected JPropNode _lastSegment(JPropNode parent, String path, int start, int end) { if (start < end) { if (start > 0) { path = path.substring(start); } parent = _addSegment(parent, path); } return parent; } protected int _asInt(String segment) { final int len = segment.length(); // do not allow ridiculously long numbers as indexes if ((len == 0) || (len > 9)) { return -1; } char c = segment.charAt(0); if ((c > '9') || (c < '0')) { return -1; } for (int i = 0; i < len; ++i) { c = segment.charAt(i); if ((c > '9') || (c < '0')) { return -1; } } return Integer.parseInt(segment); } /* /********************************************************************** /* Implementations /********************************************************************** */ /** * "No-op" implementation that does no splitting and simply adds entries * as is. */ public static class NonSplitting extends JPropPathSplitter { public final static NonSplitting instance = new NonSplitting(); private NonSplitting() { super(false); } @Override public JPropNode splitAndAdd(JPropNode parent, String key, String value) { return parent.addByName(key).setValue(value); } } /** * Simple variant where we only have path separator, and optional "segment * is index iff value is integer number" */ public static class CharPathOnlySplitter extends JPropPathSplitter { protected final char _pathSeparatorChar; protected final char _pathSeparatorEscapeChar; public CharPathOnlySplitter(char sepChar, char pathSeparatorEscapeChar, boolean useIndex) { super(useIndex); _pathSeparatorChar = sepChar; _pathSeparatorEscapeChar = pathSeparatorEscapeChar; } @Override public JPropNode splitAndAdd(JPropNode parent, String key, String value) { JPropNode curr = parent; int start = 0; final int keyLen = key.length(); int ix; while ((ix = key.indexOf(_pathSeparatorChar, start)) >= start) { if (ix > start) { // segment before separator if (key.charAt(ix - 1) == _pathSeparatorEscapeChar) { //potentially escaped, so process slowly return _continueWithEscapes(curr, key, start, value); } String segment = key.substring(start, ix); curr = _addSegment(curr, segment); } start = ix + 1; if (start == keyLen) { break; } } return _lastSegment(curr, key, start, keyLen).setValue(value); } // Working character by character to handle escapes is slower // than using indexOf, so only do it if we have an escape char // before the path separator char. // Note that this resets back to the previous start, so one segment // is scanned twice. private JPropNode _continueWithEscapes(JPropNode parent, String key, int start, String value) { JPropNode curr = parent; int keylen = key.length(); int escCount = 0; StringBuilder segment = new StringBuilder(); for (int ix = start; ix < keylen; ++ix) { int cc = key.charAt(ix); if (cc ==_pathSeparatorEscapeChar) { escCount++; } else if (cc == _pathSeparatorChar) { if (escCount > 0) { segment.append(key, start, ix - ((escCount + 1) >> 1)); if (escCount % 2 == 0) { curr = _addSegment(curr, segment.toString()); segment = new StringBuilder(); start = ix + 1; } else { segment.append((char) cc); start = ix + 1; } escCount = 0; } else { segment.append(key, start, ix); curr = _addSegment(curr, segment.toString()); segment = new StringBuilder(); start = ix + 1; } } else { escCount = 0; } } segment.append(key, start, keylen); curr = _addSegment(curr, segment.toString()).setValue(value); return curr; } } /** * Simple variant where we only have path separator, and optional "segment * is index iff value is integer number" */ public static class StringPathOnlySplitter extends JPropPathSplitter { protected final String _pathSeparator; protected final int _pathSeparatorLength; public StringPathOnlySplitter(String pathSeparator, boolean useIndex) { super(useIndex); _pathSeparator = pathSeparator; _pathSeparatorLength = pathSeparator.length(); } @Override public JPropNode splitAndAdd(JPropNode parent, String key, String value) { JPropNode curr = parent; int start = 0; final int keyLen = key.length(); int ix; while ((ix = key.indexOf(_pathSeparator, start)) >= start) { if (ix > start) { // segment before separator String segment = key.substring(start, ix); curr = _addSegment(curr, segment); } start = ix + _pathSeparatorLength; if (start == key.length()) { break; } } return _lastSegment(curr, key, start, keyLen).setValue(value); } } /** * Special variant that does not use path separator, but does allow * index indicator, at the end of path. */ public static class IndexOnlySplitter extends JPropPathSplitter { protected final Pattern _indexMatch; public IndexOnlySplitter(boolean useSimpleIndex, Markers indexMarker) { super(useSimpleIndex); _indexMatch = Pattern.compile(String.format("(.*)%s(\\d{1,9})%s$", Pattern.quote(indexMarker.getStart()), Pattern.quote(indexMarker.getEnd()))); } @Override public JPropNode splitAndAdd(JPropNode parent, String key, String value) { Matcher m = _indexMatch.matcher(key); // short-cut for common case of no index: if (!m.matches()) { return _addSegment(parent, key).setValue(value); } // otherwise we need recursion as we "peel" away layers return _splitMore(parent, m.group(1), m.group(2)) .setValue(value); } protected JPropNode _splitMore(JPropNode parent, String prefix, String indexStr) { int ix = Integer.parseInt(indexStr); Matcher m = _indexMatch.matcher(prefix); if (!m.matches()) { parent = _addSegment(parent, prefix); } else { parent = _splitMore(parent, m.group(1), m.group(2)); } return parent.addByIndex(ix); } } /** * Instance that supports both path separator and index markers * (and possibly also "simple" indexes) */ public static class FullSplitter extends JPropPathSplitter { protected final Pattern _indexMatch; // small but important optimization for cases where index markers are absent protected final int _indexFirstChar; protected final JPropPathSplitter _simpleSplitter; protected final String _prefix; public FullSplitter(String pathSeparator, boolean useSimpleIndex, Markers indexMarker, JPropPathSplitter fallbackSplitter, String prefix) { super(useSimpleIndex); String startMarker = indexMarker.getStart(); _indexFirstChar = startMarker.charAt(0); _simpleSplitter = fallbackSplitter; if (prefix == null || prefix.isEmpty()) { _prefix = null; } else { _prefix = prefix + pathSeparator; } _indexMatch = Pattern.compile(String.format ("(%s)|(%s(\\d{1,9})%s)", Pattern.quote(pathSeparator), Pattern.quote(startMarker), Pattern.quote(indexMarker.getEnd()))); } @Override public JPropNode splitAndAdd(JPropNode parent, String key, String value) { // [dataformats-text#100]: handle possible prefix if (_prefix != null) { if (!key.startsWith(_prefix)) { return null; } key = key.substring(_prefix.length()); } if (key.indexOf(_indexFirstChar) < 0) { // no index start marker return _simpleSplitter.splitAndAdd(parent, key, value); } Matcher m = _indexMatch.matcher(key); int start = 0; while (m.find()) { // which match did we get? Either path separator (1), or index (2) int ix = m.start(1); if (ix >= 0) { // path separator... if (ix > start) { String segment = key.substring(start, ix); parent = _addSegment(parent, segment); } start = m.end(1); continue; } // no, index marker, with contents ix = m.start(2); if (ix > start) { String segment = key.substring(start, ix); parent = _addSegment(parent, segment); } start = m.end(2); ix = Integer.parseInt(m.group(3)); parent = parent.addByIndex(ix); } return _lastSegment(parent, key, start, key.length()).setValue(value); } } } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/Markers.java ================================================ package tools.jackson.dataformat.javaprop.util; /** * Simple value class for encapsulating a pair of start and end markers; * initially needed for index markers (like "[" and "]"). */ public class Markers { protected final String _start, _end; protected Markers(String start, String end) { if (start == null || start.isEmpty()) { throw new IllegalArgumentException("Missing 'start' value"); } if (end == null || end.isEmpty()) { throw new IllegalArgumentException("Missing 'end' value"); } _start = start; _end = end; } /** * Factory method for creating simple marker pair with given * start and end markers. Note that both are needed; neither may * be empty or null */ public static Markers create(String start, String end) { return new Markers(start, end); } public String getStart() { return _start; } public String getEnd() { return _end; } // public StringBuilder appendIn(String) } ================================================ FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/package-info.java ================================================ /** Helper classes for dealing with property key to structured path conversion. */ package tools.jackson.dataformat.javaprop.util; ================================================ FILE: properties/src/main/resources/META-INF/LICENSE ================================================ This copy of Jackson JSON processor Java Properties module is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the specific rights regarding derivative works. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 ================================================ FILE: properties/src/main/resources/META-INF/NOTICE ================================================ # Jackson JSON processor Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers. ## Copyright Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) ## Licensing Jackson components are licensed under Apache (Software) License, version 2.0, as per accompanying LICENSE file. ## Credits A list of contributors may be found from CREDITS file, which is included in some artifacts (usually source distributions); but is always available from the source code management (SCM) system project uses. ================================================ FILE: properties/src/main/resources/META-INF/services/tools.jackson.core.TokenStreamFactory ================================================ tools.jackson.dataformat.javaprop.JavaPropsFactory ================================================ FILE: properties/src/main/resources/META-INF/services/tools.jackson.databind.ObjectMapper ================================================ tools.jackson.dataformat.javaprop.JavaPropsMapper ================================================ FILE: properties/src/test/java/module-info.java ================================================ // Properties unit test Module descriptor module tools.jackson.dataformat.properties { // Since we are not split from Main artifact, will not // need to depend on Main artifact -- but need its dependencies requires tools.jackson.core; requires tools.jackson.databind; // Additional test lib/framework dependencies requires org.assertj.core; requires org.junit.jupiter.api; requires org.junit.jupiter.params; // Further, need to open up some packages for JUnit et al opens tools.jackson.dataformat.javaprop; opens tools.jackson.dataformat.javaprop.constraints; opens tools.jackson.dataformat.javaprop.deser; opens tools.jackson.dataformat.javaprop.deser.convert; opens tools.jackson.dataformat.javaprop.filter; opens tools.jackson.dataformat.javaprop.ser.dos; opens tools.jackson.dataformat.javaprop.testutil; opens tools.jackson.dataformat.javaprop.testutil.failure; opens tools.jackson.dataformat.javaprop.util; } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/ArrayGenerationTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.util.Map; import java.util.Properties; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.javaprop.util.Markers; import static org.junit.jupiter.api.Assertions.assertEquals; public class ArrayGenerationTest extends ModuleTestBase { private final JavaPropsMapper MAPPER = newPropertiesMapper(); @Test public void testPointListSimple() throws Exception { Points input = new Points (new Point(1, 2), new Point(3, 4), new Point(5, 6)); String output = MAPPER.writeValueAsString(input); assertEquals("p.1.x=1\n" +"p.1.y=2\n" +"p.2.x=3\n" +"p.2.y=4\n" +"p.3.x=5\n" +"p.3.y=6\n" ,output); { Properties props = MAPPER.writeValueAsProperties(input); assertEquals(6, props.size()); assertEquals("6", props.get("p.3.y")); assertEquals("1", props.get("p.1.x")); } { Map map = MAPPER.writeValueAsMap(input); assertEquals(6, map.size()); assertEquals("6", map.get("p.3.y")); assertEquals("1", map.get("p.1.x")); } } @Test public void testPointListWithIndex() throws Exception { JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withWriteIndexUsingMarkers(true) .withFirstArrayOffset(3); Points input = new Points (new Point(1, 2), new Point(3, 4), new Point(5, 6)); String output = MAPPER.writer(schema) .writeValueAsString(input); assertEquals("p[3].x=1\n" +"p[3].y=2\n" +"p[4].x=3\n" +"p[4].y=4\n" +"p[5].x=5\n" +"p[5].y=6\n" ,output); { Properties props = MAPPER.writeValueAsProperties(input, schema); assertEquals(6, props.size()); assertEquals("2", props.get("p[3].y")); assertEquals("3", props.get("p[4].x")); } { Map map = MAPPER.writeValueAsMap(input, schema); assertEquals(6, map.size()); assertEquals("2", map.get("p[3].y")); assertEquals("3", map.get("p[4].x")); } } @Test public void testPointListWithCustomMarkers() throws Exception { JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withWriteIndexUsingMarkers(true) .withIndexMarker(Markers.create("<<", ">>")) ; Points input = new Points(new Point(1, 2), new Point(3, 4)); String output = MAPPER.writer(schema) .writeValueAsString(input); assertEquals("p<<1>>.x=1\n" +"p<<1>>.y=2\n" +"p<<2>>.x=3\n" +"p<<2>>.y=4\n" ,output); { Properties props = MAPPER.writeValueAsProperties(input, schema); assertEquals(4, props.size()); assertEquals("1", props.get("p<<1>>.x")); assertEquals("4", props.get("p<<2>>.y")); } { Map map = MAPPER.writeValueAsMap(input, schema); assertEquals(4, map.size()); assertEquals("1", map.get("p<<1>>.x")); assertEquals("4", map.get("p<<2>>.y")); } } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/ArrayParsingTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.File; import java.util.List; import java.util.Map; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonValue; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.ObjectReader; import static org.junit.jupiter.api.Assertions.*; public class ArrayParsingTest extends ModuleTestBase { static class ZKConfig { public int tickTime; public File dataDir; public int clientPort; public int initLimit, syncLimit; @JsonProperty("server") public List servers; } static class ZKServer { public final int srcPort, dstPort; public final String host; @JsonCreator public ZKServer(String combo) { // should validate better; should work for now String[] parts = combo.split(":"); try { host = parts[0]; srcPort = Integer.parseInt(parts[1]); dstPort = Integer.parseInt(parts[2]); } catch (Exception e) { throw new IllegalArgumentException("Invalid input String for ZKServer-valued property: \"" +combo+"\""); } } @JsonValue public String asString() { return String.format("%s:%d:%d", host, srcPort, dstPort); } } static class StringArrayWrapper { public String[] str; } /* /********************************************************************** /* Test methods /********************************************************************** */ private final ObjectMapper MAPPER = newPropertiesMapper(); @Test public void testArrayWithBranch() throws Exception { // basically "extra" branch should become as first element, and // after that ordering by numeric value final String INPUT = "str=first\n" +"str.11=third\n" +"str.2=second\n" ; StringArrayWrapper w = MAPPER.readValue(INPUT, StringArrayWrapper.class); assertNotNull(w.str); assertEquals(3, w.str.length); assertEquals("first", w.str[0]); assertEquals("second", w.str[1]); assertEquals("third", w.str[2]); // Also should work if bound to a Map Map map = MAPPER.readerFor(Map.class) .readValue(INPUT); assertEquals(1, map.size()); Object ob = map.get("str"); assertNotNull(ob); assertTrue(ob instanceof List); // but let's see how things work with auto-detection disabled: JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withParseSimpleIndexes(false); map = MAPPER.readerFor(Map.class) .with(schema) .readValue(INPUT); assertEquals(1, map.size()); ob = map.get("str"); assertNotNull(ob); assertTrue(ob instanceof Map); } @Test public void testPointList() throws Exception { _testPointList(false, false); _testPointList(true, false); _testPointList(false, true); _testPointList(true, true); } private void _testPointList(boolean useBytes, boolean allowIndex) throws Exception { final String INPUT = "p.1.x=1\n" +"p.1.y=2\n" +"p.2.x=3\n" +"p.2.y=4\n" +"p.3.x=5\n" +"p.3.y=6\n" ; JavaPropsSchema schema = JavaPropsSchema.emptySchema(); if (allowIndex) { // default schema marker is fine ; } else { schema = schema.withoutIndexMarker(); } ObjectReader r = MAPPER.reader(schema); Points result = _mapFrom(r, INPUT, Points.class, useBytes); assertNotNull(result); assertNotNull(result.p); //System.err.println("As JSON: "+new ObjectMapper().writeValueAsString(result)); assertEquals(3, result.p.size()); assertEquals(1, result.p.get(0).x); assertEquals(2, result.p.get(0).y); assertEquals(3, result.p.get(1).x); assertEquals(4, result.p.get(1).y); assertEquals(5, result.p.get(2).x); assertEquals(6, result.p.get(2).y); } @Test public void testPointListWithIndex() throws Exception { _testPointListWithIndex(false); _testPointListWithIndex(true); } private void _testPointListWithIndex(boolean useBytes) throws Exception { final String INPUT = "p[1].x=1\n" +"p[1].y=2\n" +"p[2].y=4\n" +"p[2].x=3\n" ; Points result = _mapFrom(MAPPER, INPUT, Points.class, useBytes); assertNotNull(result); assertNotNull(result.p); assertEquals(2, result.p.size()); assertEquals(1, result.p.get(0).x); assertEquals(2, result.p.get(0).y); assertEquals(3, result.p.get(1).x); assertEquals(4, result.p.get(1).y); } @Test public void testZKPojo() throws Exception { _testZKPojo(false, false); _testZKPojo(true, false); _testZKPojo(false, true); _testZKPojo(true, true); } public void _testZKPojo(boolean useBytes, boolean allowIndex) throws Exception { final String INPUT ="tickTime=2000\n" +"dataDir=/var/zookeeper\n" +"clientPort=2181\n" +"initLimit=5\n" +"syncLimit=2\n" +"server.1=zoo1:2888:2889\n" +"server.2=zoo2:3888:3889\n" +"server.3=zoo3:4888:4889\n" ; JavaPropsSchema schema = JavaPropsSchema.emptySchema(); if (allowIndex) { // default schema marker is fine ; } else { schema = schema.withoutIndexMarker(); } ObjectReader r = MAPPER.reader(schema); ZKConfig config = _mapFrom(r, INPUT, ZKConfig.class, useBytes); assertNotNull(config.servers); assertEquals(3, config.servers.size()); assertEquals(4889, config.servers.get(2).dstPort); assertEquals(2, config.syncLimit); assertEquals(2181, config.clientPort); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/BinaryParsingTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.nio.ByteBuffer; import java.util.Map; import java.util.Properties; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.*; public class BinaryParsingTest extends ModuleTestBase { // [dataformats-text#74]: problem with multiple binary fields static class MyBean { public byte[] a; public byte[] b; public ByteBuffer c; protected MyBean() { } public MyBean(boolean bogus) { a = new byte[] { 1 }; b = new byte[] { 3, 28, 7 }; c = ByteBuffer.wrap(new byte[] { 1, 2, 3, 4, 5, 67 }); } } /* /********************************************************************** /* Test methods /********************************************************************** */ private final JavaPropsMapper MAPPER = newPropertiesMapper(); // [dataformats-text#74] @Test public void testMultipleBinaryFields() throws Exception { final MyBean src = new MyBean(true); { Properties props = MAPPER.writeValueAsProperties(src); MyBean result = MAPPER.readPropertiesAs(props, MyBean.class); assertArrayEquals(src.a, result.a); assertArrayEquals(src.b, result.b); ByteBuffer b1 = src.c; ByteBuffer b2 = result.c; assertEquals(b1, b2); } { Map map = MAPPER.writeValueAsMap(src); MyBean result = MAPPER.readMapAs(map, MyBean.class); assertArrayEquals(src.a, result.a); assertArrayEquals(src.b, result.b); ByteBuffer b1 = src.c; ByteBuffer b2 = result.c; assertEquals(b1, b2); } } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/CustomSeparatorsTest.java ================================================ package tools.jackson.dataformat.javaprop; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.assertEquals; public class CustomSeparatorsTest extends ModuleTestBase { private final ObjectMapper MAPPER = newPropertiesMapper(); @Test public void testCustomPathSeparator() throws Exception { JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withPathSeparator("->") ; String props = MAPPER.writer(schema) .writeValueAsString( new Rectangle(new Point(1, -2), new Point(5, 10))); assertEquals("topLeft->x=1\n" +"topLeft->y=-2\n" +"bottomRight->x=5\n" +"bottomRight->y=10\n" ,props); // and should come back as well, even with some white space sprinkled final String INPUT = "topLeft->x = 1\n" +"topLeft->y= -2\n" +"bottomRight->x =5\n" +"bottomRight->y = 10\n"; Rectangle result = MAPPER.readerFor(Rectangle.class) .with(schema) .readValue(INPUT); assertEquals(10, result.bottomRight.y); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/DefaultConfigsTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.StringWriter; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import static org.junit.jupiter.api.Assertions.*; public class DefaultConfigsTest extends ModuleTestBase { private final String ARTIFACT_ID = "jackson-dataformat-properties"; @Test public void testFactoryBaseConfig() { JavaPropsFactory f = new JavaPropsFactory(); _verifyVersion(f); JavaPropsFactory copy = f.copy(); assertNotSame(f, copy); assertEquals(JavaPropsFactory.FORMAT_NAME_JAVA_PROPERTIES, f.getFormatName()); assertFalse(f.requiresPropertyOrdering()); assertFalse(f.canHandleBinaryNatively()); assertFalse(f.canUseCharArrays()); } @Test public void testGeneratorConfig() throws Exception { JavaPropsFactory f = new JavaPropsFactory(); JsonGenerator gen = f.createGenerator(ObjectWriteContext.empty(), new StringWriter()); _verifyVersion(gen); assertTrue(gen.canOmitProperties()); assertFalse(gen.canWriteObjectId()); assertFalse(gen.canWriteTypeId()); gen.close(); } @Test public void testParserConfig() throws Exception { JavaPropsFactory f = new JavaPropsFactory(); JsonParser p = f.createParser(ObjectReadContext.empty(), "#foo"); _verifyVersion(p); assertFalse(p.canReadObjectId()); assertFalse(p.canReadTypeId()); assertFalse(p.hasStringCharacters()); p.close(); } private void _verifyVersion(Versioned v) { Version v2 = v.version(); assertEquals(ARTIFACT_ID, v2.getArtifactId()); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/GenerationEscapingTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.util.HashMap; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.assertEquals; public class GenerationEscapingTest extends ModuleTestBase { private final ObjectMapper MAPPER = newPropertiesMapper(); @Test public void testKeyEscaping() throws Exception { Map input = new HashMap<>(); input.put("ns:key", "value"); assertEquals("ns\\:key=value\n", MAPPER.writeValueAsString(input)); input = new HashMap<>(); input.put("combo key", "value"); assertEquals("combo\\ key=value\n", MAPPER.writeValueAsString(input)); input = new HashMap<>(); input.put("combo\tkey", "value"); assertEquals("combo\\tkey=value\n", MAPPER.writeValueAsString(input)); } @Test public void testValueEscaping() throws Exception { /* Properties props = new Properties(); props.put("ns:key", "value:foo=faa"); java.io.StringWriter sw = new java.io.StringWriter(); props.store(sw, null); System.err.println("-> "+sw); */ Map input = new HashMap<>(); input.put("key", "tab:\tTAB!"); assertEquals("key=tab:\\tTAB!\n", MAPPER.writeValueAsString(input)); input = new HashMap<>(); input.put("key", "NUL=\0..."); assertEquals("key=NUL=\\u0000...\n", MAPPER.writeValueAsString(input)); input = new HashMap<>(); input.put("key", "multi\nline"); assertEquals("key=multi\\nline\n", MAPPER.writeValueAsString(input)); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/GeneratorFileCloseOnErrorTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.*; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonGenerator; import static org.assertj.core.api.Assertions.assertThat; /** * Test to verify that Properties output streams are properly closed even when * an error occurs during generator close (see jackson-dataformats-text#109). * * @since 3.2 */ public class GeneratorFileCloseOnErrorTest extends ModuleTestBase { private final JavaPropsMapper MAPPER = newPropertiesMapper(); // [jackson-dataformats-text#109]: Output not closed on error @Test public void testOutputClosedWhenFlushFailsDuringClose() throws Exception { FailOnDemandWriter writer = new FailOnDemandWriter(); JsonGenerator gen = MAPPER.createGenerator(writer); gen.writeStartObject(); gen.writeStringProperty("key", "value"); gen.writeEndObject(); // Arm the writer so close()'s _flushBuffer() call fails writer.shouldFail = true; try { gen.close(); } catch (Exception e) { // Expected: writer failure during _flushBuffer in close() } assertThat(writer.closed) .as("Underlying writer should be closed even when flush during close() fails") .isTrue(); } @Test public void testOutputClosedOnSuccessfulWrite() throws Exception { FailOnDemandWriter writer = new FailOnDemandWriter(); MAPPER.writeValue(writer, new Point(1, 2)); assertThat(writer.closed) .as("Writer should be closed after successful write") .isTrue(); } static class FailOnDemandWriter extends Writer { boolean closed; volatile boolean shouldFail; private final StringWriter _delegate = new StringWriter(); @Override public void write(char[] cbuf, int off, int len) throws IOException { if (shouldFail) { throw new IOException("Simulated write failure"); } _delegate.write(cbuf, off, len); } @Override public void flush() throws IOException { _delegate.flush(); } @Override public void close() throws IOException { closed = true; _delegate.close(); } } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/JDKSerializabilityTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.*; import java.util.LinkedHashMap; import java.util.Map; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.*; public class JDKSerializabilityTest extends ModuleTestBase { @Test void testMapperSerializability() throws Exception { // very simple validation: should still work wrt serialization JavaPropsMapper unfrozenMapper = serializeAndDeserialize(new JavaPropsMapper()); // and then simple verification that write+read still works Object input = _simpleData(); byte[] encoded = unfrozenMapper.writeValueAsBytes(input); final Object result = unfrozenMapper.readerFor(Object.class) .readValue(encoded); assertEquals(result, input); // and also verify `rebuild()` works: JavaPropsMapper copy = unfrozenMapper.rebuild().build(); assertNotSame(unfrozenMapper, copy); // with 3.x, factories are immutable so they need not be unshared: assertSame(unfrozenMapper.tokenStreamFactory(), copy.tokenStreamFactory()); final Object result2 = copy.readerFor(Object.class) .readValue(encoded); assertEquals(input, result2); } private JavaPropsMapper serializeAndDeserialize(JavaPropsMapper mapper) throws Exception { ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); ObjectOutputStream outputStream = new ObjectOutputStream(byteArrayOutputStream); outputStream.writeObject(mapper); byte[] serializedBytes = byteArrayOutputStream.toByteArray(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(serializedBytes); ObjectInputStream inputStream = new ObjectInputStream(byteArrayInputStream); Object deserializedObject = inputStream.readObject(); assertTrue(deserializedObject instanceof JavaPropsMapper, "Deserialized object should be an instance of JavaPropsMapper" ); return (JavaPropsMapper) deserializedObject; } private Object _simpleData() { Map stuff = new LinkedHashMap<>(); // Since typing won't be retained only use strings... stuff.put("foo", "bar"); stuff.put("value", "something else"); return stuff; } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/MapParsingTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class MapParsingTest extends ModuleTestBase { static class MapWrapper { public Map map; } /* /********************************************************************** /* Test methods /********************************************************************** */ @Test public void testMapWithBranchNoEscaping() throws Exception { ObjectMapper mapper = newPropertiesMapper(); // basically "extra" branch should become as first element, and // after that ordering by numeric value final String INPUT = "map=first\n" +"map.b=second\n" +"map.xyz=third\n" +"map.ab\\\\.c=fourth\n" ; MapWrapper w = mapper.readValue(INPUT, MapWrapper.class); assertNotNull(w.map); assertEquals(4, w.map.size()); assertEquals("first", w.map.get("")); assertEquals("second", w.map.get("b")); assertEquals("third", w.map.get("xyz")); assertEquals("fourth", ((Map) w.map.get("ab\\")).get("c")); } @Test public void testMapWithBranchBackslashEscape() throws Exception { JavaPropsMapper mapper = newPropertiesMapper(); // Lots of backslash escaped values final String INPUT = "map=first\n" +"map.b=second\n" +"map.xyz=third\n" +"map.ab\\\\.c=fourth\n" // ab\. => ab.c +"map.ab\\\\cd\\\\.ef\\\\.gh\\\\\\\\ij=fifth\n" // ab\cd\.df\.gh\\ij => ab\cd.df.gh\\ij +"map.\\\\.=sixth\n" // \. => . +"map.ab\\\\.d=seventh\n" // ab\.d => ab.d +"map.ef\\\\\\\\.d=eigth\n" // ef\\.d => ef\->d +"map.ab\\\\\\\\\\\\.d=ninth\n" // ab\\\.d => ab\.d +"map.xy\\\\.d.ij=tenth\n" // xy\.d.ij => xy.d->ij +"map.xy\\\\\\\\.d.ij=eleventh\n" // xy\\.d.ij => xy\->d->ij +"map.xy\\\\\\\\\\\\.d.ij=twelfth\n" // xy\\\.d => xy\.d->ij ; MapWrapper w = mapper.readerFor(MapWrapper.class) .with(new JavaPropsSchema().withPathSeparatorEscapeChar('\\')) .readValue(INPUT); assertNotNull(w.map); assertEquals(12, w.map.size()); assertEquals("first", w.map.get("")); assertEquals("second", w.map.get("b")); assertEquals("third", w.map.get("xyz")); assertEquals("fourth", w.map.get("ab.c")); assertEquals("fifth", w.map.get("ab\\cd.ef.gh\\\\ij")); assertEquals("sixth", w.map.get(".")); assertEquals("seventh", w.map.get("ab.d")); assertEquals("eigth", ((Map) w.map.get("ef\\")).get("d")); assertEquals("ninth", w.map.get("ab\\.d")); assertEquals("tenth", ((Map) w.map.get("xy.d")).get("ij")); assertEquals("eleventh", ((Map) ((Map) w.map.get("xy\\")).get("d")).get("ij")); assertEquals("twelfth", ((Map) w.map.get("xy\\.d")).get("ij")); } @Test public void testMapWithBranchHashEscape() throws Exception { JavaPropsMapper mapper = newPropertiesMapper(); // Lots of backslash escaped values final String INPUT = "map=first\n" +"map.b=second\n" +"map.xyz=third\n" +"map.ab#.c=fourth\n" // ab#. => ab.c +"map.ab#cd#.ef#.gh##ij=fifth\n" // ab#cd#.df#.gh##ij => ab#cd.df.gh##ij +"map.#.=sixth\n" // #. => . +"map.ab#.d=seventh\n" // ab#.d => ab.d +"map.ef##.d=eigth\n" // ef##.d => ef#->d +"map.ab###.d=ninth\n" // ab###.d => ab#.d +"map.xy#.d.ij=tenth\n" // xy#.d.ij => xy.d->ij +"map.xy##.d.ij=eleventh\n" // xy##.d.ij => xy#->d->ij +"map.xy###.d.ij=twelfth\n" // xy###.d => xy#.d->ij ; MapWrapper w = mapper.readerFor(MapWrapper.class) .with(new JavaPropsSchema().withPathSeparatorEscapeChar('#')).readValue(INPUT); assertNotNull(w.map); assertEquals(12, w.map.size()); assertEquals("first", w.map.get("")); assertEquals("second", w.map.get("b")); assertEquals("third", w.map.get("xyz")); assertEquals("fourth", w.map.get("ab.c")); assertEquals("fifth", w.map.get("ab#cd.ef.gh##ij")); assertEquals("sixth", w.map.get(".")); assertEquals("seventh", w.map.get("ab.d")); assertEquals("eigth", ((Map) w.map.get("ef#")).get("d")); assertEquals("ninth", w.map.get("ab#.d")); assertEquals("tenth", ((Map) w.map.get("xy.d")).get("ij")); assertEquals("eleventh", ((Map) ((Map) w.map.get("xy#")).get("d")).get("ij")); assertEquals("twelfth", ((Map) w.map.get("xy#.d")).get("ij")); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/ModuleTestBase.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.*; import java.nio.charset.StandardCharsets; import java.util.Arrays; import java.util.List; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.ObjectReader; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; public abstract class ModuleTestBase { @JsonPropertyOrder({ "topLeft", "bottomRight" }) protected static class Rectangle { public Point topLeft; public Point bottomRight; protected Rectangle() { } public Rectangle(Point p1, Point p2) { topLeft = p1; bottomRight = p2; } } @JsonPropertyOrder({ "x", "y" }) protected static class Point { public int x, y; protected Point() { } public Point(int x0, int y0) { x = x0; y = y0; } } protected static class Points { public List p; protected Points() { } public Points(Point... p0) { p = Arrays.asList(p0); } } public enum Gender { MALE, FEMALE }; /** * Slightly modified sample class from Jackson tutorial ("JacksonInFiveMinutes") */ @JsonPropertyOrder({"firstName", "lastName", "gender" ,"verified", "userImage"}) protected static class FiveMinuteUser { private Gender _gender; public String firstName, lastName; private boolean _isVerified; private byte[] _userImage; public FiveMinuteUser() { } public FiveMinuteUser(String first, String last, boolean verified, Gender g, byte[] data) { firstName = first; lastName = last; _isVerified = verified; _gender = g; _userImage = data; } public boolean isVerified() { return _isVerified; } public Gender getGender() { return _gender; } public byte[] getUserImage() { return _userImage; } public void setVerified(boolean b) { _isVerified = b; } public void setGender(Gender g) { _gender = g; } public void setUserImage(byte[] b) { _userImage = b; } @Override public boolean equals(Object o) { if (o == this) return true; if (o == null || o.getClass() != getClass()) return false; FiveMinuteUser other = (FiveMinuteUser) o; if (_isVerified != other._isVerified) return false; if (_gender != other._gender) return false; if (!firstName.equals(other.firstName)) return false; if (!lastName.equals(other.lastName)) return false; byte[] otherImage = other._userImage; if (otherImage.length != _userImage.length) return false; for (int i = 0, len = _userImage.length; i < len; ++i) { if (_userImage[i] != otherImage[i]) { return false; } } return true; } @Override public int hashCode() { // not really good but whatever: return firstName.hashCode(); } } @JsonPropertyOrder({"id", "desc"}) protected static class IdDesc { public String id, desc; protected IdDesc() { } public IdDesc(String id, String desc) { this.id = id; this.desc = desc; } } protected ModuleTestBase() { } /* /********************************************************************** /* Helper methods, setup /********************************************************************** */ protected JavaPropsFactoryBuilder propertiesFactoryBuilder() { return JavaPropsFactory.builder(); } protected JavaPropsMapper newPropertiesMapper() { return propertiesMapperBuilder().build(); } protected JavaPropsMapper.Builder propertiesMapperBuilder() { return JavaPropsMapper.builder(); } protected JavaPropsMapper.Builder propertiesMapperBuilder(JavaPropsFactory f) { return JavaPropsMapper.builder(f); } /* /********************************************************** /* Helper methods; read helpers /********************************************************** */ protected final T _mapFrom(ObjectMapper mapper, String input, Class type, boolean useBytes) throws IOException { if (useBytes) { InputStream in = new ByteArrayInputStream(input.getBytes("ISO-8859-1")); return mapper.readValue(in, type); } return mapper.readValue(new StringReader(input), type); } protected final T _mapFrom(ObjectReader reader, String input, Class type, boolean useBytes) throws IOException { if (useBytes) { InputStream in = new ByteArrayInputStream(input.getBytes("ISO-8859-1")); return reader.forType(type).readValue(in); } return reader.forType(type).readValue(new StringReader(input)); } /* /********************************************************** /* Helper methods; low-level /********************************************************** */ public String q(String str) { return '"'+str+'"'; } protected String a2q(String json) { return json.replace("'", "\""); } public byte[] utf8(String str) { return str.getBytes(StandardCharsets.UTF_8); } protected void assertToken(JsonToken expToken, JsonToken actToken) { if (actToken != expToken) { fail("Expected token "+expToken+", current token "+actToken); } } protected void assertToken(JsonToken expToken, JsonParser jp) { assertToken(expToken, jp.currentToken()); } protected void assertType(Object ob, Class expType) { if (ob == null) { fail("Expected an object of type "+expType.getName()+", got null"); } Class cls = ob.getClass(); if (!expType.isAssignableFrom(cls)) { fail("Expected type "+expType.getName()+", got "+cls.getName()); } } /** * Method that gets textual contents of the current token using * available methods, and ensures results are consistent, before * returning them */ protected String getAndVerifyText(JsonParser jp) throws IOException { // Ok, let's verify other accessors int actLen = jp.getStringLength(); char[] ch = jp.getStringCharacters(); String str2 = new String(ch, jp.getStringOffset(), actLen); String str = jp.getString(); if (str.length() != actLen) { fail("Internal problem (jp.token == "+jp.currentToken()+"): jp.getText().length() ['"+str+"'] == "+str.length()+"; jp.getTextLength() == "+actLen); } assertEquals("String access via getText(), getTextXxx() must be the same", str, str2); return str; } protected void verifyFieldName(JsonParser p, String expName) throws IOException { assertEquals(expName, p.getString()); assertEquals(expName, p.currentName()); } protected void verifyIntValue(JsonParser jp, long expValue) throws IOException { // First, via textual assertEquals(String.valueOf(expValue), jp.getString()); } protected void verifyException(Throwable e, String... matches) { String msg = e.getMessage(); String lmsg = (msg == null) ? "" : msg.toLowerCase(); for (String match : matches) { String lmatch = match.toLowerCase(); if (lmsg.indexOf(lmatch) >= 0) { return; } } fail("Expected an exception with one of substrings ("+Arrays.asList(matches)+"): got one with message \""+msg+"\""); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/NumberDeserWithPropsTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.math.BigDecimal; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.*; // Tests copied from databind "JDKNumberDeserTest" (only a small subset) public class NumberDeserWithPropsTest extends ModuleTestBase { // [databind#2644] static class NodeRoot2644 { public String type; @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXTERNAL_PROPERTY, property = "type") @JsonSubTypes(value = { @JsonSubTypes.Type(value = NodeParent2644.class, name = "NodeParent") }) public Node2644 node; } public static class NodeParent2644 extends Node2644 { } public static abstract class Node2644 { @JsonProperty("amount") BigDecimal val; public BigDecimal getVal() { return val; } public void setVal(BigDecimal val) { this.val = val; } } // [databind#2784] static class BigDecimalHolder2784 { public BigDecimal value; } static class NestedBigDecimalHolder2784 { @JsonUnwrapped public BigDecimalHolder2784 holder; } /* /********************************************************************** /* Test methods /********************************************************************** */ private final JavaPropsMapper MAPPER = newPropertiesMapper(); // [databind#2644] @Test public void testBigDecimalSubtypes() throws Exception { ObjectMapper mapper = propertiesMapperBuilder() .registerSubtypes(NodeParent2644.class) .build(); NodeRoot2644 root = mapper.readValue( "type: NodeParent\n" +"node.amount: 9999999999999999.99\n", NodeRoot2644.class ); assertEquals(new BigDecimal("9999999999999999.99"), root.node.getVal()); } // [databind#2784] @Test public void testBigDecimalUnwrapped() throws Exception { // mapper.enable(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS); final String DOC = "value: 5.00"; NestedBigDecimalHolder2784 result = MAPPER.readValue(DOC, NestedBigDecimalHolder2784.class); assertEquals(new BigDecimal("5.00"), result.holder.value); } @Test public void testVeryBigDecimalUnwrapped() throws Exception { final int len = 1200; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append(1); } final String value = sb.toString(); final String DOC = "value: " + value; try { MAPPER.readValue(DOC, NestedBigDecimalHolder2784.class); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { assertTrue( e.getMessage().startsWith("Number value length (1200) exceeds the maximum allowed"), "unexpected message: " + e.getMessage() ); } } @Test public void testVeryBigDecimalUnwrappedWithNumLenUnlimited() throws Exception { final int len = 1200; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append(1); } final String value = sb.toString(); final String DOC = "value: " + value; JavaPropsFactory factory = JavaPropsFactory.builder() .streamReadConstraints(StreamReadConstraints.builder().maxNumberLength(Integer.MAX_VALUE).build()) .build(); JavaPropsMapper mapper = propertiesMapperBuilder(factory).build(); NestedBigDecimalHolder2784 result = mapper.readValue(DOC, NestedBigDecimalHolder2784.class); assertEquals(new BigDecimal(value), result.holder.value); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/PrefixTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.util.Map; import java.util.Properties; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; public class PrefixTest extends ModuleTestBase { private final JavaPropsMapper MAPPER = newPropertiesMapper(); @Test public void testPrefixParsing() throws Exception { final String INPUT = "org.o1.firstName=Bob\n" +"org.o1.lastName=Palmer\n" +"org.o2.firstName=Alice\n" +"org.o2.lastName=Black\n" +"junk=AQIDBA==\n"; FiveMinuteUser result1 = _mapFrom(MAPPER.reader(JavaPropsSchema.emptySchema().withPrefix("org.o1")), INPUT, FiveMinuteUser.class, false); assertEquals("Bob", result1.firstName); assertEquals("Palmer", result1.lastName); FiveMinuteUser result2 = _mapFrom(MAPPER.reader(JavaPropsSchema.emptySchema().withPrefix("org.o2")), INPUT, FiveMinuteUser.class, false); assertEquals("Alice", result2.firstName); assertEquals("Black", result2.lastName); } @Test public void testPrefixGeneration() throws Exception { FiveMinuteUser input = new FiveMinuteUser("Bob", "Palmer", true, Gender.MALE, new byte[] { 1, 2, 3, 4 }); String output = MAPPER.writer(JavaPropsSchema.emptySchema().withPrefix("org.o1")).writeValueAsString(input); assertEquals("org.o1.firstName=Bob\n" +"org.o1.lastName=Palmer\n" +"org.o1.gender=MALE\n" +"org.o1.verified=true\n" +"org.o1.userImage=AQIDBA==\n" ,output); { Properties props = MAPPER.writeValueAsProperties(input, JavaPropsSchema.emptySchema().withPrefix("org.o1")); assertEquals(5, props.size()); assertEquals("true", props.get("org.o1.verified")); assertEquals("MALE", props.get("org.o1.gender")); } { Map map = MAPPER.writeValueAsMap(input, JavaPropsSchema.emptySchema().withPrefix("org.o1")); assertEquals(5, map.size()); assertEquals("true", map.get("org.o1.verified")); assertEquals("MALE", map.get("org.o1.gender")); } } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/PropertiesSupportTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.util.*; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.*; /** * Tests for extended functionality to work with JDK `Properties` Object * (as well as {@code java.util.Map}, since 2.10) */ public class PropertiesSupportTest extends ModuleTestBase { static class TestObject91 { Map values = new HashMap<>(); public Map getValues() { return values; } public void setValues(Map values) { this.values = values; } } private final JavaPropsMapper MAPPER = newPropertiesMapper(); @Test public void testSimpleEmployeeFromProperties() throws Exception { Properties props = new Properties(); props.put("a.b", "14"); props.put("x", "foo"); _verifySimple(MAPPER.readPropertiesAs(props, Map.class)); } // for [dataformats-text#139] @Test public void testSimpleEmployeeFromMap() throws Exception { Map map = new LinkedHashMap<>(); map.put("a.b", "14"); map.put("x", "foo"); _verifySimple(MAPPER.readMapAs(map, Map.class)); } private void _verifySimple(Map result) { assertNotNull(result); assertEquals(2, result.size()); assertEquals("foo", result.get("x")); Object ob = result.get("a"); assertNotNull(ob); assertTrue(ob instanceof Map); Map m2 = (Map) ob; assertEquals(1, m2.size()); assertEquals("14", m2.get("b")); } @Test public void testWithCustomSchemaFromProperties() throws Exception { Properties props = new Properties(); props.put("a/b", "14"); props.put("x.y/z", "foo"); JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withPathSeparator("/"); Map result = MAPPER.readPropertiesAs(props, schema, MAPPER.constructType(Map.class)); _verifyCustom(result); } // for [dataformats-text#139] @Test public void testWithCustomSchemaFromMap() throws Exception { Map map = new LinkedHashMap<>(); map.put("a/b", "14"); map.put("x.y/z", "foo"); JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withPathSeparator("/"); Map result = MAPPER.readMapAs(map, schema, MAPPER.constructType(Map.class)); _verifyCustom(result); } private void _verifyCustom(Map result) { assertNotNull(result); assertEquals(2, result.size()); Object ob = result.get("a"); assertNotNull(ob); assertTrue(ob instanceof Map); Map m2 = (Map) ob; assertEquals(1, m2.size()); assertEquals("14", m2.get("b")); ob = result.get("x.y"); assertNotNull(ob); assertTrue(ob instanceof Map); m2 = (Map) ob; assertEquals(1, m2.size()); assertEquals("foo", m2.get("z")); } // [dataformats-text#91] @Test public void testEscapingWithReadPropertiesAs() throws Exception { TestObject91 expected = new TestObject91(); expected.values.put("foo:bar", "1"); Properties properties = MAPPER.writeValueAsProperties(expected); TestObject91 actual = MAPPER.readPropertiesAs(properties, TestObject91.class); assertEquals(expected.values, actual.values); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/SchemaConstructionTest.java ================================================ package tools.jackson.dataformat.javaprop; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotSame; import static org.junit.jupiter.api.Assertions.assertSame; public class SchemaConstructionTest extends ModuleTestBase { // Tests to verify stickiness of settings @Test public void testMutantFactories() { JavaPropsSchema empty = JavaPropsSchema.emptySchema(); JavaPropsSchema schema2; assertFalse(empty.writeIndexUsingMarkers()); schema2 = empty.withFirstArrayOffset(1); assertEquals(1, schema2.firstArrayOffset()); assertEquals(1, schema2.withFirstArrayOffset(1).firstArrayOffset()); schema2 = empty.withPathSeparator("//"); assertEquals("//", schema2.pathSeparator()); assertEquals("//", schema2.withPathSeparator("//").pathSeparator()); assertEquals("", schema2.withoutPathSeparator().pathSeparator()); assertEquals("", schema2.withPathSeparator(null).pathSeparator()); schema2 = empty.withLineIndentation(" "); assertEquals(" ", schema2.lineIndentation()); assertEquals(" ", schema2.withLineIndentation(" ").lineIndentation()); schema2 = empty.withHeader(""); assertEquals("", schema2.header()); assertEquals("", schema2.withHeader("").header()); schema2 = empty.withLineEnding("\r"); assertEquals("\r", schema2.lineEnding()); assertEquals("\r", schema2.withLineEnding("\r").lineEnding()); assertEquals("JavaProps", schema2.getSchemaType()); } // [dataformats-text#xxx]: withPathSeparatorEscapeChar() was comparing // against wrong field (_pathSeparator instead of _pathSeparatorEscapeChar) @Test public void testWithPathSeparatorEscapeChar() { JavaPropsSchema empty = JavaPropsSchema.emptySchema(); assertEquals('\0', empty.pathSeparatorEscapeChar()); // Setting a new escape char should produce a new schema JavaPropsSchema schema2 = empty.withPathSeparatorEscapeChar('\\'); assertNotSame(empty, schema2); assertEquals('\\', schema2.pathSeparatorEscapeChar()); // Setting the same escape char should return the same instance assertSame(schema2, schema2.withPathSeparatorEscapeChar('\\')); // Setting a different escape char should produce a new schema JavaPropsSchema schema3 = schema2.withPathSeparatorEscapeChar('/'); assertNotSame(schema2, schema3); assertEquals('/', schema3.pathSeparatorEscapeChar()); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/SimpleGenerationTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.util.Map; import java.util.Properties; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; public class SimpleGenerationTest extends ModuleTestBase { private final JavaPropsMapper MAPPER = newPropertiesMapper(); @Test public void testSimpleEmployee() throws Exception { FiveMinuteUser input = new FiveMinuteUser("Bob", "Palmer", true, Gender.MALE, new byte[] { 1, 2, 3, 4 }); String output = MAPPER.writeValueAsString(input); assertEquals("firstName=Bob\n" +"lastName=Palmer\n" +"gender=MALE\n" +"verified=true\n" +"userImage=AQIDBA==\n" ,output); { Properties props = MAPPER.writeValueAsProperties(input); assertEquals(5, props.size()); assertEquals("true", props.get("verified")); assertEquals("MALE", props.get("gender")); } { Map map = MAPPER.writeValueAsMap(input); assertEquals(5, map.size()); assertEquals("true", map.get("verified")); assertEquals("MALE", map.get("gender")); } } @Test public void testSimpleRectangle() throws Exception { Rectangle input = new Rectangle(new Point(1, -2), new Point(5, 10)); String output = MAPPER.writeValueAsString(input); assertEquals("topLeft.x=1\n" +"topLeft.y=-2\n" +"bottomRight.x=5\n" +"bottomRight.y=10\n" ,output); { Properties props = MAPPER.writeValueAsProperties(input); assertEquals(4, props.size()); assertEquals("5", props.get("bottomRight.x")); } { Map map = MAPPER.writeValueAsMap(input); assertEquals(4, map.size()); assertEquals("5", map.get("bottomRight.x")); } } @Test public void testRectangleWithCustomKeyValueSeparator() throws Exception { JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withKeyValueSeparator(": "); Rectangle input = new Rectangle(new Point(1, -2), new Point(5, 10)); String output = MAPPER.writer(schema).writeValueAsString(input); assertEquals("topLeft.x: 1\n" +"topLeft.y: -2\n" +"bottomRight.x: 5\n" +"bottomRight.y: 10\n" ,output); { Properties props = MAPPER.writeValueAsProperties(input, schema); assertEquals(4, props.size()); assertEquals("5", props.get("bottomRight.x")); } { Map map = MAPPER.writeValueAsMap(input, schema); assertEquals(4, map.size()); assertEquals("5", map.get("bottomRight.x")); } } @Test public void testRectangleWithHeader() throws Exception { final String HEADER = "# SUPER IMPORTANT!\n"; JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withHeader(HEADER); Rectangle input = new Rectangle(new Point(1, -2), new Point(5, 10)); String output = MAPPER.writer(schema) .writeValueAsString(input); assertEquals(HEADER +"topLeft.x=1\n" +"topLeft.y=-2\n" +"bottomRight.x=5\n" +"bottomRight.y=10\n" ,output); } @Test public void testRectangleWithIndent() throws Exception { JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withLineIndentation(" "); Rectangle input = new Rectangle(new Point(1, -2), new Point(5, 10)); String output = MAPPER.writer(schema) .writeValueAsString(input); assertEquals(" topLeft.x=1\n" +" topLeft.y=-2\n" +" bottomRight.x=5\n" +" bottomRight.y=10\n" ,output); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/SimpleParsingTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.json.JsonMapper; import static org.junit.jupiter.api.Assertions.assertEquals; public class SimpleParsingTest extends ModuleTestBase { private final ObjectMapper MAPPER = newPropertiesMapper(); private final ObjectMapper JSON_MAPPER = new JsonMapper(); @Test public void testSimpleNonNested() throws Exception { _testSimpleNonNested(false); _testSimpleNonNested(true); } @Test public void testSimpleNested() throws Exception { _testSimpleNested(false); _testSimpleNested(true); } @Test public void testSimpleRectangle() throws Exception { _testSimpleRectangle(false); _testSimpleRectangle(true); } @Test public void testNonSplittingParsing() throws Exception { JavaPropsSchema schema = JavaPropsSchema.emptySchema() .withoutPathSeparator(); Map result = MAPPER.readerFor(Map.class) .with(schema) .readValue("a.b.c = 3"); assertEquals("{\"a.b.c\":\"3\"}", JSON_MAPPER.writeValueAsString(result)); } private void _testSimpleNonNested(boolean useBytes) throws Exception { final String INPUT = "firstName=Bob\n" +"lastName=Palmer\n" +"gender=MALE\n" +"verified=true\n" +"userImage=AQIDBA==\n"; FiveMinuteUser result = _mapFrom(MAPPER, INPUT, FiveMinuteUser.class, useBytes); assertEquals(Gender.MALE, result.getGender()); assertEquals(4, result.getUserImage().length); } private void _testSimpleNested(boolean useBytes) throws Exception { final String INPUT = "comparison.source.database=test\n" +"comparison.target.database=test2\n" ; Map result = _mapFrom(MAPPER, INPUT, Map.class, useBytes); assertEquals(1, result.size()); } private void _testSimpleRectangle(boolean useBytes) throws Exception { final String INPUT = "topLeft.x=1\n" +"topLeft.y=-2\n" +"bottomRight.x=5\n" +"bottomRight.y=10\n"; Rectangle result = _mapFrom(MAPPER, INPUT, Rectangle.class, useBytes); assertEquals(5, result.bottomRight.x); assertEquals(10, result.bottomRight.y); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/SimpleStreamingTest.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.*; import java.math.BigDecimal; import java.math.BigInteger; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.core.exc.StreamReadException; import tools.jackson.core.JsonToken; import tools.jackson.core.io.SerializedString; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.javaprop.io.JPropWriteContext; import static org.junit.jupiter.api.Assertions.*; public class SimpleStreamingTest extends ModuleTestBase { private final ObjectMapper MAPPER = newPropertiesMapper(); @Test public void testParsing() throws Exception { JsonParser p = MAPPER.createParser("foo = bar"); Object src = p.streamReadInputSource(); assertTrue(src instanceof Reader); _verifyGetNumberTypeFail(p, "null"); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertNull(p.getEmbeddedObject()); assertNotNull(p.currentLocation()); // N/A assertNotNull(p.currentTokenLocation()); // N/A _verifyGetNumberTypeFail(p, "START_OBJECT"); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("foo", p.currentName()); assertEquals("foo", p.getString()); assertEquals("foo", p.getValueAsString()); assertEquals("foo", p.getValueAsString("x")); assertToken(JsonToken.VALUE_STRING, p.nextToken()); StringWriter sw = new StringWriter(); assertEquals(3, p.getString(sw)); assertEquals("bar", sw.toString()); try { // try just one arbitrary one; all should fail similarly p.getLongValue(); fail("Should not pass"); } catch (StreamReadException e) { _verifyNonNumberTypeException(e, "VALUE_STRING"); } p.close(); assertTrue(p.isClosed()); _verifyGetNumberTypeFail(p, "null"); // and then some other accessors p = MAPPER.createParser("foo = bar"); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertEquals("foo", p.nextName()); assertEquals("bar", p.nextStringValue()); assertNull(p.nextName()); p.close(); // one more thing, verify handling of non-binary p = MAPPER.createParser("foo = bar"); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); try { p.getBinaryValue(); fail("Should not pass"); } catch (StreamReadException e) { verifyException(e, "cannot access as binary"); } try { p.getDoubleValue(); fail("Should not pass"); } catch (StreamReadException e) { _verifyNonNumberTypeException(e, "PROPERTY_NAME"); } assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertFalse(p.isClosed()); assertNull(p.nextToken()); p.close(); } @Test public void testStreamingGeneration() throws Exception { StringWriter strw = new StringWriter(); JsonGenerator gen = MAPPER.createGenerator(strw); Object target = gen.streamWriteOutputTarget(); assertTrue(target instanceof Writer); gen.writeStartObject(); gen.writeBooleanProperty("flagTrue", true); gen.writeBooleanProperty("flagFalse", false); gen.writeNullProperty("null"); gen.writeNumberProperty("long", 10L); gen.writeNumberProperty("int", 10); gen.writeNumberProperty("double", 0.25); gen.writeNumberProperty("float", 0.5f); gen.writeNumberProperty("decimal", BigDecimal.valueOf(0.125)); gen.writeName(new SerializedString("bigInt")); gen.writeNumber(BigInteger.valueOf(123)); gen.writeName("numString"); gen.writeNumber("123.0"); gen.writeName("charString"); gen.writeString(new char[] { 'a', 'b', 'c' }, 1, 2); gen.writeName("arr"); gen.writeStartArray(); TokenStreamContext ctxt = gen.streamWriteContext(); String path = ctxt.toString(); assertTrue(ctxt instanceof JPropWriteContext); // Note: this context gives full path, unlike many others assertEquals("/arr/0", path); gen.writeEndArray(); gen.writeEndObject(); assertFalse(gen.isClosed()); gen.flush(); gen.close(); String props = strw.toString(); // Plus read back for fun Map stuff = MAPPER.readValue(props, Map.class); assertEquals(11, stuff.size()); assertEquals("10", stuff.get("long")); } @Test public void testStreamingGenerationRaw() throws Exception { StringWriter strw = new StringWriter(); JsonGenerator gen = MAPPER.createGenerator(strw); String COMMENT = "# comment!\n"; gen.writeRaw(COMMENT); gen.writeRaw(new SerializedString(COMMENT)); gen.writeRaw(COMMENT, 0, COMMENT.length()); gen.writeRaw('#'); gen.writeRaw('\n'); gen.writeStartObject(); gen.writeBooleanProperty("enabled", true); gen.writeEndObject(); gen.close(); assertEquals(COMMENT + COMMENT + COMMENT + "#\nenabled=true\n", strw.toString()); // Plus read back for fun Map stuff = MAPPER.readValue(strw.toString(), Map.class); assertEquals(1, stuff.size()); assertEquals("true", stuff.get("enabled")); } @Test public void testStreamingLongRaw() throws Exception { StringWriter strw = new StringWriter(); JsonGenerator gen = MAPPER.createGenerator(strw); StringBuilder sb = new StringBuilder(); sb.append("# "); for (int i = 0; i < 12000; ++i) { sb.append('a'); } gen.writeRaw(sb.toString()); gen.close(); assertEquals(sb.toString(), strw.toString()); } // In Jackson 3.x, non-Number token should return null for parser.getNumberType() // (no exception) private void _verifyGetNumberTypeFail(JsonParser p, String token) throws Exception { assertNull(p.getNumberType()); } private void _verifyNonNumberTypeException(Exception e, String token) throws Exception { verifyException(e, "Current token ("+token+") not numeric, cannot use numeric"); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/StreamClosingTest.java ================================================ package tools.jackson.dataformat.javaprop; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadFeature; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.javaprop.testutil.CloseStateInputStream; import tools.jackson.dataformat.javaprop.testutil.CloseStateReader; import static org.junit.jupiter.api.Assertions.*; @SuppressWarnings("resource") public class StreamClosingTest extends ModuleTestBase { // for [dataformats-text#179] public static class Bean179 { public int value; @Override public String toString() { return "[value: "+value+"]"; } } private final ObjectMapper PROPS_MAPPER = newPropertiesMapper(); @Test public void testInputStreamClosing() throws Exception { // by default, SHOULD close it: CloseStateInputStream in = CloseStateInputStream.forString("value = 42"); assertFalse(in.closed); Bean179 result = PROPS_MAPPER.readValue(in, Bean179.class); assertNotNull(result); assertTrue(in.closed); // but not if reconfigured in = CloseStateInputStream.forString("value = 42"); assertFalse(in.closed); result = PROPS_MAPPER.readerFor(Bean179.class) .without(StreamReadFeature.AUTO_CLOSE_SOURCE) .readValue(in); assertNotNull(result); assertTrue(in.closed); } @Test public void testReaderClosing() throws Exception { // by default, SHOULD close it: CloseStateReader r = CloseStateReader.forString("value = 42"); assertFalse(r.closed); Bean179 result = PROPS_MAPPER.readValue(r, Bean179.class); assertNotNull(result); assertTrue(r.closed); // but not if reconfigured r = CloseStateReader.forString("value = 42"); assertFalse(r.closed); result = PROPS_MAPPER.readerFor(Bean179.class) .without(StreamReadFeature.AUTO_CLOSE_SOURCE) .readValue(r); assertNotNull(result); assertTrue(r.closed); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/TestVersions.java ================================================ package tools.jackson.dataformat.javaprop; import java.io.ByteArrayOutputStream; import java.io.IOException; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class TestVersions extends ModuleTestBase { @Test public void testMapperVersions() throws IOException { // Test shared instance for funsies ObjectMapper mapper = JavaPropsMapper.shared(); assertVersion(mapper.tokenStreamFactory()); JavaPropsParser p = (JavaPropsParser) mapper.createParser("abc=foo"); assertVersion(p); JsonGenerator gen = mapper.createGenerator(new ByteArrayOutputStream()); assertVersion(gen); p.close(); gen.close(); } /* /********************************************************** /* Helper methods /********************************************************** */ private void assertVersion(Versioned vers) { assertNotNull(vers); assertEquals(PackageVersion.VERSION, vers.version()); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/WriteContextResetTest.java ================================================ package tools.jackson.dataformat.javaprop; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.javaprop.io.JPropWriteContext; import static org.junit.jupiter.api.Assertions.assertTrue; /** * Test to verify that {@link JPropWriteContext} properly resets * internal state when child contexts are recycled. */ public class WriteContextResetTest { // Verify that recycled child contexts reset _gotName properly, // so that writeName() works on the first call after recycling. @Test public void testGotNameResetOnContextRecycling() { JPropWriteContext root = JPropWriteContext.createRootContext(0); // Create a child object context and write a name (sets _gotName = true) JPropWriteContext child1 = root.createChildObjectContext(null, 0); assertTrue(child1.writeName("key1")); // Leave _gotName = true by not calling writeValue() // Recycle the child as a new object context JPropWriteContext child2 = root.createChildObjectContext(null, 0); // writeName() must succeed — _gotName should have been reset to false assertTrue(child2.writeName("key2"), "_gotName was not reset when context was recycled"); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/constraints/DeeplyNestedPropsReadWriteTest.java ================================================ package tools.jackson.dataformat.javaprop.constraints; import tools.jackson.core.*; import tools.jackson.core.exc.StreamConstraintsException; import org.junit.jupiter.api.Test; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.node.ObjectNode; import tools.jackson.dataformat.javaprop.JavaPropsFactory; import tools.jackson.dataformat.javaprop.JavaPropsMapper; import tools.jackson.dataformat.javaprop.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; public class DeeplyNestedPropsReadWriteTest extends ModuleTestBase { private final JavaPropsMapper PROPS_MAPPER_VANILLA = newPropertiesMapper(); private final JavaPropsMapper PROPS_MAPPER_CONSTR = new JavaPropsMapper( JavaPropsFactory.builder() // Use higher limit for writing to simplify testing setup .streamReadConstraints(StreamReadConstraints.builder() .maxNestingDepth(10).build()) .streamWriteConstraints(StreamWriteConstraints.builder() .maxNestingDepth(12).build()) .build() ); @Test public void testDeepNestingRead() throws Exception { final String DOC = PROPS_MAPPER_CONSTR.writeValueAsString(createDeepNestedDoc(11)); try (JsonParser p = PROPS_MAPPER_CONSTR.createParser(DOC)) { _testDeepNestingRead(p); } } private void _testDeepNestingRead(JsonParser p) throws Exception { try { while (p.nextToken() != null) { } fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { assertEquals("Document nesting depth (11) exceeds the maximum allowed (10, from `StreamReadConstraints.getMaxNestingDepth()`)", e.getMessage()); } } @Test public void testDeepNestingWrite() throws Exception { final JsonNode docRoot = createDeepNestedDoc(13); try { PROPS_MAPPER_CONSTR.writeValueAsString(docRoot); fail("Should not pass"); } catch (StreamConstraintsException e) { assertEquals("Document nesting depth (13) exceeds the maximum allowed (12, from `StreamWriteConstraints.getMaxNestingDepth()`)", e.getMessage()); } } @Test public void testDeeplyNestedReadVanilla() throws Exception { final int depth = 1500; final String doc = createDeepNestedString(depth); try (JsonParser p = PROPS_MAPPER_VANILLA.createParser(doc)) { while (p.nextToken() != null) { } fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { String exceptionPrefix = String.format("Document nesting depth (%d) exceeds the maximum allowed", StreamReadConstraints.DEFAULT_MAX_DEPTH + 1); assertTrue(e.getMessage().startsWith(exceptionPrefix), "unexpected exception message: " + e.getMessage()); } } @Test public void testDeeplyNestedReadWithUnconstrainedMapper() throws Exception { final int depth = 1500; final String doc = createDeepNestedString(depth); final JavaPropsFactory factory = JavaPropsFactory.builder() .streamReadConstraints(StreamReadConstraints.builder().maxNestingDepth(Integer.MAX_VALUE).build()) .build(); final ObjectMapper mapper = propertiesMapperBuilder(factory).build(); try (JsonParser p = mapper.createParser(doc)) { while (p.nextToken() != null) { } } } private JsonNode createDeepNestedDoc(final int depth) throws Exception { final ObjectNode root = PROPS_MAPPER_VANILLA.createObjectNode(); ObjectNode curr = root; for (int i = 0; i < depth; ++i) { curr = curr.putObject("nested"+i); } curr.put("value", 42); return root; } private String createDeepNestedString(final int depth) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < depth; i++) { if (i > 1) sb.append('.'); sb.append('a'); } sb.append("=val"); return sb.toString(); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/constraints/PropsReadConstraintsTest.java ================================================ package tools.jackson.dataformat.javaprop.constraints; import java.util.Properties; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.dataformat.javaprop.JavaPropsFactory; import tools.jackson.dataformat.javaprop.JavaPropsMapper; import tools.jackson.dataformat.javaprop.ModuleTestBase; import static org.junit.jupiter.api.Assertions.fail; /** * Tests for {@link StreamReadConstraints} enforcement of max name length * and max String value length in Properties parsing. * * @see [dataformats-text#636] */ public class PropsReadConstraintsTest extends ModuleTestBase { private final static int MAX_NAME_LEN = 100; private final static int MAX_STRING_LEN = 200; private final JavaPropsMapper NAME_LIMIT_MAPPER = new JavaPropsMapper( JavaPropsFactory.builder() .streamReadConstraints(StreamReadConstraints.builder() .maxNameLength(MAX_NAME_LEN) .build()) .build()); private final JavaPropsMapper STRING_LIMIT_MAPPER = new JavaPropsMapper( JavaPropsFactory.builder() .streamReadConstraints(StreamReadConstraints.builder() .maxStringLength(MAX_STRING_LEN) .build()) .build()); @Test public void testNameTooLong() throws Exception { final String longName = "a".repeat(MAX_NAME_LEN + 50); Properties props = new Properties(); props.put(longName, "value"); try { NAME_LIMIT_MAPPER.readPropertiesAs(props, Object.class); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "Name length"); verifyException(e, "exceeds the maximum allowed"); } } @Test public void testNameWithinLimit() throws Exception { final String name = "a".repeat(MAX_NAME_LEN); Properties props = new Properties(); props.put(name, "value"); // Should complete without exception NAME_LIMIT_MAPPER.readPropertiesAs(props, Object.class); } @Test public void testStringValueTooLong() throws Exception { final String longValue = "a".repeat(MAX_STRING_LEN + 50); Properties props = new Properties(); props.put("key", longValue); try { STRING_LIMIT_MAPPER.readPropertiesAs(props, Object.class); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "String value length"); verifyException(e, "exceeds the maximum allowed"); } } @Test public void testStringValueWithinLimit() throws Exception { final String value = "a".repeat(MAX_STRING_LEN); Properties props = new Properties(); props.put("key", value); // Should complete without exception STRING_LIMIT_MAPPER.readPropertiesAs(props, Object.class); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/deser/FuzzPropsReadTest.java ================================================ package tools.jackson.dataformat.javaprop.deser; import tools.jackson.core.exc.StreamReadException; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.JsonNode; import tools.jackson.dataformat.javaprop.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; // Tests for things found via https://oss-fuzz.com/ public class FuzzPropsReadTest extends ModuleTestBase { private final ObjectMapper MAPPER = newPropertiesMapper(); // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50053 @Test public void testInvalidUnicodeEscape50053() throws Exception { String INPUT = "\\u"; try { MAPPER.readTree(INPUT); fail("Should not pass"); } catch (StreamReadException e) { verifyException(e, "Invalid content, problem:"); verifyException(e, "Malformed \\uxxxx encoding"); } } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=51247 @Test public void testDoubleSeparators51247() throws Exception { // Threw IndexOutOfBoundsException since counter was not cleared // Relies on the default path-separator-escape being null character // (for some reason not reproducible with different escape chars?) JsonNode n = MAPPER.readTree("\0\0.."); assertEquals(a2q("{'\\u0000':{'':{'':''}}}"), n.toString()); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/deser/convert/CoerceToBooleanTest.java ================================================ package tools.jackson.dataformat.javaprop.deser.convert; import java.io.IOException; import java.util.concurrent.atomic.AtomicBoolean; import org.junit.jupiter.api.Test; import tools.jackson.databind.*; import tools.jackson.databind.cfg.CoercionAction; import tools.jackson.databind.cfg.CoercionInputShape; import tools.jackson.databind.exc.InvalidFormatException; import tools.jackson.databind.type.LogicalType; import tools.jackson.dataformat.javaprop.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; // 2020-12-18, tatu: Modified from "jackson-databind" version: Properties // backend MUST NOT prevent coercion from String since Properties // values are fundamentally textual and only have String values public class CoerceToBooleanTest extends ModuleTestBase { static class BooleanPrimitivePOJO { public boolean value; public void setValue(boolean v) { value = v; } } static class BooleanWrapperPOJO { public Boolean value; public void setValue(Boolean v) { value = v; } } static class AtomicBooleanWrapper { public AtomicBoolean value; public void setValue(AtomicBoolean v) { value = v; } } private final ObjectMapper DEFAULT_MAPPER = newPropertiesMapper(); private final ObjectMapper MAPPER_STRING_TO_BOOLEAN_FAIL = propertiesMapperBuilder() .withCoercionConfig(LogicalType.Boolean, cfg -> cfg.setCoercion(CoercionInputShape.String, CoercionAction.Fail)) .build(); private final ObjectMapper MAPPER_EMPTY_TO_BOOLEAN_FAIL = propertiesMapperBuilder() .withCoercionConfig(LogicalType.Boolean, cfg -> cfg.setCoercion(CoercionInputShape.EmptyString, CoercionAction.Fail)) .build(); /* /********************************************************** /* Test methods: default, legacy configuration, from String /********************************************************** */ // for [databind#403] @Test public void testEmptyStringFailForBooleanPrimitive() throws IOException { final ObjectReader reader = MAPPER_EMPTY_TO_BOOLEAN_FAIL .readerFor(BooleanPrimitivePOJO.class); try { reader.readValue("value:\n"); fail("Expected failure for boolean + empty String"); } catch (InvalidFormatException e) { verifyException(e, "Cannot coerce empty String"); verifyException(e, "to `boolean` value"); } } @Test public void testDefaultStringToBooleanCoercionOk() throws Exception { _verifyStringToBooleanOk(DEFAULT_MAPPER); } /* /********************************************************** /* Test methods: CoercionConfig, from String /********************************************************** */ @Test public void testStringToBooleanOkDespiteCoercionConfig() throws Exception { _verifyStringToBooleanOk(MAPPER_STRING_TO_BOOLEAN_FAIL); } /* /********************************************************** /* Verification /********************************************************** */ public void _verifyStringToBooleanOk(ObjectMapper mapper) throws Exception { // first successful coercions, basic types, some variants assertEquals(true, _verifyCoerceSuccess(mapper, "value: true", BooleanPrimitivePOJO.class).value); assertEquals(false, _verifyCoerceSuccess(mapper, "value: false", BooleanPrimitivePOJO.class).value); assertEquals(true, _verifyCoerceSuccess(mapper, "value: True", BooleanPrimitivePOJO.class).value); assertEquals(false, _verifyCoerceSuccess(mapper, "value: False", BooleanPrimitivePOJO.class).value); assertEquals(Boolean.TRUE, _verifyCoerceSuccess(mapper, "value: true", BooleanWrapperPOJO.class).value); assertEquals(Boolean.FALSE, _verifyCoerceSuccess(mapper, "value: false", BooleanWrapperPOJO.class).value); assertEquals(Boolean.TRUE, _verifyCoerceSuccess(mapper, "value: True", BooleanWrapperPOJO.class).value); assertEquals(Boolean.FALSE, _verifyCoerceSuccess(mapper, "value: False", BooleanWrapperPOJO.class).value); // and then Special boolean derivatives: AtomicBooleanWrapper abw = _verifyCoerceSuccess(mapper, "value: true", AtomicBooleanWrapper.class); assertTrue(abw.value.get()); abw = _verifyCoerceSuccess(mapper, "value: false", AtomicBooleanWrapper.class); assertFalse(abw.value.get()); } /* /********************************************************** /* Other helper methods /********************************************************** */ private T _verifyCoerceSuccess(ObjectMapper mapper, String input, Class type) throws IOException { return mapper.readerFor(type) .readValue(input); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/deser/convert/DefaultFromEmptyCoercionsTest.java ================================================ package tools.jackson.dataformat.javaprop.deser.convert; import java.util.*; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.ObjectReader; import tools.jackson.dataformat.javaprop.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; // 09-Apr-2021, tatu: Since Properties format has very loose typing // many coercions are needed and are enabled by default. Let's // verify that "from Empty String" cases work for a full set of // things, as rough equivalent of getting a typed `null`. // Note that this is similar to handling of XML format and probably // many other formats, with notable exceptions of "more typed" // JSON and YAML. public class DefaultFromEmptyCoercionsTest extends ModuleTestBase { static class SomePrimitives { public int i = 9; public long l = -123L; public double d = -0.5; } static class SomeWrappers { public Integer i = Integer.valueOf(3); public Long l = Long.valueOf(7L); public Double d = Double.valueOf(0.25); } static class StringBean { public String str = "foobar"; } static class SomeContainers { public int[] ints; public Collection strings; public List list; public Map map; } private final ObjectMapper DEFAULT_MAPPER = newPropertiesMapper(); /* /********************************************************************** /* Test methods: JDK types /********************************************************************** */ @Test public void testJDKPrimitives() throws Exception { SomePrimitives p; final ObjectReader r = DEFAULT_MAPPER.readerFor(SomePrimitives.class); assertNotNull(p = r.readValue("i: 13")); assertEquals(13, p.i); assertNotNull(p = r.readValue("i: ")); assertEquals(0, p.i); assertNotNull(p = r.readValue("l: -999")); assertEquals(-999L, p.l); assertNotNull(p = r.readValue("l: ")); assertEquals(0L, p.l); assertNotNull(p = r.readValue("d: 2.25")); assertEquals(2.25, p.d); assertNotNull(p = r.readValue("d: ")); assertEquals((double) 0, p.d); } @Test public void testJDKWrappers() throws Exception { SomeWrappers w; final ObjectReader r = DEFAULT_MAPPER.readerFor(SomeWrappers.class); // 09-Apr-2021, tatu: Defaults to "Empty" for all, including wrappers; // some users may want to change defaults to coerce into `null` instead assertNotNull(w = r.readValue("i: 13")); assertEquals(Integer.valueOf(13), w.i); assertNotNull(w = r.readValue("i: ")); assertEquals(Integer.valueOf(0), w.i); assertNotNull(w = r.readValue("l: -999")); assertEquals(Long.valueOf(-999L), w.l); assertNotNull(w = r.readValue("l: ")); assertEquals(Long.valueOf(0L), w.l); assertNotNull(w = r.readValue("d: 2.25")); assertEquals(Double.valueOf(2.25), w.d); assertNotNull(w = r.readValue("d: ")); assertEquals(Double.valueOf(0), w.d); } @Test public void testJDKStringTypes() throws Exception { StringBean v; final ObjectReader r = DEFAULT_MAPPER.readerFor(StringBean.class); // 09-Apr-2021, tatu: I _think_ leading space must be trimmed, whereas trailing // must not? assertNotNull(v = r.readValue("str: value ")); assertEquals("value ", v.str); assertNotNull(v = r.readValue("str: \n")); assertEquals("", v.str); } @Test public void testJDKContainerTypes() throws Exception { SomeContainers w; final ObjectReader r = DEFAULT_MAPPER.readerFor(SomeContainers.class); // Assumption: with nothing to read, should remain `null`; explicit // empty String -> empty assertNotNull(w = r.readValue("")); assertNull(w.ints); assertNull(w.strings); assertNull(w.list); assertNull(w.map); assertNotNull(w = r.readValue("ints: ")); assertNotNull(w.ints); assertEquals(0, w.ints.length); assertNotNull(w = r.readValue("strings: ")); assertNotNull(w.strings); assertEquals(0, w.strings.size()); assertNotNull(w = r.readValue("list: ")); assertNotNull(w.list); assertEquals(0, w.list.size()); assertNotNull(w = r.readValue("map: ")); assertNotNull(w.map); assertEquals(0, w.map.size()); } /* /********************************************************************** /* Test methods: user-defined /********************************************************************** */ @Test public void testPOJOs() throws Exception { final ObjectReader r = DEFAULT_MAPPER.readerFor(Rectangle.class); Rectangle rect; // First, empty content, resulting in empty instance rect = r.readValue("\n"); assertNotNull(rect); assertNull(rect.topLeft); assertNull(rect.bottomRight); // Then empty String for one POJO-property, not the other rect = r.readValue("topLeft: \n"); assertNotNull(rect); assertNotNull(rect.topLeft); assertEquals(0, rect.topLeft.x); assertEquals(0, rect.topLeft.y); assertNull(rect.bottomRight); rect = r.readValue("bottomRight: \n"); assertNotNull(rect); assertNull(rect.topLeft); assertNotNull(rect.bottomRight); assertEquals(0, rect.bottomRight.x); assertEquals(0, rect.bottomRight.y); } /* /********************************************************************** /* Helper methods /********************************************************************** */ } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/filter/StreamingDecoratorsTest.java ================================================ package tools.jackson.dataformat.javaprop.filter; import java.io.*; import java.util.LinkedHashMap; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.*; import tools.jackson.dataformat.javaprop.*; import tools.jackson.dataformat.javaprop.testutil.PrefixInputDecorator; import tools.jackson.dataformat.javaprop.testutil.PrefixOutputDecorator; import static org.junit.jupiter.api.Assertions.assertEquals; public class StreamingDecoratorsTest extends ModuleTestBase { @SuppressWarnings("unchecked") @Test public void testInputDecorators() throws IOException { final byte[] DOC = utf8("secret=mum\n"); final ObjectMapper mapper = propertiesMapperBuilder( propertiesFactoryBuilder().inputDecorator(new PrefixInputDecorator(DOC)) .build()) .build(); Map value = mapper.readValue(utf8("value=foo\n"), Map.class); assertEquals(2, value.size()); assertEquals("foo", value.get("value")); assertEquals("mum", value.get("secret")); // and then via Reader as well value = mapper.readValue(new StringReader("value=xyz\n"), Map.class); assertEquals(2, value.size()); assertEquals("xyz", value.get("value")); assertEquals("mum", value.get("secret")); } @SuppressWarnings("unchecked") @Test public void testOutputDecorators() throws IOException { final byte[] DOC = utf8("prefix=p\n"); final ObjectMapper mapper = propertiesMapperBuilder( propertiesFactoryBuilder().outputDecorator(new PrefixOutputDecorator(DOC)) .build()) .build(); final Map input = new LinkedHashMap<>(); input.put("key", "value"); ByteArrayOutputStream bytes = new ByteArrayOutputStream(); mapper.writeValue(bytes, input); Map output = mapper.readValue(bytes.toByteArray(), Map.class); assertEquals(2, output.size()); assertEquals("value", output.get("key")); assertEquals("p", output.get("prefix")); // and same with char-backed too StringWriter sw = new StringWriter(); mapper.writeValue(sw, input); output = mapper.readValue(bytes.toByteArray(), Map.class); assertEquals(2, output.size()); assertEquals("value", output.get("key")); assertEquals("p", output.get("prefix")); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/ser/dos/CyclicPropsDataSerTest.java ================================================ package tools.jackson.dataformat.javaprop.ser.dos; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.dataformat.javaprop.JavaPropsMapper; import tools.jackson.dataformat.javaprop.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; /** * Simple unit tests to verify that we fail gracefully if you attempt to serialize * data that is cyclic (eg a list that contains itself). */ public class CyclicPropsDataSerTest extends ModuleTestBase { private final JavaPropsMapper MAPPER = newPropertiesMapper(); @Test public void testListWithSelfReference() throws Exception { List list = new ArrayList<>(); list.add(list); try { MAPPER.writeValueAsString(list); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { String exceptionPrefix = String.format("Document nesting depth (%d) exceeds the maximum allowed", StreamWriteConstraints.DEFAULT_MAX_DEPTH + 1); assertTrue(e.getMessage().startsWith(exceptionPrefix), "JsonMapping" + "Exception message is as expected?"); } } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/CloseStateInputStream.java ================================================ package tools.jackson.dataformat.javaprop.testutil; import java.io.*; public class CloseStateInputStream extends FilterInputStream { public boolean closed = false; public CloseStateInputStream(InputStream in) { super(in); } @Override public void close() throws IOException { closed = true; super.close(); } public static CloseStateInputStream forString(String input) throws IOException { return new CloseStateInputStream(new ByteArrayInputStream( input.getBytes("UTF-8"))); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/CloseStateReader.java ================================================ package tools.jackson.dataformat.javaprop.testutil; import java.io.*; public class CloseStateReader extends FilterReader { public boolean closed = false; public CloseStateReader(Reader r) { super(r); } @Override public void close() throws IOException { closed = true; super.close(); } public static CloseStateReader forString(String input) throws IOException { return new CloseStateReader(new StringReader(input)); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/PrefixInputDecorator.java ================================================ package tools.jackson.dataformat.javaprop.testutil; import java.io.*; import java.nio.charset.StandardCharsets; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.InputDecorator; @SuppressWarnings("serial") public class PrefixInputDecorator extends InputDecorator { protected final byte[] _prefix; public PrefixInputDecorator(byte[] p) { _prefix = p; } @Override public InputStream decorate(IOContext ctxt, InputStream in) { if (in instanceof MySequenceInputStream) { throw new IllegalStateException("Trying to decorate MySequenceInputStream (double-decoration!)"); } return new MySequenceInputStream(new ByteArrayInputStream(_prefix), in); } @Override public InputStream decorate(IOContext ctxt, byte[] src, int offset, int length) { return decorate(ctxt, new ByteArrayInputStream(src, offset, length)); } @Override public Reader decorate(IOContext ctxt, Reader r) { if (r instanceof SequenceReader) { throw new IllegalStateException("Trying to decorate SequenceReader (double-decoration!)"); } String str = new String(_prefix, StandardCharsets.UTF_8); return new SequenceReader(new StringReader(str), r); } // sub-class only so we can check for "double decoration" static class MySequenceInputStream extends SequenceInputStream { public MySequenceInputStream(InputStream in1, InputStream in2) { super(in1, in2); } } static class SequenceReader extends Reader { protected Reader _reader1, _reader2; public SequenceReader(Reader r1, Reader r2) { _reader1 = r1; _reader2 = r2; } @Override public int read(char[] cbuf, int off, int len) throws IOException { if (_reader1 != null) { int count = _reader1.read(cbuf, off, len); if (count > 0) { return count; } _reader1 = null; } if (_reader2 != null) { int count = _reader2.read(cbuf, off, len); if (count > 0) { return count; } _reader2 = null; } return -1; } @Override public void close() throws IOException { _reader1 = _reader2 = null; } } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/PrefixOutputDecorator.java ================================================ package tools.jackson.dataformat.javaprop.testutil; import java.io.*; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.OutputDecorator; @SuppressWarnings("serial") public class PrefixOutputDecorator extends OutputDecorator { protected final byte[] _prefix; public PrefixOutputDecorator(byte[] p) { _prefix = p; } @Override public OutputStream decorate(IOContext ctxt, OutputStream out) { if (out instanceof BufferedOut) { throw new IllegalStateException("Trying to decorate `Buffered` (double-decoration!)"); } return new BufferedOut(out, _prefix); } @Override public Writer decorate(IOContext ctxt, Writer w) { try { for (byte b : _prefix) { w.write((char) (b & 0xFF)); } } catch (IOException e) { throw new RuntimeException(e); } return w; } static class BufferedOut extends FilterOutputStream { protected byte[] _prefix; public BufferedOut(OutputStream b, byte[] prefix) { super(b); _prefix = prefix; } @Override public void write(int b) throws IOException { if (_prefix != null) { out.write(_prefix); _prefix = null; } super.write(b); } @Override public void write(byte[] b, int offset, int len) throws IOException { if (_prefix != null) { out.write(_prefix); _prefix = null; } super.write(b, offset, len); } } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/failure/JacksonTestFailureExpected.java ================================================ package tools.jackson.dataformat.javaprop.testutil.failure; import org.junit.jupiter.api.extension.ExtendWith; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** *

    * Annotation used to indicate that a JUnit-5 based tests method is expected to fail. * *

    * When a test method is annotated with {@code @JacksonTestFailureExpected}, the * {@link JacksonTestFailureExpectedInterceptor} will intercept the test execution. * If the test passes, which is an unexpected behavior, the interceptor will throw an exception to fail the test, * indicating that the test was expected to fail but didn't. *

    * *

    Usage Example:

    * *
    
     *
     *     @Test
     *     @JacksonTestFailureExpected
     *     public void testFeatureNotYetImplemented() {
     *         // Test code that is expected to fail
     *     }
     * }
     * 
    * *

    * * @since 2.19 */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @ExtendWith(JacksonTestFailureExpectedInterceptor.class) public @interface JacksonTestFailureExpected { } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/failure/JacksonTestFailureExpectedInterceptor.java ================================================ package tools.jackson.dataformat.javaprop.testutil.failure; import org.junit.jupiter.api.extension.ExtensionContext; import org.junit.jupiter.api.extension.InvocationInterceptor; import org.junit.jupiter.api.extension.ReflectiveInvocationContext; import java.lang.reflect.Method; /** * Custom {@link InvocationInterceptor} that intercepts test method invocation. * To pass the test ***only if*** test fails with an exception, and fail the test otherwise. * * @since 2.19 */ public class JacksonTestFailureExpectedInterceptor implements InvocationInterceptor { @Override public void interceptTestMethod(Invocation invocation, ReflectiveInvocationContext invocationContext, ExtensionContext extensionContext) throws Throwable { try { invocation.proceed(); } catch (Throwable t) { // do-nothing, we do expect an exception return; } handleUnexpectePassingTest(invocationContext); } private void handleUnexpectePassingTest(ReflectiveInvocationContext invocationContext) { // Collect information we need Object targetClass = invocationContext.getTargetClass(); Object testMethod = invocationContext.getExecutable().getName(); //List arguments = invocationContext.getArguments(); // Create message String message = String.format("Test method %s.%s() passed, but should have failed", targetClass, testMethod); // throw exception throw new JacksonTestShouldFailException(message); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/failure/JacksonTestShouldFailException.java ================================================ package tools.jackson.dataformat.javaprop.testutil.failure; /** * Exception used to alert that a test is passing, but should be failing. * * WARNING : This only for test code, and should never be thrown from production code. * * @since 2.19 */ public class JacksonTestShouldFailException extends RuntimeException { private static final long serialVersionUID = 1L; public JacksonTestShouldFailException(String msg) { super(msg); } } ================================================ FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/util/JPropPathSplitterTest.java ================================================ package tools.jackson.dataformat.javaprop.util; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.javaprop.JavaPropsSchema; import tools.jackson.dataformat.javaprop.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; public class JPropPathSplitterTest extends ModuleTestBase { @Test public void testSplitters() { JPropPathSplitter sp = JPropPathSplitter.create(JavaPropsSchema.emptySchema()); // by default we should be getting general-purpose one assertEquals(JPropPathSplitter.FullSplitter.class, sp.getClass()); // but if disabling index: sp = JPropPathSplitter.create(JavaPropsSchema.emptySchema() .withoutIndexMarker()); assertEquals(JPropPathSplitter.CharPathOnlySplitter.class, sp.getClass()); // or, if disabling index and path sp = JPropPathSplitter.create(JavaPropsSchema.emptySchema() .withoutPathSeparator() .withoutIndexMarker()); assertEquals(JPropPathSplitter.NonSplitting.class, sp.getClass()); } } ================================================ FILE: release-notes/CREDITS ================================================ Here are people who have contributed to the development of Jackson JSON processor text dataformats project, version 3.x (version numbers in brackets indicate release in which the problem was fixed) (note: for older credits, check out `CREDITS-2.x`) Tatu Saloranta, tatu.saloranta@iki.fi: author Andrey Somov (asomov@github) * Contributed #106: (yaml) Upgrade to `snakeyaml-engine` (from classic `snakeyaml`) (3.0.0) * Contributed #568: (yaml) YAML - ScannerException on block scalar "\n" (3.1.0) * Contributed #590: (yaml) Upgrade to the latest version of SnakeYAML Engine (3.0.1) (3.1.0) Théo SZANTO (@indyteo) * Contributed #596: (yaml) Port `YAMLAnchorReplayingFactory` from 2.x and improve it to handle nested anchors (3.1.0) * Fixed #624: (yaml) Fix YAML anchor replaying parser producing invalid sequence of events when using the merge operator inside an anchor (3.1.1) Dmitry Bufistov (@dmitry-workato) * Requested #601: (csv) Reader should allow separating plain `nullValue` and quoted value `"nullValue"` (3.1.0) Alexander Filimanov (@lodik) * Contributed fix for #579: (csv): Incorrect detection of missed columns in header line if columns reordering is enabled (3.1.0) PJ Fanning (@pjfanning) * Fixed #608: (csv, toml, yaml) Fix issue with UTF-8 surrogate pair decoding (3.1.0) * Fixed #609: (yaml) Catch and rethrow yaml engine internal exception on generation (3.1.0) Henning Langhorst (@HenningLanghorst) * Reported #615: (csv) Feature `CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL` ignored (3.1.1) Rye Gleason (@ryegleason) * Reported #22: YAML anchors don't seem to work with `@JsonCreator` (3.2.0) Daniel Lovasko (@lovasko) * Requested #36 (yaml) Allow emitting YAML comments (3.2.0) Martin Winandy (@pmwmedia) * Reported #109: (yaml) `YAMLMapper` doesn't close output file if an error occurs (3.2.0) Alexander Tsvetkov (@nictas) * Requested #214: (yaml) Expose custom tags via `YAMLParser.getRawTag()` (3.2.0) David Xia (@davidxia) * Requested #276: (yaml) Support opting out of octal number interpretation (like "0444"); add `YAMLReadFeature.PARSE_OCTAL_NUMBERS` (3.2.0) Aleksandr Dubinsky (@almson) * Reported #292: (yaml) YAML anchor `UnresolvedForwardReference` with builder (3.2.0) Michael Carman (@mjcarman) * Contributed #623: Add support for YAML 1.2 non-finite (Infinite, -Infinite, NaN) numbers, Octal notation (3.2.0) Tomas Hugec (@polyoxidonium) * Reported #657: (csv) CSV header validation ignores `ACCEPT_CASE_INSENSITIVE_PROPERTIES`: add `CsvReadFeature.CASE_INSENSITIVE_HEADERS` (3.2.0) ================================================ FILE: release-notes/CREDITS-2.x ================================================ Here are people who have contributed to the development of Jackson JSON processor text dataformats project, version 2.x (version numbers in brackets indicate release in which the problem was fixed) (note: for older credits, check out release notes for 1.x versions) * Jonas Konrad (@yawkat): author of TOML module * Tatu Saloranta (@cowtowncoder): author of CSV, Properties and YAML modules * PJ Fanning (@pjfanning): active contributor to most modules -------------------------------------------------------------------------------- Credits for specific contributions -------------------------------------------------------------------------------- Simone Locci (pimuzzo@github) * Reported #51 (csv): Set of custom objects with `IGNORE_UNKNOWN` brokes silently csv (2.9.3) Mike Kobit (mkobit@github.com) * Reported #65 (yaml): `YAMLParser` incorrectly handles numbers with underscores in them (2.9.4) Fabrice Delhoste (spifd@github) * Reported #74 (properties): `JavaPropsMapper` issue deserializing multiple byte array properties (2.9.5) Thomas Hauk (thauk-copperleaf@github) * Contributed #84 (yaml): Add option to allow use of platform-linefeed (`YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS`) (2.9.6) Yegor Borovikov (yborovikov@gitub) * Reported #81 (yaml): Jackson 2.9.5, 2.9.6 incompatible with snakeyaml 1.20, 1.21 (2.9.7) Gowtam Lal (baconmania@github) * Reported #68: (yaml) When field names are reserved words, they should be written out with quotes (2.9.9) Dimitris Mandalidis (dmandalidis@github) * Reported #91: (properties) `JavaPropsGenerator#writeFieldName()` should not escape property keys (2.9.9) Henning Schmiedehausen (hgschmie@github) * Contributed #125: (csv) Add `CsvGenerator.Feature.ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR` for escaping non-printable characters in CSV output/input (2.9.9) Tanguy Leroux (tlrx@github) * Reported #90: Exception when decoding Jackson-encoded `Base64` binary value in YAML (2.10.0) Andrey Somov (asomov@github) * Contributed #101: Use latest SnakeYAML version 1.23 and get rid of deprecated methods (2.10.0) Alon Bar-Lev (alonbl@github) * Contributed #100: (properties) Add an option to specify properties prefix (2.10.0) Stehan Leh (stefanleh@github) * Reported #116: (yaml) Error handling "null" String when Feature.MINIMIZE_QUOTES is active (2.10.0) Guillaume Smaha (GuillaumeSmaha@github) * Contributed fix for #129: (yaml) Convert YAML string issue (2.10.0) Filip Hrisafov (filiphr@github) * Suggested #139: Support for Map in `JavaPropsMapper` (2.10.0) Matti Bickel (wundrian@github) * Reported #83: Update index of sequence context (2.10.0) Maarten Winkels (mwinkels@github) * Contributed fix for #83: Update index of sequence context (2.10.0) Vincent Boulaye (vboulaye@github) * Implemented #15: Add a `CsvParser.Feature.SKIP_EMPTY_LINES` to allow skipping empty rows (2.10.1) Piyush Kumar (piyushkumar13@github) * Reported #163: (yaml) `SequenceWriter` does not create multiple docs in a single yaml file (2.10.2) Francisco Colmenares (fcolmenarez@github) * Reported #179 (properties): `JavaPropsMapper` doesn't close the .properties file properly after reading (2.10.4) Jason van Zyl (jvanzyl@github) * Reported #184 (properties, yaml): ` jackson-databind` should not be optional/provided dependency for Properties, YAML modules (2.10.4) Jochen Schalanda (joschi@github) * Reported #187: Update to SnakeYAML to 1.26 (from 1.24) to address CVE-2017-18640 (2.10.4) Sergey Medelyan (smedelyan@github) * Reported #146: Jackson can't handle underscores in numbers (2.10.5) Conor Ward (conor-ward@github) * Contributed fix for #146: Jackson can't handle underscores in numbers (2.10.5) Tyler Carpenter-Rivers (tyler2cr@github) #7: Add `CsvParser.Feature.EMPTY_STRING_AS_NULL` to allow coercing empty Strings into `null` values (2.11.0) * Reported, constributed fix for #180: (yaml) YAMLGenerator serializes string with special chars unquoted when using `MINIMIZE_QUOTES` mode (2.11.0) Yohann BONILLO (ybonillo@github) * Reported #174: (csv) `CsvParser.Feature.SKIP_EMPTY_LINES` results in a mapping error (2.11.0) Damian Servin (Qnzvna@github) * Contributed #195 (csv) Adds schema creating csv schema with View (2.11.0) Rob Spoor (robtimus@github) * Reported #51: (yaml) `YAMLParser._locationFor()` does not use index available from `Mark`object of Event (2.11.1) Francesco Tumanischvili (frantuma@github) * Contibuted fix for #201: (yaml) Improve `MINIMIZE_QUOTES` handling to avoid quoting for some uses of `#` and `:` (2.11.1) Björn Michael (bjmi@github) * Reported #204: (csv) `CsvParser.Feature.ALLOW_TRAILING_COMMA` doesn't work with header columns (2.11.2) * Reported #285: (csv) Missing columns from header line (compare to `CsvSchema`) not detected when reordering columns (add `CsvParser.Feature.FAIL_ON_MISSING_HEADER_COLUMNS`) (2.14.0) Jesper Nielsen (jn-asseco@github) * Requested #175: (yaml) Add `YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR` to indent by 2 spaces (2.12.0) Damian Swiecki (dswiecki@github) * Contributed fix for #175: (yaml) Add `YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR` to indent by 2 spaces (2.12.0) Simon Levermann (sonOfRa@github) * Reported #199: (csv) Empty Lists can only be String-typed in CSV (2.12.0) Alex Heneveld (ahgittin@github) * Reported and proposed fix for #246: (yaml) Special characters shouldn't force double quoting for multi-line strings (2.12.3) James Wynn (jameswynn@github) * Reported #274: YAMLGenerator does not quote tilde (~) characters when MINIMIZE_QUOTES is enabled (2.12.4) Suminda Sirinath Salpitikorala Dharmasena (sirinath@github) * Requested #219: Add TOML (https://en.wikipedia.org/wiki/TOML) support (2.13.0) Jonas Konrad (yawkat@github) * Contributed #219: Add TOML (https://en.wikipedia.org/wiki/TOML) support (2.13.0) * Contributed #356: Fix TOML parse failure when number token hits buffer edge (2.14.2) Krzysztof Debski (kdebski85@github) #270: Should not quote with strict quoting when line starts with `#` but comments are disabled (2.13.0) PJ Fanning (pjfanning@github) #283: (csv) `CsvSchema.getColumnDesc()` returns unpaired square bracket when columns are empty (2.13.0) #314: (csv) Add fast floating-point parsing, generation support (2.14.0) #390: (yaml) Upgrade to Snakeyaml 2.0 (resolves CVE-2022-1471) (2.15.0) ... and many, many more not listed here Falk Hanisch (mrpiggi@github) #288: Caching conflict when creating CSV schemas with different views for the same POJO (2.13.1) #308: (csv) `CsvMapper.typedSchemaForWithView()` with `DEFAULT_VIEW_INCLUSION` (2.13.2) #297: (csv) CSV schema caching POJOs with different views (2.14.0) Esteban Ginez (eginez@github) #306: (yaml) Error when generating/serializing keys with multilines and colon (2.13.2) Jim Talbut (Yaytay@github) #169: (properties) Need a way to escape dots in property keys (add path separator configuration) (2.14.0) Simon Dean (msmsimondean@github) * Requested #244: (yaml) Add `YAMLGenerator.Feature.ALLOW_LONG_KEYS` to allow writing keys longer than 128 characters (default) (2.14.0) Shauni Arima (ShauniArima@github) * Contributed #244: (yaml) Add `YAMLGenerator.Feature.ALLOW_LONG_KEYS` to allow writing keys longer than 128 characters (default) (2.14.0) Matteo Giordano (malteo@github) * Contributed fix for #352: Disabling `CsvParser.Feature.FAIL_ON_MISSING_HEADER_COLUMNS` has no effect (2.14.1) Axel Niklasson (axelniklasson@github) * Contributed #388: (yaml) Add `YAMLParser.Feature.PARSE_BOOLEAN_LIKE_WORDS_AS_STRINGS` to allow parsing "boolean" words as strings instead of booleans (2.15.0) Niels Basjes (nielsbasjes@github) * Contributed #415: (yaml) Use `LoaderOptions.allowDuplicateKeys` to enforce duplicate key detection (2.15.0) Peter Haumer (phaumer@github) * Reported #404: (yaml) Cannot serialize YAML with Deduction-Based Polymorphism (2.15.1) Arthur Chan (arthurscchan@github) * Contributed fix for #445: `YAMLParser` throws unexpected `NullPointerException` in certain number parsing cases (2.16.1) * Contributed fix for #454: (yaml) Unexpected `NumberFormatException` in `YAMLParser` (2.17.0) Mathieu Lavigne (@mathieu-lavigne) * Proposed #45 (and suggested implementation): (csv) Allow skipping ending line break (`CsvGenerator.Feature.WRITE_LINEFEED_AFTER_LAST_ROW`) (2.17.0) Michael Edgar (@MikeEdgar) * Contributed #465: (yaml) YAML: consider starting `#` and ending `:` as quotable characters (2.17.0) David Pujol (@PujolDavid) * Contributed #469: (csv) Allow CSV to differentiate between `null` and empty fields (foo,,bar vs. foo,"",bar) (2.18.0) Heiko Boettger (@HeikoBoettger) * Contributed #482: (yaml) Allow passing `ParserImpl` by a subclass or overwrite the events (2.18.0) * Contributed #502: (yaml) Add an optional extended parser subclass (`YAMLAnchorReplayingFactory`) able to inline anchors (2.19.0) Burdyug Pavel (@Pavel38l) * Reported #485: (csv) CSVDecoder: No Long and Int out of range exceptions (2.18.0) Henning Langhorst (@HenningLanghorst) * Reported #615 (csv): Feature `CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL` ignored when preceding column is quoted (2.18.7) Robert DiFalco (@rdifalco) * Reported #31: Header names seem to be trimmed (2.19.0) Gili Tzabari (@cowwoc) * Requested #554: (csv) Enforce, document thread-safety of `CsvSchema` (2.19.0) Sergio Delgado (@serandel) * Reported #154: (yaml) YAML file with no content throws `MismatchedInputException` when binding to Object type (POJO etc) (2.21.0) Dmitry Bufistov (@dmitry-workato) * Requested #601: (csv) Reader should allow separating plain `nullValue` and quoted value `"nullValue"` (2.22.0) ================================================ FILE: release-notes/CREDITS-old-csv.txt ================================================ Project: jackson-dataformat-csv Here are people who have contributed to development of this project: (version numbers in parenthesis indicate release in which the problem was fixed) Tatu Saloranta, tatu.saloranta@iki.fi: author Lior Lipshitz (from zazma.com) * Reported #14: Incorrect quoting of double-quotes for long String values that cross buffer boundary (2.1.5 / 2.2.0) Paul Magrath (Magrath@github) * Reported #33: CSV is written without column separators if first column is null (2.3.3) * Reported #38: Extra column delimiter added when column is escaped and follows empty column (2.3.4) Jason Dunkelberger (dirkraft@github) * Suggested #32: Allow disabling of quoteChar (2.4.0) Wei Li (wli600@github) * Contributed fix for 54: Encounter ArrayIndexOutOfBoundsException in the corner case delimiter or end-of-line happened to be the leading character of a segment buffer (2.4.4) Luke Nezda (nezda@github) * Suggested #56: Support comments (either via `CsvSchema`, or using std `JsonParser.Feature.ALLOW_YAML_COMMENTS. (requested by nezda@github) (2.5.0) David Navas (davidnavas@github) * Contributed #75: Support escapes at beginning of the file (2.5.3) sothmann@github) * Reported #83: Serializing List with null values leads to corrupt CSV (2.6.0) Jonathan Cheseaux (cheseaux@github) * Reported #90: Unexpected output with arrays starting with a null/empty element (2.6.4) Oliver Röss (cloudyday@github) * Reported #98: Escape char is not being escaped during serialization (2.6.4) Justo Ruiz Ferrer (jrferrer@github) * Contributed #89: Allow choice of using header-line declaration to reorder columns of explicit schema, with `CsvSchema.setReorderColumns` (2.7.0) Rob Baily (rob-baily@github) * Contributed fix for #93: CSV mapper does not support Views or filtering correctly for serialization (2.6.5) dharaburda@github) * Contributed fix for #100: trim spaces: don't trim/strip separator character (2.6.5) Nick Babcock (nickbabcock@github) * Contributed #97: Verify CSV headers are in the order as expected (added `strictHeaders` property in `CsvSchema`) (2.7.0) * Constributed #139: Add `CsvParser.Feature.ALLOW_TRAILING_COMMA` to allow enforcing strict handling (2.9.0) Brian Moriarty (morbrian@github) * Contributed #106: Null fields are always ignored when serializing list of objects (2.7.0) Peter Ansell (ansell@github) * Contributed fix for #128: Write out headers even if no data rows written (2.7.7) George Fraser (georgewfraser@github) * Contributed #127: Add `CsvGenerator.Feature.ALWAYS_QUOTE_EMPTY_STRINGS` to allow forced quoting of empty Strings. (2.9.0) Austin Sharp (sharpau@github) * Suggested #142: Add methods for appending columns of a `CsvSchema` into another (2.9.0) ================================================ FILE: release-notes/CREDITS-old-properties.txt ================================================ Project: jackson-dataformat-properties Here are people who have contributed to development of this project: (version numbers in parenthesis indicate release in which the problem was fixed) Tatu Saloranta, tatu.saloranta@iki.fi: author Jordi Sola (someth2say@github) * Reported #6: Null-check for JPropNode byName map (2.8.8) ================================================ FILE: release-notes/CREDITS-old-yaml.txt ================================================ Here are people who have contributed to development Jackson JSON process databind core component, version 2.x (version numbers in brackets indicate release in which the problem was fixed) (note: for older credits, check out release notes for 1.x versions) Tatu Saloranta, tatu.saloranta@iki.fi: author Shawn Smith: - Contributed [Issue-14]: Fix parsing of longs near MIN/MAX_INT, parsing of BigIntegers. (2.1.4) Łukasz Dywicki - Fixed #19: Change build to avoid OSGi dep to SnakeYAML (which is instead shaded in) (2.5.0) - Contributed #14: Fix parsing of longs near MIN/MAX_INT, parsing of BigIntegers. (2.1.4) Benson Margulies (benson-basis@github) - Fixed #27: OSGI bundle does not work due to shading (2.4.4) - Reported #30: `YamlFactory.writeValue(File, Object)` busted (2.4.5) - Contributed #50: Lack of SnakeYAML Resolver leaves some missing features (2.7.0) Ville Koskela (vjkoskela@github) - Requested #35: Add `YAMLGenerator.Feature.SPLIT_LINES` to allow controlling whether SnakeYAML splits longer text blocks with line breaks or not. (2.6.0) Geoff Bourne (itzg@github) - Contributed #38: Add MINIMIZE_QUOTES generator feature (2.7.0) Sebastian Herold (heroldus@github) - Reported #69: Problem to parse time values as string (2.7.7) James Baker (j-baker@github) - Reported, contributed fix for #70: UTF8Reader is unsafe if a Jackson-annotated class itself deserialises a Jackson-annotated class (2.7.8) Tanguy Leroux (tlrx@github) - Reported, contributed test, fix for #80: Fix UTF8Writer when used in same thread (2.7.9) Preston Gilchrist (prestongilchrist@github) - Contributed #65: Feature.MINIMIZE_QUOTES needs to write numbers as strings with quotes (2.8.2) Roland Huss (rhuss@github) - Reported #77, contributed fix: Boolean-like content of string must never be unquoted (2.8.4) - Contributed #76: Add `YAMLGenerator.Feature.LITERAL_BLOCK_STYLE` for String output (2.9.0) ================================================ FILE: release-notes/VERSION ================================================ Project: jackson-datatypes-text Modules: jackson-dataformat-csv jackson-dataformat-properties jackson-dataformat-yaml Versions 3.x (for earlier see VERSION-2.x) Contains streaming API format codec implementations for supported textual formats (except for xml which is in separate repo) as well as support for integration via `jackson-databind` (`ObjectMapper` subtype implementations) ------------------------------------------------------------------------ === Releases === ------------------------------------------------------------------------ 3.2.0 (not yet released) #9: (csv) Incorrect detection of `hasNextValue()` for simple iteration with `String[]` (fix by @cowtowncoder, w/ Claude code) #22: (yaml) YAML anchors don't seem to work with `@JsonCreator` (reported by Rye G) (fix by @cowtowncoder, w/ Claude code) #25: (yaml) Yaml anchor error when `@JsonSubTypes` used (reported by @mopsop) (fix by @cowtowncoder, w/ Claude code) #36 (yaml) Allow emitting YAML comments (requested by Daniel L) (fix by @cowtowncoder, w/ Claude code) #109: (yaml) `YAMLMapper` doesn't close output file if an error occurs (reported by Martin W) (fix by @cowtowncoder, w/ Claude code) #210: (csv) Quote strings with leading/trailing spaces in csv (`CsvWriteFeature.QUOTE_STRINGS_WITH_LEADING_TRAILING_WHITESPACE`) (requested by @sfzhi) (implemented by @cowtowncoder, w/ Claude code) #214: (yaml) Expose custom tags via `YAMLParser.getRawTag()` (requested by Alexander T) (fix by @cowtowncoder, w/ Claude code) #264: (csv) `CsvMapper` applies alphabetic Property Order for Java Records (reported by @alexpartsch) (fix by @cowtowncoder) #276: (yaml) Support opting out of octal number interpretation (like "0444"); add `YAMLReadFeature.PARSE_OCTAL_NUMBERS` (requested by David X) (fix by @cowtowncoder, w/ Claude code) #292: (yaml) YAML anchor `UnresolvedForwardReference` with builder (reported by Aleksandr D) (fix by @cowtowncoder, w/ Claude code) #327: (csv) Catch and report duplicate column names in header line (add `CsvReadFeature.FAIL_ON_DUPLICATE_HEADER_COLUMNS`) (fix by @cowtowncoder, w/ Claude code) #355: (csv) Allow mapping empty cells (columns) as "absent" properties (i.e. skip) by `CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_MISSING` (requested by @hosswald) (fix by @cowtowncoder, w/ Claude code) #368: (csv) Allow skipping csv rows with only empty values (line of commas) (requested by @GitXm123) (fix by @cowtowncoder, w/ Claude code) #623: (yaml) Add support for YAML 1.2 non-finite (Infinite, -Infinite, NaN) numbers, Octal notation (contributed by Michael C) #631: (csv) Add `CsvFactory.builder().maxQuoteCheckChars()` for configuring heuristic quoting check (fix by @cowtowncoder, w/ Claude code) #634: (csv) Support for `StreamReadConstraints.maxNameLength` for CSV parsing (fix by @cowtowncoder, w/ Claude code) #636: (yaml) Support for `StreamReadConstraints.maxNameLength` and `maxStringLength` for YAML parsing (fix by @cowtowncoder, w/ Claude code) #638: (properties) Support for `StreamReadConstraints.maxNameLength` and `maxStringLength` for Properties parsing (fix by @cowtowncoder, w/ Claude code) #643: (csv) `CsvParser` doesn't handle whitespace outside of quoted values correctly (reported by @tomdz) (fix by @cowtowncoder, w/ Claude code) #657: (csv) CSV header validation ignores `ACCEPT_CASE_INSENSITIVE_PROPERTIES`: add `CsvReadFeature.CASE_INSENSITIVE_HEADERS` (reported by Tomas H) (fix by @cowtowncoder, w/ Claude code) 3.1.2 (11-Apr-2026) No changes since 3.1.1 3.1.1 (27-Mar-2026) #615: (csv) Feature `CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL` ignored (reported by Henning L) #624: (yaml) Fix YAML anchor replaying parser producing invalid sequence of events when using the merge operator inside an anchor (fix by Théo S) 3.1.0 (23-Feb-2026) #479: (csv) `STRICT_CHECK_FOR_QUOTING` does not quote value that contains newline character (reported by @zhuhw) #568: (yaml) YAML - ScannerException on block scalar "\n" (reported by @benken-parasoft) (fix by Andrey S) #579: (csv): Incorrect detection of missed columns in header line if columns reordering is enabled (fix by Alexander F) #581: (csv, toml, yaml) Add `isEnabled()` methods for format-specific features to mappers #590: (yaml) Upgrade to the latest version of SnakeYAML Engine (3.0.1) (contributed by Andrey S) #596: (yaml) Port `YAMLAnchorReplayingFactory` from 2.x and improve it to handle nested anchors (contributed by Théo S) #601: (csv) Reader should allow separating plain `nullValue` and quoted value `"nullValue"` (requested by Dmitry B) #604: (csv) Remove `CsvParser.enable()`/`.disable()`/`.configure()` (reduce mutability) #608: (csv, toml, yaml) Fix issue with UTF-8 surrogate pair decoding (fixed by @pjfanning) #609: (yaml) Catch and rethrow yaml engine internal exception on generation (fixed by @pjfanning) #613: (csv) Support `StreamReadConstraints.maxDocumentLength()` validation for CSV module 3.0.3 (28-Nov-2025) 3.0.2 (07-Nov-2025) 3.0.1 (21-Oct-2025) No changes since 3.0.0 3.0.0 (03-Oct-2025) #106: (yaml) Upgrade to `snakeyaml-engine` (from classic `snakeyaml`) (contributed by Andrey S) #215: (yaml) .without(YAMLGenerator.Feature.WRITE_DOC_START_MARKER) seems to be ignored (reported by @jdimeo) #320: Rename "com.fasterxml.jackson" -> "tools.jackson" #374: (csv) Should verify that escape character set if enabling `CsvGenerator.Feature.ESCAPE_QUOTE_CHAR_WITH_ESCAPE_CHAR` (suggested by @SebastianSolidwork) #510: (csv) JSTEP-8: rename `CsvParser.Feature` as `CsvReadFeature`, `CsvGenerator.Feature` as `CsvWriteFeature` #512: (yaml) JSTEP-8: rename `YAMLParser.Feature` as `YAMLReadFeature`, `YAMLGenerator.Feature` as `YAMLWriteFeature` #531: Change 3.0 to use `module-info.java` directly [JSTEP-11] - (csv) Remove `CsvMappingException` (replaced by `CsvRead-/-WriteException`) - Add `XxxMapper.shared()` methods for getting globally shared default instances - Minimum Java baseline: Java 17 - Properties module name now: "tools.jackson.dataformat.properties" (not "...javaprop") - (yaml) `snakeyaml-engine` to 2.10 (from 2.8) - Branch rename "master" -> "3.x" [JSTEP-12] ================================================ FILE: release-notes/VERSION-2.x ================================================ Project: jackson-datatypes-text Modules: jackson-dataformat-csv jackson-dataformat-properties (since 2.8) jackson-dataformat-toml (since 2.13) jackson-dataformat-yaml Active Maintainers: * Jonas Konrad (@yawkat): author of TOML module * Tatu Saloranta, tatu.saloranta@iki.fi: author of CSV, Properties and YAML modules ------------------------------------------------------------------------ === Releases === ------------------------------------------------------------------------ 2.22.0 (not yet released) #601: (csv) Reader should allow separating plain `nullValue` and quoted value `"nullValue"` (requested by Dmitry B) 2.21.1 (not yet released) #615: (csv) Feature `CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL` ignored when preceding column is quoted (reported by Henning L) 2.21.1 (22-Feb-2026) #610: (yaml) Snakeyaml 2.5 (from 2.4) 2.21.0 (18-Jan-2026) #10: (csv) Missing `null` writes when writing `Object[]` values (reported by @georgewfraser) (fix by @cowtowncoder, w/ Claude code) #154: (yaml) YAML file with no content throws `MismatchedInputException` when binding to Object type (POJO etc) (reported by Sergio D) (fix by @cowtowncoder, w/ Claude code) #479: (csv) `STRICT_CHECK_FOR_QUOTING` does not quote value that contains newline character (reported by @zhuhw) (fix by @cowtowncoder, w/ Claude code) 2.20.2 (19-Jan-2026) 2.20.1 (30-Oct-2025) No changes since 2.20.0 2.20.0 (28-Aug-2025) #497: (csv, toml, yaml): `UTF8Reader` throws "Need to move partially decoded character; buffer not modifiable" when read only one chinese char NOTE: csv part fixed in 2.19.0, toml and yaml in 2.20.0 (reported by @mrtaolili) #564: (csv) `CsvParser.getNumberValue()`, related, do not throw exception for non-numeric tokens - Generate SBOMs [JSTEP-14] 2.19.4 (29-Oct-2025) 2.19.3 (29-Oct-2025) 2.19.2 (18-Jul-2025) 2.19.1 (13-Jun-2025) No changes since 2.19.0 2.19.0 (24-Apr-2025) #31: (csv) Header names seem to be trimmed (reported by Robert D) #502: (yaml) Add an optional extended parser subclass (`YAMLAnchorReplayingFactory`) able to inline anchors (contributed by Heiko B) #523: JSTEP-10: Unify testing structure/tools (contributed by Joo-Hyuk K) #537: (yaml) Snakeyaml 2.4 (contributed by @pjfanning) #554: (csv) Enforce, document thread-safety of `CsvSchema` (requested by Gili T) 2.18.7 (not yet released) #615: (csv) Feature `CsvReadFeature.EMPTY_UNQUOTED_STRING_AS_NULL` ignored when preceding column is quoted (reported by Henning L) 2.18.6 (22-Feb-2026) #613: (csv) Support `StreamReadConstraints.maxDocumentLength()` validation for CSV module 2.18.5 (27-Oct-2025) 2.18.4 (06-May-2025) 2.18.3 (28-Feb-2025) 2.18.2 (27-Nov-2024) No changes since 2.18.1 2.18.1 (28-Oct-2024) #499: (yaml) SnakeYAML upgrade to 2.3 (contributed by @pjfanning) 2.18.0 (26-Sep-2024) #442: (csv) Allow use of "value decorators" (like `[` and `]` for arrays) for reading `CsvSchema` columns #468: (csv) Remove synchronization from `CsvMapper` (contributed by @pjfanning) #469: (csv) Allow CSV to differentiate between `null` and empty fields (foo,,bar vs. foo,"",bar) (contributed by David P) #482: (yaml) Allow passing `ParserImpl` by a subclass or overwrite the events (contributed by Heiko B) #483: (csv) Incorrect location of CSV errors (reported by @RafeArnold) #485: (csv) CSVDecoder: No Long and Int out of range exceptions (reported by Burdyug P) #495: (csv) Support use of `CsvValueDecorator` for writing CSV column values 2.17.3 (01-Nov-2024) #499: (yaml) SnakeYAML upgrade to 2.3 (contributed by @pjfanning) 2.17.2 (05-Jul-2024) #481: (csv) Fix issue in `setSchema()` (contributed by @pjfanning) 2.17.1 (04-May-2024) No changes since 2.17.0 2.17.0 (12-Mar-2024) #45: (csv) Allow skipping ending line break (`CsvGenerator.Feature.WRITE_LINEFEED_AFTER_LAST_ROW`) (proposed by Mathieu L) #454: (yaml) Unexpected `NumberFormatException` in `YAMLParser` (fix contributed by Arthur C) #456: (yaml) Support max Read/Write nesting depth limits (`StreamReadConstraints`/ `StreamWriteConstraints`) for YAML #465: (yaml) YAML: consider starting `#` and ending `:` as quotable characters (contributed by Michael E) 2.16.2 (09-Mar-2024) No changes since 2.16.1 2.16.1 (24-Dec-2023) #445: `YAMLParser` throws unexpected `NullPointerException` in certain number parsing cases (fix contributed by Arthur C) 2.16.0 (15-Nov-2023) #198: (csv) Support writing numbers as quoted Strings with `CsvGenerator.Feature.ALWAYS_QUOTE_NUMBERS` #422: (csv) Add `removeColumn()` method in `CsvSchema.Builder` #435: (yaml) Minor parsing validation miss: tagged as `int`, exception on underscore-only values #437: (yaml) Update SnakeYAML dependency to 2.2 #438: (csv) `BigInteger` and `BigDecimal` are quoted if `CsvGenerator.Feature.ALWAYS_QUOTE_STRINGS` enabled 2.15.4 (15-Feb-2024) No changes since 2.15.3 2.15.3 (12-Oct-2023) #400: (yaml) `IllegalArgumentException` when attempting to decode invalid UTF-8 surrogate by SnakeYAML (oss-fuzz 50431) #406: (yaml) NumberFormatException from SnakeYAML due to int overflow for corrupt YAML version #426: (yaml) Update to SnakeYAML 2.1 2.15.2 (30-May-2023) No changes since 2.15.1 2.15.1 (16-May-2023) #404: (yaml) Cannot serialize YAML with Deduction-Based Polymorphism (reported by Peter H) 2.15.0 (23-Apr-2023) #373: (yaml) Positive numbers with plus sign not quoted correctly with `ALWAYS_QUOTE_NUMBERS_AS_STRINGS` (requested by @dyadyaJora) #387: (toml) Stack overflow (50083) found by OSS-Fuzz (contributed by @yawkat) #388: (yaml) Add `YAMLParser.Feature.PARSE_BOOLEAN_LIKE_WORDS_AS_STRINGS` to allow parsing "boolean" words as strings instead of booleans (contributed by Axel N) #390: (yaml) Upgrade to Snakeyaml 2.0 (resolves CVE-2022-1471) (contributed by @pjfanning) #398 (tom) TOML: check nesting depth (CVE-2023-3894) (contributed by @pjfanning) #411: (toml) Fuzzer-found issue #57237 (buffer boundary condition) (contributed by @yawkat) #415: (yaml) Use `LoaderOptions.allowDuplicateKeys` to enforce duplicate key detection (contributed by Niels B) 2.14.3 (05-May-2023) #378: Some artifacts missing `NOTICE`, `LICENSE` files 2.14.2 (28-Jan-2023) #356: (toml) Fix TOML parse failure when number token hits buffer edge (fix by Jonas K) #370: (yaml) Replace use of deprecated constructor of SnakeYAML ParserImpl (contributed by Andrey S) 2.14.1 (21-Nov-2022) #352: Disabling `CsvParser.Feature.FAIL_ON_MISSING_HEADER_COLUMNS` has no effect (fix contributed by Matteo G) 2.14.0 (05-Nov-2022) #169: (properties) Need a way to escape dots in property keys (add path separator configuration) (contributed by Jim T) #244: (yaml) Add `YAMLGenerator.Feature.ALLOW_LONG_KEYS` to allow writing keys longer than 128 characters (default) (requested by Simon D) (contributed by Shauni A) #285: (csv) Missing columns from header line (compare to `CsvSchema`) not detected when reordering columns (add `CsvParser.Feature.FAIL_ON_MISSING_HEADER_COLUMNS`) (reported by Björn M) #297: (csv) CSV schema caching POJOs with different views (contributed by Falk H) #314: (csv) Add fast floating-point parsing, generation support (contributed by @pjfanning) #335/#346: (yaml) Update to SnakeYAML 1.33 (contributed by @pjfanning) #337: (yaml) Allow overriding of file size limit for YAMLParser by exposing SnakeYAML `LoaderOptions` (contributed by @pjfanning) #345: (yaml) Support configuring SnakeYAML DumperOptions directly (contributed by @pjfanning) #351: (csv) Make CSVDecoder use lazy parsing of BigInteger/BigDecimal * (yaml) Fixes to number decoding based on oss-fuzz findings 2.13.5 (23-Jan-2023) #343: Incorrect output buffer boundary check in `CsvEncoder` (reported by k163377@github) 2.13.4 (03-Sep-2022) #329: (yaml) Update to SnakeYAML 1.31 (contributed by @pjfanning) 2.13.3 (14-May-2022) No changes since 2.13.2 2.13.2 (06-Mar-2022) #303: (yaml) Update to SnakeYAML 1.30 (suggested by PJ Fanning) #306: (yaml) Error when generating/serializing keys with multilines and colon (reported by Esteban G) #308: (csv) `CsvMapper.typedSchemaForWithView()` with `DEFAULT_VIEW_INCLUSION` (contributed by Falk H) 2.13.1 (19-Dec-2021) #288: (csv) Caching conflict when creating CSV schemas with different views for the same POJO (reported by Falk H) 2.13.0 (30-Sep-2021) #219: (toml) Add TOML (https://en.wikipedia.org/wiki/TOML) support (requested by Suminda S; contributed by Jonas K) #240: (csv) Split `CsvMappingException` into `CsvReadException`/`CsvWriteException` #255: (properties) Ensure that empty String to null/empty works by default for Properties format #270: (csv) Should not quote with strict quoting when line starts with `#` but comments are disabled (contributed by Krzysztof D) #283: (csv) `CsvSchema.getColumnDesc()` returns unpaired square bracket when columns are empty (contributed by PJ Fanning) 2.12.7 (26-May-2022) 2.12.6 (15-Dec-2021) 2.12.5 (27-Aug-2021) No changes since 2.12.4 2.12.4 (06-Jul-2021) #274: YAMLGenerator does not quote tilde (~) characters when MINIMIZE_QUOTES is enabled (reported by James W) 2.12.3 (12-Apr-2021) #246: (yaml) Special characters shouldn't force double quoting for multi-line strings (fix proposed by Alex H) 2.12.2 (03-Mar-2021) - Need to export "com.fasterxml.jackson.dataformat.yaml.util" in `module-info.java` 2.12.1 (08-Jan-2021) No changes since 2.12.0 2.12.0 (29-Nov-2020) #71: (yaml) Hex number as an entry of an Object causing problem(s) with binding to POJO #130: (yaml) Empty String deserialized as `null` instead of empty string (reported by iulianrosca@github) #175: (yaml) Add `YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR` to indent by 2 spaces (requested by Jesper N; fix contributed by Damian S) #199: (csv) Empty Lists can only be String-typed in CSV (reported by Simon L) #222: (csv) `JsonParser.Feature.EMPTY_STRING_AS_NULL` does not work when text is parsed as `String[]` (reported by wkwkhautbois@github) #226: (yaml) Quote 'y'/'Y'/'n'/'N' as names too (to avoid problems with Boolean keys) (requested by pnepywoda@github) #229: (yaml) Allow configuring the way "must quote" is determined for property names, String values #231: (yaml) Typed object with anchor throws Already had POJO for id (note: actual fix in `jackson-annotations`) (reported by almson@github) #232: (yaml) Typed object throws "Missing type id" when annotated with @JsonIdentityInfo (reported by almson@github) #233: (yaml) Support decoding Binary, Octal and Hex numbers as integers - Add configurability of "YAML version generator is to follow" via "YAMLFactory.builder()" - SnakeYAML 1.26 -> 1.27 - Add Gradle Module Metadata (https://blog.gradle.org/alignment-with-gradle-module-metadata) 2.11.4 (12-Dec-2020) No changes since 2.11.3 2.11.3 (02-Oct-2020) #217: (csv) Should quote strings with line separator under STRICT_CHECK_FOR_QUOTING mode (reported, fix contributed by wkwkhautbois@github) 2.11.2 (02-Aug-2020) #204: (csv) `CsvParser.Feature.ALLOW_TRAILING_COMMA` doesn't work with header columns (reported by Björn M) 2.11.1 (25-Jun-2020) #51: (yaml) `YAMLParser._locationFor()` does not use index available from `Mark` object of Event (reported by Rob S) #201: (yaml) Improve `MINIMIZE_QUOTES` handling to avoid quoting for some use of `#` and `:` (contributed by Francesco T) 2.11.0 (26-Apr-2020) #7: (csv) Add `CsvParser.Feature.EMPTY_STRING_AS_NULL` to allow coercing empty Strings into `null` values (contributed by Tyler C-R) #115: (csv) JsonProperty index is not honored by CsvSchema builder -- actually fixed by [databind#2555] #174: (csv) `CsvParser.Feature.SKIP_EMPTY_LINES` results in a mapping error (reported by Yohann B) #180: (yaml) YAMLGenerator serializes string with special chars unquoted when using `MINIMIZE_QUOTES` mode (reported, fix contributed by Timo R) #191: (csv) `ArrayIndexOutOfBoundsException` when skipping empty lines, comments (reported by f-julian@github) #195 (csv) Adds schema creating csv schema with View (contributed by Damian S) 2.10.5 (21-Jul-2020) #146: (yaml) Jackson can't handle underscores in numbers (reported by Sergey M; fix contributed by Conor W) #204: (csv) `CsvParser.Feature.ALLOW_TRAILING_COMMA` doesn't work with header columns (reported by Björn M) 2.10.4 (03-May-2020) #178: Upgrade SnakeYAML to 1.26 (from 1.24) #179 (properties): `JavaPropsMapper` doesn't close the .properties file properly after reading (reported by Francisco C) #182 (yaml): Negative numbers not quoted correctly wrt `ALWAYS_QUOTE_NUMBERS_AS_STRINGS (reported, contributed fix by dpdevin@github) #184 (properties, yaml): ` jackson-databind` should not be optional/provided dependency for Properties, YAML modules (reported by Jason V-Z) #187: Update to SnakeYAML to 1.26 (from 1.24) to address CVE-2017-18640 (reported by Jochen S) 2.10.3 (03-Mar-2020) No changes since 2.10.2 2.10.2 (05-Jan-2020) #163: (yaml) `SequenceWriter` does not create multiple docs in a single yaml file (reported by Piyush K) #166: (csv) Incorrect `JsonParseException` Message for missing separator char (reported by gimiz@github) 2.10.1 (09-Nov-2019) #15: Add a `CsvParser.Feature.SKIP_EMPTY_LINES` to allow skipping empty rows (implemented by Vincent B) 2.10.0 (26-Sep-2019) #50: (yaml) Empty string serialized without quotes if MINIMIZE_QUOTES is enabled (reported by tim-palmer@github) #83: (yaml) Update index of sequence context (reported by Matti B; fix contributed by Maarten W) #100: (properties) Add an option to specify properties prefix (contributed by Alon B-L) #101: (yaml) Use latest SnakeYAML version 1.24 and get rid of deprecated methods (contributed by Andrey S) #108: (csv) Add new `CsvParser.Feature.ALLOW_COMMENTS` to replace use of deprecated `JsonParser.Feature.ALLOW_YAML_COMMENTS` #116: (yaml) Error handling "null" String when Feature.MINIMIZE_QUOTES is active (reported by Stefan L) #129: (yaml) Convert YAML string issue (fix contributed by Guillaume S) #134: (csv) `CSVParserBootstrapper` creates `UTF8Reader` which is incorrectly not auto-closed (reported by iuliu-b@github) #139: (properties) Support for Map in `JavaPropsMapper` (suggested by Filip H) #140: (yaml) Implement `JsonGenerator.writeFieldId(...)` for `YAMLGenerator` - Add JDK9+ module info using Moditect plugin 2.9.10 (21-Sep-2019) No changes since 2.9.9 2.9.9 (16-May-2019) #63: (yaml) `null` Object Id serialized as anchor for YAML (reported by jflefebvre06@github) #68: (yaml) When field names are reserved words, they should be written out with quotes (reported by Gowtam L) #90: (yaml) Exception when decoding Jackson-encoded `Base64` binary value in YAML (reported by Tanguy L) #91: (properties) `JavaPropsGenerator#writeFieldName()` should not escape property keys (reported by Dimitris M) #122: (csv) `readValues(null)` causes infinite loop (reported by andyeko@github) #123: (yaml) YAML Anchor, reference fails with simple example #124: (csv) Add `CsvGenerator.Feature.ESCAPE_CONTROL_CHARS_WITH_ESCAPE_CHAR` for escaping non-printable characters in CSV output/input (contributed by Henning S) 2.9.8 (15-Dec-2018) #99: `YamlGenerator` closes the target stream when configured not to (reported by moabck@github; fix contributed by vboulaye@github) 2.9.7 (19-Sep-2018) #81: Jackson 2.9.5, 2.9.6 incompatible with snakeyaml 1.20, 1.21 (reported by Yegor B) 2.9.6 (12-Jun-2018) #84 (yaml): Add option to allow use of platform-linefeed (`YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS`) (contributed by Thomas H) 2.9.5 (26-Mar-2018) #74 (properties): `JavaPropsMapper` issue deserializing multiple byte array properties (reported by Fabrice D) 2.9.4 (24-Jan-2018) #62 (yaml): SnakeYAML base64Coder is not OSGI exported (reported by mbechler@github) #65 (yaml): `YAMLParser` incorrectly handles numbers with underscores in them (reported by Mike K) 2.9.3 (09-Dec-2017) #39 (yaml): Binary data not recognized by YAML parser (repoted by tmoschou@github) #42 (csv): Add support for escaping double quotes with the configured escape character (contributed by frankgrimes97@github) #51 (csv): Set of custom objects with `IGNORE_UNKNOWN` brokes silently csv (reported by Simone L) #53: (yaml) Binary values written without type tag (reported by arulrajnet@github) 2.9.2 (14-Oct-2017) No changes since 2.9.1 2.9.1 (07-Sep-2017) #34: (yaml) Problem with `YAMLGenerator.Feature.INDENT_ARRAYS`, nested Objects (yaml): Upgrade `SnakeYAML` dep 1.17 -> 1.18 2.9.0 (30-Jul-2017) CSV: (Note: issue numbers point to old, separate repos of `jackson-dataformat-csv`) #127: Add `CsvGenerator.Feature.ALWAYS_QUOTE_EMPTY_STRINGS` to allow forced quoting of empty Strings. (contributed by georgewfraser@github) #130: Add fluent addColumns operation to CsvSchema.Builder (contributed by Peter A) #137: Inject "missing" trailing columns as `null`s (`JsonParser.Feature.INSERT_NULLS_FOR_MISSING_COLUMNS`) #139: Add `CsvParser.Feature.ALLOW_TRAILING_COMMA` to allow enforcing strict handling (contributed by Nick B) #140: Fail for missing column values (`JsonParser.Feature.FAIL_ON_MISSING_COLUMNS`) (suggested by jwilmoth@github) #142: Add methods for appending columns of a `CsvSchema` into another (suggested by Austin S) - Add new exception type `CsvMappingException` to indicate CSV-mapping issues (and give access to effective Schema) Properties: #1: Add convenience method(s) for reading System properties #3: Write into `Properties` instance (factory, mapper) using `JavaPropsMapper.writeValue()` with `Properties` and `JavaPropsMapper.writeValueAsProperties()` #4: Allow binding from `Properties` instance YAML: (Note: issue numbers point to old, separate repos of `jackson-dataformat-yaml`) #67: Add `YAMLGenerator.Feature.INDENT_ARRAYS` #76: Add `YAMLGenerator.Feature.LITERAL_BLOCK_STYLE` for String output (contributed by Roland H) ================================================ FILE: toml/.gitattributes ================================================ # Do not merge `pom.xml` from older version, as it will typically conflict pom.xml merge=ours ================================================ FILE: toml/LICENSE ================================================ Jackson is licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt). --- The TOML grammar and some parts of the test suite are adapted from the TOML project, which is licensed under the MIT license: The MIT License Copyright (c) Tom Preston-Werner Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- The JFlex lexer generator is licensed under a 3-clause BSD-style license: JFlex - Copying, Warranty & License =================================== JFlex is free software, since version 1.5 published under the terms of this [3-clause BSD-style license](https://opensource.org/licenses/BSD-3-Clause). There is absolutely NO WARRANTY for JFlex, its code and its documentation. Copyright (c) Gerwin Klein, Steve Rowe, Régis Décamps, Google LLC. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the names of the authors nor the names of JFlex contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: toml/README.md ================================================ ## Overview [Jackson](/FasterXML/jackson) (Java) data format module that supports reading and writing [TOML](https://en.wikipedia.org/wiki/TOML) files. Support exists both at streaming and databinding level. Note that while both reading (parsing) and writing (generation) are supported, writing will currently (2.13) produce less than optimal formatting -- content is valid and retains information but is typically not "pretty". This may be improved in future. ## Status Jackson 2.12.3 was the first beta release; 2.13.0 the official introduction. 2.13 version is still considered somewhat experimental module. ## Maven dependency To use this extension on Maven-based projects, use following dependency: ```xml com.fasterxml.jackson.dataformat jackson-dataformat-toml 2.13.0 ``` # Usage The typical usage is by using `TomlMapper` in places where you would usually use `JsonMapper` (and other `ObjectMapper`s) -- but if you want to, it is also possible to use low-level streaming `TomlFactory` (instead of `JsonFactory`) ```java TomlMapper mapper = new TomlMapper(); // and then read/write data as usual SomeType value = ...; String doc = mapper.writeValueAsBytes(value); // or mapper.writeValue(new File("stuff.properties", value); SomeType otherValue = mapper.readValue(props, SomeType.class); ``` For reading and writing, you most commonly use `ObjectReader` and `ObjectWriter`, created using mapper object you have; for example: ```java String props = mapper.writerFor(Pojo.class) .writeValueAsString(pojo); Pojo result = mapper.readerFor(Pojo.class) .with(schema) // if customization needed .readValue(propsFile); ``` ================================================ FILE: toml/pom.xml ================================================ 4.0.0 tools.jackson.dataformat jackson-dataformats-text 3.2.0-SNAPSHOT jackson-dataformat-toml jar Jackson-dataformat-TOML Support for reading and writing TOML-encoded data via Jackson abstractions. https://github.com/FasterXML/jackson-dataformats-text The Apache Software License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0.txt repo tools/jackson/dataformat/toml ${project.groupId}.toml tools.jackson.core jackson-databind org.jetbrains annotations 20.1.0 test com.google.code.maven-replacer-plugin replacer org.cyclonedx cyclonedx-maven-plugin de.jflex jflex-maven-plugin 1.9.0 generate-sources generate false ${project.build.directory}/generated-sources ${project.basedir}/src/main/jflex/skeleton-toml org.gradlex gradle-module-metadata-maven-plugin ================================================ FILE: toml/src/main/java/module-info.java ================================================ // TOML Main artifact Module descriptor module tools.jackson.dataformat.toml { requires tools.jackson.core; requires tools.jackson.databind; exports tools.jackson.dataformat.toml; provides tools.jackson.core.TokenStreamFactory with tools.jackson.dataformat.toml.TomlFactory; provides tools.jackson.databind.ObjectMapper with tools.jackson.dataformat.toml.TomlMapper; } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/PackageVersion.java.in ================================================ package @package@; import tools.jackson.core.Version; import tools.jackson.core.Versioned; import tools.jackson.core.util.VersionUtil; /** * Automatically generated from PackageVersion.java.in during * packageVersion-generate execution of maven-replacer-plugin in * pom.xml. */ public final class PackageVersion implements Versioned { public final static Version VERSION = VersionUtil.parseVersion( "@projectversion@", "@projectgroupid@", "@projectartifactid@"); @Override public Version version() { return VERSION; } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/StringOutputUtil.java ================================================ package tools.jackson.dataformat.toml; class StringOutputUtil { public static final int UNQUOTED_KEY = 1; public static final int LITERAL_STRING = 2; public static final int BASIC_STRING = 4; public static final int BASIC_STRING_NO_ESCAPE = 8; public static final int ASCII_ONLY = 16; private static final int EMPTY_STRING_CATS = LITERAL_STRING | BASIC_STRING | BASIC_STRING_NO_ESCAPE | ASCII_ONLY; public static final int MASK_SIMPLE_KEY = -1; // Should exclude multi-line keys when/if we support them. public static final int MASK_STRING = ~UNQUOTED_KEY; static int categorize(String s) { if (s.isEmpty()) { return EMPTY_STRING_CATS; } int flags = -1; for (int i = 0; i < s.length();) { char hi = s.charAt(i++); if (Character.isHighSurrogate(hi) && i < s.length()) { char lo = s.charAt(i); if (Character.isLowSurrogate(lo)) { i++; flags &= categorize(Character.toCodePoint(hi, lo)); } else { return 0; // surrogates not allowed } } else { flags &= categorize(hi); } } return flags; } static int categorize(char[] text, int offset, int len) { if (len == 0) { return EMPTY_STRING_CATS; } int flags = -1; for (int i = 0; i < len;) { char hi = text[offset + i++]; if (Character.isHighSurrogate(hi) && i < len) { char lo = text[offset + i]; if (Character.isLowSurrogate(lo)) { i++; flags &= categorize(Character.toCodePoint(hi, lo)); } else { return 0; // surrogates not allowed } } else { flags &= categorize(hi); } } return flags; } static int categorize(int c) { if (c > Character.MAX_CODE_POINT || (c >= Character.MIN_SURROGATE && c <= Character.MAX_SURROGATE)) { // cannot write surrogates return 0; } // first, get the very restrictive unquoted keys out of the way. // unquoted-key = 1*( ALPHA / DIGIT / %x2D / %x5F ) ; A-Z / a-z / 0-9 / - / _ if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '-' || c == '_') { return LITERAL_STRING | BASIC_STRING | UNQUOTED_KEY | BASIC_STRING_NO_ESCAPE | ASCII_ONLY; } // non-ascii is allowed everywhere. if (c >= 0x80) { return LITERAL_STRING | BASIC_STRING | BASIC_STRING_NO_ESCAPE; } // quotes need escaping. if (c == '"') { return LITERAL_STRING | BASIC_STRING | ASCII_ONLY; } // apostrophes can only be placed in basic strings. if (c == '\'') { return BASIC_STRING | BASIC_STRING_NO_ESCAPE | ASCII_ONLY; } // backslash needs escaping in basic strings. if (c == '\\') { return BASIC_STRING | LITERAL_STRING | ASCII_ONLY; } // now, for some "normal" characters: // basic-unescaped = wschar / %x21 / %x23-5B / %x5D-7E / non-ascii // literal-char = %x09 / %x20-26 / %x28-7E / non-ascii // these are basically identical except for " (0x22) and ' (0x27), which are already handled above, // and for \ (0x5c). This reduces the expression to the following if (c == '\t' || (c >= 0x20 && c <= 0x7e)) { return LITERAL_STRING | BASIC_STRING | BASIC_STRING_NO_ESCAPE | ASCII_ONLY; } // The rest is some ascii control chars. Those aren't allowed in literal strings, they need escapes. Could // potentially be put into multi-line literal strings, I guess, but we don't use those yet. return BASIC_STRING | ASCII_ONLY; } /** * Get the basic string escape sequence for a character, or {@code null} if the character does not need to be * escaped. */ static String getBasicStringEscape(char c) { switch (c) { case '\b': return "\\b"; case '\t': return("\\t"); case '\n': return("\\n"); case '\f': return("\\f"); case '"': return("\\\""); case '\\': return("\\\\"); default: if (c < 0x10) { return "\\u000" + Integer.toHexString(c); } else if (c < 0x20 || c == 0x7f) { return "\\u00" + Integer.toHexString(c); } else { // note: this includes potential surrogates. We let the output handle those. return null; } } } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlFactory.java ================================================ package tools.jackson.dataformat.toml; import java.io.*; import tools.jackson.core.*; import tools.jackson.core.base.TextualTSFactory; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.UTF8Writer; import tools.jackson.databind.node.ObjectNode; import tools.jackson.databind.node.TreeTraversingParser; public final class TomlFactory extends TextualTSFactory { private final static long serialVersionUID = 1L; public final static String FORMAT_NAME_TOML = "toml"; /** * Bitfield (set of flags) of all generator features that are enabled * by default. */ final static int DEFAULT_TOML_PARSER_FEATURE_FLAGS = TomlReadFeature.collectDefaults(); /** * Bitfield (set of flags) of all generator features that are enabled * by default. */ final static int DEFAULT_TOML_GENERATOR_FEATURE_FLAGS = TomlWriteFeature.collectDefaults(); /* /********************************************************************** /* Factory construction, configuration /********************************************************************** */ public TomlFactory() { super(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), DEFAULT_TOML_PARSER_FEATURE_FLAGS, DEFAULT_TOML_GENERATOR_FEATURE_FLAGS); } TomlFactory(TomlFactory src) { super(src); } /** * Constructors used by {@link TomlFactoryBuilder} for instantiation. * * @since 3.0 */ TomlFactory(TomlFactoryBuilder b) { super(b); } @Override public TomlFactoryBuilder rebuild() { return new TomlFactoryBuilder(this); } /** * Main factory method to use for constructing {@link TomlFactory} instances with * different configuration. */ public static TomlFactoryBuilder builder() { return new TomlFactoryBuilder(); } @Override public TomlFactory copy() { return new TomlFactory(this); } /** * Instances are immutable so just return `this` */ @Override public TokenStreamFactory snapshot() { return this; } /* /********************************************************************** /* Serializable overrides /********************************************************************** */ /** * Method that we need to override to actually make restoration go * through constructors etc. */ protected Object readResolve() { return new TomlFactory(this); } /* /********************************************************************** /* Capability introspection /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } @Override public boolean requiresPropertyOrdering() { return false; } @Override public boolean canUseCharArrays() { return false; } @Override public boolean canParseAsync() { return false; } /* /********************************************************************** /* Format support /********************************************************************** */ @Override public String getFormatName() { return FORMAT_NAME_TOML; } @Override public boolean canUseSchema(FormatSchema schema) { return false; } @Override public Class getFormatReadFeatureType() { return TomlReadFeature.class; } @Override public Class getFormatWriteFeatureType() { return TomlWriteFeature.class; } @Override public int getFormatReadFeatures() { return _formatReadFeatures; } @Override public int getFormatWriteFeatures() { return _formatWriteFeatures; } public boolean isEnabled(TomlReadFeature f) { return (_formatReadFeatures & f.getMask()) != 0; } public boolean isEnabled(TomlWriteFeature f) { return (_formatWriteFeatures & f.getMask()) != 0; } /* /********************************************************************** /* Overridden internal factory methods, parser /********************************************************************** */ @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ctxt, InputStream in) throws JacksonException { // "A TOML file must be a valid UTF-8 encoded Unicode document." boolean autoClose = ctxt.isResourceManaged() || isEnabled(StreamReadFeature.AUTO_CLOSE_SOURCE); return _createParser(readCtxt, ctxt, UTF8Reader.construct(ctxt, in, autoClose)); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ctxt, Reader r) throws JacksonException { try { ObjectNode node = parse(readCtxt, ctxt, r); return new TreeTraversingParser(node, readCtxt); } finally { ctxt.close(); } } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ctxt, byte[] data, int offset, int len) throws JacksonException { return _createParser(readCtxt, ctxt, UTF8Reader.construct(data, offset, len)); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ctxt, char[] data, int offset, int len, boolean recyclable) throws JacksonException { return _createParser(readCtxt, ctxt, new CharArrayReader(data, offset, len)); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ctxt, DataInput input) throws JacksonException { return _unsupported(); } /* /********************************************************************** /* Overridden internal factory methods, generator /********************************************************************** */ @Override protected JsonGenerator _createGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, Writer out) throws JacksonException { return new TomlGenerator(writeCtxt, ioCtxt, writeCtxt.getStreamWriteFeatures(_streamWriteFeatures), writeCtxt.getFormatWriteFeatures(_formatWriteFeatures), out); } @Override protected JsonGenerator _createUTF8Generator(ObjectWriteContext writeCtxt, IOContext ioCtxt, OutputStream out) throws JacksonException { return _createGenerator(writeCtxt, ioCtxt, new UTF8Writer(ioCtxt, out)); } @Override protected Writer _createWriter(IOContext ioCtxt, OutputStream out, JsonEncoding enc) throws JacksonException { // "A TOML file must be a valid UTF-8 encoded Unicode document." return new UTF8Writer(ioCtxt, out); } /* /********************************************************************** /* Low-level methods for reading/writing TOML /********************************************************************** */ private ObjectNode parse(ObjectReadContext readCtxt, IOContext ctxt, Reader r0) { int readFeatures = readCtxt.getFormatReadFeatures(DEFAULT_TOML_PARSER_FEATURE_FLAGS); try { if (ctxt.isResourceManaged() || isEnabled(StreamReadFeature.AUTO_CLOSE_SOURCE)) { try (Reader r = r0) { return TomlParser.parse(this, ctxt, readFeatures, r); } } else { return TomlParser.parse(this, ctxt, readFeatures, r0); } } catch (IOException e) { throw _wrapIOFailure(e); } } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlFactoryBuilder.java ================================================ package tools.jackson.dataformat.toml; import tools.jackson.core.ErrorReportConfiguration; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.base.DecorableTSFactory; /** * {@link tools.jackson.core.TSFBuilder} * implementation for constructing {@link TomlFactory} * instances. */ public class TomlFactoryBuilder extends DecorableTSFactory.DecorableTSFBuilder { /* /********************************************************************** /* Life cycle /********************************************************************** */ TomlFactoryBuilder() { super(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), TomlFactory.DEFAULT_TOML_PARSER_FEATURE_FLAGS, TomlFactory.DEFAULT_TOML_GENERATOR_FEATURE_FLAGS); } TomlFactoryBuilder(TomlFactory base) { super(base); } @Override public TomlFactory build() { return new TomlFactory(this); } /* /********************************************************************** /* Parser feature setting /********************************************************************** */ public TomlFactoryBuilder enable(TomlReadFeature f) { _formatReadFeatures |= f.getMask(); return this; } public TomlFactoryBuilder enable(TomlReadFeature first, TomlReadFeature... other) { _formatReadFeatures |= first.getMask(); for (TomlReadFeature f : other) { _formatReadFeatures |= f.getMask(); } return this; } public TomlFactoryBuilder disable(TomlReadFeature f) { _formatReadFeatures &= ~f.getMask(); return this; } public TomlFactoryBuilder disable(TomlReadFeature first, TomlReadFeature... other) { _formatReadFeatures &= ~first.getMask(); for (TomlReadFeature f : other) { _formatReadFeatures &= ~f.getMask(); } return this; } public TomlFactoryBuilder configure(TomlReadFeature f, boolean state) { return state ? enable(f) : disable(f); } /* /********************************************************************** /* Generator feature setting /********************************************************************** */ public TomlFactoryBuilder enable(TomlWriteFeature f) { _formatWriteFeatures |= f.getMask(); return this; } public TomlFactoryBuilder enable(TomlWriteFeature first, TomlWriteFeature... other) { _formatWriteFeatures |= first.getMask(); for (TomlWriteFeature f : other) { _formatWriteFeatures |= f.getMask(); } return this; } public TomlFactoryBuilder disable(TomlWriteFeature f) { _formatWriteFeatures &= ~f.getMask(); return this; } public TomlFactoryBuilder disable(TomlWriteFeature first, TomlWriteFeature... other) { _formatWriteFeatures &= ~first.getMask(); for (TomlWriteFeature f : other) { _formatWriteFeatures &= ~f.getMask(); } return this; } public TomlFactoryBuilder configure(TomlWriteFeature f, boolean state) { return state ? enable(f) : disable(f); } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlGenerator.java ================================================ package tools.jackson.dataformat.toml; import java.io.IOException; import java.io.Writer; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.charset.StandardCharsets; import java.time.*; import java.util.Arrays; import tools.jackson.core.*; import tools.jackson.core.base.GeneratorBase; import tools.jackson.core.io.IOContext; import tools.jackson.core.util.JacksonFeatureSet; import tools.jackson.core.util.VersionUtil; final class TomlGenerator extends GeneratorBase { // As an optimization we try coalescing short writes into // buffer; but pass longer directly. protected final static int SHORT_WRITE = 100; /* /********************************************************************** /* Configuration /********************************************************************** */ /** * Underlying {@link Writer} used for output. */ protected final Writer _out; private final int _tomlFeatures; /* /********************************************************************** /* Output state /********************************************************************** */ /** * Current context, in form we can use it (GeneratorBase has * untyped reference; left as null) */ protected TomlWriteContext _streamWriteContext; /* /********************************************************************** /* Output buffering /********************************************************************** */ /** * Intermediate buffer in which contents are buffered before * being written using {@code _out}. */ protected char[] _outputBuffer; /** * Pointer to the next available location in {@code _outputBuffer} */ protected int _outputTail = 0; /** * Offset to index after the last valid index in {@code _outputBuffer}. * Typically same as length of the buffer. */ protected final int _outputEnd; protected final StringBuilder _basePath = new StringBuilder(50); /* /********************************************************************** /* Life-cycle /********************************************************************** */ public TomlGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, int stdFeatures, int tomlFeatures, Writer out) { super(writeCtxt, ioCtxt, stdFeatures); _tomlFeatures = tomlFeatures; _streamWriteContext = TomlWriteContext.createRootContext(); _out = out; _outputBuffer = ioCtxt.allocConcatBuffer(); _outputEnd = _outputBuffer.length; } /* /********************************************************************** /* Versioned /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } /* /********************************************************************** /* Overridden methods, configuration /********************************************************************** */ @Override public Object streamWriteOutputTarget() { return _out; } @Override public int streamWriteOutputBuffered() { return _outputTail; } /* /********************************************************************** /* Overridden methods: low-level I/O /********************************************************************** */ @Override public void close() { if (!isClosed()) { try { _flushBuffer(); } finally { super.close(); _outputTail = 0; // just to ensure we don't think there's anything buffered } } } @Override protected void _closeInput() throws IOException { if (_out != null) { if (_ioContext.isResourceManaged() || isEnabled(StreamWriteFeature.AUTO_CLOSE_TARGET)) { _out.close(); } else if (isEnabled(StreamWriteFeature.FLUSH_PASSED_TO_STREAM)) { // If we can't close it, we should at least flush _out.flush(); } } } @Override public void flush() { _flushBuffer(); if (_out != null) { if (isEnabled(StreamWriteFeature.FLUSH_PASSED_TO_STREAM)) { try { _out.flush(); } catch (IOException e) { throw _wrapIOFailure(e); } } } } /* /********************************************************************** /* Implementations for methods from base class /********************************************************************** */ @Override protected void _releaseBuffers() { char[] buf = _outputBuffer; if (buf != null) { _outputBuffer = null; _ioContext.releaseConcatBuffer(buf); } } protected void _flushBuffer() throws JacksonException { if (_outputTail > 0 && _out != null) { try { _out.write(_outputBuffer, 0, _outputTail); } catch (IOException e) { throw _wrapIOFailure(e); } _outputTail = 0; } } /* /********************************************************************** /* Internal methods; raw writes /********************************************************************** */ protected JsonGenerator _writeRaw(char c) throws JacksonException { if (_outputTail >= _outputEnd) { _flushBuffer(); } _outputBuffer[_outputTail++] = c; return this; } protected JsonGenerator _writeRaw(String text) throws JacksonException { // Nothing to check, can just output as is int len = text.length(); int room = _outputEnd - _outputTail; if (room == 0) { _flushBuffer(); room = _outputEnd - _outputTail; } // But would it nicely fit in? If yes, it's easy if (room >= len) { text.getChars(0, len, _outputBuffer, _outputTail); _outputTail += len; } else { _writeRawLong(text); } return this; } protected JsonGenerator _writeRaw(StringBuilder text) throws JacksonException { // Nothing to check, can just output as is int len = text.length(); int room = _outputEnd - _outputTail; if (room == 0) { _flushBuffer(); room = _outputEnd - _outputTail; } // But would it nicely fit in? If yes, it's easy if (room >= len) { text.getChars(0, len, _outputBuffer, _outputTail); _outputTail += len; } else { _writeRawLong(text); } return this; } protected JsonGenerator _writeRaw(char[] text, int offset, int len) throws JacksonException { // Only worth buffering if it's a short write? if (len < SHORT_WRITE) { int room = _outputEnd - _outputTail; if (len > room) { _flushBuffer(); } System.arraycopy(text, offset, _outputBuffer, _outputTail, len); _outputTail += len; return this; } // Otherwise, better just pass through: _flushBuffer(); try { _out.write(text, offset, len); } catch (IOException e) { throw _wrapIOFailure(e); } return this; } protected void _writeRawLong(String text) throws JacksonException { int room = _outputEnd - _outputTail; text.getChars(0, room, _outputBuffer, _outputTail); _outputTail += room; _flushBuffer(); int offset = room; int len = text.length() - room; while (len > _outputEnd) { int amount = _outputEnd; text.getChars(offset, offset + amount, _outputBuffer, 0); _outputTail = amount; _flushBuffer(); offset += amount; len -= amount; } // And last piece (at most length of buffer) text.getChars(offset, offset + len, _outputBuffer, 0); _outputTail = len; } protected void _writeRawLong(StringBuilder text) throws JacksonException { int room = _outputEnd - _outputTail; text.getChars(0, room, _outputBuffer, _outputTail); _outputTail += room; _flushBuffer(); int offset = room; int len = text.length() - room; while (len > _outputEnd) { int amount = _outputEnd; text.getChars(offset, offset + amount, _outputBuffer, 0); _outputTail = amount; _flushBuffer(); offset += amount; len -= amount; } // And last piece (at most length of buffer) text.getChars(offset, offset + len, _outputBuffer, 0); _outputTail = len; } /* /********************************************************************** /* Overridden output state handling methods /********************************************************************** */ @Override public TokenStreamContext streamWriteContext() { return _streamWriteContext; } @Override public Object currentValue() { return _streamWriteContext.currentValue(); } @Override public void assignCurrentValue(Object v) { _streamWriteContext.assignCurrentValue(v); } /* /********************************************************************** /* Overrides: capability introspection methods /********************************************************************** */ @Override public boolean canWriteObjectId() { return false; } @Override public boolean canWriteTypeId() { return false; } @Override public boolean canOmitProperties() { return true; } @Override public JacksonFeatureSet streamWriteCapabilities() { return DEFAULT_WRITE_CAPABILITIES; } /* /********************************************************************** /* Overrides: config access /********************************************************************** */ @Override public PrettyPrinter getPrettyPrinter() { return null; } /* /********************************************************************** /* Overridden methods; writing property names /********************************************************************** */ @Override public JsonGenerator writeName(String name) throws JacksonException { if (!_streamWriteContext.writeName(name)) { _reportError("Cannot write a property name, expecting a value"); } if (_streamWriteContext._inline) { if (_streamWriteContext.hasCurrentIndex()) { _writeRaw(", "); } _writeStringImpl(StringOutputUtil.MASK_SIMPLE_KEY, name); } else { // Ok; append to base path at this point. // First: ensure possibly preceding property name is removed: _streamWriteContext.truncatePath(_basePath); if (_basePath.length() > 0) { _basePath.append('.'); } _appendPropertyName(_basePath, name); } return this; } @Override public JsonGenerator writePropertyId(long id) throws JacksonException { // 15-Aug-2019, tatu: should be improved to avoid String generation return writeName(Long.toString(id)); } /* /********************************************************************** /* Public API: structural output /********************************************************************** */ @Override public JsonGenerator writeStartArray() throws JacksonException { return writeStartArray(null); } @Override public JsonGenerator writeStartArray(Object currValue) throws JacksonException { // arrays are always inline, force writing the current key // NOTE: if this ever changes, we need to add empty array handling in writeEndArray _verifyValueWrite("start an array", true); _streamWriteContext = _streamWriteContext.createChildArrayContext(currValue, _basePath.length()); streamWriteConstraints().validateNestingDepth(_streamWriteContext.getNestingDepth()); if (_streamWriteContext._inline) { _writeRaw('['); } return this; } @Override public JsonGenerator writeEndArray() throws JacksonException { if (!_streamWriteContext.inArray()) { _reportError("Current context not an Array but " + _streamWriteContext.typeDesc()); } if (_streamWriteContext._inline) { _writeRaw(']'); } else if (!_streamWriteContext.hasCurrentIndex()) { // empty array VersionUtil.throwInternal(); } _streamWriteContext = _streamWriteContext.getParent(); return writeValueEnd(); } @Override public JsonGenerator writeStartObject() throws JacksonException { return writeStartObject(null); } @Override public JsonGenerator writeStartObject(Object forValue) throws JacksonException { // objects aren't always materialized right now _verifyValueWrite("start an object", false); _streamWriteContext = _streamWriteContext.createChildObjectContext(forValue, _basePath.length()); streamWriteConstraints().validateNestingDepth(_streamWriteContext.getNestingDepth()); if (_streamWriteContext._inline) { writeRaw('{'); } return this; } @Override public JsonGenerator writeEndObject() throws JacksonException { if (!_streamWriteContext.inObject()) { _reportError("Current context not an Object but " + _streamWriteContext.typeDesc()); } if (_streamWriteContext._inline) { writeRaw('}'); _streamWriteContext = _streamWriteContext.getParent(); writeValueEnd(); } else { if (!_streamWriteContext.hasCurrentIndex()) { // empty object writeCurrentPath(); _writeRaw("{}"); writeValueEnd(); } _streamWriteContext = _streamWriteContext.getParent(); } return this; } /* /********************************************************************** /* Output method implementations, textual /********************************************************************** */ @Override public JsonGenerator writeString(String text) throws JacksonException { if (text == null) { return writeNull(); } _verifyValueWrite("write String value"); _writeStringImpl(StringOutputUtil.MASK_STRING, text); return writeValueEnd(); } @Override public JsonGenerator writeString(char[] text, int offset, int len) throws JacksonException { _verifyValueWrite("write String value"); _writeStringImpl(StringOutputUtil.MASK_STRING, text, offset, len); return writeValueEnd(); } @Override public JsonGenerator writeRawUTF8String(byte[] text, int offset, int len) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeUTF8String(byte[] text, int offset, int len) throws JacksonException { writeString(new String(text, offset, len, StandardCharsets.UTF_8)); return writeValueEnd(); } /* /********************************************************************** /* Output method implementations, unprocessed ("raw") /********************************************************************** */ @Override public JsonGenerator writeRaw(String text) throws JacksonException { return _writeRaw(text); } @Override public JsonGenerator writeRaw(String text, int offset, int len) throws JacksonException { return _writeRaw(text.substring(offset, offset + len)); } @Override public JsonGenerator writeRaw(char[] text, int offset, int len) throws JacksonException { return _writeRaw(text, offset, len); } @Override public JsonGenerator writeRaw(char c) throws JacksonException { return _writeRaw(c); } @Override public JsonGenerator writeRaw(SerializableString text) throws JacksonException { return writeRaw(text.toString()); } /* /********************************************************************** /* Output method implementations, base64-encoded binary /********************************************************************** */ @Override public JsonGenerator writeBinary(Base64Variant b64variant, byte[] data, int offset, int len) throws JacksonException { if (data == null) { return writeNull(); } _verifyValueWrite("write Binary value"); // ok, better just Base64 encode as a String... if (offset > 0 || (offset + len) != data.length) { data = Arrays.copyOfRange(data, offset, offset + len); } String encoded = b64variant.encode(data); // base64 needs no escaping _writeRaw('\''); _writeRaw(encoded); _writeRaw('\''); return writeValueEnd(); } /* /********************************************************************** /* Output method implementations, scalars /********************************************************************** */ @Override public JsonGenerator writeBoolean(boolean state) throws JacksonException { _verifyValueWrite("write boolean value"); _writeRaw(state ? "true" : "false"); return writeValueEnd(); } @Override public JsonGenerator writeNumber(short v) throws JacksonException { writeNumber((int) v); return writeValueEnd(); } @Override public JsonGenerator writeNumber(int i) throws JacksonException { _verifyValueWrite("write number"); _writeRaw(String.valueOf(i)); return writeValueEnd(); } @Override public JsonGenerator writeNumber(long l) throws JacksonException { _verifyValueWrite("write number"); _writeRaw(String.valueOf(l)); return writeValueEnd(); } @Override public JsonGenerator writeNumber(BigInteger v) throws JacksonException { if (v == null) { return writeNull(); } _verifyValueWrite("write number"); _writeRaw(String.valueOf(v)); return writeValueEnd(); } @Override public JsonGenerator writeNumber(double d) throws JacksonException { _verifyValueWrite("write number"); _writeRaw(String.valueOf(d)); return writeValueEnd(); } @Override public JsonGenerator writeNumber(float f) throws JacksonException { _verifyValueWrite("write number"); _writeRaw(String.valueOf(f)); return writeValueEnd(); } @Override public JsonGenerator writeNumber(BigDecimal dec) throws JacksonException { if (dec == null) { return writeNull(); } _verifyValueWrite("write number"); String str = isEnabled(StreamWriteFeature.WRITE_BIGDECIMAL_AS_PLAIN) ? dec.toPlainString() : dec.toString(); _writeRaw(str); return writeValueEnd(); } @Override public JsonGenerator writeNumber(String encodedValue) throws JacksonException { if (encodedValue == null) { return writeNull(); } _verifyValueWrite("write number"); _writeRaw(encodedValue); return writeValueEnd(); } @Override public JsonGenerator writeNull() throws JacksonException { if (TomlWriteFeature.FAIL_ON_NULL_WRITE.enabledIn(_tomlFeatures)) { throw new TomlStreamWriteException(this, "TOML null writing disabled (TomlWriteFeature.FAIL_ON_NULL_WRITE)"); } _verifyValueWrite("write null value"); _writeStringImpl(StringOutputUtil.MASK_STRING, ""); return writeValueEnd(); } /* /********************************************************************** /* Implementations for methods from base class /********************************************************************** */ @Override protected void _verifyValueWrite(String typeMsg) throws JacksonException { _verifyValueWrite(typeMsg, true); } protected void _verifyValueWrite(String typeMsg, boolean forceMaterializeKey) throws JacksonException { // check that name/value cadence works if (!_streamWriteContext.writeValue()) { _reportError("Cannot " + typeMsg + ", expecting a property name"); } if (_streamWriteContext._inline) { // write separators, if we're inline the key is already there if (_streamWriteContext.inArray()) { if (_streamWriteContext.getCurrentIndex() != 0) { _writeRaw(", "); } } else { _writeRaw(" = "); } } else { // write the key if necessary if (forceMaterializeKey) { writeCurrentPath(); } } } private void writeCurrentPath() { _writeRaw(_basePath); _writeRaw(" = "); } private JsonGenerator writeValueEnd() { if (!_streamWriteContext._inline) { writeRaw('\n'); } return this; } /* /********************************************************************** /* String support /********************************************************************** */ private void _appendPropertyName(StringBuilder path, String name) { int cat = StringOutputUtil.categorize(name) & StringOutputUtil.MASK_SIMPLE_KEY; if ((cat & StringOutputUtil.UNQUOTED_KEY) != 0) { path.append(name); } else if ((cat & StringOutputUtil.LITERAL_STRING) != 0) { path.append('\'').append(name).append('\''); } else if ((cat & StringOutputUtil.BASIC_STRING_NO_ESCAPE) != 0) { path.append('"').append(name).append('"'); } else if ((cat & StringOutputUtil.BASIC_STRING) != 0) { path.append('"'); for (int i = 0; i < name.length(); i++) { char c = name.charAt(i); String escape = StringOutputUtil.getBasicStringEscape(c); if (escape == null) { path.append(c); } else { path.append(escape); } } path.append('"'); } else { throw _constructWriteException("Key contains unsupported characters"); } // NOTE: we do NOT yet write the key; wait until we have value; just append to path } private void _writeStringImpl(int categoryMask, String name) { int cat = StringOutputUtil.categorize(name) & categoryMask; if ((cat & StringOutputUtil.UNQUOTED_KEY) != 0) { _writeRaw(name); } else if ((cat & StringOutputUtil.LITERAL_STRING) != 0) { _writeRaw('\''); _writeRaw(name); _writeRaw('\''); } else if ((cat & StringOutputUtil.BASIC_STRING_NO_ESCAPE) != 0) { _writeRaw('"'); _writeRaw(name); _writeRaw('"'); } else if ((cat & StringOutputUtil.BASIC_STRING) != 0) { _writeRaw('"'); for (int i = 0; i < name.length(); i++) { char c = name.charAt(i); String escape = StringOutputUtil.getBasicStringEscape(c); if (escape == null) { _writeRaw(c); } else { _writeRaw(escape); } } _writeRaw('"'); } else { throw _constructWriteException("Key contains unsupported characters"); } } private void _writeStringImpl(int categoryMask, char[] text, int offset, int len) { int cat = StringOutputUtil.categorize(text, offset, len) & categoryMask; if ((cat & StringOutputUtil.UNQUOTED_KEY) != 0) { _writeRaw(text, offset, len); } else if ((cat & StringOutputUtil.LITERAL_STRING) != 0) { _writeRaw('\''); _writeRaw(text, offset, len); _writeRaw('\''); } else if ((cat & StringOutputUtil.BASIC_STRING_NO_ESCAPE) != 0) { _writeRaw('"'); _writeRaw(text, offset, len); _writeRaw('"'); } else if ((cat & StringOutputUtil.BASIC_STRING) != 0) { _writeRaw('"'); for (int i = 0; i < len; i++) { char c = text[offset + len]; String escape = StringOutputUtil.getBasicStringEscape(c); if (escape == null) { _writeRaw(c); } else { _writeRaw(escape); } } _writeRaw('"'); } else { throw _constructWriteException("Key contains unsupported characters"); } } /* /********************************************************************** /* Time types /********************************************************************** */ @Override public JsonGenerator writePOJO(Object value) throws JacksonException { if (value == null) { // important: call method that does check value write: writeNull(); } else if ( value instanceof LocalDate || value instanceof LocalTime || value instanceof LocalDateTime || value instanceof OffsetDateTime) { _verifyValueWrite("write local date"); _writeRaw(value.toString()); writeValueEnd(); } else { _objectWriteContext.writeValue(this, value); } return this; } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlMapper.java ================================================ package tools.jackson.dataformat.toml; import tools.jackson.core.Version; import tools.jackson.databind.DeserializationFeature; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.cfg.CoercionAction; import tools.jackson.databind.cfg.CoercionInputShape; import tools.jackson.databind.cfg.MapperBuilder; import tools.jackson.databind.cfg.MapperBuilderState; public class TomlMapper extends ObjectMapper { private static final long serialVersionUID = 1L; public static class Builder extends MapperBuilder { public Builder(TomlFactory f) { super(f); enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT); _coercionConfigs.defaultCoercions().setCoercion(CoercionInputShape.EmptyString, CoercionAction.AsNull); } public Builder(StateImpl state) { super(state); } @Override public TomlMapper build() { return new TomlMapper(this); } @Override protected MapperBuilderState _saveState() { return new StateImpl(this); } /* /****************************************************************** /* Format features /****************************************************************** */ public Builder enable(TomlReadFeature... features) { for (TomlReadFeature f : features) { _formatReadFeatures |= f.getMask(); } return this; } public Builder disable(TomlReadFeature... features) { for (TomlReadFeature f : features) { _formatReadFeatures &= ~f.getMask(); } return this; } public Builder configure(TomlReadFeature feature, boolean state) { if (state) { _formatReadFeatures |= feature.getMask(); } else { _formatReadFeatures &= ~feature.getMask(); } return this; } public Builder enable(TomlWriteFeature... features) { for (TomlWriteFeature feature : features) { _formatWriteFeatures |= feature.getMask(); } return this; } public Builder disable(TomlWriteFeature... features) { for (TomlWriteFeature feature : features) { _formatWriteFeatures &= ~feature.getMask(); } return this; } public Builder configure(TomlWriteFeature feature, boolean state) { if (state) { _formatWriteFeatures |= feature.getMask(); } else { _formatWriteFeatures &= ~feature.getMask(); } return this; } protected static class StateImpl extends MapperBuilderState implements java.io.Serializable // important! { private static final long serialVersionUID = 3L; public StateImpl(Builder src) { super(src); } // We also need actual instance of state as base class can not implement logic // for reinstating mapper (via mapper builder) from state. @Override protected Object readResolve() { return new Builder(this).build(); } } } public TomlMapper() { this(new TomlFactory()); } public TomlMapper(TomlFactory f) { this(new Builder(f)); } TomlMapper(Builder b) { super(b); } public static Builder builder() { return new Builder(new TomlFactory()); } public static Builder builder(TomlFactory streamFactory) { return new Builder(streamFactory); } @SuppressWarnings("unchecked") @Override public Builder rebuild() { return new Builder((Builder.StateImpl) _savedBuilderState); } /* /********************************************************************** /* Life-cycle, shared "vanilla" (default configuration) instance /********************************************************************** */ /** * Accessor method for getting globally shared "default" {@link TomlMapper} * instance: one that has default configuration, no modules registered, no * config overrides. Usable mostly when dealing "untyped" or Tree-style * content reading and writing. */ public static TomlMapper shared() { return SharedWrapper.wrapped(); } /* /********************************************************************** /* Life-cycle: JDK serialization support /********************************************************************** */ // 27-Feb-2018, tatu: Not sure why but it seems base class definitions // are not sufficient alone; sub-classes must re-define. @Override protected Object writeReplace() { return _savedBuilderState; } @Override protected Object readResolve() { throw new IllegalStateException("Should never deserialize `"+getClass().getName()+"` directly"); } /* /********************************************************************** /* Basic accessor overrides /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } @Override public TomlFactory tokenStreamFactory() { return (TomlFactory) _streamFactory; } /* /********************************************************************** /* Format-specific /********************************************************************** */ public boolean isEnabled(TomlReadFeature f) { return _deserializationConfig.hasFormatFeature(f); } public boolean isEnabled(TomlWriteFeature f) { return _serializationConfig.hasFormatFeature(f); } /* /********************************************************************** /* Helper class(es) /********************************************************************** */ /** * Helper class to contain dynamically constructed "shared" instance of * mapper, should one be needed via {@link #shared}. */ private final static class SharedWrapper { private final static TomlMapper MAPPER = TomlMapper.builder().build(); public static TomlMapper wrapped() { return MAPPER; } } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlParser.java ================================================ package tools.jackson.dataformat.toml; import java.io.IOException; import java.io.Reader; import java.math.BigDecimal; import java.time.*; import java.time.temporal.Temporal; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.NumberInput; import tools.jackson.core.StreamReadFeature; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.core.util.VersionUtil; import tools.jackson.databind.JsonNode; import tools.jackson.databind.node.*; class TomlParser { private static final JsonNodeFactory factory = new JsonNodeFactoryImpl(); private static final int MAX_CHARS_TO_REPORT = 1000; private final TomlFactory tomlFactory; private final TomlStreamReadException.ErrorContext errorContext; private final int options; private final Lexer lexer; private TomlToken next; private TomlParser( TomlFactory tomlFactory, IOContext ioContext, TomlStreamReadException.ErrorContext errorContext, int options, Reader reader ) throws IOException { this.tomlFactory = tomlFactory; this.errorContext = errorContext; this.options = options; this.lexer = new Lexer(reader, ioContext, errorContext); lexer.prohibitInternalBufferAllocate = (options & TomlWriteFeature.INTERNAL_PROHIBIT_INTERNAL_BUFFER_ALLOCATE) != 0; this.next = lexer.yylex(); } /** * @param tomlFactory factory with configuration * @param ioContext I/O context * @param reader character stream * @return parsed ObjectNode * @throws IOException if there are I/O issues */ public static ObjectNode parse( final TomlFactory tomlFactory, final IOContext ioContext, final int formatReadFeatures, final Reader reader ) throws IOException { final TomlFactory factory = tomlFactory == null ? new TomlFactory() : tomlFactory; TomlStreamReadException.ErrorContext errorCtxt = new TomlStreamReadException.ErrorContext(ioContext.contentReference(), null); TomlParser parser = new TomlParser(factory, ioContext, errorCtxt, formatReadFeatures, reader); try { final ObjectNode node = parser.parse(); assert parser.getNestingDepth() == 0; return node; } finally { parser.lexer.releaseBuffers(); } } int getNestingDepth() { return lexer.getNestingDepth(); } private TomlToken peek() throws TomlStreamReadException { TomlToken here = this.next; if (here == null) throw errorContext.atPosition(lexer).generic("Premature end of file"); return here; } /** * Note: Polling also lexes the next token, so methods like {@link Lexer#yytext()} will not work afterwards */ private TomlToken poll(int nextState) throws IOException { TomlToken here = peek(); lexer.yybegin(nextState); next = lexer.yylex(); return here; } private void pollExpected(TomlToken expected, int nextState) throws IOException { TomlToken actual = poll(nextState); if (actual != expected) { throw errorContext.atPosition(lexer).unexpectedToken(actual, expected.toString()); } } public ObjectNode parse() throws IOException { TomlObjectNode root = (TomlObjectNode) factory.objectNode(); TomlObjectNode currentTable = root; while (next != null) { TomlToken token = peek(); if (token == TomlToken.UNQUOTED_KEY || token == TomlToken.STRING) { parseKeyVal(currentTable, Lexer.EXPECT_EOL); } else if (token == TomlToken.STD_TABLE_OPEN) { pollExpected(TomlToken.STD_TABLE_OPEN, Lexer.EXPECT_INLINE_KEY); FieldRef fieldRef = parseAndEnterKey(root, true); currentTable = getOrCreateObject(fieldRef.object, fieldRef.key); if (currentTable.defined) { throw errorContext.atPosition(lexer).generic("Table redefined"); } currentTable.defined = true; pollExpected(TomlToken.STD_TABLE_CLOSE, Lexer.EXPECT_EOL); } else if (token == TomlToken.ARRAY_TABLE_OPEN) { pollExpected(TomlToken.ARRAY_TABLE_OPEN, Lexer.EXPECT_INLINE_KEY); FieldRef fieldRef = parseAndEnterKey(root, true); TomlArrayNode array = getOrCreateArray(fieldRef.object, fieldRef.key); if (array.closed) { throw errorContext.atPosition(lexer).generic("Array already finished"); } currentTable = (TomlObjectNode) array.addObject(); pollExpected(TomlToken.ARRAY_TABLE_CLOSE, Lexer.EXPECT_EOL); } else { throw errorContext.atPosition(lexer).unexpectedToken(token, "key or table"); } } assert lexer.yyatEOF(); int eofState = lexer.yystate(); if (eofState != Lexer.EXPECT_EXPRESSION && eofState != Lexer.EXPECT_EOL) { throw errorContext.atPosition(lexer).generic("EOF in wrong state"); } return root; } private FieldRef parseAndEnterKey( TomlObjectNode outer, boolean forTable ) throws IOException { TomlObjectNode node = outer; while (true) { if (node.closed) { throw errorContext.atPosition(lexer).generic("Object already closed"); } if (!forTable) { /* "Dotted keys create and define a table for each key part before the last one, provided that such * tables were not previously created." */ node.defined = true; } TomlToken partToken = peek(); String part; if (partToken == TomlToken.STRING) { part = lexer.textBuffer.contentsAsString(); } else if (partToken == TomlToken.UNQUOTED_KEY) { part = lexer.yytext(); } else { throw errorContext.atPosition(lexer).unexpectedToken(partToken, "quoted or unquoted key"); } pollExpected(partToken, Lexer.EXPECT_INLINE_KEY); if (peek() != TomlToken.DOT_SEP) { return new FieldRef(node, part); } pollExpected(TomlToken.DOT_SEP, Lexer.EXPECT_INLINE_KEY); JsonNode existing = node.get(part); if (existing == null) { node = (TomlObjectNode) node.putObject(part); } else if (existing.isObject()) { node = (TomlObjectNode) existing; } else if (existing.isArray()) { /* "Any reference to an array of tables points to the most recently defined table element of the array. * This allows you to define sub-tables, and even sub-arrays of tables, inside the most recent table." * * I interpret this somewhat broadly: I accept such references even if there were unrelated tables * in between, and I accept them for simple dotted keys as well (not just for tables). These cases don't * seem to be covered by the specification. */ TomlArrayNode array = (TomlArrayNode) existing; if (array.closed) { throw errorContext.atPosition(lexer).generic("Array already closed"); } // Only arrays declared by array tables are not closed, and those are always arrays of objects. node = (TomlObjectNode) array.get(array.size() - 1); } else { throw errorContext.atPosition(lexer).generic("Path into existing non-object value of type " + existing.getNodeType()); } } } private JsonNode parseValue(int nextState) throws IOException { TomlToken firstToken = peek(); switch (firstToken) { case STRING: String text = lexer.textBuffer.contentsAsString(); pollExpected(TomlToken.STRING, nextState); return factory.stringNode(text); case TRUE: pollExpected(TomlToken.TRUE, nextState); return factory.booleanNode(true); case FALSE: pollExpected(TomlToken.FALSE, nextState); return factory.booleanNode(false); case OFFSET_DATE_TIME: case LOCAL_DATE_TIME: case LOCAL_DATE: case LOCAL_TIME: return parseDateTime(nextState); case FLOAT: return parseFloat(nextState); case INTEGER: return parseInt(nextState); case ARRAY_OPEN: return parseArray(nextState); case INLINE_TABLE_OPEN: return parseInlineTable(nextState); default: throw errorContext.atPosition(lexer).unexpectedToken(firstToken, "value"); } } private JsonNode parseDateTime(int nextState) throws IOException { String text = lexer.yytext(); TomlToken token = poll(nextState); // the time-delim index can be [Tt ]. java.time supports only [Tt] if ((token == TomlToken.LOCAL_DATE_TIME || token == TomlToken.OFFSET_DATE_TIME) && text.charAt(10) == ' ') { text = text.substring(0, 10) + 'T' + text.substring(11); } if (TomlReadFeature.PARSE_JAVA_TIME.enabledIn(options)) { Temporal value; if (token == TomlToken.LOCAL_DATE) { value = LocalDate.parse(text); } else if (token == TomlToken.LOCAL_TIME) { value = LocalTime.parse(text); } else { if (token == TomlToken.LOCAL_DATE_TIME) { value = LocalDateTime.parse(text); } else if (token == TomlToken.OFFSET_DATE_TIME) { value = OffsetDateTime.parse(text); } else { VersionUtil.throwInternal(); throw new AssertionError(); } } return factory.pojoNode(value); } else { return factory.stringNode(text); } } private JsonNode parseInt(int nextState) throws IOException { char[] buffer = lexer.getTextBuffer(); int start = lexer.getTextBufferStart(); int length = lexer.getTextBufferEnd() - lexer.getTextBufferStart(); for (int i = 0; i < length; i++) { if (buffer[start + i] == '_') { // slow path to remove underscores buffer = new String(buffer, start, length).replace("_", "").toCharArray(); start = 0; length = buffer.length; break; } } ValueNode node = parseIntFromBuffer(buffer, start, length); pollExpected(TomlToken.INTEGER, nextState); return node; } private ValueNode parseIntFromBuffer(char[] buffer, int start, int length) throws TomlStreamReadException { if (length > 2) { char baseChar = buffer[start + 1]; if (baseChar == 'x' || baseChar == 'o' || baseChar == 'b') { start += 2; length -= 2; String text = new String(buffer, start, length); try { // note: we parse all these as unsigned. Hence the weird int limits. // hex if (baseChar == 'x') { if (length <= 31 / 4) { return factory.numberNode(Integer.parseInt(text, 16)); } else if (length <= 63 / 4) { return factory.numberNode(Long.parseLong(text, 16)); } else { return factory.numberNode(NumberInput.parseBigIntegerWithRadix( text, 16, tomlFactory.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER))); } } // octal if (baseChar == 'o') { // this is a bit conservative, but who uses octal anyway? if (length <= 31 / 3) { return factory.numberNode(Integer.parseInt(text, 8)); } else if (text.length() <= 63 / 3) { return factory.numberNode(Long.parseLong(text, 8)); } else { return factory.numberNode(NumberInput.parseBigIntegerWithRadix( text, 8, tomlFactory.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER))); } } // binary assert baseChar == 'b'; if (length <= 31) { return factory.numberNode(Integer.parseUnsignedInt(text, 2)); } else if (length <= 63) { return factory.numberNode(Long.parseUnsignedLong(text, 2)); } else { return factory.numberNode(NumberInput.parseBigIntegerWithRadix( text, 2, tomlFactory.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER))); } } catch (NumberFormatException e) { throw errorContext.atPosition(lexer).invalidNumber(e, text); } } } // decimal boolean negative; if (buffer[start] == '-') { start++; length--; negative = true; } else if (buffer[start] == '+') { start++; length--; negative = false; } else { negative = false; } // adapted from JsonParserBase if (length <= 9) { int v = NumberInput.parseInt(buffer, start, length); if (negative) v = -v; return factory.numberNode(v); } if (length <= 18 || NumberInput.inLongRange(buffer, start, length, negative)) { long v = NumberInput.parseLong(buffer, start, length); if (negative) v = -v; // Might still fit in int, need to check if ((int) v == v) { return factory.numberNode((int) v); } else { return factory.numberNode(v); } } String text = null; try { tomlFactory.streamReadConstraints().validateIntegerLength(length); } catch (NumberFormatException | StreamConstraintsException e) { final String reportNum = length <= MAX_CHARS_TO_REPORT ? text == null ? new String(buffer, start, length) : text : (text == null ? new String(buffer, start, MAX_CHARS_TO_REPORT) : text.substring(0, MAX_CHARS_TO_REPORT)) + " [truncated]"; throw errorContext.atPosition(lexer).invalidNumber(e, reportNum); } text = new String(buffer, start, length); return factory.numberNode(NumberInput.parseBigInteger( text, tomlFactory.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER))); } private JsonNode parseFloat(int nextState) throws IOException { final String text = lexer.yytext().replace("_", ""); pollExpected(TomlToken.FLOAT, nextState); if (text.endsWith("nan")) { return factory.numberNode(Double.NaN); } else if (text.endsWith("inf")) { return factory.numberNode(text.startsWith("-") ? Double.NEGATIVE_INFINITY : Double.POSITIVE_INFINITY); } else { try { // Related to [databind#4250], need to pre-validate if (!NumberInput.looksLikeValidNumber(text)) { throw new NumberFormatException("Not a valid Number representation"); } tomlFactory.streamReadConstraints().validateFPLength(text.length()); BigDecimal dec = NumberInput.parseBigDecimal( text, tomlFactory.isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); return factory.numberNode(dec); } catch (NumberFormatException | StreamConstraintsException e) { final String reportNum = text.length() <= MAX_CHARS_TO_REPORT ? text : text.substring(0, MAX_CHARS_TO_REPORT) + " [truncated]"; throw errorContext.atPosition(lexer).invalidNumber(e, reportNum); } } } private ObjectNode parseInlineTable(int nextState) throws IOException { // inline-table = inline-table-open [ inline-table-keyvals ] inline-table-close // inline-table-keyvals = keyval [ inline-table-sep inline-table-keyvals ] pollExpected(TomlToken.INLINE_TABLE_OPEN, Lexer.EXPECT_INLINE_KEY); TomlObjectNode node = (TomlObjectNode) factory.objectNode(); while (true) { TomlToken token = peek(); if (token == TomlToken.INLINE_TABLE_CLOSE) { if (node.isEmpty()) { break; } else { // "A terminating comma (also called trailing comma) is not permitted after the last key/value pair // in an inline table." throw errorContext.atPosition(lexer).generic("Trailing comma not permitted for inline tables"); } } parseKeyVal(node, Lexer.EXPECT_TABLE_SEP); TomlToken sepToken = peek(); if (sepToken == TomlToken.INLINE_TABLE_CLOSE) { break; } else if (sepToken == TomlToken.COMMA) { pollExpected(TomlToken.COMMA, Lexer.EXPECT_INLINE_KEY); } else { throw errorContext.atPosition(lexer).unexpectedToken(sepToken, "comma or table end"); } } pollExpected(TomlToken.INLINE_TABLE_CLOSE, nextState); node.closed = true; node.defined = true; return node; } private ArrayNode parseArray(int nextState) throws IOException { // array = array-open [ array-values ] ws-comment-newline array-close // array-values = ws-comment-newline val ws-comment-newline array-sep array-values // array-values =/ ws-comment-newline val ws-comment-newline [ array-sep ] pollExpected(TomlToken.ARRAY_OPEN, Lexer.EXPECT_VALUE); TomlArrayNode node = (TomlArrayNode) factory.arrayNode(); while (true) { TomlToken token = peek(); if (token == TomlToken.ARRAY_CLOSE) { break; } JsonNode value = parseValue(Lexer.EXPECT_ARRAY_SEP); node.add(value); TomlToken sepToken = peek(); if (sepToken == TomlToken.ARRAY_CLOSE) { break; } else if (sepToken == TomlToken.COMMA) { pollExpected(TomlToken.COMMA, Lexer.EXPECT_VALUE); } else { throw errorContext.atPosition(lexer).unexpectedToken(sepToken, "comma or array end"); } } pollExpected(TomlToken.ARRAY_CLOSE, nextState); node.closed = true; return node; } private void parseKeyVal(TomlObjectNode target, int nextState) throws IOException { // keyval = key keyval-sep val FieldRef fieldRef = parseAndEnterKey(target, false); pollExpected(TomlToken.KEY_VAL_SEP, Lexer.EXPECT_VALUE); JsonNode value = parseValue(nextState); if (fieldRef.object.has(fieldRef.key)) { throw errorContext.atPosition(lexer).generic("Duplicate key"); } fieldRef.object.set(fieldRef.key, value); } private TomlObjectNode getOrCreateObject(ObjectNode node, String field) throws TomlStreamReadException { JsonNode existing = node.get(field); if (existing == null) { return (TomlObjectNode) node.putObject(field); } else if (existing.isObject()) { return (TomlObjectNode) existing; } else { throw errorContext.atPosition(lexer).generic("Path into existing non-object value of type " + existing.getNodeType()); } } private TomlArrayNode getOrCreateArray(ObjectNode node, String field) throws TomlStreamReadException { JsonNode existing = node.get(field); if (existing == null) { return (TomlArrayNode) node.putArray(field); } else if (existing.isArray()) { return (TomlArrayNode) existing; } else { throw errorContext.atPosition(lexer).generic("Path into existing non-array value of type " + node.getNodeType()); } } private static class FieldRef { final TomlObjectNode object; final String key; FieldRef(TomlObjectNode object, String key) { this.object = object; this.key = key; } } @SuppressWarnings("serial") // only used internally, no need to be JDK serializable private static class TomlObjectNode extends ObjectNode { boolean closed = false; boolean defined = false; TomlObjectNode(JsonNodeFactory nc) { super(nc); } } @SuppressWarnings("serial") // only used internally, no need to be JDK serializable private static class TomlArrayNode extends ArrayNode { boolean closed = false; TomlArrayNode(JsonNodeFactory nf) { super(nf); } TomlArrayNode(JsonNodeFactory nf, int capacity) { super(nf, capacity); } } @SuppressWarnings("serial") // only used internally, no need to be JDK serializable private static class JsonNodeFactoryImpl extends JsonNodeFactory { public JsonNodeFactoryImpl() { super(); } @Override public ArrayNode arrayNode() { return new TomlArrayNode(this); } @Override public ArrayNode arrayNode(int capacity) { return new TomlArrayNode(this, capacity); } @Override public ObjectNode objectNode() { return new TomlObjectNode(this); } } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlReadFeature.java ================================================ package tools.jackson.dataformat.toml; import tools.jackson.core.FormatFeature; /** * Enumeration that defines all togglable features for TOML parsers. */ public enum TomlReadFeature implements FormatFeature { /** * TOML has special syntax for time types corresponding to {@link java.time.LocalDate}, {@link java.time.LocalTime}, * {@link java.time.LocalDateTime} and {@link java.time.OffsetDateTime}. By default, the TOML parser just returns * them as strings. *

    * When this option is set, these time types will be parsed to their proper {@code java.time} counterparts and * appear as {@link tools.jackson.core.JsonToken#VALUE_EMBEDDED_OBJECT} tokens. *

    * Feature is disabled by default. */ PARSE_JAVA_TIME(false); private final boolean _defaultState; private final int _mask; // Method that calculates bit set (flags) of all features that // are enabled by default. public static int collectDefaults() { int flags = 0; for (TomlReadFeature f : values()) { if (f.enabledByDefault()) { flags |= f.getMask(); } } return flags; } private TomlReadFeature(boolean defaultState) { _defaultState = defaultState; _mask = (1 << ordinal()); } @Override public boolean enabledByDefault() { return _defaultState; } @Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; } @Override public int getMask() { return _mask; } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlStreamReadException.java ================================================ package tools.jackson.dataformat.toml; import tools.jackson.core.TokenStreamLocation; import tools.jackson.core.JsonParser; import tools.jackson.core.exc.StreamReadException; import tools.jackson.core.io.ContentReference; public class TomlStreamReadException extends StreamReadException { private static final long serialVersionUID = 1L; TomlStreamReadException(JsonParser p, String msg, TokenStreamLocation loc) { super(p, msg, loc); } TomlStreamReadException(JsonParser p, String msg, TokenStreamLocation loc, Throwable rootCause) { super(p, msg, loc, rootCause); } @Override public TomlStreamReadException withParser(JsonParser p) { this._processor = p; return this; } static class ErrorContext { final ContentReference contentReference; final JsonParser parser; ErrorContext(ContentReference contentReference, JsonParser parser) { this.contentReference = contentReference; this.parser = parser; } ErrorBuilder atPosition(Lexer lexer) { return new ErrorBuilder(lexer); } class ErrorBuilder { private final TokenStreamLocation location; ErrorBuilder(Lexer lexer) { this.location = new TokenStreamLocation( contentReference, -1, lexer.getCharPos(), lexer.getLine() + 1, lexer.getColumn() + 1 ); } TomlStreamReadException unexpectedToken(TomlToken actual, String expected) { return new TomlStreamReadException( parser, "Unexpected token: Got " + actual + ", expected " + expected, location ); } TomlStreamReadException generic(String message) { return new TomlStreamReadException(parser, message, location); } TomlStreamReadException outOfBounds(NumberFormatException cause) { return new TomlStreamReadException(parser, "Number out of bounds", location, cause); } TomlStreamReadException invalidNumber(Exception cause, String value) { return new TomlStreamReadException(parser, "Invalid number representation ('"+value+"'), problem: "+cause.getMessage(), location, cause); } } } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlStreamWriteException.java ================================================ package tools.jackson.dataformat.toml; import tools.jackson.core.JsonGenerator; import tools.jackson.core.exc.StreamWriteException; public final class TomlStreamWriteException extends StreamWriteException { private static final long serialVersionUID = 1L; TomlStreamWriteException(JsonGenerator g, String msg) { super(g, msg); } @Override public StreamWriteException withGenerator(JsonGenerator g) { this._processor = g; return this; } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlToken.java ================================================ package tools.jackson.dataformat.toml; enum TomlToken { UNQUOTED_KEY, DOT_SEP, STRING, TRUE, FALSE, OFFSET_DATE_TIME, LOCAL_DATE_TIME, LOCAL_DATE, LOCAL_TIME, FLOAT, INTEGER, STD_TABLE_OPEN, STD_TABLE_CLOSE, INLINE_TABLE_OPEN, INLINE_TABLE_CLOSE, ARRAY_TABLE_OPEN, ARRAY_TABLE_CLOSE, ARRAY_OPEN, ARRAY_CLOSE, KEY_VAL_SEP, COMMA, /** * Whitespace token that is only permitted in arrays */ ARRAY_WS_COMMENT_NEWLINE } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlWriteContext.java ================================================ package tools.jackson.dataformat.toml; import tools.jackson.core.TokenStreamContext; final class TomlWriteContext extends TokenStreamContext { /** * Parent context for this context; null for root context. */ protected final TomlWriteContext _parent; /* /********************************************************************** /* Simple instance reuse slots; speed up things a bit /********************************************************************** */ protected TomlWriteContext _child = null; /* /********************************************************************** /* Location/state information (minus source reference) /********************************************************************** */ /** * Value that is being serialized and caused this context to be created; * typically a POJO or container type. */ protected Object _currentValue; /** * Marker used to indicate that we just received a name, and * now expect a value */ protected boolean _gotName; /** * Name of the field of which value is to be parsed; only * used for OBJECT contexts */ protected String _currentName; protected int _basePathLength; boolean _inline; /* /********************************************************************** /* Life-cycle /********************************************************************** */ TomlWriteContext(int type, TomlWriteContext parent, Object currValue, int basePathLength) { super(); _type = type; _parent = parent; _nestingDepth = parent == null ? 0 : parent._nestingDepth + 1; _basePathLength = basePathLength; _index = -1; _currentValue = currValue; _inline = (type == TYPE_ARRAY) || (parent != null && parent._inline); } private void reset(int type, Object currValue, int basePathLength) { _type = type; _basePathLength = basePathLength; _currentValue = null; _index = -1; _currentValue = currValue; // 09-Apr-2021, tatu: [dataformats-text#260]: must reset this flag as well _inline = (type == TYPE_ARRAY) || (_parent != null && _parent._inline); } // // // Factory methods static TomlWriteContext createRootContext() { return new TomlWriteContext(TYPE_ROOT, null, null, 0); } static TomlWriteContext createRootContext(int basePathLength) { return new TomlWriteContext(TYPE_ROOT, null, null, basePathLength); } public TomlWriteContext createChildArrayContext(Object currValue, int basePathLength) { TomlWriteContext ctxt = _child; if (ctxt == null) { _child = ctxt = new TomlWriteContext(TYPE_ARRAY, this, currValue, basePathLength); return ctxt; } ctxt.reset(TYPE_ARRAY, currValue, basePathLength); return ctxt; } public TomlWriteContext createChildObjectContext(Object currValue, int basePathLength) { TomlWriteContext ctxt = _child; if (ctxt == null) { _child = ctxt = new TomlWriteContext(TYPE_OBJECT, this, currValue, basePathLength); return ctxt; } ctxt.reset(TYPE_OBJECT, currValue, basePathLength); return ctxt; } /* /********************************************************************** /* State changes /********************************************************************** */ public boolean writeName(String name) { if (_gotName) { return false; } _gotName = true; _currentName = name; return true; } public boolean writeValue() { // Most likely, object: if (_type == TYPE_OBJECT) { if (!_gotName) { return false; } _gotName = false; } // Array fine, and must allow root context for Object values too so... ++_index; return true; } public void truncatePath(StringBuilder sb) { int len = sb.length(); if (len != _basePathLength) { if (len < _basePathLength) { // sanity check throw new IllegalStateException(String.format ("Internal error: base path length %d, buffered %d, trying to truncate", _basePathLength, len)); } sb.setLength(_basePathLength); } } /* /********************************************************************** /* Simple accessors, mutators /********************************************************************** */ @Override public final TomlWriteContext getParent() { return _parent; } @Override public String currentName() { return _currentName; } @Override public Object currentValue() { return _currentValue; } @Override public void assignCurrentValue(Object v) { _currentValue = v; } public StringBuilder appendDesc(StringBuilder sb) { if (_parent != null) { sb = _parent.appendDesc(sb); sb.append('/'); } switch (_type) { case TYPE_OBJECT: if (_currentName != null) { sb.append(_currentName); } break; case TYPE_ARRAY: sb.append(getCurrentIndex()); break; case TYPE_ROOT: } return sb; } // // // Overridden standard methods /** * Overridden to provide developer JsonPointer representation * of the context. */ @Override public final String toString() { return appendDesc(new StringBuilder(64)).toString(); } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlWriteFeature.java ================================================ package tools.jackson.dataformat.toml; import tools.jackson.core.FormatFeature; import tools.jackson.core.JsonGenerator; /** * Enumeration that defines all togglable features for TOML generators. */ public enum TomlWriteFeature implements FormatFeature { /** * The TOML spec does not allow null values. We instead write an empty string when * {@link JsonGenerator#writeNull()} by default. *

    * When this option is set, any attempt to write a null value will error instead. *

    * Feature is disabled by default. */ FAIL_ON_NULL_WRITE(false); /** * Internal option for unit tests: Prohibit allocating internal buffers, except through the buffer recycler */ static final int INTERNAL_PROHIBIT_INTERNAL_BUFFER_ALLOCATE = 0x80000000; private final boolean _defaultState; private final int _mask; // Method that calculates bit set (flags) of all features that // are enabled by default. public static int collectDefaults() { int flags = 0; for (TomlWriteFeature f : values()) { if (f.enabledByDefault()) { flags |= f.getMask(); } } return flags; } private TomlWriteFeature(boolean defaultState) { _defaultState = defaultState; _mask = (1 << ordinal()); } @Override public boolean enabledByDefault() { return _defaultState; } @Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; } @Override public int getMask() { return _mask; } } ================================================ FILE: toml/src/main/java/tools/jackson/dataformat/toml/UTF8Reader.java ================================================ package tools.jackson.dataformat.toml; import java.io.*; import java.util.Objects; import tools.jackson.core.io.IOContext; /** * Optimized Reader that reads UTF-8 encoded content from an input stream. * Content may come either from a static {@code byte[]} buffer or * {@link java.io.InputStream}. */ public final class UTF8Reader extends Reader { /** * IO context to use for returning input buffer, iff * buffer is to be recycled when input ends. */ private final IOContext _ioContext; private InputStream _inputSource; private final boolean _autoClose; private byte[] _inputBuffer; /** * Flag set to indicate {@code inputBuffer} is read-only, and its * content should not be modified. This is the case when caller * has passed in a buffer of contents already read, instead of Jackson * allocating read buffer. * * @since 2.20 */ private final boolean _inputBufferReadOnly; /** * Pointer to the next available byte (if any), iff less than * mByteBufferEnd */ private int _inputPtr; /** * Pointed to the end marker, that is, position one after the last * valid available byte. */ private int _inputEnd; /** * Decoded first character of a surrogate pair, if one needs to be buffered */ private int _surrogate = -1; /** * Total read character count; used for error reporting purposes */ private int _charCount = 0; /** * Total read byte count; used for error reporting purposes */ private int _byteCount = 0; /* /********************************************************************** /* Life-cycle /********************************************************************** */ // Constructor used when caller gives us private UTF8Reader(IOContext ctxt, InputStream in, boolean autoClose, byte[] buf, int ptr, int end, boolean inputBufferReadOnly) { super((in == null) ? buf : in); _ioContext = ctxt; _inputSource = in; _inputBuffer = buf; _inputBufferReadOnly = inputBufferReadOnly; _inputPtr = ptr; _inputEnd = end; _autoClose = autoClose; } // Factory method used when dealing with InputStream; will need // to allocate and manage processing buffers public static UTF8Reader construct(IOContext ctxt, InputStream in, boolean autoClose) { final byte[] buf = ctxt.allocReadIOBuffer(); // We manage input buffer; read-only -> false return new UTF8Reader(ctxt, in, autoClose, buf, 0, 0, false); } // Factory method used when user passes us input in static pre-filled // input buffer: no InputStream nor buffer recycling used public static UTF8Reader construct(byte[] buf, int ptr, int len) { // We are passed input buffer; read-only -> true return new UTF8Reader(null, null, true, buf, ptr, ptr+len, true); } /** * This method should be called along with (or instead of) normal * close. After calling this method, no further reads should be tried. * Method will try to recycle read buffers (if any). */ private void freeBuffers() { if (_ioContext != null) { byte[] buf = _inputBuffer; if (buf != null) { _inputBuffer = null; _ioContext.releaseReadIOBuffer(buf); } } } /* /********************************************************************** /* Reader API /********************************************************************** */ @Override public void close() throws IOException { InputStream in = _inputSource; if (in != null) { _inputSource = null; if (_autoClose) { in.close(); } } freeBuffers(); } private char[] _tmpBuffer = null; // This method is implemented by the base class, AND it should //never be called by our code. But let's still implement it bit more // efficiently just in case @Override public int read() throws IOException { if (_tmpBuffer == null) { _tmpBuffer = new char[1]; } if (read(_tmpBuffer, 0, 1) < 1) { return -1; } return _tmpBuffer[0]; } @Override public int read(char[] cbuf) throws IOException { return read(cbuf, 0, cbuf.length); } @Override public int read(final char[] cbuf, final int start, int len) throws IOException { // validate input parameters Objects.requireNonNull(cbuf, "cbuf == null"); Objects.checkFromIndexSize(start, len, cbuf.length); // Already EOF? if (_inputBuffer == null) { return -1; } else if (len == 0) { // if len=0, we don't need to return anything return 0; } len += start; int outPtr = start; // Ok, first; do we have a surrogate from last round? if (_surrogate >= 0) { cbuf[outPtr++] = (char) _surrogate; _surrogate = -1; // No need to load more, already got one char // 15-Sep-2022, tatu: But need to avoid having empty buffer if (_inputPtr >= _inputEnd) { _charCount += 1; return 1; } } else { // To prevent unnecessary blocking (esp. with network streams), // we'll only require decoding of a single char int left = (_inputEnd - _inputPtr); // 09-Apr-2021, tatu: Not 100% sure this is valid logic for cases // where content ends with UTF-8 multibyte characters... but // this has existed in multiple incarnations for over a decade // so... maybe I thought it all through? // 15-Aug-2022, tatu: Guess again, former me! It IS a problem, as per // // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50036 // if (left < 4) { // Need to load more? if (left < 1 || _inputBuffer[_inputPtr] < 0) { if (!loadMore(left)) { // (legal) EOF? return -1; } } } } final byte[] buf = _inputBuffer; int inPtr = _inputPtr; final int inBufLen = _inputEnd; main_loop: while (outPtr < len) { // At this point we have at least one byte available int c = (int) buf[inPtr++]; // Let's first do the quickie loop for common case; 7-bit ASCII if (c >= 0) { // ASCII? can probably loop, then cbuf[outPtr++] = (char) c; // ok since MSB is never on // Ok, how many such chars could we safely process without overruns? // (will combine 2 in-loop comparisons into just one) int outMax = (len - outPtr); // max output int inMax = (inBufLen - inPtr); // max input int inEnd = inPtr + ((inMax < outMax) ? inMax : outMax); ascii_loop: while (true) { if (inPtr >= inEnd) { break main_loop; } c = buf[inPtr++]; if (c < 0) { // or multi-byte break ascii_loop; } cbuf[outPtr++] = (char) c; } } int needed; // Ok; if we end here, we got multi-byte combination if ((c & 0xE0) == 0xC0) { // 2 bytes (0x0080 - 0x07FF) c = (c & 0x1F); needed = 1; } else if ((c & 0xF0) == 0xE0) { // 3 bytes (0x0800 - 0xFFFF) c = (c & 0x0F); needed = 2; } else if ((c & 0xF8) == 0xF0) { // 4 bytes; double-char BS, with surrogates and all... c = (c & 0x0F); needed = 3; } else { reportInvalidInitial(c & 0xFF, outPtr-start); // never gets here... needed = 1; } // Do we have enough bytes? If not, let's just push back the // byte and leave, since we have already gotten at least one // char decoded. This way we will only block (with read from // input stream) when absolutely necessary. if ((inBufLen - inPtr) < needed) { --inPtr; break main_loop; } int d = (int) buf[inPtr++]; if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start); } c = (c << 6) | (d & 0x3F); if (needed > 1) { // needed == 1 means 2 bytes total d = buf[inPtr++]; // 3rd byte if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start); } c = (c << 6) | (d & 0x3F); if (needed > 2) { // 4 bytes? (need surrogates) d = buf[inPtr++]; if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start); } c = (c << 6) | (d & 0x3F); /* Ugh. Need to mess with surrogates. Ok; let's inline them * there, then, if there's room: if only room for one, * need to save the surrogate for the rainy day... */ c -= 0x10000; // to normalize it starting with 0x0 cbuf[outPtr++] = (char) (0xD800 + (c >> 10)); // hmmh. can this ever be 0? (not legal, at least?) c = (0xDC00 | (c & 0x03FF)); // Room for second part? if (outPtr >= len) { // nope _surrogate = c; break main_loop; } // sure, let's fall back to normal processing: } // Otherwise, should we check that 3-byte chars are // legal ones (should not expand to surrogates? // For now, let's not... /* else { if (c >= 0xD800 && c < 0xE000) { reportInvalid(c, outPtr-start, "(a surrogate character) "); } } */ } cbuf[outPtr++] = (char) c; if (inPtr >= inBufLen) { break main_loop; } } _inputPtr = inPtr; final int actualLen = outPtr - start; _charCount += actualLen; return actualLen; } /* /********************************************************************** /* Internal methods: loading more input /********************************************************************** */ /** * @param available Number of "unused" bytes in the input buffer * * @return True, if enough bytes were read to allow decoding of at least * one full character; false if EOF was encountered instead. */ private boolean loadMore(int available) throws IOException { _byteCount += (_inputEnd - available); if (available > 0) { // Should we move bytes to the beginning of buffer? if (_inputPtr > 0) { // Can only do so if buffer mutable if (!_inputBufferReadOnly) { for (int i = 0; i < available; ++i) { _inputBuffer[i] = _inputBuffer[_inputPtr+i]; } _inputPtr = 0; _inputEnd = available; } } } else { // Ok; here we can actually reasonably expect an EOF, so let's do a separate read right away: int count = readBytes(); if (count < 1) { freeBuffers(); // to help GC? if (count < 0) { // -1 return false; } // 0 count is no good; let's err out reportStrangeStream(); } } // We now have at least one byte... and that allows us to // calculate exactly how many bytes we need! @SuppressWarnings("cast") int c = (int) _inputBuffer[_inputPtr]; if (c >= 0) { // single byte (ascii) char... cool, can return return true; } // Ok, a multi-byte char, let's check how many bytes we'll need: int needed; if ((c & 0xE0) == 0xC0) { // 2 bytes (0x0080 - 0x07FF) needed = 2; } else if ((c & 0xF0) == 0xE0) { // 3 bytes (0x0800 - 0xFFFF) needed = 3; } else if ((c & 0xF8) == 0xF0) { // 4 bytes; double-char BS, with surrogates and all... needed = 4; } else { // 25-Aug-2016, tatu: As per [dataformat-csv#132], let's not throw // exception from here but let caller handle return true; } // And then we'll just need to load up to that many bytes; // if an EOF is hit, that'll be an error. But we need not do // actual decoding here, just load enough bytes. while ((_inputPtr + needed) > _inputEnd) { int count = readBytesAt(_inputEnd); if (count < 1) { if (count < 0) { // -1, EOF... no good! freeBuffers(); reportUnexpectedEOF(_inputEnd - _inputPtr, needed); } // 0 count is no good; let's err out reportStrangeStream(); } } return true; } protected final int readBytes() throws IOException { _inputPtr = 0; _inputEnd = 0; if (_inputSource != null) { int count = _inputSource.read(_inputBuffer, 0, _inputBuffer.length); if (count > 0) { _inputEnd = count; } return count; } return -1; } protected final int readBytesAt(int offset) throws IOException { // shouldn't modify mBytePtr, assumed to be 'offset' if (_inputSource != null) { int count = _inputSource.read(_inputBuffer, offset, _inputBuffer.length - offset); if (count > 0) { _inputEnd += count; } return count; } return -1; } /* /********************************************************************** /* Internal methods: error reporting /********************************************************************** */ private void reportInvalidInitial(int mask, int offset) throws IOException { // input (byte) ptr has been advanced by one, by now: int bytePos = _byteCount + _inputPtr - 1; int charPos = _charCount + offset + 1; throw new CharConversionException("Invalid UTF-8 start byte 0x"+Integer.toHexString(mask) +" (at char #"+charPos+", byte #"+bytePos+")"); } private void reportInvalidOther(int mask, int offset) throws IOException { int bytePos = _byteCount + _inputPtr - 1; int charPos = _charCount + offset; throw new CharConversionException("Invalid UTF-8 middle byte 0x"+Integer.toHexString(mask) +" (at char #"+charPos+", byte #"+bytePos+")"); } private void reportUnexpectedEOF(int gotBytes, int needed) throws IOException { int bytePos = _byteCount + gotBytes; int charPos = _charCount; throw new CharConversionException("Unexpected EOF in the middle of a multi-byte char: got " +gotBytes+", needed "+needed +", at char #"+charPos+", byte #"+bytePos+")"); } protected void reportBounds(char[] cbuf, int start, int len) throws IOException { throw new ArrayIndexOutOfBoundsException("read(buf,"+start+","+len+"), cbuf["+cbuf.length+"]"); } protected void reportStrangeStream() throws IOException { throw new IOException("Strange I/O stream, returned 0 bytes on read"); } } ================================================ FILE: toml/src/main/jflex/skeleton-toml ================================================ /** This character denotes the end of file. */ public static final int YYEOF = -1; /** Initial size of the lookahead buffer. */ --- private static final int ZZ_BUFFERSIZE = ...; // Lexical states. --- lexical states, charmap /** Error code for "Unknown internal scanner error". */ private static final int ZZ_UNKNOWN_ERROR = 0; /** Error code for "could not match input". */ private static final int ZZ_NO_MATCH = 1; /** Error code for "pushback value was too large". */ private static final int ZZ_PUSHBACK_2BIG = 2; /** * Error messages for {@link #ZZ_UNKNOWN_ERROR}, {@link #ZZ_NO_MATCH}, and * {@link #ZZ_PUSHBACK_2BIG} respectively. */ private static final String ZZ_ERROR_MSG[] = { "Unknown internal scanner error", "Error: could not match input", "Error: pushback value was too large" }; --- isFinal list /** Input device. */ private java.io.Reader zzReader; /** Current state of the DFA. */ private int zzState; /** Current lexical state. */ private int zzLexicalState = YYINITIAL; /** * This buffer contains the current text to be matched and is the source of the {@link #yytext()} * string. */ private char zzBuffer[]; // JACKSON: remove initializer, moved to .jflex file /** Text position at the last accepting state. */ private int zzMarkedPos; /** Current text position in the buffer. */ private int zzCurrentPos; /** Marks the beginning of the {@link #yytext()} string in the buffer. */ private int zzStartRead; /** Marks the last character in the buffer, that has been read from input. */ private int zzEndRead; /** * Whether the scanner is at the end of file. * @see #yyatEOF */ private boolean zzAtEOF; /** * The number of occupied positions in {@link #zzBuffer} beyond {@link #zzEndRead}. * *

    When a lead/high surrogate has been read from the input stream into the final * {@link #zzBuffer} position, this will have a value of 1; otherwise, it will have a value of 0. */ private int zzFinalHighSurrogate = 0; --- user class code --- constructor declaration /** * Refills the input buffer. * * @return {@code false} iff there was new input. * @exception java.io.IOException if any I/O-Error occurs */ private boolean zzRefill() throws java.io.IOException { /* first: make room (if you can) */ if (zzStartRead > 0) { // JACKSON: check bounds before modifying zzEndRead (jackson-dataformats-text#411) if (zzEndRead < zzBuffer.length - zzFinalHighSurrogate) { zzEndRead += zzFinalHighSurrogate; zzFinalHighSurrogate = 0; } System.arraycopy(zzBuffer, zzStartRead, zzBuffer, 0, zzEndRead - zzStartRead); /* translate stored positions */ zzEndRead -= zzStartRead; zzCurrentPos -= zzStartRead; zzMarkedPos -= zzStartRead; zzStartRead = 0; } // JACKSON: introduce loop, see comment on 'continue' below while (true) { /* is the buffer big enough? */ if (zzCurrentPos >= zzBuffer.length - zzFinalHighSurrogate) { /* if not: blow it up */ // JACKSON: replace resize logic, more in .jflex requestLargerBuffer(); // JACKSON: the low surrogate is read below zzEndRead += zzFinalHighSurrogate; zzFinalHighSurrogate = 0; } /* fill the buffer with new input */ int requested = zzBuffer.length - zzEndRead; int numRead = zzReader.read(zzBuffer, zzEndRead, requested); /* not supposed to occur according to specification of java.io.Reader */ if (numRead == 0) { throw new java.io.IOException( "Reader returned 0 characters. See JFlex examples/zero-reader for a workaround."); } if (numRead > 0) { zzEndRead += numRead; if (Character.isHighSurrogate(zzBuffer[zzEndRead - 1])) { if (numRead == requested) { // We requested too few chars to encode a full Unicode character --zzEndRead; zzFinalHighSurrogate = 1; if (numRead == 1) { // JACKSON: we only read one character, and it was a high surrogate. We need to ensure that if we return // false, zzEndRead has advanced, so we need to try reading another character. continue; } } else { // There is room in the buffer for at least one more char int c = zzReader.read(); // Expecting to read a paired low surrogate char if (c == -1) { return true; } else { zzBuffer[zzEndRead++] = (char)c; } } } /* potentially more input available */ return false; } /* numRead < 0 ==> end of stream */ return true; } } /** * Closes the input reader. * * @throws java.io.IOException if the reader could not be closed. */ public final void yyclose() throws java.io.IOException { zzAtEOF = true; // indicate end of file zzEndRead = zzStartRead; // invalidate buffer if (zzReader != null) { zzReader.close(); } } // JACKSON: remove yyreset without replacement /** * Resets the input position. */ private final void yyResetPosition() { zzAtBOL = true; zzAtEOF = false; zzCurrentPos = 0; zzMarkedPos = 0; zzStartRead = 0; zzEndRead = 0; zzFinalHighSurrogate = 0; yyline = 0; yycolumn = 0; yychar = 0L; } /** * Returns whether the scanner has reached the end of the reader it reads from. * * @return whether the scanner has reached EOF. */ public final boolean yyatEOF() { return zzAtEOF; } /** * Returns the current lexical state. * * @return the current lexical state. */ public final int yystate() { return zzLexicalState; } /** * Enters a new lexical state. * * @param newState the new lexical state */ public final void yybegin(int newState) { zzLexicalState = newState; } /** * Returns the text matched by the current regular expression. * * @return the matched text. */ public final String yytext() { return new String(zzBuffer, zzStartRead, zzMarkedPos-zzStartRead); } /** * Returns the character at the given position from the matched text. * *

    It is equivalent to {@code yytext().charAt(pos)}, but faster. * * @param position the position of the character to fetch. A value from 0 to {@code yylength()-1}. * * @return the character at {@code position}. */ public final char yycharat(int position) { return zzBuffer[zzStartRead + position]; } /** * How many characters were matched. * * @return the length of the matched text region. */ public final int yylength() { return zzMarkedPos-zzStartRead; } /** * Reports an error that occurred while scanning. * *

    In a well-formed scanner (no or only correct usage of {@code yypushback(int)} and a * match-all fallback rule) this method will only be called with things that * "Can't Possibly Happen". * *

    If this method is called, something is seriously wrong (e.g. a JFlex bug producing a faulty * scanner etc.). * *

    Usual syntax/scanner level error handling should be done in error fallback rules. * * @param errorCode the code of the error message to display. */ --- zzScanError declaration String message; try { message = ZZ_ERROR_MSG[errorCode]; } catch (ArrayIndexOutOfBoundsException e) { message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR]; } --- throws clause } /** * Pushes the specified amount of characters back into the input stream. * *

    They will be read again by then next call of the scanning method. * * @param number the number of characters to be read again. This number must not be greater than * {@link #yylength()}. */ --- yypushback decl (contains zzScanError exception) if ( number > yylength() ) zzScanError(ZZ_PUSHBACK_2BIG); zzMarkedPos -= number; } --- zzDoEOF /** * Resumes scanning until the next regular expression is matched, the end of input is encountered * or an I/O-Error occurs. * * @return the next token. * @exception java.io.IOException if any I/O-Error occurs. */ --- yylex declaration int zzInput; int zzAction; // cached fields: int zzCurrentPosL; int zzMarkedPosL; int zzEndReadL = zzEndRead; char[] zzBufferL = zzBuffer; --- local declarations while (true) { zzMarkedPosL = zzMarkedPos; --- start admin (line, char, col count) zzAction = -1; zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL; --- start admin (lexstate etc) zzForAction: { while (true) { --- next input, line, col, char count, next transition, isFinal action zzAction = zzState; zzMarkedPosL = zzCurrentPosL; --- line count update } } } // store back cached position zzMarkedPos = zzMarkedPosL; --- char count update if (zzInput == YYEOF && zzStartRead == zzCurrentPos) { zzAtEOF = true; --- eofvalue } else { --- actions default: --- no match } } } } --- main } ================================================ FILE: toml/src/main/jflex/tools/jackson/dataformat/toml/toml.jflex ================================================ package tools.jackson.dataformat.toml; %% %class Lexer %type TomlToken %unicode %line %column %char %buffer 4000 %ctorarg tools.jackson.core.io.IOContext ioContext %ctorarg TomlStreamReadException.ErrorContext errorContext %init{ this.ioContext = ioContext; this.streamReadConstraints = ioContext.streamReadConstraints(); this.errorContext = errorContext; yybegin(EXPECT_EXPRESSION); this.zzBuffer = ioContext.allocTokenBuffer(); this.textBuffer = ioContext.constructReadConstrainedTextBuffer(); %init} %{ private final tools.jackson.core.io.IOContext ioContext; private final TomlStreamReadException.ErrorContext errorContext; boolean prohibitInternalBufferAllocate = false; private boolean releaseTokenBuffer = true; private boolean trimmedNewline; final tools.jackson.core.util.TextBuffer textBuffer; private final tools.jackson.core.StreamReadConstraints streamReadConstraints; private int nestingDepth; private void requestLargerBuffer() throws TomlStreamReadException { if (prohibitInternalBufferAllocate) { throw errorContext.atPosition(this).generic("Token too long, but buffer resizing prohibited"); } // todo: use recycler char[] newBuffer = new char[zzBuffer.length * 2]; System.arraycopy(zzBuffer, 0, newBuffer, 0, zzBuffer.length); if (releaseTokenBuffer) { ioContext.releaseTokenBuffer(zzBuffer); releaseTokenBuffer = false; } zzBuffer = newBuffer; } public void releaseBuffers() { if (releaseTokenBuffer) { ioContext.releaseTokenBuffer(zzBuffer); zzBuffer = null; } textBuffer.releaseBuffers(); } public int getNestingDepth() { return nestingDepth; } private void startString() { // resetWithEmpty does not set _currentSegment, so we need this variant to be able to append further data textBuffer.emptyAndGetCurrentSegment(); trimmedNewline = false; } private void appendNormalTextToken() { // equivalent to append(yytext()), without the roundtrip through the String constructor textBuffer.append(zzBuffer, zzStartRead, zzMarkedPos-zzStartRead); } private void appendNewlineWithPossibleTrim() { if (!trimmedNewline && textBuffer.size() == 0) { trimmedNewline = true; } else { // \n or \r\n todo: "TOML parsers should feel free to normalize newline to whatever makes sense for their platform." appendNormalTextToken(); } } private void appendUnicodeEscapeShort() { int value = (Character.digit(yycharat(2), 16) << 12) | (Character.digit(yycharat(3), 16) << 8) | (Character.digit(yycharat(4), 16) << 4) | Character.digit(yycharat(5), 16); textBuffer.append((char) value); } private void appendUnicodeEscapeLong() { int value = (Character.digit(yycharat(2), 16) << 28) | (Character.digit(yycharat(3), 16) << 24) | (Character.digit(yycharat(4), 16) << 20) | (Character.digit(yycharat(5), 16) << 16) | (Character.digit(yycharat(6), 16) << 12) | (Character.digit(yycharat(7), 16) << 8) | (Character.digit(yycharat(8), 16) << 4) | Character.digit(yycharat(9), 16); if (Character.isValidCodePoint(value)) { // "Such code points can be represented using a single char." if (value <= Character.MAX_VALUE) { textBuffer.append((char) value); } else { textBuffer.append(Character.highSurrogate(value)); textBuffer.append(Character.lowSurrogate(value)); } } else { throw errorContext.atPosition(this).generic("Invalid code point " + Integer.toHexString(value)); } } int getLine() { return yyline; } int getColumn() { return yycolumn; } long getCharPos() { return yychar; } char[] getTextBuffer() { return zzBuffer; }; int getTextBufferStart() { return zzStartRead; }; int getTextBufferEnd() { return zzMarkedPos; }; %} Ws = [ \t]* WsNonEmpty = [ \t]+ NewLine = \n|\r\n CommentStartSymbol = "#" NonEol = [^\u0000-\u0008\u000a-\u001f\u007f] //Expression = {Ws} (({KeyVal}|{Table}) {Ws}) {Comment}? Comment = {CommentStartSymbol} {NonEol}* //KeyVal = {Key} {KeyValSep} {Val} //Key = {SimpleKey} | {DottedKey} KeyValSep = {Ws} "=" {Ws} //SimpleKey = {QuotedKey} | {UnquotedKey} UnquotedKey = [A-Za-z0-9\-_]+ //QuotedKey = {BasicString} | {LiteralString} //DottedKey = {SimpleKey} ({Ws} "." {Ws} {SimpleKey})+ DotSep = {Ws} "." {Ws} // grammar rule // Val = {String} | {Boolean} | {Array} | {InlineTable} | {DateTime} | {Float} | {Integer} //String = {MlBasicString} | {BasicString} | {MlLiteralString} | {LiteralString} //BasicString = {QuotationMark} {BasicChar}* {QuotationMark} QuotationMark = "\"" //BasicChar = {BasicUnescaped} | {Escaped} // exclude control chars (tab is allowed, " and \) //BasicUnescaped = [^\u0000-\u0008\u0009-\u001f\u007f\\\"] //Escaped = "\\" ([\"\\bfnrt]|"u" {HexDig} {HexDig} {HexDig} {HexDig} ({HexDig} {HexDig} {HexDig} {HexDig})?) UnicodeEscapeShort = "\\u" {HexDig} {HexDig} {HexDig} {HexDig} UnicodeEscapeLong = "\\U" {HexDig} {HexDig} {HexDig} {HexDig} {HexDig} {HexDig} {HexDig} {HexDig} //MlBasicString = {MlBasicStringDelim} {NewLine}? {MlBasicBody} {MlBasicStringDelim} MlBasicStringDelim = "\"\"\"" //MlBasicBody = {MlbContent}* ({MlbQuotes} {MlbContent}+)* {MlbQuotes}? //MlbContent = {MlbChar} | {NewLine} | {MlbEscapedNl} //MlbChar = {MlbUnescaped} | {Escaped} //MlbUnescaped = {BasicUnescaped} //MlbEscapedNl = {Escaped} {Ws} {NewLine} ([ \t] | {NewLine})* Apostrophe = "'" MlLiteralStringDelim = "'''" Integer = {DecInt} | {HexInt} | {OctInt} | {BinInt} DecInt = [+-]? {UnsignedDecInt} UnsignedDecInt = [0-9] | ([1-9] (_? [0-9])+) HexInt = 0x {HexDig} (_? {HexDig})* OctInt = 0o [0-7] (_? [0-7])* BinInt = 0b [01] (_? [01])* Float = {DecInt} ({Exp} | {Frac} {Exp}?) | {SpecialFloat} Frac = "." {ZeroPrefixableInt} ZeroPrefixableInt = [0-9] (_? [0-9])* Exp = [eE] [+-]? {ZeroPrefixableInt} SpecialFloat = [+-]? (inf | nan) // Boolean = "true" | "false" //DateTime = {OffsetDateTime} | {LocalDateTime} | {LocalDate} | {LocalTime} DateFullyear = [0-9][0-9][0-9][0-9] DateMonth = [0-9][0-9] DateMday = [0-9][0-9] TimeDelim = [Tt ] TimeHour = [0-9][0-9] TimeMinute = [0-9][0-9] TimeSecond = [0-9][0-9] TimeSecfrac = "." [0-9]+ TimeNumoffset = [+-] {TimeHour} ":" {TimeMinute} TimeOffset = "Z" | {TimeNumoffset} PartialTime = {TimeHour} ":" {TimeMinute} ":" {TimeSecond} {TimeSecfrac}? FullDate = {DateFullyear} "-" {DateMonth} "-" {DateMday} FullTime = {PartialTime} {TimeOffset} OffsetDateTime = {FullDate} {TimeDelim} {FullTime} LocalDateTime = {FullDate} {TimeDelim} {PartialTime} LocalDate = {FullDate} LocalTime = {PartialTime} //Array = {ArrayOpen} {ArrayValues}? {WsCommentNewline} {ArrayClose} ArrayOpen = "[" ArrayClose = "]" //ArrayValues = {WsCommentNewline} {Val} {WsCommentNewline} ("," {ArrayValues} | ","?) Comma = "," WsCommentNewlineNonEmpty = ([\t ] | {Comment}? {NewLine})+ //Table = {StdTable} | {ArrayTable} //StdTable = {StdTableClose} {Key} {StdTableClose} StdTableOpen = "[" {Ws} StdTableClose = {Ws} "]" //InlineTable = {InlineTableOpen} {InlineTableKeyvals}? {InlineTableClose} InlineTableOpen = "{" {Ws} InlineTableClose = {Ws} "}" //InlineTableKeyvals = {KeyVal} ("," {InlineTableKeyvals})? //ArrayTable = {ArrayTableOpen} {Key} {ArrayTableClose} ArrayTableOpen = "[[" {Ws} ArrayTableClose = {Ws} "]]" HexDig = [0-9A-Fa-f] %state EXPECT_EXPRESSION %state EXPECT_INLINE_KEY %state EXPECT_VALUE %state EXPECT_EOL %state EXPECT_ARRAY_SEP %state EXPECT_TABLE_SEP %state ML_BASIC_STRING %state BASIC_STRING %state ML_LITERAL_STRING %state LITERAL_STRING %% { // this state matches until the *first* simple-key of a key, or until the -open token of a table. // toml = expression *( newline expression ) // expression = ws [ comment ] // expression =/ ws keyval ws [ comment ] // keyval = key keyval-sep val // key = simple-key / dotted-key // simple-key = quoted-key / unquoted-key // expression =/ ws table ws [ comment ] // table = std-table / array-table // std-table = std-table-open key std-table-close // array-table = array-table-open key array-table-close {UnquotedKey} {return TomlToken.UNQUOTED_KEY;} // quoted-key = basic-string / literal-string {QuotationMark} { yybegin(BASIC_STRING); startString(); } {Apostrophe} { yybegin(LITERAL_STRING); startString(); } {StdTableOpen} { streamReadConstraints.validateNestingDepth(++nestingDepth); return TomlToken.STD_TABLE_OPEN; } {ArrayTableOpen} { streamReadConstraints.validateNestingDepth(++nestingDepth); return TomlToken.ARRAY_TABLE_OPEN; } {KeyValSep} {return TomlToken.KEY_VAL_SEP;} {NewLine} {} {Comment} {} {WsNonEmpty} {} } { // this state matches a possibly dotted key, until a following token (keyval-sep, std-table-close, array-table-close) // key = simple-key / dotted-key // dotted-key = simple-key 1*( dot-sep simple-key ) // simple-key = quoted-key / unquoted-key {UnquotedKey} {return TomlToken.UNQUOTED_KEY;} {DotSep} {return TomlToken.DOT_SEP;} // quoted-key = basic-string / literal-string {QuotationMark} { yybegin(BASIC_STRING); startString(); } {Apostrophe} { yybegin(LITERAL_STRING); startString(); } {KeyValSep} {return TomlToken.KEY_VAL_SEP;} {InlineTableClose} { nestingDepth--; return TomlToken.INLINE_TABLE_CLOSE; } {StdTableClose} { nestingDepth--; return TomlToken.STD_TABLE_CLOSE; } {ArrayTableClose} { nestingDepth--; return TomlToken.ARRAY_TABLE_CLOSE; } } { // this matches the remainder after a keyval or table in an expression. // expression = ws [ comment ] // expression =/ ws keyval ws [ comment ] // expression =/ ws table ws [ comment ] {NewLine} {yybegin(EXPECT_EXPRESSION);} {Comment} {} {WsNonEmpty} {} } { // val = string / boolean / array / inline-table / date-time / float / integer // used by: // keyval = key keyval-sep val // array-values = ws-comment-newline val ws-comment-newline array-sep array-values // array-values =/ ws-comment-newline val ws-comment-newline [ array-sep ] // strings {QuotationMark} { yybegin(BASIC_STRING); startString(); } {MlBasicStringDelim} { yybegin(ML_BASIC_STRING); startString(); } {Apostrophe} { yybegin(LITERAL_STRING); startString(); } {MlLiteralStringDelim} { yybegin(ML_LITERAL_STRING); startString(); } // scalar values true {return TomlToken.TRUE;} false {return TomlToken.FALSE;} {OffsetDateTime} {return TomlToken.OFFSET_DATE_TIME;} {LocalDateTime} {return TomlToken.LOCAL_DATE_TIME;} {LocalDate} {return TomlToken.LOCAL_DATE;} {LocalTime} {return TomlToken.LOCAL_TIME;} {Float} {return TomlToken.FLOAT;} {Integer} {return TomlToken.INTEGER;} [+-]? [0-9]+ { throw errorContext.atPosition(this).generic("Zero-prefixed ints are not valid. If you want an octal literal, use the prefix '0o'"); } // inline array / table {ArrayOpen} {WsCommentNewlineNonEmpty}* { streamReadConstraints.validateNestingDepth(++nestingDepth); return TomlToken.ARRAY_OPEN; } {InlineTableOpen} { streamReadConstraints.validateNestingDepth(++nestingDepth); return TomlToken.INLINE_TABLE_OPEN; } // array end just after comma {WsCommentNewlineNonEmpty}* {ArrayClose} { nestingDepth--; return TomlToken.ARRAY_CLOSE; } } { // array-values = ws-comment-newline val ws-comment-newline array-sep array-values // array-values =/ ws-comment-newline val ws-comment-newline [ array-sep ] {Comma} {WsCommentNewlineNonEmpty}* {return TomlToken.COMMA;} {ArrayClose} { nestingDepth--; return TomlToken.ARRAY_CLOSE; } {WsCommentNewlineNonEmpty} {} // always allowed here } { // inline-table = inline-table-open [ inline-table-keyvals ] inline-table-close // inline-table-keyvals = keyval [ inline-table-sep inline-table-keyvals ] {Ws} {Comma} {Ws} {return TomlToken.COMMA;} {InlineTableClose} { nestingDepth--; return TomlToken.INLINE_TABLE_CLOSE; } } { // basic-string = quotation-mark *basic-char quotation-mark // basic-char = basic-unescaped / escaped // basic-unescaped = wschar / %x21 / %x23-5B / %x5D-7E / non-ascii {QuotationMark} {return TomlToken.STRING;} } { // ml-basic-string = ml-basic-string-delim [ newline ] ml-basic-body ml-basic-string-delim // ml-basic-body = *mlb-content *( mlb-quotes 1*mlb-content ) [ mlb-quotes ] // mlb-content = mlb-char / newline / mlb-escaped-nl // mlb-char = mlb-unescaped / escaped // mlb-quotes = 1*2quotation-mark {MlBasicStringDelim} {return TomlToken.STRING;} {NewLine} { appendNewlineWithPossibleTrim(); } // mlb-quotes: inline \" { textBuffer.append('"'); } // mlb-quotes: at the end \" {MlBasicStringDelim} { textBuffer.append('"'); return TomlToken.STRING; } \"\" {MlBasicStringDelim} { textBuffer.append('"'); textBuffer.append('"'); return TomlToken.STRING; } // mlb-escaped-nl // ignore, but disable newline trimming after it \\ {Ws} {NewLine} ([ \t] | {NewLine})* { trimmedNewline = true; } } { [^\u0000-\u0008\u000a-\u001f\u007f\\\"]+ { appendNormalTextToken(); } \\\" { textBuffer.append('"'); } \\\\ { textBuffer.append('\\'); } \\b { textBuffer.append('\b'); } \\f { textBuffer.append('\f'); } \\n { textBuffer.append('\n'); } \\r { textBuffer.append('\r'); } \\t { textBuffer.append('\t'); } {UnicodeEscapeShort} { appendUnicodeEscapeShort(); } {UnicodeEscapeLong} { appendUnicodeEscapeLong(); } \\ { throw errorContext.atPosition(this).generic("Unknown escape sequence"); } } { // literal-string = apostrophe *literal-char apostrophe {Apostrophe} {return TomlToken.STRING;} [^\u0000-\u0008\u000a-\u001f\u007f']+ { appendNormalTextToken(); } } { // ml-literal-string = ml-literal-string-delim [ newline ] ml-literal-body ml-literal-string-delim // ml-literal-body = *mll-content *( mll-quotes 1*mll-content ) [ mll-quotes ] // mll-quotes = 1*2apostrophe {MlLiteralStringDelim} {return TomlToken.STRING;} [^\u0000-\u0008\u000a-\u001f\u007f']+ { appendNormalTextToken(); } {NewLine} { appendNewlineWithPossibleTrim(); } // mll-quotes: inline {Apostrophe} { textBuffer.append('\''); } // mll-quotes: at the end {Apostrophe} {MlLiteralStringDelim} { textBuffer.append('\''); return TomlToken.STRING; } {Apostrophe}{Apostrophe} {MlLiteralStringDelim} { textBuffer.append('\''); textBuffer.append('\''); return TomlToken.STRING; } } // catchall error rules. Must never match more than one character, so that they cannot take precedent over other rules. [\r\n] { throw errorContext.atPosition(this).generic("Newline not permitted here"); } [\u0000-\u001f\u007f] { throw errorContext.atPosition(this).generic("Illegal control character"); } \# { throw errorContext.atPosition(this).generic("Comment not permitted here"); } [^] { throw errorContext.atPosition(this).generic("More data after value has already ended. Invalid value preceding this position?"); } [^] { throw errorContext.atPosition(this).generic("Unknown token"); } ================================================ FILE: toml/src/main/resources/META-INF/LICENSE ================================================ This copy of Jackson JSON processor TOML module is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the specific rights regarding derivative works. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 ================================================ FILE: toml/src/main/resources/META-INF/NOTICE ================================================ # Jackson JSON processor Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers. ## Copyright Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) ## Licensing Jackson components are licensed under Apache (Software) License, version 2.0, as per accompanying LICENSE file. ## Credits A list of contributors may be found from CREDITS file, which is included in some artifacts (usually source distributions); but is always available from the source code management (SCM) system project uses. ================================================ FILE: toml/src/main/resources/META-INF/services/tools.jackson.core.TokenStreamFactory ================================================ tools.jackson.dataformat.toml.TomlFactory ================================================ FILE: toml/src/main/resources/META-INF/services/tools.jackson.databind.ObjectMapper ================================================ tools.jackson.dataformat.toml.TomlMapper ================================================ FILE: toml/src/test/java/module-info.java ================================================ // Properties unit test Module descriptor module tools.jackson.dataformat.toml { // Since we are not split from Main artifact, will not // need to depend on Main artifact -- but need its dependencies requires tools.jackson.core; requires tools.jackson.databind; // Additional test lib/framework dependencies requires org.assertj.core; requires org.junit.jupiter.api; requires org.junit.jupiter.params; // Further, need to open up some packages for JUnit et al opens tools.jackson.dataformat.toml; opens tools.jackson.dataformat.toml.dos; opens tools.jackson.dataformat.toml.testutil.failure; } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/ComplexPojoReadWriteTest.java ================================================ package tools.jackson.dataformat.toml; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.*; // Copied from YAML modules "DatabindAdvancedTest" public class ComplexPojoReadWriteTest extends TomlMapperTestBase { enum Size { SMALL, LARGE; } static class MediaItem { private MediaContent _content; private List _images; public MediaItem() { } public MediaItem(MediaContent c) { _content = c; } public void addPhoto(Image p) { if (_images == null) { _images = new ArrayList(); } _images.add(p); } public List getImages() { return _images; } public void setImages(List p) { _images = p; } public MediaContent getContent() { return _content; } public void setContent(MediaContent c) { _content = c; } } static class MediaContent { public enum Player { JAVA, FLASH; } private Player _player; private String _uri; private String _title; private int _width; private int _height; private String _format; private long _duration; private long _size; private int _bitrate; private List _persons; private String _copyright; public MediaContent() { } protected MediaContent(MediaContent src) { _player = src._player; _uri = src._uri; _title = src._title; _width = src._width; _height = src._height; _format = src._format; _duration = src._duration; _size = src._size; _bitrate = src._bitrate; _persons = src._persons; _copyright = src._copyright; } public void addPerson(String p) { if (_persons == null) { _persons = new ArrayList(); } _persons.add(p); } public Player getPlayer() { return _player; } public String getUri() { return _uri; } public String getTitle() { return _title; } public int getWidth() { return _width; } public int getHeight() { return _height; } public String getFormat() { return _format; } public long getDuration() { return _duration; } public long getSize() { return _size; } public int getBitrate() { return _bitrate; } public List getPersons() { return _persons; } public String getCopyright() { return _copyright; } public void setPlayer(Player p) { _player = p; } public void setUri(String u) { _uri = u; } public void setTitle(String t) { _title = t; } public void setWidth(int w) { _width = w; } public void setHeight(int h) { _height = h; } public void setFormat(String f) { _format = f; } public void setDuration(long d) { _duration = d; } public void setSize(long s) { _size = s; } public void setBitrate(int b) { _bitrate = b; } public void setPersons(List p) { _persons = p; } public void setCopyright(String c) { _copyright = c; } } static class Image { private String _uri; private String _title; private int _width; private int _height; private Size _size; public Image() {} public Image(String uri, String title, int w, int h, Size s) { _uri = uri; _title = title; _width = w; _height = h; _size = s; } public String getUri() { return _uri; } public String getTitle() { return _title; } public int getWidth() { return _width; } public int getHeight() { return _height; } public Size getSize() { return _size; } public void setUri(String u) { _uri = u; } public void setTitle(String t) { _title = t; } public void setWidth(int w) { _width = w; } public void setHeight(int h) { _height = h; } public void setSize(Size s) { _size = s; } } /* /********************************************************************** /* Test methods /********************************************************************** */ // For [dataformats-text#260]: resetting (or lack thereof) of "inlined" flag @Test public void testReadWriteComplexPojo() throws Exception { ObjectMapper mapper = newTomlMapper(); MediaItem input = new MediaItem(); MediaContent content = new MediaContent(); content.setTitle("Databind test"); content.addPerson("William"); content.addPerson("Robert"); content.setFormat("jpeg"); content.setWidth(900); content.setHeight(120); content.setBitrate(256000); content.setDuration(3600 * 1000L); content.setCopyright("none"); content.setPlayer(MediaContent.Player.FLASH); content.setUri("http://whatever.biz"); input.setContent(content); input.addPhoto(new Image("http://a.com", "title1", 200, 100, Size.LARGE)); input.addPhoto(new Image("http://b.org", "title2", 640, 480, Size.SMALL)); final String toml = mapper.writeValueAsString(input); MediaItem result = mapper.readValue(toml, MediaItem.class); assertNotNull(result); assertNotNull(result.getContent()); assertEquals(900, result.getContent().getWidth()); assertEquals(120, result.getContent().getHeight()); assertNotNull(result.getImages()); assertEquals(2, result.getImages().size()); assertEquals(Size.SMALL, result.getImages().get(1).getSize()); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/ComplianceInvalidTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.IOException; import java.nio.file.*; import java.util.stream.Stream; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.assertThrows; public class ComplianceInvalidTest extends TomlMapperTestBase { private final ObjectMapper MAPPER = newTomlMapper(); private final Path path; public ComplianceInvalidTest(Path path) { this.path = path; } // JUnit 5 throws error when methodSource provides empty `Stream` which // seems to always be the case.... @Disabled @MethodSource("data") @ParameterizedTest public void test(Path path) throws IOException { // Test implementation assertThrows( TomlStreamReadException.class, () -> MAPPER.readTree(path.toFile()) ); } // This is the static method that provides data for the parameterized test public static Stream data() throws IOException { Path folder = Paths.get("compliance", "invalid"); if (!Files.exists(folder)) { return Stream.empty(); // Ensure this folder exists with files for the test to run } return Files.walk(folder) .filter(Files::isRegularFile) .map(p -> new Object[]{p}); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/ComplianceValidTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.IOException; import java.nio.file.*; import java.time.*; import java.util.Map; import java.util.Objects; import java.util.stream.Stream; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; import tools.jackson.core.io.NumberInput; import tools.jackson.databind.JsonNode; import tools.jackson.databind.json.JsonMapper; import tools.jackson.databind.node.ArrayNode; import tools.jackson.databind.node.JsonNodeCreator; import tools.jackson.databind.node.ObjectNode; import static org.junit.jupiter.api.Assertions.assertEquals; public class ComplianceValidTest extends TomlMapperTestBase { public static Stream data() throws IOException { Path folder = Paths.get("compliance", "valid"); if (!Files.exists(folder)) { return Stream.empty(); } return Files.walk(folder) .filter(Files::isRegularFile) .filter(p -> p.toString().endsWith(".toml")) .map(p -> { String path = p.toString(); String withoutSuffix = path.substring(0, path.length() - 5); Path json = Paths.get(withoutSuffix + ".json"); if (Files.isRegularFile(json)) { return new Object[]{p, JsonMapper.shared().readTree(json)}; } // can't parse inf values :( /* Path yaml = Paths.get(withoutSuffix + ".yaml"); if (Files.isRegularFile(yaml)) { return new Object[]{p, YAMLMapper.shared().readTree(yaml)}; } */ return null; }) .filter(Objects::nonNull); } private final Path path; private final ObjectNode expected; public ComplianceValidTest(Path path, ObjectNode expected) { this.path = path; this.expected = expected; } // JUnit 5 throws error when methodSource provides empty `Stream` which // seems to always be the case.... @Disabled @MethodSource("data") @ParameterizedTest public void test() throws Exception { JsonNode actual = TomlMapper.builder() .enable(TomlReadFeature.PARSE_JAVA_TIME) .build().readTree(path.toFile()); assertEquals(mapFromComplianceNode(expected), actual); } private static JsonNode mapFromComplianceNode(ObjectNode expected) { final JsonNodeCreator nodeF = expected; if (expected.has("type") && expected.has("value")) { JsonNode value = expected.get("value"); switch (expected.get("type").stringValue()) { case "string": // for some reason, the compliance tests escape these values. this makes some tests fail right now return nodeF.stringNode(value.stringValue()); case "integer": return nodeF.numberNode(NumberInput.parseBigInteger(value.stringValue(), false)); case "float": switch (value.stringValue()) { case "inf": return nodeF.numberNode(Double.POSITIVE_INFINITY); case "-inf": return nodeF.numberNode(Double.NEGATIVE_INFINITY); case "nan": return nodeF.numberNode(Double.NaN); default: return nodeF.numberNode(NumberInput.parseBigDecimal(value.stringValue(), false)); } case "boolean": return nodeF.booleanNode(Boolean.parseBoolean(value.stringValue())); case "offset datetime": return nodeF.pojoNode(OffsetDateTime.parse(value.stringValue())); case "local datetime": case "datetime-local": return nodeF.pojoNode(LocalDateTime.parse(value.stringValue())); case "local date": case "date": return nodeF.pojoNode(LocalDate.parse(value.stringValue())); case "local time": case "time": return nodeF.pojoNode(LocalTime.parse(value.stringValue())); case "array": ArrayNode array = nodeF.arrayNode(); for (JsonNode member : value) { array.add(mapFromComplianceNode((ObjectNode) member)); } return array; default: throw new AssertionError(expected); } } else { ObjectNode object = expected.objectNode(); for (Map.Entry field : expected.properties()) { object.set(field.getKey(), mapFromComplianceNode((ObjectNode) field.getValue())); } return object; } } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/FuzzTomlRead57237Test.java ================================================ package tools.jackson.dataformat.toml; import java.io.InputStream; import java.util.Arrays; import org.junit.jupiter.api.Test; import tools.jackson.core.exc.StreamReadException; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.fail; /** * Collection of OSS-Fuzz found issues for TOML format module. */ public class FuzzTomlRead57237Test extends TomlMapperTestBase { private final ObjectMapper TOML_MAPPER = newTomlMapper(); // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=57237 @Test public void testArrayCopy57237() throws Exception { try (InputStream is = FuzzTomlRead57237Test.class.getResourceAsStream( "/clusterfuzz-testcase-minimized-TOMLFuzzer-6542204348006400")) { try { TOML_MAPPER.readTree(is); fail("Should not pass"); } catch (StreamReadException e) { // Possibly not what we should get; tweak once working verifyException(e, "Premature end of file"); } } } protected void verifyException(Throwable e, String... matches) { String msg = e.getMessage(); String lmsg = (msg == null) ? "" : msg.toLowerCase(); for (String match : matches) { String lmatch = match.toLowerCase(); if (lmsg.indexOf(lmatch) >= 0) { return; } } fail("Expected an exception with one of substrings ("+Arrays.asList(matches)+"): got one with message \""+msg+"\""); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/FuzzTomlReadTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.InputStream; import java.util.Arrays; import org.junit.jupiter.api.Test; import tools.jackson.core.JacksonException; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.exc.JacksonIOException; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.core.exc.StreamReadException; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import static org.junit.jupiter.api.Assertions.fail; /** * Collection of OSS-Fuzz found issues for TOML format module. */ public class FuzzTomlReadTest extends TomlMapperTestBase { private final ObjectMapper TOML_MAPPER = newTomlMapper(); // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50036 @Test public void testBigIntegerDecoding50033() throws Exception { String INPUT = "a=1971\n" + "0O=0xd6e0333333243333333\n" + "033333333434" ; try { JsonNode n = TOML_MAPPER.readTree(INPUT); fail("Should not pass, got: "+n); } catch (StreamReadException e) { verifyException(e, "Premature end of file"); // NOTE: decoding of token for error message seems wrong, cannot // quite verify it for the last line } } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50036 @Test public void testUTF8Decoding50036() throws Exception { byte[] INPUT = new byte[] { 0x20, (byte) 0xCD }; try { TOML_MAPPER.readTree(INPUT); fail("Should not pass"); } catch (JacksonIOException e) { verifyException(e, "Unexpected EOF in the middle of a multi-byte"); verifyException(e, "got 1, needed 2"); } } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50432 @Test public void testParseInlineTable50432() throws Exception { try (InputStream is = FuzzTomlReadTest.class.getResourceAsStream( "/clusterfuzz-testcase-minimized-TOMLFuzzer-6370486359031808")) { try { TOML_MAPPER.readTree(is); fail("Should not pass"); } catch (StreamConstraintsException e) { String exceptionPrefix = String.format("Document nesting depth (%d) exceeds the maximum allowed", StreamReadConstraints.DEFAULT_MAX_DEPTH + 1); verifyException(e, exceptionPrefix); } } } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=51654 @Test public void testCodepoint51654() throws Exception { try (InputStream is = FuzzTomlReadTest.class.getResourceAsStream( "/clusterfuzz-testcase-minimized-TOMLFuzzer-5068015447703552")) { try { TOML_MAPPER.readTree(is); fail("Should not pass"); } catch (StreamReadException e) { verifyException(e, "EOF in wrong state"); } } } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50039 @Test public void testBigDecimalOverflow() throws Exception { String INPUT = "q=8E8188888888"; try { TOML_MAPPER.readTree(INPUT); fail("Should not pass"); } catch (JacksonException e) { verifyException(e, "Invalid number"); verifyException(e, "8E8188888888"); } } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50395 @Test public void testNumberParsingFail50395() throws Exception { String INPUT = "j=427\n-03b-"; try { TOML_MAPPER.readTree(INPUT); fail("Should not pass"); } catch (StreamReadException e) { verifyException(e, "Premature end of file"); } } @Test public void testStackOverflow50083() throws Exception { StringBuilder input = new StringBuilder(); for (int i = 0; i < 9999; i++) { input.append("a={"); } try { TOML_MAPPER.readTree(input.toString()); fail("Should not pass"); } catch (StreamConstraintsException e) { String exceptionPrefix = String.format("Document nesting depth (%d) exceeds the maximum allowed", StreamWriteConstraints.DEFAULT_MAX_DEPTH + 1); verifyException(e, exceptionPrefix); } } protected void verifyException(Throwable e, String... matches) { String msg = e.getMessage(); String lmsg = (msg == null) ? "" : msg.toLowerCase(); for (String match : matches) { String lmatch = match.toLowerCase(); if (lmsg.indexOf(lmatch) >= 0) { return; } } fail("Expected an exception with one of substrings ("+Arrays.asList(matches)+"): got one with message \""+msg+"\""); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/LongTokenTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.IOException; import java.io.StringReader; import java.math.BigDecimal; import java.math.BigInteger; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.node.ObjectNode; import static org.junit.jupiter.api.Assertions.*; public class LongTokenTest extends TomlMapperTestBase { private static final int SCALE = 10_000; // must be bigger than the default buffer size // Need to ensure max-number-limit not hit private final TomlFactory FACTORY = TomlFactory.builder() .streamReadConstraints(StreamReadConstraints.builder().maxNumberLength(Integer.MAX_VALUE).build()) .build(); private final ObjectMapper NO_LIMITS_MAPPER = newTomlMapper(FACTORY); @Test public void decimal() throws IOException { StringBuilder toml = new StringBuilder("foo = 0."); for (int i = 0; i < SCALE; i++) { toml.append('0'); } toml.append('1'); ObjectNode node = (ObjectNode) NO_LIMITS_MAPPER.readTree(toml.toString()); BigDecimal decimal = node.get("foo").decimalValue(); assertTrue(decimal.compareTo(BigDecimal.ZERO) > 0); assertTrue(decimal.compareTo(BigDecimal.ONE) < 0); } @Test public void decimalTooLong() throws IOException { // default TomlFactory has max num length of 1000 final ObjectMapper mapper = newTomlMapper(); StringBuilder toml = new StringBuilder("foo = 0."); for (int i = 0; i < SCALE; i++) { toml.append('0'); } toml.append('1'); try { mapper.readTree(toml.toString()); fail("expected TomlStreamReadException"); } catch (TomlStreamReadException e) { assertTrue(e.getMessage().contains("[truncated]"), "exception message contains truncated number"); } } @Test public void integer() throws IOException { StringBuilder toml = new StringBuilder("foo = 0b1"); for (int i = 0; i < SCALE; i++) { toml.append('0'); } ObjectNode node = (ObjectNode) NO_LIMITS_MAPPER.readTree(toml.toString()); BigInteger integer = node.get("foo").bigIntegerValue(); assertEquals(SCALE + 1, integer.bitLength()); } @Test public void comment() throws IOException { StringBuilder toml = new StringBuilder("# "); for (int i = 0; i < SCALE; i++) { toml.append('a'); } ObjectNode node = (ObjectNode) NO_LIMITS_MAPPER.readTree(toml.toString()); assertTrue(node.isEmpty()); } @Test public void arrayWhitespace() throws IOException { StringBuilder toml = new StringBuilder("foo = ["); for (int i = 0; i < SCALE; i++) { toml.append(' '); } toml.append(']'); ObjectNode node = (ObjectNode) NO_LIMITS_MAPPER.readTree(toml.toString()); assertEquals(0, node.get("foo").size()); } @Test public void unquotedKey() throws IOException { StringBuilder toml = new StringBuilder("f"); for (int i = 0; i < SCALE; i++) { toml.append('o'); } String expectedKey = toml.toString(); toml.append(" = 0"); ObjectNode node = (ObjectNode) NO_LIMITS_MAPPER.readTree(toml.toString()); assertEquals(expectedKey, node.propertyNames().iterator().next()); } @Test public void string() throws IOException { StringBuilder toml = new StringBuilder("foo = '"); for (int i = 0; i < SCALE; i++) { toml.append('a'); } toml.append("'"); ObjectNode node = (ObjectNode) NO_LIMITS_MAPPER.readTree(toml.toString()); assertEquals(SCALE, node.get("foo").stringValue().length()); } @Test public void stringEscapes() throws IOException { StringBuilder toml = new StringBuilder("foo = \""); for (int i = 0; i < SCALE; i++) { toml.append("\\n"); } toml.append("\""); // 03-Dec-2022, tatu: This is unfortunate, have to use direct access ObjectNode node = TomlParser.parse(FACTORY, testIOContext(), TomlWriteFeature.INTERNAL_PROHIBIT_INTERNAL_BUFFER_ALLOCATE, new StringReader(toml.toString())); assertEquals(SCALE, node.get("foo").stringValue().length()); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/POJOReadWriteTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.ByteArrayInputStream; import java.nio.charset.StandardCharsets; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.json.JsonMapper; import static org.junit.jupiter.api.Assertions.*; // Composed of pieces from other format modules' tests public class POJOReadWriteTest extends TomlMapperTestBase { @JsonPropertyOrder({ "topLeft", "bottomRight" }) protected static class Rectangle { public Point topLeft; public Point bottomRight; protected Rectangle() { } public Rectangle(Point p1, Point p2) { topLeft = p1; bottomRight = p2; } @Override public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Rectangle)) return false; Rectangle other = (Rectangle) o; return Objects.equals(this.topLeft, other.topLeft) && Objects.equals(this.bottomRight, other.bottomRight); } @Override public String toString() { return "Rectangle(topLeft="+topLeft+"/bottomRight="+bottomRight+")"; } } @JsonPropertyOrder({ "x", "y" }) protected static class Point { public int x, y; protected Point() { } public Point(int x0, int y0) { x = x0; y = y0; } @Override public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof Point)) return false; Point other = (Point) o; return (this.x == other.x) && (this.y == other.y); } @Override public String toString() { return "Point(x="+x+",y="+y+")"; } } protected static class PointWrapper { public Point point; public PointWrapper(Point p) { point = p; } protected PointWrapper() { } } @JsonPropertyOrder({ "ids", "points" }) protected static class PointListBean { public List ids; public List points; protected PointListBean() { } protected PointListBean(List ids, List points) { this.ids = ids; this.points = points; } } public enum Gender { MALE, FEMALE }; /** * Slightly modified sample class from Jackson tutorial ("JacksonInFiveMinutes") */ @JsonPropertyOrder({"firstName", "lastName", "gender" ,"verified", "userImage"}) protected static class FiveMinuteUser { private Gender _gender; public String firstName, lastName; private boolean _isVerified; private byte[] _userImage; public FiveMinuteUser() { } public FiveMinuteUser(String first, String last, boolean verified, Gender g, byte[] data) { firstName = first; lastName = last; _isVerified = verified; _gender = g; _userImage = data; } public boolean isVerified() { return _isVerified; } public Gender getGender() { return _gender; } public byte[] getUserImage() { return _userImage; } public void setVerified(boolean b) { _isVerified = b; } public void setGender(Gender g) { _gender = g; } public void setUserImage(byte[] b) { _userImage = b; } @Override public boolean equals(Object o) { if (o == this) return true; if (o == null || o.getClass() != getClass()) return false; FiveMinuteUser other = (FiveMinuteUser) o; if (_isVerified != other._isVerified) return false; if (_gender != other._gender) return false; if (!firstName.equals(other.firstName)) return false; if (!lastName.equals(other.lastName)) return false; byte[] otherImage = other._userImage; if (otherImage.length != _userImage.length) return false; for (int i = 0, len = _userImage.length; i < len; ++i) { if (_userImage[i] != otherImage[i]) { return false; } } return true; } @Override public int hashCode() { // not really good but whatever: return firstName.hashCode(); } } private final ObjectMapper MAPPER = newTomlMapper(); private final ObjectMapper JSON_MAPPER = new JsonMapper(); @Test public void testSimpleEmployee() throws Exception { final FiveMinuteUser input = new FiveMinuteUser("Bob", "Palmer", true, Gender.MALE, new byte[] { 1, 2, 3, 4 }); final String EXP = "firstName = 'Bob'\n" +"lastName = 'Palmer'\n" +"gender = 'MALE'\n" +"verified = true\n" +"userImage = 'AQIDBA=='\n"; String output = MAPPER.writeValueAsString(input); assertEquals(EXP, output); // So far so good; let's read back FiveMinuteUser result = MAPPER.readerFor(FiveMinuteUser.class) .readValue(output); assertEquals(input, result); // and with conversion too JsonNode treeFromToml = MAPPER.readTree(output); assertTrue(treeFromToml.isObject()); assertEquals(5, treeFromToml.size()); // Ensure that POJO->TOML->Tree is same as POJO->JSON->Tree final String json = JSON_MAPPER.writeValueAsString(input); final JsonNode treeViaJson = JSON_MAPPER.readTree(json); assertEquals(treeViaJson.toPrettyString(), treeFromToml.toPrettyString()); assertEquals(treeViaJson.get("firstName"), treeFromToml.get("firstName")); assertEquals(treeViaJson.get("lastName"), treeFromToml.get("lastName")); assertEquals(treeViaJson.get("gender"), treeFromToml.get("gender")); assertEquals(treeViaJson.get("verified"), treeFromToml.get("verified")); assertEquals(treeViaJson.get("userImage"), treeFromToml.get("userImage")); assertEquals(treeViaJson, treeFromToml); } @Test public void testSimpleRectangle() throws Exception { final Rectangle input = new Rectangle(new Point(1, -2), new Point(5, 10)); byte[] toml = MAPPER.writeValueAsBytes(input); assertEquals("topLeft.x = 1\n" +"topLeft.y = -2\n" +"bottomRight.x = 5\n" +"bottomRight.y = 10\n" , new String(toml, StandardCharsets.UTF_8)); Rectangle result; // Read first from static byte[] result = MAPPER.readerFor(Rectangle.class) .readValue(toml); assertNotNull(result.topLeft); assertNotNull(result.bottomRight); assertEquals(input, result); // and then via InputStream result = MAPPER.readerFor(Rectangle.class) .readValue(new ByteArrayInputStream(toml)); assertNotNull(result.topLeft); assertNotNull(result.bottomRight); assertEquals(input, result); } // Check to see if Objects in Arrays work wrt generation or not @Test public void testPOJOListBean() throws Exception { final PointListBean input = new PointListBean( Arrays.asList("a", "b"), Arrays.asList(new Point(1, 2), new Point(3, 4)) ); final String toml = MAPPER.writeValueAsString(input); PointListBean result = MAPPER.readerFor(PointListBean.class) .readValue(toml); assertNotNull(result.points); assertEquals(input.points, result.points); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/StringOutputUtilTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.StringReader; import org.junit.jupiter.api.Test; import tools.jackson.core.io.IOContext; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; public class StringOutputUtilTest extends TomlMapperTestBase { @Test public void exhaustiveWriteReadTest() throws Exception { // this test attempts single-character writes for *all* code points, and sees whether they're read back // correctly. TomlStreamReadException.ErrorContext errorContext = new TomlStreamReadException.ErrorContext(null, null); // reused for performance StringBuilder builder = new StringBuilder(); int nUnquoted = 0; int nLiteral = 0; int nBasicNoEscape = 0; int nBasic = 0; for (int c = 0; c <= Character.MAX_CODE_POINT; c++) { int cats = StringOutputUtil.categorize(c); builder.setLength(0); builder.appendCodePoint(c); String rawString = builder.toString(); if ((cats & StringOutputUtil.UNQUOTED_KEY) != 0) { nUnquoted++; Lexer lexer = new Lexer(new StringReader(rawString), _ioContext(builder), errorContext); lexer.yybegin(Lexer.EXPECT_INLINE_KEY); assertEquals(TomlToken.UNQUOTED_KEY, lexer.yylex()); lexer.releaseBuffers(); } if ((cats & StringOutputUtil.LITERAL_STRING) != 0) { nLiteral++; builder.setLength(0); builder.append('\''); builder.appendCodePoint(c); builder.append('\''); Lexer lexer = new Lexer(new StringReader(builder.toString()), _ioContext(builder), errorContext); lexer.yybegin(Lexer.EXPECT_VALUE); assertEquals(TomlToken.STRING, lexer.yylex()); assertEquals(rawString, lexer.textBuffer.contentsAsString()); lexer.releaseBuffers(); } if ((cats & StringOutputUtil.BASIC_STRING_NO_ESCAPE) != 0) { nBasicNoEscape++; builder.setLength(0); builder.append('"'); builder.appendCodePoint(c); builder.append('"'); Lexer lexer = new Lexer(new StringReader(builder.toString()), _ioContext(builder), errorContext); lexer.yybegin(Lexer.EXPECT_VALUE); assertEquals(TomlToken.STRING, lexer.yylex()); assertEquals(rawString, lexer.textBuffer.contentsAsString()); lexer.releaseBuffers(); } if ((cats & StringOutputUtil.BASIC_STRING) != 0 && c < 0x10000) { nBasic++; builder.setLength(0); builder.append('"'); String escape = StringOutputUtil.getBasicStringEscape((char) c); if (escape == null) { builder.append((char) c); } else { builder.append(escape); } builder.append('"'); Lexer lexer = new Lexer(new StringReader(builder.toString()), _ioContext(builder), errorContext); lexer.yybegin(Lexer.EXPECT_VALUE); assertEquals(TomlToken.STRING, lexer.yylex()); assertEquals(rawString, lexer.textBuffer.contentsAsString()); lexer.releaseBuffers(); } } assertEquals(26 * 2 + 10 + 2, nUnquoted); assertTrue(nBasic > 10000); assertTrue(nBasicNoEscape > 10000); assertTrue(nLiteral > 10000); } private IOContext _ioContext(CharSequence toml) { return testIOContext(); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlBigStringsTest.java ================================================ package tools.jackson.dataformat.toml; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import static org.junit.jupiter.api.Assertions.*; public class TomlBigStringsTest extends TomlMapperTestBase { private final static int TOO_LONG_STRING_VALUE_LEN = StreamReadConstraints.DEFAULT_MAX_STRING_LEN + 100; final static class StringWrapper { String string; StringWrapper() { } StringWrapper(String string) { this.string = string; } void setString(String string) { this.string = string; } } private final TomlMapper MAPPER = newTomlMapper(); private TomlMapper newMapperWithUnlimitedStringSizeSupport() { TomlFactory tomlFactory = TomlFactory.builder() .streamReadConstraints(StreamReadConstraints.builder().maxStringLength(Integer.MAX_VALUE).build()) .build(); return TomlMapper.builder(tomlFactory).build(); } @Test public void testBigString() throws Exception { try { MAPPER.readValue(generateToml(TOO_LONG_STRING_VALUE_LEN), StringWrapper.class); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { final String message = e.getMessage(); assertTrue(message.startsWith("String value length"), "unexpected exception message: " + message); assertTrue(message.contains("exceeds the maximum allowed ("), "unexpected exception message: " + message); } } @Test public void testBiggerString() throws Exception { try { MAPPER.readValue(generateToml(TOO_LONG_STRING_VALUE_LEN), StringWrapper.class); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { final String message = e.getMessage(); // this test fails when the TextBuffer is being resized, so we don't yet know just how big the string is // so best not to assert that the String length value in the message is the full 6000000 value assertTrue(message.startsWith("String value length"), "unexpected exception message: " + message); assertTrue(message.contains("exceeds the maximum allowed ("), "unexpected exception message: " + message); } } @Test public void testUnlimitedString() throws Exception { final int len = TOO_LONG_STRING_VALUE_LEN; StringWrapper sw = newMapperWithUnlimitedStringSizeSupport() .readValue(generateToml(len), StringWrapper.class); assertEquals(len, sw.string.length()); } private String generateToml(final int len) { final StringBuilder sb = new StringBuilder(); sb.append("string = \""); for (int i = 0; i < len; i++) { sb.append('a'); } sb.append('"'); return sb.toString(); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlGeneratorFileCloseOnErrorTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.*; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonGenerator; import static org.assertj.core.api.Assertions.assertThat; /** * Test to verify that TOML output streams are properly closed even when * an error occurs during generator close (see jackson-dataformats-text#109). * * @since 3.2 */ public class TomlGeneratorFileCloseOnErrorTest extends TomlMapperTestBase { private final TomlMapper MAPPER = newTomlMapper(); // [jackson-dataformats-text#109]: Output not closed on error @Test public void testOutputClosedWhenFlushFailsDuringClose() throws Exception { FailOnDemandWriter writer = new FailOnDemandWriter(); JsonGenerator gen = MAPPER.createGenerator(writer); gen.writeStartObject(); gen.writeStringProperty("key", "value"); gen.writeEndObject(); // Arm the writer so close()'s _flushBuffer() call fails writer.shouldFail = true; try { gen.close(); } catch (Exception e) { // Expected: writer failure during _flushBuffer in close() } assertThat(writer.closed) .as("Underlying writer should be closed even when flush during close() fails") .isTrue(); } @Test public void testOutputClosedOnSuccessfulWrite() throws Exception { FailOnDemandWriter writer = new FailOnDemandWriter(); MAPPER.writeValue(writer, new Pojo("bar")); assertThat(writer.closed) .as("Writer should be closed after successful write") .isTrue(); } static class FailOnDemandWriter extends Writer { boolean closed; volatile boolean shouldFail; private final StringWriter _delegate = new StringWriter(); @Override public void write(char[] cbuf, int off, int len) throws IOException { if (shouldFail) { throw new IOException("Simulated write failure"); } _delegate.write(cbuf, off, len); } @Override public void flush() throws IOException { _delegate.flush(); } @Override public void close() throws IOException { closed = true; _delegate.close(); } } static class Pojo { public final String foo; Pojo(String foo) { this.foo = foo; } } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlGeneratorTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.*; import java.time.*; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertThrows; import tools.jackson.core.JsonGenerator; import tools.jackson.databind.ObjectMapper; public class TomlGeneratorTest extends TomlMapperTestBase { @Test public void number() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeNumber(123); generator.writeEndObject(); } assertEquals("abc = 123\n", w.toString()); } @Test public void bool() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeBoolean(true); generator.writeEndObject(); } assertEquals("abc = true\n", w.toString()); } @Test public void floats() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeNumber(1.23); generator.writeEndObject(); } assertEquals("abc = 1.23\n", w.toString()); } @Test public void stringNormal() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeString("foo"); generator.writeEndObject(); } assertEquals("abc = 'foo'\n", w.toString()); } @Test public void stringApostrophe() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeString("foo'"); generator.writeEndObject(); } assertEquals("abc = \"foo'\"\n", w.toString()); } @Test public void stringQuote() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeString("foo\""); generator.writeEndObject(); } assertEquals("abc = 'foo\"'\n", w.toString()); } @Test public void stringQuoteApostrophe() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeString("foo\"'"); generator.writeEndObject(); } assertEquals("abc = \"foo\\\"'\"\n", w.toString()); } @Test public void stringControlCharUnicode() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeString("foo\u0001"); generator.writeEndObject(); } assertEquals("abc = \"foo\\u0001\"\n", w.toString()); } @Test public void stringControlCharSpecial() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeString("foo\b"); generator.writeEndObject(); } assertEquals("abc = \"foo\\b\"\n", w.toString()); } @Test public void binary() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeBinary(new byte[] {1,2,3}); generator.writeEndObject(); } assertEquals("abc = 'AQID'\n", w.toString()); } @Test public void emptyObject() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeStartObject(); generator.writeEndObject(); generator.writeEndObject(); } assertEquals("abc = {}\n", w.toString()); } @Test public void objectWithValues() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeStartObject(); generator.writeName("foo"); generator.writeNumber(1); generator.writeName("bar"); generator.writeNumber(2); generator.writeEndObject(); generator.writeEndObject(); } assertEquals("abc.foo = 1\nabc.bar = 2\n", w.toString()); } @Test public void emptyArray() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeStartArray(); generator.writeEndArray(); generator.writeEndObject(); } assertEquals("abc = []\n", w.toString()); } @Test public void arrayWithScalars() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeStartArray(); generator.writeNumber(1); generator.writeNumber(2); generator.writeNumber(3); generator.writeEndArray(); generator.writeEndObject(); } assertEquals("abc = [1, 2, 3]\n", w.toString()); } @Test public void arrayMixed() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeStartArray(); generator.writeNumber(1); generator.writeStartObject(); generator.writeName("foo"); generator.writeNumber(1); generator.writeName("bar"); generator.writeNumber(2); generator.writeEndObject(); generator.writeEndArray(); generator.writeEndObject(); } assertEquals("abc = [1, {foo = 1, bar = 2}]\n", w.toString()); } @Test public void temporal() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("abc"); generator.writeStartArray(); generator.writePOJO(LocalDate.of(2021, 3, 27)); generator.writePOJO(LocalTime.of(18, 40, 15, 123456789)); generator.writePOJO(LocalDateTime.of(2021, 3, 27, 18, 40, 15, 123456789)); generator.writePOJO(OffsetDateTime.of(2021, 3, 27, 18, 40, 15, 123456789, ZoneOffset.ofHoursMinutes(1, 23))); generator.writeEndArray(); generator.writeEndObject(); } assertEquals("abc = [2021-03-27, 18:40:15.123456789, 2021-03-27T18:40:15.123456789, 2021-03-27T18:40:15.123456789+01:23]\n", w.toString()); } @Test public void complexKey() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("foo bar"); generator.writeNumber(123); generator.writeEndObject(); } assertEquals("'foo bar' = 123\n", w.toString()); } // [dataformats-text#258]: byte-backed output not flushing? @Test public void nestedObjectValues() throws IOException { final ObjectMapper mapper = newTomlMapper(); final String EXP_TOML = "point.x = 19\n" +"point.y = 72\n"; // Try both String-/char- and byte-backed variants StringWriter sw = new StringWriter(); try (JsonGenerator tomlG = mapper.createGenerator(sw)) { _writeNested(tomlG); } assertEquals(EXP_TOML, sw.toString()); ByteArrayOutputStream bytes = new ByteArrayOutputStream(); try (JsonGenerator tomlG = mapper.createGenerator(bytes)) { _writeNested(tomlG); } assertEquals(EXP_TOML, bytes.toString("UTF-8")); } private void _writeNested(JsonGenerator g) throws IOException { g.writeStartObject(); g.writeName("point"); g.writeStartObject(); g.writeName("x"); g.writeNumber(19); g.writeName("y"); g.writeNumber(72); g.writeEndObject(); g.writeEndObject(); } @Test public void nullEnabledDefault() { StringWriter w = new StringWriter(); try (JsonGenerator generator = newTomlMapper().createGenerator(w)) { generator.writeStartObject(); generator.writeName("foo"); generator.writeNull(); generator.writeEndObject(); } assertEquals("foo = ''\n", w.toString()); } @Test public void nullDisable() throws IOException { assertThrows(TomlStreamWriteException.class, () -> { StringWriter w = new StringWriter(); try (JsonGenerator generator = TomlMapper.builder().enable(TomlWriteFeature.FAIL_ON_NULL_WRITE).build().createGenerator(w)) { generator.writeStartObject(); generator.writeName("foo"); generator.writeNull(); generator.writeEndObject(); } }); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlMapperTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.*; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.charset.StandardCharsets; import java.time.LocalDate; import java.util.Objects; import org.junit.jupiter.api.Test; import tools.jackson.core.JacksonException; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.JacksonIOException; import tools.jackson.databind.node.JsonNodeFactory; import static org.junit.jupiter.api.Assertions.*; public class TomlMapperTest extends TomlMapperTestBase { private static final String TEST_STRING = "foo = 'bar'\n[nested]\nfoo = 4"; private static final TestClass TEST_OBJECT; static { TEST_OBJECT = new TestClass(); TEST_OBJECT.foo = "bar"; TEST_OBJECT.nested = new TestClass.Nested(); TEST_OBJECT.nested.foo = 4; } @Test public void string() { assertEquals(TEST_OBJECT, newTomlMapper().readValue(TEST_STRING, TestClass.class)); } @Test public void bytes() { assertEquals(TEST_OBJECT, newTomlMapper().readValue(TEST_STRING.getBytes(StandardCharsets.UTF_8), TestClass.class)); } @Test public void stream() { assertEquals(TEST_OBJECT, newTomlMapper().readValue(new ByteArrayInputStream(TEST_STRING.getBytes(StandardCharsets.UTF_8)), TestClass.class)); } @Test public void reader() { assertEquals(TEST_OBJECT, newTomlMapper().readValue(new StringReader(TEST_STRING), TestClass.class)); } public static class TestClass { public String foo; public Nested nested; public static class Nested { public int foo; @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof Nested)) return false; Nested nested = (Nested) o; return foo == nested.foo; } @Override public int hashCode() { return Objects.hash(foo); } } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof TestClass)) return false; TestClass testClass = (TestClass) o; return Objects.equals(foo, testClass.foo) && Objects.equals(nested, testClass.nested); } @Override public int hashCode() { return Objects.hash(foo, nested); } } @Test public void bigInteger() { assertEquals( JsonNodeFactory.instance.objectNode() .put("abc", new BigInteger("ffffffffffffffffffff", 16)), TomlMapper.builder() .build() .readTree("abc = 0xffffffffffffffffffff") ); } @Test public void bigDecimal() { BigDecimal testValue = BigDecimal.valueOf(Double.MIN_VALUE).divide(BigDecimal.valueOf(2)); assertEquals( JsonNodeFactory.instance.objectNode() .put("abc", testValue), newTomlMapper().readTree("abc = " + testValue.toString()) ); } @Test public void veryBigDecimal() throws Exception { final int len = 1200; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append(1); } final String value = sb.toString(); try { newTomlMapper().readTree("abc = " + value); fail("expected TomlStreamReadException"); } catch (TomlStreamReadException e) { assertTrue(e.getMessage().contains("Number value length (1200) exceeds the maximum allowed"), "unexpected message: " + e.getMessage()); } } @Test public void veryBigDecimalWithNumLenUnlimited() throws Exception { final int len = 1200; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append(1); } final String value = sb.toString(); BigDecimal testValue = new BigDecimal(value); TomlFactory factory = TomlFactory.builder() .streamReadConstraints(StreamReadConstraints.builder().maxNumberLength(Integer.MAX_VALUE).build()) .build(); TomlMapper mapper = newTomlMapper(factory); assertEquals( testValue, mapper.readTree("abc = " + value).get("abc").decimalValue() ); } @Test public void temporalFieldFlag() throws Exception { assertEquals( LocalDate.of(2021, 3, 26), TomlMapper.builder() .enable(TomlReadFeature.PARSE_JAVA_TIME) .build() .readValue("foo = 2021-03-26", ObjectField.class).foo ); assertEquals( "2021-03-26", newTomlMapper().readValue("foo = 2021-03-26", ObjectField.class).foo ); } public static class ObjectField { public Object foo; } @Test public void testIoException() { assertThrows(JacksonIOException.class, () -> TomlMapper.shared().readTree(new Reader() { @Override public int read(char[] cbuf, int off, int len) throws IOException { throw new IOException("Test"); } @Override public void close() throws IOException { } })); } @Test public void nullCoercion() { assertNull(TomlMapper.builder().build().readValue("foo = ''", ComplexField.class).foo); } public static class ComplexField { public ComplexField foo; } @Test public void nullEnabledDefault() { ComplexField cf = new ComplexField(); cf.foo = null; assertEquals("foo = ''\n", TomlMapper.builder().build().writeValueAsString(cf)); } @Test public void nullDisable() { assertThrows(JacksonException.class, () -> { ComplexField cf = new ComplexField(); cf.foo = null; assertEquals("foo = ''\n", TomlMapper.builder() .enable(TomlWriteFeature.FAIL_ON_NULL_WRITE) .build().writeValueAsString(cf)); }); } // for [dataformats-text#581] @Test void testFormatFeatureDefaults() { TomlMapper mapper = TomlMapper.shared(); assertFalse(mapper.isEnabled(TomlReadFeature.PARSE_JAVA_TIME)); assertFalse(mapper.isEnabled(TomlWriteFeature.FAIL_ON_NULL_WRITE)); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlMapperTestBase.java ================================================ package tools.jackson.dataformat.toml; import tools.jackson.core.*; import tools.jackson.core.io.ContentReference; import tools.jackson.core.io.IOContext; import tools.jackson.core.util.BufferRecycler; public abstract class TomlMapperTestBase { protected static TomlFactory newTomlFactory() { return TomlFactory.builder().build(); } protected static TomlMapper newTomlMapper() { return new TomlMapper(newTomlFactory()); } protected static TomlMapper newTomlMapper(TomlFactory tomlFactory) { return new TomlMapper(tomlFactory); } protected static IOContext testIOContext() { return testIOContext(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults()); } protected static IOContext testIOContext(StreamReadConstraints src) { return testIOContext(src, StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults()); } protected static IOContext testIOContext(StreamWriteConstraints swc) { return testIOContext(StreamReadConstraints.defaults(), swc, ErrorReportConfiguration.defaults()); } private static IOContext testIOContext(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc) { return new IOContext(src, swc, erc, new BufferRecycler(), ContentReference.unknown(), false, JsonEncoding.UTF8); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlParserTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.ByteArrayInputStream; import java.io.StringReader; import java.math.BigInteger; import java.nio.charset.StandardCharsets; import java.time.*; import java.util.Arrays; import java.util.Map.Entry; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.core.json.JsonReadFeature; import tools.jackson.databind.DeserializationFeature; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.cfg.JsonNodeFeature; import tools.jackson.databind.json.JsonMapper; import tools.jackson.databind.node.JsonNodeFactory; import tools.jackson.databind.node.ObjectNode; import static org.junit.jupiter.api.Assertions.*; public class TomlParserTest extends TomlMapperTestBase { private static final ObjectMapper TOML_MAPPER = TomlMapper.builder() .enable(JsonNodeFeature.STRIP_TRAILING_BIGDECIMAL_ZEROES) .build(); private static final ObjectMapper JSON_MAPPER = JsonMapper.builder() .enable(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS) // 28-Feb-2024, tatu: [dataformats-text#466] For some reason TOML parser // does manage to strip trailing zeroes. Not sure why (default in 3.0 // should be "no normalization") but for now this needed for test to pass .enable(JsonNodeFeature.STRIP_TRAILING_BIGDECIMAL_ZEROES) .enable(JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS) .build(); static ObjectNode json(String json) throws JacksonException { return (ObjectNode) JSON_MAPPER.readTree(json); } static ObjectNode toml(String toml) throws JacksonException { return (ObjectNode) TOML_MAPPER.readTree(toml); } static ObjectNode toml(TomlFactory factory, String toml) throws Exception { // 07-Mar-2023, tatu: Due to refactoring, ended up here... int options = TomlReadFeature.PARSE_JAVA_TIME.getMask(); return TomlParser.parse( factory, testIOContext(), options, new StringReader(toml) ); } static ObjectNode tomlInputStream(String toml) throws Exception { return (ObjectNode) TOML_MAPPER.readTree( new ByteArrayInputStream(toml.getBytes(StandardCharsets.UTF_8))); } static ObjectNode tomlReader(String toml) throws Exception { return (ObjectNode) TOML_MAPPER.readTree(new StringReader(toml)); } static ObjectNode tomlBytes(String toml) throws Exception { return (ObjectNode) TOML_MAPPER.readTree(toml.getBytes(StandardCharsets.UTF_8)); } @Test public void unclosed() throws Exception { TomlStreamReadException exception = assertThrows(TomlStreamReadException.class, () -> { toml("\"abc"); }); assertTrue(exception.getMessage().contains("EOF")); } // from the manual @Test public void keyValuePair() throws Exception { assertEquals( json("{\"key\": \"value\"}"), toml("key = \"value\"")); } @Test public void unspecified() throws Exception { assertThrows(TomlStreamReadException.class, () -> { toml("key ="); }); } @Test public void singleLine() throws Exception { assertThrows(TomlStreamReadException.class, () -> { toml("first = \"Tom\" last = \"Preston-Werner\""); }); } @Test public void comment() throws Exception { assertEquals( json("{\"key\": \"value\", \"another\": \"# This is not a comment\"}"), toml("# This is a full-line comment\n" + "key = \"value\" # This is a comment at the end of a line\n" + "another = \"# This is not a comment\"")); } @Test public void bareKeys() throws Exception { assertEquals( json("{\"key\": \"value\", \"bare_key\": \"value\", \"bare-key\": \"value\", \"1234\": \"value\"}"), toml("key = \"value\"\n" + "bare_key = \"value\"\n" + "bare-key = \"value\"\n" + "1234 = \"value\"")); } @Test public void quotedKeys() throws Exception { assertEquals( json("{\"127.0.0.1\": \"value\", \"character encoding\": \"value\", \"ʎǝʞ\": \"value\", \"key2\": \"value\", \"quoted \\\"value\\\"\": \"value\"}"), toml("\"127.0.0.1\" = \"value\"\n" + "\"character encoding\" = \"value\"\n" + "\"ʎǝʞ\" = \"value\"\n" + "'key2' = \"value\"\n" + "'quoted \"value\"' = \"value\"")); } @Test public void bareKeyNonEmpty() throws Exception { assertThrows(TomlStreamReadException.class, () -> { toml("= \"no key name\""); }); } @Test public void quotedKeyEmpty() throws Exception { assertEquals(json("{\"\": \"blank\"}"), toml("\"\" = \"blank\"")); assertEquals(json("{\"\": \"blank\"}"), toml("'' = 'blank'")); } @Test public void dottedKeys() throws Exception { assertEquals( json("{\n" + " \"name\": \"Orange\",\n" + " \"physical\": {\n" + " \"color\": \"orange\",\n" + " \"shape\": \"round\"\n" + " },\n" + " \"site\": {\n" + " \"google.com\": true\n" + " }\n" + "}"), toml("name = \"Orange\"\n" + "physical.color = \"orange\"\n" + "physical.shape = \"round\"\n" + "site.\"google.com\" = true")); } @Test public void dottedKeysWhitespace() throws Exception { assertEquals( json("{\"fruit\": {\"name\": \"banana\", \"color\": \"yellow\", \"flavor\": \"banana\"}}"), toml("fruit.name = \"banana\" # this is best practice\n" + "fruit. color = \"yellow\" # same as fruit.color\n" + "fruit . flavor = \"banana\" # same as fruit.flavor")); } @Test public void collision() throws Exception { TomlStreamReadException exception = assertThrows(TomlStreamReadException.class, () -> { toml("name = \"Tom\"\n" + "name = \"Pradyun\""); }); assertTrue(exception.getMessage().contains("Duplicate key")); } @Test public void collisionQuoted() throws Exception { TomlStreamReadException exception = assertThrows(TomlStreamReadException.class, () -> { toml("spelling = \"favorite\"\n" + "\"spelling\" = \"favourite\""); }); assertTrue(exception.getMessage().contains("Duplicate key")); } @Test public void keyMixed() throws Exception { assertEquals( json("{\"fruit\": {\"apple\": {\"smooth\": true}, \"orange\": 2}}"), toml("# This makes the key \"fruit\" into a table.\n" + "fruit.apple.smooth = true\n" + "\n" + "# So then you can add to the table \"fruit\" like so:\n" + "fruit.orange = 2") ); } @Test public void collisionNested() throws Exception { TomlStreamReadException exception = assertThrows(TomlStreamReadException.class, () -> { toml("# This defines the value of fruit.apple to be an integer.\n" + "fruit.apple = 1\n" + "\n" + "# But then this treats fruit.apple like it's a table.\n" + "# You can't turn an integer into a table.\n" + "fruit.apple.smooth = true"); }); assertTrue(exception.getMessage().contains("Path into existing non-object value of type NUMBER")); } @Test public void outOfOrder() throws Exception { assertEquals( json("{\"apple\": {\"type\": \"fruit\",\"skin\": \"thin\", \"color\": \"red\"}, \"orange\": {\"type\": \"fruit\", \"skin\": \"thick\", \"color\": \"orange\"}}"), toml("apple.type = \"fruit\"\n" + "orange.type = \"fruit\"\n" + "\n" + "apple.skin = \"thin\"\n" + "orange.skin = \"thick\"\n" + "\n" + "apple.color = \"red\"\n" + "orange.color = \"orange\"") ); } @Test public void inOrder() throws Exception { assertEquals( json("{\"apple\": {\"type\": \"fruit\",\"skin\": \"thin\", \"color\": \"red\"}, \"orange\": {\"type\": \"fruit\", \"skin\": \"thick\", \"color\": \"orange\"}}"), toml("apple.type = \"fruit\"\n" + "apple.skin = \"thin\"\n" + "apple.color = \"red\"\n" + "\n" + "orange.type = \"fruit\"\n" + "orange.skin = \"thick\"\n" + "orange.color = \"orange\"") ); } @Test public void numberDottedKey() throws Exception { assertEquals( json("{ \"3\": { \"14159\": \"pi\" } }"), // intellij doesn't like this one :) toml("3.14159 = \"pi\"") ); } @Test public void stringBasic() throws Exception { assertEquals( json("{ \"str\": \"I'm a string. \\\"You can quote me\\\". Name\\tJosé\\nLocation\\tSF.\" }"), toml("str = \"I'm a string. \\\"You can quote me\\\". Name\\tJos\\u00E9\\nLocation\\tSF.\"") ); } @Test public void multiLineBasic() throws Exception { assertEquals( json("{\"str1\": \"Roses are red\\nViolets are blue\"}"), toml("str1 = \"\"\"\n" + "Roses are red\n" + "Violets are blue\"\"\"") ); } @Test public void multiLineEscapeNl() throws Exception { assertEquals( json("{\"str1\": \"The quick brown fox jumps over the lazy dog.\",\"str2\": \"The quick brown fox jumps over the lazy dog.\",\"str3\": \"The quick brown fox jumps over the lazy dog.\"}"), toml("str1 = \"The quick brown fox jumps over the lazy dog.\"\n" + "\n" + "str2 = \"\"\"\n" + "The quick brown \\\n" + "\n" + "\n" + " fox jumps over \\\n" + " the lazy dog.\"\"\"\n" + "\n" + "str3 = \"\"\"\\\n" + " The quick brown \\\n" + " fox jumps over \\\n" + " the lazy dog.\\\n" + " \"\"\"") ); } @Test public void escapedQuotes() throws Exception { assertEquals( json("{\"str4\": \"Here are two quotation marks: \\\"\\\". Simple enough.\", \"str5\": \"Here are three quotation marks: \\\"\\\"\\\".\", \"str6\": \"Here are fifteen quotation marks: \\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\".\", \"str7\": \"\\\"This,\\\" she said, \\\"is just a pointless statement.\\\"\"}"), toml("str4 = \"\"\"Here are two quotation marks: \"\". Simple enough.\"\"\"\n" + "# str5 = \"\"\"Here are three quotation marks: \"\"\".\"\"\" # INVALID\n" + "str5 = \"\"\"Here are three quotation marks: \"\"\\\".\"\"\"\n" + "str6 = \"\"\"Here are fifteen quotation marks: \"\"\\\"\"\"\\\"\"\"\\\"\"\"\\\"\"\"\\\".\"\"\"\n" + "\n" + "# \"This,\" she said, \"is just a pointless statement.\"\n" + "str7 = \"\"\"\"This,\" she said, \"is just a pointless statement.\"\"\"\"") ); } @Test public void missingQuotesEscape() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("str5 = \"\"\"Here are three quotation marks: \"\"\".\"\"\"") ); assertTrue(thrown.getMessage().contains("More data after value has already ended. Invalid value preceding this position?")); } @Test public void literalStrings() throws Exception { assertEquals( json("{\"winpath\": \"C:\\\\Users\\\\nodejs\\\\templates\", \"winpath2\": \"\\\\\\\\ServerX\\\\admin$\\\\system32\\\\\", \"quoted\": \"Tom \\\"Dubs\\\" Preston-Werner\", \"regex\": \"<\\\\i\\\\c*\\\\s*>\"}"), toml("winpath = 'C:\\Users\\nodejs\\templates'\n" + "winpath2 = '\\\\ServerX\\admin$\\system32\\'\n" + "quoted = 'Tom \"Dubs\" Preston-Werner'\n" + "regex = '<\\i\\c*\\s*>'") ); } @Test public void multiLineLiteral() throws Exception { assertEquals( json("{\"regex2\": \"I [dw]on't need \\\\d{2} apples\", \"lines\": \"The first newline is\\ntrimmed in raw strings.\\n All other whitespace\\n is preserved.\\n\"}"), toml("regex2 = '''I [dw]on't need \\d{2} apples'''\n" + "lines = '''\n" + "The first newline is\n" + "trimmed in raw strings.\n" + " All other whitespace\n" + " is preserved.\n" + "'''") ); } @Test public void multiLineLiteralQuotes() throws Exception { assertEquals( json("{\"quot15\": \"Here are fifteen quotation marks: \\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\\\"\", \"apos15\": \"Here are fifteen apostrophes: '''''''''''''''\", \"str\": \"'That,' she said, 'is still pointless.'\"}"), toml("quot15 = '''Here are fifteen quotation marks: \"\"\"\"\"\"\"\"\"\"\"\"\"\"\"'''\n" + "apos15 = \"Here are fifteen apostrophes: '''''''''''''''\"\n" + "str = ''''That,' she said, 'is still pointless.''''") ); } @Test public void integer() throws Exception { assertEquals( json("{\"int1\": 99, \"int2\": 42, \"int3\": 0, \"int4\": -17}"), toml("int1 = +99\n" + "int2 = 42\n" + "int3 = 0\n" + "int4 = -17") ); } @Test public void integerUnderscore() throws Exception { assertEquals( json("{\"int5\": 1000, \"int6\": 5349221, \"int7\": 5349221, \"int8\": 12345}"), toml("int5 = 1_000\n" + "int6 = 5_349_221\n" + "int7 = 53_49_221 # Indian number system grouping\n" + "int8 = 1_2_3_4_5 # VALID but discouraged") ); } @Test public void integerBase() throws Exception { assertEquals( json("{\"hex1\": 3735928559, \"hex2\": 3735928559, \"hex3\": 3735928559, \"oct1\": 342391, \"oct2\": 493, \"bin1\": 214}"), toml("# hexadecimal with prefix `0x`\n" + "hex1 = 0xDEADBEEF\n" + "hex2 = 0xdeadbeef\n" + "hex3 = 0xdead_beef\n" + "\n" + "# octal with prefix `0o`\n" + "oct1 = 0o01234567\n" + "oct2 = 0o755 # useful for Unix file permissions\n" + "\n" + "# binary with prefix `0b`\n" + "bin1 = 0b11010110") ); } @Test public void floats() throws Exception { ObjectNode json = json("{\"flt1\": 1.0, \"flt2\": 3.1415, \"flt3\": -0.01, \"flt4\": 5.0e22, \"flt5\": 1e06, \"flt6\": -2e-2, \"flt7\": 6.626e-34}"); ObjectNode toml = toml("# fractional\n" + "flt1 = +1.0\n" + "flt2 = 3.1415\n" + "flt3 = -0.01\n" + "\n" + "# exponent\n" + "flt4 = 5e+22\n" + // intellij doesn't like this one either :) "flt5 = 1e06\n" + "flt6 = -2E-2\n" + "\n" + "# both\n" + "flt7 = 6.626e-34"); if (!json.equals(toml)) { for (Entry entry : json.properties()) { String key = entry.getKey(); JsonNode jsonValue = entry.getValue(); JsonNode tomlValue = toml.get(key); assertEquals(jsonValue, tomlValue, String.format("Entry '%s' (JSON %s vs TOML %s) differs", key, jsonValue.getClass().getSimpleName(), tomlValue.getClass().getSimpleName()) ); } // Should not happen but... fail("Internal error: could not find difference in JSON vs TOML nodes"); } } @Test public void invalidFloat1() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("invalid_float_1 = .7") ); assertTrue(thrown.getMessage().contains("Unknown token")); } @Test public void invalidFloat2() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("invalid_float_2 = 7.") ); assertTrue(thrown.getMessage().contains("More data after value has already ended. Invalid value preceding this position?")); } @Test public void invalidFloat3() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("invalid_float_3 = 3.e+20") ); assertTrue(thrown.getMessage().contains("More data after value has already ended. Invalid value preceding this position?")); } @Test public void floatUnderscore() throws Exception { assertEquals( json("{\"flt8\": 224617.445991228}"), toml("flt8 = 224_617.445_991_228") ); } @Test public void floatSpecial() throws Exception { assertEquals( json("{\"sf1\": Infinity, \"sf2\": Infinity, \"sf3\": -Infinity, \"sf4\": NaN, \"sf5\": NaN, \"sf6\": NaN}"), toml("# infinity\n" + "sf1 = inf # positive infinity\n" + "sf2 = +inf # positive infinity\n" + "sf3 = -inf # negative infinity\n" + "\n" + "# not a number\n" + "sf4 = nan # actual sNaN/qNaN encoding is implementation-specific\n" + "sf5 = +nan # same as `nan`\n" + "sf6 = -nan # valid, actual encoding is implementation-specific") ); } @Test public void booleans() throws Exception { assertEquals( json("{\"bool1\": true, \"bool2\": false}"), toml("bool1 = true\n" + "bool2 = false\n" + "\n") ); } @Test public void odt() throws Exception { assertEquals( json("{\"odt1\": \"1979-05-27T07:32:00Z\", \"odt2\": \"1979-05-27T00:32:00-07:00\", \"odt3\": \"1979-05-27T00:32:00.999999-07:00\", \"odt4\": \"1979-05-27T07:32:00Z\"}"), toml("odt1 = 1979-05-27T07:32:00Z\n" + "odt2 = 1979-05-27T00:32:00-07:00\n" + "odt3 = 1979-05-27T00:32:00.999999-07:00\n" + "odt4 = 1979-05-27 07:32:00Z") ); } @Test public void ldt() throws Exception { assertEquals( json("{\"ldt1\": \"1979-05-27T07:32:00\", \"ldt2\": \"1979-05-27T00:32:00.999999\"}"), toml("ldt1 = 1979-05-27T07:32:00\n" + "ldt2 = 1979-05-27T00:32:00.999999") ); } @Test public void ld() throws Exception { assertEquals( json("{\"ld1\": \"1979-05-27\"}"), toml("ld1 = 1979-05-27") ); } @Test public void lt() throws Exception { assertEquals( json("{\"lt1\": \"07:32:00\", \"lt2\": \"00:32:00.999999\"}"), toml("lt1 = 07:32:00\n" + "lt2 = 00:32:00.999999") ); } @Test public void array() throws Exception { assertEquals( json("{\"integers\": [1,2,3], \"colors\": [\"red\",\"yellow\",\"green\"], \"nested_arrays_of_ints\": [ [ 1, 2 ], [3, 4, 5] ], \"nested_mixed_array\": [ [ 1, 2 ], [\"a\", \"b\", \"c\"] ], \"string_array\": [ \"all\", \"strings\", \"are the same\", \"type\" ],\n" + " \"numbers\": " + "[ 0.1, 0.2, 0.5, 1, 2, 5 ], \"contributors\": [\"Foo Bar \", { \"name\": \"Baz Qux\",\n" + " \"email\": " + "\"bazqux@example.com\",\n" + " \"url\": " + "\"https://example.com/bazqux\" }]\n" + "}"), toml("integers = [ 1, 2, 3 ]\n" + "colors = [ \"red\", \"yellow\", \"green\" ]\n" + "nested_arrays_of_ints = [ [ 1, 2 ], [3, 4, 5] ]\n" + "nested_mixed_array = [ [ 1, 2 ], [\"a\", \"b\", \"c\"] ]\n" + "string_array = [ \"all\", 'strings', \"\"\"are the same\"\"\", '''type''' ]\n" + "\n" + "# Mixed-type arrays are allowed\n" + "numbers = [ 0.1, 0.2, 0.5, 1, 2, 5 ]\n" + "contributors = [\n" + " \"Foo Bar \",\n" + " { name = \"Baz Qux\", email = \"bazqux@example.com\", url = \"https://example.com/bazqux\" }\n" + "]") ); } @Test public void arrayMultiLine() throws Exception { assertEquals( json("{\"integers2\": [1,2,3]," + "\"integers3\": [1,2]" + "}"), toml("integers2 = [\n" + " 1, 2, 3\n" + "]\n" + "\n" + "integers3 = [\n" + " 1,\n" + " 2, # this is ok\n" + "]") ); } @Test public void table() throws Exception { assertEquals( json("{\"table\": {}}"), toml("[table]") ); } @Test public void table2() throws Exception { assertEquals( json("{\"table-1\": {\"key1\": \"some string\", \"key2\": 123}, \"table-2\": {\"key1\": \"another string\", \"key2\": 456}}"), toml("[table-1]\n" + "key1 = \"some string\"\n" + "key2 = 123\n" + "\n" + "[table-2]\n" + "key1 = \"another string\"\n" + "key2 = 456") ); } @Test public void tableQuoted() throws Exception { assertEquals( json("{\"dog\": {\"tater.man\": {\"type\": {\"name\": \"pug\"}}}}"), toml("[dog.\"tater.man\"]\n" + "type.name = \"pug\"") ); } @Test public void tableWhitespace() throws Exception { assertEquals( json("{\"a\": {\"b\": {" + "\"c\": {}" + "}}, \"d\": {\"e\": {\"f\": {}}},\"g\": {\"h\": {\"i\": {}}},\"j\": {\"ʞ\": {\"l\": {}}}}"), toml("[a.b.c] # this is best practice\n" + "[ d.e.f ] # same as [d.e.f]\n" + "[ g . h . i ] # same as [g.h.i]\n" + "[ j . \"ʞ\" . 'l' ] # same as [j.\"ʞ\".'l']") ); } @Test public void order() throws Exception { assertEquals( json("{\"x\": {\"y\": {" + "\"z\": {\"w\": {}}" + "}}}"), toml("# [x] you\n" + "# [x.y] don't\n" + "# [x.y.z] need these\n" + "[x.y.z.w] # for this to work\n" + "\n" + "[x] # defining a super-table afterward is ok") ); } @Test public void duplicateTable() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("[fruit]\n" + "apple = \"red\"\n" + "\n" + "[fruit]\n" + "orange = \"orange\"") ); assertTrue(thrown.getMessage().contains("Table redefined")); } @Test public void mixedTable() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("[fruit]\n" + "apple = \"red\"\n" + "\n" + "[fruit.apple]\n" + "texture = \"smooth\"") ); assertTrue(thrown.getMessage().contains("Path into existing non-object value of type STRING")); } @Test public void tableOutOfOrder() throws Exception { assertEquals( json("{\"fruit\": {\"apple\": {}, \"orange\": {}}, \"animal\": {}}"), toml("[fruit.apple]\n" + "[animal]\n" + "[fruit.orange]") ); } @Test public void tableInOrder() throws Exception { assertEquals( json("{\"fruit\": {\"apple\": {}, \"orange\": {}}, \"animal\": {}}"), toml("[fruit.apple]\n" + "[animal]\n" + "[fruit.orange]") ); } @Test public void rootTable() throws Exception { assertEquals( json("{\"name\": \"Fido\", \"breed\": \"pug\", \"owner\": {\"name\": \"Regina Dogman\"}}"), toml("# Top-level table begins.\n" + "name = \"Fido\"\n" + "breed = \"pug\"\n" + "\n" + "# Top-level table ends.\n" + "[owner]\n" + "name = \"Regina Dogman\"") ); } @Test public void dottedDefinesTable() throws Exception { assertEquals( json("{\"fruit\": {\"apple\": {\"color\": \"red\", " + "\"taste\": {\"sweet\": true}" + "}}}"), toml("fruit.apple.color = \"red\"\n" + "# Defines a table named fruit\n" + "# Defines a table named fruit.apple\n" + "\n" + "fruit.apple.taste.sweet = true\n" + "# Defines a table named fruit.apple.taste\n" + "# fruit and fruit.apple were already created") ); } @Test public void dottedCollisionRoot() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("fruit.apple.color = \"red\"\n" + "# Defines a table named fruit\n" + "# Defines a table named fruit.apple\n" + "\n" + "[fruit]\n" + "foo" + " = \"bar\"") ); assertTrue(thrown.getMessage().contains("Table redefined")); } @Test public void dottedCollisionNest() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("[fruit]\n" + "apple.color = \"red\"\n" + "apple.taste.sweet = true\n" + "\n" + "[fruit.apple] # INVALID") ); assertTrue(thrown.getMessage().contains("Table redefined")); } @Test public void dottedSubTable() throws Exception { assertEquals( json("{\"fruit\": {\"apple\": {\"color\": \"red\", " + "\"taste\": {\"sweet\": true}, \"texture\": {\"smooth\": true}" + "}}}"), toml("[fruit]\n" + "apple.color = \"red\"\n" + "apple.taste.sweet = true\n" + "\n" + "# [fruit.apple] # INVALID\n" + "# [fruit.apple.taste] # INVALID\n" + "\n" + "[fruit.apple.texture] # you can add sub-tables\n" + "smooth = true") ); } @Test public void inlineTable() throws Exception { assertEquals( json("{\"name\": {\"first\": \"Tom\", \"last\": \"Preston-Werner\"}, \"point\": {\"x\": 1, \"y\": 2}, \"animal\": {\"type\": {\"name\": \"pug\"}}}"), toml("name = { first = \"Tom\", last = \"Preston-Werner\" }\n" + "point = { x = 1, y = 2 }\n" + "animal = { type.name = \"pug\" }") ); } @Test public void inlineTableSelfContained() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("[product]\n" + "type = { name = \"Nail\" }\n" + "type.edible = false # INVALID") ); assertTrue(thrown.getMessage().contains("Object already closed")); } @Test public void inlineTableSelfContained2() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("[product]\n" + "type.name = \"Nail\"\n" + "type = { edible = false } # INVALID") ); assertTrue(thrown.getMessage().contains("Duplicate key")); } @Test public void arrayTable() throws Exception { assertEquals( json("{\n" + " \"products\": [\n" + " { \"name\": \"Hammer\", \"sku\": 738594937 },\n" + " { },\n" + " { \"name\": \"Nail\", \"sku\": 284758393, \"color\": \"gray\" }\n" + " ]\n" + "}"), toml("[[products]]\n" + "name = \"Hammer\"\n" + "sku = 738594937\n" + "\n" + "[[products]] # empty table within the array\n" + "\n" + "[[products]]\n" + "name = \"Nail\"\n" + "sku = 284758393\n" + "\n" + "color = \"gray\"") ); } @Test public void arrayTableDotted() throws Exception { assertEquals( json("{\n" + " \"fruits\": [\n" + " {\n" + " \"name\": \"apple\",\n" + " \"physical\": {\n" + " \"color\": \"red\",\n" + " \"shape\": \"round\"\n" + " },\n" + " \"varieties\": [\n" + " { \"name\": \"red delicious\" },\n" + " { \"name\": \"granny smith\" }\n" + " ]\n" + " },\n" + " {\n" + " \"name\": \"banana\",\n" + " \"varieties\": [\n" + " { \"name\": \"plantain\" }\n" + " ]\n" + " }\n" + " ]\n" + "}"), toml("[[fruits]]\n" + "name = \"apple\"\n" + "\n" + "[fruits.physical] # subtable\n" + "color = \"red\"\n" + "shape = \"round\"\n" + "\n" + "[[fruits.varieties]] # nested array of tables\n" + "name = \"red delicious\"\n" + "\n" + "[[fruits.varieties]]\n" + "name = \"granny smith\"\n" + "\n" + "\n" + "[[fruits]]\n" + "name = \"banana\"\n" + "\n" + "[[fruits.varieties]]\n" + "name = \"plantain\"") ); } @Test public void arrayTableStillMissing() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("# INVALID TOML DOC\n" + "[fruit.physical] # subtable, but to which parent element should it belong?\n" + "color = \"red\"\n" + "shape = \"round\"\n" + "\n" + "[[fruit]] # parser must throw an error upon discovering that \"fruit\" is\n" + " # an array rather than a table\n" + "name = \"apple\"") ); assertTrue(thrown.getMessage().contains("Path into existing non-array value of type OBJECT")); } @Test public void arrayInlineAndTable() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("# INVALID TOML DOC\n" + "fruits = []\n" + "\n" + "[[fruits]] # Not allowed") ); assertTrue(thrown.getMessage().contains("Array already finished")); } @Test public void arrayCollision1() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("# INVALID TOML DOC\n" + "[[fruits]]\n" + "name = \"apple\"\n" + "\n" + "[[fruits.varieties]]\n" + "name = \"red delicious\"\n" + "\n" + "# INVALID: This table conflicts with the previous array of tables\n" + "[fruits.varieties]\n" + "name = \"granny smith\"") ); assertTrue(thrown.getMessage().contains("Path into existing non-object value of type ARRAY")); } @Test public void arrayCollision2() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("# INVALID TOML DOC\n" + "[[fruits]]\n" + "name = \"apple\"\n" + "\n" + "[fruits.physical]\n" + "color = \"red\"\n" + "shape = \"round\"\n" + "\n" + "# INVALID: This array of tables conflicts with the previous table\n" + "[[fruits.physical]]\n" + "color = \"green\"") ); assertTrue(thrown.getMessage().contains("Path into existing non-array value of type OBJECT")); } @Test public void points() throws Exception { assertEquals( json("{\"points\": [ { \"x\":1, \"y\":2, \"z\":3 },\n" + " { \"x\":7, \"y\":8, \"z\":9 },\n" + " { \"x\":2, \"y\":4, \"z\": 8}]}"), toml("points = [ { x = 1, y = 2, z = 3 },\n" + " { x = 7, y = 8, z = 9 },\n" + " { x = 2, y = 4, z = 8 } ]") ); } // from the manual END // following are our tests :) @Test public void inlineTableTrailingComma() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("foo = {bar = 'baz',}") ); assertTrue(thrown.getMessage().contains("Trailing comma not permitted for inline tables")); } @Test public void inlineTableEmpty() throws Exception { assertEquals( json("{\"foo\": {}}"), toml("foo = {}") ); } @Test public void inlineTableNl() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("foo = {bar = 'baz',\n" + "a = 'b'}") ); assertTrue(thrown.getMessage().contains("Newline not permitted here")); } @Test public void extendedUnicodeEscape() throws Exception { // 🆒 assertEquals( json("{\"foo\": \"\\uD83C\\uDD92\"}"), toml("foo = \"\\U0001f192\"") ); } @Test public void extendedUnicodeEscapeInvalid() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("foo = \"\\Uffffffff\"") ); assertTrue(thrown.getMessage().contains("Invalid code point ffffffff")); } @Test public void intTypes() throws Exception { assertEquals( JsonNodeFactory.instance.objectNode() .put("int1", 99) .put("int2", 4242424242L) .put("int3", new BigInteger("171717171717171717171717")), toml("int1 = +99\n" + "int2 = 4242424242\n" + "int3 = 171717171717171717171717") ); } @Test public void longBase() throws Exception { assertEquals( JsonNodeFactory.instance.objectNode() .put("hex1", 0xDDEADBEEFL) .put("hex2", 0xddeadbeefL) .put("hex3", 0xddead_beefL) .put("oct1", 01234567777777L) .put("bin1", 0b11010110101010101010101010101010101010L), toml("hex1 = 0xdDEADBEEF\n" + "hex2 = 0xddeadbeef\n" + "hex3 = 0xddead_beef\n" + "oct1 = 0o1234567777777\n" + "bin1 = 0b11010110101010101010101010101010101010") ); } @Test public void bigintBase() throws Exception { assertEquals( JsonNodeFactory.instance.objectNode() .put("hex1", new BigInteger("DDEADBEEFDDEADBEEF", 16)) .put("hex2", new BigInteger("DDEADBEEFDDEADBEEF", 16)) .put("hex3", new BigInteger("DDEADBEEFDDEADBEEF", 16)) .put("oct1", new BigInteger("12345677777771234567777777", 8)) .put("bin1", new BigInteger("1101011010101010101010101010101010101011010110101010101010101010101010101010", 2)), toml("hex1 = 0xDDEADBEEFDDEADBEEF\n" + "hex2 = 0xddeadbeefddeadbeef\n" + "hex3 = 0xddead_beefddead_beef\n" + "oct1 = 0o12345677777771234567777777\n" + "bin1 = 0b1101011010101010101010101010101010101011010110101010101010101010101010101010") ); } @Test public void javaTimeDeser() throws Exception { // this is the same test as above, except with explicit java.time deserialization final TomlFactory tomlFactory = TomlFactory.builder() .enable(TomlReadFeature.PARSE_JAVA_TIME) .build(); assertEquals( JsonNodeFactory.instance.objectNode() .set("odt1", JsonNodeFactory.instance.pojoNode(OffsetDateTime.parse("1979-05-27T07:32:00Z"))) .set("odt2", JsonNodeFactory.instance.pojoNode(OffsetDateTime.parse("1979-05-27T00:32:00-07:00"))) .set("odt3", JsonNodeFactory.instance.pojoNode(OffsetDateTime.parse("1979-05-27T00:32:00.999999-07:00"))) .set("odt4", JsonNodeFactory.instance.pojoNode(OffsetDateTime.parse("1979-05-27T07:32:00Z"))), toml(tomlFactory, "odt1 = 1979-05-27T07:32:00Z\n" + "odt2 = 1979-05-27T00:32:00-07:00\n" + "odt3 = 1979-05-27T00:32:00.999999-07:00\n" + "odt4 = 1979-05-27 07:32:00Z") ); assertEquals( JsonNodeFactory.instance.objectNode() .set("ldt1", JsonNodeFactory.instance.pojoNode(LocalDateTime.parse("1979-05-27T07:32:00"))) .set("ldt2", JsonNodeFactory.instance.pojoNode(LocalDateTime.parse("1979-05-27T00:32:00.999999"))), toml(tomlFactory, "ldt1 = 1979-05-27T07:32:00\n" + "ldt2 = 1979-05-27T00:32:00.999999") ); assertEquals( JsonNodeFactory.instance.objectNode() .set("ld1", JsonNodeFactory.instance.pojoNode(LocalDate.parse("1979-05-27"))), toml(tomlFactory, "ld1 = 1979-05-27") ); assertEquals( JsonNodeFactory.instance.objectNode() .set("lt1", JsonNodeFactory.instance.pojoNode(LocalTime.parse("07:32:00"))) .set("lt2", JsonNodeFactory.instance.pojoNode(LocalTime.parse("00:32:00.999999"))), toml(tomlFactory, "lt1 = 07:32:00\n" + "lt2 = 00:32:00.999999") ); } @Test public void controlCharInComment() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("a = \"0x7f\" # \u007F") ); assertTrue(thrown.getMessage().contains("Illegal control character")); } @Test public void controlCharInLiteralString() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("a = '\u007F'") ); assertTrue(thrown.getMessage().contains("Illegal control character")); } @Test public void zeroPrefixedInt() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("foo = 01") ); assertTrue(thrown.getMessage().contains("Zero-prefixed ints are not valid")); } @Test public void signedBase() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("foo = +0b1") ); assertTrue(thrown.getMessage().contains("More data after value has already ended. Invalid value preceding this position?")); } @Test public void illegalComment() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("foo = # bar") ); assertTrue(thrown.getMessage().contains("Comment not permitted here")); } @Test public void unknownEscape() throws Exception { TomlStreamReadException thrown = assertThrows(TomlStreamReadException.class, () -> toml("foo = \"\\k\"") ); assertTrue(thrown.getMessage().contains("Unknown escape sequence")); } @Test public void chunkEdge() throws Exception { int bufferLength = 4096; ObjectNode node = toml("foo = \"" + repeat('a', bufferLength - 19) + "\"\n" + "bar = 123\n" + "baz = \"" + repeat('a', bufferLength) + "\""); assertEquals(123, node.get("bar").intValue()); } // https://github.com/FasterXML/jackson-dataformats-text/issues/497 @Test public void issue497() throws Exception { final String testValue = createIssue497String(); final String tomlText = "test = \"" + testValue + "\""; ObjectNode node = toml(tomlText); assertEquals(testValue, node.get("test").asString()); // test again with byte[] node = tomlBytes(tomlText); assertEquals(testValue, node.get("test").asString()); // test again with InputStream node = tomlInputStream(tomlText); assertEquals(testValue, node.get("test").asString()); // test again with Reader node = tomlReader(tomlText); assertEquals(testValue, node.get("test").asString()); } private static String repeat(char c, int n) { char[] chars = new char[n]; Arrays.fill(chars, c); return new String(chars); } private static String createIssue497String() { StringBuilder sb = new StringBuilder(4001); for (int i = 0; i < 4000; ++i) { sb.append('a'); } sb.append('\u5496'); return sb.toString(); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/UTF8ReaderTest.java ================================================ package tools.jackson.dataformat.toml; import java.io.*; import java.nio.charset.StandardCharsets; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; public class UTF8ReaderTest { @Test public void testSurrogatePairAtBufferBoundary() throws IOException { // Test that pending surrogate doesn't cause ArrayIndexOutOfBoundsException // when buffer has no space. Uses emoji (4-byte UTF-8) to create surrogate pair. String emojiStr = "\uD83D\uDE00"; // U+1F600, encoded as surrogate pair in UTF-16 byte[] utf8Bytes = emojiStr.getBytes(StandardCharsets.UTF_8); UTF8Reader reader = UTF8Reader.construct(utf8Bytes, 0, utf8Bytes.length); // First read with buffer size 1 - should read first surrogate char[] buf1 = new char[1]; int read1 = reader.read(buf1, 0, 1); assertEquals(1, read1); // Second read with buffer size 0 - should return 0, not throw exception char[] buf0 = new char[0]; int read0 = reader.read(buf0, 0, 0); assertEquals(0, read0); // Third read with buffer size 1 - should read second surrogate char[] buf2 = new char[1]; int read2 = reader.read(buf2, 0, 1); assertEquals(1, read2); // Verify we got the emoji correctly String result = new String(buf1) + new String(buf2); assertEquals(emojiStr, result); reader.close(); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/dos/CyclicTOMLDataSerTest.java ================================================ package tools.jackson.dataformat.toml.dos; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.toml.TomlMapperTestBase; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; /** * Simple unit tests to verify that we fail gracefully if you attempt to serialize * data that is cyclic (eg a list that contains itself). */ public class CyclicTOMLDataSerTest extends TomlMapperTestBase { private final ObjectMapper MAPPER = newTomlMapper(); @Test public void testListWithSelfReference() throws Exception { List list = new ArrayList<>(); list.add(list); try { MAPPER.writeValueAsString(list); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { String exceptionPrefix = String.format("Document nesting depth (%d) exceeds the maximum allowed", StreamWriteConstraints.DEFAULT_MAX_DEPTH + 1); assertTrue(e.getMessage().startsWith(exceptionPrefix), "DatabindException message is as expected?"); } } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/testutil/failure/JacksonTestFailureExpected.java ================================================ package tools.jackson.dataformat.toml.testutil.failure; import java.lang.annotation.*; import org.junit.jupiter.api.extension.ExtendWith; /** *

    * Annotation used to indicate that a JUnit-5 based tests method is expected to fail. * *

    * When a test method is annotated with {@code @JacksonTestFailureExpected}, the * {@link JacksonTestFailureExpectedInterceptor} will intercept the test execution. * If the test passes, which is an unexpected behavior, the interceptor will throw an exception to fail the test, * indicating that the test was expected to fail but didn't. *

    * *

    Usage Example:

    * *
    
     *
     *     @Test
     *     @JacksonTestFailureExpected
     *     @Test
     *     public void testFeatureNotYetImplemented() {
     *         // Test code that is expected to fail
     *     }
     * }
     * 
    * *

    * * @since 2.19 */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @ExtendWith(JacksonTestFailureExpectedInterceptor.class) public @interface JacksonTestFailureExpected { } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/testutil/failure/JacksonTestFailureExpectedInterceptor.java ================================================ package tools.jackson.dataformat.toml.testutil.failure; import java.lang.reflect.Method; import org.junit.jupiter.api.extension.*; /** * Custom {@link InvocationInterceptor} that intercepts test method invocation. * To pass the test ***only if*** test fails with an exception, and fail the test otherwise. * * @since 2.19 */ public class JacksonTestFailureExpectedInterceptor implements InvocationInterceptor { @Override public void interceptTestMethod(Invocation invocation, ReflectiveInvocationContext invocationContext, ExtensionContext extensionContext) throws Throwable { try { invocation.proceed(); } catch (Throwable t) { // do-nothing, we do expect an exception return; } handleUnexpectePassingTest(invocationContext); } private void handleUnexpectePassingTest(ReflectiveInvocationContext invocationContext) { // Collect information we need Object targetClass = invocationContext.getTargetClass(); Object testMethod = invocationContext.getExecutable().getName(); //List arguments = invocationContext.getArguments(); // Create message String message = String.format("Test method %s.%s() passed, but should have failed", targetClass, testMethod); // throw exception throw new JacksonTestShouldFailException(message); } } ================================================ FILE: toml/src/test/java/tools/jackson/dataformat/toml/testutil/failure/JacksonTestShouldFailException.java ================================================ package tools.jackson.dataformat.toml.testutil.failure; /** * Exception used to alert that a test is passing, but should be failing. * * WARNING : This only for test code, and should never be thrown from production code. * * @since 2.19 */ public class JacksonTestShouldFailException extends RuntimeException { private static final long serialVersionUID = 1L; public JacksonTestShouldFailException(String msg) { super(msg); } } ================================================ FILE: toml/src/test/resources/clusterfuzz-testcase-minimized-TOMLFuzzer-5068015447703552 ================================================ 'nd20naLLfnN2HL0LtruenaL0NL0joL0b1B823n0xde_0o6NL1dd26_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0LaNMjatax.L1daL6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0LaNMjatax.L1daLLfnLHNL20truenaL0NL0joL0b1B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2HL0LtruenaL0NL0joL0b1B823n0xde_0nanL1dd20Ld4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05ne-01do0aLLf20LINMjatax.-6_3=.6e-05nd4Bj0xd0_eo6dXNb1B8dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05ne-01do0aLLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOL1anfn0xd0_eo6LfnLHNL20truenaL0NL0joL0b1B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2HL0LtruenaL0\u12345678NLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do01B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2LHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOL1anfn0xd0_eo6LfnLHNL20truenaL0NL0joL0b1B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2HL0LtruenaL0\u12345678NL0joL0b1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6n0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOL1anfn0xd0_eo6LfnL20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOL1anfn0xd0_eo6LfnLHNL20truenaL0NL0joL0b1B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2HL0LtruenaL0\u12345678NL0joL0b1B_0nanL1dd20LINMjatax.-6_3.6e-05nd.6e-05nd4Bjavax.-6_3.6n0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOL1anfn0xd0_eo6LfnLHNL20truenaL0NL0joL0b1B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2HL0Ltrue󠁌naL0NL0joL0b1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da󠁶-6_3.6e-05ne-01do0aLLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do01B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2󠁿HL0LtruenaL0\u1234567b1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05ndN2HL0LtruenaL0\u12345678NL0joL0b1B_0nanL1dd20LINMjatax.-6_3.6e-05nd.6e-05nd4Bjavax.-6_3.6n0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHOL1anfn0xd0_eo6LfnLHNL20truenaL0NL0joL0b1B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2HL0Ltrue󠁌naL0NL0joL0b1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da󠁶-6_3.6e-05ne-01do0aLLf20LINMjatax.-6_3=.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6dXNb1B823n0xde_0nanL1dd20LINMjatax.-6_3.6e-05nd4Bjavax.-6_3.6e-01do0aLLfnLHNL1anfn0xd0_eo6d2N0L1da-6_3.6e-05nd4Bjavax.-6_3.6e-01do01B823n0xde_0o6Ndd21#LLaN-6_u0naLLfnLHNL20trueaLLfnN2󠁿Hu12 ================================================ FILE: toml/src/test/resources/clusterfuzz-testcase-minimized-TOMLFuzzer-6370486359031808 ================================================ d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad54039810bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.44440054343792000000d19nad62bbbucbjbbicbibbO0lbbba={9vjava.444400543437920000000R02EE020174=909,922337820001o6e509bbbd6bbbaw87=90699,bbb ================================================ FILE: toml/src/test/resources/clusterfuzz-testcase-minimized-TOMLFuzzer-6542204348006400 ================================================ 'va\un=[111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,1,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111111,111g="G-ry-xr2-iba-ik-dq-be-ba-r111,1\u1234b-xi-rv-ii-dv-yt-xr8et-rvG-ta-feah-eaL-bb-ab-ii-aaia-ye-et-yv-ik-dq-be-bbia_rv-td-xr-iav-ik-d-rv-ia-ye-bbbbfalsebbe-babba-rd-bb-rv-Xii-dv-yr-ia-yv-ik-Ds-Bv-ju-xN-rKz-aG-0G-1s-kcaarzG-xrtd-xr-ia-ye-bb-ik-d-rv-ia-ye-et-yv-ik-dq-be-ba-a6-yv-ik-dhaba-r38s-oa-iu-nu-alllbbbbbbbbfnan2bb2556o8-nan5008aik-dq-be-ba-rb-xi-rv-iiin-xrin-G-ta-feah-eaL-bb-xiv-ii-xr-iaTz-u-v-4011-4012-2311-31221-9148-2021-5-ye-et-yv-ik-dq-be-ba-rb-xi-rv-td-xr-iav-ik-d-rv-ia-ye-et-yv-ik-dq-be-ba-rb-x-yv-ik-dq-be-ba-rb-xi-rv-ii-kAdv-yt-xr-ia-rv-mi-dv-yt-3276k-dq-be-ba-rb-xi-rv-ii-dv-yt-xr8et-rj-ms-Kp-kl-zD-be-rb-qi-ri-dt-ka-vv-lt-xr-ye-et-yk-dx-ba-rd-bb-rvaa-dv-yr-ia-yv-ik-Ds-Bv-ju-xN-rs-Ku-eyk-dx-ba-r-rv-ii-dv-yrtlv-yv-ik-Ds-Bv-ju-xN-rs-Ku-es-0sta-u-KZ-a-oa-iu-nu-ar-v-ik-d-rv-ia-ye-et--qk-dq-be-ba-rb-x-yv-ik-d0q-be-ba-rb-xi-rv-iiey-U-ie-do-dbb3bj-jTah-eaL-bb-xiv-ii-xr-i55-u-v-4011-4012-2311-3121-9148-201-2321-2121-5401-2314-2311-3121-9148-2021-5-ye-et-yv-ik-dq-be-ba-rb-xi-rv-td-xr-iav-ik-d-rv-ia-ye-et-yv-ik-dq-be-ba-rb-x-et-yv-ik-dq-be-ba-rb-xi-rv-td-xr-iav-ik-d-rv-ia-ye-et-yv-ik-dq-be-babbyv--NT-RM-Aj-iV-mK-TJ-mm-ru-Cq-ks-Pks--yv-ik-dq-be-ba-rb-x-yv-ik-dq-be-ba-rb-xi-rv-ii-kAdv-yt-xr-ia-rv-mi-dv-yt-3276k-dq-be-ba-rb-xi-rv-ii-dv-yt-xr8et-rj-ms-Kp-kl-zD-be-rb-qi-ri-dt-ka-vv-lt-xr-ye-et-yk-dx-ba-rd-bb-rvaa-dv-yr-ia-yv-ik-Ds-Bv-ju-xN-rs-Ku-eyk-dx-ba-r-rv-ii-dv-yrtlv-yv-ik-Ds-Bv-ju-xN-rs-Ku-es-0sta-u-KZ-a-oa-iu-nu-ar-v-ik-d-rv-ia-ye-et--qk-dq-be-ba-rb-x-yv-ik-d0q-be-ba-rb-xi-rv-iiey-U-ie-do-dbb3bj-jTah-eaL-bb-xiv-ii-xr-i55-u-v-4011-4012-2311-3121-9148-201-2321-2121-5401-2314-2311s-kc-s-rG-xrtd-xr-ia-ye-e-ytv-ik-d-rv-ia-ye-et-yv-ik-dq-be-ba-rb-x-yv-ik-dq-be-b-tyv-xr-ia-rv-mi-dv-yt-65538s-oa-iu-nu-ar-TG-Kt-us-Kz-aG-0G-ry-x-ia-ye-et-yv-ik-dq-be402-251-23-ba-u-nu-ar-TG-Kt-us-Kz-aG-1G-ry-rG-2s-rz-Mz-KG-1s-kc-s-rG-xrtd-xr-ia-zape-ytv-ik-d-rv-ia-ye-et-yv-ik-be-ba1gb-x-yv-ik-dq-be-ba123-rb-xi-rv-ii-kAdv-yt-xr-ia-rv-mi-dv-yt-65538s-oa-iu-nu-ar-TG-Kt-us-Kz-aG-0G-ry-xr-ia-ye-errt-yv-ik-dq-be-ba-dv-yr-ia-yv-ik-Ds-Bv-ju-xN-rs-Ku-es-0s-oa-iu-nu-ar-TG-Kt-us-Kz-aG-1G-ry-rG-2s-rz-Mz-KG-1s-kc-s-rG-xrtd-xr-ia-zape-ytv-ik-d-rv-ia-ye-et-yv-ik-be-ba1gb-x-Yv-iPU-Bj-ms-Kp-kl-zD-bs-PU-Jj-ms-Kp-kl-zD-be-rb-qi-ri-dt-ka-vv-lt-xr-ye-et11114,111111111-yk-dx-ba-rd-bb-r-be-rb-qi-ri-dt-ka-vv-lt-xr-ye-e222t-yk-dx-ba-rd-bb-rv-ii-dv-yr-ia-yv-ik-Ds-Bv-ju-xN-rs-Ku-es-0s-oa-iu-nu-ar-TG-Kt-us-Kz-aG-1G-ry-rG-2s-rz-Mz-KG-1s-kc-s-rG-xrtd-xr-ia-zape-ytv-ik-d-rv-ia-ye-et-yv-ik-be-ba1gb-x-Yv-iPU-Bj-ms-Kp-kl-zD-bs-PU-Jj-ms-Kp-kl-zD-be-rb-qi-ri-dt-ka-vv-lt-xr-ye-et11114,111111111-yk-dx-ba-rd-bb-r2314-2311-3121-9148-255-4-ye-et-yv-ik-dq-be-ba8s-oa-iu-nu-ar-TG-Kt-us-Kz-aG-0G-ry-xr-ia-ye-errt-yv-ik-dq-be-ba-rb-xi-rv-ii-dv-yt-xr8et-rvG-ta-feah-eaL-bb-xiv-ii-xr-ia-ye-et-yv-ik-dq-be-ba-rb-xi-rv-td-xr-iav-ik-d-rv-ia-ye-et-yv-ik-dq-be-ba-rba-rd-bb-rv-Xii-dv-yr-ia-yv-ik-Ds-Bv-ju-xN-rs-Ku-es-iaTz-u-vt-4821-4011-4012-2311-3121-9148-201-2321-2121-5401-2314-2311-3121-9148-2021-4-ye-et-yv-ik-dq-be-ba-rb-xi-rv-de-is-xv-fA-jbMu-NT-RM-Aj-iV-mK-TJ-mm-ru-Cq-ks-Pks-PU-Bj-ms-Kp-kl-zD-bs-PU-Jj-ms-Kp-kl-zD-be-rb-qi-ri-dt-ka-vv-lt-xr-ye-et-yk-dx-ba-rd-bb-rv-ii-dv-yr-ba-rb-x-yv-ik-dq-be-ba-rb-xi`rv-ii-kAdv-yt-xr-k-Ds-Bv-ju-xN-rs-Ku-es-0s-oa-iu-nu-ar-TG-Kt-us-Kz-aG-0G-rzapuex-zapuee-g-y-rG-2s-rz-Mz-KG-1s-kc-s-rG-xrtd-xr-ia-ye-e-ytv-ik-d-rv-ia-ye-et-yv-ik-dq-be-ba-rb-x-yv-ik-dq-be-b-tyv-xr-ia-rv-mi-dv-yt-65538s-oa-iu-nu-ar-TG-Kt-us-Kz-aG-0G-ry-x-ia-ye-et-yv-ik-dq-be402-251-23-ba-u-nu-ar-TG-Kt-us-Kz-aG-1G-ry-rG-2s-rz-Mz-KG-1s-kc-s-rG-xrtd-xr-ia-zape-ytv-ik-d-rv-ia-ye-et-yv-ik-be-ba1gb-x-yv-ik-dq-be-ba123-rb-xi-rv-ii-kAdv-yt-xr-ia-rv-mi-dv-yt-65538s-oa-iu-nu-ar-TG-Kt-us-Kz-aG-0G-ry-xr-ia-ye-errt-yv-ik-dq-be-ba-rb-xi-rv-ii-dv-yt-xr8et-rvG-ta-feah-ea42L-bb-xiv-ii-xr-ia-yaat-yv-ik-dq-''r ================================================ FILE: yaml/.gitattributes ================================================ # Do not merge `pom.xml` from older version, as it will typically conflict pom.xml merge=ours ================================================ FILE: yaml/README.md ================================================ # Overview This project contains [Jackson](../../../../jackson) extension component for reading and writing [YAML](http://en.wikipedia.org/wiki/YAML) encoded data. Since version 3.0, which is being developed in this branch, [SnakeYAML Engine](https://bitbucket.org/snakeyaml/snakeyaml-engine/) library will be used for low-level YAML parsing. In current released versions 2.* [SnakeYAML](https://bitbucket.org/snakeyaml/snakeyaml/) library is used. See separate branches [2.9](https://github.com/FasterXML/jackson-dataformats-text/tree/2.9) and [2.10](https://github.com/FasterXML/jackson-dataformats-text/tree/2.10) for sources. This project adds necessary abstractions on top to make things work with other Jackson functionality. Project is licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt). # Status [![Build Status](https://travis-ci.org/FasterXML/jackson-dataformat-yaml.svg?branch=master)](https://travis-ci.org/FasterXML/jackson-dataformat-yaml) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/) [![Javadoc](https://javadoc.io/badge/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml.svg)](http://www.javadoc.io/doc/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml) Module has been production ready since version 2.5. ## Maven dependency To use this extension on Maven-based projects, use following dependency: ```xml com.fasterxml.jackson.dataformat jackson-dataformat-yaml 2.14.2 ``` # Usage ## Simple usage Usage is through basic `JsonFactory` and/or `ObjectMapper` API but you will construct instances differently: ```java // Mapper with default configuration ObjectMapper mapper = new YAMLMapper(); User user = mapper.readValue(yamlSource, User.class); // Or using builder ObjectMapper mapper = YAMLMapper.builder() .disable(YAMLGenerator.Feature.WRITE_DOC_START_MARKER) .build(); Json ``` but you can also just use underlying `YAMLFactory` and parser it produces, for event-based processing: ```java YAMLFactory factory = new YAMLFactory(); YAMLParser parser = factory.createParser(yamlString); while (parser.nextToken() != null) { // do something! } ``` ## Configuration Most configuration is applied during mapper instance configuration, through `YAMLMapper.Builder`, similar to how JSON-based plain `ObjectMapper` is configured. ### SnakeYAML Configuration Since jackson-dataformat-yaml 2.14, it is possible to configure the underlying [SnakeYAML](https://bitbucket.org/snakeyaml/snakeyaml/wiki/Home) behavior. If you are parsing YAML, you might consider configuring the [LoaderOptions](https://www.javadoc.io/doc/org.yaml/snakeyaml/latest/org/yaml/snakeyaml/LoaderOptions.html). See the related 'Known Problems' section below to see an example of how to do this. As well as configuring the 'codePointLimit', you might also want to configure the 'nestingDepthLimit'. If you are generating YAML, you can also control the underlying SnakeYAML behavior by setting the [DumperOptions](https://www.javadoc.io/doc/org.yaml/snakeyaml/latest/org/yaml/snakeyaml/DumperOptions.html) on the [YAMLFactory.builder()](https://javadoc.io/static/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.14.2/com/fasterxml/jackson/dataformat/yaml/YAMLFactoryBuilder.html). ## Known Problems ### Maximum input YAML document size (3 MB) SnakeYAML implementation (that Jackson uses for low-level encoding and decoding) starts imposing the default limit of 3 megabyte document size as of version 1.32, used by Jackson 2.14 (and later). If you hit this limitation, you need to explicitly increase the limit by configuring `YAMLFactory` and constructing `YAMLMapper` with that: ```java LoaderOptions loaderOptions = new LoaderOptions(); loaderOptions.setCodePointLimit(10 * 1024 * 1024); // 10 MB YAMLFactory yamlFactory = YAMLFactory.builder() .loaderOptions(loaderOptions) .build(); YAMLMapper mapper = new YAMLMapper(yamlFactory); ``` # Documentation * [Wiki](../../../wiki) contains links to Javadocs, external documentation ================================================ FILE: yaml/pom.xml ================================================ 4.0.0 tools.jackson.dataformat jackson-dataformats-text 3.2.0-SNAPSHOT jackson-dataformat-yaml jar Jackson-dataformat-YAML Support for reading and writing YAML-encoded data via Jackson abstractions. https://github.com/FasterXML/jackson-dataformats-text The Apache Software License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0.txt repo tools/jackson/dataformat/yaml ${project.groupId}.yaml tools.jackson.core jackson-core tools.jackson.core jackson-databind org.snakeyaml snakeyaml-engine 3.0.1 com.google.code.maven-replacer-plugin replacer org.cyclonedx cyclonedx-maven-plugin org.gradlex gradle-module-metadata-maven-plugin ================================================ FILE: yaml/src/main/java/module-info.java ================================================ // YAML Main artifact Module descriptor module tools.jackson.dataformat.yaml { requires tools.jackson.core; requires tools.jackson.databind; // Jackson 3.0 uses snakeyaml-engine (2.x snakeyaml) requires org.snakeyaml.engine; exports tools.jackson.dataformat.yaml; exports tools.jackson.dataformat.yaml.util; provides tools.jackson.core.TokenStreamFactory with tools.jackson.dataformat.yaml.YAMLFactory; provides tools.jackson.databind.ObjectMapper with tools.jackson.dataformat.yaml.YAMLMapper; } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/JacksonYAMLParseException.java ================================================ package tools.jackson.dataformat.yaml; import tools.jackson.core.JsonParser; import tools.jackson.core.exc.StreamReadException; public class JacksonYAMLParseException extends StreamReadException { private static final long serialVersionUID = 1L; public JacksonYAMLParseException(JsonParser p, String msg, Exception e) { super(p, msg, e); } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/JacksonYAMLWriteException.java ================================================ package tools.jackson.dataformat.yaml; import tools.jackson.core.JsonGenerator; import tools.jackson.core.exc.StreamWriteException; /** * Exception type thrown by YAML generator when SnakeYAML's emitter throws * a {@link org.snakeyaml.engine.v2.exceptions.YamlEngineException}. * This wrapping prevents SnakeYAML implementation details from leaking to callers, * which is important for OSGi runtime compatibility and proper abstraction. * * @since 3.1 */ public class JacksonYAMLWriteException extends StreamWriteException { private static final long serialVersionUID = 1L; /** * Constructor for creating a wrapped exception. * * @param g Generator context where the error occurred * @param msg Error message (typically from the underlying SnakeYAML exception) * @param e Root cause exception (typically a YamlEngineException) */ public JacksonYAMLWriteException(JsonGenerator g, String msg, Exception e) { super(g, msg, e); } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/PackageVersion.java.in ================================================ package @package@; import tools.jackson.core.Version; import tools.jackson.core.Versioned; import tools.jackson.core.util.VersionUtil; /** * Automatically generated from PackageVersion.java.in during * packageVersion-generate execution of maven-replacer-plugin in * pom.xml. */ public final class PackageVersion implements Versioned { public final static Version VERSION = VersionUtil.parseVersion( "@projectversion@", "@projectgroupid@", "@projectartifactid@"); @Override public Version version() { return VERSION; } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/UTF8Reader.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import java.lang.ref.SoftReference; import java.util.Objects; /** * Optimized Reader that reads UTF-8 encoded content from an input stream. * In addition to doing (hopefully) optimal conversion, it can also take * array of "pre-read" (leftover) bytes; this is necessary when preliminary * stream/reader is trying to figure out underlying character encoding. */ public final class UTF8Reader extends Reader { private final static int DEFAULT_BUFFER_SIZE = 8000; /** * This ThreadLocal contains a {@link java.lang.ref.SoftReference} * to a byte array used for holding content to decode */ final protected static ThreadLocal> _bufferRecycler = new ThreadLocal>(); protected final byte[][] _bufferHolder; private InputStream _inputSource; private final boolean _autoClose; protected byte[] _inputBuffer; /** * Flag set to indicate {@code inputBuffer} is read-only, and its * content should not be modified. This is the case when caller * has passed in a buffer of contents already read, instead of Jackson * allocating read buffer. * * @since 2.20 */ private final boolean _inputBufferReadOnly; /** * Pointer to the next available byte (if any), iff less than * mByteBufferEnd */ protected int _inputPtr; /** * Pointed to the end marker, that is, position one after the last * valid available byte. */ protected int _inputEnd; /** * Decoded first character of a surrogate pair, if one needs to be buffered */ protected int _surrogate = -1; /** * Total read character count; used for error reporting purposes */ int _charCount = 0; /** * Total read byte count; used for error reporting purposes */ int _byteCount = 0; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public UTF8Reader(InputStream in, boolean autoClose) { super((in == null) ? new Object() : in); _inputSource = in; _bufferHolder = _findBufferHolder(); byte[] buffer = _bufferHolder[0]; if (buffer == null) { buffer = new byte[DEFAULT_BUFFER_SIZE]; } else { _bufferHolder[0] = null; } _inputBuffer = buffer; // 07-Aug-2025, tatu: Since we manage the buffer, we can modify it _inputBufferReadOnly = false; _inputPtr = 0; _inputEnd = 0; _autoClose = autoClose; } public UTF8Reader(byte[] buf, int ptr, int len, boolean autoClose) { super(new Object()); _inputSource = null; _inputBuffer = buf; // 07-Aug-2025, tatu: Buffer is given to us, so it is read-only _inputBufferReadOnly = true; _inputPtr = ptr; _inputEnd = ptr+len; _autoClose = autoClose; _bufferHolder = null; } private static byte[][] _findBufferHolder() { byte[][] bufs = null; SoftReference ref = _bufferRecycler.get(); if (ref != null) { bufs = ref.get(); } if (bufs == null) { bufs = new byte[1][]; _bufferRecycler.set(new SoftReference(bufs)); } return bufs; } /* /********************************************************************** /* Reader API /********************************************************************** */ @Override public void close() throws IOException { InputStream in = _inputSource; if (in != null) { _inputSource = null; if (_autoClose) { in.close(); } } freeBuffers(); } private char[] _tmpBuffer = null; /** * Although this method is implemented by the base class, AND it should * never be called by Woodstox code, let's still implement it bit more * efficiently just in case */ @Override public int read() throws IOException { if (_tmpBuffer == null) { _tmpBuffer = new char[1]; } if (read(_tmpBuffer, 0, 1) < 1) { return -1; } return _tmpBuffer[0]; } @Override public int read(char[] cbuf) throws IOException { return read(cbuf, 0, cbuf.length); } @Override public int read(final char[] cbuf, final int start, int len) throws IOException { // validate input parameters Objects.requireNonNull(cbuf, "cbuf == null"); Objects.checkFromIndexSize(start, len, cbuf.length); // Already EOF? if (_inputBuffer == null) { return -1; } else if (len == 0) { // if len=0, we don't need to return anything return 0; } len += start; int outPtr = start; // Ok, first; do we have a surrogate from last round? if (_surrogate >= 0) { cbuf[outPtr++] = (char) _surrogate; _surrogate = -1; // No need to load more, already got one char // 15-Sep-2022, tatu: But need to avoid having empty buffer if (_inputPtr >= _inputEnd) { _charCount += 1; return 1; } // otherwise let things work the way they should } else { // To prevent unnecessary blocking (esp. with network streams), // we'll only require decoding of a single char int left = (_inputEnd - _inputPtr); /* So; only need to load more if we can't provide at least * one more character. We need not do thorough check here, * but let's check the common cases here: either completely * empty buffer (left == 0), or one with less than max. byte * count for a single char, and starting of a multi-byte * encoding (this leaves possibility of a 2/3-byte char * that is still fully accessible... but that can be checked * by the load method) */ if (left < 4) { // Need to load more? if (left < 1 || _inputBuffer[_inputPtr] < 0) { if (!loadMore(left)) { // (legal) EOF? return -1; } } } } final byte[] buf = _inputBuffer; int inPtr = _inputPtr; final int inBufLen = _inputEnd; main_loop: while (outPtr < len) { // At this point we have at least one byte available int c = (int) buf[inPtr++]; // Let's first do the quickie loop for common case; 7-bit ASCII if (c >= 0) { // ASCII? can probably loop, then cbuf[outPtr++] = (char) c; // ok since MSB is never on // Ok, how many such chars could we safely process without overruns? // (will combine 2 in-loop comparisons into just one) int outMax = (len - outPtr); // max output int inMax = (inBufLen - inPtr); // max input int inEnd = inPtr + ((inMax < outMax) ? inMax : outMax); ascii_loop: while (true) { if (inPtr >= inEnd) { break main_loop; } c = buf[inPtr++]; if (c < 0) { // or multi-byte break ascii_loop; } cbuf[outPtr++] = (char) c; } } int needed; // Ok; if we end here, we got multi-byte combination if ((c & 0xE0) == 0xC0) { // 2 bytes (0x0080 - 0x07FF) c = (c & 0x1F); needed = 1; } else if ((c & 0xF0) == 0xE0) { // 3 bytes (0x0800 - 0xFFFF) c = (c & 0x0F); needed = 2; } else if ((c & 0xF8) == 0xF0) { // 4 bytes; double-char BS, with surrogates and all... c = (c & 0x0F); needed = 3; } else { reportInvalidInitial(c & 0xFF, outPtr-start); // never gets here... needed = 1; } /* Do we have enough bytes? If not, let's just push back the * byte and leave, since we have already gotten at least one * char decoded. This way we will only block (with read from * input stream) when absolutely necessary. */ if ((inBufLen - inPtr) < needed) { --inPtr; break main_loop; } int d = (int) buf[inPtr++]; if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start); } c = (c << 6) | (d & 0x3F); if (needed > 1) { // needed == 1 means 2 bytes total d = buf[inPtr++]; // 3rd byte if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start); } c = (c << 6) | (d & 0x3F); if (needed > 2) { // 4 bytes? (need surrogates) d = buf[inPtr++]; if ((d & 0xC0) != 0x080) { reportInvalidOther(d & 0xFF, outPtr-start); } c = (c << 6) | (d & 0x3F); /* Ugh. Need to mess with surrogates. Ok; let's inline them * there, then, if there's room: if only room for one, * need to save the surrogate for the rainy day... */ c -= 0x10000; // to normalize it starting with 0x0 cbuf[outPtr++] = (char) (0xD800 + (c >> 10)); // hmmh. can this ever be 0? (not legal, at least?) c = (0xDC00 | (c & 0x03FF)); // Room for second part? if (outPtr >= len) { // nope _surrogate = c; break main_loop; } // sure, let's fall back to normal processing: } // Otherwise, should we check that 3-byte chars are // legal ones (should not expand to surrogates? // For now, let's not... /* else { if (c >= 0xD800 && c < 0xE000) { reportInvalid(c, outPtr-start, "(a surrogate character) "); } } */ } cbuf[outPtr++] = (char) c; if (inPtr >= inBufLen) { break main_loop; } } _inputPtr = inPtr; final int actualLen = outPtr - start; _charCount += actualLen; return actualLen; } /* /********************************************************************** /* Internal/package methods: /********************************************************************** */ protected final InputStream getStream() { return _inputSource; } /** * Method for reading as many bytes from the underlying stream as possible * (that fit in the buffer), to the beginning of the buffer. * * @return Number of bytes read, if any; -1 for end-of-input. */ protected final int readBytes() throws IOException { _inputPtr = 0; _inputEnd = 0; if (_inputSource != null) { int count = _inputSource.read(_inputBuffer, 0, _inputBuffer.length); if (count > 0) { _inputEnd = count; } return count; } return -1; } /** * Method for reading as many bytes from the underlying stream as possible * (that fit in the buffer considering offset), to the specified offset. * * @return Number of bytes read, if any; -1 to indicate none available * (that is, end of input) */ protected final int readBytesAt(int offset) throws IOException { // shouldn't modify mBytePtr, assumed to be 'offset' if (_inputSource != null) { int count = _inputSource.read(_inputBuffer, offset, _inputBuffer.length - offset); if (count > 0) { _inputEnd += count; } return count; } return -1; } /** * This method should be called along with (or instead of) normal * close. After calling this method, no further reads should be tried. * Method will try to recycle read buffers (if any). */ public final void freeBuffers() { if (_bufferHolder != null) { byte[] buf = _inputBuffer; if (buf != null) { _inputBuffer = null; _bufferHolder[0] = buf; } } } /* /********************************************************************** /* Internal methods /********************************************************************** */ private void reportInvalidInitial(int mask, int offset) throws IOException { // input (byte) ptr has been advanced by one, by now: int bytePos = _byteCount + _inputPtr - 1; int charPos = _charCount + offset + 1; throw new CharConversionException("Invalid UTF-8 start byte 0x"+Integer.toHexString(mask) +" (at char #"+charPos+", byte #"+bytePos+")"); } private void reportInvalidOther(int mask, int offset) throws IOException { int bytePos = _byteCount + _inputPtr - 1; int charPos = _charCount + offset; throw new CharConversionException("Invalid UTF-8 middle byte 0x"+Integer.toHexString(mask) +" (at char #"+charPos+", byte #"+bytePos+")"); } private void reportUnexpectedEOF(int gotBytes, int needed) throws IOException { int bytePos = _byteCount + gotBytes; int charPos = _charCount; throw new CharConversionException("Unexpected EOF in the middle of a multi-byte char: got " +gotBytes+", needed "+needed +", at char #"+charPos+", byte #"+bytePos+")"); } /* private void reportInvalid(int value, int offset, String msg) throws IOException { int bytePos = _byteCount + _inputPtr - 1; int charPos = _charCount + offset; throw new CharConversionException("Invalid UTF-8 character 0x"+Integer.toHexString(value)+msg +" at char #"+charPos+", byte #"+bytePos+")"); } */ /** * @param available Number of "unused" bytes in the input buffer * * @return True, if enough bytes were read to allow decoding of at least * one full character; false if EOF was encountered instead. */ private boolean loadMore(int available) throws IOException { _byteCount += (_inputEnd - available); if (available > 0) { // Should we move bytes to the beginning of buffer? if (_inputPtr > 0) { // Can only do so if buffer mutable if (!_inputBufferReadOnly) { for (int i = 0; i < available; ++i) { _inputBuffer[i] = _inputBuffer[_inputPtr+i]; } _inputPtr = 0; _inputEnd = available; } } } else { // Ok; here we can actually reasonably expect an EOF, so let's do a separate read right away: int count = readBytes(); if (count < 1) { freeBuffers(); // to help GC? if (count < 0) { // -1 return false; } // 0 count is no good; let's err out reportStrangeStream(); } } // We now have at least one byte... and that allows us to // calculate exactly how many bytes we need! @SuppressWarnings("cast") int c = (int) _inputBuffer[_inputPtr]; if (c >= 0) { // single byte (ascii) char... cool, can return return true; } // Ok, a multi-byte char, let's check how many bytes we'll need: int needed; if ((c & 0xE0) == 0xC0) { // 2 bytes (0x0080 - 0x07FF) needed = 2; } else if ((c & 0xF0) == 0xE0) { // 3 bytes (0x0800 - 0xFFFF) needed = 3; } else if ((c & 0xF8) == 0xF0) { // 4 bytes; double-char BS, with surrogates and all... needed = 4; } else { // 25-Aug-2016, tatu: As per [dataformat-csv#132], let's not throw // exception from here but let caller handle return true; } // And then we'll just need to load up to that many bytes; // if an EOF is hit, that'll be an error. But we need not do // actual decoding here, just load enough bytes. while ((_inputPtr + needed) > _inputEnd) { int count = readBytesAt(_inputEnd); if (count < 1) { if (count < 0) { // -1, EOF... no good! freeBuffers(); reportUnexpectedEOF(_inputEnd - _inputPtr, needed); } // 0 count is no good; let's err out reportStrangeStream(); } } return true; } protected void reportBounds(char[] cbuf, int start, int len) throws IOException { throw new ArrayIndexOutOfBoundsException("read(buf,"+start+","+len+"), cbuf["+cbuf.length+"]"); } protected void reportStrangeStream() throws IOException { throw new IOException("Strange I/O stream, returned 0 bytes on read"); } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/UTF8Writer.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import java.lang.ref.SoftReference; public final class UTF8Writer extends Writer { final static int SURR1_FIRST = 0xD800; final static int SURR1_LAST = 0xDBFF; final static int SURR2_FIRST = 0xDC00; final static int SURR2_LAST = 0xDFFF; private final static int DEFAULT_BUFFER_SIZE = 8000; /** * This ThreadLocal contains a {@link java.lang.ref.SoftReference} * to a byte array used for holding content to decode */ final protected static ThreadLocal> _bufferRecycler = new ThreadLocal>(); protected final byte[][] _bufferHolder; private OutputStream _out; private byte[] _outBuffer; private final int _outBufferEnd; private int _outPtr; /** * When outputting chars from BMP, surrogate pairs need to be coalesced. * To do this, both pairs must be known first; and since it is possible * pairs may be split, we need temporary storage for the first half */ int _surrogate = 0; public UTF8Writer(OutputStream out) { _out = out; _bufferHolder = _findBufferHolder(); byte[] buffer = _bufferHolder[0]; if (buffer == null) { buffer = new byte[DEFAULT_BUFFER_SIZE]; } else { _bufferHolder[0] = null; } _outBuffer = buffer; /* Max. expansion for a single char (in unmodified UTF-8) is * 4 bytes (or 3 depending on how you view it -- 4 when recombining * surrogate pairs) */ _outBufferEnd = _outBuffer.length - 4; _outPtr = 0; } private static byte[][] _findBufferHolder() { byte[][] bufs = null; SoftReference ref = _bufferRecycler.get(); if (ref != null) { bufs = ref.get(); } if (bufs == null) { bufs = new byte[1][]; _bufferRecycler.set(new SoftReference(bufs)); } return bufs; } @Override public Writer append(char c) throws IOException { write(c); return this; } @Override public void close() throws IOException { if (_out != null) { if (_outPtr > 0) { _out.write(_outBuffer, 0, _outPtr); _outPtr = 0; } OutputStream out = _out; _out = null; if (_bufferHolder != null) { byte[] buf = _outBuffer; if (buf != null) { _outBuffer = null; _bufferHolder[0] = buf; } } out.close(); /* Let's 'flush' orphan surrogate, no matter what; but only * after cleanly closing everything else. */ int code = _surrogate; _surrogate = 0; if (code > 0) { throwIllegal(code); } } } @Override public void flush() throws IOException { if (_out != null) { if (_outPtr > 0) { _out.write(_outBuffer, 0, _outPtr); _outPtr = 0; } _out.flush(); } } @Override public void write(char[] cbuf) throws IOException { write(cbuf, 0, cbuf.length); } @Override public void write(char[] cbuf, int off, int len) throws IOException { if (len < 2) { if (len == 1) { write(cbuf[off]); } return; } // First: do we have a leftover surrogate to deal with? if (_surrogate > 0) { char second = cbuf[off++]; --len; write(convertSurrogate(second)); // will have at least one more char } int outPtr = _outPtr; byte[] outBuf = _outBuffer; int outBufLast = _outBufferEnd; // has 4 'spare' bytes // All right; can just loop it nice and easy now: len += off; // len will now be the end of input buffer output_loop: for (; off < len; ) { /* First, let's ensure we can output at least 4 bytes * (longest UTF-8 encoded codepoint): */ if (outPtr >= outBufLast) { _out.write(outBuf, 0, outPtr); outPtr = 0; } int c = cbuf[off++]; // And then see if we have an Ascii char: if (c < 0x80) { // If so, can do a tight inner loop: outBuf[outPtr++] = (byte)c; // Let's calc how many ascii chars we can copy at most: int maxInCount = (len - off); int maxOutCount = (outBufLast - outPtr); if (maxInCount > maxOutCount) { maxInCount = maxOutCount; } maxInCount += off; ascii_loop: while (true) { if (off >= maxInCount) { // done with max. ascii seq continue output_loop; } c = cbuf[off++]; if (c >= 0x80) { break ascii_loop; } outBuf[outPtr++] = (byte) c; } } // Nope, multi-byte: if (c < 0x800) { // 2-byte outBuf[outPtr++] = (byte) (0xc0 | (c >> 6)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); } else { // 3 or 4 bytes // Surrogates? if (c < SURR1_FIRST || c > SURR2_LAST) { outBuf[outPtr++] = (byte) (0xe0 | (c >> 12)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); continue; } // Yup, a surrogate: if (c > SURR1_LAST) { // must be from first range _outPtr = outPtr; throwIllegal(c); } _surrogate = c; // and if so, followed by another from next range if (off >= len) { // unless we hit the end? break; } c = convertSurrogate(cbuf[off++]); if (c > 0x10FFFF) { // illegal in JSON as well as in XML _outPtr = outPtr; throwIllegal(c); } outBuf[outPtr++] = (byte) (0xf0 | (c >> 18)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 12) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); } } _outPtr = outPtr; } @Override public void write(int c) throws IOException { // First; do we have a left over surrogate? if (_surrogate > 0) { c = convertSurrogate(c); // If not, do we start with a surrogate? } else if (c >= SURR1_FIRST && c <= SURR2_LAST) { // Illegal to get second part without first: if (c > SURR1_LAST) { throwIllegal(c); } // First part just needs to be held for now _surrogate = c; return; } if (_outPtr >= _outBufferEnd) { // let's require enough room, first _out.write(_outBuffer, 0, _outPtr); _outPtr = 0; } if (c < 0x80) { // ascii _outBuffer[_outPtr++] = (byte) c; } else { int ptr = _outPtr; if (c < 0x800) { // 2-byte _outBuffer[ptr++] = (byte) (0xc0 | (c >> 6)); _outBuffer[ptr++] = (byte) (0x80 | (c & 0x3f)); } else if (c <= 0xFFFF) { // 3 bytes _outBuffer[ptr++] = (byte) (0xe0 | (c >> 12)); _outBuffer[ptr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); _outBuffer[ptr++] = (byte) (0x80 | (c & 0x3f)); } else { // 4 bytes if (c > 0x10FFFF) { // illegal throwIllegal(c); } _outBuffer[ptr++] = (byte) (0xf0 | (c >> 18)); _outBuffer[ptr++] = (byte) (0x80 | ((c >> 12) & 0x3f)); _outBuffer[ptr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); _outBuffer[ptr++] = (byte) (0x80 | (c & 0x3f)); } _outPtr = ptr; } } @Override public void write(String str) throws IOException { write(str, 0, str.length()); } @Override public void write(String str, int off, int len) throws IOException { if (len < 2) { if (len == 1) { write(str.charAt(off)); } return; } // First: do we have a leftover surrogate to deal with? if (_surrogate > 0) { char second = str.charAt(off++); --len; write(convertSurrogate(second)); // will have at least one more char (case of 1 char was checked earlier on) } int outPtr = _outPtr; byte[] outBuf = _outBuffer; int outBufLast = _outBufferEnd; // has 4 'spare' bytes // All right; can just loop it nice and easy now: len += off; // len will now be the end of input buffer output_loop: for (; off < len; ) { /* First, let's ensure we can output at least 4 bytes * (longest UTF-8 encoded codepoint): */ if (outPtr >= outBufLast) { _out.write(outBuf, 0, outPtr); outPtr = 0; } int c = str.charAt(off++); // And then see if we have an Ascii char: if (c < 0x80) { // If so, can do a tight inner loop: outBuf[outPtr++] = (byte)c; // Let's calc how many ascii chars we can copy at most: int maxInCount = (len - off); int maxOutCount = (outBufLast - outPtr); if (maxInCount > maxOutCount) { maxInCount = maxOutCount; } maxInCount += off; ascii_loop: while (true) { if (off >= maxInCount) { // done with max. ascii seq continue output_loop; } c = str.charAt(off++); if (c >= 0x80) { break ascii_loop; } outBuf[outPtr++] = (byte) c; } } // Nope, multi-byte: if (c < 0x800) { // 2-byte outBuf[outPtr++] = (byte) (0xc0 | (c >> 6)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); } else { // 3 or 4 bytes // Surrogates? if (c < SURR1_FIRST || c > SURR2_LAST) { outBuf[outPtr++] = (byte) (0xe0 | (c >> 12)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); continue; } // Yup, a surrogate: if (c > SURR1_LAST) { // must be from first range _outPtr = outPtr; throwIllegal(c); } _surrogate = c; // and if so, followed by another from next range if (off >= len) { // unless we hit the end? break; } c = convertSurrogate(str.charAt(off++)); if (c > 0x10FFFF) { // illegal, as per RFC 4627 _outPtr = outPtr; throwIllegal(c); } outBuf[outPtr++] = (byte) (0xf0 | (c >> 18)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 12) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | ((c >> 6) & 0x3f)); outBuf[outPtr++] = (byte) (0x80 | (c & 0x3f)); } } _outPtr = outPtr; } /* /********************************************************** /* Internal methods /********************************************************** */ /** * Method called to calculate UTF codepoint, from a surrogate pair. */ private int convertSurrogate(int secondPart) throws IOException { int firstPart = _surrogate; _surrogate = 0; // Ok, then, is the second part valid? if (secondPart < SURR2_FIRST || secondPart > SURR2_LAST) { throw new IOException("Broken surrogate pair: first char 0x"+Integer.toHexString(firstPart)+", second 0x"+Integer.toHexString(secondPart)+"; illegal combination"); } return 0x10000 + ((firstPart - SURR1_FIRST) << 10) + (secondPart - SURR2_FIRST); } private void throwIllegal(int code) throws IOException { if (code > 0x10FFFF) { // over max? throw new IOException("Illegal character point (0x"+Integer.toHexString(code)+") to output; max is 0x10FFFF as per RFC 4627"); } if (code >= SURR1_FIRST) { if (code <= SURR1_LAST) { // Unmatched first part (closing without second part?) throw new IOException("Unmatched first part of surrogate pair (0x"+Integer.toHexString(code)+")"); } throw new IOException("Unmatched second part of surrogate pair (0x"+Integer.toHexString(code)+")"); } // should we ever get this? throw new IOException("Illegal character point (0x"+Integer.toHexString(code)+") to output"); } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/WriterWrapper.java ================================================ package tools.jackson.dataformat.yaml; import java.io.IOException; import java.io.UncheckedIOException; import java.io.Writer; import org.snakeyaml.engine.v2.api.StreamDataWriter; public class WriterWrapper implements StreamDataWriter { private final Writer _writer; public WriterWrapper(Writer _writer) { this._writer = _writer; } @Override public void flush() { try { _writer.flush(); } catch (IOException e) { throw new UncheckedIOException(e); } } @Override public void write(String str) { try { _writer.write(str); } catch (IOException e) { throw new UncheckedIOException(e); } } @Override public void write(String str, int off, int len) { try { _writer.write(str, off, len); } catch (IOException e) { throw new UncheckedIOException(e); } } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLAnchorReplayingFactory.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import tools.jackson.core.ObjectReadContext; import tools.jackson.core.io.IOContext; /** * A subclass of YAMLFactory with the only purpose to replace the YAMLParser by * the YAMLAnchorReplayingParser subclass. * * @since 2.19 */ public class YAMLAnchorReplayingFactory extends YAMLFactory { private static final long serialVersionUID = 1L; public YAMLAnchorReplayingFactory() { super(); } public YAMLAnchorReplayingFactory(YAMLFactory src) { super(src); } protected YAMLAnchorReplayingFactory(YAMLAnchorReplayingFactoryBuilder b) { super(b); } @Override public YAMLAnchorReplayingFactoryBuilder rebuild() { return new YAMLAnchorReplayingFactoryBuilder(this); } /** * Main factory method to use for constructing {@link YAMLAnchorReplayingFactory} instances with * different configuration. */ public static YAMLAnchorReplayingFactoryBuilder builder() { return new YAMLAnchorReplayingFactoryBuilder(); } @Override public YAMLAnchorReplayingFactory copy() { return new YAMLAnchorReplayingFactory(this); } @Override protected Object readResolve() { return new YAMLAnchorReplayingFactory(this); } @Override protected YAMLAnchorReplayingParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, InputStream in) { return new YAMLAnchorReplayingParser(readCtxt, ioCtxt, _getBufferRecycler(), readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _loadSettings, _createReader(in, null, ioCtxt)); } @Override protected YAMLAnchorReplayingParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, Reader r) { return new YAMLAnchorReplayingParser(readCtxt, ioCtxt, _getBufferRecycler(), readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _loadSettings, r); } @Override protected YAMLAnchorReplayingParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, char[] data, int offset, int len, boolean recyclable) { return new YAMLAnchorReplayingParser(readCtxt, ioCtxt, _getBufferRecycler(), readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _loadSettings, new CharArrayReader(data, offset, len)); } @Override protected YAMLAnchorReplayingParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, byte[] data, int offset, int len) { return new YAMLAnchorReplayingParser(readCtxt, ioCtxt, _getBufferRecycler(), readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _loadSettings, _createReader(data, offset, len, null, ioCtxt)); } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLAnchorReplayingFactoryBuilder.java ================================================ package tools.jackson.dataformat.yaml; /** * A subclass of YAMLFactoryBuilder with the only purpose to replace the YAMLFactory by * the YAMLAnchorReplayingFactory subclass. */ public class YAMLAnchorReplayingFactoryBuilder extends YAMLFactoryBuilder { protected YAMLAnchorReplayingFactoryBuilder() { super(); } public YAMLAnchorReplayingFactoryBuilder(YAMLAnchorReplayingFactory base) { super(base); } @Override public YAMLAnchorReplayingFactory build() { return new YAMLAnchorReplayingFactory(this); } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLAnchorReplayingParser.java ================================================ package tools.jackson.dataformat.yaml; import java.io.Reader; import java.util.*; import org.snakeyaml.engine.v2.api.LoadSettings; import org.snakeyaml.engine.v2.common.Anchor; import org.snakeyaml.engine.v2.events.*; import tools.jackson.core.ObjectReadContext; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.core.io.IOContext; import tools.jackson.core.util.BufferRecycler; /** * A parser that remembers the events of anchored parts in yaml and repeats them * to inline these parts when an alias if found instead of only returning an alias. *

    * Note: this overwrites the nextEvent() since the base {@code super.nextToken()} * manages too much state, and it seems to be much simpler to re-emit the events. * * @since 2.19 / 3.1 */ public class YAMLAnchorReplayingParser extends YAMLParser { private static class AnchorContext { public final String anchor; public final List events = new ArrayList<>(); public int depth = 1; public AnchorContext(String anchor) { this.anchor = anchor; } } /** * the maximum number of events that can be replayed */ public static final int MAX_EVENTS = 9999; /** * the maximum limit of anchors to remember */ public static final int MAX_ANCHORS = 9999; /** * the maximum limit of merges to follow */ public static final int MAX_MERGES = 9999; /** * the maximum limit of references to remember */ public static final int MAX_REFS = 9999; /** * Remembers when a merge has been started in order to skip the corresponding * sequence end which needs to be excluded */ private final ArrayDeque mergeStack = new ArrayDeque<>(); /** * Collects nested anchor definitions */ private final ArrayDeque tokenStack = new ArrayDeque<>(); /** * Keeps track of the last sequentially found definition of each anchor */ private final Map> referencedObjects = new HashMap<>(); /** * Keeps track of events that have been insert when processing alias */ private final ArrayDeque refEvents = new ArrayDeque<>(); /** * keeps track of the global depth of nested collections */ private int globalDepth = 0; public YAMLAnchorReplayingParser(ObjectReadContext readCtxt, IOContext ioCtxt, BufferRecycler br, int streamReadFeatures, int formatFeatures, LoadSettings loadSettings, Reader reader) { super(readCtxt, ioCtxt, br, streamReadFeatures, formatFeatures, loadSettings, reader); } private void finishContext(AnchorContext context) throws StreamConstraintsException { if (referencedObjects.size() + 1 > MAX_REFS) throw new StreamConstraintsException("too many references in the document"); referencedObjects.put(context.anchor, context.events); if (!tokenStack.isEmpty()) { List events = tokenStack.peek().events; if (events.size() + context.events.size() > MAX_EVENTS) throw new StreamConstraintsException("too many events to replay"); events.addAll(context.events); } } protected Event trackDepth(Event event) { if (event instanceof CollectionStartEvent) { ++globalDepth; } else if (event instanceof CollectionEndEvent) { --globalDepth; } return event; } protected Event filterEvent(Event event) { if (event instanceof MappingEndEvent) { if (!mergeStack.isEmpty()) { if (mergeStack.peek() > globalDepth) { mergeStack.pop(); return null; } } } return event; } protected void recordEvent(Event event) { if (tokenStack.isEmpty()) return; AnchorContext context = tokenStack.peek(); if (context.events.size() + 1 > MAX_EVENTS) throw new StreamConstraintsException("too many events to replay"); context.events.add(event); if (event instanceof CollectionStartEvent) { ++context.depth; } else if (event instanceof CollectionEndEvent) { --context.depth; if (context.depth == 0) { tokenStack.pop(); finishContext(context); } } } @Override protected Event nextEvent() { return nextEvent(true); } // @since 3.1.1 protected Event nextEvent(boolean recordEvents) { while (!refEvents.isEmpty()) { Event event = filterEvent(trackDepth(refEvents.removeFirst())); if (event != null) { if (recordEvents) { recordEvent(event); } return event; } } Event event = null; while (event == null) { event = trackDepth(super.nextEvent()); if (event == null) return null; event = filterEvent(event); } if (event instanceof AliasEvent alias) { List events = referencedObjects.get(alias.getAlias().getValue()); if (events != null) { if (refEvents.size() + events.size() > MAX_EVENTS) throw new StreamConstraintsException("too many events to replay"); refEvents.addAll(events); return nextEvent(recordEvents); } _reportError("invalid alias: " + alias.getAlias()); } if (event instanceof NodeEvent nodeEvent) { String anchor = nodeEvent.getAnchor().map(Anchor::getValue).orElse(null); if (anchor != null) { AnchorContext context = new AnchorContext(anchor); context.events.add(event); if (event instanceof CollectionStartEvent) { if (tokenStack.size() + 1 > MAX_ANCHORS) throw new StreamConstraintsException("too many anchors in the document"); tokenStack.push(context); } else { // directly store it finishContext(context); } // no need to record this event as it was handled above return event; } } if (event instanceof ScalarEvent scalarEvent) { if (scalarEvent.getValue().equals("<<")) { // expect next node to be a map // this mapping start event must not be registered by anchors; it is dropped so the contents are merged Event next = nextEvent(false); if (next instanceof MappingStartEvent) { if (mergeStack.size() + 1 > MAX_MERGES) throw new StreamConstraintsException("too many merges in the document"); mergeStack.push(globalDepth); return nextEvent(recordEvents); } _reportError("found field '<<' but value isn't a map"); } } if (recordEvents) { recordEvent(event); } return event; } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLFactory.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import org.snakeyaml.engine.v2.api.DumpSettings; import org.snakeyaml.engine.v2.api.LoadSettings; import org.snakeyaml.engine.v2.api.LoadSettingsBuilder; import org.snakeyaml.engine.v2.common.SpecVersion; import org.snakeyaml.engine.v2.schema.CoreSchema; import org.snakeyaml.engine.v2.schema.FailsafeSchema; import org.snakeyaml.engine.v2.schema.JsonSchema; import tools.jackson.core.*; import tools.jackson.core.base.TextualTSFactory; import tools.jackson.core.io.IOContext; import tools.jackson.dataformat.yaml.util.StringQuotingChecker; @SuppressWarnings("resource") public class YAMLFactory extends TextualTSFactory implements java.io.Serializable { private static final long serialVersionUID = 1L; /** * Name used to identify YAML format. * (and returned by {@link #getFormatName()} */ public final static String FORMAT_NAME_YAML = "YAML"; /** * Bitfield (set of flags) of all generator features that are enabled * by default. */ protected final static int DEFAULT_YAML_PARSER_FEATURE_FLAGS = YAMLReadFeature.collectDefaults(); /** * Bitfield (set of flags) of all generator features that are enabled * by default. */ protected final static int DEFAULT_YAML_GENERATOR_FEATURE_FLAGS = YAMLWriteFeature.collectDefaults(); /* /********************************************************************** /* Configuration /********************************************************************** */ /** * YAML version for underlying generator to follow, if specified. */ protected final SpecVersion _version; /** * YAML schema for underlying parser to follow, if specified. * @since 3.2 */ protected final YAMLSchema _schema; /** * Helper object used to determine whether property names, String values * must be quoted or not. */ protected final StringQuotingChecker _quotingChecker; /** * Configuration for underlying parser to follow, if specified; * left as {@code null} for backwards compatibility (which means * whatever default settings {@code snakeyaml-engine} deems best). */ protected final LoadSettings _loadSettings; /** * Configuration for underlying generator to follow, if specified; * left as {@code null} for backwards compatibility (which means * the dumper options are derived based on {@link YAMLWriteFeature}s). *

    * These {@link YAMLWriteFeature}s are ignored if you provide your own DumperOptions: *

      *
    • {@code YAMLGenerator.Feature.ALLOW_LONG_KEYS}
    • *
    • {@code YAMLGenerator.Feature.CANONICAL_OUTPUT}
    • *
    • {@code YAMLGenerator.Feature.INDENT_ARRAYS}
    • *
    • {@code YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR}
    • *
    • {@code YAMLGenerator.Feature.SPLIT_LINES}
    • *
    • {@code YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS}
    • *
    *

    */ protected final DumpSettings _dumpSettings; /* /********************************************************************** /* Factory construction, configuration /********************************************************************** */ /** * Default constructor used to create factory instances that may be * used to construct an instance with default settings, instead of * using {@link YAMLFactoryBuilder}. */ public YAMLFactory() { super(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), DEFAULT_YAML_PARSER_FEATURE_FLAGS, DEFAULT_YAML_GENERATOR_FEATURE_FLAGS); // 26-Jul-2013, tatu: Seems like we should force output as 1.1 but // that adds version declaration which looks ugly... _version = null; _schema = null; _quotingChecker = StringQuotingChecker.Default.instance(); _loadSettings = null; _dumpSettings = null; } public YAMLFactory(YAMLFactory src) { super(src); _version = src._version; _schema = src._schema; _quotingChecker = src._quotingChecker; _loadSettings = src._loadSettings; _dumpSettings = src._dumpSettings; } /** * Constructors used by {@link YAMLFactoryBuilder} for instantiation. * * @since 3.0 */ protected YAMLFactory(YAMLFactoryBuilder b) { super(b); _version = b.yamlVersionToWrite(); _schema = b.yamlSchema(); _quotingChecker = b.stringQuotingChecker(); if (b.loadSettings() == null) { LoadSettingsBuilder builder = LoadSettings.builder(); if (_schema != null) { switch (_schema) { case FAILSAFE: builder.setSchema(new FailsafeSchema()); break; case JSON: builder.setSchema(new JsonSchema()); break; case CORE: builder.setSchema(new CoreSchema()); break; default: break; } } _loadSettings = builder.build(); } else { _loadSettings = b.loadSettings(); } _dumpSettings = b.dumpSettings(); } @Override public YAMLFactoryBuilder rebuild() { return new YAMLFactoryBuilder(this); } /** * Main factory method to use for constructing {@link YAMLFactory} instances with * different configuration. */ public static YAMLFactoryBuilder builder() { return new YAMLFactoryBuilder(); } @Override public YAMLFactory copy() { return new YAMLFactory(this); } /** * Instances are immutable so just return `this` */ @Override public TokenStreamFactory snapshot() { return this; } /* /********************************************************************** /* Serializable overrides /********************************************************************** */ /** * Method that we need to override to actually make restoration go * through constructors etc. */ protected Object readResolve() { return new YAMLFactory(this); } /* /********************************************************************** /* Capability introspection /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } // No, we can't make use of char[] optimizations @Override public boolean canUseCharArrays() { return false; } @Override public boolean canParseAsync() { // 31-May-2017, tatu: No async parsing yet return false; } /* /********************************************************************** /* Format support /********************************************************************** */ @Override public String getFormatName() { return FORMAT_NAME_YAML; } @Override public boolean canUseSchema(FormatSchema schema) { return false; } @Override public Class getFormatReadFeatureType() { return YAMLReadFeature.class; } @Override public Class getFormatWriteFeatureType() { return YAMLWriteFeature.class; } @Override public int getFormatReadFeatures() { return _formatReadFeatures; } @Override public int getFormatWriteFeatures() { return _formatWriteFeatures; } public boolean isEnabled(YAMLReadFeature f) { return (_formatReadFeatures & f.getMask()) != 0; } public boolean isEnabled(YAMLWriteFeature f) { return (_formatWriteFeatures & f.getMask()) != 0; } /* /********************************************************************** /* Factory methods: parsers /********************************************************************** */ @Override protected YAMLParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, InputStream in) { return new YAMLParser(readCtxt, ioCtxt, _getBufferRecycler(), readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _loadSettings, _createReader(in, null, ioCtxt)); } @Override protected YAMLParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, Reader r) { return new YAMLParser(readCtxt, ioCtxt, _getBufferRecycler(), readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _loadSettings, r); } @Override protected YAMLParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, char[] data, int offset, int len, boolean recyclable) { return new YAMLParser(readCtxt, ioCtxt, _getBufferRecycler(), readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _loadSettings, new CharArrayReader(data, offset, len)); } @Override protected YAMLParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, byte[] data, int offset, int len) { return new YAMLParser(readCtxt, ioCtxt, _getBufferRecycler(), readCtxt.getStreamReadFeatures(_streamReadFeatures), readCtxt.getFormatReadFeatures(_formatReadFeatures), _loadSettings, _createReader(data, offset, len, null, ioCtxt)); } @Override protected JsonParser _createParser(ObjectReadContext readCtxt, IOContext ioCtxt, DataInput input) { return _unsupported(); } /* /********************************************************************** /* Factory methods: generators /********************************************************************** */ @Override protected YAMLGenerator _createGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt, Writer out) { return new YAMLGenerator(writeCtxt, ioCtxt, writeCtxt.getStreamWriteFeatures(_streamWriteFeatures), writeCtxt.getFormatWriteFeatures(_formatWriteFeatures), _quotingChecker, out, _version, _dumpSettings); } @Override protected YAMLGenerator _createUTF8Generator(ObjectWriteContext writeCtxt, IOContext ioCtxt, OutputStream out) { return _createGenerator(writeCtxt, ioCtxt, _createWriter(ioCtxt, out, JsonEncoding.UTF8)); } @Override protected Writer _createWriter(IOContext ioCtxt, OutputStream out, JsonEncoding enc) { if (enc == JsonEncoding.UTF8) { return new UTF8Writer(out); } try { return new OutputStreamWriter(out, enc.getJavaName()); } catch (IOException e) { throw _wrapIOFailure(e); } } /* /********************************************************************** /* Internal methods /********************************************************************** */ protected Reader _createReader(InputStream in, JsonEncoding enc, IOContext ctxt) { if (enc == null) { enc = JsonEncoding.UTF8; } // default to UTF-8 if encoding missing if (enc == JsonEncoding.UTF8) { boolean autoClose = ctxt.isResourceManaged() || isEnabled(StreamReadFeature.AUTO_CLOSE_SOURCE); return new UTF8Reader(in, autoClose); // return new InputStreamReader(in, UTF8); } try { return new InputStreamReader(in, enc.getJavaName()); } catch (IOException e) { throw _wrapIOFailure(e); } } protected Reader _createReader(byte[] data, int offset, int len, JsonEncoding enc, IOContext ctxt) { if (enc == null) { enc = JsonEncoding.UTF8; } // default to UTF-8 if encoding missing if (enc == null || enc == JsonEncoding.UTF8) { return new UTF8Reader(data, offset, len, true); } ByteArrayInputStream in = new ByteArrayInputStream(data, offset, len); try { return new InputStreamReader(in, enc.getJavaName()); } catch (IOException e) { throw _wrapIOFailure(e); } } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLFactoryBuilder.java ================================================ package tools.jackson.dataformat.yaml; import tools.jackson.core.ErrorReportConfiguration; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.StreamReadFeature; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.base.DecorableTSFactory.DecorableTSFBuilder; import tools.jackson.dataformat.yaml.util.StringQuotingChecker; import org.snakeyaml.engine.v2.api.DumpSettings; import org.snakeyaml.engine.v2.api.LoadSettings; import org.snakeyaml.engine.v2.common.SpecVersion; /** * {@link tools.jackson.core.TSFBuilder} * implementation for constructing {@link YAMLFactory} * instances. */ public class YAMLFactoryBuilder extends DecorableTSFBuilder { /* /********************************************************************** /* Configuration /********************************************************************** */ /** * Helper object used to determine whether property names, String values * must be quoted or not. */ protected StringQuotingChecker _quotingChecker; /** * YAML version for underlying generator to follow, if specified; * left as {@code null} for backwards compatibility (which means * whatever default settings {@code SnakeYAML} deems best). *

    * Ignored if you provide your own {@code DumperOptions}. *

    */ protected SpecVersion _version; /** * YAML schema for underlying parser to follow, if specified; * left as {@code null} for backwards compatibility (which means * whatever default settings {@code SnakeYAML} deems best). *

    * Ignored if you provide your own {@code LoadSettings}. *

    * * @since 3.2 */ protected YAMLSchema _schema; /** * Configuration for underlying parser to follow, if specified; * left as {@code null} for backwards compatibility (which means * whatever default settings {@code SnakeYAML} deems best). *

    * If you need to support parsing YAML files that are larger than 3Mb, * it is recommended that you provide a LoaderOptions instance where * you set the Codepoint Limit to a larger value than its 3Mb default. *

    */ protected LoadSettings _loadSettings; /** * Configuration for underlying generator to follow, if specified; * left as {@code null} for backwards compatibility (which means * the dumper options are derived based on {@link YAMLWriteFeature}s). *

    * These {@link YAMLWriteFeature}s are ignored if you provide your own DumperOptions: *

      *
    • {@code YAMLGenerator.Feature.ALLOW_LONG_KEYS}
    • *
    • {@code YAMLGenerator.Feature.CANONICAL_OUTPUT}
    • *
    • {@code YAMLGenerator.Feature.INDENT_ARRAYS}
    • *
    • {@code YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR}
    • *
    • {@code YAMLGenerator.Feature.SPLIT_LINES}
    • *
    • {@code YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS}
    • *
    *

    */ protected DumpSettings _dumpSettings; /* /********************************************************************** /* Life cycle /********************************************************************** */ protected YAMLFactoryBuilder() { super(StreamReadConstraints.defaults(), StreamWriteConstraints.defaults(), ErrorReportConfiguration.defaults(), YAMLFactory.DEFAULT_YAML_PARSER_FEATURE_FLAGS, YAMLFactory.DEFAULT_YAML_GENERATOR_FEATURE_FLAGS); } public YAMLFactoryBuilder(YAMLFactory base) { super(base); _version = base._version; _schema = base._schema; _quotingChecker = base._quotingChecker; _loadSettings = base._loadSettings; _dumpSettings = base._dumpSettings; } /* /********************************************************** /* Generator feature setting /********************************************************** */ public YAMLFactoryBuilder enable(YAMLWriteFeature f) { _formatWriteFeatures |= f.getMask(); return this; } public YAMLFactoryBuilder enable(YAMLWriteFeature first, YAMLWriteFeature... other) { _formatWriteFeatures |= first.getMask(); for (YAMLWriteFeature f : other) { _formatWriteFeatures |= f.getMask(); } return this; } public YAMLFactoryBuilder disable(YAMLWriteFeature f) { _formatWriteFeatures &= ~f.getMask(); return this; } public YAMLFactoryBuilder disable(YAMLWriteFeature first, YAMLWriteFeature... other) { _formatWriteFeatures &= ~first.getMask(); for (YAMLWriteFeature f : other) { _formatWriteFeatures &= ~f.getMask(); } return this; } public YAMLFactoryBuilder configure(YAMLWriteFeature f, boolean state) { return state ? enable(f) : disable(f); } /* /********************************************************** /* Generator feature setting /********************************************************** */ public YAMLFactoryBuilder enable(YAMLReadFeature f) { _formatReadFeatures |= f.getMask(); return this; } public YAMLFactoryBuilder enable(YAMLReadFeature first, YAMLReadFeature... other) { _formatReadFeatures |= first.getMask(); for (YAMLReadFeature f : other) { _formatReadFeatures |= f.getMask(); } return this; } public YAMLFactoryBuilder disable(YAMLReadFeature f) { _formatReadFeatures &= ~f.getMask(); return this; } public YAMLFactoryBuilder disable(YAMLReadFeature first, YAMLReadFeature... other) { _formatReadFeatures &= ~first.getMask(); for (YAMLReadFeature f : other) { _formatReadFeatures &= ~f.getMask(); } return this; } public YAMLFactoryBuilder configure(YAMLReadFeature f, boolean state) { return state ? enable(f) : disable(f); } /* /********************************************************************** /* Other YAML-specific settings /********************************************************************** */ /** * Method for specifying either custom {@link StringQuotingChecker} * to use instead of default one, or, that default one (see * {@code StringQuotingChecker.Default.instance()}) is to be used * (when passing {@code null} * * @param sqc Checker to use (if non-null), or {@code null} to use the * default one (see {@code StringQuotingChecker.Default.instance()}) * * @return This builder instance, to allow chaining */ public YAMLFactoryBuilder stringQuotingChecker(StringQuotingChecker sqc) { _quotingChecker = sqc; return this; } /** * Method for specifying YAML version for generator to use (to produce * compliant output); if {@code null} passed, will let {@code SnakeYAML} * use its default settings. * * @param v YAML specification version to use for output, if not-null; * {@code null} for default handling * * @return This builder instance, to allow chaining */ public YAMLFactoryBuilder yamlVersionToWrite(SpecVersion v) { _version = v; return this; } /** * Method for specifying the YAML schema to use during parsing; if * {@code null} passed, will let {@code SnakeYAML} use its default settings. * * @param schema YAML schema to use for parsing, if not-null; * {@code null} for default handling * * @return This builder instance, to allow chaining * * @since 3.2 */ public YAMLFactoryBuilder yamlSchema(YAMLSchema schema) { _schema = schema; return this; } /** * Configuration for underlying parser to follow, if specified; * left as {@code null} for backwards compatibility (which means * whatever default settings {@code SnakeYAML} deems best). *

    * If you need to support parsing YAML files that are larger than 3Mb, * it is recommended that you provide a LoaderOptions instance where * you set the Codepoint Limit to a larger value than its 3Mb default. *

    * * @param settings the {@code SnakeYAML} configuration to use when parsing YAML * @return This builder instance, to allow chaining */ public YAMLFactoryBuilder loadSettings(LoadSettings settings) { _loadSettings = settings; // If the user wants to block duplicate keys this needs to be set in a different way to work if (!_loadSettings.getAllowDuplicateKeys()) { enable(StreamReadFeature.STRICT_DUPLICATE_DETECTION); } return this; } /** * Configuration for underlying generator to follow, if specified; * left as {@code null} for backwards compatibility (which means * the dumper options are derived based on {@link YAMLWriteFeature}s). *

    * These {@link YAMLWriteFeature}s are ignored if you provide your own DumperOptions: *

      *
    • {@code YAMLGenerator.Feature.ALLOW_LONG_KEYS}
    • *
    • {@code YAMLGenerator.Feature.CANONICAL_OUTPUT}
    • *
    • {@code YAMLGenerator.Feature.INDENT_ARRAYS}
    • *
    • {@code YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR}
    • *
    • {@code YAMLGenerator.Feature.SPLIT_LINES}
    • *
    • {@code YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS}
    • *
    *

    * * @param dumperOptions the {@code SnakeYAML} configuration to use when generating YAML * @return This builder instance, to allow chaining */ public YAMLFactoryBuilder dumperOptions(DumpSettings dumperOptions) { _dumpSettings = dumperOptions; return this; } /* /********************************************************************** /* Accessors /********************************************************************** */ public SpecVersion yamlVersionToWrite() { return _version; } public YAMLSchema yamlSchema() { return _schema; } public StringQuotingChecker stringQuotingChecker() { if (_quotingChecker != null) { return _quotingChecker; } return StringQuotingChecker.Default.instance(); } /** * Configuration for underlying parser to follow, if specified; * left as {@code null} for backwards compatibility (which means * whatever default settings {@code SnakeYAML} deems best). *

    * If you need to support parsing YAML files that are larger than 3Mb, * it is recommended that you provide a LoaderOptions instance where * you set the Codepoint Limit to a larger value than its 3Mb default. *

    * * @return the {@code SnakeYAML} configuration to use when parsing YAML */ public LoadSettings loadSettings() { return _loadSettings; } /** * Configuration for underlying generator to follow, if specified; * left as {@code null} for backwards compatibility (which means * the dumper options are derived based on {@link YAMLWriteFeature}s). *

    * These {@link YAMLWriteFeature}s are ignored if you provide your own DumperOptions: *

      *
    • {@code YAMLGenerator.Feature.ALLOW_LONG_KEYS}
    • *
    • {@code YAMLGenerator.Feature.CANONICAL_OUTPUT}
    • *
    • {@code YAMLGenerator.Feature.INDENT_ARRAYS}
    • *
    • {@code YAMLGenerator.Feature.INDENT_ARRAYS_WITH_INDICATOR}
    • *
    • {@code YAMLGenerator.Feature.SPLIT_LINES}
    • *
    • {@code YAMLGenerator.Feature.USE_PLATFORM_LINE_BREAKS}
    • *
    *

    * * @return the {@code SnakeYAML} configuration to use when generating YAML */ public DumpSettings dumpSettings() { return _dumpSettings; } @Override public YAMLFactory build() { return new YAMLFactory(this); } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLGenerator.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.charset.StandardCharsets; import java.util.*; import java.util.regex.Pattern; import tools.jackson.core.*; import tools.jackson.core.base.GeneratorBase; import tools.jackson.core.io.IOContext; import tools.jackson.core.json.DupDetector; import tools.jackson.core.util.JacksonFeatureSet; import tools.jackson.core.util.SimpleStreamWriteContext; import tools.jackson.dataformat.yaml.util.StringQuotingChecker; import org.snakeyaml.engine.v2.api.DumpSettings; import org.snakeyaml.engine.v2.api.DumpSettingsBuilder; import org.snakeyaml.engine.v2.comments.CommentType; import org.snakeyaml.engine.v2.common.Anchor; import org.snakeyaml.engine.v2.common.FlowStyle; import org.snakeyaml.engine.v2.common.ScalarStyle; import org.snakeyaml.engine.v2.common.SpecVersion; import org.snakeyaml.engine.v2.emitter.Emitter; import org.snakeyaml.engine.v2.events.*; import org.snakeyaml.engine.v2.exceptions.YamlEngineException; import org.snakeyaml.engine.v2.nodes.Tag; public class YAMLGenerator extends GeneratorBase { /* /********************************************************************** /* Internal constants /********************************************************************** */ protected final static long MIN_INT_AS_LONG = (long) Integer.MIN_VALUE; protected final static long MAX_INT_AS_LONG = (long) Integer.MAX_VALUE; protected final static Pattern PLAIN_NUMBER_P = Pattern.compile("[+-]?[0-9]*(\\.[0-9]*)?"); // @since 3.2 protected final static Pattern NEWLINE_SPLITTER_P = Pattern.compile("\r\n|\r|\n"); protected final static String TAG_BINARY = Tag.BINARY.toString(); // for property names, leave out quotes private final static ScalarStyle STYLE_UNQUOTED_NAME = ScalarStyle.PLAIN; // numbers, booleans, should use implicit private final static ScalarStyle STYLE_SCALAR = ScalarStyle.PLAIN; // Strings quoted for fun private final static ScalarStyle STYLE_QUOTED = ScalarStyle.DOUBLE_QUOTED; // Strings in literal (block) style private final static ScalarStyle STYLE_LITERAL = ScalarStyle.LITERAL; // Which flow style to use for Base64? Maybe basic quoted? // 29-Nov-2017, tatu: Actually SnakeYAML uses block style so: private final static ScalarStyle STYLE_BASE64 = STYLE_LITERAL; private final static ScalarStyle STYLE_PLAIN = ScalarStyle.PLAIN; /* /********************************************************************** /* Configuration /********************************************************************** */ /** * Bit flag composed of bits that indicate which {@link YAMLWriteFeature}s * are enabled. */ protected int _formatWriteFeatures; protected Writer _writer; protected DumpSettings _outputOptions; protected final boolean _cfgMinimizeQuotes; protected final SpecVersion _docVersion; /* /********************************************************************** /* Output state /********************************************************************** */ protected SimpleStreamWriteContext _streamWriteContext; protected Emitter _emitter; /** * YAML supports native Object identifiers, so databinder may indicate * need to output one. */ protected String _objectId; /** * YAML supports native Type identifiers, so databinder may indicate * need to output one. */ protected String _typeId; protected int _rootValueCount; protected final StringQuotingChecker _quotingChecker; /* /********************************************************************** /* Life-cycle /********************************************************************** */ public YAMLGenerator(ObjectWriteContext writeContext, IOContext ioCtxt, int streamWriteFeatures, int yamlFeatures, StringQuotingChecker quotingChecker, Writer out, SpecVersion version, DumpSettings dumpOptions) { super(writeContext, ioCtxt, streamWriteFeatures); final DupDetector dups = StreamWriteFeature.STRICT_DUPLICATE_DETECTION.enabledIn(streamWriteFeatures) ? DupDetector.rootDetector(this) : null; _streamWriteContext = SimpleStreamWriteContext.createRootContext(dups); _formatWriteFeatures = yamlFeatures; _cfgMinimizeQuotes = YAMLWriteFeature.MINIMIZE_QUOTES.enabledIn(_formatWriteFeatures); _quotingChecker = quotingChecker; _writer = out; _docVersion = version; if (dumpOptions == null) { dumpOptions = buildDumperOptions(streamWriteFeatures, yamlFeatures, version); } _outputOptions = dumpOptions; _emitter = new Emitter(_outputOptions, new WriterWrapper(_writer)); // should we start output now, or try to defer? _emit(new StreamStartEvent()); _emitStartDocument(); } protected DumpSettings buildDumperOptions(int streamWriteFeatures, int yamlFeatures, SpecVersion version) { DumpSettingsBuilder opt = DumpSettings.builder(); // would we want canonical? if (YAMLWriteFeature.CANONICAL_OUTPUT.enabledIn(_formatWriteFeatures)) { opt.setCanonical(true); } else { opt.setCanonical(false); // if not, MUST specify flow styles opt.setDefaultFlowStyle(FlowStyle.BLOCK); } // split-lines for text blocks? opt.setSplitLines(YAMLWriteFeature.SPLIT_LINES.enabledIn(_formatWriteFeatures)); // array indentation? if (YAMLWriteFeature.INDENT_ARRAYS.enabledIn(_formatWriteFeatures)) { // But, wrt [dataformats-text#34]: need to set both to diff values to work around bug // (otherwise indentation level is "invisible". Note that this should NOT be necessary // but is needed up to at least SnakeYAML 1.18. // Also looks like all kinds of values do work, except for both being 2... weird. opt.setIndicatorIndent(1); opt.setIndent(2); } // [dataformats-text#175]: further configurability that overrides prev setting if (YAMLWriteFeature.INDENT_ARRAYS_WITH_INDICATOR.enabledIn(_formatWriteFeatures)) { opt.setIndicatorIndent(2); opt.setIndentWithIndicator(true); } if (YAMLWriteFeature.ALLOW_LONG_KEYS.enabledIn(_formatWriteFeatures)) { opt.setMaxSimpleKeyLength(1024); } // 03-Oct-2020, tatu: Specify spec version; however, does not seem to make // any difference? opt.setYamlDirective(Optional.ofNullable(version)); // Enable comment output support (needed for writeComment()) opt.setDumpComments(true); return opt.build(); } /* /********************************************************************** /* Versioned /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } /* /********************************************************************** /* Overrides: capability introspection /********************************************************************** */ @Override // @since 3.2 public boolean canWriteComments() { // 06-Apr-2026, tatu: as per [dataformats-text#36]: return true; } @Override public boolean canWriteObjectId() { // yes, YAML does support Native Type Ids! // 10-Sep-2014, tatu: Except as per [#23] might not want to... return YAMLWriteFeature.USE_NATIVE_OBJECT_ID.enabledIn(_formatWriteFeatures); } @Override public boolean canWriteTypeId() { // yes, YAML does support Native Type Ids! // 10-Sep-2014, tatu: Except as per [#22] might not want to... return YAMLWriteFeature.USE_NATIVE_TYPE_ID.enabledIn(_formatWriteFeatures); } @Override public boolean has(StreamWriteCapability capability) { return DEFAULT_TEXTUAL_WRITE_CAPABILITIES.isEnabled(capability); } @Override public JacksonFeatureSet streamWriteCapabilities() { return DEFAULT_TEXTUAL_WRITE_CAPABILITIES; } /* /********************************************************************** /* Overridden output state handling methods /********************************************************************** */ @Override public final TokenStreamContext streamWriteContext() { return _streamWriteContext; } @Override public final Object currentValue() { return _streamWriteContext.currentValue(); } @Override public final void assignCurrentValue(Object v) { _streamWriteContext.assignCurrentValue(v); } /* /********************************************************************** /* Overridden methods, configuration /********************************************************************** */ @Override public Object streamWriteOutputTarget() { return _writer; } /** * SnakeYAML does not expose buffered content amount, so we can only return * -1 from here */ @Override public int streamWriteOutputBuffered() { return -1; } /* /********************************************************************** /* Overrides: config access /********************************************************************** */ @Override public PrettyPrinter getPrettyPrinter() { return null; } /* /********************************************************************** /* Extended API, configuration /********************************************************************** */ public final boolean isEnabled(YAMLWriteFeature f) { return (_formatWriteFeatures & f.getMask()) != 0; } /* /********************************************************************** /* Overridden methods; writing property names /********************************************************************** */ // And then methods overridden to make final, streamline some aspects... @Override public JsonGenerator writeName(String name) throws JacksonException { if (!_streamWriteContext.writeName(name)) { _reportError("Cannot write a property name, expecting a value"); } _writeFieldName(name); return this; } @Override public JsonGenerator writeName(SerializableString name) throws JacksonException { // Object is a value, need to verify it's allowed if (!_streamWriteContext.writeName(name.getValue())) { _reportError("Cannotwrite a property name, expecting a value"); } _writeFieldName(name.getValue()); return this; } @Override public JsonGenerator writePropertyId(long id) throws JacksonException { // 24-Jul-2019, tatu: Should not force construction of a String here... String idStr = Long.valueOf(id).toString(); // since instances for small values cached if (!_streamWriteContext.writeName(idStr)) { _reportError("Cannot write a property id, expecting a value"); } // to avoid quoting // _writeFieldName(idStr); _writeScalar(idStr, "int", STYLE_SCALAR); return this; } private final void _writeFieldName(String name) throws JacksonException { _writeScalar(name, "string", _quotingChecker.needToQuoteName(name) ? STYLE_QUOTED : STYLE_UNQUOTED_NAME); } /* /********************************************************************** /* Public API: low-level I/O /********************************************************************** */ @Override public final void flush() { if (isEnabled(StreamWriteFeature.FLUSH_PASSED_TO_STREAM)) { try { _writer.flush(); } catch (IOException e) { throw _wrapIOFailure(e); } } } @Override public void close() { if (!isClosed()) { // 11-Dec-2019, tatu: Should perhaps check if content is to be auto-closed... // but need END_DOCUMENT regardless try { _emitEndDocument(); _emit(new StreamEndEvent()); } finally { super.close(); } } } @Override protected void _closeInput() throws IOException { /* 25-Nov-2008, tatus: As per [JACKSON-16] we are not to call close() * on the underlying Reader, unless we "own" it, or auto-closing * feature is enabled. * One downside: when using UTF8Writer, underlying buffer(s) * may not be properly recycled if we don't close the writer. */ if (_writer != null) { if (_ioContext.isResourceManaged() || isEnabled(StreamWriteFeature.AUTO_CLOSE_TARGET)) { _writer.close(); } else if (isEnabled(StreamWriteFeature.FLUSH_PASSED_TO_STREAM)) { // If we can't close it, we should at least flush _writer.flush(); } } } /* /********************************************************************** /* Public API: structural output /********************************************************************** */ @Override public JsonGenerator writeStartArray() throws JacksonException { _verifyValueWrite("start an array"); _streamWriteContext = _streamWriteContext.createChildArrayContext(null); _streamWriteConstraints.validateNestingDepth(_streamWriteContext.getNestingDepth()); FlowStyle style = _outputOptions.getDefaultFlowStyle(); String yamlTag = _typeId; boolean implicit = (yamlTag == null); Optional anchor = Optional.ofNullable(_objectId).map(s -> new Anchor(s)); if (anchor.isPresent()) { _objectId = null; } _emit(new SequenceStartEvent(anchor, Optional.ofNullable(yamlTag), implicit, style)); return this; } @Override public JsonGenerator writeStartArray(Object currValue) throws JacksonException { writeStartArray(); assignCurrentValue(currValue); return this; } @Override public JsonGenerator writeEndArray() throws JacksonException { if (!_streamWriteContext.inArray()) { _reportError("Current context not Array but "+_streamWriteContext.typeDesc()); } // just to make sure we don't "leak" type ids _typeId = null; _streamWriteContext = _streamWriteContext.getParent(); _emit(new SequenceEndEvent()); return this; } @Override public JsonGenerator writeStartObject() throws JacksonException { _verifyValueWrite("start an object"); _streamWriteContext = _streamWriteContext.createChildObjectContext(null); _streamWriteConstraints.validateNestingDepth(_streamWriteContext.getNestingDepth()); FlowStyle style = _outputOptions.getDefaultFlowStyle(); String yamlTag = _typeId; boolean implicit = (yamlTag == null); Optional anchor = Optional.ofNullable(_objectId).map(s -> new Anchor(s)); if (anchor.isPresent()) { _objectId = null; } _emit(new MappingStartEvent(anchor, Optional.ofNullable(yamlTag), implicit, style)); return this; } @Override public JsonGenerator writeStartObject(Object currValue) throws JacksonException { writeStartObject(); assignCurrentValue(currValue); return this; } @Override public JsonGenerator writeEndObject() throws JacksonException { if (!_streamWriteContext.inObject()) { _reportError("Current context not Object but "+_streamWriteContext.typeDesc()); } // just to make sure we don't "leak" type ids _typeId = null; _streamWriteContext = _streamWriteContext.getParent(); _emit(new MappingEndEvent()); return this; } /* /********************************************************************** /* Output method implementations, textual /********************************************************************** */ @Override public JsonGenerator writeString(String text) throws JacksonException { if (text == null) { return writeNull(); } _verifyValueWrite("write String value"); // [dataformats-text#50]: Empty String always quoted if (text.isEmpty()) { _writeScalar(text, "string", STYLE_QUOTED); return this; } ScalarStyle style; if (_cfgMinimizeQuotes) { if (text.indexOf('\n') >= 0) { style = STYLE_LITERAL; // If one of reserved values ("true", "null"), or, number, preserve quoting: } else if (_quotingChecker.needToQuoteValue(text) || (YAMLWriteFeature.ALWAYS_QUOTE_NUMBERS_AS_STRINGS.enabledIn(_formatWriteFeatures) && PLAIN_NUMBER_P.matcher(text).matches()) ) { style = STYLE_QUOTED; } else { style = STYLE_PLAIN; } } else { if (YAMLWriteFeature.LITERAL_BLOCK_STYLE.enabledIn(_formatWriteFeatures) && text.indexOf('\n') >= 0) { style = STYLE_LITERAL; } else { style = STYLE_QUOTED; } } _writeScalar(text, "string", style); return this; } @Override public JsonGenerator writeString(char[] text, int offset, int len) throws JacksonException { return writeString(new String(text, offset, len)); } @Override public JsonGenerator writeString(SerializableString sstr) throws JacksonException { return writeString(sstr.toString()); } @Override public JsonGenerator writeRawUTF8String(byte[] text, int offset, int len) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeUTF8String(byte[] text, int offset, int len) throws JacksonException { return writeString(new String(text, offset, len, StandardCharsets.UTF_8)); } /* /********************************************************************** /* Output method implementations, unprocessed ("raw") /********************************************************************** */ @Override public JsonGenerator writeRaw(String text) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeRaw(String text, int offset, int len) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeRaw(char[] text, int offset, int len) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeRaw(char c) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeRawValue(String text) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeRawValue(String text, int offset, int len) throws JacksonException { return _reportUnsupportedOperation(); } @Override public JsonGenerator writeRawValue(char[] text, int offset, int len) throws JacksonException { return _reportUnsupportedOperation(); } /* /********************************************************************** /* Output method implementations, base64-encoded binary /********************************************************************** */ @Override public JsonGenerator writeBinary(Base64Variant b64variant, byte[] data, int offset, int len) throws JacksonException { if (data == null) { return writeNull(); } _verifyValueWrite("write Binary value"); if (offset > 0 || (offset+len) != data.length) { data = Arrays.copyOfRange(data, offset, offset+len); } _writeScalarBinary(b64variant, data); return this; } /* /********************************************************************** /* Output method implementations, scalars /********************************************************************** */ @Override public JsonGenerator writeBoolean(boolean state) throws JacksonException { _verifyValueWrite("write boolean value"); _writeScalar(state ? "true" : "false", "bool", STYLE_SCALAR); return this; } @Override public JsonGenerator writeNumber(short v) throws JacksonException { return writeNumber((int) v); } @Override public JsonGenerator writeNumber(int v) throws JacksonException { _verifyValueWrite("write number"); _writeScalar(String.valueOf(v), "int", STYLE_SCALAR); return this; } @Override public JsonGenerator writeNumber(long l) throws JacksonException { // First: maybe 32 bits is enough? if (l <= MAX_INT_AS_LONG && l >= MIN_INT_AS_LONG) { return writeNumber((int) l); } _verifyValueWrite("write number"); _writeScalar(String.valueOf(l), "long", STYLE_SCALAR); return this; } @Override public JsonGenerator writeNumber(BigInteger v) throws JacksonException { if (v == null) { return writeNull(); } _verifyValueWrite("write number"); _writeScalar(String.valueOf(v.toString()), "java.math.BigInteger", STYLE_SCALAR); return this; } @Override public JsonGenerator writeNumber(double d) throws JacksonException { _verifyValueWrite("write number"); if (isEnabled(YAMLWriteFeature.USE_YAML_NONFINITE_NOTATION)) { if (Double.isNaN(d)) { _writeScalar(".nan", "double", STYLE_PLAIN); } else if (Double.isInfinite(d)) { if (d > 0.0) { _writeScalar(".inf", "double", STYLE_PLAIN); } else { _writeScalar("-.inf", "double", STYLE_PLAIN); } } else { _writeScalar(String.valueOf(d), "double", STYLE_SCALAR); } } else { _writeScalar(String.valueOf(d), "double", STYLE_SCALAR); } return this; } @Override public JsonGenerator writeNumber(float f) throws JacksonException { _verifyValueWrite("write number"); if (isEnabled(YAMLWriteFeature.USE_YAML_NONFINITE_NOTATION)) { if (Float.isNaN(f)) { _writeScalar(".nan", "float", STYLE_PLAIN); } else if (Float.isInfinite(f)) { if (f > 0.0f) { _writeScalar(".inf", "float", STYLE_PLAIN); } else { _writeScalar("-.inf", "float", STYLE_PLAIN); } } else { _writeScalar(String.valueOf(f), "float", STYLE_SCALAR); } } else { _writeScalar(String.valueOf(f), "float", STYLE_SCALAR); } return this; } @Override public JsonGenerator writeNumber(BigDecimal dec) throws JacksonException { if (dec == null) { return writeNull(); } _verifyValueWrite("write number"); String str = isEnabled(StreamWriteFeature.WRITE_BIGDECIMAL_AS_PLAIN) ? dec.toPlainString() : dec.toString(); _writeScalar(str, "java.math.BigDecimal", STYLE_SCALAR); return this; } @Override public JsonGenerator writeNumber(String encodedValue) throws JacksonException { if (encodedValue == null) { return writeNull(); } _verifyValueWrite("write number"); _writeScalar(encodedValue, "number", STYLE_SCALAR); return this; } @Override public JsonGenerator writeNull() throws JacksonException { _verifyValueWrite("write null value"); // no real type for this, is there? _writeScalar("null", "object", STYLE_SCALAR); return this; } /* /********************************************************************** /* Public API, write methods, Native Ids /********************************************************************** */ @Override public JsonGenerator writeTypeId(Object id) throws JacksonException { // should we verify there's no preceding type id? _typeId = String.valueOf(id); return this; } @Override public JsonGenerator writeObjectRef(Object id) throws JacksonException { _verifyValueWrite("write Object reference"); AliasEvent evt = new AliasEvent(Optional.of(String.valueOf(id)).map(s -> new Anchor(s))); _emit(evt); return this; } @Override public JsonGenerator writeObjectId(Object id) throws JacksonException { // should we verify there's no preceding id? _objectId = (id == null) ? null : String.valueOf(id); return this; } /* /********************************************************************** /* Output method implementations, other /********************************************************************** */ /** * Method for writing a YAML comment. * If called right after {@link #writeName}, the comment is emitted as an * end-of-line (inline) comment on the property name line; otherwise it is * emitted as a block comment (full line starting with {@code #}). *

    * If {@code text} is {@code null}, an empty (blank) line is emitted instead. *

    * Multi-line comments are supported: if the text contains newlines, * each line will be emitted as a separate comment line. *

    * Note: YAML comments are presentation detail and are not part of the * serialization model per the YAML specification. * * @param text Comment text to write (without the leading {@code #}); * if {@code null}, writes an empty line * * @return This generator, to allow call chaining * * @throws JacksonException if there is a problem emitting the comment * * @since 3.2 */ @Override public YAMLGenerator writeComment(String text) throws JacksonException { if (text == null) { _emit(new CommentEvent(CommentType.BLANK_LINE, "", Optional.empty(), Optional.empty())); return this; } // If we just wrote a property name (expecting value next), // emit as an inline (end-of-line) comment; otherwise as a block comment final CommentType type = (_streamWriteContext.inObject() && _streamWriteContext.hasCurrentName()) ? CommentType.IN_LINE : CommentType.BLOCK; // Split multi-line comments into separate CommentEvents; // handle all standard linefeeds: "\r\n", "\r", "\n" String[] lines = NEWLINE_SPLITTER_P.split(text, -1); for (String line : lines) { _emit(new CommentEvent(type, line, Optional.empty(), Optional.empty())); } return this; } /* /********************************************************************** /* Implementations for methods from base class /********************************************************************** */ @Override protected final void _verifyValueWrite(String typeMsg) throws JacksonException { if (!_streamWriteContext.writeValue()) { _reportError("Cannot "+typeMsg+", expecting a property name"); } if (_streamWriteContext.inRoot()) { // Start-doc emitted when creating generator, but otherwise need it; similarly, // need matching end-document to close earlier open one if (_streamWriteContext.getCurrentIndex() > 0) { _emitEndDocument(); _emitStartDocument(); } } } @Override protected void _releaseBuffers() { // nothing special to do... } /* /********************************************************************** /* Internal methods /********************************************************************** */ // Implicit means that (type) tags won't be shown, right? private final static ImplicitTuple NO_TAGS = new ImplicitTuple(true, true); // ... and sometimes we specifically DO want explicit tag: private final static ImplicitTuple EXPLICIT_TAGS = new ImplicitTuple(false, false); protected void _writeScalar(String value, String type, ScalarStyle style) throws JacksonException { _emit(_scalarEvent(value, style)); } private void _writeScalarBinary(Base64Variant b64variant, byte[] data) throws JacksonException { // 15-Dec-2017, tatu: as per [dataformats-text#62], can not use SnakeYAML's internal // codec. Also: force use of linefeed variant if using default if (b64variant == Base64Variants.getDefaultVariant()) { b64variant = Base64Variants.MIME; } final String lf = _lf(); String encoded = b64variant.encode(data, false, lf); _emit(new ScalarEvent(Optional.empty(), Optional.ofNullable(TAG_BINARY), EXPLICIT_TAGS, encoded, STYLE_BASE64)); } protected ScalarEvent _scalarEvent(String value, ScalarStyle style) { String yamlTag = _typeId; if (yamlTag != null) { _typeId = null; } Optional anchor = Optional.ofNullable(_objectId).map(s -> new Anchor(s)); if (anchor.isPresent()) { _objectId = null; } // 29-Nov-2017, tatu: Not 100% sure why we don't force explicit tags for // type id, but trying to do so seems to double up tag output... return new ScalarEvent(anchor, Optional.ofNullable(yamlTag), NO_TAGS, value, style); } protected String _lf() { return _outputOptions.getBestLineBreak(); } protected void _emitStartDocument() throws JacksonException { Map noTags = Collections.emptyMap(); boolean startMarker = YAMLWriteFeature.WRITE_DOC_START_MARKER.enabledIn(_formatWriteFeatures); _emit(new DocumentStartEvent(startMarker, _outputOptions.getYamlDirective(), // for 1.10 was: ((version == null) ? null : version.getArray()), noTags)); } protected void _emitEndDocument() throws JacksonException { _emit(new DocumentEndEvent(false)); } protected final void _emit(Event e) throws JacksonException { try { _emitter.emit(e); } catch (UncheckedIOException ex) { // throws `JacksonIOException`: throw _wrapIOFailure(ex.getCause()); } catch (YamlEngineException ex) { // Wrap SnakeYAML exception as Jackson exception throw new JacksonYAMLWriteException(this, ex.getMessage(), ex); } } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLMapper.java ================================================ package tools.jackson.dataformat.yaml; import tools.jackson.core.Version; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.cfg.MapperBuilder; import tools.jackson.databind.cfg.MapperBuilderState; /** * Convenience version of {@link ObjectMapper} which is configured * with {@link tools.jackson.dataformat.yaml.YAMLFactory}. */ public class YAMLMapper extends ObjectMapper { private static final long serialVersionUID = 3L; /** * Base implementation for "Vanilla" {@link ObjectMapper}, used with * YAML backend. * * @since 3.0 */ public static class Builder extends MapperBuilder { public Builder(YAMLFactory f) { super(f); } public Builder(StateImpl state) { super(state); } @Override public YAMLMapper build() { return new YAMLMapper(this); } @Override protected MapperBuilderState _saveState() { // nothing extra, just format features return new StateImpl(this); } /* /****************************************************************** /* Format features /****************************************************************** */ public Builder enable(YAMLReadFeature... features) { for (YAMLReadFeature f : features) { _formatReadFeatures |= f.getMask(); } return this; } public Builder disable(YAMLReadFeature... features) { for (YAMLReadFeature f : features) { _formatReadFeatures &= ~f.getMask(); } return this; } public Builder configure(YAMLReadFeature feature, boolean state) { if (state) { _formatReadFeatures |= feature.getMask(); } else { _formatReadFeatures &= ~feature.getMask(); } return this; } public Builder enable(YAMLWriteFeature... features) { for (YAMLWriteFeature f : features) { _formatWriteFeatures |= f.getMask(); } return this; } public Builder disable(YAMLWriteFeature... features) { for (YAMLWriteFeature f : features) { _formatWriteFeatures &= ~f.getMask(); } return this; } public Builder configure(YAMLWriteFeature feature, boolean state) { if (state) { _formatWriteFeatures |= feature.getMask(); } else { _formatWriteFeatures &= ~feature.getMask(); } return this; } protected static class StateImpl extends MapperBuilderState implements java.io.Serializable // important! { private static final long serialVersionUID = 3L; public StateImpl(Builder src) { super(src); } // We also need actual instance of state as base class can not implement logic // for reinstating mapper (via mapper builder) from state. @Override protected Object readResolve() { return new Builder(this).build(); } } } /* /********************************************************** /* Life-cycle /********************************************************** */ public YAMLMapper() { this(new Builder(new YAMLFactory())); } public YAMLMapper(YAMLFactory f) { this(new Builder(f)); } public YAMLMapper(Builder b) { super(b); } public static Builder builder() { return new Builder(new YAMLFactory()); } public static Builder builder(YAMLFactory streamFactory) { return new Builder(streamFactory); } @SuppressWarnings("unchecked") @Override public Builder rebuild() { return new Builder((Builder.StateImpl) _savedBuilderState); } /* /********************************************************************** /* Life-cycle, shared "vanilla" (default configuration) instance /********************************************************************** */ /** * Accessor method for getting globally shared "default" {@link YAMLMapper} * instance: one that has default configuration, no modules registered, no * config overrides. Usable mostly when dealing "untyped" or Tree-style * content reading and writing. */ public static YAMLMapper shared() { return SharedWrapper.wrapped(); } /* /********************************************************************** /* Life-cycle: JDK serialization support /********************************************************************** */ // 27-Feb-2018, tatu: Not sure why but it seems base class definitions // are not sufficient alone; sub-classes must re-define. @Override protected Object writeReplace() { return _savedBuilderState; } @Override protected Object readResolve() { throw new IllegalStateException("Should never deserialize `"+getClass().getName()+"` directly"); } /* /********************************************************** /* Basic accessor overrides /********************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } /** * Overridden with more specific type, since factory we have * is always of type {@link YAMLFactory} */ @Override public final YAMLFactory tokenStreamFactory() { return (YAMLFactory) _streamFactory; } /* /********************************************************************** /* Format-specific /********************************************************************** */ public boolean isEnabled(YAMLReadFeature f) { return _deserializationConfig.hasFormatFeature(f); } public boolean isEnabled(YAMLWriteFeature f) { return _serializationConfig.hasFormatFeature(f); } /* /********************************************************** /* Helper class(es) /********************************************************** */ /** * Helper class to contain dynamically constructed "shared" instance of * mapper, should one be needed via {@link #shared}. */ private final static class SharedWrapper { private final static YAMLMapper MAPPER = YAMLMapper.builder().build(); public static YAMLMapper wrapped() { return MAPPER; } } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLParser.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import java.math.BigInteger; import java.util.Optional; import java.util.regex.Pattern; import java.util.regex.Matcher; import tools.jackson.core.*; import tools.jackson.core.base.ParserBase; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.NumberInput; import tools.jackson.core.json.DupDetector; import tools.jackson.core.util.BufferRecycler; import tools.jackson.core.util.JacksonFeatureSet; import tools.jackson.core.util.SimpleStreamReadContext; import org.snakeyaml.engine.v2.api.LoadSettings; import org.snakeyaml.engine.v2.common.Anchor; import org.snakeyaml.engine.v2.events.AliasEvent; import org.snakeyaml.engine.v2.events.CollectionStartEvent; import org.snakeyaml.engine.v2.events.Event; import org.snakeyaml.engine.v2.events.MappingStartEvent; import org.snakeyaml.engine.v2.events.NodeEvent; import org.snakeyaml.engine.v2.events.ScalarEvent; import org.snakeyaml.engine.v2.exceptions.Mark; import org.snakeyaml.engine.v2.nodes.Tag; import org.snakeyaml.engine.v2.parser.ParserImpl; import org.snakeyaml.engine.v2.resolver.ScalarResolver; import org.snakeyaml.engine.v2.scanner.StreamReader; /** * {@link JsonParser} implementation used to expose YAML documents * in form that allows other Jackson functionality to process YAML content, * such as binding POJOs to and from it, and building tree representations. */ public class YAMLParser extends ParserBase { /* /********************************************************************** /* Configuration /********************************************************************** */ protected final int _formatFeatures; // @since 2.12 protected final boolean _cfgEmptyStringsToNull; /* /********************************************************************** /* Input sources /********************************************************************** */ /** * Need to keep track of underlying {@link Reader} to be able to * auto-close it (if required to) */ protected final Reader _reader; protected final ParserImpl _yamlParser; protected final ScalarResolver _yamlResolver; /* /********************************************************************** /* State /********************************************************************** */ /** * Information about parser context, context in which * the next token is to be parsed (root, array, object). */ protected SimpleStreamReadContext _streamReadContext; /** * Keep track of the last event read, to get access to Location info */ protected Event _lastEvent; /** * To keep track of tags ("type ids"), need to either get tags for all * events, or, keep tag of relevant event that might have it: this is * different from {@code _lastEvent} in some cases. */ protected Event _lastTagEvent; /** * We need to keep track of text values. */ protected String _textValue; /** * For some tokens (specifically, numbers), we'll have cleaned up version, * mostly free of underscores */ protected String _cleanedTextValue; /** * Let's also have a local copy of the current property name */ protected String _currentName; /** * Flag that is set when current token was derived from an Alias * (reference to another value's anchor) */ protected boolean _currentIsAlias; /** * Anchor for the value that parser currently points to: in case of * structured types, value whose first token current token is. */ protected Optional _currentAnchor; /** * Flag to track whether we have seen any actual content (not just * Document/Stream start/end events) to detect empty documents. */ protected boolean _hasContent; /** * Flag to track whether we're currently emitting a synthetic empty object * for an empty document (when {@link YAMLReadFeature#EMPTY_DOCUMENT_AS_EMPTY_OBJECT} * is enabled). */ protected boolean _emittingSyntheticEmptyObject; /** * Patterns for matching YAML's notation for Infinity and NaN values. */ protected final static Pattern _patternInf = Pattern.compile("([-+]?)\\.(?:inf|Inf|INF)"); protected final static Pattern _patternNaN = Pattern.compile("\\.(?:nan|NaN|NAN)"); /* /********************************************************************** /* Life-cycle /********************************************************************** */ public YAMLParser(ObjectReadContext readCtxt, IOContext ioCtxt, BufferRecycler br, int streamReadFeatures, int formatFeatures, LoadSettings loadSettings, Reader reader) { super(readCtxt, ioCtxt, streamReadFeatures); if (loadSettings == null) { loadSettings = LoadSettings.builder().build(); } _formatFeatures = formatFeatures; _reader = reader; _yamlParser = new ParserImpl(loadSettings, new StreamReader(loadSettings, reader)); _yamlResolver = loadSettings.getSchema().getScalarResolver(); _cfgEmptyStringsToNull = YAMLReadFeature.EMPTY_STRING_AS_NULL.enabledIn(formatFeatures); DupDetector dups = StreamReadFeature.STRICT_DUPLICATE_DETECTION.enabledIn(streamReadFeatures) ? DupDetector.rootDetector(this) : null; _streamReadContext = SimpleStreamReadContext.createRootContext(dups); } /* /********************************************************************** /* Versioned /********************************************************************** */ @Override public Version version() { return PackageVersion.VERSION; } /* /********************************************************************** /* Extended YAML-specific API /********************************************************************** */ /** * Method that can be used to check whether current token was * created from YAML Alias token (reference to an anchor). */ public boolean isCurrentAlias() { return _currentIsAlias; } /* /********************************************************************** /* Overrides: capability introspection methods /********************************************************************** */ @Override public boolean canReadObjectId() { // yup return true; } @Override public boolean canReadTypeId() { return true; // yes, YAML got 'em } // @since 3.2 @Override public boolean willInternPropertyNames() { return false; } @Override public JacksonFeatureSet streamReadCapabilities() { // Defaults are fine; YAML actually has typed scalars (to a degree) // unlike CSV, Properties and XML return DEFAULT_READ_CAPABILITIES; } /* /********************************************************************** /* ParserBase method impls /********************************************************************** */ @Override public Reader streamReadInputSource() { return _reader; } @Override protected void _closeInput() throws IOException { /* 25-Nov-2008, tatus: As per [JACKSON-16] we are not to call close() * on the underlying Reader, unless we "own" it, or auto-closing * feature is enabled. * One downside is that when using our optimized * Reader (granted, we only do that for UTF-32...) this * means that buffer recycling won't work correctly. */ if (_reader != null) { if (_ioContext.isResourceManaged() || isEnabled(StreamReadFeature.AUTO_CLOSE_SOURCE)) { _reader.close(); } } } @Override public TokenStreamContext streamReadContext() { return _streamReadContext; } @Override public void assignCurrentValue(Object v) { _streamReadContext.assignCurrentValue(v); } @Override public Object currentValue() { return _streamReadContext.currentValue(); } /* /********************************************************************** /* Public API, configuration /********************************************************************** */ /** * Method for checking whether specified {@link YAMLReadFeature} * is enabled. */ public boolean isEnabled(YAMLReadFeature f) { return (_formatFeatures & f.getMask()) != 0; } // @Override public XxxSchema getSchema() /* /********************************************************************** /* Location info /********************************************************************** */ @Override public TokenStreamLocation currentTokenLocation() { if (_lastEvent == null) { return TokenStreamLocation.NA; } return _locationFor(_lastEvent.getStartMark()); } @Override public TokenStreamLocation currentLocation() { // can assume we are at the end of token now... if (_lastEvent == null) { return TokenStreamLocation.NA; } return _locationFor(_lastEvent.getEndMark()); } protected TokenStreamLocation _locationFor(Optional option) { if (!option.isPresent()) { return new TokenStreamLocation(_ioContext.contentReference(), -1, -1, -1); } Mark m = option.get(); return new TokenStreamLocation(_ioContext.contentReference(), m.getIndex(), m.getLine() + 1, // from 0- to 1-based m.getColumn() + 1); // ditto } // Note: SHOULD override 'getTokenLineNr', 'getTokenColumnNr', but those are final in 2.0 /* /********************************************************************** /* Parsing /********************************************************************** */ @Override public JsonToken nextToken() throws JacksonException { _currentIsAlias = false; _binaryValue = null; _numTypesValid = NR_UNKNOWN; if (_closed) { return null; } // [dataformats-text#154]: Handle synthetic empty object for empty documents if (_emittingSyntheticEmptyObject) { _emittingSyntheticEmptyObject = false; _streamReadContext = _streamReadContext.getParent(); JsonToken token = _updateToken(JsonToken.END_OBJECT); // Now close since we've emitted the complete empty object close(); return token; } while (true /*_yamlParser.hasNext()*/) { Event evt; try { evt = nextEvent(); } catch (org.snakeyaml.engine.v2.exceptions.YamlEngineException e) { throw new JacksonYAMLParseException(this, e.getMessage(), e); } catch (NumberFormatException e) { // 12-Jan-2024, tatu: As per https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=63274 // we seem to have unhandled case by SnakeYAML throw _constructReadException(String.format( "Malformed Number token: failed to tokenize due to (%s): %s", e.getClass().getName(), e.getMessage()), e); } // is null ok? Assume it is, for now, consider to be same as end-of-doc if (evt == null) { _currentAnchor = Optional.empty(); _lastTagEvent = null; return _updateTokenToNull(); } _lastEvent = evt; // One complication: property names are only inferred from the fact that we are // in Object context; they are just ScalarEvents (but separate and NOT just tagged // on values) if (_streamReadContext.inObject()) { if (_currToken != JsonToken.PROPERTY_NAME) { if (evt.getEventId() != Event.ID.Scalar) { _currentAnchor = Optional.empty(); _lastTagEvent = null; // end is fine if (evt.getEventId() == Event.ID.MappingEnd) { if (!_streamReadContext.inObject()) { // sanity check is optional, but let's do it for now _reportMismatchedEndMarker('}', ']'); } _streamReadContext = _streamReadContext.getParent(); return _updateToken(JsonToken.END_OBJECT); } _reportError("Expected a property name (Scalar value in YAML), got this instead: "+evt); } // 20-Feb-2019, tatu: [dataformats-text#123] Looks like YAML exposes Anchor for Object at point // where we return START_OBJECT (which makes sense), but, alas, Jackson expects that at point // after first PROPERTY_NAME. So we will need to defer clearing of the anchor slightly, // just for the very first entry; and only if no anchor for name found. // ... not even 100% sure this is correct, or robust, but does appear to work for specific // test case given. final ScalarEvent scalar = (ScalarEvent) evt; final boolean firstEntry = (_currToken == JsonToken.START_OBJECT); final Optional newAnchor = scalar.getAnchor(); if (newAnchor.isPresent() || !firstEntry) { _currentAnchor = scalar.getAnchor(); } // 23-Nov-2020, tatu: [dataformats-text#232] shows case where ref to type id // needs to be similarly deferred... if (!firstEntry) { _lastTagEvent = evt; } final String name = scalar.getValue(); // [dataformats-text#636]: validate name length _streamReadConstraints.validateNameLength(name.length()); _currentName = name; _streamReadContext.setCurrentName(name); return _updateToken(JsonToken.PROPERTY_NAME); } } else if (_streamReadContext.inArray()) { _streamReadContext.valueRead(); } _currentAnchor = Optional.empty(); _lastTagEvent = evt; switch (evt.getEventId()) { case Scalar: // scalar values are probably the commonest: _hasContent = true; JsonToken t = _decodeScalar((ScalarEvent) evt); return _updateToken(t); case MappingStart: // followed by maps, then arrays _hasContent = true; Optional m = evt.getStartMark(); MappingStartEvent map = (MappingStartEvent) evt; _currentAnchor = map.getAnchor(); _streamReadContext = _streamReadContext.createChildObjectContext( m.map(mark -> mark.getLine()).orElse(0), m.map(mark -> mark.getColumn()).orElse(0)); _streamReadConstraints.validateNestingDepth(_streamReadContext.getNestingDepth()); return _updateToken(JsonToken.START_OBJECT); case MappingEnd: // actually error; can not have map-end here _reportError("Not expecting END_OBJECT but a value"); case SequenceStart: _hasContent = true; Optional mrk = evt.getStartMark(); _currentAnchor = ((NodeEvent) evt).getAnchor(); _streamReadContext = _streamReadContext.createChildArrayContext( mrk.map(mark -> mark.getLine()).orElse(0), mrk.map(mark -> mark.getColumn()).orElse(0)); _streamReadConstraints.validateNestingDepth(_streamReadContext.getNestingDepth()); return _updateToken(JsonToken.START_ARRAY); case SequenceEnd: if (!_streamReadContext.inArray()) { // sanity check is optional, but let's do it for now _reportMismatchedEndMarker(']', '}'); } _streamReadContext = _streamReadContext.getParent(); return _updateToken(JsonToken.END_ARRAY); // after this, less common tokens: case DocumentEnd: // [dataformat-yaml#72]: logical end of doc; fine. Two choices; either skip, // or return null as marker (but do NOT close). Earlier returned `null`, but // to allow multi-document reading should actually just skip. // return _updateTokenToNull(); continue; case DocumentStart: // DocumentStartEvent dd = (DocumentStartEvent) evt; // does this matter? Shouldn't, should it? continue; case Alias: AliasEvent alias = (AliasEvent) evt; _currentIsAlias = true; _textValue = alias.getAnchor().orElseThrow(() -> new RuntimeException("Alias must be provided.")).getValue(); // [dataformats-text#636]: validate string value length _streamReadConstraints.validateStringLength(_textValue.length()); _cleanedTextValue = null; // for now, nothing to do: in future, maybe try to expose as ObjectIds? return _updateToken(JsonToken.VALUE_STRING); case StreamEnd: // end-of-input; force closure // [dataformats-text#154]: If we have no content and feature is enabled, // emit a synthetic empty object instead of null if (!_hasContent && YAMLReadFeature.EMPTY_DOCUMENT_AS_EMPTY_OBJECT.enabledIn(_formatFeatures)) { _emittingSyntheticEmptyObject = true; // Don't close yet - we need to emit END_OBJECT first _streamReadContext.createChildObjectContext(0, 0); return _updateToken(JsonToken.START_OBJECT); } close(); return _updateTokenToNull(); case StreamStart: // useless, skip continue; // 22-Jul-2022, tatu: Interesting... what to do? case Comment: continue; // 26-Feb-2023, tatu: Should we report an error or... ? default: } } } protected Event nextEvent() { return _yamlParser.next(); } protected JsonToken _decodeScalar(ScalarEvent scalar) throws JacksonException { String value = scalar.getValue(); // [dataformats-text#636]: validate string value length _streamReadConstraints.validateStringLength(value.length()); _textValue = value; _cleanedTextValue = null; // [dataformats-text#130]: Allow determining whether empty String is // coerced into null or not if (!_cfgEmptyStringsToNull && value.isEmpty()) { return JsonToken.VALUE_STRING; } // we may get an explicit tag, if so, use for corroborating... Optional typeTagOptional = scalar.getTag(); final int len = value.length(); if (!typeTagOptional.isPresent() || typeTagOptional.get().equals("!")) { // no, implicit Tag nodeTag = _yamlResolver.resolve(value, scalar.getImplicit().canOmitTagInPlainScalar()); if (nodeTag == Tag.STR) { return JsonToken.VALUE_STRING; } if (nodeTag == Tag.INT) { return _decodeNumberScalar(value, len); } if (nodeTag == Tag.FLOAT) { _numTypesValid = 0; return _cleanYamlFloat(value); } if (nodeTag == Tag.BOOL) { Boolean B = _matchYAMLBoolean(value, len); if (B != null) { return B ? JsonToken.VALUE_TRUE : JsonToken.VALUE_FALSE; } } else if (nodeTag == Tag.NULL) { return JsonToken.VALUE_NULL; } else { // what to do with timestamp and binary and merge etc. return JsonToken.VALUE_STRING; } } else { // yes, got type tag String typeTag = typeTagOptional.get(); if (typeTag.startsWith("tag:yaml.org,2002:")) { typeTag = typeTag.substring("tag:yaml.org,2002:".length()); if (typeTag.contains(",")) { final String[] tags = typeTag.split(","); typeTag = (tags.length == 0) ? "" : tags[0]; } } // [dataformats-text#39]: support binary type if ("binary".equals(typeTag)) { // 15-Dec-2017, tatu: 2.9.4 uses Jackson's codec because SnakeYAML does // not export its codec via OSGi (breaking 2.9.3). Note that trailing // whitespace is ok with core 2.9.4, but not earlier, so we'll trim // on purpose here value = value.trim(); try { _binaryValue = Base64Variants.MIME.decode(value); } catch (IllegalArgumentException e) { _reportError(e.getMessage()); } return JsonToken.VALUE_EMBEDDED_OBJECT; } // canonical values by YAML are actually 'y' and 'n'; but plenty more unofficial: if ("bool".equals(typeTag)) { // must be "true" or "false" Boolean B = _matchYAMLBoolean(value, len); if (B != null) { return B ? JsonToken.VALUE_TRUE : JsonToken.VALUE_FALSE; } } else { // 17-Sep-2022, tatu: empty String value is not valid number; // so we could indicate exception or... for now, report as // String value? if (len > 0) { if ("int".equals(typeTag)) { return _decodeNumberScalar(value, len); } if ("float".equals(typeTag)) { _numTypesValid = 0; return _cleanYamlFloat(value); } if ("null".equals(typeTag)) { return JsonToken.VALUE_NULL; } } } } // any way to figure out actual type? No? return JsonToken.VALUE_STRING; } protected Boolean _matchYAMLBoolean(String value, int len) { switch (len) { case 4: //TODO it should be only lower case if ("true".equalsIgnoreCase(value)) return Boolean.TRUE; break; case 5: if ("false".equalsIgnoreCase(value)) return Boolean.FALSE; break; } return null; } protected JsonToken _decodeNumberScalar(String value, final int len) throws JacksonException { // 05-May-2012, tatu: Turns out this is a hot spot; so let's write it // out and avoid regexp overhead... //if (PATTERN_INT.matcher(value).matches()) { int i; char ch = value.charAt(0); if (ch == '-') { _numberNegative = true; i = 1; } else if (ch == '+') { _numberNegative = false; if (len == 1) { return null; } i = 1; } else { _numberNegative = false; i = 0; } if (len == i) { // should not occur but play it safe return null; } // Next: either "0" ("-0" and "+0" also accepted), or non-decimal. So: if (value.charAt(i) == '0') { if (++i == len) { // can leave "_numberNegative" as is, does not matter _numberInt = 0; _numTypesValid = NR_INT; return JsonToken.VALUE_NUMBER_INT; } ch = value.charAt(i); switch (ch) { case 'b': case 'B': // binary return _decodeNumberIntBinary(value, i+1, len, _numberNegative); case 'o': // Explicit 0o prefix: always octal (YAML 1.2) return _decodeNumberIntOctal(value, i+1, len, _numberNegative); case 'x': case 'X': // hex return _decodeNumberIntHex(value, i+1, len, _numberNegative); case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '_': // Implicit octal (leading 0 followed by digits): check feature flag if (YAMLReadFeature.PARSE_OCTAL_NUMBERS.enabledIn(_formatFeatures)) { return _decodeNumberIntOctal(value, i, len, _numberNegative); } // When disabled, fall through to decimal parsing below break; default: // should never occur, but in abundance of caution, let's not // throw exception but just return as String return JsonToken.VALUE_STRING; } } // 23-Nov-2020, tatu: will now check and support all formats EXCEPT // for 60-base; 60-base is trickier not just because decoding gets // more involved but also because it can accidentally "detect" values // that we most likely expressing either Times or IP numbers. boolean underscores = false; while (true) { int c = value.charAt(i); if (c > '9' || c < '0') { if (c == '_') { underscores = true; } else { break; } } if (++i == len) { _numTypesValid = 0; if (underscores) { return _cleanYamlInt(value); } _cleanedTextValue = _textValue; return JsonToken.VALUE_NUMBER_INT; } } // 22-Nov-2020, tatu: Should not be needed; SnakeYAML does not // tag things this way... // if (PATTERN_FLOAT.matcher(value).matches()) { // _numTypesValid = 0; // return _cleanYamlFloat(_textValue); // } // 25-Aug-2016, tatu: If we can't actually match it to valid number, // consider String; better than claiming there's not token return JsonToken.VALUE_STRING; } protected JsonToken _decodeNumberIntBinary(final String value, int i, final int origLen, boolean negative) throws JacksonException { final String cleansed = _cleanUnderscores(value, i, origLen); int digitLen = cleansed.length(); if (digitLen <= 31) { int v = _decodeInt(cleansed, 2); if (negative) { v = -v; } _numberInt = v; _numTypesValid = NR_INT; return JsonToken.VALUE_NUMBER_INT; } if (digitLen <= 63) { return _decodeFromLong(_decodeLong(cleansed, 2), negative, (digitLen == 32)); } return _decodeFromBigInteger(_decodeBigInt(cleansed, 2), negative); } protected JsonToken _decodeNumberIntOctal(final String value, int i, final int origLen, boolean negative) throws JacksonException { final String cleansed = _cleanUnderscores(value, i, origLen); int digitLen = cleansed.length(); if (digitLen <= 10) { // 30 bits int v = _decodeInt(cleansed, 8); if (negative) { v = -v; } _numberInt = v; _numTypesValid = NR_INT; return JsonToken.VALUE_NUMBER_INT; } if (digitLen <= 21) { // 63 bits return _decodeFromLong(_decodeLong(cleansed, 8), negative, false); } return _decodeFromBigInteger(_decodeBigInt(cleansed, 8), negative); } protected JsonToken _decodeNumberIntHex(final String value, int i, final int origLen, boolean negative) throws JacksonException { final String cleansed = _cleanUnderscores(value, i, origLen); int digitLen = cleansed.length(); if (digitLen <= 7) { // 28 bits int v = _decodeInt(cleansed, 16); if (negative) { v = -v; } _numberInt = v; _numTypesValid = NR_INT; return JsonToken.VALUE_NUMBER_INT; } if (digitLen <= 15) { // 60 bits return _decodeFromLong(_decodeLong(cleansed, 16), negative, (digitLen == 8)); } return _decodeFromBigInteger(_decodeBigInt(cleansed, 16), negative); } private JsonToken _decodeFromLong(long unsignedValue, boolean negative, boolean checkIfInt) { long actualValue; if (negative) { actualValue = -unsignedValue; if (checkIfInt && (actualValue >= MIN_INT_L)) { _numberInt = (int) actualValue; _numTypesValid = NR_INT; return JsonToken.VALUE_NUMBER_INT; } } else { if (checkIfInt && (unsignedValue < MAX_INT_L)) { _numberInt = (int) unsignedValue; _numTypesValid = NR_INT; return JsonToken.VALUE_NUMBER_INT; } actualValue = unsignedValue; } _numberLong = actualValue; _numTypesValid = NR_LONG; return JsonToken.VALUE_NUMBER_INT; } private JsonToken _decodeFromBigInteger(BigInteger unsignedValue, boolean negative) { // Should we check for bounds here too? Let's not bother yet if (negative) { _numberBigInt = unsignedValue.negate(); } else { _numberBigInt = unsignedValue; } _numTypesValid = NR_BIGINT; return JsonToken.VALUE_NUMBER_INT; } private int _decodeInt(String numStr, int base) throws JacksonException { try { return Integer.parseInt(numStr, base); } catch (NumberFormatException e) { return _reportInvalidNumber(numStr, base, e); } } private long _decodeLong(String numStr, int base) throws JacksonException { try { return Long.parseLong(numStr, base); } catch (NumberFormatException e) { return _reportInvalidNumber(numStr, base, e); } } private BigInteger _decodeBigInt(String numStr, int base) throws JacksonException { try { return base == 10 ? NumberInput.parseBigInteger(numStr, isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)) : NumberInput.parseBigIntegerWithRadix( numStr, base, isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); } catch (NumberFormatException e) { return _reportInvalidNumber(numStr, base, e); } } private T _reportInvalidNumber(String numStr, int base, Exception e) throws JacksonException { _reportError(String.format("Invalid base-%d number ('%s'), problem: %s", base, numStr, e.getMessage())); return null; // never gets here } /* /********************************************************************** /* String value handling /********************************************************************** */ // For now we do not store char[] representation... @Override public boolean hasStringCharacters() { return false; } @Override public String getString() throws JacksonException { if (_currToken == JsonToken.VALUE_STRING) { return _textValue; } if (_currToken == JsonToken.PROPERTY_NAME) { return _currentName; } if (_currToken != null) { if (_currToken.isScalarValue()) { return _textValue; } return _currToken.asString(); } return null; } @Override public String currentName() throws JacksonException { if (_currToken == JsonToken.PROPERTY_NAME) { return _currentName; } if (_currToken == JsonToken.START_OBJECT || _currToken == JsonToken.START_ARRAY) { SimpleStreamReadContext parent = _streamReadContext.getParent(); if (parent != null) { return parent.currentName(); } } return _streamReadContext.currentName(); } @Override public char[] getStringCharacters() throws JacksonException { String text = getString(); return (text == null) ? null : text.toCharArray(); } @Override public int getStringLength() throws JacksonException { String text = getString(); return (text == null) ? 0 : text.length(); } @Override public int getStringOffset() throws JacksonException { return 0; } @Override public int getString(Writer writer) throws JacksonException { String str = getString(); if (str == null) { return 0; } try { writer.write(str); } catch (IOException e) { throw _wrapIOFailure(e); } return str.length(); } /* /********************************************************************** /* Binary (base64) /********************************************************************** */ @Override public Object getEmbeddedObject() throws JacksonException { if (_currToken == JsonToken.VALUE_EMBEDDED_OBJECT) { return _binaryValue; } return null; } // Base impl from `ParserBase` works fine here: // public byte[] getBinaryValue(Base64Variant variant) throws JacksonException @Override public int readBinaryValue(Base64Variant b64variant, OutputStream out) throws JacksonException { byte[] b = getBinaryValue(b64variant); try { out.write(b); } catch (IOException e) { throw _wrapIOFailure(e); } return b.length; } /* /********************************************************************** /* Number accessor overrides /********************************************************************** */ @Override public Object getNumberValueDeferred() throws JacksonException { // 01-Feb-2023, tatu: ParserBase implementation does not quite work // due to refactoring. So let's try to cobble something together if (_currToken == JsonToken.VALUE_NUMBER_INT) { // We might already have suitable value? if ((_numTypesValid & NR_INT) != 0) { return _numberInt; } if ((_numTypesValid & NR_LONG) != 0) { return _numberLong; } if ((_numTypesValid & NR_BIGINT) != 0) { return _getBigInteger(); } if (_cleanedTextValue == null) { _reportError("Internal number decoding error: `_cleanedTextValue` null when nothing decoded for `JsonToken.VALUE_NUMBER_INT`"); } return _cleanedTextValue; } if (_currToken != JsonToken.VALUE_NUMBER_FLOAT) { _reportError("Current token ("+_currToken+") not numeric, can not use numeric value accessors"); } // For FP, see if we might have decoded values already if ((_numTypesValid & NR_BIGDECIMAL) != 0) { return _getBigDecimal(); } if ((_numTypesValid & NR_DOUBLE) != 0) { return _getNumberDouble(); } if ((_numTypesValid & NR_FLOAT) != 0) { return _getNumberFloat(); } // But if not, same as BigInteger, let lazy/deferred handling be done return _cleanedTextValue; } @Override protected void _parseNumericValue(int expType) throws JacksonException { // Int or float? if (_currToken == JsonToken.VALUE_NUMBER_INT) { int len = _cleanedTextValue.length(); if (_numberNegative) { len--; } if (len <= 9) { // definitely fits in int _numberInt = _decodeInt(_cleanedTextValue, 10); _numTypesValid = NR_INT; return; } if (len <= 18) { // definitely fits AND is easy to parse using 2 int parse calls long l = Long.parseLong(_cleanedTextValue); // [JACKSON-230] Could still fit in int, need to check if (len == 10) { if (_numberNegative) { if (l >= Integer.MIN_VALUE) { _numberInt = (int) l; _numTypesValid = NR_INT; return; } } else { if (l <= Integer.MAX_VALUE) { _numberInt = (int) l; _numTypesValid = NR_INT; return; } } } _numberLong = l; _numTypesValid = NR_LONG; return; } // !!! TODO: implement proper bounds checks; now we'll just use BigInteger for convenience final String numStr = _cleanedTextValue; try { streamReadConstraints().validateIntegerLength(numStr.length()); BigInteger n = NumberInput.parseBigInteger( numStr, isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); // Could still fit in a long, need to check if (len == 19 && n.bitLength() <= 63) { _numberLong = n.longValue(); _numTypesValid = NR_LONG; return; } _numberBigInt = n; _numTypesValid = NR_BIGINT; return; } catch (NumberFormatException nex) { // NOTE: pass non-cleaned variant for error message // Can this ever occur? Due to overflow, maybe? throw _constructReadException(String.format( "Malformed numeric value '%s: (%s) %s", _textValue, nex.getClass().getName(), nex.getMessage())); } } if (_currToken == JsonToken.VALUE_NUMBER_FLOAT) { // strip out optional underscores, if any: final String numStr = _cleanedTextValue; try { streamReadConstraints().validateFPLength(numStr.length()); if (expType == NR_BIGDECIMAL) { _numberBigDecimal = NumberInput.parseBigDecimal( numStr, isEnabled(StreamReadFeature.USE_FAST_BIG_NUMBER_PARSER)); _numTypesValid = NR_BIGDECIMAL; } else { // Otherwise double has to do streamReadConstraints().validateFPLength(numStr.length()); _numberDouble = NumberInput.parseDouble(numStr, isEnabled(StreamReadFeature.USE_FAST_DOUBLE_PARSER)); _numTypesValid = NR_DOUBLE; } } catch (NumberFormatException nex) { // Can this ever occur? Due to overflow, maybe? // NOTE: pass non-cleaned variant for error message throw _constructReadException(String.format( "Malformed numeric value '%s: (%s) %s", _textValue, nex.getClass().getName(), nex.getMessage())); } return; } _reportError("Current token (" + _currToken + ") not numeric, can not use numeric value accessors"); } @Override protected int _parseIntValue() throws JacksonException { if (_currToken == JsonToken.VALUE_NUMBER_INT) { int len = _cleanedTextValue.length(); if (_numberNegative) { len--; } if (len <= 9) { // definitely fits in int _numberInt = _decodeInt(_cleanedTextValue, 10); _numTypesValid = NR_INT; return _numberInt; } } _parseNumericValue(NR_INT); if ((_numTypesValid & NR_INT) == 0) { convertNumberToInt(); } return _numberInt; } /* /********************************************************************** /* Native id (type id) access /********************************************************************** */ @Override public String getObjectId() throws JacksonException { return _currentAnchor.map(a -> a.getValue()).orElse(null); } @Override public String getTypeId() throws JacksonException { String tag = _currentTag().orElse(null); if (tag != null) { // 04-Aug-2013, tatu: Looks like YAML parser's expose these in... somewhat exotic // ways sometimes. So let's prepare to peel off some wrappings: while (tag.startsWith("!")) { tag = tag.substring(1); } } return tag; } /** * Method that can be used to access the YAML tag of the current token, * in its raw form: that is, without stripping leading "!" prefix(es) * (unlike {@link #getTypeId()} which does strip them). *

    * Note that "raw" here means raw with respect to Jackson's processing; * SnakeYAML Engine may have already resolved some tag syntax (for example, * verbatim tags like {@code !} are resolved to their URI content). * * @return Raw YAML tag of the current token, if any; {@code null} if none * * @since 3.2 */ public String getRawTag() { return _currentTag().orElse(null); } // @since 3.2 protected Optional _currentTag() { if (_lastTagEvent instanceof CollectionStartEvent cse) { return cse.getTag(); } else if (_lastTagEvent instanceof ScalarEvent se) { return se.getTag(); } return Optional.empty(); } /* /********************************************************************** /* Internal methods /********************************************************************** */ /** * Helper method used to clean up YAML integer value so it can be parsed * using standard JDK classes. * Currently this just means stripping out optional underscores. */ private JsonToken _cleanYamlInt(String str) throws JacksonException { // Here we already know there is either plus sign, or underscore (or both) so final int len = str.length(); StringBuilder sb = new StringBuilder(len); // first: do we have a leading plus sign to skip? int i = (str.charAt(0) == '+') ? 1 : 0; for (; i < len; ++i) { char c = str.charAt(i); if (c != '_') { sb.append(c); } } _cleanedTextValue = sb.toString(); if (_cleanedTextValue.isEmpty() || "-".equals(_cleanedTextValue)) { _reportError(String.format("Invalid number ('%s')", str)); } return JsonToken.VALUE_NUMBER_INT; } private String _cleanUnderscores(String str, int i, final int len) { final StringBuilder sb = new StringBuilder(len); for (; i < len; ++i) { char ch = str.charAt(i); if (ch != '_') { sb.append(ch); } } // tiny optimization: if nothing was trimmed, return String if (sb.length() == len) { return str; } return sb.toString(); } private JsonToken _cleanYamlFloat(String str) { Matcher matcher = _patternInf.matcher(str); if (matcher.matches()) { if (matcher.group(1).equals("-")) { return resetAsNaN(str, Double.NEGATIVE_INFINITY); } else { return resetAsNaN(str, Double.POSITIVE_INFINITY); } } if (_patternNaN.matcher(str).matches()) { return resetAsNaN(str, Double.NaN); } // Here we do NOT yet know whether we might have underscores so check final int len = str.length(); int ix = str.indexOf('_'); if (ix < 0 || len == 0) { _cleanedTextValue = str; return JsonToken.VALUE_NUMBER_FLOAT; } StringBuilder sb = new StringBuilder(len); // first: do we have a leading plus sign to skip? int i = (str.charAt(0) == '+') ? 1 : 0; for (; i < len; ++i) { char c = str.charAt(i); if (c != '_') { sb.append(c); } } _cleanedTextValue = sb.toString(); return JsonToken.VALUE_NUMBER_FLOAT; } // Promoted from `ParserBase` in 3.0 protected void _reportMismatchedEndMarker(int actCh, char expCh) throws JacksonException { TokenStreamContext ctxt = streamReadContext(); _reportError(String.format( "Unexpected close marker '%s': expected '%c' (for %s starting at %s)", (char) actCh, expCh, ctxt.typeDesc(), ctxt.startLocation(_contentReference()))); } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLReadFeature.java ================================================ package tools.jackson.dataformat.yaml; import tools.jackson.core.FormatFeature; /** * Enumeration that defines all togglable features for YAML parsers. *

    * NOTE: in Jackson 2.x this was named {@code YAMLParser.Feature}. */ public enum YAMLReadFeature implements FormatFeature { /** * Feature that determines whether empty YAML documents (documents with only * comments or whitespace, or completely empty) should be exposed as empty * Object ({@code START_OBJECT}/{@code END_OBJECT} token pair) instead of * causing "No content to map" error. *

    * This is useful for example for deserializing to POJOs with default values, * where an empty configuration file should create an object with all default * values rather than failing. *

    * Feature is disabled by default for backwards-compatibility. */ EMPTY_DOCUMENT_AS_EMPTY_OBJECT(false), /** * Feature that determines whether an empty {@link String} will be parsed * as {@code null}. Logic is part of YAML 1.1 * Null Language-Independent Type. *

    * Feature is enabled by default for backwards-compatibility reasons. */ EMPTY_STRING_AS_NULL(true), /** * Feature that determines whether values starting with {@code 0} followed * by digits (like {@code 0444}) are interpreted as octal numbers. * When enabled (the default), {@code 0444} parses as decimal 292 (octal * interpretation). When disabled, {@code 0444} parses as decimal 444. *

    * Note that explicit YAML 1.2 octal prefix {@code 0o} (like {@code 0o444}) * is always recognized as octal regardless of this setting. *

    * Note: this feature only has effect when using the * {@link YAMLSchema#CORE CORE} schema, since the default JSON schema * does not resolve {@code 0}-prefixed values as integers. *

    * Feature is enabled by default for backwards-compatibility. * * @since 3.2 */ PARSE_OCTAL_NUMBERS(true) ; private final boolean _defaultState; private final int _mask; // Method that calculates bit set (flags) of all features that // are enabled by default. public static int collectDefaults() { int flags = 0; for (YAMLReadFeature f : values()) { if (f.enabledByDefault()) { flags |= f.getMask(); } } return flags; } private YAMLReadFeature(boolean defaultState) { _defaultState = defaultState; _mask = (1 << ordinal()); } @Override public boolean enabledByDefault() { return _defaultState; } @Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; } @Override public int getMask() { return _mask; } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLSchema.java ================================================ package tools.jackson.dataformat.yaml; /** * Enum of YAML 1.2 schemas that can be used for parsing YAML documents. * * @since 3.2 */ public enum YAMLSchema { /** * Schema guaranteed to work with any document. * @see https://yaml.org/spec/1.2.2/#101-failsafe-schema */ FAILSAFE, /** * Schema for parsing JSON-compatible YAML documents. * @see https://yaml.org/spec/1.2.2/#102-json-schema */ JSON, /** * Schema for parsing standard YAML documents. * @see https://yaml.org/spec/1.2.2/#103-core-schema */ CORE, ; } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/YAMLWriteFeature.java ================================================ package tools.jackson.dataformat.yaml; import tools.jackson.core.FormatFeature; /** * Enumeration that defines all togglable features for YAML generators *

    * NOTE: in Jackson 2.x this was named {@code YAMLGenerator.Feature}. */ public enum YAMLWriteFeature implements FormatFeature { /** * Whether we are to write an explicit document start marker ("---") * or not. *

    * Feature is enabled by default. */ WRITE_DOC_START_MARKER(true), /** * Whether to use YAML native Object Id construct for indicating type (true); * or "generic" Object Id mechanism (false). Former works better for systems that * are YAML-centric; latter may be better choice for inter-operability, when * converting between formats or accepting other formats. *

    * Feature is enabled by default. */ USE_NATIVE_OBJECT_ID(true), /** * Whether to use YAML native Type Id construct for indicating type (true); * or "generic" type property (false). Former works better for systems that * are YAML-centric; latter may be better choice for inter-operability, when * converting between formats or accepting other formats. *

    * Feature is enabled by default. */ USE_NATIVE_TYPE_ID(true), /** * Do we try to force so-called canonical output or not. *

    * Ignored if you provide your own {@code DumperOptions}. *

    *

    * Feature is disabled by default. */ CANONICAL_OUTPUT(false), /** * Options passed to SnakeYAML that determines whether longer textual content * gets automatically split into multiple lines or not. *

    * Feature is enabled by default to conform to SnakeYAML defaults. *

    *

    * Ignored if you provide your own {@code DumperOptions}. *

    *

    * Feature is enabled by default. */ SPLIT_LINES(true), /** * Whether strings will be rendered without quotes (true) or * with quotes (false, default). *

    * Minimized quote usage makes for more human readable output; however, content is * limited to printable characters according to the rules of * literal block style. *

    *

    * Feature is disabled by default. */ MINIMIZE_QUOTES(false), /** * Whether numbers stored as strings will be rendered with quotes (true) or * without quotes (false, default) when MINIMIZE_QUOTES is enabled. *

    * Minimized quote usage makes for more human readable output; however, content is * limited to printable characters according to the rules of * literal block style. *

    *

    * Feature is disabled by default. */ ALWAYS_QUOTE_NUMBERS_AS_STRINGS(false), /** * Whether for string containing newlines a * literal block style * should be used. This automatically enabled when {@link #MINIMIZE_QUOTES} is set. *

    * The content of such strings is limited to printable characters according to the rules of * literal block style. *

    *

    * Feature is disabled by default. */ LITERAL_BLOCK_STYLE(false), /** * Feature enabling of which adds indentation for array entry generation * (default indentation being 2 spaces). *

    * Default value is {@code false} for backwards compatibility *

    *

    * Ignored if you provide your own {@code DumperOptions}. *

    *

    * Feature is disabled by default. */ INDENT_ARRAYS(false), /** * Feature enabling of which adds indentation with indicator for array entry generation * (default indentation being 2 spaces). *

    * Default value is {@code false} for backwards compatibility *

    *

    * Ignored if you provide your own {@code DumperOptions}. *

    *

    * Feature is disabled by default. */ INDENT_ARRAYS_WITH_INDICATOR(false), /** * Option passed to SnakeYAML to allows writing key longer that 128 characters * (up to 1024 characters). * If disabled, the max key length is left as 128 characters: longer names * are truncated. If enabled, limit is raised to 1024 characters. *

    * Ignored if you provide your own {@code DumperOptions}. *

    *

    * Feature is disabled by default. */ ALLOW_LONG_KEYS(false), /** * Whether non-finite float values (infinities and not-a-number) should be * emitted using YAML notation ({@code .inf}, {@code -.inf}, {@code .nan}) * or Java notation ({@code Infinity}, {@code -Infinity}, {@code NaN}). *

    * Feature is enabled by default. Disable it for backwards compatibility * (pre-3.2 behavior). * * @since 3.2 */ USE_YAML_NONFINITE_NOTATION(true), ; private final boolean _defaultState; private final int _mask; /** * Method that calculates bit set (flags) of all features that * are enabled by default. */ public static int collectDefaults() { int flags = 0; for (YAMLWriteFeature f : values()) { if (f.enabledByDefault()) { flags |= f.getMask(); } } return flags; } private YAMLWriteFeature(boolean defaultState) { _defaultState = defaultState; _mask = (1 << ordinal()); } @Override public boolean enabledByDefault() { return _defaultState; } @Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; } @Override public int getMask() { return _mask; } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/package-info.java ================================================ /** Main abstractions for Jackson YAML format backend, including streaming reader (({@link tools.jackson.dataformat.yaml.YAMLParser}), writer ({@link tools.jackson.dataformat.yaml.YAMLGenerator}) (and factory to create them, {@link tools.jackson.dataformat.yaml.YAMLFactory}) as well as mapper ({@link tools.jackson.dataformat.yaml.YAMLMapper}). */ package tools.jackson.dataformat.yaml; ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/util/StringQuotingChecker.java ================================================ package tools.jackson.dataformat.yaml.util; import java.util.Arrays; import java.util.HashSet; import java.util.Set; /** * Helper class that defines API used by * {@link tools.jackson.dataformat.yaml.YAMLGenerator} * to check whether property names and String values need to be quoted or not. * Also contains default logic implementation; may be sub-classed to provide * alternate implementation. * * @since 2.12 */ public abstract class StringQuotingChecker implements java.io.Serializable { private static final long serialVersionUID = 1L; /** * As per YAML null * and boolean type specs, * better retain quoting for some keys (property names) and values. */ private final static Set RESERVED_KEYWORDS = new HashSet<>(Arrays.asList( // 02-Apr-2019, tatu: Some names will look funny if escaped: let's leave out // single letter case (esp so 'y' won't get escaped) // 17-Sep-2020, tatu: [dataformats-text#226] No, let's be consistent w/ values "false", "False", "FALSE", "n", "N", "no", "No", "NO", "null", "Null", "NULL", "on", "On", "ON", "off", "Off", "OFF", "true", "True", "TRUE", "y", "Y", "yes", "Yes", "YES" )); /** * Method called by * {@link tools.jackson.dataformat.yaml.YAMLGenerator} * to check whether given property name should be quoted: usually * to prevent it from being read as non-String key (boolean or number) */ public abstract boolean needToQuoteName(String name); /** * Method called by * {@link tools.jackson.dataformat.yaml.YAMLGenerator} * to check whether given String value should be quoted: usually * to prevent it from being value of different type (boolean or number). */ public abstract boolean needToQuoteValue(String value); /** * Helper method that sub-classes may use to see if given String value is * one of: *

      *
    • YAML 1.1 keyword representing * boolean *
    • *
    • YAML 1.1 keyword representing * null value *
    • *
    • empty String (length 0) *
    • * * and returns {@code true} if so. * * @param value String to check * * @return {@code true} if given value is a Boolean or Null representation * (as per YAML 1.1 specification) or empty String */ protected boolean isReservedKeyword(String value) { if (value.length() == 0) { return true; } return _isReservedKeyword(value.charAt(0), value); } protected boolean _isReservedKeyword(int firstChar, String name) { switch (firstChar) { // First, reserved name starting chars: case 'f': // false case 'n': // no/n/null case 'o': // on/off case 't': // true case 'y': // yes/y case 'F': // False case 'N': // No/N/Null case 'O': // On/Off case 'T': // True case 'Y': // Yes/Y return RESERVED_KEYWORDS.contains(name); case '~': // null alias (see [dataformats-text#274]) return true; } return false; } /** * Helper method that sub-classes may use to see if given String value * looks like a YAML 1.1 numeric value and would likely be considered * a number when parsing unless quoting is used. */ protected boolean looksLikeYAMLNumber(String name) { if (name.length() > 0) { return _looksLikeYAMLNumber(name.charAt(0), name); } return false; } protected boolean _looksLikeYAMLNumber(int firstChar, String name) { switch (firstChar) { // And then numbers case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '-' : case '+': case '.': return true; } return false; } /** * As per YAML Plain Styleunquoted * strings are restricted to a reduced charset and must be quoted in case they contain * one of the following characters or character combinations. */ protected boolean valueHasQuotableChar(String inputStr) { final int end = inputStr.length(); for (int i = 0; i < end; ++i) { switch (inputStr.charAt(i)) { case '[': case ']': case '{': case '}': case ',': return true; case '#': // [dataformats-text#201]: limit quoting with MINIMIZE_QUOTES // (but not recognized as comment unless starts line or preceded by whitespace) if (precededOnlyByBlank(inputStr, i)) { return true; } break; case ':': // [dataformats-text#201]: limit quoting with MINIMIZE_QUOTES // (but recognized as separator only if end-of-line or followed by whitespace) if (followedOnlyByBlank(inputStr, i)) { return true; } break; default: } } return false; } // @since 2.17 protected boolean precededOnlyByBlank(String inputStr, int offset) { if (offset == 0) { return true; } return isBlank(inputStr.charAt(offset - 1)); } // @since 2.17 protected boolean followedOnlyByBlank(String inputStr, int offset) { if (offset == inputStr.length() - 1) { return true; } return isBlank(inputStr.charAt(offset + 1)); } // @since 2.17 protected boolean isBlank(char value) { return (' ' == value || '\t' == value); } /** * Looks like we may get names with "funny characters" so. * * @since 2.13.2 */ protected boolean nameHasQuotableChar(String inputStr) { // 31-Jan-2022, tatu: As per [dataformats-text#306] linefeed is // problematic. I'm sure there are likely other cases, but let's // start with the obvious ones, control characters final int end = inputStr.length(); for (int i = 0; i < end; ++i) { int ch = inputStr.charAt(i); if (ch < 0x0020) { return true; } } return false; } /** * Default {@link StringQuotingChecker} implementation used unless * custom implementation registered. */ public static class Default extends StringQuotingChecker implements java.io.Serializable { private static final long serialVersionUID = 1L; private final static Default INSTANCE = new Default(); public Default() { } public static Default instance() { return INSTANCE; } /** * Default implementation will call * {@link #isReservedKeyword(String)} and * {@link #looksLikeYAMLNumber(String)} to determine * if quoting should be applied. */ @Override public boolean needToQuoteName(String name) { return isReservedKeyword(name) || looksLikeYAMLNumber(name) // 31-Jan-2022, tatu: as per [dataformats-text#306] may also // have other characters requiring quoting... || nameHasQuotableChar(name); } /** * Default implementation will call * {@link #isReservedKeyword(String)} * and {@link #valueHasQuotableChar(String)} to determine * if quoting should be applied. */ @Override public boolean needToQuoteValue(String value) { // Only consider reserved keywords but not numbers? return isReservedKeyword(value) || valueHasQuotableChar(value); } } } ================================================ FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/util/package-info.java ================================================ /** Helper classes for YAML backend. @since 2.12 */ package tools.jackson.dataformat.yaml.util; ================================================ FILE: yaml/src/main/resources/META-INF/LICENSE ================================================ This copy of Jackson JSON processor YAML module is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the specific rights regarding derivative works. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 ================================================ FILE: yaml/src/main/resources/META-INF/NOTICE ================================================ # Jackson JSON processor Jackson is a high-performance, Free/Open Source JSON processing library. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has been in development since 2007. It is currently developed by a community of developers. ## Copyright Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi) ## Licensing Jackson components are licensed under Apache (Software) License, version 2.0, as per accompanying LICENSE file. ## Credits A list of contributors may be found from CREDITS file, which is included in some artifacts (usually source distributions); but is always available from the source code management (SCM) system project uses. ================================================ FILE: yaml/src/main/resources/META-INF/services/tools.jackson.core.TokenStreamFactory ================================================ tools.jackson.dataformat.yaml.YAMLFactory ================================================ FILE: yaml/src/main/resources/META-INF/services/tools.jackson.databind.ObjectMapper ================================================ tools.jackson.dataformat.yaml.YAMLMapper ================================================ FILE: yaml/src/test/java/module-info.java ================================================ // Properties unit test Module descriptor module tools.jackson.dataformat.yaml { // Since we are not split from Main artifact, will not // need to depend on Main artifact -- but need its dependencies requires tools.jackson.core; requires tools.jackson.databind; requires org.snakeyaml.engine; // Additional test lib/framework dependencies requires org.assertj.core; requires org.junit.jupiter.api; requires org.junit.jupiter.params; // Further, need to open up some packages for JUnit et al opens tools.jackson.dataformat.yaml; opens tools.jackson.dataformat.yaml.constraints; opens tools.jackson.dataformat.yaml.deser; opens tools.jackson.dataformat.yaml.filter; opens tools.jackson.dataformat.yaml.fuzz; opens tools.jackson.dataformat.yaml.misc; opens tools.jackson.dataformat.yaml.ser; opens tools.jackson.dataformat.yaml.ser.dos; opens tools.jackson.dataformat.yaml.testutil; opens tools.jackson.dataformat.yaml.testutil.failure; opens tools.jackson.dataformat.yaml.tofix; opens tools.jackson.dataformat.yaml.type; } ================================================ FILE: yaml/src/test/java/perf/MediaItem.java ================================================ package perf; import java.io.IOException; import java.util.*; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.core.*; /** * Value class for performance tests */ @JsonPropertyOrder({"content", "images"}) public class MediaItem { final static String NAME_IMAGES = "images"; final static String NAME_CONTENT = "content"; public enum Player { JAVA, FLASH; } public enum Size { SMALL, LARGE; } private List _photos; private Content _content; public MediaItem() { } public MediaItem(Content c) { _content = c; } public void addPhoto(Photo p) { if (_photos == null) { _photos = new ArrayList(); } _photos.add(p); } public List getImages() { return _photos; } public void setImages(List p) { _photos = p; } public Content getContent() { return _content; } public void setContent(Content c) { _content = c; } // Custom deser public static MediaItem deserialize(JsonParser p) throws IOException { if (p.nextToken() != JsonToken.START_OBJECT) { throw new IOException("Need START_OBJECT for MediaItem"); } MediaItem item = new MediaItem(); while (p.nextToken() == JsonToken.PROPERTY_NAME) { String name = p.currentName(); if (name == "images") { item._photos = deserializeImages(p); } else if (name == "content") { item._content = Content.deserialize(p); } else throw new IOException("Unknown field"); } if (p.currentToken() != JsonToken.END_OBJECT) { throw new IOException("Need END_OBJECT to complete MediaItem"); } return item; } private static List deserializeImages(JsonParser p) throws IOException { if (p.nextToken() != JsonToken.START_ARRAY) { throw new IOException("Need START_ARRAY for List of Photos"); } ArrayList images = new ArrayList(4); while (p.nextToken() == JsonToken.START_OBJECT) { images.add(Photo.deserialize(p)); } if (p.currentToken() != JsonToken.END_ARRAY) { throw new IOException("Need END_ARRAY to complete List of Photos"); } return images; } // Custom serializer public void serialize(JsonGenerator g) throws IOException { g.writeStartObject(); g.writeName("content"); if (_content == null) { g.writeNull(); } else { _content.serialize(g); } if (_photos == null) { g.writeNullProperty("images"); } else { g.writeArrayPropertyStart("images"); for (Photo photo : _photos) { photo.serialize(g); } g.writeEndArray(); } g.writeEndObject(); } /* /********************************************************** /* Helper types /********************************************************** */ @JsonPropertyOrder({"uri","title","width","height","size"}) public static class Photo { public final static int F_URI = 1; public final static int F_TITLE = 2; public final static int F_WIDTH = 3; public final static int F_HEIGHT = 4; public final static int F_SIZE = 5; public final static HashMap sFields = new HashMap(); static { // MediaItem fields sFields.put("uri", F_URI); sFields.put("title", F_TITLE); sFields.put("width", F_WIDTH); sFields.put("height", F_HEIGHT); sFields.put("size", F_SIZE); } private String _uri; private String _title; private int _width; private int _height; private Size _size; public Photo() {} public Photo(String uri, String title, int w, int h, Size s) { _uri = uri; _title = title; _width = w; _height = h; _size = s; } public String getUri() { return _uri; } public String getTitle() { return _title; } public int getWidth() { return _width; } public int getHeight() { return _height; } public Size getSize() { return _size; } public void setUri(String u) { _uri = u; } public void setTitle(String t) { _title = t; } public void setWidth(int w) { _width = w; } public void setHeight(int h) { _height = h; } public void setSize(Size s) { _size = s; } private static Size findSize(String id) { if (id.charAt(0) == 'L') { if ("LARGE".equals(id)) { return Size.LARGE; } } else if ("SMALL".equals(id)) { return Size.SMALL; } throw new IllegalArgumentException(); } public static Photo deserialize(JsonParser p) throws IOException { Photo photo = new Photo(); while (p.nextToken() == JsonToken.PROPERTY_NAME) { String name = p.currentName(); p.nextToken(); Integer I = sFields.get(name); if (I != null) { switch (I.intValue()) { case F_URI: photo.setUri(p.getString()); continue; case F_TITLE: photo.setTitle(p.getString()); continue; case F_WIDTH: photo.setWidth(p.getIntValue()); continue; case F_HEIGHT: photo.setHeight(p.getIntValue()); continue; case F_SIZE: photo.setSize(findSize(p.getString())); continue; } } throw new IOException("Unknown field '"+name+"'"); } if (p.currentToken() != JsonToken.END_OBJECT) { throw new IOException("Need END_OBJECT to complete Photo"); } return photo; } public void serialize(JsonGenerator g) throws IOException { g.writeStartObject(); g.writeStringProperty("uri", _uri); g.writeStringProperty("title", _title); g.writeNumberProperty("width", _width); g.writeNumberProperty("height", _height); g.writeStringProperty("size", (_size == null) ? null : _size.name()); g.writeEndObject(); } } @JsonPropertyOrder({"player","uri","title","width","height","format","duration","size","bitrate","persons","copyright"}) public static class Content { public final static int F_PLAYER = 0; public final static int F_URI = 1; public final static int F_TITLE = 2; public final static int F_WIDTH = 3; public final static int F_HEIGHT = 4; public final static int F_FORMAT = 5; public final static int F_DURATION = 6; public final static int F_SIZE = 7; public final static int F_BITRATE = 8; public final static int F_PERSONS = 9; public final static int F_COPYRIGHT = 10; public final static HashMap sFields = new HashMap(); static { sFields.put("player", F_PLAYER); sFields.put("uri", F_URI); sFields.put("title", F_TITLE); sFields.put("width", F_WIDTH); sFields.put("height", F_HEIGHT); sFields.put("format", F_FORMAT); sFields.put("duration", F_DURATION); sFields.put("size", F_SIZE); sFields.put("bitrate", F_BITRATE); sFields.put("persons", F_PERSONS); sFields.put("copyright", F_COPYRIGHT); } private Player _player; private String _uri; private String _title; private int _width; private int _height; private String _format; private long _duration; private long _size; private int _bitrate; private List _persons; private String _copyright; public Content() { } public void addPerson(String p) { if (_persons == null) { _persons = new ArrayList(); } _persons.add(p); } public Player getPlayer() { return _player; } public String getUri() { return _uri; } public String getTitle() { return _title; } public int getWidth() { return _width; } public int getHeight() { return _height; } public String getFormat() { return _format; } public long getDuration() { return _duration; } public long getSize() { return _size; } public int getBitrate() { return _bitrate; } public List getPersons() { return _persons; } public String getCopyright() { return _copyright; } public void setPlayer(Player p) { _player = p; } public void setUri(String u) { _uri = u; } public void setTitle(String t) { _title = t; } public void setWidth(int w) { _width = w; } public void setHeight(int h) { _height = h; } public void setFormat(String f) { _format = f; } public void setDuration(long d) { _duration = d; } public void setSize(long s) { _size = s; } public void setBitrate(int b) { _bitrate = b; } public void setPersons(List p) { _persons = p; } public void setCopyright(String c) { _copyright = c; } private static Player findPlayer(String id) { if ("JAVA".equals(id)) { return Player.JAVA; } if ("FLASH".equals(id)) { return Player.FLASH; } throw new IllegalArgumentException("Weird Player value of '"+id+"'"); } public static Content deserialize(JsonParser p) throws IOException { if (p.nextToken() != JsonToken.START_OBJECT) { throw new IOException("Need START_OBJECT for Content"); } Content content = new Content(); while (p.nextToken() == JsonToken.PROPERTY_NAME) { String name = p.currentName(); p.nextToken(); Integer I = sFields.get(name); if (I != null) { switch (I.intValue()) { case F_PLAYER: content.setPlayer(findPlayer(p.getString())); case F_URI: content.setUri(p.getString()); continue; case F_TITLE: content.setTitle(p.getString()); continue; case F_WIDTH: content.setWidth(p.getIntValue()); continue; case F_HEIGHT: content.setHeight(p.getIntValue()); continue; case F_FORMAT: content.setCopyright(p.getString()); continue; case F_DURATION: content.setDuration(p.getLongValue()); continue; case F_SIZE: content.setSize(p.getLongValue()); continue; case F_BITRATE: content.setBitrate(p.getIntValue()); continue; case F_PERSONS: content.setPersons(deserializePersons(p)); continue; case F_COPYRIGHT: content.setCopyright(p.getString()); continue; } } throw new IOException("Unknown field '"+name+"'"); } if (p.currentToken() != JsonToken.END_OBJECT) { throw new IOException("Need END_OBJECT to complete Content"); } return content; } private static List deserializePersons(JsonParser p) throws IOException { if (p.currentToken() != JsonToken.START_ARRAY) { throw new IOException("Need START_ARRAY for List of Persons (got "+p.currentToken()+")"); } ArrayList persons = new ArrayList(4); while (p.nextToken() == JsonToken.VALUE_STRING) { persons.add(p.getString()); } if (p.currentToken() != JsonToken.END_ARRAY) { throw new IOException("Need END_ARRAY to complete List of Persons"); } return persons; } public void serialize(JsonGenerator g) throws IOException { g.writeStartObject(); g.writeStringProperty("player", (_player == null) ? null : _player.name()); g.writeStringProperty("uri", _uri); g.writeStringProperty("title", _title); g.writeNumberProperty("width", _width); g.writeNumberProperty("height", _height); g.writeStringProperty("format", _format); g.writeNumberProperty("duration", _duration); g.writeNumberProperty("size", _size); g.writeNumberProperty("bitrate", _bitrate); g.writeStringProperty("copyright", _copyright); if (_persons == null) { g.writeNullProperty("persons"); } else { g.writeArrayPropertyStart("persons"); for (String p : _persons) { g.writeString(p); } g.writeEndArray(); } g.writeEndObject(); } } } ================================================ FILE: yaml/src/test/java/perf/YAMLDeserPerf.java ================================================ package perf; import tools.jackson.core.*; import tools.jackson.databind.JavaType; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.YAMLMapper; /** * Micro-benchmark for comparing performance of bean deserialization */ public final class YAMLDeserPerf { /* /********************************************************** /* Actual test /********************************************************** */ private final int REPS; private YAMLDeserPerf() { // Let's try to guestimate suitable size REPS = 9000; } private MediaItem buildItem() { MediaItem.Content content = new MediaItem.Content(); content.setPlayer(MediaItem.Player.JAVA); content.setUri("http://javaone.com/keynote.mpg"); content.setTitle("Javaone Keynote"); content.setWidth(640); content.setHeight(480); content.setFormat("video/mpeg4"); content.setDuration(18000000L); content.setSize(58982400L); content.setBitrate(262144); content.setCopyright("None"); content.addPerson("Bill Gates"); content.addPerson("Steve Jobs"); MediaItem item = new MediaItem(content); item.addPhoto(new MediaItem.Photo("http://javaone.com/keynote_large.jpg", "Javaone Keynote", 1024, 768, MediaItem.Size.LARGE)); item.addPhoto(new MediaItem.Photo("http://javaone.com/keynote_small.jpg", "Javaone Keynote", 320, 240, MediaItem.Size.SMALL)); return item; } public void test() throws Exception { int sum = 0; final MediaItem item = buildItem(); // JsonFactory jsonF = new JsonFactory(); // final ObjectMapper jsonMapper = new ObjectMapper(jsonF); final ObjectMapper yamlMapper = new YAMLMapper(); // final ObjectMapper jsonMapper = new ObjectMapper(jsonF); // jsonMapper.configure(SerializationConfig.Feature.USE_STATIC_TYPING, true); // Use Jackson? // byte[] json = jsonMapper.writeValueAsBytes(item); byte[] yaml = yamlMapper.writeValueAsBytes(item); System.out.println("Warmed up: data size is "+yaml.length+" bytes; "+REPS+" reps -> " +((REPS * yaml.length) >> 10)+" kB per iteration"); System.out.println(); // for debugging: // System.err.println("JSON = "+jsonMapper.writerWithDefaultPrettyPrinter().writeValueAsString(item)); int round = 0; while (true) { // try { Thread.sleep(100L); } catch (InterruptedException ie) { } // int round = 2; long curr = System.currentTimeMillis(); String msg; round = (++round % 2); //if (true) round = 3; boolean lf = (round == 0); switch (round) { case 0: case 1: msg = "Deserialize, bind, YAML"; sum += testDeser(yamlMapper, yaml, REPS); break; /* case 0: msg = "Deserialize, manual, YAML"; sum += testDeserUsingParser(yamlMapper, yaml, REPS); break; */ default: throw new Error("Internal error"); } curr = System.currentTimeMillis() - curr; if (lf) { System.out.println(); } System.out.println("Test '"+msg+"' -> "+curr+" msecs (" +(sum & 0xFF)+")."); } } protected int testDeser(ObjectMapper mapper, byte[] input, int reps) throws Exception { JavaType type = mapper.constructType(MediaItem.class); MediaItem item = null; for (int i = 0; i < reps; ++i) { item = mapper.readValue(input, 0, input.length, type); } return item.hashCode(); // just to get some non-optimizable number } protected int testDeserUsingParser(ObjectMapper mapper, byte[] input, int reps) throws Exception { MediaItem item = null; for (int i = 0; i < reps; ++i) { JsonParser p = mapper.createParser(input); item = MediaItem.deserialize(p); p.close(); } return item.hashCode(); // just to get some non-optimizable number } public static void main(String[] args) throws Exception { new YAMLDeserPerf().test(); } } ================================================ FILE: yaml/src/test/java/perf/YAMLSerPerf.java ================================================ package perf; import java.io.ByteArrayOutputStream; import tools.jackson.core.*; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.YAMLMapper; public final class YAMLSerPerf { /* /********************************************************** /* Actual test /********************************************************** */ private final int REPS; private YAMLSerPerf() throws Exception { // Let's try to guesstimate suitable size... REPS = 6000; } private MediaItem buildItem() { MediaItem.Content content = new MediaItem.Content(); content.setPlayer(MediaItem.Player.JAVA); content.setUri("http://javaone.com/keynote.mpg"); content.setTitle("Javaone Keynote"); content.setWidth(640); content.setHeight(480); content.setFormat("video/mpeg4"); content.setDuration(18000000L); content.setSize(58982400L); content.setBitrate(262144); content.setCopyright("None"); content.addPerson("Bill Gates"); content.addPerson("Steve Jobs"); MediaItem item = new MediaItem(content); item.addPhoto(new MediaItem.Photo("http://javaone.com/keynote_large.jpg", "Javaone Keynote", 1024, 768, MediaItem.Size.LARGE)); item.addPhoto(new MediaItem.Photo("http://javaone.com/keynote_small.jpg", "Javaone Keynote", 320, 240, MediaItem.Size.SMALL)); return item; } public void test() throws Exception { int i = 0; int sum = 0; ByteArrayOutputStream result = new ByteArrayOutputStream(); final MediaItem item = buildItem(); final ObjectMapper jsonMapper = new YAMLMapper(); JsonNode root = jsonMapper.valueToTree(item); while (true) { // Thread.sleep(150L); ++i; int round = (i % 3); // override? round = 0; long curr = System.currentTimeMillis(); String msg; switch (round) { case 0: msg = "Serialize, JSON"; sum += testObjectSer(jsonMapper, item, REPS+REPS, result); break; case 1: msg = "Serialize, JSON/manual"; sum += testObjectSerViaStreaming(jsonMapper, item, REPS+REPS, result); break; case 2: msg = "Serialize, JsonNode"; sum += testNodeSer(jsonMapper, root, REPS+REPS, result); // sum += testNodeSer(smileMapper, root, REPS+REPS, result); break; default: throw new Error("Internal error"); } curr = System.currentTimeMillis() - curr; if (round == 0) { System.out.println(); } System.out.println("Test '"+msg+"' -> "+curr+" msecs ("+(sum & 0xFF)+")."); if ((i & 0x1F) == 0) { // GC every 64 rounds System.out.println("[GC]"); Thread.sleep(20L); System.gc(); Thread.sleep(20L); } } } protected int testObjectSer(ObjectMapper mapper, Object value, int reps, ByteArrayOutputStream result) throws Exception { for (int i = 0; i < reps; ++i) { result.reset(); mapper.writeValue(result, value); } return result.size(); // just to get some non-optimizable number } protected int testNodeSer(ObjectMapper mapper, JsonNode value, int reps, ByteArrayOutputStream result) throws Exception { for (int i = 0; i < reps; ++i) { result.reset(); mapper.writeValue(result, value); } return result.size(); // just to get some non-optimizable number } protected int testObjectSerViaStreaming(ObjectMapper mapper, MediaItem value, int reps, ByteArrayOutputStream result) throws Exception { for (int i = 0; i < reps; ++i) { result.reset(); JsonGenerator jgen = mapper.createGenerator(result, JsonEncoding.UTF8); value.serialize(jgen); jgen.close(); } return result.size(); // just to get some non-optimizable number } public static void main(String[] args) throws Exception { new YAMLSerPerf().test(); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ExceptionConversionTest.java ================================================ package tools.jackson.dataformat.yaml; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.fail; /** * Tests to try to ensure that SnakeYAML exceptions are not leaked, * both because they are problematic on OSGi runtimes (depending on * whether shading is used) and because it is generally a bad idea * to leak implementation details. */ public class ExceptionConversionTest extends ModuleTestBase { @Test public void testSimpleParsingLeakage() throws Exception { YAMLMapper mapper = newObjectMapper(); try { mapper.readTree("foo:\nbar: true\n baz: false"); fail("Should not pass with invalid YAML"); } catch (org.snakeyaml.engine.v2.exceptions.ScannerException e) { fail("Internal exception type: "+e); } catch (JacksonYAMLParseException e) { // as of 2.8, this is the type to expect // (subtype of StreamReadException) verifyException(e, "mapping values are not allowed here"); } catch (Exception e) { fail("Unknown exception: "+e); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/JDKSerializabilityTest.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import java.util.Arrays; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotSame; import static org.junit.jupiter.api.Assertions.assertSame; import static org.junit.jupiter.api.Assertions.assertTrue; public class JDKSerializabilityTest extends ModuleTestBase { public void testApacheMapperWithModule() throws Exception { // very simple validation: should still work wrt serialization YAMLMapper unfrozenMapper = serializeAndDeserialize(new YAMLMapper()); // and then simple verification that write+read still works Object input = _simpleData(); byte[] encoded = unfrozenMapper.writeValueAsBytes(input); final Object result = unfrozenMapper.readerFor(Object.class) .readValue(encoded); assertEquals(result, input); // and also verify `rebuild()` works: YAMLMapper copy = unfrozenMapper.rebuild().build(); assertNotSame(unfrozenMapper, copy); // with 3.x, factories are immutable so they need not be unshared: assertSame(unfrozenMapper.tokenStreamFactory(), copy.tokenStreamFactory()); final Object result2 = copy.readerFor(Object.class) .readValue(encoded); assertEquals(input, result2); } private YAMLMapper serializeAndDeserialize(YAMLMapper mapper) throws Exception { ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); ObjectOutputStream outputStream = new ObjectOutputStream(byteArrayOutputStream); outputStream.writeObject(mapper); byte[] serializedBytes = byteArrayOutputStream.toByteArray(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(serializedBytes); ObjectInputStream inputStream = new ObjectInputStream(byteArrayInputStream); Object deserializedObject = inputStream.readObject(); assertTrue(deserializedObject instanceof YAMLMapper); return (YAMLMapper) deserializedObject; } private Object _simpleData() { return Arrays.asList("foobar", 378, true); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ModuleTestBase.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import java.nio.charset.StandardCharsets; import java.util.Arrays; import tools.jackson.core.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; public abstract class ModuleTestBase { /** * Slightly modified sample class from Jackson tutorial ("JacksonInFiveMinutes") */ protected static class FiveMinuteUser { public enum Gender { MALE, FEMALE }; private Gender _gender; public String firstName, lastName; private boolean _isVerified; private byte[] _userImage; public FiveMinuteUser() { } public FiveMinuteUser(String first, String last, boolean verified, Gender g, byte[] data) { firstName = first; lastName = last; _isVerified = verified; _gender = g; _userImage = data; } public boolean isVerified() { return _isVerified; } public Gender getGender() { return _gender; } public byte[] getUserImage() { return _userImage; } public void setVerified(boolean b) { _isVerified = b; } public void setGender(Gender g) { _gender = g; } public void setUserImage(byte[] b) { _userImage = b; } @Override public boolean equals(Object o) { if (o == this) return true; if (o == null || o.getClass() != getClass()) return false; FiveMinuteUser other = (FiveMinuteUser) o; if (_isVerified != other._isVerified) return false; if (_gender != other._gender) return false; if (!firstName.equals(other.firstName)) return false; if (!lastName.equals(other.lastName)) return false; byte[] otherImage = other._userImage; if (otherImage.length != _userImage.length) return false; for (int i = 0, len = _userImage.length; i < len; ++i) { if (_userImage[i] != otherImage[i]) { return false; } } return true; } } protected ModuleTestBase() { } /* /********************************************************************** /* Helper methods, setup /********************************************************************** */ protected YAMLFactoryBuilder streamFactoryBuilder() { return YAMLFactory.builder(); } protected YAMLMapper newObjectMapper() { return mapperBuilder().build(); } protected YAMLMapper.Builder mapperBuilder() { return YAMLMapper.builder(); } protected YAMLMapper.Builder mapperBuilder(YAMLFactory f) { return YAMLMapper.builder(f); } /* /********************************************************** /* Helper methods; low-level /********************************************************** */ public String quote(String str) { return '"'+str+'"'; } public byte[] utf8(String str) { return str.getBytes(StandardCharsets.UTF_8); } protected void assertToken(JsonToken expToken, JsonToken actToken) { if (actToken != expToken) { fail("Expected token "+expToken+", current token "+actToken); } } protected void assertToken(JsonToken expToken, JsonParser jp) { assertToken(expToken, jp.currentToken()); } protected void assertType(Object ob, Class expType) { if (ob == null) { fail("Expected an object of type "+expType.getName()+", got null"); } Class cls = ob.getClass(); if (!expType.isAssignableFrom(cls)) { fail("Expected type "+expType.getName()+", got "+cls.getName()); } } protected void assertYAML(String expOrig, String actOrig) { String exp = trimDocMarker(expOrig).trim(); String act = trimDocMarker(actOrig).trim(); if (!exp.equals(act)) { // use std assert to show more accurately where differences are: assertEquals(expOrig, actOrig); } } protected void assertLocation(JsonParser jp, int lineNr, int columnNr, int charOffset, int byteOffset) { TokenStreamLocation loc = jp.currentTokenLocation(); assertEquals(lineNr, loc.getLineNr()); assertEquals(columnNr, loc.getColumnNr()); assertEquals(charOffset, loc.getCharOffset()); assertEquals(byteOffset, loc.getByteOffset()); } /** * Method that gets textual contents of the current token using * available methods, and ensures results are consistent, before * returning them */ protected String getAndVerifyText(JsonParser jp) { // Ok, let's verify other accessors int actLen = jp.getStringLength(); char[] ch = jp.getStringCharacters(); String str2 = new String(ch, jp.getStringOffset(), actLen); String str = jp.getString(); if (str.length() != actLen) { fail("Internal problem (jp.token == "+jp.currentToken()+"): jp.getText().length() ['"+str+"'] == "+str.length()+"; jp.getTextLength() == "+actLen); } assertEquals("String access via getText(), getTextXxx() must be the same", str, str2); return str; } protected void verifyFieldName(JsonParser p, String expName) { assertEquals(expName, p.getString()); assertEquals(expName, p.currentName()); } protected void verifyIntValue(JsonParser jp, long expValue) { // First, via textual assertEquals(String.valueOf(expValue), jp.getString()); } protected void verifyException(Throwable e, String... matches) { String msg = e.getMessage(); String lmsg = (msg == null) ? "" : msg.toLowerCase(); for (String match : matches) { String lmatch = match.toLowerCase(); if (lmsg.indexOf(lmatch) >= 0) { return; } } fail("Expected an exception with one of substrings ("+Arrays.asList(matches)+"): got one with message \""+msg+"\""); } protected static String trimDocMarker(String doc) { if (doc.startsWith("---")) { doc = doc.substring(3); } return doc.trim(); } protected byte[] readResource(String ref) { ByteArrayOutputStream bytes = new ByteArrayOutputStream(); final byte[] buf = new byte[4000]; try (InputStream in = getClass().getResourceAsStream(ref)) { if (in != null) { int len; while ((len = in.read(buf)) > 0) { bytes.write(buf, 0, len); } } } catch (IOException e) { throw new RuntimeException("Failed to read resource '"+ref+"': "+e); } if (bytes.size() == 0) { throw new IllegalArgumentException("Failed to read resource '"+ref+"': empty resource?"); } return bytes.toByteArray(); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/MultipleDocumentsReadTest.java ================================================ package tools.jackson.dataformat.yaml; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.core.type.TypeReference; import tools.jackson.databind.MappingIterator; import static org.junit.jupiter.api.Assertions.assertEquals; public class MultipleDocumentsReadTest extends ModuleTestBase { private final YAMLMapper MAPPER = YAMLMapper.shared(); @Test public void testMultipleDocumentsViaParser() throws Exception { final String YAML = "num: 42\n" +"---\n" +"num: -42" ; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(42, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("42", p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(-42, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("-42", p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); p.close(); } @Test public void testMultipleDocumentsViaIterator() throws Exception { final String YAML = "num: 42\n" +"---\n" +"num: -42" ; MappingIterator> it = MAPPER.readerFor(new TypeReference>() { }).readValues(YAML); assertEquals(42, it.nextValue().get("num").intValue()); assertEquals(-42, it.nextValue().get("num").intValue()); it.close(); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/MultipleDocumentsWriteTest.java ================================================ package tools.jackson.dataformat.yaml; import java.io.StringWriter; import java.util.Arrays; import java.util.Collections; import org.junit.jupiter.api.Test; import tools.jackson.databind.*; import static org.junit.jupiter.api.Assertions.assertEquals; // for [dataformats-text#163] public class MultipleDocumentsWriteTest extends ModuleTestBase { static class POJO163 { public int value; public POJO163(int v) { value = v; } } @Test public void testWriteMultipleDocsBeans() throws Exception { ObjectMapper mapper = newObjectMapper(); StringWriter w = new StringWriter(); try (SequenceWriter seqW = mapper.writer().writeValues(w)) { seqW.write(new POJO163(42)); seqW.write(new POJO163(28)); } w.close(); String yaml = w.toString().trim(); assertEquals("---\nvalue: 42\n---\nvalue: 28", yaml); } @Test public void testWriteMultipleDocsLists() throws Exception { ObjectMapper mapper = newObjectMapper(); StringWriter w = new StringWriter(); try (SequenceWriter seqW = mapper.writer().writeValues(w)) { seqW.write(Arrays.asList(28,12)); seqW.write(Collections.singleton(28)); } w.close(); String yaml = w.toString().trim(); assertEquals("---\n- 28\n- 12\n---\n- 28", yaml); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/TestVersions.java ================================================ package tools.jackson.dataformat.yaml; import java.io.*; import tools.jackson.core.*; import static org.junit.jupiter.api.Assertions.*; public class TestVersions extends ModuleTestBase { private final YAMLMapper MAPPER = newObjectMapper(); @SuppressWarnings("resource") public void testMapperVersions() throws IOException { // Test shared instance for funsies final YAMLMapper mapper = YAMLMapper.shared(); assertVersion(mapper.tokenStreamFactory()); JsonParser p = mapper.createParser("123"); assertVersion(p); p.close(); JsonGenerator gen = mapper.createGenerator(new ByteArrayOutputStream()); assertVersion(gen); } @SuppressWarnings("resource") public void testDefaults() throws Exception { YAMLFactory f = MAPPER.tokenStreamFactory(); assertFalse(f.canHandleBinaryNatively()); assertFalse(f.canUseCharArrays()); JsonParser p = MAPPER.createParser(new StringReader("")); assertTrue(p.canReadObjectId()); assertTrue(p.canReadTypeId()); p.close(); JsonGenerator g = MAPPER.createGenerator(new StringWriter()); assertTrue(g.canOmitProperties()); assertTrue(g.canWriteObjectId()); assertTrue(g.canWriteTypeId()); // note: do not try to close it, no content, exception } /* /********************************************************************** /* Helper methods /********************************************************************** */ private void assertVersion(Versioned vers) { assertEquals(PackageVersion.VERSION, vers.version()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/YAMLMapperTest.java ================================================ package tools.jackson.dataformat.yaml; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.Test; public class YAMLMapperTest extends ModuleTestBase { // for [dataformats-text#581] @Test void testFormatFeatureDefaults() { YAMLMapper mapper = YAMLMapper.shared(); assertTrue(mapper.isEnabled(YAMLReadFeature.EMPTY_STRING_AS_NULL)); assertFalse(mapper.isEnabled(YAMLWriteFeature.CANONICAL_OUTPUT)); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/constraints/DeeplyNestedYAMLReadWriteTest.java ================================================ package tools.jackson.dataformat.yaml.constraints; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.databind.JsonNode; import tools.jackson.databind.node.ObjectNode; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; /** * Unit test(s) for verifying handling of maximum nesting depth * for reading (StreamReadConstraints) and writing (StreamWriteConstraints). */ public class DeeplyNestedYAMLReadWriteTest extends ModuleTestBase { private final YAMLMapper YAML_MAPPER = new YAMLMapper( YAMLFactory.builder() // Use higher limit for writing to simplify testing setup .streamReadConstraints(StreamReadConstraints.builder() .maxNestingDepth(10).build()) .streamWriteConstraints(StreamWriteConstraints.builder() .maxNestingDepth(12).build()) .build() ); @Test public void testDeepNestingRead() throws Exception { final String DOC = YAML_MAPPER.writeValueAsString(createDeepNestedDoc(11)); try (JsonParser p = YAML_MAPPER.createParser(DOC)) { _testDeepNestingRead(p); } } private void _testDeepNestingRead(JsonParser p) throws Exception { try { while (p.nextToken() != null) { } fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { assertEquals("Document nesting depth (11) exceeds the maximum allowed (10, from `StreamReadConstraints.getMaxNestingDepth()`)", e.getMessage()); } } @Test public void testDeepNestingWrite() throws Exception { final JsonNode docRoot = createDeepNestedDoc(13); try { YAML_MAPPER.writeValueAsString(docRoot); fail("Should not pass"); } catch (StreamConstraintsException e) { assertEquals("Document nesting depth (13) exceeds the maximum allowed (12, from `StreamWriteConstraints.getMaxNestingDepth()`)", e.getMessage()); } } private JsonNode createDeepNestedDoc(final int depth) throws Exception { final ObjectNode root = YAML_MAPPER.createObjectNode(); ObjectNode curr = root; for (int i = 0; i < depth; ++i) { curr = curr.putObject("nested"+i); } curr.put("value", 42); return root; } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/constraints/YAMLReadConstraintsTest.java ================================================ package tools.jackson.dataformat.yaml.constraints; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import static org.junit.jupiter.api.Assertions.fail; /** * Tests for {@link StreamReadConstraints} enforcement of max name length * and max String value length in YAML parsing. * * @see [dataformats-text#636] */ public class YAMLReadConstraintsTest extends ModuleTestBase { private final static int MAX_NAME_LEN = 100; private final static int MAX_STRING_LEN = 200; private final YAMLMapper NAME_LIMIT_MAPPER = new YAMLMapper( YAMLFactory.builder() .streamReadConstraints(StreamReadConstraints.builder() .maxNameLength(MAX_NAME_LEN) .build()) .build()); private final YAMLMapper STRING_LIMIT_MAPPER = new YAMLMapper( YAMLFactory.builder() .streamReadConstraints(StreamReadConstraints.builder() .maxStringLength(MAX_STRING_LEN) .build()) .build()); @Test public void testNameTooLong() throws Exception { final String longName = "a".repeat(MAX_NAME_LEN + 50); final String doc = longName + ": value\n"; try { NAME_LIMIT_MAPPER.readTree(doc); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "Name length"); verifyException(e, "exceeds the maximum allowed"); } } @Test public void testNameWithinLimit() throws Exception { final String name = "a".repeat(MAX_NAME_LEN); final String doc = name + ": value\n"; // Should complete without exception NAME_LIMIT_MAPPER.readTree(doc); } @Test public void testStringValueTooLong() throws Exception { final String longValue = "a".repeat(MAX_STRING_LEN + 50); final String doc = "key: " + longValue + "\n"; try { STRING_LIMIT_MAPPER.readTree(doc); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { verifyException(e, "String value length"); verifyException(e, "exceeds the maximum allowed"); } } @Test public void testStringValueWithinLimit() throws Exception { final String value = "a".repeat(MAX_STRING_LEN); final String doc = "key: " + value + "\n"; // Should complete without exception STRING_LIMIT_MAPPER.readTree(doc); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/BinaryYAMLReadTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.io.ByteArrayOutputStream; import java.util.Arrays; import java.util.Random; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.databind.*; import tools.jackson.databind.node.JsonNodeType; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; public class BinaryYAMLReadTest extends ModuleTestBase { private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testBinaryViaTree() throws Exception { final String BASE64 = " R0lGODlhDAAMAIQAAP//9/X1\n" +" 7unp5WZmZgAAAOfn515eXvPz\n" +" 7Y6OjuDg4J+fn5OTk6enp56e\n" +" nmleECcgggoBADs="; final String DOC = String.format( "---\n" +"picture: !!binary |\n" +"%s\n", BASE64); JsonNode bean = null; try { bean = MAPPER.readTree(DOC); } catch (JacksonException e) { fail("Should have decoded properly, instead got "+e); } final JsonNode picture = bean.get("picture"); assertNotNull(picture); assertEquals(JsonNodeType.BINARY, picture.getNodeType()); final byte[] gif = picture.binaryValue(); assertNotNull(gif); assertEquals(65, gif.length); final byte[] actualFileHeader = Arrays.copyOfRange(gif, 0, 6); final byte[] expectedFileHeader = new byte[]{'G', 'I', 'F', '8', '9', 'a'}; assertArrayEquals(expectedFileHeader, actualFileHeader); } // [dataformats-text#90] @Test public void testReadLongBinary() throws Exception { final byte[] data = new byte[1000]; new Random(1234).nextBytes(data); ByteArrayOutputStream os = new ByteArrayOutputStream(); try (JsonGenerator gen = MAPPER.createGenerator(os)) { gen.writeStartObject(); gen.writeBinaryProperty("data", data); gen.writeEndObject(); gen.close(); } try (JsonParser parser = MAPPER.createParser(os.toByteArray())) { assertEquals(JsonToken.START_OBJECT, parser.nextToken()); assertEquals(JsonToken.PROPERTY_NAME, parser.nextToken()); assertEquals("data", parser.currentName()); assertEquals(JsonToken.VALUE_EMBEDDED_OBJECT, parser.nextToken()); assertArrayEquals(data, parser.getBinaryValue()); assertEquals(JsonToken.END_OBJECT, parser.nextToken()); assertNull(parser.nextToken()); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/DatabindAdvancedTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class DatabindAdvancedTest extends ModuleTestBase { enum Size { SMALL, LARGE; } static class MediaItem { private MediaContent _content; private List _images; public MediaItem() { } public MediaItem(MediaContent c) { _content = c; } public void addPhoto(Image p) { if (_images == null) { _images = new ArrayList(); } _images.add(p); } public List getImages() { return _images; } public void setImages(List p) { _images = p; } public MediaContent getContent() { return _content; } public void setContent(MediaContent c) { _content = c; } } static class MediaContent { public enum Player { JAVA, FLASH; } private Player _player; private String _uri; private String _title; private int _width; private int _height; private String _format; private long _duration; private long _size; private int _bitrate; private List _persons; private String _copyright; public MediaContent() { } protected MediaContent(MediaContent src) { _player = src._player; _uri = src._uri; _title = src._title; _width = src._width; _height = src._height; _format = src._format; _duration = src._duration; _size = src._size; _bitrate = src._bitrate; _persons = src._persons; _copyright = src._copyright; } public void addPerson(String p) { if (_persons == null) { _persons = new ArrayList(); } _persons.add(p); } public Player getPlayer() { return _player; } public String getUri() { return _uri; } public String getTitle() { return _title; } public int getWidth() { return _width; } public int getHeight() { return _height; } public String getFormat() { return _format; } public long getDuration() { return _duration; } public long getSize() { return _size; } public int getBitrate() { return _bitrate; } public List getPersons() { return _persons; } public String getCopyright() { return _copyright; } public void setPlayer(Player p) { _player = p; } public void setUri(String u) { _uri = u; } public void setTitle(String t) { _title = t; } public void setWidth(int w) { _width = w; } public void setHeight(int h) { _height = h; } public void setFormat(String f) { _format = f; } public void setDuration(long d) { _duration = d; } public void setSize(long s) { _size = s; } public void setBitrate(int b) { _bitrate = b; } public void setPersons(List p) { _persons = p; } public void setCopyright(String c) { _copyright = c; } } static class Image { private String _uri; private String _title; private int _width; private int _height; private Size _size; public Image() {} public Image(String uri, String title, int w, int h, Size s) { _uri = uri; _title = title; _width = w; _height = h; _size = s; } public String getUri() { return _uri; } public String getTitle() { return _title; } public int getWidth() { return _width; } public int getHeight() { return _height; } public Size getSize() { return _size; } public void setUri(String u) { _uri = u; } public void setTitle(String t) { _title = t; } public void setWidth(int w) { _width = w; } public void setHeight(int h) { _height = h; } public void setSize(Size s) { _size = s; } } /* /********************************************************** /* Test methods /********************************************************** */ @Test public void testReadComplexPojo() throws Exception { ObjectMapper mapper = newObjectMapper(); String YAML = "---\n" +"content:\n" +" uri: 'http://javaone.com/keynote.mpg'\n" +" title: 'Javaone Keynote'\n" +" width: 640\n" +" height: 480\n" +" format: 'video/mpg4'\n" +" duration: 18000000\n" +" size: 58982400\n" +" bitrate: 262144\n" +" persons:\n" +" - 'Bill Gates'\n" +" - 'Steve Jobs'\n" +" player: 'JAVA'\n" +" copyright: 'None'\n" +"images:\n" +"- uri: 'http://javaone.com/keynote_large.jpg'\n" +" title: 'Javaone Keynote'\n" +" width: 1024\n" +" height: 768\n" +" size: 'LARGE'\n" +"- uri: 'http://javaone.com/keynote_small.jpg'\n" +" title: 'Javaone Keynote'\n" +" width: 320\n" +" height: 240\n" +" size: 'SMALL'\n" ; MediaItem item = mapper.readValue(YAML, MediaItem.class); assertNotNull(item); assertNotNull(item.getContent()); assertEquals(640, item.getContent().getWidth()); assertEquals(480, item.getContent().getHeight()); assertNotNull(item.getImages()); assertEquals(2, item.getImages().size()); assertEquals(Size.SMALL, item.getImages().get(1).getSize()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/DatabindReadTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.io.ByteArrayInputStream; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonProperty; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.SerializationFeature; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; /** * Unit tests for checking functioning of the databinding * on top of YAML layer. */ public class DatabindReadTest extends ModuleTestBase { static class EmptyBean { } static class Outer { public Name name; public int age; } static class Name { public String first, last; } // [dataformats-text#205] static class Release205 { public String version; public List artifacts; } static class Artifact205 { @JsonProperty("jira-project") private String jiraProject; private String name; private String version; public String getJiraProject() { return jiraProject; } public void setJiraProject(String jiraProject) { this.jiraProject = jiraProject; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } } /* /********************************************************** /* Test methods /********************************************************** */ private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testSimpleNested() throws Exception { final String YAML = "name:\n" +" first: Bob\n" +" last: De Burger\n" +"age: 28" ; // first, no doc marker Outer outer = MAPPER.readValue(YAML, Outer.class); assertNotNull(outer); assertNotNull(outer.name); assertEquals("Bob", outer.name.first); assertEquals("De Burger", outer.name.last); assertEquals(28, outer.age); // then with Outer outer2 = MAPPER.readValue("---\n"+YAML, Outer.class); assertNotNull(outer2); assertNotNull(outer2.name); assertEquals(outer.name.first, outer2.name.first); assertEquals(outer.name.last, outer2.name.last); assertEquals(outer.age, outer2.age); } @Test public void testBasicUntyped() throws Exception { final String YAML = "template: Hello, %s!\n" +"database:\n" +" driverClass: org.h2.Driver\n" +" user: scott\n" +" password: tiger\n" +" extra: [1,2]" ; Map result = MAPPER.readValue(YAML, Map.class); // sanity check first: assertEquals(2, result.size()); // then literal comparison; easiest to just write as JSON... ObjectMapper jsonMapper = new ObjectMapper(); String json = jsonMapper.writeValueAsString(result); String EXP = "{\"template\":\"Hello, %s!\",\"database\":{" +"\"driverClass\":\"org.h2.Driver\",\"user\":\"scott\",\"password\":\"tiger\"," +"\"extra\":[1,2]}}"; assertEquals(EXP, json); } @Test public void testBasicPOJO() throws Exception { final String YAML = "firstName: Billy\n" +"lastName: Baggins\n" +"gender: MALE\n" +"verified: true\n" +"userImage: AQIDBAU=" // [1,2,3,4,5] ; FiveMinuteUser user = MAPPER.readValue(YAML, FiveMinuteUser.class); assertEquals("Billy", user.firstName); assertEquals("Baggins", user.lastName); assertEquals(FiveMinuteUser.Gender.MALE, user.getGender()); assertTrue(user.isVerified()); byte[] data = user.getUserImage(); assertNotNull(data); assertArrayEquals(new byte[] { 1, 2, 3, 4, 5 }, data); } @Test public void testIssue1() throws Exception { final byte[] YAML = "firstName: Billy".getBytes("UTF-8"); FiveMinuteUser user = new FiveMinuteUser(); user.firstName = "Bubba"; MAPPER.readerForUpdating(user).readValue(new ByteArrayInputStream(YAML)); assertEquals("Billy", user.firstName); } @Test public void testUUIDs() throws Exception { UUID uuid = new UUID(0, 0); String yaml = MAPPER.writeValueAsString(uuid); UUID result = MAPPER.readValue(yaml, UUID.class); assertEquals(uuid, result); } @Test public void testEmptyBean() throws Exception { String yaml = MAPPER.writer() .without(SerializationFeature.FAIL_ON_EMPTY_BEANS) .writeValueAsString(new EmptyBean()); yaml = yaml.trim(); // let's be bit more robust; may or may not get doc marker if (yaml.startsWith("---")) { yaml = yaml.substring(3); } yaml = yaml.trim(); assertEquals("{}", yaml); } // [dataformats-text#205] @Test public void testRenamingIssue205() throws Exception { final String YAML = "version: 2.3.0.RELEASE\n" + "artifacts:\n" + " - jira-project: https://issues.redhat.com/projects/EAPSUP/issues\n" + " name: hibernate\n" + " version: 5.0.15"; Release205 release = MAPPER.readValue(YAML, Release205.class); assertNotNull(release); assertNotNull(release.artifacts); assertEquals(release.artifacts.get(0).getVersion(),"5.0.15"); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/EmptyDocumentDeser154Test.java ================================================ package tools.jackson.dataformat.yaml.deser; import org.junit.jupiter.api.Test; import tools.jackson.databind.exc.MismatchedInputException; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests for [dataformats-text#154]: Empty YAML documents (comment-only or truly empty) * should be deserializable to POJOs with default values */ public class EmptyDocumentDeser154Test extends ModuleTestBase { static class DataWithDefaults { public boolean wireframe = false; public String name = "default"; public int count = 42; } private final YAMLMapper MAPPER = newObjectMapper(); private final YAMLMapper MAPPER_WITH_EMPTY_AS_OBJECT = YAMLMapper.builder() .enable(YAMLReadFeature.EMPTY_DOCUMENT_AS_EMPTY_OBJECT) .build(); // First, verify the default behavior (should still fail for backwards compatibility) @Test public void testCommentOnlyYamlFailsByDefault() throws Exception { String yaml = "#wireframe: true"; // Without the feature enabled, this should still throw MismatchedInputException assertThrows(MismatchedInputException.class, () -> { MAPPER.readValue(yaml, DataWithDefaults.class); }); } @Test public void testEmptyYamlFailsByDefault() throws Exception { String yaml = ""; // Without the feature enabled, this should still throw MismatchedInputException assertThrows(MismatchedInputException.class, () -> { MAPPER.readValue(yaml, DataWithDefaults.class); }); } @Test public void testWhitespaceOnlyYamlFailsByDefault() throws Exception { String yaml = " \n \n"; // Without the feature enabled, this should still throw MismatchedInputException assertThrows(MismatchedInputException.class, () -> { MAPPER.readValue(yaml, DataWithDefaults.class); }); } // Now test with the feature enabled - should work @Test public void testCommentOnlyYamlWithFeature() throws Exception { String yaml = "#wireframe: true"; DataWithDefaults result = MAPPER_WITH_EMPTY_AS_OBJECT.readValue(yaml, DataWithDefaults.class); // Should get default values assertNotNull(result); assertFalse(result.wireframe); assertEquals("default", result.name); assertEquals(42, result.count); } @Test public void testEmptyYamlWithFeature() throws Exception { String yaml = ""; DataWithDefaults result = MAPPER_WITH_EMPTY_AS_OBJECT.readValue(yaml, DataWithDefaults.class); // Should get default values assertNotNull(result); assertFalse(result.wireframe); assertEquals("default", result.name); assertEquals(42, result.count); } @Test public void testWhitespaceOnlyYamlWithFeature() throws Exception { String yaml = " \n \n"; DataWithDefaults result = MAPPER_WITH_EMPTY_AS_OBJECT.readValue(yaml, DataWithDefaults.class); // Should get default values assertNotNull(result); assertFalse(result.wireframe); assertEquals("default", result.name); assertEquals(42, result.count); } @Test public void testMultipleCommentsOnlyYamlWithFeature() throws Exception { String yaml = "# This is a comment\n# Another comment\n # Indented comment"; DataWithDefaults result = MAPPER_WITH_EMPTY_AS_OBJECT.readValue(yaml, DataWithDefaults.class); // Should get default values assertNotNull(result); assertFalse(result.wireframe); assertEquals("default", result.name); assertEquals(42, result.count); } // Verify that valid YAML still works (with and without feature) @Test public void testValidYamlWorks() throws Exception { String yaml = "wireframe: true"; DataWithDefaults result1 = MAPPER.readValue(yaml, DataWithDefaults.class); assertTrue(result1.wireframe); assertEquals("default", result1.name); assertEquals(42, result1.count); DataWithDefaults result2 = MAPPER_WITH_EMPTY_AS_OBJECT.readValue(yaml, DataWithDefaults.class); assertTrue(result2.wireframe); assertEquals("default", result2.name); assertEquals(42, result2.count); } @Test public void testPartialYamlWithFeature() throws Exception { String yaml = "name: custom"; DataWithDefaults result = MAPPER_WITH_EMPTY_AS_OBJECT.readValue(yaml, DataWithDefaults.class); // Should get mix of provided and default values assertNotNull(result); assertFalse(result.wireframe); assertEquals("custom", result.name); assertEquals(42, result.count); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/NameQuoting306Test.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.util.Collections; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import static org.junit.jupiter.api.Assertions.assertEquals; // for [dataformats-text#306] public class NameQuoting306Test extends ModuleTestBase { private final YAMLMapper MAPPER = newObjectMapper(); // for [dataformats-text#306] @Test public void testComplexName() throws Exception { final String key = "SomeKey:\nOtherLine"; Map input = Collections.singletonMap(key, 302); final String doc = MAPPER.writeValueAsString(input); Map actual = MAPPER.readValue(doc, Map.class); assertEquals(input, actual); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/NullFromEmptyString130Test.java ================================================ package tools.jackson.dataformat.yaml.deser; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLReadFeature; import static org.junit.jupiter.api.Assertions.*; public class NullFromEmptyString130Test extends ModuleTestBase { static class Value130 { public String value; public void setValue(String str) { value = str; } } private final YAMLMapper MAPPER = newObjectMapper(); // [dataformats-text#130] @Test public void testEmptyValueToNull130() throws Exception { // by default, empty Strings are coerced: assertTrue(MAPPER.tokenStreamFactory().isEnabled(YAMLReadFeature.EMPTY_STRING_AS_NULL)); { Value130 v = MAPPER.readValue("value: \n", Value130.class); assertNull(v.value); v = MAPPER.readerFor(Value130.class) .readValue("value: \n"); assertNull(v.value); } // but can change that: { Value130 v = MAPPER.readerFor(Value130.class) .without(YAMLReadFeature.EMPTY_STRING_AS_NULL) .readValue("value: \n"); assertEquals("", v.value); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/NumberDeserWithYAMLTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.io.StringReader; import java.math.BigDecimal; import java.math.BigInteger; import java.util.List; import java.util.Map; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.core.StreamReadConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.databind.DeserializationFeature; import tools.jackson.databind.JsonNode; import tools.jackson.databind.MapperFeature; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.ObjectReader; import tools.jackson.databind.exc.MismatchedInputException; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import static org.junit.jupiter.api.Assertions.*; // Tests copied from databind "JDKNumberDeserTest": may need more clean up // work remove useless ones, make more YAML-y (YAML parsers can typically // parse most JSON content, but such content is not very common) public class NumberDeserWithYAMLTest extends ModuleTestBase { // [databind#2644] static class NodeRoot2644 { public String type; @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXTERNAL_PROPERTY, property = "type") @JsonSubTypes(value = { @JsonSubTypes.Type(value = NodeParent2644.class, name = "NodeParent") }) public Node2644 node; } public static class NodeParent2644 extends Node2644 { } public static abstract class Node2644 { @JsonProperty("amount") BigDecimal val; public BigDecimal getVal() { return val; } public void setVal(BigDecimal val) { this.val = val; } } // [databind#2784] static class BigDecimalHolder2784 { public BigDecimal value; } static class NestedBigDecimalHolder2784 { @JsonUnwrapped public BigDecimalHolder2784 holder; } /* /********************************************************************** /* Test methods /********************************************************************** */ private final YAMLMapper MAPPER = newObjectMapper(); @Test public void testNaN() throws Exception { Float result = MAPPER.readValue(" \"NaN\"", Float.class); assertEquals(Float.valueOf(Float.NaN), result); Double d = MAPPER.readValue(" \"NaN\"", Double.class); assertEquals(Double.valueOf(Double.NaN), d); Number num = MAPPER.readValue(" \"NaN\"", Number.class); assertEquals(Double.valueOf(Double.NaN), num); } @Test public void testDoubleInf() throws Exception { Double result = MAPPER.readValue(" \""+Double.POSITIVE_INFINITY+"\"", Double.class); assertEquals(Double.valueOf(Double.POSITIVE_INFINITY), result); result = MAPPER.readValue(" \""+Double.NEGATIVE_INFINITY+"\"", Double.class); assertEquals(Double.valueOf(Double.NEGATIVE_INFINITY), result); } // 01-Mar-2017, tatu: This is bit tricky... in some ways, mapping to "empty value" // would be best; but due to legacy reasons becomes `null` at this point @Test public void testEmptyAsNumber() throws Exception { assertNull(MAPPER.readValue(quote(""), Byte.class)); assertNull(MAPPER.readValue(quote(""), Short.class)); assertNull(MAPPER.readValue(quote(""), Character.class)); assertNull(MAPPER.readValue(quote(""), Integer.class)); assertNull(MAPPER.readValue(quote(""), Long.class)); assertNull(MAPPER.readValue(quote(""), Float.class)); assertNull(MAPPER.readValue(quote(""), Double.class)); assertNull(MAPPER.readValue(quote(""), BigInteger.class)); assertNull(MAPPER.readValue(quote(""), BigDecimal.class)); } @Test public void testTextualNullAsNumber() throws Exception { final String NULL_JSON = quote("null"); assertNull(MAPPER.readValue(NULL_JSON, Byte.class)); assertNull(MAPPER.readValue(NULL_JSON, Short.class)); // Character is bit special, can't do: // assertNull(MAPPER.readValue(JSON, Character.class)); assertNull(MAPPER.readValue(NULL_JSON, Integer.class)); assertNull(MAPPER.readValue(NULL_JSON, Long.class)); assertNull(MAPPER.readValue(NULL_JSON, Float.class)); assertNull(MAPPER.readValue(NULL_JSON, Double.class)); final YAMLMapper nullsOkMapper = mapperBuilder() .disable(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) .build(); assertEquals(Byte.valueOf((byte) 0), nullsOkMapper.readValue(NULL_JSON, Byte.TYPE)); assertEquals(Short.valueOf((short) 0), nullsOkMapper.readValue(NULL_JSON, Short.TYPE)); // assertEquals(Character.valueOf((char) 0), MAPPER.readValue(JSON, Character.TYPE)); assertEquals(Integer.valueOf(0), nullsOkMapper.readValue(NULL_JSON, Integer.TYPE)); assertEquals(Long.valueOf(0L), nullsOkMapper.readValue(NULL_JSON, Long.TYPE)); assertEquals(Float.valueOf(0f), nullsOkMapper.readValue(NULL_JSON, Float.TYPE)); assertEquals(Double.valueOf(0d), nullsOkMapper.readValue(NULL_JSON, Double.TYPE)); assertNull(MAPPER.readValue(NULL_JSON, BigInteger.class)); assertNull(MAPPER.readValue(NULL_JSON, BigDecimal.class)); // Also: verify failure for at least some try { MAPPER.readerFor(Integer.TYPE).with(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) .readValue(NULL_JSON); fail("Should not have passed"); } catch (MismatchedInputException e) { verifyException(e, "Cannot coerce String \"null\""); } ObjectMapper noCoerceMapper = mapperBuilder() .disable(MapperFeature.ALLOW_COERCION_OF_SCALARS) .build(); try { noCoerceMapper.readValue(NULL_JSON, Integer.TYPE); fail("Should not have passed"); } catch (MismatchedInputException e) { verifyException(e, "Cannot coerce String value"); } } // [databind#852] @Test public void testScientificNotationAsStringForNumber() throws Exception { Object ob = MAPPER.readValue("\"3E-8\"", Number.class); assertEquals(Double.class, ob.getClass()); ob = MAPPER.readValue("\"3e-8\"", Number.class); assertEquals(Double.class, ob.getClass()); ob = MAPPER.readValue("\"300000000\"", Number.class); assertEquals(Integer.class, ob.getClass()); ob = MAPPER.readValue("\"123456789012\"", Number.class); assertEquals(Long.class, ob.getClass()); } @Test public void testIntAsNumber() throws Exception { // Even if declared as 'generic' type, should return using most // efficient type... here, Integer Number result = MAPPER.readValue(" 123 ", Number.class); assertEquals(Integer.valueOf(123), result); } @Test public void testLongAsNumber() throws Exception { // And beyond int range, should get long long exp = 1234567890123L; Number result = MAPPER.readValue(String.valueOf(exp), Number.class); assertEquals(Long.valueOf(exp), result); } @Test public void testBigIntAsNumber() throws Exception { // and after long, BigInteger BigInteger biggie = new BigInteger("1234567890123456789012345678901234567890"); Number result = MAPPER.readValue(biggie.toString(), Number.class); assertEquals(BigInteger.class, biggie.getClass()); assertEquals(biggie, result); } @Test public void testIntTypeOverride() throws Exception { // Slight twist; as per [JACKSON-100], can also request binding // to BigInteger even if value would fit in Integer ObjectReader r = MAPPER.reader(DeserializationFeature.USE_BIG_INTEGER_FOR_INTS); BigInteger exp = BigInteger.valueOf(123L); // first test as any Number Number result = r.forType(Number.class).readValue(" 123 "); assertEquals(BigInteger.class, result.getClass()); assertEquals(exp, result); // then as any Object /*Object value =*/ r.forType(Object.class).readValue("123"); assertEquals(BigInteger.class, result.getClass()); assertEquals(exp, result); // and as JsonNode JsonNode node = r.readTree(" 123"); assertTrue(node.isBigInteger()); assertEquals(123, node.asInt()); } @Test public void testDoubleAsNumber() throws Exception { Number result = MAPPER.readValue(new StringReader(" 1.0 "), Number.class); assertEquals(Double.valueOf(1.0), result); } @Test public void testFpTypeOverrideSimple() throws Exception { ObjectReader r = MAPPER.reader(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS); BigDecimal dec = new BigDecimal("0.1"); // First test generic stand-alone Number Number result = r.forType(Number.class).readValue(dec.toString()); assertEquals(BigDecimal.class, result.getClass()); assertEquals(dec, result); // Then plain old Object Object value = r.forType(Object.class).readValue(dec.toString()); assertEquals(BigDecimal.class, result.getClass()); assertEquals(dec, value); JsonNode node = r.readTree(dec.toString()); assertTrue(node.isBigDecimal()); assertEquals(dec.doubleValue(), node.asDouble()); } @Test public void testFpTypeOverrideStructured() throws Exception { ObjectReader r = MAPPER.reader(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS); BigDecimal dec = new BigDecimal("-19.37"); // List element types @SuppressWarnings("unchecked") List list = (List) r.forType(List.class).readValue("[ "+dec.toString()+" ]"); assertEquals(1, list.size()); Object val = list.get(0); assertEquals(BigDecimal.class, val.getClass()); assertEquals(dec, val); // and a map Map map = r.forType(Map.class).readValue("a: "+dec.toString()+"\n"); assertEquals(1, map.size()); val = map.get("a"); assertEquals(BigDecimal.class, val.getClass()); assertEquals(dec, val); } // [databind#504] @Test public void testForceIntsToLongs() throws Exception { ObjectReader r = MAPPER.reader(DeserializationFeature.USE_LONG_FOR_INTS); Object ob = r.forType(Object.class).readValue("42"); assertEquals(Long.class, ob.getClass()); assertEquals(Long.valueOf(42L), ob); Number n = r.forType(Number.class).readValue("42"); assertEquals(Long.class, n.getClass()); assertEquals(Long.valueOf(42L), n); // and one more: should get proper node as well JsonNode node = r.readTree("42"); if (!node.isLong()) { fail("Expected LongNode, got: "+node.getClass().getName()); } assertEquals(42, node.asInt()); } // [databind#2644] @Test public void testBigDecimalSubtypes() throws Exception { ObjectMapper mapper = mapperBuilder() .registerSubtypes(NodeParent2644.class) .build(); NodeRoot2644 root = mapper.readValue( "type: \"NodeParent\"\n" +"node:\n" +" amount: 9999999999999999.99\n", NodeRoot2644.class ); assertEquals(new BigDecimal("9999999999999999.99"), root.node.getVal()); } // [databind#2784] @Test public void testBigDecimalUnwrapped() throws Exception { // mapper.enable(DeserializationFeature.USE_BIG_DECIMAL_FOR_FLOATS); final String DOC = "value: 5.00\n"; NestedBigDecimalHolder2784 result = MAPPER.readValue(DOC, NestedBigDecimalHolder2784.class); assertEquals(new BigDecimal("5.00"), result.holder.value); } @Test public void testVeryBigDecimalUnwrapped() throws Exception { final int len = 1200; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append(1); } final String value = sb.toString(); final String DOC = "value: " + value + "\n"; try { MAPPER.readValue(DOC, NestedBigDecimalHolder2784.class); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException jme) { assertTrue( jme.getMessage().startsWith("Number value length (1200) exceeds the maximum allowed"), "unexpected message: " + jme.getMessage()); } } @Test public void testVeryBigDecimalUnwrappedWithNumLenUnlimited() throws Exception { final int len = 1200; final StringBuilder sb = new StringBuilder(); for (int i = 0; i < len; i++) { sb.append(1); } final String value = sb.toString(); final String DOC = "value: " + value + "\n"; YAMLFactory factory = streamFactoryBuilder() .streamReadConstraints(StreamReadConstraints.builder().maxNumberLength(Integer.MAX_VALUE).build()) .build(); NestedBigDecimalHolder2784 result = mapperBuilder(factory).build() .readValue(DOC, NestedBigDecimalHolder2784.class); assertEquals(new BigDecimal(value), result.holder.value); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/ParseBooleanLikeWordsAsStringsTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.node.JsonNodeType; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import static org.junit.jupiter.api.Assertions.*; // NOTE: Jackson 3.0 behavior differs from 2.x due to changes in the // underlying "snakeyaml-engine" behavior public class ParseBooleanLikeWordsAsStringsTest extends ModuleTestBase { final String YAML = "one: Yes\n" + "two: No\n" + "three: Off\n" + "four: On\n" + "five: true\n" + "six: false\n" + "seven: Y\n" + "eight: N\n"; public void testParseBooleanLikeWordsAsStringDefault() throws Exception { YAMLFactory f = new YAMLFactory(); ObjectMapper mapper = new ObjectMapper(f); JsonNode root = mapper.readTree(YAML); assertEquals(root.get("one").getNodeType(), JsonNodeType.STRING); assertEquals(root.get("one").stringValue(), "Yes"); assertEquals(root.get("two").getNodeType(), JsonNodeType.STRING); assertEquals(root.get("two").stringValue(), "No"); assertEquals(root.get("three").getNodeType(), JsonNodeType.STRING); assertEquals(root.get("three").stringValue(), "Off"); assertEquals(root.get("four").getNodeType(), JsonNodeType.STRING); assertEquals(root.get("four").stringValue(), "On"); assertEquals(root.get("five").getNodeType(), JsonNodeType.BOOLEAN); assertTrue(root.get("five").booleanValue()); assertEquals(root.get("six").getNodeType(), JsonNodeType.BOOLEAN); assertFalse(root.get("six").booleanValue()); assertEquals(root.get("seven").getNodeType(), JsonNodeType.STRING); assertEquals(root.get("seven").stringValue(), "Y"); assertEquals(root.get("eight").getNodeType(), JsonNodeType.STRING); assertEquals(root.get("eight").stringValue(), "N"); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/ParseOctalNumbers276Test.java ================================================ package tools.jackson.dataformat.yaml.deser; import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.Test; import tools.jackson.databind.JsonNode; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLReadFeature; import tools.jackson.dataformat.yaml.YAMLSchema; /** * Tests for {@link YAMLReadFeature#PARSE_OCTAL_NUMBERS} (issue #276). * Uses CORE schema since implicit octal (0-prefixed digits like {@code 0444}) * is only resolved as {@code Tag.INT} by the CORE schema resolver. */ public class ParseOctalNumbers276Test extends ModuleTestBase { // CORE schema with default features (octal enabled) private final YAMLMapper CORE_MAPPER = YAMLMapper.builder( YAMLFactory.builder() .yamlSchema(YAMLSchema.CORE) .build()) .build(); // CORE schema with octal disabled private final YAMLMapper CORE_NO_OCTAL_MAPPER = YAMLMapper.builder( YAMLFactory.builder() .yamlSchema(YAMLSchema.CORE) .disable(YAMLReadFeature.PARSE_OCTAL_NUMBERS) .build()) .build(); // Default behavior: implicit octal interpreted as octal @Test public void testImplicitOctalEnabledByDefault() throws Exception { // 0444 octal = 292 decimal assertEquals(Integer.valueOf(292), CORE_MAPPER.readValue("0444", Integer.class)); } // With feature disabled: implicit octal treated as decimal @Test public void testImplicitOctalDisabled() throws Exception { assertEquals(Integer.valueOf(444), CORE_NO_OCTAL_MAPPER.readValue("0444", Integer.class)); } // Explicit 0o prefix should always be octal regardless of feature @Test public void testExplicitOctalAlwaysWorks() throws Exception { // 0o444 octal = 292 decimal assertEquals(Integer.valueOf(292), CORE_NO_OCTAL_MAPPER.readValue("0o444", Integer.class)); assertEquals(Integer.valueOf(292), CORE_MAPPER.readValue("0o444", Integer.class)); } // Negative implicit octal @Test public void testNegativeImplicitOctal() throws Exception { // -0444 octal = -292 decimal (default) assertEquals(Integer.valueOf(-292), CORE_MAPPER.readValue("-0444", Integer.class)); // -0444 decimal = -444 (disabled) assertEquals(Integer.valueOf(-444), CORE_NO_OCTAL_MAPPER.readValue("-0444", Integer.class)); } // Plain zero should always work @Test public void testZeroUnaffected() throws Exception { assertEquals(Integer.valueOf(0), CORE_NO_OCTAL_MAPPER.readValue("0", Integer.class)); assertEquals(Integer.valueOf(0), CORE_MAPPER.readValue("0", Integer.class)); } // Tree model test (matches the original issue report use case) @Test public void testTreeModelWithOctalDisabled() throws Exception { String yaml = "defaultMode: 0444"; JsonNode node = CORE_NO_OCTAL_MAPPER.readTree(yaml); assertEquals(444, node.get("defaultMode").intValue()); } @Test public void testTreeModelWithOctalEnabled() throws Exception { String yaml = "defaultMode: 0444"; JsonNode node = CORE_MAPPER.readTree(yaml); assertEquals(292, node.get("defaultMode").intValue()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/ParserAutoCloseTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.io.*; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamReadFeature; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; @SuppressWarnings("resource") public class ParserAutoCloseTest extends ModuleTestBase { private final ObjectMapper YAML_MAPPER = newObjectMapper(); @Test public void testParseReaderWithAutoClose() throws IOException { CloseTrackerReader reader = new CloseTrackerReader("foo:bar"); YAML_MAPPER.readTree(reader); assertEquals(true, reader.isClosed()); reader.close(); } @Test public void testParseStreamWithAutoClose() throws IOException { CloseTrackerOutputStream stream = new CloseTrackerOutputStream("foo:bar"); YAML_MAPPER.readTree(stream); assertEquals(true, stream.isClosed()); stream.close(); } @Test public void testParseReaderWithoutAutoClose() throws IOException { CloseTrackerReader reader = new CloseTrackerReader("foo:bar"); YAML_MAPPER.reader() .without(StreamReadFeature.AUTO_CLOSE_SOURCE) .readTree(reader); assertEquals(false, reader.isClosed()); reader.close(); } @Test public void testParseStreamWithoutAutoClose() throws IOException { CloseTrackerOutputStream stream = new CloseTrackerOutputStream("foo:bar"); YAML_MAPPER.reader() .without(StreamReadFeature.AUTO_CLOSE_SOURCE) .readTree(stream); assertEquals(false, stream.isClosed()); stream.close(); } public static class CloseTrackerReader extends StringReader { private boolean closed; public CloseTrackerReader(String s) { super(s); } @Override public void close() { closed = true; super.close(); } public boolean isClosed() { return closed; } } public static class CloseTrackerOutputStream extends ByteArrayInputStream { private boolean closed; public CloseTrackerOutputStream(String s) { super(s.getBytes()); } @Override public void close() throws IOException { closed = true; super.close(); } public boolean isClosed() { return closed; } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/ParserDupHandlingTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.io.*; import java.nio.charset.StandardCharsets; import org.snakeyaml.engine.v2.api.LoadSettings; import tools.jackson.core.*; import tools.jackson.core.exc.StreamReadException; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import static org.junit.jupiter.api.Assertions.assertFalse; public class ParserDupHandlingTest extends ModuleTestBase { private final static String YAML_WITH_DUPS = "name:\n" +" first: Bob\n" +" first: Dup\n"; public void testDupChecksDisabled() throws Exception { YAMLFactory f = new YAMLFactory(); assertFalse(f.isEnabled(StreamReadFeature.STRICT_DUPLICATE_DETECTION)); ObjectMapper mapper = new ObjectMapper(f); _verifyDupsOk(mapper, YAML_WITH_DUPS, false); _verifyDupsOk(mapper, YAML_WITH_DUPS, true); } public void testDupChecksEnabled() throws Exception { YAMLFactory f = YAMLFactory.builder() .enable(StreamReadFeature.STRICT_DUPLICATE_DETECTION) .build(); ObjectMapper mapper = new ObjectMapper(f); _verifyDupsFail(mapper, YAML_WITH_DUPS, false); _verifyDupsFail(mapper, YAML_WITH_DUPS, true); } public void testDupChecksEnabledLoaderOptions() throws Exception { LoadSettings loadSettings = LoadSettings.builder() .setAllowDuplicateKeys(false) .build(); YAMLFactory f = YAMLFactory.builder().loadSettings(loadSettings).build(); ObjectMapper mapper = new ObjectMapper(f); _verifyDupsFail(mapper, YAML_WITH_DUPS, false); _verifyDupsFail(mapper, YAML_WITH_DUPS, true); } private void _verifyDupsOk(ObjectMapper mapper, String doc, boolean useBytes) { JsonParser p = useBytes ? mapper.createParser(new ByteArrayInputStream(doc.getBytes(StandardCharsets.UTF_8))) : mapper.createParser(new StringReader(doc)); _stream(p); p.close(); } private void _verifyDupsFail(ObjectMapper mapper, String doc, boolean useBytes) { JsonParser p = useBytes ? mapper.createParser(new ByteArrayInputStream(doc.getBytes(StandardCharsets.UTF_8))) : mapper.createParser(new StringReader(doc)); try { _stream(p); } catch (StreamReadException e) { verifyException(e, "Duplicate Object property \"first\""); } p.close(); } private void _stream(JsonParser p) { while (p.nextToken() != null) { } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/StreamingParse337Test.java ================================================ package tools.jackson.dataformat.yaml.deser; import tools.jackson.core.JacksonException; import tools.jackson.core.JsonParser; import tools.jackson.core.JsonToken; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import org.snakeyaml.engine.v2.api.LoadSettings; import static org.junit.jupiter.api.Assertions.*; /** * Unit tests for checking functioning of the underlying * parser implementation. */ public class StreamingParse337Test extends ModuleTestBase { // [dataformats-text#337] // 24-Sep-2022, tatu: Does not look like Snakeyaml-engine supports // maximum document length? // Need to comment out for time being public void testYamlParseFailsWhenCodePointLimitVerySmall() throws Exception { final String YAML = "---\n" +"content:\n" +" uri: \"http://javaone.com/keynote.mpg\"\n" +" title: \"Javaone Keynote\"\n" +" width: 640\n" +" height: 480\n" +" persons:\n" +" - \"Foo Bar\"\n" +" - \"Max Power\"\n" ; LoadSettings loaderOptions = LoadSettings.builder() .setCodePointLimit(5) .build(); YAMLFactory yamlFactory = YAMLFactory.builder() .loadSettings(loaderOptions) .build(); final YAMLMapper mapper = new YAMLMapper(yamlFactory); try (JsonParser p = mapper.createParser(YAML)) { assertToken(JsonToken.START_OBJECT, p.nextToken()); fail("expected to fail by now"); } catch (JacksonException e) { assertTrue(e.getMessage().startsWith("The incoming YAML document exceeds the limit: 5 code points.")); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/StreamingYAMLAnchorReplayingParseTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonParser; import tools.jackson.core.JsonToken; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLAnchorReplayingFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import static org.junit.jupiter.api.Assertions.*; public class StreamingYAMLAnchorReplayingParseTest extends ModuleTestBase { private final YAMLMapper MAPPER = mapperBuilder(new YAMLAnchorReplayingFactory()).build(); @Test public void testBasic() { final String YAML = """ string: 'text' bool: true bool2: false null: null i: 123 d: 1.25 """; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertLocation(p, 1, 9, 8, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertEquals("true", p.getString()); assertLocation(p, 2, 7, 21, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_FALSE, p.nextToken()); assertEquals("false", p.getString()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_NULL, p.nextToken()); assertEquals("null", p.getString()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("123", p.getString()); assertEquals(123, p.getIntValue()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals("1.25", p.getString()); assertEquals(1.25, p.getDoubleValue()); assertEquals(1, p.getIntValue()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); assertNull(p.nextToken()); assertNull(p.nextToken()); p.close(); } @Test public void testScalarAnchor() { final String YAML = """ string1: &stringAnchor 'textValue' string2: *stringAnchor int1: &intAnchor 123 int2: *intAnchor """; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string1", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("textValue", p.getString()); assertLocation(p, 1, 10, 9, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string2", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("textValue", p.getString()); assertLocation(p, 1, 10, 9, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("int1", p.getString()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("123", p.getString()); assertLocation(p, 3, 7, 64, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("int2", p.getString()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("123", p.getString()); assertLocation(p, 3, 7, 64, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); assertNull(p.nextToken()); assertNull(p.nextToken()); p.close(); } @Test public void testSequenceAnchor() { final String YAML = """ list1: &listAnchor - 1 - 2 - 3 list2: *listAnchor """; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("list1", p.getString()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("1", p.getString()); assertLocation(p, 2, 5, 23, -1); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("2", p.getString()); assertLocation(p, 3, 5, 29, -1); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("3", p.getString()); assertLocation(p, 4, 5, 35, -1); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("list2", p.getString()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("1", p.getString()); assertLocation(p, 2, 5, 23, -1); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("2", p.getString()); assertLocation(p, 3, 5, 29, -1); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("3", p.getString()); assertLocation(p, 4, 5, 35, -1); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } @Test public void testObjectAnchor() { final String YAML = """ obj1: &objAnchor string: 'text' bool: true obj2: *objAnchor """; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("obj1", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 1, 7, 6, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertLocation(p, 2, 11, 27, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("bool", p.getString()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertLocation(p, 3, 9, 42, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("obj2", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 1, 7, 6, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertLocation(p, 2, 11, 27, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("bool", p.getString()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertLocation(p, 3, 9, 42, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } @Test public void testMergeAnchor() { final String YAML = """ obj1: &objAnchor string: 'text' bool: true obj2: <<: *objAnchor int: 123 """; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("obj1", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 1, 7, 6, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertLocation(p, 2, 11, 27, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("bool", p.getString()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertLocation(p, 3, 9, 42, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("obj2", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 5, 3, 55, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertLocation(p, 2, 11, 27, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("bool", p.getString()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertLocation(p, 3, 9, 42, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("int", p.getString()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertLocation(p, 6, 8, 77, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } @Test public void testNestedAnchor() { final String YAML = """ value: &valAnchor 'text' obj1: &objAnchor string: *valAnchor bool: true obj2: *objAnchor """; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("value", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertLocation(p, 1, 8, 7, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("obj1", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 2, 7, 31, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertLocation(p, 1, 8, 7, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("bool", p.getString()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertLocation(p, 4, 9, 71, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("obj2", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 2, 7, 31, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertLocation(p, 1, 8, 7, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("bool", p.getString()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertLocation(p, 4, 9, 71, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } @Test public void testMergeInsideAnchor() { final String YAML = """ objToMerge: &mergeAnchor val1: a val2: b obj1: &objAnchor <<: *mergeAnchor val3: c obj2: *objAnchor """; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("objToMerge", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 1, 13, 12, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("val1", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("a", p.getString()); assertLocation(p, 2, 9, 33, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("val2", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("b", p.getString()); assertLocation(p, 3, 9, 43, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("obj1", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 4, 7, 51, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("val1", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("a", p.getString()); assertLocation(p, 2, 9, 33, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("val2", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("b", p.getString()); assertLocation(p, 3, 9, 43, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("val3", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("c", p.getString()); assertLocation(p, 6, 9, 89, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("obj2", p.getString()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertLocation(p, 4, 7, 51, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("val1", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("a", p.getString()); assertLocation(p, 2, 9, 33, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("val2", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("b", p.getString()); assertLocation(p, 3, 9, 43, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("val3", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("c", p.getString()); assertLocation(p, 6, 9, 89, -1); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/StreamingYAMLParseTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.io.StringWriter; import java.math.BigInteger; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.snakeyaml.engine.v2.api.LoadSettings; import tools.jackson.core.JsonParser; import tools.jackson.core.JsonToken; import tools.jackson.dataformat.yaml.JacksonYAMLParseException; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLParser; import static org.junit.jupiter.api.Assertions.*; /** * Unit tests for checking functioning of the underlying * parser implementation. */ public class StreamingYAMLParseTest extends ModuleTestBase { final YAMLMapper MAPPER = newObjectMapper(); @Test public void testBasic() throws Exception { final String YAML = "string: 'text'\n" +"bool: true\n" +"bool2: false\n" +"null: null\n" +"i: 123\n" +"d: 1.25\n" ; JsonParser p = MAPPER.createParser(YAML); _verifyGetNumberTypeFail(p, "null"); assertToken(JsonToken.START_OBJECT, p.nextToken()); _verifyGetNumberTypeFail(p, "START_OBJECT"); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("string", p.currentName()); assertEquals("string", p.getString()); assertEquals("string", p.getValueAsString()); assertEquals("string", p.getValueAsString("x")); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("text", p.getString()); assertEquals("text", p.getValueAsString()); assertEquals("text", p.getValueAsString("x")); assertLocation(p, 1, 9, 8, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertEquals("true", p.getString()); assertLocation(p, 2, 7, 21, -1); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_FALSE, p.nextToken()); assertEquals("false", p.getString()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_NULL, p.nextToken()); assertEquals("null", p.getString()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals("123", p.getString()); assertEquals(123, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals("1.25", p.getString()); assertEquals(1.25, p.getDoubleValue()); assertEquals(1, p.getIntValue()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); assertNull(p.nextToken()); assertNull(p.nextToken()); _verifyGetNumberTypeFail(p, "null"); p.close(); } // Parsing large numbers around the transition from int->long and long->BigInteger @Test public void testIntParsingWithLimits() throws Exception { String YAML; JsonParser p; // Test positive max-int YAML = "num: 2147483647"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Integer.MAX_VALUE, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("2147483647", p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); p.close(); // 02-Jun-2025, tatu: [core#1438] Close should clear token assertNull(p.currentToken()); _verifyGetNumberTypeFail(p, "null"); // Test negative max-int YAML = "num: -2147483648"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Integer.MIN_VALUE, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("-2147483648", p.getString()); p.close(); // Test positive max-int + 1 YAML = "num: 2147483648"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Integer.MAX_VALUE + 1L, p.getLongValue()); assertEquals(JsonParser.NumberType.LONG, p.getNumberType()); assertEquals("2147483648", p.getString()); p.close(); // Test negative max-int - 1 YAML = "num: -2147483649"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Integer.MIN_VALUE - 1L, p.getLongValue()); assertEquals(JsonParser.NumberType.LONG, p.getNumberType()); assertEquals("-2147483649", p.getString()); p.close(); // Test positive max-long YAML = "num: 9223372036854775807"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Long.MAX_VALUE, p.getLongValue()); assertEquals(JsonParser.NumberType.LONG, p.getNumberType()); assertEquals("9223372036854775807", p.getString()); p.close(); // Test negative max-long YAML = "num: -9223372036854775808"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Long.MIN_VALUE, p.getLongValue()); assertEquals(JsonParser.NumberType.LONG, p.getNumberType()); assertEquals("-9223372036854775808", p.getString()); p.close(); // Test positive max-long + 1 YAML = "num: 9223372036854775808"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(BigInteger.valueOf(Long.MAX_VALUE).add(BigInteger.ONE), p.getBigIntegerValue()); assertEquals(JsonParser.NumberType.BIG_INTEGER, p.getNumberType()); assertEquals("9223372036854775808", p.getString()); p.close(); // Test negative max-long - 1 YAML = "num: -9223372036854775809"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(BigInteger.valueOf(Long.MIN_VALUE).subtract(BigInteger.ONE), p.getBigIntegerValue()); assertEquals(JsonParser.NumberType.BIG_INTEGER, p.getNumberType()); assertEquals("-9223372036854775809", p.getString()); p.close(); } // TODO Testing addition of underscores (It was dropped in YAML 1.2) // 11-Jan-2025, tatu: Disabled as it fails with Snakeyaml-engine @Test @Disabled public void /*test*/ IntParsingUnderscoresSm() throws Exception { // First, couple of simple small values try (JsonParser p = MAPPER.createParser("num: 10_345")) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(10345, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("10_345", p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } try (JsonParser p = MAPPER.createParser("num: -11_222")) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(-11222, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("-11_222", p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } try (JsonParser p = MAPPER.createParser("num: +8_192")) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(8192, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("+8_192", p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } String YAML; JsonParser p; // Test positive max-int YAML = "num: 2_147_483_647"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Integer.MAX_VALUE, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("2_147_483_647", p.getString()); p.close(); // Test negative max-int YAML = "num: -2_147_483_648"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Integer.MIN_VALUE, p.getIntValue()); assertEquals(JsonParser.NumberType.INT, p.getNumberType()); assertEquals("-2_147_483_648", p.getString()); p.close(); // Test positive max-int + 1 YAML = "num: 2_147_483_648"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Integer.MAX_VALUE + 1L, p.getLongValue()); assertEquals(JsonParser.NumberType.LONG, p.getNumberType()); assertEquals("2_147_483_648", p.getString()); p.close(); // Test negative max-int - 1 YAML = "num: -2_147_483_649"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Integer.MIN_VALUE - 1L, p.getLongValue()); assertEquals(JsonParser.NumberType.LONG, p.getNumberType()); assertEquals("-2_147_483_649", p.getString()); p.close(); // Test positive max-long YAML = "num: 9_223_372_036_854_775_807"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Long.MAX_VALUE, p.getLongValue()); assertEquals(JsonParser.NumberType.LONG, p.getNumberType()); assertEquals("9_223_372_036_854_775_807", p.getString()); p.close(); // Test negative max-long YAML = "num: -9_223_372_036_854_775_808"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(Long.MIN_VALUE, p.getLongValue()); assertEquals(JsonParser.NumberType.LONG, p.getNumberType()); assertEquals("-9_223_372_036_854_775_808", p.getString()); p.close(); // Test positive max-long + 1 YAML = "num: 9_223372036854775_808"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(BigInteger.valueOf(Long.MAX_VALUE).add(BigInteger.ONE), p.getBigIntegerValue()); assertEquals(JsonParser.NumberType.BIG_INTEGER, p.getNumberType()); assertEquals("9_223372036854775_808", p.getString()); p.close(); // Test negative max-long - 1 YAML = "num: -92233_72036_85477_5809"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(BigInteger.valueOf(Long.MIN_VALUE).subtract(BigInteger.ONE), p.getBigIntegerValue()); assertEquals(JsonParser.NumberType.BIG_INTEGER, p.getNumberType()); assertEquals("-92233_72036_85477_5809", p.getString()); p.close(); } // for [dataformats-text#146] // 24-Jun-2020, tatu: regression for 3.0? /* @Test public void testYamlLongWithUnderscores() throws Exception { try (JsonParser p = MAPPER.createParser("v: 1_000_000")) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("v", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(1000000, p.getIntValue()); } } */ // accidental recognition as double, with multiple dots @Test public void testDoubleParsing() throws Exception { // First, test out valid use case. String YAML; // '+' cannot start a float for JSON (and YAML 1.2 by default) YAML = "num: +1000.25"; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("num", p.currentName()); StringWriter w = new StringWriter(); assertEquals(3, p.getString(w)); assertEquals("num", w.toString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); // let's retain exact representation text however: assertEquals("+1000.25", p.getString()); p.close(); // and then non-number that may be mistaken final String IP = "10.12.45.127"; YAML = "ip: "+IP+"\n"; p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("ip", p.currentName()); // should be considered a String... assertToken(JsonToken.VALUE_STRING, p.nextToken()); w = new StringWriter(); assertEquals(IP.length(), p.getString(w)); assertEquals(IP, w.toString()); assertEquals(IP, p.getString()); p.close(); } // [Issue#7] // looks like colons in content can be problematic, if unquoted @Test public void testColons() throws Exception { // First, test out valid use case. NOTE: spaces matter! String YAML = "section:\n" +" text: foo:bar\n"; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("section", p.currentName()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("text", p.currentName()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("foo:bar", p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } /** * How should YAML Anchors be exposed? */ @Test public void testAnchorParsing() throws Exception { // silly doc, just to expose an id (anchor) and ref to it final String YAML = "---\n" +"parent: &id1\n" +" name: Bob\n" +"child: &id2\n" +" name: Bill\n" +" parentRef: *id1" ; YAMLParser yp = (YAMLParser)MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, yp.nextToken()); assertFalse(yp.isCurrentAlias()); assertNull(yp.getObjectId()); assertToken(JsonToken.PROPERTY_NAME, yp.nextToken()); assertEquals("parent", yp.currentName()); assertFalse(yp.isCurrentAlias()); assertNull(yp.getObjectId()); assertToken(JsonToken.START_OBJECT, yp.nextToken()); assertFalse(yp.isCurrentAlias()); assertEquals("id1", yp.getObjectId()); assertToken(JsonToken.PROPERTY_NAME, yp.nextToken()); assertEquals("name", yp.currentName()); assertToken(JsonToken.VALUE_STRING, yp.nextToken()); assertEquals("Bob", yp.getString()); assertFalse(yp.isCurrentAlias()); assertToken(JsonToken.END_OBJECT, yp.nextToken()); assertToken(JsonToken.PROPERTY_NAME, yp.nextToken()); assertEquals("child", yp.currentName()); assertFalse(yp.isCurrentAlias()); assertToken(JsonToken.START_OBJECT, yp.nextToken()); assertFalse(yp.isCurrentAlias()); assertEquals("id2", yp.getObjectId()); assertToken(JsonToken.PROPERTY_NAME, yp.nextToken()); assertEquals("name", yp.currentName()); assertToken(JsonToken.VALUE_STRING, yp.nextToken()); assertEquals("Bill", yp.getString()); assertToken(JsonToken.PROPERTY_NAME, yp.nextToken()); assertEquals("parentRef", yp.currentName()); assertToken(JsonToken.VALUE_STRING, yp.nextToken()); assertEquals("id1", yp.getString()); assertTrue(yp.isCurrentAlias()); assertToken(JsonToken.END_OBJECT, yp.nextToken()); assertToken(JsonToken.END_OBJECT, yp.nextToken()); assertNull(yp.nextToken()); yp.close(); } // Scalars should not be parsed when not in the plain flow style. @Test public void testQuotedStyles() throws Exception { String YAML = "strings: [\"true\", 'false']"; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("strings", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals(0, p.streamReadContext().getCurrentIndex()); assertEquals("true", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals(1, p.streamReadContext().getCurrentIndex()); assertEquals("false", p.getString()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } // Scalars should be parsed when in the plain flow style. @Test public void testUnquotedStyles() throws Exception { String YAML = "booleans: [true, false]"; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("booleans", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertToken(JsonToken.VALUE_FALSE, p.nextToken()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } @Test public void testObjectWithNumbers() throws Exception { String YAML = "---\n" +"content:\n" +" uri: \"http://javaone.com/keynote.mpg\"\n" +" title: \"Javaone Keynote\"\n" +" width: 640\n" +" height: 480\n" +" persons:\n" +" - \"Foo Bar\"\n" +" - \"Max Power\"\n" ; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("content", p.currentName()); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("uri", p.currentName()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("title", p.currentName()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("width", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(640, p.getIntValue()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("height", p.currentName()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(480, p.getIntValue()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("persons", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals(0, p.streamReadContext().getCurrentIndex()); assertEquals("Foo Bar", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals(1, p.streamReadContext().getCurrentIndex()); assertEquals("Max Power", p.getString()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } @Test public void testNulls() throws Exception { String YAML = "nulls: [!!null \"null\" ]"; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("nulls", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_NULL, p.nextToken()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } /* * Tilde '~' is back to string in YAML 1.2 (using the JSON schema) */ @Test public void testTildeIsString() throws Exception { String YAML = "nulls: [~ ]"; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("nulls", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } // for [dataformat-yaml#69] @Test public void testTimeLikeValues() throws Exception { final String YAML = "value: 3:00\n"; JsonParser p = MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("value", p.currentName()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("3:00", p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.nextToken()); p.close(); } // [dataformats-text#337]: different setting in 3.0 than 2.x @Test public void testYamlParseFailsWhenCodePointLimitVerySmall() throws Exception { final String YAML = "---\n" +"content:\n" +" uri: \"http://javaone.com/keynote.mpg\"\n" +" title: \"Javaone Keynote\"\n" +" width: 640\n" +" height: 480\n" +" persons:\n" +" - \"Foo Bar\"\n" +" - \"Max Power\"\n" ; LoadSettings loadSettings = LoadSettings.builder() .setCodePointLimit(5) //5 bytes .build(); YAMLFactory yamlFactory = YAMLFactory.builder() .loadSettings(loadSettings) .build(); YAMLMapper mapper = new YAMLMapper(yamlFactory); try (JsonParser p = mapper.createParser(YAML)) { assertToken(JsonToken.START_OBJECT, p.nextToken()); fail("expected to fail by now"); } catch (JacksonYAMLParseException e) { assertTrue(e.getMessage().startsWith("The incoming YAML document exceeds the limit: 5 code points.")); } } // In Jackson 3.x, non-Number token should NOT throw exception for parser.getNumberType() // (like in 2.x) but just return `null` private void _verifyGetNumberTypeFail(JsonParser p, String token) throws Exception { assertNull(p.getNumberType()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/UTF8ReaderTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.io.*; import java.nio.charset.StandardCharsets; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.UTF8Reader; import static org.junit.jupiter.api.Assertions.assertEquals; public class UTF8ReaderTest { @Test public void canUseMultipleUTF8ReadersInSameThread() throws IOException { String message = "we expect this message to be present after reading the contents of the reader out"; InputStream expected = new ByteArrayInputStream(("." + message).getBytes(StandardCharsets.UTF_8)); InputStream overwriter = new ByteArrayInputStream(".in older versions of Jackson, this overwrote it" .getBytes(StandardCharsets.UTF_8)); char[] result = new char[message.length()]; UTF8Reader utf8Reader = new UTF8Reader(expected, true); UTF8Reader badUtf8Reader = new UTF8Reader(overwriter, true); utf8Reader.read(); badUtf8Reader.read(); utf8Reader.read(result); assertEquals(message, new String(result)); utf8Reader.close(); badUtf8Reader.close(); } @Test public void testSurrogatePairAtBufferBoundary() throws IOException { // Test that pending surrogate doesn't cause ArrayIndexOutOfBoundsException // when buffer has no space. Uses emoji (4-byte UTF-8) to create surrogate pair. String emojiStr = "😀"; // U+1F600, encoded as surrogate pair in UTF-16 byte[] utf8Bytes = emojiStr.getBytes(StandardCharsets.UTF_8); UTF8Reader reader = new UTF8Reader(new ByteArrayInputStream(utf8Bytes), true); // First read with buffer size 1 - should read first surrogate char[] buf1 = new char[1]; int read1 = reader.read(buf1, 0, 1); assertEquals(1, read1); // Second read with buffer size 0 - should return 0, not throw exception char[] buf0 = new char[0]; int read0 = reader.read(buf0, 0, 0); assertEquals(0, read0); // Third read with buffer size 1 - should read second surrogate char[] buf2 = new char[1]; int read2 = reader.read(buf2, 0, 1); assertEquals(1, read2); // Verify we got the emoji correctly String result = new String(buf1) + new String(buf2); assertEquals(emojiStr, result); reader.close(); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/UnicodeYAMLRead497Test.java ================================================ package tools.jackson.dataformat.yaml.deser; import java.io.ByteArrayInputStream; import java.nio.charset.StandardCharsets; import java.util.Arrays; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonParser; import tools.jackson.core.JsonToken; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.junit.jupiter.api.Assertions.assertEquals; // [dataformats-text#497]: 3-byte UTF-8 character at end of content public class UnicodeYAMLRead497Test extends ModuleTestBase { private final YAMLMapper MAPPER = newObjectMapper(); // [dataformats-text#497] @Test public void testUnicodeAtEnd() throws Exception { // Had to find edge condition, these would do: // (but there seems to be some fluctuation wrt exact boundary condition) // (NOTE: off-by-one-per-1k compared to Jackson 2.x) _testUnicodeAtEnd(1023); _testUnicodeAtEnd(1024); _testUnicodeAtEnd(1025); _testUnicodeAtEnd(1026); _testUnicodeAtEnd(2046); _testUnicodeAtEnd(2047); _testUnicodeAtEnd(2048); _testUnicodeAtEnd(2049); _testUnicodeAtEnd(2050); _testUnicodeAtEnd(2051); _testUnicodeAtEnd(3069); _testUnicodeAtEnd(3070); _testUnicodeAtEnd(3071); _testUnicodeAtEnd(3072); _testUnicodeAtEnd(3073); _testUnicodeAtEnd(4100); } private void _testUnicodeAtEnd(int LEN) throws Exception { StringBuilder sb = new StringBuilder(LEN + 2); sb.append("key: "); StringBuilder valueBuffer = new StringBuilder(); while ((sb.length() + valueBuffer.length()) < LEN) { valueBuffer.append('a'); } valueBuffer.append('\u5496'); sb.append(valueBuffer); final byte[] doc = sb.toString().getBytes(StandardCharsets.UTF_8); final byte[] docOrig = Arrays.copyOf(doc, doc.length); try (JsonParser p = MAPPER.createParser(doc)) { _checkDoc(p, valueBuffer.toString()); } try (JsonParser p = MAPPER.createParser(new ByteArrayInputStream(doc))) { _checkDoc(p, valueBuffer.toString()); } // Verify that original byte array was not modified assertArrayEquals(docOrig, doc); } private void _checkDoc(JsonParser p, String value) throws Exception { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertEquals("key", p.nextName()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals(value, p.getString()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/YAML12CoreSchema623Test.java ================================================ package tools.jackson.dataformat.yaml.deser; import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLSchema; // Tests deserialization of YAML 1.2 core schema. public class YAML12CoreSchema623Test extends ModuleTestBase { private final YAMLFactory FACTORY = YAMLFactory.builder().yamlSchema(YAMLSchema.CORE).build(); private final YAMLMapper MAPPER = YAMLMapper.builder(FACTORY).build(); @Test public void testNull() throws Exception { Object o = MAPPER.readValue("null", Object.class); assertEquals(null, o); o = MAPPER.readValue("~", Object.class); assertEquals(null, o); } @Test public void testBoolean() throws Exception { Boolean b = MAPPER.readValue("true", Boolean.class); assertEquals(Boolean.TRUE, b); b = MAPPER.readValue("false", Boolean.class); assertEquals(Boolean.FALSE, b); b = MAPPER.readValue("True", Boolean.class); assertEquals(Boolean.TRUE, b); b = MAPPER.readValue("False", Boolean.class); assertEquals(Boolean.FALSE, b); b = MAPPER.readValue("TRUE", Boolean.class); assertEquals(Boolean.TRUE, b); b = MAPPER.readValue("FALSE", Boolean.class); assertEquals(Boolean.FALSE, b); } @Test public void testNaN() throws Exception { Float f = MAPPER.readValue(".nan", Float.class); assertEquals(Float.valueOf(Float.NaN), f); Double d = MAPPER.readValue(".NaN", Double.class); assertEquals(Double.valueOf(Double.NaN), d); Number n = MAPPER.readValue(".NAN", Number.class); assertEquals(Double.valueOf(Double.NaN), n); } @Test public void testInfinity() throws Exception { Float f = MAPPER.readValue(".inf", Float.class); assertEquals(Float.valueOf(Float.POSITIVE_INFINITY), f); Double d = MAPPER.readValue("-.Inf", Double.class); assertEquals(Double.valueOf(Double.NEGATIVE_INFINITY), d); Number n = MAPPER.readValue("+.INF", Number.class); assertEquals(Double.valueOf(Double.POSITIVE_INFINITY), n); } @Test public void testOctal() throws Exception { Integer i = MAPPER.readValue("0o10", Integer.class); assertEquals(Integer.valueOf(8), i); Long l = MAPPER.readValue("0o20", Long.class); assertEquals(Long.valueOf(16), l); Number n = MAPPER.readValue("0o30", Number.class); assertEquals(Integer.valueOf(24), n); } @Test public void testHexadecimal() throws Exception { Integer i = MAPPER.readValue("0x10", Integer.class); assertEquals(Integer.valueOf(16), i); Long l = MAPPER.readValue("0x20", Long.class); assertEquals(Long.valueOf(32), l); Number n = MAPPER.readValue("0x30", Number.class); assertEquals(Integer.valueOf(48), n); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/deser/YAML12CoreSchemaParseTest.java ================================================ package tools.jackson.dataformat.yaml.deser; import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonToken; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLParser; import tools.jackson.dataformat.yaml.YAMLReadFeature; import tools.jackson.dataformat.yaml.YAMLSchema; /** * Test YAML parsing when using the YAML 1.2 core schema (i.e. CoreScalarResolver). */ public class YAML12CoreSchemaParseTest extends ModuleTestBase { private final YAMLFactory FACTORY = YAMLFactory.builder().yamlSchema(YAMLSchema.CORE).enable(YAMLReadFeature.EMPTY_STRING_AS_NULL).build(); private final YAMLMapper MAPPER = YAMLMapper.builder(FACTORY).build(); @Test public void testTokens() throws Exception { final String YAML = """ --- nulls: - null - Null - NULL - ~ - # empty booleans: - true - True - TRUE - false - False - FALSE integers: - 0 - 42 - -1 - 0o755 - 0xDEADBEEF floats: - 0.0 - 3.14159 - 2.998e8 - 1.0e-10 infinities: - .inf - .Inf - .INF - +.inf - +.Inf - +.INF - -.inf - -.Inf - -.INF nans: - .nan - .NaN - .NAN strings: - hello, world! - Infinity - NaN - 'null' - 'false' - '0' - '-1.0' - '0o644' - '0xFF' """; YAMLParser p = (YAMLParser) MAPPER.createParser(YAML); assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("nulls", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_NULL, p.nextToken()); assertToken(JsonToken.VALUE_NULL, p.nextToken()); assertToken(JsonToken.VALUE_NULL, p.nextToken()); assertToken(JsonToken.VALUE_NULL, p.nextToken()); assertToken(JsonToken.VALUE_NULL, p.nextToken()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("booleans", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertToken(JsonToken.VALUE_TRUE, p.nextToken()); assertToken(JsonToken.VALUE_FALSE, p.nextToken()); assertToken(JsonToken.VALUE_FALSE, p.nextToken()); assertToken(JsonToken.VALUE_FALSE, p.nextToken()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("integers", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(0, p.getIntValue()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(42, p.getIntValue()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(-1, p.getIntValue()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(493, p.getIntValue()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(3735928559L, p.getLongValue()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("floats", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(0.0, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(3.14159, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(2.998e8, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(1.0e-10, p.getDoubleValue(), 0.0); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("infinities", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.POSITIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.POSITIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.POSITIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.POSITIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.POSITIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.POSITIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.NEGATIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.NEGATIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.NEGATIVE_INFINITY, p.getDoubleValue(), 0.0); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("nans", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.NaN, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.NaN, p.getDoubleValue(), 0.0); assertToken(JsonToken.VALUE_NUMBER_FLOAT, p.nextToken()); assertEquals(Double.NaN, p.getDoubleValue(), 0.0); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("strings", p.currentName()); assertToken(JsonToken.START_ARRAY, p.nextToken()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("hello, world!", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("Infinity", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("NaN", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("null", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("false", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("0", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("-1.0", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("0o644", p.getString()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("0xFF", p.getString()); assertToken(JsonToken.END_ARRAY, p.nextToken()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/filter/StreamingDecoratorsTest.java ================================================ package tools.jackson.dataformat.yaml.filter; import java.io.*; import java.util.LinkedHashMap; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.*; import tools.jackson.dataformat.yaml.*; import tools.jackson.dataformat.yaml.testutil.PrefixInputDecorator; import tools.jackson.dataformat.yaml.testutil.PrefixOutputDecorator; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; public class StreamingDecoratorsTest extends ModuleTestBase { @SuppressWarnings("unchecked") @Test public void testInputDecorators() throws IOException { final byte[] DOC = utf8("secret: mum\n"); final ObjectMapper mapper = mapperBuilder( streamFactoryBuilder().inputDecorator(new PrefixInputDecorator(DOC)) .build()) .build(); Map value = mapper.readValue(utf8("value: foo\n"), Map.class); assertEquals(2, value.size()); assertEquals("foo", value.get("value")); assertEquals("mum", value.get("secret")); // and then via Reader as well value = mapper.readValue(new StringReader("value: xyz\n"), Map.class); assertEquals(2, value.size()); assertEquals("xyz", value.get("value")); assertEquals("mum", value.get("secret")); } @Test public void testOutputDecorators() throws IOException { final String PREFIX = "///////"; final byte[] DOC = utf8(PREFIX); final ObjectMapper mapper = mapperBuilder( streamFactoryBuilder().outputDecorator(new PrefixOutputDecorator(DOC)) .build()) .build(); final Map input = new LinkedHashMap<>(); input.put("key", "value"); // Gets bit tricky because writer will add doc prefix. So let's do simpler check here ByteArrayOutputStream bytes = new ByteArrayOutputStream(); mapper.writeValue(bytes, input); String raw = bytes.toString("UTF-8"); if (!raw.startsWith(PREFIX)) { fail("Should start with prefix, did not: ["+raw+"]"); } // and same with char-backed too StringWriter sw = new StringWriter(); mapper.writeValue(sw, input); raw = sw.toString(); if (!raw.startsWith(PREFIX)) { fail("Should start with prefix, did not: ["+raw+"]"); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/fuzz/FuzzYAMLRead63274Test.java ================================================ package tools.jackson.dataformat.yaml.fuzz; import org.junit.jupiter.api.Test; import tools.jackson.core.JacksonException; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.fail; public class FuzzYAMLRead63274Test extends ModuleTestBase { private final ObjectMapper MAPPER = newObjectMapper(); // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=63274 @Test public void testMalformedNumber63274() throws Exception { // As bytes: /* { byte[] BYTES = new byte[] { '!', ' ', '>', (byte) 0xF0, (byte) 0x9d, (byte) 0x9F, (byte) 0x96, 'C', '!' }; String str = new String(BYTES, "UTF-8"); System.err.println("STRLEN = "+str.length()); for (int i = 0; i < str.length(); ++i) { System.err.printf(" %02x: %02x -> '%c'\n", i, (int) str.charAt(i), str.charAt(i)); } } */ // Or as a UCS-2 String String doc = "! >\uD835\uDFD6C!"; try { MAPPER.readTree(doc); // Ok; don't care about content, just buffer reads fail("Should not pass"); } catch (JacksonException e) { verifyException(e, "Malformed Number token: failed to "); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/fuzz/FuzzYAMLRead65855Test.java ================================================ package tools.jackson.dataformat.yaml.fuzz; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.fail; public class FuzzYAMLRead65855Test extends ModuleTestBase { private final ObjectMapper MAPPER = newObjectMapper(); // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=65855 @Test public void testMalformedNumber65855() throws Exception { String doc = "!!int\n-_"; try (JsonParser p = MAPPER.createParser(doc)) { // Should be triggered by advacing to next token, even without accessing value assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); fail("Should not pass"); } catch (JacksonException e) { verifyException(e, "Invalid number ('-_')"); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/fuzz/FuzzYAMLReadTest.java ================================================ package tools.jackson.dataformat.yaml.fuzz; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import tools.jackson.core.JacksonException; import tools.jackson.core.JsonToken; import tools.jackson.core.exc.StreamReadException; import tools.jackson.databind.DeserializationFeature; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.fail; /** * Collection of OSS-Fuzz found issues for YAML format module. */ public class FuzzYAMLReadTest extends ModuleTestBase { private final ObjectMapper YAML_MAPPER = mapperBuilder() .enable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES).build(); // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50036 @Test public void testUTF8Decoding50036() throws Exception { byte[] INPUT = new byte[] { 0x20, (byte) 0xCD }; try { YAML_MAPPER.readTree(INPUT); fail("Should not pass"); } catch (StreamReadException e) { verifyException(e, "Unexpected EOF in the middle of a multi-byte char"); verifyException(e, "got 1, needed 2"); } } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50052 @Test public void testNumberDecoding50052() throws Exception { // 17-Sep-2022, tatu: Could produce an exception but for now type // tag basically ignored, returned as empty String otken JsonNode n = YAML_MAPPER.readTree("!!int"); assertEquals(JsonToken.VALUE_STRING, n.asToken()); assertEquals("", n.stringValue()); } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50339 @Test public void testTagDecoding50339() throws Exception { final String DOC = "[!!,"; try { YAML_MAPPER.readTree(DOC); fail("Should not pass"); } catch (StreamReadException e) { // 19-Aug-2022, tatu: The actual error we get is from SnakeYAML // and might change. Should try matching it at all? // 24-Sep-2022, tatu: ... and snakeyaml-engine has different verifyException(e, "while scanning"); } } // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50407 @Test public void testNumberDecoding50407() throws Exception { // int, octal _testNumberDecoding50407("- !!int 0111-"); _testNumberDecoding50407("- !!int 01 11"); _testNumberDecoding50407("- !!int 01245zf"); // long, octal _testNumberDecoding50407("- !!int 0123456789012345-"); _testNumberDecoding50407("- !!int 01234567 890123"); _testNumberDecoding50407("- !!int 0123456789012ab34"); // BigInteger, octal _testNumberDecoding50407("- !!int 0111 - -"); } private void _testNumberDecoding50407(String doc) { try { YAML_MAPPER.readTree(doc); fail("Should not pass"); } catch (StreamReadException e) { verifyException(e, "Invalid base-"); } } // [dataformats-text#400], originally from // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50431 @Test public void testUnicodeDecoding50431() throws Exception { String input = "\n\"\\UE30EEE"; try { YAML_MAPPER.readTree(input); fail("Should not pass"); } catch (StreamReadException e) { // Not sure what to verify, but should be exposed as one of Jackson's // exceptions (or possibly IOException) verifyException(e, "found unknown escape character E30EEE"); } } // [dataformats-text#406]: int overflow for YAML version // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=56902 // // Problem being value overflow wrt 32-bit integer for malformed YAML // version indicators @Test public void testVersionNumberParsing56902() throws Exception { String input = "%YAML 1.9224775801"; try { YAML_MAPPER.readTree(input); fail("Should not pass"); } catch (StreamReadException e) { // Not sure what to verify, but should be exposed as one of Jackson's // exceptions (or possibly IOException) verifyException(e, "found a number which cannot represent a valid version"); } } // [dataformats-text#435], originally from // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=61823 @Test public void testNumberDecoding61823() throws Exception { try { YAML_MAPPER.readTree("!!int _ "); fail("Should not pass"); } catch (StreamReadException e) { verifyException(e, "Invalid number"); } } static class ModelContainer445 { String string; @JsonCreator public ModelContainer445(@JsonProperty(value = "string") String string) { this.string = string; } } // [dataformats-text#445]: NPE // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=64662 @Test public void testNullPointerException445_64662() throws Exception { // Content itself odd, generated by Fuzz; but needs to trigger buffering to work try { YAML_MAPPER.readValue(" :: ! 0000000000000000000000000000", ModelContainer445.class); fail("Should not pass"); } catch (JacksonException e) { verifyException(e, "Unrecognized property"); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/fuzz/FuzzYAML_65918_Test.java ================================================ package tools.jackson.dataformat.yaml.fuzz; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.fail; public class FuzzYAML_65918_Test extends ModuleTestBase { private final ObjectMapper MAPPER = newObjectMapper(); // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=65918 @Test public void testMalformed65918() throws Exception { byte[] doc = readResource("/data/fuzz-65918.yaml"); try (JsonParser p = MAPPER.createParser(doc)) { JsonNode root = MAPPER.readTree(p); fail("Should not pass, got: "+root); } catch (StreamConstraintsException e) { verifyException(e, "Document nesting depth"); verifyException(e, "exceeds the maximum allowed"); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ObjectAndTypeId231Test.java ================================================ package tools.jackson.dataformat.yaml.misc; import java.util.List; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class ObjectAndTypeId231Test extends ModuleTestBase { static class Container { @JsonProperty public List list; } @JsonTypeInfo(use = JsonTypeInfo.Id.NAME) @JsonSubTypes({@JsonSubTypes.Type(name="Derived", value=Derived.class)}) @JsonIdentityInfo(generator = ObjectIdGenerators.StringIdGenerator.class) static class Base { } static class Derived extends Base { @JsonProperty String a; } private final ObjectMapper MAPPER = newObjectMapper(); // [dataformats-text#231] @Test public void testTypeAndObjectId231() throws Exception { String yaml = "list:\n" + " - !Derived &id1\n" + " a: foo\n"+ " - !Derived &id2\n" + " a: bar\n"+ ""; Container container = MAPPER.readValue(yaml, Container.class); assertNotNull(container); assertNotNull(container.list); assertEquals(2, container.list.size()); Base item = container.list.get(0); assertEquals(Derived.class, item.getClass()); assertEquals("foo", ((Derived) item).a); item = container.list.get(1); assertEquals(Derived.class, item.getClass()); assertEquals("bar", ((Derived) item).a); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ObjectAndTypeId232Test.java ================================================ package tools.jackson.dataformat.yaml.misc; import java.util.List; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import com.fasterxml.jackson.annotation.JsonTypeInfo.Id; import com.fasterxml.jackson.annotation.ObjectIdGenerators; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class ObjectAndTypeId232Test extends ModuleTestBase { // [dataformats-text#232] static class Container232 { @JsonProperty List list; } @JsonTypeInfo(use = Id.NAME) @JsonSubTypes({@JsonSubTypes.Type(name="Derived", value=Derived232.class)}) @JsonIdentityInfo(generator = ObjectIdGenerators.StringIdGenerator.class) static class Base232 { } static class Derived232 extends Base232 { @JsonProperty String a; } /* /********************************************************** /* Test methods /********************************************************** */ private final ObjectMapper MAPPER = newObjectMapper(); // [dataformats-text#232] @Test public void testTypedYAML232() throws Exception { String yaml = "list:\n" + " - !Derived\n" + " a: foo\n"+ " - !Derived\n" + " a: bar\n"+ ""; Container232 container = MAPPER.readValue(yaml, Container232.class); assertNotNull(container); assertNotNull(container.list); assertEquals(2, container.list.size()); assertNotNull(container.list.get(0)); assertEquals(Derived232.class, container.list.get(0).getClass()); assertEquals("foo", ((Derived232) container.list.get(0)).a); assertNotNull(container.list.get(1)); assertEquals(Derived232.class, container.list.get(1).getClass()); assertEquals("bar", ((Derived232) container.list.get(1)).a); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ObjectAndTypeId292Test.java ================================================ package tools.jackson.dataformat.yaml.misc; import java.util.List; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertSame; /** * Tests for [dataformats-text#292]: YAML anchor/alias * with type info and object identity, including variants * with builder-based deserialization (fixed in jackson-databind). */ public class ObjectAndTypeId292Test extends ModuleTestBase { // Interface base type (no builder) static class Container { @JsonProperty public List list; } @JsonTypeInfo(use = JsonTypeInfo.Id.NAME) @JsonSubTypes({@JsonSubTypes.Type(name = "Derived", value = Derived.class)}) @JsonIdentityInfo(generator = ObjectIdGenerators.StringIdGenerator.class) interface Base { } static class Derived implements Base { @JsonProperty public String a; } // Class base type (no builder) static class ContainerWithClass { @JsonProperty public List list; } @JsonTypeInfo(use = JsonTypeInfo.Id.NAME) @JsonSubTypes({@JsonSubTypes.Type(name = "DerivedFromClass", value = DerivedFromClass.class)}) @JsonIdentityInfo(generator = ObjectIdGenerators.StringIdGenerator.class) static class BaseClass { } static class DerivedFromClass extends BaseClass { @JsonProperty public String a; } // Interface base type + builder static class ContainerWithBuilder { @JsonProperty public List list; } @JsonTypeInfo(use = JsonTypeInfo.Id.NAME) @JsonSubTypes({@JsonSubTypes.Type(name = "DerivedWithBuilder", value = DerivedWithBuilder.class)}) @JsonIdentityInfo(generator = ObjectIdGenerators.StringIdGenerator.class, resolver = SimpleObjectIdResolver.class) interface BaseWithBuilder { } @tools.jackson.databind.annotation.JsonDeserialize(builder = DerivedWithBuilder.DerivedBuilder.class) static class DerivedWithBuilder implements BaseWithBuilder { @JsonProperty public String a; DerivedWithBuilder(String a) { this.a = a; } @tools.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "", buildMethodName = "build") public static class DerivedBuilder { private String a; @JsonProperty public DerivedBuilder a(String a) { this.a = a; return this; } public DerivedWithBuilder build() { return new DerivedWithBuilder(this.a); } } } // Class base type + builder static class ContainerClassWithBuilder { @JsonProperty public List list; } @JsonTypeInfo(use = JsonTypeInfo.Id.NAME) @JsonSubTypes({@JsonSubTypes.Type(name = "DerivedClassBuilder", value = DerivedClassWithBuilder.class)}) @JsonIdentityInfo(generator = ObjectIdGenerators.StringIdGenerator.class, resolver = SimpleObjectIdResolver.class) static class BaseClassWithBuilder { } @tools.jackson.databind.annotation.JsonDeserialize(builder = DerivedClassWithBuilder.DerivedBuilder.class) static class DerivedClassWithBuilder extends BaseClassWithBuilder { @JsonProperty public String a; DerivedClassWithBuilder(String a) { this.a = a; } @tools.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "", buildMethodName = "build") public static class DerivedBuilder { private String a; @JsonProperty public DerivedBuilder a(String a) { this.a = a; return this; } public DerivedClassWithBuilder build() { return new DerivedClassWithBuilder(this.a); } } } private final ObjectMapper MAPPER = newObjectMapper(); // [dataformats-text#292]: alias with interface base type (no builder) @Test public void testAliasWithInterfaceBaseType() throws Exception { String yaml = "list:\n" + " - !Derived &id1\n" + " a: foo\n" + " - *id1\n"; Container container = MAPPER.readValue(yaml, Container.class); assertNotNull(container); assertNotNull(container.list); assertEquals(2, container.list.size()); Base first = container.list.get(0); assertEquals(Derived.class, first.getClass()); assertEquals("foo", ((Derived) first).a); Base second = container.list.get(1); assertSame(first, second); } // [dataformats-text#292]: alias with class base type (no builder) @Test public void testAliasWithClassBaseType() throws Exception { String yaml = "list:\n" + " - !DerivedFromClass &id1\n" + " a: foo\n" + " - *id1\n"; ContainerWithClass container = MAPPER.readValue(yaml, ContainerWithClass.class); assertNotNull(container); assertNotNull(container.list); assertEquals(2, container.list.size()); BaseClass first = container.list.get(0); assertEquals(DerivedFromClass.class, first.getClass()); assertEquals("foo", ((DerivedFromClass) first).a); BaseClass second = container.list.get(1); assertSame(first, second); } // [dataformats-text#292]: alias with interface base type + builder @Test public void testAliasWithInterfaceAndBuilder() throws Exception { String yaml = "list:\n" + " - !DerivedWithBuilder &id1\n" + " a: foo\n" + " - *id1\n"; ContainerWithBuilder container = MAPPER.readValue(yaml, ContainerWithBuilder.class); assertNotNull(container); assertNotNull(container.list); assertEquals(2, container.list.size()); BaseWithBuilder first = container.list.get(0); assertEquals(DerivedWithBuilder.class, first.getClass()); assertEquals("foo", ((DerivedWithBuilder) first).a); BaseWithBuilder second = container.list.get(1); assertSame(first, second); } // [dataformats-text#292]: alias with class base type + builder @Test public void testAliasWithClassAndBuilder() throws Exception { String yaml = "list:\n" + " - !DerivedClassBuilder &id1\n" + " a: foo\n" + " - *id1\n"; ContainerClassWithBuilder container = MAPPER.readValue(yaml, ContainerClassWithBuilder.class); assertNotNull(container); assertNotNull(container.list); assertEquals(2, container.list.size()); BaseClassWithBuilder first = container.list.get(0); assertEquals(DerivedClassWithBuilder.class, first.getClass()); assertEquals("foo", ((DerivedClassWithBuilder) first).a); BaseClassWithBuilder second = container.list.get(1); assertSame(first, second); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ObjectId123Test.java ================================================ package tools.jackson.dataformat.yaml.misc; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertSame; // for [dataformats-text#123], problem with YAML, Object Ids // (and also see [dataformats-text#296] for related case) public class ObjectId123Test extends ModuleTestBase { private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testObjectIdUsingNative() throws Exception { final String YAML_CONTENT = "foo: &foo1\n" + " value: bar\n" + "boo: *foo1\n"; ScratchModel result = MAPPER.readValue(YAML_CONTENT, ScratchModel.class); assertNotNull(result); assertNotNull(result.foo); assertNotNull(result. boo); assertSame(result.foo, result.boo); } static class ScratchModel { public StringHolder foo; public StringHolder boo; } // @JsonIdentityInfo(generator = ObjectIdGenerators.None.class) @JsonIdentityInfo(generator = ObjectIdGenerators.StringIdGenerator.class) static class StringHolder { public String value; @Override public String toString() { return value; } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ObjectId63Test.java ================================================ package tools.jackson.dataformat.yaml.misc; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonIdentityInfo; import com.fasterxml.jackson.annotation.ObjectIdGenerators; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; // for [dataformats-text#63], problem with YAML, Object Ids public class ObjectId63Test extends ModuleTestBase { @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id") public static class SimplePojo { String id; String value; public String getId() { return this.id; } public void setId(final String newId) { this.id = newId; } public String getValue() { return this.value; } public void setValue(final String newValue) { this.value = newValue; } } private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testIssue63() throws Exception { final SimplePojo simplePojoWithId = new SimplePojo(); simplePojoWithId.setId("myId"); simplePojoWithId.setValue("Value"); final SimplePojo simplePojoWithoutId = new SimplePojo(); simplePojoWithoutId.setValue("Value"); assertEquals("---\n&myId id: \"myId\"\nvalue: \"Value\"", MAPPER.writeValueAsString(simplePojoWithId).trim()); // `null` object id is not to be written as anchor but skipped; property itself // follows regular inclusion rules. assertEquals("---\nid: null\nvalue: \"Value\"", MAPPER.writeValueAsString(simplePojoWithoutId).trim()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ObjectIdTest.java ================================================ package tools.jackson.dataformat.yaml.misc; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.core.ObjectReadContext; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.util.TokenBuffer; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import static org.junit.jupiter.api.Assertions.*; public class ObjectIdTest extends ModuleTestBase { @JsonIdentityInfo(generator=ObjectIdGenerators.IntSequenceGenerator.class, property="@id") @JsonPropertyOrder({ "name", "next"}) static class Node { public String name; public Node next; public Node() { } public Node(String name) { this.name = name; } } @JsonIdentityInfo(generator=PrefixIdGenerator.class) static class NodeWithStringId { public String name; public NodeWithStringId next; public NodeWithStringId() { } public NodeWithStringId(String name) { this.name = name; } } static class PrefixIdGenerator extends ObjectIdGenerator { private static final long serialVersionUID = 1L; protected final Class _scope; protected transient int _nextValue; protected PrefixIdGenerator() { this(Object.class); } protected PrefixIdGenerator(Class scope) { _scope = scope; } @Override public final Class getScope() { return _scope; } @Override public boolean canUseFor(ObjectIdGenerator gen) { return (gen.getClass() == getClass()) && (gen.getScope() == _scope); } @Override public String generateId(Object forPojo) { return "id" + (_nextValue++); } @Override public ObjectIdGenerator forScope(Class scope) { return (_scope == scope) ? this : new PrefixIdGenerator(scope); } @Override public ObjectIdGenerator newForSerialization(Object context) { return new PrefixIdGenerator(_scope); } @Override public ObjectIdGenerator.IdKey key(Object key) { return new ObjectIdGenerator.IdKey(getClass(), _scope, key); } } /* /********************************************************** /* Test methods /********************************************************** */ private final static String SIMPLE_YAML_NATIVE = "---\n" +"&1 name: \"first\"\n" +"next:\n" +" &2 name: \"second\"\n" +" next: *1" ; private final static String SIMPLE_YAML_NATIVE_B = "---\n" +"&id1 name: \"first\"\n" +"next:\n" +" &id2 name: \"second\"\n" +" next: *id1" ; private final static String SIMPLE_YAML_NON_NATIVE = "---\n" +"'@id': 1\n" +"name: \"first\"\n" +"next:\n" +" '@id': 2\n" +" name: \"second\"\n" +" next: 1" ; private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testNativeSerialization() throws Exception { Node first = new Node("first"); Node second = new Node("second"); first.next = second; second.next = first; String yaml = MAPPER.writeValueAsString(first); assertYAML(SIMPLE_YAML_NATIVE, yaml); } // [dataformat-yaml#23] @Test public void testNonNativeSerialization() throws Exception { YAMLMapper mapper = new YAMLMapper(); Node first = new Node("first"); Node second = new Node("second"); first.next = second; second.next = first; String yaml = mapper.writer() .without(YAMLWriteFeature.USE_NATIVE_OBJECT_ID) .writeValueAsString(first); assertYAML(SIMPLE_YAML_NON_NATIVE, yaml); } @Test public void testBasicDeserialization() throws Exception { Node first = MAPPER.readValue(SIMPLE_YAML_NATIVE, Node.class); _verify(first); // Also with non-native Node second = MAPPER.readValue(SIMPLE_YAML_NON_NATIVE, Node.class); _verify(second); } // More complex example with string-prefixed id // [dataformat-yaml#45] @Test public void testDeserializationIssue45() throws Exception { NodeWithStringId node = MAPPER.readValue(SIMPLE_YAML_NATIVE_B, NodeWithStringId.class); assertNotNull(node); assertEquals("first", node.name); assertNotNull(node.next); assertEquals("second", node.next.name); assertNotNull(node.next.next); assertSame(node, node.next.next); } @Test public void testRoundtripWithBuffer() throws Exception { TokenBuffer tbuf = MAPPER.readValue(SIMPLE_YAML_NATIVE, TokenBuffer.class); assertNotNull(tbuf); Node first = MAPPER.readValue(tbuf.asParser(ObjectReadContext.empty()), Node.class); tbuf.close(); assertNotNull(first); _verify(first); } /* /********************************************************** /* Internal helper methods /********************************************************** */ private void _verify(Node n) { assertNotNull(n); assertEquals("first", n.name); assertNotNull(n.next); assertEquals("second", n.next.name); assertNotNull(n.next.next); assertSame(n, n.next.next); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ObjectIdWithCreator22Test.java ================================================ package tools.jackson.dataformat.yaml.misc; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; // [dataformats-text#22] YAML anchors don't seem to work with @JsonCreator public class ObjectIdWithCreator22Test extends ModuleTestBase { @JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class) static class Student { private String name; private int age; @JsonCreator public Student(@JsonProperty("age") int age, @JsonProperty("name") String name) { this.name = name; this.age = age; } public String getName() { return name; } public int getAge() { return age; } } // Same as Student but with no-arg constructor (works fine) @JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class) static class StudentNoCreator { public String name; public int age; } // More complex: with @JsonCreator and circular references @JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class, property = "@id") @JsonPropertyOrder({ "name", "next" }) static class NodeWithCreator { public String name; public NodeWithCreator next; @JsonCreator public NodeWithCreator(@JsonProperty("name") String name, @JsonProperty("next") NodeWithCreator next) { this.name = name; this.next = next; } } private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testNativeAnchorWithJsonCreator() throws Exception { // The YAML from the issue: anchor on the mapping object String yaml = "---\n" + "&1 name: \"billy\"\n" + "age: 5\n"; Student student = MAPPER.readValue(yaml, Student.class); assertNotNull(student); assertEquals("billy", student.getName()); assertEquals(5, student.getAge()); } @Test public void testNonNativeIdWithJsonCreator() throws Exception { // Workaround from the issue: explicit @id property String yaml = "---\n" + "'@id': 1\n" + "name: \"billy\"\n" + "age: 5\n"; Student student = MAPPER.readValue(yaml, Student.class); assertNotNull(student); assertEquals("billy", student.getName()); assertEquals(5, student.getAge()); } @Test public void testNativeAnchorWithNoArgConstructor() throws Exception { // Same YAML but with no-arg constructor class String yaml = "---\n" + "&1 name: \"billy\"\n" + "age: 5\n"; StudentNoCreator student = MAPPER.readValue(yaml, StudentNoCreator.class); assertNotNull(student); assertEquals("billy", student.name); assertEquals(5, student.age); } @Test public void testCircularRefWithJsonCreator() throws Exception { String yaml = "---\n" + "&1 name: \"first\"\n" + "next:\n" + " &2 name: \"second\"\n" + " next: *1\n"; NodeWithCreator first = MAPPER.readValue(yaml, NodeWithCreator.class); assertNotNull(first); assertEquals("first", first.name); assertNotNull(first.next); assertEquals("second", first.next.name); assertNotNull(first.next.next); assertSame(first, first.next.next); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ObjectIdWithUUID550Test.java ================================================ package tools.jackson.dataformat.yaml.misc; import java.util.List; import java.util.Map; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; // [dataformats-text#550] YAML anchor/alias with @JsonIdentityInfo and UUIDGenerator public class ObjectIdWithUUID550Test extends ModuleTestBase { // Simpler: no-arg constructors @JsonIdentityInfo(generator = ObjectIdGenerators.UUIDGenerator.class) static class AbilitySimple { public String name; public Map> modifiers; } static class ModifierSimple { public String name; public AbilitySimple parent; } private final ObjectMapper MAPPER = newObjectMapper(); // First: verify round-trip works (write then read) @Test public void testRoundTripWithUUID() throws Exception { AbilitySimple ability = new AbilitySimple(); ability.name = "TestAbility"; ModifierSimple mod = new ModifierSimple(); mod.name = "TestModifier"; mod.parent = ability; ability.modifiers = Map.of("TestModifier", List.of(mod)); String yaml = MAPPER.writeValueAsString(ability); AbilitySimple result = MAPPER.readValue(yaml, AbilitySimple.class); assertNotNull(result); assertEquals("TestAbility", result.name); assertNotNull(result.modifiers); assertSame(result, result.modifiers.get("TestModifier").get(0).parent); } // Reproduce the exact issue from #550: hand-crafted YAML with UUID anchor @Test public void testHandCraftedYAMLWithUUIDAnchor() throws Exception { String yaml = "---\n" + "&12345678-aaaa-bbbb-cccc-87654321abcd\n" + "name: TestAbility\n" + "modifiers:\n" + " TestModifier:\n" + " - name: TestModifier\n" + " parent: *12345678-aaaa-bbbb-cccc-87654321abcd\n"; AbilitySimple result = MAPPER.readValue(yaml, AbilitySimple.class); assertNotNull(result); assertEquals("TestAbility", result.name); assertNotNull(result.modifiers); assertSame(result, result.modifiers.get("TestModifier").get(0).parent); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/PolymorphicDeductionTest.java ================================================ package tools.jackson.dataformat.yaml.misc; import com.fasterxml.jackson.annotation.JsonSubTypes; import com.fasterxml.jackson.annotation.JsonTypeInfo; import tools.jackson.databind.*; import tools.jackson.dataformat.yaml.ModuleTestBase; import static com.fasterxml.jackson.annotation.JsonSubTypes.Type; import static com.fasterxml.jackson.annotation.JsonTypeInfo.Id.DEDUCTION; import static org.junit.jupiter.api.Assertions.*; // Copied from [databind#43], deduction-based polymorphism public class PolymorphicDeductionTest extends ModuleTestBase { @JsonTypeInfo(use = DEDUCTION) @JsonSubTypes( {@Type(LiveCat.class), @Type(DeadCat.class), @Type(Fleabag.class)}) // A general supertype with no properties - used for tests involving {} interface Feline {} @JsonTypeInfo(use = DEDUCTION) @JsonSubTypes( {@Type(LiveCat.class), @Type(DeadCat.class)}) // A supertype containing common properties public static class Cat implements Feline { public String name = "Grizabella"; } // Distinguished by its parent and a unique property static class DeadCat extends Cat { public String causeOfDeath; } // Distinguished by its parent and a unique property static class LiveCat extends Cat { public boolean angry; } // No distinguishing properties whatsoever static class Fleabag implements Feline { // NO OP } /* /********************************************************** /* Mock data /********************************************************** */ private static final String DEAD_CAT_DOC = "name: Felix\ncauseOfDeath: entropy\n"; private static final String LIVE_CAT_DOC = "name: Felix\nangry: true\n"; /* /********************************************************** /* Test methods /********************************************************** */ private final ObjectMapper MAPPER = newObjectMapper(); public void testSimpleInference() throws Exception { Cat cat = MAPPER.readValue(LIVE_CAT_DOC, Cat.class); assertTrue(cat instanceof LiveCat); assertSame(cat.getClass(), LiveCat.class); assertEquals("Felix", cat.name); assertTrue(((LiveCat)cat).angry); cat = MAPPER.readValue(DEAD_CAT_DOC, Cat.class); assertTrue(cat instanceof DeadCat); assertSame(cat.getClass(), DeadCat.class); assertEquals("Felix", cat.name); assertEquals("entropy", ((DeadCat)cat).causeOfDeath); } public void testSimpleInferenceOfEmptySubtypeDoesntMatchNull() throws Exception { Feline feline = MAPPER.readValue("null", Feline.class); assertNull(feline); } public void testCaseInsensitiveInference() throws Exception { Cat cat = mapperBuilder() .configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true) .build() .readValue(DEAD_CAT_DOC.toUpperCase(), Cat.class); assertTrue(cat instanceof DeadCat); assertSame(cat.getClass(), DeadCat.class); assertEquals("FELIX", cat.name); assertEquals("ENTROPY", ((DeadCat)cat).causeOfDeath); } // [dataformats-text#404]: public void testSerializationOfInferred() throws Exception { assertEquals("name: \"Grizabella\"", trimDocMarker(MAPPER.writeValueAsString(new Cat()))); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/PolymorphicWithObjectId25Test.java ================================================ package tools.jackson.dataformat.yaml.misc; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; // [dataformats-text#25] public class PolymorphicWithObjectId25Test extends ModuleTestBase { // [dataformats-text#25] @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type", defaultImpl = NodeWithStringId.class) @JsonSubTypes({ @JsonSubTypes.Type(value = SubNodeWithStringId.class, name= "subnode"), @JsonSubTypes.Type(value = NodeWithStringId.class, name = "node") }) @JsonIdentityInfo(generator=ObjectIdGenerators.StringIdGenerator.class) static class NodeWithStringId { public String name; public String type; public NodeWithStringId next; public NodeWithStringId() { } public NodeWithStringId(String name) { this.name = name; } } static class SubNodeWithStringId extends NodeWithStringId { } private final ObjectMapper MAPPER = newObjectMapper(); // [dataformats-text#25] @Test public void testPolymorphicAndObjectId25() throws Exception { String yml = "---\n" +"&id1 name: \"first\"\n" +"type: \"node\"\n" +"next:\n" +" &id2 name: \"second\"\n" +" next: *id1\n" ; NodeWithStringId node = MAPPER.readValue(yml, NodeWithStringId.class); assertNotNull(node); assertEquals("first", node.name); assertNotNull(node.next); assertEquals("second", node.next.name); assertNotNull(node.next.next); assertSame(node, node.next.next); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ReservedNamesTest.java ================================================ package tools.jackson.dataformat.yaml.misc; import java.util.Collections; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; // [dataformats-text#68]: should quote reserved names public class ReservedNamesTest extends ModuleTestBase { private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testQuotingOfBooleanKeys() throws Exception { for (String value : new String[] { "true", "True", "false", "False", "yes", "no", // NOTE: single-letter cases left out on purpose "y", "Y", "n", "N", "on", "off", }) { _testQuotingOfBooleanKeys(value); } } private void _testQuotingOfBooleanKeys(String key) throws Exception { final Map input = Collections.singletonMap(key, 123); final String doc = trimDocMarker(MAPPER.writeValueAsString(input).trim()); assertEquals("\""+key+"\": 123", doc); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/misc/ReservedValuesTest.java ================================================ package tools.jackson.dataformat.yaml.misc; import java.util.Collections; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.assertEquals; public class ReservedValuesTest extends ModuleTestBase { private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testQuotingOfBooleanValues() throws Exception { for (String value : new String[] { "null", "Null", "NULL", "true", "True", "TRUE", "false", "False", "FALSE", "yes", "Yes", "YES", "no", "No", "NO", "y", "Y", "n", "N", "on", "On", "ON", "off", "Off", "OFF" }) { _testQuotingOfBooleanValues(value); } } private void _testQuotingOfBooleanValues(String value) throws Exception { final Map input = Collections.singletonMap("key", value); final String doc = trimDocMarker(MAPPER.writeValueAsString(input).trim()); assertEquals("key: \""+value+"\"", doc); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/BinaryWriteTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.StringWriter; import java.util.Arrays; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonGenerator; import tools.jackson.databind.*; import tools.jackson.databind.node.JsonNodeType; import tools.jackson.databind.node.ObjectNode; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; public class BinaryWriteTest extends ModuleTestBase { private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testBinaryViaTree() throws Exception { byte[] srcPayload = new byte[] { 1, 2, 3, 4, 5 }; ObjectNode root = MAPPER.createObjectNode(); root.put("payload", srcPayload); String doc = MAPPER.writeValueAsString(root); // and read back final JsonNode bean = MAPPER.readTree(doc); final JsonNode data = bean.get("payload"); assertNotNull(data); assertEquals(JsonNodeType.BINARY, data.getNodeType()); final byte[] b = data.binaryValue(); assertArrayEquals(srcPayload, b); } @Test public void testWriteLongBinary() throws Exception { final int length = 200; final byte[] data = new byte[length]; Arrays.fill(data, (byte) 1); StringWriter w = new StringWriter(); try (JsonGenerator gen = MAPPER.createGenerator(w)) { gen.writeStartObject(); gen.writeBinaryProperty("array", data); gen.writeEndObject(); gen.close(); } String yaml = w.toString(); assertEquals("---\n" + "array: !!binary |-\n" + " AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB\n" + " AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB\n" + " AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB\n" + " AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE=\n", yaml); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/CustomNodeStyleTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import org.snakeyaml.engine.v2.api.DumpSettings; import org.snakeyaml.engine.v2.common.FlowStyle; import static java.util.Collections.singletonList; import static java.util.Collections.singletonMap; import static org.junit.jupiter.api.Assertions.assertEquals; public class CustomNodeStyleTest extends ModuleTestBase { private final ObjectMapper REGULAR_MAPPER = createMapper(null); private final ObjectMapper BLOCK_STYLE_MAPPER = createMapper(FlowStyle.BLOCK); private final ObjectMapper FLOW_STYLE_MAPPER = createMapper(FlowStyle.FLOW); @Test public void testFlowStyles() throws Exception { // list assertEquals("key_default:\n- value", _asYaml(REGULAR_MAPPER, singletonMap("key_default", singletonList("value")))); assertEquals("{key_flow: [value]}", _asYaml(FLOW_STYLE_MAPPER, singletonMap("key_flow", singletonList("value")))); assertEquals("key_block:\n- value", _asYaml(BLOCK_STYLE_MAPPER, singletonMap("key_block", singletonList("value")))); // object assertEquals("key_default:\n foo: bar", _asYaml(REGULAR_MAPPER, singletonMap("key_default", singletonMap("foo", "bar")))); assertEquals("{key_flow: {foo: bar}}", _asYaml(FLOW_STYLE_MAPPER, singletonMap("key_flow", singletonMap("foo", "bar")))); assertEquals("key_block:\n foo: bar", _asYaml(BLOCK_STYLE_MAPPER, singletonMap("key_block", singletonMap("foo", "bar")))); } private String _asYaml(ObjectMapper mapper, Object value) throws Exception { return mapper.writeValueAsString(value).trim(); } private ObjectMapper createMapper(FlowStyle flowStyle) { DumpSettings dumperOptions = null; if (flowStyle != null) { dumperOptions = DumpSettings.builder() .setDefaultFlowStyle(flowStyle) .build(); } YAMLFactory yamlFactory = YAMLFactory.builder().dumperOptions(dumperOptions).build(); return YAMLMapper.builder(yamlFactory) .enable(YAMLWriteFeature.MINIMIZE_QUOTES) .disable(YAMLWriteFeature.WRITE_DOC_START_MARKER) .build(); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/CustomStringQuoting229Test.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.util.Collections; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import tools.jackson.dataformat.yaml.util.StringQuotingChecker; import static org.junit.jupiter.api.Assertions.assertEquals; @SuppressWarnings("serial") public class CustomStringQuoting229Test extends ModuleTestBase { static class CustomChecker extends StringQuotingChecker { @Override public boolean needToQuoteName(String name) { return name.isEmpty() || "specialKey".equals(name); } @Override public boolean needToQuoteValue(String value) { return value.isEmpty() || "specialValue".equals(value); } } private final ObjectMapper MINIMIZING_MAPPER = YAMLMapper.builder( YAMLFactory.builder() // null -> use default: .stringQuotingChecker(null) .build()) .enable(YAMLWriteFeature.MINIMIZE_QUOTES) .build(); private final YAMLMapper CUSTOM_MAPPER = YAMLMapper.builder( YAMLFactory.builder() .stringQuotingChecker(new CustomChecker()) .build()) .enable(YAMLWriteFeature.MINIMIZE_QUOTES) .build(); @Test public void testNameQuotingDefault() throws Exception { // First, default quoting assertEquals("key: value", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("key", "value"))); // 03-Oct-2020, tatu: output here is... weird. Not sure what to make of it /* assertEquals("\"\": value", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("", "value"))); */ assertEquals("\"true\": value", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("true", "value"))); assertEquals("\"123\": value", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("123", "value"))); assertEquals("specialKey: value", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("specialKey", "value"))); } @Test public void testNameQuotingCustom() throws Exception { // Then with custom rules assertEquals("key: value", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("key", "value"))); // 03-Oct-2020, tatu: output here is... weird. Not sure what to make of it /* assertEquals("\"\": value", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("", "value"))); */ assertEquals("true: value", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("true", "value"))); assertEquals("123: value", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("123", "value"))); assertEquals("\"specialKey\": value", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("specialKey", "value"))); } @Test public void testValueQuotingDefault() throws Exception { // First, default quoting assertEquals("key: value", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("key", "value"))); assertEquals("key: \"\"", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("key", ""))); assertEquals("key: \"true\"", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("key", "true"))); // Currently (2.12.0) number-looking Strings not (yet?) quoted assertEquals("key: 123", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("key", "123"))); assertEquals("key: specialValue", _asYaml(MINIMIZING_MAPPER, Collections.singletonMap("key", "specialValue"))); } @Test public void testValueQuotingCustom() throws Exception { // Then with custom rules assertEquals("key: value", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("key", "value"))); assertEquals("key: \"\"", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("key", ""))); assertEquals("key: true", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("key", "true"))); assertEquals("key: 123", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("key", "123"))); assertEquals("key: \"specialValue\"", _asYaml(CUSTOM_MAPPER, Collections.singletonMap("key", "specialValue"))); } private String _asYaml(ObjectMapper mapper, Object value) throws Exception { String yaml = mapper.writeValueAsString(value).trim(); if (yaml.startsWith("---")) { yaml = yaml.substring(3).trim(); } return yaml; } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/DatabindWriteTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.*; import java.util.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonPropertyOrder; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.node.ObjectNode; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; public class DatabindWriteTest extends ModuleTestBase { final ObjectMapper MAPPER = newObjectMapper(); @JsonPropertyOrder(alphabetic = true) static class Point { public int x, y; protected Point() { } public Point(int x, int y) { this.x = x; this.y = y; } } @Test public void testBasicPOJO() throws Exception { FiveMinuteUser user = new FiveMinuteUser("Bob", "Dabolito", false, FiveMinuteUser.Gender.MALE, new byte[] { 1, 3, 13, 79 }); String yaml = MAPPER.writeValueAsString(user).trim(); String[] parts = yaml.split("\n"); // unify ordering, need to use TreeSets to get alphabetic ordering TreeSet exp = new TreeSet(); for (String part : parts) { exp.add(part.trim()); } Iterator it = exp.iterator(); assertEquals("---", it.next()); assertEquals("AQMNTw==", it.next()); assertEquals("firstName: \"Bob\"", it.next()); assertEquals("gender: \"MALE\"", it.next()); assertEquals("lastName: \"Dabolito\"", it.next()); // 15-Dec-2017, tatu: different linefeed modes, see f.ex: // https://stackoverflow.com/questions/3790454/in-yaml-how-do-i-break-a-string-over-multiple-lines String line = it.next(); String expLine = "userImage: !!binary |"; if (line.endsWith("|-")) { expLine += "-"; } assertEquals(expLine, line); assertEquals("verified: false", it.next()); assertFalse(it.hasNext()); } // Related to [dataformats-text#68], escaping of "reserved" names @Test public void testBasicDatabind2() throws Exception { String yaml = trimDocMarker(MAPPER.writeValueAsString(new Point(1, 2))); // Just verify 'y' will NOT be escaped // [dataformats-text#226]: ... actually, will be. assertEquals("x: 1\n\"y\": 2", yaml); // Actually let's try reading back, too Point p = MAPPER.readValue(yaml, Point.class); assertEquals(1, p.x); assertEquals(2, p.y); } @Test public void testWithFile() throws Exception { File f = File.createTempFile("test", ".yml"); f.deleteOnExit(); Map map = new HashMap(); map.put("a", 3); MAPPER.writeValue(f, map); assertTrue(f.canRead()); BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream( f), "UTF-8")); String doc = br.readLine(); String str = br.readLine(); if (str != null) { doc += "\n" + str; } doc = trimDocMarker(doc); assertEquals("a: 3", doc); br.close(); f.delete(); } @Test public void testWithFile2() throws Exception { File f = File.createTempFile("test", ".yml"); f.deleteOnExit(); ObjectNode root = MAPPER.createObjectNode(); root.put("name", "Foobar"); MAPPER.writeValue(f, root); // and get it back Map result = MAPPER.readValue(f, Map.class); assertEquals(1, result.size()); assertEquals("Foobar", result.get("name")); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorAutoCloseTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.*; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamWriteFeature; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import static org.junit.jupiter.api.Assertions.assertEquals; @SuppressWarnings("resource") public class GeneratorAutoCloseTest extends ModuleTestBase { private Pojo pojo = new Pojo("bar"); @Test public void testGenerateWriterWithoAutoCloseTarget() throws IOException { CloseTrackerWriter writer = new CloseTrackerWriter(); ObjectMapper yamlMapper = newObjectMapper(); yamlMapper.writeValue(writer, pojo); assertEquals(true, writer.isClosed()); writer.close(); } @Test public void testGenerateOutputStreamWithAutoCloseTarget() throws IOException { CloseTrackerOutputStream stream = new CloseTrackerOutputStream(); ObjectMapper yamlMapper = newObjectMapper(); yamlMapper.writeValue(stream, pojo); assertEquals(true, stream.isClosed()); stream.close(); } @Test public void testGenerateWriterWithoutAutoCloseTarget() throws IOException { CloseTrackerWriter writer = new CloseTrackerWriter(); ObjectMapper yamlMapper = mapperBuilder() .disable(StreamWriteFeature.AUTO_CLOSE_TARGET) .build(); yamlMapper.writeValue(writer, pojo); assertEquals(false, writer.isClosed()); writer.close(); } @Test public void testGenerateOutputStreamWithoutAutoCloseTarget() throws IOException { CloseTrackerOutputStream stream = new CloseTrackerOutputStream(); ObjectMapper yamlMapper = mapperBuilder() .disable(StreamWriteFeature.AUTO_CLOSE_TARGET) .build(); yamlMapper.writeValue(stream, pojo); assertEquals(false, stream.isClosed()); stream.close(); } @Test public void testGenerateOutputStreamWithoutAutoCloseTargetOnFactory() throws IOException { CloseTrackerOutputStream stream = new CloseTrackerOutputStream(); ObjectMapper yamlMapper = new ObjectMapper( YAMLFactory.builder() .disable(StreamWriteFeature.AUTO_CLOSE_TARGET) .build() ); yamlMapper.writeValue(stream, pojo); assertEquals(false, stream.isClosed()); stream.close(); } static class CloseTrackerOutputStream extends OutputStream { private boolean closed; @Override public void write(int b) throws IOException { } @Override public void close() throws IOException { closed = true; super.close(); } public boolean isClosed() { return closed; } } static class CloseTrackerWriter extends StringWriter { private boolean closed; @Override public void close() throws IOException { closed = true; super.close(); } public boolean isClosed() { return closed; } } static class Pojo { public final String foo; Pojo(final String foo) { this.foo = foo; } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorExceptionHandlingTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.*; import org.junit.jupiter.api.Test; import org.snakeyaml.engine.v2.common.SpecVersion; import org.snakeyaml.engine.v2.exceptions.YamlEngineException; import tools.jackson.core.JsonGenerator; import tools.jackson.core.exc.JacksonIOException; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.*; /** * Tests to ensure that SnakeYAML exceptions from the emitter are properly * wrapped in Jackson exceptions and not leaked to callers. */ public class GeneratorExceptionHandlingTest extends ModuleTestBase { private final YAMLMapper MAPPER = newObjectMapper(); /** * This test verifies that if the underlying writer fails, * we get a Jackson exception, not a SnakeYAML exception. * The test triggers an IOException during emission which should cause * SnakeYAML to throw a YamlEngineException, which we then wrap. */ @Test public void testWriterIOExceptionWrapping() throws Exception { // We need to let initial writes through for document start markers, // then fail to trigger YamlEngineException during actual content emission final int ALLOWED_INITIAL_WRITES = 5; // Create a writer that will fail during write operations Writer failingWriter = new Writer() { private int callCount = 0; @Override public void write(char[] cbuf, int off, int len) throws IOException { // Let a few initial writes through (document markers, etc) // then fail to trigger exception during content emission if (++callCount > ALLOWED_INITIAL_WRITES) { throw new IOException("Simulated write failure"); } } @Override public void flush() throws IOException { // Allow flush } @Override public void close() throws IOException { // Allow close } }; try (JsonGenerator gen = MAPPER.createGenerator(failingWriter)) { // Try to write something that will trigger the emitter gen.writeStartObject(); gen.writeStringProperty("test", "value"); gen.writeStringProperty("test2", "value2"); gen.writeStringProperty("test3", "value3"); // More writes to trigger failure gen.writeEndObject(); fail("Should have thrown an exception"); } catch (JacksonIOException e) { // Expected: our custom exception wrapping the underlying failure assertNotNull(e.getMessage()); // Verify it has the cause assertNotNull(e.getCause()); } } /** * Test that a {@link YamlEngineException} thrown by the SnakeYAML emitter * (not caused by an IOException) is caught and wrapped as a * {@link JacksonYAMLWriteException}. *

      * We trigger this by configuring an unsupported YAML version (major != 1), * which causes the emitter to throw an {@code EmitterException} * (subclass of {@code YamlEngineException}) when it tries to emit the * document start event. */ @Test public void testYamlEngineExceptionWrapping() throws Exception { // SpecVersion with major=2 is unsupported by the emitter YAMLFactory factory = YAMLFactory.builder() .yamlVersionToWrite(new SpecVersion(2, 0)) .build(); YAMLMapper mapper = YAMLMapper.builder(factory).build(); try { mapper.writeValueAsString(java.util.Map.of("key", "value")); fail("Should have thrown an exception"); } catch (JacksonYAMLWriteException e) { // Expected: SnakeYAML EmitterException wrapped as JacksonYAMLWriteException assertTrue(e.getMessage().contains("unsupported YAML version"), "Message should mention unsupported YAML version, got: " + e.getMessage()); assertInstanceOf(YamlEngineException.class, e.getCause()); } catch (YamlEngineException e) { fail("YamlEngineException should not leak; should be wrapped as JacksonYAMLWriteException: " + e); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorFeature175Test.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import static org.junit.jupiter.api.Assertions.*; // 11-Nov-2020, tatu: Failing for 3.x until (and if) `snakeyaml-engine` // adds support ot make feature work. public class GeneratorFeature175Test extends ModuleTestBase { /* /********************************************************** /* Test methods /********************************************************** */ // [dataformats-text#175]: arrays indentation with indicator @Test public void testArrayWithIndicatorIndentation() throws Exception { String yamlBefore = "---\n" + "tags:\n" + " - tag:\n" + " values:\n" + " - \"first\"\n" + " - \"second\"\n" + " name: \"Mathematics\""; YAMLMapper defaultArrayMapper = YAMLMapper.builder() .enable(YAMLWriteFeature.INDENT_ARRAYS) .build(); Map stuff = defaultArrayMapper.readValue(yamlBefore, Map.class); String defaultYaml = defaultArrayMapper.writeValueAsString(stuff); //default array indentation set indicator in separate line assertNotSame(yamlBefore, defaultYaml); YAMLMapper arrayWithIndicatorMapper = YAMLMapper.builder() .enable(YAMLWriteFeature.INDENT_ARRAYS) .enable(YAMLWriteFeature.INDENT_ARRAYS_WITH_INDICATOR) .build(); String arrayWithIndicatorYaml = arrayWithIndicatorMapper.writeValueAsString(stuff); assertEquals(yamlBefore, arrayWithIndicatorYaml.trim()); // and do it again to ensure it is parseable (no need to be identical) Map stuff2 = arrayWithIndicatorMapper.readValue(arrayWithIndicatorYaml, Map.class); assertNotNull(stuff2); assertEquals(stuff, stuff2); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorFeature34Test.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class GeneratorFeature34Test extends ModuleTestBase { /* /********************************************************** /* Test methods /********************************************************** */ // [dataformats-text#34]: busted indentation @Test public void testArrayIndentation67() throws Exception { String yamlBefore = "---\n" + "tags:\n" + " - tag:\n" + " values:\n" + " - \"first\"\n" + " - \"second\"\n" + " name: \"Mathematics\""; YAMLMapper yamlMapper = new YAMLMapper(); Map stuff = yamlMapper .readValue(yamlBefore, Map.class); String yamlAfter = yamlMapper.writer() .with(YAMLWriteFeature.INDENT_ARRAYS) .writeValueAsString(stuff); // and do it again to ensure it is parseable (no need to be identical) Map stuff2 = yamlMapper.readValue(yamlAfter, Map.class); assertNotNull(stuff2); assertEquals(stuff, stuff2); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorFeatureTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.util.*; import org.junit.jupiter.api.Test; import org.snakeyaml.engine.v2.common.SpecVersion; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.ObjectWriter; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import static org.junit.jupiter.api.Assertions.assertEquals; public class GeneratorFeatureTest extends ModuleTestBase { static class Words { public List words; public Words(String... w) { words = Arrays.asList(w); } } /* /********************************************************** /* Test methods /********************************************************** */ private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testArrayIndentation() throws Exception { Words input = new Words("first", "second", "third"); // First: default settings, no indentation: String yaml = MAPPER.writeValueAsString(input); if (yaml.startsWith("---")) { yaml = yaml.substring(3); } yaml = yaml.trim(); assertEquals("words:\n- \"first\"\n- \"second\"\n- \"third\"", yaml); // and then with different config ObjectWriter w = MAPPER.writer().with(YAMLWriteFeature.INDENT_ARRAYS); yaml = w.writeValueAsString(input); if (yaml.startsWith("---")) { yaml = yaml.substring(3); } yaml = yaml.trim(); // Due to [dataformats-text#34], exact indentation amounts may vary // assertEquals("words:\n - \"first\"\n - \"second\"\n - \"third\"", yaml); String[] parts = yaml.split("\n"); assertEquals(4, parts.length); assertEquals("words:", parts[0].trim()); assertEquals("- \"first\"", parts[1].trim()); assertEquals("- \"second\"", parts[2].trim()); assertEquals("- \"third\"", parts[3].trim()); } //@since 2.14 @Test public void testLongKeys() throws Exception { final String LONG_KEY = "key_longer_than_128_characters_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; ObjectMapper defaultMapper = YAMLMapper.builder().build(); final Object inputValue = Collections.singletonMap(LONG_KEY, "value"); assertEquals("---\n? " + LONG_KEY + "\n: \"value\"", _trim(defaultMapper.writeValueAsString(inputValue))); ObjectMapper longKeysMapper = YAMLMapper.builder().enable(YAMLWriteFeature.ALLOW_LONG_KEYS).build(); assertEquals("---\n" + LONG_KEY + ": \"value\"", _trim(longKeysMapper.writeValueAsString(inputValue))); } @Test public void testYAMLSpecVersionDefault() throws Exception { ObjectMapper defaultMapper = YAMLMapper.builder().build(); final Object inputValue = Collections.singletonMap("key", "value"); // no minimization so: assertEquals("---\nkey: \"value\"", _trim(defaultMapper.writeValueAsString(inputValue))); } // 03-Oct-2020, tatu: With Jackson 3.0 / Snakeyaml-engine, declared // version seems to make no difference @Test public void testYAMLSpecVersion10() throws Exception { ObjectMapper mapper10 = YAMLMapper.builder( YAMLFactory.builder() .yamlVersionToWrite(new SpecVersion(1, 0)) .build()) .build(); final Object inputValue = Collections.singletonMap("key", "value"); assertEquals("%YAML 1.0\n---\nkey: \"value\"", _trim(mapper10.writeValueAsString(inputValue))); } // @since 2.12 @Test public void testYAMLSpecVersion11() throws Exception { ObjectMapper mapper11 = YAMLMapper.builder( YAMLFactory.builder() .yamlVersionToWrite(new SpecVersion(1, 1)) .build()) .build(); final Object inputValue = Collections.singletonMap("key", "value"); assertEquals("%YAML 1.1\n---\nkey: \"value\"", _trim(mapper11.writeValueAsString(inputValue))); } private String _trim(String yaml) { yaml = yaml.trim(); // linefeeds to replace? yaml = yaml.replace('\r', '\n'); return yaml; } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorFileCloseOnErrorTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.*; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonGenerator; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import static org.assertj.core.api.Assertions.assertThat; /** * Test to verify that YAML output streams are properly closed even when * an error occurs during generator close (see jackson-dataformats-text#109). * * @since 3.2 */ public class GeneratorFileCloseOnErrorTest extends ModuleTestBase { private final YAMLMapper MAPPER = newObjectMapper(); // [jackson-dataformats-text#109]: Output not closed on error @Test public void testOutputClosedWhenEmitFailsDuringClose() throws Exception { // Use a writer that can be armed to fail on demand. // Let normal writes through, then arm it before close so that // the YAML emitter's end-document/stream-end emit fails. FailOnDemandWriter writer = new FailOnDemandWriter(); JsonGenerator gen = MAPPER.createGenerator(writer); gen.writeStartObject(); gen.writeStringProperty("key", "value"); gen.writeEndObject(); // Arm the writer so close()'s emit calls fail writer.shouldFail = true; try { gen.close(); } catch (Exception e) { // Expected: writer failure during emit in close() } assertThat(writer.closed) .as("Underlying writer should be closed even when emit during close() fails") .isTrue(); } @Test public void testOutputClosedOnSuccessfulWrite() throws Exception { FailOnDemandWriter writer = new FailOnDemandWriter(); MAPPER.writeValue(writer, new Pojo("bar")); assertThat(writer.closed) .as("Writer should be closed after successful write") .isTrue(); } /** * Writer that delegates to a StringWriter but can be armed to throw * IOException on any subsequent write() call. */ static class FailOnDemandWriter extends Writer { boolean closed; volatile boolean shouldFail; private final StringWriter _delegate = new StringWriter(); @Override public void write(char[] cbuf, int off, int len) throws IOException { if (shouldFail) { throw new IOException("Simulated write failure"); } _delegate.write(cbuf, off, len); } @Override public void flush() throws IOException { _delegate.flush(); } @Override public void close() throws IOException { closed = true; _delegate.close(); } } static class Pojo { public final String foo; Pojo(String foo) { this.foo = foo; } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorWithMinimize568Test.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.StringWriter; import org.junit.jupiter.api.Test; import tools.jackson.core.*; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import static org.junit.jupiter.api.Assertions.*; public class GeneratorWithMinimize568Test extends ModuleTestBase { private final YAMLMapper MINIM_MAPPER = new YAMLMapper(YAMLFactory.builder() .enable(YAMLWriteFeature.MINIMIZE_QUOTES) .build()); // [dataformats-text#568]: snakeyaml-engine bug fixed in 3.x @Test void testLinefeedAsDoc() { StringWriter writer = new StringWriter(); try (JsonGenerator generator = MINIM_MAPPER.createGenerator(writer)) { generator.writeString("\n"); } try (JsonParser parser = MINIM_MAPPER.createParser(writer.toString())) { assertToken(JsonToken.VALUE_STRING, parser.nextToken()); // fails! assertEquals("\n", parser.getString()); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorWithMinimizeTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.util.*; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import static org.junit.jupiter.api.Assertions.*; public class GeneratorWithMinimizeTest extends ModuleTestBase { private final static YAMLMapper VANILLA_MAPPER = new YAMLMapper(); private final static YAMLMapper MINIM_MAPPER; static { MINIM_MAPPER = new YAMLMapper(YAMLFactory.builder() .enable(YAMLWriteFeature.MINIMIZE_QUOTES) .build() ); } @Test public void testDefaultSetting() { YAMLFactory f = new YAMLFactory(); assertFalse(f.isEnabled(YAMLWriteFeature.MINIMIZE_QUOTES)); f = YAMLFactory.builder() .enable(YAMLWriteFeature.MINIMIZE_QUOTES) .build(); assertTrue(f.isEnabled(YAMLWriteFeature.MINIMIZE_QUOTES)); } @Test public void testLiteralStringsSingleLine() throws Exception { Map content = new HashMap(); content.put("key", "some value"); String yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: some value", yaml); } @Test public void testMinimizeQuotesWithBooleanContent() throws Exception { Map content = new HashMap(); content.put("key", "true"); String yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"true\"", yaml); content.clear(); content.put("key", "false"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"false\"", yaml); content.clear(); content.put("key", "something else"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: something else", yaml); content.clear(); content.put("key", Boolean.TRUE); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: true", yaml); } @Test public void testMinimizeQuotesWithNulls() throws Exception { Map content = new HashMap(); content.put("key", "null"); String yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"null\"", yaml); content.clear(); content.put("key", "Null"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"Null\"", yaml); content.clear(); content.put("key", "NULL"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"NULL\"", yaml); // but not for any casing content.clear(); content.put("key", "nuLL"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: nuLL", yaml); } @Test public void testMinimizeQuotesWithStringsContainingSpecialChars() throws Exception { Map content; String yaml = null; /* scenarios with plain scalars */ content = Collections.singletonMap("key", "a:b"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: a:b", yaml); content = Collections.singletonMap("key", "a#b"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: a#b", yaml); content = Collections.singletonMap("key", "a# b"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: a# b", yaml); // plus also some edge cases (wrt "false" etc checking yaml = MINIM_MAPPER.writeValueAsString(Collections.singletonMap("key", "f:off")).trim(); assertEquals("---\n" + "key: f:off", yaml); /* scenarios with double quoted scalars */ content = Collections.singletonMap("key", "::"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"::\"", yaml); content = Collections.singletonMap("key", "#"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"#\"", yaml); content = Collections.singletonMap("key", "#a"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"#a\"", yaml); content = Collections.singletonMap("key", "a[b"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"a[b\"", yaml); content = Collections.singletonMap("key", "a]b"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"a]b\"", yaml); content = Collections.singletonMap("key", "a{b"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"a{b\"", yaml); content = Collections.singletonMap("key", "a}b"); yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: \"a}b\"", yaml); yaml = MINIM_MAPPER.writeValueAsString(Collections.singletonMap("key", "a,b")).trim(); assertEquals("---\n" + "key: \"a,b\"", yaml); } @Test public void testLiteralStringsMultiLine() throws Exception { Map content = new HashMap(); content.put("key", "first\nsecond\nthird"); String yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: |-\n first\n second\n third", yaml); } @Test public void testQuoteNumberStoredAsString() throws Exception { // [dataformats-text#182] YAMLFactory f = new YAMLFactory(); // verify default settings assertFalse(f.isEnabled(YAMLWriteFeature.MINIMIZE_QUOTES)); assertFalse(f.isEnabled(YAMLWriteFeature.ALWAYS_QUOTE_NUMBERS_AS_STRINGS)); f = YAMLFactory.builder() .enable(YAMLWriteFeature.MINIMIZE_QUOTES, YAMLWriteFeature.ALWAYS_QUOTE_NUMBERS_AS_STRINGS) .build(); YAMLMapper mapper = new YAMLMapper(f); String yaml = mapper.writeValueAsString(Collections.singletonMap("key", "20")).trim(); assertEquals("---\n" + "key: \"20\"", yaml); yaml = mapper.writeValueAsString(Collections.singletonMap("key", "2.0")).trim(); assertEquals("---\n" + "key: \"2.0\"", yaml); yaml = mapper.writeValueAsString(Collections.singletonMap("key", "2.0.1.2.3")).trim(); assertEquals("---\n" + "key: 2.0.1.2.3", yaml); yaml = mapper.writeValueAsString(Collections.singletonMap("key", "-60")).trim(); assertEquals("---\n" + "key: \"-60\"", yaml); yaml = mapper.writeValueAsString(Collections.singletonMap("key", "-60.25")).trim(); assertEquals("---\n" + "key: \"-60.25\"", yaml); // [dataformats-text#373] yaml = mapper.writeValueAsString(Collections.singletonMap("key", "+125")).trim(); assertEquals("---\n" + "key: \"+125\"", yaml); } @Test public void testNonQuoteNumberStoredAsString() throws Exception { String yaml = MINIM_MAPPER.writeValueAsString(Collections.singletonMap("key", "20")).trim(); assertEquals("---\n" + "key: 20", yaml); yaml = MINIM_MAPPER.writeValueAsString(Collections.singletonMap("key", "2.0")).trim(); assertEquals("---\n" + "key: 2.0", yaml); yaml = MINIM_MAPPER.writeValueAsString(Collections.singletonMap("key", "2.0.1.2.3")).trim(); assertEquals("---\n" + "key: 2.0.1.2.3", yaml); } // [dataformats-test#50] @Test public void testEmptyStringWithMinimizeQuotes() throws Exception { String yaml = MINIM_MAPPER.writeValueAsString(Collections.singletonMap("key", "")).trim(); assertEquals("---\nkey: \"\"", yaml); } // [dataformats-text#140] @Test public void testNumberKey() throws Exception { // First, test with Strings that happen to look like Integer final Map stringKeyMap = Collections.singletonMap( "42", "answer"); // Quoted in both cases assertEquals("---\n\"42\": \"answer\"", VANILLA_MAPPER.writeValueAsString(stringKeyMap).trim()); // but not if minimizing quotes assertEquals("---\n\"42\": answer", MINIM_MAPPER.writeValueAsString(stringKeyMap).trim()); // And then true Integer keys final Map intKeyMap = Collections.singletonMap( Integer.valueOf(42), "answer"); // by default, is quoted assertEquals("---\n42: \"answer\"", VANILLA_MAPPER.writeValueAsString(intKeyMap).trim()); // but not if minimizing quotes assertEquals("---\n42: answer", MINIM_MAPPER.writeValueAsString(intKeyMap).trim()); } // [dataformats-text#246] @Test public void testMinimizeQuotesSpecialCharsMultiLine() throws Exception { Map content = new HashMap<>(); content.put("key", "first\nsecond: third"); String yaml = MINIM_MAPPER.writeValueAsString(content).trim(); assertEquals("---\n" + "key: |-\n first\n second: third", yaml); } // [dataformats-text#274]: tilde is an alias for null values, must quote // if written as String. Was already quoted by default but also must be quoted // in minimized mode @Test public void testQuotingOfTilde() throws Exception { Map content = new HashMap<>(); content.put("key", "~"); assertEquals("---\n" + "key: \"~\"", VANILLA_MAPPER.writeValueAsString(content).trim()); assertEquals("---\n" + "key: \"~\"", MINIM_MAPPER.writeValueAsString(content).trim()); } // [dataformats-text#492]: too aggressive dropping of quoting? // (wrt [dataformats-text#465] change in 2.17) @Test public void testMinimalHashQuoting492() throws Exception { Map content = Collections.singletonMap("$ref", "core-api.yaml#/components/responses/ClientError"); String yaml = MINIM_MAPPER.writeValueAsString(content); Map result = MINIM_MAPPER.readValue(yaml, Map.class); assertEquals(content, result); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorWithSplitLinesTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; public class GeneratorWithSplitLinesTest extends ModuleTestBase { @Test public void testSplitLines() throws Exception { final String TEXT = "1234567890 1234567890 1234567890 1234567890 1234567890 1234567890 1234567890 1234567890 1234567890"; final String[] INPUT = new String[] { TEXT }; YAMLFactory f = new YAMLFactory(); // verify default settings assertTrue(f.isEnabled(YAMLWriteFeature.SPLIT_LINES)); // and first write with splitting enabled YAMLMapper mapper = new YAMLMapper(f); String yaml = mapper.writeValueAsString(INPUT).trim(); assertEquals("---\n" + "- \"1234567890 1234567890 1234567890 1234567890 1234567890 1234567890 1234567890 1234567890\\\n" + " \\ 1234567890\"", yaml); // and then with splitting disabled yaml = mapper.writer() .without(YAMLWriteFeature.SPLIT_LINES) .writeValueAsString(INPUT).trim(); assertEquals("---\n" + "- \"1234567890 1234567890 1234567890 1234567890 1234567890 1234567890 1234567890 1234567890 1234567890\"", yaml); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/GeneratorWriteCommentTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.StringWriter; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLGenerator; import tools.jackson.dataformat.yaml.YAMLMapper; import static org.junit.jupiter.api.Assertions.*; /** * Tests for {@link YAMLGenerator#writeComment(String)}. * * @since 3.2 */ public class GeneratorWriteCommentTest extends ModuleTestBase { private final YAMLMapper MAPPER = newObjectMapper(); @Test public void testSimpleBlockComment() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeComment(" This is a comment"); gen.writeStartObject(); gen.writeName("key"); gen.writeString("value"); gen.writeEndObject(); gen.close(); String yaml = w.toString(); assertTrue(yaml.contains("# This is a comment"), "Expected block comment in output, got: " + yaml); assertTrue(yaml.contains("key: value") || yaml.contains("key: \"value\""), "Expected key-value pair in output, got: " + yaml); } @Test public void testMultilineComment() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeStartObject(); gen.writeComment(" Line one\n Line two"); gen.writeName("key"); gen.writeString("value"); gen.writeEndObject(); gen.close(); String yaml = w.toString(); assertTrue(yaml.contains("# Line one"), "Expected first comment line, got: " + yaml); assertTrue(yaml.contains("# Line two"), "Expected second comment line, got: " + yaml); } @Test public void testMultilineCommentCR() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeStartObject(); gen.writeComment(" Line one\r Line two"); gen.writeName("key"); gen.writeString("value"); gen.writeEndObject(); gen.close(); String yaml = w.toString(); assertTrue(yaml.contains("# Line one"), "Expected first comment line, got: " + yaml); assertTrue(yaml.contains("# Line two"), "Expected second comment line, got: " + yaml); } @Test public void testMultilineCommentCRLF() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeStartObject(); gen.writeComment(" Line one\r\n Line two"); gen.writeName("key"); gen.writeString("value"); gen.writeEndObject(); gen.close(); String yaml = w.toString(); assertTrue(yaml.contains("# Line one"), "Expected first comment line, got: " + yaml); assertTrue(yaml.contains("# Line two"), "Expected second comment line, got: " + yaml); } @Test public void testCommentBeforeField() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeStartObject(); gen.writeComment(" The hostname to connect to"); gen.writeName("host"); gen.writeString("localhost"); gen.writeComment(" The port number"); gen.writeName("port"); gen.writeNumber(8080); gen.writeEndObject(); gen.close(); String yaml = w.toString(); assertTrue(yaml.contains("# The hostname to connect to"), "Expected first comment in output, got: " + yaml); assertTrue(yaml.contains("# The port number"), "Expected second comment in output, got: " + yaml); } @Test public void testNullCommentEmitsBlankLine() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeStartObject(); gen.writeComment(" group one"); gen.writeName("a"); gen.writeNumber(1); gen.writeComment(null); gen.writeComment(" group two"); gen.writeName("b"); gen.writeNumber(2); gen.writeEndObject(); gen.close(); String yaml = w.toString(); // Null comment should produce a blank line separating the two groups assertTrue(yaml.contains("# group one"), "Expected first group comment, got: " + yaml); assertTrue(yaml.contains("# group two"), "Expected second group comment, got: " + yaml); // Verify blank line exists between the two groups assertTrue(yaml.contains("\n\n"), "Expected blank line from null comment, got: " + yaml); } @Test public void testHeaderComment() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeComment(" SPDX-License-Identifier: Apache-2.0"); gen.writeStartObject(); gen.writeName("name"); gen.writeString("test"); gen.writeEndObject(); gen.close(); String yaml = w.toString(); assertTrue(yaml.contains("# SPDX-License-Identifier: Apache-2.0"), "Expected license header comment, got: " + yaml); } // Verify that comment written after writeName() becomes an inline comment @Test public void testInlineCommentAfterKey() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeStartObject(); gen.writeName("host"); gen.writeComment(" server hostname"); gen.writeString("localhost"); gen.writeEndObject(); gen.close(); String yaml = w.toString(); // Inline comment should appear on the same line as the key assertTrue(yaml.contains("host: # server hostname"), "Expected inline comment after key, got: " + yaml); } // Verify that comment written before writeName() is a block comment @Test public void testBlockCommentBeforeKey() throws Exception { StringWriter w = new StringWriter(); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); gen.writeStartObject(); gen.writeComment(" server hostname"); gen.writeName("host"); gen.writeString("localhost"); gen.writeEndObject(); gen.close(); String yaml = w.toString(); // Block comment should be on its own line, before the key String trimmed = yaml.trim(); int commentIdx = trimmed.indexOf("# server hostname"); int keyIdx = trimmed.indexOf("host:"); assertTrue(commentIdx >= 0 && keyIdx > commentIdx, "Expected block comment before key, got: " + yaml); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/SimpleGeneration215Test.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.util.Collections; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.assertEquals; // NOTE: fails only on 2.x (2.12) -- fixed for 3.0 public class SimpleGeneration215Test extends ModuleTestBase { // [dataformats-text#215]: trying to disable WRITE_DOC_START_MARKER // (works for 3.0, fails with 2.x like 2.19) //@JacksonTestFailureExpected @Test public void testStartMarkerViaWriter() throws Exception { final String output = YAMLMapper.builder().build() .writer() .without(YAMLWriteFeature.WRITE_DOC_START_MARKER) .writeValueAsString(Collections.singletonMap("key", "value")) .trim(); assertEquals("key: \"value\"", output); } // [dataformats-text#215] @Test public void testStartMarkerViaMapper() throws Exception { YAMLMapper mapper = new YAMLMapper(YAMLFactory.builder() .disable(YAMLWriteFeature.WRITE_DOC_START_MARKER).build() ); final String output = mapper.writeValueAsString(Collections.singletonMap("key", "value")) .trim(); assertEquals("key: \"value\"", output); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/SimpleGenerationTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.*; import java.util.HashMap; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonGenerator; import tools.jackson.databind.ObjectWriter; import tools.jackson.dataformat.yaml.*; import static org.junit.jupiter.api.Assertions.*; public class SimpleGenerationTest extends ModuleTestBase { private final YAMLMapper MAPPER = newObjectMapper(); @Test public void testStreamingArray() throws Exception { StringWriter w = new StringWriter(); JsonGenerator gen = MAPPER.createGenerator(w); gen.writeStartArray(); gen.writeNumber(3); gen.writeString("foobar"); gen.writeEndArray(); gen.close(); String yaml = w.toString(); // should probably parse? // note: 1.12 uses more compact notation; 1.10 has prefix yaml = trimDocMarker(yaml).trim(); assertEquals("- 3\n- \"foobar\"", yaml); } @Test public void testStreamingObject() throws Exception { StringWriter w = new StringWriter(); JsonGenerator gen = MAPPER.createGenerator(w); _writeBradDoc(gen); String yaml = w.toString(); // note: 1.12 uses more compact notation; 1.10 has prefix yaml = trimDocMarker(yaml).trim(); assertEquals("name: \"Brad\"\nage: 39", yaml); gen.close(); } @Test public void testStreamingNested() throws Exception { StringWriter w = new StringWriter(); JsonGenerator gen = MAPPER.createGenerator(w); gen.writeStartObject(); gen.writeName("ob"); gen.writeStartArray(); gen.writeString("a"); gen.writeString("b"); gen.writeEndArray(); gen.writeEndObject(); gen.close(); String yaml = w.toString(); // note: 1.12 uses more compact notation; 1.10 has prefix yaml = trimDocMarker(yaml).trim(); BufferedReader br = new BufferedReader(new StringReader(yaml)); assertEquals("ob:", br.readLine()); // 27-Jan-2015, tatu: Not 100% if those items ought to (or not) be indented. // SnakeYAML doesn't do that; yet some libs expect it. Strange. assertEquals("- \"a\"", br.readLine()); assertEquals("- \"b\"", br.readLine()); assertNull(br.readLine()); br.close(); } @SuppressWarnings("resource") @Test public void testStartMarker() throws Exception { // Ok, first, assume we do get the marker: StringWriter w = new StringWriter(); ObjectWriter ow = MAPPER.writer(); assertTrue(MAPPER.tokenStreamFactory().isEnabled(YAMLWriteFeature.WRITE_DOC_START_MARKER)); YAMLGenerator gen = (YAMLGenerator) MAPPER.createGenerator(w); assertTrue(gen.isEnabled(YAMLWriteFeature.WRITE_DOC_START_MARKER)); _writeBradDoc(gen); String yaml = w.toString().trim(); assertEquals("---\nname: \"Brad\"\nage: 39", yaml); // and then, disabling, and not any more ow = ow.without(YAMLWriteFeature.WRITE_DOC_START_MARKER); w = new StringWriter(); gen = (YAMLGenerator)ow.createGenerator(w); assertFalse(gen.isEnabled(YAMLWriteFeature.WRITE_DOC_START_MARKER)); _writeBradDoc(gen); yaml = w.toString().trim(); assertEquals("name: \"Brad\"\nage: 39", yaml); } @Test public void testLiteralBlockStyle() throws Exception { YAMLFactory f = new YAMLFactory(); // verify default settings assertFalse(f.isEnabled(YAMLWriteFeature.LITERAL_BLOCK_STYLE)); f = f.rebuild().enable(YAMLWriteFeature.LITERAL_BLOCK_STYLE) .build(); assertTrue(f.isEnabled(YAMLWriteFeature.LITERAL_BLOCK_STYLE)); YAMLMapper mapper = new YAMLMapper(f); assertTrue(mapper.tokenStreamFactory().isEnabled(YAMLWriteFeature.LITERAL_BLOCK_STYLE)); Map content = new HashMap(); content.put("text", "Hello\nWorld"); String yaml = mapper.writeValueAsString(content).trim(); assertEquals("---\n" + "text: |-\n Hello\n World", yaml); content.clear(); content.put("text", "Hello World"); yaml = mapper.writeValueAsString(content).trim(); assertEquals("---\n" + "text: \"Hello World\"", yaml); } @Test public void testSimpleNullProperty() throws Exception { StringWriter w = new StringWriter(); try (JsonGenerator gen = MAPPER.createGenerator(w)) { gen.writeStartObject(); gen.writeName("nullable"); gen.writeNull(); gen.writeEndObject(); } // By default we'll get `null`, although tilde is a legal alternative assertEquals("---\n" + "nullable: null", w.toString().trim()); } /* /********************************************************************** /* Helper methods /********************************************************************** */ private void _writeBradDoc(JsonGenerator g) throws IOException { g.writeStartObject(); g.writeStringProperty("name", "Brad"); g.writeNumberProperty("age", 39); g.writeEndObject(); g.close(); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/UTF8WriterTest.java ================================================ package tools.jackson.dataformat.yaml.ser; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; import java.util.concurrent.CopyOnWriteArrayList; import java.util.concurrent.CountDownLatch; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.UTF8Writer; import static org.junit.jupiter.api.Assertions.*; public class UTF8WriterTest { @Test public void canUseMultipleUTF8WritersInSameThread() throws IOException { final String message1 = "First message"; final String message2 = "Second message"; ByteArrayOutputStream output1 = new ByteArrayOutputStream(); ByteArrayOutputStream output2 = new ByteArrayOutputStream(); try (UTF8Writer first = new UTF8Writer(output1)) { first.write("First "); try (UTF8Writer second = new UTF8Writer(output2)) { second.write("Second "); first.write("message"); second.write("message"); } } assertArrayEquals(message1.getBytes(StandardCharsets.UTF_8), output1.toByteArray()); assertArrayEquals(message2.getBytes(StandardCharsets.UTF_8), output2.toByteArray()); } @Test public void canUseMultipleUTF8WritersInParallelThread() throws Exception { final int size = 1_000; final Thread[] threads = new Thread[5]; final ByteArrayOutputStream[] outputs = new ByteArrayOutputStream[threads.length]; final CountDownLatch latch = new CountDownLatch(1); // Starts multiple threads in parallel, each thread uses its own UTF8Writer to // write ${size} times the same number. For example, thread 0 writes 1000 times // the string "0". It is then trivial to check the resulting output. final CopyOnWriteArrayList exceptions = new CopyOnWriteArrayList<>(); for (int i = 0; i < threads.length; i++) { final ByteArrayOutputStream output = new ByteArrayOutputStream(); final String number = String.valueOf(i); outputs[i] = output; threads[i] = new Thread() { @Override public void run() { UTF8Writer writer = null; try { latch.await(); writer = new UTF8Writer(output); for (int j = 0; j < size; j++) { writer.write(number); } } catch (Exception e) { exceptions.add(e); } finally { if (writer != null) { try { writer.close(); } catch (IOException e) { exceptions.add(e); } } } } }; threads[i].start(); } latch.countDown(); for (Thread thread : threads) { thread.join(); } assertEquals(0, exceptions.size()); for (int i = 0; i < outputs.length; i++) { String result = new String(outputs[i].toByteArray(), StandardCharsets.UTF_8); assertEquals(size, result.length()); assertTrue(result.matches(String.valueOf(i) + "{" + String.valueOf(size) + "}")); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/YAML12CoreSchema623Test.java ================================================ package tools.jackson.dataformat.yaml.ser; import static org.junit.jupiter.api.Assertions.assertEquals; import java.util.HashMap; import java.util.List; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLFactory; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLSchema; // Tests serialization of YAML 1.2 core schema. public class YAML12CoreSchema623Test extends ModuleTestBase { private final YAMLFactory FACTORY = YAMLFactory.builder().yamlSchema(YAMLSchema.CORE).build(); private final YAMLMapper MAPPER = YAMLMapper.builder(FACTORY).build(); @Test public void testNull() throws Exception { Map map = new HashMap<>(); map.put("key", null); String doc = MAPPER.writeValueAsString(map); doc = trimDocMarker(doc); assertEquals("key: null", doc); } @Test public void testBoolean() throws Exception { List list = List.of(true, false); String doc = MAPPER.writeValueAsString(list); doc = trimDocMarker(doc); String expected = "- true\n" + "- false"; assertEquals(expected, doc); } @Test public void testNaN() throws Exception { List list = List.of(Float.NaN, Double.NaN); String doc = MAPPER.writeValueAsString(list); doc = trimDocMarker(doc); String expected = "- .nan\n" + "- .nan"; assertEquals(expected, doc); } @Test public void testInfinity() throws Exception { List list = List.of( Float.POSITIVE_INFINITY, Float.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY); String doc = MAPPER.writeValueAsString(list); doc = trimDocMarker(doc); String expected = "- .inf\n" + "- -.inf\n" + "- .inf\n" + "- -.inf"; assertEquals(expected, doc); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/ser/dos/CyclicYAMLDataSerTest.java ================================================ package tools.jackson.dataformat.yaml.ser.dos; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Test; import tools.jackson.core.StreamWriteConstraints; import tools.jackson.core.exc.StreamConstraintsException; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.fail; /** * Simple unit tests to verify that we fail gracefully if you attempt to serialize * data that is cyclic (eg a list that contains itself). */ public class CyclicYAMLDataSerTest extends ModuleTestBase { private final YAMLMapper MAPPER = YAMLMapper.builder().build(); @Test public void testListWithSelfReference() throws Exception { List list = new ArrayList<>(); list.add(list); try { MAPPER.writeValueAsString(list); fail("expected StreamConstraintsException"); } catch (StreamConstraintsException e) { String exceptionPrefix = String.format("Document nesting depth (%d) exceeds the maximum allowed", StreamWriteConstraints.DEFAULT_MAX_DEPTH + 1); assertTrue(e.getMessage().startsWith(exceptionPrefix), "DatabindException message is as expected?"); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/testutil/PrefixInputDecorator.java ================================================ package tools.jackson.dataformat.yaml.testutil; import java.io.*; import java.nio.charset.StandardCharsets; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.InputDecorator; @SuppressWarnings("serial") public class PrefixInputDecorator extends InputDecorator { protected final byte[] _prefix; public PrefixInputDecorator(byte[] p) { _prefix = p; } @Override public InputStream decorate(IOContext ctxt, InputStream in) { if (in instanceof MySequenceInputStream) { throw new IllegalStateException("Trying to decorate MySequenceInputStream (double-decoration!)"); } return new MySequenceInputStream(new ByteArrayInputStream(_prefix), in); } @Override public InputStream decorate(IOContext ctxt, byte[] src, int offset, int length) { return decorate(ctxt, new ByteArrayInputStream(src, offset, length)); } @Override public Reader decorate(IOContext ctxt, Reader r) { if (r instanceof SequenceReader) { throw new IllegalStateException("Trying to decorate SequenceReader (double-decoration!)"); } String str = new String(_prefix, StandardCharsets.UTF_8); return new SequenceReader(new StringReader(str), r); } // sub-class only so we can check for "double decoration" static class MySequenceInputStream extends SequenceInputStream { public MySequenceInputStream(InputStream in1, InputStream in2) { super(in1, in2); } } static class SequenceReader extends Reader { protected Reader _reader1, _reader2; public SequenceReader(Reader r1, Reader r2) { _reader1 = r1; _reader2 = r2; } @Override public int read(char[] cbuf, int off, int len) throws IOException { if (_reader1 != null) { int count = _reader1.read(cbuf, off, len); if (count > 0) { return count; } _reader1 = null; } if (_reader2 != null) { int count = _reader2.read(cbuf, off, len); if (count > 0) { return count; } _reader2 = null; } return -1; } @Override public void close() throws IOException { _reader1 = _reader2 = null; } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/testutil/PrefixOutputDecorator.java ================================================ package tools.jackson.dataformat.yaml.testutil; import java.io.*; import tools.jackson.core.io.IOContext; import tools.jackson.core.io.OutputDecorator; @SuppressWarnings("serial") public class PrefixOutputDecorator extends OutputDecorator { protected final byte[] _prefix; public PrefixOutputDecorator(byte[] p) { _prefix = p; } @Override public OutputStream decorate(IOContext ctxt, OutputStream out) { if (out instanceof BufferedOut) { throw new IllegalStateException("Trying to decorate `Buffered` (double-decoration!)"); } return new BufferedOut(out, _prefix); } @Override public Writer decorate(IOContext ctxt, Writer w) { try { for (byte b : _prefix) { w.write((char) (b & 0xFF)); } } catch (IOException e) { throw new RuntimeException(e); } return w; } static class BufferedOut extends FilterOutputStream { protected byte[] _prefix; public BufferedOut(OutputStream b, byte[] prefix) { super(b); _prefix = prefix; } @Override public void write(int b) throws IOException { if (_prefix != null) { out.write(_prefix); _prefix = null; } super.write(b); } @Override public void write(byte[] b, int offset, int len) throws IOException { if (_prefix != null) { out.write(_prefix); _prefix = null; } super.write(b, offset, len); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/testutil/failure/JacksonTestFailureExpected.java ================================================ package tools.jackson.dataformat.yaml.testutil.failure; import org.junit.jupiter.api.extension.ExtendWith; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** *

      * Annotation used to indicate that a JUnit-5 based tests method is expected to fail. * *

      * When a test method is annotated with {@code @JacksonTestFailureExpected}, the * {@link JacksonTestFailureExpectedInterceptor} will intercept the test execution. * If the test passes, which is an unexpected behavior, the interceptor will throw an exception to fail the test, * indicating that the test was expected to fail but didn't. *

      * *

      Usage Example:

      * *
      
       *
       *     @Test
       *     @JacksonTestFailureExpected
       *     public void testFeatureNotYetImplemented() {
       *         // Test code that is expected to fail
       *     }
       * }
       * 
      * *

      * * @since 2.19 */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @ExtendWith(JacksonTestFailureExpectedInterceptor.class) public @interface JacksonTestFailureExpected { } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/testutil/failure/JacksonTestFailureExpectedInterceptor.java ================================================ package tools.jackson.dataformat.yaml.testutil.failure; import org.junit.jupiter.api.extension.ExtensionContext; import org.junit.jupiter.api.extension.InvocationInterceptor; import org.junit.jupiter.api.extension.ReflectiveInvocationContext; import java.lang.reflect.Method; /** * Custom {@link InvocationInterceptor} that intercepts test method invocation. * To pass the test ***only if*** test fails with an exception, and fail the test otherwise. * * @since 2.19 */ public class JacksonTestFailureExpectedInterceptor implements InvocationInterceptor { @Override public void interceptTestMethod(Invocation invocation, ReflectiveInvocationContext invocationContext, ExtensionContext extensionContext) throws Throwable { try { invocation.proceed(); } catch (Throwable t) { // do-nothing, we do expect an exception return; } handleUnexpectePassingTest(invocationContext); } private void handleUnexpectePassingTest(ReflectiveInvocationContext invocationContext) { // Collect information we need Object targetClass = invocationContext.getTargetClass(); Object testMethod = invocationContext.getExecutable().getName(); //List arguments = invocationContext.getArguments(); // Create message String message = String.format("Test method %s.%s() passed, but should have failed", targetClass, testMethod); // throw exception throw new JacksonTestShouldFailException(message); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/testutil/failure/JacksonTestShouldFailException.java ================================================ package tools.jackson.dataformat.yaml.testutil.failure; /** * Exception used to alert that a test is passing, but should be failing. * * WARNING : This only for test code, and should never be thrown from production code. * * @since 2.19 */ public class JacksonTestShouldFailException extends RuntimeException { private static final long serialVersionUID = 1L; public JacksonTestShouldFailException(String msg) { super(msg); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/tofix/IntegerWithUnderscoresRead146Test.java ================================================ package tools.jackson.dataformat.yaml.tofix; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.testutil.failure.JacksonTestFailureExpected; import static org.junit.jupiter.api.Assertions.*; // for [dataformat-text#146]: cannot handle underscores in numbers public class IntegerWithUnderscoresRead146Test extends ModuleTestBase { static class IntegerHolder { private Integer v; public Integer getV() { return v; } public void setV(Integer v) { this.v = v; } } private final ObjectMapper MAPPER = newObjectMapper(); @JacksonTestFailureExpected @Test public void testJsonIntegerWithUnderscores() throws Exception { IntegerHolder integerHolder = MAPPER.readValue("{\"v\": \"1_000_000\"}", IntegerHolder.class); assertNotNull(integerHolder); assertEquals(Integer.valueOf(1000000), integerHolder.getV()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/tofix/LongWithUnderscoresRead146Test.java ================================================ package tools.jackson.dataformat.yaml.tofix; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.testutil.failure.JacksonTestFailureExpected; import static org.junit.jupiter.api.Assertions.*; // for [dataformat-text#146]: cannot handle underscores in numbers public class LongWithUnderscoresRead146Test extends ModuleTestBase { static class LongHolder { private Long v; public Long getV() { return v; } public void setV(Long v) { this.v = v; } } private final ObjectMapper MAPPER = newObjectMapper(); @JacksonTestFailureExpected @Test public void testYamlLongWithUnderscores() throws Exception { LongHolder longHolder = MAPPER.readValue("v: 1_000_000", LongHolder.class); assertNotNull(longHolder); assertEquals(LongHolder.class, longHolder.getClass()); assertEquals(Long.valueOf(1000000), longHolder.getV()); } @JacksonTestFailureExpected @Test public void testJsonLongWithUnderscores() throws Exception { LongHolder longHolder = MAPPER.readValue("{\"v\": \"1_000_000\"}", LongHolder.class); assertNotNull(longHolder); assertEquals(Long.valueOf(1000000), longHolder.getV()); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/tofix/NumberAltIntRead71Test.java ================================================ package tools.jackson.dataformat.yaml.tofix; import java.math.BigInteger; import org.junit.jupiter.api.Test; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.testutil.failure.JacksonTestFailureExpected; import static org.junit.jupiter.api.Assertions.assertEquals; // [dataformats-text#71]: hex numbers // [dataformats-text#233]: also binary, octal (with/without underscores) // // 23-Nov-2020, tatu: Alas, snakeyaml_engine does not really support // detecting these variants (maybe wrt YAML 1.1 -> 1.2 changes). // So tests fail. Not sure what to do about this. public class NumberAltIntRead71Test extends ModuleTestBase { static class IntHolder { public int value; } static class LongHolder { public Number value; } static class BigHolder { public Number value; } private final ObjectMapper MAPPER = newObjectMapper(); // [dataformats-text#71] @JacksonTestFailureExpected @Test public void testDeserHexInt71() throws Exception { _verifyNumber(Integer.parseInt("48", 16), "0x48"); _verifyNumber(Integer.parseInt("48", 16), "+0x48"); _verifyNumber(-Integer.parseInt("48", 16), "-0x48"); _verifyNumber(Long.parseLong("12345678E0", 16), "0x12345678E0"); _verifyNumber(-Long.parseLong("12345678c0", 16), "-0x12345678c0"); _verifyNumber(new BigInteger("11112222333344445555abcd", 16), "0x11112222333344445555ABCD"); _verifyNumber(new BigInteger("-11112222333344445555ACDC", 16), "-0x11112222333344445555acdc"); } @JacksonTestFailureExpected @Test public void testDeserHexUnderscores() throws Exception { _verifyNumber(Integer.parseInt("1F3", 16), "0x01_F3"); _verifyNumber(Integer.parseInt("1F3", 16), "+0x01_F3"); _verifyNumber(-Integer.parseInt("1F3", 16), "-0x01_F3"); _verifyNumber(Long.parseLong("12345678E0", 16), "0x12_3456_78E0"); _verifyNumber(-Long.parseLong("12345678c0", 16), "-0x12_3456_78c0"); } @JacksonTestFailureExpected @Test public void testDeserOctal() throws Exception { _verifyNumber(Integer.parseInt("24", 8), "024"); _verifyNumber(Integer.parseInt("24", 8), "+024"); _verifyNumber(-Integer.parseInt("24", 8), "-024"); _verifyNumber(Long.parseLong("1234567712345677", 8), "01234567712345677"); _verifyNumber(-Long.parseLong("1234567712345677", 8), "-01234567712345677"); _verifyNumber(new BigInteger("123456771234567712345677", 8), "0123456771234567712345677"); _verifyNumber(new BigInteger("-123456771234567712345677", 8), "-0123456771234567712345677"); } @JacksonTestFailureExpected @Test public void testDeserOctalUnderscores() throws Exception { _verifyNumber(Integer.parseInt("24", 8), "0_24"); _verifyNumber(Integer.parseInt("24", 8), "+0_24"); _verifyNumber(-Integer.parseInt("24", 8), "-0_24"); _verifyNumber(Long.parseLong("1234567712345677", 8), "01_234_567_712_345_677"); _verifyNumber(-Long.parseLong("1234567712345677", 8), "-01_234_567_712_345_677"); } @JacksonTestFailureExpected @Test public void testDeserBinary() throws Exception { _verifyNumber(Integer.parseInt("1010", 2), "0b1010"); _verifyNumber(Integer.parseInt("1010", 2), "+0b1010"); _verifyNumber(-Integer.parseInt("1010", 2), "-0b1010"); } @JacksonTestFailureExpected @Test public void testDeserBinaryUnderscores() throws Exception { _verifyNumber(Integer.parseInt("1010", 2), "0b10_10"); _verifyNumber(Integer.parseInt("1010", 2), "+0b10_10"); _verifyNumber(-Integer.parseInt("1010", 2), "-0b10_10"); } // 23-Nov-2020, tatu: Decided not to add support for 60-based, at // least not yet, due to likely backwards-compatibility issues // with IP numbers /* @JacksonTestFailureExpected @Test public void testDeserBase60() throws Exception { IntHolder result = MAPPER.readerFor(IntHolder.class) .readValue("value: 190:20:30"); assertEquals((190 * 60 * 60) + (20 * 60) + 30, result.value); } */ private void _verifyNumber(int expValue, String asString) throws Exception { IntHolder result = MAPPER.readerFor(IntHolder.class) .readValue("value: "+asString+"\n"); assertEquals(expValue, result.value); } private void _verifyNumber(long expValue, String asString) throws Exception { LongHolder result = MAPPER.readerFor(LongHolder.class) .readValue("value: "+asString+"\n"); assertEquals(Long.class, result.value.getClass()); assertEquals(expValue, result.value.longValue()); } private void _verifyNumber(BigInteger expValue, String asString) throws Exception { BigHolder result = MAPPER.readerFor(BigHolder.class) .readValue("value: "+asString+"\n"); assertEquals(BigInteger.class, result.value.getClass()); assertEquals(expValue, result.value); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/tofix/ObjectIdWithTree2Test.java ================================================ package tools.jackson.dataformat.yaml.tofix; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.JsonIdentityInfo; import com.fasterxml.jackson.annotation.ObjectIdGenerators; import tools.jackson.databind.JsonNode; import tools.jackson.databind.ObjectMapper; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.testutil.failure.JacksonTestFailureExpected; import static org.junit.jupiter.api.Assertions.*; /** * Although native Object Ids work in general, Tree Model currently * has issues with it (see [dataformats-text#2]) */ public class ObjectIdWithTree2Test extends ModuleTestBase { // [dataformats-text#2] @JsonIdentityInfo(generator=ObjectIdGenerators.IntSequenceGenerator.class, property="@id") static class Node { public String name; public Node next; public Node() { } public Node(String name) { this.name = name; } } /* /********************************************************** /* Test methods /********************************************************** */ private final static String SIMPLE_YAML = "---\n" +"&1 name: \"first\"\n" +"next:\n" +" &2 name: \"second\"\n" +" next: *1" ; // [dataformats-text#2] @JacksonTestFailureExpected @Test public void testRoundtripViaTree() throws Exception { ObjectMapper mapper = newObjectMapper(); JsonNode root = mapper.readTree(SIMPLE_YAML); assertNotNull(root); Node first = mapper.treeToValue(root, Node.class); assertNotNull(first); _verify(first); } /* /********************************************************** /* Internal helper methods /********************************************************** */ private void _verify(Node first) { assertNotNull(first); assertEquals("first", first.name); assertNotNull(first.next); assertEquals("second", first.next.name); assertNotNull(first.next.next, "Should not have null for 'first.next.next'"); assertSame(first, first.next.next); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/tofix/SimpleGeneration366NotaBugTest.java ================================================ package tools.jackson.dataformat.yaml.tofix; import java.util.HashMap; import java.util.Map; import org.junit.jupiter.api.Test; import tools.jackson.dataformat.yaml.*; import tools.jackson.dataformat.yaml.testutil.failure.JacksonTestFailureExpected; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; //!!! 11-Nov-2025, tatu: Closed as "Not a Bug", test left for reference public class SimpleGeneration366NotaBugTest extends ModuleTestBase { // [dataformats-text#366]: multi-line literal block with trailing spaces does not work @JacksonTestFailureExpected @Test public void testLiteralBlockStyleMultilineWithTrailingSpace() throws Exception { YAMLFactory f = new YAMLFactory(); // verify default settings assertFalse(f.isEnabled(YAMLWriteFeature.LITERAL_BLOCK_STYLE)); YAMLMapper mapper = YAMLMapper.builder() .configure(YAMLWriteFeature.LITERAL_BLOCK_STYLE, true) .build(); Map content = new HashMap(); content.put("text", "Hello\nWorld "); String yaml = mapper.writeValueAsString(content).trim(); assertEquals("---\n" + "text: |-\n Hello\n World ", yaml); } // [dataformats-text#366]: multi-line literal block without trailing spaces actually works @Test public void testLiteralBlockStyleMultiline() throws Exception { YAMLFactory f = new YAMLFactory(); // verify default settings assertFalse(f.isEnabled(YAMLWriteFeature.LITERAL_BLOCK_STYLE)); YAMLMapper mapper = YAMLMapper.builder() .configure(YAMLWriteFeature.LITERAL_BLOCK_STYLE, true) .build(); Map content = new HashMap(); content.put("text", "Hello\nWorld"); String yaml = mapper.writeValueAsString(content).trim(); assertEquals("---\n" + "text: |-\n Hello\n World", yaml); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/type/PolymorphicIdTest.java ================================================ package tools.jackson.dataformat.yaml.type; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.databind.*; import tools.jackson.dataformat.yaml.ModuleTestBase; import static org.junit.jupiter.api.Assertions.*; public class PolymorphicIdTest extends ModuleTestBase { static class Wrapper { public Nested nested; } @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") @JsonSubTypes({ @JsonSubTypes.Type(value = NestedImpl.class) }) static interface Nested { } @JsonTypeName("single") static class NestedImpl implements Nested { public String value; } private final ObjectMapper MAPPER = newObjectMapper(); @Test public void testPolymorphicType() throws Exception { // first, with value String YAML = "nested:\n" +" type: single\n" +" value: whatever"; Wrapper top = MAPPER.readValue(YAML, Wrapper.class); assertNotNull(top); assertEquals(NestedImpl.class, top.nested.getClass()); assertEquals("whatever", ((NestedImpl) top.nested).value); // then without value YAML = "nested:\n" +" type: single"; top = MAPPER.readValue(YAML, Wrapper.class); assertNotNull(top); assertEquals(NestedImpl.class, top.nested.getClass()); assertNull(((NestedImpl) top.nested).value, "whatever"); } @Test public void testNativePolymorphicType() throws Exception { String YAML = "nested: !single\n" +" value: foobar\n" ; Wrapper top = MAPPER.readValue(YAML, Wrapper.class); assertNotNull(top); assertNotNull(top.nested); assertEquals(NestedImpl.class, top.nested.getClass()); assertEquals("foobar", ((NestedImpl) top.nested).value); top = MAPPER.readValue("nested: !single { }\n", Wrapper.class); assertNotNull(top); assertNotNull(top.nested); assertEquals(NestedImpl.class, top.nested.getClass()); } @Test public void testNativePolymorphicTypeFromEmpty() throws Exception { // no value specified, empty // And third possibility; trickier, since YAML contains empty String, // and not Object; so we need to allow coercion ObjectReader r = MAPPER.readerFor(Wrapper.class) .with(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT); Wrapper top = r.readValue("nested: !single\n"); assertNotNull(top); // and as a result, get null assertNull(top.nested); } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/type/RawTagTest.java ================================================ package tools.jackson.dataformat.yaml.type; import org.junit.jupiter.api.Test; import tools.jackson.core.JsonToken; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLParser; import static org.junit.jupiter.api.Assertions.*; /** * Tests for {@link YAMLParser#getRawTag()}. * * @since 3.2 */ public class RawTagTest extends ModuleTestBase { private final YAMLMapper MAPPER = new YAMLMapper(); @Test public void testCustomScalarTag() throws Exception { final String YAML = "---\npassword: !sensitive Abcd1234\n"; try (YAMLParser p = (YAMLParser) MAPPER.createParser(YAML)) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertNull(p.getRawTag()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("password", p.currentName()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("Abcd1234", p.getText()); assertEquals("!sensitive", p.getRawTag()); // getTypeId() should strip the "!" prefix assertEquals("sensitive", p.getTypeId()); assertToken(JsonToken.END_OBJECT, p.nextToken()); assertNull(p.getRawTag()); } } @Test public void testVerbatimTag() throws Exception { // Verbatim tag !<...> is resolved by SnakeYAML Engine into the URI content final String YAML = "--- !\na: 13\n"; try (YAMLParser p = (YAMLParser) MAPPER.createParser(YAML)) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertEquals("impl", p.getRawTag()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(13, p.getIntValue()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } } @Test public void testLocalTag() throws Exception { // Local tag !impl keeps the "!" prefix final String YAML = "--- !impl\na: 13\n"; try (YAMLParser p = (YAMLParser) MAPPER.createParser(YAML)) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertEquals("!impl", p.getRawTag()); // getTypeId() strips the "!" prefix assertEquals("impl", p.getTypeId()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_NUMBER_INT, p.nextToken()); assertEquals(13, p.getIntValue()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } } @Test public void testNoTag() throws Exception { final String YAML = "---\nkey: value\n"; try (YAMLParser p = (YAMLParser) MAPPER.createParser(YAML)) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertNull(p.getRawTag()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("value", p.getText()); assertNull(p.getRawTag()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } } @Test public void testSequenceTag() throws Exception { final String YAML = "--- !mylist\n- a\n- b\n"; try (YAMLParser p = (YAMLParser) MAPPER.createParser(YAML)) { assertToken(JsonToken.START_ARRAY, p.nextToken()); assertEquals("!mylist", p.getRawTag()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("a", p.getText()); assertNull(p.getRawTag()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("b", p.getText()); assertNull(p.getRawTag()); assertToken(JsonToken.END_ARRAY, p.nextToken()); } } @Test public void testSecondaryTagHandle() throws Exception { // "!!" is the secondary tag handle, resolved by SnakeYAML Engine // to the "tag:yaml.org,2002:" prefix final String YAML = "---\nvalue: !!str 123\n"; try (YAMLParser p = (YAMLParser) MAPPER.createParser(YAML)) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("123", p.getText()); // Raw tag includes the resolved "tag:yaml.org,2002:" prefix assertEquals("tag:yaml.org,2002:str", p.getRawTag()); // getTypeId() strips "!" but this tag has none, so same value assertEquals("tag:yaml.org,2002:str", p.getTypeId()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } } @Test public void testMultipleCustomTags() throws Exception { final String YAML = "---\nuser: !public someone\npass: !sensitive Abcd1234\n"; try (YAMLParser p = (YAMLParser) MAPPER.createParser(YAML)) { assertToken(JsonToken.START_OBJECT, p.nextToken()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("user", p.currentName()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("someone", p.getText()); assertEquals("!public", p.getRawTag()); assertToken(JsonToken.PROPERTY_NAME, p.nextToken()); assertEquals("pass", p.currentName()); assertToken(JsonToken.VALUE_STRING, p.nextToken()); assertEquals("Abcd1234", p.getText()); assertEquals("!sensitive", p.getRawTag()); assertToken(JsonToken.END_OBJECT, p.nextToken()); } } } ================================================ FILE: yaml/src/test/java/tools/jackson/dataformat/yaml/type/TypeIdTest.java ================================================ package tools.jackson.dataformat.yaml.type; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.annotation.*; import tools.jackson.core.ObjectReadContext; import tools.jackson.databind.ObjectMapper; import tools.jackson.databind.util.TokenBuffer; import tools.jackson.dataformat.yaml.ModuleTestBase; import tools.jackson.dataformat.yaml.YAMLMapper; import tools.jackson.dataformat.yaml.YAMLWriteFeature; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; public class TypeIdTest extends ModuleTestBase { @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") @JsonSubTypes({ @JsonSubTypes.Type(Impl.class) }) static abstract class Base { public int a; public Base() { } public Base(int a) { this.a = a; } } @JsonTypeName("impl") static class Impl extends Base { public Impl() { } public Impl(int a) { super(a); } } /* /********************************************************** /* Test methods /********************************************************** */ @Test public void testNativeSerialization() throws Exception { ObjectMapper mapper = newObjectMapper(); String yaml = mapper.writeValueAsString(new Impl(13)); yaml = yaml.trim(); assertEquals("--- !\na: 13", yaml); } @Test public void testNonNativeSerialization() throws Exception { YAMLMapper mapper = new YAMLMapper(); String yaml = mapper.writer() .without(YAMLWriteFeature.USE_NATIVE_TYPE_ID) .writeValueAsString(new Impl(13)); yaml = yaml.trim(); assertEquals("---\ntype: \"impl\"\na: 13", yaml); // Let's also round-trip it Base back = mapper.readValue(yaml, Impl.class); assertNotNull(back); assertEquals(Impl.class, back.getClass()); } @Test public void testDeserialization() throws Exception { /* Looks like there are couple of alternative ways to indicate * type ids... so let's verify variations we know of. */ ObjectMapper mapper = newObjectMapper(); for (String typeId : new String[] { "--- !", "--- !impl", "!", "!impl", // 04-May-2014, tatu: I _think_ we should support this too but... // "---\nTYPE: impl\n", }) { final String input = typeId + "\na: 13"; Base result = mapper.readValue(input, Base.class); _verify(result); } } @Test public void testRoundtripWithBuffer() throws Exception { ObjectMapper mapper = newObjectMapper(); TokenBuffer tbuf = mapper.readValue("--- !impl\na: 13\n", TokenBuffer.class); assertNotNull(tbuf); Base result = mapper.readValue(tbuf.asParser(ObjectReadContext.empty()), Base.class); tbuf.close(); _verify(result); } /* /********************************************************** /* Internal helper methods /********************************************************** */ private void _verify(Base result) { assertNotNull(result); assertEquals(Impl.class, result.getClass()); Impl i = (Impl) result; assertEquals(13, i.a); } } ================================================ FILE: yaml/src/test/resources/data/fuzz-65918.yaml ================================================ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -C -C ================================================ FILE: yaml/src/test/resources/log4j.properties ================================================ log4j.rootLogger=WARN, A1 # A1 is set to be a ConsoleAppender. log4j.appender.A1=org.apache.log4j.ConsoleAppender log4j.appender.A1.Encoding=UTF-8 # A1 uses PatternLayout. log4j.appender.A1.layout=org.apache.log4j.PatternLayout log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n